]> git.ipfire.org Git - thirdparty/git.git/blame - tag.c
Merge branch 'sb/object-store-grafts' into sb/object-store-lookup
[thirdparty/git.git] / tag.c
CommitLineData
2636f614 1#include "cache.h"
8f1d2e6f 2#include "tag.h"
cbd53a21 3#include "object-store.h"
0ab17950
NP
4#include "commit.h"
5#include "tree.h"
6#include "blob.h"
14ba97f8 7#include "alloc.h"
94240b91 8#include "gpg-interface.h"
2636f614
DB
9
10const char *tag_type = "tag";
11
45a227ef
ST
12static int run_gpg_verify(const char *buf, unsigned long size, unsigned flags)
13{
14 struct signature_check sigc;
15 size_t payload_size;
16 int ret;
17
18 memset(&sigc, 0, sizeof(sigc));
19
20 payload_size = parse_signature(buf, size);
21
22 if (size == payload_size) {
23 if (flags & GPG_VERIFY_VERBOSE)
24 write_in_full(1, buf, payload_size);
25 return error("no signature found");
26 }
27
28 ret = check_signature(buf, payload_size, buf + payload_size,
29 size - payload_size, &sigc);
94240b91
LP
30
31 if (!(flags & GPG_VERIFY_OMIT_STATUS))
32 print_signature_buffer(&sigc, flags);
45a227ef
ST
33
34 signature_check_clear(&sigc);
35 return ret;
36}
37
84571760 38int gpg_verify_tag(const struct object_id *oid, const char *name_to_report,
45a227ef
ST
39 unsigned flags)
40{
41 enum object_type type;
42 char *buf;
43 unsigned long size;
44 int ret;
45
0df8e965 46 type = oid_object_info(the_repository, oid, NULL);
45a227ef
ST
47 if (type != OBJ_TAG)
48 return error("%s: cannot verify a non-tag object of type %s.",
49 name_to_report ?
50 name_to_report :
aab9583f 51 find_unique_abbrev(oid, DEFAULT_ABBREV),
debca9d2 52 type_name(type));
45a227ef 53
b4f5aca4 54 buf = read_object_file(oid, &type, &size);
45a227ef
ST
55 if (!buf)
56 return error("%s: unable to read file.",
57 name_to_report ?
58 name_to_report :
aab9583f 59 find_unique_abbrev(oid, DEFAULT_ABBREV));
45a227ef
ST
60
61 ret = run_gpg_verify(buf, size, flags);
62
63 free(buf);
64 return ret;
65}
66
9534f40b 67struct object *deref_tag(struct object *o, const char *warn, int warnlen)
37fde874 68{
1974632c 69 while (o && o->type == OBJ_TAG)
24e8a3c9 70 if (((struct tag *)o)->tagged)
c251c83d 71 o = parse_object(&((struct tag *)o)->tagged->oid);
24e8a3c9
MK
72 else
73 o = NULL;
9534f40b
JH
74 if (!o && warn) {
75 if (!warnlen)
76 warnlen = strlen(warn);
77 error("missing object referenced by '%.*s'", warnlen, warn);
78 }
37fde874
JH
79 return o;
80}
81
90108a24
JK
82struct object *deref_tag_noverify(struct object *o)
83{
84 while (o && o->type == OBJ_TAG) {
c251c83d 85 o = parse_object(&o->oid);
90108a24
JK
86 if (o && o->type == OBJ_TAG && ((struct tag *)o)->tagged)
87 o = ((struct tag *)o)->tagged;
88 else
89 o = NULL;
90 }
91 return o;
92}
93
d3101b53 94struct tag *lookup_tag(const struct object_id *oid)
2636f614 95{
d3101b53 96 struct object *obj = lookup_object(oid->hash);
100c5f3b 97 if (!obj)
68f95d38 98 return create_object(the_repository, oid->hash,
a0bd9086 99 alloc_tag_node(the_repository));
8ff226a9 100 return object_as_type(obj, OBJ_TAG, 0);
2636f614
DB
101}
102
dddbad72 103static timestamp_t parse_tag_date(const char *buf, const char *tail)
e451d06b
SP
104{
105 const char *dateptr;
106
107 while (buf < tail && *buf++ != '>')
108 /* nada */;
109 if (buf >= tail)
110 return 0;
111 dateptr = buf;
112 while (buf < tail && *buf++ != '\n')
113 /* nada */;
114 if (buf >= tail)
115 return 0;
1aeb7e75
JS
116 /* dateptr < buf && buf[-1] == '\n', so parsing will stop at buf-1 */
117 return parse_timestamp(dateptr, NULL, 10);
e451d06b
SP
118}
119
14ba97f8
SB
120void release_tag_memory(struct tag *t)
121{
122 free(t->tag);
123 t->tagged = NULL;
124 t->object.parsed = 0;
125 t->date = 0;
126}
127
cf7b1cad 128int parse_tag_buffer(struct tag *item, const void *data, unsigned long size)
2636f614 129{
1e4085a0 130 struct object_id oid;
89e4202f 131 char type[20];
28de5b6b
SP
132 const char *bufptr = data;
133 const char *tail = bufptr + size;
134 const char *nl;
ae200ee5 135
2e0052a5
SP
136 if (item->object.parsed)
137 return 0;
138 item->object.parsed = 1;
2636f614 139
1e4085a0 140 if (size < GIT_SHA1_HEXSZ + 24)
bd2c39f5 141 return -1;
1e4085a0 142 if (memcmp("object ", bufptr, 7) || parse_oid_hex(bufptr + 7, &oid, &bufptr) || *bufptr++ != '\n')
bd2c39f5 143 return -1;
2636f614 144
59556548 145 if (!starts_with(bufptr, "type "))
bd2c39f5 146 return -1;
28de5b6b
SP
147 bufptr += 5;
148 nl = memchr(bufptr, '\n', tail - bufptr);
149 if (!nl || sizeof(type) <= (nl - bufptr))
bd2c39f5 150 return -1;
eddda371 151 memcpy(type, bufptr, nl - bufptr);
28de5b6b
SP
152 type[nl - bufptr] = '\0';
153 bufptr = nl + 1;
2636f614 154
0ab17950 155 if (!strcmp(type, blob_type)) {
7099153e 156 item->tagged = (struct object *)lookup_blob(&oid);
0ab17950 157 } else if (!strcmp(type, tree_type)) {
7099153e 158 item->tagged = (struct object *)lookup_tree(&oid);
0ab17950 159 } else if (!strcmp(type, commit_type)) {
7099153e 160 item->tagged = (struct object *)lookup_commit(&oid);
0ab17950 161 } else if (!strcmp(type, tag_type)) {
7099153e 162 item->tagged = (struct object *)lookup_tag(&oid);
0ab17950
NP
163 } else {
164 error("Unknown type %s", type);
165 item->tagged = NULL;
166 }
167
59556548 168 if (bufptr + 4 < tail && starts_with(bufptr, "tag "))
85594252
NTND
169 ; /* good */
170 else
28de5b6b
SP
171 return -1;
172 bufptr += 4;
173 nl = memchr(bufptr, '\n', tail - bufptr);
174 if (!nl)
175 return -1;
176 item->tag = xmemdupz(bufptr, nl - bufptr);
177 bufptr = nl + 1;
178
59556548 179 if (bufptr + 7 < tail && starts_with(bufptr, "tagger "))
e451d06b
SP
180 item->date = parse_tag_date(bufptr, tail);
181 else
182 item->date = 0;
183
2636f614 184 return 0;
bd2c39f5 185}
13019d41 186
bd2c39f5
NP
187int parse_tag(struct tag *item)
188{
21666f1a 189 enum object_type type;
bd2c39f5
NP
190 void *data;
191 unsigned long size;
192 int ret;
193
194 if (item->object.parsed)
195 return 0;
b4f5aca4 196 data = read_object_file(&item->object.oid, &type, &size);
bd2c39f5
NP
197 if (!data)
198 return error("Could not read %s",
f2fd0760 199 oid_to_hex(&item->object.oid));
21666f1a 200 if (type != OBJ_TAG) {
bd2c39f5
NP
201 free(data);
202 return error("Object %s not a tag",
f2fd0760 203 oid_to_hex(&item->object.oid));
bd2c39f5
NP
204 }
205 ret = parse_tag_buffer(item, data, size);
13019d41 206 free(data);
bd2c39f5 207 return ret;
2636f614 208}