index: Fix issues in the unmerged entries API
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
diff --git a/include/git2/index.h b/include/git2/index.h
index 2e5c17b..57401a9 100644
--- a/include/git2/index.h
+++ b/include/git2/index.h
@@ -98,14 +98,14 @@ typedef struct git_index_entry {
unsigned short flags;
unsigned short flags_extended;
- char *path;
+ const char *path;
} git_index_entry;
/** Representation of an unmerged file entry in the index. */
typedef struct git_index_entry_unmerged {
unsigned int mode[3];
git_oid oid[3];
- char *path;
+ const char *path;
} git_index_entry_unmerged;
/**
@@ -256,6 +256,8 @@ GIT_EXTERN(int) git_index_remove(git_index *index, int position);
* This entry can be modified, and the changes will be written
* back to disk on the next write() call.
*
+ * The entry should not be freed by the caller.
+ *
* @param index an existing index object
* @param n the position of the entry
* @return a pointer to the entry; NULL if out of bounds
@@ -276,17 +278,19 @@ GIT_EXTERN(unsigned int) git_index_entrycount(git_index *index);
* @param index an existing index object
* @return integer of count of current unmerged entries
*/
-GIT_EXTERN(unsigned int) git_index_unmerged_entrycount(git_index *index);
+GIT_EXTERN(unsigned int) git_index_entrycount_unmerged(git_index *index);
/**
* Get an unmerged entry from the index.
*
- * @param entry the pointer to the new unmerged entry
+ * The returned entry is read-only and should not be modified
+ * of freed by the caller.
+ *
* @param index an existing index object
* @param path path to search
- * @return 0 on success, otherwise an error code
+ * @return the unmerged entry; NULL if not found
*/
-GIT_EXTERN(int) git_index_get_unmerged(git_index_entry_unmerged **entry, git_index *index, const char *path);
+GIT_EXTERN(const git_index_entry_unmerged *) git_index_get_unmerged(git_index *index, const char *path);
/** @} */
diff --git a/src/index.c b/src/index.c
index e480933..c9d6eb5 100644
--- a/src/index.c
+++ b/src/index.c
@@ -100,7 +100,6 @@ static int read_header(struct index_header *dest, const void *buffer);
static int read_tree(git_index *index, const char *buffer, size_t buffer_size);
static git_index_tree *read_tree_internal(const char **, const char *, git_index_tree *);
-static int read_unmerged_internal(git_index *, const char **, size_t buffer_size);
static int parse_index(git_index *index, const char *buffer, size_t buffer_size);
static int is_index_extended(git_index *index);
@@ -160,7 +159,6 @@ static int index_initialize(git_index **index_out, git_repository *owner, const
index->repository = owner;
git_vector_init(&index->entries, 32, index_cmp);
- git_vector_init(&index->unmerged, 32, unmerged_cmp);
/* Check if index file is stored on disk already */
if (gitfo_exists(index->index_file_path) == 0)
@@ -219,7 +217,7 @@ void git_index_clear(git_index *index)
for (i = 0; i < index->entries.length; ++i) {
git_index_entry *e;
e = git_vector_get(&index->entries, i);
- free(e->path);
+ free((char *)e->path);
free(e);
}
@@ -303,13 +301,9 @@ unsigned int git_index_entrycount(git_index *index)
return index->entries.length;
}
-unsigned int git_index_unmerged_entrycount(git_index *index)
+unsigned int git_index_entrycount_unmerged(git_index *index)
{
assert(index);
-
- if (!&index->unmerged)
- return 0;
-
return index->unmerged.length;
}
@@ -373,7 +367,7 @@ static int index_insert(git_index *index, const git_index_entry *source_entry, i
} else {
git_index_entry **entry_array = (git_index_entry **)index->entries.contents;
- free(entry_array[position]->path);
+ free((char *)entry_array[position]->path);
free(entry_array[position]);
entry_array[position] = entry;
@@ -470,19 +464,18 @@ int git_index_find(git_index *index, const char *path)
return git_vector_bsearch2(&index->entries, index_srch, path);
}
-int git_index_get_unmerged(git_index_entry_unmerged **entry, git_index *index, const char *path)
+const git_index_entry_unmerged *git_index_get_unmerged(git_index *index, const char *path)
{
int pos;
- assert(index);
+ assert(index && path);
- if ((pos = git_vector_bsearch2(&index->unmerged, unmerged_srch, path)) < GIT_SUCCESS)
- return pos;
+ if (!index->unmerged.length)
+ return NULL;
- if ((*entry = git_vector_get(&index->unmerged, pos)) == NULL) {
- return GIT_ENOTFOUND;
- }
+ if ((pos = git_vector_bsearch2(&index->unmerged, unmerged_srch, path)) < GIT_SUCCESS)
+ return NULL;
- return GIT_SUCCESS;
+ return git_vector_get(&index->unmerged, pos);
}
@@ -568,43 +561,43 @@ static int read_tree(git_index *index, const char *buffer, size_t buffer_size)
return (index->tree != NULL && buffer == buffer_end) ? GIT_SUCCESS : GIT_EOBJCORRUPTED;
}
-static int read_unmerged_internal(
- git_index *index, const char **buffer_in, size_t buffer_size)
+static int read_unmerged(git_index *index, const char *buffer, size_t size)
{
- const char *buffer, *endptr;
- size_t size, len;
+ const char *endptr;
+ size_t len;
int i;
- size = buffer_size;
+ git_vector_init(&index->unmerged, 16, unmerged_cmp);
while (size) {
git_index_entry_unmerged *lost;
- buffer = *buffer_in;
-
len = strlen(buffer) + 1;
if (size <= len)
return GIT_ERROR;
if ((lost = git__malloc(sizeof(git_index_entry_unmerged))) == NULL)
- return GIT_ERROR;
-
- if ((lost->path = git__malloc(strlen(buffer))) == NULL)
- return GIT_ERROR;
- strcpy(lost->path, buffer);
+ return GIT_ENOMEM;
if (git_vector_insert(&index->unmerged, lost) < GIT_SUCCESS)
return GIT_ERROR;
+ lost->path = git__strdup(buffer);
+ if (!lost->path)
+ return GIT_ENOMEM;
+
size -= len;
buffer += len;
for (i = 0; i < 3; i++) {
- if (git__strtol32((long int *) &lost->mode[i], buffer, &endptr, 8) < GIT_SUCCESS || !endptr || endptr == buffer || *endptr)
+ if (git__strtol32((long int *) &lost->mode[i], buffer, &endptr, 8) < GIT_SUCCESS ||
+ !endptr || endptr == buffer || *endptr)
return GIT_ERROR;
+
len = (endptr + 1) - (char *) buffer;
if (size <= len)
return GIT_ERROR;
+
size -= len;
buffer += len;
}
@@ -614,22 +607,16 @@ static int read_unmerged_internal(
continue;
if (size < 20)
return GIT_ERROR;
+
git_oid_mkraw(&lost->oid[i], (unsigned char *) buffer);
size -= 20;
buffer += 20;
}
}
- *buffer_in = buffer;
return GIT_SUCCESS;
}
-static int read_unmerged(git_index *index, const char *buffer, size_t buffer_size)
-{
- read_unmerged_internal(index, &buffer, buffer_size);
- return (&index->unmerged != NULL) ? GIT_SUCCESS : GIT_EOBJCORRUPTED;
-}
-
static size_t read_entry(git_index_entry *dest, const void *buffer, size_t buffer_size)
{
size_t path_length, entry_size;
@@ -732,17 +719,14 @@ static size_t read_extension(git_index *index, const char *buffer, size_t buffer
if (dest.signature[0] >= 'A' && dest.signature[0] <= 'Z') {
/* tree cache */
if (memcmp(dest.signature, INDEX_EXT_TREECACHE_SIG, 4) == 0) {
-
if (read_tree(index, buffer + 8, dest.extension_size) < GIT_SUCCESS)
return 0;
-
} else if (memcmp(dest.signature, INDEX_EXT_UNMERGED_SIG, 4) == 0) {
-
if (read_unmerged(index, buffer + 8, dest.extension_size) < GIT_SUCCESS)
return 0;
- } else {
- ;
}
+ /* else, unsupported extension. We cannot parse this, but we can skip
+ * it by returning `total_size */
} else {
/* we cannot handle non-ignorable extensions;
* in fact they aren't even defined in the standard */