1 #define USE_THE_REPOSITORY_VARIABLE
3 #include "git-compat-util.h"
8 #include "run-command.h"
12 #include "gpg-interface.h"
18 static int git_gpg_config(const char *, const char *,
19 const struct config_context
*, void *);
21 static void gpg_interface_lazy_init(void)
28 git_config(git_gpg_config
, NULL
);
31 static char *configured_signing_key
;
32 static char *ssh_default_key_command
;
33 static char *ssh_allowed_signers
;
34 static char *ssh_revocation_file
;
35 static enum signature_trust_level configured_min_trust_level
= TRUST_UNDEFINED
;
40 const char **verify_args
;
42 int (*verify_signed_buffer
)(struct signature_check
*sigc
,
43 struct gpg_format
*fmt
,
44 const char *signature
,
45 size_t signature_size
);
46 int (*sign_buffer
)(struct strbuf
*buffer
, struct strbuf
*signature
,
47 const char *signing_key
);
48 char *(*get_default_key
)(void);
49 char *(*get_key_id
)(void);
52 static const char *openpgp_verify_args
[] = {
53 "--keyid-format=long",
56 static const char *openpgp_sigs
[] = {
57 "-----BEGIN PGP SIGNATURE-----",
58 "-----BEGIN PGP MESSAGE-----",
62 static const char *x509_verify_args
[] = {
65 static const char *x509_sigs
[] = {
66 "-----BEGIN SIGNED MESSAGE-----",
70 static const char *ssh_verify_args
[] = { NULL
};
71 static const char *ssh_sigs
[] = {
72 "-----BEGIN SSH SIGNATURE-----",
76 static int verify_gpg_signed_buffer(struct signature_check
*sigc
,
77 struct gpg_format
*fmt
,
78 const char *signature
,
79 size_t signature_size
);
80 static int verify_ssh_signed_buffer(struct signature_check
*sigc
,
81 struct gpg_format
*fmt
,
82 const char *signature
,
83 size_t signature_size
);
84 static int sign_buffer_gpg(struct strbuf
*buffer
, struct strbuf
*signature
,
85 const char *signing_key
);
86 static int sign_buffer_ssh(struct strbuf
*buffer
, struct strbuf
*signature
,
87 const char *signing_key
);
89 static char *get_default_ssh_signing_key(void);
91 static char *get_ssh_key_id(void);
93 static struct gpg_format gpg_format
[] = {
97 .verify_args
= openpgp_verify_args
,
99 .verify_signed_buffer
= verify_gpg_signed_buffer
,
100 .sign_buffer
= sign_buffer_gpg
,
101 .get_default_key
= NULL
,
107 .verify_args
= x509_verify_args
,
109 .verify_signed_buffer
= verify_gpg_signed_buffer
,
110 .sign_buffer
= sign_buffer_gpg
,
111 .get_default_key
= NULL
,
116 .program
= "ssh-keygen",
117 .verify_args
= ssh_verify_args
,
119 .verify_signed_buffer
= verify_ssh_signed_buffer
,
120 .sign_buffer
= sign_buffer_ssh
,
121 .get_default_key
= get_default_ssh_signing_key
,
122 .get_key_id
= get_ssh_key_id
,
126 static struct gpg_format
*use_format
= &gpg_format
[0];
128 static struct gpg_format
*get_format_by_name(const char *str
)
132 for (i
= 0; i
< ARRAY_SIZE(gpg_format
); i
++)
133 if (!strcmp(gpg_format
[i
].name
, str
))
134 return gpg_format
+ i
;
138 static struct gpg_format
*get_format_by_sig(const char *sig
)
142 for (i
= 0; i
< ARRAY_SIZE(gpg_format
); i
++)
143 for (j
= 0; gpg_format
[i
].sigs
[j
]; j
++)
144 if (starts_with(sig
, gpg_format
[i
].sigs
[j
]))
145 return gpg_format
+ i
;
149 void signature_check_clear(struct signature_check
*sigc
)
151 FREE_AND_NULL(sigc
->payload
);
152 FREE_AND_NULL(sigc
->output
);
153 FREE_AND_NULL(sigc
->gpg_status
);
154 FREE_AND_NULL(sigc
->signer
);
155 FREE_AND_NULL(sigc
->key
);
156 FREE_AND_NULL(sigc
->fingerprint
);
157 FREE_AND_NULL(sigc
->primary_key_fingerprint
);
160 /* An exclusive status -- only one of them can appear in output */
161 #define GPG_STATUS_EXCLUSIVE (1<<0)
162 /* The status includes key identifier */
163 #define GPG_STATUS_KEYID (1<<1)
164 /* The status includes user identifier */
165 #define GPG_STATUS_UID (1<<2)
166 /* The status includes key fingerprints */
167 #define GPG_STATUS_FINGERPRINT (1<<3)
168 /* The status includes trust level */
169 #define GPG_STATUS_TRUST_LEVEL (1<<4)
171 /* Short-hand for standard exclusive *SIG status with keyid & UID */
172 #define GPG_STATUS_STDSIG (GPG_STATUS_EXCLUSIVE|GPG_STATUS_KEYID|GPG_STATUS_UID)
178 } sigcheck_gpg_status
[] = {
179 { 'G', "GOODSIG ", GPG_STATUS_STDSIG
},
180 { 'B', "BADSIG ", GPG_STATUS_STDSIG
},
181 { 'E', "ERRSIG ", GPG_STATUS_EXCLUSIVE
|GPG_STATUS_KEYID
},
182 { 'X', "EXPSIG ", GPG_STATUS_STDSIG
},
183 { 'Y', "EXPKEYSIG ", GPG_STATUS_STDSIG
},
184 { 'R', "REVKEYSIG ", GPG_STATUS_STDSIG
},
185 { 0, "VALIDSIG ", GPG_STATUS_FINGERPRINT
},
186 { 0, "TRUST_", GPG_STATUS_TRUST_LEVEL
},
189 /* Keep the order same as enum signature_trust_level */
190 static struct sigcheck_gpg_trust_level
{
192 const char *display_key
;
193 enum signature_trust_level value
;
194 } sigcheck_gpg_trust_level
[] = {
195 { "UNDEFINED", "undefined", TRUST_UNDEFINED
},
196 { "NEVER", "never", TRUST_NEVER
},
197 { "MARGINAL", "marginal", TRUST_MARGINAL
},
198 { "FULLY", "fully", TRUST_FULLY
},
199 { "ULTIMATE", "ultimate", TRUST_ULTIMATE
},
202 static void replace_cstring(char **field
, const char *line
, const char *next
)
207 *field
= xmemdupz(line
, next
- line
);
212 static int parse_gpg_trust_level(const char *level
,
213 enum signature_trust_level
*res
)
217 for (i
= 0; i
< ARRAY_SIZE(sigcheck_gpg_trust_level
); i
++) {
218 if (!strcmp(sigcheck_gpg_trust_level
[i
].key
, level
)) {
219 *res
= sigcheck_gpg_trust_level
[i
].value
;
226 static void parse_gpg_output(struct signature_check
*sigc
)
228 const char *buf
= sigc
->gpg_status
;
229 const char *line
, *next
;
231 int seen_exclusive_status
= 0;
233 /* Iterate over all lines */
234 for (line
= buf
; *line
; line
= strchrnul(line
+1, '\n')) {
235 while (*line
== '\n')
240 /* Skip lines that don't start with GNUPG status */
241 if (!skip_prefix(line
, "[GNUPG:] ", &line
))
244 /* Iterate over all search strings */
245 for (i
= 0; i
< ARRAY_SIZE(sigcheck_gpg_status
); i
++) {
246 if (skip_prefix(line
, sigcheck_gpg_status
[i
].check
, &line
)) {
248 * GOODSIG, BADSIG etc. can occur only once for
249 * each signature. Therefore, if we had more
250 * than one then we're dealing with multiple
251 * signatures. We don't support them
252 * currently, and they're rather hard to
253 * create, so something is likely fishy and we
254 * should reject them altogether.
256 if (sigcheck_gpg_status
[i
].flags
& GPG_STATUS_EXCLUSIVE
) {
257 if (seen_exclusive_status
++)
261 if (sigcheck_gpg_status
[i
].result
)
262 sigc
->result
= sigcheck_gpg_status
[i
].result
;
263 /* Do we have key information? */
264 if (sigcheck_gpg_status
[i
].flags
& GPG_STATUS_KEYID
) {
265 next
= strchrnul(line
, ' ');
266 replace_cstring(&sigc
->key
, line
, next
);
267 /* Do we have signer information? */
268 if (*next
&& (sigcheck_gpg_status
[i
].flags
& GPG_STATUS_UID
)) {
270 next
= strchrnul(line
, '\n');
271 replace_cstring(&sigc
->signer
, line
, next
);
275 /* Do we have trust level? */
276 if (sigcheck_gpg_status
[i
].flags
& GPG_STATUS_TRUST_LEVEL
) {
278 * GPG v1 and v2 differs in how the
279 * TRUST_ lines are written. Some
280 * trust lines contain no additional
281 * space-separated information for v1.
283 size_t trust_size
= strcspn(line
, " \n");
284 char *trust
= xmemdupz(line
, trust_size
);
286 if (parse_gpg_trust_level(trust
, &sigc
->trust_level
)) {
293 /* Do we have fingerprint? */
294 if (sigcheck_gpg_status
[i
].flags
& GPG_STATUS_FINGERPRINT
) {
298 next
= strchrnul(line
, ' ');
299 replace_cstring(&sigc
->fingerprint
, line
, next
);
302 * Skip interim fields. The search is
303 * limited to the same line since only
304 * OpenPGP signatures has a field with
305 * the primary fingerprint.
307 limit
= strchrnul(line
, '\n');
308 for (j
= 9; j
> 0; j
--) {
309 if (!*next
|| limit
<= next
)
312 next
= strchrnul(line
, ' ');
315 field
= &sigc
->primary_key_fingerprint
;
317 next
= strchrnul(line
, '\n');
318 replace_cstring(field
, line
, next
);
320 replace_cstring(field
, NULL
, NULL
);
332 /* Clear partial data to avoid confusion */
333 FREE_AND_NULL(sigc
->primary_key_fingerprint
);
334 FREE_AND_NULL(sigc
->fingerprint
);
335 FREE_AND_NULL(sigc
->signer
);
336 FREE_AND_NULL(sigc
->key
);
339 static int verify_gpg_signed_buffer(struct signature_check
*sigc
,
340 struct gpg_format
*fmt
,
341 const char *signature
,
342 size_t signature_size
)
344 struct child_process gpg
= CHILD_PROCESS_INIT
;
345 struct tempfile
*temp
;
347 struct strbuf gpg_stdout
= STRBUF_INIT
;
348 struct strbuf gpg_stderr
= STRBUF_INIT
;
350 temp
= mks_tempfile_t(".git_vtag_tmpXXXXXX");
352 return error_errno(_("could not create temporary file"));
353 if (write_in_full(temp
->fd
, signature
, signature_size
) < 0 ||
354 close_tempfile_gently(temp
) < 0) {
355 error_errno(_("failed writing detached signature to '%s'"),
357 delete_tempfile(&temp
);
361 strvec_push(&gpg
.args
, fmt
->program
);
362 strvec_pushv(&gpg
.args
, fmt
->verify_args
);
363 strvec_pushl(&gpg
.args
,
365 "--verify", temp
->filename
.buf
, "-",
368 sigchain_push(SIGPIPE
, SIG_IGN
);
369 ret
= pipe_command(&gpg
, sigc
->payload
, sigc
->payload_len
, &gpg_stdout
, 0,
371 sigchain_pop(SIGPIPE
);
373 delete_tempfile(&temp
);
375 ret
|= !strstr(gpg_stdout
.buf
, "\n[GNUPG:] GOODSIG ");
376 sigc
->output
= strbuf_detach(&gpg_stderr
, NULL
);
377 sigc
->gpg_status
= strbuf_detach(&gpg_stdout
, NULL
);
379 parse_gpg_output(sigc
);
381 strbuf_release(&gpg_stdout
);
382 strbuf_release(&gpg_stderr
);
387 static void parse_ssh_output(struct signature_check
*sigc
)
389 const char *line
, *principal
, *search
;
394 * ssh-keygen output should be:
395 * Good "git" signature for PRINCIPAL with RSA key SHA256:FINGERPRINT
397 * or for valid but unknown keys:
398 * Good "git" signature with RSA key SHA256:FINGERPRINT
400 * Note that "PRINCIPAL" can contain whitespace, "RSA" and
401 * "SHA256" part could be a different token that names of
402 * the algorithms used, and "FINGERPRINT" is a hexadecimal
403 * string. By finding the last occurrence of " with ", we can
404 * reliably parse out the PRINCIPAL.
407 sigc
->trust_level
= TRUST_NEVER
;
409 line
= to_free
= xmemdupz(sigc
->output
, strcspn(sigc
->output
, "\n"));
411 if (skip_prefix(line
, "Good \"git\" signature for ", &line
)) {
412 /* Search for the last "with" to get the full principal */
415 search
= strstr(line
, " with ");
418 } while (search
!= NULL
);
419 if (line
== principal
)
422 /* Valid signature and known principal */
424 sigc
->trust_level
= TRUST_FULLY
;
425 sigc
->signer
= xmemdupz(principal
, line
- principal
- 1);
426 } else if (skip_prefix(line
, "Good \"git\" signature with ", &line
)) {
427 /* Valid signature, but key unknown */
429 sigc
->trust_level
= TRUST_UNDEFINED
;
434 key
= strstr(line
, "key ");
436 sigc
->fingerprint
= xstrdup(strstr(line
, "key ") + 4);
437 sigc
->key
= xstrdup(sigc
->fingerprint
);
440 * Output did not match what we expected
441 * Treat the signature as bad
450 static int verify_ssh_signed_buffer(struct signature_check
*sigc
,
451 struct gpg_format
*fmt
,
452 const char *signature
,
453 size_t signature_size
)
455 struct child_process ssh_keygen
= CHILD_PROCESS_INIT
;
456 struct tempfile
*buffer_file
;
460 struct strbuf ssh_principals_out
= STRBUF_INIT
;
461 struct strbuf ssh_principals_err
= STRBUF_INIT
;
462 struct strbuf ssh_keygen_out
= STRBUF_INIT
;
463 struct strbuf ssh_keygen_err
= STRBUF_INIT
;
464 struct strbuf verify_time
= STRBUF_INIT
;
465 const struct date_mode verify_date_mode
= {
466 .type
= DATE_STRFTIME
,
467 .strftime_fmt
= "%Y%m%d%H%M%S",
468 /* SSH signing key validity has no timezone information - Use the local timezone */
472 if (!ssh_allowed_signers
) {
473 error(_("gpg.ssh.allowedSignersFile needs to be configured and exist for ssh signature verification"));
477 buffer_file
= mks_tempfile_t(".git_vtag_tmpXXXXXX");
479 return error_errno(_("could not create temporary file"));
480 if (write_in_full(buffer_file
->fd
, signature
, signature_size
) < 0 ||
481 close_tempfile_gently(buffer_file
) < 0) {
482 error_errno(_("failed writing detached signature to '%s'"),
483 buffer_file
->filename
.buf
);
484 delete_tempfile(&buffer_file
);
488 if (sigc
->payload_timestamp
)
489 strbuf_addf(&verify_time
, "-Overify-time=%s",
490 show_date(sigc
->payload_timestamp
, 0, verify_date_mode
));
492 /* Find the principal from the signers */
493 strvec_pushl(&ssh_keygen
.args
, fmt
->program
,
494 "-Y", "find-principals",
495 "-f", ssh_allowed_signers
,
496 "-s", buffer_file
->filename
.buf
,
499 ret
= pipe_command(&ssh_keygen
, NULL
, 0, &ssh_principals_out
, 0,
500 &ssh_principals_err
, 0);
501 if (ret
&& strstr(ssh_principals_err
.buf
, "usage:")) {
502 error(_("ssh-keygen -Y find-principals/verify is needed for ssh signature verification (available in openssh version 8.2p1+)"));
505 if (ret
|| !ssh_principals_out
.len
) {
507 * We did not find a matching principal in the allowedSigners
508 * Check without validation
510 child_process_init(&ssh_keygen
);
511 strvec_pushl(&ssh_keygen
.args
, fmt
->program
,
512 "-Y", "check-novalidate",
514 "-s", buffer_file
->filename
.buf
,
517 pipe_command(&ssh_keygen
, sigc
->payload
, sigc
->payload_len
,
518 &ssh_keygen_out
, 0, &ssh_keygen_err
, 0);
521 * Fail on unknown keys
522 * we still call check-novalidate to display the signature info
526 /* Check every principal we found (one per line) */
528 for (line
= ssh_principals_out
.buf
;
531 const char *end_of_text
;
533 next
= end_of_text
= strchrnul(line
, '\n');
535 /* Did we find a LF, and did we have CR before it? */
537 line
< end_of_text
&&
538 end_of_text
[-1] == '\r')
541 /* Unless we hit NUL, skip over the LF we found */
545 /* Not all lines are data. Skip empty ones */
546 if (line
== end_of_text
)
549 /* We now know we have an non-empty line. Process it */
550 principal
= xmemdupz(line
, end_of_text
- line
);
552 child_process_init(&ssh_keygen
);
553 strbuf_release(&ssh_keygen_out
);
554 strbuf_release(&ssh_keygen_err
);
555 strvec_push(&ssh_keygen
.args
, fmt
->program
);
557 * We found principals
558 * Try with each until we find a match
560 strvec_pushl(&ssh_keygen
.args
, "-Y", "verify",
562 "-f", ssh_allowed_signers
,
564 "-s", buffer_file
->filename
.buf
,
568 if (ssh_revocation_file
) {
569 if (file_exists(ssh_revocation_file
)) {
570 strvec_pushl(&ssh_keygen
.args
, "-r",
571 ssh_revocation_file
, NULL
);
573 warning(_("ssh signing revocation file configured but not found: %s"),
574 ssh_revocation_file
);
578 sigchain_push(SIGPIPE
, SIG_IGN
);
579 ret
= pipe_command(&ssh_keygen
, sigc
->payload
, sigc
->payload_len
,
580 &ssh_keygen_out
, 0, &ssh_keygen_err
, 0);
581 sigchain_pop(SIGPIPE
);
583 FREE_AND_NULL(principal
);
586 ret
= !starts_with(ssh_keygen_out
.buf
, "Good");
593 strbuf_stripspace(&ssh_keygen_out
, NULL
);
594 strbuf_stripspace(&ssh_keygen_err
, NULL
);
595 /* Add stderr outputs to show the user actual ssh-keygen errors */
596 strbuf_add(&ssh_keygen_out
, ssh_principals_err
.buf
, ssh_principals_err
.len
);
597 strbuf_add(&ssh_keygen_out
, ssh_keygen_err
.buf
, ssh_keygen_err
.len
);
598 sigc
->output
= strbuf_detach(&ssh_keygen_out
, NULL
);
599 sigc
->gpg_status
= xstrdup(sigc
->output
);
601 parse_ssh_output(sigc
);
605 delete_tempfile(&buffer_file
);
606 strbuf_release(&ssh_principals_out
);
607 strbuf_release(&ssh_principals_err
);
608 strbuf_release(&ssh_keygen_out
);
609 strbuf_release(&ssh_keygen_err
);
610 strbuf_release(&verify_time
);
615 static int parse_payload_metadata(struct signature_check
*sigc
)
617 const char *ident_line
= NULL
;
619 struct ident_split ident
;
620 const char *signer_header
;
622 switch (sigc
->payload_type
) {
623 case SIGNATURE_PAYLOAD_COMMIT
:
624 signer_header
= "committer";
626 case SIGNATURE_PAYLOAD_TAG
:
627 signer_header
= "tagger";
629 case SIGNATURE_PAYLOAD_UNDEFINED
:
630 case SIGNATURE_PAYLOAD_PUSH_CERT
:
631 /* Ignore payloads we don't want to parse */
634 BUG("invalid value for sigc->payload_type");
637 ident_line
= find_commit_header(sigc
->payload
, signer_header
, &ident_len
);
638 if (!ident_line
|| !ident_len
)
641 if (split_ident_line(&ident
, ident_line
, ident_len
))
644 if (!sigc
->payload_timestamp
&& ident
.date_begin
&& ident
.date_end
)
645 sigc
->payload_timestamp
= parse_timestamp(ident
.date_begin
, NULL
, 10);
650 int check_signature(struct signature_check
*sigc
,
651 const char *signature
, size_t slen
)
653 struct gpg_format
*fmt
;
656 gpg_interface_lazy_init();
659 sigc
->trust_level
= TRUST_UNDEFINED
;
661 fmt
= get_format_by_sig(signature
);
663 die(_("bad/incompatible signature '%s'"), signature
);
665 if (parse_payload_metadata(sigc
))
668 status
= fmt
->verify_signed_buffer(sigc
, fmt
, signature
, slen
);
670 if (status
&& !sigc
->output
)
673 status
|= sigc
->result
!= 'G';
674 status
|= sigc
->trust_level
< configured_min_trust_level
;
679 void print_signature_buffer(const struct signature_check
*sigc
, unsigned flags
)
681 const char *output
= flags
& GPG_VERIFY_RAW
? sigc
->gpg_status
:
684 if (flags
& GPG_VERIFY_VERBOSE
&& sigc
->payload
)
685 fwrite(sigc
->payload
, 1, sigc
->payload_len
, stdout
);
688 fputs(output
, stderr
);
691 size_t parse_signed_buffer(const char *buf
, size_t size
)
698 if (get_format_by_sig(buf
+ len
))
701 eol
= memchr(buf
+ len
, '\n', size
- len
);
702 len
+= eol
? eol
- (buf
+ len
) + 1 : size
- len
;
707 int parse_signature(const char *buf
, size_t size
, struct strbuf
*payload
, struct strbuf
*signature
)
709 size_t match
= parse_signed_buffer(buf
, size
);
711 strbuf_add(payload
, buf
, match
);
712 remove_signature(payload
);
713 strbuf_add(signature
, buf
+ match
, size
- match
);
719 void set_signing_key(const char *key
)
721 gpg_interface_lazy_init();
723 free(configured_signing_key
);
724 configured_signing_key
= xstrdup(key
);
727 static int git_gpg_config(const char *var
, const char *value
,
728 const struct config_context
*ctx UNUSED
,
731 struct gpg_format
*fmt
= NULL
;
732 const char *fmtname
= NULL
;
736 if (!strcmp(var
, "user.signingkey")) {
738 return config_error_nonbool(var
);
739 set_signing_key(value
);
743 if (!strcmp(var
, "gpg.format")) {
745 return config_error_nonbool(var
);
746 fmt
= get_format_by_name(value
);
748 return error(_("invalid value for '%s': '%s'"),
754 if (!strcmp(var
, "gpg.mintrustlevel")) {
756 return config_error_nonbool(var
);
758 trust
= xstrdup_toupper(value
);
759 ret
= parse_gpg_trust_level(trust
, &configured_min_trust_level
);
763 return error(_("invalid value for '%s': '%s'"),
768 if (!strcmp(var
, "gpg.ssh.defaultkeycommand"))
769 return git_config_string(&ssh_default_key_command
, var
, value
);
771 if (!strcmp(var
, "gpg.ssh.allowedsignersfile"))
772 return git_config_pathname(&ssh_allowed_signers
, var
, value
);
774 if (!strcmp(var
, "gpg.ssh.revocationfile"))
775 return git_config_pathname(&ssh_revocation_file
, var
, value
);
777 if (!strcmp(var
, "gpg.program") || !strcmp(var
, "gpg.openpgp.program"))
780 if (!strcmp(var
, "gpg.x509.program"))
783 if (!strcmp(var
, "gpg.ssh.program"))
787 fmt
= get_format_by_name(fmtname
);
788 return git_config_string((char **) &fmt
->program
, var
, value
);
795 * Returns 1 if `string` contains a literal ssh key, 0 otherwise
796 * `key` will be set to the start of the actual key if a prefix is present.
798 static int is_literal_ssh_key(const char *string
, const char **key
)
800 if (skip_prefix(string
, "key::", key
))
802 if (starts_with(string
, "ssh-")) {
809 static char *get_ssh_key_fingerprint(const char *signing_key
)
811 struct child_process ssh_keygen
= CHILD_PROCESS_INIT
;
813 struct strbuf fingerprint_stdout
= STRBUF_INIT
;
814 struct strbuf
**fingerprint
;
815 char *fingerprint_ret
;
816 const char *literal_key
= NULL
;
819 * With SSH Signing this can contain a filename or a public key
820 * For textual representation we usually want a fingerprint
822 if (is_literal_ssh_key(signing_key
, &literal_key
)) {
823 strvec_pushl(&ssh_keygen
.args
, "ssh-keygen", "-lf", "-", NULL
);
824 ret
= pipe_command(&ssh_keygen
, literal_key
,
825 strlen(literal_key
), &fingerprint_stdout
, 0,
828 strvec_pushl(&ssh_keygen
.args
, "ssh-keygen", "-lf",
829 configured_signing_key
, NULL
);
830 ret
= pipe_command(&ssh_keygen
, NULL
, 0, &fingerprint_stdout
, 0,
835 die_errno(_("failed to get the ssh fingerprint for key '%s'"),
838 fingerprint
= strbuf_split_max(&fingerprint_stdout
, ' ', 3);
840 die_errno(_("failed to get the ssh fingerprint for key '%s'"),
843 fingerprint_ret
= strbuf_detach(fingerprint
[1], NULL
);
844 strbuf_list_free(fingerprint
);
845 strbuf_release(&fingerprint_stdout
);
846 return fingerprint_ret
;
849 /* Returns the first public key from an ssh-agent to use for signing */
850 static char *get_default_ssh_signing_key(void)
852 struct child_process ssh_default_key
= CHILD_PROCESS_INIT
;
854 struct strbuf key_stdout
= STRBUF_INIT
, key_stderr
= STRBUF_INIT
;
855 struct strbuf
**keys
;
856 char *key_command
= NULL
;
859 char *default_key
= NULL
;
860 const char *literal_key
= NULL
;
862 if (!ssh_default_key_command
)
863 die(_("either user.signingkey or gpg.ssh.defaultKeyCommand needs to be configured"));
865 key_command
= xstrdup(ssh_default_key_command
);
866 n
= split_cmdline(key_command
, &argv
);
869 die("malformed build-time gpg.ssh.defaultKeyCommand: %s",
870 split_cmdline_strerror(n
));
872 strvec_pushv(&ssh_default_key
.args
, argv
);
873 ret
= pipe_command(&ssh_default_key
, NULL
, 0, &key_stdout
, 0,
877 keys
= strbuf_split_max(&key_stdout
, '\n', 2);
878 if (keys
[0] && is_literal_ssh_key(keys
[0]->buf
, &literal_key
)) {
880 * We only use `is_literal_ssh_key` here to check validity
881 * The prefix will be stripped when the key is used.
883 default_key
= strbuf_detach(keys
[0], NULL
);
885 warning(_("gpg.ssh.defaultKeyCommand succeeded but returned no keys: %s %s"),
886 key_stderr
.buf
, key_stdout
.buf
);
889 strbuf_list_free(keys
);
891 warning(_("gpg.ssh.defaultKeyCommand failed: %s %s"),
892 key_stderr
.buf
, key_stdout
.buf
);
897 strbuf_release(&key_stdout
);
902 static char *get_ssh_key_id(void)
904 char *signing_key
= get_signing_key();
905 char *key_id
= get_ssh_key_fingerprint(signing_key
);
910 /* Returns a textual but unique representation of the signing key */
911 char *get_signing_key_id(void)
913 gpg_interface_lazy_init();
915 if (use_format
->get_key_id
) {
916 return use_format
->get_key_id();
919 /* GPG/GPGSM only store a key id on this variable */
920 return get_signing_key();
923 char *get_signing_key(void)
925 gpg_interface_lazy_init();
927 if (configured_signing_key
)
928 return xstrdup(configured_signing_key
);
929 if (use_format
->get_default_key
) {
930 return use_format
->get_default_key();
933 return xstrdup(git_committer_info(IDENT_STRICT
| IDENT_NO_DATE
));
936 const char *gpg_trust_level_to_str(enum signature_trust_level level
)
938 struct sigcheck_gpg_trust_level
*trust
;
940 if (level
< 0 || level
>= ARRAY_SIZE(sigcheck_gpg_trust_level
))
941 BUG("invalid trust level requested %d", level
);
943 trust
= &sigcheck_gpg_trust_level
[level
];
944 if (trust
->value
!= level
)
945 BUG("sigcheck_gpg_trust_level[] unsorted");
947 return sigcheck_gpg_trust_level
[level
].display_key
;
950 int sign_buffer(struct strbuf
*buffer
, struct strbuf
*signature
, const char *signing_key
)
952 gpg_interface_lazy_init();
954 return use_format
->sign_buffer(buffer
, signature
, signing_key
);
958 * Strip CR from the line endings, in case we are on Windows.
959 * NEEDSWORK: make it trim only CRs before LFs and rename
961 static void remove_cr_after(struct strbuf
*buffer
, size_t offset
)
965 for (i
= j
= offset
; i
< buffer
->len
; i
++) {
966 if (buffer
->buf
[i
] != '\r') {
968 buffer
->buf
[j
] = buffer
->buf
[i
];
972 strbuf_setlen(buffer
, j
);
975 static int sign_buffer_gpg(struct strbuf
*buffer
, struct strbuf
*signature
,
976 const char *signing_key
)
978 struct child_process gpg
= CHILD_PROCESS_INIT
;
982 struct strbuf gpg_status
= STRBUF_INIT
;
984 strvec_pushl(&gpg
.args
,
987 "-bsau", signing_key
,
990 bottom
= signature
->len
;
993 * When the username signingkey is bad, program could be terminated
994 * because gpg exits without reading and then write gets SIGPIPE.
996 sigchain_push(SIGPIPE
, SIG_IGN
);
997 ret
= pipe_command(&gpg
, buffer
->buf
, buffer
->len
,
998 signature
, 1024, &gpg_status
, 0);
999 sigchain_pop(SIGPIPE
);
1001 for (cp
= gpg_status
.buf
;
1002 cp
&& (cp
= strstr(cp
, "[GNUPG:] SIG_CREATED "));
1004 if (cp
== gpg_status
.buf
|| cp
[-1] == '\n')
1009 error(_("gpg failed to sign the data:\n%s"),
1010 gpg_status
.len
? gpg_status
.buf
: "(no gpg output)");
1011 strbuf_release(&gpg_status
);
1014 strbuf_release(&gpg_status
);
1016 /* Strip CR from the line endings, in case we are on Windows. */
1017 remove_cr_after(signature
, bottom
);
1022 static int sign_buffer_ssh(struct strbuf
*buffer
, struct strbuf
*signature
,
1023 const char *signing_key
)
1025 struct child_process signer
= CHILD_PROCESS_INIT
;
1027 size_t bottom
, keylen
;
1028 struct strbuf signer_stderr
= STRBUF_INIT
;
1029 struct tempfile
*key_file
= NULL
, *buffer_file
= NULL
;
1030 char *ssh_signing_key_file
= NULL
;
1031 struct strbuf ssh_signature_filename
= STRBUF_INIT
;
1032 const char *literal_key
= NULL
;
1033 int literal_ssh_key
= 0;
1035 if (!signing_key
|| signing_key
[0] == '\0')
1037 _("user.signingKey needs to be set for ssh signing"));
1039 if (is_literal_ssh_key(signing_key
, &literal_key
)) {
1040 /* A literal ssh key */
1041 literal_ssh_key
= 1;
1042 key_file
= mks_tempfile_t(".git_signing_key_tmpXXXXXX");
1045 _("could not create temporary file"));
1046 keylen
= strlen(literal_key
);
1047 if (write_in_full(key_file
->fd
, literal_key
, keylen
) < 0 ||
1048 close_tempfile_gently(key_file
) < 0) {
1049 error_errno(_("failed writing ssh signing key to '%s'"),
1050 key_file
->filename
.buf
);
1053 ssh_signing_key_file
= strbuf_detach(&key_file
->filename
, NULL
);
1055 /* We assume a file */
1056 ssh_signing_key_file
= interpolate_path(signing_key
, 1);
1059 buffer_file
= mks_tempfile_t(".git_signing_buffer_tmpXXXXXX");
1061 error_errno(_("could not create temporary file"));
1065 if (write_in_full(buffer_file
->fd
, buffer
->buf
, buffer
->len
) < 0 ||
1066 close_tempfile_gently(buffer_file
) < 0) {
1067 error_errno(_("failed writing ssh signing key buffer to '%s'"),
1068 buffer_file
->filename
.buf
);
1072 strvec_pushl(&signer
.args
, use_format
->program
,
1075 "-f", ssh_signing_key_file
,
1077 if (literal_ssh_key
)
1078 strvec_push(&signer
.args
, "-U");
1079 strvec_push(&signer
.args
, buffer_file
->filename
.buf
);
1081 sigchain_push(SIGPIPE
, SIG_IGN
);
1082 ret
= pipe_command(&signer
, NULL
, 0, NULL
, 0, &signer_stderr
, 0);
1083 sigchain_pop(SIGPIPE
);
1086 if (strstr(signer_stderr
.buf
, "usage:"))
1087 error(_("ssh-keygen -Y sign is needed for ssh signing (available in openssh version 8.2p1+)"));
1089 ret
= error("%s", signer_stderr
.buf
);
1093 bottom
= signature
->len
;
1095 strbuf_addbuf(&ssh_signature_filename
, &buffer_file
->filename
);
1096 strbuf_addstr(&ssh_signature_filename
, ".sig");
1097 if (strbuf_read_file(signature
, ssh_signature_filename
.buf
, 0) < 0) {
1099 _("failed reading ssh signing data buffer from '%s'"),
1100 ssh_signature_filename
.buf
);
1103 /* Strip CR from the line endings, in case we are on Windows. */
1104 remove_cr_after(signature
, bottom
);
1108 delete_tempfile(&key_file
);
1110 delete_tempfile(&buffer_file
);
1111 if (ssh_signature_filename
.len
)
1112 unlink_or_warn(ssh_signature_filename
.buf
);
1113 strbuf_release(&signer_stderr
);
1114 strbuf_release(&ssh_signature_filename
);
1115 FREE_AND_NULL(ssh_signing_key_file
);