| 
									
										
										
										
											2021-04-19 03:41:13 +08: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-25 10:04:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-09 06:54:41 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2017-10-25 10:04:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2019-07-06 11:41:35 +08:00
										 |  |  | 	"net" | 
					
						
							| 
									
										
										
										
											2017-10-25 10:04:51 +08:00
										 |  |  | 	"net/http" | 
					
						
							|  |  |  | 	"reflect" | 
					
						
							| 
									
										
										
										
											2021-03-10 06:43:16 +08:00
										 |  |  | 	"regexp" | 
					
						
							| 
									
										
										
										
											2017-10-25 10:04:51 +08:00
										 |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2019-06-09 06:54:41 +08:00
										 |  |  | 	"strconv" | 
					
						
							| 
									
										
										
										
											2017-10-25 10:04:51 +08:00
										 |  |  | 	"strings" | 
					
						
							|  |  |  | 	"time" | 
					
						
							| 
									
										
										
										
											2019-06-09 06:54:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-20 08:53:08 +08:00
										 |  |  | 	"github.com/minio/madmin-go/v3" | 
					
						
							| 
									
										
										
										
											2021-06-02 05:59:40 +08:00
										 |  |  | 	"github.com/minio/minio/internal/handlers" | 
					
						
							| 
									
										
										
										
											2022-11-29 02:20:27 +08:00
										 |  |  | 	xhttp "github.com/minio/minio/internal/http" | 
					
						
							| 
									
										
										
										
											2022-12-07 01:27:26 +08:00
										 |  |  | 	"github.com/minio/minio/internal/mcontext" | 
					
						
							| 
									
										
										
										
											2017-10-25 10:04:51 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-10 06:43:16 +08:00
										 |  |  | var ldapPwdRegex = regexp.MustCompile("(^.*?)LDAPPassword=([^&]*?)(&(.*?))?$") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // redact LDAP password if part of string
 | 
					
						
							|  |  |  | func redactLDAPPwd(s string) string { | 
					
						
							|  |  |  | 	parts := ldapPwdRegex.FindStringSubmatch(s) | 
					
						
							| 
									
										
										
										
											2023-03-30 23:03:48 +08:00
										 |  |  | 	if len(parts) > 3 { | 
					
						
							| 
									
										
										
										
											2021-03-10 06:43:16 +08:00
										 |  |  | 		return parts[1] + "LDAPPassword=*REDACTED*" + parts[3] | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return s | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-19 04:55:13 +08: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 20:04:10 +08:00
										 |  |  | 	op = strings.Replace(op, "(*storageRESTServer)", "storageR", 1) | 
					
						
							|  |  |  | 	op = strings.Replace(op, "(*peerRESTServer)", "peer", 1) | 
					
						
							|  |  |  | 	op = strings.Replace(op, "(*lockRESTServer)", "lockR", 1) | 
					
						
							| 
									
										
										
										
											2020-02-27 04:26:47 +08:00
										 |  |  | 	op = strings.Replace(op, "(*stsAPIHandlers)", "sts", 1) | 
					
						
							| 
									
										
											  
											
												perf: websocket grid connectivity for all internode communication (#18461)
This PR adds a WebSocket grid feature that allows servers to communicate via 
a single two-way connection.
There are two request types:
* Single requests, which are `[]byte => ([]byte, error)`. This is for efficient small
  roundtrips with small payloads.
* Streaming requests which are `[]byte, chan []byte => chan []byte (and error)`,
  which allows for different combinations of full two-way streams with an initial payload.
Only a single stream is created between two machines - and there is, as such, no
server/client relation since both sides can initiate and handle requests. Which server
initiates the request is decided deterministically on the server names.
Requests are made through a mux client and server, which handles message
passing, congestion, cancelation, timeouts, etc.
If a connection is lost, all requests are canceled, and the calling server will try
to reconnect. Registered handlers can operate directly on byte 
slices or use a higher-level generics abstraction.
There is no versioning of handlers/clients, and incompatible changes should
be handled by adding new handlers.
The request path can be changed to a new one for any protocol changes.
First, all servers create a "Manager." The manager must know its address 
as well as all remote addresses. This will manage all connections.
To get a connection to any remote, ask the manager to provide it given
the remote address using.
```
func (m *Manager) Connection(host string) *Connection
```
All serverside handlers must also be registered on the manager. This will
make sure that all incoming requests are served. The number of in-flight 
requests and responses must also be given for streaming requests.
The "Connection" returned manages the mux-clients. Requests issued
to the connection will be sent to the remote.
* `func (c *Connection) Request(ctx context.Context, h HandlerID, req []byte) ([]byte, error)`
   performs a single request and returns the result. Any deadline provided on the request is
   forwarded to the server, and canceling the context will make the function return at once.
* `func (c *Connection) NewStream(ctx context.Context, h HandlerID, payload []byte) (st *Stream, err error)`
   will initiate a remote call and send the initial payload.
```Go
// A Stream is a two-way stream.
// All responses *must* be read by the caller.
// If the call is canceled through the context,
//The appropriate error will be returned.
type Stream struct {
	// Responses from the remote server.
	// Channel will be closed after an error or when the remote closes.
	// All responses *must* be read by the caller until either an error is returned or the channel is closed.
	// Canceling the context will cause the context cancellation error to be returned.
	Responses <-chan Response
	// Requests sent to the server.
	// If the handler is defined with 0 incoming capacity this will be nil.
	// Channel *must* be closed to signal the end of the stream.
	// If the request context is canceled, the stream will no longer process requests.
	Requests chan<- []byte
}
type Response struct {
	Msg []byte
	Err error
}
```
There are generic versions of the server/client handlers that allow the use of type
safe implementations for data types that support msgpack marshal/unmarshal.
											
										 
											2023-11-21 09:09:35 +08:00
										 |  |  | 	op = strings.Replace(op, "(*peerS3Server)", "s3", 1) | 
					
						
							| 
									
										
										
										
											2022-06-28 20:04:10 +08: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-27 04:26:47 +08:00
										 |  |  | 	op = strings.Replace(op, "-fm", "", 1) | 
					
						
							| 
									
										
										
										
											2019-06-19 04:55:13 +08:00
										 |  |  | 	return op | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08: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.
 | 
					
						
							| 
									
										
										
										
											2023-07-08 22:31:42 +08:00
										 |  |  | func httpTracerMiddleware(h http.Handler) http.Handler { | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2023-04-01 00:37:29 +08:00
										 |  |  | 		// Setup a http request response recorder - this is needed for
 | 
					
						
							|  |  |  | 		// http stats requests and audit if enabled.
 | 
					
						
							|  |  |  | 		respRecorder := xhttp.NewResponseRecorder(w) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-13 05:37:19 +08:00
										 |  |  | 		// Setup a http request body recorder
 | 
					
						
							|  |  |  | 		reqRecorder := &xhttp.RequestRecorder{Reader: r.Body} | 
					
						
							|  |  |  | 		r.Body = reqRecorder | 
					
						
							| 
									
										
										
										
											2021-03-28 04:19:14 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		// Create tracing data structure and associate it to the request context
 | 
					
						
							| 
									
										
										
										
											2022-12-07 01:27:26 +08:00
										 |  |  | 		tc := mcontext.TraceCtxt{ | 
					
						
							| 
									
										
										
										
											2023-07-11 06:40:44 +08:00
										 |  |  | 			AmzReqID:         w.Header().Get(xhttp.AmzRequestID), | 
					
						
							| 
									
										
										
										
											2023-04-13 05:37:19 +08:00
										 |  |  | 			RequestRecorder:  reqRecorder, | 
					
						
							|  |  |  | 			ResponseRecorder: respRecorder, | 
					
						
							| 
									
										
										
										
											2022-12-07 01:27:26 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-13 05:37:19 +08:00
										 |  |  | 		r = r.WithContext(context.WithValue(r.Context(), mcontext.ContextTraceKey, &tc)) | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		reqStartTime := time.Now().UTC() | 
					
						
							|  |  |  | 		h.ServeHTTP(respRecorder, r) | 
					
						
							|  |  |  | 		reqEndTime := time.Now().UTC() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-13 05:37:19 +08:00
										 |  |  | 		if globalTrace.NumSubscribers(madmin.TraceS3|madmin.TraceInternal) == 0 { | 
					
						
							|  |  |  | 			// no subscribers nothing to trace.
 | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-06 05:45:49 +08:00
										 |  |  | 		tt := madmin.TraceInternal | 
					
						
							| 
									
										
										
										
											2022-12-07 01:27:26 +08:00
										 |  |  | 		if strings.HasPrefix(tc.FuncName, "s3.") { | 
					
						
							| 
									
										
										
										
											2022-07-06 05:45:49 +08:00
										 |  |  | 			tt = madmin.TraceS3 | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-04-13 05:37:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08: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, ",")) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-04-13 05:37:19 +08:00
										 |  |  | 		inputBytes := reqRecorder.Size() | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		for k, v := range reqHeaders { | 
					
						
							|  |  |  | 			inputBytes += len(k) + len(v) | 
					
						
							| 
									
										
										
										
											2021-03-28 04:19:14 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-03-27 14:24:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		// Calculate node name
 | 
					
						
							|  |  |  | 		nodeName := r.Host | 
					
						
							| 
									
										
										
										
											2022-06-28 20:04:10 +08:00
										 |  |  | 		if globalIsDistErasure { | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 			nodeName = globalLocalNodeName | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if host, port, err := net.SplitHostPort(nodeName); err == nil { | 
					
						
							|  |  |  | 			if port == "443" || port == "80" { | 
					
						
							|  |  |  | 				nodeName = host | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-09-19 00:30:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		// Calculate reqPath
 | 
					
						
							|  |  |  | 		reqPath := r.URL.RawPath | 
					
						
							|  |  |  | 		if reqPath == "" { | 
					
						
							|  |  |  | 			reqPath = r.URL.Path | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-26 23:04:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		// Calculate function name
 | 
					
						
							| 
									
										
										
										
											2022-12-07 01:27:26 +08:00
										 |  |  | 		funcName := tc.FuncName | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		if funcName == "" { | 
					
						
							|  |  |  | 			funcName = "<unknown>" | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-09-19 00:30:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		t := madmin.TraceInfo{ | 
					
						
							| 
									
										
										
										
											2022-07-06 05:45:49 +08:00
										 |  |  | 			TraceType: tt, | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 			FuncName:  funcName, | 
					
						
							|  |  |  | 			NodeName:  nodeName, | 
					
						
							|  |  |  | 			Time:      reqStartTime, | 
					
						
							| 
									
										
										
										
											2022-07-06 05:45:49 +08:00
										 |  |  | 			Duration:  reqEndTime.Sub(respRecorder.StartTime), | 
					
						
							|  |  |  | 			Path:      reqPath, | 
					
						
							| 
									
										
										
										
											2024-06-03 23:45:54 +08:00
										 |  |  | 			Bytes:     int64(inputBytes + respRecorder.Size()), | 
					
						
							| 
									
										
										
										
											2022-07-06 05:45:49 +08:00
										 |  |  | 			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(), | 
					
						
							| 
									
										
										
										
											2024-09-25 01:12:18 +08:00
										 |  |  | 					TimeToFirstByte: respRecorder.TTFB(), | 
					
						
							| 
									
										
										
										
											2022-07-06 05:45:49 +08:00
										 |  |  | 				}, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-07-11 02:49:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		globalTrace.Publish(t) | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func httpTrace(f http.HandlerFunc, logBody bool) http.HandlerFunc { | 
					
						
							|  |  |  | 	return func(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2022-12-07 01:27:26 +08:00
										 |  |  | 		tc, ok := r.Context().Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt) | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		if !ok { | 
					
						
							|  |  |  | 			// Tracing is not enabled for this request
 | 
					
						
							|  |  |  | 			f.ServeHTTP(w, r) | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-07 01:27:26 +08:00
										 |  |  | 		tc.FuncName = getOpName(runtime.FuncForPC(reflect.ValueOf(f).Pointer()).Name()) | 
					
						
							|  |  |  | 		tc.RequestRecorder.LogBody = logBody | 
					
						
							|  |  |  | 		tc.ResponseRecorder.LogAllBody = logBody | 
					
						
							|  |  |  | 		tc.ResponseRecorder.LogErrBody = true | 
					
						
							| 
									
										
										
										
											2019-07-19 06:29:17 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08:00
										 |  |  | 		f.ServeHTTP(w, r) | 
					
						
							| 
									
										
										
										
											2019-08-16 07:17:46 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2022-06-24 14:19:24 +08: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-25 10:04:51 +08:00
										 |  |  | } |