2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-10-24 22:04:51 -04:00
|
|
|
|
2019-06-08 18:54:41 -04:00
|
|
|
package cmd
|
2017-10-24 22:04:51 -04:00
|
|
|
|
|
|
|
import (
|
2022-06-24 02:19:24 -04:00
|
|
|
"context"
|
2019-07-05 23:41:35 -04:00
|
|
|
"net"
|
2017-10-24 22:04:51 -04:00
|
|
|
"net/http"
|
|
|
|
"reflect"
|
2021-03-09 17:43:16 -05:00
|
|
|
"regexp"
|
2017-10-24 22:04:51 -04:00
|
|
|
"runtime"
|
2019-06-08 18:54:41 -04:00
|
|
|
"strconv"
|
2017-10-24 22:04:51 -04:00
|
|
|
"strings"
|
|
|
|
"time"
|
2019-06-08 18:54:41 -04:00
|
|
|
|
2021-05-06 11:52:02 -04:00
|
|
|
"github.com/minio/madmin-go"
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/handlers"
|
2022-11-28 13:20:27 -05:00
|
|
|
xhttp "github.com/minio/minio/internal/http"
|
2017-10-24 22:04:51 -04:00
|
|
|
)
|
|
|
|
|
2021-03-09 17:43:16 -05:00
|
|
|
var ldapPwdRegex = regexp.MustCompile("(^.*?)LDAPPassword=([^&]*?)(&(.*?))?$")
|
|
|
|
|
|
|
|
// redact LDAP password if part of string
|
|
|
|
func redactLDAPPwd(s string) string {
|
|
|
|
parts := ldapPwdRegex.FindStringSubmatch(s)
|
|
|
|
if len(parts) > 0 {
|
|
|
|
return parts[1] + "LDAPPassword=*REDACTED*" + parts[3]
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2019-06-18 16:55:13 -04:00
|
|
|
// getOpName sanitizes the operation name for mc
|
|
|
|
func getOpName(name string) (op string) {
|
|
|
|
op = strings.TrimPrefix(name, "github.com/minio/minio/cmd.")
|
|
|
|
op = strings.TrimSuffix(op, "Handler-fm")
|
|
|
|
op = strings.Replace(op, "objectAPIHandlers", "s3", 1)
|
|
|
|
op = strings.Replace(op, "adminAPIHandlers", "admin", 1)
|
2022-06-28 08:04:10 -04:00
|
|
|
op = strings.Replace(op, "(*storageRESTServer)", "storageR", 1)
|
|
|
|
op = strings.Replace(op, "(*peerRESTServer)", "peer", 1)
|
|
|
|
op = strings.Replace(op, "(*lockRESTServer)", "lockR", 1)
|
2020-02-26 15:26:47 -05:00
|
|
|
op = strings.Replace(op, "(*stsAPIHandlers)", "sts", 1)
|
2022-06-28 08:04:10 -04:00
|
|
|
op = strings.Replace(op, "ClusterCheckHandler", "health.Cluster", 1)
|
|
|
|
op = strings.Replace(op, "ClusterReadCheckHandler", "health.ClusterRead", 1)
|
|
|
|
op = strings.Replace(op, "LivenessCheckHandler", "health.Liveness", 1)
|
|
|
|
op = strings.Replace(op, "ReadinessCheckHandler", "health.Readiness", 1)
|
2020-02-26 15:26:47 -05:00
|
|
|
op = strings.Replace(op, "-fm", "", 1)
|
2019-06-18 16:55:13 -04:00
|
|
|
return op
|
|
|
|
}
|
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
type contextTraceReqType string
|
2019-07-18 18:29:17 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
const contextTraceReqKey = contextTraceReqType("request-trace-info")
|
2021-03-27 02:24:07 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
// Hold related tracing data of a http request, any handler
|
|
|
|
// can modify this struct to modify the trace information .
|
|
|
|
type traceCtxt struct {
|
2022-11-28 13:20:27 -05:00
|
|
|
requestRecorder *xhttp.RequestRecorder
|
|
|
|
responseRecorder *xhttp.ResponseRecorder
|
2022-06-24 02:19:24 -04:00
|
|
|
funcName string
|
|
|
|
}
|
2021-03-27 02:24:07 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
// If trace is enabled, execute the request if it is traced by other handlers
|
|
|
|
// otherwise, generate a trace event with request information but no response.
|
|
|
|
func httpTracer(h http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2022-07-05 17:45:49 -04:00
|
|
|
if globalTrace.NumSubscribers(madmin.TraceS3|madmin.TraceInternal) == 0 {
|
2022-06-24 02:19:24 -04:00
|
|
|
h.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
}
|
2021-03-27 16:19:14 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
// Create tracing data structure and associate it to the request context
|
|
|
|
tc := traceCtxt{}
|
|
|
|
ctx := context.WithValue(r.Context(), contextTraceReqKey, &tc)
|
|
|
|
r = r.WithContext(ctx)
|
|
|
|
|
|
|
|
// Setup a http request and response body recorder
|
2022-11-28 13:20:27 -05:00
|
|
|
reqRecorder := &xhttp.RequestRecorder{Reader: r.Body}
|
|
|
|
respRecorder := xhttp.NewResponseRecorder(w)
|
2022-06-24 02:19:24 -04:00
|
|
|
|
|
|
|
tc.requestRecorder = reqRecorder
|
|
|
|
tc.responseRecorder = respRecorder
|
2021-03-27 16:19:14 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
// Execute call.
|
|
|
|
r.Body = reqRecorder
|
|
|
|
|
|
|
|
reqStartTime := time.Now().UTC()
|
|
|
|
h.ServeHTTP(respRecorder, r)
|
|
|
|
reqEndTime := time.Now().UTC()
|
|
|
|
|
2022-07-05 17:45:49 -04:00
|
|
|
tt := madmin.TraceInternal
|
|
|
|
if strings.HasPrefix(tc.funcName, "s3.") {
|
|
|
|
tt = madmin.TraceS3
|
|
|
|
}
|
|
|
|
// No need to continue if no subscribers for actual type...
|
|
|
|
if globalTrace.NumSubscribers(tt) == 0 {
|
|
|
|
return
|
|
|
|
}
|
2022-06-24 02:19:24 -04:00
|
|
|
// Calculate input body size with headers
|
|
|
|
reqHeaders := r.Header.Clone()
|
|
|
|
reqHeaders.Set("Host", r.Host)
|
|
|
|
if len(r.TransferEncoding) == 0 {
|
|
|
|
reqHeaders.Set("Content-Length", strconv.Itoa(int(r.ContentLength)))
|
|
|
|
} else {
|
|
|
|
reqHeaders.Set("Transfer-Encoding", strings.Join(r.TransferEncoding, ","))
|
|
|
|
}
|
|
|
|
inputBytes := reqRecorder.BodySize()
|
|
|
|
for k, v := range reqHeaders {
|
|
|
|
inputBytes += len(k) + len(v)
|
2021-03-27 16:19:14 -04:00
|
|
|
}
|
2021-03-27 02:24:07 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
// Calculate node name
|
|
|
|
nodeName := r.Host
|
2022-06-28 08:04:10 -04:00
|
|
|
if globalIsDistErasure {
|
2022-06-24 02:19:24 -04:00
|
|
|
nodeName = globalLocalNodeName
|
|
|
|
}
|
|
|
|
if host, port, err := net.SplitHostPort(nodeName); err == nil {
|
|
|
|
if port == "443" || port == "80" {
|
|
|
|
nodeName = host
|
|
|
|
}
|
|
|
|
}
|
2020-09-18 12:30:52 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
// Calculate reqPath
|
|
|
|
reqPath := r.URL.RawPath
|
|
|
|
if reqPath == "" {
|
|
|
|
reqPath = r.URL.Path
|
|
|
|
}
|
2021-05-26 11:04:12 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
// Calculate function name
|
|
|
|
funcName := tc.funcName
|
|
|
|
if funcName == "" {
|
|
|
|
funcName = "<unknown>"
|
|
|
|
}
|
2020-09-18 12:30:52 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
t := madmin.TraceInfo{
|
2022-07-05 17:45:49 -04:00
|
|
|
TraceType: tt,
|
2022-06-24 02:19:24 -04:00
|
|
|
FuncName: funcName,
|
|
|
|
NodeName: nodeName,
|
|
|
|
Time: reqStartTime,
|
2022-07-05 17:45:49 -04:00
|
|
|
Duration: reqEndTime.Sub(respRecorder.StartTime),
|
|
|
|
Path: reqPath,
|
|
|
|
HTTP: &madmin.TraceHTTPStats{
|
|
|
|
ReqInfo: madmin.TraceRequestInfo{
|
|
|
|
Time: reqStartTime,
|
|
|
|
Proto: r.Proto,
|
|
|
|
Method: r.Method,
|
|
|
|
RawQuery: redactLDAPPwd(r.URL.RawQuery),
|
|
|
|
Client: handlers.GetSourceIP(r),
|
|
|
|
Headers: reqHeaders,
|
|
|
|
Path: reqPath,
|
|
|
|
Body: reqRecorder.Data(),
|
|
|
|
},
|
|
|
|
RespInfo: madmin.TraceResponseInfo{
|
|
|
|
Time: reqEndTime,
|
|
|
|
Headers: respRecorder.Header().Clone(),
|
|
|
|
StatusCode: respRecorder.StatusCode,
|
|
|
|
Body: respRecorder.Body(),
|
|
|
|
},
|
|
|
|
CallStats: madmin.TraceCallStats{
|
|
|
|
Latency: reqEndTime.Sub(respRecorder.StartTime),
|
|
|
|
InputBytes: inputBytes,
|
|
|
|
OutputBytes: respRecorder.Size(),
|
|
|
|
TimeToFirstByte: respRecorder.TimeToFirstByte,
|
|
|
|
},
|
|
|
|
},
|
2022-06-24 02:19:24 -04:00
|
|
|
}
|
2019-07-10 14:49:02 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
globalTrace.Publish(t)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func httpTrace(f http.HandlerFunc, logBody bool) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
tc, ok := r.Context().Value(contextTraceReqKey).(*traceCtxt)
|
|
|
|
if !ok {
|
|
|
|
// Tracing is not enabled for this request
|
|
|
|
f.ServeHTTP(w, r)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
tc.funcName = getOpName(runtime.FuncForPC(reflect.ValueOf(f).Pointer()).Name())
|
2022-11-28 13:20:27 -05:00
|
|
|
tc.requestRecorder.LogBody = logBody
|
2022-06-24 02:19:24 -04:00
|
|
|
tc.responseRecorder.LogAllBody = logBody
|
|
|
|
tc.responseRecorder.LogErrBody = true
|
2019-07-18 18:29:17 -04:00
|
|
|
|
2022-06-24 02:19:24 -04:00
|
|
|
f.ServeHTTP(w, r)
|
2019-08-15 19:17:46 -04:00
|
|
|
}
|
2022-06-24 02:19:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func httpTraceAll(f http.HandlerFunc) http.HandlerFunc {
|
|
|
|
return httpTrace(f, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func httpTraceHdrs(f http.HandlerFunc) http.HandlerFunc {
|
|
|
|
return httpTrace(f, false)
|
2017-10-24 22:04:51 -04:00
|
|
|
}
|