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.

149 lines
3.3 KiB

9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. package security
  2. import (
  3. "errors"
  4. "fmt"
  5. "net"
  6. "net/http"
  7. "regexp"
  8. "github.com/chrislusf/seaweedfs/go/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. SecretKey Secret
  37. isActive bool
  38. }
  39. func NewGuard(whiteList []string, secretKey string) *Guard {
  40. g := &Guard{whiteList: whiteList, SecretKey: Secret(secretKey)}
  41. g.isActive = len(g.whiteList) != 0 || len(g.SecretKey) != 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 checkings
  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 (g *Guard) Secure(f func(w http.ResponseWriter, r *http.Request)) func(w http.ResponseWriter, r *http.Request) {
  58. if !g.isActive {
  59. //if no security needed, just skip all checkings
  60. return f
  61. }
  62. return func(w http.ResponseWriter, r *http.Request) {
  63. if err := g.checkJwt(w, r); err != nil {
  64. w.WriteHeader(http.StatusUnauthorized)
  65. return
  66. }
  67. f(w, r)
  68. }
  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 := net.SplitHostPort(r.RemoteAddr)
  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. match, _ := regexp.MatchString("/", ip)
  81. if match {
  82. _, cidrnet, err := net.ParseCIDR(ip)
  83. if err != nil {
  84. panic(err)
  85. }
  86. remote := net.ParseIP(host)
  87. if cidrnet.Contains(remote) {
  88. return nil
  89. }
  90. }
  91. //
  92. // Otherwise we're looking for a literal match.
  93. //
  94. if ip == host {
  95. return nil
  96. }
  97. }
  98. }
  99. glog.V(1).Infof("Not in whitelist: %s", r.RemoteAddr)
  100. return fmt.Errorf("Not in whitelis: %s", r.RemoteAddr)
  101. }
  102. func (g *Guard) checkJwt(w http.ResponseWriter, r *http.Request) error {
  103. if g.checkWhiteList(w, r) == nil {
  104. return nil
  105. }
  106. if len(g.SecretKey) == 0 {
  107. return nil
  108. }
  109. tokenStr := GetJwt(r)
  110. if tokenStr == "" {
  111. return ErrUnauthorized
  112. }
  113. // Verify the token
  114. token, err := DecodeJwt(g.SecretKey, tokenStr)
  115. if err != nil {
  116. glog.V(1).Infof("Token verification error from %s: %v", r.RemoteAddr, err)
  117. return ErrUnauthorized
  118. }
  119. if !token.Valid {
  120. glog.V(1).Infof("Token invliad from %s: %v", r.RemoteAddr, tokenStr)
  121. return ErrUnauthorized
  122. }
  123. glog.V(1).Infof("No permission from %s", r.RemoteAddr)
  124. return fmt.Errorf("No write permisson from %s", r.RemoteAddr)
  125. }