-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgit-restrict.c
89 lines (72 loc) · 2.35 KB
/
git-restrict.c
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
/* Copyright (c) 2021-2022 Ivan J. <parazyd@dyne.org>
*
* This file is part of git-restrict
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License version 3
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static void die(const char *msg)
{
fprintf(stderr, "%s\n", msg);
exit(1);
}
static char *strdup(const char *s)
{
size_t sz = strlen(s)+1;
char *d = malloc(sz);
if (!d) return NULL;
return memcpy(d, s, sz);
}
int main(int argc, char *argv[])
{
char *orig_cmd, *cmd, *repo, *buf;
char git_cmd[20 + 256];
int i, authorized = 0;
if (argc < 2)
die("usage: git-restrict repo0 repo1 ...");
if ((orig_cmd = getenv("SSH_ORIGINAL_COMMAND")) == NULL)
die("fatal: No $SSH_ORIGINAL_COMMAND in env.");
if ((repo = strdup(orig_cmd)) == NULL) die("fatal: Internal error.");
if ((cmd = strtok(repo, " ")) == NULL) die("fatal: Invalid command.");
repo = strtok(NULL, " ");
if (strcmp("git-upload-pack", cmd) && strcmp("git-receive-pack", cmd))
die("fatal: Unauthorized command.");
/* Repository name should at least be: 'a' */
if (repo == NULL || (strlen(repo) < 3))
die("fatal: Invalid repository name.");
/* Remove ' and / prefix and ' suffix */
repo++; if (repo[0] == '/') repo++; repo[strlen(repo) - 1] = 0;
for (i = 1; i < argc; i++) {
/* This is so both "foo" and "foo.git" are supported */
if ((buf = malloc(strlen(repo) + 4)) == NULL) {
perror("malloc");
return 1;
}
snprintf(buf, strlen(repo) + 4, "%s.git", argv[i]);
if (!strcmp(argv[i], repo) || !strcmp(buf, repo)) {
authorized = 1;
free(buf);
break;
}
free(buf);
}
if (!authorized)
die("fatal: Access to repository denied.");
snprintf(git_cmd, strlen(cmd) + strlen(repo) + 4, "%s '%s'", cmd, repo);
if (execlp("git-shell", "git-shell", "-c", git_cmd, (char *)NULL) == -1)
perror("execlp");
return 1;
}