1
1
package shell
2
2
3
3
import (
4
- "fmt"
5
- "math"
6
- "os"
7
- "path/filepath"
8
4
"sort"
9
5
"strconv"
10
6
"strings"
11
- "syscall"
12
- "unsafe "
7
+
8
+ crcstrings "github.com/crc-org/crc/v2/pkg/strings "
13
9
14
10
"github.com/crc-org/crc/v2/pkg/crc/logging"
15
11
)
16
12
17
13
var (
18
- supportedShell = []string {"cmd" , "powershell" , "bash" , "zsh" , "fish" }
14
+ supportedShell = []string {"cmd" , "powershell" , "wsl" , " bash" , "zsh" , "fish" }
19
15
)
20
16
21
- // re-implementation of private function in https://github.com/golang/go/blob/master/src/syscall/syscall_windows.go
22
- func getProcessEntry (pid uint32 ) (pe * syscall.ProcessEntry32 , err error ) {
23
- snapshot , err := syscall .CreateToolhelp32Snapshot (syscall .TH32CS_SNAPPROCESS , 0 )
24
- if err != nil {
25
- return nil , err
26
- }
27
- defer func () {
28
- _ = syscall .CloseHandle (syscall .Handle (snapshot ))
29
- }()
30
-
31
- var processEntry syscall.ProcessEntry32
32
- processEntry .Size = uint32 (unsafe .Sizeof (processEntry ))
33
- err = syscall .Process32First (snapshot , & processEntry )
34
- if err != nil {
35
- return nil , err
36
- }
37
-
38
- for {
39
- if processEntry .ProcessID == pid {
40
- pe = & processEntry
41
- return
42
- }
43
-
44
- err = syscall .Process32Next (snapshot , & processEntry )
45
- if err != nil {
46
- return nil , err
47
- }
48
- }
49
- }
50
-
51
- // getNameAndItsPpid returns the exe file name its parent process id.
52
- func getNameAndItsPpid (pid uint32 ) (exefile string , parentid uint32 , err error ) {
53
- pe , err := getProcessEntry (pid )
54
- if err != nil {
55
- return "" , 0 , err
56
- }
57
-
58
- name := syscall .UTF16ToString (pe .ExeFile [:])
59
- return name , pe .ParentProcessID , nil
60
- }
61
-
62
17
func shellType (shell string , defaultShell string ) string {
63
18
switch {
64
19
case strings .Contains (strings .ToLower (shell ), "powershell" ):
@@ -69,39 +24,15 @@ func shellType(shell string, defaultShell string) string {
69
24
return "cmd"
70
25
case strings .Contains (strings .ToLower (shell ), "wsl" ):
71
26
return detectShellByInvokingCommand ("bash" , "wsl" , []string {"-e" , "bash" , "-c" , "ps -ao pid=,comm=" })
72
- case filepath . IsAbs ( shell ) && strings .Contains (strings .ToLower (shell ), "bash" ):
27
+ case strings .Contains (strings .ToLower (shell ), "bash" ):
73
28
return "bash"
74
29
default :
75
30
return defaultShell
76
31
}
77
32
}
78
33
79
34
func detect () (string , error ) {
80
- shell := os .Getenv ("SHELL" )
81
-
82
- if shell == "" {
83
- pid := os .Getppid ()
84
- if pid < 0 || pid > math .MaxUint32 {
85
- return "" , fmt .Errorf ("integer overflow for pid: %v" , pid )
86
- }
87
- shell , shellppid , err := getNameAndItsPpid (uint32 (pid ))
88
- if err != nil {
89
- return "cmd" , err // defaulting to cmd
90
- }
91
- shell = shellType (shell , "" )
92
- if shell == "" {
93
- shell , _ , err := getNameAndItsPpid (shellppid )
94
- if err != nil {
95
- return "cmd" , err // defaulting to cmd
96
- }
97
- return shellType (shell , "cmd" ), nil
98
- }
99
- return shell , nil
100
- }
101
-
102
- if os .Getenv ("__fish_bin_dir" ) != "" {
103
- return "fish" , nil
104
- }
35
+ shell := detectShellByCheckingProcessTree (currentProcessSupplier ())
105
36
106
37
return shellType (shell , "cmd" ), nil
107
38
}
@@ -163,9 +94,9 @@ func inspectProcessOutputForRecentlyUsedShell(psCommandOutput string) string {
163
94
lines := strings .Split (psCommandOutput , "\n " )
164
95
for _ , line := range lines {
165
96
lineParts := strings .Split (strings .TrimSpace (line ), " " )
166
- if len (lineParts ) == 2 && ( strings . Contains ( lineParts [1 ], "zsh" ) ||
167
- strings .Contains ( lineParts [ 1 ], "bash" ) ||
168
- strings . Contains ( lineParts [ 1 ], "fish" ) ) {
97
+ if len (lineParts ) == 2 && crcstrings . IsPresentInListSatisfying ( supportedShell , lineParts [1 ], func ( listElem string , toMatch string ) bool {
98
+ return strings .HasPrefix ( toMatch , listElem )
99
+ } ) {
169
100
parsedProcessID , err := strconv .Atoi (lineParts [0 ])
170
101
if err == nil {
171
102
processOutputs = append (processOutputs , ProcessOutput {
0 commit comments