summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 652d5dc)
raw | patch | inline | side by side (parent: 652d5dc)
author | Junio C Hamano <junkio@cox.net> | |
Sun, 16 Oct 2005 00:10:14 +0000 (17:10 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sun, 16 Oct 2005 00:10:14 +0000 (17:10 -0700) |
Using git-check-ref-format, make sure we do not create refs with
funny names when cloning from elsewhere (clone-pack), fast forwarding
local heads (git-fetch), or somebody pushes into us (receive-pack).
Signed-off-by: Junio C Hamano <junkio@cox.net>
funny names when cloning from elsewhere (clone-pack), fast forwarding
local heads (git-fetch), or somebody pushes into us (receive-pack).
Signed-off-by: Junio C Hamano <junkio@cox.net>
clone-pack.c | patch | blob | history | |
git-parse-remote.sh | patch | blob | history | |
receive-pack.c | patch | blob | history |
diff --git a/clone-pack.c b/clone-pack.c
index c102ca885bc3d6700bea82fba5d4c97ab6a93db7..48bee96a883b220f431e3ca606481cd33fbf4786 100644 (file)
--- a/clone-pack.c
+++ b/clone-pack.c
int fd;
char *hex;
+ if (!strncmp(ref->name, "refs/", 5) &&
+ check_ref_format(ref->name + 5)) {
+ error("refusing to create funny ref '%s' locally", ref->name);
+ return;
+ }
+
if (safe_create_leading_directories(path))
die("unable to create leading directory for %s", ref->name);
fd = open(path, O_CREAT | O_EXCL | O_WRONLY, 0666);
diff --git a/git-parse-remote.sh b/git-parse-remote.sh
index 4d8a572a9903179494c7cc4f8a72729a47f1c12b..32f10855b6e94ad891417a476bafd3092135bec7 100755 (executable)
--- a/git-parse-remote.sh
+++ b/git-parse-remote.sh
heads/* | tags/* ) local="refs/$local" ;;
*) local="refs/heads/$local" ;;
esac
+
+ if local_ref_name=$(expr "$local" : 'refs/\(.*\)')
+ then
+ git-check-ref-format "$local_ref_name" ||
+ die "* refusing to create funny ref '$local_ref_name' locally"
+ fi
echo "${dot_prefix}${force}${remote}:${local}"
dot_prefix=.
done
diff --git a/receive-pack.c b/receive-pack.c
index 06857eb77fef93788f54d17cca68924f5213c9db..8f157bc3f0ef1f9d96bca18fc81854fc24bff936 100644 (file)
--- a/receive-pack.c
+++ b/receive-pack.c
char new_hex[60], *old_hex, *lock_name;
int newfd, namelen, written;
+ if (!strncmp(name, "refs/", 5) && check_ref_format(name + 5))
+ return error("refusing to create funny ref '%s' locally",
+ name);
+
namelen = strlen(name);
lock_name = xmalloc(namelen + 10);
memcpy(lock_name, name, namelen);