5 #include "run-command.h"
10 #include "transport.h"
12 static const char receive_pack_usage
[] = "git receive-pack <git-dir>";
21 static int deny_deletes
= 0;
22 static int deny_non_fast_forwards
= 0;
23 static enum deny_action deny_current_branch
= DENY_UNCONFIGURED
;
24 static int receive_fsck_objects
;
25 static int receive_unpack_limit
= -1;
26 static int transfer_unpack_limit
= -1;
27 static int unpack_limit
= 100;
28 static int report_status
;
30 static char capabilities
[] = " report-status delete-refs ";
31 static int capabilities_sent
;
33 static enum deny_action
parse_deny_action(const char *var
, const char *value
)
36 if (!strcasecmp(value
, "ignore"))
38 if (!strcasecmp(value
, "warn"))
40 if (!strcasecmp(value
, "refuse"))
43 if (git_config_bool(var
, value
))
48 static int receive_pack_config(const char *var
, const char *value
, void *cb
)
50 if (strcmp(var
, "receive.denydeletes") == 0) {
51 deny_deletes
= git_config_bool(var
, value
);
55 if (strcmp(var
, "receive.denynonfastforwards") == 0) {
56 deny_non_fast_forwards
= git_config_bool(var
, value
);
60 if (strcmp(var
, "receive.unpacklimit") == 0) {
61 receive_unpack_limit
= git_config_int(var
, value
);
65 if (strcmp(var
, "transfer.unpacklimit") == 0) {
66 transfer_unpack_limit
= git_config_int(var
, value
);
70 if (strcmp(var
, "receive.fsckobjects") == 0) {
71 receive_fsck_objects
= git_config_bool(var
, value
);
75 if (!strcmp(var
, "receive.denycurrentbranch")) {
76 deny_current_branch
= parse_deny_action(var
, value
);
80 return git_default_config(var
, value
, cb
);
83 static int show_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
85 if (capabilities_sent
)
86 packet_write(1, "%s %s\n", sha1_to_hex(sha1
), path
);
88 packet_write(1, "%s %s%c%s\n",
89 sha1_to_hex(sha1
), path
, 0, capabilities
);
90 capabilities_sent
= 1;
94 static void write_head_info(void)
96 for_each_ref(show_ref
, NULL
);
97 if (!capabilities_sent
)
98 show_ref("capabilities^{}", null_sha1
, 0, NULL
);
103 struct command
*next
;
104 const char *error_string
;
105 unsigned char old_sha1
[20];
106 unsigned char new_sha1
[20];
107 char ref_name
[FLEX_ARRAY
]; /* more */
110 static struct command
*commands
;
112 static const char pre_receive_hook
[] = "hooks/pre-receive";
113 static const char post_receive_hook
[] = "hooks/post-receive";
115 static int hook_status(int code
, const char *hook_name
)
120 case -ERR_RUN_COMMAND_FORK
:
121 return error("hook fork failed");
122 case -ERR_RUN_COMMAND_EXEC
:
123 return error("hook execute failed");
124 case -ERR_RUN_COMMAND_PIPE
:
125 return error("hook pipe failed");
126 case -ERR_RUN_COMMAND_WAITPID
:
127 return error("waitpid failed");
128 case -ERR_RUN_COMMAND_WAITPID_WRONG_PID
:
129 return error("waitpid is confused");
130 case -ERR_RUN_COMMAND_WAITPID_SIGNAL
:
131 return error("%s died of signal", hook_name
);
132 case -ERR_RUN_COMMAND_WAITPID_NOEXIT
:
133 return error("%s died strangely", hook_name
);
135 error("%s exited with error code %d", hook_name
, -code
);
140 static int run_receive_hook(const char *hook_name
)
142 static char buf
[sizeof(commands
->old_sha1
) * 2 + PATH_MAX
+ 4];
144 struct child_process proc
;
146 int have_input
= 0, code
;
148 for (cmd
= commands
; !have_input
&& cmd
; cmd
= cmd
->next
) {
149 if (!cmd
->error_string
)
153 if (!have_input
|| access(hook_name
, X_OK
) < 0)
159 memset(&proc
, 0, sizeof(proc
));
162 proc
.stdout_to_stderr
= 1;
164 code
= start_command(&proc
);
166 return hook_status(code
, hook_name
);
167 for (cmd
= commands
; cmd
; cmd
= cmd
->next
) {
168 if (!cmd
->error_string
) {
169 size_t n
= snprintf(buf
, sizeof(buf
), "%s %s %s\n",
170 sha1_to_hex(cmd
->old_sha1
),
171 sha1_to_hex(cmd
->new_sha1
),
173 if (write_in_full(proc
.in
, buf
, n
) != n
)
178 return hook_status(finish_command(&proc
), hook_name
);
181 static int run_update_hook(struct command
*cmd
)
183 static const char update_hook
[] = "hooks/update";
184 struct child_process proc
;
187 if (access(update_hook
, X_OK
) < 0)
190 argv
[0] = update_hook
;
191 argv
[1] = cmd
->ref_name
;
192 argv
[2] = sha1_to_hex(cmd
->old_sha1
);
193 argv
[3] = sha1_to_hex(cmd
->new_sha1
);
196 memset(&proc
, 0, sizeof(proc
));
199 proc
.stdout_to_stderr
= 1;
201 return hook_status(run_command(&proc
), update_hook
);
204 static int is_ref_checked_out(const char *ref
)
206 unsigned char sha1
[20];
209 if (is_bare_repository())
212 head
= resolve_ref("HEAD", sha1
, 0, NULL
);
215 return !strcmp(head
, ref
);
218 static char *warn_unconfigured_deny_msg
[] = {
219 "Updating the currently checked out branch may cause confusion,",
220 "as the index and work tree do not reflect changes that are in HEAD.",
221 "As a result, you may see the changes you just pushed into it",
222 "reverted when you run 'git diff' over there, and you may want",
223 "to run 'git reset --hard' before starting to work to recover.",
225 "You can set 'receive.denyCurrentBranch' configuration variable to",
226 "'refuse' in the remote repository to forbid pushing into its",
229 "To allow pushing into the current branch, you can set it to 'ignore';",
230 "but this is not recommended unless you arranged to update its work",
231 "tree to match what you pushed in some other way.",
233 "To squelch this message, you can set it to 'warn'.",
235 "Note that the default will change in a future version of git",
236 "to refuse updating the current branch unless you have the",
237 "configuration variable set to either 'ignore' or 'warn'."
240 static void warn_unconfigured_deny(void)
243 for (i
= 0; i
< ARRAY_SIZE(warn_unconfigured_deny_msg
); i
++)
244 warning(warn_unconfigured_deny_msg
[i
]);
247 static const char *update(struct command
*cmd
)
249 const char *name
= cmd
->ref_name
;
250 unsigned char *old_sha1
= cmd
->old_sha1
;
251 unsigned char *new_sha1
= cmd
->new_sha1
;
252 struct ref_lock
*lock
;
254 /* only refs/... are allowed */
255 if (prefixcmp(name
, "refs/") || check_ref_format(name
+ 5)) {
256 error("refusing to create funny ref '%s' remotely", name
);
257 return "funny refname";
260 if (is_ref_checked_out(name
)) {
261 switch (deny_current_branch
) {
264 case DENY_UNCONFIGURED
:
266 warning("updating the current branch");
267 if (deny_current_branch
== DENY_UNCONFIGURED
)
268 warn_unconfigured_deny();
271 error("refusing to update checked out branch: %s", name
);
272 return "branch is currently checked out";
276 if (!is_null_sha1(new_sha1
) && !has_sha1_file(new_sha1
)) {
277 error("unpack should have generated %s, "
278 "but I can't find it!", sha1_to_hex(new_sha1
));
281 if (deny_deletes
&& is_null_sha1(new_sha1
) &&
282 !is_null_sha1(old_sha1
) &&
283 !prefixcmp(name
, "refs/heads/")) {
284 error("denying ref deletion for %s", name
);
285 return "deletion prohibited";
287 if (deny_non_fast_forwards
&& !is_null_sha1(new_sha1
) &&
288 !is_null_sha1(old_sha1
) &&
289 !prefixcmp(name
, "refs/heads/")) {
290 struct object
*old_object
, *new_object
;
291 struct commit
*old_commit
, *new_commit
;
292 struct commit_list
*bases
, *ent
;
294 old_object
= parse_object(old_sha1
);
295 new_object
= parse_object(new_sha1
);
297 if (!old_object
|| !new_object
||
298 old_object
->type
!= OBJ_COMMIT
||
299 new_object
->type
!= OBJ_COMMIT
) {
300 error("bad sha1 objects for %s", name
);
303 old_commit
= (struct commit
*)old_object
;
304 new_commit
= (struct commit
*)new_object
;
305 bases
= get_merge_bases(old_commit
, new_commit
, 1);
306 for (ent
= bases
; ent
; ent
= ent
->next
)
307 if (!hashcmp(old_sha1
, ent
->item
->object
.sha1
))
309 free_commit_list(bases
);
311 error("denying non-fast forward %s"
312 " (you should pull first)", name
);
313 return "non-fast forward";
316 if (run_update_hook(cmd
)) {
317 error("hook declined to update %s", name
);
318 return "hook declined";
321 if (is_null_sha1(new_sha1
)) {
322 if (!parse_object(old_sha1
)) {
323 warning ("Allowing deletion of corrupt ref.");
326 if (delete_ref(name
, old_sha1
, 0)) {
327 error("failed to delete %s", name
);
328 return "failed to delete";
330 return NULL
; /* good */
333 lock
= lock_any_ref_for_update(name
, old_sha1
, 0);
335 error("failed to lock %s", name
);
336 return "failed to lock";
338 if (write_ref_sha1(lock
, new_sha1
, "push")) {
339 return "failed to write"; /* error() already called */
341 return NULL
; /* good */
345 static char update_post_hook
[] = "hooks/post-update";
347 static void run_update_post_hook(struct command
*cmd
)
349 struct command
*cmd_p
;
353 for (argc
= 0, cmd_p
= cmd
; cmd_p
; cmd_p
= cmd_p
->next
) {
354 if (cmd_p
->error_string
)
358 if (!argc
|| access(update_post_hook
, X_OK
) < 0)
360 argv
= xmalloc(sizeof(*argv
) * (2 + argc
));
361 argv
[0] = update_post_hook
;
363 for (argc
= 1, cmd_p
= cmd
; cmd_p
; cmd_p
= cmd_p
->next
) {
365 if (cmd_p
->error_string
)
367 p
= xmalloc(strlen(cmd_p
->ref_name
) + 1);
368 strcpy(p
, cmd_p
->ref_name
);
373 run_command_v_opt(argv
, RUN_COMMAND_NO_STDIN
374 | RUN_COMMAND_STDOUT_TO_STDERR
);
377 static void execute_commands(const char *unpacker_error
)
379 struct command
*cmd
= commands
;
381 if (unpacker_error
) {
383 cmd
->error_string
= "n/a (unpacker error)";
389 if (run_receive_hook(pre_receive_hook
)) {
391 cmd
->error_string
= "pre-receive hook declined";
398 cmd
->error_string
= update(cmd
);
403 static void read_head_info(void)
405 struct command
**p
= &commands
;
407 static char line
[1000];
408 unsigned char old_sha1
[20], new_sha1
[20];
413 len
= packet_read_line(0, line
, sizeof(line
));
416 if (line
[len
-1] == '\n')
421 get_sha1_hex(line
, old_sha1
) ||
422 get_sha1_hex(line
+ 41, new_sha1
))
423 die("protocol error: expected old/new/ref, got '%s'",
427 reflen
= strlen(refname
);
428 if (reflen
+ 82 < len
) {
429 if (strstr(refname
+ reflen
+ 1, "report-status"))
432 cmd
= xmalloc(sizeof(struct command
) + len
- 80);
433 hashcpy(cmd
->old_sha1
, old_sha1
);
434 hashcpy(cmd
->new_sha1
, new_sha1
);
435 memcpy(cmd
->ref_name
, line
+ 82, len
- 81);
436 cmd
->error_string
= NULL
;
443 static const char *parse_pack_header(struct pack_header
*hdr
)
445 switch (read_pack_header(0, hdr
)) {
447 return "eof before pack header was fully read";
449 case PH_ERROR_PACK_SIGNATURE
:
450 return "protocol error (pack signature mismatch detected)";
452 case PH_ERROR_PROTOCOL
:
453 return "protocol error (pack version unsupported)";
456 return "unknown error in parse_pack_header";
463 static const char *pack_lockfile
;
465 static const char *unpack(void)
467 struct pack_header hdr
;
471 hdr_err
= parse_pack_header(&hdr
);
474 snprintf(hdr_arg
, sizeof(hdr_arg
),
475 "--pack_header=%"PRIu32
",%"PRIu32
,
476 ntohl(hdr
.hdr_version
), ntohl(hdr
.hdr_entries
));
478 if (ntohl(hdr
.hdr_entries
) < unpack_limit
) {
480 const char *unpacker
[4];
481 unpacker
[i
++] = "unpack-objects";
482 if (receive_fsck_objects
)
483 unpacker
[i
++] = "--strict";
484 unpacker
[i
++] = hdr_arg
;
485 unpacker
[i
++] = NULL
;
486 code
= run_command_v_opt(unpacker
, RUN_GIT_CMD
);
490 case -ERR_RUN_COMMAND_FORK
:
491 return "unpack fork failed";
492 case -ERR_RUN_COMMAND_EXEC
:
493 return "unpack execute failed";
494 case -ERR_RUN_COMMAND_WAITPID
:
495 return "waitpid failed";
496 case -ERR_RUN_COMMAND_WAITPID_WRONG_PID
:
497 return "waitpid is confused";
498 case -ERR_RUN_COMMAND_WAITPID_SIGNAL
:
499 return "unpacker died of signal";
500 case -ERR_RUN_COMMAND_WAITPID_NOEXIT
:
501 return "unpacker died strangely";
503 return "unpacker exited with error code";
506 const char *keeper
[7];
507 int s
, status
, i
= 0;
509 struct child_process ip
;
511 s
= sprintf(keep_arg
, "--keep=receive-pack %"PRIuMAX
" on ", (uintmax_t) getpid());
512 if (gethostname(keep_arg
+ s
, sizeof(keep_arg
) - s
))
513 strcpy(keep_arg
+ s
, "localhost");
515 keeper
[i
++] = "index-pack";
516 keeper
[i
++] = "--stdin";
517 if (receive_fsck_objects
)
518 keeper
[i
++] = "--strict";
519 keeper
[i
++] = "--fix-thin";
520 keeper
[i
++] = hdr_arg
;
521 keeper
[i
++] = keep_arg
;
523 memset(&ip
, 0, sizeof(ip
));
527 if (start_command(&ip
))
528 return "index-pack fork failed";
529 pack_lockfile
= index_pack_lockfile(ip
.out
);
531 status
= finish_command(&ip
);
533 reprepare_packed_git();
536 return "index-pack abnormal exit";
540 static void report(const char *unpack_status
)
543 packet_write(1, "unpack %s\n",
544 unpack_status
? unpack_status
: "ok");
545 for (cmd
= commands
; cmd
; cmd
= cmd
->next
) {
546 if (!cmd
->error_string
)
547 packet_write(1, "ok %s\n",
550 packet_write(1, "ng %s %s\n",
551 cmd
->ref_name
, cmd
->error_string
);
556 static int delete_only(struct command
*cmd
)
559 if (!is_null_sha1(cmd
->new_sha1
))
566 static int add_refs_from_alternate(struct alternate_object_database
*e
, void *unused
)
570 struct remote
*remote
;
571 struct transport
*transport
;
572 const struct ref
*extra
;
575 other
= xstrdup(make_absolute_path(e
->base
));
579 while (other
[len
-1] == '/')
581 if (len
< 8 || memcmp(other
+ len
- 8, "/objects", 8))
583 /* Is this a git repository with refs? */
584 memcpy(other
+ len
- 8, "/refs", 6);
585 if (!is_directory(other
))
587 other
[len
- 8] = '\0';
588 remote
= remote_get(other
);
589 transport
= transport_get(remote
, other
);
590 for (extra
= transport_get_remote_refs(transport
);
592 extra
= extra
->next
) {
593 add_extra_ref(".have", extra
->old_sha1
, 0);
595 transport_disconnect(transport
);
600 static void add_alternate_refs(void)
602 foreach_alt_odb(add_refs_from_alternate
, NULL
);
605 int cmd_receive_pack(int argc
, const char **argv
, const char *prefix
)
611 for (i
= 1; i
< argc
; i
++) {
612 const char *arg
= *argv
++;
615 /* Do flag handling here */
616 usage(receive_pack_usage
);
619 usage(receive_pack_usage
);
623 usage(receive_pack_usage
);
627 if (!enter_repo(dir
, 0))
628 die("'%s': unable to chdir or not a git archive", dir
);
630 if (is_repository_shallow())
631 die("attempt to push into a shallow repository");
633 git_config(receive_pack_config
, NULL
);
635 if (0 <= transfer_unpack_limit
)
636 unpack_limit
= transfer_unpack_limit
;
637 else if (0 <= receive_unpack_limit
)
638 unpack_limit
= receive_unpack_limit
;
640 add_alternate_refs();
649 const char *unpack_status
= NULL
;
651 if (!delete_only(commands
))
652 unpack_status
= unpack();
653 execute_commands(unpack_status
);
655 unlink(pack_lockfile
);
657 report(unpack_status
);
658 run_receive_hook(post_receive_hook
);
659 run_update_post_hook(commands
);