-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds a very git specific restricted shell, that can be added to /etc/shells and set to the pw_shell in the /etc/passwd file, to give users ability to push into repositories over ssh without giving them full interactive shell acount. [jc: I updated Linus' patch to match what the current sq_quote() does.] Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
- Loading branch information
Linus Torvalds
authored and
Junio C Hamano
committed
Oct 24, 2005
1 parent
38cc7ab
commit 35eb2d3
Showing
4 changed files
with
106 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#include "cache.h" | ||
#include "quote.h" | ||
|
||
static int do_generic_cmd(const char *me, char *arg) | ||
{ | ||
const char *my_argv[4]; | ||
|
||
arg = sq_dequote(arg); | ||
if (!arg) | ||
die("bad argument"); | ||
|
||
my_argv[0] = me; | ||
my_argv[1] = arg; | ||
my_argv[2] = NULL; | ||
|
||
return execvp(me, (char**) my_argv); | ||
} | ||
|
||
static struct commands { | ||
const char *name; | ||
int (*exec)(const char *me, char *arg); | ||
} cmd_list[] = { | ||
{ "git-receive-pack", do_generic_cmd }, | ||
{ "git-upload-pack", do_generic_cmd }, | ||
{ NULL }, | ||
}; | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
char *prog; | ||
struct commands *cmd; | ||
|
||
/* We want to see "-c cmd args", and nothing else */ | ||
if (argc != 3 || strcmp(argv[1], "-c")) | ||
die("What do you think I am? A shell?"); | ||
|
||
prog = argv[2]; | ||
argv += 2; | ||
argc -= 2; | ||
for (cmd = cmd_list ; cmd->name ; cmd++) { | ||
int len = strlen(cmd->name); | ||
char *arg; | ||
if (strncmp(cmd->name, prog, len)) | ||
continue; | ||
arg = NULL; | ||
switch (prog[len]) { | ||
case '\0': | ||
arg = NULL; | ||
break; | ||
case ' ': | ||
arg = prog + len + 1; | ||
break; | ||
default: | ||
continue; | ||
} | ||
exit(cmd->exec(cmd->name, arg)); | ||
} | ||
die("unrecognized command '%s'", prog); | ||
} |