Merge branch 'hn/refs-trace-errno'
[git] / http-push.c
1 #include "cache.h"
2 #include "repository.h"
3 #include "commit.h"
4 #include "tag.h"
5 #include "blob.h"
6 #include "http.h"
7 #include "refs.h"
8 #include "diff.h"
9 #include "revision.h"
10 #include "exec-cmd.h"
11 #include "remote.h"
12 #include "list-objects.h"
13 #include "sigchain.h"
14 #include "strvec.h"
15 #include "packfile.h"
16 #include "object-store.h"
17 #include "commit-reach.h"
18
19 #ifdef EXPAT_NEEDS_XMLPARSE_H
20 #include <xmlparse.h>
21 #else
22 #include <expat.h>
23 #endif
24
25 static const char http_push_usage[] =
26 "git http-push [--all] [--dry-run] [--force] [--verbose] <remote> [<head>...]\n";
27
28 #ifndef XML_STATUS_OK
29 enum XML_Status {
30   XML_STATUS_OK = 1,
31   XML_STATUS_ERROR = 0
32 };
33 #define XML_STATUS_OK    1
34 #define XML_STATUS_ERROR 0
35 #endif
36
37 #define PREV_BUF_SIZE 4096
38
39 /* DAV methods */
40 #define DAV_LOCK "LOCK"
41 #define DAV_MKCOL "MKCOL"
42 #define DAV_MOVE "MOVE"
43 #define DAV_PROPFIND "PROPFIND"
44 #define DAV_PUT "PUT"
45 #define DAV_UNLOCK "UNLOCK"
46 #define DAV_DELETE "DELETE"
47
48 /* DAV lock flags */
49 #define DAV_PROP_LOCKWR (1u << 0)
50 #define DAV_PROP_LOCKEX (1u << 1)
51 #define DAV_LOCK_OK (1u << 2)
52
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"
63
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>"
68
69 #define LOCK_TIME 600
70 #define LOCK_REFRESH 30
71
72 /* Remember to update object flag allocation in object.h */
73 #define LOCAL    (1u<<11)
74 #define REMOTE   (1u<<12)
75 #define FETCHING (1u<<13)
76 #define PUSHING  (1u<<14)
77
78 /* We allow "recursive" symbolic refs. Only within reason, though */
79 #define MAXDEPTH 5
80
81 static int pushing;
82 static int aborted;
83 static signed char remote_dir_exists[256];
84
85 static int push_verbosely;
86 static int push_all = MATCH_REFS_NONE;
87 static int force_all;
88 static int dry_run;
89 static int helper_status;
90
91 static struct object_list *objects;
92
93 struct repo {
94         char *url;
95         char *path;
96         int path_len;
97         int has_info_refs;
98         int can_update_info_refs;
99         int has_info_packs;
100         struct packed_git *packs;
101         struct remote_lock *locks;
102 };
103
104 static struct repo *repo;
105
106 enum transfer_state {
107         NEED_FETCH,
108         RUN_FETCH_LOOSE,
109         RUN_FETCH_PACKED,
110         NEED_PUSH,
111         RUN_MKCOL,
112         RUN_PUT,
113         RUN_MOVE,
114         ABORTED,
115         COMPLETE
116 };
117
118 struct transfer_request {
119         struct object *obj;
120         struct packed_git *target;
121         char *url;
122         char *dest;
123         struct remote_lock *lock;
124         struct curl_slist *headers;
125         struct buffer buffer;
126         enum transfer_state state;
127         CURLcode curl_result;
128         char errorstr[CURL_ERROR_SIZE];
129         long http_code;
130         void *userData;
131         struct active_request_slot *slot;
132         struct transfer_request *next;
133 };
134
135 static struct transfer_request *request_queue_head;
136
137 struct xml_ctx {
138         char *name;
139         int len;
140         char *cdata;
141         void (*userFunc)(struct xml_ctx *ctx, int tag_closed);
142         void *userData;
143 };
144
145 struct remote_lock {
146         char *url;
147         char *owner;
148         char *token;
149         char tmpfile_suffix[GIT_MAX_HEXSZ + 1];
150         time_t start_time;
151         long timeout;
152         int refreshing;
153         struct remote_lock *next;
154 };
155
156 /* Flags that control remote_ls processing */
157 #define PROCESS_FILES (1u << 0)
158 #define PROCESS_DIRS  (1u << 1)
159 #define RECURSIVE     (1u << 2)
160
161 /* Flags that remote_ls passes to callback functions */
162 #define IS_DIR (1u << 0)
163
164 struct remote_ls_ctx {
165         char *path;
166         void (*userFunc)(struct remote_ls_ctx *ls);
167         void *userData;
168         int flags;
169         char *dentry_name;
170         int dentry_flags;
171         struct remote_ls_ctx *parent;
172 };
173
174 /* get_dav_token_headers options */
175 enum dav_header_flag {
176         DAV_HEADER_IF = (1u << 0),
177         DAV_HEADER_LOCK = (1u << 1),
178         DAV_HEADER_TIMEOUT = (1u << 2)
179 };
180
181 static char *xml_entities(const char *s)
182 {
183         struct strbuf buf = STRBUF_INIT;
184         strbuf_addstr_xml_quoted(&buf, s);
185         return strbuf_detach(&buf, NULL);
186 }
187
188 static void curl_setup_http_get(CURL *curl, const char *url,
189                 const char *custom_req)
190 {
191         curl_easy_setopt(curl, CURLOPT_HTTPGET, 1);
192         curl_easy_setopt(curl, CURLOPT_URL, url);
193         curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, custom_req);
194         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, fwrite_null);
195 }
196
197 static void curl_setup_http(CURL *curl, const char *url,
198                 const char *custom_req, struct buffer *buffer,
199                 curl_write_callback write_fn)
200 {
201         curl_easy_setopt(curl, CURLOPT_PUT, 1);
202         curl_easy_setopt(curl, CURLOPT_URL, url);
203         curl_easy_setopt(curl, CURLOPT_INFILE, buffer);
204         curl_easy_setopt(curl, CURLOPT_INFILESIZE, buffer->buf.len);
205         curl_easy_setopt(curl, CURLOPT_READFUNCTION, fread_buffer);
206 #ifndef NO_CURL_IOCTL
207         curl_easy_setopt(curl, CURLOPT_IOCTLFUNCTION, ioctl_buffer);
208         curl_easy_setopt(curl, CURLOPT_IOCTLDATA, buffer);
209 #endif
210         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_fn);
211         curl_easy_setopt(curl, CURLOPT_NOBODY, 0);
212         curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, custom_req);
213         curl_easy_setopt(curl, CURLOPT_UPLOAD, 1);
214 }
215
216 static struct curl_slist *get_dav_token_headers(struct remote_lock *lock, enum dav_header_flag options)
217 {
218         struct strbuf buf = STRBUF_INIT;
219         struct curl_slist *dav_headers = http_copy_default_headers();
220
221         if (options & DAV_HEADER_IF) {
222                 strbuf_addf(&buf, "If: (<%s>)", lock->token);
223                 dav_headers = curl_slist_append(dav_headers, buf.buf);
224                 strbuf_reset(&buf);
225         }
226         if (options & DAV_HEADER_LOCK) {
227                 strbuf_addf(&buf, "Lock-Token: <%s>", lock->token);
228                 dav_headers = curl_slist_append(dav_headers, buf.buf);
229                 strbuf_reset(&buf);
230         }
231         if (options & DAV_HEADER_TIMEOUT) {
232                 strbuf_addf(&buf, "Timeout: Second-%ld", lock->timeout);
233                 dav_headers = curl_slist_append(dav_headers, buf.buf);
234                 strbuf_reset(&buf);
235         }
236         strbuf_release(&buf);
237
238         return dav_headers;
239 }
240
241 static void finish_request(struct transfer_request *request);
242 static void release_request(struct transfer_request *request);
243
244 static void process_response(void *callback_data)
245 {
246         struct transfer_request *request =
247                 (struct transfer_request *)callback_data;
248
249         finish_request(request);
250 }
251
252 #ifdef USE_CURL_MULTI
253
254 static void start_fetch_loose(struct transfer_request *request)
255 {
256         struct active_request_slot *slot;
257         struct http_object_request *obj_req;
258
259         obj_req = new_http_object_request(repo->url, &request->obj->oid);
260         if (obj_req == NULL) {
261                 request->state = ABORTED;
262                 return;
263         }
264
265         slot = obj_req->slot;
266         slot->callback_func = process_response;
267         slot->callback_data = request;
268         request->slot = slot;
269         request->userData = obj_req;
270
271         /* Try to get the request started, abort the request on error */
272         request->state = RUN_FETCH_LOOSE;
273         if (!start_active_slot(slot)) {
274                 fprintf(stderr, "Unable to start GET request\n");
275                 repo->can_update_info_refs = 0;
276                 release_http_object_request(obj_req);
277                 release_request(request);
278         }
279 }
280
281 static void start_mkcol(struct transfer_request *request)
282 {
283         char *hex = oid_to_hex(&request->obj->oid);
284         struct active_request_slot *slot;
285
286         request->url = get_remote_object_url(repo->url, hex, 1);
287
288         slot = get_active_slot();
289         slot->callback_func = process_response;
290         slot->callback_data = request;
291         curl_setup_http_get(slot->curl, request->url, DAV_MKCOL);
292         curl_easy_setopt(slot->curl, CURLOPT_ERRORBUFFER, request->errorstr);
293
294         if (start_active_slot(slot)) {
295                 request->slot = slot;
296                 request->state = RUN_MKCOL;
297         } else {
298                 request->state = ABORTED;
299                 FREE_AND_NULL(request->url);
300         }
301 }
302 #endif
303
304 static void start_fetch_packed(struct transfer_request *request)
305 {
306         struct packed_git *target;
307
308         struct transfer_request *check_request = request_queue_head;
309         struct http_pack_request *preq;
310
311         target = find_sha1_pack(request->obj->oid.hash, repo->packs);
312         if (!target) {
313                 fprintf(stderr, "Unable to fetch %s, will not be able to update server info refs\n", oid_to_hex(&request->obj->oid));
314                 repo->can_update_info_refs = 0;
315                 release_request(request);
316                 return;
317         }
318         close_pack_index(target);
319         request->target = target;
320
321         fprintf(stderr, "Fetching pack %s\n",
322                 hash_to_hex(target->hash));
323         fprintf(stderr, " which contains %s\n", oid_to_hex(&request->obj->oid));
324
325         preq = new_http_pack_request(target->hash, repo->url);
326         if (preq == NULL) {
327                 repo->can_update_info_refs = 0;
328                 return;
329         }
330
331         /* Make sure there isn't another open request for this pack */
332         while (check_request) {
333                 if (check_request->state == RUN_FETCH_PACKED &&
334                     !strcmp(check_request->url, preq->url)) {
335                         release_http_pack_request(preq);
336                         release_request(request);
337                         return;
338                 }
339                 check_request = check_request->next;
340         }
341
342         preq->slot->callback_func = process_response;
343         preq->slot->callback_data = request;
344         request->slot = preq->slot;
345         request->userData = preq;
346
347         /* Try to get the request started, abort the request on error */
348         request->state = RUN_FETCH_PACKED;
349         if (!start_active_slot(preq->slot)) {
350                 fprintf(stderr, "Unable to start GET request\n");
351                 release_http_pack_request(preq);
352                 repo->can_update_info_refs = 0;
353                 release_request(request);
354         }
355 }
356
357 static void start_put(struct transfer_request *request)
358 {
359         char *hex = oid_to_hex(&request->obj->oid);
360         struct active_request_slot *slot;
361         struct strbuf buf = STRBUF_INIT;
362         enum object_type type;
363         char hdr[50];
364         void *unpacked;
365         unsigned long len;
366         int hdrlen;
367         ssize_t size;
368         git_zstream stream;
369
370         unpacked = read_object_file(&request->obj->oid, &type, &len);
371         hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %"PRIuMAX , type_name(type), (uintmax_t)len) + 1;
372
373         /* Set it up */
374         git_deflate_init(&stream, zlib_compression_level);
375         size = git_deflate_bound(&stream, len + hdrlen);
376         strbuf_init(&request->buffer.buf, size);
377         request->buffer.posn = 0;
378
379         /* Compress it */
380         stream.next_out = (unsigned char *)request->buffer.buf.buf;
381         stream.avail_out = size;
382
383         /* First header.. */
384         stream.next_in = (void *)hdr;
385         stream.avail_in = hdrlen;
386         while (git_deflate(&stream, 0) == Z_OK)
387                 ; /* nothing */
388
389         /* Then the data itself.. */
390         stream.next_in = unpacked;
391         stream.avail_in = len;
392         while (git_deflate(&stream, Z_FINISH) == Z_OK)
393                 ; /* nothing */
394         git_deflate_end(&stream);
395         free(unpacked);
396
397         request->buffer.buf.len = stream.total_out;
398
399         strbuf_addstr(&buf, "Destination: ");
400         append_remote_object_url(&buf, repo->url, hex, 0);
401         request->dest = strbuf_detach(&buf, NULL);
402
403         append_remote_object_url(&buf, repo->url, hex, 0);
404         strbuf_add(&buf, request->lock->tmpfile_suffix, the_hash_algo->hexsz + 1);
405         request->url = strbuf_detach(&buf, NULL);
406
407         slot = get_active_slot();
408         slot->callback_func = process_response;
409         slot->callback_data = request;
410         curl_setup_http(slot->curl, request->url, DAV_PUT,
411                         &request->buffer, fwrite_null);
412
413         if (start_active_slot(slot)) {
414                 request->slot = slot;
415                 request->state = RUN_PUT;
416         } else {
417                 request->state = ABORTED;
418                 FREE_AND_NULL(request->url);
419         }
420 }
421
422 static void start_move(struct transfer_request *request)
423 {
424         struct active_request_slot *slot;
425         struct curl_slist *dav_headers = http_copy_default_headers();
426
427         slot = get_active_slot();
428         slot->callback_func = process_response;
429         slot->callback_data = request;
430         curl_setup_http_get(slot->curl, request->url, DAV_MOVE);
431         dav_headers = curl_slist_append(dav_headers, request->dest);
432         dav_headers = curl_slist_append(dav_headers, "Overwrite: T");
433         curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
434
435         if (start_active_slot(slot)) {
436                 request->slot = slot;
437                 request->state = RUN_MOVE;
438         } else {
439                 request->state = ABORTED;
440                 FREE_AND_NULL(request->url);
441         }
442 }
443
444 static int refresh_lock(struct remote_lock *lock)
445 {
446         struct active_request_slot *slot;
447         struct slot_results results;
448         struct curl_slist *dav_headers;
449         int rc = 0;
450
451         lock->refreshing = 1;
452
453         dav_headers = get_dav_token_headers(lock, DAV_HEADER_IF | DAV_HEADER_TIMEOUT);
454
455         slot = get_active_slot();
456         slot->results = &results;
457         curl_setup_http_get(slot->curl, lock->url, DAV_LOCK);
458         curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
459
460         if (start_active_slot(slot)) {
461                 run_active_slot(slot);
462                 if (results.curl_result != CURLE_OK) {
463                         fprintf(stderr, "LOCK HTTP error %ld\n",
464                                 results.http_code);
465                 } else {
466                         lock->start_time = time(NULL);
467                         rc = 1;
468                 }
469         }
470
471         lock->refreshing = 0;
472         curl_slist_free_all(dav_headers);
473
474         return rc;
475 }
476
477 static void check_locks(void)
478 {
479         struct remote_lock *lock = repo->locks;
480         time_t current_time = time(NULL);
481         int time_remaining;
482
483         while (lock) {
484                 time_remaining = lock->start_time + lock->timeout -
485                         current_time;
486                 if (!lock->refreshing && time_remaining < LOCK_REFRESH) {
487                         if (!refresh_lock(lock)) {
488                                 fprintf(stderr,
489                                         "Unable to refresh lock for %s\n",
490                                         lock->url);
491                                 aborted = 1;
492                                 return;
493                         }
494                 }
495                 lock = lock->next;
496         }
497 }
498
499 static void release_request(struct transfer_request *request)
500 {
501         struct transfer_request *entry = request_queue_head;
502
503         if (request == request_queue_head) {
504                 request_queue_head = request->next;
505         } else {
506                 while (entry && entry->next != request)
507                         entry = entry->next;
508                 if (entry)
509                         entry->next = request->next;
510         }
511
512         free(request->url);
513         free(request);
514 }
515
516 static void finish_request(struct transfer_request *request)
517 {
518         struct http_pack_request *preq;
519         struct http_object_request *obj_req;
520
521         request->curl_result = request->slot->curl_result;
522         request->http_code = request->slot->http_code;
523         request->slot = NULL;
524
525         /* Keep locks active */
526         check_locks();
527
528         if (request->headers != NULL)
529                 curl_slist_free_all(request->headers);
530
531         /* URL is reused for MOVE after PUT and used during FETCH */
532         if (request->state != RUN_PUT && request->state != RUN_FETCH_PACKED) {
533                 FREE_AND_NULL(request->url);
534         }
535
536         if (request->state == RUN_MKCOL) {
537                 if (request->curl_result == CURLE_OK ||
538                     request->http_code == 405) {
539                         remote_dir_exists[request->obj->oid.hash[0]] = 1;
540                         start_put(request);
541                 } else {
542                         fprintf(stderr, "MKCOL %s failed, aborting (%d/%ld)\n",
543                                 oid_to_hex(&request->obj->oid),
544                                 request->curl_result, request->http_code);
545                         request->state = ABORTED;
546                         aborted = 1;
547                 }
548         } else if (request->state == RUN_PUT) {
549                 if (request->curl_result == CURLE_OK) {
550                         start_move(request);
551                 } else {
552                         fprintf(stderr, "PUT %s failed, aborting (%d/%ld)\n",
553                                 oid_to_hex(&request->obj->oid),
554                                 request->curl_result, request->http_code);
555                         request->state = ABORTED;
556                         aborted = 1;
557                 }
558         } else if (request->state == RUN_MOVE) {
559                 if (request->curl_result == CURLE_OK) {
560                         if (push_verbosely)
561                                 fprintf(stderr, "    sent %s\n",
562                                         oid_to_hex(&request->obj->oid));
563                         request->obj->flags |= REMOTE;
564                         release_request(request);
565                 } else {
566                         fprintf(stderr, "MOVE %s failed, aborting (%d/%ld)\n",
567                                 oid_to_hex(&request->obj->oid),
568                                 request->curl_result, request->http_code);
569                         request->state = ABORTED;
570                         aborted = 1;
571                 }
572         } else if (request->state == RUN_FETCH_LOOSE) {
573                 obj_req = (struct http_object_request *)request->userData;
574
575                 if (finish_http_object_request(obj_req) == 0)
576                         if (obj_req->rename == 0)
577                                 request->obj->flags |= (LOCAL | REMOTE);
578
579                 /* Try fetching packed if necessary */
580                 if (request->obj->flags & LOCAL) {
581                         release_http_object_request(obj_req);
582                         release_request(request);
583                 } else
584                         start_fetch_packed(request);
585
586         } else if (request->state == RUN_FETCH_PACKED) {
587                 int fail = 1;
588                 if (request->curl_result != CURLE_OK) {
589                         fprintf(stderr, "Unable to get pack file %s\n%s",
590                                 request->url, curl_errorstr);
591                 } else {
592                         preq = (struct http_pack_request *)request->userData;
593
594                         if (preq) {
595                                 if (finish_http_pack_request(preq) == 0)
596                                         fail = 0;
597                                 release_http_pack_request(preq);
598                         }
599                 }
600                 if (fail)
601                         repo->can_update_info_refs = 0;
602                 else
603                         http_install_packfile(request->target, &repo->packs);
604                 release_request(request);
605         }
606 }
607
608 #ifdef USE_CURL_MULTI
609 static int is_running_queue;
610 static int fill_active_slot(void *unused)
611 {
612         struct transfer_request *request;
613
614         if (aborted || !is_running_queue)
615                 return 0;
616
617         for (request = request_queue_head; request; request = request->next) {
618                 if (request->state == NEED_FETCH) {
619                         start_fetch_loose(request);
620                         return 1;
621                 } else if (pushing && request->state == NEED_PUSH) {
622                         if (remote_dir_exists[request->obj->oid.hash[0]] == 1) {
623                                 start_put(request);
624                         } else {
625                                 start_mkcol(request);
626                         }
627                         return 1;
628                 }
629         }
630         return 0;
631 }
632 #endif
633
634 static void get_remote_object_list(unsigned char parent);
635
636 static void add_fetch_request(struct object *obj)
637 {
638         struct transfer_request *request;
639
640         check_locks();
641
642         /*
643          * Don't fetch the object if it's known to exist locally
644          * or is already in the request queue
645          */
646         if (remote_dir_exists[obj->oid.hash[0]] == -1)
647                 get_remote_object_list(obj->oid.hash[0]);
648         if (obj->flags & (LOCAL | FETCHING))
649                 return;
650
651         obj->flags |= FETCHING;
652         request = xmalloc(sizeof(*request));
653         request->obj = obj;
654         request->url = NULL;
655         request->lock = NULL;
656         request->headers = NULL;
657         request->state = NEED_FETCH;
658         request->next = request_queue_head;
659         request_queue_head = request;
660
661 #ifdef USE_CURL_MULTI
662         fill_active_slots();
663         step_active_slots();
664 #endif
665 }
666
667 static int add_send_request(struct object *obj, struct remote_lock *lock)
668 {
669         struct transfer_request *request;
670         struct packed_git *target;
671
672         /* Keep locks active */
673         check_locks();
674
675         /*
676          * Don't push the object if it's known to exist on the remote
677          * or is already in the request queue
678          */
679         if (remote_dir_exists[obj->oid.hash[0]] == -1)
680                 get_remote_object_list(obj->oid.hash[0]);
681         if (obj->flags & (REMOTE | PUSHING))
682                 return 0;
683         target = find_sha1_pack(obj->oid.hash, repo->packs);
684         if (target) {
685                 obj->flags |= REMOTE;
686                 return 0;
687         }
688
689         obj->flags |= PUSHING;
690         request = xmalloc(sizeof(*request));
691         request->obj = obj;
692         request->url = NULL;
693         request->lock = lock;
694         request->headers = NULL;
695         request->state = NEED_PUSH;
696         request->next = request_queue_head;
697         request_queue_head = request;
698
699 #ifdef USE_CURL_MULTI
700         fill_active_slots();
701         step_active_slots();
702 #endif
703
704         return 1;
705 }
706
707 static int fetch_indices(void)
708 {
709         int ret;
710
711         if (push_verbosely)
712                 fprintf(stderr, "Getting pack list\n");
713
714         switch (http_get_info_packs(repo->url, &repo->packs)) {
715         case HTTP_OK:
716         case HTTP_MISSING_TARGET:
717                 ret = 0;
718                 break;
719         default:
720                 ret = -1;
721         }
722
723         return ret;
724 }
725
726 static void one_remote_object(const struct object_id *oid)
727 {
728         struct object *obj;
729
730         obj = lookup_object(the_repository, oid);
731         if (!obj)
732                 obj = parse_object(the_repository, oid);
733
734         /* Ignore remote objects that don't exist locally */
735         if (!obj)
736                 return;
737
738         obj->flags |= REMOTE;
739         if (!object_list_contains(objects, obj))
740                 object_list_insert(obj, &objects);
741 }
742
743 static void handle_lockprop_ctx(struct xml_ctx *ctx, int tag_closed)
744 {
745         int *lock_flags = (int *)ctx->userData;
746
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;
752                         }
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;
758                 }
759         }
760 }
761
762 static void handle_new_lock_ctx(struct xml_ctx *ctx, int tag_closed)
763 {
764         struct remote_lock *lock = (struct remote_lock *)ctx->userData;
765         git_hash_ctx hash_ctx;
766         unsigned char lock_token_hash[GIT_MAX_RAWSZ];
767
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                         const char *arg;
773                         if (skip_prefix(ctx->cdata, "Second-", &arg))
774                                 lock->timeout = strtol(arg, NULL, 10);
775                 } else if (!strcmp(ctx->name, DAV_ACTIVELOCK_TOKEN)) {
776                         lock->token = xstrdup(ctx->cdata);
777
778                         the_hash_algo->init_fn(&hash_ctx);
779                         the_hash_algo->update_fn(&hash_ctx, lock->token, strlen(lock->token));
780                         the_hash_algo->final_fn(lock_token_hash, &hash_ctx);
781
782                         lock->tmpfile_suffix[0] = '_';
783                         memcpy(lock->tmpfile_suffix + 1, hash_to_hex(lock_token_hash), the_hash_algo->hexsz);
784                 }
785         }
786 }
787
788 static void one_remote_ref(const char *refname);
789
790 static void
791 xml_start_tag(void *userData, const char *name, const char **atts)
792 {
793         struct xml_ctx *ctx = (struct xml_ctx *)userData;
794         const char *c = strchr(name, ':');
795         int old_namelen, new_len;
796
797         if (c == NULL)
798                 c = name;
799         else
800                 c++;
801
802         old_namelen = strlen(ctx->name);
803         new_len = old_namelen + strlen(c) + 2;
804
805         if (new_len > ctx->len) {
806                 ctx->name = xrealloc(ctx->name, new_len);
807                 ctx->len = new_len;
808         }
809         xsnprintf(ctx->name + old_namelen, ctx->len - old_namelen, ".%s", c);
810
811         FREE_AND_NULL(ctx->cdata);
812
813         ctx->userFunc(ctx, 0);
814 }
815
816 static void
817 xml_end_tag(void *userData, const char *name)
818 {
819         struct xml_ctx *ctx = (struct xml_ctx *)userData;
820         const char *c = strchr(name, ':');
821         char *ep;
822
823         ctx->userFunc(ctx, 1);
824
825         if (c == NULL)
826                 c = name;
827         else
828                 c++;
829
830         ep = ctx->name + strlen(ctx->name) - strlen(c) - 1;
831         *ep = 0;
832 }
833
834 static void
835 xml_cdata(void *userData, const XML_Char *s, int len)
836 {
837         struct xml_ctx *ctx = (struct xml_ctx *)userData;
838         free(ctx->cdata);
839         ctx->cdata = xmemdupz(s, len);
840 }
841
842 static struct remote_lock *lock_remote(const char *path, long timeout)
843 {
844         struct active_request_slot *slot;
845         struct slot_results results;
846         struct buffer out_buffer = { STRBUF_INIT, 0 };
847         struct strbuf in_buffer = STRBUF_INIT;
848         char *url;
849         char *ep;
850         char timeout_header[25];
851         struct remote_lock *lock = NULL;
852         struct curl_slist *dav_headers = http_copy_default_headers();
853         struct xml_ctx ctx;
854         char *escaped;
855
856         url = xstrfmt("%s%s", repo->url, path);
857
858         /* Make sure leading directories exist for the remote ref */
859         ep = strchr(url + strlen(repo->url) + 1, '/');
860         while (ep) {
861                 char saved_character = ep[1];
862                 ep[1] = '\0';
863                 slot = get_active_slot();
864                 slot->results = &results;
865                 curl_setup_http_get(slot->curl, url, DAV_MKCOL);
866                 if (start_active_slot(slot)) {
867                         run_active_slot(slot);
868                         if (results.curl_result != CURLE_OK &&
869                             results.http_code != 405) {
870                                 fprintf(stderr,
871                                         "Unable to create branch path %s\n",
872                                         url);
873                                 free(url);
874                                 return NULL;
875                         }
876                 } else {
877                         fprintf(stderr, "Unable to start MKCOL request\n");
878                         free(url);
879                         return NULL;
880                 }
881                 ep[1] = saved_character;
882                 ep = strchr(ep + 1, '/');
883         }
884
885         escaped = xml_entities(ident_default_email());
886         strbuf_addf(&out_buffer.buf, LOCK_REQUEST, escaped);
887         free(escaped);
888
889         xsnprintf(timeout_header, sizeof(timeout_header), "Timeout: Second-%ld", timeout);
890         dav_headers = curl_slist_append(dav_headers, timeout_header);
891         dav_headers = curl_slist_append(dav_headers, "Content-Type: text/xml");
892
893         slot = get_active_slot();
894         slot->results = &results;
895         curl_setup_http(slot->curl, url, DAV_LOCK, &out_buffer, fwrite_buffer);
896         curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
897         curl_easy_setopt(slot->curl, CURLOPT_FILE, &in_buffer);
898
899         CALLOC_ARRAY(lock, 1);
900         lock->timeout = -1;
901
902         if (start_active_slot(slot)) {
903                 run_active_slot(slot);
904                 if (results.curl_result == CURLE_OK) {
905                         XML_Parser parser = XML_ParserCreate(NULL);
906                         enum XML_Status result;
907                         ctx.name = xcalloc(10, 1);
908                         ctx.len = 0;
909                         ctx.cdata = NULL;
910                         ctx.userFunc = handle_new_lock_ctx;
911                         ctx.userData = lock;
912                         XML_SetUserData(parser, &ctx);
913                         XML_SetElementHandler(parser, xml_start_tag,
914                                               xml_end_tag);
915                         XML_SetCharacterDataHandler(parser, xml_cdata);
916                         result = XML_Parse(parser, in_buffer.buf,
917                                            in_buffer.len, 1);
918                         free(ctx.name);
919                         if (result != XML_STATUS_OK) {
920                                 fprintf(stderr, "XML error: %s\n",
921                                         XML_ErrorString(
922                                                 XML_GetErrorCode(parser)));
923                                 lock->timeout = -1;
924                         }
925                         XML_ParserFree(parser);
926                 } else {
927                         fprintf(stderr,
928                                 "error: curl result=%d, HTTP code=%ld\n",
929                                 results.curl_result, results.http_code);
930                 }
931         } else {
932                 fprintf(stderr, "Unable to start LOCK request\n");
933         }
934
935         curl_slist_free_all(dav_headers);
936         strbuf_release(&out_buffer.buf);
937         strbuf_release(&in_buffer);
938
939         if (lock->token == NULL || lock->timeout <= 0) {
940                 free(lock->token);
941                 free(lock->owner);
942                 free(url);
943                 FREE_AND_NULL(lock);
944         } else {
945                 lock->url = url;
946                 lock->start_time = time(NULL);
947                 lock->next = repo->locks;
948                 repo->locks = lock;
949         }
950
951         return lock;
952 }
953
954 static int unlock_remote(struct remote_lock *lock)
955 {
956         struct active_request_slot *slot;
957         struct slot_results results;
958         struct remote_lock *prev = repo->locks;
959         struct curl_slist *dav_headers;
960         int rc = 0;
961
962         dav_headers = get_dav_token_headers(lock, DAV_HEADER_LOCK);
963
964         slot = get_active_slot();
965         slot->results = &results;
966         curl_setup_http_get(slot->curl, lock->url, DAV_UNLOCK);
967         curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
968
969         if (start_active_slot(slot)) {
970                 run_active_slot(slot);
971                 if (results.curl_result == CURLE_OK)
972                         rc = 1;
973                 else
974                         fprintf(stderr, "UNLOCK HTTP error %ld\n",
975                                 results.http_code);
976         } else {
977                 fprintf(stderr, "Unable to start UNLOCK request\n");
978         }
979
980         curl_slist_free_all(dav_headers);
981
982         if (repo->locks == lock) {
983                 repo->locks = lock->next;
984         } else {
985                 while (prev && prev->next != lock)
986                         prev = prev->next;
987                 if (prev)
988                         prev->next = lock->next;
989         }
990
991         free(lock->owner);
992         free(lock->url);
993         free(lock->token);
994         free(lock);
995
996         return rc;
997 }
998
999 static void remove_locks(void)
1000 {
1001         struct remote_lock *lock = repo->locks;
1002
1003         fprintf(stderr, "Removing remote locks...\n");
1004         while (lock) {
1005                 struct remote_lock *next = lock->next;
1006                 unlock_remote(lock);
1007                 lock = next;
1008         }
1009 }
1010
1011 static void remove_locks_on_signal(int signo)
1012 {
1013         remove_locks();
1014         sigchain_pop(signo);
1015         raise(signo);
1016 }
1017
1018 static void remote_ls(const char *path, int flags,
1019                       void (*userFunc)(struct remote_ls_ctx *ls),
1020                       void *userData);
1021
1022 /* extract hex from sharded "xx/x{38}" filename */
1023 static int get_oid_hex_from_objpath(const char *path, struct object_id *oid)
1024 {
1025         if (strlen(path) != the_hash_algo->hexsz + 1)
1026                 return -1;
1027
1028         if (hex_to_bytes(oid->hash, path, 1))
1029                 return -1;
1030         path += 2;
1031         path++; /* skip '/' */
1032
1033         return hex_to_bytes(oid->hash + 1, path, the_hash_algo->rawsz - 1);
1034 }
1035
1036 static void process_ls_object(struct remote_ls_ctx *ls)
1037 {
1038         unsigned int *parent = (unsigned int *)ls->userData;
1039         const char *path = ls->dentry_name;
1040         struct object_id oid;
1041
1042         if (!strcmp(ls->path, ls->dentry_name) && (ls->flags & IS_DIR)) {
1043                 remote_dir_exists[*parent] = 1;
1044                 return;
1045         }
1046
1047         if (!skip_prefix(path, "objects/", &path) ||
1048             get_oid_hex_from_objpath(path, &oid))
1049                 return;
1050
1051         one_remote_object(&oid);
1052 }
1053
1054 static void process_ls_ref(struct remote_ls_ctx *ls)
1055 {
1056         if (!strcmp(ls->path, ls->dentry_name) && (ls->dentry_flags & IS_DIR)) {
1057                 fprintf(stderr, "  %s\n", ls->dentry_name);
1058                 return;
1059         }
1060
1061         if (!(ls->dentry_flags & IS_DIR))
1062                 one_remote_ref(ls->dentry_name);
1063 }
1064
1065 static void handle_remote_ls_ctx(struct xml_ctx *ctx, int tag_closed)
1066 {
1067         struct remote_ls_ctx *ls = (struct remote_ls_ctx *)ctx->userData;
1068
1069         if (tag_closed) {
1070                 if (!strcmp(ctx->name, DAV_PROPFIND_RESP) && ls->dentry_name) {
1071                         if (ls->dentry_flags & IS_DIR) {
1072
1073                                 /* ensure collection names end with slash */
1074                                 str_end_url_with_slash(ls->dentry_name, &ls->dentry_name);
1075
1076                                 if (ls->flags & PROCESS_DIRS) {
1077                                         ls->userFunc(ls);
1078                                 }
1079                                 if (strcmp(ls->dentry_name, ls->path) &&
1080                                     ls->flags & RECURSIVE) {
1081                                         remote_ls(ls->dentry_name,
1082                                                   ls->flags,
1083                                                   ls->userFunc,
1084                                                   ls->userData);
1085                                 }
1086                         } else if (ls->flags & PROCESS_FILES) {
1087                                 ls->userFunc(ls);
1088                         }
1089                 } else if (!strcmp(ctx->name, DAV_PROPFIND_NAME) && ctx->cdata) {
1090                         char *path = ctx->cdata;
1091                         if (*ctx->cdata == 'h') {
1092                                 path = strstr(path, "//");
1093                                 if (path) {
1094                                         path = strchr(path+2, '/');
1095                                 }
1096                         }
1097                         if (path) {
1098                                 const char *url = repo->url;
1099                                 if (repo->path)
1100                                         url = repo->path;
1101                                 if (strncmp(path, url, repo->path_len))
1102                                         error("Parsed path '%s' does not match url: '%s'",
1103                                               path, url);
1104                                 else {
1105                                         path += repo->path_len;
1106                                         ls->dentry_name = xstrdup(path);
1107                                 }
1108                         }
1109                 } else if (!strcmp(ctx->name, DAV_PROPFIND_COLLECTION)) {
1110                         ls->dentry_flags |= IS_DIR;
1111                 }
1112         } else if (!strcmp(ctx->name, DAV_PROPFIND_RESP)) {
1113                 FREE_AND_NULL(ls->dentry_name);
1114                 ls->dentry_flags = 0;
1115         }
1116 }
1117
1118 /*
1119  * NEEDSWORK: remote_ls() ignores info/refs on the remote side.  But it
1120  * should _only_ heed the information from that file, instead of trying to
1121  * determine the refs from the remote file system (badly: it does not even
1122  * know about packed-refs).
1123  */
1124 static void remote_ls(const char *path, int flags,
1125                       void (*userFunc)(struct remote_ls_ctx *ls),
1126                       void *userData)
1127 {
1128         char *url = xstrfmt("%s%s", repo->url, path);
1129         struct active_request_slot *slot;
1130         struct slot_results results;
1131         struct strbuf in_buffer = STRBUF_INIT;
1132         struct buffer out_buffer = { STRBUF_INIT, 0 };
1133         struct curl_slist *dav_headers = http_copy_default_headers();
1134         struct xml_ctx ctx;
1135         struct remote_ls_ctx ls;
1136
1137         ls.flags = flags;
1138         ls.path = xstrdup(path);
1139         ls.dentry_name = NULL;
1140         ls.dentry_flags = 0;
1141         ls.userData = userData;
1142         ls.userFunc = userFunc;
1143
1144         strbuf_addstr(&out_buffer.buf, PROPFIND_ALL_REQUEST);
1145
1146         dav_headers = curl_slist_append(dav_headers, "Depth: 1");
1147         dav_headers = curl_slist_append(dav_headers, "Content-Type: text/xml");
1148
1149         slot = get_active_slot();
1150         slot->results = &results;
1151         curl_setup_http(slot->curl, url, DAV_PROPFIND,
1152                         &out_buffer, fwrite_buffer);
1153         curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1154         curl_easy_setopt(slot->curl, CURLOPT_FILE, &in_buffer);
1155
1156         if (start_active_slot(slot)) {
1157                 run_active_slot(slot);
1158                 if (results.curl_result == CURLE_OK) {
1159                         XML_Parser parser = XML_ParserCreate(NULL);
1160                         enum XML_Status result;
1161                         ctx.name = xcalloc(10, 1);
1162                         ctx.len = 0;
1163                         ctx.cdata = NULL;
1164                         ctx.userFunc = handle_remote_ls_ctx;
1165                         ctx.userData = &ls;
1166                         XML_SetUserData(parser, &ctx);
1167                         XML_SetElementHandler(parser, xml_start_tag,
1168                                               xml_end_tag);
1169                         XML_SetCharacterDataHandler(parser, xml_cdata);
1170                         result = XML_Parse(parser, in_buffer.buf,
1171                                            in_buffer.len, 1);
1172                         free(ctx.name);
1173
1174                         if (result != XML_STATUS_OK) {
1175                                 fprintf(stderr, "XML error: %s\n",
1176                                         XML_ErrorString(
1177                                                 XML_GetErrorCode(parser)));
1178                         }
1179                         XML_ParserFree(parser);
1180                 }
1181         } else {
1182                 fprintf(stderr, "Unable to start PROPFIND request\n");
1183         }
1184
1185         free(ls.path);
1186         free(url);
1187         strbuf_release(&out_buffer.buf);
1188         strbuf_release(&in_buffer);
1189         curl_slist_free_all(dav_headers);
1190 }
1191
1192 static void get_remote_object_list(unsigned char parent)
1193 {
1194         char path[] = "objects/XX/";
1195         static const char hex[] = "0123456789abcdef";
1196         unsigned int val = parent;
1197
1198         path[8] = hex[val >> 4];
1199         path[9] = hex[val & 0xf];
1200         remote_dir_exists[val] = 0;
1201         remote_ls(path, (PROCESS_FILES | PROCESS_DIRS),
1202                   process_ls_object, &val);
1203 }
1204
1205 static int locking_available(void)
1206 {
1207         struct active_request_slot *slot;
1208         struct slot_results results;
1209         struct strbuf in_buffer = STRBUF_INIT;
1210         struct buffer out_buffer = { STRBUF_INIT, 0 };
1211         struct curl_slist *dav_headers = http_copy_default_headers();
1212         struct xml_ctx ctx;
1213         int lock_flags = 0;
1214         char *escaped;
1215
1216         escaped = xml_entities(repo->url);
1217         strbuf_addf(&out_buffer.buf, PROPFIND_SUPPORTEDLOCK_REQUEST, escaped);
1218         free(escaped);
1219
1220         dav_headers = curl_slist_append(dav_headers, "Depth: 0");
1221         dav_headers = curl_slist_append(dav_headers, "Content-Type: text/xml");
1222
1223         slot = get_active_slot();
1224         slot->results = &results;
1225         curl_setup_http(slot->curl, repo->url, DAV_PROPFIND,
1226                         &out_buffer, fwrite_buffer);
1227         curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1228         curl_easy_setopt(slot->curl, CURLOPT_FILE, &in_buffer);
1229
1230         if (start_active_slot(slot)) {
1231                 run_active_slot(slot);
1232                 if (results.curl_result == CURLE_OK) {
1233                         XML_Parser parser = XML_ParserCreate(NULL);
1234                         enum XML_Status result;
1235                         ctx.name = xcalloc(10, 1);
1236                         ctx.len = 0;
1237                         ctx.cdata = NULL;
1238                         ctx.userFunc = handle_lockprop_ctx;
1239                         ctx.userData = &lock_flags;
1240                         XML_SetUserData(parser, &ctx);
1241                         XML_SetElementHandler(parser, xml_start_tag,
1242                                               xml_end_tag);
1243                         result = XML_Parse(parser, in_buffer.buf,
1244                                            in_buffer.len, 1);
1245                         free(ctx.name);
1246
1247                         if (result != XML_STATUS_OK) {
1248                                 fprintf(stderr, "XML error: %s\n",
1249                                         XML_ErrorString(
1250                                                 XML_GetErrorCode(parser)));
1251                                 lock_flags = 0;
1252                         }
1253                         XML_ParserFree(parser);
1254                         if (!lock_flags)
1255                                 error("no DAV locking support on %s",
1256                                       repo->url);
1257
1258                 } else {
1259                         error("Cannot access URL %s, return code %d",
1260                               repo->url, results.curl_result);
1261                         lock_flags = 0;
1262                 }
1263         } else {
1264                 error("Unable to start PROPFIND request on %s", repo->url);
1265         }
1266
1267         strbuf_release(&out_buffer.buf);
1268         strbuf_release(&in_buffer);
1269         curl_slist_free_all(dav_headers);
1270
1271         return lock_flags;
1272 }
1273
1274 static struct object_list **add_one_object(struct object *obj, struct object_list **p)
1275 {
1276         struct object_list *entry = xmalloc(sizeof(struct object_list));
1277         entry->item = obj;
1278         entry->next = *p;
1279         *p = entry;
1280         return &entry->next;
1281 }
1282
1283 static struct object_list **process_blob(struct blob *blob,
1284                                          struct object_list **p)
1285 {
1286         struct object *obj = &blob->object;
1287
1288         obj->flags |= LOCAL;
1289
1290         if (obj->flags & (UNINTERESTING | SEEN))
1291                 return p;
1292
1293         obj->flags |= SEEN;
1294         return add_one_object(obj, p);
1295 }
1296
1297 static struct object_list **process_tree(struct tree *tree,
1298                                          struct object_list **p)
1299 {
1300         struct object *obj = &tree->object;
1301         struct tree_desc desc;
1302         struct name_entry entry;
1303
1304         obj->flags |= LOCAL;
1305
1306         if (obj->flags & (UNINTERESTING | SEEN))
1307                 return p;
1308         if (parse_tree(tree) < 0)
1309                 die("bad tree object %s", oid_to_hex(&obj->oid));
1310
1311         obj->flags |= SEEN;
1312         p = add_one_object(obj, p);
1313
1314         init_tree_desc(&desc, tree->buffer, tree->size);
1315
1316         while (tree_entry(&desc, &entry))
1317                 switch (object_type(entry.mode)) {
1318                 case OBJ_TREE:
1319                         p = process_tree(lookup_tree(the_repository, &entry.oid),
1320                                          p);
1321                         break;
1322                 case OBJ_BLOB:
1323                         p = process_blob(lookup_blob(the_repository, &entry.oid),
1324                                          p);
1325                         break;
1326                 default:
1327                         /* Subproject commit - not in this repository */
1328                         break;
1329                 }
1330
1331         free_tree_buffer(tree);
1332         return p;
1333 }
1334
1335 static int get_delta(struct rev_info *revs, struct remote_lock *lock)
1336 {
1337         int i;
1338         struct commit *commit;
1339         struct object_list **p = &objects;
1340         int count = 0;
1341
1342         while ((commit = get_revision(revs)) != NULL) {
1343                 p = process_tree(get_commit_tree(commit), p);
1344                 commit->object.flags |= LOCAL;
1345                 if (!(commit->object.flags & UNINTERESTING))
1346                         count += add_send_request(&commit->object, lock);
1347         }
1348
1349         for (i = 0; i < revs->pending.nr; i++) {
1350                 struct object_array_entry *entry = revs->pending.objects + i;
1351                 struct object *obj = entry->item;
1352                 const char *name = entry->name;
1353
1354                 if (obj->flags & (UNINTERESTING | SEEN))
1355                         continue;
1356                 if (obj->type == OBJ_TAG) {
1357                         obj->flags |= SEEN;
1358                         p = add_one_object(obj, p);
1359                         continue;
1360                 }
1361                 if (obj->type == OBJ_TREE) {
1362                         p = process_tree((struct tree *)obj, p);
1363                         continue;
1364                 }
1365                 if (obj->type == OBJ_BLOB) {
1366                         p = process_blob((struct blob *)obj, p);
1367                         continue;
1368                 }
1369                 die("unknown pending object %s (%s)", oid_to_hex(&obj->oid), name);
1370         }
1371
1372         while (objects) {
1373                 if (!(objects->item->flags & UNINTERESTING))
1374                         count += add_send_request(objects->item, lock);
1375                 objects = objects->next;
1376         }
1377
1378         return count;
1379 }
1380
1381 static int update_remote(const struct object_id *oid, struct remote_lock *lock)
1382 {
1383         struct active_request_slot *slot;
1384         struct slot_results results;
1385         struct buffer out_buffer = { STRBUF_INIT, 0 };
1386         struct curl_slist *dav_headers;
1387
1388         dav_headers = get_dav_token_headers(lock, DAV_HEADER_IF);
1389
1390         strbuf_addf(&out_buffer.buf, "%s\n", oid_to_hex(oid));
1391
1392         slot = get_active_slot();
1393         slot->results = &results;
1394         curl_setup_http(slot->curl, lock->url, DAV_PUT,
1395                         &out_buffer, fwrite_null);
1396         curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1397
1398         if (start_active_slot(slot)) {
1399                 run_active_slot(slot);
1400                 strbuf_release(&out_buffer.buf);
1401                 if (results.curl_result != CURLE_OK) {
1402                         fprintf(stderr,
1403                                 "PUT error: curl result=%d, HTTP code=%ld\n",
1404                                 results.curl_result, results.http_code);
1405                         /* We should attempt recovery? */
1406                         return 0;
1407                 }
1408         } else {
1409                 strbuf_release(&out_buffer.buf);
1410                 fprintf(stderr, "Unable to start PUT request\n");
1411                 return 0;
1412         }
1413
1414         return 1;
1415 }
1416
1417 static struct ref *remote_refs;
1418
1419 static void one_remote_ref(const char *refname)
1420 {
1421         struct ref *ref;
1422         struct object *obj;
1423
1424         ref = alloc_ref(refname);
1425
1426         if (http_fetch_ref(repo->url, ref) != 0) {
1427                 fprintf(stderr,
1428                         "Unable to fetch ref %s from %s\n",
1429                         refname, repo->url);
1430                 free(ref);
1431                 return;
1432         }
1433
1434         /*
1435          * Fetch a copy of the object if it doesn't exist locally - it
1436          * may be required for updating server info later.
1437          */
1438         if (repo->can_update_info_refs && !has_object_file(&ref->old_oid)) {
1439                 obj = lookup_unknown_object(the_repository, &ref->old_oid);
1440                 fprintf(stderr, "  fetch %s for %s\n",
1441                         oid_to_hex(&ref->old_oid), refname);
1442                 add_fetch_request(obj);
1443         }
1444
1445         ref->next = remote_refs;
1446         remote_refs = ref;
1447 }
1448
1449 static void get_dav_remote_heads(void)
1450 {
1451         remote_ls("refs/", (PROCESS_FILES | PROCESS_DIRS | RECURSIVE), process_ls_ref, NULL);
1452 }
1453
1454 static void add_remote_info_ref(struct remote_ls_ctx *ls)
1455 {
1456         struct strbuf *buf = (struct strbuf *)ls->userData;
1457         struct object *o;
1458         struct ref *ref;
1459
1460         ref = alloc_ref(ls->dentry_name);
1461
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;
1469         }
1470
1471         o = parse_object(the_repository, &ref->old_oid);
1472         if (!o) {
1473                 fprintf(stderr,
1474                         "Unable to parse object %s for remote ref %s\n",
1475                         oid_to_hex(&ref->old_oid), ls->dentry_name);
1476                 aborted = 1;
1477                 free(ref);
1478                 return;
1479         }
1480
1481         strbuf_addf(buf, "%s\t%s\n",
1482                     oid_to_hex(&ref->old_oid), ls->dentry_name);
1483
1484         if (o->type == OBJ_TAG) {
1485                 o = deref_tag(the_repository, o, ls->dentry_name, 0);
1486                 if (o)
1487                         strbuf_addf(buf, "%s\t%s^{}\n",
1488                                     oid_to_hex(&o->oid), ls->dentry_name);
1489         }
1490         free(ref);
1491 }
1492
1493 static void update_remote_info_refs(struct remote_lock *lock)
1494 {
1495         struct buffer buffer = { STRBUF_INIT, 0 };
1496         struct active_request_slot *slot;
1497         struct slot_results results;
1498         struct curl_slist *dav_headers;
1499
1500         remote_ls("refs/", (PROCESS_FILES | RECURSIVE),
1501                   add_remote_info_ref, &buffer.buf);
1502         if (!aborted) {
1503                 dav_headers = get_dav_token_headers(lock, DAV_HEADER_IF);
1504
1505                 slot = get_active_slot();
1506                 slot->results = &results;
1507                 curl_setup_http(slot->curl, lock->url, DAV_PUT,
1508                                 &buffer, fwrite_null);
1509                 curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, dav_headers);
1510
1511                 if (start_active_slot(slot)) {
1512                         run_active_slot(slot);
1513                         if (results.curl_result != CURLE_OK) {
1514                                 fprintf(stderr,
1515                                         "PUT error: curl result=%d, HTTP code=%ld\n",
1516                                         results.curl_result, results.http_code);
1517                         }
1518                 }
1519         }
1520         strbuf_release(&buffer.buf);
1521 }
1522
1523 static int remote_exists(const char *path)
1524 {
1525         char *url = xstrfmt("%s%s", repo->url, path);
1526         int ret;
1527
1528
1529         switch (http_get_strbuf(url, NULL, NULL)) {
1530         case HTTP_OK:
1531                 ret = 1;
1532                 break;
1533         case HTTP_MISSING_TARGET:
1534                 ret = 0;
1535                 break;
1536         case HTTP_ERROR:
1537                 error("unable to access '%s': %s", url, curl_errorstr);
1538                 /* fallthrough */
1539         default:
1540                 ret = -1;
1541         }
1542         free(url);
1543         return ret;
1544 }
1545
1546 static void fetch_symref(const char *path, char **symref, struct object_id *oid)
1547 {
1548         char *url = xstrfmt("%s%s", repo->url, path);
1549         struct strbuf buffer = STRBUF_INIT;
1550         const char *name;
1551
1552         if (http_get_strbuf(url, &buffer, NULL) != HTTP_OK)
1553                 die("Couldn't get %s for remote symref\n%s", url,
1554                     curl_errorstr);
1555         free(url);
1556
1557         FREE_AND_NULL(*symref);
1558         oidclr(oid);
1559
1560         if (buffer.len == 0)
1561                 return;
1562
1563         /* Cut off trailing newline. */
1564         strbuf_rtrim(&buffer);
1565
1566         /* If it's a symref, set the refname; otherwise try for a sha1 */
1567         if (skip_prefix(buffer.buf, "ref: ", &name)) {
1568                 *symref = xmemdupz(name, buffer.len - (name - buffer.buf));
1569         } else {
1570                 get_oid_hex(buffer.buf, oid);
1571         }
1572
1573         strbuf_release(&buffer);
1574 }
1575
1576 static int verify_merge_base(struct object_id *head_oid, struct ref *remote)
1577 {
1578         struct commit *head = lookup_commit_or_die(head_oid, "HEAD");
1579         struct commit *branch = lookup_commit_or_die(&remote->old_oid,
1580                                                      remote->name);
1581
1582         return in_merge_bases(branch, head);
1583 }
1584
1585 static int delete_remote_branch(const char *pattern, int force)
1586 {
1587         struct ref *refs = remote_refs;
1588         struct ref *remote_ref = NULL;
1589         struct object_id head_oid;
1590         char *symref = NULL;
1591         int match;
1592         int patlen = strlen(pattern);
1593         int i;
1594         struct active_request_slot *slot;
1595         struct slot_results results;
1596         char *url;
1597
1598         /* Find the remote branch(es) matching the specified branch name */
1599         for (match = 0; refs; refs = refs->next) {
1600                 char *name = refs->name;
1601                 int namelen = strlen(name);
1602                 if (namelen < patlen ||
1603                     memcmp(name + namelen - patlen, pattern, patlen))
1604                         continue;
1605                 if (namelen != patlen && name[namelen - patlen - 1] != '/')
1606                         continue;
1607                 match++;
1608                 remote_ref = refs;
1609         }
1610         if (match == 0)
1611                 return error("No remote branch matches %s", pattern);
1612         if (match != 1)
1613                 return error("More than one remote branch matches %s",
1614                              pattern);
1615
1616         /*
1617          * Remote HEAD must be a symref (not exactly foolproof; a remote
1618          * symlink to a symref will look like a symref)
1619          */
1620         fetch_symref("HEAD", &symref, &head_oid);
1621         if (!symref)
1622                 return error("Remote HEAD is not a symref");
1623
1624         /* Remote branch must not be the remote HEAD */
1625         for (i = 0; symref && i < MAXDEPTH; i++) {
1626                 if (!strcmp(remote_ref->name, symref))
1627                         return error("Remote branch %s is the current HEAD",
1628                                      remote_ref->name);
1629                 fetch_symref(symref, &symref, &head_oid);
1630         }
1631
1632         /* Run extra sanity checks if delete is not forced */
1633         if (!force) {
1634                 /* Remote HEAD must resolve to a known object */
1635                 if (symref)
1636                         return error("Remote HEAD symrefs too deep");
1637                 if (is_null_oid(&head_oid))
1638                         return error("Unable to resolve remote HEAD");
1639                 if (!has_object_file(&head_oid))
1640                         return error("Remote HEAD resolves to object %s\nwhich does not exist locally, perhaps you need to fetch?", oid_to_hex(&head_oid));
1641
1642                 /* Remote branch must resolve to a known object */
1643                 if (is_null_oid(&remote_ref->old_oid))
1644                         return error("Unable to resolve remote branch %s",
1645                                      remote_ref->name);
1646                 if (!has_object_file(&remote_ref->old_oid))
1647                         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));
1648
1649                 /* Remote branch must be an ancestor of remote HEAD */
1650                 if (!verify_merge_base(&head_oid, remote_ref)) {
1651                         return error("The branch '%s' is not an ancestor "
1652                                      "of your current HEAD.\n"
1653                                      "If you are sure you want to delete it,"
1654                                      " run:\n\t'git http-push -D %s %s'",
1655                                      remote_ref->name, repo->url, pattern);
1656                 }
1657         }
1658
1659         /* Send delete request */
1660         fprintf(stderr, "Removing remote branch '%s'\n", remote_ref->name);
1661         if (dry_run)
1662                 return 0;
1663         url = xstrfmt("%s%s", repo->url, remote_ref->name);
1664         slot = get_active_slot();
1665         slot->results = &results;
1666         curl_setup_http_get(slot->curl, url, DAV_DELETE);
1667         if (start_active_slot(slot)) {
1668                 run_active_slot(slot);
1669                 free(url);
1670                 if (results.curl_result != CURLE_OK)
1671                         return error("DELETE request failed (%d/%ld)",
1672                                      results.curl_result, results.http_code);
1673         } else {
1674                 free(url);
1675                 return error("Unable to start DELETE request");
1676         }
1677
1678         return 0;
1679 }
1680
1681 static void run_request_queue(void)
1682 {
1683 #ifdef USE_CURL_MULTI
1684         is_running_queue = 1;
1685         fill_active_slots();
1686         add_fill_function(NULL, fill_active_slot);
1687 #endif
1688         do {
1689                 finish_all_active_slots();
1690 #ifdef USE_CURL_MULTI
1691                 fill_active_slots();
1692 #endif
1693         } while (request_queue_head && !aborted);
1694
1695 #ifdef USE_CURL_MULTI
1696         is_running_queue = 0;
1697 #endif
1698 }
1699
1700 int cmd_main(int argc, const char **argv)
1701 {
1702         struct transfer_request *request;
1703         struct transfer_request *next_request;
1704         struct refspec rs = REFSPEC_INIT_PUSH;
1705         struct remote_lock *ref_lock = NULL;
1706         struct remote_lock *info_ref_lock = NULL;
1707         struct rev_info revs;
1708         int delete_branch = 0;
1709         int force_delete = 0;
1710         int objects_to_send;
1711         int rc = 0;
1712         int i;
1713         int new_refs;
1714         struct ref *ref, *local_refs;
1715
1716         CALLOC_ARRAY(repo, 1);
1717
1718         argv++;
1719         for (i = 1; i < argc; i++, argv++) {
1720                 const char *arg = *argv;
1721
1722                 if (*arg == '-') {
1723                         if (!strcmp(arg, "--all")) {
1724                                 push_all = MATCH_REFS_ALL;
1725                                 continue;
1726                         }
1727                         if (!strcmp(arg, "--force")) {
1728                                 force_all = 1;
1729                                 continue;
1730                         }
1731                         if (!strcmp(arg, "--dry-run")) {
1732                                 dry_run = 1;
1733                                 continue;
1734                         }
1735                         if (!strcmp(arg, "--helper-status")) {
1736                                 helper_status = 1;
1737                                 continue;
1738                         }
1739                         if (!strcmp(arg, "--verbose")) {
1740                                 push_verbosely = 1;
1741                                 http_is_verbose = 1;
1742                                 continue;
1743                         }
1744                         if (!strcmp(arg, "-d")) {
1745                                 delete_branch = 1;
1746                                 continue;
1747                         }
1748                         if (!strcmp(arg, "-D")) {
1749                                 delete_branch = 1;
1750                                 force_delete = 1;
1751                                 continue;
1752                         }
1753                         if (!strcmp(arg, "-h"))
1754                                 usage(http_push_usage);
1755                 }
1756                 if (!repo->url) {
1757                         char *path = strstr(arg, "//");
1758                         str_end_url_with_slash(arg, &repo->url);
1759                         repo->path_len = strlen(repo->url);
1760                         if (path) {
1761                                 repo->path = strchr(path+2, '/');
1762                                 if (repo->path)
1763                                         repo->path_len = strlen(repo->path);
1764                         }
1765                         continue;
1766                 }
1767                 refspec_appendn(&rs, argv, argc - i);
1768                 break;
1769         }
1770
1771 #ifndef USE_CURL_MULTI
1772         die("git-push is not available for http/https repository when not compiled with USE_CURL_MULTI");
1773 #endif
1774
1775         if (!repo->url)
1776                 usage(http_push_usage);
1777
1778         if (delete_branch && rs.nr != 1)
1779                 die("You must specify only one branch name when deleting a remote branch");
1780
1781         setup_git_directory();
1782
1783         memset(remote_dir_exists, -1, 256);
1784
1785         http_init(NULL, repo->url, 1);
1786
1787 #ifdef USE_CURL_MULTI
1788         is_running_queue = 0;
1789 #endif
1790
1791         /* Verify DAV compliance/lock support */
1792         if (!locking_available()) {
1793                 rc = 1;
1794                 goto cleanup;
1795         }
1796
1797         sigchain_push_common(remove_locks_on_signal);
1798
1799         /* Check whether the remote has server info files */
1800         repo->can_update_info_refs = 0;
1801         repo->has_info_refs = remote_exists("info/refs");
1802         repo->has_info_packs = remote_exists("objects/info/packs");
1803         if (repo->has_info_refs) {
1804                 info_ref_lock = lock_remote("info/refs", LOCK_TIME);
1805                 if (info_ref_lock)
1806                         repo->can_update_info_refs = 1;
1807                 else {
1808                         error("cannot lock existing info/refs");
1809                         rc = 1;
1810                         goto cleanup;
1811                 }
1812         }
1813         if (repo->has_info_packs)
1814                 fetch_indices();
1815
1816         /* Get a list of all local and remote heads to validate refspecs */
1817         local_refs = get_local_heads();
1818         fprintf(stderr, "Fetching remote heads...\n");
1819         get_dav_remote_heads();
1820         run_request_queue();
1821
1822         /* Remove a remote branch if -d or -D was specified */
1823         if (delete_branch) {
1824                 const char *branch = rs.items[i].src;
1825                 if (delete_remote_branch(branch, force_delete) == -1) {
1826                         fprintf(stderr, "Unable to delete remote branch %s\n",
1827                                 branch);
1828                         if (helper_status)
1829                                 printf("error %s cannot remove\n", branch);
1830                 }
1831                 goto cleanup;
1832         }
1833
1834         /* match them up */
1835         if (match_push_refs(local_refs, &remote_refs, &rs, push_all)) {
1836                 rc = -1;
1837                 goto cleanup;
1838         }
1839         if (!remote_refs) {
1840                 fprintf(stderr, "No refs in common and none specified; doing nothing.\n");
1841                 if (helper_status)
1842                         printf("error null no match\n");
1843                 rc = 0;
1844                 goto cleanup;
1845         }
1846
1847         new_refs = 0;
1848         for (ref = remote_refs; ref; ref = ref->next) {
1849                 struct strvec commit_argv = STRVEC_INIT;
1850
1851                 if (!ref->peer_ref)
1852                         continue;
1853
1854                 if (is_null_oid(&ref->peer_ref->new_oid)) {
1855                         if (delete_remote_branch(ref->name, 1) == -1) {
1856                                 error("Could not remove %s", ref->name);
1857                                 if (helper_status)
1858                                         printf("error %s cannot remove\n", ref->name);
1859                                 rc = -4;
1860                         }
1861                         else if (helper_status)
1862                                 printf("ok %s\n", ref->name);
1863                         new_refs++;
1864                         continue;
1865                 }
1866
1867                 if (oideq(&ref->old_oid, &ref->peer_ref->new_oid)) {
1868                         if (push_verbosely)
1869                                 fprintf(stderr, "'%s': up-to-date\n", ref->name);
1870                         if (helper_status)
1871                                 printf("ok %s up to date\n", ref->name);
1872                         continue;
1873                 }
1874
1875                 if (!force_all &&
1876                     !is_null_oid(&ref->old_oid) &&
1877                     !ref->force) {
1878                         if (!has_object_file(&ref->old_oid) ||
1879                             !ref_newer(&ref->peer_ref->new_oid,
1880                                        &ref->old_oid)) {
1881                                 /*
1882                                  * We do not have the remote ref, or
1883                                  * we know that the remote ref is not
1884                                  * an ancestor of what we are trying to
1885                                  * push.  Either way this can be losing
1886                                  * commits at the remote end and likely
1887                                  * we were not up to date to begin with.
1888                                  */
1889                                 error("remote '%s' is not an ancestor of\n"
1890                                       "local '%s'.\n"
1891                                       "Maybe you are not up-to-date and "
1892                                       "need to pull first?",
1893                                       ref->name,
1894                                       ref->peer_ref->name);
1895                                 if (helper_status)
1896                                         printf("error %s non-fast forward\n", ref->name);
1897                                 rc = -2;
1898                                 continue;
1899                         }
1900                 }
1901                 oidcpy(&ref->new_oid, &ref->peer_ref->new_oid);
1902                 new_refs++;
1903
1904                 fprintf(stderr, "updating '%s'", ref->name);
1905                 if (strcmp(ref->name, ref->peer_ref->name))
1906                         fprintf(stderr, " using '%s'", ref->peer_ref->name);
1907                 fprintf(stderr, "\n  from %s\n  to   %s\n",
1908                         oid_to_hex(&ref->old_oid), oid_to_hex(&ref->new_oid));
1909                 if (dry_run) {
1910                         if (helper_status)
1911                                 printf("ok %s\n", ref->name);
1912                         continue;
1913                 }
1914
1915                 /* Lock remote branch ref */
1916                 ref_lock = lock_remote(ref->name, LOCK_TIME);
1917                 if (ref_lock == NULL) {
1918                         fprintf(stderr, "Unable to lock remote branch %s\n",
1919                                 ref->name);
1920                         if (helper_status)
1921                                 printf("error %s lock error\n", ref->name);
1922                         rc = 1;
1923                         continue;
1924                 }
1925
1926                 /* Set up revision info for this refspec */
1927                 strvec_push(&commit_argv, ""); /* ignored */
1928                 strvec_push(&commit_argv, "--objects");
1929                 strvec_push(&commit_argv, oid_to_hex(&ref->new_oid));
1930                 if (!push_all && !is_null_oid(&ref->old_oid))
1931                         strvec_pushf(&commit_argv, "^%s",
1932                                      oid_to_hex(&ref->old_oid));
1933                 repo_init_revisions(the_repository, &revs, setup_git_directory());
1934                 setup_revisions(commit_argv.nr, commit_argv.v, &revs, NULL);
1935                 revs.edge_hint = 0; /* just in case */
1936
1937                 /* Generate a list of objects that need to be pushed */
1938                 pushing = 0;
1939                 if (prepare_revision_walk(&revs))
1940                         die("revision walk setup failed");
1941                 mark_edges_uninteresting(&revs, NULL, 0);
1942                 objects_to_send = get_delta(&revs, ref_lock);
1943                 finish_all_active_slots();
1944
1945                 /* Push missing objects to remote, this would be a
1946                    convenient time to pack them first if appropriate. */
1947                 pushing = 1;
1948                 if (objects_to_send)
1949                         fprintf(stderr, "    sending %d objects\n",
1950                                 objects_to_send);
1951
1952                 run_request_queue();
1953
1954                 /* Update the remote branch if all went well */
1955                 if (aborted || !update_remote(&ref->new_oid, ref_lock))
1956                         rc = 1;
1957
1958                 if (!rc)
1959                         fprintf(stderr, "    done\n");
1960                 if (helper_status)
1961                         printf("%s %s\n", !rc ? "ok" : "error", ref->name);
1962                 unlock_remote(ref_lock);
1963                 check_locks();
1964                 strvec_clear(&commit_argv);
1965         }
1966
1967         /* Update remote server info if appropriate */
1968         if (repo->has_info_refs && new_refs) {
1969                 if (info_ref_lock && repo->can_update_info_refs) {
1970                         fprintf(stderr, "Updating remote server info\n");
1971                         if (!dry_run)
1972                                 update_remote_info_refs(info_ref_lock);
1973                 } else {
1974                         fprintf(stderr, "Unable to update server info\n");
1975                 }
1976         }
1977
1978  cleanup:
1979         if (info_ref_lock)
1980                 unlock_remote(info_ref_lock);
1981         free(repo);
1982
1983         http_cleanup();
1984
1985         request = request_queue_head;
1986         while (request != NULL) {
1987                 next_request = request->next;
1988                 release_request(request);
1989                 request = next_request;
1990         }
1991
1992         return rc;
1993 }