]> git.ipfire.org Git - thirdparty/git.git/blob - git.c
git: --no-lazy-fetch option
[thirdparty/git.git] / git.c
1 #include "builtin.h"
2 #include "config.h"
3 #include "environment.h"
4 #include "exec-cmd.h"
5 #include "gettext.h"
6 #include "help.h"
7 #include "object-file.h"
8 #include "pager.h"
9 #include "read-cache-ll.h"
10 #include "run-command.h"
11 #include "alias.h"
12 #include "replace-object.h"
13 #include "setup.h"
14 #include "attr.h"
15 #include "shallow.h"
16 #include "trace.h"
17 #include "trace2.h"
18
19 #define RUN_SETUP (1<<0)
20 #define RUN_SETUP_GENTLY (1<<1)
21 #define USE_PAGER (1<<2)
22 /*
23 * require working tree to be present -- anything uses this needs
24 * RUN_SETUP for reading from the configuration file.
25 */
26 #define NEED_WORK_TREE (1<<3)
27 #define DELAY_PAGER_CONFIG (1<<4)
28 #define NO_PARSEOPT (1<<5) /* parse-options is not used */
29
30 struct cmd_struct {
31 const char *cmd;
32 int (*fn)(int, const char **, const char *);
33 unsigned int option;
34 };
35
36 const char git_usage_string[] =
37 N_("git [-v | --version] [-h | --help] [-C <path>] [-c <name>=<value>]\n"
38 " [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]\n"
39 " [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare]\n"
40 " [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]\n"
41 " [--config-env=<name>=<envvar>] <command> [<args>]");
42
43 const char git_more_info_string[] =
44 N_("'git help -a' and 'git help -g' list available subcommands and some\n"
45 "concept guides. See 'git help <command>' or 'git help <concept>'\n"
46 "to read about a specific subcommand or concept.\n"
47 "See 'git help git' for an overview of the system.");
48
49 static int use_pager = -1;
50
51 static void list_builtins(struct string_list *list, unsigned int exclude_option);
52
53 static void exclude_helpers_from_list(struct string_list *list)
54 {
55 int i = 0;
56
57 while (i < list->nr) {
58 if (strstr(list->items[i].string, "--"))
59 unsorted_string_list_delete_item(list, i, 0);
60 else
61 i++;
62 }
63 }
64
65 static int match_token(const char *spec, int len, const char *token)
66 {
67 int token_len = strlen(token);
68
69 return len == token_len && !strncmp(spec, token, token_len);
70 }
71
72 static int list_cmds(const char *spec)
73 {
74 struct string_list list = STRING_LIST_INIT_DUP;
75 int i;
76 int nongit;
77
78 /*
79 * Set up the repository so we can pick up any repo-level config (like
80 * completion.commands).
81 */
82 setup_git_directory_gently(&nongit);
83
84 while (*spec) {
85 const char *sep = strchrnul(spec, ',');
86 int len = sep - spec;
87
88 if (match_token(spec, len, "builtins"))
89 list_builtins(&list, 0);
90 else if (match_token(spec, len, "main"))
91 list_all_main_cmds(&list);
92 else if (match_token(spec, len, "others"))
93 list_all_other_cmds(&list);
94 else if (match_token(spec, len, "nohelpers"))
95 exclude_helpers_from_list(&list);
96 else if (match_token(spec, len, "alias"))
97 list_aliases(&list);
98 else if (match_token(spec, len, "config"))
99 list_cmds_by_config(&list);
100 else if (len > 5 && !strncmp(spec, "list-", 5)) {
101 struct strbuf sb = STRBUF_INIT;
102
103 strbuf_add(&sb, spec + 5, len - 5);
104 list_cmds_by_category(&list, sb.buf);
105 strbuf_release(&sb);
106 }
107 else
108 die(_("unsupported command listing type '%s'"), spec);
109 spec += len;
110 if (*spec == ',')
111 spec++;
112 }
113 for (i = 0; i < list.nr; i++)
114 puts(list.items[i].string);
115 string_list_clear(&list, 0);
116 return 0;
117 }
118
119 static void commit_pager_choice(void)
120 {
121 switch (use_pager) {
122 case 0:
123 setenv("GIT_PAGER", "cat", 1);
124 break;
125 case 1:
126 setup_pager();
127 break;
128 default:
129 break;
130 }
131 }
132
133 void setup_auto_pager(const char *cmd, int def)
134 {
135 if (use_pager != -1 || pager_in_use())
136 return;
137 use_pager = check_pager_config(cmd);
138 if (use_pager == -1)
139 use_pager = def;
140 commit_pager_choice();
141 }
142
143 static int handle_options(const char ***argv, int *argc, int *envchanged)
144 {
145 const char **orig_argv = *argv;
146
147 while (*argc > 0) {
148 const char *cmd = (*argv)[0];
149 if (cmd[0] != '-')
150 break;
151
152 /*
153 * For legacy reasons, the "version" and "help"
154 * commands can be written with "--" prepended
155 * to make them look like flags.
156 */
157 if (!strcmp(cmd, "--help") || !strcmp(cmd, "-h") ||
158 !strcmp(cmd, "--version") || !strcmp(cmd, "-v"))
159 break;
160
161 /*
162 * Check remaining flags.
163 */
164 if (skip_prefix(cmd, "--exec-path", &cmd)) {
165 if (*cmd == '=')
166 git_set_exec_path(cmd + 1);
167 else {
168 puts(git_exec_path());
169 trace2_cmd_name("_query_");
170 exit(0);
171 }
172 } else if (!strcmp(cmd, "--html-path")) {
173 puts(system_path(GIT_HTML_PATH));
174 trace2_cmd_name("_query_");
175 exit(0);
176 } else if (!strcmp(cmd, "--man-path")) {
177 puts(system_path(GIT_MAN_PATH));
178 trace2_cmd_name("_query_");
179 exit(0);
180 } else if (!strcmp(cmd, "--info-path")) {
181 puts(system_path(GIT_INFO_PATH));
182 trace2_cmd_name("_query_");
183 exit(0);
184 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
185 use_pager = 1;
186 } else if (!strcmp(cmd, "-P") || !strcmp(cmd, "--no-pager")) {
187 use_pager = 0;
188 if (envchanged)
189 *envchanged = 1;
190 } else if (!strcmp(cmd, "--no-lazy-fetch")) {
191 fetch_if_missing = 0;
192 } else if (!strcmp(cmd, "--no-replace-objects")) {
193 disable_replace_refs();
194 setenv(NO_REPLACE_OBJECTS_ENVIRONMENT, "1", 1);
195 if (envchanged)
196 *envchanged = 1;
197 } else if (!strcmp(cmd, "--git-dir")) {
198 if (*argc < 2) {
199 fprintf(stderr, _("no directory given for '%s' option\n" ), "--git-dir");
200 usage(git_usage_string);
201 }
202 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
203 if (envchanged)
204 *envchanged = 1;
205 (*argv)++;
206 (*argc)--;
207 } else if (skip_prefix(cmd, "--git-dir=", &cmd)) {
208 setenv(GIT_DIR_ENVIRONMENT, cmd, 1);
209 if (envchanged)
210 *envchanged = 1;
211 } else if (!strcmp(cmd, "--namespace")) {
212 if (*argc < 2) {
213 fprintf(stderr, _("no namespace given for --namespace\n" ));
214 usage(git_usage_string);
215 }
216 setenv(GIT_NAMESPACE_ENVIRONMENT, (*argv)[1], 1);
217 if (envchanged)
218 *envchanged = 1;
219 (*argv)++;
220 (*argc)--;
221 } else if (skip_prefix(cmd, "--namespace=", &cmd)) {
222 setenv(GIT_NAMESPACE_ENVIRONMENT, cmd, 1);
223 if (envchanged)
224 *envchanged = 1;
225 } else if (!strcmp(cmd, "--work-tree")) {
226 if (*argc < 2) {
227 fprintf(stderr, _("no directory given for '%s' option\n" ), "--work-tree");
228 usage(git_usage_string);
229 }
230 setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
231 if (envchanged)
232 *envchanged = 1;
233 (*argv)++;
234 (*argc)--;
235 } else if (skip_prefix(cmd, "--work-tree=", &cmd)) {
236 setenv(GIT_WORK_TREE_ENVIRONMENT, cmd, 1);
237 if (envchanged)
238 *envchanged = 1;
239 } else if (!strcmp(cmd, "--bare")) {
240 char *cwd = xgetcwd();
241 is_bare_repository_cfg = 1;
242 setenv(GIT_DIR_ENVIRONMENT, cwd, 0);
243 free(cwd);
244 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
245 if (envchanged)
246 *envchanged = 1;
247 } else if (!strcmp(cmd, "-c")) {
248 if (*argc < 2) {
249 fprintf(stderr, _("-c expects a configuration string\n" ));
250 usage(git_usage_string);
251 }
252 git_config_push_parameter((*argv)[1]);
253 (*argv)++;
254 (*argc)--;
255 } else if (!strcmp(cmd, "--config-env")) {
256 if (*argc < 2) {
257 fprintf(stderr, _("no config key given for --config-env\n" ));
258 usage(git_usage_string);
259 }
260 git_config_push_env((*argv)[1]);
261 (*argv)++;
262 (*argc)--;
263 } else if (skip_prefix(cmd, "--config-env=", &cmd)) {
264 git_config_push_env(cmd);
265 } else if (!strcmp(cmd, "--literal-pathspecs")) {
266 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "1", 1);
267 if (envchanged)
268 *envchanged = 1;
269 } else if (!strcmp(cmd, "--no-literal-pathspecs")) {
270 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "0", 1);
271 if (envchanged)
272 *envchanged = 1;
273 } else if (!strcmp(cmd, "--glob-pathspecs")) {
274 setenv(GIT_GLOB_PATHSPECS_ENVIRONMENT, "1", 1);
275 if (envchanged)
276 *envchanged = 1;
277 } else if (!strcmp(cmd, "--noglob-pathspecs")) {
278 setenv(GIT_NOGLOB_PATHSPECS_ENVIRONMENT, "1", 1);
279 if (envchanged)
280 *envchanged = 1;
281 } else if (!strcmp(cmd, "--icase-pathspecs")) {
282 setenv(GIT_ICASE_PATHSPECS_ENVIRONMENT, "1", 1);
283 if (envchanged)
284 *envchanged = 1;
285 } else if (!strcmp(cmd, "--no-optional-locks")) {
286 setenv(GIT_OPTIONAL_LOCKS_ENVIRONMENT, "0", 1);
287 if (envchanged)
288 *envchanged = 1;
289 } else if (!strcmp(cmd, "--shallow-file")) {
290 (*argv)++;
291 (*argc)--;
292 set_alternate_shallow_file(the_repository, (*argv)[0], 1);
293 if (envchanged)
294 *envchanged = 1;
295 } else if (!strcmp(cmd, "-C")) {
296 if (*argc < 2) {
297 fprintf(stderr, _("no directory given for '%s' option\n" ), "-C");
298 usage(git_usage_string);
299 }
300 if ((*argv)[1][0]) {
301 if (chdir((*argv)[1]))
302 die_errno("cannot change to '%s'", (*argv)[1]);
303 if (envchanged)
304 *envchanged = 1;
305 }
306 (*argv)++;
307 (*argc)--;
308 } else if (skip_prefix(cmd, "--list-cmds=", &cmd)) {
309 trace2_cmd_name("_query_");
310 if (!strcmp(cmd, "parseopt")) {
311 struct string_list list = STRING_LIST_INIT_DUP;
312 int i;
313
314 list_builtins(&list, NO_PARSEOPT);
315 for (i = 0; i < list.nr; i++)
316 printf("%s ", list.items[i].string);
317 string_list_clear(&list, 0);
318 exit(0);
319 } else {
320 exit(list_cmds(cmd));
321 }
322 } else if (!strcmp(cmd, "--attr-source")) {
323 if (*argc < 2) {
324 fprintf(stderr, _("no attribute source given for --attr-source\n" ));
325 usage(git_usage_string);
326 }
327 setenv(GIT_ATTR_SOURCE_ENVIRONMENT, (*argv)[1], 1);
328 if (envchanged)
329 *envchanged = 1;
330 (*argv)++;
331 (*argc)--;
332 } else if (skip_prefix(cmd, "--attr-source=", &cmd)) {
333 set_git_attr_source(cmd);
334 setenv(GIT_ATTR_SOURCE_ENVIRONMENT, cmd, 1);
335 if (envchanged)
336 *envchanged = 1;
337 } else {
338 fprintf(stderr, _("unknown option: %s\n"), cmd);
339 usage(git_usage_string);
340 }
341
342 (*argv)++;
343 (*argc)--;
344 }
345 return (*argv) - orig_argv;
346 }
347
348 static int handle_alias(int *argcp, const char ***argv)
349 {
350 int envchanged = 0, ret = 0, saved_errno = errno;
351 int count, option_count;
352 const char **new_argv;
353 const char *alias_command;
354 char *alias_string;
355
356 alias_command = (*argv)[0];
357 alias_string = alias_lookup(alias_command);
358 if (alias_string) {
359 if (*argcp > 1 && !strcmp((*argv)[1], "-h"))
360 fprintf_ln(stderr, _("'%s' is aliased to '%s'"),
361 alias_command, alias_string);
362 if (alias_string[0] == '!') {
363 struct child_process child = CHILD_PROCESS_INIT;
364 int nongit_ok;
365
366 /* Aliases expect GIT_PREFIX, GIT_DIR etc to be set */
367 setup_git_directory_gently(&nongit_ok);
368
369 commit_pager_choice();
370
371 child.use_shell = 1;
372 child.clean_on_exit = 1;
373 child.wait_after_clean = 1;
374 child.trace2_child_class = "shell_alias";
375 strvec_push(&child.args, alias_string + 1);
376 strvec_pushv(&child.args, (*argv) + 1);
377
378 trace2_cmd_alias(alias_command, child.args.v);
379 trace2_cmd_list_config();
380 trace2_cmd_list_env_vars();
381 trace2_cmd_name("_run_shell_alias_");
382
383 ret = run_command(&child);
384 if (ret >= 0) /* normal exit */
385 exit(ret);
386
387 die_errno(_("while expanding alias '%s': '%s'"),
388 alias_command, alias_string + 1);
389 }
390 count = split_cmdline(alias_string, &new_argv);
391 if (count < 0)
392 die(_("bad alias.%s string: %s"), alias_command,
393 _(split_cmdline_strerror(count)));
394 option_count = handle_options(&new_argv, &count, &envchanged);
395 if (envchanged)
396 die(_("alias '%s' changes environment variables.\n"
397 "You can use '!git' in the alias to do this"),
398 alias_command);
399 MOVE_ARRAY(new_argv - option_count, new_argv, count);
400 new_argv -= option_count;
401
402 if (count < 1)
403 die(_("empty alias for %s"), alias_command);
404
405 if (!strcmp(alias_command, new_argv[0]))
406 die(_("recursive alias: %s"), alias_command);
407
408 trace_argv_printf(new_argv,
409 "trace: alias expansion: %s =>",
410 alias_command);
411
412 REALLOC_ARRAY(new_argv, count + *argcp);
413 /* insert after command name */
414 COPY_ARRAY(new_argv + count, *argv + 1, *argcp);
415
416 trace2_cmd_alias(alias_command, new_argv);
417 trace2_cmd_list_config();
418 trace2_cmd_list_env_vars();
419
420 *argv = new_argv;
421 *argcp += count - 1;
422
423 ret = 1;
424 }
425
426 errno = saved_errno;
427
428 return ret;
429 }
430
431 static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
432 {
433 int status, help;
434 struct stat st;
435 const char *prefix;
436 int run_setup = (p->option & (RUN_SETUP | RUN_SETUP_GENTLY));
437
438 help = argc == 2 && !strcmp(argv[1], "-h");
439 if (help && (run_setup & RUN_SETUP))
440 /* demote to GENTLY to allow 'git cmd -h' outside repo */
441 run_setup = RUN_SETUP_GENTLY;
442
443 if (run_setup & RUN_SETUP) {
444 prefix = setup_git_directory();
445 } else if (run_setup & RUN_SETUP_GENTLY) {
446 int nongit_ok;
447 prefix = setup_git_directory_gently(&nongit_ok);
448 } else {
449 prefix = NULL;
450 }
451 assert(!prefix || *prefix);
452 precompose_argv_prefix(argc, argv, NULL);
453 if (use_pager == -1 && run_setup &&
454 !(p->option & DELAY_PAGER_CONFIG))
455 use_pager = check_pager_config(p->cmd);
456 if (use_pager == -1 && p->option & USE_PAGER)
457 use_pager = 1;
458 if (run_setup && startup_info->have_repository)
459 /* get_git_dir() may set up repo, avoid that */
460 trace_repo_setup();
461 commit_pager_choice();
462
463 if (!help && p->option & NEED_WORK_TREE)
464 setup_work_tree();
465
466 trace_argv_printf(argv, "trace: built-in: git");
467 trace2_cmd_name(p->cmd);
468 trace2_cmd_list_config();
469 trace2_cmd_list_env_vars();
470
471 validate_cache_entries(the_repository->index);
472 status = p->fn(argc, argv, prefix);
473 validate_cache_entries(the_repository->index);
474
475 if (status)
476 return status;
477
478 /* Somebody closed stdout? */
479 if (fstat(fileno(stdout), &st))
480 return 0;
481 /* Ignore write errors for pipes and sockets.. */
482 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
483 return 0;
484
485 /* Check for ENOSPC and EIO errors.. */
486 if (fflush(stdout))
487 die_errno(_("write failure on standard output"));
488 if (ferror(stdout))
489 die(_("unknown write failure on standard output"));
490 if (fclose(stdout))
491 die_errno(_("close failed on standard output"));
492 return 0;
493 }
494
495 static struct cmd_struct commands[] = {
496 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
497 { "am", cmd_am, RUN_SETUP | NEED_WORK_TREE },
498 { "annotate", cmd_annotate, RUN_SETUP },
499 { "apply", cmd_apply, RUN_SETUP_GENTLY },
500 { "archive", cmd_archive, RUN_SETUP_GENTLY },
501 { "bisect", cmd_bisect, RUN_SETUP },
502 { "blame", cmd_blame, RUN_SETUP },
503 { "branch", cmd_branch, RUN_SETUP | DELAY_PAGER_CONFIG },
504 { "bugreport", cmd_bugreport, RUN_SETUP_GENTLY },
505 { "bundle", cmd_bundle, RUN_SETUP_GENTLY },
506 { "cat-file", cmd_cat_file, RUN_SETUP },
507 { "check-attr", cmd_check_attr, RUN_SETUP },
508 { "check-ignore", cmd_check_ignore, RUN_SETUP | NEED_WORK_TREE },
509 { "check-mailmap", cmd_check_mailmap, RUN_SETUP },
510 { "check-ref-format", cmd_check_ref_format, NO_PARSEOPT },
511 { "checkout", cmd_checkout, RUN_SETUP | NEED_WORK_TREE },
512 { "checkout--worker", cmd_checkout__worker,
513 RUN_SETUP | NEED_WORK_TREE },
514 { "checkout-index", cmd_checkout_index,
515 RUN_SETUP | NEED_WORK_TREE},
516 { "cherry", cmd_cherry, RUN_SETUP },
517 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
518 { "clean", cmd_clean, RUN_SETUP | NEED_WORK_TREE },
519 { "clone", cmd_clone },
520 { "column", cmd_column, RUN_SETUP_GENTLY },
521 { "commit", cmd_commit, RUN_SETUP | NEED_WORK_TREE },
522 { "commit-graph", cmd_commit_graph, RUN_SETUP },
523 { "commit-tree", cmd_commit_tree, RUN_SETUP },
524 { "config", cmd_config, RUN_SETUP_GENTLY | DELAY_PAGER_CONFIG },
525 { "count-objects", cmd_count_objects, RUN_SETUP },
526 { "credential", cmd_credential, RUN_SETUP_GENTLY | NO_PARSEOPT },
527 { "credential-cache", cmd_credential_cache },
528 { "credential-cache--daemon", cmd_credential_cache_daemon },
529 { "credential-store", cmd_credential_store },
530 { "describe", cmd_describe, RUN_SETUP },
531 { "diagnose", cmd_diagnose, RUN_SETUP_GENTLY },
532 { "diff", cmd_diff, NO_PARSEOPT },
533 { "diff-files", cmd_diff_files, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
534 { "diff-index", cmd_diff_index, RUN_SETUP | NO_PARSEOPT },
535 { "diff-tree", cmd_diff_tree, RUN_SETUP | NO_PARSEOPT },
536 { "difftool", cmd_difftool, RUN_SETUP_GENTLY },
537 { "fast-export", cmd_fast_export, RUN_SETUP },
538 { "fast-import", cmd_fast_import, RUN_SETUP | NO_PARSEOPT },
539 { "fetch", cmd_fetch, RUN_SETUP },
540 { "fetch-pack", cmd_fetch_pack, RUN_SETUP | NO_PARSEOPT },
541 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
542 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
543 { "for-each-repo", cmd_for_each_repo, RUN_SETUP_GENTLY },
544 { "format-patch", cmd_format_patch, RUN_SETUP },
545 { "fsck", cmd_fsck, RUN_SETUP },
546 { "fsck-objects", cmd_fsck, RUN_SETUP },
547 { "fsmonitor--daemon", cmd_fsmonitor__daemon, RUN_SETUP },
548 { "gc", cmd_gc, RUN_SETUP },
549 { "get-tar-commit-id", cmd_get_tar_commit_id, NO_PARSEOPT },
550 { "grep", cmd_grep, RUN_SETUP_GENTLY },
551 { "hash-object", cmd_hash_object },
552 { "help", cmd_help },
553 { "hook", cmd_hook, RUN_SETUP },
554 { "index-pack", cmd_index_pack, RUN_SETUP_GENTLY | NO_PARSEOPT },
555 { "init", cmd_init_db },
556 { "init-db", cmd_init_db },
557 { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP_GENTLY },
558 { "log", cmd_log, RUN_SETUP },
559 { "ls-files", cmd_ls_files, RUN_SETUP },
560 { "ls-remote", cmd_ls_remote, RUN_SETUP_GENTLY },
561 { "ls-tree", cmd_ls_tree, RUN_SETUP },
562 { "mailinfo", cmd_mailinfo, RUN_SETUP_GENTLY },
563 { "mailsplit", cmd_mailsplit, NO_PARSEOPT },
564 { "maintenance", cmd_maintenance, RUN_SETUP },
565 { "merge", cmd_merge, RUN_SETUP | NEED_WORK_TREE },
566 { "merge-base", cmd_merge_base, RUN_SETUP },
567 { "merge-file", cmd_merge_file, RUN_SETUP_GENTLY },
568 { "merge-index", cmd_merge_index, RUN_SETUP | NO_PARSEOPT },
569 { "merge-ours", cmd_merge_ours, RUN_SETUP | NO_PARSEOPT },
570 { "merge-recursive", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
571 { "merge-recursive-ours", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
572 { "merge-recursive-theirs", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
573 { "merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
574 { "merge-tree", cmd_merge_tree, RUN_SETUP },
575 { "mktag", cmd_mktag, RUN_SETUP },
576 { "mktree", cmd_mktree, RUN_SETUP },
577 { "multi-pack-index", cmd_multi_pack_index, RUN_SETUP },
578 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
579 { "name-rev", cmd_name_rev, RUN_SETUP },
580 { "notes", cmd_notes, RUN_SETUP },
581 { "pack-objects", cmd_pack_objects, RUN_SETUP },
582 { "pack-redundant", cmd_pack_redundant, RUN_SETUP | NO_PARSEOPT },
583 { "pack-refs", cmd_pack_refs, RUN_SETUP },
584 { "patch-id", cmd_patch_id, RUN_SETUP_GENTLY | NO_PARSEOPT },
585 { "pickaxe", cmd_blame, RUN_SETUP },
586 { "prune", cmd_prune, RUN_SETUP },
587 { "prune-packed", cmd_prune_packed, RUN_SETUP },
588 { "pull", cmd_pull, RUN_SETUP | NEED_WORK_TREE },
589 { "push", cmd_push, RUN_SETUP },
590 { "range-diff", cmd_range_diff, RUN_SETUP | USE_PAGER },
591 { "read-tree", cmd_read_tree, RUN_SETUP },
592 { "rebase", cmd_rebase, RUN_SETUP | NEED_WORK_TREE },
593 { "receive-pack", cmd_receive_pack },
594 { "reflog", cmd_reflog, RUN_SETUP },
595 { "remote", cmd_remote, RUN_SETUP },
596 { "remote-ext", cmd_remote_ext, NO_PARSEOPT },
597 { "remote-fd", cmd_remote_fd, NO_PARSEOPT },
598 { "repack", cmd_repack, RUN_SETUP },
599 { "replace", cmd_replace, RUN_SETUP },
600 { "rerere", cmd_rerere, RUN_SETUP },
601 { "reset", cmd_reset, RUN_SETUP },
602 { "restore", cmd_restore, RUN_SETUP | NEED_WORK_TREE },
603 { "rev-list", cmd_rev_list, RUN_SETUP | NO_PARSEOPT },
604 { "rev-parse", cmd_rev_parse, NO_PARSEOPT },
605 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
606 { "rm", cmd_rm, RUN_SETUP },
607 { "send-pack", cmd_send_pack, RUN_SETUP },
608 { "shortlog", cmd_shortlog, RUN_SETUP_GENTLY | USE_PAGER },
609 { "show", cmd_show, RUN_SETUP },
610 { "show-branch", cmd_show_branch, RUN_SETUP },
611 { "show-index", cmd_show_index, RUN_SETUP_GENTLY },
612 { "show-ref", cmd_show_ref, RUN_SETUP },
613 { "sparse-checkout", cmd_sparse_checkout, RUN_SETUP },
614 { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
615 { "stash", cmd_stash, RUN_SETUP | NEED_WORK_TREE },
616 { "status", cmd_status, RUN_SETUP | NEED_WORK_TREE },
617 { "stripspace", cmd_stripspace },
618 { "submodule--helper", cmd_submodule__helper, RUN_SETUP },
619 { "switch", cmd_switch, RUN_SETUP | NEED_WORK_TREE },
620 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
621 { "tag", cmd_tag, RUN_SETUP | DELAY_PAGER_CONFIG },
622 { "unpack-file", cmd_unpack_file, RUN_SETUP | NO_PARSEOPT },
623 { "unpack-objects", cmd_unpack_objects, RUN_SETUP | NO_PARSEOPT },
624 { "update-index", cmd_update_index, RUN_SETUP },
625 { "update-ref", cmd_update_ref, RUN_SETUP },
626 { "update-server-info", cmd_update_server_info, RUN_SETUP },
627 { "upload-archive", cmd_upload_archive, NO_PARSEOPT },
628 { "upload-archive--writer", cmd_upload_archive_writer, NO_PARSEOPT },
629 { "upload-pack", cmd_upload_pack },
630 { "var", cmd_var, RUN_SETUP_GENTLY | NO_PARSEOPT },
631 { "verify-commit", cmd_verify_commit, RUN_SETUP },
632 { "verify-pack", cmd_verify_pack },
633 { "verify-tag", cmd_verify_tag, RUN_SETUP },
634 { "version", cmd_version },
635 { "whatchanged", cmd_whatchanged, RUN_SETUP },
636 { "worktree", cmd_worktree, RUN_SETUP },
637 { "write-tree", cmd_write_tree, RUN_SETUP },
638 };
639
640 static struct cmd_struct *get_builtin(const char *s)
641 {
642 int i;
643 for (i = 0; i < ARRAY_SIZE(commands); i++) {
644 struct cmd_struct *p = commands + i;
645 if (!strcmp(s, p->cmd))
646 return p;
647 }
648 return NULL;
649 }
650
651 int is_builtin(const char *s)
652 {
653 return !!get_builtin(s);
654 }
655
656 static void list_builtins(struct string_list *out, unsigned int exclude_option)
657 {
658 int i;
659 for (i = 0; i < ARRAY_SIZE(commands); i++) {
660 if (exclude_option &&
661 (commands[i].option & exclude_option))
662 continue;
663 string_list_append(out, commands[i].cmd);
664 }
665 }
666
667 void load_builtin_commands(const char *prefix, struct cmdnames *cmds)
668 {
669 const char *name;
670 int i;
671
672 /*
673 * Callers can ask for a subset of the commands based on a certain
674 * prefix, which is then dropped from the added names. The names in
675 * the `commands[]` array do not have the `git-` prefix, though,
676 * therefore we must expect the `prefix` to at least start with `git-`.
677 */
678 if (!skip_prefix(prefix, "git-", &prefix))
679 BUG("prefix '%s' must start with 'git-'", prefix);
680
681 for (i = 0; i < ARRAY_SIZE(commands); i++)
682 if (skip_prefix(commands[i].cmd, prefix, &name))
683 add_cmdname(cmds, name, strlen(name));
684 }
685
686 #ifdef STRIP_EXTENSION
687 static void strip_extension(const char **argv)
688 {
689 size_t len;
690
691 if (strip_suffix(argv[0], STRIP_EXTENSION, &len))
692 argv[0] = xmemdupz(argv[0], len);
693 }
694 #else
695 #define strip_extension(cmd)
696 #endif
697
698 static void handle_builtin(int argc, const char **argv)
699 {
700 struct strvec args = STRVEC_INIT;
701 const char *cmd;
702 struct cmd_struct *builtin;
703
704 strip_extension(argv);
705 cmd = argv[0];
706
707 /* Turn "git cmd --help" into "git help --exclude-guides cmd" */
708 if (argc > 1 && !strcmp(argv[1], "--help")) {
709 int i;
710
711 argv[1] = argv[0];
712 argv[0] = cmd = "help";
713
714 for (i = 0; i < argc; i++) {
715 strvec_push(&args, argv[i]);
716 if (!i)
717 strvec_push(&args, "--exclude-guides");
718 }
719
720 argc++;
721 argv = args.v;
722 }
723
724 builtin = get_builtin(cmd);
725 if (builtin)
726 exit(run_builtin(builtin, argc, argv));
727 strvec_clear(&args);
728 }
729
730 static void execv_dashed_external(const char **argv)
731 {
732 struct child_process cmd = CHILD_PROCESS_INIT;
733 int status;
734
735 if (use_pager == -1 && !is_builtin(argv[0]))
736 use_pager = check_pager_config(argv[0]);
737 commit_pager_choice();
738
739 strvec_pushf(&cmd.args, "git-%s", argv[0]);
740 strvec_pushv(&cmd.args, argv + 1);
741 cmd.clean_on_exit = 1;
742 cmd.wait_after_clean = 1;
743 cmd.silent_exec_failure = 1;
744 cmd.trace2_child_class = "dashed";
745
746 trace2_cmd_name("_run_dashed_");
747
748 /*
749 * The code in run_command() logs trace2 child_start/child_exit
750 * events, so we do not need to report exec/exec_result events here.
751 */
752 trace_argv_printf(cmd.args.v, "trace: exec:");
753
754 /*
755 * If we fail because the command is not found, it is
756 * OK to return. Otherwise, we just pass along the status code,
757 * or our usual generic code if we were not even able to exec
758 * the program.
759 */
760 status = run_command(&cmd);
761
762 /*
763 * If the child process ran and we are now going to exit, emit a
764 * generic string as our trace2 command verb to indicate that we
765 * launched a dashed command.
766 */
767 if (status >= 0)
768 exit(status);
769 else if (errno != ENOENT)
770 exit(128);
771 }
772
773 static int run_argv(int *argcp, const char ***argv)
774 {
775 int done_alias = 0;
776 struct string_list cmd_list = STRING_LIST_INIT_NODUP;
777 struct string_list_item *seen;
778
779 while (1) {
780 /*
781 * If we tried alias and futzed with our environment,
782 * it no longer is safe to invoke builtins directly in
783 * general. We have to spawn them as dashed externals.
784 *
785 * NEEDSWORK: if we can figure out cases
786 * where it is safe to do, we can avoid spawning a new
787 * process.
788 */
789 if (!done_alias)
790 handle_builtin(*argcp, *argv);
791 else if (get_builtin(**argv)) {
792 struct child_process cmd = CHILD_PROCESS_INIT;
793 int i;
794
795 /*
796 * The current process is committed to launching a
797 * child process to run the command named in (**argv)
798 * and exiting. Log a generic string as the trace2
799 * command verb to indicate this. Note that the child
800 * process will log the actual verb when it runs.
801 */
802 trace2_cmd_name("_run_git_alias_");
803
804 commit_pager_choice();
805
806 strvec_push(&cmd.args, "git");
807 for (i = 0; i < *argcp; i++)
808 strvec_push(&cmd.args, (*argv)[i]);
809
810 trace_argv_printf(cmd.args.v, "trace: exec:");
811
812 /*
813 * if we fail because the command is not found, it is
814 * OK to return. Otherwise, we just pass along the status code.
815 */
816 cmd.silent_exec_failure = 1;
817 cmd.clean_on_exit = 1;
818 cmd.wait_after_clean = 1;
819 cmd.trace2_child_class = "git_alias";
820 i = run_command(&cmd);
821 if (i >= 0 || errno != ENOENT)
822 exit(i);
823 die("could not execute builtin %s", **argv);
824 }
825
826 /* .. then try the external ones */
827 execv_dashed_external(*argv);
828
829 seen = unsorted_string_list_lookup(&cmd_list, *argv[0]);
830 if (seen) {
831 int i;
832 struct strbuf sb = STRBUF_INIT;
833 for (i = 0; i < cmd_list.nr; i++) {
834 struct string_list_item *item = &cmd_list.items[i];
835
836 strbuf_addf(&sb, "\n %s", item->string);
837 if (item == seen)
838 strbuf_addstr(&sb, " <==");
839 else if (i == cmd_list.nr - 1)
840 strbuf_addstr(&sb, " ==>");
841 }
842 die(_("alias loop detected: expansion of '%s' does"
843 " not terminate:%s"), cmd_list.items[0].string, sb.buf);
844 }
845
846 string_list_append(&cmd_list, *argv[0]);
847
848 /*
849 * It could be an alias -- this works around the insanity
850 * of overriding "git log" with "git show" by having
851 * alias.log = show
852 */
853 if (!handle_alias(argcp, argv))
854 break;
855 done_alias = 1;
856 }
857
858 string_list_clear(&cmd_list, 0);
859
860 return done_alias;
861 }
862
863 int cmd_main(int argc, const char **argv)
864 {
865 const char *cmd;
866 int done_help = 0;
867
868 cmd = argv[0];
869 if (!cmd)
870 cmd = "git-help";
871 else {
872 const char *slash = find_last_dir_sep(cmd);
873 if (slash)
874 cmd = slash + 1;
875 }
876
877 trace_command_performance(argv);
878
879 /*
880 * "git-xxxx" is the same as "git xxxx", but we obviously:
881 *
882 * - cannot take flags in between the "git" and the "xxxx".
883 * - cannot execute it externally (since it would just do
884 * the same thing over again)
885 *
886 * So we just directly call the builtin handler, and die if
887 * that one cannot handle it.
888 */
889 if (skip_prefix(cmd, "git-", &cmd)) {
890 argv[0] = cmd;
891 handle_builtin(argc, argv);
892 die(_("cannot handle %s as a builtin"), cmd);
893 }
894
895 /* Look for flags.. */
896 argv++;
897 argc--;
898 handle_options(&argv, &argc, NULL);
899
900 if (!argc) {
901 /* The user didn't specify a command; give them help */
902 commit_pager_choice();
903 printf(_("usage: %s\n\n"), git_usage_string);
904 list_common_cmds_help();
905 printf("\n%s\n", _(git_more_info_string));
906 exit(1);
907 }
908
909 if (!strcmp("--version", argv[0]) || !strcmp("-v", argv[0]))
910 argv[0] = "version";
911 else if (!strcmp("--help", argv[0]) || !strcmp("-h", argv[0]))
912 argv[0] = "help";
913
914 cmd = argv[0];
915
916 /*
917 * We use PATH to find git commands, but we prepend some higher
918 * precedence paths: the "--exec-path" option, the GIT_EXEC_PATH
919 * environment, and the $(gitexecdir) from the Makefile at build
920 * time.
921 */
922 setup_path();
923
924 while (1) {
925 int was_alias = run_argv(&argc, &argv);
926 if (errno != ENOENT)
927 break;
928 if (was_alias) {
929 fprintf(stderr, _("expansion of alias '%s' failed; "
930 "'%s' is not a git command\n"),
931 cmd, argv[0]);
932 exit(1);
933 }
934 if (!done_help) {
935 cmd = argv[0] = help_unknown_cmd(cmd);
936 done_help = 1;
937 } else
938 break;
939 }
940
941 fprintf(stderr, _("failed to run command '%s': %s\n"),
942 cmd, strerror(errno));
943
944 return 1;
945 }