@@ -48,9 +48,11 @@ type epSpec struct {
48
48
49
49
// epAttr contains the assigned attributes of the created ep
50
50
type epAttr struct {
51
- IPAddress string
52
- PortName string
53
- Gateway string
51
+ IPAddress string
52
+ PortName string
53
+ Gateway string
54
+ IPv6Address string
55
+ IPv6Gateway string
54
56
}
55
57
56
58
// netdGetEndpoint is a utility that reads the EP oper state
@@ -152,6 +154,7 @@ func createEP(req *epSpec) (*epAttr, error) {
152
154
return nil , err
153
155
}
154
156
157
+ // this response should contain IPv6 if the underlying network is configured with IPv6
155
158
log .Infof ("Got endpoint create resp from master: %+v" , mresp )
156
159
157
160
// Ask netplugin to create the endpoint
@@ -181,6 +184,11 @@ func createEP(req *epSpec) (*epAttr, error) {
181
184
epResponse .IPAddress = ep .IPAddress + "/" + strconv .Itoa (int (nw .SubnetLen ))
182
185
epResponse .Gateway = nw .Gateway
183
186
187
+ if ep .IPv6Address != "" {
188
+ epResponse .IPv6Address = ep .IPv6Address + "/" + strconv .Itoa (int (nw .IPv6SubnetLen ))
189
+ epResponse .IPv6Gateway = nw .IPv6Gateway
190
+ }
191
+
184
192
return & epResponse , nil
185
193
}
186
194
@@ -237,8 +245,7 @@ func moveToNS(pid int, ifname string) error {
237
245
}
238
246
239
247
// setIfAttrs sets the required attributes for the container interface
240
- func setIfAttrs (pid int , ifname , cidr , newname string ) error {
241
-
248
+ func setIfAttrs (pid int , ifname , cidr , cidr6 , newname string ) error {
242
249
nsenterPath , err := osexec .LookPath ("nsenter" )
243
250
if err != nil {
244
251
return err
@@ -285,6 +292,17 @@ func setIfAttrs(pid int, ifname, cidr, newname string) error {
285
292
}
286
293
log .Infof ("Output from ip assign: %v" , assignIP )
287
294
295
+ if cidr6 != "" {
296
+ out , err := osexec .Command (nsenterPath , "-t" , nsPid , "-n" , "-F" , "--" , ipPath ,
297
+ "-6" , "address" , "add" , cidr6 , "dev" , newname ).CombinedOutput ()
298
+ if err != nil {
299
+ log .Errorf ("unable to assign IPv6 %s to %s. Error: %s" ,
300
+ cidr6 , newname , err )
301
+ return nil
302
+ }
303
+ log .Infof ("Output of IPv6 assign: %v" , out )
304
+ }
305
+
288
306
// Finally, mark the link up
289
307
bringUp , err := osexec .Command (nsenterPath , "-t" , nsPid , "-n" , "-F" , "--" , ipPath ,
290
308
"link" , "set" , "dev" , newname , "up" ).CombinedOutput ()
@@ -324,7 +342,7 @@ func addStaticRoute(pid int, subnet, intfName string) error {
324
342
}
325
343
326
344
// setDefGw sets the default gateway for the container namespace
327
- func setDefGw (pid int , gw , intfName string ) error {
345
+ func setDefGw (pid int , gw , gw6 , intfName string ) error {
328
346
nsenterPath , err := osexec .LookPath ("nsenter" )
329
347
if err != nil {
330
348
return err
@@ -338,10 +356,19 @@ func setDefGw(pid int, gw, intfName string) error {
338
356
out , err := osexec .Command (nsenterPath , "-t" , nsPid , "-n" , "-F" , "--" , routePath , "add" ,
339
357
"default" , "gw" , gw , intfName ).CombinedOutput ()
340
358
if err != nil {
341
- log .Errorf ("unable to set default gw %s. Error: %s - %s" ,
342
- gw , err , out )
359
+ log .Errorf ("unable to set default gw %s. Error: %s - %s" , gw , err , out )
343
360
return nil
344
361
}
362
+
363
+ if gw6 != "" {
364
+ out , err := osexec .Command (nsenterPath , "-t" , nsPid , "-n" , "-F" , "--" , routePath ,
365
+ "-6" , "add" , "default" , "gw" , gw6 , intfName ).CombinedOutput ()
366
+ if err != nil {
367
+ log .Errorf ("unable to set default IPv6 gateway %s. Error: %s - %s" , gw6 , err , out )
368
+ return nil
369
+ }
370
+ }
371
+
345
372
return nil
346
373
}
347
374
@@ -430,13 +457,14 @@ func addPod(w http.ResponseWriter, r *http.Request, vars map[string]string) (int
430
457
}
431
458
432
459
// Set interface attributes for the new port
433
- epErr = setIfAttrs (pid , ep .PortName , ep .IPAddress , pInfo .IntfName )
460
+ epErr = setIfAttrs (pid , ep .PortName , ep .IPAddress , ep . IPv6Address , pInfo .IntfName )
434
461
if epErr != nil {
435
462
log .Errorf ("Error setting interface attributes. Err: %v" , epErr )
436
463
setErrorResp (& resp , "Error setting interface attributes" , epErr )
437
464
return resp , epErr
438
465
}
439
466
467
+ //TODO: Host access needs to be enabled for IPv6
440
468
// if Gateway is not specified on the nw, use the host gateway
441
469
gwIntf := pInfo .IntfName
442
470
gw := ep .Gateway
@@ -446,7 +474,7 @@ func addPod(w http.ResponseWriter, r *http.Request, vars map[string]string) (int
446
474
if err != nil {
447
475
log .Errorf ("Error setting host access. Err: %v" , err )
448
476
} else {
449
- err = setIfAttrs (pid , hostIf , hostIP , "host1" )
477
+ err = setIfAttrs (pid , hostIf , hostIP , "" , " host1" )
450
478
if err != nil {
451
479
log .Errorf ("Move to pid %d failed" , pid )
452
480
} else {
@@ -465,7 +493,7 @@ func addPod(w http.ResponseWriter, r *http.Request, vars map[string]string) (int
465
493
}
466
494
467
495
// Set default gateway
468
- epErr = setDefGw (pid , gw , gwIntf )
496
+ epErr = setDefGw (pid , gw , ep . IPv6Gateway , gwIntf )
469
497
if epErr != nil {
470
498
log .Errorf ("Error setting default gateway. Err: %v" , epErr )
471
499
setErrorResp (& resp , "Error setting default gateway" , epErr )
@@ -474,7 +502,13 @@ func addPod(w http.ResponseWriter, r *http.Request, vars map[string]string) (int
474
502
475
503
resp .Result = 0
476
504
resp .IPAddress = ep .IPAddress
505
+
506
+ if ep .IPv6Address != "" {
507
+ resp .IPv6Address = ep .IPv6Address
508
+ }
509
+
477
510
resp .EndpointID = pInfo .InfraContainerID
511
+
478
512
return resp , nil
479
513
}
480
514
0 commit comments