Code

33edd6277da584a75bbc88167eb363eb7bdc1ba6
[git.git] / git.c
1 #include "builtin.h"
2 #include "exec_cmd.h"
3 #include "cache.h"
4 #include "quote.h"
6 const char git_usage_string[] =
7         "git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS]";
9 static void prepend_to_path(const char *dir, int len)
10 {
11         const char *old_path = getenv("PATH");
12         char *path;
13         int path_len = len;
15         if (!old_path)
16                 old_path = "/usr/local/bin:/usr/bin:/bin";
18         path_len = len + strlen(old_path) + 1;
20         path = xmalloc(path_len + 1);
22         memcpy(path, dir, len);
23         path[len] = ':';
24         memcpy(path + len + 1, old_path, path_len - len);
26         setenv("PATH", path, 1);
28         free(path);
29 }
31 static int handle_options(const char*** argv, int* argc, int* envchanged)
32 {
33         int handled = 0;
35         while (*argc > 0) {
36                 const char *cmd = (*argv)[0];
37                 if (cmd[0] != '-')
38                         break;
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;
48                 /*
49                  * Check remaining flags.
50                  */
51                 if (!prefixcmp(cmd, "--exec-path")) {
52                         cmd += 11;
53                         if (*cmd == '=')
54                                 git_set_exec_path(cmd + 1);
55                         else {
56                                 puts(git_exec_path());
57                                 exit(0);
58                         }
59                 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
60                         setup_pager();
61                 } else if (!strcmp(cmd, "--git-dir")) {
62                         if (*argc < 2) {
63                                 fprintf(stderr, "No directory given for --git-dir.\n" );
64                                 usage(git_usage_string);
65                         }
66                         setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
67                         if (envchanged)
68                                 *envchanged = 1;
69                         (*argv)++;
70                         (*argc)--;
71                         handled++;
72                 } else if (!prefixcmp(cmd, "--git-dir=")) {
73                         setenv(GIT_DIR_ENVIRONMENT, cmd + 10, 1);
74                         if (envchanged)
75                                 *envchanged = 1;
76                 } else if (!strcmp(cmd, "--work-tree")) {
77                         if (*argc < 2) {
78                                 fprintf(stderr, "No directory given for --work-tree.\n" );
79                                 usage(git_usage_string);
80                         }
81                         setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
82                         if (envchanged)
83                                 *envchanged = 1;
84                         (*argv)++;
85                         (*argc)--;
86                 } else if (!prefixcmp(cmd, "--work-tree=")) {
87                         setenv(GIT_WORK_TREE_ENVIRONMENT, cmd + 12, 1);
88                         if (envchanged)
89                                 *envchanged = 1;
90                 } else if (!strcmp(cmd, "--bare")) {
91                         static char git_dir[PATH_MAX+1];
92                         setenv(GIT_DIR_ENVIRONMENT, getcwd(git_dir, sizeof(git_dir)), 1);
93                         if (envchanged)
94                                 *envchanged = 1;
95                 } else {
96                         fprintf(stderr, "Unknown option: %s\n", cmd);
97                         usage(git_usage_string);
98                 }
100                 (*argv)++;
101                 (*argc)--;
102                 handled++;
103         }
104         return handled;
107 static const char *alias_command;
108 static char *alias_string;
110 static int git_alias_config(const char *var, const char *value)
112         if (!prefixcmp(var, "alias.") && !strcmp(var + 6, alias_command)) {
113                 alias_string = xstrdup(value);
114         }
115         return 0;
118 static int split_cmdline(char *cmdline, const char ***argv)
120         int src, dst, count = 0, size = 16;
121         char quoted = 0;
123         *argv = xmalloc(sizeof(char*) * size);
125         /* split alias_string */
126         (*argv)[count++] = cmdline;
127         for (src = dst = 0; cmdline[src];) {
128                 char c = cmdline[src];
129                 if (!quoted && isspace(c)) {
130                         cmdline[dst++] = 0;
131                         while (cmdline[++src]
132                                         && isspace(cmdline[src]))
133                                 ; /* skip */
134                         if (count >= size) {
135                                 size += 16;
136                                 *argv = xrealloc(*argv, sizeof(char*) * size);
137                         }
138                         (*argv)[count++] = cmdline + dst;
139                 } else if(!quoted && (c == '\'' || c == '"')) {
140                         quoted = c;
141                         src++;
142                 } else if (c == quoted) {
143                         quoted = 0;
144                         src++;
145                 } else {
146                         if (c == '\\' && quoted != '\'') {
147                                 src++;
148                                 c = cmdline[src];
149                                 if (!c) {
150                                         free(*argv);
151                                         *argv = NULL;
152                                         return error("cmdline ends with \\");
153                                 }
154                         }
155                         cmdline[dst++] = c;
156                         src++;
157                 }
158         }
160         cmdline[dst] = 0;
162         if (quoted) {
163                 free(*argv);
164                 *argv = NULL;
165                 return error("unclosed quote");
166         }
168         return count;
171 static int handle_alias(int *argcp, const char ***argv)
173         int nongit = 0, envchanged = 0, ret = 0, saved_errno = errno;
174         const char *subdir;
175         int count, option_count;
176         const char** new_argv;
178         subdir = setup_git_directory_gently(&nongit);
180         alias_command = (*argv)[0];
181         git_config(git_alias_config);
182         if (alias_string) {
183                 if (alias_string[0] == '!') {
184                         trace_printf("trace: alias to shell cmd: %s => %s\n",
185                                      alias_command, alias_string + 1);
186                         ret = system(alias_string + 1);
187                         if (ret >= 0 && WIFEXITED(ret) &&
188                             WEXITSTATUS(ret) != 127)
189                                 exit(WEXITSTATUS(ret));
190                         die("Failed to run '%s' when expanding alias '%s'\n",
191                             alias_string + 1, alias_command);
192                 }
193                 count = split_cmdline(alias_string, &new_argv);
194                 option_count = handle_options(&new_argv, &count, &envchanged);
195                 if (envchanged)
196                         die("alias '%s' changes environment variables\n"
197                                  "You can use '!git' in the alias to do this.",
198                                  alias_command);
199                 memmove(new_argv - option_count, new_argv,
200                                 count * sizeof(char *));
201                 new_argv -= option_count;
203                 if (count < 1)
204                         die("empty alias for %s", alias_command);
206                 if (!strcmp(alias_command, new_argv[0]))
207                         die("recursive alias: %s", alias_command);
209                 trace_argv_printf(new_argv, count,
210                                   "trace: alias expansion: %s =>",
211                                   alias_command);
213                 new_argv = xrealloc(new_argv, sizeof(char*) *
214                                     (count + *argcp + 1));
215                 /* insert after command name */
216                 memcpy(new_argv + count, *argv + 1, sizeof(char*) * *argcp);
217                 new_argv[count+*argcp] = NULL;
219                 *argv = new_argv;
220                 *argcp += count - 1;
222                 ret = 1;
223         }
225         if (subdir)
226                 chdir(subdir);
228         errno = saved_errno;
230         return ret;
233 const char git_version_string[] = GIT_VERSION;
235 #define RUN_SETUP       (1<<0)
236 #define USE_PAGER       (1<<1)
237 /*
238  * require working tree to be present -- anything uses this needs
239  * RUN_SETUP for reading from the configuration file.
240  */
241 #define NEED_WORK_TREE  (1<<2)
243 static void handle_internal_command(int argc, const char **argv, char **envp)
245         const char *cmd = argv[0];
246         static struct cmd_struct {
247                 const char *cmd;
248                 int (*fn)(int, const char **, const char *);
249                 int option;
250         } commands[] = {
251                 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
252                 { "annotate", cmd_annotate, RUN_SETUP | USE_PAGER },
253                 { "apply", cmd_apply },
254                 { "archive", cmd_archive },
255                 { "blame", cmd_blame, RUN_SETUP },
256                 { "branch", cmd_branch, RUN_SETUP },
257                 { "bundle", cmd_bundle },
258                 { "cat-file", cmd_cat_file, RUN_SETUP },
259                 { "checkout-index", cmd_checkout_index, RUN_SETUP },
260                 { "check-ref-format", cmd_check_ref_format },
261                 { "check-attr", cmd_check_attr, RUN_SETUP | NEED_WORK_TREE },
262                 { "cherry", cmd_cherry, RUN_SETUP },
263                 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
264                 { "commit-tree", cmd_commit_tree, RUN_SETUP },
265                 { "config", cmd_config },
266                 { "count-objects", cmd_count_objects, RUN_SETUP },
267                 { "describe", cmd_describe, RUN_SETUP },
268                 { "diff", cmd_diff, USE_PAGER },
269                 { "diff-files", cmd_diff_files },
270                 { "diff-index", cmd_diff_index, RUN_SETUP },
271                 { "diff-tree", cmd_diff_tree, RUN_SETUP },
272                 { "fetch--tool", cmd_fetch__tool, RUN_SETUP },
273                 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
274                 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
275                 { "format-patch", cmd_format_patch, RUN_SETUP },
276                 { "fsck", cmd_fsck, RUN_SETUP },
277                 { "fsck-objects", cmd_fsck, RUN_SETUP },
278                 { "gc", cmd_gc, RUN_SETUP },
279                 { "get-tar-commit-id", cmd_get_tar_commit_id },
280                 { "grep", cmd_grep, RUN_SETUP | USE_PAGER },
281                 { "help", cmd_help },
282                 { "init", cmd_init_db },
283                 { "init-db", cmd_init_db },
284                 { "log", cmd_log, RUN_SETUP | USE_PAGER },
285                 { "ls-files", cmd_ls_files, RUN_SETUP },
286                 { "ls-tree", cmd_ls_tree, RUN_SETUP },
287                 { "mailinfo", cmd_mailinfo },
288                 { "mailsplit", cmd_mailsplit },
289                 { "merge-base", cmd_merge_base, RUN_SETUP },
290                 { "merge-file", cmd_merge_file },
291                 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
292                 { "name-rev", cmd_name_rev, RUN_SETUP },
293                 { "pack-objects", cmd_pack_objects, RUN_SETUP },
294                 { "pickaxe", cmd_blame, RUN_SETUP | USE_PAGER },
295                 { "prune", cmd_prune, RUN_SETUP },
296                 { "prune-packed", cmd_prune_packed, RUN_SETUP },
297                 { "push", cmd_push, RUN_SETUP },
298                 { "read-tree", cmd_read_tree, RUN_SETUP },
299                 { "reflog", cmd_reflog, RUN_SETUP },
300                 { "repo-config", cmd_config },
301                 { "rerere", cmd_rerere, RUN_SETUP },
302                 { "rev-list", cmd_rev_list, RUN_SETUP },
303                 { "rev-parse", cmd_rev_parse, RUN_SETUP },
304                 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
305                 { "rm", cmd_rm, RUN_SETUP | NEED_WORK_TREE },
306                 { "runstatus", cmd_runstatus, RUN_SETUP | NEED_WORK_TREE },
307                 { "shortlog", cmd_shortlog, RUN_SETUP | USE_PAGER },
308                 { "show-branch", cmd_show_branch, RUN_SETUP },
309                 { "show", cmd_show, RUN_SETUP | USE_PAGER },
310                 { "stripspace", cmd_stripspace },
311                 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
312                 { "tar-tree", cmd_tar_tree },
313                 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
314                 { "update-index", cmd_update_index, RUN_SETUP },
315                 { "update-ref", cmd_update_ref, RUN_SETUP },
316                 { "upload-archive", cmd_upload_archive },
317                 { "version", cmd_version },
318                 { "whatchanged", cmd_whatchanged, RUN_SETUP | USE_PAGER },
319                 { "write-tree", cmd_write_tree, RUN_SETUP },
320                 { "verify-pack", cmd_verify_pack },
321                 { "show-ref", cmd_show_ref, RUN_SETUP },
322                 { "pack-refs", cmd_pack_refs, RUN_SETUP },
323         };
324         int i;
326         /* Turn "git cmd --help" into "git help cmd" */
327         if (argc > 1 && !strcmp(argv[1], "--help")) {
328                 argv[1] = argv[0];
329                 argv[0] = cmd = "help";
330         }
332         for (i = 0; i < ARRAY_SIZE(commands); i++) {
333                 struct cmd_struct *p = commands+i;
334                 const char *prefix;
335                 if (strcmp(p->cmd, cmd))
336                         continue;
338                 prefix = NULL;
339                 if (p->option & RUN_SETUP)
340                         prefix = setup_git_directory();
341                 if (p->option & USE_PAGER)
342                         setup_pager();
343                 if ((p->option & NEED_WORK_TREE) &&
344                                 (!is_inside_work_tree() || is_inside_git_dir()))
345                         die("%s must be run in a work tree", cmd);
346                 trace_argv_printf(argv, argc, "trace: built-in: git");
348                 exit(p->fn(argc, argv, prefix));
349         }
352 int main(int argc, const char **argv, char **envp)
354         const char *cmd = argv[0] ? argv[0] : "git-help";
355         char *slash = strrchr(cmd, '/');
356         const char *exec_path = NULL;
357         int done_alias = 0;
359         /*
360          * Take the basename of argv[0] as the command
361          * name, and the dirname as the default exec_path
362          * if it's an absolute path and we don't have
363          * anything better.
364          */
365         if (slash) {
366                 *slash++ = 0;
367                 if (*cmd == '/')
368                         exec_path = cmd;
369                 cmd = slash;
370         }
372         /*
373          * "git-xxxx" is the same as "git xxxx", but we obviously:
374          *
375          *  - cannot take flags in between the "git" and the "xxxx".
376          *  - cannot execute it externally (since it would just do
377          *    the same thing over again)
378          *
379          * So we just directly call the internal command handler, and
380          * die if that one cannot handle it.
381          */
382         if (!prefixcmp(cmd, "git-")) {
383                 cmd += 4;
384                 argv[0] = cmd;
385                 handle_internal_command(argc, argv, envp);
386                 die("cannot handle %s internally", cmd);
387         }
389         /* Look for flags.. */
390         argv++;
391         argc--;
392         handle_options(&argv, &argc, NULL);
393         if (argc > 0) {
394                 if (!prefixcmp(argv[0], "--"))
395                         argv[0] += 2;
396         } else {
397                 /* Default command: "help" */
398                 argv[0] = "help";
399                 argc = 1;
400         }
401         cmd = argv[0];
403         /*
404          * We search for git commands in the following order:
405          *  - git_exec_path()
406          *  - the path of the "git" command if we could find it
407          *    in $0
408          *  - the regular PATH.
409          */
410         if (exec_path)
411                 prepend_to_path(exec_path, strlen(exec_path));
412         exec_path = git_exec_path();
413         prepend_to_path(exec_path, strlen(exec_path));
415         while (1) {
416                 /* See if it's an internal command */
417                 handle_internal_command(argc, argv, envp);
419                 /* .. then try the external ones */
420                 execv_git_cmd(argv);
422                 /* It could be an alias -- this works around the insanity
423                  * of overriding "git log" with "git show" by having
424                  * alias.log = show
425                  */
426                 if (done_alias || !handle_alias(&argc, &argv))
427                         break;
428                 done_alias = 1;
429         }
431         if (errno == ENOENT) {
432                 if (done_alias) {
433                         fprintf(stderr, "Expansion of alias '%s' failed; "
434                                 "'%s' is not a git-command\n",
435                                 cmd, argv[0]);
436                         exit(1);
437                 }
438                 help_unknown_cmd(cmd);
439         }
441         fprintf(stderr, "Failed to run command '%s': %s\n",
442                 cmd, strerror(errno));
444         return 1;