2021-04-18 12:41:13 -07: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 11:46:53 +05:30
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2020-06-04 14:58:34 -07:00
|
|
|
"context"
|
2018-03-12 11:46:53 +05:30
|
|
|
"net/http"
|
2020-08-24 15:20:50 -07:00
|
|
|
"strconv"
|
2023-02-06 08:55:56 -08:00
|
|
|
"time"
|
2020-10-30 12:20:28 -07:00
|
|
|
|
2021-06-01 14:59:40 -07:00
|
|
|
xhttp "github.com/minio/minio/internal/http"
|
2024-04-03 23:13:20 +02:00
|
|
|
"github.com/minio/minio/internal/kms"
|
2018-03-12 11:46:53 +05:30
|
|
|
)
|
|
|
|
|
2020-10-30 12:20:28 -07:00
|
|
|
const unavailable = "offline"
|
|
|
|
|
2020-06-30 11:28:27 -07:00
|
|
|
// ClusterCheckHandler returns if the server is ready for requests.
|
|
|
|
func ClusterCheckHandler(w http.ResponseWriter, r *http.Request) {
|
2020-07-29 23:15:34 -07:00
|
|
|
ctx := newContext(r, w, "ClusterCheckHandler")
|
2019-12-28 22:24:43 +05:30
|
|
|
|
2023-07-28 01:16:53 -07:00
|
|
|
objLayer := newObjectLayerFn()
|
|
|
|
if objLayer == nil {
|
2020-10-30 12:20:28 -07:00
|
|
|
w.Header().Set(xhttp.MinIOServerStatus, unavailable)
|
2020-06-04 14:58:34 -07:00
|
|
|
writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-23 09:14:33 -07:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, globalAPIConfig.getClusterDeadline())
|
2020-06-04 14:58:34 -07:00
|
|
|
defer cancel()
|
|
|
|
|
2023-03-21 08:48:38 -07:00
|
|
|
opts := HealthOptions{
|
2023-03-22 21:16:15 +00:00
|
|
|
Maintenance: r.Form.Get("maintenance") == "true",
|
2023-03-21 08:48:38 -07:00
|
|
|
DeploymentType: r.Form.Get("deployment-type"),
|
|
|
|
}
|
2020-07-20 18:31:22 -07:00
|
|
|
result := objLayer.Health(ctx, opts)
|
2023-07-28 01:16:53 -07:00
|
|
|
w.Header().Set(xhttp.MinIOWriteQuorum, strconv.Itoa(result.WriteQuorum))
|
2023-05-04 14:44:30 -07:00
|
|
|
w.Header().Set(xhttp.MinIOStorageClassDefaults, strconv.FormatBool(result.UsingDefaults))
|
2023-07-28 01:16:53 -07:00
|
|
|
// return how many drives are being healed if any
|
|
|
|
if result.HealingDrives > 0 {
|
|
|
|
w.Header().Set(xhttp.MinIOHealingDrives, strconv.Itoa(result.HealingDrives))
|
|
|
|
}
|
2020-07-20 18:31:22 -07:00
|
|
|
if !result.Healthy {
|
|
|
|
// 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 11:46:53 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
writeResponse(w, http.StatusOK, nil, mimeNone)
|
|
|
|
}
|
|
|
|
|
2021-02-09 01:00:44 -08:00
|
|
|
// ClusterReadCheckHandler returns if the server is ready for requests.
|
|
|
|
func ClusterReadCheckHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx := newContext(r, w, "ClusterReadCheckHandler")
|
|
|
|
|
2023-07-28 01:16:53 -07:00
|
|
|
objLayer := newObjectLayerFn()
|
|
|
|
if objLayer == nil {
|
2021-02-09 01:00:44 -08:00
|
|
|
w.Header().Set(xhttp.MinIOServerStatus, unavailable)
|
|
|
|
writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, globalAPIConfig.getClusterDeadline())
|
|
|
|
defer cancel()
|
|
|
|
|
2024-02-15 16:48:36 -08:00
|
|
|
opts := HealthOptions{
|
|
|
|
Maintenance: r.Form.Get("maintenance") == "true",
|
|
|
|
DeploymentType: r.Form.Get("deployment-type"),
|
|
|
|
}
|
|
|
|
result := objLayer.Health(ctx, opts)
|
|
|
|
w.Header().Set(xhttp.MinIOReadQuorum, strconv.Itoa(result.ReadQuorum))
|
|
|
|
w.Header().Set(xhttp.MinIOStorageClassDefaults, strconv.FormatBool(result.UsingDefaults))
|
|
|
|
// return how many drives are being healed if any
|
|
|
|
if result.HealingDrives > 0 {
|
|
|
|
w.Header().Set(xhttp.MinIOHealingDrives, strconv.Itoa(result.HealingDrives))
|
|
|
|
}
|
|
|
|
if !result.HealthyRead {
|
|
|
|
// 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)
|
|
|
|
}
|
2021-02-09 01:00:44 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
writeResponse(w, http.StatusOK, nil, mimeNone)
|
|
|
|
}
|
|
|
|
|
2023-11-16 10:51:27 +01:00
|
|
|
// ReadinessCheckHandler checks whether MinIO is up and ready to serve requests.
|
|
|
|
// It also checks whether the KMS is available and whether etcd is reachable,
|
|
|
|
// if configured.
|
2020-06-30 11:28:27 -07:00
|
|
|
func ReadinessCheckHandler(w http.ResponseWriter, r *http.Request) {
|
2023-11-16 10:51:27 +01:00
|
|
|
if objLayer := newObjectLayerFn(); objLayer == nil {
|
|
|
|
w.Header().Set(xhttp.MinIOServerStatus, unavailable) // Service not initialized yet
|
2023-07-28 01:16:53 -07:00
|
|
|
}
|
2023-11-16 10:51:27 +01:00
|
|
|
if r.Header.Get(xhttp.MinIOPeerCall) != "" {
|
|
|
|
writeResponse(w, http.StatusOK, nil, mimeNone)
|
2023-05-04 19:28:33 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-02-27 08:34:52 -08:00
|
|
|
if int(globalHTTPStats.loadRequestsInQueue()) > globalAPIConfig.getRequestsPoolCapacity() {
|
|
|
|
apiErr := getAPIError(ErrBusy)
|
|
|
|
switch r.Method {
|
|
|
|
case http.MethodHead:
|
|
|
|
writeResponse(w, apiErr.HTTPStatusCode, nil, mimeNone)
|
|
|
|
case http.MethodGet:
|
|
|
|
writeErrorResponse(r.Context(), w, apiErr, r.URL)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-02-06 08:55:56 -08:00
|
|
|
// Verify if KMS is reachable if its configured
|
2023-11-16 10:51:27 +01:00
|
|
|
if GlobalKMS != nil {
|
2023-02-06 08:55:56 -08:00
|
|
|
ctx, cancel := context.WithTimeout(r.Context(), time.Minute)
|
|
|
|
defer cancel()
|
|
|
|
|
2024-04-03 23:13:20 +02:00
|
|
|
if _, err := GlobalKMS.GenerateKey(ctx, "", kms.Context{"healthcheck": ""}); err != nil {
|
2023-02-06 08:55:56 -08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-24 17:44:15 -07:00
|
|
|
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..
|
2021-10-07 15:34:01 -07:00
|
|
|
switch r.Method {
|
|
|
|
case http.MethodHead:
|
2022-10-24 17:44:15 -07:00
|
|
|
apiErr := toAPIError(r.Context(), err)
|
2021-10-07 15:34:01 -07:00
|
|
|
writeResponse(w, apiErr.HTTPStatusCode, nil, mimeNone)
|
|
|
|
case http.MethodGet:
|
2022-10-24 17:44:15 -07:00
|
|
|
writeErrorResponse(r.Context(), w, toAPIError(r.Context(), err), r.URL)
|
2021-10-07 15:34:01 -07:00
|
|
|
}
|
2021-09-03 17:05:41 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2023-11-16 10:51:27 +01:00
|
|
|
writeResponse(w, http.StatusOK, nil, mimeNone)
|
|
|
|
}
|
|
|
|
|
|
|
|
// LivenessCheckHandler checks whether MinIO is up. It differs from the
|
|
|
|
// readiness handler since a failing liveness check causes pod restarts
|
2024-01-17 23:03:17 -08:00
|
|
|
// in K8S environments. Therefore, it does not contact external systems.
|
2023-11-16 10:51:27 +01:00
|
|
|
func LivenessCheckHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if objLayer := newObjectLayerFn(); objLayer == nil {
|
|
|
|
w.Header().Set(xhttp.MinIOServerStatus, unavailable) // Service not initialized yet
|
|
|
|
}
|
|
|
|
if r.Header.Get(xhttp.MinIOPeerCall) != "" {
|
|
|
|
writeResponse(w, http.StatusOK, nil, mimeNone)
|
|
|
|
return
|
|
|
|
}
|
2021-09-03 17:05:41 -07:00
|
|
|
|
2023-11-16 10:51:27 +01:00
|
|
|
if int(globalHTTPStats.loadRequestsInQueue()) > globalAPIConfig.getRequestsPoolCapacity() {
|
|
|
|
apiErr := getAPIError(ErrBusy)
|
|
|
|
switch r.Method {
|
|
|
|
case http.MethodHead:
|
|
|
|
writeResponse(w, apiErr.HTTPStatusCode, nil, mimeNone)
|
|
|
|
case http.MethodGet:
|
|
|
|
writeErrorResponse(r.Context(), w, apiErr, r.URL)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2018-03-12 11:46:53 +05:30
|
|
|
writeResponse(w, http.StatusOK, nil, mimeNone)
|
|
|
|
}
|