diff options
author | nulltoken <emeric.fermas@gmail.com> | 2012-07-05 22:26:14 +0200 |
---|---|---|
committer | nulltoken <emeric.fermas@gmail.com> | 2012-07-07 12:16:08 +0200 |
commit | cab65c2b23e1a01969c4586ef123ab153652aa6e (patch) | |
tree | c37551a35342d2f19b6a0380577c84b3e0c4a351 | |
parent | 1decf88bc12a55261c42db5d3c086500e642a088 (diff) | |
download | libgit2-cab65c2b23e1a01969c4586ef123ab153652aa6e.tar.gz |
revparse: detect incorrect "refname@{-n}" syntax
-rw-r--r-- | src/revparse.c | 29 | ||||
-rw-r--r-- | tests-clar/refs/revparse.c | 1 |
2 files changed, 14 insertions, 16 deletions
diff --git a/src/revparse.c b/src/revparse.c index 8c15f46c6..f5cf93ba2 100644 --- a/src/revparse.c +++ b/src/revparse.c @@ -21,9 +21,10 @@ typedef enum { REVPARSE_STATE_DONE, } revparse_state; -static void set_invalid_syntax_err(const char *spec) +static int revspec_error(const char *revspec) { - giterr_set(GITERR_INVALID, "Refspec '%s' is not valid.", spec); + giterr_set(GITERR_INVALID, "Failed to parse revision specifier - Invalid pattern '%s'", revspec); + return -1; } static int revparse_lookup_fully_qualifed_ref(git_object **out, git_repository *repo, const char*spec) @@ -154,21 +155,19 @@ static int walk_ref_history(git_object **out, git_repository *repo, const char * size_t reflogspeclen = strlen(reflogspec); if (git__prefixcmp(reflogspec, "@{") != 0 || - git__suffixcmp(reflogspec, "}") != 0) { - giterr_set(GITERR_INVALID, "Bad reflogspec '%s'", reflogspec); - return GIT_ERROR; - } + git__suffixcmp(reflogspec, "}") != 0) + return revspec_error(reflogspec); /* "@{-N}" form means walk back N checkouts. That means the HEAD log. */ - if (refspeclen == 0 && !git__prefixcmp(reflogspec, "@{-")) { + if (!git__prefixcmp(reflogspec, "@{-")) { regex_t regex; int regex_error; - if (git__strtol32(&n, reflogspec+3, NULL, 0) < 0 || - n < 1) { - giterr_set(GITERR_INVALID, "Invalid reflogspec %s", reflogspec); - return GIT_ERROR; - } + if (refspeclen > 0) + return revspec_error(reflogspec); + + if (git__strtol32(&n, reflogspec+3, NULL, 0) < 0 || n < 1) + return revspec_error(reflogspec); if (!git_reference_lookup(&ref, repo, "HEAD")) { if (!git_reflog_read(&reflog, ref)) { @@ -373,10 +372,8 @@ static int handle_caret_syntax(git_object **out, git_repository *repo, git_objec int n; if (*movement == '{') { - if (movement[movementlen-1] != '}') { - set_invalid_syntax_err(movement); - return GIT_ERROR; - } + if (movement[movementlen-1] != '}') + return revspec_error(movement); /* {} -> Dereference until we reach an object that isn't a tag. */ if (movementlen == 2) { diff --git a/tests-clar/refs/revparse.c b/tests-clar/refs/revparse.c index f36809494..892cb760a 100644 --- a/tests-clar/refs/revparse.c +++ b/tests-clar/refs/revparse.c @@ -133,6 +133,7 @@ void test_refs_revparse__reflog(void) { cl_git_fail(git_revparse_single(&g_obj, g_repo, "@{-xyz}")); cl_git_fail(git_revparse_single(&g_obj, g_repo, "@{-0}")); + cl_git_fail(git_revparse_single(&g_obj, g_repo, "master@{-2}")); cl_git_fail(git_revparse_single(&g_obj, g_repo, "@{1000}")); test_object("nope@{0}", NULL); |