Code

bisect: implement "read_bisect_paths" to read paths in "$GIT_DIR/BISECT_NAMES"
[git.git] / git.c
1 #include "builtin.h"
2 #include "exec_cmd.h"
3 #include "cache.h"
4 #include "quote.h"
5 #include "run-command.h"
7 const char git_usage_string[] =
8         "git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate|--no-pager] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS]";
10 const char git_more_info_string[] =
11         "See 'git help COMMAND' for more information on a specific command.";
13 static int use_pager = -1;
14 struct pager_config {
15         const char *cmd;
16         int val;
17 };
19 static int pager_command_config(const char *var, const char *value, void *data)
20 {
21         struct pager_config *c = data;
22         if (!prefixcmp(var, "pager.") && !strcmp(var + 6, c->cmd))
23                 c->val = git_config_bool(var, value);
24         return 0;
25 }
27 /* returns 0 for "no pager", 1 for "use pager", and -1 for "not specified" */
28 int check_pager_config(const char *cmd)
29 {
30         struct pager_config c;
31         c.cmd = cmd;
32         c.val = -1;
33         git_config(pager_command_config, &c);
34         return c.val;
35 }
37 static void commit_pager_choice(void) {
38         switch (use_pager) {
39         case 0:
40                 setenv("GIT_PAGER", "cat", 1);
41                 break;
42         case 1:
43                 setup_pager();
44                 break;
45         default:
46                 break;
47         }
48 }
50 static int handle_options(const char*** argv, int* argc, int* envchanged)
51 {
52         int handled = 0;
54         while (*argc > 0) {
55                 const char *cmd = (*argv)[0];
56                 if (cmd[0] != '-')
57                         break;
59                 /*
60                  * For legacy reasons, the "version" and "help"
61                  * commands can be written with "--" prepended
62                  * to make them look like flags.
63                  */
64                 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
65                         break;
67                 /*
68                  * Check remaining flags.
69                  */
70                 if (!prefixcmp(cmd, "--exec-path")) {
71                         cmd += 11;
72                         if (*cmd == '=')
73                                 git_set_argv_exec_path(cmd + 1);
74                         else {
75                                 puts(git_exec_path());
76                                 exit(0);
77                         }
78                 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
79                         use_pager = 1;
80                 } else if (!strcmp(cmd, "--no-pager")) {
81                         use_pager = 0;
82                         if (envchanged)
83                                 *envchanged = 1;
84                 } else if (!strcmp(cmd, "--git-dir")) {
85                         if (*argc < 2) {
86                                 fprintf(stderr, "No directory given for --git-dir.\n" );
87                                 usage(git_usage_string);
88                         }
89                         setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
90                         if (envchanged)
91                                 *envchanged = 1;
92                         (*argv)++;
93                         (*argc)--;
94                         handled++;
95                 } else if (!prefixcmp(cmd, "--git-dir=")) {
96                         setenv(GIT_DIR_ENVIRONMENT, cmd + 10, 1);
97                         if (envchanged)
98                                 *envchanged = 1;
99                 } else if (!strcmp(cmd, "--work-tree")) {
100                         if (*argc < 2) {
101                                 fprintf(stderr, "No directory given for --work-tree.\n" );
102                                 usage(git_usage_string);
103                         }
104                         setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
105                         if (envchanged)
106                                 *envchanged = 1;
107                         (*argv)++;
108                         (*argc)--;
109                 } else if (!prefixcmp(cmd, "--work-tree=")) {
110                         setenv(GIT_WORK_TREE_ENVIRONMENT, cmd + 12, 1);
111                         if (envchanged)
112                                 *envchanged = 1;
113                 } else if (!strcmp(cmd, "--bare")) {
114                         static char git_dir[PATH_MAX+1];
115                         is_bare_repository_cfg = 1;
116                         setenv(GIT_DIR_ENVIRONMENT, getcwd(git_dir, sizeof(git_dir)), 0);
117                         if (envchanged)
118                                 *envchanged = 1;
119                 } else {
120                         fprintf(stderr, "Unknown option: %s\n", cmd);
121                         usage(git_usage_string);
122                 }
124                 (*argv)++;
125                 (*argc)--;
126                 handled++;
127         }
128         return handled;
131 static int handle_alias(int *argcp, const char ***argv)
133         int envchanged = 0, ret = 0, saved_errno = errno;
134         const char *subdir;
135         int count, option_count;
136         const char** new_argv;
137         const char *alias_command;
138         char *alias_string;
139         int unused_nongit;
141         subdir = setup_git_directory_gently(&unused_nongit);
143         alias_command = (*argv)[0];
144         alias_string = alias_lookup(alias_command);
145         if (alias_string) {
146                 if (alias_string[0] == '!') {
147                         if (*argcp > 1) {
148                                 struct strbuf buf;
150                                 strbuf_init(&buf, PATH_MAX);
151                                 strbuf_addstr(&buf, alias_string);
152                                 sq_quote_argv(&buf, (*argv) + 1, PATH_MAX);
153                                 free(alias_string);
154                                 alias_string = buf.buf;
155                         }
156                         trace_printf("trace: alias to shell cmd: %s => %s\n",
157                                      alias_command, alias_string + 1);
158                         ret = system(alias_string + 1);
159                         if (ret >= 0 && WIFEXITED(ret) &&
160                             WEXITSTATUS(ret) != 127)
161                                 exit(WEXITSTATUS(ret));
162                         die("Failed to run '%s' when expanding alias '%s'",
163                             alias_string + 1, alias_command);
164                 }
165                 count = split_cmdline(alias_string, &new_argv);
166                 if (count < 0)
167                         die("Bad alias.%s string", alias_command);
168                 option_count = handle_options(&new_argv, &count, &envchanged);
169                 if (envchanged)
170                         die("alias '%s' changes environment variables\n"
171                                  "You can use '!git' in the alias to do this.",
172                                  alias_command);
173                 memmove(new_argv - option_count, new_argv,
174                                 count * sizeof(char *));
175                 new_argv -= option_count;
177                 if (count < 1)
178                         die("empty alias for %s", alias_command);
180                 if (!strcmp(alias_command, new_argv[0]))
181                         die("recursive alias: %s", alias_command);
183                 trace_argv_printf(new_argv,
184                                   "trace: alias expansion: %s =>",
185                                   alias_command);
187                 new_argv = xrealloc(new_argv, sizeof(char*) *
188                                     (count + *argcp + 1));
189                 /* insert after command name */
190                 memcpy(new_argv + count, *argv + 1, sizeof(char*) * *argcp);
191                 new_argv[count+*argcp] = NULL;
193                 *argv = new_argv;
194                 *argcp += count - 1;
196                 ret = 1;
197         }
199         if (subdir && chdir(subdir))
200                 die("Cannot change to %s: %s", subdir, strerror(errno));
202         errno = saved_errno;
204         return ret;
207 const char git_version_string[] = GIT_VERSION;
209 #define RUN_SETUP       (1<<0)
210 #define USE_PAGER       (1<<1)
211 /*
212  * require working tree to be present -- anything uses this needs
213  * RUN_SETUP for reading from the configuration file.
214  */
215 #define NEED_WORK_TREE  (1<<2)
217 struct cmd_struct {
218         const char *cmd;
219         int (*fn)(int, const char **, const char *);
220         int option;
221 };
223 static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
225         int status;
226         struct stat st;
227         const char *prefix;
229         prefix = NULL;
230         if (p->option & RUN_SETUP)
231                 prefix = setup_git_directory();
233         if (use_pager == -1 && p->option & RUN_SETUP)
234                 use_pager = check_pager_config(p->cmd);
235         if (use_pager == -1 && p->option & USE_PAGER)
236                 use_pager = 1;
237         commit_pager_choice();
239         if (p->option & NEED_WORK_TREE)
240                 setup_work_tree();
242         trace_argv_printf(argv, "trace: built-in: git");
244         status = p->fn(argc, argv, prefix);
245         if (status)
246                 return status & 0xff;
248         /* Somebody closed stdout? */
249         if (fstat(fileno(stdout), &st))
250                 return 0;
251         /* Ignore write errors for pipes and sockets.. */
252         if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
253                 return 0;
255         /* Check for ENOSPC and EIO errors.. */
256         if (fflush(stdout))
257                 die("write failure on standard output: %s", strerror(errno));
258         if (ferror(stdout))
259                 die("unknown write failure on standard output");
260         if (fclose(stdout))
261                 die("close failed on standard output: %s", strerror(errno));
262         return 0;
265 static void handle_internal_command(int argc, const char **argv)
267         const char *cmd = argv[0];
268         static struct cmd_struct commands[] = {
269                 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
270                 { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
271                 { "annotate", cmd_annotate, RUN_SETUP },
272                 { "apply", cmd_apply },
273                 { "archive", cmd_archive },
274                 { "bisect--helper", cmd_bisect__helper, RUN_SETUP | NEED_WORK_TREE },
275                 { "blame", cmd_blame, RUN_SETUP },
276                 { "branch", cmd_branch, RUN_SETUP },
277                 { "bundle", cmd_bundle },
278                 { "cat-file", cmd_cat_file, RUN_SETUP },
279                 { "checkout", cmd_checkout, RUN_SETUP | NEED_WORK_TREE },
280                 { "checkout-index", cmd_checkout_index,
281                         RUN_SETUP | NEED_WORK_TREE},
282                 { "check-ref-format", cmd_check_ref_format },
283                 { "check-attr", cmd_check_attr, RUN_SETUP },
284                 { "cherry", cmd_cherry, RUN_SETUP },
285                 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
286                 { "clone", cmd_clone },
287                 { "clean", cmd_clean, RUN_SETUP | NEED_WORK_TREE },
288                 { "commit", cmd_commit, RUN_SETUP | NEED_WORK_TREE },
289                 { "commit-tree", cmd_commit_tree, RUN_SETUP },
290                 { "config", cmd_config },
291                 { "count-objects", cmd_count_objects, RUN_SETUP },
292                 { "describe", cmd_describe, RUN_SETUP },
293                 { "diff", cmd_diff },
294                 { "diff-files", cmd_diff_files, RUN_SETUP | NEED_WORK_TREE },
295                 { "diff-index", cmd_diff_index, RUN_SETUP },
296                 { "diff-tree", cmd_diff_tree, RUN_SETUP },
297                 { "fast-export", cmd_fast_export, RUN_SETUP },
298                 { "fetch", cmd_fetch, RUN_SETUP },
299                 { "fetch-pack", cmd_fetch_pack, RUN_SETUP },
300                 { "fetch--tool", cmd_fetch__tool, RUN_SETUP },
301                 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
302                 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
303                 { "format-patch", cmd_format_patch, RUN_SETUP },
304                 { "fsck", cmd_fsck, RUN_SETUP },
305                 { "fsck-objects", cmd_fsck, RUN_SETUP },
306                 { "gc", cmd_gc, RUN_SETUP },
307                 { "get-tar-commit-id", cmd_get_tar_commit_id },
308                 { "grep", cmd_grep, RUN_SETUP | USE_PAGER },
309                 { "help", cmd_help },
310 #ifndef NO_CURL
311                 { "http-fetch", cmd_http_fetch, RUN_SETUP },
312 #endif
313                 { "init", cmd_init_db },
314                 { "init-db", cmd_init_db },
315                 { "log", cmd_log, RUN_SETUP | USE_PAGER },
316                 { "ls-files", cmd_ls_files, RUN_SETUP },
317                 { "ls-tree", cmd_ls_tree, RUN_SETUP },
318                 { "ls-remote", cmd_ls_remote },
319                 { "mailinfo", cmd_mailinfo },
320                 { "mailsplit", cmd_mailsplit },
321                 { "merge", cmd_merge, RUN_SETUP | NEED_WORK_TREE },
322                 { "merge-base", cmd_merge_base, RUN_SETUP },
323                 { "merge-file", cmd_merge_file },
324                 { "merge-ours", cmd_merge_ours, RUN_SETUP },
325                 { "merge-recursive", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
326                 { "merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
327                 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
328                 { "name-rev", cmd_name_rev, RUN_SETUP },
329                 { "pack-objects", cmd_pack_objects, RUN_SETUP },
330                 { "peek-remote", cmd_ls_remote },
331                 { "pickaxe", cmd_blame, RUN_SETUP },
332                 { "prune", cmd_prune, RUN_SETUP },
333                 { "prune-packed", cmd_prune_packed, RUN_SETUP },
334                 { "push", cmd_push, RUN_SETUP },
335                 { "read-tree", cmd_read_tree, RUN_SETUP },
336                 { "receive-pack", cmd_receive_pack },
337                 { "reflog", cmd_reflog, RUN_SETUP },
338                 { "remote", cmd_remote, RUN_SETUP },
339                 { "repo-config", cmd_config },
340                 { "rerere", cmd_rerere, RUN_SETUP },
341                 { "reset", cmd_reset, RUN_SETUP },
342                 { "rev-list", cmd_rev_list, RUN_SETUP },
343                 { "rev-parse", cmd_rev_parse },
344                 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
345                 { "rm", cmd_rm, RUN_SETUP },
346                 { "send-pack", cmd_send_pack, RUN_SETUP },
347                 { "shortlog", cmd_shortlog, USE_PAGER },
348                 { "show-branch", cmd_show_branch, RUN_SETUP },
349                 { "show", cmd_show, RUN_SETUP | USE_PAGER },
350                 { "status", cmd_status, RUN_SETUP | NEED_WORK_TREE },
351                 { "stripspace", cmd_stripspace },
352                 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
353                 { "tag", cmd_tag, RUN_SETUP },
354                 { "tar-tree", cmd_tar_tree },
355                 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
356                 { "update-index", cmd_update_index, RUN_SETUP },
357                 { "update-ref", cmd_update_ref, RUN_SETUP },
358                 { "upload-archive", cmd_upload_archive },
359                 { "verify-tag", cmd_verify_tag, RUN_SETUP },
360                 { "version", cmd_version },
361                 { "whatchanged", cmd_whatchanged, RUN_SETUP | USE_PAGER },
362                 { "write-tree", cmd_write_tree, RUN_SETUP },
363                 { "verify-pack", cmd_verify_pack },
364                 { "show-ref", cmd_show_ref, RUN_SETUP },
365                 { "pack-refs", cmd_pack_refs, RUN_SETUP },
366         };
367         int i;
368         static const char ext[] = STRIP_EXTENSION;
370         if (sizeof(ext) > 1) {
371                 i = strlen(argv[0]) - strlen(ext);
372                 if (i > 0 && !strcmp(argv[0] + i, ext)) {
373                         char *argv0 = xstrdup(argv[0]);
374                         argv[0] = cmd = argv0;
375                         argv0[i] = '\0';
376                 }
377         }
379         /* Turn "git cmd --help" into "git help cmd" */
380         if (argc > 1 && !strcmp(argv[1], "--help")) {
381                 argv[1] = argv[0];
382                 argv[0] = cmd = "help";
383         }
385         for (i = 0; i < ARRAY_SIZE(commands); i++) {
386                 struct cmd_struct *p = commands+i;
387                 if (strcmp(p->cmd, cmd))
388                         continue;
389                 exit(run_builtin(p, argc, argv));
390         }
393 static void execv_dashed_external(const char **argv)
395         struct strbuf cmd = STRBUF_INIT;
396         const char *tmp;
397         int status;
399         strbuf_addf(&cmd, "git-%s", argv[0]);
401         /*
402          * argv[0] must be the git command, but the argv array
403          * belongs to the caller, and may be reused in
404          * subsequent loop iterations. Save argv[0] and
405          * restore it on error.
406          */
407         tmp = argv[0];
408         argv[0] = cmd.buf;
410         trace_argv_printf(argv, "trace: exec:");
412         /*
413          * if we fail because the command is not found, it is
414          * OK to return. Otherwise, we just pass along the status code.
415          */
416         status = run_command_v_opt(argv, 0);
417         if (status != -ERR_RUN_COMMAND_EXEC) {
418                 if (IS_RUN_COMMAND_ERR(status))
419                         die("unable to run '%s'", argv[0]);
420                 exit(-status);
421         }
422         errno = ENOENT; /* as if we called execvp */
424         argv[0] = tmp;
426         strbuf_release(&cmd);
429 static int run_argv(int *argcp, const char ***argv)
431         int done_alias = 0;
433         while (1) {
434                 /* See if it's an internal command */
435                 handle_internal_command(*argcp, *argv);
437                 /* .. then try the external ones */
438                 execv_dashed_external(*argv);
440                 /* It could be an alias -- this works around the insanity
441                  * of overriding "git log" with "git show" by having
442                  * alias.log = show
443                  */
444                 if (done_alias || !handle_alias(argcp, argv))
445                         break;
446                 done_alias = 1;
447         }
449         return done_alias;
453 int main(int argc, const char **argv)
455         const char *cmd;
457         cmd = git_extract_argv0_path(argv[0]);
458         if (!cmd)
459                 cmd = "git-help";
461         /*
462          * "git-xxxx" is the same as "git xxxx", but we obviously:
463          *
464          *  - cannot take flags in between the "git" and the "xxxx".
465          *  - cannot execute it externally (since it would just do
466          *    the same thing over again)
467          *
468          * So we just directly call the internal command handler, and
469          * die if that one cannot handle it.
470          */
471         if (!prefixcmp(cmd, "git-")) {
472                 cmd += 4;
473                 argv[0] = cmd;
474                 handle_internal_command(argc, argv);
475                 die("cannot handle %s internally", cmd);
476         }
478         /* Look for flags.. */
479         argv++;
480         argc--;
481         handle_options(&argv, &argc, NULL);
482         commit_pager_choice();
483         if (argc > 0) {
484                 if (!prefixcmp(argv[0], "--"))
485                         argv[0] += 2;
486         } else {
487                 /* The user didn't specify a command; give them help */
488                 printf("usage: %s\n\n", git_usage_string);
489                 list_common_cmds_help();
490                 printf("\n%s\n", git_more_info_string);
491                 exit(1);
492         }
493         cmd = argv[0];
495         /*
496          * We use PATH to find git commands, but we prepend some higher
497          * precidence paths: the "--exec-path" option, the GIT_EXEC_PATH
498          * environment, and the $(gitexecdir) from the Makefile at build
499          * time.
500          */
501         setup_path();
503         while (1) {
504                 static int done_help = 0;
505                 static int was_alias = 0;
506                 was_alias = run_argv(&argc, &argv);
507                 if (errno != ENOENT)
508                         break;
509                 if (was_alias) {
510                         fprintf(stderr, "Expansion of alias '%s' failed; "
511                                 "'%s' is not a git-command\n",
512                                 cmd, argv[0]);
513                         exit(1);
514                 }
515                 if (!done_help) {
516                         cmd = argv[0] = help_unknown_cmd(cmd);
517                         done_help = 1;
518                 } else
519                         break;
520         }
522         fprintf(stderr, "Failed to run command '%s': %s\n",
523                 cmd, strerror(errno));
525         return 1;