You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
2.6 KiB

10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
  1. package security
  2. import (
  3. "errors"
  4. "fmt"
  5. "net"
  6. "net/http"
  7. "strings"
  8. "github.com/chrislusf/seaweedfs/weed/glog"
  9. )
  10. var (
  11. ErrUnauthorized = errors.New("unauthorized token")
  12. )
  13. /*
  14. Guard is to ensure data access security.
  15. There are 2 ways to check access:
  16. 1. white list. It's checking request ip address.
  17. 2. JSON Web Token(JWT) generated from secretKey.
  18. The jwt can come from:
  19. 1. url parameter jwt=...
  20. 2. request header "Authorization"
  21. 3. cookie with the name "jwt"
  22. The white list is checked first because it is easy.
  23. Then the JWT is checked.
  24. The Guard will also check these claims if provided:
  25. 1. "exp" Expiration Time
  26. 2. "nbf" Not Before
  27. Generating JWT:
  28. 1. use HS256 to sign
  29. 2. optionally set "exp", "nbf" fields, in Unix time,
  30. the number of seconds elapsed since January 1, 1970 UTC.
  31. Referenced:
  32. https://github.com/pkieltyka/jwtauth/blob/master/jwtauth.go
  33. */
  34. type Guard struct {
  35. whiteList []string
  36. SigningKey SigningKey
  37. isActive bool
  38. }
  39. func NewGuard(whiteList []string, signingKey string) *Guard {
  40. g := &Guard{whiteList: whiteList, SigningKey: SigningKey(signingKey)}
  41. g.isActive = len(g.whiteList) != 0 || len(g.SigningKey) != 0
  42. return g
  43. }
  44. func (g *Guard) WhiteList(f func(w http.ResponseWriter, r *http.Request)) func(w http.ResponseWriter, r *http.Request) {
  45. if !g.isActive {
  46. //if no security needed, just skip all checking
  47. return f
  48. }
  49. return func(w http.ResponseWriter, r *http.Request) {
  50. if err := g.checkWhiteList(w, r); err != nil {
  51. w.WriteHeader(http.StatusUnauthorized)
  52. return
  53. }
  54. f(w, r)
  55. }
  56. }
  57. func GetActualRemoteHost(r *http.Request) (host string, err error) {
  58. host = r.Header.Get("HTTP_X_FORWARDED_FOR")
  59. if host == "" {
  60. host = r.Header.Get("X-FORWARDED-FOR")
  61. }
  62. if strings.Contains(host, ",") {
  63. host = host[0:strings.Index(host, ",")]
  64. }
  65. if host == "" {
  66. host, _, err = net.SplitHostPort(r.RemoteAddr)
  67. }
  68. return
  69. }
  70. func (g *Guard) checkWhiteList(w http.ResponseWriter, r *http.Request) error {
  71. if len(g.whiteList) == 0 {
  72. return nil
  73. }
  74. host, err := GetActualRemoteHost(r)
  75. if err == nil {
  76. for _, ip := range g.whiteList {
  77. // If the whitelist entry contains a "/" it
  78. // is a CIDR range, and we should check the
  79. // remote host is within it
  80. if strings.Contains(ip, "/") {
  81. _, cidrnet, err := net.ParseCIDR(ip)
  82. if err != nil {
  83. panic(err)
  84. }
  85. remote := net.ParseIP(host)
  86. if cidrnet.Contains(remote) {
  87. return nil
  88. }
  89. }
  90. //
  91. // Otherwise we're looking for a literal match.
  92. //
  93. if ip == host {
  94. return nil
  95. }
  96. }
  97. }
  98. glog.V(0).Infof("Not in whitelist: %s", r.RemoteAddr)
  99. return fmt.Errorf("Not in whitelis: %s", r.RemoteAddr)
  100. }