Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
95cde4fb
Commit
95cde4fb
authored
Feb 16, 2018
by
Zihong Zheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[kube-proxy] Harden change tracker and proxiers for unmatched IP versions
parent
2ae45e9f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
4 deletions
+39
-4
endpoints.go
pkg/proxy/endpoints.go
+8
-0
proxier.go
pkg/proxy/iptables/proxier.go
+2
-0
proxier.go
pkg/proxy/ipvs/proxier.go
+2
-0
service.go
pkg/proxy/service.go
+27
-4
No files found.
pkg/proxy/endpoints.go
View file @
95cde4fb
...
...
@@ -29,6 +29,7 @@ import (
"k8s.io/client-go/tools/record"
api
"k8s.io/kubernetes/pkg/apis/core"
utilproxy
"k8s.io/kubernetes/pkg/proxy/util"
utilnet
"k8s.io/kubernetes/pkg/util/net"
)
// EndpointInfoCommon contains common endpoint information.
...
...
@@ -206,6 +207,13 @@ func (ect *EndpointChangeTracker) endpointsToEndpointsMap(endpoints *api.Endpoin
glog
.
Warningf
(
"ignoring invalid endpoint port %s with empty host"
,
port
.
Name
)
continue
}
// Filter out the incorrect IP version case.
if
ect
.
isIPv6Mode
!=
nil
&&
utilnet
.
IsIPv6String
(
addr
.
IP
)
!=
*
ect
.
isIPv6Mode
{
// Emit event on the corresponding service which had a different
// IP version than the endpoint.
utilproxy
.
LogAndEmitIncorrectIPVersionEvent
(
ect
.
recorder
,
"endpoints"
,
addr
.
IP
,
endpoints
.
Name
,
endpoints
.
Namespace
,
""
)
continue
}
isLocal
:=
addr
.
NodeName
!=
nil
&&
*
addr
.
NodeName
==
ect
.
hostname
epInfoCommon
:=
newEndpointInfoCommon
(
addr
.
IP
,
int
(
port
.
Port
),
isLocal
)
if
ect
.
customizeEndpointInfo
!=
nil
{
...
...
pkg/proxy/iptables/proxier.go
View file @
95cde4fb
...
...
@@ -309,6 +309,8 @@ func NewProxier(ipt utiliptables.Interface,
if
len
(
clusterCIDR
)
==
0
{
glog
.
Warningf
(
"clusterCIDR not specified, unable to distinguish between internal and external traffic"
)
}
else
if
utilnet
.
IsIPv6CIDR
(
clusterCIDR
)
!=
ipt
.
IsIpv6
()
{
return
nil
,
fmt
.
Errorf
(
"clusterCIDR %s has incorrect IP version: expect isIPv6=%t"
,
clusterCIDR
,
ipt
.
IsIpv6
())
}
healthChecker
:=
healthcheck
.
NewServer
(
hostname
,
recorder
,
nil
,
nil
)
// use default implementations of deps
...
...
pkg/proxy/ipvs/proxier.go
View file @
95cde4fb
...
...
@@ -296,6 +296,8 @@ func NewProxier(ipt utiliptables.Interface,
if
len
(
clusterCIDR
)
==
0
{
glog
.
Warningf
(
"clusterCIDR not specified, unable to distinguish between internal and external traffic"
)
}
else
if
utilnet
.
IsIPv6CIDR
(
clusterCIDR
)
!=
isIPv6
{
return
nil
,
fmt
.
Errorf
(
"clusterCIDR %s has incorrect IP version: expect isIPv6=%t"
,
clusterCIDR
,
isIPv6
)
}
if
len
(
scheduler
)
==
0
{
...
...
pkg/proxy/service.go
View file @
95cde4fb
...
...
@@ -20,6 +20,7 @@ import (
"fmt"
"net"
"reflect"
"strings"
"sync"
"github.com/golang/glog"
...
...
@@ -31,6 +32,7 @@ import (
api
"k8s.io/kubernetes/pkg/apis/core"
"k8s.io/kubernetes/pkg/apis/core/helper"
utilproxy
"k8s.io/kubernetes/pkg/proxy/util"
utilnet
"k8s.io/kubernetes/pkg/util/net"
)
// ServiceInfoCommon contains common service information.
...
...
@@ -92,10 +94,23 @@ func (sct *ServiceChangeTracker) newServiceInfoCommon(port *api.ServicePort, ser
OnlyNodeLocalEndpoints
:
onlyNodeLocalEndpoints
,
}
info
.
ExternalIPs
=
make
([]
string
,
len
(
service
.
Spec
.
ExternalIPs
))
info
.
LoadBalancerSourceRanges
=
make
([]
string
,
len
(
service
.
Spec
.
LoadBalancerSourceRanges
))
copy
(
info
.
LoadBalancerSourceRanges
,
service
.
Spec
.
LoadBalancerSourceRanges
)
copy
(
info
.
ExternalIPs
,
service
.
Spec
.
ExternalIPs
)
if
sct
.
isIPv6Mode
==
nil
{
info
.
ExternalIPs
=
make
([]
string
,
len
(
service
.
Spec
.
ExternalIPs
))
info
.
LoadBalancerSourceRanges
=
make
([]
string
,
len
(
service
.
Spec
.
LoadBalancerSourceRanges
))
copy
(
info
.
LoadBalancerSourceRanges
,
service
.
Spec
.
LoadBalancerSourceRanges
)
copy
(
info
.
ExternalIPs
,
service
.
Spec
.
ExternalIPs
)
}
else
{
// Filter out the incorrect IP version case.
var
incorrectIPs
[]
string
info
.
ExternalIPs
,
incorrectIPs
=
utilnet
.
FilterIncorrectIPVersion
(
service
.
Spec
.
ExternalIPs
,
*
sct
.
isIPv6Mode
)
if
len
(
incorrectIPs
)
>
0
{
utilproxy
.
LogAndEmitIncorrectIPVersionEvent
(
sct
.
recorder
,
"externalIPs"
,
strings
.
Join
(
incorrectIPs
,
","
),
service
.
Namespace
,
service
.
Name
,
service
.
UID
)
}
info
.
LoadBalancerSourceRanges
,
incorrectIPs
=
utilnet
.
FilterIncorrectCIDRVersion
(
service
.
Spec
.
LoadBalancerSourceRanges
,
*
sct
.
isIPv6Mode
)
if
len
(
incorrectIPs
)
>
0
{
utilproxy
.
LogAndEmitIncorrectIPVersionEvent
(
sct
.
recorder
,
"loadBalancerSourceRanges"
,
strings
.
Join
(
incorrectIPs
,
","
),
service
.
Namespace
,
service
.
Name
,
service
.
UID
)
}
}
if
apiservice
.
NeedsHealthCheck
(
service
)
{
p
:=
service
.
Spec
.
HealthCheckNodePort
...
...
@@ -221,6 +236,14 @@ func (sct *ServiceChangeTracker) serviceToServiceMap(service *api.Service) Servi
return
nil
}
if
len
(
service
.
Spec
.
ClusterIP
)
!=
0
{
// Filter out the incorrect IP version case.
if
sct
.
isIPv6Mode
!=
nil
&&
utilnet
.
IsIPv6String
(
service
.
Spec
.
ClusterIP
)
!=
*
sct
.
isIPv6Mode
{
utilproxy
.
LogAndEmitIncorrectIPVersionEvent
(
sct
.
recorder
,
"clusterIP"
,
service
.
Spec
.
ClusterIP
,
service
.
Namespace
,
service
.
Name
,
service
.
UID
)
return
nil
}
}
serviceMap
:=
make
(
ServiceMap
)
for
i
:=
range
service
.
Spec
.
Ports
{
servicePort
:=
&
service
.
Spec
.
Ports
[
i
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment