зеркало из https://github.com/microsoft/git.git
read_raw_ref(): manage own scratch space
Instead of creating scratch space in resolve_ref_unsafe() and passing it down through resolve_ref_1 to read_raw_ref(), teach read_raw_ref() to manage its own scratch space. This reduces coupling across the functions at the cost of some extra allocations. Also, when read_raw_ref() is implemented for different reference backends, the other implementations might have different scratch space requirements. Note that we now preserve errno across the calls to strbuf_release(), which calls free() and can thus theoretically overwrite errno. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: David Turner <dturner@twopensource.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
7048653a73
Коммит
42a38cf788
|
@ -1421,17 +1421,20 @@ static int resolve_missing_loose_ref(const char *refname,
|
||||||
* refname will still be valid and unchanged.
|
* refname will still be valid and unchanged.
|
||||||
*/
|
*/
|
||||||
static int read_raw_ref(const char *refname, unsigned char *sha1,
|
static int read_raw_ref(const char *refname, unsigned char *sha1,
|
||||||
struct strbuf *symref, struct strbuf *sb_path,
|
struct strbuf *symref, int *flags)
|
||||||
struct strbuf *sb_contents, int *flags)
|
|
||||||
{
|
{
|
||||||
|
struct strbuf sb_contents = STRBUF_INIT;
|
||||||
|
struct strbuf sb_path = STRBUF_INIT;
|
||||||
const char *path;
|
const char *path;
|
||||||
const char *buf;
|
const char *buf;
|
||||||
struct stat st;
|
struct stat st;
|
||||||
int fd;
|
int fd;
|
||||||
|
int ret = -1;
|
||||||
|
int save_errno;
|
||||||
|
|
||||||
strbuf_reset(sb_path);
|
strbuf_reset(&sb_path);
|
||||||
strbuf_git_path(sb_path, "%s", refname);
|
strbuf_git_path(&sb_path, "%s", refname);
|
||||||
path = sb_path->buf;
|
path = sb_path.buf;
|
||||||
|
|
||||||
stat_ref:
|
stat_ref:
|
||||||
/*
|
/*
|
||||||
|
@ -1446,36 +1449,38 @@ stat_ref:
|
||||||
|
|
||||||
if (lstat(path, &st) < 0) {
|
if (lstat(path, &st) < 0) {
|
||||||
if (errno != ENOENT)
|
if (errno != ENOENT)
|
||||||
return -1;
|
goto out;
|
||||||
if (resolve_missing_loose_ref(refname, sha1, flags)) {
|
if (resolve_missing_loose_ref(refname, sha1, flags)) {
|
||||||
errno = ENOENT;
|
errno = ENOENT;
|
||||||
return -1;
|
goto out;
|
||||||
}
|
}
|
||||||
return 0;
|
ret = 0;
|
||||||
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Follow "normalized" - ie "refs/.." symlinks by hand */
|
/* Follow "normalized" - ie "refs/.." symlinks by hand */
|
||||||
if (S_ISLNK(st.st_mode)) {
|
if (S_ISLNK(st.st_mode)) {
|
||||||
strbuf_reset(sb_contents);
|
strbuf_reset(&sb_contents);
|
||||||
if (strbuf_readlink(sb_contents, path, 0) < 0) {
|
if (strbuf_readlink(&sb_contents, path, 0) < 0) {
|
||||||
if (errno == ENOENT || errno == EINVAL)
|
if (errno == ENOENT || errno == EINVAL)
|
||||||
/* inconsistent with lstat; retry */
|
/* inconsistent with lstat; retry */
|
||||||
goto stat_ref;
|
goto stat_ref;
|
||||||
else
|
else
|
||||||
return -1;
|
goto out;
|
||||||
}
|
}
|
||||||
if (starts_with(sb_contents->buf, "refs/") &&
|
if (starts_with(sb_contents.buf, "refs/") &&
|
||||||
!check_refname_format(sb_contents->buf, 0)) {
|
!check_refname_format(sb_contents.buf, 0)) {
|
||||||
strbuf_swap(sb_contents, symref);
|
strbuf_swap(&sb_contents, symref);
|
||||||
*flags |= REF_ISSYMREF;
|
*flags |= REF_ISSYMREF;
|
||||||
return 0;
|
ret = 0;
|
||||||
|
goto out;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Is it a directory? */
|
/* Is it a directory? */
|
||||||
if (S_ISDIR(st.st_mode)) {
|
if (S_ISDIR(st.st_mode)) {
|
||||||
errno = EISDIR;
|
errno = EISDIR;
|
||||||
return -1;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1488,18 +1493,18 @@ stat_ref:
|
||||||
/* inconsistent with lstat; retry */
|
/* inconsistent with lstat; retry */
|
||||||
goto stat_ref;
|
goto stat_ref;
|
||||||
else
|
else
|
||||||
return -1;
|
goto out;
|
||||||
}
|
}
|
||||||
strbuf_reset(sb_contents);
|
strbuf_reset(&sb_contents);
|
||||||
if (strbuf_read(sb_contents, fd, 256) < 0) {
|
if (strbuf_read(&sb_contents, fd, 256) < 0) {
|
||||||
int save_errno = errno;
|
int save_errno = errno;
|
||||||
close(fd);
|
close(fd);
|
||||||
errno = save_errno;
|
errno = save_errno;
|
||||||
return -1;
|
goto out;
|
||||||
}
|
}
|
||||||
close(fd);
|
close(fd);
|
||||||
strbuf_rtrim(sb_contents);
|
strbuf_rtrim(&sb_contents);
|
||||||
buf = sb_contents->buf;
|
buf = sb_contents.buf;
|
||||||
if (starts_with(buf, "ref:")) {
|
if (starts_with(buf, "ref:")) {
|
||||||
buf += 4;
|
buf += 4;
|
||||||
while (isspace(*buf))
|
while (isspace(*buf))
|
||||||
|
@ -1508,7 +1513,8 @@ stat_ref:
|
||||||
strbuf_reset(symref);
|
strbuf_reset(symref);
|
||||||
strbuf_addstr(symref, buf);
|
strbuf_addstr(symref, buf);
|
||||||
*flags |= REF_ISSYMREF;
|
*flags |= REF_ISSYMREF;
|
||||||
return 0;
|
ret = 0;
|
||||||
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1519,10 +1525,17 @@ stat_ref:
|
||||||
(buf[40] != '\0' && !isspace(buf[40]))) {
|
(buf[40] != '\0' && !isspace(buf[40]))) {
|
||||||
*flags |= REF_ISBROKEN;
|
*flags |= REF_ISBROKEN;
|
||||||
errno = EINVAL;
|
errno = EINVAL;
|
||||||
return -1;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
ret = 0;
|
||||||
|
|
||||||
|
out:
|
||||||
|
save_errno = errno;
|
||||||
|
strbuf_release(&sb_path);
|
||||||
|
strbuf_release(&sb_contents);
|
||||||
|
errno = save_errno;
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This function needs to return a meaningful errno on failure */
|
/* This function needs to return a meaningful errno on failure */
|
||||||
|
@ -1530,9 +1543,7 @@ static const char *resolve_ref_1(const char *refname,
|
||||||
int resolve_flags,
|
int resolve_flags,
|
||||||
unsigned char *sha1,
|
unsigned char *sha1,
|
||||||
int *flags,
|
int *flags,
|
||||||
struct strbuf *sb_refname,
|
struct strbuf *sb_refname)
|
||||||
struct strbuf *sb_path,
|
|
||||||
struct strbuf *sb_contents)
|
|
||||||
{
|
{
|
||||||
int symref_count;
|
int symref_count;
|
||||||
|
|
||||||
|
@ -1559,8 +1570,7 @@ static const char *resolve_ref_1(const char *refname,
|
||||||
for (symref_count = 0; symref_count < MAXDEPTH; symref_count++) {
|
for (symref_count = 0; symref_count < MAXDEPTH; symref_count++) {
|
||||||
int read_flags = 0;
|
int read_flags = 0;
|
||||||
|
|
||||||
if (read_raw_ref(refname, sha1, sb_refname,
|
if (read_raw_ref(refname, sha1, sb_refname, &read_flags)) {
|
||||||
sb_path, sb_contents, &read_flags)) {
|
|
||||||
*flags |= read_flags;
|
*flags |= read_flags;
|
||||||
if (errno != ENOENT || (resolve_flags & RESOLVE_REF_READING))
|
if (errno != ENOENT || (resolve_flags & RESOLVE_REF_READING))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -1604,8 +1614,6 @@ const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
|
||||||
unsigned char *sha1, int *flags)
|
unsigned char *sha1, int *flags)
|
||||||
{
|
{
|
||||||
static struct strbuf sb_refname = STRBUF_INIT;
|
static struct strbuf sb_refname = STRBUF_INIT;
|
||||||
struct strbuf sb_contents = STRBUF_INIT;
|
|
||||||
struct strbuf sb_path = STRBUF_INIT;
|
|
||||||
int unused_flags;
|
int unused_flags;
|
||||||
const char *ret;
|
const char *ret;
|
||||||
|
|
||||||
|
@ -1613,9 +1621,7 @@ const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
|
||||||
flags = &unused_flags;
|
flags = &unused_flags;
|
||||||
|
|
||||||
ret = resolve_ref_1(refname, resolve_flags, sha1, flags,
|
ret = resolve_ref_1(refname, resolve_flags, sha1, flags,
|
||||||
&sb_refname, &sb_path, &sb_contents);
|
&sb_refname);
|
||||||
strbuf_release(&sb_path);
|
|
||||||
strbuf_release(&sb_contents);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче