mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #187 from skx/master
Allow whitelisting by CIDR range, not just literally.
This commit is contained in:
commit
1e78b8bc28
|
@ -4,6 +4,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
|
"regexp"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/chrislusf/seaweedfs/go/glog"
|
"github.com/chrislusf/seaweedfs/go/glog"
|
||||||
|
@ -88,6 +89,26 @@ func (g *Guard) checkWhiteList(w http.ResponseWriter, r *http.Request) error {
|
||||||
host, _, err := net.SplitHostPort(r.RemoteAddr)
|
host, _, err := net.SplitHostPort(r.RemoteAddr)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
for _, ip := range g.whiteList {
|
for _, ip := range g.whiteList {
|
||||||
|
|
||||||
|
// If the whitelist entry contains a "/" it
|
||||||
|
// is a CIDR range, and we should check the
|
||||||
|
// remote host is within it
|
||||||
|
match, _ := regexp.MatchString("/", ip)
|
||||||
|
if ( match ) {
|
||||||
|
_, cidrnet, err := net.ParseCIDR(ip)
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
remote := net.ParseIP(host)
|
||||||
|
if cidrnet.Contains(remote) {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// Otherwise we're looking for a literal match.
|
||||||
|
//
|
||||||
if ip == host {
|
if ip == host {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue