2015-06-11 02:40:05 +00:00
|
|
|
// Package htpasswd provides a simple authentication scheme that checks for the
|
2015-04-21 19:57:12 +00:00
|
|
|
// user credential hash in an htpasswd formatted file in a configuration-determined
|
|
|
|
// location.
|
|
|
|
//
|
|
|
|
// This authentication method MUST be used under TLS, as simple token-replay attack is possible.
|
2015-06-11 02:40:05 +00:00
|
|
|
package htpasswd
|
2015-04-21 19:57:12 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2015-06-11 02:29:27 +00:00
|
|
|
"os"
|
2016-08-26 05:18:34 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
2015-04-21 19:57:12 +00:00
|
|
|
|
2015-07-24 02:48:47 +00:00
|
|
|
"github.com/docker/distribution/context"
|
2015-04-21 19:57:12 +00:00
|
|
|
"github.com/docker/distribution/registry/auth"
|
|
|
|
)
|
|
|
|
|
|
|
|
type accessController struct {
|
|
|
|
realm string
|
2016-08-26 05:18:34 +00:00
|
|
|
path string
|
|
|
|
modtime time.Time
|
|
|
|
mu sync.Mutex
|
2015-06-06 05:37:32 +00:00
|
|
|
htpasswd *htpasswd
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ auth.AccessController = &accessController{}
|
|
|
|
|
|
|
|
func newAccessController(options map[string]interface{}) (auth.AccessController, error) {
|
|
|
|
realm, present := options["realm"]
|
|
|
|
if _, ok := realm.(string); !present || !ok {
|
2015-06-11 02:40:05 +00:00
|
|
|
return nil, fmt.Errorf(`"realm" must be set for htpasswd access controller`)
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
path, present := options["path"]
|
|
|
|
if _, ok := path.(string); !present || !ok {
|
2015-06-11 02:40:05 +00:00
|
|
|
return nil, fmt.Errorf(`"path" must be set for htpasswd access controller`)
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|
|
|
|
|
2016-08-26 05:18:34 +00:00
|
|
|
return &accessController{realm: realm.(string), path: path.(string)}, nil
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ac *accessController) Authorized(ctx context.Context, accessRecords ...auth.Access) (context.Context, error) {
|
2015-07-24 02:48:47 +00:00
|
|
|
req, err := context.GetRequest(ctx)
|
2015-04-21 19:57:12 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-06-09 01:56:48 +00:00
|
|
|
username, password, ok := req.BasicAuth()
|
|
|
|
if !ok {
|
|
|
|
return nil, &challenge{
|
2015-04-21 19:57:12 +00:00
|
|
|
realm: ac.realm,
|
2016-02-13 01:15:19 +00:00
|
|
|
err: auth.ErrInvalidCredential,
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-04 16:02:13 +00:00
|
|
|
|
2016-08-26 05:18:34 +00:00
|
|
|
// Dynamically parsing the latest account list
|
|
|
|
fstat, err := os.Stat(ac.path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
lastModified := fstat.ModTime()
|
|
|
|
ac.mu.Lock()
|
|
|
|
if ac.htpasswd == nil || !ac.modtime.Equal(lastModified) {
|
|
|
|
ac.modtime = lastModified
|
|
|
|
|
|
|
|
f, err := os.Open(ac.path)
|
|
|
|
if err != nil {
|
|
|
|
ac.mu.Unlock()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
h, err := newHTPasswd(f)
|
|
|
|
if err != nil {
|
|
|
|
ac.mu.Unlock()
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ac.htpasswd = h
|
|
|
|
}
|
|
|
|
localHTPasswd := ac.htpasswd
|
|
|
|
ac.mu.Unlock()
|
|
|
|
|
|
|
|
if err := localHTPasswd.authenticateUser(username, password); err != nil {
|
2015-07-24 02:48:47 +00:00
|
|
|
context.GetLogger(ctx).Errorf("error authenticating user %q: %v", username, err)
|
2015-06-09 01:56:48 +00:00
|
|
|
return nil, &challenge{
|
2015-06-04 15:46:34 +00:00
|
|
|
realm: ac.realm,
|
2016-02-13 01:15:19 +00:00
|
|
|
err: auth.ErrAuthenticationFailure,
|
2015-06-04 15:46:34 +00:00
|
|
|
}
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|
|
|
|
|
2015-06-09 01:56:48 +00:00
|
|
|
return auth.WithUser(ctx, auth.UserInfo{Name: username}), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// challenge implements the auth.Challenge interface.
|
|
|
|
type challenge struct {
|
|
|
|
realm string
|
|
|
|
err error
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|
|
|
|
|
2015-07-24 02:39:56 +00:00
|
|
|
var _ auth.Challenge = challenge{}
|
|
|
|
|
|
|
|
// SetHeaders sets the basic challenge header on the response.
|
|
|
|
func (ch challenge) SetHeaders(w http.ResponseWriter) {
|
|
|
|
w.Header().Set("WWW-Authenticate", fmt.Sprintf("Basic realm=%q", ch.realm))
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|
|
|
|
|
2015-07-24 02:39:56 +00:00
|
|
|
func (ch challenge) Error() string {
|
2015-11-07 01:10:28 +00:00
|
|
|
return fmt.Sprintf("basic authentication challenge for realm %q: %s", ch.realm, ch.err)
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2015-06-11 02:40:05 +00:00
|
|
|
auth.Register("htpasswd", auth.InitFunc(newAccessController))
|
2015-04-21 19:57:12 +00:00
|
|
|
}
|