-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwsl-ssh-pageant.go
146 lines (115 loc) · 3.54 KB
/
wsl-ssh-pageant.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package main
import (
"bufio"
"encoding/binary"
"errors"
"fmt"
"io"
"log"
"os"
"sync"
"syscall"
"unsafe"
)
const (
wmCopyData = 0x004A // WM_COPYDATA
maxMessageLength = 8192
copyDataID = uintptr(0x804e50ba)
)
var (
// Windows DLLs
user32 = syscall.NewLazyDLL("User32.dll")
kernel32 = syscall.NewLazyDLL("kernel32.dll")
// Win32 API imports
findWindow = user32.NewProc("FindWindowW")
getCurrentThreadID = kernel32.NewProc("GetCurrentThreadId")
createFileMapping = kernel32.NewProc("CreateFileMapping")
sendMessage = user32.NewProc("SendMessageW")
queryLock sync.Mutex
)
type copyDataStruct struct {
dwData uintptr
cbData uint32
lpData unsafe.Pointer
}
func query(buffer []byte) ([]byte, error) {
queryLock.Lock()
defer queryLock.Unlock()
// fetch the Pageant window.
hwnd, _, err := findWindow.Call(0, uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr("Pageant"))))
if hwnd == 0 {
return nil, errors.New("PuTTY Pageant is not running")
}
// var mapName = String.Format("PageantRequest{0:x8}", GetCurrentThreadId());
threadID, _, _ := getCurrentThreadID.Call()
mapName := fmt.Sprintf("PageantRequest%08x", threadID)
pMapName, _ := syscall.UTF16PtrFromString(mapName)
mmap, err := syscall.CreateFileMapping(syscall.InvalidHandle, nil, syscall.PAGE_READWRITE, 0, maxMessageLength+4, pMapName)
if err != nil {
return nil, err
}
defer syscall.CloseHandle(mmap)
ptr, err := syscall.MapViewOfFile(mmap, syscall.FILE_MAP_WRITE, 0, 0, 0)
if err != nil {
return nil, err
}
defer syscall.UnmapViewOfFile(ptr)
mmSlice := (*(*[maxMessageLength + 4]byte)(unsafe.Pointer(ptr)))[:]
// Write our query to the shared memeory
copy(mmSlice, buffer)
mapNameBytes := append([]byte(mapName), 0)
cds := copyDataStruct{
dwData: copyDataID,
cbData: uint32(len(mapNameBytes)),
lpData: unsafe.Pointer(&mapNameBytes[0]),
}
// Inform pageant of the share memory file name
resp, _, err := sendMessage.Call(hwnd, wmCopyData, 0, uintptr(unsafe.Pointer(&cds)))
if resp == 0 {
return nil, os.NewSyscallError(sendMessage.Name, errors.New("Pageant was not informed of our query"))
}
responseLen := binary.BigEndian.Uint32(mmSlice[:4])
if responseLen > maxMessageLength {
return nil, errors.New("Reponse from pagent too large")
}
response := make([]byte, responseLen+4)
copy(response, mmSlice)
return response, nil
}
func main() {
inReader := bufio.NewReader(os.Stdin)
defer os.Stdin.Close()
for true {
// Get the 4 byte length from stdin.
header := make([]byte, 4)
_, err := inReader.Read(header)
if err == io.EOF {
// No More input, exit gracefully
break
}
if err != nil {
log.Fatal(err)
}
inputLength := binary.BigEndian.Uint32(header)
if inputLength > maxMessageLength {
os.Stderr.WriteString("Request message too large")
// Return an empty reponse
os.Stdout.Write([]byte{0x00, 0x00, 0x00, 0x05, 0x0c, 0x00, 0x00, 0x00, 0x00})
}
data := make([]byte, inputLength)
_, err = inReader.Read(data)
if err != nil {
os.Stderr.WriteString(fmt.Sprintln(err))
// Return an empty reponse
os.Stdout.Write([]byte{0x00, 0x00, 0x00, 0x05, 0x0c, 0x00, 0x00, 0x00, 0x00})
}
data = append(header, data...)
msg, err := query(data)
if err != nil {
os.Stderr.WriteString(fmt.Sprintln(err))
// Return an empty reponse
os.Stdout.Write([]byte{0x00, 0x00, 0x00, 0x05, 0x0c, 0x00, 0x00, 0x00, 0x00})
}
os.Stdout.Write(msg)
}
}