2 #include "repository.h"
12 #include "list-objects.h"
14 #include "argv-array.h"
16 #include "object-store.h"
19 #ifdef EXPAT_NEEDS_XMLPARSE_H
25 static const char http_push_usage[] =
26 "git http-push [--all] [--dry-run] [--force] [--verbose] <remote> [<head>...]\n";
33 #define XML_STATUS_OK 1
34 #define XML_STATUS_ERROR 0
37 #define PREV_BUF_SIZE 4096
40 #define DAV_LOCK "LOCK"
41 #define DAV_MKCOL "MKCOL"
42 #define DAV_MOVE "MOVE"
43 #define DAV_PROPFIND "PROPFIND"
45 #define DAV_UNLOCK "UNLOCK"
46 #define DAV_DELETE "DELETE"
49 #define DAV_PROP_LOCKWR (1u << 0)
50 #define DAV_PROP_LOCKEX (1u << 1)
51 #define DAV_LOCK_OK (1u << 2)
53 /* DAV XML properties */
54 #define DAV_CTX_LOCKENTRY ".multistatus.response.propstat.prop.supportedlock.lockentry"
55 #define DAV_CTX_LOCKTYPE_WRITE ".multistatus.response.propstat.prop.supportedlock.lockentry.locktype.write"
56 #define DAV_CTX_LOCKTYPE_EXCLUSIVE ".multistatus.response.propstat.prop.supportedlock.lockentry.lockscope.exclusive"
57 #define DAV_ACTIVELOCK_OWNER ".prop.lockdiscovery.activelock.owner.href"
58 #define DAV_ACTIVELOCK_TIMEOUT ".prop.lockdiscovery.activelock.timeout"
59 #define DAV_ACTIVELOCK_TOKEN ".prop.lockdiscovery.activelock.locktoken.href"
60 #define DAV_PROPFIND_RESP ".multistatus.response"
61 #define DAV_PROPFIND_NAME ".multistatus.response.href"
62 #define DAV_PROPFIND_COLLECTION ".multistatus.response.propstat.prop.resourcetype.collection"
64 /* DAV request body templates */
65 #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>"
66 #define PROPFIND_ALL_REQUEST "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<D:propfind xmlns:D=\"DAV:\">\n<D:allprop/>\n</D:propfind>"
67 #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>"
70 #define LOCK_REFRESH 30
72 /* Remember to update object flag allocation in object.h */
73 #define LOCAL (1u<<16)
74 #define REMOTE (1u<<17)
75 #define FETCHING (1u<<18)
76 #define PUSHING (1u<<19)
78 /* We allow "recursive" symbolic refs. Only within reason, though */
83 static signed char remote_dir_exists[256];
85 static int push_verbosely;
86 static int push_all = MATCH_REFS_NONE;
89 static int helper_status;
91 static struct object_list *objects;
98 int can_update_info_refs;
100 struct packed_git *packs;
101 struct remote_lock *locks;
104 static struct repo *repo;
106 enum transfer_state {
118 struct transfer_request {
122 struct remote_lock *lock;
123 struct curl_slist *headers;
124 struct buffer buffer;
125 enum transfer_state state;
126 CURLcode curl_result;
127 char errorstr[CURL_ERROR_SIZE];
130 struct active_request_slot *slot;
131 struct transfer_request *next;
134 static struct transfer_request *request_queue_head;
140 void (*userFunc)(struct xml_ctx *ctx, int tag_closed);
148 char tmpfile_suffix[41];
152 struct remote_lock *next;
155 /* Flags that control remote_ls processing */
156 #define PROCESS_FILES (1u << 0)
157 #define PROCESS_DIRS (1u << 1)
158 #define RECURSIVE (1u << 2)
160 /* Flags that remote_ls passes to callback functions */
161 #define IS_DIR (1u << 0)
163 struct remote_ls_ctx {
165 void (*userFunc)(struct remote_ls_ctx *ls);
170 struct remote_ls_ctx *parent;
173 /* get_dav_token_headers options */
174 enum dav_header_flag {
175 DAV_HEADER_IF = (1u << 0),
176 DAV_HEADER_LOCK = (1u << 1),
177 DAV_HEADER_TIMEOUT = (1u << 2)
180 static char *xml_entities(const char *s)
182 struct strbuf buf = STRBUF_INIT;
183 strbuf_addstr_xml_quoted(&buf, s);
184 return strbuf_detach(&buf, NULL);
187 static void curl_setup_http_get(CURL *curl, const char *url,
188 const char *custom_req)
190 curl_easy_setopt(curl, CURLOPT_HTTPGET, 1);
191 curl_easy_setopt(curl, CURLOPT_URL, url);
192 curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, custom_req);
193 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite_null);
196 static void curl_setup_http(CURL *curl, const char *url,
197 const char *custom_req, struct buffer *buffer,
198 curl_write_callback write_fn)
200 curl_easy_setopt(curl, CURLOPT_PUT, 1);
201 curl_easy_setopt(curl, CURLOPT_URL, url);
202 curl_easy_setopt(curl, CURLOPT_INFILE, buffer);
203 curl_easy_setopt(curl, CURLOPT_INFILESIZE, buffer->buf.len);
204 curl_easy_setopt(curl, CURLOPT_READFUNCTION, fread_buffer);
205 #ifndef NO_CURL_IOCTL
206 curl_easy_setopt(curl, CURLOPT_IOCTLFUNCTION, ioctl_buffer);
207 curl_easy_setopt(curl, CURLOPT_IOCTLDATA, buffer);
209 curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_fn);
210 curl_easy_setopt(curl, CURLOPT_NOBODY, 0);
211 curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, custom_req);
212 curl_easy_setopt(curl, CURLOPT_UPLOAD, 1);
215 static struct curl_slist *get_dav_token_headers(struct remote_lock *lock, enum dav_header_flag options)
217 struct strbuf buf = STRBUF_INIT;
218 struct curl_slist *dav_headers = http_copy_default_headers();
220 if (options & DAV_HEADER_IF) {
221 strbuf_addf(&buf, "If: (<%s>)", lock->token);
222 dav_headers = curl_slist_append(dav_headers, buf.buf);
225 if (options & DAV_HEADER_LOCK) {
226 strbuf_addf(&buf, "Lock-Token: <%s>", lock->token);
227 dav_headers = curl_slist_append(dav_headers, buf.buf);
230 if (options & DAV_HEADER_TIMEOUT) {
231 strbuf_addf(&buf, "Timeout: Second-%ld", lock->timeout);
232 dav_headers = curl_slist_append(dav_headers, buf.buf);
235 strbuf_release(&buf);
240 static void finish_request(struct transfer_request *request);
241 static void release_request(struct transfer_request *request);
243 static void process_response(void *callback_data)
245 struct transfer_request *request =
246 (struct transfer_request *)callback_data;
248 finish_request(request);
251 #ifdef USE_CURL_MULTI
253 static void start_fetch_loose(struct transfer_request *request)
255 struct active_request_slot *slot;
256 struct http_object_request *obj_req;
258 obj_req = new_http_object_request(repo->url, request->obj->oid.hash);
259 if (obj_req == NULL) {
260 request->state = ABORTED;
264 slot = obj_req->slot;
265 slot->callback_func = process_response;
266 slot->callback_data = request;
267 request->slot = slot;
268 request->userData = obj_req;
270 /* Try to get the request started, abort the request on error */
271 request->state = RUN_FETCH_LOOSE;
272 if (!start_active_slot(slot)) {
273 fprintf(stderr, "Unable to start GET request\n");
274 repo->can_update_info_refs = 0;
275 release_http_object_request(obj_req);
276 release_request(request);
280 static void start_mkcol(struct transfer_request *request)
282 char *hex = oid_to_hex(&request->obj->oid);
283 struct active_request_slot *slot;
285 request->url = get_remote_object_url(repo->url, hex, 1);
287 slot = get_active_slot();
288 slot->callback_func = process_response;
289 slot->callback_data = request;
290 curl_setup_http_get(slot->curl, request->url, DAV_MKCOL);
291 curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, request->errorstr);
293 if (start_active_slot(slot)) {
294 request->slot = slot;
295 request->state = RUN_MKCOL;
297 request->state = ABORTED;
298 FREE_AND_NULL(request->url);
303 static void start_fetch_packed(struct transfer_request *request)
305 struct packed_git *target;
307 struct transfer_request *check_request = request_queue_head;
308 struct http_pack_request *preq;
310 target = find_sha1_pack(request->obj->oid.hash, repo->packs);
312 fprintf(stderr, "Unable to fetch %s, will not be able to update server info refs\n", oid_to_hex(&request->obj->oid));
313 repo->can_update_info_refs = 0;
314 release_request(request);
318 fprintf(stderr, "Fetching pack %s\n", sha1_to_hex(target->sha1));
319 fprintf(stderr, " which contains %s\n", oid_to_hex(&request->obj->oid));
321 preq = new_http_pack_request(target, repo->url);
323 repo->can_update_info_refs = 0;
326 preq->lst = &repo->packs;
328 /* Make sure there isn't another open request for this pack */
329 while (check_request) {
330 if (check_request->state == RUN_FETCH_PACKED &&
331 !strcmp(check_request->url, preq->url)) {
332 release_http_pack_request(preq);
333 release_request(request);
336 check_request = check_request->next;
339 preq->slot->callback_func = process_response;
340 preq->slot->callback_data = request;
341 request->slot = preq->slot;
342 request->userData = preq;
344 /* Try to get the request started, abort the request on error */
345 request->state = RUN_FETCH_PACKED;
346 if (!start_active_slot(preq->slot)) {
347 fprintf(stderr, "Unable to start GET request\n");
348 release_http_pack_request(preq);
349 repo->can_update_info_refs = 0;
350 release_request(request);
354 static void start_put(struct transfer_request *request)
356 char *hex = oid_to_hex(&request->obj->oid);
357 struct active_request_slot *slot;
358 struct strbuf buf = STRBUF_INIT;
359 enum object_type type;
367 unpacked = read_object_file(&request->obj->oid, &type, &len);
368 hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %lu", type_name(type), len) + 1;
371 git_deflate_init(&stream, zlib_compression_level);
372 size = git_deflate_bound(&stream, len + hdrlen);
373 strbuf_init(&request->buffer.buf, size);
374 request->buffer.posn = 0;
377 stream.next_out = (unsigned char *)request->buffer.buf.buf;
378 stream.avail_out = size;
381 stream.next_in = (void *)hdr;
382 stream.avail_in = hdrlen;
383 while (git_deflate(&stream, 0) == Z_OK)
386 /* Then the data itself.. */
387 stream.next_in = unpacked;
388 stream.avail_in = len;
389 while (git_deflate(&stream, Z_FINISH) == Z_OK)
391 git_deflate_end(&stream);
394 request->buffer.buf.len = stream.total_out;
396 strbuf_addstr(&buf, "Destination: ");
397 append_remote_object_url(&buf, repo->url, hex, 0);
398 request->dest = strbuf_detach(&buf, NULL);
400 append_remote_object_url(&buf, repo->url, hex, 0);
401 strbuf_add(&buf, request->lock->tmpfile_suffix, 41);
402 request->url = strbuf_detach(&buf, NULL);
404 slot = get_active_slot();
405 slot->callback_func = process_response;
406 slot->callback_data = request;
407 curl_setup_http(slot->curl, request->url, DAV_PUT,
408 &request->buffer, fwrite_null);
410 if (start_active_slot(slot)) {
411 request->slot = slot;
412 request->state = RUN_PUT;
414 request->state = ABORTED;
415 FREE_AND_NULL(request->url);
419 static void start_move(struct transfer_request *request)
421 struct active_request_slot *slot;
422 struct curl_slist *dav_headers = http_copy_default_headers();
424 slot = get_active_slot();
425 slot->callback_func = process_response;
426 slot->callback_data = request;
427 curl_setup_http_get(slot->curl, request->url, DAV_MOVE);
428 dav_headers = curl_slist_append(dav_headers, request->dest);
429 dav_headers = curl_slist_append(dav_headers, "Overwrite: T");
430 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
432 if (start_active_slot(slot)) {
433 request->slot = slot;
434 request->state = RUN_MOVE;
436 request->state = ABORTED;
437 FREE_AND_NULL(request->url);
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;
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",
463 lock->start_time = time(NULL);
468 lock->refreshing = 0;
469 curl_slist_free_all(dav_headers);
474 static void check_locks(void)
476 struct remote_lock *lock = repo->locks;
477 time_t current_time = time(NULL);
481 time_remaining = lock->start_time + lock->timeout -
483 if (!lock->refreshing && time_remaining < LOCK_REFRESH) {
484 if (!refresh_lock(lock)) {
486 "Unable to refresh lock for %s\n",
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;
503 while (entry->next != NULL && entry->next != request)
505 if (entry->next == request)
506 entry->next = entry->next->next;
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 */
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_AND_NULL(request->url);
533 if (request->state == RUN_MKCOL) {
534 if (request->curl_result == CURLE_OK ||
535 request->http_code == 405) {
536 remote_dir_exists[request->obj->oid.hash[0]] = 1;
539 fprintf(stderr, "MKCOL %s failed, aborting (%d/%ld)\n",
540 oid_to_hex(&request->obj->oid),
541 request->curl_result, request->http_code);
542 request->state = ABORTED;
545 } else if (request->state == RUN_PUT) {
546 if (request->curl_result == CURLE_OK) {
549 fprintf(stderr, "PUT %s failed, aborting (%d/%ld)\n",
550 oid_to_hex(&request->obj->oid),
551 request->curl_result, request->http_code);
552 request->state = ABORTED;
555 } else if (request->state == RUN_MOVE) {
556 if (request->curl_result == CURLE_OK) {
558 fprintf(stderr, " sent %s\n",
559 oid_to_hex(&request->obj->oid));
560 request->obj->flags |= REMOTE;
561 release_request(request);
563 fprintf(stderr, "MOVE %s failed, aborting (%d/%ld)\n",
564 oid_to_hex(&request->obj->oid),
565 request->curl_result, request->http_code);
566 request->state = ABORTED;
569 } else if (request->state == RUN_FETCH_LOOSE) {
570 obj_req = (struct http_object_request *)request->userData;
572 if (finish_http_object_request(obj_req) == 0)
573 if (obj_req->rename == 0)
574 request->obj->flags |= (LOCAL | REMOTE);
576 /* Try fetching packed if necessary */
577 if (request->obj->flags & LOCAL) {
578 release_http_object_request(obj_req);
579 release_request(request);
581 start_fetch_packed(request);
583 } else if (request->state == RUN_FETCH_PACKED) {
585 if (request->curl_result != CURLE_OK) {
586 fprintf(stderr, "Unable to get pack file %s\n%s",
587 request->url, curl_errorstr);
589 preq = (struct http_pack_request *)request->userData;
592 if (finish_http_pack_request(preq) == 0)
594 release_http_pack_request(preq);
598 repo->can_update_info_refs = 0;
599 release_request(request);
603 #ifdef USE_CURL_MULTI
604 static int is_running_queue;
605 static int fill_active_slot(void *unused)
607 struct transfer_request *request;
609 if (aborted || !is_running_queue)
612 for (request = request_queue_head; request; request = request->next) {
613 if (request->state == NEED_FETCH) {
614 start_fetch_loose(request);
616 } else if (pushing && request->state == NEED_PUSH) {
617 if (remote_dir_exists[request->obj->oid.hash[0]] == 1) {
620 start_mkcol(request);
629 static void get_remote_object_list(unsigned char parent);
631 static void add_fetch_request(struct object *obj)
633 struct transfer_request *request;
638 * Don't fetch the object if it's known to exist locally
639 * or is already in the request queue
641 if (remote_dir_exists[obj->oid.hash[0]] == -1)
642 get_remote_object_list(obj->oid.hash[0]);
643 if (obj->flags & (LOCAL | FETCHING))
646 obj->flags |= FETCHING;
647 request = xmalloc(sizeof(*request));
650 request->lock = NULL;
651 request->headers = NULL;
652 request->state = NEED_FETCH;
653 request->next = request_queue_head;
654 request_queue_head = request;
656 #ifdef USE_CURL_MULTI
662 static int add_send_request(struct object *obj, struct remote_lock *lock)
664 struct transfer_request *request;
665 struct packed_git *target;
667 /* Keep locks active */
671 * Don't push the object if it's known to exist on the remote
672 * or is already in the request queue
674 if (remote_dir_exists[obj->oid.hash[0]] == -1)
675 get_remote_object_list(obj->oid.hash[0]);
676 if (obj->flags & (REMOTE | PUSHING))
678 target = find_sha1_pack(obj->oid.hash, repo->packs);
680 obj->flags |= REMOTE;
684 obj->flags |= PUSHING;
685 request = xmalloc(sizeof(*request));
688 request->lock = lock;
689 request->headers = NULL;
690 request->state = NEED_PUSH;
691 request->next = request_queue_head;
692 request_queue_head = request;
694 #ifdef USE_CURL_MULTI
702 static int fetch_indices(void)
707 fprintf(stderr, "Getting pack list\n");
709 switch (http_get_info_packs(repo->url, &repo->packs)) {
711 case HTTP_MISSING_TARGET:
721 static void one_remote_object(const struct object_id *oid)
725 obj = lookup_object(oid->hash);
727 obj = parse_object(the_repository, oid);
729 /* Ignore remote objects that don't exist locally */
733 obj->flags |= REMOTE;
734 if (!object_list_contains(objects, obj))
735 object_list_insert(obj, &objects);
738 static void handle_lockprop_ctx(struct xml_ctx *ctx, int tag_closed)
740 int *lock_flags = (int *)ctx->userData;
743 if (!strcmp(ctx->name, DAV_CTX_LOCKENTRY)) {
744 if ((*lock_flags & DAV_PROP_LOCKEX) &&
745 (*lock_flags & DAV_PROP_LOCKWR)) {
746 *lock_flags |= DAV_LOCK_OK;
748 *lock_flags &= DAV_LOCK_OK;
749 } else if (!strcmp(ctx->name, DAV_CTX_LOCKTYPE_WRITE)) {
750 *lock_flags |= DAV_PROP_LOCKWR;
751 } else if (!strcmp(ctx->name, DAV_CTX_LOCKTYPE_EXCLUSIVE)) {
752 *lock_flags |= DAV_PROP_LOCKEX;
757 static void handle_new_lock_ctx(struct xml_ctx *ctx, int tag_closed)
759 struct remote_lock *lock = (struct remote_lock *)ctx->userData;
761 unsigned char lock_token_sha1[20];
763 if (tag_closed && ctx->cdata) {
764 if (!strcmp(ctx->name, DAV_ACTIVELOCK_OWNER)) {
765 lock->owner = xstrdup(ctx->cdata);
766 } else if (!strcmp(ctx->name, DAV_ACTIVELOCK_TIMEOUT)) {
768 if (skip_prefix(ctx->cdata, "Second-", &arg))
769 lock->timeout = strtol(arg, NULL, 10);
770 } else if (!strcmp(ctx->name, DAV_ACTIVELOCK_TOKEN)) {
771 lock->token = xstrdup(ctx->cdata);
773 git_SHA1_Init(&sha_ctx);
774 git_SHA1_Update(&sha_ctx, lock->token, strlen(lock->token));
775 git_SHA1_Final(lock_token_sha1, &sha_ctx);
777 lock->tmpfile_suffix[0] = '_';
778 memcpy(lock->tmpfile_suffix + 1, sha1_to_hex(lock_token_sha1), 40);
783 static void one_remote_ref(const char *refname);
786 xml_start_tag(void *userData, const char *name, const char **atts)
788 struct xml_ctx *ctx = (struct xml_ctx *)userData;
789 const char *c = strchr(name, ':');
790 int old_namelen, new_len;
797 old_namelen = strlen(ctx->name);
798 new_len = old_namelen + strlen(c) + 2;
800 if (new_len > ctx->len) {
801 ctx->name = xrealloc(ctx->name, new_len);
804 xsnprintf(ctx->name + old_namelen, ctx->len - old_namelen, ".%s", c);
806 FREE_AND_NULL(ctx->cdata);
808 ctx->userFunc(ctx, 0);
812 xml_end_tag(void *userData, const char *name)
814 struct xml_ctx *ctx = (struct xml_ctx *)userData;
815 const char *c = strchr(name, ':');
818 ctx->userFunc(ctx, 1);
825 ep = ctx->name + strlen(ctx->name) - strlen(c) - 1;
830 xml_cdata(void *userData, const XML_Char *s, int len)
832 struct xml_ctx *ctx = (struct xml_ctx *)userData;
834 ctx->cdata = xmemdupz(s, len);
837 static struct remote_lock *lock_remote(const char *path, long timeout)
839 struct active_request_slot *slot;
840 struct slot_results results;
841 struct buffer out_buffer = { STRBUF_INIT, 0 };
842 struct strbuf in_buffer = STRBUF_INIT;
845 char timeout_header[25];
846 struct remote_lock *lock = NULL;
847 struct curl_slist *dav_headers = http_copy_default_headers();
851 url = xstrfmt("%s%s", repo->url, path);
853 /* Make sure leading directories exist for the remote ref */
854 ep = strchr(url + strlen(repo->url) + 1, '/');
856 char saved_character = ep[1];
858 slot = get_active_slot();
859 slot->results = &results;
860 curl_setup_http_get(slot->curl, url, DAV_MKCOL);
861 if (start_active_slot(slot)) {
862 run_active_slot(slot);
863 if (results.curl_result != CURLE_OK &&
864 results.http_code != 405) {
866 "Unable to create branch path %s\n",
872 fprintf(stderr, "Unable to start MKCOL request\n");
876 ep[1] = saved_character;
877 ep = strchr(ep + 1, '/');
880 escaped = xml_entities(ident_default_email());
881 strbuf_addf(&out_buffer.buf, LOCK_REQUEST, escaped);
884 xsnprintf(timeout_header, sizeof(timeout_header), "Timeout: Second-%ld", timeout);
885 dav_headers = curl_slist_append(dav_headers, timeout_header);
886 dav_headers = curl_slist_append(dav_headers, "Content-Type: text/xml");
888 slot = get_active_slot();
889 slot->results = &results;
890 curl_setup_http(slot->curl, url, DAV_LOCK, &out_buffer, fwrite_buffer);
891 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
892 curl_easy_setopt(slot->curl, CURLOPT_FILE, &in_buffer);
894 lock = xcalloc(1, sizeof(*lock));
897 if (start_active_slot(slot)) {
898 run_active_slot(slot);
899 if (results.curl_result == CURLE_OK) {
900 XML_Parser parser = XML_ParserCreate(NULL);
901 enum XML_Status result;
902 ctx.name = xcalloc(10, 1);
905 ctx.userFunc = handle_new_lock_ctx;
907 XML_SetUserData(parser, &ctx);
908 XML_SetElementHandler(parser, xml_start_tag,
910 XML_SetCharacterDataHandler(parser, xml_cdata);
911 result = XML_Parse(parser, in_buffer.buf,
914 if (result != XML_STATUS_OK) {
915 fprintf(stderr, "XML error: %s\n",
917 XML_GetErrorCode(parser)));
920 XML_ParserFree(parser);
923 "error: curl result=%d, HTTP code=%ld\n",
924 results.curl_result, results.http_code);
927 fprintf(stderr, "Unable to start LOCK request\n");
930 curl_slist_free_all(dav_headers);
931 strbuf_release(&out_buffer.buf);
932 strbuf_release(&in_buffer);
934 if (lock->token == NULL || lock->timeout <= 0) {
941 lock->start_time = time(NULL);
942 lock->next = repo->locks;
949 static int unlock_remote(struct remote_lock *lock)
951 struct active_request_slot *slot;
952 struct slot_results results;
953 struct remote_lock *prev = repo->locks;
954 struct curl_slist *dav_headers;
957 dav_headers = get_dav_token_headers(lock, DAV_HEADER_LOCK);
959 slot = get_active_slot();
960 slot->results = &results;
961 curl_setup_http_get(slot->curl, lock->url, DAV_UNLOCK);
962 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
964 if (start_active_slot(slot)) {
965 run_active_slot(slot);
966 if (results.curl_result == CURLE_OK)
969 fprintf(stderr, "UNLOCK HTTP error %ld\n",
972 fprintf(stderr, "Unable to start UNLOCK request\n");
975 curl_slist_free_all(dav_headers);
977 if (repo->locks == lock) {
978 repo->locks = lock->next;
980 while (prev && prev->next != lock)
983 prev->next = prev->next->next;
994 static void remove_locks(void)
996 struct remote_lock *lock = repo->locks;
998 fprintf(stderr, "Removing remote locks...\n");
1000 struct remote_lock *next = lock->next;
1001 unlock_remote(lock);
1006 static void remove_locks_on_signal(int signo)
1009 sigchain_pop(signo);
1013 static void remote_ls(const char *path, int flags,
1014 void (*userFunc)(struct remote_ls_ctx *ls),
1017 /* extract hex from sharded "xx/x{38}" filename */
1018 static int get_oid_hex_from_objpath(const char *path, struct object_id *oid)
1020 if (strlen(path) != GIT_SHA1_HEXSZ + 1)
1023 if (hex_to_bytes(oid->hash, path, 1))
1026 path++; /* skip '/' */
1028 return hex_to_bytes(oid->hash + 1, path, GIT_SHA1_RAWSZ - 1);
1031 static void process_ls_object(struct remote_ls_ctx *ls)
1033 unsigned int *parent = (unsigned int *)ls->userData;
1034 const char *path = ls->dentry_name;
1035 struct object_id oid;
1037 if (!strcmp(ls->path, ls->dentry_name) && (ls->flags & IS_DIR)) {
1038 remote_dir_exists[*parent] = 1;
1042 if (!skip_prefix(path, "objects/", &path) ||
1043 get_oid_hex_from_objpath(path, &oid))
1046 one_remote_object(&oid);
1049 static void process_ls_ref(struct remote_ls_ctx *ls)
1051 if (!strcmp(ls->path, ls->dentry_name) && (ls->dentry_flags & IS_DIR)) {
1052 fprintf(stderr, " %s\n", ls->dentry_name);
1056 if (!(ls->dentry_flags & IS_DIR))
1057 one_remote_ref(ls->dentry_name);
1060 static void handle_remote_ls_ctx(struct xml_ctx *ctx, int tag_closed)
1062 struct remote_ls_ctx *ls = (struct remote_ls_ctx *)ctx->userData;
1065 if (!strcmp(ctx->name, DAV_PROPFIND_RESP) && ls->dentry_name) {
1066 if (ls->dentry_flags & IS_DIR) {
1068 /* ensure collection names end with slash */
1069 str_end_url_with_slash(ls->dentry_name, &ls->dentry_name);
1071 if (ls->flags & PROCESS_DIRS) {
1074 if (strcmp(ls->dentry_name, ls->path) &&
1075 ls->flags & RECURSIVE) {
1076 remote_ls(ls->dentry_name,
1081 } else if (ls->flags & PROCESS_FILES) {
1084 } else if (!strcmp(ctx->name, DAV_PROPFIND_NAME) && ctx->cdata) {
1085 char *path = ctx->cdata;
1086 if (*ctx->cdata == 'h') {
1087 path = strstr(path, "//");
1089 path = strchr(path+2, '/');
1093 const char *url = repo->url;
1096 if (strncmp(path, url, repo->path_len))
1097 error("Parsed path '%s' does not match url: '%s'",
1100 path += repo->path_len;
1101 ls->dentry_name = xstrdup(path);
1104 } else if (!strcmp(ctx->name, DAV_PROPFIND_COLLECTION)) {
1105 ls->dentry_flags |= IS_DIR;
1107 } else if (!strcmp(ctx->name, DAV_PROPFIND_RESP)) {
1108 FREE_AND_NULL(ls->dentry_name);
1109 ls->dentry_flags = 0;
1114 * NEEDSWORK: remote_ls() ignores info/refs on the remote side. But it
1115 * should _only_ heed the information from that file, instead of trying to
1116 * determine the refs from the remote file system (badly: it does not even
1117 * know about packed-refs).
1119 static void remote_ls(const char *path, int flags,
1120 void (*userFunc)(struct remote_ls_ctx *ls),
1123 char *url = xstrfmt("%s%s", repo->url, path);
1124 struct active_request_slot *slot;
1125 struct slot_results results;
1126 struct strbuf in_buffer = STRBUF_INIT;
1127 struct buffer out_buffer = { STRBUF_INIT, 0 };
1128 struct curl_slist *dav_headers = http_copy_default_headers();
1130 struct remote_ls_ctx ls;
1133 ls.path = xstrdup(path);
1134 ls.dentry_name = NULL;
1135 ls.dentry_flags = 0;
1136 ls.userData = userData;
1137 ls.userFunc = userFunc;
1139 strbuf_addstr(&out_buffer.buf, PROPFIND_ALL_REQUEST);
1141 dav_headers = curl_slist_append(dav_headers, "Depth: 1");
1142 dav_headers = curl_slist_append(dav_headers, "Content-Type: text/xml");
1144 slot = get_active_slot();
1145 slot->results = &results;
1146 curl_setup_http(slot->curl, url, DAV_PROPFIND,
1147 &out_buffer, fwrite_buffer);
1148 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1149 curl_easy_setopt(slot->curl, CURLOPT_FILE, &in_buffer);
1151 if (start_active_slot(slot)) {
1152 run_active_slot(slot);
1153 if (results.curl_result == CURLE_OK) {
1154 XML_Parser parser = XML_ParserCreate(NULL);
1155 enum XML_Status result;
1156 ctx.name = xcalloc(10, 1);
1159 ctx.userFunc = handle_remote_ls_ctx;
1161 XML_SetUserData(parser, &ctx);
1162 XML_SetElementHandler(parser, xml_start_tag,
1164 XML_SetCharacterDataHandler(parser, xml_cdata);
1165 result = XML_Parse(parser, in_buffer.buf,
1169 if (result != XML_STATUS_OK) {
1170 fprintf(stderr, "XML error: %s\n",
1172 XML_GetErrorCode(parser)));
1174 XML_ParserFree(parser);
1177 fprintf(stderr, "Unable to start PROPFIND request\n");
1182 strbuf_release(&out_buffer.buf);
1183 strbuf_release(&in_buffer);
1184 curl_slist_free_all(dav_headers);
1187 static void get_remote_object_list(unsigned char parent)
1189 char path[] = "objects/XX/";
1190 static const char hex[] = "0123456789abcdef";
1191 unsigned int val = parent;
1193 path[8] = hex[val >> 4];
1194 path[9] = hex[val & 0xf];
1195 remote_dir_exists[val] = 0;
1196 remote_ls(path, (PROCESS_FILES | PROCESS_DIRS),
1197 process_ls_object, &val);
1200 static int locking_available(void)
1202 struct active_request_slot *slot;
1203 struct slot_results results;
1204 struct strbuf in_buffer = STRBUF_INIT;
1205 struct buffer out_buffer = { STRBUF_INIT, 0 };
1206 struct curl_slist *dav_headers = http_copy_default_headers();
1211 escaped = xml_entities(repo->url);
1212 strbuf_addf(&out_buffer.buf, PROPFIND_SUPPORTEDLOCK_REQUEST, escaped);
1215 dav_headers = curl_slist_append(dav_headers, "Depth: 0");
1216 dav_headers = curl_slist_append(dav_headers, "Content-Type: text/xml");
1218 slot = get_active_slot();
1219 slot->results = &results;
1220 curl_setup_http(slot->curl, repo->url, DAV_PROPFIND,
1221 &out_buffer, fwrite_buffer);
1222 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1223 curl_easy_setopt(slot->curl, CURLOPT_FILE, &in_buffer);
1225 if (start_active_slot(slot)) {
1226 run_active_slot(slot);
1227 if (results.curl_result == CURLE_OK) {
1228 XML_Parser parser = XML_ParserCreate(NULL);
1229 enum XML_Status result;
1230 ctx.name = xcalloc(10, 1);
1233 ctx.userFunc = handle_lockprop_ctx;
1234 ctx.userData = &lock_flags;
1235 XML_SetUserData(parser, &ctx);
1236 XML_SetElementHandler(parser, xml_start_tag,
1238 result = XML_Parse(parser, in_buffer.buf,
1242 if (result != XML_STATUS_OK) {
1243 fprintf(stderr, "XML error: %s\n",
1245 XML_GetErrorCode(parser)));
1248 XML_ParserFree(parser);
1250 error("no DAV locking support on %s",
1254 error("Cannot access URL %s, return code %d",
1255 repo->url, results.curl_result);
1259 error("Unable to start PROPFIND request on %s", repo->url);
1262 strbuf_release(&out_buffer.buf);
1263 strbuf_release(&in_buffer);
1264 curl_slist_free_all(dav_headers);
1269 static struct object_list **add_one_object(struct object *obj, struct object_list **p)
1271 struct object_list *entry = xmalloc(sizeof(struct object_list));
1275 return &entry->next;
1278 static struct object_list **process_blob(struct blob *blob,
1279 struct object_list **p)
1281 struct object *obj = &blob->object;
1283 obj->flags |= LOCAL;
1285 if (obj->flags & (UNINTERESTING | SEEN))
1289 return add_one_object(obj, p);
1292 static struct object_list **process_tree(struct tree *tree,
1293 struct object_list **p)
1295 struct object *obj = &tree->object;
1296 struct tree_desc desc;
1297 struct name_entry entry;
1299 obj->flags |= LOCAL;
1301 if (obj->flags & (UNINTERESTING | SEEN))
1303 if (parse_tree(tree) < 0)
1304 die("bad tree object %s", oid_to_hex(&obj->oid));
1307 p = add_one_object(obj, p);
1309 init_tree_desc(&desc, tree->buffer, tree->size);
1311 while (tree_entry(&desc, &entry))
1312 switch (object_type(entry.mode)) {
1314 p = process_tree(lookup_tree(entry.oid), p);
1317 p = process_blob(lookup_blob(entry.oid), p);
1320 /* Subproject commit - not in this repository */
1324 free_tree_buffer(tree);
1328 static int get_delta(struct rev_info *revs, struct remote_lock *lock)
1331 struct commit *commit;
1332 struct object_list **p = &objects;
1335 while ((commit = get_revision(revs)) != NULL) {
1336 p = process_tree(get_commit_tree(commit), p);
1337 commit->object.flags |= LOCAL;
1338 if (!(commit->object.flags & UNINTERESTING))
1339 count += add_send_request(&commit->object, lock);
1342 for (i = 0; i < revs->pending.nr; i++) {
1343 struct object_array_entry *entry = revs->pending.objects + i;
1344 struct object *obj = entry->item;
1345 const char *name = entry->name;
1347 if (obj->flags & (UNINTERESTING | SEEN))
1349 if (obj->type == OBJ_TAG) {
1351 p = add_one_object(obj, p);
1354 if (obj->type == OBJ_TREE) {
1355 p = process_tree((struct tree *)obj, p);
1358 if (obj->type == OBJ_BLOB) {
1359 p = process_blob((struct blob *)obj, p);
1362 die("unknown pending object %s (%s)", oid_to_hex(&obj->oid), name);
1366 if (!(objects->item->flags & UNINTERESTING))
1367 count += add_send_request(objects->item, lock);
1368 objects = objects->next;
1374 static int update_remote(unsigned char *sha1, struct remote_lock *lock)
1376 struct active_request_slot *slot;
1377 struct slot_results results;
1378 struct buffer out_buffer = { STRBUF_INIT, 0 };
1379 struct curl_slist *dav_headers;
1381 dav_headers = get_dav_token_headers(lock, DAV_HEADER_IF);
1383 strbuf_addf(&out_buffer.buf, "%s\n", sha1_to_hex(sha1));
1385 slot = get_active_slot();
1386 slot->results = &results;
1387 curl_setup_http(slot->curl, lock->url, DAV_PUT,
1388 &out_buffer, fwrite_null);
1389 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1391 if (start_active_slot(slot)) {
1392 run_active_slot(slot);
1393 strbuf_release(&out_buffer.buf);
1394 if (results.curl_result != CURLE_OK) {
1396 "PUT error: curl result=%d, HTTP code=%ld\n",
1397 results.curl_result, results.http_code);
1398 /* We should attempt recovery? */
1402 strbuf_release(&out_buffer.buf);
1403 fprintf(stderr, "Unable to start PUT request\n");
1410 static struct ref *remote_refs;
1412 static void one_remote_ref(const char *refname)
1417 ref = alloc_ref(refname);
1419 if (http_fetch_ref(repo->url, ref) != 0) {
1421 "Unable to fetch ref %s from %s\n",
1422 refname, repo->url);
1428 * Fetch a copy of the object if it doesn't exist locally - it
1429 * may be required for updating server info later.
1431 if (repo->can_update_info_refs && !has_object_file(&ref->old_oid)) {
1432 obj = lookup_unknown_object(ref->old_oid.hash);
1433 fprintf(stderr, " fetch %s for %s\n",
1434 oid_to_hex(&ref->old_oid), refname);
1435 add_fetch_request(obj);
1438 ref->next = remote_refs;
1442 static void get_dav_remote_heads(void)
1444 remote_ls("refs/", (PROCESS_FILES | PROCESS_DIRS | RECURSIVE), process_ls_ref, NULL);
1447 static void add_remote_info_ref(struct remote_ls_ctx *ls)
1449 struct strbuf *buf = (struct strbuf *)ls->userData;
1453 ref = alloc_ref(ls->dentry_name);
1455 if (http_fetch_ref(repo->url, ref) != 0) {
1457 "Unable to fetch ref %s from %s\n",
1458 ls->dentry_name, repo->url);
1464 o = parse_object(the_repository, &ref->old_oid);
1467 "Unable to parse object %s for remote ref %s\n",
1468 oid_to_hex(&ref->old_oid), ls->dentry_name);
1474 strbuf_addf(buf, "%s\t%s\n",
1475 oid_to_hex(&ref->old_oid), ls->dentry_name);
1477 if (o->type == OBJ_TAG) {
1478 o = deref_tag(o, ls->dentry_name, 0);
1480 strbuf_addf(buf, "%s\t%s^{}\n",
1481 oid_to_hex(&o->oid), ls->dentry_name);
1486 static void update_remote_info_refs(struct remote_lock *lock)
1488 struct buffer buffer = { STRBUF_INIT, 0 };
1489 struct active_request_slot *slot;
1490 struct slot_results results;
1491 struct curl_slist *dav_headers;
1493 remote_ls("refs/", (PROCESS_FILES | RECURSIVE),
1494 add_remote_info_ref, &buffer.buf);
1496 dav_headers = get_dav_token_headers(lock, DAV_HEADER_IF);
1498 slot = get_active_slot();
1499 slot->results = &results;
1500 curl_setup_http(slot->curl, lock->url, DAV_PUT,
1501 &buffer, fwrite_null);
1502 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1504 if (start_active_slot(slot)) {
1505 run_active_slot(slot);
1506 if (results.curl_result != CURLE_OK) {
1508 "PUT error: curl result=%d, HTTP code=%ld\n",
1509 results.curl_result, results.http_code);
1513 strbuf_release(&buffer.buf);
1516 static int remote_exists(const char *path)
1518 char *url = xstrfmt("%s%s", repo->url, path);
1522 switch (http_get_strbuf(url, NULL, NULL)) {
1526 case HTTP_MISSING_TARGET:
1530 error("unable to access '%s': %s", url, curl_errorstr);
1539 static void fetch_symref(const char *path, char **symref, struct object_id *oid)
1541 char *url = xstrfmt("%s%s", repo->url, path);
1542 struct strbuf buffer = STRBUF_INIT;
1545 if (http_get_strbuf(url, &buffer, NULL) != HTTP_OK)
1546 die("Couldn't get %s for remote symref\n%s", url,
1550 FREE_AND_NULL(*symref);
1553 if (buffer.len == 0)
1556 /* Cut off trailing newline. */
1557 strbuf_rtrim(&buffer);
1559 /* If it's a symref, set the refname; otherwise try for a sha1 */
1560 if (skip_prefix(buffer.buf, "ref: ", &name)) {
1561 *symref = xmemdupz(name, buffer.len - (name - buffer.buf));
1563 get_oid_hex(buffer.buf, oid);
1566 strbuf_release(&buffer);
1569 static int verify_merge_base(struct object_id *head_oid, struct ref *remote)
1571 struct commit *head = lookup_commit_or_die(head_oid, "HEAD");
1572 struct commit *branch = lookup_commit_or_die(&remote->old_oid,
1575 return in_merge_bases(branch, head);
1578 static int delete_remote_branch(const char *pattern, int force)
1580 struct ref *refs = remote_refs;
1581 struct ref *remote_ref = NULL;
1582 struct object_id head_oid;
1583 char *symref = NULL;
1585 int patlen = strlen(pattern);
1587 struct active_request_slot *slot;
1588 struct slot_results results;
1591 /* Find the remote branch(es) matching the specified branch name */
1592 for (match = 0; refs; refs = refs->next) {
1593 char *name = refs->name;
1594 int namelen = strlen(name);
1595 if (namelen < patlen ||
1596 memcmp(name + namelen - patlen, pattern, patlen))
1598 if (namelen != patlen && name[namelen - patlen - 1] != '/')
1604 return error("No remote branch matches %s", pattern);
1606 return error("More than one remote branch matches %s",
1610 * Remote HEAD must be a symref (not exactly foolproof; a remote
1611 * symlink to a symref will look like a symref)
1613 fetch_symref("HEAD", &symref, &head_oid);
1615 return error("Remote HEAD is not a symref");
1617 /* Remote branch must not be the remote HEAD */
1618 for (i = 0; symref && i < MAXDEPTH; i++) {
1619 if (!strcmp(remote_ref->name, symref))
1620 return error("Remote branch %s is the current HEAD",
1622 fetch_symref(symref, &symref, &head_oid);
1625 /* Run extra sanity checks if delete is not forced */
1627 /* Remote HEAD must resolve to a known object */
1629 return error("Remote HEAD symrefs too deep");
1630 if (is_null_oid(&head_oid))
1631 return error("Unable to resolve remote HEAD");
1632 if (!has_object_file(&head_oid))
1633 return error("Remote HEAD resolves to object %s\nwhich does not exist locally, perhaps you need to fetch?", oid_to_hex(&head_oid));
1635 /* Remote branch must resolve to a known object */
1636 if (is_null_oid(&remote_ref->old_oid))
1637 return error("Unable to resolve remote branch %s",
1639 if (!has_object_file(&remote_ref->old_oid))
1640 return error("Remote branch %s resolves to object %s\nwhich does not exist locally, perhaps you need to fetch?", remote_ref->name, oid_to_hex(&remote_ref->old_oid));
1642 /* Remote branch must be an ancestor of remote HEAD */
1643 if (!verify_merge_base(&head_oid, remote_ref)) {
1644 return error("The branch '%s' is not an ancestor "
1645 "of your current HEAD.\n"
1646 "If you are sure you want to delete it,"
1647 " run:\n\t'git http-push -D %s %s'",
1648 remote_ref->name, repo->url, pattern);
1652 /* Send delete request */
1653 fprintf(stderr, "Removing remote branch '%s'\n", remote_ref->name);
1656 url = xstrfmt("%s%s", repo->url, remote_ref->name);
1657 slot = get_active_slot();
1658 slot->results = &results;
1659 curl_setup_http_get(slot->curl, url, DAV_DELETE);
1660 if (start_active_slot(slot)) {
1661 run_active_slot(slot);
1663 if (results.curl_result != CURLE_OK)
1664 return error("DELETE request failed (%d/%ld)",
1665 results.curl_result, results.http_code);
1668 return error("Unable to start DELETE request");
1674 static void run_request_queue(void)
1676 #ifdef USE_CURL_MULTI
1677 is_running_queue = 1;
1678 fill_active_slots();
1679 add_fill_function(NULL, fill_active_slot);
1682 finish_all_active_slots();
1683 #ifdef USE_CURL_MULTI
1684 fill_active_slots();
1686 } while (request_queue_head && !aborted);
1688 #ifdef USE_CURL_MULTI
1689 is_running_queue = 0;
1693 int cmd_main(int argc, const char **argv)
1695 struct transfer_request *request;
1696 struct transfer_request *next_request;
1697 struct refspec rs = REFSPEC_INIT_PUSH;
1698 struct remote_lock *ref_lock = NULL;
1699 struct remote_lock *info_ref_lock = NULL;
1700 struct rev_info revs;
1701 int delete_branch = 0;
1702 int force_delete = 0;
1703 int objects_to_send;
1707 struct ref *ref, *local_refs;
1709 repo = xcalloc(1, sizeof(*repo));
1712 for (i = 1; i < argc; i++, argv++) {
1713 const char *arg = *argv;
1716 if (!strcmp(arg, "--all")) {
1717 push_all = MATCH_REFS_ALL;
1720 if (!strcmp(arg, "--force")) {
1724 if (!strcmp(arg, "--dry-run")) {
1728 if (!strcmp(arg, "--helper-status")) {
1732 if (!strcmp(arg, "--verbose")) {
1734 http_is_verbose = 1;
1737 if (!strcmp(arg, "-d")) {
1741 if (!strcmp(arg, "-D")) {
1746 if (!strcmp(arg, "-h"))
1747 usage(http_push_usage);
1750 char *path = strstr(arg, "//");
1751 str_end_url_with_slash(arg, &repo->url);
1752 repo->path_len = strlen(repo->url);
1754 repo->path = strchr(path+2, '/');
1756 repo->path_len = strlen(repo->path);
1760 refspec_appendn(&rs, argv, argc - i);
1764 #ifndef USE_CURL_MULTI
1765 die("git-push is not available for http/https repository when not compiled with USE_CURL_MULTI");
1769 usage(http_push_usage);
1771 if (delete_branch && rs.nr != 1)
1772 die("You must specify only one branch name when deleting a remote branch");
1774 setup_git_directory();
1776 memset(remote_dir_exists, -1, 256);
1778 http_init(NULL, repo->url, 1);
1780 #ifdef USE_CURL_MULTI
1781 is_running_queue = 0;
1784 /* Verify DAV compliance/lock support */
1785 if (!locking_available()) {
1790 sigchain_push_common(remove_locks_on_signal);
1792 /* Check whether the remote has server info files */
1793 repo->can_update_info_refs = 0;
1794 repo->has_info_refs = remote_exists("info/refs");
1795 repo->has_info_packs = remote_exists("objects/info/packs");
1796 if (repo->has_info_refs) {
1797 info_ref_lock = lock_remote("info/refs", LOCK_TIME);
1799 repo->can_update_info_refs = 1;
1801 error("cannot lock existing info/refs");
1806 if (repo->has_info_packs)
1809 /* Get a list of all local and remote heads to validate refspecs */
1810 local_refs = get_local_heads();
1811 fprintf(stderr, "Fetching remote heads...\n");
1812 get_dav_remote_heads();
1813 run_request_queue();
1815 /* Remove a remote branch if -d or -D was specified */
1816 if (delete_branch) {
1817 const char *branch = rs.items[i].src;
1818 if (delete_remote_branch(branch, force_delete) == -1) {
1819 fprintf(stderr, "Unable to delete remote branch %s\n",
1822 printf("error %s cannot remove\n", branch);
1828 if (match_push_refs(local_refs, &remote_refs, &rs, push_all)) {
1833 fprintf(stderr, "No refs in common and none specified; doing nothing.\n");
1835 printf("error null no match\n");
1841 for (ref = remote_refs; ref; ref = ref->next) {
1842 struct argv_array commit_argv = ARGV_ARRAY_INIT;
1847 if (is_null_oid(&ref->peer_ref->new_oid)) {
1848 if (delete_remote_branch(ref->name, 1) == -1) {
1849 error("Could not remove %s", ref->name);
1851 printf("error %s cannot remove\n", ref->name);
1854 else if (helper_status)
1855 printf("ok %s\n", ref->name);
1860 if (!oidcmp(&ref->old_oid, &ref->peer_ref->new_oid)) {
1862 fprintf(stderr, "'%s': up-to-date\n", ref->name);
1864 printf("ok %s up to date\n", ref->name);
1869 !is_null_oid(&ref->old_oid) &&
1871 if (!has_object_file(&ref->old_oid) ||
1872 !ref_newer(&ref->peer_ref->new_oid,
1875 * We do not have the remote ref, or
1876 * we know that the remote ref is not
1877 * an ancestor of what we are trying to
1878 * push. Either way this can be losing
1879 * commits at the remote end and likely
1880 * we were not up to date to begin with.
1882 error("remote '%s' is not an ancestor of\n"
1884 "Maybe you are not up-to-date and "
1885 "need to pull first?",
1887 ref->peer_ref->name);
1889 printf("error %s non-fast forward\n", ref->name);
1894 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
1897 fprintf(stderr, "updating '%s'", ref->name);
1898 if (strcmp(ref->name, ref->peer_ref->name))
1899 fprintf(stderr, " using '%s'", ref->peer_ref->name);
1900 fprintf(stderr, "\n from %s\n to %s\n",
1901 oid_to_hex(&ref->old_oid), oid_to_hex(&ref->new_oid));
1904 printf("ok %s\n", ref->name);
1908 /* Lock remote branch ref */
1909 ref_lock = lock_remote(ref->name, LOCK_TIME);
1910 if (ref_lock == NULL) {
1911 fprintf(stderr, "Unable to lock remote branch %s\n",
1914 printf("error %s lock error\n", ref->name);
1919 /* Set up revision info for this refspec */
1920 argv_array_push(&commit_argv, ""); /* ignored */
1921 argv_array_push(&commit_argv, "--objects");
1922 argv_array_push(&commit_argv, oid_to_hex(&ref->new_oid));
1923 if (!push_all && !is_null_oid(&ref->old_oid))
1924 argv_array_pushf(&commit_argv, "^%s",
1925 oid_to_hex(&ref->old_oid));
1926 init_revisions(&revs, setup_git_directory());
1927 setup_revisions(commit_argv.argc, commit_argv.argv, &revs, NULL);
1928 revs.edge_hint = 0; /* just in case */
1930 /* Generate a list of objects that need to be pushed */
1932 if (prepare_revision_walk(&revs))
1933 die("revision walk setup failed");
1934 mark_edges_uninteresting(&revs, NULL);
1935 objects_to_send = get_delta(&revs, ref_lock);
1936 finish_all_active_slots();
1938 /* Push missing objects to remote, this would be a
1939 convenient time to pack them first if appropriate. */
1941 if (objects_to_send)
1942 fprintf(stderr, " sending %d objects\n",
1945 run_request_queue();
1947 /* Update the remote branch if all went well */
1948 if (aborted || !update_remote(ref->new_oid.hash, ref_lock))
1952 fprintf(stderr, " done\n");
1954 printf("%s %s\n", !rc ? "ok" : "error", ref->name);
1955 unlock_remote(ref_lock);
1957 argv_array_clear(&commit_argv);
1960 /* Update remote server info if appropriate */
1961 if (repo->has_info_refs && new_refs) {
1962 if (info_ref_lock && repo->can_update_info_refs) {
1963 fprintf(stderr, "Updating remote server info\n");
1965 update_remote_info_refs(info_ref_lock);
1967 fprintf(stderr, "Unable to update server info\n");
1973 unlock_remote(info_ref_lock);
1978 request = request_queue_head;
1979 while (request != NULL) {
1980 next_request = request->next;
1981 release_request(request);
1982 request = next_request;