gin/auth.go

104 lines
3.1 KiB
Go
Raw Normal View History

2014-08-29 17:49:50 +00:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
2014-06-17 23:42:34 +00:00
package gin
import (
"crypto/subtle"
"encoding/base64"
"errors"
"fmt"
2015-03-23 04:50:10 +00:00
"log"
2014-06-17 23:42:34 +00:00
"sort"
)
const (
AuthUserKey = "user"
)
2014-06-17 23:42:34 +00:00
type (
2014-07-04 02:28:25 +00:00
Accounts map[string]string
2014-10-08 23:40:42 +00:00
authPair struct {
Value string
User string
}
authPairs []authPair
2014-06-17 23:42:34 +00:00
)
2014-10-08 23:40:42 +00:00
func (a authPairs) Len() int { return len(a) }
func (a authPairs) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a authPairs) Less(i, j int) bool { return a[i].Value < a[j].Value }
// Implements a basic Basic HTTP Authorization. It takes as arguments a map[string]string where
// the key is the user name and the value is the password, as well as the name of the Realm
// (see http://tools.ietf.org/html/rfc2617#section-1.2)
func BasicAuthForRealm(accounts Accounts, realm string) HandlerFunc {
2015-03-23 03:38:32 +00:00
pairs := processAccounts(accounts)
2014-10-08 23:40:42 +00:00
return func(c *Context) {
// Search user in the slice of allowed credentials
user, ok := searchCredential(pairs, c.Request.Header.Get("Authorization"))
if !ok {
// Credentials doesn't match, we return 401 Unauthorized and abort request.
if realm == "" {
realm = "Authorization Required"
}
c.Writer.Header().Set("WWW-Authenticate", fmt.Sprintf("Basic realm=\"%s\"", realm))
2014-10-08 23:40:42 +00:00
c.Fail(401, errors.New("Unauthorized"))
} else {
// user is allowed, set UserId to key "user" in this context, the userId can be read later using
// c.Get(gin.AuthUserKey)
c.Set(AuthUserKey, user)
}
}
}
2014-06-17 23:42:34 +00:00
// Implements a basic Basic HTTP Authorization. It takes as argument a map[string]string where
// the key is the user name and the value is the password.
func BasicAuth(accounts Accounts) HandlerFunc {
return BasicAuthForRealm(accounts, "")
}
2015-03-23 03:38:32 +00:00
func processAccounts(accounts Accounts) authPairs {
2014-06-17 23:42:34 +00:00
if len(accounts) == 0 {
2015-03-23 04:50:10 +00:00
log.Panic("Empty list of authorized credentials")
2014-06-17 23:42:34 +00:00
}
2014-10-08 23:40:42 +00:00
pairs := make(authPairs, 0, len(accounts))
2014-07-04 02:28:25 +00:00
for user, password := range accounts {
2014-10-08 23:40:42 +00:00
if len(user) == 0 {
2015-03-23 04:50:10 +00:00
log.Panic("User can not be empty")
2014-06-17 23:42:34 +00:00
}
2014-07-04 02:28:25 +00:00
base := user + ":" + password
2014-10-08 23:40:42 +00:00
value := "Basic " + base64.StdEncoding.EncodeToString([]byte(base))
pairs = append(pairs, authPair{
Value: value,
User: user,
})
2014-06-17 23:42:34 +00:00
}
// We have to sort the credentials in order to use bsearch later.
sort.Sort(pairs)
2015-03-23 03:38:32 +00:00
return pairs
2014-06-17 23:42:34 +00:00
}
2014-10-08 23:40:42 +00:00
func searchCredential(pairs authPairs, auth string) (string, bool) {
2014-06-17 23:42:34 +00:00
if len(auth) == 0 {
2014-10-08 23:40:42 +00:00
return "", false
2014-06-17 23:42:34 +00:00
}
// Search user in the slice of allowed credentials
2014-10-08 23:40:42 +00:00
r := sort.Search(len(pairs), func(i int) bool { return pairs[i].Value >= auth })
if r < len(pairs) && secureCompare(pairs[r].Value, auth) {
return pairs[r].User, true
2014-06-17 23:42:34 +00:00
} else {
2014-10-08 23:40:42 +00:00
return "", false
2014-06-17 23:42:34 +00:00
}
}
2014-10-08 23:40:42 +00:00
func secureCompare(given, actual string) bool {
if subtle.ConstantTimeEq(int32(len(given)), int32(len(actual))) == 1 {
return subtle.ConstantTimeCompare([]byte(given), []byte(actual)) == 1
} else {
/* Securely compare actual to itself to keep constant time, but always return false */
return subtle.ConstantTimeCompare([]byte(actual), []byte(actual)) == 1 && false
2014-06-17 23:42:34 +00:00
}
}