mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-05 17:01:20 +00:00

Fixed an issue with the `strtokz implementation and added support for comments and relative paths in the alternates file.
636 lines
16 KiB
C
636 lines
16 KiB
C
/*
|
|
* This file is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License, version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* In addition to the permissions in the GNU General Public License,
|
|
* the authors give you unlimited permission to link the compiled
|
|
* version of this file into combinations with other programs,
|
|
* and to distribute those combinations without any restriction
|
|
* coming from the use of this file. (The General Public License
|
|
* restrictions do apply in other respects; for example, they cover
|
|
* modification of the file, and distribution when not linked into
|
|
* a combined executable.)
|
|
*
|
|
* This file is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "git2/zlib.h"
|
|
#include "git2/object.h"
|
|
#include "fileops.h"
|
|
#include "hash.h"
|
|
#include "odb.h"
|
|
#include "delta-apply.h"
|
|
|
|
#include "git2/odb_backend.h"
|
|
|
|
#define GIT_ALTERNATES_FILE "info/alternates"
|
|
|
|
/* TODO: is this correct? */
|
|
#define GIT_LOOSE_PRIORITY 2
|
|
#define GIT_PACKED_PRIORITY 1
|
|
|
|
typedef struct
|
|
{
|
|
git_odb_backend *backend;
|
|
int priority;
|
|
int is_alternate;
|
|
} backend_internal;
|
|
|
|
static int format_object_header(char *hdr, size_t n, git_rawobj *obj)
|
|
{
|
|
const char *type_str = git_object_type2string(obj->type);
|
|
int len = snprintf(hdr, n, "%s %"PRIuZ, type_str, obj->len);
|
|
|
|
assert(len > 0); /* otherwise snprintf() is broken */
|
|
assert(((size_t) len) < n); /* otherwise the caller is broken! */
|
|
|
|
if (len < 0 || ((size_t) len) >= n)
|
|
return git__throw(GIT_ERROR, "Cannot format object header. Length is out of bounds");
|
|
return len+1;
|
|
}
|
|
|
|
int git_odb__hash_obj(git_oid *id, char *hdr, size_t n, int *len, git_rawobj *obj)
|
|
{
|
|
git_buf_vec vec[2];
|
|
int hdrlen;
|
|
|
|
assert(id && hdr && len && obj);
|
|
|
|
if (!git_object_typeisloose(obj->type))
|
|
return git__throw(GIT_ERROR, "Failed to hash object. Wrong object type");
|
|
|
|
if (!obj->data && obj->len != 0)
|
|
return git__throw(GIT_ERROR, "Failed to hash object. No data given");
|
|
|
|
if ((hdrlen = format_object_header(hdr, n, obj)) < 0)
|
|
return git__rethrow(hdrlen, "Failed to hash object");
|
|
|
|
*len = hdrlen;
|
|
|
|
vec[0].data = hdr;
|
|
vec[0].len = hdrlen;
|
|
vec[1].data = obj->data;
|
|
vec[1].len = obj->len;
|
|
|
|
git_hash_vec(id, vec, 2);
|
|
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
|
|
static git_odb_object *new_odb_object(const git_oid *oid, git_rawobj *source)
|
|
{
|
|
git_odb_object *object = git__malloc(sizeof(git_odb_object));
|
|
memset(object, 0x0, sizeof(git_odb_object));
|
|
|
|
git_oid_cpy(&object->cached.oid, oid);
|
|
memcpy(&object->raw, source, sizeof(git_rawobj));
|
|
|
|
return object;
|
|
}
|
|
|
|
static void free_odb_object(void *o)
|
|
{
|
|
git_odb_object *object = (git_odb_object *)o;
|
|
|
|
if (object != NULL) {
|
|
free(object->raw.data);
|
|
free(object);
|
|
}
|
|
}
|
|
|
|
const git_oid *git_odb_object_id(git_odb_object *object)
|
|
{
|
|
return &object->cached.oid;
|
|
}
|
|
|
|
const void *git_odb_object_data(git_odb_object *object)
|
|
{
|
|
return object->raw.data;
|
|
}
|
|
|
|
size_t git_odb_object_size(git_odb_object *object)
|
|
{
|
|
return object->raw.len;
|
|
}
|
|
|
|
git_otype git_odb_object_type(git_odb_object *object)
|
|
{
|
|
return object->raw.type;
|
|
}
|
|
|
|
void git_odb_object_close(git_odb_object *object)
|
|
{
|
|
git_cached_obj_decref((git_cached_obj *)object, &free_odb_object);
|
|
}
|
|
|
|
int git_odb_hash(git_oid *id, const void *data, size_t len, git_otype type)
|
|
{
|
|
char hdr[64];
|
|
int hdrlen;
|
|
git_rawobj raw;
|
|
|
|
assert(id);
|
|
|
|
raw.data = (void *)data;
|
|
raw.len = len;
|
|
raw.type = type;
|
|
|
|
return git_odb__hash_obj(id, hdr, sizeof(hdr), &hdrlen, &raw);
|
|
}
|
|
|
|
/**
|
|
* FAKE WSTREAM
|
|
*/
|
|
|
|
typedef struct {
|
|
git_odb_stream stream;
|
|
char *buffer;
|
|
size_t size, written;
|
|
git_otype type;
|
|
} fake_wstream;
|
|
|
|
static int fake_wstream__fwrite(git_oid *oid, git_odb_stream *_stream)
|
|
{
|
|
fake_wstream *stream = (fake_wstream *)_stream;
|
|
return _stream->backend->write(oid, _stream->backend, stream->buffer, stream->size, stream->type);
|
|
}
|
|
|
|
static int fake_wstream__write(git_odb_stream *_stream, const char *data, size_t len)
|
|
{
|
|
fake_wstream *stream = (fake_wstream *)_stream;
|
|
|
|
if (stream->written + len > stream->size)
|
|
return GIT_ENOMEM;
|
|
|
|
memcpy(stream->buffer + stream->written, data, len);
|
|
stream->written += len;
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
static void fake_wstream__free(git_odb_stream *_stream)
|
|
{
|
|
fake_wstream *stream = (fake_wstream *)_stream;
|
|
|
|
free(stream->buffer);
|
|
free(stream);
|
|
}
|
|
|
|
static int init_fake_wstream(git_odb_stream **stream_p, git_odb_backend *backend, size_t size, git_otype type)
|
|
{
|
|
fake_wstream *stream;
|
|
|
|
stream = git__calloc(1, sizeof(fake_wstream));
|
|
if (stream == NULL)
|
|
return GIT_ENOMEM;
|
|
|
|
stream->size = size;
|
|
stream->type = type;
|
|
stream->buffer = git__malloc(size);
|
|
if (stream->buffer == NULL) {
|
|
free(stream);
|
|
return GIT_ENOMEM;
|
|
}
|
|
|
|
stream->stream.backend = backend;
|
|
stream->stream.read = NULL; /* read only */
|
|
stream->stream.write = &fake_wstream__write;
|
|
stream->stream.finalize_write = &fake_wstream__fwrite;
|
|
stream->stream.free = &fake_wstream__free;
|
|
stream->stream.mode = GIT_STREAM_WRONLY;
|
|
|
|
*stream_p = (git_odb_stream *)stream;
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
/***********************************************************
|
|
*
|
|
* OBJECT DATABASE PUBLIC API
|
|
*
|
|
* Public calls for the ODB functionality
|
|
*
|
|
***********************************************************/
|
|
|
|
static int backend_sort_cmp(const void *a, const void *b)
|
|
{
|
|
const backend_internal *backend_a = *(const backend_internal **)(a);
|
|
const backend_internal *backend_b = *(const backend_internal **)(b);
|
|
|
|
if (backend_a->is_alternate == backend_b->is_alternate)
|
|
return (backend_b->priority - backend_a->priority);
|
|
|
|
return backend_a->is_alternate ? 1 : -1;
|
|
}
|
|
|
|
int git_odb_new(git_odb **out)
|
|
{
|
|
int error;
|
|
|
|
git_odb *db = git__calloc(1, sizeof(*db));
|
|
if (!db)
|
|
return GIT_ENOMEM;
|
|
|
|
error = git_cache_init(&db->cache, GIT_DEFAULT_CACHE_SIZE, &free_odb_object);
|
|
if (error < GIT_SUCCESS) {
|
|
free(db);
|
|
return git__rethrow(error, "Failed to create object database");
|
|
}
|
|
|
|
if ((error = git_vector_init(&db->backends, 4, backend_sort_cmp)) < GIT_SUCCESS) {
|
|
free(db);
|
|
return git__rethrow(error, "Failed to create object database");
|
|
}
|
|
|
|
*out = db;
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
static int add_backend_internal(git_odb *odb, git_odb_backend *backend, int priority, int is_alternate)
|
|
{
|
|
backend_internal *internal;
|
|
|
|
assert(odb && backend);
|
|
|
|
if (backend->odb != NULL && backend->odb != odb)
|
|
return git__throw(GIT_EBUSY, "The backend is already owned by another ODB");
|
|
|
|
internal = git__malloc(sizeof(backend_internal));
|
|
if (internal == NULL)
|
|
return GIT_ENOMEM;
|
|
|
|
internal->backend = backend;
|
|
internal->priority = priority;
|
|
internal->is_alternate = is_alternate;
|
|
|
|
if (git_vector_insert(&odb->backends, internal) < 0) {
|
|
free(internal);
|
|
return GIT_ENOMEM;
|
|
}
|
|
|
|
git_vector_sort(&odb->backends);
|
|
internal->backend->odb = odb;
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
int git_odb_add_backend(git_odb *odb, git_odb_backend *backend, int priority)
|
|
{
|
|
return add_backend_internal(odb, backend, priority, 0);
|
|
}
|
|
|
|
int git_odb_add_alternate(git_odb *odb, git_odb_backend *backend, int priority)
|
|
{
|
|
return add_backend_internal(odb, backend, priority, 1);
|
|
}
|
|
|
|
static int add_default_backends(git_odb *db, const char *objects_dir, int as_alternates)
|
|
{
|
|
git_odb_backend *loose, *packed;
|
|
int error;
|
|
|
|
/* add the loose object backend */
|
|
error = git_odb_backend_loose(&loose, objects_dir);
|
|
if (error < GIT_SUCCESS)
|
|
return error;
|
|
|
|
error = add_backend_internal(db, loose, GIT_LOOSE_PRIORITY, as_alternates);
|
|
if (error < GIT_SUCCESS)
|
|
return git__rethrow(error, "Failed to add backend");
|
|
|
|
/* add the packed file backend */
|
|
error = git_odb_backend_pack(&packed, objects_dir);
|
|
if (error < GIT_SUCCESS)
|
|
return error;
|
|
|
|
error = add_backend_internal(db, packed, GIT_PACKED_PRIORITY, as_alternates);
|
|
if (error < GIT_SUCCESS)
|
|
return git__rethrow(error, "Failed to add backend");
|
|
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
static int load_alternates(git_odb *odb, const char *objects_dir)
|
|
{
|
|
char alternates_path[GIT_PATH_MAX];
|
|
char *buffer, *alternate;
|
|
|
|
gitfo_buf alternates_buf = GITFO_BUF_INIT;
|
|
int error;
|
|
|
|
git__joinpath(alternates_path, objects_dir, GIT_ALTERNATES_FILE);
|
|
|
|
if (gitfo_exists(alternates_path) < GIT_SUCCESS)
|
|
return GIT_SUCCESS;
|
|
|
|
if (gitfo_read_file(&alternates_buf, alternates_path) < GIT_SUCCESS)
|
|
return git__throw(GIT_EOSERR, "Failed to add backend. Can't read alternates");
|
|
|
|
buffer = (char *)alternates_buf.data;
|
|
error = GIT_SUCCESS;
|
|
|
|
/* add each alternate as a new backend; one alternate per line */
|
|
while ((alternate = git__strtok(&buffer, "\r\n")) != NULL) {
|
|
char full_path[GIT_PATH_MAX];
|
|
|
|
if (*alternate == '\0' || *alternate == '#')
|
|
continue;
|
|
|
|
/* relative path: build based on the current `objects` folder */
|
|
if (*alternate == '.') {
|
|
git__joinpath(full_path, objects_dir, alternate);
|
|
alternate = full_path;
|
|
}
|
|
|
|
if ((error = add_default_backends(odb, alternate, 1)) < GIT_SUCCESS)
|
|
break;
|
|
}
|
|
|
|
gitfo_free_buf(&alternates_buf);
|
|
if (error < GIT_SUCCESS)
|
|
return git__rethrow(error, "Failed to load alternates");
|
|
return error;
|
|
}
|
|
|
|
int git_odb_open(git_odb **out, const char *objects_dir)
|
|
{
|
|
git_odb *db;
|
|
int error;
|
|
|
|
assert(out && objects_dir);
|
|
|
|
*out = NULL;
|
|
|
|
if ((error = git_odb_new(&db)) < 0)
|
|
return git__rethrow(error, "Failed to open ODB");
|
|
|
|
if ((error = add_default_backends(db, objects_dir, 0)) < GIT_SUCCESS)
|
|
goto cleanup;
|
|
|
|
if ((error = load_alternates(db, objects_dir)) < GIT_SUCCESS)
|
|
goto cleanup;
|
|
|
|
*out = db;
|
|
return GIT_SUCCESS;
|
|
|
|
cleanup:
|
|
git_odb_close(db);
|
|
return error; /* error already set - pass through */
|
|
}
|
|
|
|
void git_odb_close(git_odb *db)
|
|
{
|
|
unsigned int i;
|
|
|
|
if (db == NULL)
|
|
return;
|
|
|
|
for (i = 0; i < db->backends.length; ++i) {
|
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
|
git_odb_backend *backend = internal->backend;
|
|
|
|
if (backend->free) backend->free(backend);
|
|
else free(backend);
|
|
|
|
free(internal);
|
|
}
|
|
|
|
git_vector_free(&db->backends);
|
|
git_cache_free(&db->cache);
|
|
free(db);
|
|
}
|
|
|
|
int git_odb_exists(git_odb *db, const git_oid *id)
|
|
{
|
|
git_odb_object *object;
|
|
unsigned int i;
|
|
int found = 0;
|
|
|
|
assert(db && id);
|
|
|
|
if ((object = git_cache_get(&db->cache, id)) != NULL) {
|
|
git_odb_object_close(object);
|
|
return 1;
|
|
}
|
|
|
|
for (i = 0; i < db->backends.length && !found; ++i) {
|
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
|
git_odb_backend *b = internal->backend;
|
|
|
|
if (b->exists != NULL)
|
|
found = b->exists(b, id);
|
|
}
|
|
|
|
return found;
|
|
}
|
|
|
|
int git_odb_read_header(size_t *len_p, git_otype *type_p, git_odb *db, const git_oid *id)
|
|
{
|
|
unsigned int i;
|
|
int error = GIT_ENOTFOUND;
|
|
git_odb_object *object;
|
|
|
|
assert(db && id);
|
|
|
|
if ((object = git_cache_get(&db->cache, id)) != NULL) {
|
|
*len_p = object->raw.len;
|
|
*type_p = object->raw.type;
|
|
git_odb_object_close(object);
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
for (i = 0; i < db->backends.length && error < 0; ++i) {
|
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
|
git_odb_backend *b = internal->backend;
|
|
|
|
if (b->read_header != NULL)
|
|
error = b->read_header(len_p, type_p, b, id);
|
|
}
|
|
|
|
/*
|
|
* no backend could read only the header.
|
|
* try reading the whole object and freeing the contents
|
|
*/
|
|
if (error < 0) {
|
|
if ((error = git_odb_read(&object, db, id)) < GIT_SUCCESS)
|
|
return error; /* error already set - pass through */
|
|
|
|
*len_p = object->raw.len;
|
|
*type_p = object->raw.type;
|
|
git_odb_object_close(object);
|
|
}
|
|
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
int git_odb_read(git_odb_object **out, git_odb *db, const git_oid *id)
|
|
{
|
|
unsigned int i;
|
|
int error = GIT_ENOTFOUND;
|
|
git_rawobj raw;
|
|
|
|
assert(out && db && id);
|
|
|
|
*out = git_cache_get(&db->cache, id);
|
|
if (*out != NULL)
|
|
return GIT_SUCCESS;
|
|
|
|
for (i = 0; i < db->backends.length && error < 0; ++i) {
|
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
|
git_odb_backend *b = internal->backend;
|
|
|
|
if (b->read != NULL)
|
|
error = b->read(&raw.data, &raw.len, &raw.type, b, id);
|
|
}
|
|
|
|
if (error == GIT_SUCCESS) {
|
|
*out = git_cache_try_store(&db->cache, new_odb_object(id, &raw));
|
|
}
|
|
|
|
if (error < GIT_SUCCESS)
|
|
return git__rethrow(error, "Failed to read object");
|
|
return error;
|
|
}
|
|
|
|
int git_odb_read_prefix(git_odb_object **out, git_odb *db, const git_oid *short_id, unsigned int len)
|
|
{
|
|
unsigned int i;
|
|
int error = GIT_ENOTFOUND;
|
|
git_oid full_oid;
|
|
git_rawobj raw;
|
|
int found = 0;
|
|
|
|
assert(out && db);
|
|
|
|
if (len < GIT_OID_MINPREFIXLEN)
|
|
return git__throw(GIT_EAMBIGUOUSOIDPREFIX, "Failed to lookup object. Prefix length is lower than %d.", GIT_OID_MINPREFIXLEN);
|
|
|
|
if (len > GIT_OID_HEXSZ)
|
|
len = GIT_OID_HEXSZ;
|
|
|
|
if (len == GIT_OID_HEXSZ) {
|
|
*out = git_cache_get(&db->cache, short_id);
|
|
if (*out != NULL)
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
for (i = 0; i < db->backends.length && found < 2; ++i) {
|
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
|
git_odb_backend *b = internal->backend;
|
|
|
|
if (b->read != NULL) {
|
|
error = b->read_prefix(&full_oid, &raw.data, &raw.len, &raw.type, b, short_id, len);
|
|
switch (error) {
|
|
case GIT_SUCCESS:
|
|
found++;
|
|
break;
|
|
case GIT_ENOTFOUND:
|
|
break;
|
|
case GIT_EAMBIGUOUSOIDPREFIX:
|
|
return git__rethrow(error, "Failed to read object. Ambiguous sha1 prefix");
|
|
default:
|
|
return git__rethrow(error, "Failed to read object");
|
|
}
|
|
}
|
|
}
|
|
|
|
if (found == 1) {
|
|
*out = git_cache_try_store(&db->cache, new_odb_object(&full_oid, &raw));
|
|
} else if (found > 1) {
|
|
return git__throw(GIT_EAMBIGUOUSOIDPREFIX, "Failed to read object. Ambiguous sha1 prefix");
|
|
} else {
|
|
return git__throw(GIT_ENOTFOUND, "Failed to read object. Object not found");
|
|
}
|
|
|
|
return GIT_SUCCESS;
|
|
}
|
|
|
|
int git_odb_write(git_oid *oid, git_odb *db, const void *data, size_t len, git_otype type)
|
|
{
|
|
unsigned int i;
|
|
int error = GIT_ERROR;
|
|
|
|
assert(oid && db);
|
|
|
|
for (i = 0; i < db->backends.length && error < 0; ++i) {
|
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
|
git_odb_backend *b = internal->backend;
|
|
|
|
/* we don't write in alternates! */
|
|
if (internal->is_alternate)
|
|
continue;
|
|
|
|
if (b->write != NULL)
|
|
error = b->write(oid, b, data, len, type);
|
|
}
|
|
|
|
/* if no backends were able to write the object directly, we try a streaming
|
|
* write to the backends; just write the whole object into the stream in one
|
|
* push */
|
|
if (error < GIT_SUCCESS) {
|
|
git_odb_stream *stream;
|
|
|
|
if ((error = git_odb_open_wstream(&stream, db, len, type)) == GIT_SUCCESS) {
|
|
stream->write(stream, data, len);
|
|
error = stream->finalize_write(oid, stream);
|
|
stream->free(stream);
|
|
}
|
|
}
|
|
|
|
return (error == GIT_SUCCESS) ? GIT_SUCCESS :
|
|
git__rethrow(error, "Failed to write object");
|
|
}
|
|
|
|
int git_odb_open_wstream(git_odb_stream **stream, git_odb *db, size_t size, git_otype type)
|
|
{
|
|
unsigned int i;
|
|
int error = GIT_ERROR;
|
|
|
|
assert(stream && db);
|
|
|
|
for (i = 0; i < db->backends.length && error < 0; ++i) {
|
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
|
git_odb_backend *b = internal->backend;
|
|
|
|
/* we don't write in alternates! */
|
|
if (internal->is_alternate)
|
|
continue;
|
|
|
|
if (b->writestream != NULL)
|
|
error = b->writestream(stream, b, size, type);
|
|
else if (b->write != NULL)
|
|
error = init_fake_wstream(stream, b, size, type);
|
|
}
|
|
|
|
return (error == GIT_SUCCESS) ? GIT_SUCCESS :
|
|
git__rethrow(error, "Failed to open write stream");
|
|
}
|
|
|
|
int git_odb_open_rstream(git_odb_stream **stream, git_odb *db, const git_oid *oid)
|
|
{
|
|
unsigned int i;
|
|
int error = GIT_ERROR;
|
|
|
|
assert(stream && db);
|
|
|
|
for (i = 0; i < db->backends.length && error < 0; ++i) {
|
|
backend_internal *internal = git_vector_get(&db->backends, i);
|
|
git_odb_backend *b = internal->backend;
|
|
|
|
if (b->readstream != NULL)
|
|
error = b->readstream(stream, b, oid);
|
|
}
|
|
|
|
return (error == GIT_SUCCESS) ? GIT_SUCCESS :
|
|
git__rethrow(error, "Failed to open read stream");
|
|
}
|
|
|