| 
									
										
										
										
											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/>.
 | 
					
						
							| 
									
										
										
										
											2018-03-12 14:16:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2020-06-05 05:58:34 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2021-10-08 06:34:01 +08:00
										 |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2018-03-12 14:16:53 +08:00
										 |  |  | 	"net/http" | 
					
						
							| 
									
										
										
										
											2020-08-25 06:20:50 +08:00
										 |  |  | 	"strconv" | 
					
						
							| 
									
										
										
										
											2020-10-31 03:20:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-02 05:59:40 +08:00
										 |  |  | 	xhttp "github.com/minio/minio/internal/http" | 
					
						
							| 
									
										
										
										
											2018-03-12 14:16:53 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-31 03:20:28 +08:00
										 |  |  | const unavailable = "offline" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-01 23:04:03 +08:00
										 |  |  | func shouldProxy() bool { | 
					
						
							|  |  |  | 	return newObjectLayerFn() == nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-01 02:28:27 +08:00
										 |  |  | // ClusterCheckHandler returns if the server is ready for requests.
 | 
					
						
							|  |  |  | func ClusterCheckHandler(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2021-10-08 06:34:01 +08:00
										 |  |  | 	if globalIsGateway { | 
					
						
							|  |  |  | 		writeResponse(w, http.StatusOK, nil, mimeNone) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-30 14:15:34 +08:00
										 |  |  | 	ctx := newContext(r, w, "ClusterCheckHandler") | 
					
						
							| 
									
										
										
										
											2019-12-29 00:54:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 13:03:06 +08:00
										 |  |  | 	if shouldProxy() { | 
					
						
							| 
									
										
										
										
											2020-10-31 03:20:28 +08:00
										 |  |  | 		w.Header().Set(xhttp.MinIOServerStatus, unavailable) | 
					
						
							| 
									
										
										
										
											2020-06-05 05:58:34 +08:00
										 |  |  | 		writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 13:03:06 +08:00
										 |  |  | 	objLayer := newObjectLayerFn() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-24 00:14:33 +08:00
										 |  |  | 	ctx, cancel := context.WithTimeout(ctx, globalAPIConfig.getClusterDeadline()) | 
					
						
							| 
									
										
										
										
											2020-06-05 05:58:34 +08:00
										 |  |  | 	defer cancel() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-08 13:43:01 +08:00
										 |  |  | 	opts := HealthOptions{Maintenance: r.Form.Get("maintenance") == "true"} | 
					
						
							| 
									
										
										
										
											2020-07-21 09:31:22 +08:00
										 |  |  | 	result := objLayer.Health(ctx, opts) | 
					
						
							| 
									
										
										
										
											2020-09-03 13:54:56 +08:00
										 |  |  | 	if result.WriteQuorum > 0 { | 
					
						
							| 
									
										
										
										
											2020-10-31 03:20:28 +08:00
										 |  |  | 		w.Header().Set(xhttp.MinIOWriteQuorum, strconv.Itoa(result.WriteQuorum)) | 
					
						
							| 
									
										
										
										
											2020-09-03 13:54:56 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-07-21 09:31:22 +08:00
										 |  |  | 	if !result.Healthy { | 
					
						
							| 
									
										
										
										
											2020-08-25 06:20:50 +08:00
										 |  |  | 		// return how many drives are being healed if any
 | 
					
						
							| 
									
										
										
										
											2020-09-05 08:09:02 +08:00
										 |  |  | 		if result.HealingDrives > 0 { | 
					
						
							| 
									
										
										
										
											2020-10-31 03:20:28 +08:00
										 |  |  | 			w.Header().Set(xhttp.MinIOHealingDrives, strconv.Itoa(result.HealingDrives)) | 
					
						
							| 
									
										
										
										
											2020-09-05 08:09:02 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-07-21 09:31:22 +08:00
										 |  |  | 		// As a maintenance call we are purposefully asked to be taken
 | 
					
						
							|  |  |  | 		// down, this is for orchestrators to know if we can safely
 | 
					
						
							|  |  |  | 		// take this server down, return appropriate error.
 | 
					
						
							|  |  |  | 		if opts.Maintenance { | 
					
						
							|  |  |  | 			writeResponse(w, http.StatusPreconditionFailed, nil, mimeNone) | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-03-12 14:16:53 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	writeResponse(w, http.StatusOK, nil, mimeNone) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-09 17:00:44 +08:00
										 |  |  | // ClusterReadCheckHandler returns if the server is ready for requests.
 | 
					
						
							|  |  |  | func ClusterReadCheckHandler(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2021-10-08 06:34:01 +08:00
										 |  |  | 	if globalIsGateway { | 
					
						
							|  |  |  | 		writeResponse(w, http.StatusOK, nil, mimeNone) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-09 17:00:44 +08:00
										 |  |  | 	ctx := newContext(r, w, "ClusterReadCheckHandler") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if shouldProxy() { | 
					
						
							|  |  |  | 		w.Header().Set(xhttp.MinIOServerStatus, unavailable) | 
					
						
							|  |  |  | 		writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	objLayer := newObjectLayerFn() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx, cancel := context.WithTimeout(ctx, globalAPIConfig.getClusterDeadline()) | 
					
						
							|  |  |  | 	defer cancel() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	result := objLayer.ReadHealth(ctx) | 
					
						
							|  |  |  | 	if !result { | 
					
						
							|  |  |  | 		writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-10-08 06:34:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-09 17:00:44 +08:00
										 |  |  | 	writeResponse(w, http.StatusOK, nil, mimeNone) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-01 02:28:27 +08:00
										 |  |  | // ReadinessCheckHandler Checks if the process is up. Always returns success.
 | 
					
						
							|  |  |  | func ReadinessCheckHandler(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2021-10-08 06:34:01 +08:00
										 |  |  | 	LivenessCheckHandler(w, r) | 
					
						
							| 
									
										
										
										
											2020-07-01 02:28:27 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-24 08:38:39 +08:00
										 |  |  | // LivenessCheckHandler - Checks if the process is up. Always returns success.
 | 
					
						
							| 
									
										
										
										
											2018-03-12 14:16:53 +08:00
										 |  |  | func LivenessCheckHandler(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2020-11-08 13:03:06 +08:00
										 |  |  | 	if shouldProxy() { | 
					
						
							| 
									
										
										
										
											2020-10-31 03:20:28 +08:00
										 |  |  | 		// Service not initialized yet
 | 
					
						
							|  |  |  | 		w.Header().Set(xhttp.MinIOServerStatus, unavailable) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-04 08:05:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-08 06:34:01 +08:00
										 |  |  | 	if globalIsGateway { | 
					
						
							|  |  |  | 		objLayer := newObjectLayerFn() | 
					
						
							|  |  |  | 		if objLayer == nil { | 
					
						
							|  |  |  | 			apiErr := toAPIError(r.Context(), errServerNotInitialized) | 
					
						
							|  |  |  | 			switch r.Method { | 
					
						
							|  |  |  | 			case http.MethodHead: | 
					
						
							|  |  |  | 				writeResponse(w, apiErr.HTTPStatusCode, nil, mimeNone) | 
					
						
							|  |  |  | 			case http.MethodGet: | 
					
						
							|  |  |  | 				writeErrorResponse(r.Context(), w, apiErr, r.URL) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2021-09-04 08:05:41 +08:00
										 |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-10-08 06:34:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		storageInfo, _ := objLayer.StorageInfo(r.Context()) | 
					
						
							|  |  |  | 		if !storageInfo.Backend.GatewayOnline { | 
					
						
							|  |  |  | 			err := errors.New("gateway backend is not reachable") | 
					
						
							|  |  |  | 			apiErr := toAPIError(r.Context(), err) | 
					
						
							|  |  |  | 			switch r.Method { | 
					
						
							|  |  |  | 			case http.MethodHead: | 
					
						
							|  |  |  | 				writeResponse(w, apiErr.HTTPStatusCode, nil, mimeNone) | 
					
						
							|  |  |  | 			case http.MethodGet: | 
					
						
							|  |  |  | 				writeErrorResponse(r.Context(), w, apiErr, r.URL) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if globalEtcdClient != nil { | 
					
						
							|  |  |  | 			// Borrowed from
 | 
					
						
							|  |  |  | 			// https://github.com/etcd-io/etcd/blob/main/etcdctl/ctlv3/command/ep_command.go#L118
 | 
					
						
							|  |  |  | 			ctx, cancel := context.WithTimeout(r.Context(), defaultContextTimeout) | 
					
						
							|  |  |  | 			defer cancel() | 
					
						
							|  |  |  | 			if _, err := globalEtcdClient.Get(ctx, "health"); err != nil { | 
					
						
							|  |  |  | 				// etcd unreachable throw an error..
 | 
					
						
							|  |  |  | 				switch r.Method { | 
					
						
							|  |  |  | 				case http.MethodHead: | 
					
						
							|  |  |  | 					apiErr := toAPIError(r.Context(), err) | 
					
						
							|  |  |  | 					writeResponse(w, apiErr.HTTPStatusCode, nil, mimeNone) | 
					
						
							|  |  |  | 				case http.MethodGet: | 
					
						
							|  |  |  | 					writeErrorResponse(r.Context(), w, toAPIError(r.Context(), err), r.URL) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-09-04 08:05:41 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-12 14:16:53 +08:00
										 |  |  | 	writeResponse(w, http.StatusOK, nil, mimeNone) | 
					
						
							|  |  |  | } |