2 #include "repository.h"
12 #include "fetch-pack.h"
14 #include "run-command.h"
16 #include "transport.h"
18 #include "prio-queue.h"
19 #include "sha1-array.h"
22 #include "connected.h"
24 static int transfer_unpack_limit
= -1;
25 static int fetch_unpack_limit
= -1;
26 static int unpack_limit
= 100;
27 static int prefer_ofs_delta
= 1;
29 static int deepen_since_ok
;
30 static int deepen_not_ok
;
31 static int fetch_fsck_objects
= -1;
32 static int transfer_fsck_objects
= -1;
33 static int agent_supported
;
34 static int server_supports_filtering
;
35 static struct lock_file shallow_lock
;
36 static const char *alternate_shallow_file
;
38 /* Remember to update object flag allocation in object.h */
39 #define COMPLETE (1U << 0)
40 #define COMMON (1U << 1)
41 #define COMMON_REF (1U << 2)
42 #define SEEN (1U << 3)
43 #define POPPED (1U << 4)
44 #define ALTERNATE (1U << 5)
49 * After sending this many "have"s if we do not get any new ACK , we
50 * give up traversing our history.
52 #define MAX_IN_VAIN 256
54 static struct prio_queue rev_list
= { compare_commits_by_commit_date
};
55 static int non_common_revs
, multi_ack
, use_sideband
;
56 /* Allow specifying sha1 if it is a ref tip. */
57 #define ALLOW_TIP_SHA1 01
58 /* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
59 #define ALLOW_REACHABLE_SHA1 02
60 static unsigned int allow_unadvertised_object_request
;
62 __attribute__((format (printf
, 2, 3)))
63 static inline void print_verbose(const struct fetch_pack_args
*args
,
71 va_start(params
, fmt
);
72 vfprintf(stderr
, fmt
, params
);
77 struct alternate_object_cache
{
78 struct object
**items
;
82 static void cache_one_alternate(const char *refname
,
83 const struct object_id
*oid
,
86 struct alternate_object_cache
*cache
= vcache
;
87 struct object
*obj
= parse_object(oid
);
89 if (!obj
|| (obj
->flags
& ALTERNATE
))
92 obj
->flags
|= ALTERNATE
;
93 ALLOC_GROW(cache
->items
, cache
->nr
+ 1, cache
->alloc
);
94 cache
->items
[cache
->nr
++] = obj
;
97 static void for_each_cached_alternate(void (*cb
)(struct object
*))
99 static int initialized
;
100 static struct alternate_object_cache cache
;
104 for_each_alternate_ref(cache_one_alternate
, &cache
);
108 for (i
= 0; i
< cache
.nr
; i
++)
112 static void rev_list_push(struct commit
*commit
, int mark
)
114 if (!(commit
->object
.flags
& mark
)) {
115 commit
->object
.flags
|= mark
;
117 if (parse_commit(commit
))
120 prio_queue_put(&rev_list
, commit
);
122 if (!(commit
->object
.flags
& COMMON
))
127 static int rev_list_insert_ref(const char *refname
, const struct object_id
*oid
)
129 struct object
*o
= deref_tag(parse_object(oid
), refname
, 0);
131 if (o
&& o
->type
== OBJ_COMMIT
)
132 rev_list_push((struct commit
*)o
, SEEN
);
137 static int rev_list_insert_ref_oid(const char *refname
, const struct object_id
*oid
,
138 int flag
, void *cb_data
)
140 return rev_list_insert_ref(refname
, oid
);
143 static int clear_marks(const char *refname
, const struct object_id
*oid
,
144 int flag
, void *cb_data
)
146 struct object
*o
= deref_tag(parse_object(oid
), refname
, 0);
148 if (o
&& o
->type
== OBJ_COMMIT
)
149 clear_commit_marks((struct commit
*)o
,
150 COMMON
| COMMON_REF
| SEEN
| POPPED
);
155 This function marks a rev and its ancestors as common.
156 In some cases, it is desirable to mark only the ancestors (for example
157 when only the server does not yet know that they are common).
160 static void mark_common(struct commit
*commit
,
161 int ancestors_only
, int dont_parse
)
163 if (commit
!= NULL
&& !(commit
->object
.flags
& COMMON
)) {
164 struct object
*o
= (struct object
*)commit
;
169 if (!(o
->flags
& SEEN
))
170 rev_list_push(commit
, SEEN
);
172 struct commit_list
*parents
;
174 if (!ancestors_only
&& !(o
->flags
& POPPED
))
176 if (!o
->parsed
&& !dont_parse
)
177 if (parse_commit(commit
))
180 for (parents
= commit
->parents
;
182 parents
= parents
->next
)
183 mark_common(parents
->item
, 0, dont_parse
);
189 Get the next rev to send, ignoring the common.
192 static const struct object_id
*get_rev(void)
194 struct commit
*commit
= NULL
;
196 while (commit
== NULL
) {
198 struct commit_list
*parents
;
200 if (rev_list
.nr
== 0 || non_common_revs
== 0)
203 commit
= prio_queue_get(&rev_list
);
204 parse_commit(commit
);
205 parents
= commit
->parents
;
207 commit
->object
.flags
|= POPPED
;
208 if (!(commit
->object
.flags
& COMMON
))
211 if (commit
->object
.flags
& COMMON
) {
212 /* do not send "have", and ignore ancestors */
214 mark
= COMMON
| SEEN
;
215 } else if (commit
->object
.flags
& COMMON_REF
)
216 /* send "have", and ignore ancestors */
217 mark
= COMMON
| SEEN
;
219 /* send "have", also for its ancestors */
223 if (!(parents
->item
->object
.flags
& SEEN
))
224 rev_list_push(parents
->item
, mark
);
226 mark_common(parents
->item
, 1, 0);
227 parents
= parents
->next
;
231 return &commit
->object
.oid
;
242 static void consume_shallow_list(struct fetch_pack_args
*args
, int fd
)
244 if (args
->stateless_rpc
&& args
->deepen
) {
245 /* If we sent a depth we will get back "duplicate"
246 * shallow and unshallow commands every time there
247 * is a block of have lines exchanged.
250 while ((line
= packet_read_line(fd
, NULL
))) {
251 if (starts_with(line
, "shallow "))
253 if (starts_with(line
, "unshallow "))
255 die(_("git fetch-pack: expected shallow list"));
260 static enum ack_type
get_ack(int fd
, struct object_id
*result_oid
)
263 char *line
= packet_read_line(fd
, &len
);
267 die(_("git fetch-pack: expected ACK/NAK, got a flush packet"));
268 if (!strcmp(line
, "NAK"))
270 if (skip_prefix(line
, "ACK ", &arg
)) {
271 if (!get_oid_hex(arg
, result_oid
)) {
276 if (strstr(arg
, "continue"))
278 if (strstr(arg
, "common"))
280 if (strstr(arg
, "ready"))
285 if (skip_prefix(line
, "ERR ", &arg
))
286 die(_("remote error: %s"), arg
);
287 die(_("git fetch-pack: expected ACK/NAK, got '%s'"), line
);
290 static void send_request(struct fetch_pack_args
*args
,
291 int fd
, struct strbuf
*buf
)
293 if (args
->stateless_rpc
) {
294 send_sideband(fd
, -1, buf
->buf
, buf
->len
, LARGE_PACKET_MAX
);
297 write_or_die(fd
, buf
->buf
, buf
->len
);
300 static void insert_one_alternate_object(struct object
*obj
)
302 rev_list_insert_ref(NULL
, &obj
->oid
);
305 #define INITIAL_FLUSH 16
306 #define PIPESAFE_FLUSH 32
307 #define LARGE_FLUSH 16384
309 static int next_flush(int stateless_rpc
, int count
)
312 if (count
< LARGE_FLUSH
)
315 count
= count
* 11 / 10;
317 if (count
< PIPESAFE_FLUSH
)
320 count
+= PIPESAFE_FLUSH
;
325 static int find_common(struct fetch_pack_args
*args
,
326 int fd
[2], struct object_id
*result_oid
,
330 int count
= 0, flushes
= 0, flush_at
= INITIAL_FLUSH
, retval
;
331 const struct object_id
*oid
;
332 unsigned in_vain
= 0;
333 int got_continue
= 0;
335 struct strbuf req_buf
= STRBUF_INIT
;
336 size_t state_len
= 0;
338 if (args
->stateless_rpc
&& multi_ack
== 1)
339 die(_("--stateless-rpc requires multi_ack_detailed"));
341 for_each_ref(clear_marks
, NULL
);
344 for_each_ref(rev_list_insert_ref_oid
, NULL
);
345 for_each_cached_alternate(insert_one_alternate_object
);
348 for ( ; refs
; refs
= refs
->next
) {
349 struct object_id
*remote
= &refs
->old_oid
;
350 const char *remote_hex
;
354 * If that object is complete (i.e. it is an ancestor of a
355 * local ref), we tell them we have it but do not have to
356 * tell them about its ancestors, which they already know
359 * We use lookup_object here because we are only
360 * interested in the case we *know* the object is
361 * reachable and we have already scanned it.
363 if (((o
= lookup_object(remote
->hash
)) != NULL
) &&
364 (o
->flags
& COMPLETE
)) {
368 remote_hex
= oid_to_hex(remote
);
370 struct strbuf c
= STRBUF_INIT
;
371 if (multi_ack
== 2) strbuf_addstr(&c
, " multi_ack_detailed");
372 if (multi_ack
== 1) strbuf_addstr(&c
, " multi_ack");
373 if (no_done
) strbuf_addstr(&c
, " no-done");
374 if (use_sideband
== 2) strbuf_addstr(&c
, " side-band-64k");
375 if (use_sideband
== 1) strbuf_addstr(&c
, " side-band");
376 if (args
->deepen_relative
) strbuf_addstr(&c
, " deepen-relative");
377 if (args
->use_thin_pack
) strbuf_addstr(&c
, " thin-pack");
378 if (args
->no_progress
) strbuf_addstr(&c
, " no-progress");
379 if (args
->include_tag
) strbuf_addstr(&c
, " include-tag");
380 if (prefer_ofs_delta
) strbuf_addstr(&c
, " ofs-delta");
381 if (deepen_since_ok
) strbuf_addstr(&c
, " deepen-since");
382 if (deepen_not_ok
) strbuf_addstr(&c
, " deepen-not");
383 if (agent_supported
) strbuf_addf(&c
, " agent=%s",
384 git_user_agent_sanitized());
385 if (args
->filter_options
.choice
)
386 strbuf_addstr(&c
, " filter");
387 packet_buf_write(&req_buf
, "want %s%s\n", remote_hex
, c
.buf
);
390 packet_buf_write(&req_buf
, "want %s\n", remote_hex
);
395 strbuf_release(&req_buf
);
400 if (is_repository_shallow())
401 write_shallow_commits(&req_buf
, 1, NULL
);
403 packet_buf_write(&req_buf
, "deepen %d", args
->depth
);
404 if (args
->deepen_since
) {
405 timestamp_t max_age
= approxidate(args
->deepen_since
);
406 packet_buf_write(&req_buf
, "deepen-since %"PRItime
, max_age
);
408 if (args
->deepen_not
) {
410 for (i
= 0; i
< args
->deepen_not
->nr
; i
++) {
411 struct string_list_item
*s
= args
->deepen_not
->items
+ i
;
412 packet_buf_write(&req_buf
, "deepen-not %s", s
->string
);
415 if (server_supports_filtering
&& args
->filter_options
.choice
)
416 packet_buf_write(&req_buf
, "filter %s",
417 args
->filter_options
.filter_spec
);
418 packet_buf_flush(&req_buf
);
419 state_len
= req_buf
.len
;
424 struct object_id oid
;
426 send_request(args
, fd
[1], &req_buf
);
427 while ((line
= packet_read_line(fd
[0], NULL
))) {
428 if (skip_prefix(line
, "shallow ", &arg
)) {
429 if (get_oid_hex(arg
, &oid
))
430 die(_("invalid shallow line: %s"), line
);
431 register_shallow(&oid
);
434 if (skip_prefix(line
, "unshallow ", &arg
)) {
435 if (get_oid_hex(arg
, &oid
))
436 die(_("invalid unshallow line: %s"), line
);
437 if (!lookup_object(oid
.hash
))
438 die(_("object not found: %s"), line
);
439 /* make sure that it is parsed as shallow */
440 if (!parse_object(&oid
))
441 die(_("error in object: %s"), line
);
442 if (unregister_shallow(&oid
))
443 die(_("no shallow found: %s"), line
);
446 die(_("expected shallow/unshallow, got %s"), line
);
448 } else if (!args
->stateless_rpc
)
449 send_request(args
, fd
[1], &req_buf
);
451 if (!args
->stateless_rpc
) {
452 /* If we aren't using the stateless-rpc interface
453 * we don't need to retain the headers.
455 strbuf_setlen(&req_buf
, 0);
461 if (args
->no_dependents
)
463 while ((oid
= get_rev())) {
464 packet_buf_write(&req_buf
, "have %s\n", oid_to_hex(oid
));
465 print_verbose(args
, "have %s", oid_to_hex(oid
));
467 if (flush_at
<= ++count
) {
470 packet_buf_flush(&req_buf
);
471 send_request(args
, fd
[1], &req_buf
);
472 strbuf_setlen(&req_buf
, state_len
);
474 flush_at
= next_flush(args
->stateless_rpc
, count
);
477 * We keep one window "ahead" of the other side, and
478 * will wait for an ACK only on the next one
480 if (!args
->stateless_rpc
&& count
== INITIAL_FLUSH
)
483 consume_shallow_list(args
, fd
[0]);
485 ack
= get_ack(fd
[0], result_oid
);
487 print_verbose(args
, _("got %s %d %s"), "ack",
488 ack
, oid_to_hex(result_oid
));
498 struct commit
*commit
=
499 lookup_commit(result_oid
);
501 die(_("invalid commit %s"), oid_to_hex(result_oid
));
502 if (args
->stateless_rpc
504 && !(commit
->object
.flags
& COMMON
)) {
505 /* We need to replay the have for this object
506 * on the next RPC request so the peer knows
507 * it is in common with us.
509 const char *hex
= oid_to_hex(result_oid
);
510 packet_buf_write(&req_buf
, "have %s\n", hex
);
511 state_len
= req_buf
.len
;
513 * Reset in_vain because an ack
514 * for this commit has not been
518 } else if (!args
->stateless_rpc
519 || ack
!= ACK_common
)
521 mark_common(commit
, 0, 1);
524 if (ack
== ACK_ready
) {
525 clear_prio_queue(&rev_list
);
533 if (got_continue
&& MAX_IN_VAIN
< in_vain
) {
534 print_verbose(args
, _("giving up"));
540 if (!got_ready
|| !no_done
) {
541 packet_buf_write(&req_buf
, "done\n");
542 send_request(args
, fd
[1], &req_buf
);
544 print_verbose(args
, _("done"));
549 strbuf_release(&req_buf
);
551 if (!got_ready
|| !no_done
)
552 consume_shallow_list(args
, fd
[0]);
553 while (flushes
|| multi_ack
) {
554 int ack
= get_ack(fd
[0], result_oid
);
556 print_verbose(args
, _("got %s (%d) %s"), "ack",
557 ack
, oid_to_hex(result_oid
));
565 /* it is no error to fetch into a completely empty repo */
566 return count
? retval
: 0;
569 static struct commit_list
*complete
;
571 static int mark_complete(const struct object_id
*oid
)
573 struct object
*o
= parse_object(oid
);
575 while (o
&& o
->type
== OBJ_TAG
) {
576 struct tag
*t
= (struct tag
*) o
;
578 break; /* broken repository */
579 o
->flags
|= COMPLETE
;
580 o
= parse_object(&t
->tagged
->oid
);
582 if (o
&& o
->type
== OBJ_COMMIT
) {
583 struct commit
*commit
= (struct commit
*)o
;
584 if (!(commit
->object
.flags
& COMPLETE
)) {
585 commit
->object
.flags
|= COMPLETE
;
586 commit_list_insert(commit
, &complete
);
592 static int mark_complete_oid(const char *refname
, const struct object_id
*oid
,
593 int flag
, void *cb_data
)
595 return mark_complete(oid
);
598 static void mark_recent_complete_commits(struct fetch_pack_args
*args
,
601 while (complete
&& cutoff
<= complete
->item
->date
) {
602 print_verbose(args
, _("Marking %s as complete"),
603 oid_to_hex(&complete
->item
->object
.oid
));
604 pop_most_recent_commit(&complete
, COMPLETE
);
608 static void add_refs_to_oidset(struct oidset
*oids
, struct ref
*refs
)
610 for (; refs
; refs
= refs
->next
)
611 oidset_insert(oids
, &refs
->old_oid
);
614 static int tip_oids_contain(struct oidset
*tip_oids
,
615 struct ref
*unmatched
, struct ref
*newlist
,
616 const struct object_id
*id
)
619 * Note that this only looks at the ref lists the first time it's
620 * called. This works out in filter_refs() because even though it may
621 * add to "newlist" between calls, the additions will always be for
622 * oids that are already in the set.
624 if (!tip_oids
->map
.map
.tablesize
) {
625 add_refs_to_oidset(tip_oids
, unmatched
);
626 add_refs_to_oidset(tip_oids
, newlist
);
628 return oidset_contains(tip_oids
, id
);
631 static void filter_refs(struct fetch_pack_args
*args
,
633 struct ref
**sought
, int nr_sought
)
635 struct ref
*newlist
= NULL
;
636 struct ref
**newtail
= &newlist
;
637 struct ref
*unmatched
= NULL
;
638 struct ref
*ref
, *next
;
639 struct oidset tip_oids
= OIDSET_INIT
;
643 for (ref
= *refs
; ref
; ref
= next
) {
647 if (starts_with(ref
->name
, "refs/") &&
648 check_refname_format(ref
->name
, 0))
651 while (i
< nr_sought
) {
652 int cmp
= strcmp(ref
->name
, sought
[i
]->name
);
654 break; /* definitely do not have it */
656 keep
= 1; /* definitely have it */
657 sought
[i
]->match_status
= REF_MATCHED
;
663 if (!keep
&& args
->fetch_all
&&
664 (!args
->deepen
|| !starts_with(ref
->name
, "refs/tags/")))
670 newtail
= &ref
->next
;
672 ref
->next
= unmatched
;
677 /* Append unmatched requests to the list */
678 for (i
= 0; i
< nr_sought
; i
++) {
679 struct object_id oid
;
683 if (ref
->match_status
!= REF_NOT_MATCHED
)
685 if (parse_oid_hex(ref
->name
, &oid
, &p
) ||
687 oidcmp(&oid
, &ref
->old_oid
))
690 if ((allow_unadvertised_object_request
&
691 (ALLOW_TIP_SHA1
| ALLOW_REACHABLE_SHA1
)) ||
692 tip_oids_contain(&tip_oids
, unmatched
, newlist
,
694 ref
->match_status
= REF_MATCHED
;
695 *newtail
= copy_ref(ref
);
696 newtail
= &(*newtail
)->next
;
698 ref
->match_status
= REF_UNADVERTISED_NOT_ALLOWED
;
702 oidset_clear(&tip_oids
);
703 for (ref
= unmatched
; ref
; ref
= next
) {
711 static void mark_alternate_complete(struct object
*obj
)
713 mark_complete(&obj
->oid
);
716 struct loose_object_iter
{
717 struct oidset
*loose_object_set
;
722 * If the number of refs is not larger than the number of loose objects,
723 * this function stops inserting.
725 static int add_loose_objects_to_set(const struct object_id
*oid
,
729 struct loose_object_iter
*iter
= data
;
730 oidset_insert(iter
->loose_object_set
, oid
);
731 if (iter
->refs
== NULL
)
734 iter
->refs
= iter
->refs
->next
;
738 static int everything_local(struct fetch_pack_args
*args
,
740 struct ref
**sought
, int nr_sought
)
744 int old_save_commit_buffer
= save_commit_buffer
;
745 timestamp_t cutoff
= 0;
746 struct oidset loose_oid_set
= OIDSET_INIT
;
748 struct loose_object_iter iter
= {&loose_oid_set
, *refs
};
750 /* Enumerate all loose objects or know refs are not so many. */
751 use_oidset
= !for_each_loose_object(add_loose_objects_to_set
,
754 save_commit_buffer
= 0;
756 for (ref
= *refs
; ref
; ref
= ref
->next
) {
758 unsigned int flags
= OBJECT_INFO_QUICK
;
761 !oidset_contains(&loose_oid_set
, &ref
->old_oid
)) {
763 * I know this does not exist in the loose form,
764 * so check if it exists in a non-loose form.
766 flags
|= OBJECT_INFO_IGNORE_LOOSE
;
769 if (!has_object_file_with_flags(&ref
->old_oid
, flags
))
771 o
= parse_object(&ref
->old_oid
);
775 /* We already have it -- which may mean that we were
776 * in sync with the other side at some time after
777 * that (it is OK if we guess wrong here).
779 if (o
->type
== OBJ_COMMIT
) {
780 struct commit
*commit
= (struct commit
*)o
;
781 if (!cutoff
|| cutoff
< commit
->date
)
782 cutoff
= commit
->date
;
786 oidset_clear(&loose_oid_set
);
788 if (!args
->no_dependents
) {
790 for_each_ref(mark_complete_oid
, NULL
);
791 for_each_cached_alternate(mark_alternate_complete
);
792 commit_list_sort_by_date(&complete
);
794 mark_recent_complete_commits(args
, cutoff
);
798 * Mark all complete remote refs as common refs.
799 * Don't mark them common yet; the server has to be told so first.
801 for (ref
= *refs
; ref
; ref
= ref
->next
) {
802 struct object
*o
= deref_tag(lookup_object(ref
->old_oid
.hash
),
805 if (!o
|| o
->type
!= OBJ_COMMIT
|| !(o
->flags
& COMPLETE
))
808 if (!(o
->flags
& SEEN
)) {
809 rev_list_push((struct commit
*)o
, COMMON_REF
| SEEN
);
811 mark_common((struct commit
*)o
, 1, 1);
816 filter_refs(args
, refs
, sought
, nr_sought
);
818 for (retval
= 1, ref
= *refs
; ref
; ref
= ref
->next
) {
819 const struct object_id
*remote
= &ref
->old_oid
;
822 o
= lookup_object(remote
->hash
);
823 if (!o
|| !(o
->flags
& COMPLETE
)) {
825 print_verbose(args
, "want %s (%s)", oid_to_hex(remote
),
829 print_verbose(args
, _("already have %s (%s)"), oid_to_hex(remote
),
833 save_commit_buffer
= old_save_commit_buffer
;
838 static int sideband_demux(int in
, int out
, void *data
)
843 ret
= recv_sideband("fetch-pack", xd
[0], out
);
848 static int get_pack(struct fetch_pack_args
*args
,
849 int xd
[2], char **pack_lockfile
)
852 int do_keep
= args
->keep_pack
;
853 const char *cmd_name
;
854 struct pack_header header
;
856 struct child_process cmd
= CHILD_PROCESS_INIT
;
859 memset(&demux
, 0, sizeof(demux
));
861 /* xd[] is talking with upload-pack; subprocess reads from
862 * xd[0], spits out band#2 to stderr, and feeds us band#1
863 * through demux->out.
865 demux
.proc
= sideband_demux
;
868 demux
.isolate_sigpipe
= 1;
869 if (start_async(&demux
))
870 die(_("fetch-pack: unable to fork off sideband demultiplexer"));
875 if (!args
->keep_pack
&& unpack_limit
) {
877 if (read_pack_header(demux
.out
, &header
))
878 die(_("protocol error: bad pack header"));
880 if (ntohl(header
.hdr_entries
) < unpack_limit
)
886 if (alternate_shallow_file
) {
887 argv_array_push(&cmd
.args
, "--shallow-file");
888 argv_array_push(&cmd
.args
, alternate_shallow_file
);
891 if (do_keep
|| args
->from_promisor
) {
894 cmd_name
= "index-pack";
895 argv_array_push(&cmd
.args
, cmd_name
);
896 argv_array_push(&cmd
.args
, "--stdin");
897 if (!args
->quiet
&& !args
->no_progress
)
898 argv_array_push(&cmd
.args
, "-v");
899 if (args
->use_thin_pack
)
900 argv_array_push(&cmd
.args
, "--fix-thin");
901 if (do_keep
&& (args
->lock_pack
|| unpack_limit
)) {
902 char hostname
[HOST_NAME_MAX
+ 1];
903 if (xgethostname(hostname
, sizeof(hostname
)))
904 xsnprintf(hostname
, sizeof(hostname
), "localhost");
905 argv_array_pushf(&cmd
.args
,
906 "--keep=fetch-pack %"PRIuMAX
" on %s",
907 (uintmax_t)getpid(), hostname
);
909 if (args
->check_self_contained_and_connected
)
910 argv_array_push(&cmd
.args
, "--check-self-contained-and-connected");
911 if (args
->from_promisor
)
912 argv_array_push(&cmd
.args
, "--promisor");
915 cmd_name
= "unpack-objects";
916 argv_array_push(&cmd
.args
, cmd_name
);
917 if (args
->quiet
|| args
->no_progress
)
918 argv_array_push(&cmd
.args
, "-q");
919 args
->check_self_contained_and_connected
= 0;
923 argv_array_pushf(&cmd
.args
, "--pack_header=%"PRIu32
",%"PRIu32
,
924 ntohl(header
.hdr_version
),
925 ntohl(header
.hdr_entries
));
926 if (fetch_fsck_objects
>= 0
928 : transfer_fsck_objects
>= 0
929 ? transfer_fsck_objects
931 if (args
->from_promisor
)
933 * We cannot use --strict in index-pack because it
934 * checks both broken objects and links, but we only
935 * want to check for broken objects.
937 argv_array_push(&cmd
.args
, "--fsck-objects");
939 argv_array_push(&cmd
.args
, "--strict");
944 if (start_command(&cmd
))
945 die(_("fetch-pack: unable to fork off %s"), cmd_name
);
946 if (do_keep
&& pack_lockfile
) {
947 *pack_lockfile
= index_pack_lockfile(cmd
.out
);
952 /* Closed by start_command() */
955 ret
= finish_command(&cmd
);
956 if (!ret
|| (args
->check_self_contained_and_connected
&& ret
== 1))
957 args
->self_contained_and_connected
=
958 args
->check_self_contained_and_connected
&&
961 die(_("%s failed"), cmd_name
);
962 if (use_sideband
&& finish_async(&demux
))
963 die(_("error in sideband demultiplexer"));
967 static int cmp_ref_by_name(const void *a_
, const void *b_
)
969 const struct ref
*a
= *((const struct ref
**)a_
);
970 const struct ref
*b
= *((const struct ref
**)b_
);
971 return strcmp(a
->name
, b
->name
);
974 static struct ref
*do_fetch_pack(struct fetch_pack_args
*args
,
976 const struct ref
*orig_ref
,
977 struct ref
**sought
, int nr_sought
,
978 struct shallow_info
*si
,
979 char **pack_lockfile
)
981 struct ref
*ref
= copy_ref_list(orig_ref
);
982 struct object_id oid
;
983 const char *agent_feature
;
986 sort_ref_list(&ref
, ref_compare_name
);
987 QSORT(sought
, nr_sought
, cmp_ref_by_name
);
989 if ((args
->depth
> 0 || is_repository_shallow()) && !server_supports("shallow"))
990 die(_("Server does not support shallow clients"));
991 if (args
->depth
> 0 || args
->deepen_since
|| args
->deepen_not
)
993 if (server_supports("multi_ack_detailed")) {
994 print_verbose(args
, _("Server supports multi_ack_detailed"));
996 if (server_supports("no-done")) {
997 print_verbose(args
, _("Server supports no-done"));
998 if (args
->stateless_rpc
)
1002 else if (server_supports("multi_ack")) {
1003 print_verbose(args
, _("Server supports multi_ack"));
1006 if (server_supports("side-band-64k")) {
1007 print_verbose(args
, _("Server supports side-band-64k"));
1010 else if (server_supports("side-band")) {
1011 print_verbose(args
, _("Server supports side-band"));
1014 if (server_supports("allow-tip-sha1-in-want")) {
1015 print_verbose(args
, _("Server supports allow-tip-sha1-in-want"));
1016 allow_unadvertised_object_request
|= ALLOW_TIP_SHA1
;
1018 if (server_supports("allow-reachable-sha1-in-want")) {
1019 print_verbose(args
, _("Server supports allow-reachable-sha1-in-want"));
1020 allow_unadvertised_object_request
|= ALLOW_REACHABLE_SHA1
;
1022 if (!server_supports("thin-pack"))
1023 args
->use_thin_pack
= 0;
1024 if (!server_supports("no-progress"))
1025 args
->no_progress
= 0;
1026 if (!server_supports("include-tag"))
1027 args
->include_tag
= 0;
1028 if (server_supports("ofs-delta"))
1029 print_verbose(args
, _("Server supports ofs-delta"));
1031 prefer_ofs_delta
= 0;
1033 if (server_supports("filter")) {
1034 server_supports_filtering
= 1;
1035 print_verbose(args
, _("Server supports filter"));
1036 } else if (args
->filter_options
.choice
) {
1037 warning("filtering not recognized by server, ignoring");
1040 if ((agent_feature
= server_feature_value("agent", &agent_len
))) {
1041 agent_supported
= 1;
1043 print_verbose(args
, _("Server version is %.*s"),
1044 agent_len
, agent_feature
);
1046 if (server_supports("deepen-since"))
1047 deepen_since_ok
= 1;
1048 else if (args
->deepen_since
)
1049 die(_("Server does not support --shallow-since"));
1050 if (server_supports("deepen-not"))
1052 else if (args
->deepen_not
)
1053 die(_("Server does not support --shallow-exclude"));
1054 if (!server_supports("deepen-relative") && args
->deepen_relative
)
1055 die(_("Server does not support --deepen"));
1057 if (everything_local(args
, &ref
, sought
, nr_sought
)) {
1058 packet_flush(fd
[1]);
1061 if (find_common(args
, fd
, &oid
, ref
) < 0)
1062 if (!args
->keep_pack
)
1063 /* When cloning, it is not unusual to have
1066 warning(_("no common commits"));
1068 if (args
->stateless_rpc
)
1069 packet_flush(fd
[1]);
1071 setup_alternate_shallow(&shallow_lock
, &alternate_shallow_file
,
1073 else if (si
->nr_ours
|| si
->nr_theirs
)
1074 alternate_shallow_file
= setup_temporary_shallow(si
->shallow
);
1076 alternate_shallow_file
= NULL
;
1077 if (get_pack(args
, fd
, pack_lockfile
))
1078 die(_("git fetch-pack: fetch failed."));
1084 static void add_shallow_requests(struct strbuf
*req_buf
,
1085 const struct fetch_pack_args
*args
)
1087 if (is_repository_shallow())
1088 write_shallow_commits(req_buf
, 1, NULL
);
1089 if (args
->depth
> 0)
1090 packet_buf_write(req_buf
, "deepen %d", args
->depth
);
1091 if (args
->deepen_since
) {
1092 timestamp_t max_age
= approxidate(args
->deepen_since
);
1093 packet_buf_write(req_buf
, "deepen-since %"PRItime
, max_age
);
1095 if (args
->deepen_not
) {
1097 for (i
= 0; i
< args
->deepen_not
->nr
; i
++) {
1098 struct string_list_item
*s
= args
->deepen_not
->items
+ i
;
1099 packet_buf_write(req_buf
, "deepen-not %s", s
->string
);
1104 static void add_wants(const struct ref
*wants
, struct strbuf
*req_buf
)
1106 int use_ref_in_want
= server_supports_feature("fetch", "ref-in-want", 0);
1108 for ( ; wants
; wants
= wants
->next
) {
1109 const struct object_id
*remote
= &wants
->old_oid
;
1113 * If that object is complete (i.e. it is an ancestor of a
1114 * local ref), we tell them we have it but do not have to
1115 * tell them about its ancestors, which they already know
1118 * We use lookup_object here because we are only
1119 * interested in the case we *know* the object is
1120 * reachable and we have already scanned it.
1122 if (((o
= lookup_object(remote
->hash
)) != NULL
) &&
1123 (o
->flags
& COMPLETE
)) {
1127 if (!use_ref_in_want
|| wants
->exact_oid
)
1128 packet_buf_write(req_buf
, "want %s\n", oid_to_hex(remote
));
1130 packet_buf_write(req_buf
, "want-ref %s\n", wants
->name
);
1134 static void add_common(struct strbuf
*req_buf
, struct oidset
*common
)
1136 struct oidset_iter iter
;
1137 const struct object_id
*oid
;
1138 oidset_iter_init(common
, &iter
);
1140 while ((oid
= oidset_iter_next(&iter
))) {
1141 packet_buf_write(req_buf
, "have %s\n", oid_to_hex(oid
));
1145 static int add_haves(struct strbuf
*req_buf
, int *haves_to_send
, int *in_vain
)
1148 int haves_added
= 0;
1149 const struct object_id
*oid
;
1151 while ((oid
= get_rev())) {
1152 packet_buf_write(req_buf
, "have %s\n", oid_to_hex(oid
));
1153 if (++haves_added
>= *haves_to_send
)
1157 *in_vain
+= haves_added
;
1158 if (!haves_added
|| *in_vain
>= MAX_IN_VAIN
) {
1160 packet_buf_write(req_buf
, "done\n");
1164 /* Increase haves to send on next round */
1165 *haves_to_send
= next_flush(1, *haves_to_send
);
1170 static int send_fetch_request(int fd_out
, const struct fetch_pack_args
*args
,
1171 const struct ref
*wants
, struct oidset
*common
,
1172 int *haves_to_send
, int *in_vain
)
1175 struct strbuf req_buf
= STRBUF_INIT
;
1177 if (server_supports_v2("fetch", 1))
1178 packet_buf_write(&req_buf
, "command=fetch");
1179 if (server_supports_v2("agent", 0))
1180 packet_buf_write(&req_buf
, "agent=%s", git_user_agent_sanitized());
1181 if (args
->server_options
&& args
->server_options
->nr
&&
1182 server_supports_v2("server-option", 1)) {
1184 for (i
= 0; i
< args
->server_options
->nr
; i
++)
1185 packet_write_fmt(fd_out
, "server-option=%s",
1186 args
->server_options
->items
[i
].string
);
1189 packet_buf_delim(&req_buf
);
1190 if (args
->use_thin_pack
)
1191 packet_buf_write(&req_buf
, "thin-pack");
1192 if (args
->no_progress
)
1193 packet_buf_write(&req_buf
, "no-progress");
1194 if (args
->include_tag
)
1195 packet_buf_write(&req_buf
, "include-tag");
1196 if (prefer_ofs_delta
)
1197 packet_buf_write(&req_buf
, "ofs-delta");
1199 /* Add shallow-info and deepen request */
1200 if (server_supports_feature("fetch", "shallow", 0))
1201 add_shallow_requests(&req_buf
, args
);
1202 else if (is_repository_shallow() || args
->deepen
)
1203 die(_("Server does not support shallow requests"));
1206 if (server_supports_feature("fetch", "filter", 0) &&
1207 args
->filter_options
.choice
) {
1208 print_verbose(args
, _("Server supports filter"));
1209 packet_buf_write(&req_buf
, "filter %s",
1210 args
->filter_options
.filter_spec
);
1211 } else if (args
->filter_options
.choice
) {
1212 warning("filtering not recognized by server, ignoring");
1216 add_wants(wants
, &req_buf
);
1218 if (args
->no_dependents
) {
1219 packet_buf_write(&req_buf
, "done");
1222 /* Add all of the common commits we've found in previous rounds */
1223 add_common(&req_buf
, common
);
1225 /* Add initial haves */
1226 ret
= add_haves(&req_buf
, haves_to_send
, in_vain
);
1230 packet_buf_flush(&req_buf
);
1231 write_or_die(fd_out
, req_buf
.buf
, req_buf
.len
);
1233 strbuf_release(&req_buf
);
1238 * Processes a section header in a server's response and checks if it matches
1239 * `section`. If the value of `peek` is 1, the header line will be peeked (and
1240 * not consumed); if 0, the line will be consumed and the function will die if
1241 * the section header doesn't match what was expected.
1243 static int process_section_header(struct packet_reader
*reader
,
1244 const char *section
, int peek
)
1248 if (packet_reader_peek(reader
) != PACKET_READ_NORMAL
)
1249 die("error reading section header '%s'", section
);
1251 ret
= !strcmp(reader
->line
, section
);
1255 die("expected '%s', received '%s'",
1256 section
, reader
->line
);
1257 packet_reader_read(reader
);
1263 static int process_acks(struct packet_reader
*reader
, struct oidset
*common
)
1266 int received_ready
= 0;
1267 int received_ack
= 0;
1269 process_section_header(reader
, "acknowledgments", 0);
1270 while (packet_reader_read(reader
) == PACKET_READ_NORMAL
) {
1273 if (!strcmp(reader
->line
, "NAK"))
1276 if (skip_prefix(reader
->line
, "ACK ", &arg
)) {
1277 struct object_id oid
;
1278 if (!get_oid_hex(arg
, &oid
)) {
1279 struct commit
*commit
;
1280 oidset_insert(common
, &oid
);
1281 commit
= lookup_commit(&oid
);
1282 mark_common(commit
, 0, 1);
1287 if (!strcmp(reader
->line
, "ready")) {
1288 clear_prio_queue(&rev_list
);
1293 die("unexpected acknowledgment line: '%s'", reader
->line
);
1296 if (reader
->status
!= PACKET_READ_FLUSH
&&
1297 reader
->status
!= PACKET_READ_DELIM
)
1298 die("error processing acks: %d", reader
->status
);
1300 /* return 0 if no common, 1 if there are common, or 2 if ready */
1301 return received_ready
? 2 : (received_ack
? 1 : 0);
1304 static void receive_shallow_info(struct fetch_pack_args
*args
,
1305 struct packet_reader
*reader
)
1307 process_section_header(reader
, "shallow-info", 0);
1308 while (packet_reader_read(reader
) == PACKET_READ_NORMAL
) {
1310 struct object_id oid
;
1312 if (skip_prefix(reader
->line
, "shallow ", &arg
)) {
1313 if (get_oid_hex(arg
, &oid
))
1314 die(_("invalid shallow line: %s"), reader
->line
);
1315 register_shallow(&oid
);
1318 if (skip_prefix(reader
->line
, "unshallow ", &arg
)) {
1319 if (get_oid_hex(arg
, &oid
))
1320 die(_("invalid unshallow line: %s"), reader
->line
);
1321 if (!lookup_object(oid
.hash
))
1322 die(_("object not found: %s"), reader
->line
);
1323 /* make sure that it is parsed as shallow */
1324 if (!parse_object(&oid
))
1325 die(_("error in object: %s"), reader
->line
);
1326 if (unregister_shallow(&oid
))
1327 die(_("no shallow found: %s"), reader
->line
);
1330 die(_("expected shallow/unshallow, got %s"), reader
->line
);
1333 if (reader
->status
!= PACKET_READ_FLUSH
&&
1334 reader
->status
!= PACKET_READ_DELIM
)
1335 die("error processing shallow info: %d", reader
->status
);
1337 setup_alternate_shallow(&shallow_lock
, &alternate_shallow_file
, NULL
);
1341 static void receive_wanted_refs(struct packet_reader
*reader
,
1342 struct ref
**sought
, int nr_sought
)
1344 process_section_header(reader
, "wanted-refs", 0);
1345 while (packet_reader_read(reader
) == PACKET_READ_NORMAL
) {
1346 struct object_id oid
;
1350 if (parse_oid_hex(reader
->line
, &oid
, &end
) || *end
++ != ' ')
1351 die("expected wanted-ref, got '%s'", reader
->line
);
1353 for (i
= 0; i
< nr_sought
; i
++) {
1354 if (!strcmp(end
, sought
[i
]->name
)) {
1355 oidcpy(&sought
[i
]->old_oid
, &oid
);
1361 die("unexpected wanted-ref: '%s'", reader
->line
);
1364 if (reader
->status
!= PACKET_READ_DELIM
)
1365 die("error processing wanted refs: %d", reader
->status
);
1369 FETCH_CHECK_LOCAL
= 0,
1376 static struct ref
*do_fetch_pack_v2(struct fetch_pack_args
*args
,
1378 const struct ref
*orig_ref
,
1379 struct ref
**sought
, int nr_sought
,
1380 char **pack_lockfile
)
1382 struct ref
*ref
= copy_ref_list(orig_ref
);
1383 enum fetch_state state
= FETCH_CHECK_LOCAL
;
1384 struct oidset common
= OIDSET_INIT
;
1385 struct packet_reader reader
;
1387 int haves_to_send
= INITIAL_FLUSH
;
1388 packet_reader_init(&reader
, fd
[0], NULL
, 0,
1389 PACKET_READ_CHOMP_NEWLINE
);
1391 while (state
!= FETCH_DONE
) {
1393 case FETCH_CHECK_LOCAL
:
1394 sort_ref_list(&ref
, ref_compare_name
);
1395 QSORT(sought
, nr_sought
, cmp_ref_by_name
);
1397 /* v2 supports these by default */
1398 allow_unadvertised_object_request
|= ALLOW_REACHABLE_SHA1
;
1400 if (args
->depth
> 0 || args
->deepen_since
|| args
->deepen_not
)
1404 for_each_ref(clear_marks
, NULL
);
1407 for_each_ref(rev_list_insert_ref_oid
, NULL
);
1408 for_each_cached_alternate(insert_one_alternate_object
);
1410 /* Filter 'ref' by 'sought' and those that aren't local */
1411 if (everything_local(args
, &ref
, sought
, nr_sought
))
1414 state
= FETCH_SEND_REQUEST
;
1416 case FETCH_SEND_REQUEST
:
1417 if (send_fetch_request(fd
[1], args
, ref
, &common
,
1418 &haves_to_send
, &in_vain
))
1419 state
= FETCH_GET_PACK
;
1421 state
= FETCH_PROCESS_ACKS
;
1423 case FETCH_PROCESS_ACKS
:
1424 /* Process ACKs/NAKs */
1425 switch (process_acks(&reader
, &common
)) {
1427 state
= FETCH_GET_PACK
;
1433 state
= FETCH_SEND_REQUEST
;
1437 case FETCH_GET_PACK
:
1438 /* Check for shallow-info section */
1439 if (process_section_header(&reader
, "shallow-info", 1))
1440 receive_shallow_info(args
, &reader
);
1442 if (process_section_header(&reader
, "wanted-refs", 1))
1443 receive_wanted_refs(&reader
, sought
, nr_sought
);
1446 process_section_header(&reader
, "packfile", 0);
1447 if (get_pack(args
, fd
, pack_lockfile
))
1448 die(_("git fetch-pack: fetch failed."));
1457 oidset_clear(&common
);
1461 static void fetch_pack_config(void)
1463 git_config_get_int("fetch.unpacklimit", &fetch_unpack_limit
);
1464 git_config_get_int("transfer.unpacklimit", &transfer_unpack_limit
);
1465 git_config_get_bool("repack.usedeltabaseoffset", &prefer_ofs_delta
);
1466 git_config_get_bool("fetch.fsckobjects", &fetch_fsck_objects
);
1467 git_config_get_bool("transfer.fsckobjects", &transfer_fsck_objects
);
1469 git_config(git_default_config
, NULL
);
1472 static void fetch_pack_setup(void)
1474 static int did_setup
;
1477 fetch_pack_config();
1478 if (0 <= transfer_unpack_limit
)
1479 unpack_limit
= transfer_unpack_limit
;
1480 else if (0 <= fetch_unpack_limit
)
1481 unpack_limit
= fetch_unpack_limit
;
1485 static int remove_duplicates_in_refs(struct ref
**ref
, int nr
)
1487 struct string_list names
= STRING_LIST_INIT_NODUP
;
1490 for (src
= dst
= 0; src
< nr
; src
++) {
1491 struct string_list_item
*item
;
1492 item
= string_list_insert(&names
, ref
[src
]->name
);
1494 continue; /* already have it */
1495 item
->util
= ref
[src
];
1497 ref
[dst
] = ref
[src
];
1500 for (src
= dst
; src
< nr
; src
++)
1502 string_list_clear(&names
, 0);
1506 static void update_shallow(struct fetch_pack_args
*args
,
1507 struct ref
**sought
, int nr_sought
,
1508 struct shallow_info
*si
)
1510 struct oid_array ref
= OID_ARRAY_INIT
;
1514 if (args
->deepen
&& alternate_shallow_file
) {
1515 if (*alternate_shallow_file
== '\0') { /* --unshallow */
1516 unlink_or_warn(git_path_shallow());
1517 rollback_lock_file(&shallow_lock
);
1519 commit_lock_file(&shallow_lock
);
1523 if (!si
->shallow
|| !si
->shallow
->nr
)
1526 if (args
->cloning
) {
1528 * remote is shallow, but this is a clone, there are
1529 * no objects in repo to worry about. Accept any
1530 * shallow points that exist in the pack (iow in repo
1531 * after get_pack() and reprepare_packed_git())
1533 struct oid_array extra
= OID_ARRAY_INIT
;
1534 struct object_id
*oid
= si
->shallow
->oid
;
1535 for (i
= 0; i
< si
->shallow
->nr
; i
++)
1536 if (has_object_file(&oid
[i
]))
1537 oid_array_append(&extra
, &oid
[i
]);
1539 setup_alternate_shallow(&shallow_lock
,
1540 &alternate_shallow_file
,
1542 commit_lock_file(&shallow_lock
);
1544 oid_array_clear(&extra
);
1548 if (!si
->nr_ours
&& !si
->nr_theirs
)
1551 remove_nonexistent_theirs_shallow(si
);
1552 if (!si
->nr_ours
&& !si
->nr_theirs
)
1554 for (i
= 0; i
< nr_sought
; i
++)
1555 oid_array_append(&ref
, &sought
[i
]->old_oid
);
1558 if (args
->update_shallow
) {
1560 * remote is also shallow, .git/shallow may be updated
1561 * so all refs can be accepted. Make sure we only add
1562 * shallow roots that are actually reachable from new
1565 struct oid_array extra
= OID_ARRAY_INIT
;
1566 struct object_id
*oid
= si
->shallow
->oid
;
1567 assign_shallow_commits_to_refs(si
, NULL
, NULL
);
1568 if (!si
->nr_ours
&& !si
->nr_theirs
) {
1569 oid_array_clear(&ref
);
1572 for (i
= 0; i
< si
->nr_ours
; i
++)
1573 oid_array_append(&extra
, &oid
[si
->ours
[i
]]);
1574 for (i
= 0; i
< si
->nr_theirs
; i
++)
1575 oid_array_append(&extra
, &oid
[si
->theirs
[i
]]);
1576 setup_alternate_shallow(&shallow_lock
,
1577 &alternate_shallow_file
,
1579 commit_lock_file(&shallow_lock
);
1580 oid_array_clear(&extra
);
1581 oid_array_clear(&ref
);
1586 * remote is also shallow, check what ref is safe to update
1587 * without updating .git/shallow
1589 status
= xcalloc(nr_sought
, sizeof(*status
));
1590 assign_shallow_commits_to_refs(si
, NULL
, status
);
1591 if (si
->nr_ours
|| si
->nr_theirs
) {
1592 for (i
= 0; i
< nr_sought
; i
++)
1594 sought
[i
]->status
= REF_STATUS_REJECT_SHALLOW
;
1597 oid_array_clear(&ref
);
1600 static int iterate_ref_map(void *cb_data
, struct object_id
*oid
)
1602 struct ref
**rm
= cb_data
;
1603 struct ref
*ref
= *rm
;
1606 return -1; /* end of the list */
1608 oidcpy(oid
, &ref
->old_oid
);
1612 struct ref
*fetch_pack(struct fetch_pack_args
*args
,
1613 int fd
[], struct child_process
*conn
,
1614 const struct ref
*ref
,
1616 struct ref
**sought
, int nr_sought
,
1617 struct oid_array
*shallow
,
1618 char **pack_lockfile
,
1619 enum protocol_version version
)
1621 struct ref
*ref_cpy
;
1622 struct shallow_info si
;
1626 nr_sought
= remove_duplicates_in_refs(sought
, nr_sought
);
1629 packet_flush(fd
[1]);
1630 die(_("no matching remote head"));
1632 prepare_shallow_info(&si
, shallow
);
1633 if (version
== protocol_v2
)
1634 ref_cpy
= do_fetch_pack_v2(args
, fd
, ref
, sought
, nr_sought
,
1637 ref_cpy
= do_fetch_pack(args
, fd
, ref
, sought
, nr_sought
,
1638 &si
, pack_lockfile
);
1639 reprepare_packed_git(the_repository
);
1641 if (!args
->cloning
&& args
->deepen
) {
1642 struct check_connected_options opt
= CHECK_CONNECTED_INIT
;
1643 struct ref
*iterator
= ref_cpy
;
1644 opt
.shallow_file
= alternate_shallow_file
;
1646 opt
.is_deepening_fetch
= 1;
1647 if (check_connected(iterate_ref_map
, &iterator
, &opt
)) {
1648 error(_("remote did not send all necessary objects"));
1651 rollback_lock_file(&shallow_lock
);
1654 args
->connectivity_checked
= 1;
1657 update_shallow(args
, sought
, nr_sought
, &si
);
1659 clear_shallow_info(&si
);
1663 int report_unmatched_refs(struct ref
**sought
, int nr_sought
)
1667 for (i
= 0; i
< nr_sought
; i
++) {
1670 switch (sought
[i
]->match_status
) {
1673 case REF_NOT_MATCHED
:
1674 error(_("no such remote ref %s"), sought
[i
]->name
);
1676 case REF_UNADVERTISED_NOT_ALLOWED
:
1677 error(_("Server does not allow request for unadvertised object %s"),