blob: a8eee886a5281965a0660308df9e94d14c1cb2b8 [file] [log] [blame]
Carlos Rica2ae68fc2007-07-27 06:07:34 +02001/*
2 * Builtin "git verify-tag"
3 *
4 * Copyright (c) 2007 Carlos Rica <jasampler@gmail.com>
5 *
6 * Based on git-verify-tag.sh
7 */
8#include "cache.h"
9#include "builtin.h"
10#include "tag.h"
11#include "run-command.h"
12#include <signal.h>
Stephen Boyd4855b2a2009-07-07 22:15:39 -070013#include "parse-options.h"
Junio C Hamano2f47eae2011-09-07 21:19:47 -070014#include "gpg-interface.h"
Carlos Rica2ae68fc2007-07-27 06:07:34 +020015
Stephen Boyd4855b2a2009-07-07 22:15:39 -070016static const char * const verify_tag_usage[] = {
Nguyễn Thái Ngọc Duyf6008eb2012-08-20 19:32:52 +070017 N_("git verify-tag [-v|--verbose] <tag>..."),
Stephen Boyd4855b2a2009-07-07 22:15:39 -070018 NULL
19};
Carlos Rica2ae68fc2007-07-27 06:07:34 +020020
Carlos Rica2ae68fc2007-07-27 06:07:34 +020021static int run_gpg_verify(const char *buf, unsigned long size, int verbose)
22{
Junio C Hamano2f47eae2011-09-07 21:19:47 -070023 int len;
Carlos Rica2ae68fc2007-07-27 06:07:34 +020024
Michael J Gruberac58c4c2010-11-10 12:17:27 +010025 len = parse_signature(buf, size);
Carlos Rica2ae68fc2007-07-27 06:07:34 +020026 if (verbose)
27 write_in_full(1, buf, len);
28
Junio C Hamano2f47eae2011-09-07 21:19:47 -070029 if (size == len)
30 return error("no signature found");
Carlos Rica2ae68fc2007-07-27 06:07:34 +020031
Junio C Hamano2f47eae2011-09-07 21:19:47 -070032 return verify_signed_buffer(buf, len, buf + len, size - len, NULL);
Carlos Rica2ae68fc2007-07-27 06:07:34 +020033}
34
35static int verify_tag(const char *name, int verbose)
36{
37 enum object_type type;
38 unsigned char sha1[20];
39 char *buf;
40 unsigned long size;
41 int ret;
42
43 if (get_sha1(name, sha1))
44 return error("tag '%s' not found.", name);
45
46 type = sha1_object_info(sha1, NULL);
47 if (type != OBJ_TAG)
48 return error("%s: cannot verify a non-tag object of type %s.",
49 name, typename(type));
50
51 buf = read_sha1_file(sha1, &type, &size);
52 if (!buf)
53 return error("%s: unable to read file.", name);
54
55 ret = run_gpg_verify(buf, size, verbose);
56
57 free(buf);
58 return ret;
59}
60
Alex Zepedaa2c25062012-03-08 12:07:20 -080061static int git_verify_tag_config(const char *var, const char *value, void *cb)
62{
63 int status = git_gpg_config(var, value, cb);
64 if (status)
65 return status;
66 return git_default_config(var, value, cb);
67}
68
Carlos Rica2ae68fc2007-07-27 06:07:34 +020069int cmd_verify_tag(int argc, const char **argv, const char *prefix)
70{
71 int i = 1, verbose = 0, had_error = 0;
Stephen Boyd4855b2a2009-07-07 22:15:39 -070072 const struct option verify_tag_options[] = {
Nguyễn Thái Ngọc Duyf6008eb2012-08-20 19:32:52 +070073 OPT__VERBOSE(&verbose, N_("print tag contents")),
Stephen Boyd4855b2a2009-07-07 22:15:39 -070074 OPT_END()
75 };
Carlos Rica2ae68fc2007-07-27 06:07:34 +020076
Alex Zepedaa2c25062012-03-08 12:07:20 -080077 git_config(git_verify_tag_config, NULL);
Carlos Rica2ae68fc2007-07-27 06:07:34 +020078
Stephen Boyd4855b2a2009-07-07 22:15:39 -070079 argc = parse_options(argc, argv, prefix, verify_tag_options,
80 verify_tag_usage, PARSE_OPT_KEEP_ARGV0);
Olivier Marind2761892008-07-28 12:48:44 +020081 if (argc <= i)
Stephen Boyd4855b2a2009-07-07 22:15:39 -070082 usage_with_options(verify_tag_usage, verify_tag_options);
Olivier Marind2761892008-07-28 12:48:44 +020083
Carlos Rica2ae68fc2007-07-27 06:07:34 +020084 /* sometimes the program was terminated because this signal
85 * was received in the process of writing the gpg input: */
86 signal(SIGPIPE, SIG_IGN);
87 while (i < argc)
88 if (verify_tag(argv[i++], verbose))
89 had_error = 1;
90 return had_error;
91}