blob: 4e8833ad92872c67b3a15ac91753b232b6637328 [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
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +020049// GetOptions receives command line options and stores them in option structure
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090050func GetOptions() *option {
51 o := new(option)
52 addressport := flag.String("H", ":50060", "IP address:port")
Matteo Scandolo88e91892018-11-06 16:29:19 -080053 oltid := flag.Int("id", 0, "OLT-ID")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090054 npon := flag.Int("i", 1, "Number of PON-IF ports")
55 nonus := flag.Int("n", 1, "Number of ONUs per PON-IF port")
56 modeopt := flag.String("m", "default", "Emulation mode (default, aaa, both (aaa & dhcp))")
Keita NISHIMOTO2b694202018-12-18 07:30:55 +090057 aaawait := flag.Int("aw", 10, "Wait time (sec) for activation WPA supplicants")
58 dhcpwait := flag.Int("dw", 20, "Wait time (sec) for activation DHCP clients")
Keita NISHIMOTO2f8a6a42019-02-08 09:47:07 +090059 dhcpservip := flag.String("s", "182.21.0.128", "DHCP Server IP Address")
Keita NISHIMOTOd502e662019-03-01 12:02:51 +090060 intvl := flag.Int("v", 1000, "Interval each Indication (ms)")
Matteo Scandolo88e91892018-11-06 16:29:19 -080061 kafkaBroker := flag.String("k", "", "Kafka broker")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090062 o.Mode = DEFAULT
Mahir Gunyel09183342019-01-29 14:26:50 -080063 debg := flag.String("d", "DEBUG", "Debug Level(TRACE DEBUG INFO WARN ERROR)")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090064 flag.Parse()
65 if *modeopt == "aaa" {
66 o.Mode = AAA
67 } else if *modeopt == "both" {
68 o.Mode = BOTH
69 }
Mahir Gunyel09183342019-01-29 14:26:50 -080070 o.Debuglvl = *debg
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090071 o.oltid = uint32(*oltid)
72 o.npon = uint32(*npon)
73 o.nonus = uint32(*nonus)
74 o.aaawait = *aaawait
75 o.dhcpwait = *dhcpwait
76 o.dhcpservip = *dhcpservip
77 o.intvl = *intvl
Matteo Scandolo88e91892018-11-06 16:29:19 -080078 o.KafkaBroker = *kafkaBroker
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090079 o.address = (strings.Split(*addressport, ":")[0])
80 tmp, _ := strconv.Atoi(strings.Split(*addressport, ":")[1])
81 o.port = uint32(tmp)
82 return o
83}
84
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090085type mediator struct {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +090086 opt *option
87 server *Server
88 testmanager *TestManager
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090089}
90
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +020091// NewMediator returns a new mediator object
Matteo Scandolo88e91892018-11-06 16:29:19 -080092func NewMediator(o *option) *mediator {
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090093 m := new(mediator)
94 m.opt = o
Matteo Scandolo88e91892018-11-06 16:29:19 -080095 logger.WithFields(log.Fields{
96 "ip": o.address,
97 "baseport": o.port,
98 "pon_ports": o.npon,
99 "onus": o.nonus,
100 "mode": o.Mode,
101 }).Debug("New mediator")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900102 return m
103}
104
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200105// Start mediator
Matteo Scandolo88e91892018-11-06 16:29:19 -0800106func (m *mediator) Start() {
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900107 var wg sync.WaitGroup
108 opt := m.opt
Keita NISHIMOTO3af86da2018-12-12 10:34:43 +0900109 server := NewCore(opt)
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900110 wg.Add(1)
Matteo Scandolo88e91892018-11-06 16:29:19 -0800111 go func() {
112 if err := server.Start(); err != nil { //Blocking
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800113 logger.Error("Start %s", err)
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900114 }
115 wg.Done()
116 return
117 }()
118
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900119 tm := NewTestManager(opt)
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900120 m.server = server
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900121 m.testmanager = tm
Matteo Scandolo88e91892018-11-06 16:29:19 -0800122 go func() {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900123 m.Mediate()
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900124 }()
125
126 c := make(chan os.Signal, 1)
127 signal.Notify(c, os.Interrupt)
128 go func() {
Matteo Scandolo88e91892018-11-06 16:29:19 -0800129 defer func() {
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900130 logger.Debug("SIGINT catcher Done")
131 wg.Done()
132 }()
133 for sig := range c {
134 wg.Add(1)
135 fmt.Println("SIGINT", sig)
136 close(c)
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900137 server.Stop() //Non-blocking
138 tm.Stop() //Non-blocking
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900139 return
140 }
141 }()
142 wg.Wait()
143 logger.Debug("Reach to the end line")
144}
145
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200146// Mediate method is invoked on OLT and ONU state change
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900147func (m *mediator) Mediate() {
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900148 defer logger.Debug("Mediate Done")
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900149 for sr := range m.server.stateRepCh {
150 next := sr.next
151 current := sr.current
152 dev := sr.device
153 if reflect.TypeOf(dev) == reflect.TypeOf(&device.Olt{}){
154 logger.Debug("Received OLT Device %v Current: %d Next: %d", dev, current, next)
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900155 if err := transitOlt(current, next, m.testmanager, m.opt); err != nil {
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900156 logger.Error("%v", err)
157 }
158 } else if reflect.TypeOf(dev) == reflect.TypeOf(&device.Onu{}) {
159 logger.Debug("Received ONU Device %v Current: %d Next: %d", dev, current, next)
160 key := dev.GetDevkey()
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900161 if err := transitOnu(key, current, next, m.testmanager, m.opt); err != nil {
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900162 logger.Error("%v", err)
163 }
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900164 }
165 }
Matteo Scandolo88e91892018-11-06 16:29:19 -0800166}
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900167
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900168func transitOlt (current device.DeviceState, next device.DeviceState, tm *TestManager, o *option) error {
169 logger.Debug("trnsitOlt called current:%d , next:%d", current, next)
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900170 if current == device.OLT_PREACTIVE && next == device.OLT_ACTIVE {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900171 tm.Start()
Mahir Gunyel639c4f72019-04-26 12:05:32 -0700172 nniup, _ := makeNniName(o.oltid)
173 activateDHCPServer(nniup, o.dhcpservip)
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900174 } else if current == device.OLT_ACTIVE && next == device.OLT_PREACTIVE{
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900175 tm.Stop()
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900176 }
177 return nil
178}
179
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900180func transitOnu (key device.Devkey, current device.DeviceState, next device.DeviceState, tm *TestManager, o *option) error {
Zack Williamsb85f5932019-05-10 16:21:35 -0700181 logger.Debug("trnsitOnu called with key: %v, current: %d, next: %d", key, current, next)
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900182 if current == device.ONU_ACTIVE && next == device.ONU_OMCIACTIVE {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900183 t := tm.CreateTester(o, key)
184 if err := tm.StartTester(key, t); err != nil {
185 logger.Error("Cannot Start Executer error:%v", err)
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900186 }
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200187 } else if current == device.ONU_OMCIACTIVE && next == device.ONU_INACTIVE {
Keita NISHIMOTOdd9f6732019-02-09 09:41:31 +0900188 if err := tm.StopTester(key); err != nil {
189 logger.Error("Cannot Start Executer error:%v", err)
190 }
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900191 }
Keita NISHIMOTO3f080622019-01-16 10:21:22 +0900192 return nil
Mahir Gunyel09183342019-01-29 14:26:50 -0800193}