🌐 AI搜索 & 代理 主页
blob: a51a6d1ea21412f151238e48984bc13110fcbc6c [file] [log] [blame]
Carlos Rica62e09ce2007-07-19 23:42:281/*
2 * Builtin "git tag"
3 *
4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>,
5 * Carlos Rica <jasampler@gmail.com>
6 * Based on git-tag.sh and mktag.c by Linus Torvalds.
7 */
8
9#include "cache.h"
10#include "builtin.h"
11#include "refs.h"
12#include "tag.h"
13#include "run-command.h"
Carlos Rica39686582007-11-09 13:42:5614#include "parse-options.h"
Carlos Rica62e09ce2007-07-19 23:42:2815
Carlos Rica39686582007-11-09 13:42:5616static const char * const git_tag_usage[] = {
Stephan Beyer1b1dd232008-07-13 13:36:1517 "git tag [-a|-s|-u <key-id>] [-f] [-m <msg>|-F <file>] <tagname> [<head>]",
18 "git tag -d <tagname>...",
19 "git tag -l [-n[<num>]] [<pattern>]",
20 "git tag -v <tagname>...",
Carlos Rica39686582007-11-09 13:42:5621 NULL
22};
Carlos Rica62e09ce2007-07-19 23:42:2823
24static char signingkey[1000];
25
Carlos Rica62e09ce2007-07-19 23:42:2826struct tag_filter {
27 const char *pattern;
28 int lines;
Jake Goulding32c35cf2009-01-26 14:13:2529 struct commit_list *with_commit;
Carlos Rica62e09ce2007-07-19 23:42:2830};
31
32#define PGP_SIGNATURE "-----BEGIN PGP SIGNATURE-----"
33
34static int show_reference(const char *refname, const unsigned char *sha1,
35 int flag, void *cb_data)
36{
37 struct tag_filter *filter = cb_data;
38
39 if (!fnmatch(filter->pattern, refname, 0)) {
40 int i;
41 unsigned long size;
42 enum object_type type;
43 char *buf, *sp, *eol;
44 size_t len;
45
Jake Goulding32c35cf2009-01-26 14:13:2546 if (filter->with_commit) {
47 struct commit *commit;
48
49 commit = lookup_commit_reference_gently(sha1, 1);
50 if (!commit)
51 return 0;
52 if (!is_descendant_of(commit, filter->with_commit))
53 return 0;
54 }
55
Carlos Rica62e09ce2007-07-19 23:42:2856 if (!filter->lines) {
57 printf("%s\n", refname);
58 return 0;
59 }
60 printf("%-15s ", refname);
61
Mike Hommeye1f14cc2007-11-03 13:08:0562 buf = read_sha1_file(sha1, &type, &size);
63 if (!buf || !size)
Carlos Rica62e09ce2007-07-19 23:42:2864 return 0;
Mike Hommeye1f14cc2007-11-03 13:08:0565
66 /* skip header */
67 sp = strstr(buf, "\n\n");
68 if (!sp) {
Carlos Ricae317cfa2007-07-21 12:13:1269 free(buf);
70 return 0;
71 }
Carlos Rica62e09ce2007-07-19 23:42:2872 /* only take up to "lines" lines, and strip the signature */
Carlos Ricae317cfa2007-07-21 12:13:1273 for (i = 0, sp += 2;
74 i < filter->lines && sp < buf + size &&
Carlos Rica62e09ce2007-07-19 23:42:2875 prefixcmp(sp, PGP_SIGNATURE "\n");
76 i++) {
77 if (i)
78 printf("\n ");
79 eol = memchr(sp, '\n', size - (sp - buf));
80 len = eol ? eol - sp : size - (sp - buf);
81 fwrite(sp, len, 1, stdout);
82 if (!eol)
83 break;
84 sp = eol + 1;
85 }
86 putchar('\n');
87 free(buf);
88 }
89
90 return 0;
91}
92
Jake Goulding32c35cf2009-01-26 14:13:2593static int list_tags(const char *pattern, int lines,
94 struct commit_list *with_commit)
Carlos Rica62e09ce2007-07-19 23:42:2895{
96 struct tag_filter filter;
Carlos Rica62e09ce2007-07-19 23:42:2897
98 if (pattern == NULL)
Carlos Rica18e32b52007-09-01 05:10:0999 pattern = "*";
Carlos Rica62e09ce2007-07-19 23:42:28100
Carlos Rica18e32b52007-09-01 05:10:09101 filter.pattern = pattern;
Carlos Rica62e09ce2007-07-19 23:42:28102 filter.lines = lines;
Jake Goulding32c35cf2009-01-26 14:13:25103 filter.with_commit = with_commit;
Carlos Rica62e09ce2007-07-19 23:42:28104
105 for_each_tag_ref(show_reference, (void *) &filter);
106
Carlos Rica62e09ce2007-07-19 23:42:28107 return 0;
108}
109
Carlos Ricae317cfa2007-07-21 12:13:12110typedef int (*each_tag_name_fn)(const char *name, const char *ref,
Carlos Rica62e09ce2007-07-19 23:42:28111 const unsigned char *sha1);
112
Carlos Ricae317cfa2007-07-21 12:13:12113static int for_each_tag_name(const char **argv, each_tag_name_fn fn)
Carlos Rica62e09ce2007-07-19 23:42:28114{
115 const char **p;
116 char ref[PATH_MAX];
117 int had_error = 0;
118 unsigned char sha1[20];
119
120 for (p = argv; *p; p++) {
121 if (snprintf(ref, sizeof(ref), "refs/tags/%s", *p)
122 >= sizeof(ref)) {
123 error("tag name too long: %.*s...", 50, *p);
124 had_error = 1;
125 continue;
126 }
127 if (!resolve_ref(ref, sha1, 1, NULL)) {
128 error("tag '%s' not found.", *p);
129 had_error = 1;
130 continue;
131 }
132 if (fn(*p, ref, sha1))
133 had_error = 1;
134 }
135 return had_error;
136}
137
138static int delete_tag(const char *name, const char *ref,
139 const unsigned char *sha1)
140{
Miklos Vajnaeca35a22008-10-26 02:33:56141 if (delete_ref(ref, sha1, 0))
Carlos Rica62e09ce2007-07-19 23:42:28142 return 1;
143 printf("Deleted tag '%s'\n", name);
144 return 0;
145}
146
147static int verify_tag(const char *name, const char *ref,
148 const unsigned char *sha1)
149{
150 const char *argv_verify_tag[] = {"git-verify-tag",
151 "-v", "SHA1_HEX", NULL};
152 argv_verify_tag[2] = sha1_to_hex(sha1);
153
154 if (run_command_v_opt(argv_verify_tag, 0))
155 return error("could not verify the tag '%s'", name);
156 return 0;
157}
158
Pierre Habouzitfd17f5b2007-09-10 10:35:09159static int do_sign(struct strbuf *buffer)
Carlos Rica62e09ce2007-07-19 23:42:28160{
161 struct child_process gpg;
162 const char *args[4];
163 char *bracket;
164 int len;
Johannes Schindelinc4adea82008-07-11 16:55:57165 int i, j;
Carlos Rica62e09ce2007-07-19 23:42:28166
167 if (!*signingkey) {
Junio C Hamano774751a2007-12-09 01:32:08168 if (strlcpy(signingkey, git_committer_info(IDENT_ERROR_ON_NO_NAME),
Carlos Ricae317cfa2007-07-21 12:13:12169 sizeof(signingkey)) > sizeof(signingkey) - 1)
Carlos Rica62e09ce2007-07-19 23:42:28170 return error("committer info too long.");
171 bracket = strchr(signingkey, '>');
172 if (bracket)
173 bracket[1] = '\0';
174 }
175
Carlos Ricaaba91192007-09-09 00:39:29176 /* When the username signingkey is bad, program could be terminated
177 * because gpg exits without reading and then write gets SIGPIPE. */
178 signal(SIGPIPE, SIG_IGN);
179
Carlos Rica62e09ce2007-07-19 23:42:28180 memset(&gpg, 0, sizeof(gpg));
181 gpg.argv = args;
182 gpg.in = -1;
183 gpg.out = -1;
184 args[0] = "gpg";
185 args[1] = "-bsau";
186 args[2] = signingkey;
187 args[3] = NULL;
188
189 if (start_command(&gpg))
190 return error("could not run gpg.");
191
Pierre Habouzitfd17f5b2007-09-10 10:35:09192 if (write_in_full(gpg.in, buffer->buf, buffer->len) != buffer->len) {
Carlos Ricaaba91192007-09-09 00:39:29193 close(gpg.in);
Johannes Sixte72ae282008-02-16 17:36:38194 close(gpg.out);
Carlos Ricaaba91192007-09-09 00:39:29195 finish_command(&gpg);
196 return error("gpg did not accept the tag data");
197 }
Carlos Rica62e09ce2007-07-19 23:42:28198 close(gpg.in);
Pierre Habouzitfd17f5b2007-09-10 10:35:09199 len = strbuf_read(buffer, gpg.out, 1024);
Johannes Sixte72ae282008-02-16 17:36:38200 close(gpg.out);
Carlos Rica62e09ce2007-07-19 23:42:28201
Carlos Ricaaba91192007-09-09 00:39:29202 if (finish_command(&gpg) || !len || len < 0)
203 return error("gpg failed to sign the tag");
Carlos Rica62e09ce2007-07-19 23:42:28204
Johannes Schindelinc4adea82008-07-11 16:55:57205 /* Strip CR from the line endings, in case we are on Windows. */
206 for (i = j = 0; i < buffer->len; i++)
207 if (buffer->buf[i] != '\r') {
208 if (i != j)
209 buffer->buf[j] = buffer->buf[i];
210 j++;
211 }
212 strbuf_setlen(buffer, j);
213
Pierre Habouzitfd17f5b2007-09-10 10:35:09214 return 0;
Carlos Rica62e09ce2007-07-19 23:42:28215}
216
217static const char tag_template[] =
218 "\n"
219 "#\n"
220 "# Write a tag message\n"
221 "#\n";
222
Linus Torvaldsbe15f502007-12-11 04:08:06223static void set_signingkey(const char *value)
224{
225 if (strlcpy(signingkey, value, sizeof(signingkey)) >= sizeof(signingkey))
226 die("signing key value too long (%.10s...)", value);
227}
228
Johannes Schindelinef90d6d2008-05-14 17:46:53229static int git_tag_config(const char *var, const char *value, void *cb)
Carlos Rica62e09ce2007-07-19 23:42:28230{
231 if (!strcmp(var, "user.signingkey")) {
232 if (!value)
Christian Couderc96a6d32008-07-06 04:10:04233 return config_error_nonbool(var);
Linus Torvaldsbe15f502007-12-11 04:08:06234 set_signingkey(value);
Carlos Rica62e09ce2007-07-19 23:42:28235 return 0;
236 }
237
Johannes Schindelinef90d6d2008-05-14 17:46:53238 return git_default_config(var, value, cb);
Carlos Rica62e09ce2007-07-19 23:42:28239}
240
Mike Hommeybab81182007-11-04 00:11:14241static void write_tag_body(int fd, const unsigned char *sha1)
242{
243 unsigned long size;
244 enum object_type type;
245 char *buf, *sp, *eob;
246 size_t len;
247
248 buf = read_sha1_file(sha1, &type, &size);
249 if (!buf)
250 return;
251 /* skip header */
252 sp = strstr(buf, "\n\n");
253
254 if (!sp || !size || type != OBJ_TAG) {
255 free(buf);
256 return;
257 }
258 sp += 2; /* skip the 2 LFs */
259 eob = strstr(sp, "\n" PGP_SIGNATURE "\n");
260 if (eob)
261 len = eob - sp;
262 else
263 len = buf + size - sp;
264 write_or_die(fd, sp, len);
265
266 free(buf);
267}
268
Jeff King3927bbe2008-12-06 19:40:34269static int build_tag_object(struct strbuf *buf, int sign, unsigned char *result)
270{
271 if (sign && do_sign(buf) < 0)
272 return error("unable to sign the tag");
273 if (write_sha1_file(buf->buf, buf->len, tag_type, result) < 0)
274 return error("unable to write tag file");
275 return 0;
276}
277
Carlos Rica62e09ce2007-07-19 23:42:28278static void create_tag(const unsigned char *object, const char *tag,
Pierre Habouzitfd17f5b2007-09-10 10:35:09279 struct strbuf *buf, int message, int sign,
Junio C Hamanobd46c9a2007-11-23 07:16:51280 unsigned char *prev, unsigned char *result)
Carlos Rica62e09ce2007-07-19 23:42:28281{
282 enum object_type type;
Pierre Habouzitfd17f5b2007-09-10 10:35:09283 char header_buf[1024];
284 int header_len;
Jeff King3927bbe2008-12-06 19:40:34285 char *path = NULL;
Carlos Rica62e09ce2007-07-19 23:42:28286
287 type = sha1_object_info(object, NULL);
Carlos Ricae317cfa2007-07-21 12:13:12288 if (type <= OBJ_NONE)
Carlos Rica62e09ce2007-07-19 23:42:28289 die("bad object type.");
290
291 header_len = snprintf(header_buf, sizeof(header_buf),
292 "object %s\n"
293 "type %s\n"
294 "tag %s\n"
295 "tagger %s\n\n",
296 sha1_to_hex(object),
297 typename(type),
298 tag,
Junio C Hamano774751a2007-12-09 01:32:08299 git_committer_info(IDENT_ERROR_ON_NO_NAME));
Carlos Rica62e09ce2007-07-19 23:42:28300
Carlos Ricae317cfa2007-07-21 12:13:12301 if (header_len > sizeof(header_buf) - 1)
Carlos Rica62e09ce2007-07-19 23:42:28302 die("tag header too big.");
303
304 if (!message) {
Carlos Rica62e09ce2007-07-19 23:42:28305 int fd;
306
307 /* write the template message before editing: */
Alex Riesena4f34cb2008-10-27 10:22:09308 path = git_pathdup("TAG_EDITMSG");
Carlos Rica62e09ce2007-07-19 23:42:28309 fd = open(path, O_CREAT | O_TRUNC | O_WRONLY, 0600);
310 if (fd < 0)
Thomas Rastd824cbb2009-06-27 15:58:46311 die_errno("could not create file '%s'", path);
Mike Hommeybab81182007-11-04 00:11:14312
313 if (!is_null_sha1(prev))
314 write_tag_body(fd, prev);
315 else
316 write_or_die(fd, tag_template, strlen(tag_template));
Carlos Rica62e09ce2007-07-19 23:42:28317 close(fd);
318
Stephan Beyer71982032008-07-25 16:28:42319 if (launch_editor(path, buf, NULL)) {
320 fprintf(stderr,
321 "Please supply the message using either -m or -F option.\n");
322 exit(1);
323 }
Carlos Rica62e09ce2007-07-19 23:42:28324 }
Carlos Rica62e09ce2007-07-19 23:42:28325
Kristian Høgsberg6d69b6f2007-09-18 00:06:45326 stripspace(buf, 1);
Carlos Rica62e09ce2007-07-19 23:42:28327
Pierre Habouzitfd17f5b2007-09-10 10:35:09328 if (!message && !buf->len)
Carlos Rica62e09ce2007-07-19 23:42:28329 die("no tag message?");
330
Pierre Habouzitfd17f5b2007-09-10 10:35:09331 strbuf_insert(buf, 0, header_buf, header_len);
Carlos Rica62e09ce2007-07-19 23:42:28332
Jeff King3927bbe2008-12-06 19:40:34333 if (build_tag_object(buf, sign, result) < 0) {
334 if (path)
335 fprintf(stderr, "The tag message has been left in %s\n",
336 path);
337 exit(128);
338 }
339 if (path) {
Alex Riesen691f1a22009-04-29 21:22:56340 unlink_or_warn(path);
Jeff King3927bbe2008-12-06 19:40:34341 free(path);
342 }
Carlos Rica62e09ce2007-07-19 23:42:28343}
344
Junio C Hamanobd46c9a2007-11-23 07:16:51345struct msg_arg {
346 int given;
347 struct strbuf buf;
348};
349
350static int parse_msg_arg(const struct option *opt, const char *arg, int unset)
351{
352 struct msg_arg *msg = opt->value;
353
354 if (!arg)
355 return -1;
356 if (msg->buf.len)
357 strbuf_addstr(&(msg->buf), "\n\n");
358 strbuf_addstr(&(msg->buf), arg);
359 msg->given = 1;
360 return 0;
361}
362
Carlos Rica62e09ce2007-07-19 23:42:28363int cmd_tag(int argc, const char **argv, const char *prefix)
364{
Brandon Caseyf285a2d2008-10-09 19:12:12365 struct strbuf buf = STRBUF_INIT;
Carlos Rica62e09ce2007-07-19 23:42:28366 unsigned char object[20], prev[20];
Carlos Rica62e09ce2007-07-19 23:42:28367 char ref[PATH_MAX];
368 const char *object_ref, *tag;
Carlos Rica62e09ce2007-07-19 23:42:28369 struct ref_lock *lock;
370
Samuel Tardieu6fa83422008-11-04 23:20:31371 int annotate = 0, sign = 0, force = 0, lines = -1,
Pierre Habouzit78d776a2007-12-21 10:50:58372 list = 0, delete = 0, verify = 0;
Junio C Hamanodbd0f5c2008-08-06 18:43:47373 const char *msgfile = NULL, *keyid = NULL;
Junio C Hamanobd46c9a2007-11-23 07:16:51374 struct msg_arg msg = { 0, STRBUF_INIT };
Jake Goulding32c35cf2009-01-26 14:13:25375 struct commit_list *with_commit = NULL;
Carlos Rica39686582007-11-09 13:42:56376 struct option options[] = {
Pierre Habouzit78d776a2007-12-21 10:50:58377 OPT_BOOLEAN('l', NULL, &list, "list tag names"),
Stephen Boyde3a0ca82009-06-04 23:43:56378 { OPTION_INTEGER, 'n', NULL, &lines, "n",
379 "print <n> lines of each tag message",
Carlos Rica39686582007-11-09 13:42:56380 PARSE_OPT_OPTARG, NULL, 1 },
381 OPT_BOOLEAN('d', NULL, &delete, "delete tags"),
382 OPT_BOOLEAN('v', NULL, &verify, "verify tags"),
383
384 OPT_GROUP("Tag creation options"),
385 OPT_BOOLEAN('a', NULL, &annotate,
386 "annotated tag, needs a message"),
Junio C Hamanobd46c9a2007-11-23 07:16:51387 OPT_CALLBACK('m', NULL, &msg, "msg",
388 "message for the tag", parse_msg_arg),
Stephen Boyddf217ed2009-05-23 18:53:13389 OPT_FILENAME('F', NULL, &msgfile, "message in a file"),
Carlos Rica39686582007-11-09 13:42:56390 OPT_BOOLEAN('s', NULL, &sign, "annotated and GPG-signed tag"),
391 OPT_STRING('u', NULL, &keyid, "key-id",
392 "use another key to sign the tag"),
393 OPT_BOOLEAN('f', NULL, &force, "replace the tag if exists"),
Jake Goulding32c35cf2009-01-26 14:13:25394
395 OPT_GROUP("Tag listing options"),
396 {
397 OPTION_CALLBACK, 0, "contains", &with_commit, "commit",
398 "print only tags that contain the commit",
399 PARSE_OPT_LASTARG_DEFAULT,
400 parse_opt_with_commit, (intptr_t)"HEAD",
401 },
Carlos Rica39686582007-11-09 13:42:56402 OPT_END()
403 };
404
Johannes Schindelinef90d6d2008-05-14 17:46:53405 git_config(git_tag_config, NULL);
Carlos Rica39686582007-11-09 13:42:56406
Stephen Boyd37782922009-05-23 18:53:12407 argc = parse_options(argc, argv, prefix, options, git_tag_usage, 0);
Carlos Rica39686582007-11-09 13:42:56408
Linus Torvaldsbe15f502007-12-11 04:08:06409 if (keyid) {
410 sign = 1;
411 set_signingkey(keyid);
412 }
Junio C Hamanoc1a41b92007-11-25 23:21:42413 if (sign)
414 annotate = 1;
Samuel Tardieu6fa83422008-11-04 23:20:31415 if (argc == 0 && !(delete || verify))
416 list = 1;
Junio C Hamanoc1a41b92007-11-25 23:21:42417
Samuel Tardieu6fa83422008-11-04 23:20:31418 if ((annotate || msg.given || msgfile || force) &&
419 (list || delete || verify))
420 usage_with_options(git_tag_usage, options);
421
422 if (list + delete + verify > 1)
423 usage_with_options(git_tag_usage, options);
Carlos Rica39686582007-11-09 13:42:56424 if (list)
Jake Goulding32c35cf2009-01-26 14:13:25425 return list_tags(argv[0], lines == -1 ? 0 : lines,
426 with_commit);
Samuel Tardieu6fa83422008-11-04 23:20:31427 if (lines != -1)
428 die("-n option is only allowed with -l.");
Jake Goulding32c35cf2009-01-26 14:13:25429 if (with_commit)
430 die("--contains option is only allowed with -l.");
Carlos Rica39686582007-11-09 13:42:56431 if (delete)
432 return for_each_tag_name(argv, delete_tag);
433 if (verify)
434 return for_each_tag_name(argv, verify_tag);
435
Junio C Hamanobd46c9a2007-11-23 07:16:51436 if (msg.given || msgfile) {
437 if (msg.given && msgfile)
Carlos Rica39686582007-11-09 13:42:56438 die("only one -F or -m option is allowed.");
439 annotate = 1;
Junio C Hamanobd46c9a2007-11-23 07:16:51440 if (msg.given)
441 strbuf_addbuf(&buf, &(msg.buf));
Carlos Rica39686582007-11-09 13:42:56442 else {
443 if (!strcmp(msgfile, "-")) {
Pierre Habouzit387e7e12007-09-27 13:25:55444 if (strbuf_read(&buf, 0, 1024) < 0)
Thomas Rast0721c312009-06-27 15:58:47445 die_errno("cannot read '%s'", msgfile);
Pierre Habouzit387e7e12007-09-27 13:25:55446 } else {
Carlos Rica39686582007-11-09 13:42:56447 if (strbuf_read_file(&buf, msgfile, 1024) < 0)
Thomas Rastd824cbb2009-06-27 15:58:46448 die_errno("could not open or read '%s'",
449 msgfile);
Carlos Rica62e09ce2007-07-19 23:42:28450 }
Carlos Rica62e09ce2007-07-19 23:42:28451 }
Carlos Rica62e09ce2007-07-19 23:42:28452 }
453
Carlos Rica39686582007-11-09 13:42:56454 tag = argv[0];
Carlos Rica62e09ce2007-07-19 23:42:28455
Carlos Rica39686582007-11-09 13:42:56456 object_ref = argc == 2 ? argv[1] : "HEAD";
457 if (argc > 2)
Carlos Rica62e09ce2007-07-19 23:42:28458 die("too many params");
459
460 if (get_sha1(object_ref, object))
461 die("Failed to resolve '%s' as a valid ref.", object_ref);
462
Carlos Ricae317cfa2007-07-21 12:13:12463 if (snprintf(ref, sizeof(ref), "refs/tags/%s", tag) > sizeof(ref) - 1)
Carlos Rica62e09ce2007-07-19 23:42:28464 die("tag name too long: %.*s...", 50, tag);
465 if (check_ref_format(ref))
466 die("'%s' is not a valid tag name.", tag);
467
468 if (!resolve_ref(ref, prev, 1, NULL))
469 hashclr(prev);
470 else if (!force)
471 die("tag '%s' already exists", tag);
472
473 if (annotate)
Junio C Hamanobd46c9a2007-11-23 07:16:51474 create_tag(object, tag, &buf, msg.given || msgfile,
475 sign, prev, object);
Carlos Rica62e09ce2007-07-19 23:42:28476
477 lock = lock_any_ref_for_update(ref, prev, 0);
478 if (!lock)
479 die("%s: cannot lock the ref", ref);
480 if (write_ref_sha1(lock, object, NULL) < 0)
481 die("%s: cannot update the ref", ref);
482
Pierre Habouzitfd17f5b2007-09-10 10:35:09483 strbuf_release(&buf);
Carlos Rica62e09ce2007-07-19 23:42:28484 return 0;
485}