blob: 613dab8561133596f13374314a062ad9dd539246 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
Patrick Williams92b42cb2022-09-03 06:53:57 -05002# Copyright OpenEmbedded Contributors
3#
Brad Bishopc342db32019-05-15 21:57:59 -04004# SPDX-License-Identifier: GPL-2.0-only
5#
6
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05007"""Helper module for GPG signing"""
8import os
9
10import bb
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080011import subprocess
12import shlex
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050013
14class LocalSigner(object):
15 """Class for handling local (on the build host) signing"""
16 def __init__(self, d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050017 self.gpg_bin = d.getVar('GPG_BIN') or \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050018 bb.utils.which(os.getenv('PATH'), 'gpg')
Brad Bishop15ae2502019-06-18 21:44:24 -040019 self.gpg_cmd = [self.gpg_bin]
Brad Bishop316dfdd2018-06-25 12:45:53 -040020 self.gpg_agent_bin = bb.utils.which(os.getenv('PATH'), "gpg-agent")
Brad Bishop15ae2502019-06-18 21:44:24 -040021 # Without this we see "Cannot allocate memory" errors when running processes in parallel
22 # It needs to be set for any gpg command since any agent launched can stick around in memory
23 # and this parameter must be set.
24 if self.gpg_agent_bin:
25 self.gpg_cmd += ["--agent-program=%s|--auto-expand-secmem" % (self.gpg_agent_bin)]
26 self.gpg_path = d.getVar('GPG_PATH')
27 self.rpm_bin = bb.utils.which(os.getenv('PATH'), "rpmsign")
28 self.gpg_version = self.get_gpg_version()
29
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050030
31 def export_pubkey(self, output_file, keyid, armor=True):
32 """Export GPG public key to a file"""
Brad Bishop15ae2502019-06-18 21:44:24 -040033 cmd = self.gpg_cmd + ["--no-permission-warning", "--batch", "--yes", "--export", "-o", output_file]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050034 if self.gpg_path:
Brad Bishop15ae2502019-06-18 21:44:24 -040035 cmd += ["--homedir", self.gpg_path]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050036 if armor:
Brad Bishop15ae2502019-06-18 21:44:24 -040037 cmd += ["--armor"]
38 cmd += [keyid]
39 subprocess.check_output(cmd, stderr=subprocess.STDOUT)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050040
Brad Bishopd7bf8c12018-02-25 22:55:05 -050041 def sign_rpms(self, files, keyid, passphrase, digest, sign_chunk, fsk=None, fsk_password=None):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050042 """Sign RPM files"""
43
44 cmd = self.rpm_bin + " --addsign --define '_gpg_name %s' " % keyid
Brad Bishop316dfdd2018-06-25 12:45:53 -040045 gpg_args = '--no-permission-warning --batch --passphrase=%s --agent-program=%s|--auto-expand-secmem' % (passphrase, self.gpg_agent_bin)
Brad Bishop37a0e4d2017-12-04 01:01:44 -050046 if self.gpg_version > (2,1,):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050047 gpg_args += ' --pinentry-mode=loopback'
48 cmd += "--define '_gpg_sign_cmd_extra_args %s' " % gpg_args
Brad Bishopd7bf8c12018-02-25 22:55:05 -050049 cmd += "--define '_binary_filedigest_algorithm %s' " % digest
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050050 if self.gpg_bin:
Brad Bishopd7bf8c12018-02-25 22:55:05 -050051 cmd += "--define '__gpg %s' " % self.gpg_bin
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050052 if self.gpg_path:
53 cmd += "--define '_gpg_path %s' " % self.gpg_path
Brad Bishopd7bf8c12018-02-25 22:55:05 -050054 if fsk:
55 cmd += "--signfiles --fskpath %s " % fsk
56 if fsk_password:
57 cmd += "--define '_file_signing_key_password %s' " % fsk_password
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050058
Brad Bishopd7bf8c12018-02-25 22:55:05 -050059 # Sign in chunks
60 for i in range(0, len(files), sign_chunk):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080061 subprocess.check_output(shlex.split(cmd + ' '.join(files[i:i+sign_chunk])), stderr=subprocess.STDOUT)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050062
Patrick Williamsde0582f2022-04-08 10:23:27 -050063 def detach_sign(self, input_file, keyid, passphrase_file, passphrase=None, armor=True, output_suffix=None, use_sha256=False):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050064 """Create a detached signature of a file"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050065
66 if passphrase_file and passphrase:
67 raise Exception("You should use either passphrase_file of passphrase, not both")
68
Brad Bishop15ae2502019-06-18 21:44:24 -040069 cmd = self.gpg_cmd + ['--detach-sign', '--no-permission-warning', '--batch',
Brad Bishopd7bf8c12018-02-25 22:55:05 -050070 '--no-tty', '--yes', '--passphrase-fd', '0', '-u', keyid]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050071
72 if self.gpg_path:
73 cmd += ['--homedir', self.gpg_path]
74 if armor:
75 cmd += ['--armor']
Patrick Williamsde0582f2022-04-08 10:23:27 -050076 if output_suffix:
77 cmd += ['-o', input_file + "." + output_suffix]
78 if use_sha256:
79 cmd += ['--digest-algo', "SHA256"]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050080
81 #gpg > 2.1 supports password pipes only through the loopback interface
82 #gpg < 2.1 errors out if given unknown parameters
Brad Bishop37a0e4d2017-12-04 01:01:44 -050083 if self.gpg_version > (2,1,):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050084 cmd += ['--pinentry-mode', 'loopback']
85
86 cmd += [input_file]
87
88 try:
89 if passphrase_file:
90 with open(passphrase_file) as fobj:
91 passphrase = fobj.readline();
92
93 job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060094 (_, stderr) = job.communicate(passphrase.encode("utf-8"))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050095
96 if job.returncode:
Brad Bishop08902b02019-08-20 09:16:51 -040097 bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050098
99 except IOError as e:
100 bb.error("IO error (%s): %s" % (e.errno, e.strerror))
101 raise Exception("Failed to sign '%s'" % input_file)
102
103 except OSError as e:
104 bb.error("OS error (%s): %s" % (e.errno, e.strerror))
105 raise Exception("Failed to sign '%s" % input_file)
106
107
108 def get_gpg_version(self):
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500109 """Return the gpg version as a tuple of ints"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500110 try:
Brad Bishop15ae2502019-06-18 21:44:24 -0400111 cmd = self.gpg_cmd + ["--version", "--no-permission-warning"]
112 ver_str = subprocess.check_output(cmd).split()[2].decode("utf-8")
Brad Bishop316dfdd2018-06-25 12:45:53 -0400113 return tuple([int(i) for i in ver_str.split("-")[0].split('.')])
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500114 except subprocess.CalledProcessError as e:
Brad Bishop08902b02019-08-20 09:16:51 -0400115 bb.fatal("Could not get gpg version: %s" % e)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500116
117
Andrew Geisslereff27472021-10-29 15:35:00 -0500118 def verify(self, sig_file, valid_sigs = ''):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500119 """Verify signature"""
Andrew Geisslereff27472021-10-29 15:35:00 -0500120 cmd = self.gpg_cmd + ["--verify", "--no-permission-warning", "--status-fd", "1"]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500121 if self.gpg_path:
Brad Bishop15ae2502019-06-18 21:44:24 -0400122 cmd += ["--homedir", self.gpg_path]
123
124 cmd += [sig_file]
Andrew Geisslereff27472021-10-29 15:35:00 -0500125 status = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
126 # Valid if any key matches if unspecified
127 if not valid_sigs:
128 ret = False if status.returncode else True
129 return ret
130
131 import re
132 goodsigs = []
133 sigre = re.compile(r'^\[GNUPG:\] GOODSIG (\S+)\s(.*)$')
134 for l in status.stdout.decode("utf-8").splitlines():
135 s = sigre.match(l)
136 if s:
137 goodsigs += [s.group(1)]
138
139 for sig in valid_sigs.split():
140 if sig in goodsigs:
141 return True
142 if len(goodsigs):
143 bb.warn('No accepted signatures found. Good signatures found: %s.' % ' '.join(goodsigs))
144 return False
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500145
146
147def get_signer(d, backend):
148 """Get signer object for the specified backend"""
149 # Use local signing by default
150 if backend == 'local':
151 return LocalSigner(d)
152 else:
153 bb.fatal("Unsupported signing backend '%s'" % backend)