-
Notifications
You must be signed in to change notification settings - Fork 76
/
git.go
240 lines (221 loc) · 6 KB
/
git.go
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
package git
import (
"errors"
"fmt"
"os"
"os/exec"
"path/filepath"
"strings"
"github.com/charmbracelet/log"
"github.com/charmbracelet/ssh"
"github.com/charmbracelet/wish"
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing"
)
// ErrNotAuthed represents unauthorized access.
var ErrNotAuthed = errors.New("you are not authorized to do this")
// ErrSystemMalfunction represents a general system error returned to clients.
var ErrSystemMalfunction = errors.New("something went wrong")
// ErrInvalidRepo represents an attempt to access a non-existent repo.
var ErrInvalidRepo = errors.New("invalid repo")
// AccessLevel is the level of access allowed to a repo.
type AccessLevel int
const (
// NoAccess does not allow access to the repo.
NoAccess AccessLevel = iota
// ReadOnlyAccess allows read-only access to the repo.
ReadOnlyAccess
// ReadWriteAccess allows read and write access to the repo.
ReadWriteAccess
// AdminAccess allows read, write, and admin access to the repo.
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.
//
// Deprecated: use Hooks instead.
type GitHooks = Hooks // nolint: revive
// Hooks 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 Hooks 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 Hooks implementation will be
// checked for access on a per repo basis for a ssh.Session public key.
// Hooks.Push and Hooks.Fetch will be called on successful completion of
// their commands.
func Middleware(repoDir string, gh Hooks) 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 should be in the form of "repo.git" or "user/repo.git"
repo := strings.TrimSuffix(strings.TrimPrefix(cmd[1], "/"), "/")
repo = filepath.Clean(repo)
if n := strings.Count(repo, "/"); n > 1 {
Fatal(s, ErrInvalidRepo)
return
}
pk := s.PublicKey()
access := gh.AuthRepo(repo, pk)
switch gc {
case "git-receive-pack":
switch access {
case ReadWriteAccess, AdminAccess:
err := gitPack(s, gc, repoDir, repo)
if err != nil {
Fatal(s, ErrSystemMalfunction)
} else {
gh.Push(repo, pk)
}
default:
Fatal(s, ErrNotAuthed)
}
return
case "git-upload-archive", "git-upload-pack":
switch access {
case ReadOnlyAccess, ReadWriteAccess, AdminAccess:
err := gitPack(s, gc, repoDir, repo)
switch err {
case ErrInvalidRepo:
Fatal(s, ErrInvalidRepo)
case nil:
gh.Fetch(repo, pk)
default:
log.Error("unknown git error", "error", err)
Fatal(s, ErrSystemMalfunction)
}
default:
Fatal(s, ErrNotAuthed)
}
return
}
}
sh(s)
}
}
}
func gitPack(s ssh.Session, gitCmd string, repoDir string, repo string) error {
cmd := strings.TrimPrefix(gitCmd, "git-")
rp := filepath.Join(repoDir, repo)
switch gitCmd {
case "git-upload-archive", "git-upload-pack":
exists, err := fileExists(rp)
if !exists {
return ErrInvalidRepo
}
if err != nil {
return err
}
return runGit(s, "", cmd, rp)
case "git-receive-pack":
err := EnsureRepo(repoDir, repo)
if err != nil {
return err
}
err = runGit(s, "", cmd, rp)
if err != nil {
return err
}
err = ensureDefaultBranch(s, rp)
if err != nil {
return err
}
// Needed for git dumb http server
return runGit(s, rp, "update-server-info")
default:
return fmt.Errorf("unknown git command: %s", gitCmd)
}
}
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
}
// Fatal prints to the session's STDOUT as a git response and exit 1.
func Fatal(s ssh.Session, v ...interface{}) {
msg := fmt.Sprint(v...)
// hex length includes 4 byte length prefix and ending newline
pktLine := fmt.Sprintf("%04x%s\n", len(msg)+5, msg)
_, _ = wish.WriteString(s, pktLine)
s.Exit(1) // nolint: errcheck
}
// EnsureRepo makes sure the given repo exists within the given dir, and that
// it is git repository.
//
// If path does not exist, it'll be created.
// If the path is not a git repo, it will be git init-ed as a bare repository.
func EnsureRepo(dir, repo string) error {
exists, err := fileExists(dir)
if err != nil {
return err
}
if !exists {
err = os.MkdirAll(dir, os.ModeDir|os.FileMode(0o700))
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 runGit(s ssh.Session, dir string, args ...string) error {
usi := exec.CommandContext(s.Context(), "git", args...)
usi.Dir = dir
usi.Stdout = s
usi.Stdin = s
if err := usi.Run(); 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 = runGit(s, repoPath, "branch", "-M", fb.Name().Short())
if err != nil {
return err
}
}
if err != nil && err != plumbing.ErrReferenceNotFound {
return err
}
return nil
}