-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathagent_linux.go
More file actions
69 lines (56 loc) · 1.29 KB
/
agent_linux.go
File metadata and controls
69 lines (56 loc) · 1.29 KB
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
package main
import (
"fmt"
"io"
"log"
"net"
"os"
"os/signal"
"path/filepath"
"strconv"
"time"
"golang.org/x/crypto/ssh/agent"
)
func (s *SSHAgent) start() {
socketDir := s.getSocketDir()
socketFile := filepath.Join(socketDir, "agent.sock")
defer func() {
os.Remove(socketFile)
os.Remove(socketDir)
}()
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
go func() {
for range c {
os.Remove(socketFile)
os.Remove(socketDir)
os.Exit(0)
}
}()
l, err := net.Listen("unix", socketFile)
if err != nil {
log.Fatalln("Failed to listen on UNIX socket:", err)
}
fmt.Println("SSH_AUTH_SOCK=" + socketFile + "; export SSH_AUTH_SOCK;")
fmt.Println("SSH_AGENT_PID=" + strconv.Itoa(os.Getpid()) + "; export SSH_AGENT_PID;")
fmt.Println("echo Agent pid " + strconv.Itoa(os.Getpid()) + ";")
for {
c, err := l.Accept()
if err != nil {
type temporary interface {
Temporary() bool
}
if err, ok := err.(temporary); ok && err.Temporary() {
log.Println("Temporary Accept error, sleeping 1s:", err)
time.Sleep(1 * time.Second)
continue
}
log.Fatalln("Failed to accept connections:", err)
}
go func() {
if err := agent.ServeAgent(s, c); err != io.EOF {
log.Println("Agent client connection ended with error:", err)
}
}()
}
}