7 #define PGP_SIGNATURE "-----BEGIN PGP SIGNATURE-----"
8 #define PGP_MESSAGE "-----BEGIN PGP MESSAGE-----"
10 const char *tag_type
= "tag";
12 struct object
*deref_tag(struct object
*o
, const char *warn
, int warnlen
)
14 while (o
&& o
->type
== OBJ_TAG
)
15 if (((struct tag
*)o
)->tagged
)
16 o
= parse_object(((struct tag
*)o
)->tagged
->sha1
);
21 warnlen
= strlen(warn
);
22 error("missing object referenced by '%.*s'", warnlen
, warn
);
27 struct tag
*lookup_tag(const unsigned char *sha1
)
29 struct object
*obj
= lookup_object(sha1
);
31 return create_object(sha1
, OBJ_TAG
, alloc_tag_node());
34 if (obj
->type
!= OBJ_TAG
) {
35 error("Object %s is a %s, not a tag",
36 sha1_to_hex(sha1
), typename(obj
->type
));
39 return (struct tag
*) obj
;
42 static unsigned long parse_tag_date(const char *buf
, const char *tail
)
46 while (buf
< tail
&& *buf
++ != '>')
51 while (buf
< tail
&& *buf
++ != '\n')
55 /* dateptr < buf && buf[-1] == '\n', so strtoul will stop at buf-1 */
56 return strtoul(dateptr
, NULL
, 10);
59 int parse_tag_buffer(struct tag
*item
, const void *data
, unsigned long size
)
61 unsigned char sha1
[20];
63 const char *bufptr
= data
;
64 const char *tail
= bufptr
+ size
;
67 if (item
->object
.parsed
)
69 item
->object
.parsed
= 1;
73 if (memcmp("object ", bufptr
, 7) || get_sha1_hex(bufptr
+ 7, sha1
) || bufptr
[47] != '\n')
75 bufptr
+= 48; /* "object " + sha1 + "\n" */
77 if (prefixcmp(bufptr
, "type "))
80 nl
= memchr(bufptr
, '\n', tail
- bufptr
);
81 if (!nl
|| sizeof(type
) <= (nl
- bufptr
))
83 strncpy(type
, bufptr
, nl
- bufptr
);
84 type
[nl
- bufptr
] = '\0';
87 if (!strcmp(type
, blob_type
)) {
88 item
->tagged
= &lookup_blob(sha1
)->object
;
89 } else if (!strcmp(type
, tree_type
)) {
90 item
->tagged
= &lookup_tree(sha1
)->object
;
91 } else if (!strcmp(type
, commit_type
)) {
92 item
->tagged
= &lookup_commit(sha1
)->object
;
93 } else if (!strcmp(type
, tag_type
)) {
94 item
->tagged
= &lookup_tag(sha1
)->object
;
96 error("Unknown type %s", type
);
100 if (bufptr
+ 4 < tail
&& !prefixcmp(bufptr
, "tag "))
105 nl
= memchr(bufptr
, '\n', tail
- bufptr
);
108 item
->tag
= xmemdupz(bufptr
, nl
- bufptr
);
111 if (bufptr
+ 7 < tail
&& !prefixcmp(bufptr
, "tagger "))
112 item
->date
= parse_tag_date(bufptr
, tail
);
119 int parse_tag(struct tag
*item
)
121 enum object_type type
;
126 if (item
->object
.parsed
)
128 data
= read_sha1_file(item
->object
.sha1
, &type
, &size
);
130 return error("Could not read %s",
131 sha1_to_hex(item
->object
.sha1
));
132 if (type
!= OBJ_TAG
) {
134 return error("Object %s not a tag",
135 sha1_to_hex(item
->object
.sha1
));
137 ret
= parse_tag_buffer(item
, data
, size
);
142 size_t parse_signature(const char *buf
, unsigned long size
)
146 while (len
< size
&& prefixcmp(buf
+ len
, PGP_SIGNATURE
) &&
147 prefixcmp(buf
+ len
, PGP_MESSAGE
)) {
148 eol
= memchr(buf
+ len
, '\n', size
- len
);
149 len
+= eol
? eol
- (buf
+ len
) + 1 : size
- len
;