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];
26 void launch_editor(const char *path, struct strbuf *buffer, const char *const *env)
28 const char *editor, *terminal;
30 editor = getenv("GIT_EDITOR");
31 if (!editor && editor_program)
32 editor = editor_program;
34 editor = getenv("VISUAL");
36 editor = getenv("EDITOR");
38 terminal = getenv("TERM");
39 if (!editor && (!terminal || !strcmp(terminal, "dumb"))) {
41 "Terminal is dumb but no VISUAL nor EDITOR defined.\n"
42 "Please supply the message using either -m or -F option.\n");
49 if (strcmp(editor, ":")) {
50 size_t len = strlen(editor);
54 if (strcspn(editor, "$ \t'") != len) {
55 /* there are specials */
58 args[i++] = "$0 \"$@\"";
64 if (run_command_v_opt_cd_env(args, 0, NULL, env))
65 die("There was a problem with the editor %s.", editor);
70 if (strbuf_read_file(buffer, path, 0) < 0)
71 die("could not read message file '%s': %s",
72 path, strerror(errno));
80 #define PGP_SIGNATURE "-----BEGIN PGP SIGNATURE-----"
82 static int show_reference(const char *refname, const unsigned char *sha1,
83 int flag, void *cb_data)
85 struct tag_filter *filter = cb_data;
87 if (!fnmatch(filter->pattern, refname, 0)) {
90 enum object_type type;
95 printf("%s\n", refname);
98 printf("%-15s ", refname);
100 buf = read_sha1_file(sha1, &type, &size);
105 sp = strstr(buf, "\n\n");
110 /* only take up to "lines" lines, and strip the signature */
112 i < filter->lines && sp < buf + size &&
113 prefixcmp(sp, PGP_SIGNATURE "\n");
117 eol = memchr(sp, '\n', size - (sp - buf));
118 len = eol ? eol - sp : size - (sp - buf);
119 fwrite(sp, len, 1, stdout);
131 static int list_tags(const char *pattern, int lines)
133 struct tag_filter filter;
138 filter.pattern = pattern;
139 filter.lines = lines;
141 for_each_tag_ref(show_reference, (void *) &filter);
146 typedef int (*each_tag_name_fn)(const char *name, const char *ref,
147 const unsigned char *sha1);
149 static int for_each_tag_name(const char **argv, each_tag_name_fn fn)
154 unsigned char sha1[20];
156 for (p = argv; *p; p++) {
157 if (snprintf(ref, sizeof(ref), "refs/tags/%s", *p)
159 error("tag name too long: %.*s...", 50, *p);
163 if (!resolve_ref(ref, sha1, 1, NULL)) {
164 error("tag '%s' not found.", *p);
168 if (fn(*p, ref, sha1))
174 static int delete_tag(const char *name, const char *ref,
175 const unsigned char *sha1)
177 if (delete_ref(ref, sha1))
179 printf("Deleted tag '%s'\n", name);
183 static int verify_tag(const char *name, const char *ref,
184 const unsigned char *sha1)
186 const char *argv_verify_tag[] = {"git-verify-tag",
187 "-v", "SHA1_HEX", NULL};
188 argv_verify_tag[2] = sha1_to_hex(sha1);
190 if (run_command_v_opt(argv_verify_tag, 0))
191 return error("could not verify the tag '%s'", name);
195 static int do_sign(struct strbuf *buffer)
197 struct child_process gpg;
203 if (strlcpy(signingkey, git_committer_info(IDENT_ERROR_ON_NO_NAME),
204 sizeof(signingkey)) > sizeof(signingkey) - 1)
205 return error("committer info too long.");
206 bracket = strchr(signingkey, '>');
211 /* When the username signingkey is bad, program could be terminated
212 * because gpg exits without reading and then write gets SIGPIPE. */
213 signal(SIGPIPE, SIG_IGN);
215 memset(&gpg, 0, sizeof(gpg));
221 args[2] = signingkey;
224 if (start_command(&gpg))
225 return error("could not run gpg.");
227 if (write_in_full(gpg.in, buffer->buf, buffer->len) != buffer->len) {
229 finish_command(&gpg);
230 return error("gpg did not accept the tag data");
234 len = strbuf_read(buffer, gpg.out, 1024);
236 if (finish_command(&gpg) || !len || len < 0)
237 return error("gpg failed to sign the tag");
242 static const char tag_template[] =
245 "# Write a tag message\n"
248 static void set_signingkey(const char *value)
250 if (strlcpy(signingkey, value, sizeof(signingkey)) >= sizeof(signingkey))
251 die("signing key value too long (%.10s...)", value);
254 static int git_tag_config(const char *var, const char *value)
256 if (!strcmp(var, "user.signingkey")) {
258 return config_error_nonbool(value);
259 set_signingkey(value);
263 return git_default_config(var, value);
266 static void write_tag_body(int fd, const unsigned char *sha1)
269 enum object_type type;
270 char *buf, *sp, *eob;
273 buf = read_sha1_file(sha1, &type, &size);
277 sp = strstr(buf, "\n\n");
279 if (!sp || !size || type != OBJ_TAG) {
283 sp += 2; /* skip the 2 LFs */
284 eob = strstr(sp, "\n" PGP_SIGNATURE "\n");
288 len = buf + size - sp;
289 write_or_die(fd, sp, len);
294 static void create_tag(const unsigned char *object, const char *tag,
295 struct strbuf *buf, int message, int sign,
296 unsigned char *prev, unsigned char *result)
298 enum object_type type;
299 char header_buf[1024];
302 type = sha1_object_info(object, NULL);
303 if (type <= OBJ_NONE)
304 die("bad object type.");
306 header_len = snprintf(header_buf, sizeof(header_buf),
314 git_committer_info(IDENT_ERROR_ON_NO_NAME));
316 if (header_len > sizeof(header_buf) - 1)
317 die("tag header too big.");
323 /* write the template message before editing: */
324 path = xstrdup(git_path("TAG_EDITMSG"));
325 fd = open(path, O_CREAT | O_TRUNC | O_WRONLY, 0600);
327 die("could not create file '%s': %s",
328 path, strerror(errno));
330 if (!is_null_sha1(prev))
331 write_tag_body(fd, prev);
333 write_or_die(fd, tag_template, strlen(tag_template));
336 launch_editor(path, buf, NULL);
344 if (!message && !buf->len)
345 die("no tag message?");
347 strbuf_insert(buf, 0, header_buf, header_len);
349 if (sign && do_sign(buf) < 0)
350 die("unable to sign the tag");
351 if (write_sha1_file(buf->buf, buf->len, tag_type, result) < 0)
352 die("unable to write tag file");
360 static int parse_msg_arg(const struct option *opt, const char *arg, int unset)
362 struct msg_arg *msg = opt->value;
367 strbuf_addstr(&(msg->buf), "\n\n");
368 strbuf_addstr(&(msg->buf), arg);
373 int cmd_tag(int argc, const char **argv, const char *prefix)
376 unsigned char object[20], prev[20];
378 const char *object_ref, *tag;
379 struct ref_lock *lock;
381 int annotate = 0, sign = 0, force = 0, lines = 0,
382 list = 0, delete = 0, verify = 0;
383 char *msgfile = NULL, *keyid = NULL;
384 struct msg_arg msg = { 0, STRBUF_INIT };
385 struct option options[] = {
386 OPT_BOOLEAN('l', NULL, &list, "list tag names"),
387 { OPTION_INTEGER, 'n', NULL, &lines, NULL,
388 "print n lines of each tag message",
389 PARSE_OPT_OPTARG, NULL, 1 },
390 OPT_BOOLEAN('d', NULL, &delete, "delete tags"),
391 OPT_BOOLEAN('v', NULL, &verify, "verify tags"),
393 OPT_GROUP("Tag creation options"),
394 OPT_BOOLEAN('a', NULL, &annotate,
395 "annotated tag, needs a message"),
396 OPT_CALLBACK('m', NULL, &msg, "msg",
397 "message for the tag", parse_msg_arg),
398 OPT_STRING('F', NULL, &msgfile, "file", "message in a file"),
399 OPT_BOOLEAN('s', NULL, &sign, "annotated and GPG-signed tag"),
400 OPT_STRING('u', NULL, &keyid, "key-id",
401 "use another key to sign the tag"),
402 OPT_BOOLEAN('f', NULL, &force, "replace the tag if exists"),
406 git_config(git_tag_config);
408 argc = parse_options(argc, argv, options, git_tag_usage, 0);
412 set_signingkey(keyid);
418 return list_tags(argv[0], lines);
420 return for_each_tag_name(argv, delete_tag);
422 return for_each_tag_name(argv, verify_tag);
424 strbuf_init(&buf, 0);
425 if (msg.given || msgfile) {
426 if (msg.given && msgfile)
427 die("only one -F or -m option is allowed.");
430 strbuf_addbuf(&buf, &(msg.buf));
432 if (!strcmp(msgfile, "-")) {
433 if (strbuf_read(&buf, 0, 1024) < 0)
434 die("cannot read %s", msgfile);
436 if (strbuf_read_file(&buf, msgfile, 1024) < 0)
437 die("could not open or read '%s': %s",
438 msgfile, strerror(errno));
445 usage_with_options(git_tag_usage, options);
446 return list_tags(NULL, lines);
450 object_ref = argc == 2 ? argv[1] : "HEAD";
452 die("too many params");
454 if (get_sha1(object_ref, object))
455 die("Failed to resolve '%s' as a valid ref.", object_ref);
457 if (snprintf(ref, sizeof(ref), "refs/tags/%s", tag) > sizeof(ref) - 1)
458 die("tag name too long: %.*s...", 50, tag);
459 if (check_ref_format(ref))
460 die("'%s' is not a valid tag name.", tag);
462 if (!resolve_ref(ref, prev, 1, NULL))
465 die("tag '%s' already exists", tag);
468 create_tag(object, tag, &buf, msg.given || msgfile,
471 lock = lock_any_ref_for_update(ref, prev, 0);
473 die("%s: cannot lock the ref", ref);
474 if (write_ref_sha1(lock, object, NULL) < 0)
475 die("%s: cannot update the ref", ref);
477 strbuf_release(&buf);