Commit 2a1d32e6 authored by bobbyrullo's avatar bobbyrullo

Merge pull request #145 from bobbyrullo/protect_admin_api

Protect admin api
parents 48b3b38c 5e859dad
...@@ -45,17 +45,24 @@ dex needs a 32 byte base64-encoded key which will be used to encrypt the private ...@@ -45,17 +45,24 @@ dex needs a 32 byte base64-encoded key which will be used to encrypt the private
The dex overlord and workers allow multiple key secrets (separated by commas) to be passed but only the first will be used to encrypt data; the rest are there for decryption only; this scheme allows for the rotation of keys without downtime (assuming a rolling restart of workers). The dex overlord and workers allow multiple key secrets (separated by commas) to be passed but only the first will be used to encrypt data; the rest are there for decryption only; this scheme allows for the rotation of keys without downtime (assuming a rolling restart of workers).
# Generate an Admin API Secret
The dex overlord has a an API which is very powerful - you can create Admin users with it, so it needs to be protected somehow. This is accomplished by requiring that a secret is passed via the Authorization header of each request. This secret is 128 bytes base64 encoded, and should be sufficiently random so as to make guessing impractical:
`DEX_OVERLORD_ADMIN_API_SECRET=$(dd if=/dev/random bs=1 count=128 2>/dev/null | base64)`
# Start the overlord # Start the overlord
The overlord is responsible for creating and rotating keys and some other adminsitrative tasks. In addition, the overlord is responsible for creating the necessary database tables (and when you update, performing schema migrations), so it must be started before we do anything else. Debug logging is turned on so we can see more of what's going on. Start it up. The overlord is responsible for creating and rotating keys and some other adminsitrative tasks. In addition, the overlord is responsible for creating the necessary database tables (and when you update, performing schema migrations), so it must be started before we do anything else. Debug logging is turned on so we can see more of what's going on. Start it up.
`./bin/dex-overlord --db-url=$DEX_DB_URL --key-secrets=$DEX_KEY_SECRET --log-debug=true &` `./bin/dex-overlord --admin-api-secret=$DEX_OVERLORD_ADMIN_API_SECRET --db-url=$DEX_DB_URL --key-secrets=$DEX_KEY_SECRET --log-debug=true &`
## Environment Variables. ## Environment Variables.
Note that parameters can be passed as flags or environment variables to dex components; an equivalent start with environment variables would be: Note that parameters can be passed as flags or environment variables to dex components; an equivalent start with environment variables would be:
``` ```
export DEX_OVERLORD_ADMIN_API_SECRET=$DEX_OVERLORD_ADMIN_API_SECRET
export DEX_OVERLORD_DB_URL=$DEX_DB_URL export DEX_OVERLORD_DB_URL=$DEX_DB_URL
export DEX_OVERLORD_KEY_SECRETS=$DEX_KEY_SECRET export DEX_OVERLORD_KEY_SECRETS=$DEX_KEY_SECRET
export DEX_OVERLORD_LOG_DEBUG=true export DEX_OVERLORD_LOG_DEBUG=true
......
...@@ -41,6 +41,9 @@ func main() { ...@@ -41,6 +41,9 @@ func main() {
adminListen := fs.String("admin-listen", "http://127.0.0.1:5557", "scheme, host and port for listening for administrative operation requests ") adminListen := fs.String("admin-listen", "http://127.0.0.1:5557", "scheme, host and port for listening for administrative operation requests ")
adminAPISecret := pflag.NewBase64(server.AdminAPISecretLength)
fs.Var(adminAPISecret, "admin-api-secret", fmt.Sprintf("A base64-encoded %d byte string which is used to protect the Admin API.", server.AdminAPISecretLength))
localConnectorID := fs.String("local-connector", "local", "ID of the local connector") localConnectorID := fs.String("local-connector", "local", "ID of the local connector")
logDebug := fs.Bool("log-debug", false, "log debug-level information") logDebug := fs.Bool("log-debug", false, "log debug-level information")
logTimestamps := fs.Bool("log-timestamps", false, "prefix log lines with timestamps") logTimestamps := fs.Bool("log-timestamps", false, "prefix log lines with timestamps")
...@@ -124,7 +127,7 @@ func main() { ...@@ -124,7 +127,7 @@ func main() {
} }
krot := key.NewPrivateKeyRotator(kRepo, *keyPeriod) krot := key.NewPrivateKeyRotator(kRepo, *keyPeriod)
s := server.NewAdminServer(adminAPI, krot) s := server.NewAdminServer(adminAPI, krot, adminAPISecret.String())
h := s.HTTPHandler() h := s.HTTPHandler()
httpsrv := &http.Server{ httpsrv := &http.Server{
Addr: adminURL.Host, Addr: adminURL.Host,
......
...@@ -31,6 +31,7 @@ DEX_KEY_SECRET=$(dd if=/dev/random bs=1 count=32 2>/dev/null | base64) ...@@ -31,6 +31,7 @@ DEX_KEY_SECRET=$(dd if=/dev/random bs=1 count=32 2>/dev/null | base64)
export DEX_OVERLORD_DB_URL=$DEX_DB_URL export DEX_OVERLORD_DB_URL=$DEX_DB_URL
export DEX_OVERLORD_KEY_SECRETS=$DEX_KEY_SECRET export DEX_OVERLORD_KEY_SECRETS=$DEX_KEY_SECRET
export DEX_OVERLORD_KEY_PERIOD=1h export DEX_OVERLORD_KEY_PERIOD=1h
export DEX_OVERLORD_ADMIN_API_SECRET=$(dd if=/dev/random bs=1 count=128 2>/dev/null | base64)
./bin/dex-overlord & ./bin/dex-overlord &
echo "Waiting for overlord to start..." echo "Waiting for overlord to start..."
until $(curl --output /dev/null --silent --fail http://localhost:5557/health); do until $(curl --output /dev/null --silent --fail http://localhost:5557/health); do
...@@ -79,5 +80,5 @@ done ...@@ -79,5 +80,5 @@ done
./bin/example-app --client-id=$DEX_APP_CLIENT_ID --client-secret=$DEX_APP_CLIENT_SECRET --discovery=http://127.0.0.1:5556 & ./bin/example-app --client-id=$DEX_APP_CLIENT_ID --client-secret=$DEX_APP_CLIENT_SECRET --discovery=http://127.0.0.1:5556 &
# Create Admin User - the password is a hash of the word "password" # Create Admin User - the password is a hash of the word "password"
curl -X POST --data '{"email":"admin@example.com","password":"$2a$04$J54iz31fhYfXIRVglUMmpufY6TKf/vvwc9pv8zWog7X/LFrFfkNQe" }' http://127.0.0.1:5557/api/v1/admin curl -X POST --data '{"email":"admin@example.com","password":"$2a$04$J54iz31fhYfXIRVglUMmpufY6TKf/vvwc9pv8zWog7X/LFrFfkNQe" }' --header "Authorization: $DEX_OVERLORD_ADMIN_API_SECRET" http://127.0.0.1:5557/api/v1/admin
...@@ -14,6 +14,10 @@ import ( ...@@ -14,6 +14,10 @@ import (
"github.com/coreos/dex/user" "github.com/coreos/dex/user"
) )
const (
adminAPITestSecret = "admin_secret"
)
type adminAPITestFixtures struct { type adminAPITestFixtures struct {
ur user.UserRepo ur user.UserRepo
pwr user.PasswordInfoRepo pwr user.PasswordInfoRepo
...@@ -58,6 +62,15 @@ var ( ...@@ -58,6 +62,15 @@ var (
} }
) )
type adminAPITransport struct {
secret string
}
func (a *adminAPITransport) RoundTrip(r *http.Request) (*http.Response, error) {
r.Header.Set("Authorization", a.secret)
return http.DefaultTransport.RoundTrip(r)
}
func makeAdminAPITestFixtures() *adminAPITestFixtures { func makeAdminAPITestFixtures() *adminAPITestFixtures {
f := &adminAPITestFixtures{} f := &adminAPITestFixtures{}
...@@ -65,9 +78,13 @@ func makeAdminAPITestFixtures() *adminAPITestFixtures { ...@@ -65,9 +78,13 @@ func makeAdminAPITestFixtures() *adminAPITestFixtures {
f.ur = ur f.ur = ur
f.pwr = pwr f.pwr = pwr
f.adAPI = admin.NewAdminAPI(um, f.ur, f.pwr, "local") f.adAPI = admin.NewAdminAPI(um, f.ur, f.pwr, "local")
f.adSrv = server.NewAdminServer(f.adAPI, nil) f.adSrv = server.NewAdminServer(f.adAPI, nil, adminAPITestSecret)
f.hSrv = httptest.NewServer(f.adSrv.HTTPHandler()) f.hSrv = httptest.NewServer(f.adSrv.HTTPHandler())
f.hc = &http.Client{} f.hc = &http.Client{
Transport: &adminAPITransport{
secret: adminAPITestSecret,
},
}
f.adClient, _ = adminschema.NewWithBasePath(f.hc, f.hSrv.URL) f.adClient, _ = adminschema.NewWithBasePath(f.hc, f.hSrv.URL)
return f return f
...@@ -129,6 +146,7 @@ func TestCreateAdmin(t *testing.T) { ...@@ -129,6 +146,7 @@ func TestCreateAdmin(t *testing.T) {
tests := []struct { tests := []struct {
admn *adminschema.Admin admn *adminschema.Admin
errCode int errCode int
secret string
}{ }{
{ {
admn: &adminschema.Admin{ admn: &adminschema.Admin{
...@@ -137,6 +155,14 @@ func TestCreateAdmin(t *testing.T) { ...@@ -137,6 +155,14 @@ func TestCreateAdmin(t *testing.T) {
}, },
errCode: -1, errCode: -1,
}, },
{
admn: &adminschema.Admin{
Email: "foo@example.com",
Password: "foopass",
},
errCode: http.StatusUnauthorized,
secret: "bad_secret",
},
{ {
// duplicate Email // duplicate Email
admn: &adminschema.Admin{ admn: &adminschema.Admin{
...@@ -156,6 +182,11 @@ func TestCreateAdmin(t *testing.T) { ...@@ -156,6 +182,11 @@ func TestCreateAdmin(t *testing.T) {
for i, tt := range tests { for i, tt := range tests {
func() { func() {
f := makeAdminAPITestFixtures() f := makeAdminAPITestFixtures()
if tt.secret != "" {
f.hc.Transport = &adminAPITransport{
secret: tt.secret,
}
}
defer f.close() defer f.close()
admn, err := f.adClient.Admin.Create(tt.admn).Do() admn, err := f.adClient.Admin.Create(tt.admn).Do()
......
...@@ -16,6 +16,7 @@ import ( ...@@ -16,6 +16,7 @@ import (
const ( const (
AdminAPIVersion = "v1" AdminAPIVersion = "v1"
AdminAPISecretLength = 128
) )
var ( var (
...@@ -28,9 +29,10 @@ var ( ...@@ -28,9 +29,10 @@ var (
type AdminServer struct { type AdminServer struct {
adminAPI *admin.AdminAPI adminAPI *admin.AdminAPI
checker health.Checker checker health.Checker
secret string
} }
func NewAdminServer(adminAPI *admin.AdminAPI, rotator *key.PrivateKeyRotator) *AdminServer { func NewAdminServer(adminAPI *admin.AdminAPI, rotator *key.PrivateKeyRotator, secret string) *AdminServer {
return &AdminServer{ return &AdminServer{
adminAPI: adminAPI, adminAPI: adminAPI,
checker: health.Checker{ checker: health.Checker{
...@@ -38,6 +40,7 @@ func NewAdminServer(adminAPI *admin.AdminAPI, rotator *key.PrivateKeyRotator) *A ...@@ -38,6 +40,7 @@ func NewAdminServer(adminAPI *admin.AdminAPI, rotator *key.PrivateKeyRotator) *A
rotator, rotator,
}, },
}, },
secret: secret,
} }
} }
...@@ -48,7 +51,25 @@ func (s *AdminServer) HTTPHandler() http.Handler { ...@@ -48,7 +51,25 @@ func (s *AdminServer) HTTPHandler() http.Handler {
r.GET(AdminGetStateEndpoint, s.getState) r.GET(AdminGetStateEndpoint, s.getState)
r.Handler("GET", httpPathHealth, s.checker) r.Handler("GET", httpPathHealth, s.checker)
r.HandlerFunc("GET", httpPathDebugVars, health.ExpvarHandler) r.HandlerFunc("GET", httpPathDebugVars, health.ExpvarHandler)
return r
return authorizer(r, s.secret, httpPathHealth, httpPathDebugVars)
}
func authorizer(h http.Handler, secret string, public ...string) http.Handler {
publicSet := map[string]struct{}{}
for _, p := range public {
publicSet[p] = struct{}{}
}
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, isPublicPath := publicSet[r.URL.Path]
if !isPublicPath && r.Header.Get("Authorization") != secret {
writeAPIError(w, http.StatusUnauthorized, newAPIError(errorAccessDenied, ""))
return
}
h.ServeHTTP(w, r)
})
} }
func (s *AdminServer) getAdmin(w http.ResponseWriter, r *http.Request, ps httprouter.Params) { func (s *AdminServer) getAdmin(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment