2023-11-28 23:37:21 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
|
|
package tsweb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
|
2024-01-16 21:56:23 +00:00
|
|
|
"tailscale.com/util/ctxkey"
|
2024-04-09 21:06:48 +01:00
|
|
|
"tailscale.com/util/fastuuid"
|
2023-11-28 23:37:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// RequestID is an opaque identifier for a HTTP request, used to correlate
|
|
|
|
// user-visible errors with backend server logs. The RequestID is typically
|
|
|
|
// threaded through an HTTP Middleware (WithRequestID) and then can be extracted
|
|
|
|
// by HTTP Handlers to include in their logs.
|
|
|
|
//
|
|
|
|
// RequestID is an opaque identifier for a HTTP request, used to correlate
|
|
|
|
// user-visible errors with backend server logs. If present in the context, the
|
|
|
|
// RequestID will be printed alongside the message text and logged in the
|
|
|
|
// AccessLogRecord.
|
|
|
|
//
|
|
|
|
// A RequestID has the format "REQ-1{ID}", and the ID should be treated as an
|
|
|
|
// opaque string. The current implementation uses a UUID.
|
|
|
|
type RequestID string
|
|
|
|
|
2024-03-07 00:38:38 +00:00
|
|
|
// String returns the string format of the request ID, for use in e.g. setting
|
|
|
|
// a [http.Header].
|
|
|
|
func (r RequestID) String() string {
|
|
|
|
return string(r)
|
|
|
|
}
|
|
|
|
|
2024-01-16 21:56:23 +00:00
|
|
|
// RequestIDKey stores and loads [RequestID] values within a [context.Context].
|
|
|
|
var RequestIDKey ctxkey.Key[RequestID]
|
|
|
|
|
2023-11-28 23:37:21 +00:00
|
|
|
// RequestIDHeader is a custom HTTP header that the WithRequestID middleware
|
|
|
|
// uses to determine whether to re-use a given request ID from the client
|
|
|
|
// or generate a new one.
|
|
|
|
const RequestIDHeader = "X-Tailscale-Request-Id"
|
|
|
|
|
2024-02-27 23:16:52 +00:00
|
|
|
// GenerateRequestID generates a new request ID with the current format.
|
|
|
|
func GenerateRequestID() RequestID {
|
|
|
|
// REQ-1 indicates the version of the RequestID pattern. It is
|
|
|
|
// currently arbitrary but allows for forward compatible
|
|
|
|
// transitions if needed.
|
2024-04-09 21:06:48 +01:00
|
|
|
return RequestID("REQ-1" + fastuuid.NewUUID().String())
|
2024-02-27 23:16:52 +00:00
|
|
|
}
|
|
|
|
|
2023-11-28 23:37:21 +00:00
|
|
|
// SetRequestID is an HTTP middleware that injects a RequestID in the
|
|
|
|
// *http.Request Context. The value of that request id is either retrieved from
|
|
|
|
// the RequestIDHeader or a randomly generated one if not exists. Inner
|
|
|
|
// handlers can retrieve this ID from the RequestIDFromContext function.
|
|
|
|
func SetRequestID(h http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2024-02-27 23:16:52 +00:00
|
|
|
var rid RequestID
|
|
|
|
if id := r.Header.Get(RequestIDHeader); id != "" {
|
|
|
|
rid = RequestID(id)
|
|
|
|
} else {
|
|
|
|
rid = GenerateRequestID()
|
2023-11-28 23:37:21 +00:00
|
|
|
}
|
2024-02-27 23:16:52 +00:00
|
|
|
ctx := RequestIDKey.WithValue(r.Context(), rid)
|
2023-11-28 23:37:21 +00:00
|
|
|
r = r.WithContext(ctx)
|
|
|
|
h.ServeHTTP(w, r)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// RequestIDFromContext retrieves the RequestID from context that can be set by
|
|
|
|
// the SetRequestID function.
|
2024-01-16 21:56:23 +00:00
|
|
|
//
|
|
|
|
// Deprecated: Use [RequestIDKey.Value] instead.
|
2023-11-28 23:37:21 +00:00
|
|
|
func RequestIDFromContext(ctx context.Context) RequestID {
|
2024-01-16 21:56:23 +00:00
|
|
|
return RequestIDKey.Value(ctx)
|
2023-11-28 23:37:21 +00:00
|
|
|
}
|