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
, char **buffer
, unsigned long *len
)
22 const char *editor
, *terminal
;
23 struct child_process child
;
27 editor
= getenv("GIT_EDITOR");
28 if (!editor
&& editor_program
)
29 editor
= editor_program
;
31 editor
= getenv("VISUAL");
33 editor
= getenv("EDITOR");
35 terminal
= getenv("TERM");
36 if (!editor
&& (!terminal
|| !strcmp(terminal
, "dumb"))) {
38 "Terminal is dumb but no VISUAL nor EDITOR defined.\n"
39 "Please supply the message using either -m or -F option.\n");
46 memset(&child
, 0, sizeof(child
));
52 if (run_command(&child
))
53 die("There was a problem with the editor %s.", editor
);
55 fd
= open(path
, O_RDONLY
);
57 die("could not open '%s': %s", path
, strerror(errno
));
58 if (read_fd(fd
, buffer
, len
)) {
60 die("could not read message file '%s': %s",
61 path
, strerror(errno
));
71 #define PGP_SIGNATURE "-----BEGIN PGP SIGNATURE-----"
73 static int show_reference(const char *refname
, const unsigned char *sha1
,
74 int flag
, void *cb_data
)
76 struct tag_filter
*filter
= cb_data
;
78 if (!fnmatch(filter
->pattern
, refname
, 0)) {
81 enum object_type type
;
86 printf("%s\n", refname
);
89 printf("%-15s ", refname
);
91 sp
= buf
= read_sha1_file(sha1
, &type
, &size
);
99 while (sp
+ 1 < buf
+ size
&&
100 !(sp
[0] == '\n' && sp
[1] == '\n'))
102 /* only take up to "lines" lines, and strip the signature */
104 i
< filter
->lines
&& sp
< buf
+ size
&&
105 prefixcmp(sp
, PGP_SIGNATURE
"\n");
109 eol
= memchr(sp
, '\n', size
- (sp
- buf
));
110 len
= eol
? eol
- sp
: size
- (sp
- buf
);
111 fwrite(sp
, len
, 1, stdout
);
123 static int list_tags(const char *pattern
, int lines
)
125 struct tag_filter filter
;
130 filter
.pattern
= pattern
;
131 filter
.lines
= lines
;
133 for_each_tag_ref(show_reference
, (void *) &filter
);
138 typedef int (*each_tag_name_fn
)(const char *name
, const char *ref
,
139 const unsigned char *sha1
);
141 static int for_each_tag_name(const char **argv
, each_tag_name_fn fn
)
146 unsigned char sha1
[20];
148 for (p
= argv
; *p
; p
++) {
149 if (snprintf(ref
, sizeof(ref
), "refs/tags/%s", *p
)
151 error("tag name too long: %.*s...", 50, *p
);
155 if (!resolve_ref(ref
, sha1
, 1, NULL
)) {
156 error("tag '%s' not found.", *p
);
160 if (fn(*p
, ref
, sha1
))
166 static int delete_tag(const char *name
, const char *ref
,
167 const unsigned char *sha1
)
169 if (delete_ref(ref
, sha1
))
171 printf("Deleted tag '%s'\n", name
);
175 static int verify_tag(const char *name
, const char *ref
,
176 const unsigned char *sha1
)
178 const char *argv_verify_tag
[] = {"git-verify-tag",
179 "-v", "SHA1_HEX", NULL
};
180 argv_verify_tag
[2] = sha1_to_hex(sha1
);
182 if (run_command_v_opt(argv_verify_tag
, 0))
183 return error("could not verify the tag '%s'", name
);
187 static ssize_t
do_sign(char *buffer
, size_t size
, size_t max
)
189 struct child_process gpg
;
195 if (strlcpy(signingkey
, git_committer_info(1),
196 sizeof(signingkey
)) > sizeof(signingkey
) - 1)
197 return error("committer info too long.");
198 bracket
= strchr(signingkey
, '>');
203 memset(&gpg
, 0, sizeof(gpg
));
209 args
[2] = signingkey
;
212 if (start_command(&gpg
))
213 return error("could not run gpg.");
215 write_or_die(gpg
.in
, buffer
, size
);
218 len
= read_in_full(gpg
.out
, buffer
+ size
, max
- size
);
220 finish_command(&gpg
);
222 if (len
== max
- size
)
223 return error("could not read the entire signature from gpg.");
228 static const char tag_template
[] =
231 "# Write a tag message\n"
234 static int git_tag_config(const char *var
, const char *value
)
236 if (!strcmp(var
, "user.signingkey")) {
238 die("user.signingkey without value");
239 if (strlcpy(signingkey
, value
, sizeof(signingkey
))
240 >= sizeof(signingkey
))
241 die("user.signingkey value too long");
245 return git_default_config(var
, value
);
248 #define MAX_SIGNATURE_LENGTH 1024
249 /* message must be NULL or allocated, it will be reallocated and freed */
250 static void create_tag(const unsigned char *object
, const char *tag
,
251 char *message
, int sign
, unsigned char *result
)
253 enum object_type type
;
254 char header_buf
[1024], *buffer
= NULL
;
255 int header_len
, max_size
;
256 unsigned long size
= 0;
258 type
= sha1_object_info(object
, NULL
);
259 if (type
<= OBJ_NONE
)
260 die("bad object type.");
262 header_len
= snprintf(header_buf
, sizeof(header_buf
),
270 git_committer_info(1));
272 if (header_len
> sizeof(header_buf
) - 1)
273 die("tag header too big.");
279 /* write the template message before editing: */
280 path
= xstrdup(git_path("TAG_EDITMSG"));
281 fd
= open(path
, O_CREAT
| O_TRUNC
| O_WRONLY
, 0600);
283 die("could not create file '%s': %s",
284 path
, strerror(errno
));
285 write_or_die(fd
, tag_template
, strlen(tag_template
));
288 launch_editor(path
, &buffer
, &size
);
295 size
= strlen(message
);
298 size
= stripspace(buffer
, size
, 1);
300 if (!message
&& !size
)
301 die("no tag message?");
303 /* insert the header and add the '\n' if needed: */
304 max_size
= header_len
+ size
+ (sign
? MAX_SIGNATURE_LENGTH
: 0) + 1;
305 buffer
= xrealloc(buffer
, max_size
);
307 buffer
[size
++] = '\n';
308 memmove(buffer
+ header_len
, buffer
, size
);
309 memcpy(buffer
, header_buf
, header_len
);
313 size
= do_sign(buffer
, size
, max_size
);
315 die("unable to sign the tag");
318 if (write_sha1_file(buffer
, size
, tag_type
, result
) < 0)
319 die("unable to write tag file");
323 int cmd_tag(int argc
, const char **argv
, const char *prefix
)
325 unsigned char object
[20], prev
[20];
326 int annotate
= 0, sign
= 0, force
= 0, lines
= 0;
327 char *message
= NULL
;
329 const char *object_ref
, *tag
;
331 struct ref_lock
*lock
;
333 git_config(git_tag_config
);
335 for (i
= 1; i
< argc
; i
++) {
336 const char *arg
= argv
[i
];
340 if (!strcmp(arg
, "-a")) {
344 if (!strcmp(arg
, "-s")) {
349 if (!strcmp(arg
, "-f")) {
353 if (!strcmp(arg
, "-n")) {
354 if (i
+ 1 == argc
|| *argv
[i
+ 1] == '-')
358 lines
= isdigit(*argv
[++i
]) ?
362 if (!strcmp(arg
, "-m")) {
366 die("option -m needs an argument.");
368 die("only one -F or -m option is allowed.");
369 message
= xstrdup(argv
[i
]);
372 if (!strcmp(arg
, "-F")) {
379 die("option -F needs an argument.");
381 die("only one -F or -m option is allowed.");
383 if (!strcmp(argv
[i
], "-"))
386 fd
= open(argv
[i
], O_RDONLY
);
388 die("could not open '%s': %s",
389 argv
[i
], strerror(errno
));
392 message
= xmalloc(len
);
393 if (read_fd(fd
, &message
, &len
)) {
395 die("cannot read %s", argv
[i
]);
399 if (!strcmp(arg
, "-u")) {
404 die("option -u needs an argument.");
405 if (strlcpy(signingkey
, argv
[i
], sizeof(signingkey
))
406 >= sizeof(signingkey
))
407 die("argument to option -u too long");
410 if (!strcmp(arg
, "-l"))
411 return list_tags(argv
[i
+ 1], lines
);
412 if (!strcmp(arg
, "-d"))
413 return for_each_tag_name(argv
+ i
+ 1, delete_tag
);
414 if (!strcmp(arg
, "-v"))
415 return for_each_tag_name(argv
+ i
+ 1, verify_tag
);
416 usage(builtin_tag_usage
);
421 usage(builtin_tag_usage
);
422 return list_tags(NULL
, lines
);
426 object_ref
= i
< argc
? argv
[i
] : "HEAD";
428 die("too many params");
430 if (get_sha1(object_ref
, object
))
431 die("Failed to resolve '%s' as a valid ref.", object_ref
);
433 if (snprintf(ref
, sizeof(ref
), "refs/tags/%s", tag
) > sizeof(ref
) - 1)
434 die("tag name too long: %.*s...", 50, tag
);
435 if (check_ref_format(ref
))
436 die("'%s' is not a valid tag name.", tag
);
438 if (!resolve_ref(ref
, prev
, 1, NULL
))
441 die("tag '%s' already exists", tag
);
444 create_tag(object
, tag
, message
, sign
, object
);
446 lock
= lock_any_ref_for_update(ref
, prev
, 0);
448 die("%s: cannot lock the ref", ref
);
449 if (write_ref_sha1(lock
, object
, NULL
) < 0)
450 die("%s: cannot update the ref", ref
);