config: make git_config_[get|set]_long() able to properly deal with 8 bytes wide values Should fix issue #419. Signed-off-by: nulltoken <emeric.fermas@gmail.com>
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 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
diff --git a/include/git2/config.h b/include/git2/config.h
index 74ee96b..83ed2f9 100644
--- a/include/git2/config.h
+++ b/include/git2/config.h
@@ -164,7 +164,7 @@ GIT_EXTERN(int) git_config_get_int(git_config *cfg, const char *name, int *out);
* @param out pointer to the variable where the value should be stored
* @return GIT_SUCCESS or an error code
*/
-GIT_EXTERN(int) git_config_get_long(git_config *cfg, const char *name, long int *out);
+GIT_EXTERN(int) git_config_get_long(git_config *cfg, const char *name, long long *out);
/**
* Get the value of a boolean config variable.
@@ -210,7 +210,7 @@ GIT_EXTERN(int) git_config_set_int(git_config *cfg, const char *name, int value)
* @param value Long integer value for the variable
* @return GIT_SUCCESS or an error code
*/
-GIT_EXTERN(int) git_config_set_long(git_config *cfg, const char *name, long int value);
+GIT_EXTERN(int) git_config_set_long(git_config *cfg, const char *name, long long value);
/**
* Set the value of a boolean config variable.
diff --git a/src/config.c b/src/config.c
index 261beb4..e34acba 100644
--- a/src/config.c
+++ b/src/config.c
@@ -161,16 +161,16 @@ int git_config_delete(git_config *cfg, const char *name)
* Setters
**************/
-int git_config_set_long(git_config *cfg, const char *name, long int value)
+int git_config_set_long(git_config *cfg, const char *name, long long value)
{
char str_value[32]; /* All numbers should fit in here */
- p_snprintf(str_value, sizeof(str_value), "%ld", value);
+ p_snprintf(str_value, sizeof(str_value), "%lld", value);
return git_config_set_string(cfg, name, str_value);
}
int git_config_set_int(git_config *cfg, const char *name, int value)
{
- return git_config_set_long(cfg, name, value);
+ return git_config_set_long(cfg, name, (long long)value);
}
int git_config_set_bool(git_config *cfg, const char *name, int value)
@@ -196,19 +196,19 @@ int git_config_set_string(git_config *cfg, const char *name, const char *value)
* Getters
***********/
-int git_config_get_long(git_config *cfg, const char *name, long int *out)
+int git_config_get_long(git_config *cfg, const char *name, long long *out)
{
const char *value, *num_end;
int ret;
- long int num;
+ long long num;
ret = git_config_get_string(cfg, name, &value);
if (ret < GIT_SUCCESS)
- return git__rethrow(ret, "Failed to get value for %s", name);
+ return git__rethrow(ret, "Failed to retrieve value for '%s'", name);
- ret = git__strtol32(&num, value, &num_end, 0);
+ ret = git__strtol64(&num, value, &num_end, 0);
if (ret < GIT_SUCCESS)
- return git__rethrow(ret, "Failed to get value for %s", name);
+ return git__rethrow(ret, "Failed to convert value for '%s'", name);
switch (*num_end) {
case '\0':
@@ -226,7 +226,7 @@ int git_config_get_long(git_config *cfg, const char *name, long int *out)
num *= 1024 * 1024 * 1024;
break;
default:
- return git__throw(GIT_EINVALIDTYPE, "Failed to get value for %s. Value is of invalid type", name);
+ return git__throw(GIT_EINVALIDTYPE, "Failed to get value for '%s'. Value is of invalid type", name);
}
*out = num;
@@ -236,12 +236,18 @@ int git_config_get_long(git_config *cfg, const char *name, long int *out)
int git_config_get_int(git_config *cfg, const char *name, int *out)
{
- long int tmp;
- int ret;
+ long long tmp_long;
+ int tmp_int, ret;
- ret = git_config_get_long(cfg, name, &tmp);
+ ret = git_config_get_long(cfg, name, &tmp_long);
+ if (ret < GIT_SUCCESS)
+ return git__rethrow(ret, "Failed to convert value for '%s'", name);
+
+ tmp_int = tmp_long & 0xFFFFFFFF;
+ if (tmp_int != tmp_long)
+ return git__throw(GIT_EOVERFLOW, "Value for '%s' is too large", name);
- *out = (int) tmp;
+ *out = tmp_int;
return ret;
}
diff --git a/src/index.c b/src/index.c
index e6a1819..f6f282d 100644
--- a/src/index.c
+++ b/src/index.c
@@ -543,7 +543,7 @@ static int read_tree_internal(git_index_tree **out,
{
git_index_tree *tree;
const char *name_start, *buffer;
- long count;
+ int count;
int error = GIT_SUCCESS;
if ((tree = git__malloc(sizeof(git_index_tree))) == NULL)
@@ -685,7 +685,7 @@ static int read_unmerged(git_index *index, const char *buffer, size_t size)
buffer += len;
for (i = 0; i < 3; i++) {
- long tmp;
+ int tmp;
if (git__strtol32(&tmp, buffer, &endptr, 8) < GIT_SUCCESS ||
!endptr || endptr == buffer || *endptr || (unsigned)tmp > UINT_MAX)
diff --git a/src/pkt.c b/src/pkt.c
index e0beb72..2b74f4c 100644
--- a/src/pkt.c
+++ b/src/pkt.c
@@ -141,7 +141,7 @@ static ssize_t parse_len(const char *line)
{
char num[PKT_LEN_SIZE + 1];
int i, error;
- long len;
+ int len;
const char *num_end;
memcpy(num, line, PKT_LEN_SIZE);
diff --git a/src/revwalk.c b/src/revwalk.c
index 72eb69a..2d70d40 100644
--- a/src/revwalk.c
+++ b/src/revwalk.c
@@ -172,7 +172,7 @@ static int commit_quick_parse(git_revwalk *walk, commit_object *commit, git_rawo
unsigned char *parents_start;
int i, parents = 0;
- long commit_time;
+ int commit_time;
buffer += strlen("tree ") + GIT_OID_HEXSZ + 1;
diff --git a/src/signature.c b/src/signature.c
index 7cc3733..ebb56d7 100644
--- a/src/signature.c
+++ b/src/signature.c
@@ -156,7 +156,7 @@ int git_signature_now(git_signature **sig_out, const char *name, const char *ema
static int parse_timezone_offset(const char *buffer, int *offset_out)
{
- long dec_offset;
+ int dec_offset;
int mins, hours, offset;
const char *offset_start;
@@ -236,7 +236,7 @@ static const char *scan_for_previous_token(const char *buffer, const char *left_
static int parse_time(git_time_t *time_out, const char *buffer)
{
- long time;
+ int time;
int error;
if (*buffer == '+' || *buffer == '-')
diff --git a/src/tree.c b/src/tree.c
index ce399a6..2f9ae2e 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -157,7 +157,7 @@ static int tree_parse_buffer(git_tree *tree, const char *buffer, const char *buf
while (buffer < buffer_end) {
git_tree_entry *entry;
- long tmp;
+ int tmp;
entry = git__calloc(1, sizeof(git_tree_entry));
if (entry == NULL) {
diff --git a/src/util.c b/src/util.c
index b46a2a1..dc0eab3 100644
--- a/src/util.c
+++ b/src/util.c
@@ -46,10 +46,10 @@ int git__fnmatch(const char *pattern, const char *name, int flags)
}
}
-int git__strtol32(long *result, const char *nptr, const char **endptr, int base)
+int git__strtol64(long long *result, const char *nptr, const char **endptr, int base)
{
const char *p;
- long n, nn;
+ long long n, nn;
int c, ovfl, v, neg, ndig;
p = nptr;
@@ -124,6 +124,23 @@ Return:
return GIT_SUCCESS;
}
+int git__strtol32(int *result, const char *nptr, const char **endptr, int base)
+{
+ int tmp_int, error = GIT_SUCCESS;
+ long long tmp_long;
+
+ if ((error = git__strtol64(&tmp_long, nptr, endptr, base)) < GIT_SUCCESS)
+ return error;
+
+ tmp_int = tmp_long & 0xFFFFFFFF;
+ if (tmp_int != tmp_long)
+ return git__throw(GIT_EOVERFLOW, "Failed to convert. '%s' is too large", nptr);
+
+ *result = tmp_int;
+
+ return error;
+}
+
void git__strntolower(char *str, size_t len)
{
size_t i;
diff --git a/src/util.h b/src/util.h
index f24afb3..888caf1 100644
--- a/src/util.h
+++ b/src/util.h
@@ -75,7 +75,8 @@ GIT_INLINE(void *) git__realloc(void *ptr, size_t size)
extern int git__prefixcmp(const char *str, const char *prefix);
extern int git__suffixcmp(const char *str, const char *suffix);
-extern int git__strtol32(long *n, const char *buff, const char **end_buf, int base);
+extern int git__strtol32(int *n, const char *buff, const char **end_buf, int base);
+extern int git__strtol64(long long *n, const char *buff, const char **end_buf, int base);
extern void git__hexdump(const char *buffer, size_t n);
extern uint32_t git__hash(const void *key, int len, uint32_t seed);
diff --git a/tests/resources/config/config9 b/tests/resources/config/config9
index 34fdc07..2179b2e 100644
--- a/tests/resources/config/config9
+++ b/tests/resources/config/config9
@@ -1,3 +1,4 @@
[core]
dummy2 = 42
+ verylong = 1
dummy = 1
diff --git a/tests/t00-core.c b/tests/t00-core.c
index 5d1a7ac..588b3c6 100644
--- a/tests/t00-core.c
+++ b/tests/t00-core.c
@@ -555,6 +555,47 @@ BEGIN_TEST(rmdir1, "make sure non-empty dir cannot be deleted recusively")
must_pass(git_futils_rmdir_r(empty_tmp_dir, 0));
END_TEST
+BEGIN_TEST(strtol0, "parsing out 32 integers from a string")
+ int i;
+
+ must_pass(git__strtol32(&i, "123", NULL, 10));
+ must_be_true(i == 123);
+
+ must_pass(git__strtol32(&i, " +123 ", NULL, 10));
+ must_be_true(i == 123);
+
+ must_pass(git__strtol32(&i, " +2147483647 ", NULL, 10));
+ must_be_true(i == 2147483647);
+
+ must_pass(git__strtol32(&i, " -2147483648 ", NULL, 10));
+ must_be_true(i == -2147483648LL);
+
+ must_fail(git__strtol32(&i, " 2147483657 ", NULL, 10));
+ must_fail(git__strtol32(&i, " -2147483657 ", NULL, 10));
+END_TEST
+
+BEGIN_TEST(strtol1, "parsing out 64 integers from a string")
+ long long i;
+
+ must_pass(git__strtol64(&i, "123", NULL, 10));
+ must_be_true(i == 123);
+
+ must_pass(git__strtol64(&i, " +123 ", NULL, 10));
+ must_be_true(i == 123);
+
+ must_pass(git__strtol64(&i, " +2147483647 ", NULL, 10));
+ must_be_true(i == 2147483647);
+
+ must_pass(git__strtol64(&i, " -2147483648 ", NULL, 10));
+ must_be_true(i == -2147483648LL);
+
+ must_pass(git__strtol64(&i, " 2147483657 ", NULL, 10));
+ must_be_true(i == 2147483657LL);
+
+ must_pass(git__strtol64(&i, " -2147483657 ", NULL, 10));
+ must_be_true(i == -2147483657LL);
+END_TEST
+
BEGIN_SUITE(core)
ADD_TEST(string0);
ADD_TEST(string1);
@@ -581,4 +622,7 @@ BEGIN_SUITE(core)
ADD_TEST(rmdir0);
ADD_TEST(rmdir1);
+
+ ADD_TEST(strtol0);
+ ADD_TEST(strtol1);
END_SUITE
diff --git a/tests/t15-config.c b/tests/t15-config.c
index ac460bc..b959cc9 100644
--- a/tests/t15-config.c
+++ b/tests/t15-config.c
@@ -133,7 +133,7 @@ END_TEST
BEGIN_TEST(config5, "test number suffixes")
git_config *cfg;
- long int i;
+ long long i;
must_pass(git_config_open_ondisk(&cfg, CONFIG_BASE "/config5"));
@@ -194,6 +194,7 @@ END_TEST
BEGIN_TEST(config9, "replace a value")
git_config *cfg;
int i;
+ long long l, expected = +9223372036854775803;
/* By freeing the config, we make sure we flush the values */
must_pass(git_config_open_ondisk(&cfg, CONFIG_BASE "/config9"));
@@ -209,6 +210,23 @@ BEGIN_TEST(config9, "replace a value")
must_pass(git_config_set_int(cfg, "core.dummy", 1));
git_config_free(cfg);
+ must_pass(git_config_open_ondisk(&cfg, CONFIG_BASE "/config9"));
+ must_pass(git_config_set_long(cfg, "core.verylong", expected));
+ git_config_free(cfg);
+
+ must_pass(git_config_open_ondisk(&cfg, CONFIG_BASE "/config9"));
+ must_pass(git_config_get_long(cfg, "core.verylong", &l));
+ must_be_true(l == expected);
+ git_config_free(cfg);
+
+ must_pass(git_config_open_ondisk(&cfg, CONFIG_BASE "/config9"));
+ must_fail(git_config_get_int(cfg, "core.verylong", &i));
+ git_config_free(cfg);
+
+ must_pass(git_config_open_ondisk(&cfg, CONFIG_BASE "/config9"));
+ must_pass(git_config_set_long(cfg, "core.verylong", 1));
+ git_config_free(cfg);
+
END_TEST
BEGIN_TEST(config10, "a repo's config overrides the global config")