Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [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 core |
| 18 | |
| 19 | import ( |
Matteo Scandolo | f7b260d | 2019-07-31 13:43:02 -0700 | [diff] [blame] | 20 | "bytes" |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 21 | "context" |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 22 | "fmt" |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 23 | "os/exec" |
| 24 | "strconv" |
| 25 | "time" |
| 26 | |
Zack Williams | 2abf393 | 2019-08-05 14:07:05 -0700 | [diff] [blame] | 27 | "github.com/opencord/voltha-bbsim/common/logger" |
| 28 | "github.com/opencord/voltha-bbsim/device" |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 29 | ) |
| 30 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 31 | // TestManager is the structure for test manager |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 32 | type TestManager struct { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 33 | DhcpServerIP string |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 34 | Pid []int |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 35 | testers map[string]map[device.Devkey]*Tester |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 36 | ctx context.Context |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 37 | cancel context.CancelFunc |
| 38 | } |
| 39 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 40 | // Tester is the structure for Test |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 41 | type Tester struct { |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 42 | Type string |
| 43 | Key device.Devkey |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 44 | Testfunc func(device.Devkey) error |
| 45 | Waitsec int |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 46 | ctx context.Context |
| 47 | cancel context.CancelFunc |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 48 | } |
| 49 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 50 | // NewTestManager returns new TestManager |
Zdravko Bozakov | 078a271 | 2019-07-19 23:25:15 +0200 | [diff] [blame] | 51 | func NewTestManager(opt *Option) *TestManager { |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 52 | t := new(TestManager) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 53 | t.DhcpServerIP = opt.dhcpservip |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 54 | return t |
| 55 | } |
| 56 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 57 | // CreateTester creates instance of Tester |
Zdravko Bozakov | 078a271 | 2019-07-19 23:25:15 +0200 | [diff] [blame] | 58 | func (*TestManager) CreateTester(testtype string, opt *Option, key device.Devkey, fn func(device.Devkey) error, waitsec int) *Tester { |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 59 | logger.Debug("CreateTester() called") |
| 60 | t := new(Tester) |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 61 | t.Type = testtype |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 62 | t.Key = key |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 63 | t.Testfunc = fn |
| 64 | t.Waitsec = waitsec |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 65 | return t |
| 66 | } |
| 67 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 68 | // Start does starting action - Blocking Call |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 69 | func (tm *TestManager) Start() error { |
| 70 | ctx, cancel := context.WithCancel(context.Background()) |
| 71 | tm.ctx = ctx |
| 72 | tm.cancel = cancel |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 73 | tm.testers = make(map[string]map[device.Devkey]*Tester) |
| 74 | tm.testers["AAA"] = map[device.Devkey]*Tester{} |
| 75 | tm.testers["DHCP"] = map[device.Devkey]*Tester{} |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 76 | logger.Info("TestManager start") |
| 77 | return nil |
| 78 | } |
| 79 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 80 | // Stop does stopping action |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 81 | func (tm *TestManager) Stop() error { |
| 82 | if tm.cancel != nil { |
| 83 | tm.cancel() |
| 84 | } |
| 85 | tm.Initialize() |
| 86 | logger.Debug("TestManager Done") |
| 87 | return nil |
| 88 | } |
| 89 | |
Zdravko Bozakov | 078a271 | 2019-07-19 23:25:15 +0200 | [diff] [blame] | 90 | // StartTester starts the test |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 91 | func (tm *TestManager) StartTester(t *Tester) error { |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 92 | testtype := t.Type |
| 93 | key := t.Key |
| 94 | waitsec := t.Waitsec |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 95 | |
Matteo Scandolo | 67add0c | 2019-08-01 16:41:14 -0700 | [diff] [blame] | 96 | // TODO use timers instead of this crazy loop: https://gobyexample.com/timers |
| 97 | |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 98 | logger.Debug("StartTester type:%s called with key:%v", testtype, key) |
| 99 | child, cancel := context.WithCancel(tm.ctx) |
| 100 | t.ctx = child |
| 101 | t.cancel = cancel |
| 102 | go func() error { |
| 103 | tick := time.NewTicker(time.Second) |
| 104 | counter := 0 |
| 105 | defer func() { |
| 106 | tick.Stop() |
| 107 | logger.Debug("Tester type:%s with key %v Done", testtype, key) |
| 108 | }() |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 109 | |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 110 | L: |
| 111 | for counter < waitsec { |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 112 | select { |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 113 | case <-tick.C: |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 114 | counter++ |
| 115 | if counter == waitsec { // TODO: This should be fixed |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 116 | break L |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 117 | } |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 118 | case <-child.Done(): |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 119 | return nil |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 120 | } |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 121 | } |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 122 | err := t.Testfunc(key) |
| 123 | if err != nil { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 124 | return err |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 125 | } |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 126 | return nil |
| 127 | }() |
| 128 | |
| 129 | tm.testers[testtype][key] = t |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 130 | return nil |
| 131 | } |
| 132 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 133 | // StopTester stops the test |
| 134 | func (tm *TestManager) StopTester(testtype string, key device.Devkey) error { |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 135 | ts := tm.testers[testtype][key] |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 136 | ts.cancel() |
Keita NISHIMOTO | 2807c54 | 2019-06-04 22:58:32 +0900 | [diff] [blame] | 137 | delete(tm.testers[testtype], key) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 138 | return nil |
| 139 | } |
| 140 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 141 | // Initialize test manager |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 142 | func (tm *TestManager) Initialize() { |
| 143 | logger.Info("TestManager Initialize () called") |
| 144 | pids := tm.Pid |
| 145 | logger.Debug("Runnig Process: %v", pids) |
Zdravko Bozakov | 078a271 | 2019-07-19 23:25:15 +0200 | [diff] [blame] | 146 | |
| 147 | err := KillProcesses(pids) |
| 148 | if err != nil { |
| 149 | logger.Error("%v", err) |
| 150 | } |
| 151 | |
| 152 | err = exec.Command("rm", "/var/run/dhcpd.pid").Run() // This is for DHCP server activation |
| 153 | if err != nil { |
| 154 | logger.Error("%v", err) |
| 155 | } |
| 156 | |
| 157 | err = exec.Command("touch", "/var/run/dhcpd.pid").Run() // This is for DHCP server activation |
| 158 | if err != nil { |
| 159 | logger.Error("%v", err) |
| 160 | } |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 161 | } |
| 162 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 163 | // KillProcesses kill process by specified pid |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 164 | func KillProcesses(pids []int) error { |
| 165 | for _, pname := range pids { |
Zdravko Bozakov | 078a271 | 2019-07-19 23:25:15 +0200 | [diff] [blame] | 166 | err := killProcess(pname) |
| 167 | if err != nil { |
| 168 | logger.Error("%v", err) |
| 169 | } |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 170 | } |
| 171 | return nil |
| 172 | } |
| 173 | |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 174 | func killProcess(pid int) error { |
| 175 | err := exec.Command("kill", strconv.Itoa(pid)).Run() |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 176 | if err != nil { |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 177 | logger.Error("Fail to kill %d: %v", pid, err) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 178 | return err |
| 179 | } |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 180 | logger.Info("Successfully killed %d", pid) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 181 | return nil |
| 182 | } |
| 183 | |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 184 | func activateWPASupplicant(key device.Devkey) (err error) { |
| 185 | if err = startEAPClient(key.Intfid, key.ID); err != nil { |
| 186 | errmsg := fmt.Sprintf("Failed to activate WPA Supplicant intfid: %d onuid: %d", key.Intfid, key.ID) |
| 187 | logger.Error(errmsg) |
Keita NISHIMOTO | 621a43d | 2019-01-30 20:53:03 +0900 | [diff] [blame] | 188 | } |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 189 | logger.Info("Successfuly activateWPASupplicant() for intfid:%d onuid:%d", key.Intfid, key.ID) |
| 190 | return nil |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 191 | } |
| 192 | |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 193 | func activateDHCPClient(key device.Devkey) (err error) { |
| 194 | if err = startDHCPClient(key.Intfid, key.ID); err != nil { |
| 195 | errmsg := fmt.Sprintf("Failed to activate DHCP client intfid: %d onuid: %d", key.Intfid, key.ID) |
| 196 | logger.Error(errmsg) |
Keita NISHIMOTO | 2f8a6a4 | 2019-02-08 09:47:07 +0900 | [diff] [blame] | 197 | } |
Keita NISHIMOTO | dd9f673 | 2019-02-09 09:41:31 +0900 | [diff] [blame] | 198 | return nil |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 199 | } |
| 200 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 201 | func activateDHCPServer(veth string, serverip string) error { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 202 | err := exec.Command("ip", "addr", "add", serverip, "dev", veth).Run() |
| 203 | if err != nil { |
Matteo Scandolo | 2aca22c | 2018-11-08 14:12:07 -0800 | [diff] [blame] | 204 | logger.Error("Fail to add ip to %s address: %s", veth, err) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 205 | return err |
| 206 | } |
| 207 | err = exec.Command("ip", "link", "set", veth, "up").Run() |
| 208 | if err != nil { |
Matteo Scandolo | 2aca22c | 2018-11-08 14:12:07 -0800 | [diff] [blame] | 209 | logger.Error("Fail to set %s up: %s", veth, err) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 210 | return err |
| 211 | } |
Matteo Scandolo | f7b260d | 2019-07-31 13:43:02 -0700 | [diff] [blame] | 212 | dhcp := "/usr/local/bin/dhcpd" |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 213 | conf := "/etc/dhcp/dhcpd.conf" |
Keita NISHIMOTO | 2f8a6a4 | 2019-02-08 09:47:07 +0900 | [diff] [blame] | 214 | logfile := "/tmp/dhcplog" |
Matteo Scandolo | f7b260d | 2019-07-31 13:43:02 -0700 | [diff] [blame] | 215 | var stderr bytes.Buffer |
| 216 | cmd := exec.Command(dhcp, "-cf", conf, veth, "-tf", logfile) |
| 217 | cmd.Stderr = &stderr |
| 218 | err = cmd.Run() |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 219 | if err != nil { |
Matteo Scandolo | f7b260d | 2019-07-31 13:43:02 -0700 | [diff] [blame] | 220 | logger.Error("Fail to activateDHCP Server (): %s, %s", err, stderr.String()) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 221 | return err |
| 222 | } |
Matteo Scandolo | 2aca22c | 2018-11-08 14:12:07 -0800 | [diff] [blame] | 223 | logger.Info("DHCP Server is successfully activated !") |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 224 | return err |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 225 | } |