Skip to content

Commit 7f2c167

Browse files
authored
Merge pull request kubernetes#126203 from danwinship/kube-proxy-bad-ips
validate that kube-proxy handles "bad" IPs/CIDRs correctly
2 parents 2593596 + 30bc1b5 commit 7f2c167

File tree

4 files changed

+212
-113
lines changed

4 files changed

+212
-113
lines changed

pkg/proxy/endpointslicecache.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,8 @@ func (cache *EndpointSliceCache) addEndpoints(svcPortName *ServicePortName, port
235235
}
236236
}
237237

238-
endpointInfo := newBaseEndpointInfo(endpoint.Addresses[0], portNum, isLocal,
238+
endpointIP := utilnet.ParseIPSloppy(endpoint.Addresses[0]).String()
239+
endpointInfo := newBaseEndpointInfo(endpointIP, portNum, isLocal,
239240
ready, serving, terminating, zoneHints)
240241

241242
// This logic ensures we're deduplicating potential overlapping endpoints

pkg/proxy/iptables/proxier_test.go

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6775,3 +6775,90 @@ func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) {
67756775
})
67766776
}
67776777
}
6778+
6779+
// TestBadIPs tests that "bad" IPs and CIDRs in Services/Endpoints are rewritten to
6780+
// be "good" in the input provided to iptables-restore
6781+
func TestBadIPs(t *testing.T) {
6782+
ipt := iptablestest.NewFake()
6783+
fp := NewFakeProxier(ipt)
6784+
metrics.RegisterMetrics(kubeproxyconfig.ProxyModeIPTables)
6785+
6786+
makeServiceMap(fp,
6787+
makeTestService("ns1", "svc1", func(svc *v1.Service) {
6788+
svc.Spec.Type = "LoadBalancer"
6789+
svc.Spec.ClusterIP = "172.30.0.041"
6790+
svc.Spec.Ports = []v1.ServicePort{{
6791+
Name: "p80",
6792+
Port: 80,
6793+
Protocol: v1.ProtocolTCP,
6794+
NodePort: 3001,
6795+
}}
6796+
svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{
6797+
IP: "1.2.3.004",
6798+
}}
6799+
svc.Spec.ExternalIPs = []string{"192.168.099.022"}
6800+
svc.Spec.LoadBalancerSourceRanges = []string{"203.0.113.000/025"}
6801+
}),
6802+
)
6803+
populateEndpointSlices(fp,
6804+
makeTestEndpointSlice("ns1", "svc1", 1, func(eps *discovery.EndpointSlice) {
6805+
eps.AddressType = discovery.AddressTypeIPv4
6806+
eps.Endpoints = []discovery.Endpoint{{
6807+
Addresses: []string{"10.180.00.001"},
6808+
}}
6809+
eps.Ports = []discovery.EndpointPort{{
6810+
Name: ptr.To("p80"),
6811+
Port: ptr.To[int32](80),
6812+
Protocol: ptr.To(v1.ProtocolTCP),
6813+
}}
6814+
}),
6815+
)
6816+
6817+
fp.syncProxyRules()
6818+
6819+
expected := dedent.Dedent(`
6820+
*filter
6821+
:KUBE-NODEPORTS - [0:0]
6822+
:KUBE-SERVICES - [0:0]
6823+
:KUBE-EXTERNAL-SERVICES - [0:0]
6824+
:KUBE-FIREWALL - [0:0]
6825+
:KUBE-FORWARD - [0:0]
6826+
:KUBE-PROXY-FIREWALL - [0:0]
6827+
-A KUBE-FIREWALL -m comment --comment "block incoming localnet connections" -d 127.0.0.0/8 ! -s 127.0.0.0/8 -m conntrack ! --ctstate RELATED,ESTABLISHED,DNAT -j DROP
6828+
-A KUBE-FORWARD -m conntrack --ctstate INVALID -m nfacct --nfacct-name ct_state_invalid_dropped_pkts -j DROP
6829+
-A KUBE-FORWARD -m comment --comment "kubernetes forwarding rules" -m mark --mark 0x4000/0x4000 -j ACCEPT
6830+
-A KUBE-FORWARD -m comment --comment "kubernetes forwarding conntrack rule" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
6831+
-A KUBE-PROXY-FIREWALL -m comment --comment "ns1/svc1:p80 traffic not accepted by KUBE-FW-XPGD46QRK7WJZT7O" -m tcp -p tcp -d 1.2.3.4 --dport 80 -j DROP
6832+
COMMIT
6833+
*nat
6834+
:KUBE-NODEPORTS - [0:0]
6835+
:KUBE-SERVICES - [0:0]
6836+
:KUBE-EXT-XPGD46QRK7WJZT7O - [0:0]
6837+
:KUBE-FW-XPGD46QRK7WJZT7O - [0:0]
6838+
:KUBE-MARK-MASQ - [0:0]
6839+
:KUBE-POSTROUTING - [0:0]
6840+
:KUBE-SEP-SXIVWICOYRO3J4NJ - [0:0]
6841+
:KUBE-SVC-XPGD46QRK7WJZT7O - [0:0]
6842+
-A KUBE-NODEPORTS -m comment --comment ns1/svc1:p80 -m tcp -p tcp -d 127.0.0.0/8 --dport 3001 -m nfacct --nfacct-name localhost_nps_accepted_pkts -j KUBE-EXT-XPGD46QRK7WJZT7O
6843+
-A KUBE-NODEPORTS -m comment --comment ns1/svc1:p80 -m tcp -p tcp --dport 3001 -j KUBE-EXT-XPGD46QRK7WJZT7O
6844+
-A KUBE-SERVICES -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 -j KUBE-SVC-XPGD46QRK7WJZT7O
6845+
-A KUBE-SERVICES -m comment --comment "ns1/svc1:p80 external IP" -m tcp -p tcp -d 192.168.99.22 --dport 80 -j KUBE-EXT-XPGD46QRK7WJZT7O
6846+
-A KUBE-SERVICES -m comment --comment "ns1/svc1:p80 loadbalancer IP" -m tcp -p tcp -d 1.2.3.4 --dport 80 -j KUBE-FW-XPGD46QRK7WJZT7O
6847+
-A KUBE-SERVICES -m comment --comment "kubernetes service nodeports; NOTE: this must be the last rule in this chain" -m addrtype --dst-type LOCAL -j KUBE-NODEPORTS
6848+
-A KUBE-EXT-XPGD46QRK7WJZT7O -m comment --comment "masquerade traffic for ns1/svc1:p80 external destinations" -j KUBE-MARK-MASQ
6849+
-A KUBE-EXT-XPGD46QRK7WJZT7O -j KUBE-SVC-XPGD46QRK7WJZT7O
6850+
-A KUBE-FW-XPGD46QRK7WJZT7O -m comment --comment "ns1/svc1:p80 loadbalancer IP" -s 203.0.113.0/25 -j KUBE-EXT-XPGD46QRK7WJZT7O
6851+
-A KUBE-FW-XPGD46QRK7WJZT7O -m comment --comment "other traffic to ns1/svc1:p80 will be dropped by KUBE-PROXY-FIREWALL"
6852+
-A KUBE-MARK-MASQ -j MARK --or-mark 0x4000
6853+
-A KUBE-POSTROUTING -m mark ! --mark 0x4000/0x4000 -j RETURN
6854+
-A KUBE-POSTROUTING -j MARK --xor-mark 0x4000
6855+
-A KUBE-POSTROUTING -m comment --comment "kubernetes service traffic requiring SNAT" -j MASQUERADE
6856+
-A KUBE-SEP-SXIVWICOYRO3J4NJ -m comment --comment ns1/svc1:p80 -s 10.180.0.1 -j KUBE-MARK-MASQ
6857+
-A KUBE-SEP-SXIVWICOYRO3J4NJ -m comment --comment ns1/svc1:p80 -m tcp -p tcp -j DNAT --to-destination 10.180.0.1:80
6858+
-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment "ns1/svc1:p80 cluster IP" -m tcp -p tcp -d 172.30.0.41 --dport 80 ! -s 10.0.0.0/8 -j KUBE-MARK-MASQ
6859+
-A KUBE-SVC-XPGD46QRK7WJZT7O -m comment --comment "ns1/svc1:p80 -> 10.180.0.1:80" -j KUBE-SEP-SXIVWICOYRO3J4NJ
6860+
COMMIT
6861+
`)
6862+
6863+
assertIPTablesRulesEqual(t, getLine(), true, expected, fp.iptablesData.String())
6864+
}

pkg/proxy/nftables/proxier.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1364,7 +1364,6 @@ func (proxier *Proxier) syncProxyRules() {
13641364
Value: []string{
13651365
fmt.Sprintf("goto %s", fwChain),
13661366
},
1367-
Comment: &svcPortNameString,
13681367
})
13691368
}
13701369
}

0 commit comments

Comments
 (0)