ff746e7d565e6711d5afe72ec92cdbb464c53d5c
1#include "cache.h"
2#include "pack.h"
3#include "refs.h"
4#include "pkt-line.h"
5#include "run-command.h"
6#include "exec_cmd.h"
7#include "commit.h"
8#include "object.h"
9
10static const char receive_pack_usage[] = "git-receive-pack <git-dir>";
11
12static int deny_non_fast_forwards = 0;
13static int receive_unpack_limit = -1;
14static int transfer_unpack_limit = -1;
15static int unpack_limit = 100;
16static int report_status;
17
18static char capabilities[] = " report-status delete-refs ";
19static int capabilities_sent;
20
21static int receive_pack_config(const char *var, const char *value)
22{
23 if (strcmp(var, "receive.denynonfastforwards") == 0) {
24 deny_non_fast_forwards = git_config_bool(var, value);
25 return 0;
26 }
27
28 if (strcmp(var, "receive.unpacklimit") == 0) {
29 receive_unpack_limit = git_config_int(var, value);
30 return 0;
31 }
32
33 if (strcmp(var, "transfer.unpacklimit") == 0) {
34 transfer_unpack_limit = git_config_int(var, value);
35 return 0;
36 }
37
38 return git_default_config(var, value);
39}
40
41static int show_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
42{
43 if (capabilities_sent)
44 packet_write(1, "%s %s\n", sha1_to_hex(sha1), path);
45 else
46 packet_write(1, "%s %s%c%s\n",
47 sha1_to_hex(sha1), path, 0, capabilities);
48 capabilities_sent = 1;
49 return 0;
50}
51
52static void write_head_info(void)
53{
54 for_each_ref(show_ref, NULL);
55 if (!capabilities_sent)
56 show_ref("capabilities^{}", null_sha1, 0, NULL);
57
58}
59
60struct command {
61 struct command *next;
62 const char *error_string;
63 unsigned char old_sha1[20];
64 unsigned char new_sha1[20];
65 char ref_name[FLEX_ARRAY]; /* more */
66};
67
68static struct command *commands;
69
70static const char update_hook[] = "hooks/update";
71
72static int run_hook(const char *hook_name,
73 struct command *first_cmd,
74 int single)
75{
76 struct command *cmd;
77 int argc, code;
78 const char **argv;
79
80 for (argc = 0, cmd = first_cmd; cmd; cmd = cmd->next) {
81 if (!cmd->error_string)
82 argc += 3;
83 if (single)
84 break;
85 }
86
87 if (!argc || access(hook_name, X_OK) < 0)
88 return 0;
89
90 argv = xmalloc(sizeof(*argv) * (2 + argc));
91 argv[0] = hook_name;
92 for (argc = 1, cmd = first_cmd; cmd; cmd = cmd->next) {
93 if (!cmd->error_string) {
94 argv[argc++] = xstrdup(cmd->ref_name);
95 argv[argc++] = xstrdup(sha1_to_hex(cmd->old_sha1));
96 argv[argc++] = xstrdup(sha1_to_hex(cmd->new_sha1));
97 }
98 if (single)
99 break;
100 }
101 argv[argc] = NULL;
102
103 code = run_command_v_opt(argv,
104 RUN_COMMAND_NO_STDIN | RUN_COMMAND_STDOUT_TO_STDERR);
105 while (--argc > 0)
106 free((char*)argv[argc]);
107 free(argv);
108
109 switch (code) {
110 case 0:
111 return 0;
112 case -ERR_RUN_COMMAND_FORK:
113 return error("hook fork failed");
114 case -ERR_RUN_COMMAND_EXEC:
115 return error("hook execute failed");
116 case -ERR_RUN_COMMAND_WAITPID:
117 return error("waitpid failed");
118 case -ERR_RUN_COMMAND_WAITPID_WRONG_PID:
119 return error("waitpid is confused");
120 case -ERR_RUN_COMMAND_WAITPID_SIGNAL:
121 return error("%s died of signal", hook_name);
122 case -ERR_RUN_COMMAND_WAITPID_NOEXIT:
123 return error("%s died strangely", hook_name);
124 default:
125 error("%s exited with error code %d", hook_name, -code);
126 return -code;
127 }
128}
129
130static const char *update(struct command *cmd)
131{
132 const char *name = cmd->ref_name;
133 unsigned char *old_sha1 = cmd->old_sha1;
134 unsigned char *new_sha1 = cmd->new_sha1;
135 struct ref_lock *lock;
136
137 if (!prefixcmp(name, "refs/") && check_ref_format(name + 5)) {
138 error("refusing to create funny ref '%s' locally", name);
139 return "funny refname";
140 }
141
142 if (!is_null_sha1(new_sha1) && !has_sha1_file(new_sha1)) {
143 error("unpack should have generated %s, "
144 "but I can't find it!", sha1_to_hex(new_sha1));
145 return "bad pack";
146 }
147 if (deny_non_fast_forwards && !is_null_sha1(new_sha1) &&
148 !is_null_sha1(old_sha1) &&
149 !prefixcmp(name, "refs/heads/")) {
150 struct commit *old_commit, *new_commit;
151 struct commit_list *bases, *ent;
152
153 old_commit = (struct commit *)parse_object(old_sha1);
154 new_commit = (struct commit *)parse_object(new_sha1);
155 bases = get_merge_bases(old_commit, new_commit, 1);
156 for (ent = bases; ent; ent = ent->next)
157 if (!hashcmp(old_sha1, ent->item->object.sha1))
158 break;
159 free_commit_list(bases);
160 if (!ent) {
161 error("denying non-fast forward %s"
162 " (you should pull first)", name);
163 return "non-fast forward";
164 }
165 }
166 if (run_hook(update_hook, cmd, 1)) {
167 error("hook declined to update %s", name);
168 return "hook declined";
169 }
170
171 if (is_null_sha1(new_sha1)) {
172 if (delete_ref(name, old_sha1)) {
173 error("failed to delete %s", name);
174 return "failed to delete";
175 }
176 fprintf(stderr, "%s: %s -> deleted\n", name,
177 sha1_to_hex(old_sha1));
178 return NULL; /* good */
179 }
180 else {
181 lock = lock_any_ref_for_update(name, old_sha1);
182 if (!lock) {
183 error("failed to lock %s", name);
184 return "failed to lock";
185 }
186 if (write_ref_sha1(lock, new_sha1, "push")) {
187 return "failed to write"; /* error() already called */
188 }
189 fprintf(stderr, "%s: %s -> %s\n", name,
190 sha1_to_hex(old_sha1), sha1_to_hex(new_sha1));
191 return NULL; /* good */
192 }
193}
194
195static char update_post_hook[] = "hooks/post-update";
196
197static void run_update_post_hook(struct command *cmd)
198{
199 struct command *cmd_p;
200 int argc;
201 const char **argv;
202
203 for (argc = 0, cmd_p = cmd; cmd_p; cmd_p = cmd_p->next) {
204 if (cmd_p->error_string)
205 continue;
206 argc++;
207 }
208 if (!argc || access(update_post_hook, X_OK) < 0)
209 return;
210 argv = xmalloc(sizeof(*argv) * (2 + argc));
211 argv[0] = update_post_hook;
212
213 for (argc = 1, cmd_p = cmd; cmd_p; cmd_p = cmd_p->next) {
214 char *p;
215 if (cmd_p->error_string)
216 continue;
217 p = xmalloc(strlen(cmd_p->ref_name) + 1);
218 strcpy(p, cmd_p->ref_name);
219 argv[argc] = p;
220 argc++;
221 }
222 argv[argc] = NULL;
223 run_command_v_opt(argv, RUN_COMMAND_NO_STDIN
224 | RUN_COMMAND_STDOUT_TO_STDERR);
225}
226
227static void execute_commands(const char *unpacker_error)
228{
229 struct command *cmd = commands;
230
231 if (unpacker_error) {
232 while (cmd) {
233 cmd->error_string = "n/a (unpacker error)";
234 cmd = cmd->next;
235 }
236 return;
237 }
238
239 while (cmd) {
240 cmd->error_string = update(cmd);
241 cmd = cmd->next;
242 }
243}
244
245static void read_head_info(void)
246{
247 struct command **p = &commands;
248 for (;;) {
249 static char line[1000];
250 unsigned char old_sha1[20], new_sha1[20];
251 struct command *cmd;
252 char *refname;
253 int len, reflen;
254
255 len = packet_read_line(0, line, sizeof(line));
256 if (!len)
257 break;
258 if (line[len-1] == '\n')
259 line[--len] = 0;
260 if (len < 83 ||
261 line[40] != ' ' ||
262 line[81] != ' ' ||
263 get_sha1_hex(line, old_sha1) ||
264 get_sha1_hex(line + 41, new_sha1))
265 die("protocol error: expected old/new/ref, got '%s'",
266 line);
267
268 refname = line + 82;
269 reflen = strlen(refname);
270 if (reflen + 82 < len) {
271 if (strstr(refname + reflen + 1, "report-status"))
272 report_status = 1;
273 }
274 cmd = xmalloc(sizeof(struct command) + len - 80);
275 hashcpy(cmd->old_sha1, old_sha1);
276 hashcpy(cmd->new_sha1, new_sha1);
277 memcpy(cmd->ref_name, line + 82, len - 81);
278 cmd->error_string = NULL;
279 cmd->next = NULL;
280 *p = cmd;
281 p = &cmd->next;
282 }
283}
284
285static const char *parse_pack_header(struct pack_header *hdr)
286{
287 switch (read_pack_header(0, hdr)) {
288 case PH_ERROR_EOF:
289 return "eof before pack header was fully read";
290
291 case PH_ERROR_PACK_SIGNATURE:
292 return "protocol error (pack signature mismatch detected)";
293
294 case PH_ERROR_PROTOCOL:
295 return "protocol error (pack version unsupported)";
296
297 default:
298 return "unknown error in parse_pack_header";
299
300 case 0:
301 return NULL;
302 }
303}
304
305static const char *pack_lockfile;
306
307static const char *unpack(void)
308{
309 struct pack_header hdr;
310 const char *hdr_err;
311 char hdr_arg[38];
312
313 hdr_err = parse_pack_header(&hdr);
314 if (hdr_err)
315 return hdr_err;
316 snprintf(hdr_arg, sizeof(hdr_arg), "--pack_header=%u,%u",
317 ntohl(hdr.hdr_version), ntohl(hdr.hdr_entries));
318
319 if (ntohl(hdr.hdr_entries) < unpack_limit) {
320 int code;
321 const char *unpacker[3];
322 unpacker[0] = "unpack-objects";
323 unpacker[1] = hdr_arg;
324 unpacker[2] = NULL;
325 code = run_command_v_opt(unpacker, RUN_GIT_CMD);
326 switch (code) {
327 case 0:
328 return NULL;
329 case -ERR_RUN_COMMAND_FORK:
330 return "unpack fork failed";
331 case -ERR_RUN_COMMAND_EXEC:
332 return "unpack execute failed";
333 case -ERR_RUN_COMMAND_WAITPID:
334 return "waitpid failed";
335 case -ERR_RUN_COMMAND_WAITPID_WRONG_PID:
336 return "waitpid is confused";
337 case -ERR_RUN_COMMAND_WAITPID_SIGNAL:
338 return "unpacker died of signal";
339 case -ERR_RUN_COMMAND_WAITPID_NOEXIT:
340 return "unpacker died strangely";
341 default:
342 return "unpacker exited with error code";
343 }
344 } else {
345 const char *keeper[6];
346 int fd[2], s, len, status;
347 pid_t pid;
348 char keep_arg[256];
349 char packname[46];
350
351 s = sprintf(keep_arg, "--keep=receive-pack %i on ", getpid());
352 if (gethostname(keep_arg + s, sizeof(keep_arg) - s))
353 strcpy(keep_arg + s, "localhost");
354
355 keeper[0] = "index-pack";
356 keeper[1] = "--stdin";
357 keeper[2] = "--fix-thin";
358 keeper[3] = hdr_arg;
359 keeper[4] = keep_arg;
360 keeper[5] = NULL;
361
362 if (pipe(fd) < 0)
363 return "index-pack pipe failed";
364 pid = fork();
365 if (pid < 0)
366 return "index-pack fork failed";
367 if (!pid) {
368 dup2(fd[1], 1);
369 close(fd[1]);
370 close(fd[0]);
371 execv_git_cmd(keeper);
372 die("execv of index-pack failed");
373 }
374 close(fd[1]);
375
376 /*
377 * The first thing we expects from index-pack's output
378 * is "pack\t%40s\n" or "keep\t%40s\n" (46 bytes) where
379 * %40s is the newly created pack SHA1 name. In the "keep"
380 * case, we need it to remove the corresponding .keep file
381 * later on. If we don't get that then tough luck with it.
382 */
383 for (len = 0;
384 len < 46 && (s = xread(fd[0], packname+len, 46-len)) > 0;
385 len += s);
386 close(fd[0]);
387 if (len == 46 && packname[45] == '\n' &&
388 memcmp(packname, "keep\t", 5) == 0) {
389 char path[PATH_MAX];
390 packname[45] = 0;
391 snprintf(path, sizeof(path), "%s/pack/pack-%s.keep",
392 get_object_directory(), packname + 5);
393 pack_lockfile = xstrdup(path);
394 }
395
396 /* Then wrap our index-pack process. */
397 while (waitpid(pid, &status, 0) < 0)
398 if (errno != EINTR)
399 return "waitpid failed";
400 if (WIFEXITED(status)) {
401 int code = WEXITSTATUS(status);
402 if (code)
403 return "index-pack exited with error code";
404 reprepare_packed_git();
405 return NULL;
406 }
407 return "index-pack abnormal exit";
408 }
409}
410
411static void report(const char *unpack_status)
412{
413 struct command *cmd;
414 packet_write(1, "unpack %s\n",
415 unpack_status ? unpack_status : "ok");
416 for (cmd = commands; cmd; cmd = cmd->next) {
417 if (!cmd->error_string)
418 packet_write(1, "ok %s\n",
419 cmd->ref_name);
420 else
421 packet_write(1, "ng %s %s\n",
422 cmd->ref_name, cmd->error_string);
423 }
424 packet_flush(1);
425}
426
427static int delete_only(struct command *cmd)
428{
429 while (cmd) {
430 if (!is_null_sha1(cmd->new_sha1))
431 return 0;
432 cmd = cmd->next;
433 }
434 return 1;
435}
436
437int main(int argc, char **argv)
438{
439 int i;
440 char *dir = NULL;
441
442 argv++;
443 for (i = 1; i < argc; i++) {
444 char *arg = *argv++;
445
446 if (*arg == '-') {
447 /* Do flag handling here */
448 usage(receive_pack_usage);
449 }
450 if (dir)
451 usage(receive_pack_usage);
452 dir = arg;
453 }
454 if (!dir)
455 usage(receive_pack_usage);
456
457 if (!enter_repo(dir, 0))
458 die("'%s': unable to chdir or not a git archive", dir);
459
460 if (is_repository_shallow())
461 die("attempt to push into a shallow repository");
462
463 git_config(receive_pack_config);
464
465 if (0 <= transfer_unpack_limit)
466 unpack_limit = transfer_unpack_limit;
467 else if (0 <= receive_unpack_limit)
468 unpack_limit = receive_unpack_limit;
469
470 write_head_info();
471
472 /* EOF */
473 packet_flush(1);
474
475 read_head_info();
476 if (commands) {
477 const char *unpack_status = NULL;
478
479 if (!delete_only(commands))
480 unpack_status = unpack();
481 execute_commands(unpack_status);
482 if (pack_lockfile)
483 unlink(pack_lockfile);
484 if (report_status)
485 report(unpack_status);
486 run_update_post_hook(commands);
487 }
488 return 0;
489}