2016-06-06 18:31:40 +00:00
|
|
|
/*
|
2016-09-08 11:02:39 +00:00
|
|
|
Copyright 2016 The Kubernetes Authors.
|
2016-06-06 18:31:40 +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 ipwhitelist
|
|
|
|
|
|
|
|
import (
|
2016-12-15 14:18:06 +00:00
|
|
|
"sort"
|
2016-06-09 22:00:05 +00:00
|
|
|
"strings"
|
2016-06-06 18:31:40 +00:00
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
"github.com/pkg/errors"
|
2017-04-01 14:39:42 +00:00
|
|
|
|
2017-07-16 19:19:59 +00:00
|
|
|
extensions "k8s.io/api/extensions/v1beta1"
|
2017-11-07 22:02:12 +00:00
|
|
|
"k8s.io/ingress-nginx/internal/net"
|
2016-11-16 18:24:26 +00:00
|
|
|
|
2017-11-07 22:02:12 +00:00
|
|
|
"k8s.io/ingress-nginx/internal/ingress/annotations/parser"
|
|
|
|
ing_errors "k8s.io/ingress-nginx/internal/ingress/errors"
|
|
|
|
"k8s.io/ingress-nginx/internal/ingress/resolver"
|
2019-04-02 13:56:12 +00:00
|
|
|
"k8s.io/ingress-nginx/internal/sets"
|
2016-06-06 18:31:40 +00:00
|
|
|
)
|
|
|
|
|
2016-06-09 22:00:05 +00:00
|
|
|
// SourceRange returns the CIDR
|
|
|
|
type SourceRange struct {
|
2018-03-12 10:36:35 +00:00
|
|
|
CIDR []string `json:"cidr,omitempty"`
|
2016-06-06 18:31:40 +00:00
|
|
|
}
|
|
|
|
|
2017-07-27 03:07:59 +00:00
|
|
|
// Equal tests for equality between two SourceRange types
|
2017-06-14 21:33:12 +00:00
|
|
|
func (sr1 *SourceRange) Equal(sr2 *SourceRange) bool {
|
|
|
|
if sr1 == sr2 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if sr1 == nil || sr2 == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-04-02 13:56:12 +00:00
|
|
|
match := sets.StringElementsMatch(sr1.CIDR, sr2.CIDR)
|
|
|
|
if !match {
|
2017-06-14 23:40:25 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-06-14 21:33:12 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
type ipwhitelist struct {
|
2017-11-08 20:58:57 +00:00
|
|
|
r resolver.Resolver
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewParser creates a new whitelist annotation parser
|
2017-11-08 20:58:57 +00:00
|
|
|
func NewParser(r resolver.Resolver) parser.IngressAnnotation {
|
|
|
|
return ipwhitelist{r}
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
// ParseAnnotations parses the annotations contained in the ingress
|
|
|
|
// rule used to limit access to certain client addresses or networks.
|
|
|
|
// Multiple ranges can specified using commas as separator
|
|
|
|
// e.g. `18.0.0.0/8,56.0.0.0/8`
|
2016-12-29 20:02:06 +00:00
|
|
|
func (a ipwhitelist) Parse(ing *extensions.Ingress) (interface{}, error) {
|
2017-11-08 20:58:57 +00:00
|
|
|
defBackend := a.r.GetDefaultBackend()
|
2016-12-29 20:02:06 +00:00
|
|
|
sort.Strings(defBackend.WhitelistSourceRange)
|
2016-11-10 22:56:29 +00:00
|
|
|
|
2017-11-23 16:46:23 +00:00
|
|
|
val, err := parser.GetStringAnnotation("whitelist-source-range", ing)
|
2017-03-28 18:20:49 +00:00
|
|
|
// A missing annotation is not a problem, just use the default
|
|
|
|
if err == ing_errors.ErrMissingAnnotations {
|
|
|
|
return &SourceRange{CIDR: defBackend.WhitelistSourceRange}, nil
|
2016-06-06 18:31:40 +00:00
|
|
|
}
|
|
|
|
|
2016-06-09 22:00:05 +00:00
|
|
|
values := strings.Split(val, ",")
|
2017-08-09 13:03:26 +00:00
|
|
|
ipnets, ips, err := net.ParseIPNets(values...)
|
|
|
|
if err != nil && len(ips) == 0 {
|
2016-12-29 20:02:06 +00:00
|
|
|
return &SourceRange{CIDR: defBackend.WhitelistSourceRange}, ing_errors.LocationDenied{
|
2017-04-03 10:22:08 +00:00
|
|
|
Reason: errors.Wrap(err, "the annotation does not contain a valid IP address or network"),
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
2016-06-06 18:31:40 +00:00
|
|
|
}
|
|
|
|
|
2016-12-15 14:18:06 +00:00
|
|
|
cidrs := []string{}
|
2016-06-09 22:00:05 +00:00
|
|
|
for k := range ipnets {
|
|
|
|
cidrs = append(cidrs, k)
|
2016-06-06 18:31:40 +00:00
|
|
|
}
|
2017-08-09 13:03:26 +00:00
|
|
|
for k := range ips {
|
|
|
|
cidrs = append(cidrs, k)
|
|
|
|
}
|
2016-06-06 18:31:40 +00:00
|
|
|
|
2016-12-15 14:18:06 +00:00
|
|
|
sort.Strings(cidrs)
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
return &SourceRange{cidrs}, nil
|
2016-06-06 18:31:40 +00:00
|
|
|
}
|