Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(gw): Ipfs-Gateway-Mode: path|trustless #495

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 48 additions & 24 deletions gateway/gateway_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -646,60 +646,84 @@ func TestDeserializedResponses(t *testing.T) {
trustedFormats := []string{"", "dag-json", "dag-cbor", "tar", "json", "cbor"}
trustlessFormats := []string{"raw", "car"}

doRequest := func(t *testing.T, path, host string, expectedStatus int) {
// Ipfs-Gateway-Mode header is an opt-in way a HTTP client can
// request more strict mode, turning a deserializing gateway into trustless one,
// that errors on deserialized request. Unknown modes are ignored.
clientModeNotSet := ""
clientModeTrustless := "trustless"
allClientModes := []string{clientModeNotSet, clientModeTrustless, "path", "something-unknown"}

doRequest := func(t *testing.T, path, host string, clientMode string, expectedStatus int) {
req := mustNewRequest(t, http.MethodGet, ts.URL+path, nil)
if host != "" {
req.Host = host
}
if clientMode != "" {
req.Header.Add(GatewayModeHeader, clientMode)
}
res := mustDoWithoutRedirect(t, req)
defer res.Body.Close()
assert.Equal(t, expectedStatus, res.StatusCode)

assert.Equal(t, expectedStatus, res.StatusCode, "request for %q (with Host=%q and Ipfs-Gateway-Mode=%q) expected to return HTTP status code %d, but was %d", ts.URL+path, host, clientMode, expectedStatus, res.StatusCode)
}

doIpfsCidRequests := func(t *testing.T, formats []string, host string, expectedStatus int) {
doIpfsCidRequests := func(t *testing.T, formats []string, host string, clientMode string, expectedStatus int) {
for _, format := range formats {
doRequest(t, "/ipfs/"+root.String()+"/?format="+format, host, expectedStatus)
doRequest(t, "/ipfs/"+root.String()+"/?format="+format, host, clientMode, expectedStatus)
}
}

doIpfsCidPathRequests := func(t *testing.T, formats []string, host string, expectedStatus int) {
doIpfsCidPathRequests := func(t *testing.T, formats []string, host string, clientMode string, expectedStatus int) {
for _, format := range formats {
doRequest(t, "/ipfs/"+root.String()+"/empty-dir/?format="+format, host, expectedStatus)
doRequest(t, "/ipfs/"+root.String()+"/empty-dir/?format="+format, host, clientMode, expectedStatus)
}
}

trustedTests := func(t *testing.T, host string) {
doIpfsCidRequests(t, trustlessFormats, host, http.StatusOK)
doIpfsCidRequests(t, trustedFormats, host, http.StatusOK)
doIpfsCidPathRequests(t, trustlessFormats, host, http.StatusOK)
doIpfsCidPathRequests(t, trustedFormats, host, http.StatusOK)
expectTrustedBehavior := func(t *testing.T, host string, clientMode string) {

doIpfsCidRequests(t, trustlessFormats, host, clientMode, http.StatusOK)
doIpfsCidRequests(t, trustedFormats, host, clientMode, http.StatusOK)
doIpfsCidPathRequests(t, trustlessFormats, host, clientMode, http.StatusOK)
doIpfsCidPathRequests(t, trustedFormats, host, clientMode, http.StatusOK)
}

trustlessTests := func(t *testing.T, host string) {
doIpfsCidRequests(t, trustlessFormats, host, http.StatusOK)
doIpfsCidRequests(t, trustedFormats, host, http.StatusNotAcceptable)
doIpfsCidPathRequests(t, trustedFormats, host, http.StatusNotAcceptable)
doIpfsCidPathRequests(t, []string{"raw"}, host, http.StatusNotAcceptable)
doIpfsCidPathRequests(t, []string{"car"}, host, http.StatusOK)
expectTrustlessBehavior := func(t *testing.T, host string, clientMode string) {
doIpfsCidRequests(t, trustlessFormats, host, clientMode, http.StatusOK)
doIpfsCidRequests(t, trustedFormats, host, clientMode, http.StatusNotAcceptable)
doIpfsCidPathRequests(t, trustedFormats, host, clientMode, http.StatusNotAcceptable)
doIpfsCidPathRequests(t, []string{"raw"}, host, clientMode, http.StatusNotAcceptable)
doIpfsCidPathRequests(t, []string{"car"}, host, clientMode, http.StatusOK)
}

t.Run("Explicit Trustless Gateway", func(t *testing.T) {
t.Parallel()
trustlessTests(t, "trustless.com")
// Trustless should always work, no matter what
for _, clientMode := range allClientModes {
expectTrustlessBehavior(t, "trustless.com", clientMode)
}
})

// Deserialized (Trusted) mode on configured hostname
t.Run("Explicit Trusted Gateway", func(t *testing.T) {
t.Parallel()
trustedTests(t, "trusted.com")
expectTrustedBehavior(t, "trusted.com", clientModeNotSet)

// 'Ipfs-Gateway-Mode: trustless' sent by client must override server config
expectTrustlessBehavior(t, "trusted.com", clientModeTrustless)
})

t.Run("Implicit Default Trustless Gateway", func(t *testing.T) {
// Trustless mode should always work
t.Run("Implicit Default for unknown (not configured) hostnames is Trustless Gateway", func(t *testing.T) {
t.Parallel()
trustlessTests(t, "not.configured.com")
trustlessTests(t, "localhost")
trustlessTests(t, "127.0.0.1")
trustlessTests(t, "::1")

for _, clientMode := range allClientModes {
expectTrustlessBehavior(t, "not.configured.com", clientMode)
expectTrustlessBehavior(t, "localhost", clientMode)
expectTrustlessBehavior(t, "127.0.0.1", clientMode)
expectTrustlessBehavior(t, "::1", clientMode)
}
})

})

t.Run("IPNS", func(t *testing.T) {
Expand Down
7 changes: 6 additions & 1 deletion gateway/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,13 @@ func addCustomHeaders(w http.ResponseWriter, headers map[string][]string) {

// isDeserializedResponsePossible returns true if deserialized responses
// are allowed on the specified hostname, or globally. Host-specific rules
// override global config.
// or client preference override global config.
func (i *handler) isDeserializedResponsePossible(r *http.Request) bool {
// If client requested trustless mode, we return false immediatelly
if r.Header.Get(GatewayModeHeader) == "trustless" {
return false
}

// Get the value from HTTP Host header
host := r.Host

Expand Down
8 changes: 8 additions & 0 deletions gateway/headers.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package gateway

const (

// GatewayMode header allows client and server to opt-in into specific
// more strict mode, such as limiting responses to trustless ones.
GatewayModeHeader = "Ipfs-Gateway-Mode"
)
8 changes: 8 additions & 0 deletions gateway/hostname.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ func NewHostnameHandler(c Config, backend IPFSBackend, next http.Handler) http.H
host = xHost
}

// Comply with user agents that explicitly requested plain path processing
// (used by CLI and non-browser tools to disable Host-based subdomain redirects etc)
switch r.Header.Get(GatewayModeHeader) {
case "path", "trustless":
next.ServeHTTP(w, withHostnameContext(r, host))
return
}

// HTTP Host & Path check: is this one of our "known gateways"?
if gw, ok := gateways.isKnownHostname(host); ok {
// This is a known gateway but request is not using
Expand Down
Loading