Skip to content

Commit 4d3124c

Browse files
committed
cmd: read environment variables from generic function
Signed-off-by: Morten Linderud <[email protected]>
1 parent 9142325 commit 4d3124c

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

cmd/ssh-tpm-add/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func main() {
5050
flag.StringVar(&user, "user", "", "remote ssh user")
5151
flag.Parse()
5252

53-
socket := os.Getenv("SSH_TPM_AUTH_SOCK")
53+
socket := utils.EnvSocketPath("")
5454
if socket == "" {
5555
fmt.Println("Can't find any ssh-tpm-agent socket.")
5656
os.Exit(1)

cmd/ssh-tpm-agent/main.go

+1-15
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import (
99
"net"
1010
"os"
1111
"os/signal"
12-
"path"
1312
"path/filepath"
1413
"syscall"
1514

@@ -112,22 +111,9 @@ func main() {
112111
noCache bool
113112
)
114113

115-
envSocketPath := func() string {
116-
// Find a default socket name from ssh-tpm-agent.service
117-
if val, ok := os.LookupEnv("SSH_TPM_AUTH_SOCK"); ok && socketPath == "" {
118-
return val
119-
}
120-
121-
dir := os.Getenv("XDG_RUNTIME_DIR")
122-
if dir == "" {
123-
dir = "/var/tmp"
124-
}
125-
return path.Join(dir, "ssh-tpm-agent.sock")
126-
}()
127-
128114
var sockets SocketSet
129115

130-
flag.StringVar(&socketPath, "l", envSocketPath, "path of the UNIX socket to listen on")
116+
flag.StringVar(&socketPath, "l", func(s string) string { return utils.EnvSocketPath(s) }(socketPath), "path of the UNIX socket to listen on")
131117
flag.Var(&sockets, "A", "fallback ssh-agent sockets")
132118
flag.BoolVar(&swtpmFlag, "swtpm", false, "use swtpm instead of actual tpm")
133119
flag.BoolVar(&printSocketFlag, "print-socket", false, "print path of UNIX socket to stdout")

utils/tpm.go

+13
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,16 @@ func TPM(f bool) (transport.TPMCloser, error) {
8080
}
8181
return tpm, nil
8282
}
83+
84+
func EnvSocketPath(socketPath string) string {
85+
// Find a default socket name from ssh-tpm-agent.service
86+
if val, ok := os.LookupEnv("SSH_TPM_AUTH_SOCK"); ok && socketPath == "" {
87+
return val
88+
}
89+
90+
dir := os.Getenv("XDG_RUNTIME_DIR")
91+
if dir == "" {
92+
dir = "/var/tmp"
93+
}
94+
return path.Join(dir, "ssh-tpm-agent.sock")
95+
}

0 commit comments

Comments
 (0)