blob: cbcee0fed8484666806ca76f0744d86e14277dd4 [file] [log] [blame]
Keita NISHIMOTO9708e042018-10-27 09:24:44 +09001/*
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 core
18
19import (
Matteo Scandolo88e91892018-11-06 16:29:19 -080020 "flag"
21 "fmt"
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090022 "os"
23 "os/signal"
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090024 "strconv"
Matteo Scandolo88e91892018-11-06 16:29:19 -080025 "strings"
26 "sync"
27
28 "gerrit.opencord.org/voltha-bbsim/common/logger"
29 log "github.com/sirupsen/logrus"
Keita NISHIMOTO3f080622019-01-16 10:21:22 +090030 "gerrit.opencord.org/voltha-bbsim/device"
31 "reflect"
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090032)
33
Matteo Scandolo88e91892018-11-06 16:29:19 -080034type option struct {
35 address string
36 port uint32
37 oltid uint32
38 npon uint32
39 nonus uint32
40 aaawait int
41 dhcpwait int
42 dhcpservip string
43 intvl int
Matteo Scandolo88e91892018-11-06 16:29:19 -080044 Mode Mode
45 KafkaBroker string
Mahir Gunyel09183342019-01-29 14:26:50 -080046 Debuglvl string
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090047}
48
49func GetOptions() *option {
50 o := new(option)
51 addressport := flag.String("H", ":50060", "IP address:port")
Matteo Scandolo88e91892018-11-06 16:29:19 -080052 oltid := flag.Int("id", 0, "OLT-ID")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090053 npon := flag.Int("i", 1, "Number of PON-IF ports")
54 nonus := flag.Int("n", 1, "Number of ONUs per PON-IF port")
55 modeopt := flag.String("m", "default", "Emulation mode (default, aaa, both (aaa & dhcp))")
Keita NISHIMOTO2b694202018-12-18 07:30:55 +090056 aaawait := flag.Int("aw", 10, "Wait time (sec) for activation WPA supplicants")
57 dhcpwait := flag.Int("dw", 20, "Wait time (sec) for activation DHCP clients")
Keita NISHIMOTO2f8a6a42019-02-08 09:47:07 +090058 dhcpservip := flag.String("s", "182.21.0.128", "DHCP Server IP Address")
Keita NISHIMOTOd502e662019-03-01 12:02:51 +090059 intvl := flag.Int("v", 1000, "Interval each Indication (ms)")
Matteo Scandolo88e91892018-11-06 16:29:19 -080060 kafkaBroker := flag.String("k", "", "Kafka broker")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090061 o.Mode = DEFAULT
Mahir Gunyel09183342019-01-29 14:26:50 -080062 debg := flag.String("d", "DEBUG", "Debug Level(TRACE DEBUG INFO WARN ERROR)")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090063 flag.Parse()
64 if *modeopt == "aaa" {
65 o.Mode = AAA
66 } else if *modeopt == "both" {
67 o.Mode = BOTH
68 }
Mahir Gunyel09183342019-01-29 14:26:50 -080069 o.Debuglvl = *debg
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090070 o.oltid = uint32(*oltid)
71 o.npon = uint32(*npon)
72 o.nonus = uint32(*nonus)
73 o.aaawait = *aaawait
74 o.dhcpwait = *dhcpwait
75 o.dhcpservip = *dhcpservip
76 o.intvl = *intvl
Matteo Scandolo88e91892018-11-06 16:29:19 -080077 o.KafkaBroker = *kafkaBroker
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090078 o.address = (strings.Split(*addressport, ":")[0])
79 tmp, _ := strconv.Atoi(strings.Split(*addressport, ":")[1])
80 o.port = uint32(tmp)
81 return o
82}
83
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090084type mediator struct {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +090085 opt *option
86 server *Server
87 testmanager *TestManager
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090088}
89
Matteo Scandolo88e91892018-11-06 16:29:19 -080090func NewMediator(o *option) *mediator {
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090091 m := new(mediator)
92 m.opt = o
Matteo Scandolo88e91892018-11-06 16:29:19 -080093 logger.WithFields(log.Fields{
94 "ip": o.address,
95 "baseport": o.port,
96 "pon_ports": o.npon,
97 "onus": o.nonus,
98 "mode": o.Mode,
99 }).Debug("New mediator")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900100 return m
101}
102
Matteo Scandolo88e91892018-11-06 16:29:19 -0800103func (m *mediator) Start() {
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900104 var wg sync.WaitGroup
105 opt := m.opt
Keita NISHIMOTO3af86da2018-12-12 10:34:43 +0900106 server := NewCore(opt)
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900107 wg.Add(1)
Matteo Scandolo88e91892018-11-06 16:29:19 -0800108 go func() {
109 if err := server.Start(); err != nil { //Blocking
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800110 logger.Error("Start %s", err)
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900111 }
112 wg.Done()
113 return
114 }()
115
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900116 tm := NewTestManager(opt)
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900117 m.server = server
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900118 m.testmanager = tm
Matteo Scandolo88e91892018-11-06 16:29:19 -0800119 go func() {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900120 m.Mediate()
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900121 }()
122
123 c := make(chan os.Signal, 1)
124 signal.Notify(c, os.Interrupt)
125 go func() {
Matteo Scandolo88e91892018-11-06 16:29:19 -0800126 defer func() {
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900127 logger.Debug("SIGINT catcher Done")
128 wg.Done()
129 }()
130 for sig := range c {
131 wg.Add(1)
132 fmt.Println("SIGINT", sig)
133 close(c)
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900134 server.Stop() //Non-blocking
135 tm.Stop() //Non-blocking
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900136 return
137 }
138 }()
139 wg.Wait()
140 logger.Debug("Reach to the end line")
141}
142
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900143func (m *mediator) Mediate() {
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900144 defer logger.Debug("Mediate Done")
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900145 for sr := range m.server.stateRepCh {
146 next := sr.next
147 current := sr.current
148 dev := sr.device
149 if reflect.TypeOf(dev) == reflect.TypeOf(&device.Olt{}){
150 logger.Debug("Received OLT Device %v Current: %d Next: %d", dev, current, next)
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900151 if err := transitOlt(current, next, m.testmanager, m.opt); err != nil {
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900152 logger.Error("%v", err)
153 }
154 } else if reflect.TypeOf(dev) == reflect.TypeOf(&device.Onu{}) {
155 logger.Debug("Received ONU Device %v Current: %d Next: %d", dev, current, next)
156 key := dev.GetDevkey()
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900157 if err := transitOnu(key, current, next, m.testmanager, m.opt); err != nil {
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900158 logger.Error("%v", err)
159 }
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900160 }
161 }
Matteo Scandolo88e91892018-11-06 16:29:19 -0800162}
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900163
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900164func transitOlt (current device.DeviceState, next device.DeviceState, tm *TestManager, o *option) error {
165 logger.Debug("trnsitOlt called current:%d , next:%d", current, next)
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900166 if current == device.OLT_PREACTIVE && next == device.OLT_ACTIVE {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900167 tm.Start()
168 activateDHCPServer("nni_north0", o.dhcpservip)
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900169 } else if current == device.OLT_ACTIVE && next == device.OLT_PREACTIVE{
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900170 tm.Stop()
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900171 }
172 return nil
173}
174
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900175func transitOnu (key device.Devkey, current device.DeviceState, next device.DeviceState, tm *TestManager, o *option) error {
176 logger.Debug("trnsitOnu called with key:%s, current:%d , next:%d", key, current, next)
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900177 if current == device.ONU_ACTIVE && next == device.ONU_OMCIACTIVE {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900178 t := tm.CreateTester(o, key)
179 if err := tm.StartTester(key, t); err != nil {
180 logger.Error("Cannot Start Executer error:%v", err)
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900181 }
182 } else if (current == device.ONU_OMCIACTIVE || current == device.ONU_ACTIVE) &&
183 next == device.ONU_INACTIVE {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900184 if err := tm.StopTester(key); err != nil {
185 logger.Error("Cannot Start Executer error:%v", err)
186 }
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900187 }
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900188 return nil
Mahir Gunyel09183342019-01-29 14:26:50 -0800189}