blob: bed084c42edac1b16aa5546d0c8a0958ea135bcd [file] [log] [blame]
Maros Ondrejicka11a03e92022-12-01 09:56:37 +01001package main
2
3import (
Filip Tehlarf3ee2b62023-01-09 12:07:09 +01004 "fmt"
Filip Tehlarec5c40b2023-02-28 18:59:15 +01005 "os"
Maros Ondrejickaa2d52622023-02-24 11:26:39 +01006 "os/exec"
Filip Tehlarec5c40b2023-02-28 18:59:15 +01007 "os/signal"
Filip Tehlar543cd572023-06-27 10:01:37 +02008 "strconv"
Maros Ondrejicka7550dd22023-02-07 20:40:27 +01009 "strings"
Filip Tehlarec5c40b2023-02-28 18:59:15 +010010 "syscall"
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010011 "time"
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010012
Filip Tehlar9abba112023-03-07 10:13:19 +010013 "github.com/edwarnicke/exechelper"
14
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010015 "go.fd.io/govpp"
16 "go.fd.io/govpp/api"
17 "go.fd.io/govpp/binapi/af_packet"
18 interfaces "go.fd.io/govpp/binapi/interface"
19 "go.fd.io/govpp/binapi/interface_types"
20 "go.fd.io/govpp/binapi/session"
Maros Ondrejicka7550dd22023-02-07 20:40:27 +010021 "go.fd.io/govpp/binapi/tapv2"
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010022 "go.fd.io/govpp/binapi/vpe"
23 "go.fd.io/govpp/core"
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010024)
25
26const vppConfigTemplate = `unix {
27 nodaemon
Maros Ondrejickaa2d52622023-02-24 11:26:39 +010028 log %[1]s%[4]s
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010029 full-coredump
30 cli-listen %[1]s%[2]s
31 runtime-dir %[1]s/var/run
32 gid vpp
33}
34
35api-trace {
36 on
37}
38
39api-segment {
40 gid vpp
41}
42
43socksvr {
Maros Ondrejicka7d7ab102023-02-14 12:56:49 +010044 socket-name %[1]s%[3]s
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010045}
46
47statseg {
48 socket-name %[1]s/var/run/vpp/stats.sock
49}
50
51plugins {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010052 plugin default { disable }
53
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010054 plugin unittest_plugin.so { enable }
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010055 plugin quic_plugin.so { enable }
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010056 plugin af_packet_plugin.so { enable }
57 plugin hs_apps_plugin.so { enable }
58 plugin http_plugin.so { enable }
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010059}
60
Maros Ondrejickaa2d52622023-02-24 11:26:39 +010061logging {
62 default-log-level debug
63 default-syslog-log-level debug
64}
65
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010066`
67
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010068const (
69 defaultCliSocketFilePath = "/var/run/vpp/cli.sock"
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010070 defaultApiSocketFilePath = "/var/run/vpp/api.sock"
Maros Ondrejickaa2d52622023-02-24 11:26:39 +010071 defaultLogFilePath = "/var/log/vpp/vpp.log"
Maros Ondrejickadb823ed2022-12-14 16:30:04 +010072)
73
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010074type VppInstance struct {
Maros Ondrejicka300f70d2023-02-21 10:53:20 +010075 container *Container
Filip Tehlar608d0062023-04-28 10:29:47 +020076 additionalConfig []Stanza
Maros Ondrejicka300f70d2023-02-21 10:53:20 +010077 connection *core.Connection
78 apiChannel api.Channel
Filip Tehlar608d0062023-04-28 10:29:47 +020079 cpus []int
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010080}
81
Maros Ondrejickae7625d02023-02-28 16:55:01 +010082func (vpp *VppInstance) getSuite() *HstSuite {
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +010083 return vpp.container.suite
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010084}
85
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010086func (vpp *VppInstance) getCliSocket() string {
Maros Ondrejickae7625d02023-02-28 16:55:01 +010087 return fmt.Sprintf("%s%s", vpp.container.getContainerWorkDir(), defaultCliSocketFilePath)
Maros Ondrejicka11a03e92022-12-01 09:56:37 +010088}
89
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010090func (vpp *VppInstance) getRunDir() string {
Maros Ondrejickae7625d02023-02-28 16:55:01 +010091 return vpp.container.getContainerWorkDir() + "/var/run/vpp"
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010092}
93
94func (vpp *VppInstance) getLogDir() string {
Maros Ondrejickae7625d02023-02-28 16:55:01 +010095 return vpp.container.getContainerWorkDir() + "/var/log/vpp"
Maros Ondrejickaffa3f602023-01-26 10:07:29 +010096}
97
98func (vpp *VppInstance) getEtcDir() string {
Maros Ondrejickae7625d02023-02-28 16:55:01 +010099 return vpp.container.getContainerWorkDir() + "/etc/vpp"
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100100}
101
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100102func (vpp *VppInstance) start() error {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100103 // Create folders
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100104 containerWorkDir := vpp.container.getContainerWorkDir()
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100105
106 vpp.container.exec("mkdir --mode=0700 -p " + vpp.getRunDir())
107 vpp.container.exec("mkdir --mode=0700 -p " + vpp.getLogDir())
108 vpp.container.exec("mkdir --mode=0700 -p " + vpp.getEtcDir())
109
110 // Create startup.conf inside the container
Maros Ondrejicka7d7ab102023-02-14 12:56:49 +0100111 configContent := fmt.Sprintf(
Maros Ondrejicka300f70d2023-02-21 10:53:20 +0100112 vppConfigTemplate,
113 containerWorkDir,
114 defaultCliSocketFilePath,
115 defaultApiSocketFilePath,
Maros Ondrejickaa2d52622023-02-24 11:26:39 +0100116 defaultLogFilePath,
Maros Ondrejicka300f70d2023-02-21 10:53:20 +0100117 )
Filip Tehlar608d0062023-04-28 10:29:47 +0200118 configContent += vpp.generateCpuConfig()
119 for _, c := range vpp.additionalConfig {
120 configContent += c.toString()
121 }
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100122 startupFileName := vpp.getEtcDir() + "/startup.conf"
123 vpp.container.createFile(startupFileName, configContent)
124
Filip Tehlar1a661502023-03-08 11:55:50 +0100125 // create wrapper script for vppctl with proper CLI socket path
126 cliContent := "#!/usr/bin/bash\nvppctl -s " + vpp.getRunDir() + "/cli.sock"
127 vppcliFileName := "/usr/bin/vppcli"
128 vpp.container.createFile(vppcliFileName, cliContent)
129 vpp.container.exec("chmod 0755 " + vppcliFileName)
130
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100131 if *isVppDebug {
Filip Tehlarec5c40b2023-02-28 18:59:15 +0100132 sig := make(chan os.Signal, 1)
133 signal.Notify(sig, syscall.SIGINT)
134 cont := make(chan bool, 1)
135 go func() {
Filip Tehlar9abba112023-03-07 10:13:19 +0100136 <-sig
Filip Tehlarec5c40b2023-02-28 18:59:15 +0100137 cont <- true
138 }()
139
140 // Start VPP in GDB and wait for user to attach it
141 vpp.container.execServer("su -c \"gdb -ex run --args vpp -c " + startupFileName + " &> /proc/1/fd/1\"")
142 fmt.Println("run following command in different terminal:")
143 fmt.Println("docker exec -it " + vpp.container.name + " gdb -ex \"attach $(docker exec " + vpp.container.name + " pidof gdb)\"")
144 fmt.Println("Afterwards press CTRL+C to continue")
145 <-cont
146 fmt.Println("continuing...")
147 } else {
148 // Start VPP
149 vpp.container.execServer("su -c \"vpp -c " + startupFileName + " &> /proc/1/fd/1\"")
150 }
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100151
152 // Connect to VPP and store the connection
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100153 sockAddress := vpp.container.getHostWorkDir() + defaultApiSocketFilePath
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100154 conn, connEv, err := govpp.AsyncConnect(
155 sockAddress,
156 core.DefaultMaxReconnectAttempts,
157 core.DefaultReconnectInterval)
158 if err != nil {
159 fmt.Println("async connect error: ", err)
160 }
161 vpp.connection = conn
162
163 // ... wait for Connected event
164 e := <-connEv
165 if e.State != core.Connected {
166 fmt.Println("connecting to VPP failed: ", e.Error)
167 }
168
169 // ... check compatibility of used messages
170 ch, err := conn.NewAPIChannel()
171 if err != nil {
172 fmt.Println("creating channel failed: ", err)
173 }
174 if err := ch.CheckCompatiblity(vpe.AllMessages()...); err != nil {
175 fmt.Println("compatibility error: ", err)
176 }
177 if err := ch.CheckCompatiblity(interfaces.AllMessages()...); err != nil {
178 fmt.Println("compatibility error: ", err)
179 }
180 vpp.apiChannel = ch
Maros Ondrejicka11a03e92022-12-01 09:56:37 +0100181
182 return nil
183}
184
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +0100185func (vpp *VppInstance) vppctl(command string, arguments ...any) string {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100186 vppCliCommand := fmt.Sprintf(command, arguments...)
187 containerExecCommand := fmt.Sprintf("docker exec --detach=false %[1]s vppctl -s %[2]s %[3]s",
188 vpp.container.name, vpp.getCliSocket(), vppCliCommand)
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100189 vpp.getSuite().log(containerExecCommand)
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100190 output, err := exechelper.CombinedOutput(containerExecCommand)
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100191 vpp.getSuite().assertNil(err)
Maros Ondrejicka11a03e92022-12-01 09:56:37 +0100192
Maros Ondrejicka2908f8c2023-02-02 08:58:04 +0100193 return string(output)
Maros Ondrejicka11a03e92022-12-01 09:56:37 +0100194}
195
Filip Tehlar543cd572023-06-27 10:01:37 +0200196func (vpp *VppInstance) GetSessionStat(stat string) int {
197 o := vpp.vppctl("show session stats")
198 vpp.getSuite().log(o)
199 for _, line := range strings.Split(o, "\n") {
200 if strings.Contains(line, stat) {
201 tokens := strings.Split(strings.TrimSpace(line), " ")
202 val, err := strconv.Atoi(tokens[0])
203 if err != nil {
204 vpp.getSuite().FailNow("failed to parse stat value %s", err)
205 return 0
206 }
207 return val
208 }
209 }
210 return 0
211}
212
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100213func (vpp *VppInstance) waitForApp(appName string, timeout int) {
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100214 for i := 0; i < timeout; i++ {
215 o := vpp.vppctl("show app")
216 if strings.Contains(o, appName) {
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100217 return
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100218 }
219 time.Sleep(1 * time.Second)
Maros Ondrejickadb823ed2022-12-14 16:30:04 +0100220 }
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100221 vpp.getSuite().assertNil(1, "Timeout while waiting for app '%s'", appName)
Maros Ondrejicka11a03e92022-12-01 09:56:37 +0100222}
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100223
224func (vpp *VppInstance) createAfPacket(
Maros Ondrejicka40cba402023-02-23 13:19:15 +0100225 veth *NetInterface,
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100226) (interface_types.InterfaceIndex, error) {
227 createReq := &af_packet.AfPacketCreateV2{
228 UseRandomHwAddr: true,
229 HostIfName: veth.Name(),
230 }
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100231 if veth.hwAddress != (MacAddress{}) {
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100232 createReq.UseRandomHwAddr = false
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100233 createReq.HwAddr = veth.hwAddress
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100234 }
235 createReply := &af_packet.AfPacketCreateV2Reply{}
236
237 if err := vpp.apiChannel.SendRequest(createReq).ReceiveReply(createReply); err != nil {
238 return 0, err
239 }
Filip Tehlarb41b0af2023-03-20 12:39:20 +0100240 veth.index = createReply.SwIfIndex
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100241
242 // Set to up
243 upReq := &interfaces.SwInterfaceSetFlags{
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100244 SwIfIndex: veth.index,
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100245 Flags: interface_types.IF_STATUS_API_FLAG_ADMIN_UP,
246 }
247 upReply := &interfaces.SwInterfaceSetFlagsReply{}
248
249 if err := vpp.apiChannel.SendRequest(upReq).ReceiveReply(upReply); err != nil {
250 return 0, err
251 }
252
253 // Add address
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100254 if veth.addressWithPrefix() == (AddressWithPrefix{}) {
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100255 var err error
256 var ip4Address string
Filip Tehlar3a910ab2023-06-08 17:39:39 +0200257 if ip4Address, err = veth.ip4AddrAllocator.NewIp4InterfaceAddress(veth.peer.networkNumber); err == nil {
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100258 veth.ip4Address = ip4Address
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100259 } else {
260 return 0, err
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100261 }
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100262 }
263 addressReq := &interfaces.SwInterfaceAddDelAddress{
264 IsAdd: true,
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100265 SwIfIndex: veth.index,
266 Prefix: veth.addressWithPrefix(),
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100267 }
268 addressReply := &interfaces.SwInterfaceAddDelAddressReply{}
269
270 if err := vpp.apiChannel.SendRequest(addressReq).ReceiveReply(addressReply); err != nil {
271 return 0, err
272 }
273
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100274 return veth.index, nil
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100275}
276
277func (vpp *VppInstance) addAppNamespace(
278 secret uint64,
279 ifx interface_types.InterfaceIndex,
280 namespaceId string,
281) error {
282 req := &session.AppNamespaceAddDelV2{
283 Secret: secret,
284 SwIfIndex: ifx,
285 NamespaceID: namespaceId,
286 }
287 reply := &session.AppNamespaceAddDelV2Reply{}
288
289 if err := vpp.apiChannel.SendRequest(req).ReceiveReply(reply); err != nil {
290 return err
291 }
292
293 sessionReq := &session.SessionEnableDisable{
294 IsEnable: true,
295 }
296 sessionReply := &session.SessionEnableDisableReply{}
297
298 if err := vpp.apiChannel.SendRequest(sessionReq).ReceiveReply(sessionReply); err != nil {
299 return err
300 }
301
302 return nil
303}
304
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100305func (vpp *VppInstance) createTap(
Maros Ondrejicka40cba402023-02-23 13:19:15 +0100306 tap *NetInterface,
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100307 tapId ...uint32,
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100308) error {
Maros Ondrejickac2f76f42023-02-27 13:22:45 +0100309 var id uint32 = 1
310 if len(tapId) > 0 {
311 id = tapId[0]
312 }
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100313 createTapReq := &tapv2.TapCreateV2{
Maros Ondrejicka40cba402023-02-23 13:19:15 +0100314 ID: id,
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100315 HostIfNameSet: true,
Maros Ondrejicka40cba402023-02-23 13:19:15 +0100316 HostIfName: tap.Name(),
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100317 HostIP4PrefixSet: true,
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100318 HostIP4Prefix: tap.ip4AddressWithPrefix(),
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100319 }
320 createTapReply := &tapv2.TapCreateV2Reply{}
321
322 // Create tap interface
323 if err := vpp.apiChannel.SendRequest(createTapReq).ReceiveReply(createTapReply); err != nil {
324 return err
325 }
326
327 // Add address
328 addAddressReq := &interfaces.SwInterfaceAddDelAddress{
329 IsAdd: true,
330 SwIfIndex: createTapReply.SwIfIndex,
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100331 Prefix: tap.peer.addressWithPrefix(),
Maros Ondrejicka7550dd22023-02-07 20:40:27 +0100332 }
333 addAddressReply := &interfaces.SwInterfaceAddDelAddressReply{}
334
335 if err := vpp.apiChannel.SendRequest(addAddressReq).ReceiveReply(addAddressReply); err != nil {
336 return err
337 }
338
339 // Set interface to up
340 upReq := &interfaces.SwInterfaceSetFlags{
341 SwIfIndex: createTapReply.SwIfIndex,
342 Flags: interface_types.IF_STATUS_API_FLAG_ADMIN_UP,
343 }
344 upReply := &interfaces.SwInterfaceSetFlagsReply{}
345
346 if err := vpp.apiChannel.SendRequest(upReq).ReceiveReply(upReply); err != nil {
347 return err
348 }
349
350 return nil
351}
352
Maros Ondrejickaa2d52622023-02-24 11:26:39 +0100353func (vpp *VppInstance) saveLogs() {
354 logTarget := vpp.container.getLogDirPath() + "vppinstance-" + vpp.container.name + ".log"
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100355 logSource := vpp.container.getHostWorkDir() + defaultLogFilePath
Maros Ondrejickaa2d52622023-02-24 11:26:39 +0100356 cmd := exec.Command("cp", logSource, logTarget)
Maros Ondrejickae7625d02023-02-28 16:55:01 +0100357 vpp.getSuite().T().Helper()
358 vpp.getSuite().log(cmd.String())
Maros Ondrejickaa2d52622023-02-24 11:26:39 +0100359 cmd.Run()
360}
361
Maros Ondrejickaffa3f602023-01-26 10:07:29 +0100362func (vpp *VppInstance) disconnect() {
363 vpp.connection.Disconnect()
364 vpp.apiChannel.Close()
365}
Filip Tehlar608d0062023-04-28 10:29:47 +0200366
367func (vpp *VppInstance) generateCpuConfig() string {
368 var c Stanza
369 var s string
370 if len(vpp.cpus) < 1 {
371 return ""
372 }
373 c.newStanza("cpu").
374 append(fmt.Sprintf("main-core %d", vpp.cpus[0]))
375 workers := vpp.cpus[1:]
376
377 if len(workers) > 0 {
378 for i := 0; i < len(workers); i++ {
379 if i != 0 {
380 s = s + ", "
381 }
382 s = s + fmt.Sprintf("%d", workers[i])
383 }
384 c.append(fmt.Sprintf("corelist-workers %s", s))
385 }
386 return c.close().toString()
387}