| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2015, 2016 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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-19 07:23:42 +08:00
										 |  |  | package cmd | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-17 05:21:52 +08:00
										 |  |  | import ( | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-29 06:13:15 +08:00
										 |  |  | // errUnexpected - unexpected error, requires manual intervention.
 | 
					
						
							|  |  |  | var errUnexpected = errors.New("Unexpected error, please report this issue at https://github.com/minio/minio/issues") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-20 17:22:22 +08:00
										 |  |  | // errCorruptedFormat - corrupted backend format.
 | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  | var errCorruptedFormat = errors.New("corrupted backend format, please join https://slack.min.io for assistance") | 
					
						
							| 
									
										
										
										
											2016-05-20 17:22:22 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // errUnformattedDisk - unformatted disk found.
 | 
					
						
							|  |  |  | var errUnformattedDisk = errors.New("unformatted disk found") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-19 17:42:10 +08:00
										 |  |  | // errDiskFull - cannot create volume or files when disk is full.
 | 
					
						
							| 
									
										
										
										
											2016-04-24 15:36:00 +08:00
										 |  |  | var errDiskFull = errors.New("disk path full") | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-12 02:38:46 +08:00
										 |  |  | // errDiskNotFound - cannot find the underlying configured disk anymore.
 | 
					
						
							| 
									
										
										
										
											2016-05-10 09:57:39 +08:00
										 |  |  | var errDiskNotFound = errors.New("disk not found") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-21 08:57:12 +08:00
										 |  |  | // errFaultyRemoteDisk - remote disk is faulty.
 | 
					
						
							|  |  |  | var errFaultyRemoteDisk = errors.New("remote disk is faulty") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // errFaultyDisk - disk is faulty.
 | 
					
						
							|  |  |  | var errFaultyDisk = errors.New("disk is faulty") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-02 16:59:28 +08:00
										 |  |  | // errDiskAccessDenied - we don't have write permissions on disk.
 | 
					
						
							|  |  |  | var errDiskAccessDenied = errors.New("disk access denied") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | // errFileNotFound - cannot find the file.
 | 
					
						
							| 
									
										
										
										
											2016-04-24 15:36:00 +08:00
										 |  |  | var errFileNotFound = errors.New("file not found") | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-02 22:09:57 +08:00
										 |  |  | // errTooManyOpenFiles - too many open files.
 | 
					
						
							|  |  |  | var errTooManyOpenFiles = errors.New("too many open files") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-12 03:55:02 +08:00
										 |  |  | // errFileNameTooLong - given file name is too long than supported length.
 | 
					
						
							|  |  |  | var errFileNameTooLong = errors.New("file name too long") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | // errVolumeExists - cannot create same volume again.
 | 
					
						
							| 
									
										
										
										
											2016-04-24 15:36:00 +08:00
										 |  |  | var errVolumeExists = errors.New("volume already exists") | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-24 15:36:00 +08:00
										 |  |  | // errIsNotRegular - not of regular file type.
 | 
					
						
							|  |  |  | var errIsNotRegular = errors.New("not of regular file type") | 
					
						
							| 
									
										
										
										
											2016-04-09 01:37:38 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // errVolumeNotFound - cannot find the volume.
 | 
					
						
							| 
									
										
										
										
											2016-04-24 15:36:00 +08:00
										 |  |  | var errVolumeNotFound = errors.New("volume not found") | 
					
						
							| 
									
										
										
										
											2016-04-14 02:32:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-17 03:48:41 +08:00
										 |  |  | // errVolumeNotEmpty - volume not empty.
 | 
					
						
							| 
									
										
										
										
											2016-04-24 15:36:00 +08:00
										 |  |  | var errVolumeNotEmpty = errors.New("volume is not empty") | 
					
						
							| 
									
										
										
										
											2016-04-17 03:48:41 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-03 07:34:15 +08:00
										 |  |  | // errVolumeAccessDenied - cannot access volume, insufficient permissions.
 | 
					
						
							| 
									
										
										
										
											2016-04-24 15:36:00 +08:00
										 |  |  | var errVolumeAccessDenied = errors.New("volume access denied") | 
					
						
							| 
									
										
										
										
											2016-04-14 02:32:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-21 04:06:53 +08:00
										 |  |  | // errFileAccessDenied - cannot access file, insufficient permissions.
 | 
					
						
							| 
									
										
										
										
											2016-04-24 15:36:00 +08:00
										 |  |  | var errFileAccessDenied = errors.New("file access denied") | 
					
						
							| 
									
										
										
										
											2017-05-17 05:21:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-02 04:12:15 +08:00
										 |  |  | // errFileCorrupt - file has an unexpected size, or is not readable
 | 
					
						
							|  |  |  | var errFileCorrupt = errors.New("file is corrupted") | 
					
						
							| 
									
										
										
										
											2019-07-13 07:29:44 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-21 04:06:53 +08:00
										 |  |  | // errFileParentIsFile - cannot have overlapping objects, parent is already a file.
 | 
					
						
							|  |  |  | var errFileParentIsFile = errors.New("parent is a file") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-17 05:21:52 +08:00
										 |  |  | // errBitrotHashAlgoInvalid - the algo for bit-rot hash
 | 
					
						
							|  |  |  | // verification is empty or invalid.
 | 
					
						
							|  |  |  | var errBitrotHashAlgoInvalid = errors.New("bit-rot hash algorithm is invalid") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-16 06:10:50 +08:00
										 |  |  | // errCrossDeviceLink - rename across devices not allowed.
 | 
					
						
							|  |  |  | var errCrossDeviceLink = errors.New("Rename across devices not allowed, please fix your backend configuration") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-29 03:01:05 +08:00
										 |  |  | // errMinDiskSize - cannot create volume or files when disk size is less than threshold.
 | 
					
						
							|  |  |  | var errMinDiskSize = errors.New("The disk size is less than the minimum threshold") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-07 06:14:08 +08:00
										 |  |  | // errLessData - returned when less data available than what was requested.
 | 
					
						
							|  |  |  | var errLessData = errors.New("less data available than what was requested") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-17 20:58:18 +08:00
										 |  |  | // errMoreData = returned when more data was sent by the caller than what it was supposed to.
 | 
					
						
							|  |  |  | var errMoreData = errors.New("more data was sent than what was advertised") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-02 04:12:15 +08:00
										 |  |  | // VerifyFileError represents error generated by VerifyFile posix call.
 | 
					
						
							|  |  |  | type VerifyFileError string | 
					
						
							| 
									
										
										
										
											2017-05-17 05:21:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-09 04:51:18 +08:00
										 |  |  | // Error method for the hashMismatchError
 | 
					
						
							| 
									
										
										
										
											2019-10-02 04:12:15 +08:00
										 |  |  | func (h VerifyFileError) Error() string { | 
					
						
							|  |  |  | 	return string(h) | 
					
						
							| 
									
										
										
										
											2017-05-17 05:21:52 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-26 03:58:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Collection of basic errors.
 | 
					
						
							|  |  |  | var baseErrs = []error{ | 
					
						
							|  |  |  | 	errDiskNotFound, | 
					
						
							|  |  |  | 	errFaultyDisk, | 
					
						
							|  |  |  | 	errFaultyRemoteDisk, | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var baseIgnoredErrs = baseErrs |