-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathdocker.go
341 lines (272 loc) · 7.83 KB
/
docker.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
/***
Copyright 2014 Cisco Systems Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package docker
import (
"errors"
"fmt"
"github.com/samalba/dockerclient"
"log"
"os"
"os/exec"
"path"
"strconv"
"github.com/contiv/netplugin/crtclient"
"github.com/vishvananda/netlink"
// "github.com/vishvananda/netns"
)
type DockerConfig struct {
Docker struct {
Socket string
}
}
type Docker struct {
Client *dockerclient.DockerClient
}
func (d *Docker) Init(config *crtclient.Config) error {
if config == nil {
return errors.New("null config!")
}
cfg, ok := config.V.(*DockerConfig)
if !ok {
return errors.New("Invalid config type passed!")
}
if cfg.Docker.Socket == "" {
return errors.New(fmt.Sprintf("Invalid arguments. cfg: %v", config))
}
// TODO: ADD TLS support
d.Client, _ = dockerclient.NewDockerClient(cfg.Docker.Socket, nil)
return nil
}
func (d *Docker) Deinit() {
}
func (d *Docker) getContPid(contName string) (string, error) {
contInfo, err := d.Client.InspectContainer(contName)
if err != nil {
return "", errors.New("couldn't obtain container info")
}
// the hack below works only for running containers
if !contInfo.State.Running {
return "", errors.New("container not running")
}
return strconv.Itoa(contInfo.State.Pid), nil
}
func setIfNs(ifname string, pid int) error {
link, err := netlink.LinkByName(ifname)
if err != nil {
log.Printf("unable to find link '%s' error \n", ifname, err)
return err
}
err = netlink.LinkSetNsPid(link, pid)
if err != nil {
log.Printf("unable to move interface '%s' to pid %d \n",
ifname, pid)
}
return err
}
// Note: most of the work in this function is a temporary workaround for
// what docker daemon would eventually do; in the meanwhile
// the essense of the logic is borrowed from pipework
func (d *Docker) moveIfToContainer(ifId string, contName string) error {
// log.Printf("Moving interface '%s' into container '%s' \n", ifId, contName)
contPid, err := d.getContPid(contName)
if err != nil {
return err
}
netnsDir := "/var/run/netns"
err = os.Mkdir(netnsDir, 0700)
if err != nil && !os.IsExist(err) {
log.Printf("error creating '%s' direcotry \n", netnsDir)
return err
}
netnsPidFile := path.Join(netnsDir, contPid)
err = os.Remove(netnsPidFile)
if err != nil && !os.IsNotExist(err) {
log.Printf("error removing file '%s' \n", netnsPidFile)
return err
} else {
err = nil
}
procNetNs := path.Join("/proc", contPid, "ns/net")
err = os.Symlink(procNetNs, netnsPidFile)
if err != nil {
log.Printf("error symlink file '%s' with '%s' \n", netnsPidFile)
return err
}
intPid, _ := strconv.Atoi(contPid)
err = setIfNs(ifId, intPid)
if err != nil {
log.Printf("err '%s' moving if '%s' into container '%s' namespace\n",
err, ifId, contName)
return err
}
return err
}
func (d *Docker) cleanupNetns(contName string) error {
contPid, err := d.getContPid(contName)
if err != nil {
return err
}
netnsPidFile := path.Join("/var/run/netns", contPid)
_, err = os.Stat(netnsPidFile)
if err != nil && os.IsExist(err) {
os.Remove(netnsPidFile)
}
return nil
}
/*
func (d *Docker) configureIfAddress(ctx *crtclient.ContainerEpContext) error {
log.Printf("configuring ip: addr -%s/%d- on if %s for container %s\n",
ctx.IpAddress, ctx.SubnetLen, ctx.InterfaceId, ctx.NewContName)
if ctx.IpAddress == "" {
return nil
}
if ctx.SubnetLen == 0 {
errors.New("Subnet mask unspecified \n")
}
contPid, err := d.getContPid(ctx.NewContName)
if err != nil {
return err
}
intPid, err := strconv.Atoi(contPid)
if err != nil {
return err
}
contNs, err := netns.GetFromPid(intPid)
if err != nil {
log.Printf("error '%s' getting namespace for pid %s \n",
err, contPid)
return err
}
defer contNs.Close()
origNs, err := netns.Get()
if err != nil {
log.Printf("error '%s' getting orig namespace\n", err)
return err
}
defer origNs.Close()
err = netns.Set(contNs)
if err != nil {
log.Printf("error '%s' setting netns \n", err)
return err
}
defer netns.Set(origNs)
link, err := netlink.LinkByName(ctx.InterfaceId)
if err != nil {
log.Printf("error '%s' getting if '%s' information \n", err,
ctx.InterfaceId)
return err
}
addr, err := netlink.ParseAddr(ctx.IpAddress + "/" +
strconv.Itoa((int)(ctx.SubnetLen)))
if err != nil {
log.Printf("error '%s' parsing ip %s/%d \n", err,
ctx.IpAddress, ctx.SubnetLen)
return err
}
err = netlink.AddrAdd(link, addr)
if err != nil {
log.Printf("## netlink add addr failed '%s' \n", err)
return err
}
err = netlink.LinkSetUp(link)
if err != nil {
log.Printf("## netlink set link up failed '%s' \n", err)
return err
}
return err
}
*/
func (d *Docker) configureIfAddress(ctx *crtclient.ContainerEpContext) error {
log.Printf("configuring ip: addr -%s/%d- on if %s for container %s\n",
ctx.IpAddress, ctx.SubnetLen, ctx.InterfaceId, ctx.NewContName)
if ctx.IpAddress == "" {
return nil
}
if ctx.SubnetLen == 0 {
errors.New("Subnet mask unspecified \n")
}
contPid, err := d.getContPid(ctx.NewContName)
if err != nil {
return err
}
out, err := exec.Command("/sbin/ip", "netns", "exec", contPid, "ip",
"addr", "add", ctx.IpAddress+"/"+strconv.Itoa(int(ctx.SubnetLen)),
"dev", ctx.InterfaceId).Output()
if err != nil {
log.Printf("error configuring ip address for interface %s "+
"%s out = '%s', err = '%s'\n", ctx.InterfaceId, out, err)
return err
}
out, err = exec.Command("/sbin/ip", "netns", "exec", contPid, "ip",
"link", "set", ctx.InterfaceId, "up").Output()
if err != nil {
log.Printf("error bringing interface %s up 'out = %s', err = %s\n",
ctx.InterfaceId, out, err)
return err
}
log.Printf("successfully configured ip and brought up the interface \n")
return err
}
// performs funtion to configure the network access and policies
// before the container becomes active
func (d *Docker) AttachEndpoint(ctx *crtclient.ContainerEpContext) error {
err := d.moveIfToContainer(ctx.InterfaceId, ctx.NewContName)
if err != nil {
return err
}
err = d.configureIfAddress(ctx)
if err != nil {
return err
}
// configure policies: acl/qos for the container on the host
// cleanup intermediate things (overdoing it?)
d.cleanupNetns(ctx.NewContName)
return err
}
// uninstall the policies and configuration during container attach
func (d *Docker) DetachEndpoint(ctx *crtclient.ContainerEpContext) error {
var err error
// log.Printf("Detached called for container %s with %s interface\n",
// ctx.CurrContName, ctx.InterfaceId)
// no need to move the interface out of containre, etc.
// usually deletion of ep takes care of that
// TODO: unconfigure policies
return err
}
func (d *Docker) GetContainerId(contName string) string {
contInfo, err := d.Client.InspectContainer(contName)
if err != nil {
log.Printf("could not get contId for container %s, err '%s' \n",
contName, err)
return ""
}
// the hack below works only for running containers
if !contInfo.State.Running {
return ""
}
return contInfo.Id
}
func (d *Docker) GetContainerName(contId string) (string, error) {
contInfo, err := d.Client.InspectContainer(contId)
if err != nil {
log.Printf("could not get contName for container %s, err '%s' \n",
contId, err)
return "", err
}
// the hack below works only for running containers
if !contInfo.State.Running {
return "", errors.New(fmt.Sprintf(
"container id %s not running", contId))
}
return contInfo.Name, nil
}