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"
15 static const char builtin_tag_usage
[] =
16 "git-tag [-n [<num>]] -l [<pattern>] | [-a | -s | -u <key-id>] [-f | -d | -v] [-m <msg> | -F <file>] <tagname> [<head>]";
18 static char signingkey
[1000];
20 static void launch_editor(const char *path
, struct strbuf
*buffer
)
22 const char *editor
, *terminal
;
23 struct child_process child
;
26 editor
= getenv("GIT_EDITOR");
27 if (!editor
&& editor_program
)
28 editor
= editor_program
;
30 editor
= getenv("VISUAL");
32 editor
= getenv("EDITOR");
34 terminal
= getenv("TERM");
35 if (!editor
&& (!terminal
|| !strcmp(terminal
, "dumb"))) {
37 "Terminal is dumb but no VISUAL nor EDITOR defined.\n"
38 "Please supply the message using either -m or -F option.\n");
45 memset(&child
, 0, sizeof(child
));
51 if (run_command(&child
))
52 die("There was a problem with the editor %s.", editor
);
54 if (strbuf_read_file(buffer
, path
, 0) < 0)
55 die("could not read message file '%s': %s",
56 path
, strerror(errno
));
64 #define PGP_SIGNATURE "-----BEGIN PGP SIGNATURE-----"
66 static int show_reference(const char *refname
, const unsigned char *sha1
,
67 int flag
, void *cb_data
)
69 struct tag_filter
*filter
= cb_data
;
71 if (!fnmatch(filter
->pattern
, refname
, 0)) {
74 enum object_type type
;
79 printf("%s\n", refname
);
82 printf("%-15s ", refname
);
84 buf
= read_sha1_file(sha1
, &type
, &size
);
89 sp
= strstr(buf
, "\n\n");
94 /* only take up to "lines" lines, and strip the signature */
96 i
< filter
->lines
&& sp
< buf
+ size
&&
97 prefixcmp(sp
, PGP_SIGNATURE
"\n");
101 eol
= memchr(sp
, '\n', size
- (sp
- buf
));
102 len
= eol
? eol
- sp
: size
- (sp
- buf
);
103 fwrite(sp
, len
, 1, stdout
);
115 static int list_tags(const char *pattern
, int lines
)
117 struct tag_filter filter
;
122 filter
.pattern
= pattern
;
123 filter
.lines
= lines
;
125 for_each_tag_ref(show_reference
, (void *) &filter
);
130 typedef int (*each_tag_name_fn
)(const char *name
, const char *ref
,
131 const unsigned char *sha1
);
133 static int for_each_tag_name(const char **argv
, each_tag_name_fn fn
)
138 unsigned char sha1
[20];
140 for (p
= argv
; *p
; p
++) {
141 if (snprintf(ref
, sizeof(ref
), "refs/tags/%s", *p
)
143 error("tag name too long: %.*s...", 50, *p
);
147 if (!resolve_ref(ref
, sha1
, 1, NULL
)) {
148 error("tag '%s' not found.", *p
);
152 if (fn(*p
, ref
, sha1
))
158 static int delete_tag(const char *name
, const char *ref
,
159 const unsigned char *sha1
)
161 if (delete_ref(ref
, sha1
))
163 printf("Deleted tag '%s'\n", name
);
167 static int verify_tag(const char *name
, const char *ref
,
168 const unsigned char *sha1
)
170 const char *argv_verify_tag
[] = {"git-verify-tag",
171 "-v", "SHA1_HEX", NULL
};
172 argv_verify_tag
[2] = sha1_to_hex(sha1
);
174 if (run_command_v_opt(argv_verify_tag
, 0))
175 return error("could not verify the tag '%s'", name
);
179 static int do_sign(struct strbuf
*buffer
)
181 struct child_process gpg
;
187 if (strlcpy(signingkey
, git_committer_info(1),
188 sizeof(signingkey
)) > sizeof(signingkey
) - 1)
189 return error("committer info too long.");
190 bracket
= strchr(signingkey
, '>');
195 /* When the username signingkey is bad, program could be terminated
196 * because gpg exits without reading and then write gets SIGPIPE. */
197 signal(SIGPIPE
, SIG_IGN
);
199 memset(&gpg
, 0, sizeof(gpg
));
205 args
[2] = signingkey
;
208 if (start_command(&gpg
))
209 return error("could not run gpg.");
211 if (write_in_full(gpg
.in
, buffer
->buf
, buffer
->len
) != buffer
->len
) {
213 finish_command(&gpg
);
214 return error("gpg did not accept the tag data");
218 len
= strbuf_read(buffer
, gpg
.out
, 1024);
220 if (finish_command(&gpg
) || !len
|| len
< 0)
221 return error("gpg failed to sign the tag");
224 return error("could not read the entire signature from gpg.");
229 static const char tag_template
[] =
232 "# Write a tag message\n"
235 static int git_tag_config(const char *var
, const char *value
)
237 if (!strcmp(var
, "user.signingkey")) {
239 die("user.signingkey without value");
240 if (strlcpy(signingkey
, value
, sizeof(signingkey
))
241 >= sizeof(signingkey
))
242 die("user.signingkey value too long");
246 return git_default_config(var
, value
);
249 static void write_tag_body(int fd
, const unsigned char *sha1
)
252 enum object_type type
;
253 char *buf
, *sp
, *eob
;
256 buf
= read_sha1_file(sha1
, &type
, &size
);
260 sp
= strstr(buf
, "\n\n");
262 if (!sp
|| !size
|| type
!= OBJ_TAG
) {
266 sp
+= 2; /* skip the 2 LFs */
267 eob
= strstr(sp
, "\n" PGP_SIGNATURE
"\n");
271 len
= buf
+ size
- sp
;
272 write_or_die(fd
, sp
, len
);
277 static void create_tag(const unsigned char *object
, const char *tag
,
278 struct strbuf
*buf
, int message
, int sign
,
279 unsigned char *prev
, unsigned char *result
)
281 enum object_type type
;
282 char header_buf
[1024];
285 type
= sha1_object_info(object
, NULL
);
286 if (type
<= OBJ_NONE
)
287 die("bad object type.");
289 header_len
= snprintf(header_buf
, sizeof(header_buf
),
297 git_committer_info(1));
299 if (header_len
> sizeof(header_buf
) - 1)
300 die("tag header too big.");
306 /* write the template message before editing: */
307 path
= xstrdup(git_path("TAG_EDITMSG"));
308 fd
= open(path
, O_CREAT
| O_TRUNC
| O_WRONLY
, 0600);
310 die("could not create file '%s': %s",
311 path
, strerror(errno
));
313 if (!is_null_sha1(prev
))
314 write_tag_body(fd
, prev
);
316 write_or_die(fd
, tag_template
, strlen(tag_template
));
319 launch_editor(path
, buf
);
327 if (!message
&& !buf
->len
)
328 die("no tag message?");
330 strbuf_insert(buf
, 0, header_buf
, header_len
);
332 if (sign
&& do_sign(buf
) < 0)
333 die("unable to sign the tag");
334 if (write_sha1_file(buf
->buf
, buf
->len
, tag_type
, result
) < 0)
335 die("unable to write tag file");
338 int cmd_tag(int argc
, const char **argv
, const char *prefix
)
341 unsigned char object
[20], prev
[20];
342 int annotate
= 0, sign
= 0, force
= 0, lines
= 0, message
= 0;
344 const char *object_ref
, *tag
;
346 struct ref_lock
*lock
;
348 git_config(git_tag_config
);
349 strbuf_init(&buf
, 0);
351 for (i
= 1; i
< argc
; i
++) {
352 const char *arg
= argv
[i
];
356 if (!strcmp(arg
, "-a")) {
360 if (!strcmp(arg
, "-s")) {
365 if (!strcmp(arg
, "-f")) {
369 if (!strcmp(arg
, "-n")) {
370 if (i
+ 1 == argc
|| *argv
[i
+ 1] == '-')
374 lines
= isdigit(*argv
[++i
]) ?
378 if (!strcmp(arg
, "-m")) {
382 die("option -m needs an argument.");
384 die("only one -F or -m option is allowed.");
385 strbuf_addstr(&buf
, argv
[i
]);
389 if (!strcmp(arg
, "-F")) {
393 die("option -F needs an argument.");
395 die("only one -F or -m option is allowed.");
397 if (!strcmp(argv
[i
], "-")) {
398 if (strbuf_read(&buf
, 0, 1024) < 0)
399 die("cannot read %s", argv
[i
]);
401 if (strbuf_read_file(&buf
, argv
[i
], 1024) < 0)
402 die("could not open or read '%s': %s",
403 argv
[i
], strerror(errno
));
408 if (!strcmp(arg
, "-u")) {
413 die("option -u needs an argument.");
414 if (strlcpy(signingkey
, argv
[i
], sizeof(signingkey
))
415 >= sizeof(signingkey
))
416 die("argument to option -u too long");
419 if (!strcmp(arg
, "-l"))
420 return list_tags(argv
[i
+ 1], lines
);
421 if (!strcmp(arg
, "-d"))
422 return for_each_tag_name(argv
+ i
+ 1, delete_tag
);
423 if (!strcmp(arg
, "-v"))
424 return for_each_tag_name(argv
+ i
+ 1, verify_tag
);
425 usage(builtin_tag_usage
);
430 usage(builtin_tag_usage
);
431 return list_tags(NULL
, lines
);
435 object_ref
= i
< argc
? argv
[i
] : "HEAD";
437 die("too many params");
439 if (get_sha1(object_ref
, object
))
440 die("Failed to resolve '%s' as a valid ref.", object_ref
);
442 if (snprintf(ref
, sizeof(ref
), "refs/tags/%s", tag
) > sizeof(ref
) - 1)
443 die("tag name too long: %.*s...", 50, tag
);
444 if (check_ref_format(ref
))
445 die("'%s' is not a valid tag name.", tag
);
447 if (!resolve_ref(ref
, prev
, 1, NULL
))
450 die("tag '%s' already exists", tag
);
453 create_tag(object
, tag
, &buf
, message
, sign
, prev
, object
);
455 lock
= lock_any_ref_for_update(ref
, prev
, 0);
457 die("%s: cannot lock the ref", ref
);
458 if (write_ref_sha1(lock
, object
, NULL
) < 0)
459 die("%s: cannot update the ref", ref
);
461 strbuf_release(&buf
);