blob: 968a8a464588f10c5c1564440e06d5e5afe8d37a [file] [log] [blame]
Junio C Hamano85023572006-12-19 14:34:12 -08001#include "builtin.h"
Thiago Farinafd5c3632010-08-31 23:29:08 -03002#include "exec_cmd.h"
3#include "help.h"
Jeff Kingd8e96fd2009-01-28 02:38:14 -05004#include "run-command.h"
Andreas Ericsson8e49d502005-11-16 00:31:25 +01005
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +01006const char git_usage_string[] =
Nazri Ramliy44e1e4d2013-09-09 21:47:43 +08007 "git [--version] [--help] [-C <path>] [-c name=value]\n"
Kevin Bracey03a0fb02013-03-11 21:44:15 +02008 " [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]\n"
Alex Henrie9c9b4f22015-01-13 00:44:47 -07009 " [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]\n"
Josh Tripletta1bea2c2011-07-05 10:54:44 -070010 " [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]\n"
Štěpán Němec62b46982010-10-08 19:31:15 +020011 " <command> [<args>]";
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +010012
Teemu Likonenb7d96812008-06-06 00:15:36 +030013const char git_more_info_string[] =
Alex Henriead5fe372014-08-30 13:56:01 -060014 N_("'git help -a' and 'git help -g' list available subcommands and some\n"
Philip Oakley73903d02013-04-02 23:39:48 +010015 "concept guides. See 'git help <command>' or 'git help <concept>'\n"
16 "to read about a specific subcommand or concept.");
Teemu Likonenb7d96812008-06-06 00:15:36 +030017
Jeff King4e107382008-07-03 07:46:57 -040018static int use_pager = -1;
Junio C Hamanof6556512014-09-02 13:27:45 -070019static char *orig_cwd;
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070020static const char *env_names[] = {
21 GIT_DIR_ENVIRONMENT,
22 GIT_WORK_TREE_ENVIRONMENT,
23 GIT_IMPLICIT_WORK_TREE_ENVIRONMENT,
24 GIT_PREFIX_ENVIRONMENT
25};
26static char *orig_env[4];
Junio C Hamano2e1175d2016-01-26 22:50:27 -080027static int save_restore_env_balance;
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070028
Nguyễn Thái Ngọc Duy0d5466d2015-12-03 19:17:55 +010029static void save_env_before_alias(void)
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070030{
31 int i;
Junio C Hamano2e1175d2016-01-26 22:50:27 -080032
33 assert(save_restore_env_balance == 0);
34 save_restore_env_balance = 1;
Junio C Hamanof6556512014-09-02 13:27:45 -070035 orig_cwd = xgetcwd();
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070036 for (i = 0; i < ARRAY_SIZE(env_names); i++) {
37 orig_env[i] = getenv(env_names[i]);
38 if (orig_env[i])
39 orig_env[i] = xstrdup(orig_env[i]);
40 }
41}
42
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +070043static void restore_env(int external_alias)
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070044{
45 int i;
Junio C Hamano2e1175d2016-01-26 22:50:27 -080046
47 assert(save_restore_env_balance == 1);
48 save_restore_env_balance = 0;
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +070049 if (!external_alias && orig_cwd && chdir(orig_cwd))
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070050 die_errno("could not move to %s", orig_cwd);
Junio C Hamanof6556512014-09-02 13:27:45 -070051 free(orig_cwd);
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070052 for (i = 0; i < ARRAY_SIZE(env_names); i++) {
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +070053 if (external_alias &&
54 !strcmp(env_names[i], GIT_PREFIX_ENVIRONMENT))
55 continue;
Junio C Hamano8384c132016-02-02 15:42:59 -080056 if (orig_env[i]) {
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070057 setenv(env_names[i], orig_env[i], 1);
Junio C Hamano8384c132016-02-02 15:42:59 -080058 free(orig_env[i]);
59 } else {
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070060 unsetenv(env_names[i]);
Junio C Hamano8384c132016-02-02 15:42:59 -080061 }
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +070062 }
63}
Jeff King4e107382008-07-03 07:46:57 -040064
65static void commit_pager_choice(void) {
66 switch (use_pager) {
67 case 0:
68 setenv("GIT_PAGER", "cat", 1);
69 break;
70 case 1:
71 setup_pager();
72 break;
73 default:
74 break;
75 }
76}
77
Felipe Contreras4b25d092009-05-01 12:06:36 +030078static int handle_options(const char ***argv, int *argc, int *envchanged)
Johannes Schindelin4ab243a2006-07-24 14:10:45 +020079{
Junio C Hamano73546c02011-05-24 18:50:35 -040080 const char **orig_argv = *argv;
Johannes Schindelin4ab243a2006-07-24 14:10:45 +020081
82 while (*argc > 0) {
83 const char *cmd = (*argv)[0];
84 if (cmd[0] != '-')
85 break;
86
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020087 /*
88 * For legacy reasons, the "version" and "help"
89 * commands can be written with "--" prepended
90 * to make them look like flags.
91 */
92 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
93 break;
94
95 /*
96 * Check remaining flags.
97 */
Jeff Kingae021d82014-06-18 15:47:50 -040098 if (skip_prefix(cmd, "--exec-path", &cmd)) {
Johannes Schindelin6acbcb92006-07-25 20:24:22 +020099 if (*cmd == '=')
Scott R Parish384df832007-10-27 01:36:51 -0700100 git_set_argv_exec_path(cmd + 1);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200101 else {
102 puts(git_exec_path());
103 exit(0);
104 }
Markus Heidelberg89a56bf2009-04-05 04:15:16 +0200105 } else if (!strcmp(cmd, "--html-path")) {
106 puts(system_path(GIT_HTML_PATH));
107 exit(0);
Jon Seymourf2dd8c32011-05-01 18:16:25 +1000108 } else if (!strcmp(cmd, "--man-path")) {
109 puts(system_path(GIT_MAN_PATH));
110 exit(0);
111 } else if (!strcmp(cmd, "--info-path")) {
112 puts(system_path(GIT_INFO_PATH));
113 exit(0);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200114 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
Jeff King4e107382008-07-03 07:46:57 -0400115 use_pager = 1;
Matthieu Moy463a8492007-08-19 19:24:36 +0200116 } else if (!strcmp(cmd, "--no-pager")) {
Jeff King4e107382008-07-03 07:46:57 -0400117 use_pager = 0;
Matthieu Moy463a8492007-08-19 19:24:36 +0200118 if (envchanged)
119 *envchanged = 1;
Christian Couderb0fa7ab2009-10-12 22:30:32 +0200120 } else if (!strcmp(cmd, "--no-replace-objects")) {
Michael Haggertyafc711b2014-02-18 12:24:55 +0100121 check_replace_refs = 0;
Christian Couder6476b382009-11-18 07:50:58 +0100122 setenv(NO_REPLACE_OBJECTS_ENVIRONMENT, "1", 1);
123 if (envchanged)
124 *envchanged = 1;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200125 } else if (!strcmp(cmd, "--git-dir")) {
Brian Gernhardtc321f002006-12-22 08:56:25 -0500126 if (*argc < 2) {
127 fprintf(stderr, "No directory given for --git-dir.\n" );
128 usage(git_usage_string);
129 }
Shawn O. Pearce45b09792006-12-30 23:29:11 -0500130 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200131 if (envchanged)
132 *envchanged = 1;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200133 (*argv)++;
134 (*argc)--;
Jeff Kingae021d82014-06-18 15:47:50 -0400135 } else if (skip_prefix(cmd, "--git-dir=", &cmd)) {
136 setenv(GIT_DIR_ENVIRONMENT, cmd, 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200137 if (envchanged)
138 *envchanged = 1;
Josh Tripletta1bea2c2011-07-05 10:54:44 -0700139 } else if (!strcmp(cmd, "--namespace")) {
140 if (*argc < 2) {
141 fprintf(stderr, "No namespace given for --namespace.\n" );
142 usage(git_usage_string);
143 }
144 setenv(GIT_NAMESPACE_ENVIRONMENT, (*argv)[1], 1);
145 if (envchanged)
146 *envchanged = 1;
147 (*argv)++;
148 (*argc)--;
Jeff Kingae021d82014-06-18 15:47:50 -0400149 } else if (skip_prefix(cmd, "--namespace=", &cmd)) {
150 setenv(GIT_NAMESPACE_ENVIRONMENT, cmd, 1);
Josh Tripletta1bea2c2011-07-05 10:54:44 -0700151 if (envchanged)
152 *envchanged = 1;
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200153 } else if (!strcmp(cmd, "--work-tree")) {
154 if (*argc < 2) {
155 fprintf(stderr, "No directory given for --work-tree.\n" );
156 usage(git_usage_string);
157 }
158 setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200159 if (envchanged)
160 *envchanged = 1;
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200161 (*argv)++;
162 (*argc)--;
Jeff Kingae021d82014-06-18 15:47:50 -0400163 } else if (skip_prefix(cmd, "--work-tree=", &cmd)) {
164 setenv(GIT_WORK_TREE_ENVIRONMENT, cmd, 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200165 if (envchanged)
166 *envchanged = 1;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200167 } else if (!strcmp(cmd, "--bare")) {
René Scharfe4d3ab442014-07-28 20:31:57 +0200168 char *cwd = xgetcwd();
Junio C Hamano6adcca32007-08-27 00:58:06 -0700169 is_bare_repository_cfg = 1;
René Scharfe4d3ab442014-07-28 20:31:57 +0200170 setenv(GIT_DIR_ENVIRONMENT, cwd, 0);
171 free(cwd);
Jeff King2cd83d12013-03-08 04:32:22 -0500172 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200173 if (envchanged)
174 *envchanged = 1;
Alex Riesen8b1fa772010-03-26 23:53:57 +0100175 } else if (!strcmp(cmd, "-c")) {
176 if (*argc < 2) {
177 fprintf(stderr, "-c expects a configuration string\n" );
178 usage(git_usage_string);
179 }
Jeff King2b64fc82010-08-23 15:16:00 -0400180 git_config_push_parameter((*argv)[1]);
Alex Riesen8b1fa772010-03-26 23:53:57 +0100181 (*argv)++;
182 (*argc)--;
Jeff King823ab402012-12-19 17:37:30 -0500183 } else if (!strcmp(cmd, "--literal-pathspecs")) {
184 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "1", 1);
185 if (envchanged)
186 *envchanged = 1;
187 } else if (!strcmp(cmd, "--no-literal-pathspecs")) {
188 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "0", 1);
189 if (envchanged)
190 *envchanged = 1;
Nguyễn Thái Ngọc Duybd30c2e2013-07-14 15:36:08 +0700191 } else if (!strcmp(cmd, "--glob-pathspecs")) {
192 setenv(GIT_GLOB_PATHSPECS_ENVIRONMENT, "1", 1);
193 if (envchanged)
194 *envchanged = 1;
195 } else if (!strcmp(cmd, "--noglob-pathspecs")) {
196 setenv(GIT_NOGLOB_PATHSPECS_ENVIRONMENT, "1", 1);
197 if (envchanged)
198 *envchanged = 1;
Nguyễn Thái Ngọc Duy93d93532013-07-14 15:36:09 +0700199 } else if (!strcmp(cmd, "--icase-pathspecs")) {
200 setenv(GIT_ICASE_PATHSPECS_ENVIRONMENT, "1", 1);
201 if (envchanged)
202 *envchanged = 1;
Nguyễn Thái Ngọc Duy6035d6a2013-05-26 08:16:15 +0700203 } else if (!strcmp(cmd, "--shallow-file")) {
204 (*argv)++;
205 (*argc)--;
Nguyễn Thái Ngọc Duy069c0532013-12-05 20:02:45 +0700206 set_alternate_shallow_file((*argv)[0], 1);
Nguyễn Thái Ngọc Duy6035d6a2013-05-26 08:16:15 +0700207 if (envchanged)
208 *envchanged = 1;
Nazri Ramliy44e1e4d2013-09-09 21:47:43 +0800209 } else if (!strcmp(cmd, "-C")) {
210 if (*argc < 2) {
211 fprintf(stderr, "No directory given for -C.\n" );
212 usage(git_usage_string);
213 }
Karthik Nayak6a536e22015-03-06 16:48:08 +0530214 if ((*argv)[1][0]) {
215 if (chdir((*argv)[1]))
216 die_errno("Cannot change to '%s'", (*argv)[1]);
217 if (envchanged)
218 *envchanged = 1;
219 }
Nazri Ramliy44e1e4d2013-09-09 21:47:43 +0800220 (*argv)++;
221 (*argc)--;
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200222 } else {
223 fprintf(stderr, "Unknown option: %s\n", cmd);
Ramsay Allan Jones822a7d52006-07-30 22:42:25 +0100224 usage(git_usage_string);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200225 }
Johannes Schindelin4ab243a2006-07-24 14:10:45 +0200226
227 (*argv)++;
228 (*argc)--;
Johannes Schindelin4ab243a2006-07-24 14:10:45 +0200229 }
Junio C Hamano73546c02011-05-24 18:50:35 -0400230 return (*argv) - orig_argv;
Johannes Schindelin4ab243a2006-07-24 14:10:45 +0200231}
232
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200233static int handle_alias(int *argcp, const char ***argv)
234{
SZEDER Gáboraf05d672008-03-25 22:06:26 +0100235 int envchanged = 0, ret = 0, saved_errno = errno;
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200236 int count, option_count;
Felipe Contreras4b25d092009-05-01 12:06:36 +0300237 const char **new_argv;
Jeff King94351112008-02-24 17:17:14 -0500238 const char *alias_command;
239 char *alias_string;
Junio C Hamanoe85dc0a2008-03-31 21:33:09 -0700240 int unused_nongit;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200241
Nguyễn Thái Ngọc Duy0d5466d2015-12-03 19:17:55 +0100242 save_env_before_alias();
Nguyễn Thái Ngọc Duy86d26f22015-12-20 14:50:18 +0700243 setup_git_directory_gently(&unused_nongit);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200244
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200245 alias_command = (*argv)[0];
Jeff King94351112008-02-24 17:17:14 -0500246 alias_string = alias_lookup(alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200247 if (alias_string) {
Theodore Ts'odfd42a32007-02-10 19:33:58 -0500248 if (alias_string[0] == '!') {
Jeff King850d2fe2016-02-22 17:44:21 -0500249 struct child_process child = CHILD_PROCESS_INIT;
Johannes Schindelina2f80282007-07-01 22:51:58 +0100250
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100251 commit_pager_choice();
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +0700252 restore_env(1);
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100253
Jeff King850d2fe2016-02-22 17:44:21 -0500254 child.use_shell = 1;
255 argv_array_push(&child.args, alias_string + 1);
256 argv_array_pushv(&child.args, (*argv) + 1);
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100257
Jeff King850d2fe2016-02-22 17:44:21 -0500258 ret = run_command(&child);
Erik Faye-Lund7f51f8b2011-01-07 00:00:38 +0100259 if (ret >= 0) /* normal exit */
260 exit(ret);
261
262 die_errno("While expanding alias '%s': '%s'",
263 alias_command, alias_string + 1);
Theodore Ts'odfd42a32007-02-10 19:33:58 -0500264 }
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200265 count = split_cmdline(alias_string, &new_argv);
Deskin Millerdc4179f2008-09-22 11:06:41 -0400266 if (count < 0)
Greg Brockmanad9ac6d2010-08-07 01:13:39 -0400267 die("Bad alias.%s string: %s", alias_command,
268 split_cmdline_strerror(count));
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200269 option_count = handle_options(&new_argv, &count, &envchanged);
270 if (envchanged)
271 die("alias '%s' changes environment variables\n"
272 "You can use '!git' in the alias to do this.",
273 alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200274 memmove(new_argv - option_count, new_argv,
275 count * sizeof(char *));
276 new_argv -= option_count;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200277
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200278 if (count < 1)
279 die("empty alias for %s", alias_command);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200280
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200281 if (!strcmp(alias_command, new_argv[0]))
282 die("recursive alias: %s", alias_command);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200283
Christian Couderb319ce42007-12-03 05:51:50 +0100284 trace_argv_printf(new_argv,
Christian Couder6ce4e612006-09-02 18:23:48 +0200285 "trace: alias expansion: %s =>",
286 alias_command);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200287
René Scharfe2756ca42014-09-16 20:56:57 +0200288 REALLOC_ARRAY(new_argv, count + *argcp);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200289 /* insert after command name */
Felipe Contreras4b25d092009-05-01 12:06:36 +0300290 memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
Matthias Lederhofer0347a8c2006-07-30 03:30:29 +0200291
292 *argv = new_argv;
293 *argcp += count - 1;
294
295 ret = 1;
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200296 }
297
Nguyễn Thái Ngọc Duy57ea7122015-12-20 14:50:19 +0700298 restore_env(0);
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200299
Johannes Schindelin47e5c0c2006-06-28 12:45:27 +0200300 errno = saved_errno;
301
Johannes Schindelin2b11e312006-06-05 19:43:52 +0200302 return ret;
303}
304
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500305#define RUN_SETUP (1<<0)
306#define RUN_SETUP_GENTLY (1<<1)
307#define USE_PAGER (1<<2)
Shawn O. Pearce7eff28a2006-12-30 23:32:38 -0500308/*
309 * require working tree to be present -- anything uses this needs
310 * RUN_SETUP for reading from the configuration file.
311 */
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500312#define NEED_WORK_TREE (1<<3)
Linus Torvaldsa633fca2006-07-28 22:44:25 -0700313
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700314struct cmd_struct {
315 const char *cmd;
316 int (*fn)(int, const char **, const char *);
317 int option;
318};
319
Jeff Kingf172f332009-01-28 02:33:53 -0500320static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700321{
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600322 int status, help;
Linus Torvalds0f157312007-06-24 10:29:33 -0700323 struct stat st;
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700324 const char *prefix;
325
326 prefix = NULL;
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600327 help = argc == 2 && !strcmp(argv[1], "-h");
328 if (!help) {
329 if (p->option & RUN_SETUP)
330 prefix = setup_git_directory();
Luis R. Rodriguez27bd38d2014-04-21 17:47:56 -0700331 else if (p->option & RUN_SETUP_GENTLY) {
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500332 int nongit_ok;
333 prefix = setup_git_directory_gently(&nongit_ok);
334 }
Jeff King4e107382008-07-03 07:46:57 -0400335
Nguyễn Thái Ngọc Duyee38dfb2010-08-05 21:52:16 -0500336 if (use_pager == -1 && p->option & (RUN_SETUP | RUN_SETUP_GENTLY))
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600337 use_pager = check_pager_config(p->cmd);
338 if (use_pager == -1 && p->option & USE_PAGER)
339 use_pager = 1;
Nguyễn Thái Ngọc Duya9ca8a82010-11-26 22:31:57 +0700340
341 if ((p->option & (RUN_SETUP | RUN_SETUP_GENTLY)) &&
342 startup_info->have_repository) /* get_git_dir() may set up repo, avoid that */
343 trace_repo_setup(prefix);
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600344 }
Jeff King4e107382008-07-03 07:46:57 -0400345 commit_pager_choice();
346
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600347 if (!help && p->option & NEED_WORK_TREE)
Mike Hommey59f0f2f2007-11-03 12:23:11 +0100348 setup_work_tree();
349
Christian Couderb319ce42007-12-03 05:51:50 +0100350 trace_argv_printf(argv, "trace: built-in: git");
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700351
Linus Torvalds0f157312007-06-24 10:29:33 -0700352 status = p->fn(argc, argv, prefix);
353 if (status)
Johannes Sixt47e3de02009-07-05 20:57:46 +0200354 return status;
Linus Torvalds0f157312007-06-24 10:29:33 -0700355
356 /* Somebody closed stdout? */
357 if (fstat(fileno(stdout), &st))
358 return 0;
359 /* Ignore write errors for pipes and sockets.. */
360 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
361 return 0;
362
363 /* Check for ENOSPC and EIO errors.. */
Linus Torvalds0227f982007-06-30 11:44:20 -0700364 if (fflush(stdout))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200365 die_errno("write failure on standard output");
Linus Torvalds0227f982007-06-30 11:44:20 -0700366 if (ferror(stdout))
367 die("unknown write failure on standard output");
368 if (fclose(stdout))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200369 die_errno("close failed on standard output");
Linus Torvalds0f157312007-06-24 10:29:33 -0700370 return 0;
Linus Torvalds47d0b4f2007-06-24 10:10:40 -0700371}
372
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100373static struct cmd_struct commands[] = {
374 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
Paul Tan783d7e82015-08-04 21:52:06 +0800375 { "am", cmd_am, RUN_SETUP | NEED_WORK_TREE },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100376 { "annotate", cmd_annotate, RUN_SETUP },
377 { "apply", cmd_apply, RUN_SETUP_GENTLY },
378 { "archive", cmd_archive },
379 { "bisect--helper", cmd_bisect__helper, RUN_SETUP },
380 { "blame", cmd_blame, RUN_SETUP },
381 { "branch", cmd_branch, RUN_SETUP },
382 { "bundle", cmd_bundle, RUN_SETUP_GENTLY },
383 { "cat-file", cmd_cat_file, RUN_SETUP },
384 { "check-attr", cmd_check_attr, RUN_SETUP },
385 { "check-ignore", cmd_check_ignore, RUN_SETUP | NEED_WORK_TREE },
386 { "check-mailmap", cmd_check_mailmap, RUN_SETUP },
387 { "check-ref-format", cmd_check_ref_format },
Eric Sunshine0ca560c2015-07-06 13:30:56 -0400388 { "checkout", cmd_checkout, RUN_SETUP | NEED_WORK_TREE },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100389 { "checkout-index", cmd_checkout_index,
390 RUN_SETUP | NEED_WORK_TREE},
391 { "cherry", cmd_cherry, RUN_SETUP },
392 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
393 { "clean", cmd_clean, RUN_SETUP | NEED_WORK_TREE },
Nguyễn Thái Ngọc Duy86d26f22015-12-20 14:50:18 +0700394 { "clone", cmd_clone },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100395 { "column", cmd_column, RUN_SETUP_GENTLY },
396 { "commit", cmd_commit, RUN_SETUP | NEED_WORK_TREE },
397 { "commit-tree", cmd_commit_tree, RUN_SETUP },
398 { "config", cmd_config, RUN_SETUP_GENTLY },
399 { "count-objects", cmd_count_objects, RUN_SETUP },
400 { "credential", cmd_credential, RUN_SETUP_GENTLY },
401 { "describe", cmd_describe, RUN_SETUP },
402 { "diff", cmd_diff },
403 { "diff-files", cmd_diff_files, RUN_SETUP | NEED_WORK_TREE },
404 { "diff-index", cmd_diff_index, RUN_SETUP },
405 { "diff-tree", cmd_diff_tree, RUN_SETUP },
406 { "fast-export", cmd_fast_export, RUN_SETUP },
407 { "fetch", cmd_fetch, RUN_SETUP },
408 { "fetch-pack", cmd_fetch_pack, RUN_SETUP },
409 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
410 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
411 { "format-patch", cmd_format_patch, RUN_SETUP },
412 { "fsck", cmd_fsck, RUN_SETUP },
413 { "fsck-objects", cmd_fsck, RUN_SETUP },
414 { "gc", cmd_gc, RUN_SETUP },
415 { "get-tar-commit-id", cmd_get_tar_commit_id },
416 { "grep", cmd_grep, RUN_SETUP_GENTLY },
417 { "hash-object", cmd_hash_object },
418 { "help", cmd_help },
419 { "index-pack", cmd_index_pack, RUN_SETUP_GENTLY },
Nguyễn Thái Ngọc Duy86d26f22015-12-20 14:50:18 +0700420 { "init", cmd_init_db },
421 { "init-db", cmd_init_db },
John Keepingcbd9fc22015-09-05 14:39:24 +0100422 { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP_GENTLY },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100423 { "log", cmd_log, RUN_SETUP },
424 { "ls-files", cmd_ls_files, RUN_SETUP },
425 { "ls-remote", cmd_ls_remote, RUN_SETUP_GENTLY },
426 { "ls-tree", cmd_ls_tree, RUN_SETUP },
427 { "mailinfo", cmd_mailinfo },
428 { "mailsplit", cmd_mailsplit },
429 { "merge", cmd_merge, RUN_SETUP | NEED_WORK_TREE },
430 { "merge-base", cmd_merge_base, RUN_SETUP },
431 { "merge-file", cmd_merge_file, RUN_SETUP_GENTLY },
432 { "merge-index", cmd_merge_index, RUN_SETUP },
433 { "merge-ours", cmd_merge_ours, RUN_SETUP },
434 { "merge-recursive", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
435 { "merge-recursive-ours", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
436 { "merge-recursive-theirs", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
437 { "merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
438 { "merge-tree", cmd_merge_tree, RUN_SETUP },
439 { "mktag", cmd_mktag, RUN_SETUP },
440 { "mktree", cmd_mktree, RUN_SETUP },
441 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
442 { "name-rev", cmd_name_rev, RUN_SETUP },
443 { "notes", cmd_notes, RUN_SETUP },
444 { "pack-objects", cmd_pack_objects, RUN_SETUP },
445 { "pack-redundant", cmd_pack_redundant, RUN_SETUP },
446 { "pack-refs", cmd_pack_refs, RUN_SETUP },
447 { "patch-id", cmd_patch_id },
448 { "pickaxe", cmd_blame, RUN_SETUP },
449 { "prune", cmd_prune, RUN_SETUP },
450 { "prune-packed", cmd_prune_packed, RUN_SETUP },
Paul Tan1e1ea692015-06-14 16:41:51 +0800451 { "pull", cmd_pull, RUN_SETUP | NEED_WORK_TREE },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100452 { "push", cmd_push, RUN_SETUP },
453 { "read-tree", cmd_read_tree, RUN_SETUP },
454 { "receive-pack", cmd_receive_pack },
455 { "reflog", cmd_reflog, RUN_SETUP },
456 { "remote", cmd_remote, RUN_SETUP },
457 { "remote-ext", cmd_remote_ext },
458 { "remote-fd", cmd_remote_fd },
459 { "repack", cmd_repack, RUN_SETUP },
460 { "replace", cmd_replace, RUN_SETUP },
461 { "rerere", cmd_rerere, RUN_SETUP },
462 { "reset", cmd_reset, RUN_SETUP },
463 { "rev-list", cmd_rev_list, RUN_SETUP },
464 { "rev-parse", cmd_rev_parse },
465 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
466 { "rm", cmd_rm, RUN_SETUP },
467 { "send-pack", cmd_send_pack, RUN_SETUP },
468 { "shortlog", cmd_shortlog, RUN_SETUP_GENTLY | USE_PAGER },
469 { "show", cmd_show, RUN_SETUP },
470 { "show-branch", cmd_show_branch, RUN_SETUP },
471 { "show-ref", cmd_show_ref, RUN_SETUP },
472 { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
473 { "status", cmd_status, RUN_SETUP | NEED_WORK_TREE },
474 { "stripspace", cmd_stripspace },
Stefan Beller74703a12015-09-02 14:42:24 -0700475 { "submodule--helper", cmd_submodule__helper, RUN_SETUP },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100476 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
477 { "tag", cmd_tag, RUN_SETUP },
478 { "unpack-file", cmd_unpack_file, RUN_SETUP },
479 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
480 { "update-index", cmd_update_index, RUN_SETUP },
481 { "update-ref", cmd_update_ref, RUN_SETUP },
482 { "update-server-info", cmd_update_server_info, RUN_SETUP },
483 { "upload-archive", cmd_upload_archive },
484 { "upload-archive--writer", cmd_upload_archive_writer },
485 { "var", cmd_var, RUN_SETUP_GENTLY },
Michael J Gruberd07b00b2014-06-23 09:05:49 +0200486 { "verify-commit", cmd_verify_commit, RUN_SETUP },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100487 { "verify-pack", cmd_verify_pack },
488 { "verify-tag", cmd_verify_tag, RUN_SETUP },
489 { "version", cmd_version },
490 { "whatchanged", cmd_whatchanged, RUN_SETUP },
Nguyễn Thái Ngọc Duydf0b6cf2015-06-29 19:51:18 +0700491 { "worktree", cmd_worktree, RUN_SETUP },
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100492 { "write-tree", cmd_write_tree, RUN_SETUP },
493};
494
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100495static struct cmd_struct *get_builtin(const char *s)
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100496{
497 int i;
498 for (i = 0; i < ARRAY_SIZE(commands); i++) {
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100499 struct cmd_struct *p = commands + i;
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100500 if (!strcmp(s, p->cmd))
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100501 return p;
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100502 }
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100503 return NULL;
504}
505
506int is_builtin(const char *s)
507{
508 return !!get_builtin(s);
Sebastian Schuberthc6127fa2014-01-02 17:17:11 +0100509}
510
Alexander Kuleshov63ca1c02016-02-22 13:18:29 +0600511#ifdef STRIP_EXTENSION
512static void strip_extension(const char **argv)
513{
514 size_t len;
515
516 if (strip_suffix(argv[0], STRIP_EXTENSION, &len))
517 argv[0] = xmemdupz(argv[0], len);
518}
519#else
520#define strip_extension(cmd)
521#endif
522
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100523static void handle_builtin(int argc, const char **argv)
Linus Torvalds231af832006-02-26 12:34:51 -0800524{
Alexander Kuleshov63ca1c02016-02-22 13:18:29 +0600525 const char *cmd;
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100526 struct cmd_struct *builtin;
Johannes Sixt23326d12007-12-08 20:57:25 +0100527
Alexander Kuleshov63ca1c02016-02-22 13:18:29 +0600528 strip_extension(argv);
529 cmd = argv[0];
Linus Torvalds231af832006-02-26 12:34:51 -0800530
Linus Torvalds1cd95082006-04-15 11:13:49 -0700531 /* Turn "git cmd --help" into "git help cmd" */
532 if (argc > 1 && !strcmp(argv[1], "--help")) {
533 argv[1] = argv[0];
534 argv[0] = cmd = "help";
535 }
536
Slavomir Vlcekc4f901d2014-11-12 14:10:22 +0100537 builtin = get_builtin(cmd);
Junio C Hamano441981b2016-01-26 22:52:02 -0800538 if (builtin)
539 exit(run_builtin(builtin, argc, argv));
Linus Torvalds231af832006-02-26 12:34:51 -0800540}
541
Junio C Hamano7550be02007-12-01 22:09:22 -0800542static void execv_dashed_external(const char **argv)
543{
Brandon Caseyf285a2d2008-10-09 14:12:12 -0500544 struct strbuf cmd = STRBUF_INIT;
Junio C Hamano7550be02007-12-01 22:09:22 -0800545 const char *tmp;
Jeff Kingd8e96fd2009-01-28 02:38:14 -0500546 int status;
Junio C Hamano7550be02007-12-01 22:09:22 -0800547
Jeff King92058e42011-08-18 15:01:32 -0700548 if (use_pager == -1)
549 use_pager = check_pager_config(argv[0]);
Jonathan Nieder030149a2010-07-14 17:55:12 -0500550 commit_pager_choice();
551
Junio C Hamano7550be02007-12-01 22:09:22 -0800552 strbuf_addf(&cmd, "git-%s", argv[0]);
553
554 /*
555 * argv[0] must be the git command, but the argv array
556 * belongs to the caller, and may be reused in
557 * subsequent loop iterations. Save argv[0] and
558 * restore it on error.
559 */
560 tmp = argv[0];
561 argv[0] = cmd.buf;
562
563 trace_argv_printf(argv, "trace: exec:");
564
Jeff Kingd8e96fd2009-01-28 02:38:14 -0500565 /*
566 * if we fail because the command is not found, it is
567 * OK to return. Otherwise, we just pass along the status code.
568 */
Clemens Buchacher10c6cdd2012-01-08 21:41:09 +0100569 status = run_command_v_opt(argv, RUN_SILENT_EXEC_FAILURE | RUN_CLEAN_ON_EXIT);
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200570 if (status >= 0 || errno != ENOENT)
Johannes Sixt5709e032009-07-04 21:26:39 +0200571 exit(status);
Junio C Hamano7550be02007-12-01 22:09:22 -0800572
573 argv[0] = tmp;
574
575 strbuf_release(&cmd);
576}
577
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100578static int run_argv(int *argcp, const char ***argv)
579{
580 int done_alias = 0;
581
582 while (1) {
Junio C Hamano441981b2016-01-26 22:52:02 -0800583 /*
584 * If we tried alias and futzed with our environment,
585 * it no longer is safe to invoke builtins directly in
586 * general. We have to spawn them as dashed externals.
587 *
588 * NEEDSWORK: if we can figure out cases
589 * where it is safe to do, we can avoid spawning a new
590 * process.
591 */
592 if (!done_alias)
593 handle_builtin(*argcp, *argv);
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100594
595 /* .. then try the external ones */
596 execv_dashed_external(*argv);
597
598 /* It could be an alias -- this works around the insanity
599 * of overriding "git log" with "git show" by having
600 * alias.log = show
601 */
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +0700602 if (done_alias)
603 break;
Nguyễn Thái Ngọc Duyc0562612014-06-08 16:37:10 +0700604 if (!handle_alias(argcp, argv))
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100605 break;
606 done_alias = 1;
607 }
608
609 return done_alias;
610}
611
Patrick Reynolds7559a1b2014-09-18 11:57:09 -0500612/*
613 * Many parts of Git have subprograms communicate via pipe, expect the
614 * upstream of a pipe to die with SIGPIPE when the downstream of a
615 * pipe does not need to read all that is written. Some third-party
616 * programs that ignore or block SIGPIPE for their own reason forget
617 * to restore SIGPIPE handling to the default before spawning Git and
618 * break this carefully orchestrated machinery.
619 *
620 * Restore the way SIGPIPE is handled to default, which is what we
621 * expect.
622 */
623static void restore_sigpipe_to_default(void)
624{
625 sigset_t unblock;
626
627 sigemptyset(&unblock);
628 sigaddset(&unblock, SIGPIPE);
629 sigprocmask(SIG_UNBLOCK, &unblock, NULL);
630 signal(SIGPIPE, SIG_DFL);
631}
Junio C Hamano7550be02007-12-01 22:09:22 -0800632
Ramsay Jones84d32bf2013-04-27 20:19:47 +0100633int main(int argc, char **av)
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100634{
Ramsay Jones84d32bf2013-04-27 20:19:47 +0100635 const char **argv = (const char **) av;
Steve Haslam4dd47c32009-01-18 13:00:10 +0100636 const char *cmd;
Alexander Kuleshov8fa79752015-03-02 18:02:37 +0600637 int done_help = 0;
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100638
Steffen Prohaska2cd72b02009-01-18 13:00:11 +0100639 cmd = git_extract_argv0_path(argv[0]);
640 if (!cmd)
Steve Haslam4dd47c32009-01-18 13:00:10 +0100641 cmd = "git-help";
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100642
Thomas Rasta11c3962013-07-16 11:27:37 +0200643 /*
644 * Always open file descriptors 0/1/2 to avoid clobbering files
645 * in die(). It also avoids messing up when the pipes are dup'ed
646 * onto stdin/stdout/stderr in the child processes we spawn.
647 */
648 sanitize_stdfds();
649
Patrick Reynolds7559a1b2014-09-18 11:57:09 -0500650 restore_sigpipe_to_default();
651
Ævar Arnfjörð Bjarmason5e9637c2011-11-18 00:14:42 +0100652 git_setup_gettext();
653
Karsten Blees578da032014-07-12 02:07:01 +0200654 trace_command_performance(argv);
655
Linus Torvalds231af832006-02-26 12:34:51 -0800656 /*
657 * "git-xxxx" is the same as "git xxxx", but we obviously:
658 *
659 * - cannot take flags in between the "git" and the "xxxx".
660 * - cannot execute it externally (since it would just do
661 * the same thing over again)
662 *
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100663 * So we just directly call the builtin handler, and die if
664 * that one cannot handle it.
Linus Torvalds231af832006-02-26 12:34:51 -0800665 */
Jeff Kingae021d82014-06-18 15:47:50 -0400666 if (skip_prefix(cmd, "git-", &cmd)) {
Linus Torvalds231af832006-02-26 12:34:51 -0800667 argv[0] = cmd;
Sebastian Schuberth3f784a42014-01-02 17:15:44 +0100668 handle_builtin(argc, argv);
669 die("cannot handle %s as a builtin", cmd);
Linus Torvalds231af832006-02-26 12:34:51 -0800670 }
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100671
Linus Torvalds231af832006-02-26 12:34:51 -0800672 /* Look for flags.. */
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200673 argv++;
674 argc--;
Matthias Lederhofer4394efe2007-06-08 22:57:55 +0200675 handle_options(&argv, &argc, NULL);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200676 if (argc > 0) {
Jeff King6d877802014-06-18 15:56:48 -0400677 /* translate --help and --version into commands */
678 skip_prefix(argv[0], "--", &argv[0]);
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200679 } else {
Scott R Parish3d7e2d82007-10-27 01:36:49 -0700680 /* The user didn't specify a command; give them help */
Nguyễn Thái Ngọc Duy73e25e72010-06-26 14:26:37 -0500681 commit_pager_choice();
Scott R Parish3d7e2d82007-10-27 01:36:49 -0700682 printf("usage: %s\n\n", git_usage_string);
683 list_common_cmds_help();
Kevin Bracey421a9762013-03-10 17:10:20 +0200684 printf("\n%s\n", _(git_more_info_string));
Scott R Parish3d7e2d82007-10-27 01:36:49 -0700685 exit(1);
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100686 }
Johannes Schindelin6acbcb92006-07-25 20:24:22 +0200687 cmd = argv[0];
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100688
Linus Torvalds231af832006-02-26 12:34:51 -0800689 /*
Scott R Parish511707d2007-10-28 04:17:20 -0700690 * We use PATH to find git commands, but we prepend some higher
Mike Ralphson3ea3c212009-04-17 19:13:30 +0100691 * precedence paths: the "--exec-path" option, the GIT_EXEC_PATH
Scott R Parish511707d2007-10-28 04:17:20 -0700692 * environment, and the $(gitexecdir) from the Makefile at build
693 * time.
Linus Torvalds231af832006-02-26 12:34:51 -0800694 */
Johannes Sixte1464ca2008-07-21 21:19:52 +0200695 setup_path();
Junio C Hamano7dbc2c02005-11-15 23:13:30 -0800696
Junio C Hamanoa0254632006-06-05 18:09:40 -0700697 while (1) {
Alexander Kuleshov8fa79752015-03-02 18:02:37 +0600698 int was_alias = run_argv(&argc, &argv);
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100699 if (errno != ENOENT)
Junio C Hamanoa0254632006-06-05 18:09:40 -0700700 break;
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100701 if (was_alias) {
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500702 fprintf(stderr, "Expansion of alias '%s' failed; "
Pete Harlan7283bbc2010-02-15 15:33:18 -0800703 "'%s' is not a git command\n",
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500704 cmd, argv[0]);
705 exit(1);
706 }
Adeodato Simóa907e1b2009-01-04 18:16:01 +0100707 if (!done_help) {
708 cmd = argv[0] = help_unknown_cmd(cmd);
709 done_help = 1;
710 } else
711 break;
Theodore Ts'of3dd0152007-02-10 19:33:57 -0500712 }
Alex Riesen10b15b82005-12-01 13:48:35 +0100713
714 fprintf(stderr, "Failed to run command '%s': %s\n",
Andreas Ericsson33ebb872006-06-28 02:17:21 -0700715 cmd, strerror(errno));
Andreas Ericsson8e49d502005-11-16 00:31:25 +0100716
717 return 1;
718}