[PATCH] Allow reading "symbolic refs" that point to other refs
This extends the ref reading to understand a "symbolic ref": a ref file
that starts with "ref: " and points to another ref file, and thus
introduces the notion of ref aliases.
This is in preparation of allowing HEAD to eventually not be a symlink,
but one of these symbolic refs instead.
[jc: Linus originally required the prefix to be "ref: " five bytes
and nothing else, but I changed it to allow and strip any number of
leading whitespaces to match what update-ref.c does.]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Linus Torvalds19 years agocommitted byJunio C Hamano
static int read_ref(const char *refname, unsigned char *sha1)
/* We allow "recursive" symbolic refs. Only within reason, though */
#define MAXDEPTH 5
int read_ref(const char *filename, unsigned char *sha1)
{
int ret = -1;
int fd = open(git_path("%s", refname), O_RDONLY);
int depth = 0;
int ret = -1, fd;
while ((fd = open(filename, O_RDONLY)) >= 0) {
char buffer[256];
int len = read(fd, buffer, sizeof(buffer)-1);
if (fd >= 0) {
char buffer[60];
if (read(fd, buffer, sizeof(buffer)) >= 40)
ret = get_sha1_hex(buffer, sha1);
close(fd);
if (len < 0)
break;
buffer[len] = 0;
while (len && isspace(buffer[len-1]))
buffer[--len] = 0;
if (!strncmp(buffer, "ref:", 4)) {
char *buf;
if (depth > MAXDEPTH)
break;
depth++;
buf = buffer + 4;
len -= 4;
while (len && isspace(*buf))
buf++, len--;
filename = git_path("%.*s", len, buf);
continue;
}
if (len >= 40)
ret = get_sha1_hex(buffer, sha1);
break;
}
return ret;
}
@ -54,7 +80,7 @@ static int do_for_each_ref(const char *base, int (*fn)(const char *path, const u
@@ -54,7 +80,7 @@ static int do_for_each_ref(const char *base, int (*fn)(const char *path, const u
break;
continue;
}
if (read_ref(path, sha1) < 0)
if (read_ref(git_path("%s", path), sha1) < 0)
continue;
if (!has_sha1_file(sha1))
continue;
@ -71,7 +97,7 @@ static int do_for_each_ref(const char *base, int (*fn)(const char *path, const u
@@ -71,7 +97,7 @@ static int do_for_each_ref(const char *base, int (*fn)(const char *path, const u
int head_ref(int (*fn)(const char *path, const unsigned char *sha1))