Code

lock_any_ref_for_update(): do not accept malformatted refs.
[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] [--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)
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 (!strncmp(cmd, "--exec-path", 11)) {
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                         (*argv)++;
68                         (*argc)--;
69                 } else if (!strncmp(cmd, "--git-dir=", 10)) {
70                         setenv(GIT_DIR_ENVIRONMENT, cmd + 10, 1);
71                 } else if (!strcmp(cmd, "--bare")) {
72                         static char git_dir[PATH_MAX+1];
73                         setenv(GIT_DIR_ENVIRONMENT, getcwd(git_dir, sizeof(git_dir)), 1);
74                 } else {
75                         fprintf(stderr, "Unknown option: %s\n", cmd);
76                         usage(git_usage_string);
77                 }
79                 (*argv)++;
80                 (*argc)--;
81                 handled++;
82         }
83         return handled;
84 }
86 static const char *alias_command;
87 static char *alias_string;
89 static int git_alias_config(const char *var, const char *value)
90 {
91         if (!strncmp(var, "alias.", 6) && !strcmp(var + 6, alias_command)) {
92                 alias_string = xstrdup(value);
93         }
94         return 0;
95 }
97 static int split_cmdline(char *cmdline, const char ***argv)
98 {
99         int src, dst, count = 0, size = 16;
100         char quoted = 0;
102         *argv = malloc(sizeof(char*) * size);
104         /* split alias_string */
105         (*argv)[count++] = cmdline;
106         for (src = dst = 0; cmdline[src];) {
107                 char c = cmdline[src];
108                 if (!quoted && isspace(c)) {
109                         cmdline[dst++] = 0;
110                         while (cmdline[++src]
111                                         && isspace(cmdline[src]))
112                                 ; /* skip */
113                         if (count >= size) {
114                                 size += 16;
115                                 *argv = xrealloc(*argv, sizeof(char*) * size);
116                         }
117                         (*argv)[count++] = cmdline + dst;
118                 } else if(!quoted && (c == '\'' || c == '"')) {
119                         quoted = c;
120                         src++;
121                 } else if (c == quoted) {
122                         quoted = 0;
123                         src++;
124                 } else {
125                         if (c == '\\' && quoted != '\'') {
126                                 src++;
127                                 c = cmdline[src];
128                                 if (!c) {
129                                         free(*argv);
130                                         *argv = NULL;
131                                         return error("cmdline ends with \\");
132                                 }
133                         }
134                         cmdline[dst++] = c;
135                         src++;
136                 }
137         }
139         cmdline[dst] = 0;
141         if (quoted) {
142                 free(*argv);
143                 *argv = NULL;
144                 return error("unclosed quote");
145         }
147         return count;
150 static int handle_alias(int *argcp, const char ***argv)
152         int nongit = 0, ret = 0, saved_errno = errno;
153         const char *subdir;
154         int count, option_count;
155         const char** new_argv;
157         subdir = setup_git_directory_gently(&nongit);
159         alias_command = (*argv)[0];
160         git_config(git_alias_config);
161         if (alias_string) {
162                 count = split_cmdline(alias_string, &new_argv);
163                 option_count = handle_options(&new_argv, &count);
164                 memmove(new_argv - option_count, new_argv,
165                                 count * sizeof(char *));
166                 new_argv -= option_count;
168                 if (count < 1)
169                         die("empty alias for %s", alias_command);
171                 if (!strcmp(alias_command, new_argv[0]))
172                         die("recursive alias: %s", alias_command);
174                 trace_argv_printf(new_argv, count,
175                                   "trace: alias expansion: %s =>",
176                                   alias_command);
178                 new_argv = xrealloc(new_argv, sizeof(char*) *
179                                     (count + *argcp + 1));
180                 /* insert after command name */
181                 memcpy(new_argv + count, *argv + 1, sizeof(char*) * *argcp);
182                 new_argv[count+*argcp] = NULL;
184                 *argv = new_argv;
185                 *argcp += count - 1;
187                 ret = 1;
188         }
190         if (subdir)
191                 chdir(subdir);
193         errno = saved_errno;
195         return ret;
198 const char git_version_string[] = GIT_VERSION;
200 #define RUN_SETUP       (1<<0)
201 #define USE_PAGER       (1<<1)
202 /*
203  * require working tree to be present -- anything uses this needs
204  * RUN_SETUP for reading from the configuration file.
205  */
206 #define NOT_BARE        (1<<2)
208 static void handle_internal_command(int argc, const char **argv, char **envp)
210         const char *cmd = argv[0];
211         static struct cmd_struct {
212                 const char *cmd;
213                 int (*fn)(int, const char **, const char *);
214                 int option;
215         } commands[] = {
216                 { "add", cmd_add, RUN_SETUP | NOT_BARE },
217                 { "annotate", cmd_annotate, USE_PAGER },
218                 { "apply", cmd_apply },
219                 { "archive", cmd_archive },
220                 { "blame", cmd_blame, RUN_SETUP },
221                 { "branch", cmd_branch, RUN_SETUP },
222                 { "cat-file", cmd_cat_file, RUN_SETUP },
223                 { "checkout-index", cmd_checkout_index, RUN_SETUP },
224                 { "check-ref-format", cmd_check_ref_format },
225                 { "cherry", cmd_cherry, RUN_SETUP },
226                 { "commit-tree", cmd_commit_tree, RUN_SETUP },
227                 { "config", cmd_config },
228                 { "count-objects", cmd_count_objects, RUN_SETUP },
229                 { "describe", cmd_describe, RUN_SETUP },
230                 { "diff", cmd_diff, RUN_SETUP | USE_PAGER },
231                 { "diff-files", cmd_diff_files, RUN_SETUP },
232                 { "diff-index", cmd_diff_index, RUN_SETUP },
233                 { "diff-stages", cmd_diff_stages, RUN_SETUP },
234                 { "diff-tree", cmd_diff_tree, RUN_SETUP },
235                 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
236                 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
237                 { "format-patch", cmd_format_patch, RUN_SETUP },
238                 { "get-tar-commit-id", cmd_get_tar_commit_id },
239                 { "grep", cmd_grep, RUN_SETUP },
240                 { "help", cmd_help },
241                 { "init", cmd_init_db },
242                 { "init-db", cmd_init_db },
243                 { "log", cmd_log, RUN_SETUP | USE_PAGER },
244                 { "ls-files", cmd_ls_files, RUN_SETUP },
245                 { "ls-tree", cmd_ls_tree, RUN_SETUP },
246                 { "mailinfo", cmd_mailinfo },
247                 { "mailsplit", cmd_mailsplit },
248                 { "merge-file", cmd_merge_file },
249                 { "mv", cmd_mv, RUN_SETUP | NOT_BARE },
250                 { "name-rev", cmd_name_rev, RUN_SETUP },
251                 { "pack-objects", cmd_pack_objects, RUN_SETUP },
252                 { "pickaxe", cmd_blame, RUN_SETUP | USE_PAGER },
253                 { "prune", cmd_prune, RUN_SETUP },
254                 { "prune-packed", cmd_prune_packed, RUN_SETUP },
255                 { "push", cmd_push, RUN_SETUP },
256                 { "read-tree", cmd_read_tree, RUN_SETUP },
257                 { "reflog", cmd_reflog, RUN_SETUP },
258                 { "repo-config", cmd_config },
259                 { "rerere", cmd_rerere, RUN_SETUP },
260                 { "rev-list", cmd_rev_list, RUN_SETUP },
261                 { "rev-parse", cmd_rev_parse, RUN_SETUP },
262                 { "rm", cmd_rm, RUN_SETUP | NOT_BARE },
263                 { "runstatus", cmd_runstatus, RUN_SETUP | NOT_BARE },
264                 { "shortlog", cmd_shortlog, RUN_SETUP | USE_PAGER },
265                 { "show-branch", cmd_show_branch, RUN_SETUP },
266                 { "show", cmd_show, RUN_SETUP | USE_PAGER },
267                 { "stripspace", cmd_stripspace },
268                 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
269                 { "tar-tree", cmd_tar_tree },
270                 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
271                 { "update-index", cmd_update_index, RUN_SETUP },
272                 { "update-ref", cmd_update_ref, RUN_SETUP },
273                 { "upload-archive", cmd_upload_archive },
274                 { "version", cmd_version },
275                 { "whatchanged", cmd_whatchanged, RUN_SETUP | USE_PAGER },
276                 { "write-tree", cmd_write_tree, RUN_SETUP },
277                 { "verify-pack", cmd_verify_pack },
278                 { "show-ref", cmd_show_ref, RUN_SETUP },
279                 { "pack-refs", cmd_pack_refs, RUN_SETUP },
280         };
281         int i;
283         /* Turn "git cmd --help" into "git help cmd" */
284         if (argc > 1 && !strcmp(argv[1], "--help")) {
285                 argv[1] = argv[0];
286                 argv[0] = cmd = "help";
287         }
289         for (i = 0; i < ARRAY_SIZE(commands); i++) {
290                 struct cmd_struct *p = commands+i;
291                 const char *prefix;
292                 if (strcmp(p->cmd, cmd))
293                         continue;
295                 prefix = NULL;
296                 if (p->option & RUN_SETUP)
297                         prefix = setup_git_directory();
298                 if (p->option & USE_PAGER)
299                         setup_pager();
300                 if ((p->option & NOT_BARE) && is_bare_repository())
301                         die("%s cannot be used in a bare git directory", cmd);
302                 trace_argv_printf(argv, argc, "trace: built-in: git");
304                 exit(p->fn(argc, argv, prefix));
305         }
308 int main(int argc, const char **argv, char **envp)
310         const char *cmd = argv[0] ? argv[0] : "git-help";
311         char *slash = strrchr(cmd, '/');
312         const char *exec_path = NULL;
313         int done_alias = 0;
315         /*
316          * Take the basename of argv[0] as the command
317          * name, and the dirname as the default exec_path
318          * if it's an absolute path and we don't have
319          * anything better.
320          */
321         if (slash) {
322                 *slash++ = 0;
323                 if (*cmd == '/')
324                         exec_path = cmd;
325                 cmd = slash;
326         }
328         /*
329          * "git-xxxx" is the same as "git xxxx", but we obviously:
330          *
331          *  - cannot take flags in between the "git" and the "xxxx".
332          *  - cannot execute it externally (since it would just do
333          *    the same thing over again)
334          *
335          * So we just directly call the internal command handler, and
336          * die if that one cannot handle it.
337          */
338         if (!strncmp(cmd, "git-", 4)) {
339                 cmd += 4;
340                 argv[0] = cmd;
341                 handle_internal_command(argc, argv, envp);
342                 die("cannot handle %s internally", cmd);
343         }
345         /* Look for flags.. */
346         argv++;
347         argc--;
348         handle_options(&argv, &argc);
349         if (argc > 0) {
350                 if (!strncmp(argv[0], "--", 2))
351                         argv[0] += 2;
352         } else {
353                 /* Default command: "help" */
354                 argv[0] = "help";
355                 argc = 1;
356         }
357         cmd = argv[0];
359         /*
360          * We search for git commands in the following order:
361          *  - git_exec_path()
362          *  - the path of the "git" command if we could find it
363          *    in $0
364          *  - the regular PATH.
365          */
366         if (exec_path)
367                 prepend_to_path(exec_path, strlen(exec_path));
368         exec_path = git_exec_path();
369         prepend_to_path(exec_path, strlen(exec_path));
371         while (1) {
372                 /* See if it's an internal command */
373                 handle_internal_command(argc, argv, envp);
375                 /* .. then try the external ones */
376                 execv_git_cmd(argv);
378                 /* It could be an alias -- this works around the insanity
379                  * of overriding "git log" with "git show" by having
380                  * alias.log = show
381                  */
382                 if (done_alias || !handle_alias(&argc, &argv))
383                         break;
384                 done_alias = 1;
385         }
387         if (errno == ENOENT)
388                 help_unknown_cmd(cmd);
390         fprintf(stderr, "Failed to run command '%s': %s\n",
391                 cmd, strerror(errno));
393         return 1;