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