-
Notifications
You must be signed in to change notification settings - Fork 456
/
Copy pathvpc_nat_gateway.go
1268 lines (1138 loc) · 37.8 KB
/
vpc_nat_gateway.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package controller
import (
"context"
"encoding/json"
"errors"
"fmt"
"maps"
"os"
"reflect"
"regexp"
"slices"
"strings"
"time"
nadv1 "github.com/k8snetworkplumbingwg/network-attachment-definition-client/pkg/apis/k8s.cni.cncf.io/v1"
v1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
k8serrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/tools/cache"
"k8s.io/klog/v2"
"k8s.io/utils/ptr"
kubeovnv1 "github.com/kubeovn/kube-ovn/pkg/apis/kubeovn/v1"
"github.com/kubeovn/kube-ovn/pkg/request"
"github.com/kubeovn/kube-ovn/pkg/util"
)
var (
vpcNatEnabled = "unknown"
VpcNatCmVersion = ""
natGwCreatedAT = ""
)
const (
natGwInit = "init"
natGwEipAdd = "eip-add"
natGwEipDel = "eip-del"
natGwDnatAdd = "dnat-add"
natGwDnatDel = "dnat-del"
natGwSnatAdd = "snat-add"
natGwSnatDel = "snat-del"
natGwEipIngressQoSAdd = "eip-ingress-qos-add"
natGwEipIngressQoSDel = "eip-ingress-qos-del"
QoSAdd = "qos-add"
QoSDel = "qos-del"
natGwEipEgressQoSAdd = "eip-egress-qos-add"
natGwEipEgressQoSDel = "eip-egress-qos-del"
natGwSubnetFipAdd = "floating-ip-add"
natGwSubnetFipDel = "floating-ip-del"
natGwSubnetRouteAdd = "subnet-route-add"
natGwSubnetRouteDel = "subnet-route-del"
getIptablesVersion = "get-iptables-version"
)
func (c *Controller) resyncVpcNatGwConfig() {
cm, err := c.configMapsLister.ConfigMaps(c.config.PodNamespace).Get(util.VpcNatGatewayConfig)
if err != nil && !k8serrors.IsNotFound(err) {
klog.Errorf("failed to get ovn-vpc-nat-gw-config, %v", err)
return
}
if k8serrors.IsNotFound(err) || cm.Data["enable-vpc-nat-gw"] == "false" {
if vpcNatEnabled == "false" {
return
}
klog.Info("start to clean up vpc nat gateway")
if err := c.cleanUpVpcNatGw(); err != nil {
klog.Errorf("failed to clean up vpc nat gateway, %v", err)
return
}
vpcNatEnabled = "false"
VpcNatCmVersion = ""
klog.Info("finish clean up vpc nat gateway")
return
}
if vpcNatEnabled == "true" && VpcNatCmVersion == cm.ResourceVersion {
return
}
gws, err := c.vpcNatGatewayLister.List(labels.Everything())
if err != nil {
klog.Errorf("failed to get vpc nat gateway, %v", err)
return
}
vpcNatEnabled = "true"
VpcNatCmVersion = cm.ResourceVersion
for _, gw := range gws {
c.addOrUpdateVpcNatGatewayQueue.Add(gw.Name)
}
klog.Info("finish establishing vpc-nat-gateway")
}
func (c *Controller) enqueueAddVpcNatGw(obj interface{}) {
key := cache.MetaObjectToName(obj.(*kubeovnv1.VpcNatGateway)).String()
klog.V(3).Infof("enqueue add vpc-nat-gw %s", key)
c.addOrUpdateVpcNatGatewayQueue.Add(key)
}
func (c *Controller) enqueueUpdateVpcNatGw(_, newObj interface{}) {
key := cache.MetaObjectToName(newObj.(*kubeovnv1.VpcNatGateway)).String()
klog.V(3).Infof("enqueue update vpc-nat-gw %s", key)
c.addOrUpdateVpcNatGatewayQueue.Add(key)
}
func (c *Controller) enqueueDeleteVpcNatGw(obj interface{}) {
key := cache.MetaObjectToName(obj.(*kubeovnv1.VpcNatGateway)).String()
klog.V(3).Infof("enqueue del vpc-nat-gw %s", key)
c.delVpcNatGatewayQueue.Add(key)
}
func (c *Controller) handleDelVpcNatGw(key string) error {
c.vpcNatGwKeyMutex.LockKey(key)
defer func() { _ = c.vpcNatGwKeyMutex.UnlockKey(key) }()
name := util.GenNatGwStsName(key)
klog.Infof("delete vpc nat gw %s", name)
if err := c.config.KubeClient.AppsV1().StatefulSets(c.config.PodNamespace).Delete(context.Background(),
name, metav1.DeleteOptions{}); err != nil {
if k8serrors.IsNotFound(err) {
return nil
}
klog.Error(err)
return err
}
return nil
}
func isVpcNatGwChanged(gw *kubeovnv1.VpcNatGateway) bool {
if !slices.Equal(gw.Spec.ExternalSubnets, gw.Status.ExternalSubnets) {
gw.Status.ExternalSubnets = gw.Spec.ExternalSubnets
return true
}
if !slices.Equal(gw.Spec.Selector, gw.Status.Selector) {
gw.Status.Selector = gw.Spec.Selector
return true
}
if !reflect.DeepEqual(gw.Spec.Tolerations, gw.Status.Tolerations) {
gw.Status.Tolerations = gw.Spec.Tolerations
return true
}
if !reflect.DeepEqual(gw.Spec.Affinity, gw.Status.Affinity) {
gw.Status.Affinity = gw.Spec.Affinity
return true
}
return false
}
func (c *Controller) handleAddOrUpdateVpcNatGw(key string) error {
gw, err := c.vpcNatGatewayLister.Get(key)
if err != nil {
if k8serrors.IsNotFound(err) {
return nil
}
klog.Error(err)
return err
}
// create nat gw statefulset
c.vpcNatGwKeyMutex.LockKey(key)
defer func() { _ = c.vpcNatGwKeyMutex.UnlockKey(key) }()
klog.Infof("handle add/update vpc nat gateway %s", key)
if vpcNatEnabled != "true" {
return errors.New("iptables nat gw not enable")
}
if _, err := c.vpcsLister.Get(gw.Spec.Vpc); err != nil {
err = fmt.Errorf("failed to get vpc '%s', err: %w", gw.Spec.Vpc, err)
klog.Error(err)
return err
}
if _, err := c.subnetsLister.Get(gw.Spec.Subnet); err != nil {
err = fmt.Errorf("failed to get subnet '%s', err: %w", gw.Spec.Subnet, err)
klog.Error(err)
return err
}
var natGwPodContainerRestartCount int32
pod, _err := c.getNatGwPod(key)
if _err == nil {
for _, psc := range pod.Status.ContainerStatuses {
if psc.Name != "vpc-nat-gw" {
continue
}
natGwPodContainerRestartCount = psc.RestartCount
break
}
}
// check or create statefulset
needToCreate := false
needToUpdate := false
oldSts, err := c.config.KubeClient.AppsV1().StatefulSets(c.config.PodNamespace).
Get(context.Background(), util.GenNatGwStsName(gw.Name), metav1.GetOptions{})
if err != nil {
if !k8serrors.IsNotFound(err) {
klog.Error(err)
return err
}
needToCreate, oldSts = true, nil
}
newSts, err := c.genNatGwStatefulSet(gw, oldSts, natGwPodContainerRestartCount)
if err != nil {
klog.Error(err)
return err
}
if !needToCreate && (isVpcNatGwChanged(gw) || natGwPodContainerRestartCount > 0) {
needToUpdate = true
}
switch {
case needToCreate:
// if pod create successfully, will add initVpcNatGatewayQueue
if _, err := c.config.KubeClient.AppsV1().StatefulSets(c.config.PodNamespace).
Create(context.Background(), newSts, metav1.CreateOptions{}); err != nil {
err := fmt.Errorf("failed to create statefulset '%s', err: %w", newSts.Name, err)
klog.Error(err)
return err
}
if err = c.patchNatGwStatus(key); err != nil {
klog.Errorf("failed to patch nat gw sts status for nat gw %s, %v", key, err)
return err
}
return nil
case needToUpdate:
if _, err := c.config.KubeClient.AppsV1().StatefulSets(c.config.PodNamespace).
Update(context.Background(), newSts, metav1.UpdateOptions{}); err != nil {
err := fmt.Errorf("failed to update statefulset '%s', err: %w", newSts.Name, err)
klog.Error(err)
return err
}
if err = c.patchNatGwStatus(key); err != nil {
klog.Errorf("failed to patch nat gw sts status for nat gw %s, %v", key, err)
return err
}
default:
// check if need to change qos
if gw.Spec.QoSPolicy != gw.Status.QoSPolicy {
if gw.Status.QoSPolicy != "" {
if err = c.execNatGwQoS(gw, gw.Status.QoSPolicy, QoSDel); err != nil {
klog.Errorf("failed to add qos for nat gw %s, %v", key, err)
return err
}
}
if gw.Spec.QoSPolicy != "" {
if err = c.execNatGwQoS(gw, gw.Spec.QoSPolicy, QoSAdd); err != nil {
klog.Errorf("failed to del qos for nat gw %s, %v", key, err)
return err
}
}
if err := c.updateCrdNatGwLabels(key, gw.Spec.QoSPolicy); err != nil {
err := fmt.Errorf("failed to update nat gw %s: %w", gw.Name, err)
klog.Error(err)
return err
}
// if update qos success, will update nat gw status
if err = c.patchNatGwQoSStatus(key, gw.Spec.QoSPolicy); err != nil {
klog.Errorf("failed to patch nat gw qos status for nat gw %s, %v", key, err)
return err
}
}
}
return nil
}
func (c *Controller) handleInitVpcNatGw(key string) error {
gw, err := c.vpcNatGatewayLister.Get(key)
if err != nil {
if k8serrors.IsNotFound(err) {
return nil
}
klog.Error(err)
return err
}
if vpcNatEnabled != "true" {
return errors.New("iptables nat gw not enable")
}
c.vpcNatGwKeyMutex.LockKey(key)
defer func() { _ = c.vpcNatGwKeyMutex.UnlockKey(key) }()
klog.Infof("handle init vpc nat gateway %s", key)
// subnet for vpc-nat-gw has been checked when create vpc-nat-gw
pod, err := c.getNatGwPod(key)
if err != nil {
err := fmt.Errorf("failed to get nat gw %s pod: %w", gw.Name, err)
klog.Error(err)
return err
}
if pod.Status.Phase != corev1.PodRunning {
time.Sleep(10 * time.Second)
err = fmt.Errorf("failed to init vpc nat gateway %s, pod is not ready", key)
klog.Error(err)
return err
}
if _, hasInit := pod.Annotations[util.VpcNatGatewayInitAnnotation]; hasInit {
return nil
}
natGwCreatedAT = pod.CreationTimestamp.Format("2006-01-02T15:04:05")
klog.V(3).Infof("nat gw pod '%s' inited at %s", key, natGwCreatedAT)
if err = c.execNatGwRules(pod, natGwInit, nil); err != nil {
err = fmt.Errorf("failed to init vpc nat gateway, %w", err)
klog.Error(err)
return err
}
if gw.Spec.QoSPolicy != "" {
if err = c.execNatGwQoS(gw, gw.Spec.QoSPolicy, QoSAdd); err != nil {
klog.Errorf("failed to add qos for nat gw %s, %v", key, err)
return err
}
}
// if update qos success, will update nat gw status
if gw.Spec.QoSPolicy != gw.Status.QoSPolicy {
if err = c.patchNatGwQoSStatus(key, gw.Spec.QoSPolicy); err != nil {
klog.Errorf("failed to patch status for nat gw %s, %v", key, err)
return err
}
}
if err := c.updateCrdNatGwLabels(gw.Name, gw.Spec.QoSPolicy); err != nil {
err := fmt.Errorf("failed to update nat gw %s: %w", gw.Name, err)
klog.Error(err)
return err
}
c.updateVpcFloatingIPQueue.Add(key)
c.updateVpcDnatQueue.Add(key)
c.updateVpcSnatQueue.Add(key)
c.updateVpcSubnetQueue.Add(key)
c.updateVpcEipQueue.Add(key)
patch := util.KVPatch{util.VpcNatGatewayInitAnnotation: "true"}
if err = util.PatchAnnotations(c.config.KubeClient.CoreV1().Pods(pod.Namespace), pod.Name, patch); err != nil {
err := fmt.Errorf("failed to patch pod %s/%s: %w", pod.Namespace, pod.Name, err)
klog.Error(err)
return err
}
return nil
}
func (c *Controller) handleUpdateVpcFloatingIP(natGwKey string) error {
if vpcNatEnabled != "true" {
return errors.New("iptables nat gw not enable")
}
c.vpcNatGwKeyMutex.LockKey(natGwKey)
defer func() { _ = c.vpcNatGwKeyMutex.UnlockKey(natGwKey) }()
klog.Infof("handle update vpc fip %s", natGwKey)
// refresh exist fips
if err := c.initCreateAt(natGwKey); err != nil {
err = fmt.Errorf("failed to init nat gw pod '%s' create at, %w", natGwKey, err)
klog.Error(err)
return err
}
fips, err := c.iptablesFipsLister.List(labels.SelectorFromSet(labels.Set{util.VpcNatGatewayNameLabel: natGwKey}))
if err != nil {
err := fmt.Errorf("failed to get all fips, %w", err)
klog.Error(err)
return err
}
for _, fip := range fips {
if fip.Status.Redo != natGwCreatedAT {
klog.V(3).Infof("redo fip %s", fip.Name)
if err = c.redoFip(fip.Name, natGwCreatedAT, false); err != nil {
klog.Errorf("failed to update eip '%s' to re-apply, %v", fip.Spec.EIP, err)
return err
}
}
}
return nil
}
func (c *Controller) handleUpdateVpcEip(natGwKey string) error {
if vpcNatEnabled != "true" {
return errors.New("iptables nat gw not enable")
}
c.vpcNatGwKeyMutex.LockKey(natGwKey)
defer func() { _ = c.vpcNatGwKeyMutex.UnlockKey(natGwKey) }()
klog.Infof("handle update vpc eip %s", natGwKey)
// refresh exist fips
if err := c.initCreateAt(natGwKey); err != nil {
err = fmt.Errorf("failed to init nat gw pod '%s' create at, %w", natGwKey, err)
klog.Error(err)
return err
}
eips, err := c.iptablesEipsLister.List(labels.Everything())
if err != nil {
err = fmt.Errorf("failed to get eip list, %w", err)
klog.Error(err)
return err
}
for _, eip := range eips {
if eip.Spec.NatGwDp == natGwKey && eip.Status.Redo != natGwCreatedAT {
klog.V(3).Infof("redo eip %s", eip.Name)
if err = c.patchEipStatus(eip.Name, "", natGwCreatedAT, "", false); err != nil {
klog.Errorf("failed to update eip '%s' to re-apply, %v", eip.Name, err)
return err
}
}
}
return nil
}
func (c *Controller) handleUpdateVpcSnat(natGwKey string) error {
if vpcNatEnabled != "true" {
return errors.New("iptables nat gw not enable")
}
c.vpcNatGwKeyMutex.LockKey(natGwKey)
defer func() { _ = c.vpcNatGwKeyMutex.UnlockKey(natGwKey) }()
klog.Infof("handle update vpc snat %s", natGwKey)
// refresh exist snats
if err := c.initCreateAt(natGwKey); err != nil {
err = fmt.Errorf("failed to init nat gw pod '%s' create at, %w", natGwKey, err)
klog.Error(err)
return err
}
snats, err := c.iptablesSnatRulesLister.List(labels.SelectorFromSet(labels.Set{util.VpcNatGatewayNameLabel: natGwKey}))
if err != nil {
err = fmt.Errorf("failed to get all snats, %w", err)
klog.Error(err)
return err
}
for _, snat := range snats {
if snat.Status.Redo != natGwCreatedAT {
klog.V(3).Infof("redo snat %s", snat.Name)
if err = c.redoSnat(snat.Name, natGwCreatedAT, false); err != nil {
err = fmt.Errorf("failed to update eip '%s' to re-apply, %w", snat.Spec.EIP, err)
klog.Error(err)
return err
}
}
}
return nil
}
func (c *Controller) handleUpdateVpcDnat(natGwKey string) error {
if vpcNatEnabled != "true" {
return errors.New("iptables nat gw not enable")
}
c.vpcNatGwKeyMutex.LockKey(natGwKey)
defer func() { _ = c.vpcNatGwKeyMutex.UnlockKey(natGwKey) }()
klog.Infof("handle update vpc dnat %s", natGwKey)
// refresh exist dnats
if err := c.initCreateAt(natGwKey); err != nil {
err = fmt.Errorf("failed to init nat gw pod '%s' create at, %w", natGwKey, err)
klog.Error(err)
return err
}
dnats, err := c.iptablesDnatRulesLister.List(labels.SelectorFromSet(labels.Set{util.VpcNatGatewayNameLabel: natGwKey}))
if err != nil {
err = fmt.Errorf("failed to get all dnats, %w", err)
klog.Error(err)
return err
}
for _, dnat := range dnats {
if dnat.Status.Redo != natGwCreatedAT {
klog.V(3).Infof("redo dnat %s", dnat.Name)
if err = c.redoDnat(dnat.Name, natGwCreatedAT, false); err != nil {
err := fmt.Errorf("failed to update dnat '%s' to redo, %w", dnat.Name, err)
klog.Error(err)
return err
}
}
}
return nil
}
func (c *Controller) getIptablesVersion(pod *corev1.Pod) (version string, err error) {
operation := getIptablesVersion
cmd := fmt.Sprintf("bash /kube-ovn/nat-gateway.sh %s", operation)
klog.V(3).Info(cmd)
stdOutput, errOutput, err := util.ExecuteCommandInContainer(c.config.KubeClient, c.config.KubeRestConfig, pod.Namespace, pod.Name, "vpc-nat-gw", []string{"/bin/bash", "-c", cmd}...)
if err != nil {
if len(errOutput) > 0 {
klog.Errorf("failed to ExecuteCommandInContainer, errOutput: %v", errOutput)
}
if len(stdOutput) > 0 {
klog.V(3).Infof("failed to ExecuteCommandInContainer, stdOutput: %v", stdOutput)
}
klog.Error(err)
return "", err
}
if len(stdOutput) > 0 {
klog.V(3).Infof("ExecuteCommandInContainer stdOutput: %v", stdOutput)
}
if len(errOutput) > 0 {
klog.Errorf("failed to ExecuteCommandInContainer errOutput: %v", errOutput)
return "", err
}
versionMatcher := regexp.MustCompile(`v([0-9]+(\.[0-9]+)+)`)
match := versionMatcher.FindStringSubmatch(stdOutput)
if match == nil {
return "", fmt.Errorf("no iptables version found in string: %s", stdOutput)
}
return match[1], nil
}
func (c *Controller) handleUpdateNatGwSubnetRoute(natGwKey string) error {
gw, err := c.vpcNatGatewayLister.Get(natGwKey)
if err != nil {
if k8serrors.IsNotFound(err) {
return nil
}
klog.Error(err)
return err
}
if vpcNatEnabled != "true" {
return errors.New("iptables nat gw not enable")
}
c.vpcNatGwKeyMutex.LockKey(natGwKey)
defer func() { _ = c.vpcNatGwKeyMutex.UnlockKey(natGwKey) }()
klog.Infof("handle update subnet route for nat gateway %s", natGwKey)
pod, err := c.getNatGwPod(natGwKey)
if err != nil {
err = fmt.Errorf("failed to get nat gw '%s' pod, %w", natGwKey, err)
klog.Error(err)
return err
}
v4InternalGw, _, err := c.GetGwBySubnet(gw.Spec.Subnet)
if err != nil {
err = fmt.Errorf("failed to get gw, err: %w", err)
klog.Error(err)
return err
}
vpc, err := c.vpcsLister.Get(gw.Spec.Vpc)
if err != nil {
err = fmt.Errorf("failed to get vpc, err: %w", err)
klog.Error(err)
return err
}
// update route table
var newCIDRS, oldCIDRs, toBeDelCIDRs []string
if len(vpc.Status.Subnets) > 0 {
for _, s := range vpc.Status.Subnets {
subnet, err := c.subnetsLister.Get(s)
if err != nil {
err = fmt.Errorf("failed to get subnet, err: %w", err)
klog.Error(err)
return err
}
if subnet.Spec.Vlan != "" && !subnet.Spec.U2OInterconnection {
continue
}
if !isOvnSubnet(subnet) || !subnet.Status.IsValidated() {
continue
}
if v4Cidr, _ := util.SplitStringIP(subnet.Spec.CIDRBlock); v4Cidr != "" {
newCIDRS = append(newCIDRS, v4Cidr)
}
}
}
if cidrs, ok := pod.Annotations[util.VpcCIDRsAnnotation]; ok {
if err = json.Unmarshal([]byte(cidrs), &oldCIDRs); err != nil {
klog.Error(err)
return err
}
}
for _, old := range oldCIDRs {
if !slices.Contains(newCIDRS, old) {
toBeDelCIDRs = append(toBeDelCIDRs, old)
}
}
if len(newCIDRS) > 0 {
var rules []string
for _, cidr := range newCIDRS {
if !util.CIDRContainIP(cidr, v4InternalGw) {
rules = append(rules, fmt.Sprintf("%s,%s", cidr, v4InternalGw))
}
}
if len(rules) > 0 {
if err = c.execNatGwRules(pod, natGwSubnetRouteAdd, rules); err != nil {
err = fmt.Errorf("failed to exec nat gateway rule, err: %w", err)
klog.Error(err)
return err
}
}
}
if len(toBeDelCIDRs) > 0 {
for _, cidr := range toBeDelCIDRs {
if err = c.execNatGwRules(pod, natGwSubnetRouteDel, []string{cidr}); err != nil {
err = fmt.Errorf("failed to exec nat gateway rule, err: %w", err)
klog.Error(err)
return err
}
}
}
cidrBytes, err := json.Marshal(newCIDRS)
if err != nil {
klog.Errorf("marshal eip annotation failed %v", err)
return err
}
patch := util.KVPatch{util.VpcCIDRsAnnotation: string(cidrBytes)}
if err = util.PatchAnnotations(c.config.KubeClient.CoreV1().Pods(pod.Namespace), pod.Name, patch); err != nil {
err = fmt.Errorf("failed to patch pod %s/%s: %w", pod.Namespace, pod.Name, err)
klog.Error(err)
return err
}
return nil
}
func (c *Controller) execNatGwRules(pod *corev1.Pod, operation string, rules []string) error {
cmd := fmt.Sprintf("bash /kube-ovn/nat-gateway.sh %s %s", operation, strings.Join(rules, " "))
klog.V(3).Info(cmd)
stdOutput, errOutput, err := util.ExecuteCommandInContainer(c.config.KubeClient, c.config.KubeRestConfig, pod.Namespace, pod.Name, "vpc-nat-gw", []string{"/bin/bash", "-c", cmd}...)
if err != nil {
if len(errOutput) > 0 {
klog.Errorf("failed to ExecuteCommandInContainer, errOutput: %v", errOutput)
}
if len(stdOutput) > 0 {
klog.V(3).Infof("failed to ExecuteCommandInContainer, stdOutput: %v", stdOutput)
}
klog.Error(err)
return err
}
if len(stdOutput) > 0 {
klog.V(3).Infof("ExecuteCommandInContainer stdOutput: %v", stdOutput)
}
if len(errOutput) > 0 {
klog.Errorf("failed to ExecuteCommandInContainer errOutput: %v", errOutput)
return errors.New(errOutput)
}
return nil
}
// setNatGwAPIAccess adds an interface with API access to the NAT gateway and attaches the standard externalNetwork to the gateway.
// This interface is backed by a NetworkAttachmentDefinition (NAD) with a provider corresponding
// to one that is configured on a subnet part of the default VPC (the K8S apiserver runs in the default VPC)
func (c *Controller) setNatGwAPIAccess(annotations map[string]string, externalNetwork string) error {
// Check the NetworkAttachmentDefinition provider exists, must be user-configured
if vpcNatAPINadProvider == "" {
return errors.New("no NetworkAttachmentDefinition provided to access apiserver, check configmap ovn-vpc-nat-config and field 'apiNadProvider'")
}
// Subdivide provider so we can infer the name of the NetworkAttachmentDefinition
providerSplit := strings.Split(vpcNatAPINadProvider, ".")
if len(providerSplit) != 3 || providerSplit[2] != util.OvnProvider {
return fmt.Errorf("name of the provider must have syntax 'name.namespace.ovn', got %s", vpcNatAPINadProvider)
}
// Extract the name of the provider and its namespace
name, namespace := providerSplit[0], providerSplit[1]
// Craft the name of the NAD for the externalNetwork and the apiNetwork
externalNetworkAttachment := fmt.Sprintf("%s/%s", c.config.PodNamespace, externalNetwork)
apiNetworkAttachment := fmt.Sprintf("%s/%s", namespace, name)
// Attach the NADs to the Pod by adding them to the special annotation
attachmentAnnotation := fmt.Sprintf("%s, %s", externalNetworkAttachment, apiNetworkAttachment)
annotations[nadv1.NetworkAttachmentAnnot] = attachmentAnnotation
// Set the network route to the API, so we can reach it
return c.setNatGwAPIRoute(annotations, namespace, name)
}
func (c *Controller) setNatGwAPIRoute(annotations map[string]string, nadNamespace, nadName string) error {
dst := os.Getenv("KUBERNETES_SERVICE_HOST")
protocol := util.CheckProtocol(dst)
if !strings.ContainsRune(dst, '/') {
switch protocol {
case kubeovnv1.ProtocolIPv4:
dst = fmt.Sprintf("%s/32", dst)
case kubeovnv1.ProtocolIPv6:
dst = fmt.Sprintf("%s/128", dst)
}
}
// Retrieve every subnet on the cluster
subnets, err := c.subnetsLister.List(labels.Everything())
if err != nil {
return fmt.Errorf("failed to list subnets: %w", err)
}
// Retrieve the subnet connected to the NAD, this subnet should be in the VPC of the API
apiSubnet, err := c.findSubnetByNetworkAttachmentDefinition(nadNamespace, nadName, subnets)
if err != nil {
return fmt.Errorf("failed to find api subnet using the nad %s/%s: %w", nadNamespace, nadName, err)
}
// Craft the route to reach the API from the subnet we've just retrieved
for _, gw := range strings.Split(apiSubnet.Spec.Gateway, ",") {
if util.CheckProtocol(gw) == protocol {
routes := []request.Route{{Destination: dst, Gateway: gw}}
buf, err := json.Marshal(routes)
if err != nil {
return fmt.Errorf("failed to marshal routes %+v: %w", routes, err)
}
annotations[fmt.Sprintf(util.RoutesAnnotationTemplate, vpcNatAPINadProvider)] = string(buf)
break
}
}
return nil
}
func (c *Controller) genNatGwStatefulSet(gw *kubeovnv1.VpcNatGateway, oldSts *v1.StatefulSet, natGwPodContainerRestartCount int32) (*v1.StatefulSet, error) {
annotations := make(map[string]string, 7)
if oldSts != nil && len(oldSts.Annotations) != 0 {
annotations = maps.Clone(oldSts.Annotations)
}
externalNetworkNad := util.GetNatGwExternalNetwork(gw.Spec.ExternalSubnets)
podAnnotations := map[string]string{
util.VpcNatGatewayAnnotation: gw.Name,
nadv1.NetworkAttachmentAnnot: fmt.Sprintf("%s/%s", c.config.PodNamespace, externalNetworkNad),
util.LogicalSwitchAnnotation: gw.Spec.Subnet,
util.IPAddressAnnotation: gw.Spec.LanIP,
}
if oldSts != nil && len(oldSts.Spec.Template.Annotations) != 0 {
if _, ok := oldSts.Spec.Template.Annotations[util.VpcNatGatewayContainerRestartAnnotation]; !ok && natGwPodContainerRestartCount > 0 {
podAnnotations[util.VpcNatGatewayContainerRestartAnnotation] = ""
}
}
klog.V(3).Infof("%s podAnnotations:%v", gw.Name, podAnnotations)
// Add an interface that can reach the API server, we need access to it to probe Kube-OVN resources
if gw.Spec.BgpSpeaker.Enabled {
if err := c.setNatGwAPIAccess(podAnnotations, externalNetworkNad); err != nil {
klog.Error(err)
return nil, err
}
}
for key, value := range podAnnotations {
annotations[key] = value
}
subnets, err := c.subnetsLister.List(labels.Everything())
if err != nil {
klog.Errorf("failed to list subnets: %v", err)
return nil, err
}
v4Gateway, v6Gateway, err := c.GetGwBySubnet(gw.Spec.Subnet)
if err != nil {
klog.Errorf("failed to get gateway ips for subnet %s: %v", gw.Spec.Subnet, err)
}
v4ClusterIPRange, v6ClusterIPRange := util.SplitStringIP(c.config.ServiceClusterIPRange)
routes := make([]request.Route, 0, 2)
if v4Gateway != "" && v4ClusterIPRange != "" {
routes = append(routes, request.Route{Destination: v4ClusterIPRange, Gateway: v4Gateway})
}
if v6Gateway != "" && v6ClusterIPRange != "" {
routes = append(routes, request.Route{Destination: v6ClusterIPRange, Gateway: v6Gateway})
}
for _, subnet := range subnets {
if subnet.Spec.Vpc != gw.Spec.Vpc || subnet.Name == gw.Spec.Subnet ||
!isOvnSubnet(subnet) || !subnet.Status.IsValidated() ||
(subnet.Spec.Vlan != "" && !subnet.Spec.U2OInterconnection) {
continue
}
cidrV4, cidrV6 := util.SplitStringIP(subnet.Spec.CIDRBlock)
if cidrV4 != "" && v4Gateway != "" {
routes = append(routes, request.Route{Destination: cidrV4, Gateway: v4Gateway})
}
if cidrV6 != "" && v6Gateway != "" {
routes = append(routes, request.Route{Destination: cidrV6, Gateway: v6Gateway})
}
}
if err = setPodRoutesAnnotation(annotations, util.OvnProvider, routes); err != nil {
klog.Error(err)
return nil, err
}
subnet, err := c.findSubnetByNetworkAttachmentDefinition(c.config.PodNamespace, externalNetworkNad, subnets)
if err != nil {
klog.Error(err)
return nil, err
}
routes = routes[0:0]
v4Gateway, v6Gateway = util.SplitStringIP(subnet.Spec.Gateway)
if v4Gateway != "" {
routes = append(routes, request.Route{Destination: "0.0.0.0/0", Gateway: v4Gateway})
}
if v6Gateway != "" {
routes = append(routes, request.Route{Destination: "::/0", Gateway: v6Gateway})
}
if err = setPodRoutesAnnotation(annotations, subnet.Spec.Provider, routes); err != nil {
klog.Error(err)
return nil, err
}
selectors := make(map[string]string, len(gw.Spec.Selector))
for _, v := range gw.Spec.Selector {
parts := strings.Split(strings.TrimSpace(v), ":")
if len(parts) != 2 {
continue
}
selectors[strings.TrimSpace(parts[0])] = strings.TrimSpace(parts[1])
}
klog.V(3).Infof("prepare for vpc nat gateway pod, node selector: %v", selectors)
name := util.GenNatGwStsName(gw.Name)
labels := map[string]string{
"app": name,
util.VpcNatGatewayLabel: "true",
}
sts := &v1.StatefulSet{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Labels: labels,
},
Spec: v1.StatefulSetSpec{
Replicas: ptr.To(int32(1)),
Selector: &metav1.LabelSelector{
MatchLabels: labels,
},
Template: corev1.PodTemplateSpec{
ObjectMeta: metav1.ObjectMeta{
Labels: labels,
Annotations: annotations,
},
Spec: corev1.PodSpec{
TerminationGracePeriodSeconds: ptr.To(int64(0)),
Containers: []corev1.Container{
{
Name: "vpc-nat-gw",
Image: vpcNatImage,
Command: []string{"sleep", "infinity"},
ImagePullPolicy: corev1.PullIfNotPresent,
SecurityContext: &corev1.SecurityContext{
Privileged: ptr.To(true),
AllowPrivilegeEscalation: ptr.To(true),
},
},
},
NodeSelector: selectors,
Tolerations: gw.Spec.Tolerations,
Affinity: &gw.Spec.Affinity,
},
},
UpdateStrategy: v1.StatefulSetUpdateStrategy{
Type: v1.RollingUpdateStatefulSetStrategyType,
},
},
}
// BGP speaker for GWs must be enabled globally and for this specific instance
if gw.Spec.BgpSpeaker.Enabled {
containers := sts.Spec.Template.Spec.Containers
// We need a speaker image configured in the NAT GW ConfigMap
if vpcNatGwBgpSpeakerImage == "" {
return nil, fmt.Errorf("%s should have bgp speaker image field if bgp enabled", util.VpcNatConfig)
}
args := []string{
"--nat-gw-mode", // Force to run in NAT GW mode, we're not announcing Pod IPs or Services, only EIPs
}
speakerParams := gw.Spec.BgpSpeaker
if speakerParams.RouterID != "" { // Override default auto-selected RouterID
args = append(args, fmt.Sprintf("--router-id=%s", speakerParams.RouterID))
}
if speakerParams.Password != "" { // Password for TCP MD5 BGP
args = append(args, fmt.Sprintf("--auth-password=%s", speakerParams.Password))
}
if speakerParams.EnableGracefulRestart { // Enable graceful restart
args = append(args, "--graceful-restart")
}
if speakerParams.HoldTime != (metav1.Duration{}) { // Hold time
args = append(args, fmt.Sprintf("--holdtime=%s", speakerParams.HoldTime.Duration.String()))
}
if speakerParams.ASN == 0 { // The ASN we use to speak
return nil, errors.New("ASN not set, but must be non-zero value")
}
if speakerParams.RemoteASN == 0 { // The ASN we speak to
return nil, errors.New("remote ASN not set, but must be non-zero value")
}
args = append(args, fmt.Sprintf("--cluster-as=%d", speakerParams.ASN))
args = append(args, fmt.Sprintf("--neighbor-as=%d", speakerParams.RemoteASN))
if len(speakerParams.Neighbors) == 0 {
return nil, errors.New("no BGP neighbors specified")
}
var neighIPv4 []string
var neighIPv6 []string
for _, neighbor := range speakerParams.Neighbors {
switch util.CheckProtocol(neighbor) {
case kubeovnv1.ProtocolIPv4:
neighIPv4 = append(neighIPv4, neighbor)
case kubeovnv1.ProtocolIPv6:
neighIPv6 = append(neighIPv6, neighbor)
default:
return nil, fmt.Errorf("unsupported protocol for peer %s", neighbor)
}
}
argNeighIPv4 := strings.Join(neighIPv4, ",")
argNeighIPv6 := strings.Join(neighIPv6, ",")
argNeighIPv4 = fmt.Sprintf("--neighbor-address=%s", argNeighIPv4)
argNeighIPv6 = fmt.Sprintf("--neighbor-ipv6-address=%s", argNeighIPv6)
if len(neighIPv4) > 0 {
args = append(args, argNeighIPv4)
}
if len(neighIPv6) > 0 {
args = append(args, argNeighIPv6)
}
// Extra args to start the speaker with, for example, logging levels...
args = append(args, speakerParams.ExtraArgs...)
sts.Spec.Template.Spec.ServiceAccountName = "vpc-nat-gw"
speakerContainer := corev1.Container{
Name: "vpc-nat-gw-speaker",
Image: vpcNatGwBgpSpeakerImage,
Command: []string{"/kube-ovn/kube-ovn-speaker"},
ImagePullPolicy: corev1.PullIfNotPresent,
Env: []corev1.EnvVar{
{
Name: util.GatewayNameEnv,
Value: gw.Name,
},
{
Name: "POD_IP",
ValueFrom: &corev1.EnvVarSource{
FieldRef: &corev1.ObjectFieldSelector{
FieldPath: "status.podIP",
},
},
},
},
Args: args,
}
sts.Spec.Template.Spec.Containers = append(containers, speakerContainer)
}
return sts, nil
}
func (c *Controller) cleanUpVpcNatGw() error {
gws, err := c.vpcNatGatewayLister.List(labels.Everything())
if err != nil {
klog.Errorf("failed to get vpc nat gateway, %v", err)
return err
}
for _, gw := range gws {
c.delVpcNatGatewayQueue.Add(gw.Name)
}
return nil
}
func (c *Controller) getNatGwPod(name string) (*corev1.Pod, error) {
sel, _ := metav1.LabelSelectorAsSelector(&metav1.LabelSelector{
MatchLabels: map[string]string{"app": util.GenNatGwStsName(name), util.VpcNatGatewayLabel: "true"},
})
pods, err := c.podsLister.Pods(c.config.PodNamespace).List(sel)
switch {
case err != nil: