use xstrfmt to replace xmalloc + sprintf
[git.git] / http-push.c
blob390f74c97b187158e94f77d0dfefdba3712421e1
1 #include "cache.h"
2 #include "commit.h"
3 #include "tag.h"
4 #include "blob.h"
5 #include "http.h"
6 #include "refs.h"
7 #include "diff.h"
8 #include "revision.h"
9 #include "exec_cmd.h"
10 #include "remote.h"
11 #include "list-objects.h"
12 #include "sigchain.h"
14 #ifdef EXPAT_NEEDS_XMLPARSE_H
15 #include <xmlparse.h>
16 #else
17 #include <expat.h>
18 #endif
20 static const char http_push_usage[] =
21 "git http-push [--all] [--dry-run] [--force] [--verbose] <remote> [<head>...]\n";
23 #ifndef XML_STATUS_OK
24 enum XML_Status {
25 XML_STATUS_OK = 1,
26 XML_STATUS_ERROR = 0
28 #define XML_STATUS_OK 1
29 #define XML_STATUS_ERROR 0
30 #endif
32 #define PREV_BUF_SIZE 4096
34 /* DAV methods */
35 #define DAV_LOCK "LOCK"
36 #define DAV_MKCOL "MKCOL"
37 #define DAV_MOVE "MOVE"
38 #define DAV_PROPFIND "PROPFIND"
39 #define DAV_PUT "PUT"
40 #define DAV_UNLOCK "UNLOCK"
41 #define DAV_DELETE "DELETE"
43 /* DAV lock flags */
44 #define DAV_PROP_LOCKWR (1u << 0)
45 #define DAV_PROP_LOCKEX (1u << 1)
46 #define DAV_LOCK_OK (1u << 2)
48 /* DAV XML properties */
49 #define DAV_CTX_LOCKENTRY ".multistatus.response.propstat.prop.supportedlock.lockentry"
50 #define DAV_CTX_LOCKTYPE_WRITE ".multistatus.response.propstat.prop.supportedlock.lockentry.locktype.write"
51 #define DAV_CTX_LOCKTYPE_EXCLUSIVE ".multistatus.response.propstat.prop.supportedlock.lockentry.lockscope.exclusive"
52 #define DAV_ACTIVELOCK_OWNER ".prop.lockdiscovery.activelock.owner.href"
53 #define DAV_ACTIVELOCK_TIMEOUT ".prop.lockdiscovery.activelock.timeout"
54 #define DAV_ACTIVELOCK_TOKEN ".prop.lockdiscovery.activelock.locktoken.href"
55 #define DAV_PROPFIND_RESP ".multistatus.response"
56 #define DAV_PROPFIND_NAME ".multistatus.response.href"
57 #define DAV_PROPFIND_COLLECTION ".multistatus.response.propstat.prop.resourcetype.collection"
59 /* DAV request body templates */
60 #define PROPFIND_SUPPORTEDLOCK_REQUEST "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<D:propfind xmlns:D=\"DAV:\">\n<D:prop xmlns:R=\"%s\">\n<D:supportedlock/>\n</D:prop>\n</D:propfind>"
61 #define PROPFIND_ALL_REQUEST "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<D:propfind xmlns:D=\"DAV:\">\n<D:allprop/>\n</D:propfind>"
62 #define LOCK_REQUEST "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<D:lockinfo xmlns:D=\"DAV:\">\n<D:lockscope><D:exclusive/></D:lockscope>\n<D:locktype><D:write/></D:locktype>\n<D:owner>\n<D:href>mailto:%s</D:href>\n</D:owner>\n</D:lockinfo>"
64 #define LOCK_TIME 600
65 #define LOCK_REFRESH 30
67 /* Remember to update object flag allocation in object.h */
68 #define LOCAL (1u<<16)
69 #define REMOTE (1u<<17)
70 #define FETCHING (1u<<18)
71 #define PUSHING (1u<<19)
73 /* We allow "recursive" symbolic refs. Only within reason, though */
74 #define MAXDEPTH 5
76 static int pushing;
77 static int aborted;
78 static signed char remote_dir_exists[256];
80 static int push_verbosely;
81 static int push_all = MATCH_REFS_NONE;
82 static int force_all;
83 static int dry_run;
84 static int helper_status;
86 static struct object_list *objects;
88 struct repo {
89 char *url;
90 char *path;
91 int path_len;
92 int has_info_refs;
93 int can_update_info_refs;
94 int has_info_packs;
95 struct packed_git *packs;
96 struct remote_lock *locks;
99 static struct repo *repo;
101 enum transfer_state {
102 NEED_FETCH,
103 RUN_FETCH_LOOSE,
104 RUN_FETCH_PACKED,
105 NEED_PUSH,
106 RUN_MKCOL,
107 RUN_PUT,
108 RUN_MOVE,
109 ABORTED,
110 COMPLETE
113 struct transfer_request {
114 struct object *obj;
115 char *url;
116 char *dest;
117 struct remote_lock *lock;
118 struct curl_slist *headers;
119 struct buffer buffer;
120 enum transfer_state state;
121 CURLcode curl_result;
122 char errorstr[CURL_ERROR_SIZE];
123 long http_code;
124 void *userData;
125 struct active_request_slot *slot;
126 struct transfer_request *next;
129 static struct transfer_request *request_queue_head;
131 struct xml_ctx {
132 char *name;
133 int len;
134 char *cdata;
135 void (*userFunc)(struct xml_ctx *ctx, int tag_closed);
136 void *userData;
139 struct remote_lock {
140 char *url;
141 char *owner;
142 char *token;
143 char tmpfile_suffix[41];
144 time_t start_time;
145 long timeout;
146 int refreshing;
147 struct remote_lock *next;
150 /* Flags that control remote_ls processing */
151 #define PROCESS_FILES (1u << 0)
152 #define PROCESS_DIRS (1u << 1)
153 #define RECURSIVE (1u << 2)
155 /* Flags that remote_ls passes to callback functions */
156 #define IS_DIR (1u << 0)
158 struct remote_ls_ctx {
159 char *path;
160 void (*userFunc)(struct remote_ls_ctx *ls);
161 void *userData;
162 int flags;
163 char *dentry_name;
164 int dentry_flags;
165 struct remote_ls_ctx *parent;
168 /* get_dav_token_headers options */
169 enum dav_header_flag {
170 DAV_HEADER_IF = (1u << 0),
171 DAV_HEADER_LOCK = (1u << 1),
172 DAV_HEADER_TIMEOUT = (1u << 2)
175 static char *xml_entities(const char *s)
177 struct strbuf buf = STRBUF_INIT;
178 strbuf_addstr_xml_quoted(&buf, s);
179 return strbuf_detach(&buf, NULL);
182 static void curl_setup_http_get(CURL *curl, const char *url,
183 const char *custom_req)
185 curl_easy_setopt(curl, CURLOPT_HTTPGET, 1);
186 curl_easy_setopt(curl, CURLOPT_URL, url);
187 curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, custom_req);
188 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite_null);
191 static void curl_setup_http(CURL *curl, const char *url,
192 const char *custom_req, struct buffer *buffer,
193 curl_write_callback write_fn)
195 curl_easy_setopt(curl, CURLOPT_PUT, 1);
196 curl_easy_setopt(curl, CURLOPT_URL, url);
197 curl_easy_setopt(curl, CURLOPT_INFILE, buffer);
198 curl_easy_setopt(curl, CURLOPT_INFILESIZE, buffer->buf.len);
199 curl_easy_setopt(curl, CURLOPT_READFUNCTION, fread_buffer);
200 #ifndef NO_CURL_IOCTL
201 curl_easy_setopt(curl, CURLOPT_IOCTLFUNCTION, ioctl_buffer);
202 curl_easy_setopt(curl, CURLOPT_IOCTLDATA, &buffer);
203 #endif
204 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_fn);
205 curl_easy_setopt(curl, CURLOPT_NOBODY, 0);
206 curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, custom_req);
207 curl_easy_setopt(curl, CURLOPT_UPLOAD, 1);
210 static struct curl_slist *get_dav_token_headers(struct remote_lock *lock, enum dav_header_flag options)
212 struct strbuf buf = STRBUF_INIT;
213 struct curl_slist *dav_headers = NULL;
215 if (options & DAV_HEADER_IF) {
216 strbuf_addf(&buf, "If: (<%s>)", lock->token);
217 dav_headers = curl_slist_append(dav_headers, buf.buf);
218 strbuf_reset(&buf);
220 if (options & DAV_HEADER_LOCK) {
221 strbuf_addf(&buf, "Lock-Token: <%s>", lock->token);
222 dav_headers = curl_slist_append(dav_headers, buf.buf);
223 strbuf_reset(&buf);
225 if (options & DAV_HEADER_TIMEOUT) {
226 strbuf_addf(&buf, "Timeout: Second-%ld", lock->timeout);
227 dav_headers = curl_slist_append(dav_headers, buf.buf);
228 strbuf_reset(&buf);
230 strbuf_release(&buf);
232 return dav_headers;
235 static void finish_request(struct transfer_request *request);
236 static void release_request(struct transfer_request *request);
238 static void process_response(void *callback_data)
240 struct transfer_request *request =
241 (struct transfer_request *)callback_data;
243 finish_request(request);
246 #ifdef USE_CURL_MULTI
248 static void start_fetch_loose(struct transfer_request *request)
250 struct active_request_slot *slot;
251 struct http_object_request *obj_req;
253 obj_req = new_http_object_request(repo->url, request->obj->sha1);
254 if (obj_req == NULL) {
255 request->state = ABORTED;
256 return;
259 slot = obj_req->slot;
260 slot->callback_func = process_response;
261 slot->callback_data = request;
262 request->slot = slot;
263 request->userData = obj_req;
265 /* Try to get the request started, abort the request on error */
266 request->state = RUN_FETCH_LOOSE;
267 if (!start_active_slot(slot)) {
268 fprintf(stderr, "Unable to start GET request\n");
269 repo->can_update_info_refs = 0;
270 release_http_object_request(obj_req);
271 release_request(request);
275 static void start_mkcol(struct transfer_request *request)
277 char *hex = sha1_to_hex(request->obj->sha1);
278 struct active_request_slot *slot;
280 request->url = get_remote_object_url(repo->url, hex, 1);
282 slot = get_active_slot();
283 slot->callback_func = process_response;
284 slot->callback_data = request;
285 curl_setup_http_get(slot->curl, request->url, DAV_MKCOL);
286 curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, request->errorstr);
288 if (start_active_slot(slot)) {
289 request->slot = slot;
290 request->state = RUN_MKCOL;
291 } else {
292 request->state = ABORTED;
293 free(request->url);
294 request->url = NULL;
297 #endif
299 static void start_fetch_packed(struct transfer_request *request)
301 struct packed_git *target;
303 struct transfer_request *check_request = request_queue_head;
304 struct http_pack_request *preq;
306 target = find_sha1_pack(request->obj->sha1, repo->packs);
307 if (!target) {
308 fprintf(stderr, "Unable to fetch %s, will not be able to update server info refs\n", sha1_to_hex(request->obj->sha1));
309 repo->can_update_info_refs = 0;
310 release_request(request);
311 return;
314 fprintf(stderr, "Fetching pack %s\n", sha1_to_hex(target->sha1));
315 fprintf(stderr, " which contains %s\n", sha1_to_hex(request->obj->sha1));
317 preq = new_http_pack_request(target, repo->url);
318 if (preq == NULL) {
319 release_http_pack_request(preq);
320 repo->can_update_info_refs = 0;
321 return;
323 preq->lst = &repo->packs;
325 /* Make sure there isn't another open request for this pack */
326 while (check_request) {
327 if (check_request->state == RUN_FETCH_PACKED &&
328 !strcmp(check_request->url, preq->url)) {
329 release_http_pack_request(preq);
330 release_request(request);
331 return;
333 check_request = check_request->next;
336 preq->slot->callback_func = process_response;
337 preq->slot->callback_data = request;
338 request->slot = preq->slot;
339 request->userData = preq;
341 /* Try to get the request started, abort the request on error */
342 request->state = RUN_FETCH_PACKED;
343 if (!start_active_slot(preq->slot)) {
344 fprintf(stderr, "Unable to start GET request\n");
345 release_http_pack_request(preq);
346 repo->can_update_info_refs = 0;
347 release_request(request);
351 static void start_put(struct transfer_request *request)
353 char *hex = sha1_to_hex(request->obj->sha1);
354 struct active_request_slot *slot;
355 struct strbuf buf = STRBUF_INIT;
356 enum object_type type;
357 char hdr[50];
358 void *unpacked;
359 unsigned long len;
360 int hdrlen;
361 ssize_t size;
362 git_zstream stream;
364 unpacked = read_sha1_file(request->obj->sha1, &type, &len);
365 hdrlen = sprintf(hdr, "%s %lu", typename(type), len) + 1;
367 /* Set it up */
368 memset(&stream, 0, sizeof(stream));
369 git_deflate_init(&stream, zlib_compression_level);
370 size = git_deflate_bound(&stream, len + hdrlen);
371 strbuf_init(&request->buffer.buf, size);
372 request->buffer.posn = 0;
374 /* Compress it */
375 stream.next_out = (unsigned char *)request->buffer.buf.buf;
376 stream.avail_out = size;
378 /* First header.. */
379 stream.next_in = (void *)hdr;
380 stream.avail_in = hdrlen;
381 while (git_deflate(&stream, 0) == Z_OK)
382 ; /* nothing */
384 /* Then the data itself.. */
385 stream.next_in = unpacked;
386 stream.avail_in = len;
387 while (git_deflate(&stream, Z_FINISH) == Z_OK)
388 ; /* nothing */
389 git_deflate_end(&stream);
390 free(unpacked);
392 request->buffer.buf.len = stream.total_out;
394 strbuf_addstr(&buf, "Destination: ");
395 append_remote_object_url(&buf, repo->url, hex, 0);
396 request->dest = strbuf_detach(&buf, NULL);
398 append_remote_object_url(&buf, repo->url, hex, 0);
399 strbuf_add(&buf, request->lock->tmpfile_suffix, 41);
400 request->url = strbuf_detach(&buf, NULL);
402 slot = get_active_slot();
403 slot->callback_func = process_response;
404 slot->callback_data = request;
405 curl_setup_http(slot->curl, request->url, DAV_PUT,
406 &request->buffer, fwrite_null);
408 if (start_active_slot(slot)) {
409 request->slot = slot;
410 request->state = RUN_PUT;
411 } else {
412 request->state = ABORTED;
413 free(request->url);
414 request->url = NULL;
418 static void start_move(struct transfer_request *request)
420 struct active_request_slot *slot;
421 struct curl_slist *dav_headers = NULL;
423 slot = get_active_slot();
424 slot->callback_func = process_response;
425 slot->callback_data = request;
426 curl_setup_http_get(slot->curl, request->url, DAV_MOVE);
427 dav_headers = curl_slist_append(dav_headers, request->dest);
428 dav_headers = curl_slist_append(dav_headers, "Overwrite: T");
429 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
431 if (start_active_slot(slot)) {
432 request->slot = slot;
433 request->state = RUN_MOVE;
434 } else {
435 request->state = ABORTED;
436 free(request->url);
437 request->url = NULL;
441 static int refresh_lock(struct remote_lock *lock)
443 struct active_request_slot *slot;
444 struct slot_results results;
445 struct curl_slist *dav_headers;
446 int rc = 0;
448 lock->refreshing = 1;
450 dav_headers = get_dav_token_headers(lock, DAV_HEADER_IF | DAV_HEADER_TIMEOUT);
452 slot = get_active_slot();
453 slot->results = &results;
454 curl_setup_http_get(slot->curl, lock->url, DAV_LOCK);
455 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
457 if (start_active_slot(slot)) {
458 run_active_slot(slot);
459 if (results.curl_result != CURLE_OK) {
460 fprintf(stderr, "LOCK HTTP error %ld\n",
461 results.http_code);
462 } else {
463 lock->start_time = time(NULL);
464 rc = 1;
468 lock->refreshing = 0;
469 curl_slist_free_all(dav_headers);
471 return rc;
474 static void check_locks(void)
476 struct remote_lock *lock = repo->locks;
477 time_t current_time = time(NULL);
478 int time_remaining;
480 while (lock) {
481 time_remaining = lock->start_time + lock->timeout -
482 current_time;
483 if (!lock->refreshing && time_remaining < LOCK_REFRESH) {
484 if (!refresh_lock(lock)) {
485 fprintf(stderr,
486 "Unable to refresh lock for %s\n",
487 lock->url);
488 aborted = 1;
489 return;
492 lock = lock->next;
496 static void release_request(struct transfer_request *request)
498 struct transfer_request *entry = request_queue_head;
500 if (request == request_queue_head) {
501 request_queue_head = request->next;
502 } else {
503 while (entry->next != NULL && entry->next != request)
504 entry = entry->next;
505 if (entry->next == request)
506 entry->next = entry->next->next;
509 free(request->url);
510 free(request);
513 static void finish_request(struct transfer_request *request)
515 struct http_pack_request *preq;
516 struct http_object_request *obj_req;
518 request->curl_result = request->slot->curl_result;
519 request->http_code = request->slot->http_code;
520 request->slot = NULL;
522 /* Keep locks active */
523 check_locks();
525 if (request->headers != NULL)
526 curl_slist_free_all(request->headers);
528 /* URL is reused for MOVE after PUT */
529 if (request->state != RUN_PUT) {
530 free(request->url);
531 request->url = NULL;
534 if (request->state == RUN_MKCOL) {
535 if (request->curl_result == CURLE_OK ||
536 request->http_code == 405) {
537 remote_dir_exists[request->obj->sha1[0]] = 1;
538 start_put(request);
539 } else {
540 fprintf(stderr, "MKCOL %s failed, aborting (%d/%ld)\n",
541 sha1_to_hex(request->obj->sha1),
542 request->curl_result, request->http_code);
543 request->state = ABORTED;
544 aborted = 1;
546 } else if (request->state == RUN_PUT) {
547 if (request->curl_result == CURLE_OK) {
548 start_move(request);
549 } else {
550 fprintf(stderr, "PUT %s failed, aborting (%d/%ld)\n",
551 sha1_to_hex(request->obj->sha1),
552 request->curl_result, request->http_code);
553 request->state = ABORTED;
554 aborted = 1;
556 } else if (request->state == RUN_MOVE) {
557 if (request->curl_result == CURLE_OK) {
558 if (push_verbosely)
559 fprintf(stderr, " sent %s\n",
560 sha1_to_hex(request->obj->sha1));
561 request->obj->flags |= REMOTE;
562 release_request(request);
563 } else {
564 fprintf(stderr, "MOVE %s failed, aborting (%d/%ld)\n",
565 sha1_to_hex(request->obj->sha1),
566 request->curl_result, request->http_code);
567 request->state = ABORTED;
568 aborted = 1;
570 } else if (request->state == RUN_FETCH_LOOSE) {
571 obj_req = (struct http_object_request *)request->userData;
573 if (finish_http_object_request(obj_req) == 0)
574 if (obj_req->rename == 0)
575 request->obj->flags |= (LOCAL | REMOTE);
577 /* Try fetching packed if necessary */
578 if (request->obj->flags & LOCAL) {
579 release_http_object_request(obj_req);
580 release_request(request);
581 } else
582 start_fetch_packed(request);
584 } else if (request->state == RUN_FETCH_PACKED) {
585 int fail = 1;
586 if (request->curl_result != CURLE_OK) {
587 fprintf(stderr, "Unable to get pack file %s\n%s",
588 request->url, curl_errorstr);
589 } else {
590 preq = (struct http_pack_request *)request->userData;
592 if (preq) {
593 if (finish_http_pack_request(preq) == 0)
594 fail = 0;
595 release_http_pack_request(preq);
598 if (fail)
599 repo->can_update_info_refs = 0;
600 release_request(request);
604 #ifdef USE_CURL_MULTI
605 static int is_running_queue;
606 static int fill_active_slot(void *unused)
608 struct transfer_request *request;
610 if (aborted || !is_running_queue)
611 return 0;
613 for (request = request_queue_head; request; request = request->next) {
614 if (request->state == NEED_FETCH) {
615 start_fetch_loose(request);
616 return 1;
617 } else if (pushing && request->state == NEED_PUSH) {
618 if (remote_dir_exists[request->obj->sha1[0]] == 1) {
619 start_put(request);
620 } else {
621 start_mkcol(request);
623 return 1;
626 return 0;
628 #endif
630 static void get_remote_object_list(unsigned char parent);
632 static void add_fetch_request(struct object *obj)
634 struct transfer_request *request;
636 check_locks();
639 * Don't fetch the object if it's known to exist locally
640 * or is already in the request queue
642 if (remote_dir_exists[obj->sha1[0]] == -1)
643 get_remote_object_list(obj->sha1[0]);
644 if (obj->flags & (LOCAL | FETCHING))
645 return;
647 obj->flags |= FETCHING;
648 request = xmalloc(sizeof(*request));
649 request->obj = obj;
650 request->url = NULL;
651 request->lock = NULL;
652 request->headers = NULL;
653 request->state = NEED_FETCH;
654 request->next = request_queue_head;
655 request_queue_head = request;
657 #ifdef USE_CURL_MULTI
658 fill_active_slots();
659 step_active_slots();
660 #endif
663 static int add_send_request(struct object *obj, struct remote_lock *lock)
665 struct transfer_request *request;
666 struct packed_git *target;
668 /* Keep locks active */
669 check_locks();
672 * Don't push the object if it's known to exist on the remote
673 * or is already in the request queue
675 if (remote_dir_exists[obj->sha1[0]] == -1)
676 get_remote_object_list(obj->sha1[0]);
677 if (obj->flags & (REMOTE | PUSHING))
678 return 0;
679 target = find_sha1_pack(obj->sha1, repo->packs);
680 if (target) {
681 obj->flags |= REMOTE;
682 return 0;
685 obj->flags |= PUSHING;
686 request = xmalloc(sizeof(*request));
687 request->obj = obj;
688 request->url = NULL;
689 request->lock = lock;
690 request->headers = NULL;
691 request->state = NEED_PUSH;
692 request->next = request_queue_head;
693 request_queue_head = request;
695 #ifdef USE_CURL_MULTI
696 fill_active_slots();
697 step_active_slots();
698 #endif
700 return 1;
703 static int fetch_indices(void)
705 int ret;
707 if (push_verbosely)
708 fprintf(stderr, "Getting pack list\n");
710 switch (http_get_info_packs(repo->url, &repo->packs)) {
711 case HTTP_OK:
712 case HTTP_MISSING_TARGET:
713 ret = 0;
714 break;
715 default:
716 ret = -1;
719 return ret;
722 static void one_remote_object(const char *hex)
724 unsigned char sha1[20];
725 struct object *obj;
727 if (get_sha1_hex(hex, sha1) != 0)
728 return;
730 obj = lookup_object(sha1);
731 if (!obj)
732 obj = parse_object(sha1);
734 /* Ignore remote objects that don't exist locally */
735 if (!obj)
736 return;
738 obj->flags |= REMOTE;
739 if (!object_list_contains(objects, obj))
740 object_list_insert(obj, &objects);
743 static void handle_lockprop_ctx(struct xml_ctx *ctx, int tag_closed)
745 int *lock_flags = (int *)ctx->userData;
747 if (tag_closed) {
748 if (!strcmp(ctx->name, DAV_CTX_LOCKENTRY)) {
749 if ((*lock_flags & DAV_PROP_LOCKEX) &&
750 (*lock_flags & DAV_PROP_LOCKWR)) {
751 *lock_flags |= DAV_LOCK_OK;
753 *lock_flags &= DAV_LOCK_OK;
754 } else if (!strcmp(ctx->name, DAV_CTX_LOCKTYPE_WRITE)) {
755 *lock_flags |= DAV_PROP_LOCKWR;
756 } else if (!strcmp(ctx->name, DAV_CTX_LOCKTYPE_EXCLUSIVE)) {
757 *lock_flags |= DAV_PROP_LOCKEX;
762 static void handle_new_lock_ctx(struct xml_ctx *ctx, int tag_closed)
764 struct remote_lock *lock = (struct remote_lock *)ctx->userData;
765 git_SHA_CTX sha_ctx;
766 unsigned char lock_token_sha1[20];
768 if (tag_closed && ctx->cdata) {
769 if (!strcmp(ctx->name, DAV_ACTIVELOCK_OWNER)) {
770 lock->owner = xstrdup(ctx->cdata);
771 } else if (!strcmp(ctx->name, DAV_ACTIVELOCK_TIMEOUT)) {
772 if (starts_with(ctx->cdata, "Second-"))
773 lock->timeout =
774 strtol(ctx->cdata + 7, NULL, 10);
775 } else if (!strcmp(ctx->name, DAV_ACTIVELOCK_TOKEN)) {
776 lock->token = xstrdup(ctx->cdata);
778 git_SHA1_Init(&sha_ctx);
779 git_SHA1_Update(&sha_ctx, lock->token, strlen(lock->token));
780 git_SHA1_Final(lock_token_sha1, &sha_ctx);
782 lock->tmpfile_suffix[0] = '_';
783 memcpy(lock->tmpfile_suffix + 1, sha1_to_hex(lock_token_sha1), 40);
788 static void one_remote_ref(const char *refname);
790 static void
791 xml_start_tag(void *userData, const char *name, const char **atts)
793 struct xml_ctx *ctx = (struct xml_ctx *)userData;
794 const char *c = strchr(name, ':');
795 int new_len;
797 if (c == NULL)
798 c = name;
799 else
800 c++;
802 new_len = strlen(ctx->name) + strlen(c) + 2;
804 if (new_len > ctx->len) {
805 ctx->name = xrealloc(ctx->name, new_len);
806 ctx->len = new_len;
808 strcat(ctx->name, ".");
809 strcat(ctx->name, c);
811 free(ctx->cdata);
812 ctx->cdata = NULL;
814 ctx->userFunc(ctx, 0);
817 static void
818 xml_end_tag(void *userData, const char *name)
820 struct xml_ctx *ctx = (struct xml_ctx *)userData;
821 const char *c = strchr(name, ':');
822 char *ep;
824 ctx->userFunc(ctx, 1);
826 if (c == NULL)
827 c = name;
828 else
829 c++;
831 ep = ctx->name + strlen(ctx->name) - strlen(c) - 1;
832 *ep = 0;
835 static void
836 xml_cdata(void *userData, const XML_Char *s, int len)
838 struct xml_ctx *ctx = (struct xml_ctx *)userData;
839 free(ctx->cdata);
840 ctx->cdata = xmemdupz(s, len);
843 static struct remote_lock *lock_remote(const char *path, long timeout)
845 struct active_request_slot *slot;
846 struct slot_results results;
847 struct buffer out_buffer = { STRBUF_INIT, 0 };
848 struct strbuf in_buffer = STRBUF_INIT;
849 char *url;
850 char *ep;
851 char timeout_header[25];
852 struct remote_lock *lock = NULL;
853 struct curl_slist *dav_headers = NULL;
854 struct xml_ctx ctx;
855 char *escaped;
857 url = xstrfmt("%s%s", repo->url, path);
859 /* Make sure leading directories exist for the remote ref */
860 ep = strchr(url + strlen(repo->url) + 1, '/');
861 while (ep) {
862 char saved_character = ep[1];
863 ep[1] = '\0';
864 slot = get_active_slot();
865 slot->results = &results;
866 curl_setup_http_get(slot->curl, url, DAV_MKCOL);
867 if (start_active_slot(slot)) {
868 run_active_slot(slot);
869 if (results.curl_result != CURLE_OK &&
870 results.http_code != 405) {
871 fprintf(stderr,
872 "Unable to create branch path %s\n",
873 url);
874 free(url);
875 return NULL;
877 } else {
878 fprintf(stderr, "Unable to start MKCOL request\n");
879 free(url);
880 return NULL;
882 ep[1] = saved_character;
883 ep = strchr(ep + 1, '/');
886 escaped = xml_entities(ident_default_email());
887 strbuf_addf(&out_buffer.buf, LOCK_REQUEST, escaped);
888 free(escaped);
890 sprintf(timeout_header, "Timeout: Second-%ld", timeout);
891 dav_headers = curl_slist_append(dav_headers, timeout_header);
892 dav_headers = curl_slist_append(dav_headers, "Content-Type: text/xml");
894 slot = get_active_slot();
895 slot->results = &results;
896 curl_setup_http(slot->curl, url, DAV_LOCK, &out_buffer, fwrite_buffer);
897 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
898 curl_easy_setopt(slot->curl, CURLOPT_FILE, &in_buffer);
900 lock = xcalloc(1, sizeof(*lock));
901 lock->timeout = -1;
903 if (start_active_slot(slot)) {
904 run_active_slot(slot);
905 if (results.curl_result == CURLE_OK) {
906 XML_Parser parser = XML_ParserCreate(NULL);
907 enum XML_Status result;
908 ctx.name = xcalloc(10, 1);
909 ctx.len = 0;
910 ctx.cdata = NULL;
911 ctx.userFunc = handle_new_lock_ctx;
912 ctx.userData = lock;
913 XML_SetUserData(parser, &ctx);
914 XML_SetElementHandler(parser, xml_start_tag,
915 xml_end_tag);
916 XML_SetCharacterDataHandler(parser, xml_cdata);
917 result = XML_Parse(parser, in_buffer.buf,
918 in_buffer.len, 1);
919 free(ctx.name);
920 if (result != XML_STATUS_OK) {
921 fprintf(stderr, "XML error: %s\n",
922 XML_ErrorString(
923 XML_GetErrorCode(parser)));
924 lock->timeout = -1;
926 XML_ParserFree(parser);
928 } else {
929 fprintf(stderr, "Unable to start LOCK request\n");
932 curl_slist_free_all(dav_headers);
933 strbuf_release(&out_buffer.buf);
934 strbuf_release(&in_buffer);
936 if (lock->token == NULL || lock->timeout <= 0) {
937 free(lock->token);
938 free(lock->owner);
939 free(url);
940 free(lock);
941 lock = NULL;
942 } else {
943 lock->url = url;
944 lock->start_time = time(NULL);
945 lock->next = repo->locks;
946 repo->locks = lock;
949 return lock;
952 static int unlock_remote(struct remote_lock *lock)
954 struct active_request_slot *slot;
955 struct slot_results results;
956 struct remote_lock *prev = repo->locks;
957 struct curl_slist *dav_headers;
958 int rc = 0;
960 dav_headers = get_dav_token_headers(lock, DAV_HEADER_LOCK);
962 slot = get_active_slot();
963 slot->results = &results;
964 curl_setup_http_get(slot->curl, lock->url, DAV_UNLOCK);
965 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
967 if (start_active_slot(slot)) {
968 run_active_slot(slot);
969 if (results.curl_result == CURLE_OK)
970 rc = 1;
971 else
972 fprintf(stderr, "UNLOCK HTTP error %ld\n",
973 results.http_code);
974 } else {
975 fprintf(stderr, "Unable to start UNLOCK request\n");
978 curl_slist_free_all(dav_headers);
980 if (repo->locks == lock) {
981 repo->locks = lock->next;
982 } else {
983 while (prev && prev->next != lock)
984 prev = prev->next;
985 if (prev)
986 prev->next = prev->next->next;
989 free(lock->owner);
990 free(lock->url);
991 free(lock->token);
992 free(lock);
994 return rc;
997 static void remove_locks(void)
999 struct remote_lock *lock = repo->locks;
1001 fprintf(stderr, "Removing remote locks...\n");
1002 while (lock) {
1003 struct remote_lock *next = lock->next;
1004 unlock_remote(lock);
1005 lock = next;
1009 static void remove_locks_on_signal(int signo)
1011 remove_locks();
1012 sigchain_pop(signo);
1013 raise(signo);
1016 static void remote_ls(const char *path, int flags,
1017 void (*userFunc)(struct remote_ls_ctx *ls),
1018 void *userData);
1020 static void process_ls_object(struct remote_ls_ctx *ls)
1022 unsigned int *parent = (unsigned int *)ls->userData;
1023 char *path = ls->dentry_name;
1024 char *obj_hex;
1026 if (!strcmp(ls->path, ls->dentry_name) && (ls->flags & IS_DIR)) {
1027 remote_dir_exists[*parent] = 1;
1028 return;
1031 if (strlen(path) != 49)
1032 return;
1033 path += 8;
1034 obj_hex = xmalloc(strlen(path));
1035 /* NB: path is not null-terminated, can not use strlcpy here */
1036 memcpy(obj_hex, path, 2);
1037 strcpy(obj_hex + 2, path + 3);
1038 one_remote_object(obj_hex);
1039 free(obj_hex);
1042 static void process_ls_ref(struct remote_ls_ctx *ls)
1044 if (!strcmp(ls->path, ls->dentry_name) && (ls->dentry_flags & IS_DIR)) {
1045 fprintf(stderr, " %s\n", ls->dentry_name);
1046 return;
1049 if (!(ls->dentry_flags & IS_DIR))
1050 one_remote_ref(ls->dentry_name);
1053 static void handle_remote_ls_ctx(struct xml_ctx *ctx, int tag_closed)
1055 struct remote_ls_ctx *ls = (struct remote_ls_ctx *)ctx->userData;
1057 if (tag_closed) {
1058 if (!strcmp(ctx->name, DAV_PROPFIND_RESP) && ls->dentry_name) {
1059 if (ls->dentry_flags & IS_DIR) {
1061 /* ensure collection names end with slash */
1062 str_end_url_with_slash(ls->dentry_name, &ls->dentry_name);
1064 if (ls->flags & PROCESS_DIRS) {
1065 ls->userFunc(ls);
1067 if (strcmp(ls->dentry_name, ls->path) &&
1068 ls->flags & RECURSIVE) {
1069 remote_ls(ls->dentry_name,
1070 ls->flags,
1071 ls->userFunc,
1072 ls->userData);
1074 } else if (ls->flags & PROCESS_FILES) {
1075 ls->userFunc(ls);
1077 } else if (!strcmp(ctx->name, DAV_PROPFIND_NAME) && ctx->cdata) {
1078 char *path = ctx->cdata;
1079 if (*ctx->cdata == 'h') {
1080 path = strstr(path, "//");
1081 if (path) {
1082 path = strchr(path+2, '/');
1085 if (path) {
1086 const char *url = repo->url;
1087 if (repo->path)
1088 url = repo->path;
1089 if (strncmp(path, url, repo->path_len))
1090 error("Parsed path '%s' does not match url: '%s'",
1091 path, url);
1092 else {
1093 path += repo->path_len;
1094 ls->dentry_name = xstrdup(path);
1097 } else if (!strcmp(ctx->name, DAV_PROPFIND_COLLECTION)) {
1098 ls->dentry_flags |= IS_DIR;
1100 } else if (!strcmp(ctx->name, DAV_PROPFIND_RESP)) {
1101 free(ls->dentry_name);
1102 ls->dentry_name = NULL;
1103 ls->dentry_flags = 0;
1108 * NEEDSWORK: remote_ls() ignores info/refs on the remote side. But it
1109 * should _only_ heed the information from that file, instead of trying to
1110 * determine the refs from the remote file system (badly: it does not even
1111 * know about packed-refs).
1113 static void remote_ls(const char *path, int flags,
1114 void (*userFunc)(struct remote_ls_ctx *ls),
1115 void *userData)
1117 char *url = xstrfmt("%s%s", repo->url, path);
1118 struct active_request_slot *slot;
1119 struct slot_results results;
1120 struct strbuf in_buffer = STRBUF_INIT;
1121 struct buffer out_buffer = { STRBUF_INIT, 0 };
1122 struct curl_slist *dav_headers = NULL;
1123 struct xml_ctx ctx;
1124 struct remote_ls_ctx ls;
1126 ls.flags = flags;
1127 ls.path = xstrdup(path);
1128 ls.dentry_name = NULL;
1129 ls.dentry_flags = 0;
1130 ls.userData = userData;
1131 ls.userFunc = userFunc;
1133 strbuf_addf(&out_buffer.buf, PROPFIND_ALL_REQUEST);
1135 dav_headers = curl_slist_append(dav_headers, "Depth: 1");
1136 dav_headers = curl_slist_append(dav_headers, "Content-Type: text/xml");
1138 slot = get_active_slot();
1139 slot->results = &results;
1140 curl_setup_http(slot->curl, url, DAV_PROPFIND,
1141 &out_buffer, fwrite_buffer);
1142 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1143 curl_easy_setopt(slot->curl, CURLOPT_FILE, &in_buffer);
1145 if (start_active_slot(slot)) {
1146 run_active_slot(slot);
1147 if (results.curl_result == CURLE_OK) {
1148 XML_Parser parser = XML_ParserCreate(NULL);
1149 enum XML_Status result;
1150 ctx.name = xcalloc(10, 1);
1151 ctx.len = 0;
1152 ctx.cdata = NULL;
1153 ctx.userFunc = handle_remote_ls_ctx;
1154 ctx.userData = &ls;
1155 XML_SetUserData(parser, &ctx);
1156 XML_SetElementHandler(parser, xml_start_tag,
1157 xml_end_tag);
1158 XML_SetCharacterDataHandler(parser, xml_cdata);
1159 result = XML_Parse(parser, in_buffer.buf,
1160 in_buffer.len, 1);
1161 free(ctx.name);
1163 if (result != XML_STATUS_OK) {
1164 fprintf(stderr, "XML error: %s\n",
1165 XML_ErrorString(
1166 XML_GetErrorCode(parser)));
1168 XML_ParserFree(parser);
1170 } else {
1171 fprintf(stderr, "Unable to start PROPFIND request\n");
1174 free(ls.path);
1175 free(url);
1176 strbuf_release(&out_buffer.buf);
1177 strbuf_release(&in_buffer);
1178 curl_slist_free_all(dav_headers);
1181 static void get_remote_object_list(unsigned char parent)
1183 char path[] = "objects/XX/";
1184 static const char hex[] = "0123456789abcdef";
1185 unsigned int val = parent;
1187 path[8] = hex[val >> 4];
1188 path[9] = hex[val & 0xf];
1189 remote_dir_exists[val] = 0;
1190 remote_ls(path, (PROCESS_FILES | PROCESS_DIRS),
1191 process_ls_object, &val);
1194 static int locking_available(void)
1196 struct active_request_slot *slot;
1197 struct slot_results results;
1198 struct strbuf in_buffer = STRBUF_INIT;
1199 struct buffer out_buffer = { STRBUF_INIT, 0 };
1200 struct curl_slist *dav_headers = NULL;
1201 struct xml_ctx ctx;
1202 int lock_flags = 0;
1203 char *escaped;
1205 escaped = xml_entities(repo->url);
1206 strbuf_addf(&out_buffer.buf, PROPFIND_SUPPORTEDLOCK_REQUEST, escaped);
1207 free(escaped);
1209 dav_headers = curl_slist_append(dav_headers, "Depth: 0");
1210 dav_headers = curl_slist_append(dav_headers, "Content-Type: text/xml");
1212 slot = get_active_slot();
1213 slot->results = &results;
1214 curl_setup_http(slot->curl, repo->url, DAV_PROPFIND,
1215 &out_buffer, fwrite_buffer);
1216 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1217 curl_easy_setopt(slot->curl, CURLOPT_FILE, &in_buffer);
1219 if (start_active_slot(slot)) {
1220 run_active_slot(slot);
1221 if (results.curl_result == CURLE_OK) {
1222 XML_Parser parser = XML_ParserCreate(NULL);
1223 enum XML_Status result;
1224 ctx.name = xcalloc(10, 1);
1225 ctx.len = 0;
1226 ctx.cdata = NULL;
1227 ctx.userFunc = handle_lockprop_ctx;
1228 ctx.userData = &lock_flags;
1229 XML_SetUserData(parser, &ctx);
1230 XML_SetElementHandler(parser, xml_start_tag,
1231 xml_end_tag);
1232 result = XML_Parse(parser, in_buffer.buf,
1233 in_buffer.len, 1);
1234 free(ctx.name);
1236 if (result != XML_STATUS_OK) {
1237 fprintf(stderr, "XML error: %s\n",
1238 XML_ErrorString(
1239 XML_GetErrorCode(parser)));
1240 lock_flags = 0;
1242 XML_ParserFree(parser);
1243 if (!lock_flags)
1244 error("no DAV locking support on %s",
1245 repo->url);
1247 } else {
1248 error("Cannot access URL %s, return code %d",
1249 repo->url, results.curl_result);
1250 lock_flags = 0;
1252 } else {
1253 error("Unable to start PROPFIND request on %s", repo->url);
1256 strbuf_release(&out_buffer.buf);
1257 strbuf_release(&in_buffer);
1258 curl_slist_free_all(dav_headers);
1260 return lock_flags;
1263 static struct object_list **add_one_object(struct object *obj, struct object_list **p)
1265 struct object_list *entry = xmalloc(sizeof(struct object_list));
1266 entry->item = obj;
1267 entry->next = *p;
1268 *p = entry;
1269 return &entry->next;
1272 static struct object_list **process_blob(struct blob *blob,
1273 struct object_list **p,
1274 struct name_path *path,
1275 const char *name)
1277 struct object *obj = &blob->object;
1279 obj->flags |= LOCAL;
1281 if (obj->flags & (UNINTERESTING | SEEN))
1282 return p;
1284 obj->flags |= SEEN;
1285 return add_one_object(obj, p);
1288 static struct object_list **process_tree(struct tree *tree,
1289 struct object_list **p,
1290 struct name_path *path,
1291 const char *name)
1293 struct object *obj = &tree->object;
1294 struct tree_desc desc;
1295 struct name_entry entry;
1296 struct name_path me;
1298 obj->flags |= LOCAL;
1300 if (obj->flags & (UNINTERESTING | SEEN))
1301 return p;
1302 if (parse_tree(tree) < 0)
1303 die("bad tree object %s", sha1_to_hex(obj->sha1));
1305 obj->flags |= SEEN;
1306 name = xstrdup(name);
1307 p = add_one_object(obj, p);
1308 me.up = path;
1309 me.elem = name;
1310 me.elem_len = strlen(name);
1312 init_tree_desc(&desc, tree->buffer, tree->size);
1314 while (tree_entry(&desc, &entry))
1315 switch (object_type(entry.mode)) {
1316 case OBJ_TREE:
1317 p = process_tree(lookup_tree(entry.sha1), p, &me, name);
1318 break;
1319 case OBJ_BLOB:
1320 p = process_blob(lookup_blob(entry.sha1), p, &me, name);
1321 break;
1322 default:
1323 /* Subproject commit - not in this repository */
1324 break;
1327 free_tree_buffer(tree);
1328 return p;
1331 static int get_delta(struct rev_info *revs, struct remote_lock *lock)
1333 int i;
1334 struct commit *commit;
1335 struct object_list **p = &objects;
1336 int count = 0;
1338 while ((commit = get_revision(revs)) != NULL) {
1339 p = process_tree(commit->tree, p, NULL, "");
1340 commit->object.flags |= LOCAL;
1341 if (!(commit->object.flags & UNINTERESTING))
1342 count += add_send_request(&commit->object, lock);
1345 for (i = 0; i < revs->pending.nr; i++) {
1346 struct object_array_entry *entry = revs->pending.objects + i;
1347 struct object *obj = entry->item;
1348 const char *name = entry->name;
1350 if (obj->flags & (UNINTERESTING | SEEN))
1351 continue;
1352 if (obj->type == OBJ_TAG) {
1353 obj->flags |= SEEN;
1354 p = add_one_object(obj, p);
1355 continue;
1357 if (obj->type == OBJ_TREE) {
1358 p = process_tree((struct tree *)obj, p, NULL, name);
1359 continue;
1361 if (obj->type == OBJ_BLOB) {
1362 p = process_blob((struct blob *)obj, p, NULL, name);
1363 continue;
1365 die("unknown pending object %s (%s)", sha1_to_hex(obj->sha1), name);
1368 while (objects) {
1369 if (!(objects->item->flags & UNINTERESTING))
1370 count += add_send_request(objects->item, lock);
1371 objects = objects->next;
1374 return count;
1377 static int update_remote(unsigned char *sha1, struct remote_lock *lock)
1379 struct active_request_slot *slot;
1380 struct slot_results results;
1381 struct buffer out_buffer = { STRBUF_INIT, 0 };
1382 struct curl_slist *dav_headers;
1384 dav_headers = get_dav_token_headers(lock, DAV_HEADER_IF);
1386 strbuf_addf(&out_buffer.buf, "%s\n", sha1_to_hex(sha1));
1388 slot = get_active_slot();
1389 slot->results = &results;
1390 curl_setup_http(slot->curl, lock->url, DAV_PUT,
1391 &out_buffer, fwrite_null);
1392 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1394 if (start_active_slot(slot)) {
1395 run_active_slot(slot);
1396 strbuf_release(&out_buffer.buf);
1397 if (results.curl_result != CURLE_OK) {
1398 fprintf(stderr,
1399 "PUT error: curl result=%d, HTTP code=%ld\n",
1400 results.curl_result, results.http_code);
1401 /* We should attempt recovery? */
1402 return 0;
1404 } else {
1405 strbuf_release(&out_buffer.buf);
1406 fprintf(stderr, "Unable to start PUT request\n");
1407 return 0;
1410 return 1;
1413 static struct ref *remote_refs;
1415 static void one_remote_ref(const char *refname)
1417 struct ref *ref;
1418 struct object *obj;
1420 ref = alloc_ref(refname);
1422 if (http_fetch_ref(repo->url, ref) != 0) {
1423 fprintf(stderr,
1424 "Unable to fetch ref %s from %s\n",
1425 refname, repo->url);
1426 free(ref);
1427 return;
1431 * Fetch a copy of the object if it doesn't exist locally - it
1432 * may be required for updating server info later.
1434 if (repo->can_update_info_refs && !has_sha1_file(ref->old_sha1)) {
1435 obj = lookup_unknown_object(ref->old_sha1);
1436 if (obj) {
1437 fprintf(stderr, " fetch %s for %s\n",
1438 sha1_to_hex(ref->old_sha1), refname);
1439 add_fetch_request(obj);
1443 ref->next = remote_refs;
1444 remote_refs = ref;
1447 static void get_dav_remote_heads(void)
1449 remote_ls("refs/", (PROCESS_FILES | PROCESS_DIRS | RECURSIVE), process_ls_ref, NULL);
1452 static void add_remote_info_ref(struct remote_ls_ctx *ls)
1454 struct strbuf *buf = (struct strbuf *)ls->userData;
1455 struct object *o;
1456 int len;
1457 char *ref_info;
1458 struct ref *ref;
1460 ref = alloc_ref(ls->dentry_name);
1462 if (http_fetch_ref(repo->url, ref) != 0) {
1463 fprintf(stderr,
1464 "Unable to fetch ref %s from %s\n",
1465 ls->dentry_name, repo->url);
1466 aborted = 1;
1467 free(ref);
1468 return;
1471 o = parse_object(ref->old_sha1);
1472 if (!o) {
1473 fprintf(stderr,
1474 "Unable to parse object %s for remote ref %s\n",
1475 sha1_to_hex(ref->old_sha1), ls->dentry_name);
1476 aborted = 1;
1477 free(ref);
1478 return;
1481 len = strlen(ls->dentry_name) + 42;
1482 ref_info = xcalloc(len + 1, 1);
1483 sprintf(ref_info, "%s %s\n",
1484 sha1_to_hex(ref->old_sha1), ls->dentry_name);
1485 fwrite_buffer(ref_info, 1, len, buf);
1486 free(ref_info);
1488 if (o->type == OBJ_TAG) {
1489 o = deref_tag(o, ls->dentry_name, 0);
1490 if (o) {
1491 len = strlen(ls->dentry_name) + 45;
1492 ref_info = xcalloc(len + 1, 1);
1493 sprintf(ref_info, "%s %s^{}\n",
1494 sha1_to_hex(o->sha1), ls->dentry_name);
1495 fwrite_buffer(ref_info, 1, len, buf);
1496 free(ref_info);
1499 free(ref);
1502 static void update_remote_info_refs(struct remote_lock *lock)
1504 struct buffer buffer = { STRBUF_INIT, 0 };
1505 struct active_request_slot *slot;
1506 struct slot_results results;
1507 struct curl_slist *dav_headers;
1509 remote_ls("refs/", (PROCESS_FILES | RECURSIVE),
1510 add_remote_info_ref, &buffer.buf);
1511 if (!aborted) {
1512 dav_headers = get_dav_token_headers(lock, DAV_HEADER_IF);
1514 slot = get_active_slot();
1515 slot->results = &results;
1516 curl_setup_http(slot->curl, lock->url, DAV_PUT,
1517 &buffer, fwrite_null);
1518 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1520 if (start_active_slot(slot)) {
1521 run_active_slot(slot);
1522 if (results.curl_result != CURLE_OK) {
1523 fprintf(stderr,
1524 "PUT error: curl result=%d, HTTP code=%ld\n",
1525 results.curl_result, results.http_code);
1529 strbuf_release(&buffer.buf);
1532 static int remote_exists(const char *path)
1534 char *url = xstrfmt("%s%s", repo->url, path);
1535 int ret;
1538 switch (http_get_strbuf(url, NULL, NULL)) {
1539 case HTTP_OK:
1540 ret = 1;
1541 break;
1542 case HTTP_MISSING_TARGET:
1543 ret = 0;
1544 break;
1545 case HTTP_ERROR:
1546 error("unable to access '%s': %s", url, curl_errorstr);
1547 default:
1548 ret = -1;
1550 free(url);
1551 return ret;
1554 static void fetch_symref(const char *path, char **symref, unsigned char *sha1)
1556 char *url = xstrfmt("%s%s", repo->url, path);
1557 struct strbuf buffer = STRBUF_INIT;
1559 if (http_get_strbuf(url, &buffer, NULL) != HTTP_OK)
1560 die("Couldn't get %s for remote symref\n%s", url,
1561 curl_errorstr);
1562 free(url);
1564 free(*symref);
1565 *symref = NULL;
1566 hashclr(sha1);
1568 if (buffer.len == 0)
1569 return;
1571 /* If it's a symref, set the refname; otherwise try for a sha1 */
1572 if (starts_with((char *)buffer.buf, "ref: ")) {
1573 *symref = xmemdupz((char *)buffer.buf + 5, buffer.len - 6);
1574 } else {
1575 get_sha1_hex(buffer.buf, sha1);
1578 strbuf_release(&buffer);
1581 static int verify_merge_base(unsigned char *head_sha1, struct ref *remote)
1583 struct commit *head = lookup_commit_or_die(head_sha1, "HEAD");
1584 struct commit *branch = lookup_commit_or_die(remote->old_sha1, remote->name);
1586 return in_merge_bases(branch, head);
1589 static int delete_remote_branch(const char *pattern, int force)
1591 struct ref *refs = remote_refs;
1592 struct ref *remote_ref = NULL;
1593 unsigned char head_sha1[20];
1594 char *symref = NULL;
1595 int match;
1596 int patlen = strlen(pattern);
1597 int i;
1598 struct active_request_slot *slot;
1599 struct slot_results results;
1600 char *url;
1602 /* Find the remote branch(es) matching the specified branch name */
1603 for (match = 0; refs; refs = refs->next) {
1604 char *name = refs->name;
1605 int namelen = strlen(name);
1606 if (namelen < patlen ||
1607 memcmp(name + namelen - patlen, pattern, patlen))
1608 continue;
1609 if (namelen != patlen && name[namelen - patlen - 1] != '/')
1610 continue;
1611 match++;
1612 remote_ref = refs;
1614 if (match == 0)
1615 return error("No remote branch matches %s", pattern);
1616 if (match != 1)
1617 return error("More than one remote branch matches %s",
1618 pattern);
1621 * Remote HEAD must be a symref (not exactly foolproof; a remote
1622 * symlink to a symref will look like a symref)
1624 fetch_symref("HEAD", &symref, head_sha1);
1625 if (!symref)
1626 return error("Remote HEAD is not a symref");
1628 /* Remote branch must not be the remote HEAD */
1629 for (i = 0; symref && i < MAXDEPTH; i++) {
1630 if (!strcmp(remote_ref->name, symref))
1631 return error("Remote branch %s is the current HEAD",
1632 remote_ref->name);
1633 fetch_symref(symref, &symref, head_sha1);
1636 /* Run extra sanity checks if delete is not forced */
1637 if (!force) {
1638 /* Remote HEAD must resolve to a known object */
1639 if (symref)
1640 return error("Remote HEAD symrefs too deep");
1641 if (is_null_sha1(head_sha1))
1642 return error("Unable to resolve remote HEAD");
1643 if (!has_sha1_file(head_sha1))
1644 return error("Remote HEAD resolves to object %s\nwhich does not exist locally, perhaps you need to fetch?", sha1_to_hex(head_sha1));
1646 /* Remote branch must resolve to a known object */
1647 if (is_null_sha1(remote_ref->old_sha1))
1648 return error("Unable to resolve remote branch %s",
1649 remote_ref->name);
1650 if (!has_sha1_file(remote_ref->old_sha1))
1651 return error("Remote branch %s resolves to object %s\nwhich does not exist locally, perhaps you need to fetch?", remote_ref->name, sha1_to_hex(remote_ref->old_sha1));
1653 /* Remote branch must be an ancestor of remote HEAD */
1654 if (!verify_merge_base(head_sha1, remote_ref)) {
1655 return error("The branch '%s' is not an ancestor "
1656 "of your current HEAD.\n"
1657 "If you are sure you want to delete it,"
1658 " run:\n\t'git http-push -D %s %s'",
1659 remote_ref->name, repo->url, pattern);
1663 /* Send delete request */
1664 fprintf(stderr, "Removing remote branch '%s'\n", remote_ref->name);
1665 if (dry_run)
1666 return 0;
1667 url = xstrfmt("%s%s", repo->url, remote_ref->name);
1668 slot = get_active_slot();
1669 slot->results = &results;
1670 curl_setup_http_get(slot->curl, url, DAV_DELETE);
1671 if (start_active_slot(slot)) {
1672 run_active_slot(slot);
1673 free(url);
1674 if (results.curl_result != CURLE_OK)
1675 return error("DELETE request failed (%d/%ld)",
1676 results.curl_result, results.http_code);
1677 } else {
1678 free(url);
1679 return error("Unable to start DELETE request");
1682 return 0;
1685 static void run_request_queue(void)
1687 #ifdef USE_CURL_MULTI
1688 is_running_queue = 1;
1689 fill_active_slots();
1690 add_fill_function(NULL, fill_active_slot);
1691 #endif
1692 do {
1693 finish_all_active_slots();
1694 #ifdef USE_CURL_MULTI
1695 fill_active_slots();
1696 #endif
1697 } while (request_queue_head && !aborted);
1699 #ifdef USE_CURL_MULTI
1700 is_running_queue = 0;
1701 #endif
1704 int main(int argc, char **argv)
1706 struct transfer_request *request;
1707 struct transfer_request *next_request;
1708 int nr_refspec = 0;
1709 char **refspec = NULL;
1710 struct remote_lock *ref_lock = NULL;
1711 struct remote_lock *info_ref_lock = NULL;
1712 struct rev_info revs;
1713 int delete_branch = 0;
1714 int force_delete = 0;
1715 int objects_to_send;
1716 int rc = 0;
1717 int i;
1718 int new_refs;
1719 struct ref *ref, *local_refs;
1721 git_setup_gettext();
1723 git_extract_argv0_path(argv[0]);
1725 repo = xcalloc(1, sizeof(*repo));
1727 argv++;
1728 for (i = 1; i < argc; i++, argv++) {
1729 char *arg = *argv;
1731 if (*arg == '-') {
1732 if (!strcmp(arg, "--all")) {
1733 push_all = MATCH_REFS_ALL;
1734 continue;
1736 if (!strcmp(arg, "--force")) {
1737 force_all = 1;
1738 continue;
1740 if (!strcmp(arg, "--dry-run")) {
1741 dry_run = 1;
1742 continue;
1744 if (!strcmp(arg, "--helper-status")) {
1745 helper_status = 1;
1746 continue;
1748 if (!strcmp(arg, "--verbose")) {
1749 push_verbosely = 1;
1750 http_is_verbose = 1;
1751 continue;
1753 if (!strcmp(arg, "-d")) {
1754 delete_branch = 1;
1755 continue;
1757 if (!strcmp(arg, "-D")) {
1758 delete_branch = 1;
1759 force_delete = 1;
1760 continue;
1762 if (!strcmp(arg, "-h"))
1763 usage(http_push_usage);
1765 if (!repo->url) {
1766 char *path = strstr(arg, "//");
1767 str_end_url_with_slash(arg, &repo->url);
1768 repo->path_len = strlen(repo->url);
1769 if (path) {
1770 repo->path = strchr(path+2, '/');
1771 if (repo->path)
1772 repo->path_len = strlen(repo->path);
1774 continue;
1776 refspec = argv;
1777 nr_refspec = argc - i;
1778 break;
1781 #ifndef USE_CURL_MULTI
1782 die("git-push is not available for http/https repository when not compiled with USE_CURL_MULTI");
1783 #endif
1785 if (!repo->url)
1786 usage(http_push_usage);
1788 if (delete_branch && nr_refspec != 1)
1789 die("You must specify only one branch name when deleting a remote branch");
1791 setup_git_directory();
1793 memset(remote_dir_exists, -1, 256);
1795 http_init(NULL, repo->url, 1);
1797 #ifdef USE_CURL_MULTI
1798 is_running_queue = 0;
1799 #endif
1801 /* Verify DAV compliance/lock support */
1802 if (!locking_available()) {
1803 rc = 1;
1804 goto cleanup;
1807 sigchain_push_common(remove_locks_on_signal);
1809 /* Check whether the remote has server info files */
1810 repo->can_update_info_refs = 0;
1811 repo->has_info_refs = remote_exists("info/refs");
1812 repo->has_info_packs = remote_exists("objects/info/packs");
1813 if (repo->has_info_refs) {
1814 info_ref_lock = lock_remote("info/refs", LOCK_TIME);
1815 if (info_ref_lock)
1816 repo->can_update_info_refs = 1;
1817 else {
1818 error("cannot lock existing info/refs");
1819 rc = 1;
1820 goto cleanup;
1823 if (repo->has_info_packs)
1824 fetch_indices();
1826 /* Get a list of all local and remote heads to validate refspecs */
1827 local_refs = get_local_heads();
1828 fprintf(stderr, "Fetching remote heads...\n");
1829 get_dav_remote_heads();
1830 run_request_queue();
1832 /* Remove a remote branch if -d or -D was specified */
1833 if (delete_branch) {
1834 if (delete_remote_branch(refspec[0], force_delete) == -1) {
1835 fprintf(stderr, "Unable to delete remote branch %s\n",
1836 refspec[0]);
1837 if (helper_status)
1838 printf("error %s cannot remove\n", refspec[0]);
1840 goto cleanup;
1843 /* match them up */
1844 if (match_push_refs(local_refs, &remote_refs,
1845 nr_refspec, (const char **) refspec, push_all)) {
1846 rc = -1;
1847 goto cleanup;
1849 if (!remote_refs) {
1850 fprintf(stderr, "No refs in common and none specified; doing nothing.\n");
1851 if (helper_status)
1852 printf("error null no match\n");
1853 rc = 0;
1854 goto cleanup;
1857 new_refs = 0;
1858 for (ref = remote_refs; ref; ref = ref->next) {
1859 char old_hex[60], *new_hex;
1860 const char *commit_argv[5];
1861 int commit_argc;
1862 char *new_sha1_hex, *old_sha1_hex;
1864 if (!ref->peer_ref)
1865 continue;
1867 if (is_null_sha1(ref->peer_ref->new_sha1)) {
1868 if (delete_remote_branch(ref->name, 1) == -1) {
1869 error("Could not remove %s", ref->name);
1870 if (helper_status)
1871 printf("error %s cannot remove\n", ref->name);
1872 rc = -4;
1874 else if (helper_status)
1875 printf("ok %s\n", ref->name);
1876 new_refs++;
1877 continue;
1880 if (!hashcmp(ref->old_sha1, ref->peer_ref->new_sha1)) {
1881 if (push_verbosely)
1882 fprintf(stderr, "'%s': up-to-date\n", ref->name);
1883 if (helper_status)
1884 printf("ok %s up to date\n", ref->name);
1885 continue;
1888 if (!force_all &&
1889 !is_null_sha1(ref->old_sha1) &&
1890 !ref->force) {
1891 if (!has_sha1_file(ref->old_sha1) ||
1892 !ref_newer(ref->peer_ref->new_sha1,
1893 ref->old_sha1)) {
1895 * We do not have the remote ref, or
1896 * we know that the remote ref is not
1897 * an ancestor of what we are trying to
1898 * push. Either way this can be losing
1899 * commits at the remote end and likely
1900 * we were not up to date to begin with.
1902 error("remote '%s' is not an ancestor of\n"
1903 "local '%s'.\n"
1904 "Maybe you are not up-to-date and "
1905 "need to pull first?",
1906 ref->name,
1907 ref->peer_ref->name);
1908 if (helper_status)
1909 printf("error %s non-fast forward\n", ref->name);
1910 rc = -2;
1911 continue;
1914 hashcpy(ref->new_sha1, ref->peer_ref->new_sha1);
1915 new_refs++;
1916 strcpy(old_hex, sha1_to_hex(ref->old_sha1));
1917 new_hex = sha1_to_hex(ref->new_sha1);
1919 fprintf(stderr, "updating '%s'", ref->name);
1920 if (strcmp(ref->name, ref->peer_ref->name))
1921 fprintf(stderr, " using '%s'", ref->peer_ref->name);
1922 fprintf(stderr, "\n from %s\n to %s\n", old_hex, new_hex);
1923 if (dry_run) {
1924 if (helper_status)
1925 printf("ok %s\n", ref->name);
1926 continue;
1929 /* Lock remote branch ref */
1930 ref_lock = lock_remote(ref->name, LOCK_TIME);
1931 if (ref_lock == NULL) {
1932 fprintf(stderr, "Unable to lock remote branch %s\n",
1933 ref->name);
1934 if (helper_status)
1935 printf("error %s lock error\n", ref->name);
1936 rc = 1;
1937 continue;
1940 /* Set up revision info for this refspec */
1941 commit_argc = 3;
1942 new_sha1_hex = xstrdup(sha1_to_hex(ref->new_sha1));
1943 old_sha1_hex = NULL;
1944 commit_argv[1] = "--objects";
1945 commit_argv[2] = new_sha1_hex;
1946 if (!push_all && !is_null_sha1(ref->old_sha1)) {
1947 old_sha1_hex = xmalloc(42);
1948 sprintf(old_sha1_hex, "^%s",
1949 sha1_to_hex(ref->old_sha1));
1950 commit_argv[3] = old_sha1_hex;
1951 commit_argc++;
1953 commit_argv[commit_argc] = NULL;
1954 init_revisions(&revs, setup_git_directory());
1955 setup_revisions(commit_argc, commit_argv, &revs, NULL);
1956 revs.edge_hint = 0; /* just in case */
1957 free(new_sha1_hex);
1958 if (old_sha1_hex) {
1959 free(old_sha1_hex);
1960 commit_argv[1] = NULL;
1963 /* Generate a list of objects that need to be pushed */
1964 pushing = 0;
1965 if (prepare_revision_walk(&revs))
1966 die("revision walk setup failed");
1967 mark_edges_uninteresting(&revs, NULL);
1968 objects_to_send = get_delta(&revs, ref_lock);
1969 finish_all_active_slots();
1971 /* Push missing objects to remote, this would be a
1972 convenient time to pack them first if appropriate. */
1973 pushing = 1;
1974 if (objects_to_send)
1975 fprintf(stderr, " sending %d objects\n",
1976 objects_to_send);
1978 run_request_queue();
1980 /* Update the remote branch if all went well */
1981 if (aborted || !update_remote(ref->new_sha1, ref_lock))
1982 rc = 1;
1984 if (!rc)
1985 fprintf(stderr, " done\n");
1986 if (helper_status)
1987 printf("%s %s\n", !rc ? "ok" : "error", ref->name);
1988 unlock_remote(ref_lock);
1989 check_locks();
1992 /* Update remote server info if appropriate */
1993 if (repo->has_info_refs && new_refs) {
1994 if (info_ref_lock && repo->can_update_info_refs) {
1995 fprintf(stderr, "Updating remote server info\n");
1996 if (!dry_run)
1997 update_remote_info_refs(info_ref_lock);
1998 } else {
1999 fprintf(stderr, "Unable to update server info\n");
2003 cleanup:
2004 if (info_ref_lock)
2005 unlock_remote(info_ref_lock);
2006 free(repo);
2008 http_cleanup();
2010 request = request_queue_head;
2011 while (request != NULL) {
2012 next_request = request->next;
2013 release_request(request);
2014 request = next_request;
2017 return rc;