4 #include "run-command.h"
6 #include "gpg-interface.h"
10 static char *configured_signing_key;
11 static enum signature_trust_level configured_min_trust_level = TRUST_UNDEFINED;
16 const char **verify_args;
20 static const char *openpgp_verify_args[] = {
21 "--keyid-format=long",
24 static const char *openpgp_sigs[] = {
25 "-----BEGIN PGP SIGNATURE-----",
26 "-----BEGIN PGP MESSAGE-----",
30 static const char *x509_verify_args[] = {
33 static const char *x509_sigs[] = {
34 "-----BEGIN SIGNED MESSAGE-----",
38 static struct gpg_format gpg_format[] = {
39 { .name = "openpgp", .program = "gpg",
40 .verify_args = openpgp_verify_args,
43 { .name = "x509", .program = "gpgsm",
44 .verify_args = x509_verify_args,
49 static struct gpg_format *use_format = &gpg_format[0];
51 static struct gpg_format *get_format_by_name(const char *str)
55 for (i = 0; i < ARRAY_SIZE(gpg_format); i++)
56 if (!strcmp(gpg_format[i].name, str))
57 return gpg_format + i;
61 static struct gpg_format *get_format_by_sig(const char *sig)
65 for (i = 0; i < ARRAY_SIZE(gpg_format); i++)
66 for (j = 0; gpg_format[i].sigs[j]; j++)
67 if (starts_with(sig, gpg_format[i].sigs[j]))
68 return gpg_format + i;
72 void signature_check_clear(struct signature_check *sigc)
74 FREE_AND_NULL(sigc->payload);
75 FREE_AND_NULL(sigc->gpg_output);
76 FREE_AND_NULL(sigc->gpg_status);
77 FREE_AND_NULL(sigc->signer);
78 FREE_AND_NULL(sigc->key);
79 FREE_AND_NULL(sigc->fingerprint);
80 FREE_AND_NULL(sigc->primary_key_fingerprint);
83 /* An exclusive status -- only one of them can appear in output */
84 #define GPG_STATUS_EXCLUSIVE (1<<0)
85 /* The status includes key identifier */
86 #define GPG_STATUS_KEYID (1<<1)
87 /* The status includes user identifier */
88 #define GPG_STATUS_UID (1<<2)
89 /* The status includes key fingerprints */
90 #define GPG_STATUS_FINGERPRINT (1<<3)
91 /* The status includes trust level */
92 #define GPG_STATUS_TRUST_LEVEL (1<<4)
94 /* Short-hand for standard exclusive *SIG status with keyid & UID */
95 #define GPG_STATUS_STDSIG (GPG_STATUS_EXCLUSIVE|GPG_STATUS_KEYID|GPG_STATUS_UID)
101 } sigcheck_gpg_status[] = {
102 { 'G', "GOODSIG ", GPG_STATUS_STDSIG },
103 { 'B', "BADSIG ", GPG_STATUS_STDSIG },
104 { 'E', "ERRSIG ", GPG_STATUS_EXCLUSIVE|GPG_STATUS_KEYID },
105 { 'X', "EXPSIG ", GPG_STATUS_STDSIG },
106 { 'Y', "EXPKEYSIG ", GPG_STATUS_STDSIG },
107 { 'R', "REVKEYSIG ", GPG_STATUS_STDSIG },
108 { 0, "VALIDSIG ", GPG_STATUS_FINGERPRINT },
109 { 0, "TRUST_", GPG_STATUS_TRUST_LEVEL },
114 enum signature_trust_level value;
115 } sigcheck_gpg_trust_level[] = {
116 { "UNDEFINED", TRUST_UNDEFINED },
117 { "NEVER", TRUST_NEVER },
118 { "MARGINAL", TRUST_MARGINAL },
119 { "FULLY", TRUST_FULLY },
120 { "ULTIMATE", TRUST_ULTIMATE },
123 static void replace_cstring(char **field, const char *line, const char *next)
128 *field = xmemdupz(line, next - line);
133 static int parse_gpg_trust_level(const char *level,
134 enum signature_trust_level *res)
138 for (i = 0; i < ARRAY_SIZE(sigcheck_gpg_trust_level); i++) {
139 if (!strcmp(sigcheck_gpg_trust_level[i].key, level)) {
140 *res = sigcheck_gpg_trust_level[i].value;
147 static void parse_gpg_output(struct signature_check *sigc)
149 const char *buf = sigc->gpg_status;
150 const char *line, *next;
152 int seen_exclusive_status = 0;
154 /* Iterate over all lines */
155 for (line = buf; *line; line = strchrnul(line+1, '\n')) {
156 while (*line == '\n')
161 /* Skip lines that don't start with GNUPG status */
162 if (!skip_prefix(line, "[GNUPG:] ", &line))
165 /* Iterate over all search strings */
166 for (i = 0; i < ARRAY_SIZE(sigcheck_gpg_status); i++) {
167 if (skip_prefix(line, sigcheck_gpg_status[i].check, &line)) {
169 * GOODSIG, BADSIG etc. can occur only once for
170 * each signature. Therefore, if we had more
171 * than one then we're dealing with multiple
172 * signatures. We don't support them
173 * currently, and they're rather hard to
174 * create, so something is likely fishy and we
175 * should reject them altogether.
177 if (sigcheck_gpg_status[i].flags & GPG_STATUS_EXCLUSIVE) {
178 if (seen_exclusive_status++)
182 if (sigcheck_gpg_status[i].result)
183 sigc->result = sigcheck_gpg_status[i].result;
184 /* Do we have key information? */
185 if (sigcheck_gpg_status[i].flags & GPG_STATUS_KEYID) {
186 next = strchrnul(line, ' ');
187 replace_cstring(&sigc->key, line, next);
188 /* Do we have signer information? */
189 if (*next && (sigcheck_gpg_status[i].flags & GPG_STATUS_UID)) {
191 next = strchrnul(line, '\n');
192 replace_cstring(&sigc->signer, line, next);
196 /* Do we have trust level? */
197 if (sigcheck_gpg_status[i].flags & GPG_STATUS_TRUST_LEVEL) {
199 * GPG v1 and v2 differs in how the
200 * TRUST_ lines are written. Some
201 * trust lines contain no additional
202 * space-separated information for v1.
204 size_t trust_size = strcspn(line, " \n");
205 char *trust = xmemdupz(line, trust_size);
207 if (parse_gpg_trust_level(trust, &sigc->trust_level)) {
214 /* Do we have fingerprint? */
215 if (sigcheck_gpg_status[i].flags & GPG_STATUS_FINGERPRINT) {
219 next = strchrnul(line, ' ');
220 replace_cstring(&sigc->fingerprint, line, next);
223 * Skip interim fields. The search is
224 * limited to the same line since only
225 * OpenPGP signatures has a field with
226 * the primary fingerprint.
228 limit = strchrnul(line, '\n');
229 for (j = 9; j > 0; j--) {
230 if (!*next || limit <= next)
233 next = strchrnul(line, ' ');
236 field = &sigc->primary_key_fingerprint;
238 next = strchrnul(line, '\n');
239 replace_cstring(field, line, next);
241 replace_cstring(field, NULL, NULL);
253 /* Clear partial data to avoid confusion */
254 FREE_AND_NULL(sigc->primary_key_fingerprint);
255 FREE_AND_NULL(sigc->fingerprint);
256 FREE_AND_NULL(sigc->signer);
257 FREE_AND_NULL(sigc->key);
260 static int verify_signed_buffer(const char *payload, size_t payload_size,
261 const char *signature, size_t signature_size,
262 struct strbuf *gpg_output,
263 struct strbuf *gpg_status)
265 struct child_process gpg = CHILD_PROCESS_INIT;
266 struct gpg_format *fmt;
267 struct tempfile *temp;
269 struct strbuf buf = STRBUF_INIT;
271 temp = mks_tempfile_t(".git_vtag_tmpXXXXXX");
273 return error_errno(_("could not create temporary file"));
274 if (write_in_full(temp->fd, signature, signature_size) < 0 ||
275 close_tempfile_gently(temp) < 0) {
276 error_errno(_("failed writing detached signature to '%s'"),
278 delete_tempfile(&temp);
282 fmt = get_format_by_sig(signature);
284 BUG("bad signature '%s'", signature);
286 strvec_push(&gpg.args, fmt->program);
287 strvec_pushv(&gpg.args, fmt->verify_args);
288 strvec_pushl(&gpg.args,
290 "--verify", temp->filename.buf, "-",
296 sigchain_push(SIGPIPE, SIG_IGN);
297 ret = pipe_command(&gpg, payload, payload_size,
298 gpg_status, 0, gpg_output, 0);
299 sigchain_pop(SIGPIPE);
301 delete_tempfile(&temp);
303 ret |= !strstr(gpg_status->buf, "\n[GNUPG:] GOODSIG ");
304 strbuf_release(&buf); /* no matter it was used or not */
309 int check_signature(const char *payload, size_t plen, const char *signature,
310 size_t slen, struct signature_check *sigc)
312 struct strbuf gpg_output = STRBUF_INIT;
313 struct strbuf gpg_status = STRBUF_INIT;
317 sigc->trust_level = -1;
319 status = verify_signed_buffer(payload, plen, signature, slen,
320 &gpg_output, &gpg_status);
321 if (status && !gpg_output.len)
323 sigc->payload = xmemdupz(payload, plen);
324 sigc->gpg_output = strbuf_detach(&gpg_output, NULL);
325 sigc->gpg_status = strbuf_detach(&gpg_status, NULL);
326 parse_gpg_output(sigc);
327 status |= sigc->result != 'G';
328 status |= sigc->trust_level < configured_min_trust_level;
331 strbuf_release(&gpg_status);
332 strbuf_release(&gpg_output);
337 void print_signature_buffer(const struct signature_check *sigc, unsigned flags)
339 const char *output = flags & GPG_VERIFY_RAW ?
340 sigc->gpg_status : sigc->gpg_output;
342 if (flags & GPG_VERIFY_VERBOSE && sigc->payload)
343 fputs(sigc->payload, stdout);
346 fputs(output, stderr);
349 size_t parse_signed_buffer(const char *buf, size_t size)
356 if (get_format_by_sig(buf + len))
359 eol = memchr(buf + len, '\n', size - len);
360 len += eol ? eol - (buf + len) + 1 : size - len;
365 int parse_signature(const char *buf, size_t size, struct strbuf *payload, struct strbuf *signature)
367 size_t match = parse_signed_buffer(buf, size);
369 strbuf_add(payload, buf, match);
370 remove_signature(payload);
371 strbuf_add(signature, buf + match, size - match);
377 void set_signing_key(const char *key)
379 free(configured_signing_key);
380 configured_signing_key = xstrdup(key);
383 int git_gpg_config(const char *var, const char *value, void *cb)
385 struct gpg_format *fmt = NULL;
386 char *fmtname = NULL;
390 if (!strcmp(var, "user.signingkey")) {
392 return config_error_nonbool(var);
393 set_signing_key(value);
397 if (!strcmp(var, "gpg.format")) {
399 return config_error_nonbool(var);
400 fmt = get_format_by_name(value);
402 return error("unsupported value for %s: %s",
408 if (!strcmp(var, "gpg.mintrustlevel")) {
410 return config_error_nonbool(var);
412 trust = xstrdup_toupper(value);
413 ret = parse_gpg_trust_level(trust, &configured_min_trust_level);
417 return error("unsupported value for %s: %s", var,
422 if (!strcmp(var, "gpg.program") || !strcmp(var, "gpg.openpgp.program"))
425 if (!strcmp(var, "gpg.x509.program"))
429 fmt = get_format_by_name(fmtname);
430 return git_config_string(&fmt->program, var, value);
436 const char *get_signing_key(void)
438 if (configured_signing_key)
439 return configured_signing_key;
440 return git_committer_info(IDENT_STRICT|IDENT_NO_DATE);
443 int sign_buffer(struct strbuf *buffer, struct strbuf *signature, const char *signing_key)
445 struct child_process gpg = CHILD_PROCESS_INIT;
448 struct strbuf gpg_status = STRBUF_INIT;
450 strvec_pushl(&gpg.args,
453 "-bsau", signing_key,
456 bottom = signature->len;
459 * When the username signingkey is bad, program could be terminated
460 * because gpg exits without reading and then write gets SIGPIPE.
462 sigchain_push(SIGPIPE, SIG_IGN);
463 ret = pipe_command(&gpg, buffer->buf, buffer->len,
464 signature, 1024, &gpg_status, 0);
465 sigchain_pop(SIGPIPE);
467 ret |= !strstr(gpg_status.buf, "\n[GNUPG:] SIG_CREATED ");
468 strbuf_release(&gpg_status);
470 return error(_("gpg failed to sign the data"));
472 /* Strip CR from the line endings, in case we are on Windows. */
473 for (i = j = bottom; i < signature->len; i++)
474 if (signature->buf[i] != '\r') {
476 signature->buf[j] = signature->buf[i];
479 strbuf_setlen(signature, j);