mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-16 03:20:50 +02:00
* filer: require a read token for the root listing maybeCheckJwtAuthorization waved through every GET/HEAD on "/", so a filer with jwt.filer_signing.read.key set still served its root directory listing -- entry names, sizes and chunks[].file_id -- to a caller holding no token at all, and served the same listing to a token restricted by allowed_prefixes. The exemption was added for health checks before the filer had /healthz and /readyz. Both are registered on the default and read-only muxes ahead of the "/" handler and answer without a token, so drop it. Point the mTLS harness at /healthz, which is what it was probing for. * filer: keep the jwt query parameter out of a proxied chunk request The proxy stripped "jwt" from the forwarded query on reads only, on the grounds that a writer's own credential travels there. It does not: an uploader carries its AssignVolume token in the Authorization header, and the query parameter on this path holds a filer credential. Strip it for every method. A volume server has no business seeing a filer token, and because security.GetJwt reads the query before the header, relaying one would hide the writer's own token behind it. * filer: dispatch the chunk proxy after the JWT gate The ?proxyChunkId= branch returned before maybeCheckJwtAuthorization ran, so GET, PUT, POST and DELETE against any needle in the cluster were reachable on the filer's HTTP port with no filer credential, on a filer where every other request answered 401. An anonymous caller read a stored object, replaced its bytes, or deleted the needle, which the master's next vacuum makes permanent. #10434 stopped the filer from minting a volume write token for that caller, which closes the write half only where the volume server has a jwt.signing.key of its own -- not the shipped default, and not what scaffold/security.toml recommends for a filer deployment. The read half stayed open in every configuration, because the filer mints the read token itself. Move the dispatch below the gate. A file id carries no path, so a token restricted by allowed_prefixes cannot be scoped against one and is refused here; every consumer of this endpoint holds an unrestricted token. * filer: mint the volume credential for a proxied write too The proxy minted a volume token on reads and forwarded whatever the caller sent on writes. #10434 made it that way because the branch ran ahead of the JWT gate, so a token minted here would have been signed for an unauthenticated caller; the branch now runs behind the gate, and the credential the caller presents there is a filer one, which a volume server cannot validate and has no business seeing. Mint at the access level the request needs, and drop the caller's Authorization when there is no key to mint from. A proxied uploader then needs only the filer credential, instead of holding one for each hop with a single header to put them in. * mount, mq, filer.sync: send the filer credential for a proxied chunk Every in-tree consumer of ?proxyChunkId= reached the filer anonymously: mount and the broker put the AssignVolume token in the Authorization header, which is a volume credential, and filer.sync sent nothing at all. That was enough only while the branch ran ahead of the filer's JWT gate. Build the URL through one helper, and pick the credential from the URL it returns: a chunk proxied through a filer is a request to the filer, which authorizes it and attaches the volume credential itself, so the token there is a filer one at the access level the request needs. * filer: honor -exposeDirectoryData The flag was declared on all three commands that start a filer and read by none of them: FilerOption.ExposeDirectoryData was only ever assigned from filer.expose_directory_metadata in security.toml, so -exposeDirectoryData=false silently left the listing exposed. Only the TOML key had any effect. Plumb the flag through and let either switch turn the listing off. * filer: count a proxied chunk request once Moving the dispatch below the gate put it after the deferred request observation, so every proxied chunk now landed in FilerRequestHistogram twice, once under its HTTP method and once under chunkProxy. Name the deferred one after the proxy instead, the way the unsupported-method branch already does, which also gives the endpoint the status codes FilerRequestCounter records.
531 lines
19 KiB
Go
531 lines
19 KiB
Go
package weed_server
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"net/url"
|
|
"strings"
|
|
"sync"
|
|
"sync/atomic"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/security"
|
|
)
|
|
|
|
const (
|
|
proxyTestWriteKey = "cluster-write-key"
|
|
proxyTestReadKey = "cluster-read-key"
|
|
proxyTestVid = "3"
|
|
proxyTestFid = "01637037d6"
|
|
proxyTestFileId = proxyTestVid + "," + proxyTestFid
|
|
)
|
|
|
|
// proxyTestVolume is a stand-in volume server that records what the filer
|
|
// actually sent. Recording arrival separately from the header is what keeps the
|
|
// negative assertions honest: an absent Authorization and a request that never
|
|
// left the filer are otherwise indistinguishable.
|
|
type proxyTestVolume struct {
|
|
*httptest.Server
|
|
hits atomic.Int32
|
|
auth atomic.Value // string
|
|
effectiveJwt atomic.Value // string
|
|
rawQuery atomic.Value // string
|
|
}
|
|
|
|
func newProxyTestVolume(t *testing.T) *proxyTestVolume {
|
|
t.Helper()
|
|
v := &proxyTestVolume{}
|
|
v.auth.Store("")
|
|
v.effectiveJwt.Store("")
|
|
v.rawQuery.Store("")
|
|
v.Server = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
v.hits.Add(1)
|
|
v.auth.Store(r.Header.Get("Authorization"))
|
|
v.rawQuery.Store(r.URL.RawQuery)
|
|
// The credential the volume server would actually evaluate, which is not
|
|
// necessarily the Authorization header.
|
|
v.effectiveJwt.Store(string(security.GetJwt(r)))
|
|
}))
|
|
t.Cleanup(func() {
|
|
v.Close()
|
|
// proxyToVolumeServerURL keys the semaphore map by host, and every
|
|
// httptest server binds a fresh port; drop ours so -count=N runs do not
|
|
// grow the map without bound.
|
|
if u, err := url.Parse(v.URL); err == nil {
|
|
proxySemaphores.Delete(u.Host)
|
|
}
|
|
})
|
|
return v
|
|
}
|
|
|
|
func (v *proxyTestVolume) seenAuth() string { return v.auth.Load().(string) }
|
|
|
|
// seenEffectiveJwt is the token the volume server would validate, resolved the
|
|
// same way VolumeServer.maybeCheckJwtAuthorization resolves it.
|
|
func (v *proxyTestVolume) seenEffectiveJwt() string { return v.effectiveJwt.Load().(string) }
|
|
|
|
func (v *proxyTestVolume) seenRawQuery() string { return v.rawQuery.Load().(string) }
|
|
|
|
func (v *proxyTestVolume) requireReached(t *testing.T) {
|
|
t.Helper()
|
|
if v.hits.Load() == 0 {
|
|
t.Fatal("request never reached the volume server, so the assertion below proves nothing")
|
|
}
|
|
}
|
|
|
|
// security.GetJwt reads the "jwt" query parameter before the Authorization
|
|
// header, so a caller-supplied one would outrank the token the filer attaches
|
|
// on a read -- the credential the volume server evaluates has to be the filer's.
|
|
func TestProxyReadDropsCallerJwtQueryParam(t *testing.T) {
|
|
for _, method := range []string{http.MethodGet, http.MethodHead} {
|
|
t.Run(method, func(t *testing.T) {
|
|
volume := newProxyTestVolume(t)
|
|
fs := &FilerServer{volumeGuard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
|
|
r := httptest.NewRequest(method,
|
|
"http://filer:8888/?proxyChunkId="+proxyTestFileId+"&jwt=caller-supplied&readDeleted=true", nil)
|
|
fs.proxyToVolumeServerURL(httptest.NewRecorder(), r, proxyTestFileId, volume.URL+"/"+proxyTestFileId)
|
|
|
|
volume.requireReached(t)
|
|
if got := volume.seenEffectiveJwt(); got == "caller-supplied" {
|
|
t.Fatal("caller's jwt query param outranked the filer-minted token")
|
|
}
|
|
// The credential has to be a filer-minted read token for THIS file.
|
|
// Comparing it against a separately minted token would also say that,
|
|
// but only within the second that minted both: the expiry claim has
|
|
// one-second resolution, so two mints either side of a tick differ in
|
|
// the encoded string while carrying the same authority and file id.
|
|
claims := &security.SeaweedFileIdClaims{}
|
|
if _, err := security.DecodeJwt(security.SigningKey(proxyTestReadKey),
|
|
security.EncodedJwt(volume.seenEffectiveJwt()), claims); err != nil {
|
|
t.Fatalf("volume server would evaluate %q, which does not validate against the read key: %v",
|
|
volume.seenEffectiveJwt(), err)
|
|
}
|
|
if claims.Fid != proxyTestFileId {
|
|
t.Fatalf("token authorizes file %q, want %q", claims.Fid, proxyTestFileId)
|
|
}
|
|
if q := volume.seenRawQuery(); strings.Contains(q, "jwt=") {
|
|
t.Fatalf("jwt survived in the forwarded query: %q", q)
|
|
}
|
|
// Unrelated params must still be forwarded.
|
|
if q := volume.seenRawQuery(); !strings.Contains(q, "readDeleted=true") {
|
|
t.Fatalf("readDeleted was dropped from the forwarded query: %q", q)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// On a write the query parameter carries the filer credential that got the
|
|
// caller past the gate. Relaying it would hand a volume server a filer token
|
|
// and, since security.GetJwt reads it first, hide the minted volume token
|
|
// behind one the volume server cannot validate.
|
|
func TestProxyWriteDropsCallerJwtQueryParam(t *testing.T) {
|
|
volume := newProxyTestVolume(t)
|
|
fs := &FilerServer{volumeGuard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
|
|
r := httptest.NewRequest(http.MethodPost,
|
|
"http://filer:8888/?proxyChunkId="+proxyTestFileId+"&jwt=filer-credential", nil)
|
|
fs.proxyToVolumeServerURL(httptest.NewRecorder(), r, proxyTestFileId, volume.URL+"/"+proxyTestFileId)
|
|
|
|
volume.requireReached(t)
|
|
if q := volume.seenRawQuery(); strings.Contains(q, "jwt=") {
|
|
t.Fatalf("filer credential survived in the forwarded query: %q", q)
|
|
}
|
|
claims := &security.SeaweedFileIdClaims{}
|
|
if _, err := security.DecodeJwt(security.SigningKey(proxyTestWriteKey),
|
|
security.EncodedJwt(volume.seenEffectiveJwt()), claims); err != nil {
|
|
t.Fatalf("volume server would evaluate %q, which does not validate against the write key: %v",
|
|
volume.seenEffectiveJwt(), err)
|
|
}
|
|
}
|
|
|
|
// The token is minted for the caller only once the filer has authorized them,
|
|
// so a key that is not configured means no token: on a read that is the write
|
|
// key, which would hand out more authority than the read needs.
|
|
func TestProxyMintsNothingWithoutKey(t *testing.T) {
|
|
for _, tc := range []struct {
|
|
name string
|
|
isWrite bool
|
|
writeKey string
|
|
readKey string
|
|
}{
|
|
{"read with only a write key", false, proxyTestWriteKey, ""},
|
|
{"write with only a read key", true, "", proxyTestReadKey},
|
|
} {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
fs := &FilerServer{volumeGuard: security.NewGuard([]string{}, tc.writeKey, 10, tc.readKey, 10)}
|
|
|
|
if jwt := fs.maybeGetVolumeJwtAuthorizationToken(proxyTestFileId, tc.isWrite); jwt != "" {
|
|
t.Fatalf("minted %q with no key configured for that access level", jwt)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// A configured read key still yields a read token, and it stays read-only.
|
|
func TestProxyReadTokenIsReadOnly(t *testing.T) {
|
|
fs := &FilerServer{volumeGuard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
|
|
jwt := fs.maybeGetVolumeReadJwtAuthorizationToken(proxyTestFileId)
|
|
if jwt == "" {
|
|
t.Fatal("no read token minted despite a configured read key")
|
|
}
|
|
|
|
vs := &VolumeServer{guard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
|
|
read := httptest.NewRequest(http.MethodGet, "http://volume:8080/"+proxyTestFileId, nil)
|
|
read.Header.Set("Authorization", security.BearerPrefix+jwt)
|
|
if !vs.maybeCheckJwtAuthorization(read, proxyTestVid, proxyTestFid, false) {
|
|
t.Fatal("read token rejected on a read")
|
|
}
|
|
|
|
write := httptest.NewRequest(http.MethodDelete, "http://volume:8080/"+proxyTestFileId, nil)
|
|
write.Header.Set("Authorization", security.BearerPrefix+jwt)
|
|
if vs.maybeCheckJwtAuthorization(write, proxyTestVid, proxyTestFid, true) {
|
|
t.Fatal("read token authorized a write")
|
|
}
|
|
}
|
|
|
|
// A proxied write reaches the volume server on a token the filer minted for
|
|
// this file id, never on the caller's own Authorization -- that one is the
|
|
// filer credential the caller was authorized with. POST is the method every
|
|
// in-tree proxied uploader actually sends, so it leads the table.
|
|
func TestProxyWriteCarriesMintedWriteToken(t *testing.T) {
|
|
vs := &VolumeServer{guard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
|
|
for _, method := range []string{http.MethodPost, http.MethodPut, http.MethodDelete} {
|
|
t.Run(method, func(t *testing.T) {
|
|
volume := newProxyTestVolume(t)
|
|
fs := &FilerServer{volumeGuard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
|
|
r := httptest.NewRequest(method, "http://filer:8888/?proxyChunkId="+proxyTestFileId, nil)
|
|
r.Header.Set("Authorization", security.BearerPrefix+"filer-credential")
|
|
fs.proxyToVolumeServerURL(httptest.NewRecorder(), r, proxyTestFileId, volume.URL+"/"+proxyTestFileId)
|
|
|
|
volume.requireReached(t)
|
|
seen := volume.seenAuth()
|
|
if seen == security.BearerPrefix+"filer-credential" {
|
|
t.Fatal("caller's filer credential reached the volume server")
|
|
}
|
|
check := httptest.NewRequest(method, "http://volume:8080/"+proxyTestFileId, nil)
|
|
check.Header.Set("Authorization", seen)
|
|
if !vs.maybeCheckJwtAuthorization(check, proxyTestVid, proxyTestFid, true) {
|
|
t.Fatalf("forwarded token %q did not authorize the write", seen)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// Reads keep the minted token so weed mount can read through the proxy against a
|
|
// volume server that enforces read JWTs -- and the minted token must *replace*
|
|
// whatever the caller sent, not be appended alongside it.
|
|
func TestProxyReadReplacesCallerCredential(t *testing.T) {
|
|
volume := newProxyTestVolume(t)
|
|
fs := &FilerServer{volumeGuard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
|
|
r := httptest.NewRequest(http.MethodGet, "http://filer:8888/?proxyChunkId="+proxyTestFileId, nil)
|
|
r.Header.Set("Authorization", security.BearerPrefix+"caller-supplied-token")
|
|
fs.proxyToVolumeServerURL(httptest.NewRecorder(), r, proxyTestFileId, volume.URL+"/"+proxyTestFileId)
|
|
|
|
volume.requireReached(t)
|
|
seen := volume.seenAuth()
|
|
if seen == security.BearerPrefix+"caller-supplied-token" {
|
|
t.Fatal("caller's token reached the volume server instead of the minted one")
|
|
}
|
|
|
|
vs := &VolumeServer{guard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
check := httptest.NewRequest(http.MethodGet, "http://volume:8080/"+proxyTestFileId, nil)
|
|
check.Header.Set("Authorization", seen)
|
|
if !vs.maybeCheckJwtAuthorization(check, proxyTestVid, proxyTestFid, false) {
|
|
t.Fatalf("forwarded token %q did not authorize the read", seen)
|
|
}
|
|
}
|
|
|
|
// With no volume key there is nothing to mint, and the caller's Authorization
|
|
// is a filer credential -- it must be dropped, not relayed to a volume server
|
|
// that has no business seeing it.
|
|
func TestProxyDropsCallerCredentialWhenNothingMinted(t *testing.T) {
|
|
for _, method := range []string{http.MethodGet, http.MethodHead, http.MethodPost, http.MethodDelete} {
|
|
t.Run(method, func(t *testing.T) {
|
|
volume := newProxyTestVolume(t)
|
|
fs := &FilerServer{volumeGuard: security.NewGuard([]string{}, "", 10, "", 10)}
|
|
|
|
r := httptest.NewRequest(method, "http://filer:8888/?proxyChunkId="+proxyTestFileId, nil)
|
|
r.Header.Set("Authorization", security.BearerPrefix+"filer-credential")
|
|
fs.proxyToVolumeServerURL(httptest.NewRecorder(), r, proxyTestFileId, volume.URL+"/"+proxyTestFileId)
|
|
|
|
volume.requireReached(t)
|
|
if got := volume.seenAuth(); got != "" {
|
|
t.Fatalf("volume server saw Authorization %q, want it dropped", got)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// Writes must not queue behind the read semaphore: a proxied write carries an
|
|
// AssignVolume token that expires 10s after the assign by default, and waiting
|
|
// for a read slot can push it past expiry.
|
|
func TestProxyWriteBypassesReadSemaphore(t *testing.T) {
|
|
volume := newProxyTestVolume(t)
|
|
host := volume.Listener.Addr().String()
|
|
|
|
// Fill every read slot for this host and never release them.
|
|
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ {
|
|
if err := acquireProxySemaphore(context.Background(), host); err != nil {
|
|
t.Fatalf("fill slot %d: %v", i, err)
|
|
}
|
|
}
|
|
defer func() {
|
|
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ {
|
|
releaseProxySemaphore(host)
|
|
}
|
|
}()
|
|
|
|
fs := &FilerServer{volumeGuard: security.NewGuard([]string{}, proxyTestWriteKey, 10, "", 10)}
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer cancel()
|
|
r := httptest.NewRequest(http.MethodPost, "http://filer:8888/?proxyChunkId="+proxyTestFileId, nil).WithContext(ctx)
|
|
|
|
done := make(chan struct{})
|
|
go func() {
|
|
defer close(done)
|
|
fs.proxyToVolumeServerURL(httptest.NewRecorder(), r, proxyTestFileId, volume.URL+"/"+proxyTestFileId)
|
|
}()
|
|
|
|
select {
|
|
case <-done:
|
|
case <-time.After(3 * time.Second):
|
|
t.Fatal("proxied write blocked on the read semaphore")
|
|
}
|
|
volume.requireReached(t)
|
|
}
|
|
|
|
// The volume server strips a _N delta suffix before comparing the fid claim, so
|
|
// a token minted for the suffixed form would never validate.
|
|
func TestProxyReadTokenMatchesDeltaFid(t *testing.T) {
|
|
const deltaFileId = proxyTestFileId + "_1"
|
|
|
|
fs := &FilerServer{volumeGuard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
jwt := fs.maybeGetVolumeReadJwtAuthorizationToken(deltaFileId)
|
|
if jwt == "" {
|
|
t.Fatal("no read token minted for a delta fid")
|
|
}
|
|
|
|
vs := &VolumeServer{guard: security.NewGuard([]string{}, proxyTestWriteKey, 10, proxyTestReadKey, 10)}
|
|
r := httptest.NewRequest(http.MethodGet, "http://volume:8080/"+deltaFileId, nil)
|
|
r.Header.Set("Authorization", security.BearerPrefix+jwt)
|
|
if !vs.maybeCheckJwtAuthorization(r, proxyTestVid, proxyTestFid+"_1", false) {
|
|
t.Fatal("token minted for a delta fid did not authorize the read")
|
|
}
|
|
}
|
|
|
|
func TestValidateProxyChunkId(t *testing.T) {
|
|
for _, tc := range []struct {
|
|
fileId string
|
|
ok bool
|
|
}{
|
|
{"3,01637037d6", true},
|
|
{"1,0c2b3f2f0f", true},
|
|
{"12,04f0e6ba1d", true},
|
|
{"3,01637037d6_1", true}, // batch-assign delta form
|
|
{"3,01637037d6_12", true}, // multi-digit delta
|
|
{"3,x/../../status", false},
|
|
{"3,01637037d6/../../status", false},
|
|
{"3,01637037d6/../../stats/counter", false},
|
|
{"3,../../status", false},
|
|
{"3,01637037d6/../../status_1", false}, // traversal wearing a delta suffix
|
|
// The suffix must be digits only, or stripping it would reduce a
|
|
// traversal payload to a valid fid and let it through.
|
|
{"3,01637037d6_1/../../status", false},
|
|
{"3,01637037d6_../../status", false},
|
|
{"3,01637037d6_1/../../stats/counter", false},
|
|
{"3,01637037d6_", false},
|
|
{"3,01637037d6_abc", false},
|
|
{"3,01637037d6_1a", false},
|
|
{"3,01637037d6?readDeleted=true", false},
|
|
{"3,01637037d6#frag", false},
|
|
{"3,", false},
|
|
{"3,abc", false},
|
|
{"3", false},
|
|
{"", false},
|
|
} {
|
|
err := validateProxyChunkId(tc.fileId)
|
|
if tc.ok && err != nil {
|
|
t.Errorf("validateProxyChunkId(%q) rejected a valid fid: %v", tc.fileId, err)
|
|
}
|
|
if !tc.ok && err == nil {
|
|
t.Errorf("validateProxyChunkId(%q) accepted a malformed fid", tc.fileId)
|
|
}
|
|
}
|
|
}
|
|
|
|
// A fid carrying dot segments must be rejected before the lookup, so it can
|
|
// never be pasted into a volume server URL. Asserting on 400 (not merely "no
|
|
// traversal") also proves the request never left the filer.
|
|
func TestProxyRejectsTraversalBeforeLookup(t *testing.T) {
|
|
fs := &FilerServer{}
|
|
|
|
for _, fileId := range []string{
|
|
"3,x/../../status",
|
|
"3,01637037d6/../../status",
|
|
"3,01637037d6/../../stats/counter",
|
|
"3,01637037d6_1/../../status",
|
|
"3,01637037d6_../../status",
|
|
} {
|
|
r := httptest.NewRequest(http.MethodGet, "http://filer:8888/?proxyChunkId="+fileId, nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
// fs.filer is nil: reaching the lookup would panic, so surviving this
|
|
// call is itself proof the fid was rejected first.
|
|
fs.proxyToVolumeServer(w, r, fileId)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("proxyChunkId=%q returned %d, want 400", fileId, w.Code)
|
|
}
|
|
}
|
|
}
|
|
|
|
// The proxy branch reaches any needle in the cluster by file id, on the filer
|
|
// port jwt.filer_signing exists to make safe to expose, so it has to sit behind
|
|
// the same gate as every other request.
|
|
func TestFilerHandlerGatesChunkProxy(t *testing.T) {
|
|
signingKey := "secret"
|
|
fs := &FilerServer{
|
|
option: &FilerOption{},
|
|
filerGuard: security.NewGuard(nil, signingKey, 0, signingKey, 0),
|
|
}
|
|
|
|
for _, method := range []string{http.MethodGet, http.MethodHead, http.MethodPut, http.MethodPost, http.MethodDelete} {
|
|
t.Run(method, func(t *testing.T) {
|
|
r := httptest.NewRequest(method, "http://filer:8888/?proxyChunkId="+proxyTestFileId, nil)
|
|
w := httptest.NewRecorder()
|
|
|
|
// fs.filer is nil: reaching the lookup would panic, so surviving
|
|
// this call is itself proof the request was refused first.
|
|
fs.filerHandler(w, r)
|
|
|
|
if w.Code != http.StatusUnauthorized {
|
|
t.Errorf("anonymous %s of a chunk returned %d, want 401", method, w.Code)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// ... and once past it the branch still runs. A malformed fid is refused by
|
|
// validateProxyChunkId ahead of any lookup, which is as far as this can go
|
|
// without a cluster behind the filer.
|
|
func TestFilerHandlerProxiesChunkForAuthorizedCaller(t *testing.T) {
|
|
signingKey := "secret"
|
|
fs := &FilerServer{
|
|
option: &FilerOption{},
|
|
filerGuard: security.NewGuard(nil, signingKey, 0, signingKey, 0),
|
|
}
|
|
token := security.GenJwtForFilerServer(security.SigningKey(signingKey), 60)
|
|
|
|
r := httptest.NewRequest(http.MethodGet, "http://filer:8888/?proxyChunkId=3,not-a-fid", nil)
|
|
r.Header.Set("Authorization", security.BearerPrefix+string(token))
|
|
w := httptest.NewRecorder()
|
|
|
|
fs.filerHandler(w, r)
|
|
|
|
if w.Code != http.StatusBadRequest {
|
|
t.Errorf("authorized chunk proxy returned %d, want 400 from the fid check", w.Code)
|
|
}
|
|
}
|
|
|
|
func TestProxySemaphore_LimitsConcurrency(t *testing.T) {
|
|
host := "test-volume:8080"
|
|
defer proxySemaphores.Delete(host)
|
|
|
|
var running atomic.Int32
|
|
var maxSeen atomic.Int32
|
|
var wg sync.WaitGroup
|
|
|
|
// Launch more goroutines than the semaphore allows
|
|
total := proxyReadConcurrencyPerVolumeServer * 3
|
|
for i := 0; i < total; i++ {
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
if err := acquireProxySemaphore(context.Background(), host); err != nil {
|
|
t.Errorf("acquire: %v", err)
|
|
return
|
|
}
|
|
defer releaseProxySemaphore(host)
|
|
|
|
cur := running.Add(1)
|
|
// Track peak concurrency
|
|
for {
|
|
old := maxSeen.Load()
|
|
if cur <= old || maxSeen.CompareAndSwap(old, cur) {
|
|
break
|
|
}
|
|
}
|
|
time.Sleep(time.Millisecond)
|
|
running.Add(-1)
|
|
}()
|
|
}
|
|
wg.Wait()
|
|
|
|
peak := maxSeen.Load()
|
|
if peak > int32(proxyReadConcurrencyPerVolumeServer) {
|
|
t.Fatalf("peak concurrency %d exceeded limit %d", peak, proxyReadConcurrencyPerVolumeServer)
|
|
}
|
|
if peak == 0 {
|
|
t.Fatal("no goroutines ran")
|
|
}
|
|
}
|
|
|
|
func TestProxySemaphore_ContextCancellation(t *testing.T) {
|
|
host := "test-cancel:8080"
|
|
defer proxySemaphores.Delete(host)
|
|
|
|
// Fill the semaphore
|
|
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ {
|
|
if err := acquireProxySemaphore(context.Background(), host); err != nil {
|
|
t.Fatalf("fill acquire: %v", err)
|
|
}
|
|
}
|
|
|
|
// Try to acquire with a cancelled context
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
cancel()
|
|
err := acquireProxySemaphore(ctx, host)
|
|
if err == nil {
|
|
t.Fatal("expected error from cancelled context")
|
|
}
|
|
|
|
// Clean up
|
|
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ {
|
|
releaseProxySemaphore(host)
|
|
}
|
|
}
|
|
|
|
func TestProxySemaphore_PerHostIsolation(t *testing.T) {
|
|
hostA := "volume-a:8080"
|
|
hostB := "volume-b:8080"
|
|
defer proxySemaphores.Delete(hostA)
|
|
defer proxySemaphores.Delete(hostB)
|
|
|
|
// Fill hostA's semaphore
|
|
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ {
|
|
if err := acquireProxySemaphore(context.Background(), hostA); err != nil {
|
|
t.Fatalf("fill hostA: %v", err)
|
|
}
|
|
}
|
|
|
|
// hostB should still be acquirable
|
|
if err := acquireProxySemaphore(context.Background(), hostB); err != nil {
|
|
t.Fatalf("hostB should not be blocked by hostA: %v", err)
|
|
}
|
|
releaseProxySemaphore(hostB)
|
|
|
|
// Clean up hostA
|
|
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ {
|
|
releaseProxySemaphore(hostA)
|
|
}
|
|
}
|