1#include <stdio.h>
2#include <sys/types.h>
3#include <sys/stat.h>
4#include <dirent.h>
5#include <unistd.h>
6#include <stdlib.h>
7#include <string.h>
8#include <errno.h>
9#include <limits.h>
10#include <stdarg.h>
11#include "git-compat-util.h"
12#include "exec_cmd.h"
13
14#include "builtin.h"
15
16static void prepend_to_path(const char *dir, int len)
17{
18 char *path, *old_path = getenv("PATH");
19 int path_len = len;
20
21 if (!old_path)
22 old_path = "/usr/local/bin:/usr/bin:/bin";
23
24 path_len = len + strlen(old_path) + 1;
25
26 path = malloc(path_len + 1);
27
28 memcpy(path, dir, len);
29 path[len] = ':';
30 memcpy(path + len + 1, old_path, path_len - len);
31
32 setenv("PATH", path, 1);
33}
34
35const char git_version_string[] = GIT_VERSION;
36
37static void handle_internal_command(int argc, const char **argv, char **envp)
38{
39 const char *cmd = argv[0];
40 static struct cmd_struct {
41 const char *cmd;
42 int (*fn)(int, const char **, char **);
43 } commands[] = {
44 { "version", cmd_version },
45 { "help", cmd_help },
46 { "log", cmd_log },
47 { "whatchanged", cmd_whatchanged },
48 { "show", cmd_show },
49 { "push", cmd_push },
50 { "count-objects", cmd_count_objects },
51 { "diff", cmd_diff },
52 { "grep", cmd_grep },
53 { "rev-list", cmd_rev_list },
54 { "init-db", cmd_init_db },
55 { "check-ref-format", cmd_check_ref_format },
56 { "ls-files", cmd_ls_files },
57 { "ls-tree", cmd_ls_tree },
58 { "tar-tree", cmd_tar_tree },
59 { "read-tree", cmd_read_tree },
60 { "commit-tree", cmd_commit_tree },
61 { "apply", cmd_apply },
62 { "show-branch", cmd_show_branch },
63 { "diff-files", cmd_diff_files },
64 { "diff-index", cmd_diff_index },
65 { "diff-stages", cmd_diff_stages },
66 { "diff-tree", cmd_diff_tree }
67 };
68 int i;
69
70 /* Turn "git cmd --help" into "git help cmd" */
71 if (argc > 1 && !strcmp(argv[1], "--help")) {
72 argv[1] = argv[0];
73 argv[0] = cmd = "help";
74 }
75
76 for (i = 0; i < ARRAY_SIZE(commands); i++) {
77 struct cmd_struct *p = commands+i;
78 if (strcmp(p->cmd, cmd))
79 continue;
80 exit(p->fn(argc, argv, envp));
81 }
82}
83
84int main(int argc, const char **argv, char **envp)
85{
86 const char *cmd = argv[0];
87 char *slash = strrchr(cmd, '/');
88 char git_command[PATH_MAX + 1];
89 const char *exec_path = NULL;
90
91 /*
92 * Take the basename of argv[0] as the command
93 * name, and the dirname as the default exec_path
94 * if it's an absolute path and we don't have
95 * anything better.
96 */
97 if (slash) {
98 *slash++ = 0;
99 if (*cmd == '/')
100 exec_path = cmd;
101 cmd = slash;
102 }
103
104 /*
105 * "git-xxxx" is the same as "git xxxx", but we obviously:
106 *
107 * - cannot take flags in between the "git" and the "xxxx".
108 * - cannot execute it externally (since it would just do
109 * the same thing over again)
110 *
111 * So we just directly call the internal command handler, and
112 * die if that one cannot handle it.
113 */
114 if (!strncmp(cmd, "git-", 4)) {
115 cmd += 4;
116 argv[0] = cmd;
117 handle_internal_command(argc, argv, envp);
118 die("cannot handle %s internally", cmd);
119 }
120
121 /* Default command: "help" */
122 cmd = "help";
123
124 /* Look for flags.. */
125 while (argc > 1) {
126 cmd = *++argv;
127 argc--;
128
129 if (strncmp(cmd, "--", 2))
130 break;
131
132 cmd += 2;
133
134 /*
135 * For legacy reasons, the "version" and "help"
136 * commands can be written with "--" prepended
137 * to make them look like flags.
138 */
139 if (!strcmp(cmd, "help"))
140 break;
141 if (!strcmp(cmd, "version"))
142 break;
143
144 /*
145 * Check remaining flags (which by now must be
146 * "--exec-path", but maybe we will accept
147 * other arguments some day)
148 */
149 if (!strncmp(cmd, "exec-path", 9)) {
150 cmd += 9;
151 if (*cmd == '=') {
152 git_set_exec_path(cmd + 1);
153 continue;
154 }
155 puts(git_exec_path());
156 exit(0);
157 }
158 cmd_usage(0, NULL, NULL);
159 }
160 argv[0] = cmd;
161
162 /*
163 * We search for git commands in the following order:
164 * - git_exec_path()
165 * - the path of the "git" command if we could find it
166 * in $0
167 * - the regular PATH.
168 */
169 if (exec_path)
170 prepend_to_path(exec_path, strlen(exec_path));
171 exec_path = git_exec_path();
172 prepend_to_path(exec_path, strlen(exec_path));
173
174 /* See if it's an internal command */
175 handle_internal_command(argc, argv, envp);
176
177 /* .. then try the external ones */
178 execv_git_cmd(argv);
179
180 if (errno == ENOENT)
181 cmd_usage(0, exec_path, "'%s' is not a git-command", cmd);
182
183 fprintf(stderr, "Failed to run command '%s': %s\n",
184 git_command, strerror(errno));
185
186 return 1;
187}