+15
-44
index 884b6d5ad3..c2b88c47f3 100644
--- a/builtin/cat-file.c
+++ b/builtin/cat-file.c
#include "alias.h"
#include "remote.h"
#include "transport.h"
+#include "fetch-object-info.h"
/*
* Maximum length for a remote URL. While no universal standard exists,
static int get_remote_info(int argc,
const char **argv,
- struct object_info **remote_object_info,
- struct oid_array *object_info_oids,
- struct string_list *object_info_options)
+ struct fetch_object_info_results *results,
+ struct oid_array *object_info_oids)
{
int retval = 0;
struct remote *remote = NULL;
goto cleanup;
}
- CALLOC_ARRAY(*remote_object_info, object_info_oids->nr);
gtransport->smart_options->object_info_oids = object_info_oids;
- gtransport->smart_options->object_info_options = object_info_options;
- gtransport->smart_options->object_info_data = *remote_object_info;
+ gtransport->smart_options->object_info_results = results;
retval = transport_fetch_object_info(gtransport);
cleanup:
transport_disconnect(gtransport);
load_mailmap();
}
-struct protocol_placeholder_entry {
- const char *option;
- const char *atom;
-};
-
-static const struct protocol_placeholder_entry remote_atom_map[] = {
- {"size", "objectsize"},
- {"type", "objecttype"},
- /*
- * Add new protocol options here. Even if the server doesn't support
- * them the allow_list will drop them if the server doesn't advertise
- * them.
- */
-};
-
static void parse_cmd_remote_object_info(struct batch_options *opt,
const char *line, struct strbuf *output,
struct expand_data *data)
int count;
const char **argv;
char *line_to_split;
- struct object_info *remote_object_info = NULL;
+ struct fetch_object_info_results results = FETCH_OBJECT_INFO_RESULTS_INIT;
struct oid_array object_info_oids = OID_ARRAY_INIT;
- struct string_list object_info_options = STRING_LIST_INIT_NODUP;
const char *saved_format = opt->format;
if (strlen(line) >= MAX_REMOTE_OBJ_INFO_LINE)
MAX_ALLOWED_OBJ_LIMIT);
if (data->info.sizep)
- string_list_append(&object_info_options, "size");
+ results.wants_size = 1;
if (data->info.typep)
- string_list_append(&object_info_options, "type");
+ results.wants_type = 1;
- if (get_remote_info(count, argv, &remote_object_info,
- &object_info_oids, &object_info_options))
+ if (get_remote_info(count, argv, &results, &object_info_oids))
die(_("failed to get object info from the remote: %s"), argv[0]);
string_list_clear(&data->remote_allowed_atoms, 0);
string_list_append(&data->remote_allowed_atoms, "objectname");
- for (size_t i = 0; i < ARRAY_SIZE(remote_atom_map); i++)
- if (unsorted_string_list_has_string(&object_info_options, remote_atom_map[i].option))
- string_list_append(&data->remote_allowed_atoms,
- remote_atom_map[i].atom);
+ if (results.sizes)
+ string_list_append(&data->remote_allowed_atoms, "objectsize");
data->skip_object_info = 1;
- for (size_t i = 0; i < object_info_oids.nr; i++) {
+ for (size_t i = 0; i < results.nr; i++) {
data->oid = object_info_oids.oid[i];
- if (remote_object_info[i].unrecognized) {
+ if (results.unrecognized[i]) {
report_object_status(opt, oid_to_hex(&data->oid),
&data->oid, "missing");
continue;
* When reaching here, it means remote-object-info can retrieve
* information from server without downloading them.
*/
- if (remote_object_info[i].sizep) {
- data->size = *remote_object_info[i].sizep;
- }
-
- if (remote_object_info[i].typep) {
- data->type = *remote_object_info[i].typep;
- }
+ if (results.sizes)
+ data->size = results.sizes[i];
opt->batch_mode = BATCH_MODE_INFO;
data->is_remote = 1;
data->skip_object_info = 0;
opt->format = saved_format;
- for (size_t i = 0; i < object_info_oids.nr; i++)
- free_object_info_contents(&remote_object_info[i]);
- string_list_clear(&object_info_options, 0);
+ free_fetch_object_info_results(&results);
free(line_to_split);
free(argv);
- free(remote_object_info);
oid_array_clear(&object_info_oids);
}
+48
-42
index a8db196928..ed02c42f6b 100644
--- a/fetch-object-info.c
+++ b/fetch-object-info.c
static void send_object_info_request(const int fd_out,
const struct string_list *server_options,
struct oid_array *oids,
- struct string_list *object_info_options)
+ unsigned ask_size,
+ unsigned ask_type)
{
struct strbuf req_buf = STRBUF_INIT;
write_command_and_capabilities(&req_buf, "object-info", server_options);
- if (unsorted_string_list_has_string(object_info_options, "size"))
+ if (ask_size)
packet_buf_write(&req_buf, "size");
- else if (object_info_options->nr)
- BUG("only size should be in object_info_options");
+
+ if (ask_type)
+ packet_buf_write(&req_buf, "type");
if (oids)
for (size_t i = 0; i < oids->nr; i++)
int fetch_object_info(const enum protocol_version version,
const struct string_list *server_options,
struct oid_array *oids,
- struct string_list *object_info_options,
struct packet_reader *reader,
- struct object_info *object_info_data,
- const int stateless_rpc, const int fd_out)
+ struct fetch_object_info_results *results,
+ const int stateless_rpc,
+ const int fd_out)
{
- size_t i;
+ unsigned ask_size = 0;
+ unsigned ask_type = 0;
int size_index = -1;
+ size_t wanted;
+ size_t i;
+
+ results->nr = oids->nr;
+ CALLOC_ARRAY(results->unrecognized, results->nr);
switch (version) {
case protocol_v2:
if (!server_supports_v2("object-info"))
die(_("object-info capability is not enabled on the server"));
- /*
- * When removing an element from the list it gets swapped by the
- * last element, iterate backwards to prevent elements skipping
- * evaluation.
- *
- * object_info_options->nr can be safely casted without overflow
- * because the number of options is a small known number (the
- * supported placeholders which currently are size and type).
- */
- for (int i = (int)object_info_options->nr - 1; i >= 0; i--)
- if (!server_supports_feature("object-info",
- object_info_options->items[i].string, 0))
- unsorted_string_list_delete_item(object_info_options, i, 0);
+
+ if (results->wants_size &&
+ server_supports_feature("object-info", "size", 0))
+ ask_size = 1;
+
+ if (results->wants_type &&
+ server_supports_feature("object-info", "type", 0))
+ ask_type = 1;
/*
* Even if no options are left, we still send the oid so we get
* at least an existence check.
*/
- send_object_info_request(fd_out, server_options, oids,
- object_info_options);
+ send_object_info_request(fd_out, server_options, oids, ask_size,
+ ask_type);
break;
case protocol_v1:
case protocol_v0:
case protocol_unknown_version:
BUG("unknown protocol version");
}
+ wanted = ask_size + ask_type;
- for (i = 0; i < object_info_options->nr; i++) {
+ for (i = 0; i < wanted; i++) {
if (packet_reader_read(reader) != PACKET_READ_NORMAL) {
check_stateless_delimiter(stateless_rpc, reader,
"stateless delimiter expected");
return -1;
}
- if (!unsorted_string_list_has_string(object_info_options, reader->line))
- return -1;
-
if (!strcmp(reader->line, "size")) {
- /*
- * i is the number of supported options which currently
- * is only size. No risk of overflow.
- */
+ if (!ask_size)
+ die(_("object-info: unrequested 'size' attribute"));
+ if (results->sizes)
+ die(_("object-info: duplicate 'size' attribute"));
size_index = (int)i;
- for (size_t j = 0; j < oids->nr; j++)
- object_info_data[j].sizep =
- xcalloc(1, sizeof(*object_info_data[j].sizep));
+ CALLOC_ARRAY(results->sizes, results->nr);
} else {
BUG("only size is supported");
}
*/
if (object_info_values.nr >= 2 &&
!strcmp(object_info_values.items[1].string, "")) {
- object_info_data[i].unrecognized = 1;
+ results->unrecognized[i] = 1;
string_list_clear(&object_info_values, 0);
continue;
}
/*
- * Because we filter the options to be only the supported by
- * the server we expect the server to answer with the same
- * number of attributes requested.
+ * Because we only ask for attributes the server said it
+ * supports, we expect the answer to have one value per
+ * requested attribute, plus the OID.
*/
- if (object_info_options->nr + 1 != object_info_values.nr)
+ if (wanted + 1 != object_info_values.nr)
die("object-info: unexpected number of attributes: %s",
reader->line);
- if (size_index >= 0 &&
+ if (results->sizes &&
parse_object_size(object_info_values.items[size_index + 1].string,
- object_info_data[i].sizep))
- die("object-info: ref %s has invalid size %s",
+ &results->sizes[i]))
+ die("object-info: object %s has invalid size %s",
object_info_values.items[0].string,
object_info_values.items[size_index + 1].string);
return 0;
}
+
+void free_fetch_object_info_results(struct fetch_object_info_results *results)
+{
+ free(results->sizes);
+ free(results->unrecognized);
+ memset(results, 0, sizeof(*results));
+}
+21
-7
index 316bf917ce..c472c14d7e 100644
--- a/fetch-object-info.h
+++ b/fetch-object-info.h
#include "pkt-line.h"
#include "protocol.h"
-struct object_info;
+struct fetch_object_info_results {
+ size_t *sizes;
+ uint8_t *unrecognized;
+ size_t nr;
+ unsigned wants_size:1;
+ unsigned wants_type:1;
+};
+
+#define FETCH_OBJECT_INFO_RESULTS_INIT { 0 }
+
struct oid_array;
/*
- * Sends git-cat-file object-info command into the request buf and read the
+ * Sends git-cat-file object-info command into the request buf and reads the
* results from packets.
*
- * Modifies object_info_options, on return it contains only the supported
- * options by the server.
+ * The caller sets the wants_* flags in "results" to indicate which attributes
+ * it is interested in. On return, "results" holds one array per attribute that
+ * the server both advertised and answered with. An array left NULL means the
+ * attribute is not available.
+ * Release them with free_fetch_object_info_results().
*/
int fetch_object_info(enum protocol_version version,
const struct string_list *server_options,
struct oid_array *oids,
- struct string_list *object_info_options,
struct packet_reader *reader,
- struct object_info *object_info_data,
- int stateless_rpc, int fd_out);
+ struct fetch_object_info_results *results,
+ int stateless_rpc,
+ int fd_out);
+
+void free_fetch_object_info_results(struct fetch_object_info_results *results);
#endif /* FETCH_OBJECT_INFO_H */
-10
index c5809db598..7ff2b730ac 100644
--- a/object-file.c
+++ b/object-file.c
return 0;
}
-
-void free_object_info_contents(struct object_info *object_info)
-{
- if (!object_info)
- return;
- free(object_info->typep);
- free(object_info->sizep);
- free(object_info->disk_sizep);
- free(object_info->delta_base_oid);
-}
-3
index 3f7c483656..b7bc0ee844 100644
--- a/odb.h
+++ b/odb.h
const char *relative_base,
struct strvec *out);
-/* Free pointers inside of object_info, but not object_info itself */
-void free_object_info_contents(struct object_info *object_info);
-
#endif /* ODB_H */
+1
-2
index c6df56129d..35d3e98d97 100644
--- a/transport.c
+++ b/transport.c
ret = fetch_object_info(data->version,
transport->server_options,
transport->smart_options->object_info_oids,
- transport->smart_options->object_info_options,
&reader,
- data->options.object_info_data,
+ data->options.object_info_results,
transport->stateless_rpc, data->fd[1]);
close(data->fd[0]);
+3
-2
index a7869d18e0..6948b65db9 100644
--- a/transport.h
+++ b/transport.h
#include "string-list.h"
#include "connect.h"
+struct fetch_object_info_results;
+
struct git_transport_options {
unsigned thin : 1;
unsigned keep : 1;
struct oidset *acked_commits;
struct oid_array *object_info_oids;
- struct object_info *object_info_data;
- struct string_list *object_info_options;
+ struct fetch_object_info_results *object_info_results;
};
enum transport_family {