5 #include "run-command.h"
10 static const char receive_pack_usage
[] = "git-receive-pack <git-dir>";
12 static int deny_non_fast_forwards
= 0;
13 static int receive_unpack_limit
= -1;
14 static int transfer_unpack_limit
= -1;
15 static int unpack_limit
= 100;
16 static int report_status
;
18 static char capabilities
[] = " report-status delete-refs ";
19 static int capabilities_sent
;
21 static int receive_pack_config(const char *var
, const char *value
)
23 if (strcmp(var
, "receive.denynonfastforwards") == 0) {
24 deny_non_fast_forwards
= git_config_bool(var
, value
);
28 if (strcmp(var
, "receive.unpacklimit") == 0) {
29 receive_unpack_limit
= git_config_int(var
, value
);
33 if (strcmp(var
, "transfer.unpacklimit") == 0) {
34 transfer_unpack_limit
= git_config_int(var
, value
);
38 return git_default_config(var
, value
);
41 static int show_ref(const char *path
, const unsigned char *sha1
, int flag
, void *cb_data
)
43 if (capabilities_sent
)
44 packet_write(1, "%s %s\n", sha1_to_hex(sha1
), path
);
46 packet_write(1, "%s %s%c%s\n",
47 sha1_to_hex(sha1
), path
, 0, capabilities
);
48 capabilities_sent
= 1;
52 static void write_head_info(void)
54 for_each_ref(show_ref
, NULL
);
55 if (!capabilities_sent
)
56 show_ref("capabilities^{}", null_sha1
, 0, NULL
);
62 const char *error_string
;
63 unsigned char old_sha1
[20];
64 unsigned char new_sha1
[20];
65 char ref_name
[FLEX_ARRAY
]; /* more */
68 static struct command
*commands
;
70 static const char update_hook
[] = "hooks/update";
72 static int run_hook(const char *hook_name
,
73 struct command
*first_cmd
,
80 for (argc
= 0, cmd
= first_cmd
; cmd
; cmd
= cmd
->next
) {
81 if (!cmd
->error_string
)
87 if (!argc
|| access(hook_name
, X_OK
) < 0)
90 argv
= xmalloc(sizeof(*argv
) * (2 + argc
));
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
));
103 code
= run_command_v_opt(argv
,
104 RUN_COMMAND_NO_STDIN
| RUN_COMMAND_STDOUT_TO_STDERR
);
106 free((char*)argv
[argc
]);
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
);
125 error("%s exited with error code %d", hook_name
, -code
);
130 static int update(struct command
*cmd
)
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
;
137 cmd
->error_string
= NULL
;
138 if (!prefixcmp(name
, "refs/") && check_ref_format(name
+ 5)) {
139 cmd
->error_string
= "funny refname";
140 return error("refusing to create funny ref '%s' locally",
144 if (!is_null_sha1(new_sha1
) && !has_sha1_file(new_sha1
)) {
145 cmd
->error_string
= "bad pack";
146 return error("unpack should have generated %s, "
147 "but I can't find it!", sha1_to_hex(new_sha1
));
149 if (deny_non_fast_forwards
&& !is_null_sha1(new_sha1
) &&
150 !is_null_sha1(old_sha1
) &&
151 !prefixcmp(name
, "refs/heads/")) {
152 struct commit
*old_commit
, *new_commit
;
153 struct commit_list
*bases
, *ent
;
155 old_commit
= (struct commit
*)parse_object(old_sha1
);
156 new_commit
= (struct commit
*)parse_object(new_sha1
);
157 bases
= get_merge_bases(old_commit
, new_commit
, 1);
158 for (ent
= bases
; ent
; ent
= ent
->next
)
159 if (!hashcmp(old_sha1
, ent
->item
->object
.sha1
))
161 free_commit_list(bases
);
163 return error("denying non-fast forward;"
164 " you should pull first");
166 if (run_hook(update_hook
, cmd
, 1)) {
167 cmd
->error_string
= "hook declined";
168 return error("hook declined to update %s", name
);
171 if (is_null_sha1(new_sha1
)) {
172 if (delete_ref(name
, old_sha1
)) {
173 cmd
->error_string
= "failed to delete";
174 return error("failed to delete %s", name
);
176 fprintf(stderr
, "%s: %s -> deleted\n", name
,
177 sha1_to_hex(old_sha1
));
180 lock
= lock_any_ref_for_update(name
, old_sha1
);
182 cmd
->error_string
= "failed to lock";
183 return error("failed to lock %s", name
);
185 if (write_ref_sha1(lock
, new_sha1
, "push")) {
186 cmd
->error_string
= "failed to write";
187 return -1; /* error() already called */
189 fprintf(stderr
, "%s: %s -> %s\n", name
,
190 sha1_to_hex(old_sha1
), sha1_to_hex(new_sha1
));
195 static char update_post_hook
[] = "hooks/post-update";
197 static void run_update_post_hook(struct command
*cmd
)
199 struct command
*cmd_p
;
203 for (argc
= 0, cmd_p
= cmd
; cmd_p
; cmd_p
= cmd_p
->next
) {
204 if (cmd_p
->error_string
)
208 if (!argc
|| access(update_post_hook
, X_OK
) < 0)
210 argv
= xmalloc(sizeof(*argv
) * (2 + argc
));
211 argv
[0] = update_post_hook
;
213 for (argc
= 1, cmd_p
= cmd
; cmd_p
; cmd_p
= cmd_p
->next
) {
215 if (cmd_p
->error_string
)
217 p
= xmalloc(strlen(cmd_p
->ref_name
) + 1);
218 strcpy(p
, cmd_p
->ref_name
);
223 run_command_v_opt(argv
, RUN_COMMAND_NO_STDIN
224 | RUN_COMMAND_STDOUT_TO_STDERR
);
228 * This gets called after(if) we've successfully
229 * unpacked the data payload.
231 static void execute_commands(void)
233 struct command
*cmd
= commands
;
240 static void read_head_info(void)
242 struct command
**p
= &commands
;
244 static char line
[1000];
245 unsigned char old_sha1
[20], new_sha1
[20];
250 len
= packet_read_line(0, line
, sizeof(line
));
253 if (line
[len
-1] == '\n')
258 get_sha1_hex(line
, old_sha1
) ||
259 get_sha1_hex(line
+ 41, new_sha1
))
260 die("protocol error: expected old/new/ref, got '%s'",
264 reflen
= strlen(refname
);
265 if (reflen
+ 82 < len
) {
266 if (strstr(refname
+ reflen
+ 1, "report-status"))
269 cmd
= xmalloc(sizeof(struct command
) + len
- 80);
270 hashcpy(cmd
->old_sha1
, old_sha1
);
271 hashcpy(cmd
->new_sha1
, new_sha1
);
272 memcpy(cmd
->ref_name
, line
+ 82, len
- 81);
273 cmd
->error_string
= "n/a (unpacker error)";
280 static const char *parse_pack_header(struct pack_header
*hdr
)
282 switch (read_pack_header(0, hdr
)) {
284 return "eof before pack header was fully read";
286 case PH_ERROR_PACK_SIGNATURE
:
287 return "protocol error (pack signature mismatch detected)";
289 case PH_ERROR_PROTOCOL
:
290 return "protocol error (pack version unsupported)";
293 return "unknown error in parse_pack_header";
300 static const char *pack_lockfile
;
302 static const char *unpack(void)
304 struct pack_header hdr
;
308 hdr_err
= parse_pack_header(&hdr
);
311 snprintf(hdr_arg
, sizeof(hdr_arg
), "--pack_header=%u,%u",
312 ntohl(hdr
.hdr_version
), ntohl(hdr
.hdr_entries
));
314 if (ntohl(hdr
.hdr_entries
) < unpack_limit
) {
316 const char *unpacker
[3];
317 unpacker
[0] = "unpack-objects";
318 unpacker
[1] = hdr_arg
;
320 code
= run_command_v_opt(unpacker
, RUN_GIT_CMD
);
324 case -ERR_RUN_COMMAND_FORK
:
325 return "unpack fork failed";
326 case -ERR_RUN_COMMAND_EXEC
:
327 return "unpack execute failed";
328 case -ERR_RUN_COMMAND_WAITPID
:
329 return "waitpid failed";
330 case -ERR_RUN_COMMAND_WAITPID_WRONG_PID
:
331 return "waitpid is confused";
332 case -ERR_RUN_COMMAND_WAITPID_SIGNAL
:
333 return "unpacker died of signal";
334 case -ERR_RUN_COMMAND_WAITPID_NOEXIT
:
335 return "unpacker died strangely";
337 return "unpacker exited with error code";
340 const char *keeper
[6];
341 int fd
[2], s
, len
, status
;
346 s
= sprintf(keep_arg
, "--keep=receive-pack %i on ", getpid());
347 if (gethostname(keep_arg
+ s
, sizeof(keep_arg
) - s
))
348 strcpy(keep_arg
+ s
, "localhost");
350 keeper
[0] = "index-pack";
351 keeper
[1] = "--stdin";
352 keeper
[2] = "--fix-thin";
354 keeper
[4] = keep_arg
;
358 return "index-pack pipe failed";
361 return "index-pack fork failed";
366 execv_git_cmd(keeper
);
367 die("execv of index-pack failed");
372 * The first thing we expects from index-pack's output
373 * is "pack\t%40s\n" or "keep\t%40s\n" (46 bytes) where
374 * %40s is the newly created pack SHA1 name. In the "keep"
375 * case, we need it to remove the corresponding .keep file
376 * later on. If we don't get that then tough luck with it.
379 len
< 46 && (s
= xread(fd
[0], packname
+len
, 46-len
)) > 0;
382 if (len
== 46 && packname
[45] == '\n' &&
383 memcmp(packname
, "keep\t", 5) == 0) {
386 snprintf(path
, sizeof(path
), "%s/pack/pack-%s.keep",
387 get_object_directory(), packname
+ 5);
388 pack_lockfile
= xstrdup(path
);
391 /* Then wrap our index-pack process. */
392 while (waitpid(pid
, &status
, 0) < 0)
394 return "waitpid failed";
395 if (WIFEXITED(status
)) {
396 int code
= WEXITSTATUS(status
);
398 return "index-pack exited with error code";
399 reprepare_packed_git();
402 return "index-pack abnormal exit";
406 static void report(const char *unpack_status
)
409 packet_write(1, "unpack %s\n",
410 unpack_status
? unpack_status
: "ok");
411 for (cmd
= commands
; cmd
; cmd
= cmd
->next
) {
412 if (!cmd
->error_string
)
413 packet_write(1, "ok %s\n",
416 packet_write(1, "ng %s %s\n",
417 cmd
->ref_name
, cmd
->error_string
);
422 static int delete_only(struct command
*cmd
)
425 if (!is_null_sha1(cmd
->new_sha1
))
432 int main(int argc
, char **argv
)
438 for (i
= 1; i
< argc
; i
++) {
442 /* Do flag handling here */
443 usage(receive_pack_usage
);
446 usage(receive_pack_usage
);
450 usage(receive_pack_usage
);
452 if (!enter_repo(dir
, 0))
453 die("'%s': unable to chdir or not a git archive", dir
);
455 if (is_repository_shallow())
456 die("attempt to push into a shallow repository");
458 git_config(receive_pack_config
);
460 if (0 <= transfer_unpack_limit
)
461 unpack_limit
= transfer_unpack_limit
;
462 else if (0 <= receive_unpack_limit
)
463 unpack_limit
= receive_unpack_limit
;
472 const char *unpack_status
= NULL
;
474 if (!delete_only(commands
))
475 unpack_status
= unpack();
479 unlink(pack_lockfile
);
481 report(unpack_status
);
482 run_update_post_hook(commands
);