|
| 1 | +package sysx |
| 2 | + |
| 3 | +import ( |
| 4 | + "os" |
| 5 | + "path/filepath" |
| 6 | + |
| 7 | + "github.com/containerd/continuity/syscallx" |
| 8 | +) |
| 9 | + |
| 10 | +// Readlink returns the destination of the named symbolic link. |
| 11 | +// If there is an error, it will be of type *PathError. |
| 12 | +func Readlink(name string) (string, error) { |
| 13 | + for len := 128; ; len *= 2 { |
| 14 | + b := make([]byte, len) |
| 15 | + n, e := fixCount(syscallx.Readlink(fixLongPath(name), b)) |
| 16 | + if e != nil { |
| 17 | + return "", &os.PathError{Op: "readlink", Path: name, Err: e} |
| 18 | + } |
| 19 | + if n < len { |
| 20 | + return string(b[0:n]), nil |
| 21 | + } |
| 22 | + } |
| 23 | +} |
| 24 | + |
| 25 | +// Many functions in package syscall return a count of -1 instead of 0. |
| 26 | +// Using fixCount(call()) instead of call() corrects the count. |
| 27 | +func fixCount(n int, err error) (int, error) { |
| 28 | + if n < 0 { |
| 29 | + n = 0 |
| 30 | + } |
| 31 | + return n, err |
| 32 | +} |
| 33 | + |
| 34 | +// fixLongPath returns the extended-length (\\?\-prefixed) form of |
| 35 | +// path when needed, in order to avoid the default 260 character file |
| 36 | +// path limit imposed by Windows. If path is not easily converted to |
| 37 | +// the extended-length form (for example, if path is a relative path |
| 38 | +// or contains .. elements), or is short enough, fixLongPath returns |
| 39 | +// path unmodified. |
| 40 | +// |
| 41 | +// See https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#maxpath |
| 42 | +func fixLongPath(path string) string { |
| 43 | + // Do nothing (and don't allocate) if the path is "short". |
| 44 | + // Empirically (at least on the Windows Server 2013 builder), |
| 45 | + // the kernel is arbitrarily okay with < 248 bytes. That |
| 46 | + // matches what the docs above say: |
| 47 | + // "When using an API to create a directory, the specified |
| 48 | + // path cannot be so long that you cannot append an 8.3 file |
| 49 | + // name (that is, the directory name cannot exceed MAX_PATH |
| 50 | + // minus 12)." Since MAX_PATH is 260, 260 - 12 = 248. |
| 51 | + // |
| 52 | + // The MSDN docs appear to say that a normal path that is 248 bytes long |
| 53 | + // will work; empirically the path must be less then 248 bytes long. |
| 54 | + if len(path) < 248 { |
| 55 | + // Don't fix. (This is how Go 1.7 and earlier worked, |
| 56 | + // not automatically generating the \\?\ form) |
| 57 | + return path |
| 58 | + } |
| 59 | + |
| 60 | + // The extended form begins with \\?\, as in |
| 61 | + // \\?\c:\windows\foo.txt or \\?\UNC\server\share\foo.txt. |
| 62 | + // The extended form disables evaluation of . and .. path |
| 63 | + // elements and disables the interpretation of / as equivalent |
| 64 | + // to \. The conversion here rewrites / to \ and elides |
| 65 | + // . elements as well as trailing or duplicate separators. For |
| 66 | + // simplicity it avoids the conversion entirely for relative |
| 67 | + // paths or paths containing .. elements. For now, |
| 68 | + // \\server\share paths are not converted to |
| 69 | + // \\?\UNC\server\share paths because the rules for doing so |
| 70 | + // are less well-specified. |
| 71 | + if len(path) >= 2 && path[:2] == `\\` { |
| 72 | + // Don't canonicalize UNC paths. |
| 73 | + return path |
| 74 | + } |
| 75 | + if !filepath.IsAbs(path) { |
| 76 | + // Relative path |
| 77 | + return path |
| 78 | + } |
| 79 | + |
| 80 | + const prefix = `\\?` |
| 81 | + |
| 82 | + pathbuf := make([]byte, len(prefix)+len(path)+len(`\`)) |
| 83 | + copy(pathbuf, prefix) |
| 84 | + n := len(path) |
| 85 | + r, w := 0, len(prefix) |
| 86 | + for r < n { |
| 87 | + switch { |
| 88 | + case os.IsPathSeparator(path[r]): |
| 89 | + // empty block |
| 90 | + r++ |
| 91 | + case path[r] == '.' && (r+1 == n || os.IsPathSeparator(path[r+1])): |
| 92 | + // /./ |
| 93 | + r++ |
| 94 | + case r+1 < n && path[r] == '.' && path[r+1] == '.' && (r+2 == n || os.IsPathSeparator(path[r+2])): |
| 95 | + // /../ is currently unhandled |
| 96 | + return path |
| 97 | + default: |
| 98 | + pathbuf[w] = '\\' |
| 99 | + w++ |
| 100 | + for ; r < n && !os.IsPathSeparator(path[r]); r++ { |
| 101 | + pathbuf[w] = path[r] |
| 102 | + w++ |
| 103 | + } |
| 104 | + } |
| 105 | + } |
| 106 | + // A drive's root directory needs a trailing \ |
| 107 | + if w == len(`\\?\c:`) { |
| 108 | + pathbuf[w] = '\\' |
| 109 | + w++ |
| 110 | + } |
| 111 | + return string(pathbuf[:w]) |
| 112 | +} |
0 commit comments