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.
13 #include "run-command.h"
14 #include "parse-options.h"
16 static const char * const git_tag_usage
[] = {
17 "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>...",
24 static char signingkey
[1000];
29 struct commit_list
*with_commit
;
32 #define PGP_SIGNATURE "-----BEGIN PGP SIGNATURE-----"
34 static int show_reference(const char *refname
, const unsigned char *sha1
,
35 int flag
, void *cb_data
)
37 struct tag_filter
*filter
= cb_data
;
39 if (!fnmatch(filter
->pattern
, refname
, 0)) {
42 enum object_type type
;
46 if (filter
->with_commit
) {
47 struct commit
*commit
;
49 commit
= lookup_commit_reference_gently(sha1
, 1);
52 if (!is_descendant_of(commit
, filter
->with_commit
))
57 printf("%s\n", refname
);
60 printf("%-15s ", refname
);
62 buf
= read_sha1_file(sha1
, &type
, &size
);
67 sp
= strstr(buf
, "\n\n");
72 /* only take up to "lines" lines, and strip the signature */
74 i
< filter
->lines
&& sp
< buf
+ size
&&
75 prefixcmp(sp
, PGP_SIGNATURE
"\n");
79 eol
= memchr(sp
, '\n', size
- (sp
- buf
));
80 len
= eol
? eol
- sp
: size
- (sp
- buf
);
81 fwrite(sp
, len
, 1, stdout
);
93 static int list_tags(const char *pattern
, int lines
,
94 struct commit_list
*with_commit
)
96 struct tag_filter filter
;
101 filter
.pattern
= pattern
;
102 filter
.lines
= lines
;
103 filter
.with_commit
= with_commit
;
105 for_each_tag_ref(show_reference
, (void *) &filter
);
110 typedef int (*each_tag_name_fn
)(const char *name
, const char *ref
,
111 const unsigned char *sha1
);
113 static int for_each_tag_name(const char **argv
, each_tag_name_fn fn
)
118 unsigned char sha1
[20];
120 for (p
= argv
; *p
; p
++) {
121 if (snprintf(ref
, sizeof(ref
), "refs/tags/%s", *p
)
123 error("tag name too long: %.*s...", 50, *p
);
127 if (!resolve_ref(ref
, sha1
, 1, NULL
)) {
128 error("tag '%s' not found.", *p
);
132 if (fn(*p
, ref
, sha1
))
138 static int delete_tag(const char *name
, const char *ref
,
139 const unsigned char *sha1
)
141 if (delete_ref(ref
, sha1
, 0))
143 printf("Deleted tag '%s' (was %s)\n", name
, find_unique_abbrev(sha1
, DEFAULT_ABBREV
));
147 static int verify_tag(const char *name
, const char *ref
,
148 const unsigned char *sha1
)
150 const char *argv_verify_tag
[] = {"git-verify-tag",
151 "-v", "SHA1_HEX", NULL
};
152 argv_verify_tag
[2] = sha1_to_hex(sha1
);
154 if (run_command_v_opt(argv_verify_tag
, 0))
155 return error("could not verify the tag '%s'", name
);
159 static int do_sign(struct strbuf
*buffer
)
161 struct child_process gpg
;
168 if (strlcpy(signingkey
, git_committer_info(IDENT_ERROR_ON_NO_NAME
),
169 sizeof(signingkey
)) > sizeof(signingkey
) - 1)
170 return error("committer info too long.");
171 bracket
= strchr(signingkey
, '>');
176 /* 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
);
180 memset(&gpg
, 0, sizeof(gpg
));
186 args
[2] = signingkey
;
189 if (start_command(&gpg
))
190 return error("could not run gpg.");
192 if (write_in_full(gpg
.in
, buffer
->buf
, buffer
->len
) != buffer
->len
) {
195 finish_command(&gpg
);
196 return error("gpg did not accept the tag data");
199 len
= strbuf_read(buffer
, gpg
.out
, 1024);
202 if (finish_command(&gpg
) || !len
|| len
< 0)
203 return error("gpg failed to sign the tag");
205 /* 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') {
209 buffer
->buf
[j
] = buffer
->buf
[i
];
212 strbuf_setlen(buffer
, j
);
217 static const char tag_template
[] =
220 "# Write a tag message\n"
223 static void set_signingkey(const char *value
)
225 if (strlcpy(signingkey
, value
, sizeof(signingkey
)) >= sizeof(signingkey
))
226 die("signing key value too long (%.10s...)", value
);
229 static int git_tag_config(const char *var
, const char *value
, void *cb
)
231 if (!strcmp(var
, "user.signingkey")) {
233 return config_error_nonbool(var
);
234 set_signingkey(value
);
238 return git_default_config(var
, value
, cb
);
241 static void write_tag_body(int fd
, const unsigned char *sha1
)
244 enum object_type type
;
245 char *buf
, *sp
, *eob
;
248 buf
= read_sha1_file(sha1
, &type
, &size
);
252 sp
= strstr(buf
, "\n\n");
254 if (!sp
|| !size
|| type
!= OBJ_TAG
) {
258 sp
+= 2; /* skip the 2 LFs */
259 eob
= strstr(sp
, "\n" PGP_SIGNATURE
"\n");
263 len
= buf
+ size
- sp
;
264 write_or_die(fd
, sp
, len
);
269 static int build_tag_object(struct strbuf
*buf
, int sign
, unsigned char *result
)
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");
278 static void create_tag(const unsigned char *object
, const char *tag
,
279 struct strbuf
*buf
, int message
, int sign
,
280 unsigned char *prev
, unsigned char *result
)
282 enum object_type type
;
283 char header_buf
[1024];
287 type
= sha1_object_info(object
, NULL
);
288 if (type
<= OBJ_NONE
)
289 die("bad object type.");
291 header_len
= snprintf(header_buf
, sizeof(header_buf
),
299 git_committer_info(IDENT_ERROR_ON_NO_NAME
));
301 if (header_len
> sizeof(header_buf
) - 1)
302 die("tag header too big.");
307 /* write the template message before editing: */
308 path
= git_pathdup("TAG_EDITMSG");
309 fd
= open(path
, O_CREAT
| O_TRUNC
| O_WRONLY
, 0600);
311 die_errno("could not create file '%s'", path
);
313 if (!is_null_sha1(prev
))
314 write_tag_body(fd
, prev
);
316 write_or_die(fd
, tag_template
, strlen(tag_template
));
319 if (launch_editor(path
, buf
, NULL
)) {
321 "Please supply the message using either -m or -F option.\n");
328 if (!message
&& !buf
->len
)
329 die("no tag message?");
331 strbuf_insert(buf
, 0, header_buf
, header_len
);
333 if (build_tag_object(buf
, sign
, result
) < 0) {
335 fprintf(stderr
, "The tag message has been left in %s\n",
340 unlink_or_warn(path
);
350 static int parse_msg_arg(const struct option
*opt
, const char *arg
, int unset
)
352 struct msg_arg
*msg
= opt
->value
;
357 strbuf_addstr(&(msg
->buf
), "\n\n");
358 strbuf_addstr(&(msg
->buf
), arg
);
363 int cmd_tag(int argc
, const char **argv
, const char *prefix
)
365 struct strbuf buf
= STRBUF_INIT
;
366 unsigned char object
[20], prev
[20];
368 const char *object_ref
, *tag
;
369 struct ref_lock
*lock
;
371 int annotate
= 0, sign
= 0, force
= 0, lines
= -1,
372 list
= 0, delete = 0, verify
= 0;
373 const char *msgfile
= NULL
, *keyid
= NULL
;
374 struct msg_arg msg
= { 0, STRBUF_INIT
};
375 struct commit_list
*with_commit
= NULL
;
376 struct option options
[] = {
377 OPT_BOOLEAN('l', NULL
, &list
, "list tag names"),
378 { OPTION_INTEGER
, 'n', NULL
, &lines
, "n",
379 "print <n> lines of each tag message",
380 PARSE_OPT_OPTARG
, NULL
, 1 },
381 OPT_BOOLEAN('d', NULL
, &delete, "delete tags"),
382 OPT_BOOLEAN('v', NULL
, &verify
, "verify tags"),
384 OPT_GROUP("Tag creation options"),
385 OPT_BOOLEAN('a', NULL
, &annotate
,
386 "annotated tag, needs a message"),
387 OPT_CALLBACK('m', NULL
, &msg
, "msg",
388 "message for the tag", parse_msg_arg
),
389 OPT_FILENAME('F', NULL
, &msgfile
, "message in a file"),
390 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', "force", &force
, "replace the tag if exists"),
395 OPT_GROUP("Tag listing options"),
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",
405 git_config(git_tag_config
, NULL
);
407 argc
= parse_options(argc
, argv
, prefix
, options
, git_tag_usage
, 0);
411 set_signingkey(keyid
);
415 if (argc
== 0 && !(delete || verify
))
418 if ((annotate
|| msg
.given
|| msgfile
|| force
) &&
419 (list
|| delete || verify
))
420 usage_with_options(git_tag_usage
, options
);
422 if (list
+ delete + verify
> 1)
423 usage_with_options(git_tag_usage
, options
);
425 return list_tags(argv
[0], lines
== -1 ? 0 : lines
,
428 die("-n option is only allowed with -l.");
430 die("--contains option is only allowed with -l.");
432 return for_each_tag_name(argv
, delete_tag
);
434 return for_each_tag_name(argv
, verify_tag
);
436 if (msg
.given
|| msgfile
) {
437 if (msg
.given
&& msgfile
)
438 die("only one -F or -m option is allowed.");
441 strbuf_addbuf(&buf
, &(msg
.buf
));
443 if (!strcmp(msgfile
, "-")) {
444 if (strbuf_read(&buf
, 0, 1024) < 0)
445 die_errno("cannot read '%s'", msgfile
);
447 if (strbuf_read_file(&buf
, msgfile
, 1024) < 0)
448 die_errno("could not open or read '%s'",
456 object_ref
= argc
== 2 ? argv
[1] : "HEAD";
458 die("too many params");
460 if (get_sha1(object_ref
, object
))
461 die("Failed to resolve '%s' as a valid ref.", object_ref
);
463 if (snprintf(ref
, sizeof(ref
), "refs/tags/%s", tag
) > sizeof(ref
) - 1)
464 die("tag name too long: %.*s...", 50, tag
);
465 if (check_ref_format(ref
))
466 die("'%s' is not a valid tag name.", tag
);
468 if (!resolve_ref(ref
, prev
, 1, NULL
))
471 die("tag '%s' already exists", tag
);
474 create_tag(object
, tag
, &buf
, msg
.given
|| msgfile
,
477 lock
= lock_any_ref_for_update(ref
, prev
, 0);
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 if (force
&& hashcmp(prev
, object
))
483 printf("Updated tag '%s' (was %s)\n", tag
, find_unique_abbrev(prev
, DEFAULT_ABBREV
));
485 strbuf_release(&buf
);