executable_path.go 2.3 KB
Newer Older
1 2 3 4
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

5
// +build aix openbsd
6 7 8 9 10 11 12 13 14 15 16 17 18 19

package os

// We query the working directory at init, to use it later to search for the
// executable file
// errWd will be checked later, if we need to use initWd
var initWd, errWd = Getwd()

func executable() (string, error) {
	var exePath string
	if len(Args) == 0 || Args[0] == "" {
		return "", ErrNotExist
	}
	if IsPathSeparator(Args[0][0]) {
20 21
		// Args[0] is an absolute path, so it is the executable.
		// Note that we only need to worry about Unix paths here.
22 23 24 25
		exePath = Args[0]
	} else {
		for i := 1; i < len(Args[0]); i++ {
			if IsPathSeparator(Args[0][i]) {
26 27
				// Args[0] is a relative path: prepend the
				// initial working directory.
28 29 30 31 32 33 34 35 36
				if errWd != nil {
					return "", errWd
				}
				exePath = initWd + string(PathSeparator) + Args[0]
				break
			}
		}
	}
	if exePath != "" {
37 38
		if err := isExecutable(exePath); err != nil {
			return "", err
39
		}
40
		return exePath, nil
41
	}
42
	// Search for executable in $PATH.
43 44
	for _, dir := range splitPathList(Getenv("PATH")) {
		if len(dir) == 0 {
45
			dir = "."
46 47 48 49 50 51 52 53
		}
		if !IsPathSeparator(dir[0]) {
			if errWd != nil {
				return "", errWd
			}
			dir = initWd + string(PathSeparator) + dir
		}
		exePath = dir + string(PathSeparator) + Args[0]
54 55
		switch isExecutable(exePath) {
		case nil:
56
			return exePath, nil
57 58
		case ErrPermission:
			return "", ErrPermission
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
		}
	}
	return "", ErrNotExist
}

// isExecutable returns an error if a given file is not an executable.
func isExecutable(path string) error {
	stat, err := Stat(path)
	if err != nil {
		return err
	}
	mode := stat.Mode()
	if !mode.IsRegular() {
		return ErrPermission
	}
74 75
	if (mode & 0111) == 0 {
		return ErrPermission
76
	}
77
	return nil
78 79 80 81 82
}

// splitPathList splits a path list.
// This is based on genSplit from strings/strings.go
func splitPathList(pathList string) []string {
83 84 85
	if pathList == "" {
		return nil
	}
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
	n := 1
	for i := 0; i < len(pathList); i++ {
		if pathList[i] == PathListSeparator {
			n++
		}
	}
	start := 0
	a := make([]string, n)
	na := 0
	for i := 0; i+1 <= len(pathList) && na+1 < n; i++ {
		if pathList[i] == PathListSeparator {
			a[na] = pathList[start:i]
			na++
			start = i + 1
		}
	}
	a[na] = pathList[start:]
	return a[:na+1]
}