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];
27 const char **patterns
;
29 struct commit_list
*with_commit
;
32 static int match_pattern(const char **patterns
, const char *ref
)
34 /* no pattern means match everything */
37 for (; *patterns
; patterns
++)
38 if (!fnmatch(*patterns
, ref
, 0))
43 static int show_reference(const char *refname
, const unsigned char *sha1
,
44 int flag
, void *cb_data
)
46 struct tag_filter
*filter
= cb_data
;
48 if (match_pattern(filter
->patterns
, refname
)) {
51 enum object_type type
;
55 if (filter
->with_commit
) {
56 struct commit
*commit
;
58 commit
= lookup_commit_reference_gently(sha1
, 1);
61 if (!is_descendant_of(commit
, filter
->with_commit
))
66 printf("%s\n", refname
);
69 printf("%-15s ", refname
);
71 buf
= read_sha1_file(sha1
, &type
, &size
);
76 sp
= strstr(buf
, "\n\n");
81 /* only take up to "lines" lines, and strip the signature */
82 size
= parse_signature(buf
, size
);
84 i
< filter
->lines
&& sp
< buf
+ size
;
88 eol
= memchr(sp
, '\n', size
- (sp
- buf
));
89 len
= eol
? eol
- sp
: size
- (sp
- buf
);
90 fwrite(sp
, len
, 1, stdout
);
102 static int list_tags(const char **patterns
, int lines
,
103 struct commit_list
*with_commit
)
105 struct tag_filter filter
;
107 filter
.patterns
= patterns
;
108 filter
.lines
= lines
;
109 filter
.with_commit
= with_commit
;
111 for_each_tag_ref(show_reference
, (void *) &filter
);
116 typedef int (*each_tag_name_fn
)(const char *name
, const char *ref
,
117 const unsigned char *sha1
);
119 static int for_each_tag_name(const char **argv
, each_tag_name_fn fn
)
124 unsigned char sha1
[20];
126 for (p
= argv
; *p
; p
++) {
127 if (snprintf(ref
, sizeof(ref
), "refs/tags/%s", *p
)
129 error(_("tag name too long: %.*s..."), 50, *p
);
133 if (!resolve_ref(ref
, sha1
, 1, NULL
)) {
134 error(_("tag '%s' not found."), *p
);
138 if (fn(*p
, ref
, sha1
))
144 static int delete_tag(const char *name
, const char *ref
,
145 const unsigned char *sha1
)
147 if (delete_ref(ref
, sha1
, 0))
149 printf(_("Deleted tag '%s' (was %s)\n"), name
, find_unique_abbrev(sha1
, DEFAULT_ABBREV
));
153 static int verify_tag(const char *name
, const char *ref
,
154 const unsigned char *sha1
)
156 const char *argv_verify_tag
[] = {"verify-tag",
157 "-v", "SHA1_HEX", NULL
};
158 argv_verify_tag
[2] = sha1_to_hex(sha1
);
160 if (run_command_v_opt(argv_verify_tag
, RUN_GIT_CMD
))
161 return error(_("could not verify the tag '%s'"), name
);
165 static int do_sign(struct strbuf
*buffer
)
167 struct child_process gpg
;
174 if (strlcpy(signingkey
, git_committer_info(IDENT_ERROR_ON_NO_NAME
),
175 sizeof(signingkey
)) > sizeof(signingkey
) - 1)
176 return error(_("committer info too long."));
177 bracket
= strchr(signingkey
, '>');
182 /* When the username signingkey is bad, program could be terminated
183 * because gpg exits without reading and then write gets SIGPIPE. */
184 signal(SIGPIPE
, SIG_IGN
);
186 memset(&gpg
, 0, sizeof(gpg
));
192 args
[2] = signingkey
;
195 if (start_command(&gpg
))
196 return error(_("could not run gpg."));
198 if (write_in_full(gpg
.in
, buffer
->buf
, buffer
->len
) != buffer
->len
) {
201 finish_command(&gpg
);
202 return error(_("gpg did not accept the tag data"));
205 len
= strbuf_read(buffer
, gpg
.out
, 1024);
208 if (finish_command(&gpg
) || !len
|| len
< 0)
209 return error(_("gpg failed to sign the tag"));
211 /* Strip CR from the line endings, in case we are on Windows. */
212 for (i
= j
= 0; i
< buffer
->len
; i
++)
213 if (buffer
->buf
[i
] != '\r') {
215 buffer
->buf
[j
] = buffer
->buf
[i
];
218 strbuf_setlen(buffer
, j
);
223 static const char tag_template
[] =
226 "# Write a tag message\n"
229 static void set_signingkey(const char *value
)
231 if (strlcpy(signingkey
, value
, sizeof(signingkey
)) >= sizeof(signingkey
))
232 die(_("signing key value too long (%.10s...)"), value
);
235 static int git_tag_config(const char *var
, const char *value
, void *cb
)
237 if (!strcmp(var
, "user.signingkey")) {
239 return config_error_nonbool(var
);
240 set_signingkey(value
);
244 return git_default_config(var
, value
, cb
);
247 static void write_tag_body(int fd
, const unsigned char *sha1
)
250 enum object_type type
;
253 buf
= read_sha1_file(sha1
, &type
, &size
);
257 sp
= strstr(buf
, "\n\n");
259 if (!sp
|| !size
|| type
!= OBJ_TAG
) {
263 sp
+= 2; /* skip the 2 LFs */
264 write_or_die(fd
, sp
, parse_signature(sp
, buf
+ size
- sp
));
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 static int strbuf_check_tag_ref(struct strbuf
*sb
, const char *name
)
366 return CHECK_REF_FORMAT_ERROR
;
369 strbuf_addf(sb
, "refs/tags/%s", name
);
371 return check_ref_format(sb
->buf
);
374 int cmd_tag(int argc
, const char **argv
, const char *prefix
)
376 struct strbuf buf
= STRBUF_INIT
;
377 struct strbuf ref
= STRBUF_INIT
;
378 unsigned char object
[20], prev
[20];
379 const char *object_ref
, *tag
;
380 struct ref_lock
*lock
;
382 int annotate
= 0, sign
= 0, force
= 0, lines
= -1,
383 list
= 0, delete = 0, verify
= 0;
384 const char *msgfile
= NULL
, *keyid
= NULL
;
385 struct msg_arg msg
= { 0, STRBUF_INIT
};
386 struct commit_list
*with_commit
= NULL
;
387 struct option options
[] = {
388 OPT_BOOLEAN('l', NULL
, &list
, "list tag names"),
389 { OPTION_INTEGER
, 'n', NULL
, &lines
, "n",
390 "print <n> lines of each tag message",
391 PARSE_OPT_OPTARG
, NULL
, 1 },
392 OPT_BOOLEAN('d', NULL
, &delete, "delete tags"),
393 OPT_BOOLEAN('v', NULL
, &verify
, "verify tags"),
395 OPT_GROUP("Tag creation options"),
396 OPT_BOOLEAN('a', NULL
, &annotate
,
397 "annotated tag, needs a message"),
398 OPT_CALLBACK('m', NULL
, &msg
, "message",
399 "tag message", parse_msg_arg
),
400 OPT_FILENAME('F', NULL
, &msgfile
, "read message from file"),
401 OPT_BOOLEAN('s', NULL
, &sign
, "annotated and GPG-signed tag"),
402 OPT_STRING('u', NULL
, &keyid
, "key-id",
403 "use another key to sign the tag"),
404 OPT__FORCE(&force
, "replace the tag if exists"),
406 OPT_GROUP("Tag listing options"),
408 OPTION_CALLBACK
, 0, "contains", &with_commit
, "commit",
409 "print only tags that contain the commit",
410 PARSE_OPT_LASTARG_DEFAULT
,
411 parse_opt_with_commit
, (intptr_t)"HEAD",
416 git_config(git_tag_config
, NULL
);
418 argc
= parse_options(argc
, argv
, prefix
, options
, git_tag_usage
, 0);
422 set_signingkey(keyid
);
426 if (argc
== 0 && !(delete || verify
))
429 if ((annotate
|| msg
.given
|| msgfile
|| force
) &&
430 (list
|| delete || verify
))
431 usage_with_options(git_tag_usage
, options
);
433 if (list
+ delete + verify
> 1)
434 usage_with_options(git_tag_usage
, options
);
436 return list_tags(argv
, lines
== -1 ? 0 : lines
,
439 die(_("-n option is only allowed with -l."));
441 die(_("--contains option is only allowed with -l."));
443 return for_each_tag_name(argv
, delete_tag
);
445 return for_each_tag_name(argv
, verify_tag
);
447 if (msg
.given
|| msgfile
) {
448 if (msg
.given
&& msgfile
)
449 die(_("only one -F or -m option is allowed."));
452 strbuf_addbuf(&buf
, &(msg
.buf
));
454 if (!strcmp(msgfile
, "-")) {
455 if (strbuf_read(&buf
, 0, 1024) < 0)
456 die_errno(_("cannot read '%s'"), msgfile
);
458 if (strbuf_read_file(&buf
, msgfile
, 1024) < 0)
459 die_errno(_("could not open or read '%s'"),
467 object_ref
= argc
== 2 ? argv
[1] : "HEAD";
469 die(_("too many params"));
471 if (get_sha1(object_ref
, object
))
472 die(_("Failed to resolve '%s' as a valid ref."), object_ref
);
474 if (strbuf_check_tag_ref(&ref
, tag
))
475 die(_("'%s' is not a valid tag name."), tag
);
477 if (!resolve_ref(ref
.buf
, prev
, 1, NULL
))
480 die(_("tag '%s' already exists"), tag
);
483 create_tag(object
, tag
, &buf
, msg
.given
|| msgfile
,
486 lock
= lock_any_ref_for_update(ref
.buf
, prev
, 0);
488 die(_("%s: cannot lock the ref"), ref
.buf
);
489 if (write_ref_sha1(lock
, object
, NULL
) < 0)
490 die(_("%s: cannot update the ref"), ref
.buf
);
491 if (force
&& hashcmp(prev
, object
))
492 printf(_("Updated tag '%s' (was %s)\n"), tag
, find_unique_abbrev(prev
, DEFAULT_ABBREV
));
494 strbuf_release(&buf
);
495 strbuf_release(&ref
);