| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | // +build windows
 | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2016-2020 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +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-05 08:27:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2020-09-02 00:33:16 +08:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +08:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 	"syscall" | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-29 23:07:23 +08:00
										 |  |  | func access(name string) error { | 
					
						
							|  |  |  | 	_, err := os.Lstat(name) | 
					
						
							|  |  |  | 	return err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 03:51:56 +08:00
										 |  |  | // Return all the entries at the directory dirPath.
 | 
					
						
							|  |  |  | func readDir(dirPath string) (entries []string, err error) { | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 	return readDirN(dirPath, -1) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-18 07:34:42 +08:00
										 |  |  | // readDirFn applies the fn() function on each entries at dirPath, doesn't recurse into
 | 
					
						
							|  |  |  | // the directory itself, if the dirPath doesn't exist this function doesn't return
 | 
					
						
							|  |  |  | // an error.
 | 
					
						
							|  |  |  | func readDirFn(dirPath string, filter func(name string, typ os.FileMode) error) error { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	f, err := os.Open(dirPath) | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2021-02-18 07:34:42 +08:00
										 |  |  | 		if osErrToFileErr(err) == errFileNotFound { | 
					
						
							|  |  |  | 			return nil | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		return osErrToFileErr(err) | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	defer f.Close() | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 	// Check if file or dir. This is the quickest way.
 | 
					
						
							|  |  |  | 	// Do not remove this check, on windows syscall.FindNextFile
 | 
					
						
							|  |  |  | 	// would throw an exception if Fd() points to a file
 | 
					
						
							|  |  |  | 	// instead of a directory, we need to quickly fail
 | 
					
						
							|  |  |  | 	// in such situations - this workadound is expected.
 | 
					
						
							|  |  |  | 	if _, err = f.Seek(0, io.SeekStart); err == nil { | 
					
						
							|  |  |  | 		return errFileNotFound | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 	data := &syscall.Win32finddata{} | 
					
						
							|  |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		e := syscall.FindNextFile(syscall.Handle(f.Fd()), data) | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 		if e != nil { | 
					
						
							|  |  |  | 			if e == syscall.ERROR_NO_MORE_FILES { | 
					
						
							|  |  |  | 				break | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2021-02-18 07:34:42 +08:00
										 |  |  | 				if isSysErrPathNotFound(e) { | 
					
						
							|  |  |  | 					return nil | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2021-02-24 16:14:16 +08:00
										 |  |  | 				err = osErrToFileErr(&os.PathError{ | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 					Op:   "FindNextFile", | 
					
						
							|  |  |  | 					Path: dirPath, | 
					
						
							|  |  |  | 					Err:  e, | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2021-02-24 16:14:16 +08:00
										 |  |  | 				if err == errFileNotFound { | 
					
						
							|  |  |  | 					return nil | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				return err | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		name := syscall.UTF16ToString(data.FileName[0:]) | 
					
						
							|  |  |  | 		if name == "" || name == "." || name == ".." { // Useless names
 | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 		var typ os.FileMode = 0 // regular file
 | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 		switch { | 
					
						
							|  |  |  | 		case data.FileAttributes&syscall.FILE_ATTRIBUTE_REPARSE_POINT != 0: | 
					
						
							|  |  |  | 			// Reparse point is a symlink
 | 
					
						
							|  |  |  | 			fi, err := os.Stat(pathJoin(dirPath, string(name))) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				// It got deleted in the meantime, not found
 | 
					
						
							|  |  |  | 				// or returns too many symlinks ignore this
 | 
					
						
							|  |  |  | 				// file/directory.
 | 
					
						
							|  |  |  | 				if osIsNotExist(err) || isSysErrPathNotFound(err) || | 
					
						
							|  |  |  | 					isSysErrTooManySymlinks(err) { | 
					
						
							|  |  |  | 					continue | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				return err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if fi.IsDir() { | 
					
						
							|  |  |  | 				// Ignore symlinked directories.
 | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			typ = fi.Mode() | 
					
						
							|  |  |  | 		case data.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0: | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 			typ = os.ModeDir | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		if e = filter(name, typ); e == errDoneForNow { | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | 			// filtering requested to return by caller.
 | 
					
						
							|  |  |  | 			return nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-18 07:34:42 +08:00
										 |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2020-04-24 03:26:13 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | // Return N entries at the directory dirPath. If count is -1, return all entries
 | 
					
						
							|  |  |  | func readDirN(dirPath string, count int) (entries []string, err error) { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	f, err := os.Open(dirPath) | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		return nil, osErrToFileErr(err) | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 	defer f.Close() | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 00:33:16 +08:00
										 |  |  | 	// Check if file or dir. This is the quickest way.
 | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 	// Do not remove this check, on windows syscall.FindNextFile
 | 
					
						
							|  |  |  | 	// would throw an exception if Fd() points to a file
 | 
					
						
							|  |  |  | 	// instead of a directory, we need to quickly fail
 | 
					
						
							|  |  |  | 	// in such situations - this workadound is expected.
 | 
					
						
							|  |  |  | 	if _, err = f.Seek(0, io.SeekStart); err == nil { | 
					
						
							| 
									
										
										
										
											2020-09-02 00:33:16 +08:00
										 |  |  | 		return nil, errFileNotFound | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 	data := &syscall.Win32finddata{} | 
					
						
							| 
									
										
										
										
											2020-09-02 00:33:16 +08:00
										 |  |  | 	handle := syscall.Handle(f.Fd()) | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-09 23:54:11 +08:00
										 |  |  | 	for count != 0 { | 
					
						
							| 
									
										
										
										
											2020-09-02 00:33:16 +08:00
										 |  |  | 		e := syscall.FindNextFile(handle, data) | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 		if e != nil { | 
					
						
							|  |  |  | 			if e == syscall.ERROR_NO_MORE_FILES { | 
					
						
							| 
									
										
										
										
											2016-04-09 02:46:03 +08:00
										 |  |  | 				break | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 				return nil, osErrToFileErr(&os.PathError{ | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 					Op:   "FindNextFile", | 
					
						
							|  |  |  | 					Path: dirPath, | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 					Err:  e, | 
					
						
							|  |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2016-04-09 02:46:03 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-06-10 00:44:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 		name := syscall.UTF16ToString(data.FileName[0:]) | 
					
						
							| 
									
										
										
										
											2019-08-09 23:54:11 +08:00
										 |  |  | 		if name == "" || name == "." || name == ".." { // Useless names
 | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 			continue | 
					
						
							| 
									
										
										
										
											2018-05-09 10:08:21 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 		switch { | 
					
						
							|  |  |  | 		case data.FileAttributes&syscall.FILE_ATTRIBUTE_REPARSE_POINT != 0: | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 			// Reparse point is a symlink
 | 
					
						
							|  |  |  | 			fi, err := os.Stat(pathJoin(dirPath, string(name))) | 
					
						
							|  |  |  | 			if err != nil { | 
					
						
							|  |  |  | 				// It got deleted in the meantime, not found
 | 
					
						
							|  |  |  | 				// or returns too many symlinks ignore this
 | 
					
						
							|  |  |  | 				// file/directory.
 | 
					
						
							|  |  |  | 				if osIsNotExist(err) || isSysErrPathNotFound(err) || | 
					
						
							|  |  |  | 					isSysErrTooManySymlinks(err) { | 
					
						
							|  |  |  | 					continue | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				return nil, err | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if fi.IsDir() { | 
					
						
							|  |  |  | 				// directory symlinks are ignored.
 | 
					
						
							|  |  |  | 				continue | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 		case data.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0: | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 			name = name + SlashSeparator | 
					
						
							| 
									
										
										
										
											2018-08-10 05:52:29 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-09 23:54:11 +08:00
										 |  |  | 		count-- | 
					
						
							| 
									
										
										
										
											2021-02-20 16:30:12 +08:00
										 |  |  | 		entries = append(entries, name) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-09 02:46:03 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 10:31:53 +08:00
										 |  |  | 	return entries, nil | 
					
						
							| 
									
										
										
										
											2016-04-05 08:27:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-06-13 11:04:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | func globalSync() { | 
					
						
							|  |  |  | 	// no-op on windows
 | 
					
						
							|  |  |  | } |