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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
package git
import (
"context"
"fmt"
"os"
"os/exec"
"path/filepath"
"github.com/charmbracelet/wish"
"github.com/gliderlabs/ssh"
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing"
)
// ErrNotAuthed represents unauthorized access.
var ErrNotAuthed = fmt.Errorf("you are not authorized to do this")
// ErrSystemMalfunction represents a general system error returned to clients.
var ErrSystemMalfunction = fmt.Errorf("something went wrong")
// AccessLevel is the level of access allowed to a repo.
type AccessLevel int
const (
NoAccess AccessLevel = iota
ReadOnlyAccess
ReadWriteAccess
AdminAccess
)
// GitHooks is an interface that allows for custom authorization
// implementations and post push/fetch notifications. Prior to git access,
// AuthRepo will be called with the ssh.Session public key and the repo name.
// Implementers return the appropriate AccessLevel.
type GitHooks interface {
AuthRepo(string, ssh.PublicKey) AccessLevel
Push(string, ssh.PublicKey)
Fetch(string, ssh.PublicKey)
}
// Middleware adds Git server functionality to the ssh.Server. Repos are stored
// in the specified repo directory. The provided GitHooks implementation will be
// checked for access on a per repo basis for a ssh.Session public key.
// GitHooks.Push and GitHooks.Fetch will be called on successful completion of
// their commands.
func Middleware(repoDir string, gh GitHooks) wish.Middleware {
return func(sh ssh.Handler) ssh.Handler {
return func(s ssh.Session) {
cmd := s.Command()
if len(cmd) == 2 {
gc := cmd[0]
repo := cmd[1] // cmd[1] will be `/REPO`
if len(repo) > 0 && repo[0] == '/' {
repo = repo[1:]
}
pk := s.PublicKey()
access := gh.AuthRepo(repo, pk)
switch gc {
case "git-receive-pack":
switch access {
case ReadWriteAccess, AdminAccess:
err := gitReceivePack(s, gc, repoDir, repo)
if err != nil {
fatalGit(s, ErrSystemMalfunction)
} else {
gh.Push(repo, pk)
}
default:
fatalGit(s, ErrNotAuthed)
}
case "git-upload-archive", "git-upload-pack":
switch access {
case ReadOnlyAccess, ReadWriteAccess, AdminAccess:
err := gitUploadPack(s, gc, repoDir, repo)
if err != nil {
fatalGit(s, ErrSystemMalfunction)
} else {
gh.Fetch(repo, pk)
}
default:
fatalGit(s, ErrNotAuthed)
}
}
}
sh(s)
}
}
}
func gitReceivePack(s ssh.Session, gitCmd string, repoDir string, repo string) error {
ctx := s.Context()
err := ensureRepo(ctx, repoDir, repo)
if err != nil {
return err
}
rp := filepath.Join(repoDir, repo)
err = runCmd(s, "./", gitCmd, rp)
if err != nil {
return err
}
err = ensureDefaultBranch(s, rp)
if err != nil {
return err
}
err = runCmd(s, rp, "git", "update-server-info")
if err != nil {
return err
}
return nil
}
func gitUploadPack(s ssh.Session, gitCmd string, repoDir string, repo string) error {
rp := filepath.Join(repoDir, repo)
if exists, err := fileExists(rp); exists && err == nil {
err = runCmd(s, "./", gitCmd, rp)
if err != nil {
return err
}
}
return nil
}
func fileExists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return true, err
}
func fatalGit(s ssh.Session, err error) {
// hex length includes 4 byte length prefix and ending newline
msg := err.Error()
pktLine := fmt.Sprintf("%04x%s\n", len(msg)+5, msg)
_, _ = s.Write([]byte(pktLine))
s.Exit(1)
}
func ensureRepo(ctx context.Context, dir string, repo string) error {
exists, err := fileExists(dir)
if err != nil {
return err
}
if !exists {
err = os.MkdirAll(dir, os.ModeDir|os.FileMode(0700))
if err != nil {
return err
}
}
rp := filepath.Join(dir, repo)
exists, err = fileExists(rp)
if err != nil {
return err
}
if !exists {
_, err := git.PlainInit(rp, true)
if err != nil {
return err
}
}
return nil
}
func runCmd(s ssh.Session, dir, name string, args ...string) error {
usi := exec.CommandContext(s.Context(), name, args...)
usi.Dir = dir
usi.Stdout = s
usi.Stdin = s
err := usi.Run()
if err != nil {
return err
}
return nil
}
func ensureDefaultBranch(s ssh.Session, repoPath string) error {
r, err := git.PlainOpen(repoPath)
if err != nil {
return err
}
brs, err := r.Branches()
if err != nil {
return err
}
defer brs.Close()
fb, err := brs.Next()
if err != nil {
return err
}
// Rename the default branch to the first branch available
_, err = r.Head()
if err == plumbing.ErrReferenceNotFound {
err = runCmd(s, repoPath, "git", "branch", "-M", fb.Name().Short())
if err != nil {
return err
}
}
if err != nil && err != plumbing.ErrReferenceNotFound {
return err
}
return nil
}
|