Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [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 common |
| 18 | |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 19 | import ( |
| 20 | "flag" |
| 21 | "fmt" |
| 22 | "io/ioutil" |
| 23 | "net" |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 24 | "strings" |
Shrey Baid | 64cda47 | 2020-04-24 18:58:18 +0530 | [diff] [blame] | 25 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 26 | "github.com/imdario/mergo" |
Shrey Baid | 64cda47 | 2020-04-24 18:58:18 +0530 | [diff] [blame] | 27 | log "github.com/sirupsen/logrus" |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 28 | "gopkg.in/yaml.v2" |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 29 | ) |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 30 | |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 31 | var tagAllocationValues = []string{ |
| 32 | "unknown", |
| 33 | "shared", |
| 34 | "unique", |
| 35 | } |
| 36 | |
Matteo Scandolo | 9496714 | 2021-05-28 11:37:06 -0700 | [diff] [blame] | 37 | const ( |
| 38 | BP_FORMAT_MEF = "mef" |
| 39 | BP_FORMAT_IETF = "ietf" |
| 40 | ) |
| 41 | |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 42 | type TagAllocation int |
| 43 | |
| 44 | func (t TagAllocation) String() string { |
| 45 | return tagAllocationValues[t] |
| 46 | } |
| 47 | |
| 48 | func tagAllocationFromString(s string) (TagAllocation, error) { |
| 49 | for i, v := range tagAllocationValues { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 50 | if v == strings.TrimSpace(s) { |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 51 | return TagAllocation(i), nil |
| 52 | } |
| 53 | } |
| 54 | log.WithFields(log.Fields{ |
| 55 | "ValidValues": strings.Join(tagAllocationValues[1:], ", "), |
| 56 | }).Errorf("%s-is-not-a-valid-tag-allocation", s) |
Shrey Baid | 688b424 | 2020-07-10 20:40:10 +0530 | [diff] [blame] | 57 | return TagAllocation(0), fmt.Errorf("%s-is-not-a-valid-tag-allocation", s) |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | const ( |
| 61 | _ TagAllocation = iota |
| 62 | TagAllocationShared |
| 63 | TagAllocationUnique |
| 64 | ) |
| 65 | |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 66 | type BBRCliOptions struct { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 67 | *GlobalConfig |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 68 | BBSimIp string |
| 69 | BBSimPort string |
| 70 | BBSimApiPort string |
Matteo Scandolo | f5c537e | 2019-10-28 16:45:57 -0700 | [diff] [blame] | 71 | LogFile string |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 72 | } |
| 73 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 74 | type GlobalConfig struct { |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 75 | BBSim BBSimConfig |
| 76 | Olt OltConfig |
| 77 | BBR BBRConfig |
| 78 | } |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 79 | |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 80 | type OltConfig struct { |
| 81 | Model string `yaml:"model"` |
| 82 | Vendor string `yaml:"vendor"` |
| 83 | HardwareVersion string `yaml:"hardware_version"` |
| 84 | FirmwareVersion string `yaml:"firmware_version"` |
| 85 | DeviceId string `yaml:"device_id"` |
| 86 | DeviceSerialNumber string `yaml:"device_serial_number"` |
| 87 | PonPorts uint32 `yaml:"pon_ports"` |
| 88 | NniPorts uint32 `yaml:"nni_ports"` |
| 89 | OnusPonPort uint32 `yaml:"onus_per_port"` |
| 90 | Technology string `yaml:"technology"` |
| 91 | ID int `yaml:"id"` |
| 92 | OltRebootDelay int `yaml:"reboot_delay"` |
Shrey Baid | 688b424 | 2020-07-10 20:40:10 +0530 | [diff] [blame] | 93 | PortStatsInterval int `yaml:"port_stats_interval"` |
Holger Hildebrandt | c10bab1 | 2021-04-27 09:23:48 +0000 | [diff] [blame] | 94 | OmciResponseRate uint8 `yaml:"omci_response_rate"` |
Mahir Gunyel | a1753ae | 2021-06-23 00:24:56 -0700 | [diff] [blame] | 95 | UniPorts uint32 `yaml:"uni_ports"` |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 96 | } |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 97 | |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 98 | type BBSimConfig struct { |
Matteo Scandolo | 9496714 | 2021-05-28 11:37:06 -0700 | [diff] [blame] | 99 | ConfigFile string |
| 100 | ServiceConfigFile string |
| 101 | DhcpRetry bool `yaml:"dhcp_retry"` |
| 102 | AuthRetry bool `yaml:"auth_retry"` |
| 103 | LogLevel string `yaml:"log_level"` |
| 104 | LogCaller bool `yaml:"log_caller"` |
| 105 | Delay int `yaml:"delay"` |
| 106 | CpuProfile *string `yaml:"cpu_profile"` |
| 107 | OpenOltAddress string `yaml:"openolt_address"` |
| 108 | ApiAddress string `yaml:"api_address"` |
| 109 | RestApiAddress string `yaml:"rest_api_address"` |
| 110 | LegacyApiAddress string `yaml:"legacy_api_address"` |
| 111 | LegacyRestApiAddress string `yaml:"legacy_rest_api_address"` |
| 112 | SadisRestAddress string `yaml:"sadis_rest_address"` |
| 113 | SadisServer bool `yaml:"sadis_server"` |
| 114 | KafkaAddress string `yaml:"kafka_address"` |
| 115 | Events bool `yaml:"enable_events"` |
| 116 | ControlledActivation string `yaml:"controlled_activation"` |
| 117 | EnablePerf bool `yaml:"enable_perf"` |
| 118 | KafkaEventTopic string `yaml:"kafka_event_topic"` |
| 119 | DmiServerAddress string `yaml:"dmi_server_address"` |
| 120 | BandwidthProfileFormat string `yaml:"bp_format"` |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 121 | } |
Matteo Scandolo | c114709 | 2019-10-29 09:38:33 -0700 | [diff] [blame] | 122 | |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 123 | type BBRConfig struct { |
| 124 | Log string `yaml:"log"` |
| 125 | LogLevel string `yaml:"log_level"` |
| 126 | LogCaller bool `yaml:"log_caller"` |
| 127 | } |
| 128 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 129 | type ServiceYaml struct { |
| 130 | Name string |
| 131 | CTag int `yaml:"c_tag"` |
| 132 | STag int `yaml:"s_tag"` |
| 133 | NeedsEapol bool `yaml:"needs_eapol"` |
Matteo Scandolo | 8a57481 | 2021-05-20 15:18:53 -0700 | [diff] [blame] | 134 | NeedsDhcp bool `yaml:"needs_dhcp"` |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 135 | NeedsIgmp bool `yaml:"needs_igmp"` |
| 136 | CTagAllocation string `yaml:"c_tag_allocation"` |
| 137 | STagAllocation string `yaml:"s_tag_allocation"` |
| 138 | TechnologyProfileID int `yaml:"tp_id"` |
| 139 | UniTagMatch int `yaml:"uni_tag_match"` |
| 140 | ConfigureMacAddress bool `yaml:"configure_mac_address"` |
Matteo Scandolo | 8d28137 | 2020-09-03 16:23:37 -0700 | [diff] [blame] | 141 | UsPonCTagPriority uint8 `yaml:"us_pon_c_tag_priority"` |
| 142 | UsPonSTagPriority uint8 `yaml:"us_pon_s_tag_priority"` |
| 143 | DsPonCTagPriority uint8 `yaml:"ds_pon_c_tag_priority"` |
| 144 | DsPonSTagPriority uint8 `yaml:"ds_pon_s_tag_priority"` |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 145 | } |
| 146 | type YamlServiceConfig struct { |
| 147 | Workflow string |
| 148 | Services []ServiceYaml `yaml:"services,flow"` |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 149 | } |
| 150 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 151 | func (cfg *YamlServiceConfig) String() string { |
| 152 | str := fmt.Sprintf("[workflow: %s, Services: ", cfg.Workflow) |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 153 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 154 | for _, s := range cfg.Services { |
| 155 | str = fmt.Sprintf("%s[", str) |
| 156 | str = fmt.Sprintf("%sname=%s, c_tag=%d, s_tag=%d, ", |
| 157 | str, s.Name, s.CTag, s.STag) |
| 158 | str = fmt.Sprintf("%sc_tag_allocation=%s, s_tag_allocation=%s, ", |
| 159 | str, s.CTagAllocation, s.STagAllocation) |
| 160 | str = fmt.Sprintf("%sneeds_eapol=%t, needs_dhcp=%t, needs_igmp=%t", |
Matteo Scandolo | 8a57481 | 2021-05-20 15:18:53 -0700 | [diff] [blame] | 161 | str, s.NeedsEapol, s.NeedsDhcp, s.NeedsIgmp) |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 162 | str = fmt.Sprintf("%stp_id=%d, uni_tag_match=%d", |
| 163 | str, s.TechnologyProfileID, s.UniTagMatch) |
| 164 | str = fmt.Sprintf("%s]", str) |
| 165 | } |
| 166 | str = fmt.Sprintf("%s]", str) |
| 167 | return str |
| 168 | } |
| 169 | |
| 170 | var ( |
| 171 | Config *GlobalConfig |
| 172 | Services []ServiceYaml |
| 173 | ) |
| 174 | |
| 175 | // Load the BBSim configuration. This is a combination of CLI parameters and YAML files |
| 176 | // We proceed in this order: |
| 177 | // - Read CLI parameters |
| 178 | // - Using those we read the yaml files (config and services) |
| 179 | // - we merge the configuration (CLI has priority over yaml files) |
| 180 | func LoadConfig() { |
| 181 | |
| 182 | Config = getDefaultOps() |
| 183 | |
| 184 | cliConf := readCliParams() |
| 185 | |
| 186 | yamlConf, err := loadBBSimConf(cliConf.BBSim.ConfigFile) |
| 187 | |
| 188 | if err != nil { |
| 189 | log.WithFields(log.Fields{ |
| 190 | "file": cliConf.BBSim.ConfigFile, |
| 191 | "err": err, |
| 192 | }).Fatal("Can't read config file") |
| 193 | } |
| 194 | |
| 195 | // merging Yaml and Default Values |
| 196 | if err := mergo.Merge(Config, yamlConf, mergo.WithOverride); err != nil { |
| 197 | log.WithFields(log.Fields{ |
| 198 | "err": err, |
| 199 | }).Fatal("Can't merge YAML and Config") |
| 200 | } |
| 201 | |
| 202 | // merging CLI values on top of the yaml ones |
| 203 | if err := mergo.Merge(Config, cliConf, mergo.WithOverride); err != nil { |
| 204 | log.WithFields(log.Fields{ |
| 205 | "err": err, |
| 206 | }).Fatal("Can't merge CLI and Config") |
| 207 | } |
| 208 | |
| 209 | services, err := loadBBSimServices(Config.BBSim.ServiceConfigFile) |
| 210 | |
| 211 | if err != nil { |
| 212 | log.WithFields(log.Fields{ |
| 213 | "file": Config.BBSim.ServiceConfigFile, |
| 214 | "err": err, |
| 215 | }).Fatal("Can't read services file") |
| 216 | } |
| 217 | |
| 218 | Services = services |
| 219 | |
| 220 | } |
| 221 | |
| 222 | func readCliParams() *GlobalConfig { |
| 223 | |
Matteo Scandolo | c11074d | 2020-09-14 14:59:24 -0700 | [diff] [blame] | 224 | conf := getDefaultOps() |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 225 | |
| 226 | configFile := flag.String("config", conf.BBSim.ConfigFile, "Configuration file path") |
| 227 | servicesFile := flag.String("services", conf.BBSim.ServiceConfigFile, "Service Configuration file path") |
Matteo Scandolo | 9496714 | 2021-05-28 11:37:06 -0700 | [diff] [blame] | 228 | sadisBpFormat := flag.String("bp_format", conf.BBSim.BandwidthProfileFormat, "Bandwidth profile format, 'mef' or 'ietf'") |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 229 | |
| 230 | olt_id := flag.Int("olt_id", conf.Olt.ID, "OLT device ID") |
| 231 | nni := flag.Int("nni", int(conf.Olt.NniPorts), "Number of NNI ports per OLT device to be emulated") |
| 232 | pon := flag.Int("pon", int(conf.Olt.PonPorts), "Number of PON ports per OLT device to be emulated") |
| 233 | onu := flag.Int("onu", int(conf.Olt.OnusPonPort), "Number of ONU devices per PON port to be emulated") |
Mahir Gunyel | a1753ae | 2021-06-23 00:24:56 -0700 | [diff] [blame] | 234 | uni := flag.Int("uni", int(conf.Olt.UniPorts), "Number of UNI Ports per ONU device to be emulated") |
| 235 | |
Matteo Scandolo | 9356670 | 2020-09-30 15:19:27 -0700 | [diff] [blame] | 236 | oltRebootDelay := flag.Int("oltRebootDelay", conf.Olt.OltRebootDelay, "Time that BBSim should before restarting after a reboot") |
Holger Hildebrandt | c10bab1 | 2021-04-27 09:23:48 +0000 | [diff] [blame] | 237 | omci_response_rate := flag.Int("omci_response_rate", int(conf.Olt.OmciResponseRate), "Amount of OMCI messages to respond to") |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 238 | |
| 239 | openolt_address := flag.String("openolt_address", conf.BBSim.OpenOltAddress, "IP address:port") |
| 240 | api_address := flag.String("api_address", conf.BBSim.ApiAddress, "IP address:port") |
| 241 | rest_api_address := flag.String("rest_api_address", conf.BBSim.RestApiAddress, "IP address:port") |
amit.ghosh | 258d14c | 2020-10-02 15:13:38 +0200 | [diff] [blame] | 242 | dmi_server_address := flag.String("dmi_server_address", conf.BBSim.DmiServerAddress, "IP address:port") |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 243 | |
| 244 | profileCpu := flag.String("cpuprofile", "", "write cpu profile to file") |
| 245 | |
| 246 | logLevel := flag.String("logLevel", conf.BBSim.LogLevel, "Set the log level (trace, debug, info, warn, error)") |
| 247 | logCaller := flag.Bool("logCaller", conf.BBSim.LogCaller, "Whether to print the caller filename or not") |
| 248 | |
| 249 | delay := flag.Int("delay", conf.BBSim.Delay, "The delay between ONU DISCOVERY batches in milliseconds (1 ONU per each PON PORT at a time") |
| 250 | |
| 251 | controlledActivation := flag.String("ca", conf.BBSim.ControlledActivation, "Set the mode for controlled activation of PON ports and ONUs") |
| 252 | enablePerf := flag.Bool("enableperf", conf.BBSim.EnablePerf, "Setting this flag will cause BBSim to not store data like traffic schedulers, flows of ONUs etc..") |
| 253 | enableEvents := flag.Bool("enableEvents", conf.BBSim.Events, "Enable sending BBSim events on configured kafka server") |
| 254 | kafkaAddress := flag.String("kafkaAddress", conf.BBSim.KafkaAddress, "IP:Port for kafka") |
| 255 | kafkaEventTopic := flag.String("kafkaEventTopic", conf.BBSim.KafkaEventTopic, "Ability to configure the topic on which BBSim publishes events on Kafka") |
| 256 | dhcpRetry := flag.Bool("dhcpRetry", conf.BBSim.DhcpRetry, "Set this flag if BBSim should retry DHCP upon failure until success") |
| 257 | authRetry := flag.Bool("authRetry", conf.BBSim.AuthRetry, "Set this flag if BBSim should retry EAPOL (Authentication) upon failure until success") |
Matteo Scandolo | 9356670 | 2020-09-30 15:19:27 -0700 | [diff] [blame] | 258 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 259 | flag.Parse() |
| 260 | |
| 261 | conf.Olt.ID = int(*olt_id) |
| 262 | conf.Olt.NniPorts = uint32(*nni) |
| 263 | conf.Olt.PonPorts = uint32(*pon) |
Mahir Gunyel | a1753ae | 2021-06-23 00:24:56 -0700 | [diff] [blame] | 264 | conf.Olt.UniPorts = uint32(*uni) |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 265 | conf.Olt.OnusPonPort = uint32(*onu) |
Matteo Scandolo | 9356670 | 2020-09-30 15:19:27 -0700 | [diff] [blame] | 266 | conf.Olt.OltRebootDelay = *oltRebootDelay |
Holger Hildebrandt | c10bab1 | 2021-04-27 09:23:48 +0000 | [diff] [blame] | 267 | conf.Olt.OmciResponseRate = uint8(*omci_response_rate) |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 268 | conf.BBSim.ConfigFile = *configFile |
| 269 | conf.BBSim.ServiceConfigFile = *servicesFile |
| 270 | conf.BBSim.CpuProfile = profileCpu |
| 271 | conf.BBSim.LogLevel = *logLevel |
| 272 | conf.BBSim.LogCaller = *logCaller |
| 273 | conf.BBSim.Delay = *delay |
| 274 | conf.BBSim.ControlledActivation = *controlledActivation |
| 275 | conf.BBSim.EnablePerf = *enablePerf |
| 276 | conf.BBSim.Events = *enableEvents |
| 277 | conf.BBSim.KafkaAddress = *kafkaAddress |
| 278 | conf.BBSim.OpenOltAddress = *openolt_address |
| 279 | conf.BBSim.ApiAddress = *api_address |
| 280 | conf.BBSim.RestApiAddress = *rest_api_address |
| 281 | conf.BBSim.KafkaEventTopic = *kafkaEventTopic |
| 282 | conf.BBSim.AuthRetry = *authRetry |
| 283 | conf.BBSim.DhcpRetry = *dhcpRetry |
amit.ghosh | 258d14c | 2020-10-02 15:13:38 +0200 | [diff] [blame] | 284 | conf.BBSim.DmiServerAddress = *dmi_server_address |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 285 | |
| 286 | // update device id if not set |
| 287 | if conf.Olt.DeviceId == "" { |
| 288 | conf.Olt.DeviceId = net.HardwareAddr{0xA, 0xA, 0xA, 0xA, 0xA, byte(conf.Olt.ID)}.String() |
| 289 | } |
| 290 | |
Matteo Scandolo | 9496714 | 2021-05-28 11:37:06 -0700 | [diff] [blame] | 291 | // check that the BP format is valid |
| 292 | if (*sadisBpFormat != BP_FORMAT_MEF) && (*sadisBpFormat != BP_FORMAT_IETF) { |
| 293 | log.Fatalf("Invalid parameter 'bp_format', supported values are %s and %s, you provided %s", BP_FORMAT_MEF, BP_FORMAT_IETF, *sadisBpFormat) |
| 294 | } |
| 295 | conf.BBSim.BandwidthProfileFormat = *sadisBpFormat |
| 296 | |
Matteo Scandolo | c11074d | 2020-09-14 14:59:24 -0700 | [diff] [blame] | 297 | return conf |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | func getDefaultOps() *GlobalConfig { |
| 301 | |
| 302 | c := &GlobalConfig{ |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 303 | BBSimConfig{ |
Matteo Scandolo | 9496714 | 2021-05-28 11:37:06 -0700 | [diff] [blame] | 304 | ConfigFile: "configs/bbsim.yaml", |
| 305 | ServiceConfigFile: "configs/att-services.yaml", |
| 306 | LogLevel: "debug", |
| 307 | LogCaller: false, |
| 308 | Delay: 200, |
| 309 | OpenOltAddress: ":50060", |
| 310 | ApiAddress: ":50070", |
| 311 | RestApiAddress: ":50071", |
| 312 | LegacyApiAddress: ":50072", |
| 313 | LegacyRestApiAddress: ":50073", |
| 314 | SadisRestAddress: ":50074", |
| 315 | SadisServer: true, |
| 316 | KafkaAddress: ":9092", |
| 317 | Events: false, |
| 318 | ControlledActivation: "default", |
| 319 | EnablePerf: false, |
| 320 | KafkaEventTopic: "", |
| 321 | DhcpRetry: false, |
| 322 | AuthRetry: false, |
| 323 | DmiServerAddress: ":50075", |
| 324 | BandwidthProfileFormat: BP_FORMAT_MEF, |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 325 | }, |
| 326 | OltConfig{ |
| 327 | Vendor: "BBSim", |
| 328 | Model: "asfvolt16", |
| 329 | HardwareVersion: "emulated", |
| 330 | FirmwareVersion: "", |
| 331 | DeviceSerialNumber: "BBSM00000001", |
| 332 | PonPorts: 1, |
| 333 | NniPorts: 1, |
| 334 | OnusPonPort: 1, |
| 335 | Technology: "XGS-PON", |
| 336 | ID: 0, |
Matteo Scandolo | 9356670 | 2020-09-30 15:19:27 -0700 | [diff] [blame] | 337 | OltRebootDelay: 60, |
Pragya Arya | 996a089 | 2020-03-09 21:47:52 +0530 | [diff] [blame] | 338 | PortStatsInterval: 20, |
Holger Hildebrandt | c10bab1 | 2021-04-27 09:23:48 +0000 | [diff] [blame] | 339 | OmciResponseRate: 10, |
Mahir Gunyel | a1753ae | 2021-06-23 00:24:56 -0700 | [diff] [blame] | 340 | UniPorts: 4, |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 341 | }, |
| 342 | BBRConfig{ |
| 343 | LogLevel: "debug", |
| 344 | LogCaller: false, |
| 345 | }, |
| 346 | } |
| 347 | return c |
| 348 | } |
| 349 | |
| 350 | // LoadBBSimConf loads the BBSim configuration from a YAML file |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 351 | func loadBBSimConf(filename string) (*GlobalConfig, error) { |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 352 | yamlConfig := getDefaultOps() |
| 353 | |
| 354 | yamlFile, err := ioutil.ReadFile(filename) |
| 355 | if err != nil { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 356 | log.WithFields(log.Fields{ |
| 357 | "err": err, |
| 358 | "filename": filename, |
| 359 | }).Error("Cannot load BBSim configuration file. Using defaults.") |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 360 | return yamlConfig, nil |
| 361 | } |
| 362 | |
| 363 | err = yaml.Unmarshal(yamlFile, yamlConfig) |
| 364 | if err != nil { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 365 | return nil, err |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | return yamlConfig, nil |
| 369 | } |
| 370 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 371 | // LoadBBSimServices parses a file describing the services that need to be created for each UNI |
| 372 | func loadBBSimServices(filename string) ([]ServiceYaml, error) { |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 373 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 374 | yamlServiceCfg := YamlServiceConfig{} |
Zdravko Bozakov | 3ddb245 | 2019-11-29 14:33:41 +0100 | [diff] [blame] | 375 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 376 | yamlFile, err := ioutil.ReadFile(filename) |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 377 | if err != nil { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 378 | return nil, err |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 379 | } |
| 380 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 381 | err = yaml.Unmarshal([]byte(yamlFile), &yamlServiceCfg) |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 382 | if err != nil { |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 383 | return nil, err |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 384 | } |
| 385 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 386 | for _, service := range yamlServiceCfg.Services { |
| 387 | |
| 388 | if service.CTagAllocation == "" || service.STagAllocation == "" { |
| 389 | log.Fatal("c_tag_allocation and s_tag_allocation are mandatory fields") |
| 390 | } |
| 391 | |
| 392 | if _, err := tagAllocationFromString(string(service.CTagAllocation)); err != nil { |
| 393 | log.WithFields(log.Fields{ |
| 394 | "err": err, |
| 395 | }).Fatal("c_tag_allocation is not valid") |
| 396 | } |
Matteo Scandolo | f65e687 | 2020-04-15 15:18:43 -0700 | [diff] [blame] | 397 | } |
| 398 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 399 | log.WithFields(log.Fields{ |
| 400 | "services": yamlServiceCfg.String(), |
| 401 | }).Debug("BBSim services description correctly loaded") |
| 402 | return yamlServiceCfg.Services, nil |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 403 | } |
| 404 | |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 405 | // This is only used by BBR |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 406 | func GetBBROpts() BBRCliOptions { |
| 407 | |
| 408 | bbsimIp := flag.String("bbsimIp", "127.0.0.1", "BBSim IP") |
| 409 | bbsimPort := flag.String("bbsimPort", "50060", "BBSim Port") |
| 410 | bbsimApiPort := flag.String("bbsimApiPort", "50070", "BBSim API Port") |
Matteo Scandolo | f5c537e | 2019-10-28 16:45:57 -0700 | [diff] [blame] | 411 | logFile := flag.String("logfile", "", "Log to a file") |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 412 | |
Matteo Scandolo | c11074d | 2020-09-14 14:59:24 -0700 | [diff] [blame] | 413 | LoadConfig() |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 414 | |
| 415 | bbrOptions := BBRCliOptions{ |
Matteo Scandolo | 4a03626 | 2020-08-17 15:56:13 -0700 | [diff] [blame] | 416 | Config, |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 417 | *bbsimIp, |
| 418 | *bbsimPort, |
| 419 | *bbsimApiPort, |
Matteo Scandolo | f5c537e | 2019-10-28 16:45:57 -0700 | [diff] [blame] | 420 | *logFile, |
Matteo Scandolo | 40e067f | 2019-10-16 16:59:41 -0700 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | return bbrOptions |
| 424 | } |