mirror of
https://github.com/go-gitea/gitea.git
synced 2026-06-22 14:19:31 +02:00
# Conflicts: # go.mod # models/repo/mirror.go # modules/git/gitcmd/command.go # modules/git/remote.go # routers/web/user/setting/keys.go # services/repository/migrate.go
198 lines
4.1 KiB
Go
198 lines
4.1 KiB
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package ssh
|
|
|
|
import (
|
|
"crypto/ed25519"
|
|
"fmt"
|
|
"net"
|
|
"sync"
|
|
|
|
"gitea.dev/modules/log"
|
|
"gitea.dev/modules/util"
|
|
|
|
"golang.org/x/crypto/ssh"
|
|
"golang.org/x/crypto/ssh/agent"
|
|
)
|
|
|
|
// Agent represents a temporary SSH agent for repo mirroring
|
|
type Agent struct {
|
|
socketPath string
|
|
listener net.Listener
|
|
agent agent.Agent
|
|
stop chan struct{}
|
|
wg sync.WaitGroup
|
|
closed bool
|
|
mu sync.Mutex
|
|
}
|
|
|
|
// NewSSHAgent creates a new SSH agent with the given private key
|
|
func NewSSHAgent(privateKey ed25519.PrivateKey) (*Agent, error) {
|
|
listener, socketPath, cleanup, err := createAgentListener()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer func() {
|
|
if cleanup != nil {
|
|
cleanup()
|
|
}
|
|
}()
|
|
|
|
sshAgent := agent.NewKeyring()
|
|
|
|
if len(privateKey) != ed25519.PrivateKeySize {
|
|
return nil, fmt.Errorf("invalid Ed25519 private key size: expected %d, got %d", ed25519.PrivateKeySize, len(privateKey))
|
|
}
|
|
|
|
_, err = ssh.NewSignerFromKey(privateKey)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to create SSH signer: %w", err)
|
|
}
|
|
|
|
err = sshAgent.Add(agent.AddedKey{
|
|
PrivateKey: privateKey,
|
|
Comment: "gitea-mirror-key",
|
|
})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to add key to agent: %w", err)
|
|
}
|
|
|
|
// Create our SSH agent wrapper
|
|
sa := &Agent{
|
|
socketPath: socketPath,
|
|
listener: listener,
|
|
agent: sshAgent,
|
|
stop: make(chan struct{}),
|
|
}
|
|
|
|
// Start serving
|
|
sa.wg.Add(1)
|
|
go sa.serve()
|
|
|
|
// Clear cleanup since we're returning successfully
|
|
cleanup = nil
|
|
|
|
return sa, nil
|
|
}
|
|
|
|
// serve handles incoming connections to the SSH agent
|
|
func (sa *Agent) serve() {
|
|
defer sa.wg.Done()
|
|
defer sa.cleanup()
|
|
|
|
for {
|
|
select {
|
|
case <-sa.stop:
|
|
return
|
|
default:
|
|
// Set a timeout for Accept to avoid blocking indefinitely
|
|
setListenerAcceptDeadline(sa.listener)
|
|
|
|
conn, err := sa.listener.Accept()
|
|
if err != nil {
|
|
if netErr, ok := err.(net.Error); ok && netErr.Timeout() {
|
|
continue
|
|
}
|
|
select {
|
|
case <-sa.stop:
|
|
return
|
|
default:
|
|
log.Error("SSH agent failed to accept connection: %v", err)
|
|
continue
|
|
}
|
|
}
|
|
|
|
sa.wg.Add(1)
|
|
go func(c net.Conn) {
|
|
defer sa.wg.Done()
|
|
defer c.Close()
|
|
|
|
err := agent.ServeAgent(sa.agent, c)
|
|
if err != nil {
|
|
log.Debug("SSH agent connection ended: %v", err)
|
|
}
|
|
}(conn)
|
|
}
|
|
}
|
|
}
|
|
|
|
// cleanup removes the socket file and temporary directory
|
|
func (sa *Agent) cleanup() {
|
|
cleanupAgentSocket(sa.socketPath)
|
|
}
|
|
|
|
// GetSocketPath returns the path to the SSH agent socket
|
|
func (sa *Agent) GetSocketPath() string {
|
|
return sa.socketPath
|
|
}
|
|
|
|
// Close stops the SSH agent and cleans up resources
|
|
func (sa *Agent) Close() error {
|
|
sa.mu.Lock()
|
|
defer sa.mu.Unlock()
|
|
|
|
if sa.closed {
|
|
return nil
|
|
}
|
|
sa.closed = true
|
|
|
|
close(sa.stop)
|
|
|
|
if sa.listener != nil {
|
|
sa.listener.Close()
|
|
}
|
|
|
|
sa.wg.Wait()
|
|
|
|
return nil
|
|
}
|
|
|
|
// AgentManager manages temporary SSH agents for git operations
|
|
type AgentManager struct {
|
|
mu sync.Mutex
|
|
agents map[string]*Agent
|
|
}
|
|
|
|
var globalAgentManager = &AgentManager{
|
|
agents: make(map[string]*Agent),
|
|
}
|
|
|
|
// CreateTemporaryAgent creates a temporary SSH agent with the given private key
|
|
// Returns the socket path for use with SSH_AUTH_SOCK
|
|
func CreateTemporaryAgent(privateKey ed25519.PrivateKey) (string, func(), error) {
|
|
agent, err := NewSSHAgent(privateKey)
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
|
|
agentID := util.CryptoRandomString(16)
|
|
|
|
globalAgentManager.mu.Lock()
|
|
globalAgentManager.agents[agentID] = agent
|
|
globalAgentManager.mu.Unlock()
|
|
|
|
cleanup := func() {
|
|
globalAgentManager.mu.Lock()
|
|
defer globalAgentManager.mu.Unlock()
|
|
|
|
if agent, exists := globalAgentManager.agents[agentID]; exists {
|
|
agent.Close()
|
|
delete(globalAgentManager.agents, agentID)
|
|
}
|
|
}
|
|
|
|
return agent.GetSocketPath(), cleanup, nil
|
|
}
|
|
|
|
// CleanupAllAgents closes all active SSH agents (should be called on shutdown)
|
|
func CleanupAllAgents() {
|
|
globalAgentManager.mu.Lock()
|
|
defer globalAgentManager.mu.Unlock()
|
|
|
|
for id, agent := range globalAgentManager.agents {
|
|
agent.Close()
|
|
delete(globalAgentManager.agents, id)
|
|
}
|
|
}
|