]> git.ipfire.org Git - thirdparty/git.git/blame - receive-pack.c
Sync with 1.5.4.3
[thirdparty/git.git] / receive-pack.c
CommitLineData
575f4974 1#include "cache.h"
fc04c412 2#include "pack.h"
8a65ff76 3#include "refs.h"
f3a3214e 4#include "pkt-line.h"
b1bf95bb 5#include "run-command.h"
576162a4 6#include "exec_cmd.h"
11031d7e
JS
7#include "commit.h"
8#include "object.h"
575f4974 9
d0efc8a7 10static const char receive_pack_usage[] = "git-receive-pack <git-dir>";
575f4974 11
6fb75bed 12static int deny_non_fast_forwards = 0;
e28714c5
JH
13static int receive_unpack_limit = -1;
14static int transfer_unpack_limit = -1;
46732fae 15static int unpack_limit = 100;
96f1e58f 16static int report_status;
cfee10a7 17
d4f694ba 18static char capabilities[] = " report-status delete-refs ";
96f1e58f 19static int capabilities_sent;
cfee10a7 20
6fb75bed
SP
21static int receive_pack_config(const char *var, const char *value)
22{
e28714c5 23 if (strcmp(var, "receive.denynonfastforwards") == 0) {
6fb75bed
SP
24 deny_non_fast_forwards = git_config_bool(var, value);
25 return 0;
26 }
27
e28714c5
JH
28 if (strcmp(var, "receive.unpacklimit") == 0) {
29 receive_unpack_limit = git_config_int(var, value);
fc04c412
SP
30 return 0;
31 }
32
e28714c5
JH
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);
6fb75bed
SP
39}
40
8da19775 41static int show_ref(const char *path, const unsigned char *sha1, int flag, void *cb_data)
575f4974 42{
cfee10a7
JH
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;
8a65ff76 49 return 0;
575f4974
LT
50}
51
8a65ff76 52static void write_head_info(void)
575f4974 53{
cb5d709f 54 for_each_ref(show_ref, NULL);
cfee10a7 55 if (!capabilities_sent)
8da19775 56 show_ref("capabilities^{}", null_sha1, 0, NULL);
cfee10a7 57
575f4974
LT
58}
59
eb1af2df
LT
60struct command {
61 struct command *next;
cfee10a7 62 const char *error_string;
eb1af2df
LT
63 unsigned char old_sha1[20];
64 unsigned char new_sha1[20];
8f1d2e6f 65 char ref_name[FLEX_ARRAY]; /* more */
575f4974
LT
66};
67
96f1e58f 68static struct command *commands;
575f4974 69
05ef58ec
SP
70static const char pre_receive_hook[] = "hooks/pre-receive";
71static const char post_receive_hook[] = "hooks/post-receive";
b1bf95bb 72
6c319a22
SP
73static int hook_status(int code, const char *hook_name)
74{
75 switch (code) {
76 case 0:
77 return 0;
78 case -ERR_RUN_COMMAND_FORK:
79 return error("hook fork failed");
80 case -ERR_RUN_COMMAND_EXEC:
81 return error("hook execute failed");
f43cd49f
SP
82 case -ERR_RUN_COMMAND_PIPE:
83 return error("hook pipe failed");
6c319a22
SP
84 case -ERR_RUN_COMMAND_WAITPID:
85 return error("waitpid failed");
86 case -ERR_RUN_COMMAND_WAITPID_WRONG_PID:
87 return error("waitpid is confused");
88 case -ERR_RUN_COMMAND_WAITPID_SIGNAL:
89 return error("%s died of signal", hook_name);
90 case -ERR_RUN_COMMAND_WAITPID_NOEXIT:
91 return error("%s died strangely", hook_name);
92 default:
93 error("%s exited with error code %d", hook_name, -code);
94 return -code;
95 }
96}
97
f43cd49f 98static int run_hook(const char *hook_name)
b1bf95bb 99{
f43cd49f 100 static char buf[sizeof(commands->old_sha1) * 2 + PATH_MAX + 4];
c8dd2771 101 struct command *cmd;
f43cd49f
SP
102 struct child_process proc;
103 const char *argv[2];
104 int have_input = 0, code;
c8dd2771 105
f43cd49f 106 for (cmd = commands; !have_input && cmd; cmd = cmd->next) {
c8dd2771 107 if (!cmd->error_string)
f43cd49f 108 have_input = 1;
c8dd2771 109 }
b1bf95bb 110
f43cd49f 111 if (!have_input || access(hook_name, X_OK) < 0)
b1bf95bb 112 return 0;
c8dd2771 113
c8dd2771 114 argv[0] = hook_name;
f43cd49f
SP
115 argv[1] = NULL;
116
117 memset(&proc, 0, sizeof(proc));
118 proc.argv = argv;
119 proc.in = -1;
120 proc.stdout_to_stderr = 1;
121
122 code = start_command(&proc);
123 if (code)
124 return hook_status(code, hook_name);
125 for (cmd = commands; cmd; cmd = cmd->next) {
c8dd2771 126 if (!cmd->error_string) {
f43cd49f
SP
127 size_t n = snprintf(buf, sizeof(buf), "%s %s %s\n",
128 sha1_to_hex(cmd->old_sha1),
129 sha1_to_hex(cmd->new_sha1),
130 cmd->ref_name);
131 if (write_in_full(proc.in, buf, n) != n)
132 break;
c8dd2771 133 }
c8dd2771 134 }
f43cd49f 135 return hook_status(finish_command(&proc), hook_name);
b1bf95bb
JW
136}
137
1d9e8b56
SP
138static int run_update_hook(struct command *cmd)
139{
140 static const char update_hook[] = "hooks/update";
141 struct child_process proc;
142 const char *argv[5];
143
144 if (access(update_hook, X_OK) < 0)
145 return 0;
146
147 argv[0] = update_hook;
148 argv[1] = cmd->ref_name;
149 argv[2] = sha1_to_hex(cmd->old_sha1);
150 argv[3] = sha1_to_hex(cmd->new_sha1);
151 argv[4] = NULL;
152
153 memset(&proc, 0, sizeof(proc));
154 proc.argv = argv;
155 proc.no_stdin = 1;
156 proc.stdout_to_stderr = 1;
157
158 return hook_status(run_command(&proc), update_hook);
159}
160
8aaf7d64 161static const char *update(struct command *cmd)
2eca23da 162{
cfee10a7
JH
163 const char *name = cmd->ref_name;
164 unsigned char *old_sha1 = cmd->old_sha1;
165 unsigned char *new_sha1 = cmd->new_sha1;
3159c8dc 166 struct ref_lock *lock;
2eca23da 167
061d6b9a
MK
168 /* only refs/... are allowed */
169 if (prefixcmp(name, "refs/") || check_ref_format(name + 5)) {
0b8293f6 170 error("refusing to create funny ref '%s' remotely", name);
8aaf7d64 171 return "funny refname";
cfee10a7 172 }
d8a1deec 173
d4f694ba 174 if (!is_null_sha1(new_sha1) && !has_sha1_file(new_sha1)) {
8aaf7d64
SP
175 error("unpack should have generated %s, "
176 "but I can't find it!", sha1_to_hex(new_sha1));
177 return "bad pack";
cfee10a7 178 }
d4f694ba 179 if (deny_non_fast_forwards && !is_null_sha1(new_sha1) &&
ba988a83 180 !is_null_sha1(old_sha1) &&
cc44c765 181 !prefixcmp(name, "refs/heads/")) {
eab82707 182 struct object *old_object, *new_object;
11031d7e 183 struct commit *old_commit, *new_commit;
9edd7e46 184 struct commit_list *bases, *ent;
11031d7e 185
eab82707
MK
186 old_object = parse_object(old_sha1);
187 new_object = parse_object(new_sha1);
188
189 if (!old_object || !new_object ||
190 old_object->type != OBJ_COMMIT ||
191 new_object->type != OBJ_COMMIT) {
192 error("bad sha1 objects for %s", name);
193 return "bad ref";
194 }
195 old_commit = (struct commit *)old_object;
196 new_commit = (struct commit *)new_object;
9edd7e46
JS
197 bases = get_merge_bases(old_commit, new_commit, 1);
198 for (ent = bases; ent; ent = ent->next)
199 if (!hashcmp(old_sha1, ent->item->object.sha1))
11031d7e 200 break;
9edd7e46 201 free_commit_list(bases);
8aaf7d64
SP
202 if (!ent) {
203 error("denying non-fast forward %s"
204 " (you should pull first)", name);
205 return "non-fast forward";
206 }
11031d7e 207 }
1d9e8b56 208 if (run_update_hook(cmd)) {
8aaf7d64
SP
209 error("hook declined to update %s", name);
210 return "hook declined";
b1bf95bb 211 }
3159c8dc 212
d4f694ba 213 if (is_null_sha1(new_sha1)) {
28391a80
JS
214 if (!parse_object(old_sha1)) {
215 warning ("Allowing deletion of corrupt ref.");
216 old_sha1 = NULL;
217 }
d4f694ba 218 if (delete_ref(name, old_sha1)) {
8aaf7d64
SP
219 error("failed to delete %s", name);
220 return "failed to delete";
d4f694ba 221 }
8aaf7d64 222 return NULL; /* good */
d4f694ba
JH
223 }
224 else {
68db31cc 225 lock = lock_any_ref_for_update(name, old_sha1, 0);
d4f694ba 226 if (!lock) {
8aaf7d64
SP
227 error("failed to lock %s", name);
228 return "failed to lock";
d4f694ba 229 }
ef203f08 230 if (write_ref_sha1(lock, new_sha1, "push")) {
8aaf7d64 231 return "failed to write"; /* error() already called */
ef203f08 232 }
8aaf7d64 233 return NULL; /* good */
19614330 234 }
2eca23da
LT
235}
236
19614330
JH
237static char update_post_hook[] = "hooks/post-update";
238
239static void run_update_post_hook(struct command *cmd)
240{
241 struct command *cmd_p;
242 int argc;
9201c707 243 const char **argv;
19614330 244
3e6e152c 245 for (argc = 0, cmd_p = cmd; cmd_p; cmd_p = cmd_p->next) {
cfee10a7 246 if (cmd_p->error_string)
19614330
JH
247 continue;
248 argc++;
249 }
3e6e152c
SP
250 if (!argc || access(update_post_hook, X_OK) < 0)
251 return;
252 argv = xmalloc(sizeof(*argv) * (2 + argc));
19614330
JH
253 argv[0] = update_post_hook;
254
255 for (argc = 1, cmd_p = cmd; cmd_p; cmd_p = cmd_p->next) {
9201c707 256 char *p;
cfee10a7 257 if (cmd_p->error_string)
19614330 258 continue;
9201c707
JH
259 p = xmalloc(strlen(cmd_p->ref_name) + 1);
260 strcpy(p, cmd_p->ref_name);
261 argv[argc] = p;
19614330
JH
262 argc++;
263 }
264 argv[argc] = NULL;
95d3c4f5
SP
265 run_command_v_opt(argv, RUN_COMMAND_NO_STDIN
266 | RUN_COMMAND_STDOUT_TO_STDERR);
19614330 267}
2eca23da 268
8aaf7d64 269static void execute_commands(const char *unpacker_error)
575f4974 270{
eb1af2df 271 struct command *cmd = commands;
8aaf7d64
SP
272
273 if (unpacker_error) {
274 while (cmd) {
275 cmd->error_string = "n/a (unpacker error)";
276 cmd = cmd->next;
277 }
278 return;
279 }
280
f43cd49f 281 if (run_hook(pre_receive_hook)) {
05ef58ec
SP
282 while (cmd) {
283 cmd->error_string = "pre-receive hook declined";
284 cmd = cmd->next;
285 }
286 return;
287 }
288
eb1af2df 289 while (cmd) {
8aaf7d64 290 cmd->error_string = update(cmd);
eb1af2df 291 cmd = cmd->next;
575f4974
LT
292 }
293}
294
295static void read_head_info(void)
296{
eb1af2df 297 struct command **p = &commands;
575f4974
LT
298 for (;;) {
299 static char line[1000];
eb1af2df
LT
300 unsigned char old_sha1[20], new_sha1[20];
301 struct command *cmd;
cfee10a7
JH
302 char *refname;
303 int len, reflen;
eb1af2df
LT
304
305 len = packet_read_line(0, line, sizeof(line));
575f4974
LT
306 if (!len)
307 break;
eb1af2df
LT
308 if (line[len-1] == '\n')
309 line[--len] = 0;
310 if (len < 83 ||
311 line[40] != ' ' ||
312 line[81] != ' ' ||
313 get_sha1_hex(line, old_sha1) ||
314 get_sha1_hex(line + 41, new_sha1))
cfee10a7
JH
315 die("protocol error: expected old/new/ref, got '%s'",
316 line);
317
318 refname = line + 82;
319 reflen = strlen(refname);
320 if (reflen + 82 < len) {
321 if (strstr(refname + reflen + 1, "report-status"))
322 report_status = 1;
323 }
eb1af2df 324 cmd = xmalloc(sizeof(struct command) + len - 80);
e702496e
SP
325 hashcpy(cmd->old_sha1, old_sha1);
326 hashcpy(cmd->new_sha1, new_sha1);
eb1af2df 327 memcpy(cmd->ref_name, line + 82, len - 81);
8aaf7d64 328 cmd->error_string = NULL;
eb1af2df
LT
329 cmd->next = NULL;
330 *p = cmd;
331 p = &cmd->next;
575f4974
LT
332 }
333}
334
fc04c412
SP
335static const char *parse_pack_header(struct pack_header *hdr)
336{
a69e5429
JH
337 switch (read_pack_header(0, hdr)) {
338 case PH_ERROR_EOF:
339 return "eof before pack header was fully read";
340
341 case PH_ERROR_PACK_SIGNATURE:
fc04c412 342 return "protocol error (pack signature mismatch detected)";
a69e5429
JH
343
344 case PH_ERROR_PROTOCOL:
fc04c412 345 return "protocol error (pack version unsupported)";
a69e5429
JH
346
347 default:
348 return "unknown error in parse_pack_header";
349
350 case 0:
351 return NULL;
352 }
fc04c412
SP
353}
354
576162a4
NP
355static const char *pack_lockfile;
356
861ed121 357static const char *unpack(void)
575f4974 358{
fc04c412
SP
359 struct pack_header hdr;
360 const char *hdr_err;
361 char hdr_arg[38];
fc04c412
SP
362
363 hdr_err = parse_pack_header(&hdr);
364 if (hdr_err)
365 return hdr_err;
366 snprintf(hdr_arg, sizeof(hdr_arg), "--pack_header=%u,%u",
367 ntohl(hdr.hdr_version), ntohl(hdr.hdr_entries));
368
369 if (ntohl(hdr.hdr_entries) < unpack_limit) {
576162a4 370 int code;
fc04c412
SP
371 const char *unpacker[3];
372 unpacker[0] = "unpack-objects";
373 unpacker[1] = hdr_arg;
374 unpacker[2] = NULL;
9b0b5093 375 code = run_command_v_opt(unpacker, RUN_GIT_CMD);
576162a4 376 switch (code) {
fc04c412
SP
377 case 0:
378 return NULL;
379 case -ERR_RUN_COMMAND_FORK:
380 return "unpack fork failed";
381 case -ERR_RUN_COMMAND_EXEC:
382 return "unpack execute failed";
383 case -ERR_RUN_COMMAND_WAITPID:
384 return "waitpid failed";
385 case -ERR_RUN_COMMAND_WAITPID_WRONG_PID:
386 return "waitpid is confused";
387 case -ERR_RUN_COMMAND_WAITPID_SIGNAL:
388 return "unpacker died of signal";
389 case -ERR_RUN_COMMAND_WAITPID_NOEXIT:
390 return "unpacker died strangely";
391 default:
392 return "unpacker exited with error code";
576162a4
NP
393 }
394 } else {
395 const char *keeper[6];
106764e6 396 int s, status;
576162a4 397 char keep_arg[256];
e8016abf 398 struct child_process ip;
576162a4
NP
399
400 s = sprintf(keep_arg, "--keep=receive-pack %i on ", getpid());
401 if (gethostname(keep_arg + s, sizeof(keep_arg) - s))
402 strcpy(keep_arg + s, "localhost");
403
404 keeper[0] = "index-pack";
405 keeper[1] = "--stdin";
406 keeper[2] = "--fix-thin";
407 keeper[3] = hdr_arg;
408 keeper[4] = keep_arg;
409 keeper[5] = NULL;
e8016abf
SP
410 memset(&ip, 0, sizeof(ip));
411 ip.argv = keeper;
412 ip.out = -1;
413 ip.git_cmd = 1;
414 if (start_command(&ip))
576162a4 415 return "index-pack fork failed";
106764e6 416 pack_lockfile = index_pack_lockfile(ip.out);
e8016abf
SP
417 status = finish_command(&ip);
418 if (!status) {
576162a4
NP
419 reprepare_packed_git();
420 return NULL;
421 }
422 return "index-pack abnormal exit";
cfee10a7
JH
423 }
424}
425
426static void report(const char *unpack_status)
427{
428 struct command *cmd;
429 packet_write(1, "unpack %s\n",
430 unpack_status ? unpack_status : "ok");
431 for (cmd = commands; cmd; cmd = cmd->next) {
432 if (!cmd->error_string)
433 packet_write(1, "ok %s\n",
434 cmd->ref_name);
435 else
436 packet_write(1, "ng %s %s\n",
437 cmd->ref_name, cmd->error_string);
575f4974 438 }
cfee10a7 439 packet_flush(1);
575f4974
LT
440}
441
d4f694ba
JH
442static int delete_only(struct command *cmd)
443{
444 while (cmd) {
445 if (!is_null_sha1(cmd->new_sha1))
446 return 0;
447 cmd = cmd->next;
448 }
449 return 1;
450}
451
575f4974
LT
452int main(int argc, char **argv)
453{
d0efc8a7 454 int i;
8d630132 455 char *dir = NULL;
575f4974
LT
456
457 argv++;
458 for (i = 1; i < argc; i++) {
8d630132 459 char *arg = *argv++;
575f4974
LT
460
461 if (*arg == '-') {
575f4974
LT
462 /* Do flag handling here */
463 usage(receive_pack_usage);
464 }
d0efc8a7
LT
465 if (dir)
466 usage(receive_pack_usage);
575f4974 467 dir = arg;
575f4974
LT
468 }
469 if (!dir)
470 usage(receive_pack_usage);
471
3159c8dc 472 if (!enter_repo(dir, 0))
8d630132 473 die("'%s': unable to chdir or not a git archive", dir);
575f4974 474
a0022eeb
JH
475 if (is_repository_shallow())
476 die("attempt to push into a shallow repository");
477
6fb75bed
SP
478 git_config(receive_pack_config);
479
e28714c5
JH
480 if (0 <= transfer_unpack_limit)
481 unpack_limit = transfer_unpack_limit;
482 else if (0 <= receive_unpack_limit)
483 unpack_limit = receive_unpack_limit;
484
8a65ff76 485 write_head_info();
575f4974
LT
486
487 /* EOF */
f3a3214e 488 packet_flush(1);
575f4974
LT
489
490 read_head_info();
7f8e9828 491 if (commands) {
d4f694ba
JH
492 const char *unpack_status = NULL;
493
494 if (!delete_only(commands))
495 unpack_status = unpack();
8aaf7d64 496 execute_commands(unpack_status);
576162a4
NP
497 if (pack_lockfile)
498 unlink(pack_lockfile);
cfee10a7
JH
499 if (report_status)
500 report(unpack_status);
f43cd49f 501 run_hook(post_receive_hook);
8e663d9e 502 run_update_post_hook(commands);
7f8e9828 503 }
575f4974
LT
504 return 0;
505}