blob: 6dd723120a2b01114c2629c6d6d066cca9a7a8c6 [file] [log] [blame]
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001/*
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
17package common
18
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010019import (
20 "flag"
21 "fmt"
22 "io/ioutil"
23 "net"
Matteo Scandolof65e6872020-04-15 15:18:43 -070024 "strings"
Shrey Baid64cda472020-04-24 18:58:18 +053025
Matteo Scandolo4a036262020-08-17 15:56:13 -070026 "github.com/imdario/mergo"
Shrey Baid64cda472020-04-24 18:58:18 +053027 log "github.com/sirupsen/logrus"
Matteo Scandolo4a036262020-08-17 15:56:13 -070028 "gopkg.in/yaml.v2"
Matteo Scandolof65e6872020-04-15 15:18:43 -070029)
Matteo Scandolo40e067f2019-10-16 16:59:41 -070030
Matteo Scandolof65e6872020-04-15 15:18:43 -070031var tagAllocationValues = []string{
32 "unknown",
33 "shared",
34 "unique",
35}
36
Matteo Scandolo94967142021-05-28 11:37:06 -070037const (
38 BP_FORMAT_MEF = "mef"
39 BP_FORMAT_IETF = "ietf"
40)
41
Matteo Scandolof65e6872020-04-15 15:18:43 -070042type TagAllocation int
43
44func (t TagAllocation) String() string {
45 return tagAllocationValues[t]
46}
47
48func tagAllocationFromString(s string) (TagAllocation, error) {
49 for i, v := range tagAllocationValues {
Matteo Scandolo4a036262020-08-17 15:56:13 -070050 if v == strings.TrimSpace(s) {
Matteo Scandolof65e6872020-04-15 15:18:43 -070051 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 Baid688b4242020-07-10 20:40:10 +053057 return TagAllocation(0), fmt.Errorf("%s-is-not-a-valid-tag-allocation", s)
Matteo Scandolof65e6872020-04-15 15:18:43 -070058}
59
60const (
61 _ TagAllocation = iota
62 TagAllocationShared
63 TagAllocationUnique
64)
65
Matteo Scandolo40e067f2019-10-16 16:59:41 -070066type BBRCliOptions struct {
Matteo Scandolo4a036262020-08-17 15:56:13 -070067 *GlobalConfig
Matteo Scandolo40e067f2019-10-16 16:59:41 -070068 BBSimIp string
69 BBSimPort string
70 BBSimApiPort string
Matteo Scandolof5c537e2019-10-28 16:45:57 -070071 LogFile string
Matteo Scandolo40e067f2019-10-16 16:59:41 -070072}
73
Matteo Scandolo4a036262020-08-17 15:56:13 -070074type GlobalConfig struct {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010075 BBSim BBSimConfig
76 Olt OltConfig
77 BBR BBRConfig
78}
Matteo Scandolo40e067f2019-10-16 16:59:41 -070079
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010080type 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 Baid688b4242020-07-10 20:40:10 +053093 PortStatsInterval int `yaml:"port_stats_interval"`
Holger Hildebrandtc10bab12021-04-27 09:23:48 +000094 OmciResponseRate uint8 `yaml:"omci_response_rate"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010095}
Matteo Scandolo40e067f2019-10-16 16:59:41 -070096
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010097type BBSimConfig struct {
Matteo Scandolo94967142021-05-28 11:37:06 -070098 ConfigFile string
99 ServiceConfigFile string
100 DhcpRetry bool `yaml:"dhcp_retry"`
101 AuthRetry bool `yaml:"auth_retry"`
102 LogLevel string `yaml:"log_level"`
103 LogCaller bool `yaml:"log_caller"`
104 Delay int `yaml:"delay"`
105 CpuProfile *string `yaml:"cpu_profile"`
106 OpenOltAddress string `yaml:"openolt_address"`
107 ApiAddress string `yaml:"api_address"`
108 RestApiAddress string `yaml:"rest_api_address"`
109 LegacyApiAddress string `yaml:"legacy_api_address"`
110 LegacyRestApiAddress string `yaml:"legacy_rest_api_address"`
111 SadisRestAddress string `yaml:"sadis_rest_address"`
112 SadisServer bool `yaml:"sadis_server"`
113 KafkaAddress string `yaml:"kafka_address"`
114 Events bool `yaml:"enable_events"`
115 ControlledActivation string `yaml:"controlled_activation"`
116 EnablePerf bool `yaml:"enable_perf"`
117 KafkaEventTopic string `yaml:"kafka_event_topic"`
118 DmiServerAddress string `yaml:"dmi_server_address"`
119 BandwidthProfileFormat string `yaml:"bp_format"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100120}
Matteo Scandoloc1147092019-10-29 09:38:33 -0700121
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100122type BBRConfig struct {
123 Log string `yaml:"log"`
124 LogLevel string `yaml:"log_level"`
125 LogCaller bool `yaml:"log_caller"`
126}
127
Matteo Scandolo4a036262020-08-17 15:56:13 -0700128type ServiceYaml struct {
129 Name string
130 CTag int `yaml:"c_tag"`
131 STag int `yaml:"s_tag"`
132 NeedsEapol bool `yaml:"needs_eapol"`
133 NeedsDchp bool `yaml:"needs_dhcp"`
134 NeedsIgmp bool `yaml:"needs_igmp"`
135 CTagAllocation string `yaml:"c_tag_allocation"`
136 STagAllocation string `yaml:"s_tag_allocation"`
137 TechnologyProfileID int `yaml:"tp_id"`
138 UniTagMatch int `yaml:"uni_tag_match"`
139 ConfigureMacAddress bool `yaml:"configure_mac_address"`
Matteo Scandolo8d281372020-09-03 16:23:37 -0700140 UsPonCTagPriority uint8 `yaml:"us_pon_c_tag_priority"`
141 UsPonSTagPriority uint8 `yaml:"us_pon_s_tag_priority"`
142 DsPonCTagPriority uint8 `yaml:"ds_pon_c_tag_priority"`
143 DsPonSTagPriority uint8 `yaml:"ds_pon_s_tag_priority"`
Matteo Scandolo4a036262020-08-17 15:56:13 -0700144}
145type YamlServiceConfig struct {
146 Workflow string
147 Services []ServiceYaml `yaml:"services,flow"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100148}
149
Matteo Scandolo4a036262020-08-17 15:56:13 -0700150func (cfg *YamlServiceConfig) String() string {
151 str := fmt.Sprintf("[workflow: %s, Services: ", cfg.Workflow)
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100152
Matteo Scandolo4a036262020-08-17 15:56:13 -0700153 for _, s := range cfg.Services {
154 str = fmt.Sprintf("%s[", str)
155 str = fmt.Sprintf("%sname=%s, c_tag=%d, s_tag=%d, ",
156 str, s.Name, s.CTag, s.STag)
157 str = fmt.Sprintf("%sc_tag_allocation=%s, s_tag_allocation=%s, ",
158 str, s.CTagAllocation, s.STagAllocation)
159 str = fmt.Sprintf("%sneeds_eapol=%t, needs_dhcp=%t, needs_igmp=%t",
160 str, s.NeedsEapol, s.NeedsDchp, s.NeedsIgmp)
161 str = fmt.Sprintf("%stp_id=%d, uni_tag_match=%d",
162 str, s.TechnologyProfileID, s.UniTagMatch)
163 str = fmt.Sprintf("%s]", str)
164 }
165 str = fmt.Sprintf("%s]", str)
166 return str
167}
168
169var (
170 Config *GlobalConfig
171 Services []ServiceYaml
172)
173
174// Load the BBSim configuration. This is a combination of CLI parameters and YAML files
175// We proceed in this order:
176// - Read CLI parameters
177// - Using those we read the yaml files (config and services)
178// - we merge the configuration (CLI has priority over yaml files)
179func LoadConfig() {
180
181 Config = getDefaultOps()
182
183 cliConf := readCliParams()
184
185 yamlConf, err := loadBBSimConf(cliConf.BBSim.ConfigFile)
186
187 if err != nil {
188 log.WithFields(log.Fields{
189 "file": cliConf.BBSim.ConfigFile,
190 "err": err,
191 }).Fatal("Can't read config file")
192 }
193
194 // merging Yaml and Default Values
195 if err := mergo.Merge(Config, yamlConf, mergo.WithOverride); err != nil {
196 log.WithFields(log.Fields{
197 "err": err,
198 }).Fatal("Can't merge YAML and Config")
199 }
200
201 // merging CLI values on top of the yaml ones
202 if err := mergo.Merge(Config, cliConf, mergo.WithOverride); err != nil {
203 log.WithFields(log.Fields{
204 "err": err,
205 }).Fatal("Can't merge CLI and Config")
206 }
207
208 services, err := loadBBSimServices(Config.BBSim.ServiceConfigFile)
209
210 if err != nil {
211 log.WithFields(log.Fields{
212 "file": Config.BBSim.ServiceConfigFile,
213 "err": err,
214 }).Fatal("Can't read services file")
215 }
216
217 Services = services
218
219}
220
221func readCliParams() *GlobalConfig {
222
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700223 conf := getDefaultOps()
Matteo Scandolo4a036262020-08-17 15:56:13 -0700224
225 configFile := flag.String("config", conf.BBSim.ConfigFile, "Configuration file path")
226 servicesFile := flag.String("services", conf.BBSim.ServiceConfigFile, "Service Configuration file path")
Matteo Scandolo94967142021-05-28 11:37:06 -0700227 sadisBpFormat := flag.String("bp_format", conf.BBSim.BandwidthProfileFormat, "Bandwidth profile format, 'mef' or 'ietf'")
Matteo Scandolo4a036262020-08-17 15:56:13 -0700228
229 olt_id := flag.Int("olt_id", conf.Olt.ID, "OLT device ID")
230 nni := flag.Int("nni", int(conf.Olt.NniPorts), "Number of NNI ports per OLT device to be emulated")
231 pon := flag.Int("pon", int(conf.Olt.PonPorts), "Number of PON ports per OLT device to be emulated")
232 onu := flag.Int("onu", int(conf.Olt.OnusPonPort), "Number of ONU devices per PON port to be emulated")
Matteo Scandolo93566702020-09-30 15:19:27 -0700233 oltRebootDelay := flag.Int("oltRebootDelay", conf.Olt.OltRebootDelay, "Time that BBSim should before restarting after a reboot")
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000234 omci_response_rate := flag.Int("omci_response_rate", int(conf.Olt.OmciResponseRate), "Amount of OMCI messages to respond to")
Matteo Scandolo4a036262020-08-17 15:56:13 -0700235
236 openolt_address := flag.String("openolt_address", conf.BBSim.OpenOltAddress, "IP address:port")
237 api_address := flag.String("api_address", conf.BBSim.ApiAddress, "IP address:port")
238 rest_api_address := flag.String("rest_api_address", conf.BBSim.RestApiAddress, "IP address:port")
amit.ghosh258d14c2020-10-02 15:13:38 +0200239 dmi_server_address := flag.String("dmi_server_address", conf.BBSim.DmiServerAddress, "IP address:port")
Matteo Scandolo4a036262020-08-17 15:56:13 -0700240
241 profileCpu := flag.String("cpuprofile", "", "write cpu profile to file")
242
243 logLevel := flag.String("logLevel", conf.BBSim.LogLevel, "Set the log level (trace, debug, info, warn, error)")
244 logCaller := flag.Bool("logCaller", conf.BBSim.LogCaller, "Whether to print the caller filename or not")
245
246 delay := flag.Int("delay", conf.BBSim.Delay, "The delay between ONU DISCOVERY batches in milliseconds (1 ONU per each PON PORT at a time")
247
248 controlledActivation := flag.String("ca", conf.BBSim.ControlledActivation, "Set the mode for controlled activation of PON ports and ONUs")
249 enablePerf := flag.Bool("enableperf", conf.BBSim.EnablePerf, "Setting this flag will cause BBSim to not store data like traffic schedulers, flows of ONUs etc..")
250 enableEvents := flag.Bool("enableEvents", conf.BBSim.Events, "Enable sending BBSim events on configured kafka server")
251 kafkaAddress := flag.String("kafkaAddress", conf.BBSim.KafkaAddress, "IP:Port for kafka")
252 kafkaEventTopic := flag.String("kafkaEventTopic", conf.BBSim.KafkaEventTopic, "Ability to configure the topic on which BBSim publishes events on Kafka")
253 dhcpRetry := flag.Bool("dhcpRetry", conf.BBSim.DhcpRetry, "Set this flag if BBSim should retry DHCP upon failure until success")
254 authRetry := flag.Bool("authRetry", conf.BBSim.AuthRetry, "Set this flag if BBSim should retry EAPOL (Authentication) upon failure until success")
Matteo Scandolo93566702020-09-30 15:19:27 -0700255
Matteo Scandolo4a036262020-08-17 15:56:13 -0700256 flag.Parse()
257
258 conf.Olt.ID = int(*olt_id)
259 conf.Olt.NniPorts = uint32(*nni)
260 conf.Olt.PonPorts = uint32(*pon)
261 conf.Olt.OnusPonPort = uint32(*onu)
Matteo Scandolo93566702020-09-30 15:19:27 -0700262 conf.Olt.OltRebootDelay = *oltRebootDelay
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000263 conf.Olt.OmciResponseRate = uint8(*omci_response_rate)
Matteo Scandolo4a036262020-08-17 15:56:13 -0700264 conf.BBSim.ConfigFile = *configFile
265 conf.BBSim.ServiceConfigFile = *servicesFile
266 conf.BBSim.CpuProfile = profileCpu
267 conf.BBSim.LogLevel = *logLevel
268 conf.BBSim.LogCaller = *logCaller
269 conf.BBSim.Delay = *delay
270 conf.BBSim.ControlledActivation = *controlledActivation
271 conf.BBSim.EnablePerf = *enablePerf
272 conf.BBSim.Events = *enableEvents
273 conf.BBSim.KafkaAddress = *kafkaAddress
274 conf.BBSim.OpenOltAddress = *openolt_address
275 conf.BBSim.ApiAddress = *api_address
276 conf.BBSim.RestApiAddress = *rest_api_address
277 conf.BBSim.KafkaEventTopic = *kafkaEventTopic
278 conf.BBSim.AuthRetry = *authRetry
279 conf.BBSim.DhcpRetry = *dhcpRetry
amit.ghosh258d14c2020-10-02 15:13:38 +0200280 conf.BBSim.DmiServerAddress = *dmi_server_address
Matteo Scandolo4a036262020-08-17 15:56:13 -0700281
282 // update device id if not set
283 if conf.Olt.DeviceId == "" {
284 conf.Olt.DeviceId = net.HardwareAddr{0xA, 0xA, 0xA, 0xA, 0xA, byte(conf.Olt.ID)}.String()
285 }
286
Matteo Scandolo94967142021-05-28 11:37:06 -0700287 // check that the BP format is valid
288 if (*sadisBpFormat != BP_FORMAT_MEF) && (*sadisBpFormat != BP_FORMAT_IETF) {
289 log.Fatalf("Invalid parameter 'bp_format', supported values are %s and %s, you provided %s", BP_FORMAT_MEF, BP_FORMAT_IETF, *sadisBpFormat)
290 }
291 conf.BBSim.BandwidthProfileFormat = *sadisBpFormat
292
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700293 return conf
Matteo Scandolo4a036262020-08-17 15:56:13 -0700294}
295
296func getDefaultOps() *GlobalConfig {
297
298 c := &GlobalConfig{
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100299 BBSimConfig{
Matteo Scandolo94967142021-05-28 11:37:06 -0700300 ConfigFile: "configs/bbsim.yaml",
301 ServiceConfigFile: "configs/att-services.yaml",
302 LogLevel: "debug",
303 LogCaller: false,
304 Delay: 200,
305 OpenOltAddress: ":50060",
306 ApiAddress: ":50070",
307 RestApiAddress: ":50071",
308 LegacyApiAddress: ":50072",
309 LegacyRestApiAddress: ":50073",
310 SadisRestAddress: ":50074",
311 SadisServer: true,
312 KafkaAddress: ":9092",
313 Events: false,
314 ControlledActivation: "default",
315 EnablePerf: false,
316 KafkaEventTopic: "",
317 DhcpRetry: false,
318 AuthRetry: false,
319 DmiServerAddress: ":50075",
320 BandwidthProfileFormat: BP_FORMAT_MEF,
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100321 },
322 OltConfig{
323 Vendor: "BBSim",
324 Model: "asfvolt16",
325 HardwareVersion: "emulated",
326 FirmwareVersion: "",
327 DeviceSerialNumber: "BBSM00000001",
328 PonPorts: 1,
329 NniPorts: 1,
330 OnusPonPort: 1,
331 Technology: "XGS-PON",
332 ID: 0,
Matteo Scandolo93566702020-09-30 15:19:27 -0700333 OltRebootDelay: 60,
Pragya Arya996a0892020-03-09 21:47:52 +0530334 PortStatsInterval: 20,
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000335 OmciResponseRate: 10,
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100336 },
337 BBRConfig{
338 LogLevel: "debug",
339 LogCaller: false,
340 },
341 }
342 return c
343}
344
345// LoadBBSimConf loads the BBSim configuration from a YAML file
Matteo Scandolo4a036262020-08-17 15:56:13 -0700346func loadBBSimConf(filename string) (*GlobalConfig, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100347 yamlConfig := getDefaultOps()
348
349 yamlFile, err := ioutil.ReadFile(filename)
350 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700351 log.WithFields(log.Fields{
352 "err": err,
353 "filename": filename,
354 }).Error("Cannot load BBSim configuration file. Using defaults.")
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100355 return yamlConfig, nil
356 }
357
358 err = yaml.Unmarshal(yamlFile, yamlConfig)
359 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700360 return nil, err
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100361 }
362
363 return yamlConfig, nil
364}
365
Matteo Scandolo4a036262020-08-17 15:56:13 -0700366// LoadBBSimServices parses a file describing the services that need to be created for each UNI
367func loadBBSimServices(filename string) ([]ServiceYaml, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100368
Matteo Scandolo4a036262020-08-17 15:56:13 -0700369 yamlServiceCfg := YamlServiceConfig{}
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100370
Matteo Scandolo4a036262020-08-17 15:56:13 -0700371 yamlFile, err := ioutil.ReadFile(filename)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700372 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700373 return nil, err
Matteo Scandolof65e6872020-04-15 15:18:43 -0700374 }
375
Matteo Scandolo4a036262020-08-17 15:56:13 -0700376 err = yaml.Unmarshal([]byte(yamlFile), &yamlServiceCfg)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700377 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700378 return nil, err
Matteo Scandolof65e6872020-04-15 15:18:43 -0700379 }
380
Matteo Scandolo4a036262020-08-17 15:56:13 -0700381 for _, service := range yamlServiceCfg.Services {
382
383 if service.CTagAllocation == "" || service.STagAllocation == "" {
384 log.Fatal("c_tag_allocation and s_tag_allocation are mandatory fields")
385 }
386
387 if _, err := tagAllocationFromString(string(service.CTagAllocation)); err != nil {
388 log.WithFields(log.Fields{
389 "err": err,
390 }).Fatal("c_tag_allocation is not valid")
391 }
Matteo Scandolof65e6872020-04-15 15:18:43 -0700392 }
393
Matteo Scandolo4a036262020-08-17 15:56:13 -0700394 log.WithFields(log.Fields{
395 "services": yamlServiceCfg.String(),
396 }).Debug("BBSim services description correctly loaded")
397 return yamlServiceCfg.Services, nil
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700398}
399
Matteo Scandolo4a036262020-08-17 15:56:13 -0700400// This is only used by BBR
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700401func GetBBROpts() BBRCliOptions {
402
403 bbsimIp := flag.String("bbsimIp", "127.0.0.1", "BBSim IP")
404 bbsimPort := flag.String("bbsimPort", "50060", "BBSim Port")
405 bbsimApiPort := flag.String("bbsimApiPort", "50070", "BBSim API Port")
Matteo Scandolof5c537e2019-10-28 16:45:57 -0700406 logFile := flag.String("logfile", "", "Log to a file")
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700407
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700408 LoadConfig()
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700409
410 bbrOptions := BBRCliOptions{
Matteo Scandolo4a036262020-08-17 15:56:13 -0700411 Config,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700412 *bbsimIp,
413 *bbsimPort,
414 *bbsimApiPort,
Matteo Scandolof5c537e2019-10-28 16:45:57 -0700415 *logFile,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700416 }
417
418 return bbrOptions
419}