5 #include "run-command.h"
7 #define COMMAND_DIR "git-shell-commands"
8 #define HELP_COMMAND COMMAND_DIR "/help"
9 #define NOLOGIN_COMMAND COMMAND_DIR "/no-interactive-login"
11 static int do_generic_cmd(const char *me, char *arg)
13 const char *my_argv[4];
16 if (!arg || !(arg = sq_dequote(arg)))
18 if (!starts_with(me, "git-"))
25 return execv_git_cmd(my_argv);
28 static int do_cvs_cmd(const char *me, char *arg)
30 const char *cvsserver_argv[3] = {
31 "cvsserver", "server", NULL
34 if (!arg || strcmp(arg, "server"))
35 die("git-cvsserver only handles server: %s", arg);
38 return execv_git_cmd(cvsserver_argv);
41 static int is_valid_cmd_name(const char *cmd)
43 /* Test command contains no . or / characters */
44 return cmd[strcspn(cmd, "./")] == '\0';
47 static char *make_cmd(const char *prog)
49 return xstrfmt("%s/%s", COMMAND_DIR, prog);
52 static void cd_to_homedir(void)
54 const char *home = getenv("HOME");
56 die("could not determine user's home directory; HOME is unset");
57 if (chdir(home) == -1)
58 die("could not chdir to user's home directory");
61 static void run_shell(void)
64 static const char *help_argv[] = { HELP_COMMAND, NULL };
66 if (!access(NOLOGIN_COMMAND, F_OK)) {
67 /* Interactive login disabled. */
68 const char *argv[] = { NOLOGIN_COMMAND, NULL };
71 status = run_command_v_opt(argv, 0);
77 /* Print help if enabled */
78 run_command_v_opt(help_argv, RUN_SILENT_EXEC_FAILURE);
81 struct strbuf line = STRBUF_INIT;
90 fprintf(stderr, "git> ");
91 if (strbuf_getline_lf(&line, stdin) == EOF) {
92 fprintf(stderr, "\n");
93 strbuf_release(&line);
97 rawargs = strbuf_detach(&line, NULL);
98 split_args = xstrdup(rawargs);
99 count = split_cmdline(split_args, &argv);
101 fprintf(stderr, "invalid command format '%s': %s\n", rawargs,
102 split_cmdline_strerror(count));
109 if (!strcmp(prog, "")) {
110 } else if (!strcmp(prog, "quit") || !strcmp(prog, "logout") ||
111 !strcmp(prog, "exit") || !strcmp(prog, "bye")) {
113 } else if (is_valid_cmd_name(prog)) {
114 full_cmd = make_cmd(prog);
116 code = run_command_v_opt(argv, RUN_SILENT_EXEC_FAILURE);
117 if (code == -1 && errno == ENOENT) {
118 fprintf(stderr, "unrecognized command '%s'\n", prog);
122 fprintf(stderr, "invalid command format '%s'\n", prog);
130 static struct commands {
132 int (*exec)(const char *me, char *arg);
134 { "git-receive-pack", do_generic_cmd },
135 { "git-upload-pack", do_generic_cmd },
136 { "git-upload-archive", do_generic_cmd },
137 { "cvs", do_cvs_cmd },
141 int cmd_main(int argc, const char **argv)
144 const char **user_argv;
145 struct commands *cmd;
149 * Special hack to pretend to be a CVS server
151 if (argc == 2 && !strcmp(argv[1], "cvs server")) {
153 } else if (argc == 1) {
154 /* Allow the user to run an interactive shell */
156 if (access(COMMAND_DIR, R_OK | X_OK) == -1) {
157 die("Interactive git shell is not enabled.\n"
158 "hint: ~/" COMMAND_DIR " should exist "
159 "and have read and execute access.");
163 } else if (argc != 3 || strcmp(argv[1], "-c")) {
165 * We do not accept any other modes except "-c" followed by
166 * "cmd arg", where "cmd" is a very limited subset of git
167 * commands or a command in the COMMAND_DIR
169 die("Run with no arguments or with -c cmd");
172 prog = xstrdup(argv[2]);
173 if (!strncmp(prog, "git", 3) && isspace(prog[3]))
174 /* Accept "git foo" as if the caller said "git-foo". */
177 for (cmd = cmd_list ; cmd->name ; cmd++) {
178 int len = strlen(cmd->name);
180 if (strncmp(cmd->name, prog, len))
188 arg = prog + len + 1;
193 exit(cmd->exec(cmd->name, arg));
197 count = split_cmdline(prog, &user_argv);
199 if (is_valid_cmd_name(user_argv[0])) {
200 prog = make_cmd(user_argv[0]);
202 execv(user_argv[0], (char *const *) user_argv);
206 die("unrecognized command '%s'", argv[2]);
209 die("invalid command format '%s': %s", argv[2],
210 split_cmdline_strerror(count));