2018-02-05 16:05:59 -05:00
|
|
|
package distribution // import "github.com/docker/docker/distribution"
|
2015-11-04 00:03:12 -05:00
|
|
|
|
|
|
|
import (
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2015-11-04 00:03:12 -05:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
2016-02-17 19:53:25 -05:00
|
|
|
"net/url"
|
2015-11-04 00:03:12 -05:00
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2017-01-25 19:54:18 -05:00
|
|
|
"github.com/docker/distribution/reference"
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
registrytypes "github.com/docker/docker/api/types/registry"
|
2015-11-04 00:03:12 -05:00
|
|
|
"github.com/docker/docker/registry"
|
2017-07-26 17:42:13 -04:00
|
|
|
"github.com/sirupsen/logrus"
|
2015-11-04 00:03:12 -05:00
|
|
|
)
|
|
|
|
|
2016-01-26 17:14:13 -05:00
|
|
|
const secretRegistryToken = "mysecrettoken"
|
|
|
|
|
|
|
|
type tokenPassThruHandler struct {
|
|
|
|
reached bool
|
|
|
|
gotToken bool
|
|
|
|
shouldSend401 func(url string) bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *tokenPassThruHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
|
|
h.reached = true
|
|
|
|
if strings.Contains(r.Header.Get("Authorization"), secretRegistryToken) {
|
|
|
|
logrus.Debug("Detected registry token in auth header")
|
|
|
|
h.gotToken = true
|
2015-11-04 00:03:12 -05:00
|
|
|
}
|
2016-01-26 17:14:13 -05:00
|
|
|
if h.shouldSend401 == nil || h.shouldSend401(r.RequestURI) {
|
|
|
|
w.Header().Set("WWW-Authenticate", `Bearer realm="foorealm"`)
|
|
|
|
w.WriteHeader(401)
|
2015-11-04 00:03:12 -05:00
|
|
|
}
|
2016-01-26 17:14:13 -05:00
|
|
|
}
|
2015-11-04 00:03:12 -05:00
|
|
|
|
2016-01-26 17:14:13 -05:00
|
|
|
func testTokenPassThru(t *testing.T, ts *httptest.Server) {
|
2016-02-17 19:53:25 -05:00
|
|
|
uri, err := url.Parse(ts.URL)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not parse url from test server: %v", err)
|
|
|
|
}
|
|
|
|
|
2015-11-04 00:03:12 -05:00
|
|
|
endpoint := registry.APIEndpoint{
|
|
|
|
Mirror: false,
|
2016-02-17 19:53:25 -05:00
|
|
|
URL: uri,
|
2015-11-04 00:03:12 -05:00
|
|
|
Version: 2,
|
|
|
|
Official: false,
|
|
|
|
TrimHostname: false,
|
|
|
|
TLSConfig: nil,
|
|
|
|
}
|
2017-01-25 19:54:18 -05:00
|
|
|
n, _ := reference.ParseNormalizedNamed("testremotename")
|
2015-11-04 00:03:12 -05:00
|
|
|
repoInfo := ®istry.RepositoryInfo{
|
2017-01-25 19:54:18 -05:00
|
|
|
Name: n,
|
2015-12-11 21:14:52 -05:00
|
|
|
Index: ®istrytypes.IndexInfo{
|
2015-11-04 00:03:12 -05:00
|
|
|
Name: "testrepo",
|
|
|
|
Mirrors: nil,
|
|
|
|
Secure: false,
|
|
|
|
Official: false,
|
|
|
|
},
|
2015-12-11 14:00:13 -05:00
|
|
|
Official: false,
|
2015-11-04 00:03:12 -05:00
|
|
|
}
|
|
|
|
imagePullConfig := &ImagePullConfig{
|
2016-12-16 14:19:05 -05:00
|
|
|
Config: Config{
|
|
|
|
MetaHeaders: http.Header{},
|
|
|
|
AuthConfig: &types.AuthConfig{
|
|
|
|
RegistryToken: secretRegistryToken,
|
|
|
|
},
|
2016-01-26 17:14:13 -05:00
|
|
|
},
|
2016-12-16 14:19:05 -05:00
|
|
|
Schema2Types: ImageTypes,
|
2015-11-04 00:03:12 -05:00
|
|
|
}
|
2015-11-13 19:59:01 -05:00
|
|
|
puller, err := newPuller(endpoint, repoInfo, imagePullConfig)
|
2015-11-04 00:03:12 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
p := puller.(*v2Puller)
|
2015-12-04 16:42:33 -05:00
|
|
|
ctx := context.Background()
|
|
|
|
p.repo, _, err = NewV2Repository(ctx, p.repoInfo, p.endpoint, p.config.MetaHeaders, p.config.AuthConfig, "pull")
|
2015-11-04 00:03:12 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
logrus.Debug("About to pull")
|
|
|
|
// We expect it to fail, since we haven't mock'd the full registry exchange in our handler above
|
|
|
|
tag, _ := reference.WithTag(n, "tag_goes_here")
|
2018-06-26 17:49:33 -04:00
|
|
|
_ = p.pullV2Repository(ctx, tag, nil)
|
2016-01-26 17:14:13 -05:00
|
|
|
}
|
2015-11-04 00:03:12 -05:00
|
|
|
|
2016-01-26 17:14:13 -05:00
|
|
|
func TestTokenPassThru(t *testing.T) {
|
|
|
|
handler := &tokenPassThruHandler{shouldSend401: func(url string) bool { return url == "/v2/" }}
|
|
|
|
ts := httptest.NewServer(handler)
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
testTokenPassThru(t, ts)
|
|
|
|
|
|
|
|
if !handler.reached {
|
|
|
|
t.Fatal("Handler not reached")
|
|
|
|
}
|
|
|
|
if !handler.gotToken {
|
2015-11-04 00:03:12 -05:00
|
|
|
t.Fatal("Failed to receive registry token")
|
|
|
|
}
|
2016-01-26 17:14:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestTokenPassThruDifferentHost(t *testing.T) {
|
|
|
|
handler := new(tokenPassThruHandler)
|
|
|
|
ts := httptest.NewServer(handler)
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
tsredirect := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.RequestURI == "/v2/" {
|
|
|
|
w.Header().Set("WWW-Authenticate", `Bearer realm="foorealm"`)
|
|
|
|
w.WriteHeader(401)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
http.Redirect(w, r, ts.URL+r.URL.Path, http.StatusMovedPermanently)
|
|
|
|
}))
|
|
|
|
defer tsredirect.Close()
|
2015-11-04 00:03:12 -05:00
|
|
|
|
2016-01-26 17:14:13 -05:00
|
|
|
testTokenPassThru(t, tsredirect)
|
|
|
|
|
|
|
|
if !handler.reached {
|
|
|
|
t.Fatal("Handler not reached")
|
|
|
|
}
|
|
|
|
if handler.gotToken {
|
|
|
|
t.Fatal("Redirect should not forward Authorization header to another host")
|
|
|
|
}
|
2015-11-04 00:03:12 -05:00
|
|
|
}
|