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 char *prefix
= xmalloc((strlen(prog
) + strlen(COMMAND_DIR
) + 2));
50 strcpy(prefix
, COMMAND_DIR
);
56 static void cd_to_homedir(void)
58 const char *home
= getenv("HOME");
60 die("could not determine user's home directory; HOME is unset");
61 if (chdir(home
) == -1)
62 die("could not chdir to user's home directory");
65 static void run_shell(void)
68 static const char *help_argv
[] = { HELP_COMMAND
, NULL
};
70 if (!access(NOLOGIN_COMMAND
, F_OK
)) {
71 /* Interactive login disabled. */
72 const char *argv
[] = { NOLOGIN_COMMAND
, NULL
};
75 status
= run_command_v_opt(argv
, 0);
81 /* Print help if enabled */
82 run_command_v_opt(help_argv
, RUN_SILENT_EXEC_FAILURE
);
85 struct strbuf line
= STRBUF_INIT
;
94 fprintf(stderr
, "git> ");
95 if (strbuf_getline(&line
, stdin
, '\n') == EOF
) {
96 fprintf(stderr
, "\n");
97 strbuf_release(&line
);
101 rawargs
= strbuf_detach(&line
, NULL
);
102 split_args
= xstrdup(rawargs
);
103 count
= split_cmdline(split_args
, &argv
);
105 fprintf(stderr
, "invalid command format '%s': %s\n", rawargs
,
106 split_cmdline_strerror(count
));
113 if (!strcmp(prog
, "")) {
114 } else if (!strcmp(prog
, "quit") || !strcmp(prog
, "logout") ||
115 !strcmp(prog
, "exit") || !strcmp(prog
, "bye")) {
117 } else if (is_valid_cmd_name(prog
)) {
118 full_cmd
= make_cmd(prog
);
120 code
= run_command_v_opt(argv
, RUN_SILENT_EXEC_FAILURE
);
121 if (code
== -1 && errno
== ENOENT
) {
122 fprintf(stderr
, "unrecognized command '%s'\n", prog
);
126 fprintf(stderr
, "invalid command format '%s'\n", prog
);
134 static struct commands
{
136 int (*exec
)(const char *me
, char *arg
);
138 { "git-receive-pack", do_generic_cmd
},
139 { "git-upload-pack", do_generic_cmd
},
140 { "git-upload-archive", do_generic_cmd
},
141 { "cvs", do_cvs_cmd
},
145 int main(int argc
, char **argv
)
148 const char **user_argv
;
149 struct commands
*cmd
;
154 git_extract_argv0_path(argv
[0]);
157 * Always open file descriptors 0/1/2 to avoid clobbering files
158 * in die(). It also avoids messing up when the pipes are dup'ed
159 * onto stdin/stdout/stderr in the child processes we spawn.
164 * Special hack to pretend to be a CVS server
166 if (argc
== 2 && !strcmp(argv
[1], "cvs server")) {
168 } else if (argc
== 1) {
169 /* Allow the user to run an interactive shell */
171 if (access(COMMAND_DIR
, R_OK
| X_OK
) == -1) {
172 die("Interactive git shell is not enabled.\n"
173 "hint: ~/" COMMAND_DIR
" should exist "
174 "and have read and execute access.");
178 } else if (argc
!= 3 || strcmp(argv
[1], "-c")) {
180 * We do not accept any other modes except "-c" followed by
181 * "cmd arg", where "cmd" is a very limited subset of git
182 * commands or a command in the COMMAND_DIR
184 die("Run with no arguments or with -c cmd");
187 prog
= xstrdup(argv
[2]);
188 if (!strncmp(prog
, "git", 3) && isspace(prog
[3]))
189 /* Accept "git foo" as if the caller said "git-foo". */
192 for (cmd
= cmd_list
; cmd
->name
; cmd
++) {
193 int len
= strlen(cmd
->name
);
195 if (strncmp(cmd
->name
, prog
, len
))
203 arg
= prog
+ len
+ 1;
208 exit(cmd
->exec(cmd
->name
, arg
));
212 count
= split_cmdline(prog
, &user_argv
);
214 if (is_valid_cmd_name(user_argv
[0])) {
215 prog
= make_cmd(user_argv
[0]);
217 execv(user_argv
[0], (char *const *) user_argv
);
221 die("unrecognized command '%s'", argv
[2]);
224 die("invalid command format '%s': %s", argv
[2],
225 split_cmdline_strerror(count
));