Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 1 | package main |
| 2 | |
| 3 | import ( |
Filip Tehlar | f3ee2b6 | 2023-01-09 12:07:09 +0100 | [diff] [blame] | 4 | "fmt" |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 5 | "github.com/edwarnicke/exechelper" |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 6 | "os/exec" |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 7 | "strings" |
| 8 | "time" |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 9 | |
| 10 | "go.fd.io/govpp" |
| 11 | "go.fd.io/govpp/api" |
| 12 | "go.fd.io/govpp/binapi/af_packet" |
| 13 | interfaces "go.fd.io/govpp/binapi/interface" |
| 14 | "go.fd.io/govpp/binapi/interface_types" |
| 15 | "go.fd.io/govpp/binapi/session" |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 16 | "go.fd.io/govpp/binapi/tapv2" |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 17 | "go.fd.io/govpp/binapi/vpe" |
| 18 | "go.fd.io/govpp/core" |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 19 | ) |
| 20 | |
| 21 | const vppConfigTemplate = `unix { |
| 22 | nodaemon |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 23 | log %[1]s%[4]s |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 24 | full-coredump |
| 25 | cli-listen %[1]s%[2]s |
| 26 | runtime-dir %[1]s/var/run |
| 27 | gid vpp |
| 28 | } |
| 29 | |
| 30 | api-trace { |
| 31 | on |
| 32 | } |
| 33 | |
| 34 | api-segment { |
| 35 | gid vpp |
| 36 | } |
| 37 | |
| 38 | socksvr { |
Maros Ondrejicka | 7d7ab10 | 2023-02-14 12:56:49 +0100 | [diff] [blame] | 39 | socket-name %[1]s%[3]s |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | statseg { |
| 43 | socket-name %[1]s/var/run/vpp/stats.sock |
| 44 | } |
| 45 | |
| 46 | plugins { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 47 | plugin default { disable } |
| 48 | |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 49 | plugin unittest_plugin.so { enable } |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 50 | plugin quic_plugin.so { enable } |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 51 | plugin af_packet_plugin.so { enable } |
| 52 | plugin hs_apps_plugin.so { enable } |
| 53 | plugin http_plugin.so { enable } |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 54 | } |
| 55 | |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 56 | logging { |
| 57 | default-log-level debug |
| 58 | default-syslog-log-level debug |
| 59 | } |
| 60 | |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 61 | ` |
| 62 | |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 63 | const ( |
| 64 | defaultCliSocketFilePath = "/var/run/vpp/cli.sock" |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 65 | defaultApiSocketFilePath = "/var/run/vpp/api.sock" |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 66 | defaultLogFilePath = "/var/log/vpp/vpp.log" |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 67 | ) |
| 68 | |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 69 | type VppInstance struct { |
Maros Ondrejicka | 300f70d | 2023-02-21 10:53:20 +0100 | [diff] [blame] | 70 | container *Container |
| 71 | additionalConfig Stanza |
| 72 | connection *core.Connection |
| 73 | apiChannel api.Channel |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 74 | } |
| 75 | |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 76 | func (vpp *VppInstance) Suite() *HstSuite { |
| 77 | return vpp.container.suite |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 78 | } |
| 79 | |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 80 | func (vpp *VppInstance) getCliSocket() string { |
Maros Ondrejicka | 7d7ab10 | 2023-02-14 12:56:49 +0100 | [diff] [blame] | 81 | return fmt.Sprintf("%s%s", vpp.container.GetContainerWorkDir(), defaultCliSocketFilePath) |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 82 | } |
| 83 | |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 84 | func (vpp *VppInstance) getRunDir() string { |
| 85 | return vpp.container.GetContainerWorkDir() + "/var/run/vpp" |
| 86 | } |
| 87 | |
| 88 | func (vpp *VppInstance) getLogDir() string { |
| 89 | return vpp.container.GetContainerWorkDir() + "/var/log/vpp" |
| 90 | } |
| 91 | |
| 92 | func (vpp *VppInstance) getEtcDir() string { |
| 93 | return vpp.container.GetContainerWorkDir() + "/etc/vpp" |
| 94 | } |
| 95 | |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 96 | func (vpp *VppInstance) start() error { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 97 | // Create folders |
| 98 | containerWorkDir := vpp.container.GetContainerWorkDir() |
| 99 | |
| 100 | vpp.container.exec("mkdir --mode=0700 -p " + vpp.getRunDir()) |
| 101 | vpp.container.exec("mkdir --mode=0700 -p " + vpp.getLogDir()) |
| 102 | vpp.container.exec("mkdir --mode=0700 -p " + vpp.getEtcDir()) |
| 103 | |
| 104 | // Create startup.conf inside the container |
Maros Ondrejicka | 7d7ab10 | 2023-02-14 12:56:49 +0100 | [diff] [blame] | 105 | configContent := fmt.Sprintf( |
Maros Ondrejicka | 300f70d | 2023-02-21 10:53:20 +0100 | [diff] [blame] | 106 | vppConfigTemplate, |
| 107 | containerWorkDir, |
| 108 | defaultCliSocketFilePath, |
| 109 | defaultApiSocketFilePath, |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 110 | defaultLogFilePath, |
Maros Ondrejicka | 300f70d | 2023-02-21 10:53:20 +0100 | [diff] [blame] | 111 | ) |
Maros Ondrejicka | 7d7ab10 | 2023-02-14 12:56:49 +0100 | [diff] [blame] | 112 | configContent += vpp.additionalConfig.ToString() |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 113 | startupFileName := vpp.getEtcDir() + "/startup.conf" |
| 114 | vpp.container.createFile(startupFileName, configContent) |
| 115 | |
| 116 | // Start VPP |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 117 | vpp.container.execServer("su -c \"vpp -c " + startupFileName + " &> /proc/1/fd/1\"") |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 118 | |
| 119 | // Connect to VPP and store the connection |
| 120 | sockAddress := vpp.container.GetHostWorkDir() + defaultApiSocketFilePath |
| 121 | conn, connEv, err := govpp.AsyncConnect( |
| 122 | sockAddress, |
| 123 | core.DefaultMaxReconnectAttempts, |
| 124 | core.DefaultReconnectInterval) |
| 125 | if err != nil { |
| 126 | fmt.Println("async connect error: ", err) |
| 127 | } |
| 128 | vpp.connection = conn |
| 129 | |
| 130 | // ... wait for Connected event |
| 131 | e := <-connEv |
| 132 | if e.State != core.Connected { |
| 133 | fmt.Println("connecting to VPP failed: ", e.Error) |
| 134 | } |
| 135 | |
| 136 | // ... check compatibility of used messages |
| 137 | ch, err := conn.NewAPIChannel() |
| 138 | if err != nil { |
| 139 | fmt.Println("creating channel failed: ", err) |
| 140 | } |
| 141 | if err := ch.CheckCompatiblity(vpe.AllMessages()...); err != nil { |
| 142 | fmt.Println("compatibility error: ", err) |
| 143 | } |
| 144 | if err := ch.CheckCompatiblity(interfaces.AllMessages()...); err != nil { |
| 145 | fmt.Println("compatibility error: ", err) |
| 146 | } |
| 147 | vpp.apiChannel = ch |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 148 | |
| 149 | return nil |
| 150 | } |
| 151 | |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 152 | func (vpp *VppInstance) vppctl(command string, arguments ...any) string { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 153 | vppCliCommand := fmt.Sprintf(command, arguments...) |
| 154 | containerExecCommand := fmt.Sprintf("docker exec --detach=false %[1]s vppctl -s %[2]s %[3]s", |
| 155 | vpp.container.name, vpp.getCliSocket(), vppCliCommand) |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 156 | vpp.Suite().log(containerExecCommand) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 157 | output, err := exechelper.CombinedOutput(containerExecCommand) |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 158 | vpp.Suite().assertNil(err) |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 159 | |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 160 | return string(output) |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 161 | } |
| 162 | |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 163 | func (vpp *VppInstance) waitForApp(appName string, timeout int) error { |
| 164 | for i := 0; i < timeout; i++ { |
| 165 | o := vpp.vppctl("show app") |
| 166 | if strings.Contains(o, appName) { |
| 167 | return nil |
| 168 | } |
| 169 | time.Sleep(1 * time.Second) |
Maros Ondrejicka | db823ed | 2022-12-14 16:30:04 +0100 | [diff] [blame] | 170 | } |
Maros Ondrejicka | 7d7ab10 | 2023-02-14 12:56:49 +0100 | [diff] [blame] | 171 | return fmt.Errorf("timeout while waiting for app '%s'", appName) |
Maros Ondrejicka | 11a03e9 | 2022-12-01 09:56:37 +0100 | [diff] [blame] | 172 | } |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 173 | |
| 174 | func (vpp *VppInstance) createAfPacket( |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame^] | 175 | veth *NetInterface, |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 176 | ) (interface_types.InterfaceIndex, error) { |
| 177 | createReq := &af_packet.AfPacketCreateV2{ |
| 178 | UseRandomHwAddr: true, |
| 179 | HostIfName: veth.Name(), |
| 180 | } |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 181 | if veth.HwAddress() != (MacAddress{}) { |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 182 | createReq.UseRandomHwAddr = false |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 183 | createReq.HwAddr = veth.HwAddress() |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 184 | } |
| 185 | createReply := &af_packet.AfPacketCreateV2Reply{} |
| 186 | |
| 187 | if err := vpp.apiChannel.SendRequest(createReq).ReceiveReply(createReply); err != nil { |
| 188 | return 0, err |
| 189 | } |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 190 | veth.SetIndex(createReply.SwIfIndex) |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 191 | |
| 192 | // Set to up |
| 193 | upReq := &interfaces.SwInterfaceSetFlags{ |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 194 | SwIfIndex: veth.Index(), |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 195 | Flags: interface_types.IF_STATUS_API_FLAG_ADMIN_UP, |
| 196 | } |
| 197 | upReply := &interfaces.SwInterfaceSetFlagsReply{} |
| 198 | |
| 199 | if err := vpp.apiChannel.SendRequest(upReq).ReceiveReply(upReply); err != nil { |
| 200 | return 0, err |
| 201 | } |
| 202 | |
| 203 | // Add address |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 204 | if veth.AddressWithPrefix() == (AddressWithPrefix{}) { |
| 205 | var err error |
| 206 | var ip4Address string |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame^] | 207 | if ip4Address, err = veth.addresser.NewIp4Address(veth.Peer().networkNumber); err == nil { |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 208 | veth.SetAddress(ip4Address) |
| 209 | } else { |
| 210 | return 0, err |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 211 | } |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 212 | } |
| 213 | addressReq := &interfaces.SwInterfaceAddDelAddress{ |
| 214 | IsAdd: true, |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 215 | SwIfIndex: veth.Index(), |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 216 | Prefix: veth.AddressWithPrefix(), |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 217 | } |
| 218 | addressReply := &interfaces.SwInterfaceAddDelAddressReply{} |
| 219 | |
| 220 | if err := vpp.apiChannel.SendRequest(addressReq).ReceiveReply(addressReply); err != nil { |
| 221 | return 0, err |
| 222 | } |
| 223 | |
Maros Ondrejicka | 2908f8c | 2023-02-02 08:58:04 +0100 | [diff] [blame] | 224 | return veth.Index(), nil |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | func (vpp *VppInstance) addAppNamespace( |
| 228 | secret uint64, |
| 229 | ifx interface_types.InterfaceIndex, |
| 230 | namespaceId string, |
| 231 | ) error { |
| 232 | req := &session.AppNamespaceAddDelV2{ |
| 233 | Secret: secret, |
| 234 | SwIfIndex: ifx, |
| 235 | NamespaceID: namespaceId, |
| 236 | } |
| 237 | reply := &session.AppNamespaceAddDelV2Reply{} |
| 238 | |
| 239 | if err := vpp.apiChannel.SendRequest(req).ReceiveReply(reply); err != nil { |
| 240 | return err |
| 241 | } |
| 242 | |
| 243 | sessionReq := &session.SessionEnableDisable{ |
| 244 | IsEnable: true, |
| 245 | } |
| 246 | sessionReply := &session.SessionEnableDisableReply{} |
| 247 | |
| 248 | if err := vpp.apiChannel.SendRequest(sessionReq).ReceiveReply(sessionReply); err != nil { |
| 249 | return err |
| 250 | } |
| 251 | |
| 252 | return nil |
| 253 | } |
| 254 | |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 255 | func (vpp *VppInstance) createTap( |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame^] | 256 | id uint32, |
| 257 | tap *NetInterface, |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 258 | ) error { |
| 259 | createTapReq := &tapv2.TapCreateV2{ |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame^] | 260 | ID: id, |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 261 | HostIfNameSet: true, |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame^] | 262 | HostIfName: tap.Name(), |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 263 | HostIP4PrefixSet: true, |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame^] | 264 | HostIP4Prefix: tap.IP4AddressWithPrefix(), |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 265 | } |
| 266 | createTapReply := &tapv2.TapCreateV2Reply{} |
| 267 | |
| 268 | // Create tap interface |
| 269 | if err := vpp.apiChannel.SendRequest(createTapReq).ReceiveReply(createTapReply); err != nil { |
| 270 | return err |
| 271 | } |
| 272 | |
| 273 | // Add address |
| 274 | addAddressReq := &interfaces.SwInterfaceAddDelAddress{ |
| 275 | IsAdd: true, |
| 276 | SwIfIndex: createTapReply.SwIfIndex, |
Maros Ondrejicka | 40cba40 | 2023-02-23 13:19:15 +0100 | [diff] [blame^] | 277 | Prefix: tap.Peer().AddressWithPrefix(), |
Maros Ondrejicka | 7550dd2 | 2023-02-07 20:40:27 +0100 | [diff] [blame] | 278 | } |
| 279 | addAddressReply := &interfaces.SwInterfaceAddDelAddressReply{} |
| 280 | |
| 281 | if err := vpp.apiChannel.SendRequest(addAddressReq).ReceiveReply(addAddressReply); err != nil { |
| 282 | return err |
| 283 | } |
| 284 | |
| 285 | // Set interface to up |
| 286 | upReq := &interfaces.SwInterfaceSetFlags{ |
| 287 | SwIfIndex: createTapReply.SwIfIndex, |
| 288 | Flags: interface_types.IF_STATUS_API_FLAG_ADMIN_UP, |
| 289 | } |
| 290 | upReply := &interfaces.SwInterfaceSetFlagsReply{} |
| 291 | |
| 292 | if err := vpp.apiChannel.SendRequest(upReq).ReceiveReply(upReply); err != nil { |
| 293 | return err |
| 294 | } |
| 295 | |
| 296 | return nil |
| 297 | } |
| 298 | |
Maros Ondrejicka | a2d5262 | 2023-02-24 11:26:39 +0100 | [diff] [blame] | 299 | func (vpp *VppInstance) saveLogs() { |
| 300 | logTarget := vpp.container.getLogDirPath() + "vppinstance-" + vpp.container.name + ".log" |
| 301 | logSource := vpp.container.GetHostWorkDir() + defaultLogFilePath |
| 302 | cmd := exec.Command("cp", logSource, logTarget) |
| 303 | vpp.Suite().T().Helper() |
| 304 | vpp.Suite().log(cmd.String()) |
| 305 | cmd.Run() |
| 306 | } |
| 307 | |
Maros Ondrejicka | ffa3f60 | 2023-01-26 10:07:29 +0100 | [diff] [blame] | 308 | func (vpp *VppInstance) disconnect() { |
| 309 | vpp.connection.Disconnect() |
| 310 | vpp.apiChannel.Close() |
| 311 | } |