2007-07-27 06:07:34 +02:00
|
|
|
/*
|
|
|
|
* Builtin "git verify-tag"
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Carlos Rica <jasampler@gmail.com>
|
|
|
|
*
|
|
|
|
* Based on git-verify-tag.sh
|
|
|
|
*/
|
|
|
|
#include "cache.h"
|
|
|
|
#include "builtin.h"
|
|
|
|
#include "tag.h"
|
|
|
|
#include "run-command.h"
|
|
|
|
#include <signal.h>
|
2009-07-08 07:15:39 +02:00
|
|
|
#include "parse-options.h"
|
2011-09-08 06:19:47 +02:00
|
|
|
#include "gpg-interface.h"
|
2007-07-27 06:07:34 +02:00
|
|
|
|
2009-07-08 07:15:39 +02:00
|
|
|
static const char * const verify_tag_usage[] = {
|
2015-01-13 08:44:47 +01:00
|
|
|
N_("git verify-tag [-v | --verbose] <tag>..."),
|
2009-07-08 07:15:39 +02:00
|
|
|
NULL
|
|
|
|
};
|
2007-07-27 06:07:34 +02:00
|
|
|
|
|
|
|
static int run_gpg_verify(const char *buf, unsigned long size, int verbose)
|
|
|
|
{
|
2015-06-22 01:14:38 +02:00
|
|
|
struct signature_check sigc;
|
2011-09-08 06:19:47 +02:00
|
|
|
int len;
|
2007-07-27 06:07:34 +02:00
|
|
|
|
2015-06-22 01:14:38 +02:00
|
|
|
memset(&sigc, 0, sizeof(sigc));
|
|
|
|
|
2010-11-10 12:17:27 +01:00
|
|
|
len = parse_signature(buf, size);
|
2007-07-27 06:07:34 +02:00
|
|
|
if (verbose)
|
|
|
|
write_in_full(1, buf, len);
|
|
|
|
|
2011-09-08 06:19:47 +02:00
|
|
|
if (size == len)
|
|
|
|
return error("no signature found");
|
2007-07-27 06:07:34 +02:00
|
|
|
|
2015-06-22 01:14:38 +02:00
|
|
|
check_signature(buf, len, buf + len, size - len, &sigc);
|
|
|
|
fputs(sigc.gpg_output, stderr);
|
|
|
|
|
|
|
|
signature_check_clear(&sigc);
|
|
|
|
return sigc.result != 'G' && sigc.result != 'U';
|
2007-07-27 06:07:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int verify_tag(const char *name, int verbose)
|
|
|
|
{
|
|
|
|
enum object_type type;
|
|
|
|
unsigned char sha1[20];
|
|
|
|
char *buf;
|
|
|
|
unsigned long size;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (get_sha1(name, sha1))
|
|
|
|
return error("tag '%s' not found.", name);
|
|
|
|
|
|
|
|
type = sha1_object_info(sha1, NULL);
|
|
|
|
if (type != OBJ_TAG)
|
|
|
|
return error("%s: cannot verify a non-tag object of type %s.",
|
|
|
|
name, typename(type));
|
|
|
|
|
|
|
|
buf = read_sha1_file(sha1, &type, &size);
|
|
|
|
if (!buf)
|
|
|
|
return error("%s: unable to read file.", name);
|
|
|
|
|
|
|
|
ret = run_gpg_verify(buf, size, verbose);
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-03-08 21:07:20 +01:00
|
|
|
static int git_verify_tag_config(const char *var, const char *value, void *cb)
|
|
|
|
{
|
|
|
|
int status = git_gpg_config(var, value, cb);
|
|
|
|
if (status)
|
|
|
|
return status;
|
|
|
|
return git_default_config(var, value, cb);
|
|
|
|
}
|
|
|
|
|
2007-07-27 06:07:34 +02:00
|
|
|
int cmd_verify_tag(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
|
|
|
int i = 1, verbose = 0, had_error = 0;
|
2009-07-08 07:15:39 +02:00
|
|
|
const struct option verify_tag_options[] = {
|
2012-08-20 14:32:52 +02:00
|
|
|
OPT__VERBOSE(&verbose, N_("print tag contents")),
|
2009-07-08 07:15:39 +02:00
|
|
|
OPT_END()
|
|
|
|
};
|
2007-07-27 06:07:34 +02:00
|
|
|
|
2012-03-08 21:07:20 +01:00
|
|
|
git_config(git_verify_tag_config, NULL);
|
2007-07-27 06:07:34 +02:00
|
|
|
|
2009-07-08 07:15:39 +02:00
|
|
|
argc = parse_options(argc, argv, prefix, verify_tag_options,
|
|
|
|
verify_tag_usage, PARSE_OPT_KEEP_ARGV0);
|
2008-07-28 12:48:44 +02:00
|
|
|
if (argc <= i)
|
2009-07-08 07:15:39 +02:00
|
|
|
usage_with_options(verify_tag_usage, verify_tag_options);
|
2008-07-28 12:48:44 +02:00
|
|
|
|
2007-07-27 06:07:34 +02:00
|
|
|
/* sometimes the program was terminated because this signal
|
|
|
|
* was received in the process of writing the gpg input: */
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
|
|
|
while (i < argc)
|
|
|
|
if (verify_tag(argv[i++], verbose))
|
|
|
|
had_error = 1;
|
|
|
|
return had_error;
|
|
|
|
}
|