2016-03-01 01:56:39 +00:00
/ *
2016-06-03 00:25:58 +00:00
Copyright 2016 The Kubernetes Authors .
2016-03-01 01:56:39 +00:00
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 service
import (
"fmt"
2017-11-08 22:34:54 +00:00
"strings"
2019-02-02 07:01:21 +00:00
api "k8s.io/kubernetes/pkg/apis/core"
utilnet "k8s.io/utils/net"
2016-03-01 01:56:39 +00:00
)
const (
defaultLoadBalancerSourceRanges = "0.0.0.0/0"
)
2019-02-02 07:01:21 +00:00
// IsAllowAll checks whether the utilnet.IPNet allows traffic from 0.0.0.0/0
func IsAllowAll ( ipnets utilnet . IPNetSet ) bool {
2016-03-01 01:56:39 +00:00
for _ , s := range ipnets . StringSlice ( ) {
if s == "0.0.0.0/0" {
return true
}
}
return false
}
2016-05-17 23:55:04 +00:00
// GetLoadBalancerSourceRanges first try to parse and verify LoadBalancerSourceRanges field from a service.
2016-05-18 19:39:56 +00:00
// If the field is not specified, turn to parse and verify the AnnotationLoadBalancerSourceRangesKey annotation from a service,
2016-03-01 01:56:39 +00:00
// extracting the source ranges to allow, and if not present returns a default (allow-all) value.
2019-02-02 07:01:21 +00:00
func GetLoadBalancerSourceRanges ( service * api . Service ) ( utilnet . IPNetSet , error ) {
var ipnets utilnet . IPNetSet
2016-05-17 23:55:04 +00:00
var err error
// if SourceRange field is specified, ignore sourceRange annotation
if len ( service . Spec . LoadBalancerSourceRanges ) > 0 {
specs := service . Spec . LoadBalancerSourceRanges
2019-02-02 07:01:21 +00:00
ipnets , err = utilnet . ParseIPNets ( specs ... )
2016-05-17 23:55:04 +00:00
if err != nil {
return nil , fmt . Errorf ( "service.Spec.LoadBalancerSourceRanges: %v is not valid. Expecting a list of IP ranges. For example, 10.0.0.0/24. Error msg: %v" , specs , err )
}
} else {
2017-05-16 22:30:29 +00:00
val := service . Annotations [ api . AnnotationLoadBalancerSourceRangesKey ]
2016-05-17 23:55:04 +00:00
val = strings . TrimSpace ( val )
if val == "" {
val = defaultLoadBalancerSourceRanges
}
specs := strings . Split ( val , "," )
2019-02-02 07:01:21 +00:00
ipnets , err = utilnet . ParseIPNets ( specs ... )
2016-05-17 23:55:04 +00:00
if err != nil {
2017-05-16 22:30:29 +00:00
return nil , fmt . Errorf ( "%s: %s is not valid. Expecting a comma-separated list of source IP ranges. For example, 10.0.0.0/24,192.168.2.0/24" , api . AnnotationLoadBalancerSourceRangesKey , val )
2016-05-17 23:55:04 +00:00
}
2016-03-01 01:56:39 +00:00
}
return ipnets , nil
}
2017-04-17 20:13:59 +00:00
2017-04-17 21:26:02 +00:00
// RequestsOnlyLocalTraffic checks if service requests OnlyLocal traffic.
func RequestsOnlyLocalTraffic ( service * api . Service ) bool {
if service . Spec . Type != api . ServiceTypeLoadBalancer &&
service . Spec . Type != api . ServiceTypeNodePort {
return false
}
2017-05-12 17:56:42 +00:00
return service . Spec . ExternalTrafficPolicy == api . ServiceExternalTrafficPolicyTypeLocal
2017-04-17 20:13:59 +00:00
}
2017-08-09 05:50:00 +00:00
// NeedsHealthCheck checks if service needs health check.
2017-04-17 21:26:02 +00:00
func NeedsHealthCheck ( service * api . Service ) bool {
if service . Spec . Type != api . ServiceTypeLoadBalancer {
return false
}
return RequestsOnlyLocalTraffic ( service )
}