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/>.
|
2019-11-13 15:17:45 -05:00
|
|
|
|
2021-05-11 05:11:29 -04:00
|
|
|
package dsync
|
2019-11-13 15:17:45 -05:00
|
|
|
|
|
|
|
import (
|
2022-01-18 15:44:38 -05:00
|
|
|
"bytes"
|
2020-07-30 02:15:34 -04:00
|
|
|
"context"
|
2022-01-18 15:44:38 -05:00
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
xhttp "github.com/minio/minio/internal/http"
|
|
|
|
"github.com/minio/minio/internal/rest"
|
2019-11-13 15:17:45 -05:00
|
|
|
)
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
// ReconnectRESTClient is a wrapper type for rest.Client which provides reconnect on first failure.
|
|
|
|
type ReconnectRESTClient struct {
|
|
|
|
u *url.URL
|
|
|
|
rest *rest.Client
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
// newClient constructs a ReconnectRESTClient object with addr and endpoint initialized.
|
2019-11-13 15:17:45 -05:00
|
|
|
// It _doesn't_ connect to the remote endpoint. See Call method to see when the
|
|
|
|
// connect happens.
|
2022-01-18 15:44:38 -05:00
|
|
|
func newClient(endpoint string) NetLocker {
|
|
|
|
u, err := url.Parse(endpoint)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tr := &http.Transport{
|
|
|
|
Proxy: http.ProxyFromEnvironment,
|
|
|
|
MaxIdleConnsPerHost: 1024,
|
|
|
|
WriteBufferSize: 32 << 10, // 32KiB moving up from 4KiB default
|
|
|
|
ReadBufferSize: 32 << 10, // 32KiB moving up from 4KiB default
|
|
|
|
IdleConnTimeout: 15 * time.Second,
|
|
|
|
ResponseHeaderTimeout: 15 * time.Minute, // Set conservative timeouts for MinIO internode.
|
|
|
|
TLSHandshakeTimeout: 15 * time.Second,
|
|
|
|
ExpectContinueTimeout: 15 * time.Second,
|
|
|
|
// Go net/http automatically unzip if content-type is
|
|
|
|
// gzip disable this feature, as we are always interested
|
|
|
|
// in raw stream.
|
|
|
|
DisableCompression: true,
|
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
return &ReconnectRESTClient{
|
|
|
|
u: u,
|
|
|
|
rest: rest.NewClient(u, tr, nil),
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-19 20:42:27 -05:00
|
|
|
// Close closes the underlying socket file descriptor.
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) IsOnline() bool {
|
|
|
|
// If rest client has not connected yet there is nothing to close.
|
|
|
|
return restClient.rest != nil
|
2019-11-19 20:42:27 -05:00
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) IsLocal() bool {
|
2020-10-08 15:32:32 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-11-13 15:17:45 -05:00
|
|
|
// Close closes the underlying socket file descriptor.
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) Close() error {
|
2022-01-18 15:44:38 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
errLockConflict = errors.New("lock conflict")
|
|
|
|
errLockNotFound = errors.New("lock not found")
|
|
|
|
)
|
|
|
|
|
|
|
|
func toLockError(err error) error {
|
|
|
|
if err == nil {
|
2019-11-13 15:17:45 -05:00
|
|
|
return nil
|
|
|
|
}
|
2022-01-18 15:44:38 -05:00
|
|
|
|
|
|
|
switch err.Error() {
|
|
|
|
case errLockConflict.Error():
|
|
|
|
return errLockConflict
|
|
|
|
case errLockNotFound.Error():
|
|
|
|
return errLockNotFound
|
|
|
|
}
|
|
|
|
return err
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
// Call makes a REST call to the remote endpoint using the msgp codec
|
|
|
|
func (restClient *ReconnectRESTClient) Call(method string, args LockArgs) (status bool, err error) {
|
2022-01-18 15:44:38 -05:00
|
|
|
buf, err := args.MarshalMsg(nil)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
2022-01-18 15:44:38 -05:00
|
|
|
body := bytes.NewReader(buf)
|
2022-01-20 12:36:09 -05:00
|
|
|
respBody, err := restClient.rest.Call(context.Background(), method,
|
2022-01-18 15:44:38 -05:00
|
|
|
url.Values{}, body, body.Size())
|
|
|
|
defer xhttp.DrainBody(respBody)
|
|
|
|
|
|
|
|
switch toLockError(err) {
|
|
|
|
case nil:
|
|
|
|
return true, nil
|
|
|
|
case errLockConflict, errLockNotFound:
|
|
|
|
return false, nil
|
|
|
|
default:
|
|
|
|
return false, err
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) RLock(ctx context.Context, args LockArgs) (status bool, err error) {
|
|
|
|
return restClient.Call("/v1/rlock", args)
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) Lock(ctx context.Context, args LockArgs) (status bool, err error) {
|
|
|
|
return restClient.Call("/v1/lock", args)
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) RUnlock(ctx context.Context, args LockArgs) (status bool, err error) {
|
|
|
|
return restClient.Call("/v1/runlock", args)
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) Unlock(ctx context.Context, args LockArgs) (status bool, err error) {
|
|
|
|
return restClient.Call("/v1/unlock", args)
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) Refresh(ctx context.Context, args LockArgs) (refreshed bool, err error) {
|
|
|
|
return restClient.Call("/v1/refresh", args)
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) ForceUnlock(ctx context.Context, args LockArgs) (reply bool, err error) {
|
|
|
|
return restClient.Call("/v1/force-unlock", args)
|
2021-01-25 13:01:27 -05:00
|
|
|
}
|
|
|
|
|
2022-01-20 12:36:09 -05:00
|
|
|
func (restClient *ReconnectRESTClient) String() string {
|
|
|
|
return restClient.u.String()
|
2019-11-13 15:17:45 -05:00
|
|
|
}
|