blob: 4ba93017808569e97ecd4baf2c56159e4044d593 [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
37type TagAllocation int
38
39func (t TagAllocation) String() string {
40 return tagAllocationValues[t]
41}
42
43func tagAllocationFromString(s string) (TagAllocation, error) {
44 for i, v := range tagAllocationValues {
Matteo Scandolo4a036262020-08-17 15:56:13 -070045 if v == strings.TrimSpace(s) {
Matteo Scandolof65e6872020-04-15 15:18:43 -070046 return TagAllocation(i), nil
47 }
48 }
49 log.WithFields(log.Fields{
50 "ValidValues": strings.Join(tagAllocationValues[1:], ", "),
51 }).Errorf("%s-is-not-a-valid-tag-allocation", s)
Shrey Baid688b4242020-07-10 20:40:10 +053052 return TagAllocation(0), fmt.Errorf("%s-is-not-a-valid-tag-allocation", s)
Matteo Scandolof65e6872020-04-15 15:18:43 -070053}
54
55const (
56 _ TagAllocation = iota
57 TagAllocationShared
58 TagAllocationUnique
59)
60
Matteo Scandolo40e067f2019-10-16 16:59:41 -070061type BBRCliOptions struct {
Matteo Scandolo4a036262020-08-17 15:56:13 -070062 *GlobalConfig
Matteo Scandolo40e067f2019-10-16 16:59:41 -070063 BBSimIp string
64 BBSimPort string
65 BBSimApiPort string
Matteo Scandolof5c537e2019-10-28 16:45:57 -070066 LogFile string
Matteo Scandolo40e067f2019-10-16 16:59:41 -070067}
68
Matteo Scandolo4a036262020-08-17 15:56:13 -070069type GlobalConfig struct {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010070 BBSim BBSimConfig
71 Olt OltConfig
72 BBR BBRConfig
73}
Matteo Scandolo40e067f2019-10-16 16:59:41 -070074
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010075type OltConfig struct {
76 Model string `yaml:"model"`
77 Vendor string `yaml:"vendor"`
78 HardwareVersion string `yaml:"hardware_version"`
79 FirmwareVersion string `yaml:"firmware_version"`
80 DeviceId string `yaml:"device_id"`
81 DeviceSerialNumber string `yaml:"device_serial_number"`
82 PonPorts uint32 `yaml:"pon_ports"`
83 NniPorts uint32 `yaml:"nni_ports"`
84 OnusPonPort uint32 `yaml:"onus_per_port"`
85 Technology string `yaml:"technology"`
86 ID int `yaml:"id"`
87 OltRebootDelay int `yaml:"reboot_delay"`
Shrey Baid688b4242020-07-10 20:40:10 +053088 PortStatsInterval int `yaml:"port_stats_interval"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010089}
Matteo Scandolo40e067f2019-10-16 16:59:41 -070090
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010091type BBSimConfig struct {
Matteo Scandolo4a036262020-08-17 15:56:13 -070092 ConfigFile string
93 ServiceConfigFile string
94 DhcpRetry bool `yaml:"dhcp_retry"`
95 AuthRetry bool `yaml:"auth_retry"`
96 LogLevel string `yaml:"log_level"`
97 LogCaller bool `yaml:"log_caller"`
98 Delay int `yaml:"delay"`
99 CpuProfile *string `yaml:"cpu_profile"`
100 OpenOltAddress string `yaml:"openolt_address"`
101 ApiAddress string `yaml:"api_address"`
102 RestApiAddress string `yaml:"rest_api_address"`
103 LegacyApiAddress string `yaml:"legacy_api_address"`
104 LegacyRestApiAddress string `yaml:"legacy_rest_api_address"`
105 SadisRestAddress string `yaml:"sadis_rest_address"`
106 SadisServer bool `yaml:"sadis_server"`
107 KafkaAddress string `yaml:"kafka_address"`
108 Events bool `yaml:"enable_events"`
109 ControlledActivation string `yaml:"controlled_activation"`
110 EnablePerf bool `yaml:"enable_perf"`
111 KafkaEventTopic string `yaml:"kafka_event_topic"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100112}
Matteo Scandoloc1147092019-10-29 09:38:33 -0700113
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100114type BBRConfig struct {
115 Log string `yaml:"log"`
116 LogLevel string `yaml:"log_level"`
117 LogCaller bool `yaml:"log_caller"`
118}
119
Matteo Scandolo4a036262020-08-17 15:56:13 -0700120type ServiceYaml struct {
121 Name string
122 CTag int `yaml:"c_tag"`
123 STag int `yaml:"s_tag"`
124 NeedsEapol bool `yaml:"needs_eapol"`
125 NeedsDchp bool `yaml:"needs_dhcp"`
126 NeedsIgmp bool `yaml:"needs_igmp"`
127 CTagAllocation string `yaml:"c_tag_allocation"`
128 STagAllocation string `yaml:"s_tag_allocation"`
129 TechnologyProfileID int `yaml:"tp_id"`
130 UniTagMatch int `yaml:"uni_tag_match"`
131 ConfigureMacAddress bool `yaml:"configure_mac_address"`
Matteo Scandolo8d281372020-09-03 16:23:37 -0700132 UsPonCTagPriority uint8 `yaml:"us_pon_c_tag_priority"`
133 UsPonSTagPriority uint8 `yaml:"us_pon_s_tag_priority"`
134 DsPonCTagPriority uint8 `yaml:"ds_pon_c_tag_priority"`
135 DsPonSTagPriority uint8 `yaml:"ds_pon_s_tag_priority"`
Matteo Scandolo4a036262020-08-17 15:56:13 -0700136}
137type YamlServiceConfig struct {
138 Workflow string
139 Services []ServiceYaml `yaml:"services,flow"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100140}
141
Matteo Scandolo4a036262020-08-17 15:56:13 -0700142func (cfg *YamlServiceConfig) String() string {
143 str := fmt.Sprintf("[workflow: %s, Services: ", cfg.Workflow)
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100144
Matteo Scandolo4a036262020-08-17 15:56:13 -0700145 for _, s := range cfg.Services {
146 str = fmt.Sprintf("%s[", str)
147 str = fmt.Sprintf("%sname=%s, c_tag=%d, s_tag=%d, ",
148 str, s.Name, s.CTag, s.STag)
149 str = fmt.Sprintf("%sc_tag_allocation=%s, s_tag_allocation=%s, ",
150 str, s.CTagAllocation, s.STagAllocation)
151 str = fmt.Sprintf("%sneeds_eapol=%t, needs_dhcp=%t, needs_igmp=%t",
152 str, s.NeedsEapol, s.NeedsDchp, s.NeedsIgmp)
153 str = fmt.Sprintf("%stp_id=%d, uni_tag_match=%d",
154 str, s.TechnologyProfileID, s.UniTagMatch)
155 str = fmt.Sprintf("%s]", str)
156 }
157 str = fmt.Sprintf("%s]", str)
158 return str
159}
160
161var (
162 Config *GlobalConfig
163 Services []ServiceYaml
164)
165
166// Load the BBSim configuration. This is a combination of CLI parameters and YAML files
167// We proceed in this order:
168// - Read CLI parameters
169// - Using those we read the yaml files (config and services)
170// - we merge the configuration (CLI has priority over yaml files)
171func LoadConfig() {
172
173 Config = getDefaultOps()
174
175 cliConf := readCliParams()
176
177 yamlConf, err := loadBBSimConf(cliConf.BBSim.ConfigFile)
178
179 if err != nil {
180 log.WithFields(log.Fields{
181 "file": cliConf.BBSim.ConfigFile,
182 "err": err,
183 }).Fatal("Can't read config file")
184 }
185
186 // merging Yaml and Default Values
187 if err := mergo.Merge(Config, yamlConf, mergo.WithOverride); err != nil {
188 log.WithFields(log.Fields{
189 "err": err,
190 }).Fatal("Can't merge YAML and Config")
191 }
192
193 // merging CLI values on top of the yaml ones
194 if err := mergo.Merge(Config, cliConf, mergo.WithOverride); err != nil {
195 log.WithFields(log.Fields{
196 "err": err,
197 }).Fatal("Can't merge CLI and Config")
198 }
199
200 services, err := loadBBSimServices(Config.BBSim.ServiceConfigFile)
201
202 if err != nil {
203 log.WithFields(log.Fields{
204 "file": Config.BBSim.ServiceConfigFile,
205 "err": err,
206 }).Fatal("Can't read services file")
207 }
208
209 Services = services
210
211}
212
213func readCliParams() *GlobalConfig {
214
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700215 conf := getDefaultOps()
Matteo Scandolo4a036262020-08-17 15:56:13 -0700216
217 configFile := flag.String("config", conf.BBSim.ConfigFile, "Configuration file path")
218 servicesFile := flag.String("services", conf.BBSim.ServiceConfigFile, "Service Configuration file path")
219
220 olt_id := flag.Int("olt_id", conf.Olt.ID, "OLT device ID")
221 nni := flag.Int("nni", int(conf.Olt.NniPorts), "Number of NNI ports per OLT device to be emulated")
222 pon := flag.Int("pon", int(conf.Olt.PonPorts), "Number of PON ports per OLT device to be emulated")
223 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 -0700224 oltRebootDelay := flag.Int("oltRebootDelay", conf.Olt.OltRebootDelay, "Time that BBSim should before restarting after a reboot")
Matteo Scandolo4a036262020-08-17 15:56:13 -0700225
226 openolt_address := flag.String("openolt_address", conf.BBSim.OpenOltAddress, "IP address:port")
227 api_address := flag.String("api_address", conf.BBSim.ApiAddress, "IP address:port")
228 rest_api_address := flag.String("rest_api_address", conf.BBSim.RestApiAddress, "IP address:port")
229
230 profileCpu := flag.String("cpuprofile", "", "write cpu profile to file")
231
232 logLevel := flag.String("logLevel", conf.BBSim.LogLevel, "Set the log level (trace, debug, info, warn, error)")
233 logCaller := flag.Bool("logCaller", conf.BBSim.LogCaller, "Whether to print the caller filename or not")
234
235 delay := flag.Int("delay", conf.BBSim.Delay, "The delay between ONU DISCOVERY batches in milliseconds (1 ONU per each PON PORT at a time")
236
237 controlledActivation := flag.String("ca", conf.BBSim.ControlledActivation, "Set the mode for controlled activation of PON ports and ONUs")
238 enablePerf := flag.Bool("enableperf", conf.BBSim.EnablePerf, "Setting this flag will cause BBSim to not store data like traffic schedulers, flows of ONUs etc..")
239 enableEvents := flag.Bool("enableEvents", conf.BBSim.Events, "Enable sending BBSim events on configured kafka server")
240 kafkaAddress := flag.String("kafkaAddress", conf.BBSim.KafkaAddress, "IP:Port for kafka")
241 kafkaEventTopic := flag.String("kafkaEventTopic", conf.BBSim.KafkaEventTopic, "Ability to configure the topic on which BBSim publishes events on Kafka")
242 dhcpRetry := flag.Bool("dhcpRetry", conf.BBSim.DhcpRetry, "Set this flag if BBSim should retry DHCP upon failure until success")
243 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 -0700244
Matteo Scandolo4a036262020-08-17 15:56:13 -0700245 flag.Parse()
246
247 conf.Olt.ID = int(*olt_id)
248 conf.Olt.NniPorts = uint32(*nni)
249 conf.Olt.PonPorts = uint32(*pon)
250 conf.Olt.OnusPonPort = uint32(*onu)
Matteo Scandolo93566702020-09-30 15:19:27 -0700251 conf.Olt.OltRebootDelay = *oltRebootDelay
Matteo Scandolo4a036262020-08-17 15:56:13 -0700252 conf.BBSim.ConfigFile = *configFile
253 conf.BBSim.ServiceConfigFile = *servicesFile
254 conf.BBSim.CpuProfile = profileCpu
255 conf.BBSim.LogLevel = *logLevel
256 conf.BBSim.LogCaller = *logCaller
257 conf.BBSim.Delay = *delay
258 conf.BBSim.ControlledActivation = *controlledActivation
259 conf.BBSim.EnablePerf = *enablePerf
260 conf.BBSim.Events = *enableEvents
261 conf.BBSim.KafkaAddress = *kafkaAddress
262 conf.BBSim.OpenOltAddress = *openolt_address
263 conf.BBSim.ApiAddress = *api_address
264 conf.BBSim.RestApiAddress = *rest_api_address
265 conf.BBSim.KafkaEventTopic = *kafkaEventTopic
266 conf.BBSim.AuthRetry = *authRetry
267 conf.BBSim.DhcpRetry = *dhcpRetry
268
269 // update device id if not set
270 if conf.Olt.DeviceId == "" {
271 conf.Olt.DeviceId = net.HardwareAddr{0xA, 0xA, 0xA, 0xA, 0xA, byte(conf.Olt.ID)}.String()
272 }
273
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700274 return conf
Matteo Scandolo4a036262020-08-17 15:56:13 -0700275}
276
277func getDefaultOps() *GlobalConfig {
278
279 c := &GlobalConfig{
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100280 BBSimConfig{
Matteo Scandolo4a036262020-08-17 15:56:13 -0700281 ConfigFile: "configs/bbsim.yaml",
282 ServiceConfigFile: "configs/att-services.yaml",
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100283 LogLevel: "debug",
284 LogCaller: false,
285 Delay: 200,
Zdravko Bozakov958d81c2019-12-13 22:09:48 +0100286 OpenOltAddress: ":50060",
287 ApiAddress: ":50070",
288 RestApiAddress: ":50071",
289 LegacyApiAddress: ":50072",
290 LegacyRestApiAddress: ":50073",
291 SadisRestAddress: ":50074",
292 SadisServer: true,
Pragya Arya324337e2020-02-20 14:35:08 +0530293 KafkaAddress: ":9092",
294 Events: false,
Pragya Arya2225f202020-01-29 18:05:01 +0530295 ControlledActivation: "default",
Anand S Katti09541352020-01-29 15:54:01 +0530296 EnablePerf: false,
Shrey Baid64cda472020-04-24 18:58:18 +0530297 KafkaEventTopic: "",
Shrey Baidf8abccc2020-06-15 19:41:22 +0530298 DhcpRetry: false,
299 AuthRetry: false,
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100300 },
301 OltConfig{
302 Vendor: "BBSim",
303 Model: "asfvolt16",
304 HardwareVersion: "emulated",
305 FirmwareVersion: "",
306 DeviceSerialNumber: "BBSM00000001",
307 PonPorts: 1,
308 NniPorts: 1,
309 OnusPonPort: 1,
310 Technology: "XGS-PON",
311 ID: 0,
Matteo Scandolo93566702020-09-30 15:19:27 -0700312 OltRebootDelay: 60,
Pragya Arya996a0892020-03-09 21:47:52 +0530313 PortStatsInterval: 20,
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100314 },
315 BBRConfig{
316 LogLevel: "debug",
317 LogCaller: false,
318 },
319 }
320 return c
321}
322
323// LoadBBSimConf loads the BBSim configuration from a YAML file
Matteo Scandolo4a036262020-08-17 15:56:13 -0700324func loadBBSimConf(filename string) (*GlobalConfig, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100325 yamlConfig := getDefaultOps()
326
327 yamlFile, err := ioutil.ReadFile(filename)
328 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700329 log.WithFields(log.Fields{
330 "err": err,
331 "filename": filename,
332 }).Error("Cannot load BBSim configuration file. Using defaults.")
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100333 return yamlConfig, nil
334 }
335
336 err = yaml.Unmarshal(yamlFile, yamlConfig)
337 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700338 return nil, err
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100339 }
340
341 return yamlConfig, nil
342}
343
Matteo Scandolo4a036262020-08-17 15:56:13 -0700344// LoadBBSimServices parses a file describing the services that need to be created for each UNI
345func loadBBSimServices(filename string) ([]ServiceYaml, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100346
Matteo Scandolo4a036262020-08-17 15:56:13 -0700347 yamlServiceCfg := YamlServiceConfig{}
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100348
Matteo Scandolo4a036262020-08-17 15:56:13 -0700349 yamlFile, err := ioutil.ReadFile(filename)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700350 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700351 return nil, err
Matteo Scandolof65e6872020-04-15 15:18:43 -0700352 }
353
Matteo Scandolo4a036262020-08-17 15:56:13 -0700354 err = yaml.Unmarshal([]byte(yamlFile), &yamlServiceCfg)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700355 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700356 return nil, err
Matteo Scandolof65e6872020-04-15 15:18:43 -0700357 }
358
Matteo Scandolo4a036262020-08-17 15:56:13 -0700359 for _, service := range yamlServiceCfg.Services {
360
361 if service.CTagAllocation == "" || service.STagAllocation == "" {
362 log.Fatal("c_tag_allocation and s_tag_allocation are mandatory fields")
363 }
364
365 if _, err := tagAllocationFromString(string(service.CTagAllocation)); err != nil {
366 log.WithFields(log.Fields{
367 "err": err,
368 }).Fatal("c_tag_allocation is not valid")
369 }
Matteo Scandolof65e6872020-04-15 15:18:43 -0700370 }
371
Matteo Scandolo4a036262020-08-17 15:56:13 -0700372 log.WithFields(log.Fields{
373 "services": yamlServiceCfg.String(),
374 }).Debug("BBSim services description correctly loaded")
375 return yamlServiceCfg.Services, nil
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700376}
377
Matteo Scandolo4a036262020-08-17 15:56:13 -0700378// This is only used by BBR
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700379func GetBBROpts() BBRCliOptions {
380
381 bbsimIp := flag.String("bbsimIp", "127.0.0.1", "BBSim IP")
382 bbsimPort := flag.String("bbsimPort", "50060", "BBSim Port")
383 bbsimApiPort := flag.String("bbsimApiPort", "50070", "BBSim API Port")
Matteo Scandolof5c537e2019-10-28 16:45:57 -0700384 logFile := flag.String("logfile", "", "Log to a file")
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700385
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700386 LoadConfig()
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700387
388 bbrOptions := BBRCliOptions{
Matteo Scandolo4a036262020-08-17 15:56:13 -0700389 Config,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700390 *bbsimIp,
391 *bbsimPort,
392 *bbsimApiPort,
Matteo Scandolof5c537e2019-10-28 16:45:57 -0700393 *logFile,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700394 }
395
396 return bbrOptions
397}