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
;
22 static int deny_non_fast_forwards
;
23 static enum deny_action deny_current_branch
= DENY_UNCONFIGURED
;
24 static enum deny_action deny_delete_current
= DENY_UNCONFIGURED
;
25 static int receive_fsck_objects
;
26 static int receive_unpack_limit
= -1;
27 static int transfer_unpack_limit
= -1;
28 static int unpack_limit
= 100;
29 static int report_status
;
30 static int prefer_ofs_delta
= 1;
31 static int auto_update_server_info
;
32 static int auto_gc
= 1;
33 static const char *head_name
;
34 static char *capabilities_to_send
;
36 static enum deny_action
parse_deny_action(const char *var
, const char *value
)
39 if (!strcasecmp(value
, "ignore"))
41 if (!strcasecmp(value
, "warn"))
43 if (!strcasecmp(value
, "refuse"))
46 if (git_config_bool(var
, value
))
51 static int receive_pack_config(const char *var
, const char *value
, void *cb
)
53 if (strcmp(var
, "receive.denydeletes") == 0) {
54 deny_deletes
= git_config_bool(var
, value
);
58 if (strcmp(var
, "receive.denynonfastforwards") == 0) {
59 deny_non_fast_forwards
= git_config_bool(var
, value
);
63 if (strcmp(var
, "receive.unpacklimit") == 0) {
64 receive_unpack_limit
= git_config_int(var
, value
);
68 if (strcmp(var
, "transfer.unpacklimit") == 0) {
69 transfer_unpack_limit
= git_config_int(var
, value
);
73 if (strcmp(var
, "receive.fsckobjects") == 0) {
74 receive_fsck_objects
= git_config_bool(var
, value
);
78 if (!strcmp(var
, "receive.denycurrentbranch")) {
79 deny_current_branch
= parse_deny_action(var
, value
);
83 if (strcmp(var
, "receive.denydeletecurrent") == 0) {
84 deny_delete_current
= parse_deny_action(var
, value
);
88 if (strcmp(var
, "repack.usedeltabaseoffset") == 0) {
89 prefer_ofs_delta
= git_config_bool(var
, value
);
93 if (strcmp(var
, "receive.updateserverinfo") == 0) {
94 auto_update_server_info
= git_config_bool(var
, value
);
98 if (strcmp(var
, "receive.autogc") == 0) {
99 auto_gc
= git_config_bool(var
, value
);
103 return git_default_config(var
, value
, cb
);
106 static int show_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
108 if (!capabilities_to_send
)
109 packet_write(1, "%s %s\n", sha1_to_hex(sha1
), path
);
111 packet_write(1, "%s %s%c%s\n",
112 sha1_to_hex(sha1
), path
, 0, capabilities_to_send
);
113 capabilities_to_send
= NULL
;
117 static void write_head_info(void)
119 for_each_ref(show_ref
, NULL
);
120 if (capabilities_to_send
)
121 show_ref("capabilities^{}", null_sha1
, 0, NULL
);
126 struct command
*next
;
127 const char *error_string
;
128 unsigned char old_sha1
[20];
129 unsigned char new_sha1
[20];
130 char ref_name
[FLEX_ARRAY
]; /* more */
133 static struct command
*commands
;
135 static const char pre_receive_hook
[] = "hooks/pre-receive";
136 static const char post_receive_hook
[] = "hooks/post-receive";
138 static int run_receive_hook(const char *hook_name
)
140 static char buf
[sizeof(commands
->old_sha1
) * 2 + PATH_MAX
+ 4];
142 struct child_process proc
;
144 int have_input
= 0, code
;
146 for (cmd
= commands
; !have_input
&& cmd
; cmd
= cmd
->next
) {
147 if (!cmd
->error_string
)
151 if (!have_input
|| access(hook_name
, X_OK
) < 0)
157 memset(&proc
, 0, sizeof(proc
));
160 proc
.stdout_to_stderr
= 1;
162 code
= start_command(&proc
);
165 for (cmd
= commands
; cmd
; cmd
= cmd
->next
) {
166 if (!cmd
->error_string
) {
167 size_t n
= snprintf(buf
, sizeof(buf
), "%s %s %s\n",
168 sha1_to_hex(cmd
->old_sha1
),
169 sha1_to_hex(cmd
->new_sha1
),
171 if (write_in_full(proc
.in
, buf
, n
) != n
)
176 return finish_command(&proc
);
179 static int run_update_hook(struct command
*cmd
)
181 static const char update_hook
[] = "hooks/update";
184 if (access(update_hook
, X_OK
) < 0)
187 argv
[0] = update_hook
;
188 argv
[1] = cmd
->ref_name
;
189 argv
[2] = sha1_to_hex(cmd
->old_sha1
);
190 argv
[3] = sha1_to_hex(cmd
->new_sha1
);
193 return run_command_v_opt(argv
, RUN_COMMAND_NO_STDIN
|
194 RUN_COMMAND_STDOUT_TO_STDERR
);
197 static int is_ref_checked_out(const char *ref
)
199 if (is_bare_repository())
204 return !strcmp(head_name
, ref
);
207 static char *warn_unconfigured_deny_msg
[] = {
208 "Updating the currently checked out branch may cause confusion,",
209 "as the index and work tree do not reflect changes that are in HEAD.",
210 "As a result, you may see the changes you just pushed into it",
211 "reverted when you run 'git diff' over there, and you may want",
212 "to run 'git reset --hard' before starting to work to recover.",
214 "You can set 'receive.denyCurrentBranch' configuration variable to",
215 "'refuse' in the remote repository to forbid pushing into its",
218 "To allow pushing into the current branch, you can set it to 'ignore';",
219 "but this is not recommended unless you arranged to update its work",
220 "tree to match what you pushed in some other way.",
222 "To squelch this message, you can set it to 'warn'.",
224 "Note that the default will change in a future version of git",
225 "to refuse updating the current branch unless you have the",
226 "configuration variable set to either 'ignore' or 'warn'."
229 static void warn_unconfigured_deny(void)
232 for (i
= 0; i
< ARRAY_SIZE(warn_unconfigured_deny_msg
); i
++)
233 warning("%s", warn_unconfigured_deny_msg
[i
]);
236 static char *warn_unconfigured_deny_delete_current_msg
[] = {
237 "Deleting the current branch can cause confusion by making the next",
238 "'git clone' not check out any file.",
240 "You can set 'receive.denyDeleteCurrent' configuration variable to",
241 "'refuse' in the remote repository to disallow deleting the current",
244 "You can set it to 'ignore' to allow such a delete without a warning.",
246 "To make this warning message less loud, you can set it to 'warn'.",
248 "Note that the default will change in a future version of git",
249 "to refuse deleting the current branch unless you have the",
250 "configuration variable set to either 'ignore' or 'warn'."
253 static void warn_unconfigured_deny_delete_current(void)
257 i
< ARRAY_SIZE(warn_unconfigured_deny_delete_current_msg
);
259 warning("%s", warn_unconfigured_deny_delete_current_msg
[i
]);
262 static const char *update(struct command
*cmd
)
264 const char *name
= cmd
->ref_name
;
265 unsigned char *old_sha1
= cmd
->old_sha1
;
266 unsigned char *new_sha1
= cmd
->new_sha1
;
267 struct ref_lock
*lock
;
269 /* only refs/... are allowed */
270 if (prefixcmp(name
, "refs/") || check_ref_format(name
+ 5)) {
271 error("refusing to create funny ref '%s' remotely", name
);
272 return "funny refname";
275 if (is_ref_checked_out(name
)) {
276 switch (deny_current_branch
) {
279 case DENY_UNCONFIGURED
:
281 warning("updating the current branch");
282 if (deny_current_branch
== DENY_UNCONFIGURED
)
283 warn_unconfigured_deny();
286 error("refusing to update checked out branch: %s", name
);
287 return "branch is currently checked out";
291 if (!is_null_sha1(new_sha1
) && !has_sha1_file(new_sha1
)) {
292 error("unpack should have generated %s, "
293 "but I can't find it!", sha1_to_hex(new_sha1
));
297 if (!is_null_sha1(old_sha1
) && is_null_sha1(new_sha1
)) {
298 if (deny_deletes
&& !prefixcmp(name
, "refs/heads/")) {
299 error("denying ref deletion for %s", name
);
300 return "deletion prohibited";
303 if (!strcmp(name
, head_name
)) {
304 switch (deny_delete_current
) {
308 case DENY_UNCONFIGURED
:
309 if (deny_delete_current
== DENY_UNCONFIGURED
)
310 warn_unconfigured_deny_delete_current();
311 warning("deleting the current branch");
314 error("refusing to delete the current branch: %s", name
);
315 return "deletion of the current branch prohibited";
320 if (deny_non_fast_forwards
&& !is_null_sha1(new_sha1
) &&
321 !is_null_sha1(old_sha1
) &&
322 !prefixcmp(name
, "refs/heads/")) {
323 struct object
*old_object
, *new_object
;
324 struct commit
*old_commit
, *new_commit
;
325 struct commit_list
*bases
, *ent
;
327 old_object
= parse_object(old_sha1
);
328 new_object
= parse_object(new_sha1
);
330 if (!old_object
|| !new_object
||
331 old_object
->type
!= OBJ_COMMIT
||
332 new_object
->type
!= OBJ_COMMIT
) {
333 error("bad sha1 objects for %s", name
);
336 old_commit
= (struct commit
*)old_object
;
337 new_commit
= (struct commit
*)new_object
;
338 bases
= get_merge_bases(old_commit
, new_commit
, 1);
339 for (ent
= bases
; ent
; ent
= ent
->next
)
340 if (!hashcmp(old_sha1
, ent
->item
->object
.sha1
))
342 free_commit_list(bases
);
344 error("denying non-fast forward %s"
345 " (you should pull first)", name
);
346 return "non-fast forward";
349 if (run_update_hook(cmd
)) {
350 error("hook declined to update %s", name
);
351 return "hook declined";
354 if (is_null_sha1(new_sha1
)) {
355 if (!parse_object(old_sha1
)) {
356 warning ("Allowing deletion of corrupt ref.");
359 if (delete_ref(name
, old_sha1
, 0)) {
360 error("failed to delete %s", name
);
361 return "failed to delete";
363 return NULL
; /* good */
366 lock
= lock_any_ref_for_update(name
, old_sha1
, 0);
368 error("failed to lock %s", name
);
369 return "failed to lock";
371 if (write_ref_sha1(lock
, new_sha1
, "push")) {
372 return "failed to write"; /* error() already called */
374 return NULL
; /* good */
378 static char update_post_hook
[] = "hooks/post-update";
380 static void run_update_post_hook(struct command
*cmd
)
382 struct command
*cmd_p
;
386 for (argc
= 0, cmd_p
= cmd
; cmd_p
; cmd_p
= cmd_p
->next
) {
387 if (cmd_p
->error_string
)
391 if (!argc
|| access(update_post_hook
, X_OK
) < 0)
393 argv
= xmalloc(sizeof(*argv
) * (2 + argc
));
394 argv
[0] = update_post_hook
;
396 for (argc
= 1, cmd_p
= cmd
; cmd_p
; cmd_p
= cmd_p
->next
) {
398 if (cmd_p
->error_string
)
400 p
= xmalloc(strlen(cmd_p
->ref_name
) + 1);
401 strcpy(p
, cmd_p
->ref_name
);
406 status
= run_command_v_opt(argv
, RUN_COMMAND_NO_STDIN
407 | RUN_COMMAND_STDOUT_TO_STDERR
);
410 static void execute_commands(const char *unpacker_error
)
412 struct command
*cmd
= commands
;
413 unsigned char sha1
[20];
415 if (unpacker_error
) {
417 cmd
->error_string
= "n/a (unpacker error)";
423 if (run_receive_hook(pre_receive_hook
)) {
425 cmd
->error_string
= "pre-receive hook declined";
431 head_name
= resolve_ref("HEAD", sha1
, 0, NULL
);
434 cmd
->error_string
= update(cmd
);
439 static void read_head_info(void)
441 struct command
**p
= &commands
;
443 static char line
[1000];
444 unsigned char old_sha1
[20], new_sha1
[20];
449 len
= packet_read_line(0, line
, sizeof(line
));
452 if (line
[len
-1] == '\n')
457 get_sha1_hex(line
, old_sha1
) ||
458 get_sha1_hex(line
+ 41, new_sha1
))
459 die("protocol error: expected old/new/ref, got '%s'",
463 reflen
= strlen(refname
);
464 if (reflen
+ 82 < len
) {
465 if (strstr(refname
+ reflen
+ 1, "report-status"))
468 cmd
= xmalloc(sizeof(struct command
) + len
- 80);
469 hashcpy(cmd
->old_sha1
, old_sha1
);
470 hashcpy(cmd
->new_sha1
, new_sha1
);
471 memcpy(cmd
->ref_name
, line
+ 82, len
- 81);
472 cmd
->error_string
= NULL
;
479 static const char *parse_pack_header(struct pack_header
*hdr
)
481 switch (read_pack_header(0, hdr
)) {
483 return "eof before pack header was fully read";
485 case PH_ERROR_PACK_SIGNATURE
:
486 return "protocol error (pack signature mismatch detected)";
488 case PH_ERROR_PROTOCOL
:
489 return "protocol error (pack version unsupported)";
492 return "unknown error in parse_pack_header";
499 static const char *pack_lockfile
;
501 static const char *unpack(void)
503 struct pack_header hdr
;
507 hdr_err
= parse_pack_header(&hdr
);
510 snprintf(hdr_arg
, sizeof(hdr_arg
),
511 "--pack_header=%"PRIu32
",%"PRIu32
,
512 ntohl(hdr
.hdr_version
), ntohl(hdr
.hdr_entries
));
514 if (ntohl(hdr
.hdr_entries
) < unpack_limit
) {
516 const char *unpacker
[4];
517 unpacker
[i
++] = "unpack-objects";
518 if (receive_fsck_objects
)
519 unpacker
[i
++] = "--strict";
520 unpacker
[i
++] = hdr_arg
;
521 unpacker
[i
++] = NULL
;
522 code
= run_command_v_opt(unpacker
, RUN_GIT_CMD
);
525 return "unpack-objects abnormal exit";
527 const char *keeper
[7];
528 int s
, status
, i
= 0;
530 struct child_process ip
;
532 s
= sprintf(keep_arg
, "--keep=receive-pack %"PRIuMAX
" on ", (uintmax_t) getpid());
533 if (gethostname(keep_arg
+ s
, sizeof(keep_arg
) - s
))
534 strcpy(keep_arg
+ s
, "localhost");
536 keeper
[i
++] = "index-pack";
537 keeper
[i
++] = "--stdin";
538 if (receive_fsck_objects
)
539 keeper
[i
++] = "--strict";
540 keeper
[i
++] = "--fix-thin";
541 keeper
[i
++] = hdr_arg
;
542 keeper
[i
++] = keep_arg
;
544 memset(&ip
, 0, sizeof(ip
));
548 status
= start_command(&ip
);
550 return "index-pack fork failed";
552 pack_lockfile
= index_pack_lockfile(ip
.out
);
554 status
= finish_command(&ip
);
556 reprepare_packed_git();
559 return "index-pack abnormal exit";
563 static void report(const char *unpack_status
)
566 packet_write(1, "unpack %s\n",
567 unpack_status
? unpack_status
: "ok");
568 for (cmd
= commands
; cmd
; cmd
= cmd
->next
) {
569 if (!cmd
->error_string
)
570 packet_write(1, "ok %s\n",
573 packet_write(1, "ng %s %s\n",
574 cmd
->ref_name
, cmd
->error_string
);
579 static int delete_only(struct command
*cmd
)
582 if (!is_null_sha1(cmd
->new_sha1
))
589 static int add_refs_from_alternate(struct alternate_object_database
*e
, void *unused
)
593 struct remote
*remote
;
594 struct transport
*transport
;
595 const struct ref
*extra
;
598 other
= xstrdup(make_absolute_path(e
->base
));
602 while (other
[len
-1] == '/')
604 if (len
< 8 || memcmp(other
+ len
- 8, "/objects", 8))
606 /* Is this a git repository with refs? */
607 memcpy(other
+ len
- 8, "/refs", 6);
608 if (!is_directory(other
))
610 other
[len
- 8] = '\0';
611 remote
= remote_get(other
);
612 transport
= transport_get(remote
, other
);
613 for (extra
= transport_get_remote_refs(transport
);
615 extra
= extra
->next
) {
616 add_extra_ref(".have", extra
->old_sha1
, 0);
618 transport_disconnect(transport
);
623 static void add_alternate_refs(void)
625 foreach_alt_odb(add_refs_from_alternate
, NULL
);
628 int cmd_receive_pack(int argc
, const char **argv
, const char *prefix
)
634 for (i
= 1; i
< argc
; i
++) {
635 const char *arg
= *argv
++;
638 /* Do flag handling here */
639 usage(receive_pack_usage
);
642 usage(receive_pack_usage
);
646 usage(receive_pack_usage
);
650 if (!enter_repo(dir
, 0))
651 die("'%s' does not appear to be a git repository", dir
);
653 if (is_repository_shallow())
654 die("attempt to push into a shallow repository");
656 git_config(receive_pack_config
, NULL
);
658 if (0 <= transfer_unpack_limit
)
659 unpack_limit
= transfer_unpack_limit
;
660 else if (0 <= receive_unpack_limit
)
661 unpack_limit
= receive_unpack_limit
;
663 capabilities_to_send
= (prefer_ofs_delta
) ?
664 " report-status delete-refs ofs-delta " :
665 " report-status delete-refs ";
667 add_alternate_refs();
676 const char *unpack_status
= NULL
;
678 if (!delete_only(commands
))
679 unpack_status
= unpack();
680 execute_commands(unpack_status
);
682 unlink_or_warn(pack_lockfile
);
684 report(unpack_status
);
685 run_receive_hook(post_receive_hook
);
686 run_update_post_hook(commands
);
688 const char *argv_gc_auto
[] = {
689 "gc", "--auto", "--quiet", NULL
,
691 run_command_v_opt(argv_gc_auto
, RUN_GIT_CMD
);
693 if (auto_update_server_info
)
694 update_server_info(0);