summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ec3f5a4)
raw | patch | inline | side by side (parent: ec3f5a4)
author | Eric W. Biederman <ebiederm@xmission.com> | |
Fri, 15 Jul 2005 01:02:10 +0000 (19:02 -0600) | ||
committer | Linus Torvalds <torvalds@g5.osdl.org> | |
Fri, 15 Jul 2005 17:00:35 +0000 (10:00 -0700) |
And finally what all of this has been leading up to.
The 2 line code change to record who made a tag,
and the 8 line code change to check that we recorded
the tag.
Gosh the error checking is always so much bigger than the code :)
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
The 2 line code change to record who made a tag,
and the 8 line code change to check that we recorded
the tag.
Gosh the error checking is always so much bigger than the code :)
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
git-tag-script | patch | blob | history | |
mktag.c | patch | blob | history |
diff --git a/git-tag-script b/git-tag-script
index aee4891f60b87bba2780de3e7b19a31e94e8aa78..4124f5494a033c1bfddfbcce3c3e3d7da38797a5 100755 (executable)
--- a/git-tag-script
+++ b/git-tag-script
object=${2:-$(cat "$GIT_DIR"/HEAD)}
type=$(git-cat-file -t $object) || exit 1
+tagger=$(git-var GIT_COMMITTER_IDENT) || exit 1
( echo "#"
echo "# Write a tag message"
[ -s .tagmsg ] || exit
-( echo -e "object $object\ntype $type\ntag $name\n"; cat .tagmsg ) > .tmp-tag
+( echo -e "object $object\ntype $type\ntag $name\ntagger $tagger\n"; cat .tagmsg ) > .tmp-tag
rm -f .tmp-tag.asc .tagmsg
gpg -bsa .tmp-tag && cat .tmp-tag.asc >> .tmp-tag
mkdir -p "$GIT_DIR/refs/tags"
index 8cbbef67e624d1d15bc4f2d7e2f9509be937c36d..585677eb83cd0fd21963d21291a6af2b54fc9c84 100644 (file)
--- a/mktag.c
+++ b/mktag.c
int typelen;
char type[20];
unsigned char sha1[20];
- const char *object, *type_line, *tag_line;
+ const char *object, *type_line, *tag_line, *tagger_line;
if (size < 64 || size > MAXSIZE-1)
return -1;
return -1;
}
+ /* Verify the tagger line */
+ tagger_line = tag_line;
+
+ if (memcmp(tagger_line, "tagger", 6) || (tagger_line[6] == '\n'))
+ return -1;
+
/* The actual stuff afterwards we don't care about.. */
return 0;
}
size += ret;
}
- // Verify it for some basic sanity: it needs to start with "object <sha1>\ntype "
+ // Verify it for some basic sanity: it needs to start with "object <sha1>\ntype\ntagger "
if (verify_tag(buffer, size) < 0)
die("invalid tag signature file");