]> git.ipfire.org Git - thirdparty/git.git/blame - git.c
GIT-VERSION-FILE: check ./version first.
[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[] =
281e67d6 7 "git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate] [--bare] [--git-dir=GIT_DIR] [--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
4ab243a9
JS
31static int handle_options(const char*** argv, int* argc)
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 */
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")) {
4ab243a9 60 setup_pager();
6acbcb92 61 } else if (!strcmp(cmd, "--git-dir")) {
c321f00d
BG
62 if (*argc < 2) {
63 fprintf(stderr, "No directory given for --git-dir.\n" );
64 usage(git_usage_string);
65 }
45b09794 66 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
6acbcb92
JS
67 (*argv)++;
68 (*argc)--;
69 } else if (!strncmp(cmd, "--git-dir=", 10)) {
45b09794 70 setenv(GIT_DIR_ENVIRONMENT, cmd + 10, 1);
6acbcb92 71 } else if (!strcmp(cmd, "--bare")) {
ef5ddb2f 72 static char git_dir[PATH_MAX+1];
45b09794 73 setenv(GIT_DIR_ENVIRONMENT, getcwd(git_dir, sizeof(git_dir)), 1);
6acbcb92
JS
74 } else {
75 fprintf(stderr, "Unknown option: %s\n", cmd);
822a7d50 76 usage(git_usage_string);
6acbcb92 77 }
4ab243a9
JS
78
79 (*argv)++;
80 (*argc)--;
81 handled++;
82 }
83 return handled;
84}
85
2b11e317 86static const char *alias_command;
96f1e58f 87static char *alias_string;
2b11e317
JS
88
89static int git_alias_config(const char *var, const char *value)
90{
91 if (!strncmp(var, "alias.", 6) && !strcmp(var + 6, alias_command)) {
9befac47 92 alias_string = xstrdup(value);
2b11e317
JS
93 }
94 return 0;
95}
96
97static int split_cmdline(char *cmdline, const char ***argv)
98{
99 int src, dst, count = 0, size = 16;
100 char quoted = 0;
101
102 *argv = malloc(sizeof(char*) * size);
103
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;
83572c1a 115 *argv = xrealloc(*argv, sizeof(char*) * size);
2b11e317
JS
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 }
138
139 cmdline[dst] = 0;
140
141 if (quoted) {
142 free(*argv);
143 *argv = NULL;
144 return error("unclosed quote");
145 }
146
147 return count;
148}
149
150static int handle_alias(int *argcp, const char ***argv)
151{
47e5c0ca 152 int nongit = 0, ret = 0, saved_errno = errno;
2b11e317 153 const char *subdir;
0347a8c7
ML
154 int count, option_count;
155 const char** new_argv;
2b11e317
JS
156
157 subdir = setup_git_directory_gently(&nongit);
0347a8c7
ML
158
159 alias_command = (*argv)[0];
160 git_config(git_alias_config);
161 if (alias_string) {
dfd42a3c
TT
162 if (alias_string[0] == '!') {
163 trace_printf("trace: alias to shell cmd: %s => %s\n",
164 alias_command, alias_string + 1);
165 ret = system(alias_string + 1);
166 if (ret >= 0 && WIFEXITED(ret) &&
167 WEXITSTATUS(ret) != 127)
168 exit(WEXITSTATUS(ret));
169 die("Failed to run '%s' when expanding alias '%s'\n",
170 alias_string + 1, alias_command);
171 }
0347a8c7
ML
172 count = split_cmdline(alias_string, &new_argv);
173 option_count = handle_options(&new_argv, &count);
174 memmove(new_argv - option_count, new_argv,
175 count * sizeof(char *));
176 new_argv -= option_count;
177
178 if (count < 1)
179 die("empty alias for %s", alias_command);
180
181 if (!strcmp(alias_command, new_argv[0]))
182 die("recursive alias: %s", alias_command);
183
6ce4e61f
CC
184 trace_argv_printf(new_argv, count,
185 "trace: alias expansion: %s =>",
186 alias_command);
575ba9d6 187
83572c1a
JF
188 new_argv = xrealloc(new_argv, sizeof(char*) *
189 (count + *argcp + 1));
0347a8c7
ML
190 /* insert after command name */
191 memcpy(new_argv + count, *argv + 1, sizeof(char*) * *argcp);
192 new_argv[count+*argcp] = NULL;
2b11e317 193
0347a8c7
ML
194 *argv = new_argv;
195 *argcp += count - 1;
2b11e317 196
0347a8c7 197 ret = 1;
2b11e317
JS
198 }
199
200 if (subdir)
201 chdir(subdir);
202
47e5c0ca
JS
203 errno = saved_errno;
204
2b11e317
JS
205 return ret;
206}
207
70827b15 208const char git_version_string[] = GIT_VERSION;
5b84f4d8 209
efffea03
JH
210#define RUN_SETUP (1<<0)
211#define USE_PAGER (1<<1)
7eff28a9
SP
212/*
213 * require working tree to be present -- anything uses this needs
214 * RUN_SETUP for reading from the configuration file.
215 */
216#define NOT_BARE (1<<2)
a633fca0 217
9201c707 218static void handle_internal_command(int argc, const char **argv, char **envp)
231af832
LT
219{
220 const char *cmd = argv[0];
221 static struct cmd_struct {
222 const char *cmd;
a633fca0 223 int (*fn)(int, const char **, const char *);
9590b041 224 int option;
231af832 225 } commands[] = {
7eff28a9 226 { "add", cmd_add, RUN_SETUP | NOT_BARE },
e955ae95 227 { "annotate", cmd_annotate, USE_PAGER },
f754fa9c 228 { "apply", cmd_apply },
4df096a5 229 { "archive", cmd_archive },
4f0219a4 230 { "blame", cmd_blame, RUN_SETUP },
1da1b3a3 231 { "branch", cmd_branch, RUN_SETUP },
efffea03
JH
232 { "cat-file", cmd_cat_file, RUN_SETUP },
233 { "checkout-index", cmd_checkout_index, RUN_SETUP },
0864f264 234 { "check-ref-format", cmd_check_ref_format },
e827633a 235 { "cherry", cmd_cherry, RUN_SETUP },
efffea03 236 { "commit-tree", cmd_commit_tree, RUN_SETUP },
e0d10e1c 237 { "config", cmd_config },
8112894d 238 { "count-objects", cmd_count_objects, RUN_SETUP },
9a0eaf83 239 { "describe", cmd_describe, RUN_SETUP },
e88ee291 240 { "diff", cmd_diff, RUN_SETUP | USE_PAGER },
efffea03
JH
241 { "diff-files", cmd_diff_files, RUN_SETUP },
242 { "diff-index", cmd_diff_index, RUN_SETUP },
243 { "diff-stages", cmd_diff_stages, RUN_SETUP },
244 { "diff-tree", cmd_diff_tree, RUN_SETUP },
245 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
9f613ddd 246 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
efffea03 247 { "format-patch", cmd_format_patch, RUN_SETUP },
b4dfefe0
MW
248 { "fsck", cmd_fsck, RUN_SETUP },
249 { "fsck-objects", cmd_fsck, RUN_SETUP },
f754fa9c 250 { "get-tar-commit-id", cmd_get_tar_commit_id },
efffea03 251 { "grep", cmd_grep, RUN_SETUP },
f754fa9c 252 { "help", cmd_help },
515377ea 253 { "init", cmd_init_db },
f754fa9c 254 { "init-db", cmd_init_db },
efffea03
JH
255 { "log", cmd_log, RUN_SETUP | USE_PAGER },
256 { "ls-files", cmd_ls_files, RUN_SETUP },
257 { "ls-tree", cmd_ls_tree, RUN_SETUP },
f754fa9c
JH
258 { "mailinfo", cmd_mailinfo },
259 { "mailsplit", cmd_mailsplit },
ba1f5f35 260 { "merge-file", cmd_merge_file },
7eff28a9 261 { "mv", cmd_mv, RUN_SETUP | NOT_BARE },
efffea03
JH
262 { "name-rev", cmd_name_rev, RUN_SETUP },
263 { "pack-objects", cmd_pack_objects, RUN_SETUP },
acca687f 264 { "pickaxe", cmd_blame, RUN_SETUP | USE_PAGER },
efffea03
JH
265 { "prune", cmd_prune, RUN_SETUP },
266 { "prune-packed", cmd_prune_packed, RUN_SETUP },
102cb085 267 { "push", cmd_push, RUN_SETUP },
efffea03 268 { "read-tree", cmd_read_tree, RUN_SETUP },
4264dc15 269 { "reflog", cmd_reflog, RUN_SETUP },
e0d10e1c 270 { "repo-config", cmd_config },
658f3650 271 { "rerere", cmd_rerere, RUN_SETUP },
efffea03
JH
272 { "rev-list", cmd_rev_list, RUN_SETUP },
273 { "rev-parse", cmd_rev_parse, RUN_SETUP },
7eff28a9
SP
274 { "rm", cmd_rm, RUN_SETUP | NOT_BARE },
275 { "runstatus", cmd_runstatus, RUN_SETUP | NOT_BARE },
1d541c12 276 { "shortlog", cmd_shortlog, RUN_SETUP | USE_PAGER },
efffea03
JH
277 { "show-branch", cmd_show_branch, RUN_SETUP },
278 { "show", cmd_show, RUN_SETUP | USE_PAGER },
f754fa9c 279 { "stripspace", cmd_stripspace },
efffea03 280 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
9cb90b80 281 { "tar-tree", cmd_tar_tree },
efffea03
JH
282 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
283 { "update-index", cmd_update_index, RUN_SETUP },
284 { "update-ref", cmd_update_ref, RUN_SETUP },
39345a21 285 { "upload-archive", cmd_upload_archive },
f754fa9c 286 { "version", cmd_version },
efffea03
JH
287 { "whatchanged", cmd_whatchanged, RUN_SETUP | USE_PAGER },
288 { "write-tree", cmd_write_tree, RUN_SETUP },
2e3ed670 289 { "verify-pack", cmd_verify_pack },
358ddb62 290 { "show-ref", cmd_show_ref, RUN_SETUP },
e1e22e37 291 { "pack-refs", cmd_pack_refs, RUN_SETUP },
231af832
LT
292 };
293 int i;
294
1cd95087
LT
295 /* Turn "git cmd --help" into "git help cmd" */
296 if (argc > 1 && !strcmp(argv[1], "--help")) {
297 argv[1] = argv[0];
298 argv[0] = cmd = "help";
299 }
300
231af832
LT
301 for (i = 0; i < ARRAY_SIZE(commands); i++) {
302 struct cmd_struct *p = commands+i;
a633fca0 303 const char *prefix;
231af832
LT
304 if (strcmp(p->cmd, cmd))
305 continue;
575ba9d6 306
a633fca0 307 prefix = NULL;
efffea03 308 if (p->option & RUN_SETUP)
a633fca0 309 prefix = setup_git_directory();
9590b041
JH
310 if (p->option & USE_PAGER)
311 setup_pager();
6d9ba67b
JS
312 if ((p->option & NOT_BARE) &&
313 (is_bare_repository() || is_inside_git_dir()))
314 die("%s must be run in a work tree", cmd);
6ce4e61f 315 trace_argv_printf(argv, argc, "trace: built-in: git");
575ba9d6 316
a633fca0 317 exit(p->fn(argc, argv, prefix));
231af832
LT
318 }
319}
320
9201c707 321int main(int argc, const char **argv, char **envp)
8e49d503 322{
5b6df8e4 323 const char *cmd = argv[0] ? argv[0] : "git-help";
231af832 324 char *slash = strrchr(cmd, '/');
231af832 325 const char *exec_path = NULL;
a025463b 326 int done_alias = 0;
231af832
LT
327
328 /*
329 * Take the basename of argv[0] as the command
330 * name, and the dirname as the default exec_path
331 * if it's an absolute path and we don't have
332 * anything better.
333 */
334 if (slash) {
335 *slash++ = 0;
336 if (*cmd == '/')
337 exec_path = cmd;
338 cmd = slash;
339 }
8e49d503 340
231af832
LT
341 /*
342 * "git-xxxx" is the same as "git xxxx", but we obviously:
343 *
344 * - cannot take flags in between the "git" and the "xxxx".
345 * - cannot execute it externally (since it would just do
346 * the same thing over again)
347 *
348 * So we just directly call the internal command handler, and
349 * die if that one cannot handle it.
350 */
351 if (!strncmp(cmd, "git-", 4)) {
352 cmd += 4;
353 argv[0] = cmd;
354 handle_internal_command(argc, argv, envp);
355 die("cannot handle %s internally", cmd);
356 }
8e49d503 357
231af832 358 /* Look for flags.. */
6acbcb92
JS
359 argv++;
360 argc--;
361 handle_options(&argv, &argc);
362 if (argc > 0) {
363 if (!strncmp(argv[0], "--", 2))
364 argv[0] += 2;
365 } else {
366 /* Default command: "help" */
367 argv[0] = "help";
368 argc = 1;
97fc6c5f 369 }
6acbcb92 370 cmd = argv[0];
231af832
LT
371
372 /*
373 * We search for git commands in the following order:
374 * - git_exec_path()
375 * - the path of the "git" command if we could find it
376 * in $0
377 * - the regular PATH.
378 */
379 if (exec_path)
380 prepend_to_path(exec_path, strlen(exec_path));
77cb17e9
MO
381 exec_path = git_exec_path();
382 prepend_to_path(exec_path, strlen(exec_path));
8e49d503 383
a025463b
JH
384 while (1) {
385 /* See if it's an internal command */
386 handle_internal_command(argc, argv, envp);
2b11e317 387
a025463b
JH
388 /* .. then try the external ones */
389 execv_git_cmd(argv);
231af832 390
a025463b
JH
391 /* It could be an alias -- this works around the insanity
392 * of overriding "git log" with "git show" by having
393 * alias.log = show
394 */
395 if (done_alias || !handle_alias(&argc, &argv))
396 break;
397 done_alias = 1;
398 }
10b15b86 399
f3dd015c
TT
400 if (errno == ENOENT) {
401 if (done_alias) {
402 fprintf(stderr, "Expansion of alias '%s' failed; "
403 "'%s' is not a git-command\n",
404 cmd, argv[0]);
405 exit(1);
406 }
822a7d50 407 help_unknown_cmd(cmd);
f3dd015c 408 }
10b15b86
AR
409
410 fprintf(stderr, "Failed to run command '%s': %s\n",
33ebb871 411 cmd, strerror(errno));
8e49d503
AE
412
413 return 1;
414}