13 static const char http_push_usage
[] =
14 "git-http-push [--all] [--force] [--verbose] <remote> [<head>...]\n";
21 #define XML_STATUS_OK 1
22 #define XML_STATUS_ERROR 0
25 #define PREV_BUF_SIZE 4096
26 #define RANGE_HEADER_SIZE 30
29 #define DAV_LOCK "LOCK"
30 #define DAV_MKCOL "MKCOL"
31 #define DAV_MOVE "MOVE"
32 #define DAV_PROPFIND "PROPFIND"
34 #define DAV_UNLOCK "UNLOCK"
37 #define DAV_PROP_LOCKWR (1u << 0)
38 #define DAV_PROP_LOCKEX (1u << 1)
39 #define DAV_LOCK_OK (1u << 2)
41 /* DAV XML properties */
42 #define DAV_CTX_LOCKENTRY ".multistatus.response.propstat.prop.supportedlock.lockentry"
43 #define DAV_CTX_LOCKTYPE_WRITE ".multistatus.response.propstat.prop.supportedlock.lockentry.locktype.write"
44 #define DAV_CTX_LOCKTYPE_EXCLUSIVE ".multistatus.response.propstat.prop.supportedlock.lockentry.lockscope.exclusive"
45 #define DAV_ACTIVELOCK_OWNER ".prop.lockdiscovery.activelock.owner.href"
46 #define DAV_ACTIVELOCK_TIMEOUT ".prop.lockdiscovery.activelock.timeout"
47 #define DAV_ACTIVELOCK_TOKEN ".prop.lockdiscovery.activelock.locktoken.href"
48 #define DAV_PROPFIND_RESP ".multistatus.response"
49 #define DAV_PROPFIND_NAME ".multistatus.response.href"
50 #define DAV_PROPFIND_COLLECTION ".multistatus.response.propstat.prop.resourcetype.collection"
52 /* DAV request body templates */
53 #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>"
54 #define PROPFIND_ALL_REQUEST "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<D:propfind xmlns:D=\"DAV:\">\n<D:allprop/>\n</D:propfind>"
55 #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>"
58 #define LOCK_REFRESH 30
60 /* bits #0-4 in revision.h */
62 #define LOCAL (1u << 5)
63 #define REMOTE (1u << 6)
64 #define FETCHING (1u << 7)
65 #define PUSHING (1u << 8)
67 static int pushing
= 0;
68 static int aborted
= 0;
69 static char remote_dir_exists
[256];
71 static struct curl_slist
*no_pragma_header
;
72 static struct curl_slist
*default_headers
;
74 static int push_verbosely
= 0;
75 static int push_all
= 0;
76 static int force_all
= 0;
78 static struct object_list
*objects
= NULL
;
85 int can_update_info_refs
;
87 struct packed_git
*packs
;
88 struct remote_lock
*locks
;
91 static struct repo
*remote
= NULL
;
105 struct transfer_request
110 struct remote_lock
*lock
;
111 struct curl_slist
*headers
;
112 struct buffer buffer
;
113 char filename
[PATH_MAX
];
114 char tmpfile
[PATH_MAX
];
117 enum transfer_state state
;
118 CURLcode curl_result
;
119 char errorstr
[CURL_ERROR_SIZE
];
121 unsigned char real_sha1
[20];
127 struct active_request_slot
*slot
;
128 struct transfer_request
*next
;
131 static struct transfer_request
*request_queue_head
= NULL
;
138 void (*userFunc
)(struct xml_ctx
*ctx
, int tag_closed
);
150 struct remote_lock
*next
;
153 /* Flags that control remote_ls processing */
154 #define PROCESS_FILES (1u << 0)
155 #define PROCESS_DIRS (1u << 1)
156 #define RECURSIVE (1u << 2)
158 /* Flags that remote_ls passes to callback functions */
159 #define IS_DIR (1u << 0)
164 void (*userFunc
)(struct remote_ls_ctx
*ls
);
169 struct remote_ls_ctx
*parent
;
172 static void finish_request(struct transfer_request
*request
);
173 static void release_request(struct transfer_request
*request
);
175 static void process_response(void *callback_data
)
177 struct transfer_request
*request
=
178 (struct transfer_request
*)callback_data
;
180 finish_request(request
);
183 static size_t fwrite_sha1_file(void *ptr
, size_t eltsize
, size_t nmemb
,
186 unsigned char expn
[4096];
187 size_t size
= eltsize
* nmemb
;
189 struct transfer_request
*request
= (struct transfer_request
*)data
;
191 ssize_t retval
= write(request
->local_fileno
,
192 ptr
+ posn
, size
- posn
);
196 } while (posn
< size
);
198 request
->stream
.avail_in
= size
;
199 request
->stream
.next_in
= ptr
;
201 request
->stream
.next_out
= expn
;
202 request
->stream
.avail_out
= sizeof(expn
);
203 request
->zret
= inflate(&request
->stream
, Z_SYNC_FLUSH
);
204 SHA1_Update(&request
->c
, expn
,
205 sizeof(expn
) - request
->stream
.avail_out
);
206 } while (request
->stream
.avail_in
&& request
->zret
== Z_OK
);
211 static void start_fetch_loose(struct transfer_request
*request
)
213 char *hex
= sha1_to_hex(request
->obj
->sha1
);
215 char prevfile
[PATH_MAX
];
219 unsigned char prev_buf
[PREV_BUF_SIZE
];
220 ssize_t prev_read
= 0;
222 char range
[RANGE_HEADER_SIZE
];
223 struct curl_slist
*range_header
= NULL
;
224 struct active_request_slot
*slot
;
226 filename
= sha1_file_name(request
->obj
->sha1
);
227 snprintf(request
->filename
, sizeof(request
->filename
), "%s", filename
);
228 snprintf(request
->tmpfile
, sizeof(request
->tmpfile
),
229 "%s.temp", filename
);
231 snprintf(prevfile
, sizeof(prevfile
), "%s.prev", request
->filename
);
233 rename(request
->tmpfile
, prevfile
);
234 unlink(request
->tmpfile
);
236 if (request
->local_fileno
!= -1)
237 error("fd leakage in start: %d", request
->local_fileno
);
238 request
->local_fileno
= open(request
->tmpfile
,
239 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
240 /* This could have failed due to the "lazy directory creation";
241 * try to mkdir the last path component.
243 if (request
->local_fileno
< 0 && errno
== ENOENT
) {
244 char *dir
= strrchr(request
->tmpfile
, '/');
247 mkdir(request
->tmpfile
, 0777);
250 request
->local_fileno
= open(request
->tmpfile
,
251 O_WRONLY
| O_CREAT
| O_EXCL
, 0666);
254 if (request
->local_fileno
< 0) {
255 request
->state
= ABORTED
;
256 error("Couldn't create temporary file %s for %s: %s",
257 request
->tmpfile
, request
->filename
, strerror(errno
));
261 memset(&request
->stream
, 0, sizeof(request
->stream
));
263 inflateInit(&request
->stream
);
265 SHA1_Init(&request
->c
);
267 url
= xmalloc(strlen(remote
->url
) + 50);
268 request
->url
= xmalloc(strlen(remote
->url
) + 50);
269 strcpy(url
, remote
->url
);
270 posn
= url
+ strlen(remote
->url
);
271 strcpy(posn
, "objects/");
273 memcpy(posn
, hex
, 2);
276 strcpy(posn
, hex
+ 2);
277 strcpy(request
->url
, url
);
279 /* If a previous temp file is present, process what was already
281 prevlocal
= open(prevfile
, O_RDONLY
);
282 if (prevlocal
!= -1) {
284 prev_read
= read(prevlocal
, prev_buf
, PREV_BUF_SIZE
);
286 if (fwrite_sha1_file(prev_buf
,
289 request
) == prev_read
) {
290 prev_posn
+= prev_read
;
295 } while (prev_read
> 0);
300 /* Reset inflate/SHA1 if there was an error reading the previous temp
301 file; also rewind to the beginning of the local file. */
302 if (prev_read
== -1) {
303 memset(&request
->stream
, 0, sizeof(request
->stream
));
304 inflateInit(&request
->stream
);
305 SHA1_Init(&request
->c
);
308 lseek(request
->local_fileno
, SEEK_SET
, 0);
309 ftruncate(request
->local_fileno
, 0);
313 slot
= get_active_slot();
314 slot
->callback_func
= process_response
;
315 slot
->callback_data
= request
;
316 request
->slot
= slot
;
318 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, request
);
319 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_sha1_file
);
320 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, request
->errorstr
);
321 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
322 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
324 /* If we have successfully processed data from a previous fetch
325 attempt, only fetch the data we don't already have. */
329 "Resuming fetch of object %s at byte %ld\n",
331 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
332 range_header
= curl_slist_append(range_header
, range
);
333 curl_easy_setopt(slot
->curl
,
334 CURLOPT_HTTPHEADER
, range_header
);
337 /* Try to get the request started, abort the request on error */
338 request
->state
= RUN_FETCH_LOOSE
;
339 if (!start_active_slot(slot
)) {
340 fprintf(stderr
, "Unable to start GET request\n");
341 remote
->can_update_info_refs
= 0;
342 release_request(request
);
346 static void start_fetch_packed(struct transfer_request
*request
)
349 struct packed_git
*target
;
353 char range
[RANGE_HEADER_SIZE
];
354 struct curl_slist
*range_header
= NULL
;
356 struct transfer_request
*check_request
= request_queue_head
;
357 struct active_request_slot
*slot
;
359 target
= find_sha1_pack(request
->obj
->sha1
, remote
->packs
);
361 fprintf(stderr
, "Unable to fetch %s, will not be able to update server info refs\n", sha1_to_hex(request
->obj
->sha1
));
362 remote
->can_update_info_refs
= 0;
363 release_request(request
);
367 fprintf(stderr
, "Fetching pack %s\n", sha1_to_hex(target
->sha1
));
368 fprintf(stderr
, " which contains %s\n", sha1_to_hex(request
->obj
->sha1
));
370 filename
= sha1_pack_name(target
->sha1
);
371 snprintf(request
->filename
, sizeof(request
->filename
), "%s", filename
);
372 snprintf(request
->tmpfile
, sizeof(request
->tmpfile
),
373 "%s.temp", filename
);
375 url
= xmalloc(strlen(remote
->url
) + 64);
376 sprintf(url
, "%sobjects/pack/pack-%s.pack",
377 remote
->url
, sha1_to_hex(target
->sha1
));
379 /* Make sure there isn't another open request for this pack */
380 while (check_request
) {
381 if (check_request
->state
== RUN_FETCH_PACKED
&&
382 !strcmp(check_request
->url
, url
)) {
384 release_request(request
);
387 check_request
= check_request
->next
;
390 packfile
= fopen(request
->tmpfile
, "a");
392 fprintf(stderr
, "Unable to open local file %s for pack",
394 remote
->can_update_info_refs
= 0;
399 slot
= get_active_slot();
400 slot
->callback_func
= process_response
;
401 slot
->callback_data
= request
;
402 request
->slot
= slot
;
403 request
->local_stream
= packfile
;
404 request
->userData
= target
;
407 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, packfile
);
408 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
409 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
410 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
411 slot
->local
= packfile
;
413 /* If there is data present from a previous transfer attempt,
414 resume where it left off */
415 prev_posn
= ftell(packfile
);
419 "Resuming fetch of pack %s at byte %ld\n",
420 sha1_to_hex(target
->sha1
), prev_posn
);
421 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
422 range_header
= curl_slist_append(range_header
, range
);
423 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, range_header
);
426 /* Try to get the request started, abort the request on error */
427 request
->state
= RUN_FETCH_PACKED
;
428 if (!start_active_slot(slot
)) {
429 fprintf(stderr
, "Unable to start GET request\n");
430 remote
->can_update_info_refs
= 0;
431 release_request(request
);
435 static void start_mkcol(struct transfer_request
*request
)
437 char *hex
= sha1_to_hex(request
->obj
->sha1
);
438 struct active_request_slot
*slot
;
441 request
->url
= xmalloc(strlen(remote
->url
) + 13);
442 strcpy(request
->url
, remote
->url
);
443 posn
= request
->url
+ strlen(remote
->url
);
444 strcpy(posn
, "objects/");
446 memcpy(posn
, hex
, 2);
450 slot
= get_active_slot();
451 slot
->callback_func
= process_response
;
452 slot
->callback_data
= request
;
453 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1); /* undo PUT setup */
454 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, request
->url
);
455 curl_easy_setopt(slot
->curl
, CURLOPT_ERRORBUFFER
, request
->errorstr
);
456 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_MKCOL
);
457 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_null
);
459 if (start_active_slot(slot
)) {
460 request
->slot
= slot
;
461 request
->state
= RUN_MKCOL
;
463 request
->state
= ABORTED
;
469 static void start_put(struct transfer_request
*request
)
471 char *hex
= sha1_to_hex(request
->obj
->sha1
);
472 struct active_request_slot
*slot
;
482 unpacked
= read_sha1_file(request
->obj
->sha1
, type
, &len
);
483 hdrlen
= sprintf(hdr
, "%s %lu", type
, len
) + 1;
486 memset(&stream
, 0, sizeof(stream
));
487 deflateInit(&stream
, Z_BEST_COMPRESSION
);
488 size
= deflateBound(&stream
, len
+ hdrlen
);
489 request
->buffer
.buffer
= xmalloc(size
);
492 stream
.next_out
= request
->buffer
.buffer
;
493 stream
.avail_out
= size
;
496 stream
.next_in
= (void *)hdr
;
497 stream
.avail_in
= hdrlen
;
498 while (deflate(&stream
, 0) == Z_OK
)
501 /* Then the data itself.. */
502 stream
.next_in
= unpacked
;
503 stream
.avail_in
= len
;
504 while (deflate(&stream
, Z_FINISH
) == Z_OK
)
509 request
->buffer
.size
= stream
.total_out
;
510 request
->buffer
.posn
= 0;
512 request
->url
= xmalloc(strlen(remote
->url
) +
513 strlen(request
->lock
->token
) + 51);
514 strcpy(request
->url
, remote
->url
);
515 posn
= request
->url
+ strlen(remote
->url
);
516 strcpy(posn
, "objects/");
518 memcpy(posn
, hex
, 2);
521 strcpy(posn
, hex
+ 2);
522 request
->dest
= xmalloc(strlen(request
->url
) + 14);
523 sprintf(request
->dest
, "Destination: %s", request
->url
);
526 strcpy(posn
, request
->lock
->token
);
528 slot
= get_active_slot();
529 slot
->callback_func
= process_response
;
530 slot
->callback_data
= request
;
531 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, &request
->buffer
);
532 curl_easy_setopt(slot
->curl
, CURLOPT_INFILESIZE
, request
->buffer
.size
);
533 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, fread_buffer
);
534 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_null
);
535 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_PUT
);
536 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 1);
537 curl_easy_setopt(slot
->curl
, CURLOPT_PUT
, 1);
538 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
539 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, request
->url
);
541 if (start_active_slot(slot
)) {
542 request
->slot
= slot
;
543 request
->state
= RUN_PUT
;
545 request
->state
= ABORTED
;
551 static void start_move(struct transfer_request
*request
)
553 struct active_request_slot
*slot
;
554 struct curl_slist
*dav_headers
= NULL
;
556 slot
= get_active_slot();
557 slot
->callback_func
= process_response
;
558 slot
->callback_data
= request
;
559 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1); /* undo PUT setup */
560 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_MOVE
);
561 dav_headers
= curl_slist_append(dav_headers
, request
->dest
);
562 dav_headers
= curl_slist_append(dav_headers
, "Overwrite: T");
563 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, dav_headers
);
564 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_null
);
565 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, request
->url
);
567 if (start_active_slot(slot
)) {
568 request
->slot
= slot
;
569 request
->state
= RUN_MOVE
;
571 request
->state
= ABORTED
;
577 static int refresh_lock(struct remote_lock
*lock
)
579 struct active_request_slot
*slot
;
580 struct slot_results results
;
582 char timeout_header
[25];
583 struct curl_slist
*dav_headers
= NULL
;
586 lock
->refreshing
= 1;
588 if_header
= xmalloc(strlen(lock
->token
) + 25);
589 sprintf(if_header
, "If: (<opaquelocktoken:%s>)", lock
->token
);
590 sprintf(timeout_header
, "Timeout: Second-%ld", lock
->timeout
);
591 dav_headers
= curl_slist_append(dav_headers
, if_header
);
592 dav_headers
= curl_slist_append(dav_headers
, timeout_header
);
594 slot
= get_active_slot();
595 slot
->results
= &results
;
596 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
597 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_null
);
598 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, lock
->url
);
599 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_LOCK
);
600 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, dav_headers
);
602 if (start_active_slot(slot
)) {
603 run_active_slot(slot
);
604 if (results
.curl_result
!= CURLE_OK
) {
605 fprintf(stderr
, "LOCK HTTP error %ld\n",
608 lock
->start_time
= time(NULL
);
613 lock
->refreshing
= 0;
614 curl_slist_free_all(dav_headers
);
620 static void check_locks()
622 struct remote_lock
*lock
= remote
->locks
;
623 time_t current_time
= time(NULL
);
627 time_remaining
= lock
->start_time
+ lock
->timeout
-
629 if (!lock
->refreshing
&& time_remaining
< LOCK_REFRESH
) {
630 if (!refresh_lock(lock
)) {
632 "Unable to refresh lock for %s\n",
642 static void release_request(struct transfer_request
*request
)
644 struct transfer_request
*entry
= request_queue_head
;
646 if (request
== request_queue_head
) {
647 request_queue_head
= request
->next
;
649 while (entry
->next
!= NULL
&& entry
->next
!= request
)
651 if (entry
->next
== request
)
652 entry
->next
= entry
->next
->next
;
655 if (request
->local_fileno
!= -1)
656 close(request
->local_fileno
);
657 if (request
->local_stream
)
658 fclose(request
->local_stream
);
659 if (request
->url
!= NULL
)
664 static void finish_request(struct transfer_request
*request
)
667 struct packed_git
*target
;
668 struct packed_git
**lst
;
670 request
->curl_result
= request
->slot
->curl_result
;
671 request
->http_code
= request
->slot
->http_code
;
672 request
->slot
= NULL
;
674 /* Keep locks active */
677 if (request
->headers
!= NULL
)
678 curl_slist_free_all(request
->headers
);
680 /* URL is reused for MOVE after PUT */
681 if (request
->state
!= RUN_PUT
) {
686 if (request
->state
== RUN_MKCOL
) {
687 if (request
->curl_result
== CURLE_OK
||
688 request
->http_code
== 405) {
689 remote_dir_exists
[request
->obj
->sha1
[0]] = 1;
692 fprintf(stderr
, "MKCOL %s failed, aborting (%d/%ld)\n",
693 sha1_to_hex(request
->obj
->sha1
),
694 request
->curl_result
, request
->http_code
);
695 request
->state
= ABORTED
;
698 } else if (request
->state
== RUN_PUT
) {
699 if (request
->curl_result
== CURLE_OK
) {
702 fprintf(stderr
, "PUT %s failed, aborting (%d/%ld)\n",
703 sha1_to_hex(request
->obj
->sha1
),
704 request
->curl_result
, request
->http_code
);
705 request
->state
= ABORTED
;
708 } else if (request
->state
== RUN_MOVE
) {
709 if (request
->curl_result
== CURLE_OK
) {
711 fprintf(stderr
, " sent %s\n",
712 sha1_to_hex(request
->obj
->sha1
));
713 request
->obj
->flags
|= REMOTE
;
714 release_request(request
);
716 fprintf(stderr
, "MOVE %s failed, aborting (%d/%ld)\n",
717 sha1_to_hex(request
->obj
->sha1
),
718 request
->curl_result
, request
->http_code
);
719 request
->state
= ABORTED
;
722 } else if (request
->state
== RUN_FETCH_LOOSE
) {
723 fchmod(request
->local_fileno
, 0444);
724 close(request
->local_fileno
); request
->local_fileno
= -1;
726 if (request
->curl_result
!= CURLE_OK
&&
727 request
->http_code
!= 416) {
728 if (stat(request
->tmpfile
, &st
) == 0) {
730 unlink(request
->tmpfile
);
733 if (request
->http_code
== 416)
734 fprintf(stderr
, "Warning: requested range invalid; we may already have all the data.\n");
736 inflateEnd(&request
->stream
);
737 SHA1_Final(request
->real_sha1
, &request
->c
);
738 if (request
->zret
!= Z_STREAM_END
) {
739 unlink(request
->tmpfile
);
740 } else if (memcmp(request
->obj
->sha1
, request
->real_sha1
, 20)) {
741 unlink(request
->tmpfile
);
747 if (request
->rename
== 0) {
748 request
->obj
->flags
|= (LOCAL
| REMOTE
);
753 /* Try fetching packed if necessary */
754 if (request
->obj
->flags
& LOCAL
)
755 release_request(request
);
757 start_fetch_packed(request
);
759 } else if (request
->state
== RUN_FETCH_PACKED
) {
760 if (request
->curl_result
!= CURLE_OK
) {
761 fprintf(stderr
, "Unable to get pack file %s\n%s",
762 request
->url
, curl_errorstr
);
763 remote
->can_update_info_refs
= 0;
765 fclose(request
->local_stream
);
766 request
->local_stream
= NULL
;
767 if (!move_temp_to_file(request
->tmpfile
,
768 request
->filename
)) {
769 target
= (struct packed_git
*)request
->userData
;
770 lst
= &remote
->packs
;
771 while (*lst
!= target
)
772 lst
= &((*lst
)->next
);
775 if (!verify_pack(target
, 0))
776 install_packed_git(target
);
778 remote
->can_update_info_refs
= 0;
781 release_request(request
);
785 void fill_active_slots(void)
787 struct transfer_request
*request
= request_queue_head
;
788 struct transfer_request
*next
;
789 struct active_request_slot
*slot
= active_queue_head
;
795 while (active_requests
< max_requests
&& request
!= NULL
) {
796 next
= request
->next
;
797 if (request
->state
== NEED_FETCH
) {
798 start_fetch_loose(request
);
799 } else if (pushing
&& request
->state
== NEED_PUSH
) {
800 if (remote_dir_exists
[request
->obj
->sha1
[0]] == 1) {
803 start_mkcol(request
);
805 curl_multi_perform(curlm
, &num_transfers
);
810 while (slot
!= NULL
) {
811 if (!slot
->in_use
&& slot
->curl
!= NULL
) {
812 curl_easy_cleanup(slot
->curl
);
819 static void get_remote_object_list(unsigned char parent
);
821 static void add_fetch_request(struct object
*obj
)
823 struct transfer_request
*request
;
828 * Don't fetch the object if it's known to exist locally
829 * or is already in the request queue
831 if (remote_dir_exists
[obj
->sha1
[0]] == -1)
832 get_remote_object_list(obj
->sha1
[0]);
833 if (obj
->flags
& (LOCAL
| FETCHING
))
836 obj
->flags
|= FETCHING
;
837 request
= xmalloc(sizeof(*request
));
840 request
->lock
= NULL
;
841 request
->headers
= NULL
;
842 request
->local_fileno
= -1;
843 request
->local_stream
= NULL
;
844 request
->state
= NEED_FETCH
;
845 request
->next
= request_queue_head
;
846 request_queue_head
= request
;
852 static int add_send_request(struct object
*obj
, struct remote_lock
*lock
)
854 struct transfer_request
*request
= request_queue_head
;
855 struct packed_git
*target
;
857 /* Keep locks active */
861 * Don't push the object if it's known to exist on the remote
862 * or is already in the request queue
864 if (remote_dir_exists
[obj
->sha1
[0]] == -1)
865 get_remote_object_list(obj
->sha1
[0]);
866 if (obj
->flags
& (REMOTE
| PUSHING
))
868 target
= find_sha1_pack(obj
->sha1
, remote
->packs
);
870 obj
->flags
|= REMOTE
;
874 obj
->flags
|= PUSHING
;
875 request
= xmalloc(sizeof(*request
));
878 request
->lock
= lock
;
879 request
->headers
= NULL
;
880 request
->local_fileno
= -1;
881 request
->local_stream
= NULL
;
882 request
->state
= NEED_PUSH
;
883 request
->next
= request_queue_head
;
884 request_queue_head
= request
;
892 static int fetch_index(unsigned char *sha1
)
894 char *hex
= sha1_to_hex(sha1
);
897 char tmpfile
[PATH_MAX
];
899 char range
[RANGE_HEADER_SIZE
];
900 struct curl_slist
*range_header
= NULL
;
903 struct active_request_slot
*slot
;
904 struct slot_results results
;
906 /* Don't use the index if the pack isn't there */
907 url
= xmalloc(strlen(remote
->url
) + 64);
908 sprintf(url
, "%sobjects/pack/pack-%s.pack", remote
->url
, hex
);
909 slot
= get_active_slot();
910 slot
->results
= &results
;
911 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
912 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 1);
913 if (start_active_slot(slot
)) {
914 run_active_slot(slot
);
915 if (results
.curl_result
!= CURLE_OK
) {
917 return error("Unable to verify pack %s is available",
921 return error("Unable to start request");
924 if (has_pack_index(sha1
))
928 fprintf(stderr
, "Getting index for pack %s\n", hex
);
930 sprintf(url
, "%sobjects/pack/pack-%s.idx", remote
->url
, hex
);
932 filename
= sha1_pack_index_name(sha1
);
933 snprintf(tmpfile
, sizeof(tmpfile
), "%s.temp", filename
);
934 indexfile
= fopen(tmpfile
, "a");
936 return error("Unable to open local file %s for pack index",
939 slot
= get_active_slot();
940 slot
->results
= &results
;
941 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 0);
942 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
943 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, indexfile
);
944 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite
);
945 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
946 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, no_pragma_header
);
947 slot
->local
= indexfile
;
949 /* If there is data present from a previous transfer attempt,
950 resume where it left off */
951 prev_posn
= ftell(indexfile
);
955 "Resuming fetch of index for pack %s at byte %ld\n",
957 sprintf(range
, "Range: bytes=%ld-", prev_posn
);
958 range_header
= curl_slist_append(range_header
, range
);
959 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, range_header
);
962 if (start_active_slot(slot
)) {
963 run_active_slot(slot
);
964 if (results
.curl_result
!= CURLE_OK
) {
967 return error("Unable to get pack index %s\n%s", url
,
973 return error("Unable to start request");
979 return move_temp_to_file(tmpfile
, filename
);
982 static int setup_index(unsigned char *sha1
)
984 struct packed_git
*new_pack
;
986 if (fetch_index(sha1
))
989 new_pack
= parse_pack_index(sha1
);
990 new_pack
->next
= remote
->packs
;
991 remote
->packs
= new_pack
;
995 static int fetch_indices(void)
997 unsigned char sha1
[20];
999 struct buffer buffer
;
1003 struct active_request_slot
*slot
;
1004 struct slot_results results
;
1006 data
= xmalloc(4096);
1007 memset(data
, 0, 4096);
1010 buffer
.buffer
= data
;
1013 fprintf(stderr
, "Getting pack list\n");
1015 url
= xmalloc(strlen(remote
->url
) + 20);
1016 sprintf(url
, "%sobjects/info/packs", remote
->url
);
1018 slot
= get_active_slot();
1019 slot
->results
= &results
;
1020 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buffer
);
1021 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
1022 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1023 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, NULL
);
1024 if (start_active_slot(slot
)) {
1025 run_active_slot(slot
);
1026 if (results
.curl_result
!= CURLE_OK
) {
1027 free(buffer
.buffer
);
1029 if (results
.http_code
== 404)
1032 return error("%s", curl_errorstr
);
1035 free(buffer
.buffer
);
1037 return error("Unable to start request");
1041 data
= buffer
.buffer
;
1042 while (i
< buffer
.posn
) {
1046 if (i
+ 52 < buffer
.posn
&&
1047 !strncmp(data
+ i
, " pack-", 6) &&
1048 !strncmp(data
+ i
+ 46, ".pack\n", 6)) {
1049 get_sha1_hex(data
+ i
+ 6, sha1
);
1055 while (data
[i
] != '\n')
1061 free(buffer
.buffer
);
1065 static inline int needs_quote(int ch
)
1068 case '/': case '-': case '.':
1069 case 'A'...'Z': case 'a'...'z': case '0'...'9':
1076 static inline int hex(int v
)
1078 if (v
< 10) return '0' + v
;
1079 else return 'A' + v
- 10;
1082 static char *quote_ref_url(const char *base
, const char *ref
)
1086 int len
, baselen
, ch
;
1088 baselen
= strlen(base
);
1090 for (cp
= ref
; (ch
= *cp
) != 0; cp
++, len
++)
1091 if (needs_quote(ch
))
1092 len
+= 2; /* extra two hex plus replacement % */
1093 qref
= xmalloc(len
);
1094 memcpy(qref
, base
, baselen
);
1095 for (cp
= ref
, dp
= qref
+ baselen
; (ch
= *cp
) != 0; cp
++) {
1096 if (needs_quote(ch
)) {
1098 *dp
++ = hex((ch
>> 4) & 0xF);
1099 *dp
++ = hex(ch
& 0xF);
1109 int fetch_ref(char *ref
, unsigned char *sha1
)
1113 struct buffer buffer
;
1114 char *base
= remote
->url
;
1115 struct active_request_slot
*slot
;
1116 struct slot_results results
;
1119 buffer
.buffer
= hex
;
1122 url
= quote_ref_url(base
, ref
);
1123 slot
= get_active_slot();
1124 slot
->results
= &results
;
1125 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &buffer
);
1126 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
1127 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, NULL
);
1128 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1129 if (start_active_slot(slot
)) {
1130 run_active_slot(slot
);
1131 if (results
.curl_result
!= CURLE_OK
)
1132 return error("Couldn't get %s for %s\n%s",
1133 url
, ref
, curl_errorstr
);
1135 return error("Unable to start request");
1139 get_sha1_hex(hex
, sha1
);
1143 static void one_remote_object(const char *hex
)
1145 unsigned char sha1
[20];
1148 if (get_sha1_hex(hex
, sha1
) != 0)
1151 obj
= lookup_object(sha1
);
1153 obj
= parse_object(sha1
);
1155 /* Ignore remote objects that don't exist locally */
1159 obj
->flags
|= REMOTE
;
1160 if (!object_list_contains(objects
, obj
))
1161 add_object(obj
, &objects
, NULL
, "");
1164 static void handle_lockprop_ctx(struct xml_ctx
*ctx
, int tag_closed
)
1166 int *lock_flags
= (int *)ctx
->userData
;
1169 if (!strcmp(ctx
->name
, DAV_CTX_LOCKENTRY
)) {
1170 if ((*lock_flags
& DAV_PROP_LOCKEX
) &&
1171 (*lock_flags
& DAV_PROP_LOCKWR
)) {
1172 *lock_flags
|= DAV_LOCK_OK
;
1174 *lock_flags
&= DAV_LOCK_OK
;
1175 } else if (!strcmp(ctx
->name
, DAV_CTX_LOCKTYPE_WRITE
)) {
1176 *lock_flags
|= DAV_PROP_LOCKWR
;
1177 } else if (!strcmp(ctx
->name
, DAV_CTX_LOCKTYPE_EXCLUSIVE
)) {
1178 *lock_flags
|= DAV_PROP_LOCKEX
;
1183 static void handle_new_lock_ctx(struct xml_ctx
*ctx
, int tag_closed
)
1185 struct remote_lock
*lock
= (struct remote_lock
*)ctx
->userData
;
1187 if (tag_closed
&& ctx
->cdata
) {
1188 if (!strcmp(ctx
->name
, DAV_ACTIVELOCK_OWNER
)) {
1189 lock
->owner
= xmalloc(strlen(ctx
->cdata
) + 1);
1190 strcpy(lock
->owner
, ctx
->cdata
);
1191 } else if (!strcmp(ctx
->name
, DAV_ACTIVELOCK_TIMEOUT
)) {
1192 if (!strncmp(ctx
->cdata
, "Second-", 7))
1194 strtol(ctx
->cdata
+ 7, NULL
, 10);
1195 } else if (!strcmp(ctx
->name
, DAV_ACTIVELOCK_TOKEN
)) {
1196 if (!strncmp(ctx
->cdata
, "opaquelocktoken:", 16)) {
1197 lock
->token
= xmalloc(strlen(ctx
->cdata
) - 15);
1198 strcpy(lock
->token
, ctx
->cdata
+ 16);
1204 static void one_remote_ref(char *refname
);
1207 xml_start_tag(void *userData
, const char *name
, const char **atts
)
1209 struct xml_ctx
*ctx
= (struct xml_ctx
*)userData
;
1210 const char *c
= index(name
, ':');
1218 new_len
= strlen(ctx
->name
) + strlen(c
) + 2;
1220 if (new_len
> ctx
->len
) {
1221 ctx
->name
= xrealloc(ctx
->name
, new_len
);
1224 strcat(ctx
->name
, ".");
1225 strcat(ctx
->name
, c
);
1232 ctx
->userFunc(ctx
, 0);
1236 xml_end_tag(void *userData
, const char *name
)
1238 struct xml_ctx
*ctx
= (struct xml_ctx
*)userData
;
1239 const char *c
= index(name
, ':');
1242 ctx
->userFunc(ctx
, 1);
1249 ep
= ctx
->name
+ strlen(ctx
->name
) - strlen(c
) - 1;
1254 xml_cdata(void *userData
, const XML_Char
*s
, int len
)
1256 struct xml_ctx
*ctx
= (struct xml_ctx
*)userData
;
1259 ctx
->cdata
= xcalloc(len
+1, 1);
1260 strncpy(ctx
->cdata
, s
, len
);
1263 static struct remote_lock
*lock_remote(char *path
, long timeout
)
1265 struct active_request_slot
*slot
;
1266 struct slot_results results
;
1267 struct buffer out_buffer
;
1268 struct buffer in_buffer
;
1273 char timeout_header
[25];
1274 struct remote_lock
*lock
= NULL
;
1275 XML_Parser parser
= XML_ParserCreate(NULL
);
1276 enum XML_Status result
;
1277 struct curl_slist
*dav_headers
= NULL
;
1280 url
= xmalloc(strlen(remote
->url
) + strlen(path
) + 1);
1281 sprintf(url
, "%s%s", remote
->url
, path
);
1283 /* Make sure leading directories exist for the remote ref */
1284 ep
= strchr(url
+ strlen(remote
->url
) + 11, '/');
1287 slot
= get_active_slot();
1288 slot
->results
= &results
;
1289 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPGET
, 1);
1290 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1291 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_MKCOL
);
1292 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_null
);
1293 if (start_active_slot(slot
)) {
1294 run_active_slot(slot
);
1295 if (results
.curl_result
!= CURLE_OK
&&
1296 results
.http_code
!= 405) {
1298 "Unable to create branch path %s\n",
1304 fprintf(stderr
, "Unable to start MKCOL request\n");
1309 ep
= strchr(ep
+ 1, '/');
1312 out_buffer
.size
= strlen(LOCK_REQUEST
) + strlen(git_default_email
) - 2;
1313 out_data
= xmalloc(out_buffer
.size
+ 1);
1314 snprintf(out_data
, out_buffer
.size
+ 1, LOCK_REQUEST
, git_default_email
);
1315 out_buffer
.posn
= 0;
1316 out_buffer
.buffer
= out_data
;
1318 in_buffer
.size
= 4096;
1319 in_data
= xmalloc(in_buffer
.size
);
1321 in_buffer
.buffer
= in_data
;
1323 sprintf(timeout_header
, "Timeout: Second-%ld", timeout
);
1324 dav_headers
= curl_slist_append(dav_headers
, timeout_header
);
1325 dav_headers
= curl_slist_append(dav_headers
, "Content-Type: text/xml");
1327 slot
= get_active_slot();
1328 slot
->results
= &results
;
1329 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, &out_buffer
);
1330 curl_easy_setopt(slot
->curl
, CURLOPT_INFILESIZE
, out_buffer
.size
);
1331 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, fread_buffer
);
1332 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &in_buffer
);
1333 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
1334 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1335 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 1);
1336 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_LOCK
);
1337 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, dav_headers
);
1339 lock
= xcalloc(1, sizeof(*lock
));
1342 if (start_active_slot(slot
)) {
1343 run_active_slot(slot
);
1344 if (results
.curl_result
== CURLE_OK
) {
1345 ctx
.name
= xcalloc(10, 1);
1348 ctx
.userFunc
= handle_new_lock_ctx
;
1349 ctx
.userData
= lock
;
1350 XML_SetUserData(parser
, &ctx
);
1351 XML_SetElementHandler(parser
, xml_start_tag
,
1353 XML_SetCharacterDataHandler(parser
, xml_cdata
);
1354 result
= XML_Parse(parser
, in_buffer
.buffer
,
1357 if (result
!= XML_STATUS_OK
) {
1358 fprintf(stderr
, "XML error: %s\n",
1360 XML_GetErrorCode(parser
)));
1365 fprintf(stderr
, "Unable to start LOCK request\n");
1368 curl_slist_free_all(dav_headers
);
1372 if (lock
->token
== NULL
|| lock
->timeout
<= 0) {
1373 if (lock
->token
!= NULL
)
1375 if (lock
->owner
!= NULL
)
1382 lock
->start_time
= time(NULL
);
1383 lock
->next
= remote
->locks
;
1384 remote
->locks
= lock
;
1390 static int unlock_remote(struct remote_lock
*lock
)
1392 struct active_request_slot
*slot
;
1393 struct slot_results results
;
1394 struct remote_lock
*prev
= remote
->locks
;
1395 char *lock_token_header
;
1396 struct curl_slist
*dav_headers
= NULL
;
1399 lock_token_header
= xmalloc(strlen(lock
->token
) + 31);
1400 sprintf(lock_token_header
, "Lock-Token: <opaquelocktoken:%s>",
1402 dav_headers
= curl_slist_append(dav_headers
, lock_token_header
);
1404 slot
= get_active_slot();
1405 slot
->results
= &results
;
1406 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_null
);
1407 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, lock
->url
);
1408 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_UNLOCK
);
1409 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, dav_headers
);
1411 if (start_active_slot(slot
)) {
1412 run_active_slot(slot
);
1413 if (results
.curl_result
== CURLE_OK
)
1416 fprintf(stderr
, "UNLOCK HTTP error %ld\n",
1419 fprintf(stderr
, "Unable to start UNLOCK request\n");
1422 curl_slist_free_all(dav_headers
);
1423 free(lock_token_header
);
1425 if (remote
->locks
== lock
) {
1426 remote
->locks
= lock
->next
;
1428 while (prev
&& prev
->next
!= lock
)
1431 prev
->next
= prev
->next
->next
;
1434 if (lock
->owner
!= NULL
)
1443 static void remote_ls(const char *path
, int flags
,
1444 void (*userFunc
)(struct remote_ls_ctx
*ls
),
1447 static void process_ls_object(struct remote_ls_ctx
*ls
)
1449 unsigned int *parent
= (unsigned int *)ls
->userData
;
1450 char *path
= ls
->dentry_name
;
1453 if (!strcmp(ls
->path
, ls
->dentry_name
) && (ls
->flags
& IS_DIR
)) {
1454 remote_dir_exists
[*parent
] = 1;
1458 if (strlen(path
) != 49)
1461 obj_hex
= xmalloc(strlen(path
));
1462 strncpy(obj_hex
, path
, 2);
1463 strcpy(obj_hex
+ 2, path
+ 3);
1464 one_remote_object(obj_hex
);
1468 static void process_ls_ref(struct remote_ls_ctx
*ls
)
1470 if (!strcmp(ls
->path
, ls
->dentry_name
) && (ls
->dentry_flags
& IS_DIR
)) {
1471 fprintf(stderr
, " %s\n", ls
->dentry_name
);
1475 if (!(ls
->dentry_flags
& IS_DIR
))
1476 one_remote_ref(ls
->dentry_name
);
1479 static void handle_remote_ls_ctx(struct xml_ctx
*ctx
, int tag_closed
)
1481 struct remote_ls_ctx
*ls
= (struct remote_ls_ctx
*)ctx
->userData
;
1484 if (!strcmp(ctx
->name
, DAV_PROPFIND_RESP
) && ls
->dentry_name
) {
1485 if (ls
->dentry_flags
& IS_DIR
) {
1486 if (ls
->flags
& PROCESS_DIRS
) {
1489 if (strcmp(ls
->dentry_name
, ls
->path
) &&
1490 ls
->flags
& RECURSIVE
) {
1491 remote_ls(ls
->dentry_name
,
1496 } else if (ls
->flags
& PROCESS_FILES
) {
1499 } else if (!strcmp(ctx
->name
, DAV_PROPFIND_NAME
) && ctx
->cdata
) {
1500 ls
->dentry_name
= xmalloc(strlen(ctx
->cdata
) -
1501 remote
->path_len
+ 1);
1502 strcpy(ls
->dentry_name
, ctx
->cdata
+ remote
->path_len
);
1503 } else if (!strcmp(ctx
->name
, DAV_PROPFIND_COLLECTION
)) {
1504 ls
->dentry_flags
|= IS_DIR
;
1506 } else if (!strcmp(ctx
->name
, DAV_PROPFIND_RESP
)) {
1507 if (ls
->dentry_name
) {
1508 free(ls
->dentry_name
);
1510 ls
->dentry_name
= NULL
;
1511 ls
->dentry_flags
= 0;
1515 static void remote_ls(const char *path
, int flags
,
1516 void (*userFunc
)(struct remote_ls_ctx
*ls
),
1519 char *url
= xmalloc(strlen(remote
->url
) + strlen(path
) + 1);
1520 struct active_request_slot
*slot
;
1521 struct slot_results results
;
1522 struct buffer in_buffer
;
1523 struct buffer out_buffer
;
1526 XML_Parser parser
= XML_ParserCreate(NULL
);
1527 enum XML_Status result
;
1528 struct curl_slist
*dav_headers
= NULL
;
1530 struct remote_ls_ctx ls
;
1533 ls
.path
= strdup(path
);
1534 ls
.dentry_name
= NULL
;
1535 ls
.dentry_flags
= 0;
1536 ls
.userData
= userData
;
1537 ls
.userFunc
= userFunc
;
1539 sprintf(url
, "%s%s", remote
->url
, path
);
1541 out_buffer
.size
= strlen(PROPFIND_ALL_REQUEST
);
1542 out_data
= xmalloc(out_buffer
.size
+ 1);
1543 snprintf(out_data
, out_buffer
.size
+ 1, PROPFIND_ALL_REQUEST
);
1544 out_buffer
.posn
= 0;
1545 out_buffer
.buffer
= out_data
;
1547 in_buffer
.size
= 4096;
1548 in_data
= xmalloc(in_buffer
.size
);
1550 in_buffer
.buffer
= in_data
;
1552 dav_headers
= curl_slist_append(dav_headers
, "Depth: 1");
1553 dav_headers
= curl_slist_append(dav_headers
, "Content-Type: text/xml");
1555 slot
= get_active_slot();
1556 slot
->results
= &results
;
1557 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, &out_buffer
);
1558 curl_easy_setopt(slot
->curl
, CURLOPT_INFILESIZE
, out_buffer
.size
);
1559 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, fread_buffer
);
1560 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &in_buffer
);
1561 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
1562 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
1563 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 1);
1564 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_PROPFIND
);
1565 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, dav_headers
);
1567 if (start_active_slot(slot
)) {
1568 run_active_slot(slot
);
1569 if (results
.curl_result
== CURLE_OK
) {
1570 ctx
.name
= xcalloc(10, 1);
1573 ctx
.userFunc
= handle_remote_ls_ctx
;
1575 XML_SetUserData(parser
, &ctx
);
1576 XML_SetElementHandler(parser
, xml_start_tag
,
1578 XML_SetCharacterDataHandler(parser
, xml_cdata
);
1579 result
= XML_Parse(parser
, in_buffer
.buffer
,
1583 if (result
!= XML_STATUS_OK
) {
1584 fprintf(stderr
, "XML error: %s\n",
1586 XML_GetErrorCode(parser
)));
1590 fprintf(stderr
, "Unable to start PROPFIND request\n");
1596 free(in_buffer
.buffer
);
1597 curl_slist_free_all(dav_headers
);
1600 static void get_remote_object_list(unsigned char parent
)
1602 char path
[] = "objects/XX/";
1603 static const char hex
[] = "0123456789abcdef";
1604 unsigned int val
= parent
;
1606 path
[8] = hex
[val
>> 4];
1607 path
[9] = hex
[val
& 0xf];
1608 remote_dir_exists
[val
] = 0;
1609 remote_ls(path
, (PROCESS_FILES
| PROCESS_DIRS
),
1610 process_ls_object
, &val
);
1613 static int locking_available(void)
1615 struct active_request_slot
*slot
;
1616 struct slot_results results
;
1617 struct buffer in_buffer
;
1618 struct buffer out_buffer
;
1621 XML_Parser parser
= XML_ParserCreate(NULL
);
1622 enum XML_Status result
;
1623 struct curl_slist
*dav_headers
= NULL
;
1628 strlen(PROPFIND_SUPPORTEDLOCK_REQUEST
) +
1629 strlen(remote
->url
) - 2;
1630 out_data
= xmalloc(out_buffer
.size
+ 1);
1631 snprintf(out_data
, out_buffer
.size
+ 1,
1632 PROPFIND_SUPPORTEDLOCK_REQUEST
, remote
->url
);
1633 out_buffer
.posn
= 0;
1634 out_buffer
.buffer
= out_data
;
1636 in_buffer
.size
= 4096;
1637 in_data
= xmalloc(in_buffer
.size
);
1639 in_buffer
.buffer
= in_data
;
1641 dav_headers
= curl_slist_append(dav_headers
, "Depth: 0");
1642 dav_headers
= curl_slist_append(dav_headers
, "Content-Type: text/xml");
1644 slot
= get_active_slot();
1645 slot
->results
= &results
;
1646 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, &out_buffer
);
1647 curl_easy_setopt(slot
->curl
, CURLOPT_INFILESIZE
, out_buffer
.size
);
1648 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, fread_buffer
);
1649 curl_easy_setopt(slot
->curl
, CURLOPT_FILE
, &in_buffer
);
1650 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_buffer
);
1651 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, remote
->url
);
1652 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 1);
1653 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_PROPFIND
);
1654 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, dav_headers
);
1656 if (start_active_slot(slot
)) {
1657 run_active_slot(slot
);
1658 if (results
.curl_result
== CURLE_OK
) {
1659 ctx
.name
= xcalloc(10, 1);
1662 ctx
.userFunc
= handle_lockprop_ctx
;
1663 ctx
.userData
= &lock_flags
;
1664 XML_SetUserData(parser
, &ctx
);
1665 XML_SetElementHandler(parser
, xml_start_tag
,
1667 result
= XML_Parse(parser
, in_buffer
.buffer
,
1671 if (result
!= XML_STATUS_OK
) {
1672 fprintf(stderr
, "XML error: %s\n",
1674 XML_GetErrorCode(parser
)));
1679 fprintf(stderr
, "Unable to start PROPFIND request\n");
1683 free(in_buffer
.buffer
);
1684 curl_slist_free_all(dav_headers
);
1689 static struct object_list
**process_blob(struct blob
*blob
,
1690 struct object_list
**p
,
1691 struct name_path
*path
,
1694 struct object
*obj
= &blob
->object
;
1696 obj
->flags
|= LOCAL
;
1698 if (obj
->flags
& (UNINTERESTING
| SEEN
))
1702 return add_object(obj
, p
, path
, name
);
1705 static struct object_list
**process_tree(struct tree
*tree
,
1706 struct object_list
**p
,
1707 struct name_path
*path
,
1710 struct object
*obj
= &tree
->object
;
1711 struct tree_entry_list
*entry
;
1712 struct name_path me
;
1714 obj
->flags
|= LOCAL
;
1716 if (obj
->flags
& (UNINTERESTING
| SEEN
))
1718 if (parse_tree(tree
) < 0)
1719 die("bad tree object %s", sha1_to_hex(obj
->sha1
));
1722 p
= add_object(obj
, p
, NULL
, name
);
1725 me
.elem_len
= strlen(name
);
1726 entry
= tree
->entries
;
1727 tree
->entries
= NULL
;
1729 struct tree_entry_list
*next
= entry
->next
;
1730 if (entry
->directory
)
1731 p
= process_tree(entry
->item
.tree
, p
, &me
, entry
->name
);
1733 p
= process_blob(entry
->item
.blob
, p
, &me
, entry
->name
);
1740 static int get_delta(struct rev_info
*revs
, struct remote_lock
*lock
)
1742 struct commit
*commit
;
1743 struct object_list
**p
= &objects
, *pending
;
1746 while ((commit
= get_revision(revs
)) != NULL
) {
1747 p
= process_tree(commit
->tree
, p
, NULL
, "");
1748 commit
->object
.flags
|= LOCAL
;
1749 if (!(commit
->object
.flags
& UNINTERESTING
))
1750 count
+= add_send_request(&commit
->object
, lock
);
1753 for (pending
= revs
->pending_objects
; pending
; pending
= pending
->next
) {
1754 struct object
*obj
= pending
->item
;
1755 const char *name
= pending
->name
;
1757 if (obj
->flags
& (UNINTERESTING
| SEEN
))
1759 if (obj
->type
== tag_type
) {
1761 p
= add_object(obj
, p
, NULL
, name
);
1764 if (obj
->type
== tree_type
) {
1765 p
= process_tree((struct tree
*)obj
, p
, NULL
, name
);
1768 if (obj
->type
== blob_type
) {
1769 p
= process_blob((struct blob
*)obj
, p
, NULL
, name
);
1772 die("unknown pending object %s (%s)", sha1_to_hex(obj
->sha1
), name
);
1776 if (!(objects
->item
->flags
& UNINTERESTING
))
1777 count
+= add_send_request(objects
->item
, lock
);
1778 objects
= objects
->next
;
1784 static int update_remote(unsigned char *sha1
, struct remote_lock
*lock
)
1786 struct active_request_slot
*slot
;
1787 struct slot_results results
;
1790 struct buffer out_buffer
;
1791 struct curl_slist
*dav_headers
= NULL
;
1794 if_header
= xmalloc(strlen(lock
->token
) + 25);
1795 sprintf(if_header
, "If: (<opaquelocktoken:%s>)", lock
->token
);
1796 dav_headers
= curl_slist_append(dav_headers
, if_header
);
1798 out_buffer
.size
= 41;
1799 out_data
= xmalloc(out_buffer
.size
+ 1);
1800 i
= snprintf(out_data
, out_buffer
.size
+ 1, "%s\n", sha1_to_hex(sha1
));
1801 if (i
!= out_buffer
.size
) {
1802 fprintf(stderr
, "Unable to initialize PUT request body\n");
1805 out_buffer
.posn
= 0;
1806 out_buffer
.buffer
= out_data
;
1808 slot
= get_active_slot();
1809 slot
->results
= &results
;
1810 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, &out_buffer
);
1811 curl_easy_setopt(slot
->curl
, CURLOPT_INFILESIZE
, out_buffer
.size
);
1812 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, fread_buffer
);
1813 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_null
);
1814 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_PUT
);
1815 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, dav_headers
);
1816 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 1);
1817 curl_easy_setopt(slot
->curl
, CURLOPT_PUT
, 1);
1818 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, lock
->url
);
1820 if (start_active_slot(slot
)) {
1821 run_active_slot(slot
);
1824 if (results
.curl_result
!= CURLE_OK
) {
1826 "PUT error: curl result=%d, HTTP code=%ld\n",
1827 results
.curl_result
, results
.http_code
);
1828 /* We should attempt recovery? */
1834 fprintf(stderr
, "Unable to start PUT request\n");
1841 static struct ref
*local_refs
, **local_tail
;
1842 static struct ref
*remote_refs
, **remote_tail
;
1844 static int one_local_ref(const char *refname
, const unsigned char *sha1
)
1847 int len
= strlen(refname
) + 1;
1848 ref
= xcalloc(1, sizeof(*ref
) + len
);
1849 memcpy(ref
->new_sha1
, sha1
, 20);
1850 memcpy(ref
->name
, refname
, len
);
1852 local_tail
= &ref
->next
;
1856 static void one_remote_ref(char *refname
)
1859 unsigned char remote_sha1
[20];
1862 if (fetch_ref(refname
, remote_sha1
) != 0) {
1864 "Unable to fetch ref %s from %s\n",
1865 refname
, remote
->url
);
1870 * Fetch a copy of the object if it doesn't exist locally - it
1871 * may be required for updating server info later.
1873 if (remote
->can_update_info_refs
&& !has_sha1_file(remote_sha1
)) {
1874 obj
= lookup_unknown_object(remote_sha1
);
1876 fprintf(stderr
, " fetch %s for %s\n",
1877 sha1_to_hex(remote_sha1
), refname
);
1878 add_fetch_request(obj
);
1882 int len
= strlen(refname
) + 1;
1883 ref
= xcalloc(1, sizeof(*ref
) + len
);
1884 memcpy(ref
->old_sha1
, remote_sha1
, 20);
1885 memcpy(ref
->name
, refname
, len
);
1887 remote_tail
= &ref
->next
;
1890 static void get_local_heads(void)
1892 local_tail
= &local_refs
;
1893 for_each_ref(one_local_ref
);
1896 static void get_dav_remote_heads(void)
1898 remote_tail
= &remote_refs
;
1899 remote_ls("refs/", (PROCESS_FILES
| PROCESS_DIRS
| RECURSIVE
), process_ls_ref
, NULL
);
1902 static int is_zero_sha1(const unsigned char *sha1
)
1906 for (i
= 0; i
< 20; i
++) {
1913 static void unmark_and_free(struct commit_list
*list
, unsigned int mark
)
1916 struct commit_list
*temp
= list
;
1917 temp
->item
->object
.flags
&= ~mark
;
1923 static int ref_newer(const unsigned char *new_sha1
,
1924 const unsigned char *old_sha1
)
1927 struct commit
*old
, *new;
1928 struct commit_list
*list
, *used
;
1931 /* Both new and old must be commit-ish and new is descendant of
1932 * old. Otherwise we require --force.
1934 o
= deref_tag(parse_object(old_sha1
), NULL
, 0);
1935 if (!o
|| o
->type
!= commit_type
)
1937 old
= (struct commit
*) o
;
1939 o
= deref_tag(parse_object(new_sha1
), NULL
, 0);
1940 if (!o
|| o
->type
!= commit_type
)
1942 new = (struct commit
*) o
;
1944 if (parse_commit(new) < 0)
1948 commit_list_insert(new, &list
);
1950 new = pop_most_recent_commit(&list
, TMP_MARK
);
1951 commit_list_insert(new, &used
);
1957 unmark_and_free(list
, TMP_MARK
);
1958 unmark_and_free(used
, TMP_MARK
);
1962 static void mark_edge_parents_uninteresting(struct commit
*commit
)
1964 struct commit_list
*parents
;
1966 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
1967 struct commit
*parent
= parents
->item
;
1968 if (!(parent
->object
.flags
& UNINTERESTING
))
1970 mark_tree_uninteresting(parent
->tree
);
1974 static void mark_edges_uninteresting(struct commit_list
*list
)
1976 for ( ; list
; list
= list
->next
) {
1977 struct commit
*commit
= list
->item
;
1979 if (commit
->object
.flags
& UNINTERESTING
) {
1980 mark_tree_uninteresting(commit
->tree
);
1983 mark_edge_parents_uninteresting(commit
);
1987 static void add_remote_info_ref(struct remote_ls_ctx
*ls
)
1989 struct buffer
*buf
= (struct buffer
*)ls
->userData
;
1990 unsigned char remote_sha1
[20];
1995 if (fetch_ref(ls
->dentry_name
, remote_sha1
) != 0) {
1997 "Unable to fetch ref %s from %s\n",
1998 ls
->dentry_name
, remote
->url
);
2003 o
= parse_object(remote_sha1
);
2006 "Unable to parse object %s for remote ref %s\n",
2007 sha1_to_hex(remote_sha1
), ls
->dentry_name
);
2012 len
= strlen(ls
->dentry_name
) + 42;
2013 ref_info
= xcalloc(len
+ 1, 1);
2014 sprintf(ref_info
, "%s %s\n",
2015 sha1_to_hex(remote_sha1
), ls
->dentry_name
);
2016 fwrite_buffer(ref_info
, 1, len
, buf
);
2019 if (o
->type
== tag_type
) {
2020 o
= deref_tag(o
, ls
->dentry_name
, 0);
2022 len
= strlen(ls
->dentry_name
) + 45;
2023 ref_info
= xcalloc(len
+ 1, 1);
2024 sprintf(ref_info
, "%s %s^{}\n",
2025 sha1_to_hex(o
->sha1
), ls
->dentry_name
);
2026 fwrite_buffer(ref_info
, 1, len
, buf
);
2032 static void update_remote_info_refs(struct remote_lock
*lock
)
2034 struct buffer buffer
;
2035 struct active_request_slot
*slot
;
2036 struct slot_results results
;
2038 struct curl_slist
*dav_headers
= NULL
;
2040 buffer
.buffer
= xmalloc(4096);
2041 memset(buffer
.buffer
, 0, 4096);
2044 remote_ls("refs/", (PROCESS_FILES
| RECURSIVE
),
2045 add_remote_info_ref
, &buffer
);
2047 if_header
= xmalloc(strlen(lock
->token
) + 25);
2048 sprintf(if_header
, "If: (<opaquelocktoken:%s>)", lock
->token
);
2049 dav_headers
= curl_slist_append(dav_headers
, if_header
);
2051 slot
= get_active_slot();
2052 slot
->results
= &results
;
2053 curl_easy_setopt(slot
->curl
, CURLOPT_INFILE
, &buffer
);
2054 curl_easy_setopt(slot
->curl
, CURLOPT_INFILESIZE
, buffer
.posn
);
2055 curl_easy_setopt(slot
->curl
, CURLOPT_READFUNCTION
, fread_buffer
);
2056 curl_easy_setopt(slot
->curl
, CURLOPT_WRITEFUNCTION
, fwrite_null
);
2057 curl_easy_setopt(slot
->curl
, CURLOPT_CUSTOMREQUEST
, DAV_PUT
);
2058 curl_easy_setopt(slot
->curl
, CURLOPT_HTTPHEADER
, dav_headers
);
2059 curl_easy_setopt(slot
->curl
, CURLOPT_UPLOAD
, 1);
2060 curl_easy_setopt(slot
->curl
, CURLOPT_PUT
, 1);
2061 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, lock
->url
);
2065 if (start_active_slot(slot
)) {
2066 run_active_slot(slot
);
2067 if (results
.curl_result
!= CURLE_OK
) {
2069 "PUT error: curl result=%d, HTTP code=%ld\n",
2070 results
.curl_result
, results
.http_code
);
2075 free(buffer
.buffer
);
2078 static int remote_exists(const char *path
)
2080 char *url
= xmalloc(strlen(remote
->url
) + strlen(path
) + 1);
2081 struct active_request_slot
*slot
;
2082 struct slot_results results
;
2084 sprintf(url
, "%s%s", remote
->url
, path
);
2086 slot
= get_active_slot();
2087 slot
->results
= &results
;
2088 curl_easy_setopt(slot
->curl
, CURLOPT_URL
, url
);
2089 curl_easy_setopt(slot
->curl
, CURLOPT_NOBODY
, 1);
2091 if (start_active_slot(slot
)) {
2092 run_active_slot(slot
);
2093 if (results
.http_code
== 404)
2095 else if (results
.curl_result
== CURLE_OK
)
2098 fprintf(stderr
, "HEAD HTTP error %ld\n", results
.http_code
);
2100 fprintf(stderr
, "Unable to start HEAD request\n");
2106 int main(int argc
, char **argv
)
2108 struct transfer_request
*request
;
2109 struct transfer_request
*next_request
;
2111 char **refspec
= NULL
;
2112 struct remote_lock
*ref_lock
= NULL
;
2113 struct remote_lock
*info_ref_lock
= NULL
;
2114 struct rev_info revs
;
2115 int objects_to_send
;
2119 setup_git_directory();
2122 remote
= xcalloc(sizeof(*remote
), 1);
2125 for (i
= 1; i
< argc
; i
++, argv
++) {
2129 if (!strcmp(arg
, "--all")) {
2133 if (!strcmp(arg
, "--force")) {
2137 if (!strcmp(arg
, "--verbose")) {
2141 usage(http_push_usage
);
2145 char *path
= strstr(arg
, "//");
2147 path
= index(path
+2, '/');
2149 remote
->path_len
= strlen(path
);
2154 nr_refspec
= argc
- i
;
2159 usage(http_push_usage
);
2161 memset(remote_dir_exists
, -1, 256);
2165 no_pragma_header
= curl_slist_append(no_pragma_header
, "Pragma:");
2166 default_headers
= curl_slist_append(default_headers
, "Range:");
2167 default_headers
= curl_slist_append(default_headers
, "Destination:");
2168 default_headers
= curl_slist_append(default_headers
, "If:");
2169 default_headers
= curl_slist_append(default_headers
,
2170 "Pragma: no-cache");
2172 /* Verify DAV compliance/lock support */
2173 if (!locking_available()) {
2174 fprintf(stderr
, "Error: no DAV locking support on remote repo %s\n", remote
->url
);
2179 /* Check whether the remote has server info files */
2180 remote
->can_update_info_refs
= 0;
2181 remote
->has_info_refs
= remote_exists("info/refs");
2182 remote
->has_info_packs
= remote_exists("objects/info/packs");
2183 if (remote
->has_info_refs
) {
2184 info_ref_lock
= lock_remote("info/refs", LOCK_TIME
);
2186 remote
->can_update_info_refs
= 1;
2188 if (remote
->has_info_packs
)
2191 /* Get a list of all local and remote heads to validate refspecs */
2193 fprintf(stderr
, "Fetching remote heads...\n");
2194 get_dav_remote_heads();
2198 remote_tail
= &remote_refs
;
2199 if (match_refs(local_refs
, remote_refs
, &remote_tail
,
2200 nr_refspec
, refspec
, push_all
))
2203 fprintf(stderr
, "No refs in common and none specified; doing nothing.\n");
2209 for (ref
= remote_refs
; ref
; ref
= ref
->next
) {
2210 char old_hex
[60], *new_hex
;
2213 if (!memcmp(ref
->old_sha1
, ref
->peer_ref
->new_sha1
, 20)) {
2214 if (push_verbosely
|| 1)
2215 fprintf(stderr
, "'%s': up-to-date\n", ref
->name
);
2220 !is_zero_sha1(ref
->old_sha1
) &&
2222 if (!has_sha1_file(ref
->old_sha1
) ||
2223 !ref_newer(ref
->peer_ref
->new_sha1
,
2225 /* We do not have the remote ref, or
2226 * we know that the remote ref is not
2227 * an ancestor of what we are trying to
2228 * push. Either way this can be losing
2229 * commits at the remote end and likely
2230 * we were not up to date to begin with.
2232 error("remote '%s' is not a strict "
2233 "subset of local ref '%s'. "
2234 "maybe you are not up-to-date and "
2235 "need to pull first?",
2237 ref
->peer_ref
->name
);
2242 memcpy(ref
->new_sha1
, ref
->peer_ref
->new_sha1
, 20);
2243 if (is_zero_sha1(ref
->new_sha1
)) {
2244 error("cannot happen anymore");
2249 strcpy(old_hex
, sha1_to_hex(ref
->old_sha1
));
2250 new_hex
= sha1_to_hex(ref
->new_sha1
);
2252 fprintf(stderr
, "updating '%s'", ref
->name
);
2253 if (strcmp(ref
->name
, ref
->peer_ref
->name
))
2254 fprintf(stderr
, " using '%s'", ref
->peer_ref
->name
);
2255 fprintf(stderr
, "\n from %s\n to %s\n", old_hex
, new_hex
);
2258 /* Lock remote branch ref */
2259 ref_lock
= lock_remote(ref
->name
, LOCK_TIME
);
2260 if (ref_lock
== NULL
) {
2261 fprintf(stderr
, "Unable to lock remote branch %s\n",
2267 /* Set up revision info for this refspec */
2268 const char *commit_argv
[4];
2269 int commit_argc
= 3;
2270 char *new_sha1_hex
= strdup(sha1_to_hex(ref
->new_sha1
));
2271 char *old_sha1_hex
= NULL
;
2272 commit_argv
[1] = "--objects";
2273 commit_argv
[2] = new_sha1_hex
;
2274 if (!push_all
&& !is_zero_sha1(ref
->old_sha1
)) {
2275 old_sha1_hex
= xmalloc(42);
2276 sprintf(old_sha1_hex
, "^%s",
2277 sha1_to_hex(ref
->old_sha1
));
2278 commit_argv
[3] = old_sha1_hex
;
2281 setup_revisions(commit_argc
, commit_argv
, &revs
, NULL
);
2285 commit_argv
[1] = NULL
;
2288 /* Generate a list of objects that need to be pushed */
2290 prepare_revision_walk(&revs
);
2291 mark_edges_uninteresting(revs
.commits
);
2292 objects_to_send
= get_delta(&revs
, ref_lock
);
2293 finish_all_active_slots();
2295 /* Push missing objects to remote, this would be a
2296 convenient time to pack them first if appropriate. */
2298 if (objects_to_send
)
2299 fprintf(stderr
, " sending %d objects\n",
2301 fill_active_slots();
2302 finish_all_active_slots();
2304 /* Update the remote branch if all went well */
2305 if (aborted
|| !update_remote(ref
->new_sha1
, ref_lock
)) {
2312 fprintf(stderr
, " done\n");
2313 unlock_remote(ref_lock
);
2317 /* Update remote server info if appropriate */
2318 if (remote
->has_info_refs
&& new_refs
) {
2319 if (info_ref_lock
&& remote
->can_update_info_refs
) {
2320 fprintf(stderr
, "Updating remote server info\n");
2321 update_remote_info_refs(info_ref_lock
);
2323 fprintf(stderr
, "Unable to update server info\n");
2327 unlock_remote(info_ref_lock
);
2332 curl_slist_free_all(no_pragma_header
);
2333 curl_slist_free_all(default_headers
);
2337 request
= request_queue_head
;
2338 while (request
!= NULL
) {
2339 next_request
= request
->next
;
2340 release_request(request
);
2341 request
= next_request
;