]> git.ipfire.org Git - thirdparty/git.git/blame - gpg-interface.c
Merge branch 'jk/bundle-progress'
[thirdparty/git.git] / gpg-interface.c
CommitLineData
2f47eae2 1#include "cache.h"
9b27b492 2#include "commit.h"
b2141fc1 3#include "config.h"
2f47eae2
JH
4#include "run-command.h"
5#include "strbuf.h"
facca53a 6#include "dir.h"
b5fa6081 7#include "ident.h"
2f47eae2
JH
8#include "gpg-interface.h"
9#include "sigchain.h"
4322353b 10#include "tempfile.h"
fd9e2267 11#include "alias.h"
2f47eae2 12
fd2d4c13
JH
13static int git_gpg_config(const char *, const char *, void *);
14
15static void gpg_interface_lazy_init(void)
16{
17 static int done;
18
19 if (done)
20 return;
21 done = 1;
22 git_config(git_gpg_config, NULL);
23}
24
2f47eae2 25static char *configured_signing_key;
facca53a 26static const char *ssh_default_key_command, *ssh_allowed_signers, *ssh_revocation_file;
54887b46
HJI
27static enum signature_trust_level configured_min_trust_level = TRUST_UNDEFINED;
28
58af57e1
HS
29struct gpg_format {
30 const char *name;
31 const char *program;
32 const char **verify_args;
33 const char **sigs;
b5726a5d 34 int (*verify_signed_buffer)(struct signature_check *sigc,
02769437
FS
35 struct gpg_format *fmt,
36 const char *signature,
b5726a5d
FS
37 size_t signature_size);
38 int (*sign_buffer)(struct strbuf *buffer, struct strbuf *signature,
39 const char *signing_key);
fd9e2267 40 const char *(*get_default_key)(void);
4838f62c 41 const char *(*get_key_id)(void);
58af57e1
HS
42};
43
44static const char *openpgp_verify_args[] = {
45 "--keyid-format=long",
46 NULL
47};
48static const char *openpgp_sigs[] = {
49 "-----BEGIN PGP SIGNATURE-----",
50 "-----BEGIN PGP MESSAGE-----",
51 NULL
52};
53
1e7adb97
HS
54static const char *x509_verify_args[] = {
55 NULL
56};
57static const char *x509_sigs[] = {
58 "-----BEGIN SIGNED MESSAGE-----",
59 NULL
60};
61
29b31577
FS
62static const char *ssh_verify_args[] = { NULL };
63static const char *ssh_sigs[] = {
64 "-----BEGIN SSH SIGNATURE-----",
65 NULL
66};
67
b5726a5d 68static int verify_gpg_signed_buffer(struct signature_check *sigc,
02769437
FS
69 struct gpg_format *fmt,
70 const char *signature,
b5726a5d 71 size_t signature_size);
facca53a 72static int verify_ssh_signed_buffer(struct signature_check *sigc,
02769437
FS
73 struct gpg_format *fmt,
74 const char *signature,
facca53a 75 size_t signature_size);
b5726a5d
FS
76static int sign_buffer_gpg(struct strbuf *buffer, struct strbuf *signature,
77 const char *signing_key);
29b31577
FS
78static int sign_buffer_ssh(struct strbuf *buffer, struct strbuf *signature,
79 const char *signing_key);
b5726a5d 80
fd9e2267
FS
81static const char *get_default_ssh_signing_key(void);
82
4838f62c
FS
83static const char *get_ssh_key_id(void);
84
58af57e1 85static struct gpg_format gpg_format[] = {
b5726a5d
FS
86 {
87 .name = "openpgp",
88 .program = "gpg",
89 .verify_args = openpgp_verify_args,
90 .sigs = openpgp_sigs,
91 .verify_signed_buffer = verify_gpg_signed_buffer,
92 .sign_buffer = sign_buffer_gpg,
fd9e2267 93 .get_default_key = NULL,
4838f62c 94 .get_key_id = NULL,
58af57e1 95 },
b5726a5d
FS
96 {
97 .name = "x509",
98 .program = "gpgsm",
99 .verify_args = x509_verify_args,
100 .sigs = x509_sigs,
101 .verify_signed_buffer = verify_gpg_signed_buffer,
102 .sign_buffer = sign_buffer_gpg,
fd9e2267 103 .get_default_key = NULL,
4838f62c 104 .get_key_id = NULL,
1e7adb97 105 },
29b31577
FS
106 {
107 .name = "ssh",
108 .program = "ssh-keygen",
109 .verify_args = ssh_verify_args,
110 .sigs = ssh_sigs,
facca53a 111 .verify_signed_buffer = verify_ssh_signed_buffer,
fd9e2267
FS
112 .sign_buffer = sign_buffer_ssh,
113 .get_default_key = get_default_ssh_signing_key,
4838f62c 114 .get_key_id = get_ssh_key_id,
29b31577 115 },
58af57e1
HS
116};
117
118static struct gpg_format *use_format = &gpg_format[0];
2f47eae2 119
58af57e1
HS
120static struct gpg_format *get_format_by_name(const char *str)
121{
122 int i;
123
124 for (i = 0; i < ARRAY_SIZE(gpg_format); i++)
125 if (!strcmp(gpg_format[i].name, str))
126 return gpg_format + i;
127 return NULL;
128}
129
130static struct gpg_format *get_format_by_sig(const char *sig)
131{
132 int i, j;
133
134 for (i = 0; i < ARRAY_SIZE(gpg_format); i++)
135 for (j = 0; gpg_format[i].sigs[j]; j++)
136 if (starts_with(sig, gpg_format[i].sigs[j]))
137 return gpg_format + i;
138 return NULL;
139}
d7c67668 140
01e57b5d
MG
141void signature_check_clear(struct signature_check *sigc)
142{
88ce3ef6 143 FREE_AND_NULL(sigc->payload);
b5726a5d 144 FREE_AND_NULL(sigc->output);
88ce3ef6
ÆAB
145 FREE_AND_NULL(sigc->gpg_status);
146 FREE_AND_NULL(sigc->signer);
147 FREE_AND_NULL(sigc->key);
3daaaabe 148 FREE_AND_NULL(sigc->fingerprint);
4de9394d 149 FREE_AND_NULL(sigc->primary_key_fingerprint);
01e57b5d
MG
150}
151
da6cf1b3
MG
152/* An exclusive status -- only one of them can appear in output */
153#define GPG_STATUS_EXCLUSIVE (1<<0)
0b11a84e
MG
154/* The status includes key identifier */
155#define GPG_STATUS_KEYID (1<<1)
156/* The status includes user identifier */
157#define GPG_STATUS_UID (1<<2)
3daaaabe
MG
158/* The status includes key fingerprints */
159#define GPG_STATUS_FINGERPRINT (1<<3)
54887b46
HJI
160/* The status includes trust level */
161#define GPG_STATUS_TRUST_LEVEL (1<<4)
0b11a84e
MG
162
163/* Short-hand for standard exclusive *SIG status with keyid & UID */
164#define GPG_STATUS_STDSIG (GPG_STATUS_EXCLUSIVE|GPG_STATUS_KEYID|GPG_STATUS_UID)
da6cf1b3 165
a50e7ca3
JH
166static struct {
167 char result;
168 const char *check;
da6cf1b3 169 unsigned int flags;
a50e7ca3 170} sigcheck_gpg_status[] = {
0b11a84e
MG
171 { 'G', "GOODSIG ", GPG_STATUS_STDSIG },
172 { 'B', "BADSIG ", GPG_STATUS_STDSIG },
0b11a84e
MG
173 { 'E', "ERRSIG ", GPG_STATUS_EXCLUSIVE|GPG_STATUS_KEYID },
174 { 'X', "EXPSIG ", GPG_STATUS_STDSIG },
175 { 'Y', "EXPKEYSIG ", GPG_STATUS_STDSIG },
176 { 'R', "REVKEYSIG ", GPG_STATUS_STDSIG },
3daaaabe 177 { 0, "VALIDSIG ", GPG_STATUS_FINGERPRINT },
54887b46
HJI
178 { 0, "TRUST_", GPG_STATUS_TRUST_LEVEL },
179};
180
803978da
JD
181/* Keep the order same as enum signature_trust_level */
182static struct sigcheck_gpg_trust_level {
54887b46 183 const char *key;
803978da 184 const char *display_key;
54887b46
HJI
185 enum signature_trust_level value;
186} sigcheck_gpg_trust_level[] = {
803978da
JD
187 { "UNDEFINED", "undefined", TRUST_UNDEFINED },
188 { "NEVER", "never", TRUST_NEVER },
189 { "MARGINAL", "marginal", TRUST_MARGINAL },
190 { "FULLY", "fully", TRUST_FULLY },
191 { "ULTIMATE", "ultimate", TRUST_ULTIMATE },
a50e7ca3
JH
192};
193
392b862e
HJI
194static void replace_cstring(char **field, const char *line, const char *next)
195{
196 free(*field);
197
198 if (line && next)
199 *field = xmemdupz(line, next - line);
200 else
201 *field = NULL;
202}
203
54887b46
HJI
204static int parse_gpg_trust_level(const char *level,
205 enum signature_trust_level *res)
206{
207 size_t i;
208
209 for (i = 0; i < ARRAY_SIZE(sigcheck_gpg_trust_level); i++) {
210 if (!strcmp(sigcheck_gpg_trust_level[i].key, level)) {
211 *res = sigcheck_gpg_trust_level[i].value;
212 return 0;
213 }
214 }
215 return 1;
216}
217
fbd0f166 218static void parse_gpg_output(struct signature_check *sigc)
a50e7ca3
JH
219{
220 const char *buf = sigc->gpg_status;
da6cf1b3 221 const char *line, *next;
4de9394d 222 int i, j;
da6cf1b3
MG
223 int seen_exclusive_status = 0;
224
225 /* Iterate over all lines */
226 for (line = buf; *line; line = strchrnul(line+1, '\n')) {
227 while (*line == '\n')
228 line++;
64c45dc7
SR
229 if (!*line)
230 break;
231
da6cf1b3
MG
232 /* Skip lines that don't start with GNUPG status */
233 if (!skip_prefix(line, "[GNUPG:] ", &line))
234 continue;
235
236 /* Iterate over all search strings */
237 for (i = 0; i < ARRAY_SIZE(sigcheck_gpg_status); i++) {
238 if (skip_prefix(line, sigcheck_gpg_status[i].check, &line)) {
54887b46
HJI
239 /*
240 * GOODSIG, BADSIG etc. can occur only once for
241 * each signature. Therefore, if we had more
242 * than one then we're dealing with multiple
243 * signatures. We don't support them
244 * currently, and they're rather hard to
245 * create, so something is likely fishy and we
246 * should reject them altogether.
247 */
da6cf1b3 248 if (sigcheck_gpg_status[i].flags & GPG_STATUS_EXCLUSIVE) {
02561896 249 if (seen_exclusive_status++)
54887b46 250 goto error;
da6cf1b3
MG
251 }
252
3daaaabe
MG
253 if (sigcheck_gpg_status[i].result)
254 sigc->result = sigcheck_gpg_status[i].result;
0b11a84e
MG
255 /* Do we have key information? */
256 if (sigcheck_gpg_status[i].flags & GPG_STATUS_KEYID) {
da6cf1b3 257 next = strchrnul(line, ' ');
392b862e 258 replace_cstring(&sigc->key, line, next);
0b11a84e
MG
259 /* Do we have signer information? */
260 if (*next && (sigcheck_gpg_status[i].flags & GPG_STATUS_UID)) {
da6cf1b3
MG
261 line = next + 1;
262 next = strchrnul(line, '\n');
392b862e 263 replace_cstring(&sigc->signer, line, next);
da6cf1b3
MG
264 }
265 }
54887b46
HJI
266
267 /* Do we have trust level? */
268 if (sigcheck_gpg_status[i].flags & GPG_STATUS_TRUST_LEVEL) {
269 /*
270 * GPG v1 and v2 differs in how the
271 * TRUST_ lines are written. Some
272 * trust lines contain no additional
273 * space-separated information for v1.
274 */
275 size_t trust_size = strcspn(line, " \n");
276 char *trust = xmemdupz(line, trust_size);
277
278 if (parse_gpg_trust_level(trust, &sigc->trust_level)) {
279 free(trust);
280 goto error;
281 }
282 free(trust);
283 }
284
3daaaabe
MG
285 /* Do we have fingerprint? */
286 if (sigcheck_gpg_status[i].flags & GPG_STATUS_FINGERPRINT) {
67a6ea63
HJI
287 const char *limit;
288 char **field;
289
3daaaabe 290 next = strchrnul(line, ' ');
392b862e 291 replace_cstring(&sigc->fingerprint, line, next);
4de9394d 292
67a6ea63
HJI
293 /*
294 * Skip interim fields. The search is
295 * limited to the same line since only
296 * OpenPGP signatures has a field with
297 * the primary fingerprint.
298 */
299 limit = strchrnul(line, '\n');
4de9394d 300 for (j = 9; j > 0; j--) {
67a6ea63 301 if (!*next || limit <= next)
4de9394d
MG
302 break;
303 line = next + 1;
304 next = strchrnul(line, ' ');
305 }
306
67a6ea63
HJI
307 field = &sigc->primary_key_fingerprint;
308 if (!j) {
309 next = strchrnul(line, '\n');
310 replace_cstring(field, line, next);
311 } else {
312 replace_cstring(field, NULL, NULL);
313 }
3daaaabe 314 }
da6cf1b3
MG
315
316 break;
661a1806 317 }
a50e7ca3
JH
318 }
319 }
da6cf1b3
MG
320 return;
321
54887b46 322error:
da6cf1b3
MG
323 sigc->result = 'E';
324 /* Clear partial data to avoid confusion */
4de9394d 325 FREE_AND_NULL(sigc->primary_key_fingerprint);
3daaaabe 326 FREE_AND_NULL(sigc->fingerprint);
da6cf1b3
MG
327 FREE_AND_NULL(sigc->signer);
328 FREE_AND_NULL(sigc->key);
a50e7ca3
JH
329}
330
b5726a5d 331static int verify_gpg_signed_buffer(struct signature_check *sigc,
02769437
FS
332 struct gpg_format *fmt,
333 const char *signature,
b5726a5d 334 size_t signature_size)
67948981
HJI
335{
336 struct child_process gpg = CHILD_PROCESS_INIT;
67948981
HJI
337 struct tempfile *temp;
338 int ret;
b5726a5d
FS
339 struct strbuf gpg_stdout = STRBUF_INIT;
340 struct strbuf gpg_stderr = STRBUF_INIT;
67948981
HJI
341
342 temp = mks_tempfile_t(".git_vtag_tmpXXXXXX");
343 if (!temp)
344 return error_errno(_("could not create temporary file"));
345 if (write_in_full(temp->fd, signature, signature_size) < 0 ||
346 close_tempfile_gently(temp) < 0) {
347 error_errno(_("failed writing detached signature to '%s'"),
348 temp->filename.buf);
349 delete_tempfile(&temp);
350 return -1;
351 }
352
ef8d7ac4
JK
353 strvec_push(&gpg.args, fmt->program);
354 strvec_pushv(&gpg.args, fmt->verify_args);
355 strvec_pushl(&gpg.args,
f6d8942b
JK
356 "--status-fd=1",
357 "--verify", temp->filename.buf, "-",
358 NULL);
67948981 359
67948981 360 sigchain_push(SIGPIPE, SIG_IGN);
02769437 361 ret = pipe_command(&gpg, sigc->payload, sigc->payload_len, &gpg_stdout, 0,
b5726a5d 362 &gpg_stderr, 0);
67948981
HJI
363 sigchain_pop(SIGPIPE);
364
365 delete_tempfile(&temp);
366
b5726a5d 367 ret |= !strstr(gpg_stdout.buf, "\n[GNUPG:] GOODSIG ");
b5726a5d
FS
368 sigc->output = strbuf_detach(&gpg_stderr, NULL);
369 sigc->gpg_status = strbuf_detach(&gpg_stdout, NULL);
370
371 parse_gpg_output(sigc);
372
373 strbuf_release(&gpg_stdout);
374 strbuf_release(&gpg_stderr);
67948981
HJI
375
376 return ret;
377}
378
facca53a
FS
379static void parse_ssh_output(struct signature_check *sigc)
380{
381 const char *line, *principal, *search;
78d468f1 382 char *to_free;
facca53a
FS
383 char *key = NULL;
384
385 /*
386 * ssh-keygen output should be:
387 * Good "git" signature for PRINCIPAL with RSA key SHA256:FINGERPRINT
388 *
389 * or for valid but unknown keys:
390 * Good "git" signature with RSA key SHA256:FINGERPRINT
391 *
392 * Note that "PRINCIPAL" can contain whitespace, "RSA" and
393 * "SHA256" part could be a different token that names of
394 * the algorithms used, and "FINGERPRINT" is a hexadecimal
395 * string. By finding the last occurence of " with ", we can
396 * reliably parse out the PRINCIPAL.
397 */
398 sigc->result = 'B';
399 sigc->trust_level = TRUST_NEVER;
400
78d468f1 401 line = to_free = xmemdupz(sigc->output, strcspn(sigc->output, "\n"));
facca53a
FS
402
403 if (skip_prefix(line, "Good \"git\" signature for ", &line)) {
facca53a
FS
404 /* Search for the last "with" to get the full principal */
405 principal = line;
406 do {
407 search = strstr(line, " with ");
408 if (search)
409 line = search + 1;
410 } while (search != NULL);
18b18503
RS
411 if (line == principal)
412 goto cleanup;
413
414 /* Valid signature and known principal */
415 sigc->result = 'G';
416 sigc->trust_level = TRUST_FULLY;
facca53a
FS
417 sigc->signer = xmemdupz(principal, line - principal - 1);
418 } else if (skip_prefix(line, "Good \"git\" signature with ", &line)) {
419 /* Valid signature, but key unknown */
420 sigc->result = 'G';
421 sigc->trust_level = TRUST_UNDEFINED;
422 } else {
78d468f1 423 goto cleanup;
facca53a
FS
424 }
425
65db97b4 426 key = strstr(line, "key ");
facca53a 427 if (key) {
65db97b4 428 sigc->fingerprint = xstrdup(strstr(line, "key ") + 4);
facca53a
FS
429 sigc->key = xstrdup(sigc->fingerprint);
430 } else {
431 /*
432 * Output did not match what we expected
433 * Treat the signature as bad
434 */
435 sigc->result = 'B';
436 }
78d468f1
JK
437
438cleanup:
439 free(to_free);
facca53a
FS
440}
441
442static int verify_ssh_signed_buffer(struct signature_check *sigc,
02769437
FS
443 struct gpg_format *fmt,
444 const char *signature,
facca53a
FS
445 size_t signature_size)
446{
447 struct child_process ssh_keygen = CHILD_PROCESS_INIT;
448 struct tempfile *buffer_file;
449 int ret = -1;
450 const char *line;
facca53a
FS
451 char *principal;
452 struct strbuf ssh_principals_out = STRBUF_INIT;
453 struct strbuf ssh_principals_err = STRBUF_INIT;
454 struct strbuf ssh_keygen_out = STRBUF_INIT;
455 struct strbuf ssh_keygen_err = STRBUF_INIT;
6393c956
FS
456 struct strbuf verify_time = STRBUF_INIT;
457 const struct date_mode verify_date_mode = {
458 .type = DATE_STRFTIME,
459 .strftime_fmt = "%Y%m%d%H%M%S",
460 /* SSH signing key validity has no timezone information - Use the local timezone */
461 .local = 1,
462 };
facca53a
FS
463
464 if (!ssh_allowed_signers) {
465 error(_("gpg.ssh.allowedSignersFile needs to be configured and exist for ssh signature verification"));
466 return -1;
467 }
468
469 buffer_file = mks_tempfile_t(".git_vtag_tmpXXXXXX");
470 if (!buffer_file)
471 return error_errno(_("could not create temporary file"));
472 if (write_in_full(buffer_file->fd, signature, signature_size) < 0 ||
473 close_tempfile_gently(buffer_file) < 0) {
474 error_errno(_("failed writing detached signature to '%s'"),
475 buffer_file->filename.buf);
476 delete_tempfile(&buffer_file);
477 return -1;
478 }
479
6393c956
FS
480 if (sigc->payload_timestamp)
481 strbuf_addf(&verify_time, "-Overify-time=%s",
482 show_date(sigc->payload_timestamp, 0, &verify_date_mode));
483
facca53a
FS
484 /* Find the principal from the signers */
485 strvec_pushl(&ssh_keygen.args, fmt->program,
486 "-Y", "find-principals",
487 "-f", ssh_allowed_signers,
488 "-s", buffer_file->filename.buf,
6393c956 489 verify_time.buf,
facca53a
FS
490 NULL);
491 ret = pipe_command(&ssh_keygen, NULL, 0, &ssh_principals_out, 0,
492 &ssh_principals_err, 0);
493 if (ret && strstr(ssh_principals_err.buf, "usage:")) {
494 error(_("ssh-keygen -Y find-principals/verify is needed for ssh signature verification (available in openssh version 8.2p1+)"));
495 goto out;
496 }
497 if (ret || !ssh_principals_out.len) {
498 /*
499 * We did not find a matching principal in the allowedSigners
500 * Check without validation
501 */
502 child_process_init(&ssh_keygen);
503 strvec_pushl(&ssh_keygen.args, fmt->program,
504 "-Y", "check-novalidate",
505 "-n", "git",
506 "-s", buffer_file->filename.buf,
6393c956 507 verify_time.buf,
facca53a 508 NULL);
02769437 509 pipe_command(&ssh_keygen, sigc->payload, sigc->payload_len,
facca53a
FS
510 &ssh_keygen_out, 0, &ssh_keygen_err, 0);
511
512 /*
513 * Fail on unknown keys
514 * we still call check-novalidate to display the signature info
515 */
516 ret = -1;
517 } else {
518 /* Check every principal we found (one per line) */
caeef01e
FS
519 const char *next;
520 for (line = ssh_principals_out.buf;
521 *line;
522 line = next) {
523 const char *end_of_text;
524
525 next = end_of_text = strchrnul(line, '\n');
526
527 /* Did we find a LF, and did we have CR before it? */
528 if (*end_of_text &&
529 line < end_of_text &&
530 end_of_text[-1] == '\r')
531 end_of_text--;
532
533 /* Unless we hit NUL, skip over the LF we found */
534 if (*next)
535 next++;
536
537 /* Not all lines are data. Skip empty ones */
538 if (line == end_of_text)
539 continue;
540
541 /* We now know we have an non-empty line. Process it */
542 principal = xmemdupz(line, end_of_text - line);
facca53a
FS
543
544 child_process_init(&ssh_keygen);
545 strbuf_release(&ssh_keygen_out);
546 strbuf_release(&ssh_keygen_err);
547 strvec_push(&ssh_keygen.args, fmt->program);
548 /*
549 * We found principals
550 * Try with each until we find a match
551 */
552 strvec_pushl(&ssh_keygen.args, "-Y", "verify",
553 "-n", "git",
554 "-f", ssh_allowed_signers,
555 "-I", principal,
556 "-s", buffer_file->filename.buf,
6393c956 557 verify_time.buf,
facca53a
FS
558 NULL);
559
560 if (ssh_revocation_file) {
561 if (file_exists(ssh_revocation_file)) {
562 strvec_pushl(&ssh_keygen.args, "-r",
563 ssh_revocation_file, NULL);
564 } else {
565 warning(_("ssh signing revocation file configured but not found: %s"),
566 ssh_revocation_file);
567 }
568 }
569
570 sigchain_push(SIGPIPE, SIG_IGN);
02769437 571 ret = pipe_command(&ssh_keygen, sigc->payload, sigc->payload_len,
facca53a
FS
572 &ssh_keygen_out, 0, &ssh_keygen_err, 0);
573 sigchain_pop(SIGPIPE);
574
575 FREE_AND_NULL(principal);
576
577 if (!ret)
578 ret = !starts_with(ssh_keygen_out.buf, "Good");
579
580 if (!ret)
581 break;
582 }
583 }
584
facca53a
FS
585 strbuf_stripspace(&ssh_keygen_out, 0);
586 strbuf_stripspace(&ssh_keygen_err, 0);
587 /* Add stderr outputs to show the user actual ssh-keygen errors */
588 strbuf_add(&ssh_keygen_out, ssh_principals_err.buf, ssh_principals_err.len);
589 strbuf_add(&ssh_keygen_out, ssh_keygen_err.buf, ssh_keygen_err.len);
590 sigc->output = strbuf_detach(&ssh_keygen_out, NULL);
591 sigc->gpg_status = xstrdup(sigc->output);
592
593 parse_ssh_output(sigc);
594
595out:
596 if (buffer_file)
597 delete_tempfile(&buffer_file);
598 strbuf_release(&ssh_principals_out);
599 strbuf_release(&ssh_principals_err);
600 strbuf_release(&ssh_keygen_out);
601 strbuf_release(&ssh_keygen_err);
6393c956 602 strbuf_release(&verify_time);
facca53a
FS
603
604 return ret;
605}
606
6393c956
FS
607static int parse_payload_metadata(struct signature_check *sigc)
608{
609 const char *ident_line = NULL;
610 size_t ident_len;
611 struct ident_split ident;
612 const char *signer_header;
613
614 switch (sigc->payload_type) {
615 case SIGNATURE_PAYLOAD_COMMIT:
616 signer_header = "committer";
617 break;
618 case SIGNATURE_PAYLOAD_TAG:
619 signer_header = "tagger";
620 break;
621 case SIGNATURE_PAYLOAD_UNDEFINED:
622 case SIGNATURE_PAYLOAD_PUSH_CERT:
623 /* Ignore payloads we don't want to parse */
624 return 0;
625 default:
626 BUG("invalid value for sigc->payload_type");
627 }
628
629 ident_line = find_commit_header(sigc->payload, signer_header, &ident_len);
630 if (!ident_line || !ident_len)
631 return 1;
632
633 if (split_ident_line(&ident, ident_line, ident_len))
634 return 1;
635
636 if (!sigc->payload_timestamp && ident.date_begin && ident.date_end)
637 sigc->payload_timestamp = parse_timestamp(ident.date_begin, NULL, 10);
638
639 return 0;
640}
641
02769437
FS
642int check_signature(struct signature_check *sigc,
643 const char *signature, size_t slen)
a4cc18f2 644{
b5726a5d 645 struct gpg_format *fmt;
a4cc18f2 646 int status;
647
fd2d4c13
JH
648 gpg_interface_lazy_init();
649
a4cc18f2 650 sigc->result = 'N';
54887b46 651 sigc->trust_level = -1;
a4cc18f2 652
b5726a5d
FS
653 fmt = get_format_by_sig(signature);
654 if (!fmt)
655 die(_("bad/incompatible signature '%s'"), signature);
656
6393c956
FS
657 if (parse_payload_metadata(sigc))
658 return 1;
659
02769437 660 status = fmt->verify_signed_buffer(sigc, fmt, signature, slen);
b5726a5d
FS
661
662 if (status && !sigc->output)
663 return !!status;
664
54887b46
HJI
665 status |= sigc->result != 'G';
666 status |= sigc->trust_level < configured_min_trust_level;
a4cc18f2 667
4e5dc9ca 668 return !!status;
a4cc18f2 669}
670
ca194d50 671void print_signature_buffer(const struct signature_check *sigc, unsigned flags)
672{
b5726a5d
FS
673 const char *output = flags & GPG_VERIFY_RAW ? sigc->gpg_status :
674 sigc->output;
aeff29dd 675
ca194d50 676 if (flags & GPG_VERIFY_VERBOSE && sigc->payload)
02769437 677 fwrite(sigc->payload, 1, sigc->payload_len, stdout);
ca194d50 678
aeff29dd 679 if (output)
680 fputs(output, stderr);
ca194d50 681}
682
482c1191 683size_t parse_signed_buffer(const char *buf, size_t size)
d7c67668 684{
d7c67668 685 size_t len = 0;
8b44b2be
JK
686 size_t match = size;
687 while (len < size) {
688 const char *eol;
689
58af57e1 690 if (get_format_by_sig(buf + len))
8b44b2be
JK
691 match = len;
692
693 eol = memchr(buf + len, '\n', size - len);
d7c67668
JH
694 len += eol ? eol - (buf + len) + 1 : size - len;
695 }
8b44b2be 696 return match;
d7c67668
JH
697}
698
482c1191 699int parse_signature(const char *buf, size_t size, struct strbuf *payload, struct strbuf *signature)
700{
701 size_t match = parse_signed_buffer(buf, size);
702 if (match != size) {
703 strbuf_add(payload, buf, match);
9b27b492 704 remove_signature(payload);
482c1191 705 strbuf_add(signature, buf + match, size - match);
706 return 1;
707 }
708 return 0;
709}
710
2f47eae2
JH
711void set_signing_key(const char *key)
712{
fd2d4c13
JH
713 gpg_interface_lazy_init();
714
2f47eae2
JH
715 free(configured_signing_key);
716 configured_signing_key = xstrdup(key);
717}
718
fd2d4c13 719static int git_gpg_config(const char *var, const char *value, void *cb UNUSED)
2f47eae2 720{
58af57e1
HS
721 struct gpg_format *fmt = NULL;
722 char *fmtname = NULL;
54887b46
HJI
723 char *trust;
724 int ret;
58af57e1 725
2f47eae2 726 if (!strcmp(var, "user.signingkey")) {
1b0eeec3
JK
727 if (!value)
728 return config_error_nonbool(var);
0c5e70f0 729 set_signing_key(value);
1b0eeec3 730 return 0;
0c5e70f0 731 }
1b0eeec3 732
57a8dd75
HS
733 if (!strcmp(var, "gpg.format")) {
734 if (!value)
735 return config_error_nonbool(var);
58af57e1
HS
736 fmt = get_format_by_name(value);
737 if (!fmt)
1a8aea85 738 return error(_("invalid value for '%s': '%s'"),
57a8dd75 739 var, value);
58af57e1
HS
740 use_format = fmt;
741 return 0;
57a8dd75
HS
742 }
743
54887b46
HJI
744 if (!strcmp(var, "gpg.mintrustlevel")) {
745 if (!value)
746 return config_error_nonbool(var);
747
748 trust = xstrdup_toupper(value);
749 ret = parse_gpg_trust_level(trust, &configured_min_trust_level);
750 free(trust);
751
752 if (ret)
1a8aea85
JNA
753 return error(_("invalid value for '%s': '%s'"),
754 var, value);
54887b46
HJI
755 return 0;
756 }
757
fd9e2267
FS
758 if (!strcmp(var, "gpg.ssh.defaultkeycommand")) {
759 if (!value)
760 return config_error_nonbool(var);
761 return git_config_string(&ssh_default_key_command, var, value);
762 }
763
facca53a
FS
764 if (!strcmp(var, "gpg.ssh.allowedsignersfile")) {
765 if (!value)
766 return config_error_nonbool(var);
767 return git_config_pathname(&ssh_allowed_signers, var, value);
768 }
769
770 if (!strcmp(var, "gpg.ssh.revocationfile")) {
771 if (!value)
772 return config_error_nonbool(var);
773 return git_config_pathname(&ssh_revocation_file, var, value);
774 }
775
b02f51b1 776 if (!strcmp(var, "gpg.program") || !strcmp(var, "gpg.openpgp.program"))
58af57e1
HS
777 fmtname = "openpgp";
778
1e7adb97
HS
779 if (!strcmp(var, "gpg.x509.program"))
780 fmtname = "x509";
781
29b31577
FS
782 if (!strcmp(var, "gpg.ssh.program"))
783 fmtname = "ssh";
784
58af57e1
HS
785 if (fmtname) {
786 fmt = get_format_by_name(fmtname);
787 return git_config_string(&fmt->program, var, value);
2f47eae2 788 }
1b0eeec3 789
2f47eae2
JH
790 return 0;
791}
792
350a2518
FS
793/*
794 * Returns 1 if `string` contains a literal ssh key, 0 otherwise
795 * `key` will be set to the start of the actual key if a prefix is present.
796 */
797static int is_literal_ssh_key(const char *string, const char **key)
798{
799 if (skip_prefix(string, "key::", key))
800 return 1;
801 if (starts_with(string, "ssh-")) {
802 *key = string;
803 return 1;
804 }
805 return 0;
806}
807
4838f62c
FS
808static char *get_ssh_key_fingerprint(const char *signing_key)
809{
810 struct child_process ssh_keygen = CHILD_PROCESS_INIT;
811 int ret = -1;
812 struct strbuf fingerprint_stdout = STRBUF_INIT;
813 struct strbuf **fingerprint;
f3af71c9 814 char *fingerprint_ret;
350a2518 815 const char *literal_key = NULL;
4838f62c
FS
816
817 /*
818 * With SSH Signing this can contain a filename or a public key
819 * For textual representation we usually want a fingerprint
820 */
350a2518 821 if (is_literal_ssh_key(signing_key, &literal_key)) {
4838f62c 822 strvec_pushl(&ssh_keygen.args, "ssh-keygen", "-lf", "-", NULL);
350a2518
FS
823 ret = pipe_command(&ssh_keygen, literal_key,
824 strlen(literal_key), &fingerprint_stdout, 0,
4838f62c
FS
825 NULL, 0);
826 } else {
827 strvec_pushl(&ssh_keygen.args, "ssh-keygen", "-lf",
828 configured_signing_key, NULL);
829 ret = pipe_command(&ssh_keygen, NULL, 0, &fingerprint_stdout, 0,
830 NULL, 0);
831 }
832
833 if (!!ret)
834 die_errno(_("failed to get the ssh fingerprint for key '%s'"),
835 signing_key);
836
837 fingerprint = strbuf_split_max(&fingerprint_stdout, ' ', 3);
838 if (!fingerprint[1])
839 die_errno(_("failed to get the ssh fingerprint for key '%s'"),
840 signing_key);
841
f3af71c9
JK
842 fingerprint_ret = strbuf_detach(fingerprint[1], NULL);
843 strbuf_list_free(fingerprint);
844 strbuf_release(&fingerprint_stdout);
845 return fingerprint_ret;
4838f62c
FS
846}
847
fd9e2267
FS
848/* Returns the first public key from an ssh-agent to use for signing */
849static const char *get_default_ssh_signing_key(void)
850{
851 struct child_process ssh_default_key = CHILD_PROCESS_INIT;
852 int ret = -1;
853 struct strbuf key_stdout = STRBUF_INIT, key_stderr = STRBUF_INIT;
854 struct strbuf **keys;
855 char *key_command = NULL;
856 const char **argv;
857 int n;
858 char *default_key = NULL;
350a2518 859 const char *literal_key = NULL;
fd9e2267
FS
860
861 if (!ssh_default_key_command)
862 die(_("either user.signingkey or gpg.ssh.defaultKeyCommand needs to be configured"));
863
864 key_command = xstrdup(ssh_default_key_command);
865 n = split_cmdline(key_command, &argv);
866
867 if (n < 0)
868 die("malformed build-time gpg.ssh.defaultKeyCommand: %s",
869 split_cmdline_strerror(n));
870
871 strvec_pushv(&ssh_default_key.args, argv);
872 ret = pipe_command(&ssh_default_key, NULL, 0, &key_stdout, 0,
873 &key_stderr, 0);
874
875 if (!ret) {
876 keys = strbuf_split_max(&key_stdout, '\n', 2);
350a2518
FS
877 if (keys[0] && is_literal_ssh_key(keys[0]->buf, &literal_key)) {
878 /*
879 * We only use `is_literal_ssh_key` here to check validity
880 * The prefix will be stripped when the key is used.
881 */
fd9e2267
FS
882 default_key = strbuf_detach(keys[0], NULL);
883 } else {
f7337193 884 warning(_("gpg.ssh.defaultKeyCommand succeeded but returned no keys: %s %s"),
fd9e2267
FS
885 key_stderr.buf, key_stdout.buf);
886 }
887
888 strbuf_list_free(keys);
889 } else {
890 warning(_("gpg.ssh.defaultKeyCommand failed: %s %s"),
891 key_stderr.buf, key_stdout.buf);
892 }
893
894 free(key_command);
895 free(argv);
896 strbuf_release(&key_stdout);
897
898 return default_key;
899}
900
4838f62c
FS
901static const char *get_ssh_key_id(void) {
902 return get_ssh_key_fingerprint(get_signing_key());
903}
904
905/* Returns a textual but unique representation of the signing key */
906const char *get_signing_key_id(void)
907{
fd2d4c13
JH
908 gpg_interface_lazy_init();
909
4838f62c
FS
910 if (use_format->get_key_id) {
911 return use_format->get_key_id();
912 }
913
914 /* GPG/GPGSM only store a key id on this variable */
915 return get_signing_key();
916}
917
2f47eae2
JH
918const char *get_signing_key(void)
919{
fd2d4c13
JH
920 gpg_interface_lazy_init();
921
2f47eae2
JH
922 if (configured_signing_key)
923 return configured_signing_key;
fd9e2267
FS
924 if (use_format->get_default_key) {
925 return use_format->get_default_key();
926 }
927
928 return git_committer_info(IDENT_STRICT | IDENT_NO_DATE);
2f47eae2
JH
929}
930
803978da
JD
931const char *gpg_trust_level_to_str(enum signature_trust_level level)
932{
933 struct sigcheck_gpg_trust_level *trust;
934
935 if (level < 0 || level >= ARRAY_SIZE(sigcheck_gpg_trust_level))
936 BUG("invalid trust level requested %d", level);
937
938 trust = &sigcheck_gpg_trust_level[level];
939 if (trust->value != level)
940 BUG("sigcheck_gpg_trust_level[] unsorted");
941
942 return sigcheck_gpg_trust_level[level].display_key;
943}
944
2f47eae2 945int sign_buffer(struct strbuf *buffer, struct strbuf *signature, const char *signing_key)
b5726a5d 946{
fd2d4c13
JH
947 gpg_interface_lazy_init();
948
b5726a5d
FS
949 return use_format->sign_buffer(buffer, signature, signing_key);
950}
951
29b31577
FS
952/*
953 * Strip CR from the line endings, in case we are on Windows.
954 * NEEDSWORK: make it trim only CRs before LFs and rename
955 */
956static void remove_cr_after(struct strbuf *buffer, size_t offset)
957{
958 size_t i, j;
959
960 for (i = j = offset; i < buffer->len; i++) {
961 if (buffer->buf[i] != '\r') {
962 if (i != j)
963 buffer->buf[j] = buffer->buf[i];
964 j++;
965 }
966 }
967 strbuf_setlen(buffer, j);
968}
969
b5726a5d
FS
970static int sign_buffer_gpg(struct strbuf *buffer, struct strbuf *signature,
971 const char *signing_key)
2f47eae2 972{
d3180279 973 struct child_process gpg = CHILD_PROCESS_INIT;
0581b546 974 int ret;
29b31577 975 size_t bottom;
a075e79d 976 const char *cp;
efee9553 977 struct strbuf gpg_status = STRBUF_INIT;
2f47eae2 978
ef8d7ac4 979 strvec_pushl(&gpg.args,
f6d8942b
JK
980 use_format->program,
981 "--status-fd=2",
982 "-bsau", signing_key,
983 NULL);
2f47eae2 984
0581b546 985 bottom = signature->len;
2f47eae2
JH
986
987 /*
988 * When the username signingkey is bad, program could be terminated
989 * because gpg exits without reading and then write gets SIGPIPE.
990 */
991 sigchain_push(SIGPIPE, SIG_IGN);
0581b546 992 ret = pipe_command(&gpg, buffer->buf, buffer->len,
efee9553 993 signature, 1024, &gpg_status, 0);
2f47eae2
JH
994 sigchain_pop(SIGPIPE);
995
a075e79d
FS
996 for (cp = gpg_status.buf;
997 cp && (cp = strstr(cp, "[GNUPG:] SIG_CREATED "));
998 cp++) {
999 if (cp == gpg_status.buf || cp[-1] == '\n')
1000 break; /* found */
1001 }
1002 ret |= !cp;
ad6b3207
JS
1003 if (ret) {
1004 error(_("gpg failed to sign the data:\n%s"),
1005 gpg_status.len ? gpg_status.buf : "(no gpg output)");
1006 strbuf_release(&gpg_status);
1007 return -1;
1008 }
efee9553 1009 strbuf_release(&gpg_status);
2f47eae2
JH
1010
1011 /* Strip CR from the line endings, in case we are on Windows. */
29b31577 1012 remove_cr_after(signature, bottom);
2f47eae2
JH
1013
1014 return 0;
1015}
29b31577
FS
1016
1017static int sign_buffer_ssh(struct strbuf *buffer, struct strbuf *signature,
1018 const char *signing_key)
1019{
1020 struct child_process signer = CHILD_PROCESS_INIT;
1021 int ret = -1;
1022 size_t bottom, keylen;
1023 struct strbuf signer_stderr = STRBUF_INIT;
1024 struct tempfile *key_file = NULL, *buffer_file = NULL;
1025 char *ssh_signing_key_file = NULL;
1026 struct strbuf ssh_signature_filename = STRBUF_INIT;
350a2518 1027 const char *literal_key = NULL;
dce7b311 1028 int literal_ssh_key = 0;
29b31577
FS
1029
1030 if (!signing_key || signing_key[0] == '\0')
1031 return error(
b4eda05d 1032 _("user.signingKey needs to be set for ssh signing"));
29b31577 1033
350a2518 1034 if (is_literal_ssh_key(signing_key, &literal_key)) {
29b31577 1035 /* A literal ssh key */
dce7b311 1036 literal_ssh_key = 1;
29b31577
FS
1037 key_file = mks_tempfile_t(".git_signing_key_tmpXXXXXX");
1038 if (!key_file)
1039 return error_errno(
1040 _("could not create temporary file"));
350a2518
FS
1041 keylen = strlen(literal_key);
1042 if (write_in_full(key_file->fd, literal_key, keylen) < 0 ||
29b31577
FS
1043 close_tempfile_gently(key_file) < 0) {
1044 error_errno(_("failed writing ssh signing key to '%s'"),
1045 key_file->filename.buf);
1046 goto out;
1047 }
1048 ssh_signing_key_file = strbuf_detach(&key_file->filename, NULL);
1049 } else {
1050 /* We assume a file */
1051 ssh_signing_key_file = expand_user_path(signing_key, 1);
1052 }
1053
1054 buffer_file = mks_tempfile_t(".git_signing_buffer_tmpXXXXXX");
1055 if (!buffer_file) {
1056 error_errno(_("could not create temporary file"));
1057 goto out;
1058 }
1059
1060 if (write_in_full(buffer_file->fd, buffer->buf, buffer->len) < 0 ||
1061 close_tempfile_gently(buffer_file) < 0) {
1062 error_errno(_("failed writing ssh signing key buffer to '%s'"),
1063 buffer_file->filename.buf);
1064 goto out;
1065 }
1066
1067 strvec_pushl(&signer.args, use_format->program,
1068 "-Y", "sign",
1069 "-n", "git",
1070 "-f", ssh_signing_key_file,
29b31577 1071 NULL);
dce7b311
AS
1072 if (literal_ssh_key)
1073 strvec_push(&signer.args, "-U");
1074 strvec_push(&signer.args, buffer_file->filename.buf);
29b31577
FS
1075
1076 sigchain_push(SIGPIPE, SIG_IGN);
1077 ret = pipe_command(&signer, NULL, 0, NULL, 0, &signer_stderr, 0);
1078 sigchain_pop(SIGPIPE);
1079
1080 if (ret) {
1081 if (strstr(signer_stderr.buf, "usage:"))
1082 error(_("ssh-keygen -Y sign is needed for ssh signing (available in openssh version 8.2p1+)"));
1083
1084 error("%s", signer_stderr.buf);
1085 goto out;
1086 }
1087
1088 bottom = signature->len;
1089
1090 strbuf_addbuf(&ssh_signature_filename, &buffer_file->filename);
1091 strbuf_addstr(&ssh_signature_filename, ".sig");
1092 if (strbuf_read_file(signature, ssh_signature_filename.buf, 0) < 0) {
36fb0d07 1093 ret = error_errno(
29b31577
FS
1094 _("failed reading ssh signing data buffer from '%s'"),
1095 ssh_signature_filename.buf);
36fb0d07 1096 goto out;
29b31577 1097 }
29b31577
FS
1098 /* Strip CR from the line endings, in case we are on Windows. */
1099 remove_cr_after(signature, bottom);
1100
1101out:
1102 if (key_file)
1103 delete_tempfile(&key_file);
1104 if (buffer_file)
1105 delete_tempfile(&buffer_file);
36fb0d07
PW
1106 if (ssh_signature_filename.len)
1107 unlink_or_warn(ssh_signature_filename.buf);
29b31577
FS
1108 strbuf_release(&signer_stderr);
1109 strbuf_release(&ssh_signature_filename);
1110 FREE_AND_NULL(ssh_signing_key_file);
1111 return ret;
1112}