зеркало из https://github.com/microsoft/git.git
move setting of object->type to alloc_* functions
The "struct object" type implements basic object polymorphism. Individual instances are allocated as concrete types (or as a union type that can store any object), and a "struct object *" can be cast into its real type after examining its "type" enum. This means it is dangerous to have a type field that does not match the allocation (e.g., setting the type field of a "struct blob" to "OBJ_COMMIT" would mean that a reader might read past the allocated memory). In most of the current code this is not a problem; the first thing we do after allocating an object is usually to set its type field by passing it to create_object. However, the virtual commits we create in merge-recursive.c do not ever get their type set. This does not seem to have caused problems in practice, though (presumably because we always pass around a "struct commit" pointer and never even look at the type). We can fix this oversight and also make it harder for future code to get it wrong by setting the type directly in the object allocation functions. This will also make it easier to fix problems with commit index allocation, as we know that any object allocated by alloc_commit_node will meet the invariant that an object with an OBJ_COMMIT type field will have a unique index number. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
600e2a69df
Коммит
d36f51c13b
5
alloc.c
5
alloc.c
|
@ -52,6 +52,7 @@ static struct alloc_state blob_state;
|
||||||
void *alloc_blob_node(void)
|
void *alloc_blob_node(void)
|
||||||
{
|
{
|
||||||
struct blob *b = alloc_node(&blob_state, sizeof(struct blob));
|
struct blob *b = alloc_node(&blob_state, sizeof(struct blob));
|
||||||
|
b->object.type = OBJ_BLOB;
|
||||||
return b;
|
return b;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,6 +60,7 @@ static struct alloc_state tree_state;
|
||||||
void *alloc_tree_node(void)
|
void *alloc_tree_node(void)
|
||||||
{
|
{
|
||||||
struct tree *t = alloc_node(&tree_state, sizeof(struct tree));
|
struct tree *t = alloc_node(&tree_state, sizeof(struct tree));
|
||||||
|
t->object.type = OBJ_TREE;
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,6 +68,7 @@ static struct alloc_state tag_state;
|
||||||
void *alloc_tag_node(void)
|
void *alloc_tag_node(void)
|
||||||
{
|
{
|
||||||
struct tag *t = alloc_node(&tag_state, sizeof(struct tag));
|
struct tag *t = alloc_node(&tag_state, sizeof(struct tag));
|
||||||
|
t->object.type = OBJ_TAG;
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -73,6 +76,7 @@ static struct alloc_state object_state;
|
||||||
void *alloc_object_node(void)
|
void *alloc_object_node(void)
|
||||||
{
|
{
|
||||||
struct object *obj = alloc_node(&object_state, sizeof(union any_object));
|
struct object *obj = alloc_node(&object_state, sizeof(union any_object));
|
||||||
|
obj->type = OBJ_NONE;
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,6 +86,7 @@ void *alloc_commit_node(void)
|
||||||
{
|
{
|
||||||
static int commit_count;
|
static int commit_count;
|
||||||
struct commit *c = alloc_node(&commit_state, sizeof(struct commit));
|
struct commit *c = alloc_node(&commit_state, sizeof(struct commit));
|
||||||
|
c->object.type = OBJ_COMMIT;
|
||||||
c->index = commit_count++;
|
c->index = commit_count++;
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
2
blob.c
2
blob.c
|
@ -7,7 +7,7 @@ struct blob *lookup_blob(const unsigned char *sha1)
|
||||||
{
|
{
|
||||||
struct object *obj = lookup_object(sha1);
|
struct object *obj = lookup_object(sha1);
|
||||||
if (!obj)
|
if (!obj)
|
||||||
return create_object(sha1, OBJ_BLOB, alloc_blob_node());
|
return create_object(sha1, alloc_blob_node());
|
||||||
if (!obj->type)
|
if (!obj->type)
|
||||||
obj->type = OBJ_BLOB;
|
obj->type = OBJ_BLOB;
|
||||||
if (obj->type != OBJ_BLOB) {
|
if (obj->type != OBJ_BLOB) {
|
||||||
|
|
|
@ -2287,7 +2287,6 @@ static struct commit *fake_working_tree_commit(struct diff_options *opt,
|
||||||
commit = alloc_commit_node();
|
commit = alloc_commit_node();
|
||||||
commit->object.parsed = 1;
|
commit->object.parsed = 1;
|
||||||
commit->date = now;
|
commit->date = now;
|
||||||
commit->object.type = OBJ_COMMIT;
|
|
||||||
parent_tail = &commit->parents;
|
parent_tail = &commit->parents;
|
||||||
|
|
||||||
if (!resolve_ref_unsafe("HEAD", head_sha1, 1, NULL))
|
if (!resolve_ref_unsafe("HEAD", head_sha1, 1, NULL))
|
||||||
|
|
6
commit.c
6
commit.c
|
@ -61,10 +61,8 @@ struct commit *lookup_commit_or_die(const unsigned char *sha1, const char *ref_n
|
||||||
struct commit *lookup_commit(const unsigned char *sha1)
|
struct commit *lookup_commit(const unsigned char *sha1)
|
||||||
{
|
{
|
||||||
struct object *obj = lookup_object(sha1);
|
struct object *obj = lookup_object(sha1);
|
||||||
if (!obj) {
|
if (!obj)
|
||||||
struct commit *c = alloc_commit_node();
|
return create_object(sha1, alloc_commit_node());
|
||||||
return create_object(sha1, OBJ_COMMIT, c);
|
|
||||||
}
|
|
||||||
if (!obj->type)
|
if (!obj->type)
|
||||||
obj->type = OBJ_COMMIT;
|
obj->type = OBJ_COMMIT;
|
||||||
return check_commit(obj, sha1, 0);
|
return check_commit(obj, sha1, 0);
|
||||||
|
|
5
object.c
5
object.c
|
@ -141,13 +141,12 @@ static void grow_object_hash(void)
|
||||||
obj_hash_size = new_hash_size;
|
obj_hash_size = new_hash_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
void *create_object(const unsigned char *sha1, int type, void *o)
|
void *create_object(const unsigned char *sha1, void *o)
|
||||||
{
|
{
|
||||||
struct object *obj = o;
|
struct object *obj = o;
|
||||||
|
|
||||||
obj->parsed = 0;
|
obj->parsed = 0;
|
||||||
obj->used = 0;
|
obj->used = 0;
|
||||||
obj->type = type;
|
|
||||||
obj->flags = 0;
|
obj->flags = 0;
|
||||||
hashcpy(obj->sha1, sha1);
|
hashcpy(obj->sha1, sha1);
|
||||||
|
|
||||||
|
@ -163,7 +162,7 @@ struct object *lookup_unknown_object(const unsigned char *sha1)
|
||||||
{
|
{
|
||||||
struct object *obj = lookup_object(sha1);
|
struct object *obj = lookup_object(sha1);
|
||||||
if (!obj)
|
if (!obj)
|
||||||
obj = create_object(sha1, OBJ_NONE, alloc_object_node());
|
obj = create_object(sha1, alloc_object_node());
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
object.h
2
object.h
|
@ -79,7 +79,7 @@ extern struct object *get_indexed_object(unsigned int);
|
||||||
*/
|
*/
|
||||||
struct object *lookup_object(const unsigned char *sha1);
|
struct object *lookup_object(const unsigned char *sha1);
|
||||||
|
|
||||||
extern void *create_object(const unsigned char *sha1, int type, void *obj);
|
extern void *create_object(const unsigned char *sha1, void *obj);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Returns the object, having parsed it to find out what it is.
|
* Returns the object, having parsed it to find out what it is.
|
||||||
|
|
2
tag.c
2
tag.c
|
@ -40,7 +40,7 @@ struct tag *lookup_tag(const unsigned char *sha1)
|
||||||
{
|
{
|
||||||
struct object *obj = lookup_object(sha1);
|
struct object *obj = lookup_object(sha1);
|
||||||
if (!obj)
|
if (!obj)
|
||||||
return create_object(sha1, OBJ_TAG, alloc_tag_node());
|
return create_object(sha1, alloc_tag_node());
|
||||||
if (!obj->type)
|
if (!obj->type)
|
||||||
obj->type = OBJ_TAG;
|
obj->type = OBJ_TAG;
|
||||||
if (obj->type != OBJ_TAG) {
|
if (obj->type != OBJ_TAG) {
|
||||||
|
|
2
tree.c
2
tree.c
|
@ -183,7 +183,7 @@ struct tree *lookup_tree(const unsigned char *sha1)
|
||||||
{
|
{
|
||||||
struct object *obj = lookup_object(sha1);
|
struct object *obj = lookup_object(sha1);
|
||||||
if (!obj)
|
if (!obj)
|
||||||
return create_object(sha1, OBJ_TREE, alloc_tree_node());
|
return create_object(sha1, alloc_tree_node());
|
||||||
if (!obj->type)
|
if (!obj->type)
|
||||||
obj->type = OBJ_TREE;
|
obj->type = OBJ_TREE;
|
||||||
if (obj->type != OBJ_TREE) {
|
if (obj->type != OBJ_TREE) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче