2016-04-12 15:45:15 -04:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage, (C) 2016 Minio, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-08-18 17:50:50 -04:00
|
|
|
package cmd
|
2016-04-12 15:45:15 -04:00
|
|
|
|
|
|
|
import (
|
2016-10-18 15:49:24 -04:00
|
|
|
"fmt"
|
2016-08-11 18:55:36 -04:00
|
|
|
"io"
|
2016-09-01 05:49:06 -04:00
|
|
|
"net"
|
|
|
|
"net/rpc"
|
2016-07-31 17:11:14 -04:00
|
|
|
"path"
|
2016-08-25 20:16:34 -04:00
|
|
|
|
|
|
|
"github.com/minio/minio/pkg/disk"
|
2016-04-12 15:45:15 -04:00
|
|
|
)
|
|
|
|
|
2016-05-05 15:51:56 -04:00
|
|
|
type networkStorage struct {
|
2016-08-11 00:09:31 -04:00
|
|
|
netAddr string
|
|
|
|
netPath string
|
2016-08-22 14:01:21 -04:00
|
|
|
rpcClient *AuthRPCClient
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2016-04-24 03:36:00 -04:00
|
|
|
storageRPCPath = reservedBucket + "/storage"
|
2016-04-12 15:45:15 -04:00
|
|
|
)
|
|
|
|
|
2016-04-16 15:48:41 -04:00
|
|
|
// Converts rpc.ServerError to underlying error. This function is
|
|
|
|
// written so that the storageAPI errors are consistent across network
|
|
|
|
// disks as well.
|
|
|
|
func toStorageErr(err error) error {
|
2016-08-11 22:32:04 -04:00
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2016-09-01 05:49:06 -04:00
|
|
|
|
|
|
|
switch err.(type) {
|
|
|
|
case *net.OpError:
|
|
|
|
return errDiskNotFound
|
|
|
|
}
|
|
|
|
|
2016-04-16 15:48:41 -04:00
|
|
|
switch err.Error() {
|
2016-08-11 18:55:36 -04:00
|
|
|
case io.EOF.Error():
|
|
|
|
return io.EOF
|
|
|
|
case io.ErrUnexpectedEOF.Error():
|
|
|
|
return io.ErrUnexpectedEOF
|
2016-09-01 05:49:06 -04:00
|
|
|
case rpc.ErrShutdown.Error():
|
|
|
|
return errDiskNotFound
|
2016-08-11 18:55:36 -04:00
|
|
|
case errUnexpected.Error():
|
|
|
|
return errUnexpected
|
2016-04-19 05:42:10 -04:00
|
|
|
case errDiskFull.Error():
|
|
|
|
return errDiskFull
|
2016-04-16 15:48:41 -04:00
|
|
|
case errVolumeNotFound.Error():
|
|
|
|
return errVolumeNotFound
|
|
|
|
case errVolumeExists.Error():
|
|
|
|
return errVolumeExists
|
|
|
|
case errFileNotFound.Error():
|
|
|
|
return errFileNotFound
|
2016-08-11 18:55:36 -04:00
|
|
|
case errFileNameTooLong.Error():
|
|
|
|
return errFileNameTooLong
|
|
|
|
case errFileAccessDenied.Error():
|
|
|
|
return errFileAccessDenied
|
2016-04-16 15:48:41 -04:00
|
|
|
case errIsNotRegular.Error():
|
|
|
|
return errIsNotRegular
|
|
|
|
case errVolumeNotEmpty.Error():
|
|
|
|
return errVolumeNotEmpty
|
|
|
|
case errVolumeAccessDenied.Error():
|
|
|
|
return errVolumeAccessDenied
|
2016-08-11 18:55:36 -04:00
|
|
|
case errCorruptedFormat.Error():
|
|
|
|
return errCorruptedFormat
|
|
|
|
case errUnformattedDisk.Error():
|
|
|
|
return errUnformattedDisk
|
2016-10-07 14:15:55 -04:00
|
|
|
case errInvalidAccessKeyID.Error():
|
|
|
|
return errInvalidAccessKeyID
|
|
|
|
case errAuthentication.Error():
|
|
|
|
return errAuthentication
|
|
|
|
case errServerVersionMismatch.Error():
|
|
|
|
return errServerVersionMismatch
|
|
|
|
case errServerTimeMismatch.Error():
|
|
|
|
return errServerTimeMismatch
|
2016-04-16 15:48:41 -04:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-04-29 17:24:10 -04:00
|
|
|
// Initialize new rpc client.
|
2016-10-18 15:49:24 -04:00
|
|
|
func newRPCClient(ep storageEndPoint) (StorageAPI, error) {
|
2016-04-12 15:45:15 -04:00
|
|
|
// Input validation.
|
2016-10-18 15:49:24 -04:00
|
|
|
if ep.host == "" || ep.port == 0 || ep.path == "" {
|
2016-04-12 15:45:15 -04:00
|
|
|
return nil, errInvalidArgument
|
|
|
|
}
|
|
|
|
|
2016-07-31 17:11:14 -04:00
|
|
|
// Dial minio rpc storage http path.
|
2016-10-18 15:49:24 -04:00
|
|
|
rpcPath := path.Join(storageRPCPath, ep.path)
|
|
|
|
rpcAddr := fmt.Sprintf("%s:%d", ep.host, ep.port)
|
|
|
|
|
2016-08-15 03:00:18 -04:00
|
|
|
// Initialize rpc client with network address and rpc path.
|
2016-08-22 14:01:21 -04:00
|
|
|
cred := serverConfig.GetCredential()
|
2016-08-24 13:14:14 -04:00
|
|
|
rpcClient := newAuthClient(&authConfig{
|
|
|
|
accessKey: cred.AccessKeyID,
|
|
|
|
secretKey: cred.SecretAccessKey,
|
2016-09-30 02:42:37 -04:00
|
|
|
secureConn: isSSL(),
|
2016-08-24 13:14:14 -04:00
|
|
|
address: rpcAddr,
|
|
|
|
path: rpcPath,
|
|
|
|
loginMethod: "Storage.LoginHandler",
|
|
|
|
})
|
2016-10-06 05:30:54 -04:00
|
|
|
|
2016-04-12 15:45:15 -04:00
|
|
|
// Initialize network storage.
|
2016-05-05 15:51:56 -04:00
|
|
|
ndisk := &networkStorage{
|
2016-10-18 15:49:24 -04:00
|
|
|
netAddr: ep.host,
|
|
|
|
netPath: ep.path,
|
2016-08-11 00:09:31 -04:00
|
|
|
rpcClient: rpcClient,
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns successfully here.
|
|
|
|
return ndisk, nil
|
|
|
|
}
|
|
|
|
|
2016-10-05 15:48:07 -04:00
|
|
|
// Stringer interface compatible representation of network device.
|
|
|
|
func (n networkStorage) String() string {
|
|
|
|
return n.netAddr + ":" + n.netPath
|
|
|
|
}
|
|
|
|
|
2016-08-25 20:16:34 -04:00
|
|
|
// DiskInfo - fetch disk information for a remote disk.
|
|
|
|
func (n networkStorage) DiskInfo() (info disk.Info, err error) {
|
|
|
|
args := GenericArgs{}
|
|
|
|
if err = n.rpcClient.Call("Storage.DiskInfoHandler", &args, &info); err != nil {
|
|
|
|
return disk.Info{}, err
|
|
|
|
}
|
|
|
|
return info, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MakeVol - create a volume on a remote disk.
|
2016-05-05 15:51:56 -04:00
|
|
|
func (n networkStorage) MakeVol(volume string) error {
|
2016-04-12 15:45:15 -04:00
|
|
|
reply := GenericReply{}
|
2016-08-23 22:19:24 -04:00
|
|
|
args := GenericVolArgs{Vol: volume}
|
2016-08-22 14:01:21 -04:00
|
|
|
if err := n.rpcClient.Call("Storage.MakeVolHandler", &args, &reply); err != nil {
|
2016-04-16 15:48:41 -04:00
|
|
|
return toStorageErr(err)
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-08-25 20:16:34 -04:00
|
|
|
// ListVols - List all volumes on a remote disk.
|
2016-05-05 15:51:56 -04:00
|
|
|
func (n networkStorage) ListVols() (vols []VolInfo, err error) {
|
2016-04-12 15:45:15 -04:00
|
|
|
ListVols := ListVolsReply{}
|
2016-08-23 22:19:24 -04:00
|
|
|
err = n.rpcClient.Call("Storage.ListVolsHandler", &GenericArgs{}, &ListVols)
|
2016-04-12 15:45:15 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return ListVols.Vols, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// StatVol - get current Stat volume info.
|
2016-05-05 15:51:56 -04:00
|
|
|
func (n networkStorage) StatVol(volume string) (volInfo VolInfo, err error) {
|
2016-08-23 22:19:24 -04:00
|
|
|
args := GenericVolArgs{Vol: volume}
|
2016-08-22 14:01:21 -04:00
|
|
|
if err = n.rpcClient.Call("Storage.StatVolHandler", &args, &volInfo); err != nil {
|
2016-04-16 15:48:41 -04:00
|
|
|
return VolInfo{}, toStorageErr(err)
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
return volInfo, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteVol - Delete a volume.
|
2016-05-05 15:51:56 -04:00
|
|
|
func (n networkStorage) DeleteVol(volume string) error {
|
2016-04-12 15:45:15 -04:00
|
|
|
reply := GenericReply{}
|
2016-08-23 22:19:24 -04:00
|
|
|
args := GenericVolArgs{Vol: volume}
|
2016-08-22 14:01:21 -04:00
|
|
|
if err := n.rpcClient.Call("Storage.DeleteVolHandler", &args, &reply); err != nil {
|
2016-04-16 15:48:41 -04:00
|
|
|
return toStorageErr(err)
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// File operations.
|
|
|
|
|
|
|
|
// CreateFile - create file.
|
2016-06-19 18:31:13 -04:00
|
|
|
func (n networkStorage) AppendFile(volume, path string, buffer []byte) (err error) {
|
|
|
|
reply := GenericReply{}
|
2016-08-22 14:01:21 -04:00
|
|
|
if err = n.rpcClient.Call("Storage.AppendFileHandler", &AppendFileArgs{
|
2016-08-23 22:19:24 -04:00
|
|
|
Vol: volume,
|
|
|
|
Path: path,
|
|
|
|
Buffer: buffer,
|
2016-06-19 18:31:13 -04:00
|
|
|
}, &reply); err != nil {
|
|
|
|
return toStorageErr(err)
|
2016-05-28 18:13:15 -04:00
|
|
|
}
|
2016-06-19 18:31:13 -04:00
|
|
|
return nil
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// StatFile - get latest Stat information for a file at path.
|
2016-05-05 15:51:56 -04:00
|
|
|
func (n networkStorage) StatFile(volume, path string) (fileInfo FileInfo, err error) {
|
2016-08-22 14:01:21 -04:00
|
|
|
if err = n.rpcClient.Call("Storage.StatFileHandler", &StatFileArgs{
|
2016-08-23 22:19:24 -04:00
|
|
|
Vol: volume,
|
|
|
|
Path: path,
|
2016-04-12 15:45:15 -04:00
|
|
|
}, &fileInfo); err != nil {
|
2016-04-16 15:48:41 -04:00
|
|
|
return FileInfo{}, toStorageErr(err)
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
return fileInfo, nil
|
|
|
|
}
|
|
|
|
|
2016-06-27 01:05:48 -04:00
|
|
|
// ReadAll - reads entire contents of the file at path until EOF, returns the
|
2016-06-25 17:51:06 -04:00
|
|
|
// contents in a byte slice. Returns buf == nil if err != nil.
|
|
|
|
// This API is meant to be used on files which have small memory footprint, do
|
|
|
|
// not use this on large files as it would cause server to crash.
|
|
|
|
func (n networkStorage) ReadAll(volume, path string) (buf []byte, err error) {
|
2016-08-22 14:01:21 -04:00
|
|
|
if err = n.rpcClient.Call("Storage.ReadAllHandler", &ReadAllArgs{
|
2016-08-23 22:19:24 -04:00
|
|
|
Vol: volume,
|
|
|
|
Path: path,
|
2016-06-25 17:51:06 -04:00
|
|
|
}, &buf); err != nil {
|
|
|
|
return nil, toStorageErr(err)
|
|
|
|
}
|
|
|
|
return buf, nil
|
|
|
|
}
|
|
|
|
|
2016-04-12 15:45:15 -04:00
|
|
|
// ReadFile - reads a file.
|
2016-05-28 18:13:15 -04:00
|
|
|
func (n networkStorage) ReadFile(volume string, path string, offset int64, buffer []byte) (m int64, err error) {
|
2016-08-11 22:32:04 -04:00
|
|
|
var result []byte
|
2016-08-22 14:01:21 -04:00
|
|
|
err = n.rpcClient.Call("Storage.ReadFileHandler", &ReadFileArgs{
|
2016-08-23 22:19:24 -04:00
|
|
|
Vol: volume,
|
|
|
|
Path: path,
|
|
|
|
Offset: offset,
|
|
|
|
Size: len(buffer),
|
2016-08-11 22:32:04 -04:00
|
|
|
}, &result)
|
|
|
|
// Copy results to buffer.
|
|
|
|
copy(buffer, result)
|
|
|
|
// Return length of result, err if any.
|
|
|
|
return int64(len(result)), toStorageErr(err)
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
|
2016-05-05 15:51:56 -04:00
|
|
|
// ListDir - list all entries at prefix.
|
|
|
|
func (n networkStorage) ListDir(volume, path string) (entries []string, err error) {
|
2016-08-22 14:01:21 -04:00
|
|
|
if err = n.rpcClient.Call("Storage.ListDirHandler", &ListDirArgs{
|
2016-08-23 22:19:24 -04:00
|
|
|
Vol: volume,
|
|
|
|
Path: path,
|
2016-05-05 15:51:56 -04:00
|
|
|
}, &entries); err != nil {
|
|
|
|
return nil, toStorageErr(err)
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
2016-04-16 15:48:41 -04:00
|
|
|
// Return successfully unmarshalled results.
|
2016-05-05 15:51:56 -04:00
|
|
|
return entries, nil
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteFile - Delete a file at path.
|
2016-05-05 15:51:56 -04:00
|
|
|
func (n networkStorage) DeleteFile(volume, path string) (err error) {
|
2016-04-12 15:45:15 -04:00
|
|
|
reply := GenericReply{}
|
2016-08-22 14:01:21 -04:00
|
|
|
if err = n.rpcClient.Call("Storage.DeleteFileHandler", &DeleteFileArgs{
|
2016-08-23 22:19:24 -04:00
|
|
|
Vol: volume,
|
|
|
|
Path: path,
|
2016-04-12 15:45:15 -04:00
|
|
|
}, &reply); err != nil {
|
2016-04-16 15:48:41 -04:00
|
|
|
return toStorageErr(err)
|
2016-04-12 15:45:15 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2016-04-29 15:17:48 -04:00
|
|
|
|
|
|
|
// RenameFile - Rename file.
|
2016-05-05 15:51:56 -04:00
|
|
|
func (n networkStorage) RenameFile(srcVolume, srcPath, dstVolume, dstPath string) (err error) {
|
2016-05-02 06:12:18 -04:00
|
|
|
reply := GenericReply{}
|
2016-08-22 14:01:21 -04:00
|
|
|
if err = n.rpcClient.Call("Storage.RenameFileHandler", &RenameFileArgs{
|
2016-08-23 22:19:24 -04:00
|
|
|
SrcVol: srcVolume,
|
|
|
|
SrcPath: srcPath,
|
|
|
|
DstVol: dstVolume,
|
|
|
|
DstPath: dstPath,
|
2016-05-02 06:12:18 -04:00
|
|
|
}, &reply); err != nil {
|
|
|
|
return toStorageErr(err)
|
|
|
|
}
|
|
|
|
return nil
|
2016-04-29 15:17:48 -04:00
|
|
|
}
|