|
| 1 | +/*** |
| 2 | +Copyright 2016 Cisco Systems Inc. All rights reserved. |
| 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 | +http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +
|
| 9 | +Unless required by applicable law or agreed to in writing, software |
| 10 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +See the License for the specific language governing permissions and |
| 13 | +limitations under the License. |
| 14 | +*/ |
| 15 | + |
| 16 | +package k8splugin |
| 17 | + |
| 18 | +import ( |
| 19 | + "fmt" |
| 20 | + "net" |
| 21 | + "os/exec" |
| 22 | + "runtime" |
| 23 | + |
| 24 | + "github.com/vishvananda/netlink" |
| 25 | + "github.com/vishvananda/netns" |
| 26 | + . "gopkg.in/check.v1" |
| 27 | +) |
| 28 | + |
| 29 | +type NetSetup struct { |
| 30 | + newNS netns.NsHandle |
| 31 | + globalNS netns.NsHandle |
| 32 | + pid int |
| 33 | + cmd *exec.Cmd |
| 34 | + ifName string |
| 35 | + link netlink.Link |
| 36 | +} |
| 37 | + |
| 38 | +var _ = Suite(&NetSetup{}) |
| 39 | + |
| 40 | +func (s *NetSetup) SetUpTest(c *C) { |
| 41 | + la := netlink.NewLinkAttrs() |
| 42 | + s.ifName = "testlinkfoo" |
| 43 | + la.Name = s.ifName |
| 44 | + runtime.LockOSThread() |
| 45 | + locked := true |
| 46 | + defer func() { |
| 47 | + if locked { |
| 48 | + runtime.UnlockOSThread() |
| 49 | + } |
| 50 | + }() |
| 51 | + |
| 52 | + globalNS, err := netns.Get() |
| 53 | + if err != nil { |
| 54 | + c.Fatalf("failed to get the global network namespace: %v", err) |
| 55 | + } |
| 56 | + s.globalNS = globalNS |
| 57 | + defer func() { |
| 58 | + netns.Set(globalNS) |
| 59 | + }() |
| 60 | + |
| 61 | + newNS, err := netns.New() |
| 62 | + if err != nil { |
| 63 | + c.Fatal("failed to create new network namespace") |
| 64 | + } |
| 65 | + s.newNS = newNS |
| 66 | + |
| 67 | + cmd := exec.Command("sleep", "infinity") |
| 68 | + if err = cmd.Start(); err != nil { |
| 69 | + c.Fatalf("failed to start the 'sleep 9999' process: %v", err) |
| 70 | + } |
| 71 | + s.cmd = cmd |
| 72 | + |
| 73 | + s.pid = cmd.Process.Pid |
| 74 | + |
| 75 | + if err = netns.Set(globalNS); err != nil { |
| 76 | + c.Fatalf("failed to return to the global netns: %v", err) |
| 77 | + } |
| 78 | + |
| 79 | + // the rest of the code should run without a locked thread |
| 80 | + if locked { |
| 81 | + runtime.UnlockOSThread() |
| 82 | + locked = false |
| 83 | + } |
| 84 | + |
| 85 | + dummy := &netlink.Dummy{LinkAttrs: la} |
| 86 | + if err := netlink.LinkAdd(dummy); err != nil { |
| 87 | + c.Fatalf("failed to add dummy interface: %v", err) |
| 88 | + } |
| 89 | + |
| 90 | + link, err := netlink.LinkByName(la.Name) |
| 91 | + if err != nil { |
| 92 | + c.Fatalf("failed to get interface by name: %v", err) |
| 93 | + } |
| 94 | + s.link = link |
| 95 | + |
| 96 | + netIf, err := net.InterfaceByName(la.Name) |
| 97 | + if err != nil { |
| 98 | + c.Fatalf("InterfaceByName failed: %v", err) |
| 99 | + } |
| 100 | + |
| 101 | + if netIf.Flags&net.FlagUp != 0 { |
| 102 | + c.Fatalf("expected interface to be down, but it's up") |
| 103 | + } |
| 104 | +} |
| 105 | + |
| 106 | +func (s *NetSetup) TearDownTest(c *C) { |
| 107 | + s.newNS.Close() |
| 108 | + s.cmd.Process.Kill() |
| 109 | + netns.Set(s.globalNS) |
| 110 | + s.globalNS.Close() |
| 111 | + netlink.LinkDel(s.link) |
| 112 | +} |
| 113 | + |
| 114 | +func (s *NetSetup) TestNetSetup(c *C) { |
| 115 | + newName := "testlinknewname" |
| 116 | + address := "192.168.68.68/24" |
| 117 | + defGW := "192.168.68.1" |
| 118 | + staticRoute := "192.168.32.0/24" |
| 119 | + |
| 120 | + if err := setIfAttrs(s.pid, s.ifName, address, newName); err != nil { |
| 121 | + c.Fatalf("setIfAttrs failed: %v", err) |
| 122 | + } |
| 123 | + |
| 124 | + if err := setDefGw(s.pid, defGW, newName); err != nil { |
| 125 | + c.Fatalf("setDefGw failed: %v", err) |
| 126 | + } |
| 127 | + |
| 128 | + if err := addStaticRoute(s.pid, staticRoute, newName); err != nil { |
| 129 | + c.Fatalf("addStaticRoute failed: %v", err) |
| 130 | + } |
| 131 | + |
| 132 | + // check if the interface still has its old name & is in globalNS |
| 133 | + if _, err := netlink.LinkByName(s.ifName); err == nil { |
| 134 | + c.Fatal("interface wasn't moved to the namespace") |
| 135 | + } |
| 136 | + |
| 137 | + // check if the interface has been renamed & is in globalNS |
| 138 | + if _, err := netlink.LinkByName(newName); err == nil { |
| 139 | + c.Fatal("interface wasn't moved to the namespace") |
| 140 | + } |
| 141 | + |
| 142 | + runtime.LockOSThread() |
| 143 | + defer runtime.UnlockOSThread() |
| 144 | + |
| 145 | + if err := netns.Set(s.newNS); err != nil { |
| 146 | + c.Fatalf("failed to enter the new network namespace: %v", err) |
| 147 | + } |
| 148 | + |
| 149 | + // ensure the interface's name has been changed |
| 150 | + newLink, err := netlink.LinkByName(newName) |
| 151 | + if err != nil { |
| 152 | + c.Fatalf("failed to get interface by name: %v", err) |
| 153 | + } |
| 154 | + defer netlink.LinkDel(newLink) |
| 155 | + |
| 156 | + // ensure that the interface's IP address has been set properly |
| 157 | + addresses, err := netlink.AddrList(newLink, netlink.FAMILY_V4) |
| 158 | + ifAddr := addresses[0].IPNet.String() |
| 159 | + if address != ifAddr { |
| 160 | + c.Errorf("expected IP address %v, found: %v", address, ifAddr) |
| 161 | + } |
| 162 | + |
| 163 | + netIf, err := net.InterfaceByName(newName) |
| 164 | + if err != nil { |
| 165 | + c.Errorf("InterfaceByName failed: %v", err) |
| 166 | + } |
| 167 | + |
| 168 | + // ensure the default gateway route has been set properly |
| 169 | + routes, err := netlink.RouteList(newLink, netlink.FAMILY_V4) |
| 170 | + if err != nil { |
| 171 | + c.Errorf("failed to fetch routes") |
| 172 | + } |
| 173 | + |
| 174 | + foundDefaultGW := false |
| 175 | + foundStaticRoute := false |
| 176 | + for _, route := range routes { |
| 177 | + gw := route.Gw.String() |
| 178 | + if gw != defGW { |
| 179 | + continue |
| 180 | + } |
| 181 | + if route.Dst != nil { |
| 182 | + c.Errorf("expected nil GW Dst, found: %v", route.Dst) |
| 183 | + } |
| 184 | + if route.Src != nil { |
| 185 | + c.Errorf("expected nil GW Src, found: %v", route.Dst) |
| 186 | + } |
| 187 | + foundDefaultGW = true |
| 188 | + } |
| 189 | + if !foundDefaultGW { |
| 190 | + c.Error("couldn't find default gateway") |
| 191 | + } |
| 192 | + |
| 193 | + for _, route := range routes { |
| 194 | + dst := fmt.Sprintf("%v", route.Dst) |
| 195 | + if dst != staticRoute { |
| 196 | + continue |
| 197 | + } |
| 198 | + if route.Gw != nil { |
| 199 | + c.Errorf("expected nil gateway, found: %v", route.Gw) |
| 200 | + } |
| 201 | + if route.Src != nil { |
| 202 | + c.Errorf("expected nil source, found: %v", route.Dst) |
| 203 | + } |
| 204 | + foundStaticRoute = true |
| 205 | + } |
| 206 | + |
| 207 | + if !foundStaticRoute { |
| 208 | + c.Error("couldn't find static route") |
| 209 | + } |
| 210 | + |
| 211 | + // ensure that the interface is up |
| 212 | + if netIf.Flags&net.FlagUp == 0 { |
| 213 | + c.Errorf("expected interface to be up, but it's down") |
| 214 | + } |
| 215 | +} |
0 commit comments