2 * Builtin "git commit-commit"
4 * Copyright (c) 2014 Michael J Gruber <git@drmicha.warpmail.net>
6 * Based on git-verify-tag
12 #include "run-command.h"
14 #include "parse-options.h"
15 #include "gpg-interface.h"
17 static const char * const verify_commit_usage
[] = {
18 N_("git verify-commit [-v | --verbose] <commit>..."),
22 static int run_gpg_verify(const struct object_id
*oid
, const char *buf
, unsigned long size
, unsigned flags
)
24 struct signature_check signature_check
;
27 memset(&signature_check
, 0, sizeof(signature_check
));
29 ret
= check_commit_signature(lookup_commit(oid
), &signature_check
);
30 print_signature_buffer(&signature_check
, flags
);
32 signature_check_clear(&signature_check
);
36 static int verify_commit(const char *name
, unsigned flags
)
38 enum object_type type
;
44 if (get_oid(name
, &oid
))
45 return error("commit '%s' not found.", name
);
47 buf
= read_sha1_file(oid
.hash
, &type
, &size
);
49 return error("%s: unable to read file.", name
);
50 if (type
!= OBJ_COMMIT
)
51 return error("%s: cannot verify a non-commit object of type %s.",
52 name
, typename(type
));
54 ret
= run_gpg_verify(&oid
, buf
, size
, flags
);
60 static int git_verify_commit_config(const char *var
, const char *value
, void *cb
)
62 int status
= git_gpg_config(var
, value
, cb
);
65 return git_default_config(var
, value
, cb
);
68 int cmd_verify_commit(int argc
, const char **argv
, const char *prefix
)
70 int i
= 1, verbose
= 0, had_error
= 0;
72 const struct option verify_commit_options
[] = {
73 OPT__VERBOSE(&verbose
, N_("print commit contents")),
74 OPT_BIT(0, "raw", &flags
, N_("print raw gpg status output"), GPG_VERIFY_RAW
),
78 git_config(git_verify_commit_config
, NULL
);
80 argc
= parse_options(argc
, argv
, prefix
, verify_commit_options
,
81 verify_commit_usage
, PARSE_OPT_KEEP_ARGV0
);
83 usage_with_options(verify_commit_usage
, verify_commit_options
);
86 flags
|= GPG_VERIFY_VERBOSE
;
88 /* sometimes the program was terminated because this signal
89 * was received in the process of writing the gpg input: */
90 signal(SIGPIPE
, SIG_IGN
);
92 if (verify_commit(argv
[i
++], flags
))