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