Merge branch 'rs/plug-leak-in-pack-bitmaps' into maint
[git.git] / builtin / verify-commit.c
blobec0c4e3d836f9242a8e34dd7fffa5ddfb835907b
1 /*
2 * Builtin "git commit-commit"
4 * Copyright (c) 2014 Michael J Gruber <git@drmicha.warpmail.net>
6 * Based on git-verify-tag
7 */
8 #include "cache.h"
9 #include "builtin.h"
10 #include "commit.h"
11 #include "run-command.h"
12 #include <signal.h>
13 #include "parse-options.h"
14 #include "gpg-interface.h"
16 static const char * const verify_commit_usage[] = {
17 N_("git verify-commit [-v | --verbose] <commit>..."),
18 NULL
21 static int run_gpg_verify(const unsigned char *sha1, const char *buf, unsigned long size, int verbose)
23 struct signature_check signature_check;
25 memset(&signature_check, 0, sizeof(signature_check));
27 check_commit_signature(lookup_commit(sha1), &signature_check);
29 if (verbose && signature_check.payload)
30 fputs(signature_check.payload, stdout);
32 if (signature_check.gpg_output)
33 fputs(signature_check.gpg_output, stderr);
35 signature_check_clear(&signature_check);
36 return signature_check.result != 'G';
39 static int verify_commit(const char *name, int verbose)
41 enum object_type type;
42 unsigned char sha1[20];
43 char *buf;
44 unsigned long size;
45 int ret;
47 if (get_sha1(name, sha1))
48 return error("commit '%s' not found.", name);
50 buf = read_sha1_file(sha1, &type, &size);
51 if (!buf)
52 return error("%s: unable to read file.", name);
53 if (type != OBJ_COMMIT)
54 return error("%s: cannot verify a non-commit object of type %s.",
55 name, typename(type));
57 ret = run_gpg_verify(sha1, buf, size, verbose);
59 free(buf);
60 return ret;
63 static int git_verify_commit_config(const char *var, const char *value, void *cb)
65 int status = git_gpg_config(var, value, cb);
66 if (status)
67 return status;
68 return git_default_config(var, value, cb);
71 int cmd_verify_commit(int argc, const char **argv, const char *prefix)
73 int i = 1, verbose = 0, had_error = 0;
74 const struct option verify_commit_options[] = {
75 OPT__VERBOSE(&verbose, N_("print commit contents")),
76 OPT_END()
79 git_config(git_verify_commit_config, NULL);
81 argc = parse_options(argc, argv, prefix, verify_commit_options,
82 verify_commit_usage, PARSE_OPT_KEEP_ARGV0);
83 if (argc <= i)
84 usage_with_options(verify_commit_usage, verify_commit_options);
86 /* sometimes the program was terminated because this signal
87 * was received in the process of writing the gpg input: */
88 signal(SIGPIPE, SIG_IGN);
89 while (i < argc)
90 if (verify_commit(argv[i++], verbose))
91 had_error = 1;
92 return had_error;