internal/git/gitcmd/ssh.go (43 lines of code) (raw):
package gitcmd
import (
"context"
"fmt"
"os"
"path/filepath"
"strings"
"gitlab.com/gitlab-org/gitaly/v16/internal/gitaly/storage/mode"
"gitlab.com/gitlab-org/gitaly/v16/internal/log"
)
// BuildSSHInvocation builds a command line to invoke SSH with the provided key and known hosts.
// Both are optional.
func BuildSSHInvocation(ctx context.Context, logger log.Logger, sshKey, knownHosts string) (string, func(), error) {
const sshCommand = "ssh"
if sshKey == "" && knownHosts == "" {
return sshCommand, func() {}, nil
}
tmpDir, err := os.MkdirTemp("", "gitaly-ssh-invocation")
if err != nil {
return "", func() {}, fmt.Errorf("create temporary directory: %w", err)
}
cleanup := func() {
if err := os.RemoveAll(tmpDir); err != nil {
logger.WithError(err).ErrorContext(ctx, "failed to remove tmp directory with ssh key/config")
}
}
args := []string{sshCommand}
if sshKey != "" {
sshKeyFile := filepath.Join(tmpDir, "ssh-key")
if err := os.WriteFile(sshKeyFile, []byte(sshKey), mode.File); err != nil {
cleanup()
return "", nil, fmt.Errorf("create ssh key file: %w", err)
}
args = append(args, "-oIdentitiesOnly=yes", "-oIdentityFile="+sshKeyFile)
}
if knownHosts != "" {
knownHostsFile := filepath.Join(tmpDir, "known-hosts")
if err := os.WriteFile(knownHostsFile, []byte(knownHosts), mode.File); err != nil {
cleanup()
return "", nil, fmt.Errorf("create known hosts file: %w", err)
}
args = append(args, "-oStrictHostKeyChecking=yes", "-oCheckHostIP=no", "-oUserKnownHostsFile="+knownHostsFile)
}
return strings.Join(args, " "), cleanup, nil
}