Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-present Open Networking Foundation |
| 3 | |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | //Package config provides the Log, kvstore, Kafka configuration |
| 18 | package config |
| 19 | |
| 20 | import ( |
| 21 | "flag" |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 22 | "os" |
| 23 | "time" |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 24 | ) |
| 25 | |
| 26 | // Open ONU default constants |
| 27 | const ( |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 28 | EtcdStoreName = "etcd" |
Girish Gowdra | 21bbf05 | 2022-02-17 16:08:22 -0800 | [diff] [blame] | 29 | OnuVendorIds = "OPEN,ALCL,BRCM,TWSH,ALPH,ISKT,SFAA,BBSM,SCOM,ARPX,DACM,ERSN,HWTC,CIGG,ADTN,ARCA,AVMG,LEOX" |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 30 | ) |
| 31 | |
| 32 | // AdapterFlags represents the set of configurations used by the read-write adaptercore service |
| 33 | type AdapterFlags struct { |
| 34 | // Command line parameters |
| 35 | InstanceID string |
Matteo Scandolo | 127c59d | 2021-01-28 11:31:18 -0800 | [diff] [blame] | 36 | KafkaClusterAddress string // NOTE this is unused across the adapter |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 37 | KVStoreType string |
mpagenko | af80163 | 2020-07-03 10:00:42 +0000 | [diff] [blame] | 38 | KVStoreTimeout time.Duration |
Matteo Scandolo | 127c59d | 2021-01-28 11:31:18 -0800 | [diff] [blame] | 39 | KVStoreAddress string |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 40 | EventTopic string |
| 41 | LogLevel string |
| 42 | OnuNumber int |
| 43 | Banner bool |
| 44 | DisplayVersionOnly bool |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 45 | AccIncrEvto bool |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 46 | ProbeHost string |
| 47 | ProbePort int |
| 48 | LiveProbeInterval time.Duration |
| 49 | NotLiveProbeInterval time.Duration |
| 50 | HeartbeatCheckInterval time.Duration |
| 51 | HeartbeatFailReportInterval time.Duration |
| 52 | KafkaReconnectRetries int |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 53 | CurrentReplica int |
| 54 | TotalReplicas int |
Himani Chawla | d96df18 | 2020-09-28 11:12:02 +0530 | [diff] [blame] | 55 | MaxTimeoutInterAdapterComm time.Duration |
Holger Hildebrandt | 38985dc | 2021-02-18 16:25:20 +0000 | [diff] [blame] | 56 | MaxTimeoutReconciling time.Duration |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 57 | TraceEnabled bool |
| 58 | TraceAgentAddress string |
| 59 | LogCorrelationEnabled bool |
Andrea Campanella | 3d7c931 | 2021-01-19 09:20:49 +0100 | [diff] [blame] | 60 | OnuVendorIds string |
Girish Gowdra | af0ad63 | 2021-01-27 13:00:01 -0800 | [diff] [blame] | 61 | MetricsEnabled bool |
Holger Hildebrandt | c572e62 | 2022-06-22 09:19:17 +0000 | [diff] [blame] | 62 | ExtendedOmciSupportEnabled bool |
Holger Hildebrandt | e3677f1 | 2021-02-05 14:50:56 +0000 | [diff] [blame] | 63 | MibAuditInterval time.Duration |
Girish Gowdra | 0b23584 | 2021-03-09 13:06:46 -0800 | [diff] [blame] | 64 | OmciTimeout time.Duration |
Himani Chawla | 075f164 | 2021-03-15 19:23:24 +0530 | [diff] [blame] | 65 | AlarmAuditInterval time.Duration |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 66 | DownloadToAdapterTimeout time.Duration |
| 67 | DownloadToOnuTimeout4MB time.Duration |
Matteo Scandolo | 20d180c | 2021-06-10 17:20:21 +0200 | [diff] [blame] | 68 | UniPortMask int |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 69 | MinBackoffRetryDelay time.Duration |
| 70 | MaxBackoffRetryDelay time.Duration |
| 71 | AdapterEndpoint string |
| 72 | GrpcAddress string |
| 73 | CoreEndpoint string |
| 74 | RPCTimeout time.Duration |
Girish Gowdra | e95687a | 2021-09-08 16:30:58 -0700 | [diff] [blame] | 75 | MaxConcurrentFlowsPerUni int |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | // ParseCommandArguments parses the arguments when running read-write adaptercore service |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 79 | func (so *AdapterFlags) ParseCommandArguments(args []string) { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 80 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 81 | fs := flag.NewFlagSet(os.Args[0], flag.ExitOnError) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 82 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 83 | fs.StringVar(&(so.KafkaClusterAddress), |
| 84 | "kafka_cluster_address", |
| 85 | "127.0.0.1:9092", |
| 86 | "Kafka - Cluster messaging address") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 87 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 88 | fs.StringVar(&(so.EventTopic), |
| 89 | "event_topic", |
| 90 | "voltha.events", |
| 91 | "Event topic") |
Holger Hildebrandt | a768fe9 | 2020-10-01 13:06:21 +0000 | [diff] [blame] | 92 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 93 | fs.StringVar(&(so.KVStoreType), |
| 94 | "kv_store_type", |
| 95 | EtcdStoreName, |
| 96 | "KV store type") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 97 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 98 | fs.DurationVar(&(so.KVStoreTimeout), |
| 99 | "kv_store_request_timeout", |
| 100 | 5*time.Second, |
| 101 | "The default timeout when making a kv store request") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 102 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 103 | fs.StringVar(&(so.KVStoreAddress), |
| 104 | "kv_store_address", |
| 105 | "127.0.0.1:2379", |
| 106 | "KV store address") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 107 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 108 | fs.StringVar(&(so.LogLevel), |
| 109 | "log_level", |
| 110 | "WARN", |
| 111 | "Log level") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 112 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 113 | fs.IntVar(&(so.OnuNumber), |
| 114 | "onu_number", |
| 115 | 1, |
| 116 | "Number of ONUs") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 117 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 118 | fs.BoolVar(&(so.Banner), |
| 119 | "banner", |
| 120 | false, |
| 121 | "Show startup banner log lines") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 122 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 123 | fs.BoolVar(&(so.DisplayVersionOnly), |
| 124 | "version", |
| 125 | false, |
| 126 | "Show version information and exit") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 127 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 128 | fs.BoolVar(&(so.AccIncrEvto), |
| 129 | "accept_incr_evto", |
| 130 | false, |
| 131 | "Acceptance of incremental EVTOCD configuration") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 132 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 133 | fs.StringVar(&(so.ProbeHost), |
| 134 | "probe_host", |
| 135 | "", |
| 136 | "The address on which to listen to answer liveness and readiness probe queries over HTTP") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 137 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 138 | fs.IntVar(&(so.ProbePort), |
| 139 | "probe_port", |
| 140 | 8080, |
| 141 | "The port on which to listen to answer liveness and readiness probe queries over HTTP") |
mpagenko | dff5dda | 2020-08-28 11:52:01 +0000 | [diff] [blame] | 142 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 143 | fs.DurationVar(&(so.LiveProbeInterval), |
| 144 | "live_probe_interval", |
| 145 | 60*time.Second, |
| 146 | "Number of seconds for the default liveliness check") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 147 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 148 | fs.DurationVar(&(so.NotLiveProbeInterval), |
| 149 | "not_live_probe_interval", |
| 150 | 60*time.Second, |
| 151 | "Number of seconds for liveliness check if probe is not running") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 152 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 153 | fs.DurationVar(&(so.HeartbeatCheckInterval), |
| 154 | "hearbeat_check_interval", |
| 155 | 30*time.Second, |
| 156 | "Number of seconds for heartbeat check interval") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 157 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 158 | fs.DurationVar(&(so.HeartbeatFailReportInterval), |
| 159 | "hearbeat_fail_interval", |
| 160 | 30*time.Second, |
| 161 | "Number of seconds adapter has to wait before reporting core on the hearbeat check failure") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 162 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 163 | fs.IntVar(&(so.KafkaReconnectRetries), |
| 164 | "kafka_reconnect_retries", |
| 165 | -1, |
| 166 | "Number of retries to connect to Kafka") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 167 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 168 | fs.IntVar(&(so.CurrentReplica), |
| 169 | "current_replica", |
| 170 | 1, |
| 171 | "Replica number of this particular instance") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 172 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 173 | fs.IntVar(&(so.TotalReplicas), |
| 174 | "total_replica", |
| 175 | 1, |
| 176 | "Total number of instances for this adapter") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 177 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 178 | fs.DurationVar(&(so.MaxTimeoutInterAdapterComm), |
| 179 | "max_timeout_interadapter_comm", |
| 180 | 30*time.Second, |
| 181 | "Maximum Number of seconds for the default interadapter communication timeout") |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 182 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 183 | fs.DurationVar(&(so.MaxTimeoutReconciling), |
| 184 | "max_timeout_reconciling", |
| 185 | 10*time.Second, |
| 186 | "Maximum Number of seconds for the default ONU reconciling timeout") |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 187 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 188 | fs.BoolVar(&(so.TraceEnabled), |
| 189 | "trace_enabled", |
| 190 | false, |
| 191 | "Whether to send logs to tracing agent") |
Himani Chawla | d96df18 | 2020-09-28 11:12:02 +0530 | [diff] [blame] | 192 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 193 | fs.StringVar(&(so.TraceAgentAddress), |
| 194 | "trace_agent_address", |
| 195 | "127.0.0.1:6831", |
| 196 | "The address of tracing agent to which span info should be sent") |
Holger Hildebrandt | 38985dc | 2021-02-18 16:25:20 +0000 | [diff] [blame] | 197 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 198 | fs.BoolVar(&(so.LogCorrelationEnabled), |
| 199 | "log_correlation_enabled", |
| 200 | true, |
| 201 | "Whether to enrich log statements with fields denoting operation being executed for achieving correlation") |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 202 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 203 | fs.StringVar(&(so.OnuVendorIds), |
| 204 | "allowed_onu_vendors", |
| 205 | OnuVendorIds, |
| 206 | "List of Allowed ONU Vendor Ids") |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 207 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 208 | fs.BoolVar(&(so.MetricsEnabled), |
| 209 | "metrics_enabled", |
| 210 | false, |
| 211 | "Whether to enable metrics collection") |
dbainbri | 4d3a0dc | 2020-12-02 00:33:42 +0000 | [diff] [blame] | 212 | |
Holger Hildebrandt | c572e62 | 2022-06-22 09:19:17 +0000 | [diff] [blame] | 213 | fs.BoolVar(&(so.ExtendedOmciSupportEnabled), |
| 214 | "extended_omci_support_enabled", |
| 215 | false, |
| 216 | "Whether to enable extended OMCI support") |
| 217 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 218 | fs.DurationVar(&(so.MibAuditInterval), |
| 219 | "mib_audit_interval", |
| 220 | 300*time.Second, |
| 221 | "Mib Audit Interval in seconds - the value zero will disable Mib Audit") |
Andrea Campanella | 3d7c931 | 2021-01-19 09:20:49 +0100 | [diff] [blame] | 222 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 223 | fs.DurationVar(&(so.OmciTimeout), |
| 224 | "omci_timeout", |
| 225 | 3*time.Second, |
| 226 | "OMCI timeout duration - this timeout value is used on the OMCI channel for waiting on response from ONU") |
Girish Gowdra | af0ad63 | 2021-01-27 13:00:01 -0800 | [diff] [blame] | 227 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 228 | fs.DurationVar(&(so.AlarmAuditInterval), |
| 229 | "alarm_audit_interval", |
| 230 | 300*time.Second, |
| 231 | "Alarm Audit Interval in seconds - the value zero will disable alarm audit") |
Holger Hildebrandt | e3677f1 | 2021-02-05 14:50:56 +0000 | [diff] [blame] | 232 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 233 | fs.DurationVar(&(so.DownloadToAdapterTimeout), |
| 234 | "download_to_adapter_timeout", |
| 235 | 10*time.Second, |
| 236 | "File download to adapter timeout in seconds") |
Girish Gowdra | 0b23584 | 2021-03-09 13:06:46 -0800 | [diff] [blame] | 237 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 238 | fs.DurationVar(&(so.DownloadToOnuTimeout4MB), |
| 239 | "download_to_onu_timeout_4MB", |
| 240 | 60*time.Minute, |
| 241 | "File download to ONU timeout in minutes for a block of 4MB") |
Himani Chawla | 075f164 | 2021-03-15 19:23:24 +0530 | [diff] [blame] | 242 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 243 | //Mask to indicate which possibly active ONU UNI state is really reported to the core |
| 244 | // compare python code - at the moment restrict active state to the first ONU UNI port |
| 245 | // check is limited to max 16 uni ports - cmp above UNI limit!!! |
| 246 | fs.IntVar(&(so.UniPortMask), |
| 247 | "uni_port_mask", |
| 248 | 0x0001, |
| 249 | "The bitmask to identify UNI ports that need to be enabled") |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 250 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 251 | fs.StringVar(&(so.GrpcAddress), |
| 252 | "grpc_address", |
| 253 | ":50060", |
| 254 | "Adapter GRPC Server address") |
mpagenko | c26d4c0 | 2021-05-06 14:27:57 +0000 | [diff] [blame] | 255 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 256 | fs.StringVar(&(so.CoreEndpoint), |
| 257 | "core_endpoint", |
| 258 | ":55555", |
| 259 | "Core endpoint") |
Matteo Scandolo | 20d180c | 2021-06-10 17:20:21 +0200 | [diff] [blame] | 260 | |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 261 | fs.StringVar(&(so.AdapterEndpoint), |
| 262 | "adapter_endpoint", |
| 263 | "", |
| 264 | "Adapter Endpoint") |
| 265 | |
| 266 | fs.DurationVar(&(so.RPCTimeout), |
| 267 | "rpc_timeout", |
| 268 | 10*time.Second, |
| 269 | "The default timeout when making an RPC request") |
| 270 | |
| 271 | fs.DurationVar(&(so.MinBackoffRetryDelay), |
| 272 | "min_retry_delay", |
| 273 | 500*time.Millisecond, |
| 274 | "The minimum number of milliseconds to delay before a connection retry attempt") |
| 275 | |
| 276 | fs.DurationVar(&(so.MaxBackoffRetryDelay), |
| 277 | "max_retry_delay", |
| 278 | 10*time.Second, |
| 279 | "The maximum number of milliseconds to delay before a connection retry attempt") |
Girish Gowdra | e95687a | 2021-09-08 16:30:58 -0700 | [diff] [blame] | 280 | fs.IntVar(&(so.MaxConcurrentFlowsPerUni), |
| 281 | "max_concurrent_flows_per_uni", |
| 282 | 16, |
| 283 | "The max number of concurrent flows (add/remove) that can be queued per UNI") |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 284 | |
| 285 | _ = fs.Parse(args) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 286 | containerName := getContainerInfo() |
| 287 | if len(containerName) > 0 { |
| 288 | so.InstanceID = containerName |
khenaidoo | 7d3c558 | 2021-08-11 18:09:44 -0400 | [diff] [blame] | 289 | } else { |
| 290 | so.InstanceID = "openonu" |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 291 | } |
| 292 | |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | func getContainerInfo() string { |
| 296 | return os.Getenv("HOSTNAME") |
| 297 | } |