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