]> git.ipfire.org Git - thirdparty/git.git/blame - git.c
list_commands(): simplify code by using chdir()
[thirdparty/git.git] / git.c
CommitLineData
85023577 1#include "builtin.h"
77cb17e9 2#include "exec_cmd.h"
2b11e317 3#include "cache.h"
575ba9d6 4#include "quote.h"
8e49d503 5
822a7d50 6const char git_usage_string[] =
463a849d 7 "git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate|--no-pager] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS]";
822a7d50 8
8e49d503
AE
9static void prepend_to_path(const char *dir, int len)
10{
554fe20d
TH
11 const char *old_path = getenv("PATH");
12 char *path;
8e49d503
AE
13 int path_len = len;
14
15 if (!old_path)
7dbc2c04 16 old_path = "/usr/local/bin:/usr/bin:/bin";
8e49d503
AE
17
18 path_len = len + strlen(old_path) + 1;
19
2d7320d0 20 path = xmalloc(path_len + 1);
8e49d503
AE
21
22 memcpy(path, dir, len);
23 path[len] = ':';
24 memcpy(path + len + 1, old_path, path_len - len);
25
26 setenv("PATH", path, 1);
0caea90b
CC
27
28 free(path);
8e49d503
AE
29}
30
4394efec 31static int handle_options(const char*** argv, int* argc, int* envchanged)
4ab243a9
JS
32{
33 int handled = 0;
34
35 while (*argc > 0) {
36 const char *cmd = (*argv)[0];
37 if (cmd[0] != '-')
38 break;
39
6acbcb92
JS
40 /*
41 * For legacy reasons, the "version" and "help"
42 * commands can be written with "--" prepended
43 * to make them look like flags.
44 */
45 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
46 break;
47
48 /*
49 * Check remaining flags.
50 */
cc44c765 51 if (!prefixcmp(cmd, "--exec-path")) {
6acbcb92
JS
52 cmd += 11;
53 if (*cmd == '=')
384df833 54 git_set_argv_exec_path(cmd + 1);
6acbcb92
JS
55 else {
56 puts(git_exec_path());
57 exit(0);
58 }
59 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
4ab243a9 60 setup_pager();
463a849d
MM
61 } else if (!strcmp(cmd, "--no-pager")) {
62 setenv("GIT_PAGER", "cat", 1);
63 if (envchanged)
64 *envchanged = 1;
6acbcb92 65 } else if (!strcmp(cmd, "--git-dir")) {
c321f00d
BG
66 if (*argc < 2) {
67 fprintf(stderr, "No directory given for --git-dir.\n" );
68 usage(git_usage_string);
69 }
45b09794 70 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
4394efec
ML
71 if (envchanged)
72 *envchanged = 1;
6acbcb92
JS
73 (*argv)++;
74 (*argc)--;
e4b02333 75 handled++;
cc44c765 76 } else if (!prefixcmp(cmd, "--git-dir=")) {
45b09794 77 setenv(GIT_DIR_ENVIRONMENT, cmd + 10, 1);
4394efec
ML
78 if (envchanged)
79 *envchanged = 1;
892c41b9
ML
80 } else if (!strcmp(cmd, "--work-tree")) {
81 if (*argc < 2) {
82 fprintf(stderr, "No directory given for --work-tree.\n" );
83 usage(git_usage_string);
84 }
85 setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
4394efec
ML
86 if (envchanged)
87 *envchanged = 1;
892c41b9
ML
88 (*argv)++;
89 (*argc)--;
90 } else if (!prefixcmp(cmd, "--work-tree=")) {
91 setenv(GIT_WORK_TREE_ENVIRONMENT, cmd + 12, 1);
4394efec
ML
92 if (envchanged)
93 *envchanged = 1;
6acbcb92 94 } else if (!strcmp(cmd, "--bare")) {
ef5ddb2f 95 static char git_dir[PATH_MAX+1];
6adcca3f 96 is_bare_repository_cfg = 1;
9277d602 97 setenv(GIT_DIR_ENVIRONMENT, getcwd(git_dir, sizeof(git_dir)), 0);
4394efec
ML
98 if (envchanged)
99 *envchanged = 1;
6acbcb92
JS
100 } else {
101 fprintf(stderr, "Unknown option: %s\n", cmd);
822a7d50 102 usage(git_usage_string);
6acbcb92 103 }
4ab243a9
JS
104
105 (*argv)++;
106 (*argc)--;
107 handled++;
108 }
109 return handled;
110}
111
2b11e317 112static const char *alias_command;
96f1e58f 113static char *alias_string;
2b11e317
JS
114
115static int git_alias_config(const char *var, const char *value)
116{
cc44c765 117 if (!prefixcmp(var, "alias.") && !strcmp(var + 6, alias_command)) {
9befac47 118 alias_string = xstrdup(value);
2b11e317
JS
119 }
120 return 0;
121}
122
123static int split_cmdline(char *cmdline, const char ***argv)
124{
125 int src, dst, count = 0, size = 16;
126 char quoted = 0;
127
3301521a 128 *argv = xmalloc(sizeof(char*) * size);
2b11e317
JS
129
130 /* split alias_string */
131 (*argv)[count++] = cmdline;
132 for (src = dst = 0; cmdline[src];) {
133 char c = cmdline[src];
134 if (!quoted && isspace(c)) {
135 cmdline[dst++] = 0;
136 while (cmdline[++src]
137 && isspace(cmdline[src]))
138 ; /* skip */
139 if (count >= size) {
140 size += 16;
83572c1a 141 *argv = xrealloc(*argv, sizeof(char*) * size);
2b11e317
JS
142 }
143 (*argv)[count++] = cmdline + dst;
144 } else if(!quoted && (c == '\'' || c == '"')) {
145 quoted = c;
146 src++;
147 } else if (c == quoted) {
148 quoted = 0;
149 src++;
150 } else {
151 if (c == '\\' && quoted != '\'') {
152 src++;
153 c = cmdline[src];
154 if (!c) {
155 free(*argv);
156 *argv = NULL;
157 return error("cmdline ends with \\");
158 }
159 }
160 cmdline[dst++] = c;
161 src++;
162 }
163 }
164
165 cmdline[dst] = 0;
166
167 if (quoted) {
168 free(*argv);
169 *argv = NULL;
170 return error("unclosed quote");
171 }
172
173 return count;
174}
175
176static int handle_alias(int *argcp, const char ***argv)
177{
4394efec 178 int nongit = 0, envchanged = 0, ret = 0, saved_errno = errno;
2b11e317 179 const char *subdir;
0347a8c7
ML
180 int count, option_count;
181 const char** new_argv;
2b11e317
JS
182
183 subdir = setup_git_directory_gently(&nongit);
0347a8c7
ML
184
185 alias_command = (*argv)[0];
186 git_config(git_alias_config);
187 if (alias_string) {
dfd42a3c 188 if (alias_string[0] == '!') {
a2f8028d 189 if (*argcp > 1) {
7a33bcbe 190 struct strbuf buf;
a2f8028d 191
7a33bcbe
PH
192 strbuf_init(&buf, PATH_MAX);
193 strbuf_addstr(&buf, alias_string);
194 sq_quote_argv(&buf, (*argv) + 1, *argcp - 1, PATH_MAX);
a2f8028d 195 free(alias_string);
7a33bcbe 196 alias_string = buf.buf;
a2f8028d 197 }
dfd42a3c
TT
198 trace_printf("trace: alias to shell cmd: %s => %s\n",
199 alias_command, alias_string + 1);
200 ret = system(alias_string + 1);
201 if (ret >= 0 && WIFEXITED(ret) &&
202 WEXITSTATUS(ret) != 127)
203 exit(WEXITSTATUS(ret));
204 die("Failed to run '%s' when expanding alias '%s'\n",
205 alias_string + 1, alias_command);
206 }
0347a8c7 207 count = split_cmdline(alias_string, &new_argv);
4394efec
ML
208 option_count = handle_options(&new_argv, &count, &envchanged);
209 if (envchanged)
210 die("alias '%s' changes environment variables\n"
211 "You can use '!git' in the alias to do this.",
212 alias_command);
0347a8c7
ML
213 memmove(new_argv - option_count, new_argv,
214 count * sizeof(char *));
215 new_argv -= option_count;
216
217 if (count < 1)
218 die("empty alias for %s", alias_command);
219
220 if (!strcmp(alias_command, new_argv[0]))
221 die("recursive alias: %s", alias_command);
222
6ce4e61f
CC
223 trace_argv_printf(new_argv, count,
224 "trace: alias expansion: %s =>",
225 alias_command);
575ba9d6 226
83572c1a
JF
227 new_argv = xrealloc(new_argv, sizeof(char*) *
228 (count + *argcp + 1));
0347a8c7
ML
229 /* insert after command name */
230 memcpy(new_argv + count, *argv + 1, sizeof(char*) * *argcp);
231 new_argv[count+*argcp] = NULL;
2b11e317 232
0347a8c7
ML
233 *argv = new_argv;
234 *argcp += count - 1;
2b11e317 235
0347a8c7 236 ret = 1;
2b11e317
JS
237 }
238
239 if (subdir)
240 chdir(subdir);
241
47e5c0ca
JS
242 errno = saved_errno;
243
2b11e317
JS
244 return ret;
245}
246
70827b15 247const char git_version_string[] = GIT_VERSION;
5b84f4d8 248
efffea03
JH
249#define RUN_SETUP (1<<0)
250#define USE_PAGER (1<<1)
7eff28a9
SP
251/*
252 * require working tree to be present -- anything uses this needs
253 * RUN_SETUP for reading from the configuration file.
254 */
7ae3df8c 255#define NEED_WORK_TREE (1<<2)
a633fca0 256
47d0b4ff
LT
257struct cmd_struct {
258 const char *cmd;
259 int (*fn)(int, const char **, const char *);
260 int option;
261};
262
263static int run_command(struct cmd_struct *p, int argc, const char **argv)
264{
0f157315
LT
265 int status;
266 struct stat st;
47d0b4ff
LT
267 const char *prefix;
268
269 prefix = NULL;
270 if (p->option & RUN_SETUP)
271 prefix = setup_git_directory();
272 if (p->option & USE_PAGER)
273 setup_pager();
e90fdc39
JS
274 if (p->option & NEED_WORK_TREE) {
275 const char *work_tree = get_git_work_tree();
276 const char *git_dir = get_git_dir();
277 if (!is_absolute_path(git_dir))
278 set_git_dir(make_absolute_path(git_dir));
279 if (!work_tree || chdir(work_tree))
280 die("%s must be run in a work tree", p->cmd);
281 }
47d0b4ff
LT
282 trace_argv_printf(argv, argc, "trace: built-in: git");
283
0f157315
LT
284 status = p->fn(argc, argv, prefix);
285 if (status)
286 return status;
287
288 /* Somebody closed stdout? */
289 if (fstat(fileno(stdout), &st))
290 return 0;
291 /* Ignore write errors for pipes and sockets.. */
292 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
293 return 0;
294
295 /* Check for ENOSPC and EIO errors.. */
0227f988 296 if (fflush(stdout))
0f157315 297 die("write failure on standard output: %s", strerror(errno));
0227f988
LT
298 if (ferror(stdout))
299 die("unknown write failure on standard output");
300 if (fclose(stdout))
301 die("close failed on standard output: %s", strerror(errno));
0f157315 302 return 0;
47d0b4ff
LT
303}
304
305static void handle_internal_command(int argc, const char **argv)
231af832
LT
306{
307 const char *cmd = argv[0];
47d0b4ff 308 static struct cmd_struct commands[] = {
7ae3df8c 309 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
d97bc5de 310 { "annotate", cmd_annotate, RUN_SETUP },
f754fa9c 311 { "apply", cmd_apply },
265d5280 312 { "archive", cmd_archive },
4f0219a4 313 { "blame", cmd_blame, RUN_SETUP },
1da1b3a3 314 { "branch", cmd_branch, RUN_SETUP },
2e0afafe 315 { "bundle", cmd_bundle },
efffea03 316 { "cat-file", cmd_cat_file, RUN_SETUP },
4465f410
JS
317 { "checkout-index", cmd_checkout_index,
318 RUN_SETUP | NEED_WORK_TREE},
0864f264 319 { "check-ref-format", cmd_check_ref_format },
7ae3df8c 320 { "check-attr", cmd_check_attr, RUN_SETUP | NEED_WORK_TREE },
e827633a 321 { "cherry", cmd_cherry, RUN_SETUP },
7ae3df8c 322 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
efffea03 323 { "commit-tree", cmd_commit_tree, RUN_SETUP },
e0d10e1c 324 { "config", cmd_config },
8112894d 325 { "count-objects", cmd_count_objects, RUN_SETUP },
9a0eaf83 326 { "describe", cmd_describe, RUN_SETUP },
89d07f75 327 { "diff", cmd_diff },
d516c2d1 328 { "diff-files", cmd_diff_files },
efffea03 329 { "diff-index", cmd_diff_index, RUN_SETUP },
efffea03 330 { "diff-tree", cmd_diff_tree, RUN_SETUP },
b888d61c 331 { "fetch", cmd_fetch, RUN_SETUP },
2d4177c0 332 { "fetch-pack", cmd_fetch_pack, RUN_SETUP },
d4289fff 333 { "fetch--tool", cmd_fetch__tool, RUN_SETUP },
efffea03 334 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
9f613ddd 335 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
efffea03 336 { "format-patch", cmd_format_patch, RUN_SETUP },
b4dfefe0
MW
337 { "fsck", cmd_fsck, RUN_SETUP },
338 { "fsck-objects", cmd_fsck, RUN_SETUP },
6757ada4 339 { "gc", cmd_gc, RUN_SETUP },
f754fa9c 340 { "get-tar-commit-id", cmd_get_tar_commit_id },
34c6a82b 341 { "grep", cmd_grep, RUN_SETUP | USE_PAGER },
f754fa9c 342 { "help", cmd_help },
30ae764b
DB
343#ifndef NO_CURL
344 { "http-fetch", cmd_http_fetch, RUN_SETUP },
345#endif
515377ea 346 { "init", cmd_init_db },
f754fa9c 347 { "init-db", cmd_init_db },
efffea03
JH
348 { "log", cmd_log, RUN_SETUP | USE_PAGER },
349 { "ls-files", cmd_ls_files, RUN_SETUP },
350 { "ls-tree", cmd_ls_tree, RUN_SETUP },
f754fa9c
JH
351 { "mailinfo", cmd_mailinfo },
352 { "mailsplit", cmd_mailsplit },
71dfbf22 353 { "merge-base", cmd_merge_base, RUN_SETUP },
ba1f5f35 354 { "merge-file", cmd_merge_file },
7ae3df8c 355 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
efffea03
JH
356 { "name-rev", cmd_name_rev, RUN_SETUP },
357 { "pack-objects", cmd_pack_objects, RUN_SETUP },
d97bc5de 358 { "pickaxe", cmd_blame, RUN_SETUP },
efffea03
JH
359 { "prune", cmd_prune, RUN_SETUP },
360 { "prune-packed", cmd_prune_packed, RUN_SETUP },
102cb085 361 { "push", cmd_push, RUN_SETUP },
efffea03 362 { "read-tree", cmd_read_tree, RUN_SETUP },
4264dc15 363 { "reflog", cmd_reflog, RUN_SETUP },
e0d10e1c 364 { "repo-config", cmd_config },
658f3650 365 { "rerere", cmd_rerere, RUN_SETUP },
0e5a7faa 366 { "reset", cmd_reset, RUN_SETUP },
efffea03
JH
367 { "rev-list", cmd_rev_list, RUN_SETUP },
368 { "rev-parse", cmd_rev_parse, RUN_SETUP },
7ae3df8c
ML
369 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
370 { "rm", cmd_rm, RUN_SETUP | NEED_WORK_TREE },
371 { "runstatus", cmd_runstatus, RUN_SETUP | NEED_WORK_TREE },
1d541c12 372 { "shortlog", cmd_shortlog, RUN_SETUP | USE_PAGER },
efffea03
JH
373 { "show-branch", cmd_show_branch, RUN_SETUP },
374 { "show", cmd_show, RUN_SETUP | USE_PAGER },
f754fa9c 375 { "stripspace", cmd_stripspace },
efffea03 376 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
62e09ce9 377 { "tag", cmd_tag, RUN_SETUP },
9cb90b80 378 { "tar-tree", cmd_tar_tree },
efffea03
JH
379 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
380 { "update-index", cmd_update_index, RUN_SETUP },
381 { "update-ref", cmd_update_ref, RUN_SETUP },
39345a21 382 { "upload-archive", cmd_upload_archive },
2ae68fcb 383 { "verify-tag", cmd_verify_tag, RUN_SETUP },
f754fa9c 384 { "version", cmd_version },
efffea03
JH
385 { "whatchanged", cmd_whatchanged, RUN_SETUP | USE_PAGER },
386 { "write-tree", cmd_write_tree, RUN_SETUP },
2e3ed670 387 { "verify-pack", cmd_verify_pack },
358ddb62 388 { "show-ref", cmd_show_ref, RUN_SETUP },
e1e22e37 389 { "pack-refs", cmd_pack_refs, RUN_SETUP },
231af832
LT
390 };
391 int i;
392
1cd95087
LT
393 /* Turn "git cmd --help" into "git help cmd" */
394 if (argc > 1 && !strcmp(argv[1], "--help")) {
395 argv[1] = argv[0];
396 argv[0] = cmd = "help";
397 }
398
231af832
LT
399 for (i = 0; i < ARRAY_SIZE(commands); i++) {
400 struct cmd_struct *p = commands+i;
401 if (strcmp(p->cmd, cmd))
402 continue;
47d0b4ff 403 exit(run_command(p, argc, argv));
231af832
LT
404 }
405}
406
47d0b4ff 407int main(int argc, const char **argv)
8e49d503 408{
5b6df8e4 409 const char *cmd = argv[0] ? argv[0] : "git-help";
231af832 410 char *slash = strrchr(cmd, '/');
231af832 411 const char *exec_path = NULL;
a025463b 412 int done_alias = 0;
231af832
LT
413
414 /*
415 * Take the basename of argv[0] as the command
416 * name, and the dirname as the default exec_path
43db492a 417 * if we don't have anything better.
231af832
LT
418 */
419 if (slash) {
420 *slash++ = 0;
421 if (*cmd == '/')
422 exec_path = cmd;
43db492a
JS
423 else
424 exec_path = xstrdup(make_absolute_path(cmd));
231af832
LT
425 cmd = slash;
426 }
8e49d503 427
231af832
LT
428 /*
429 * "git-xxxx" is the same as "git xxxx", but we obviously:
430 *
431 * - cannot take flags in between the "git" and the "xxxx".
432 * - cannot execute it externally (since it would just do
433 * the same thing over again)
434 *
435 * So we just directly call the internal command handler, and
436 * die if that one cannot handle it.
437 */
cc44c765 438 if (!prefixcmp(cmd, "git-")) {
231af832
LT
439 cmd += 4;
440 argv[0] = cmd;
47d0b4ff 441 handle_internal_command(argc, argv);
231af832
LT
442 die("cannot handle %s internally", cmd);
443 }
8e49d503 444
231af832 445 /* Look for flags.. */
6acbcb92
JS
446 argv++;
447 argc--;
4394efec 448 handle_options(&argv, &argc, NULL);
6acbcb92 449 if (argc > 0) {
cc44c765 450 if (!prefixcmp(argv[0], "--"))
6acbcb92
JS
451 argv[0] += 2;
452 } else {
3d7e2d85
SP
453 /* The user didn't specify a command; give them help */
454 printf("usage: %s\n\n", git_usage_string);
455 list_common_cmds_help();
456 exit(1);
97fc6c5f 457 }
6acbcb92 458 cmd = argv[0];
231af832
LT
459
460 /*
cf32190a
JH
461 * We execute external git command via execv_git_cmd(),
462 * which looks at "--exec-path" option, GIT_EXEC_PATH
463 * environment, and $(gitexecdir) in Makefile while built,
464 * in this order. For scripted commands, we prepend
465 * the value of the exec_path variable to the PATH.
231af832
LT
466 */
467 if (exec_path)
468 prepend_to_path(exec_path, strlen(exec_path));
77cb17e9
MO
469 exec_path = git_exec_path();
470 prepend_to_path(exec_path, strlen(exec_path));
8e49d503 471
a025463b
JH
472 while (1) {
473 /* See if it's an internal command */
47d0b4ff 474 handle_internal_command(argc, argv);
2b11e317 475
a025463b
JH
476 /* .. then try the external ones */
477 execv_git_cmd(argv);
231af832 478
a025463b
JH
479 /* It could be an alias -- this works around the insanity
480 * of overriding "git log" with "git show" by having
481 * alias.log = show
482 */
483 if (done_alias || !handle_alias(&argc, &argv))
484 break;
485 done_alias = 1;
486 }
10b15b86 487
f3dd015c
TT
488 if (errno == ENOENT) {
489 if (done_alias) {
490 fprintf(stderr, "Expansion of alias '%s' failed; "
491 "'%s' is not a git-command\n",
492 cmd, argv[0]);
493 exit(1);
494 }
822a7d50 495 help_unknown_cmd(cmd);
f3dd015c 496 }
10b15b86
AR
497
498 fprintf(stderr, "Failed to run command '%s': %s\n",
33ebb871 499 cmd, strerror(errno));
8e49d503
AE
500
501 return 1;
502}