blob: aa9bb49f2c82f2ed9287278ac58bf5a279ecbeec [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
2# SPDX-License-Identifier: GPL-2.0-only
3#
4
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05005"""Helper module for GPG signing"""
6import os
7
8import bb
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08009import subprocess
10import shlex
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050011
12class LocalSigner(object):
13 """Class for handling local (on the build host) signing"""
14 def __init__(self, d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050015 self.gpg_bin = d.getVar('GPG_BIN') or \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050016 bb.utils.which(os.getenv('PATH'), 'gpg')
Brad Bishop15ae2502019-06-18 21:44:24 -040017 self.gpg_cmd = [self.gpg_bin]
Brad Bishop316dfdd2018-06-25 12:45:53 -040018 self.gpg_agent_bin = bb.utils.which(os.getenv('PATH'), "gpg-agent")
Brad Bishop15ae2502019-06-18 21:44:24 -040019 # Without this we see "Cannot allocate memory" errors when running processes in parallel
20 # It needs to be set for any gpg command since any agent launched can stick around in memory
21 # and this parameter must be set.
22 if self.gpg_agent_bin:
23 self.gpg_cmd += ["--agent-program=%s|--auto-expand-secmem" % (self.gpg_agent_bin)]
24 self.gpg_path = d.getVar('GPG_PATH')
25 self.rpm_bin = bb.utils.which(os.getenv('PATH'), "rpmsign")
26 self.gpg_version = self.get_gpg_version()
27
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050028
29 def export_pubkey(self, output_file, keyid, armor=True):
30 """Export GPG public key to a file"""
Brad Bishop15ae2502019-06-18 21:44:24 -040031 cmd = self.gpg_cmd + ["--no-permission-warning", "--batch", "--yes", "--export", "-o", output_file]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050032 if self.gpg_path:
Brad Bishop15ae2502019-06-18 21:44:24 -040033 cmd += ["--homedir", self.gpg_path]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050034 if armor:
Brad Bishop15ae2502019-06-18 21:44:24 -040035 cmd += ["--armor"]
36 cmd += [keyid]
37 subprocess.check_output(cmd, stderr=subprocess.STDOUT)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050038
Brad Bishopd7bf8c12018-02-25 22:55:05 -050039 def sign_rpms(self, files, keyid, passphrase, digest, sign_chunk, fsk=None, fsk_password=None):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050040 """Sign RPM files"""
41
42 cmd = self.rpm_bin + " --addsign --define '_gpg_name %s' " % keyid
Brad Bishop316dfdd2018-06-25 12:45:53 -040043 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 -050044 if self.gpg_version > (2,1,):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050045 gpg_args += ' --pinentry-mode=loopback'
46 cmd += "--define '_gpg_sign_cmd_extra_args %s' " % gpg_args
Brad Bishopd7bf8c12018-02-25 22:55:05 -050047 cmd += "--define '_binary_filedigest_algorithm %s' " % digest
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050048 if self.gpg_bin:
Brad Bishopd7bf8c12018-02-25 22:55:05 -050049 cmd += "--define '__gpg %s' " % self.gpg_bin
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050050 if self.gpg_path:
51 cmd += "--define '_gpg_path %s' " % self.gpg_path
Brad Bishopd7bf8c12018-02-25 22:55:05 -050052 if fsk:
53 cmd += "--signfiles --fskpath %s " % fsk
54 if fsk_password:
55 cmd += "--define '_file_signing_key_password %s' " % fsk_password
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050056
Brad Bishopd7bf8c12018-02-25 22:55:05 -050057 # Sign in chunks
58 for i in range(0, len(files), sign_chunk):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080059 subprocess.check_output(shlex.split(cmd + ' '.join(files[i:i+sign_chunk])), stderr=subprocess.STDOUT)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050060
Patrick Williamsde0582f2022-04-08 10:23:27 -050061 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 -050062 """Create a detached signature of a file"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050063
64 if passphrase_file and passphrase:
65 raise Exception("You should use either passphrase_file of passphrase, not both")
66
Brad Bishop15ae2502019-06-18 21:44:24 -040067 cmd = self.gpg_cmd + ['--detach-sign', '--no-permission-warning', '--batch',
Brad Bishopd7bf8c12018-02-25 22:55:05 -050068 '--no-tty', '--yes', '--passphrase-fd', '0', '-u', keyid]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050069
70 if self.gpg_path:
71 cmd += ['--homedir', self.gpg_path]
72 if armor:
73 cmd += ['--armor']
Patrick Williamsde0582f2022-04-08 10:23:27 -050074 if output_suffix:
75 cmd += ['-o', input_file + "." + output_suffix]
76 if use_sha256:
77 cmd += ['--digest-algo', "SHA256"]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050078
79 #gpg > 2.1 supports password pipes only through the loopback interface
80 #gpg < 2.1 errors out if given unknown parameters
Brad Bishop37a0e4d2017-12-04 01:01:44 -050081 if self.gpg_version > (2,1,):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050082 cmd += ['--pinentry-mode', 'loopback']
83
84 cmd += [input_file]
85
86 try:
87 if passphrase_file:
88 with open(passphrase_file) as fobj:
89 passphrase = fobj.readline();
90
91 job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060092 (_, stderr) = job.communicate(passphrase.encode("utf-8"))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050093
94 if job.returncode:
Brad Bishop08902b02019-08-20 09:16:51 -040095 bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050096
97 except IOError as e:
98 bb.error("IO error (%s): %s" % (e.errno, e.strerror))
99 raise Exception("Failed to sign '%s'" % input_file)
100
101 except OSError as e:
102 bb.error("OS error (%s): %s" % (e.errno, e.strerror))
103 raise Exception("Failed to sign '%s" % input_file)
104
105
106 def get_gpg_version(self):
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500107 """Return the gpg version as a tuple of ints"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500108 try:
Brad Bishop15ae2502019-06-18 21:44:24 -0400109 cmd = self.gpg_cmd + ["--version", "--no-permission-warning"]
110 ver_str = subprocess.check_output(cmd).split()[2].decode("utf-8")
Brad Bishop316dfdd2018-06-25 12:45:53 -0400111 return tuple([int(i) for i in ver_str.split("-")[0].split('.')])
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500112 except subprocess.CalledProcessError as e:
Brad Bishop08902b02019-08-20 09:16:51 -0400113 bb.fatal("Could not get gpg version: %s" % e)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500114
115
Andrew Geisslereff27472021-10-29 15:35:00 -0500116 def verify(self, sig_file, valid_sigs = ''):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500117 """Verify signature"""
Andrew Geisslereff27472021-10-29 15:35:00 -0500118 cmd = self.gpg_cmd + ["--verify", "--no-permission-warning", "--status-fd", "1"]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500119 if self.gpg_path:
Brad Bishop15ae2502019-06-18 21:44:24 -0400120 cmd += ["--homedir", self.gpg_path]
121
122 cmd += [sig_file]
Andrew Geisslereff27472021-10-29 15:35:00 -0500123 status = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
124 # Valid if any key matches if unspecified
125 if not valid_sigs:
126 ret = False if status.returncode else True
127 return ret
128
129 import re
130 goodsigs = []
131 sigre = re.compile(r'^\[GNUPG:\] GOODSIG (\S+)\s(.*)$')
132 for l in status.stdout.decode("utf-8").splitlines():
133 s = sigre.match(l)
134 if s:
135 goodsigs += [s.group(1)]
136
137 for sig in valid_sigs.split():
138 if sig in goodsigs:
139 return True
140 if len(goodsigs):
141 bb.warn('No accepted signatures found. Good signatures found: %s.' % ' '.join(goodsigs))
142 return False
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500143
144
145def get_signer(d, backend):
146 """Get signer object for the specified backend"""
147 # Use local signing by default
148 if backend == 'local':
149 return LocalSigner(d)
150 else:
151 bb.fatal("Unsupported signing backend '%s'" % backend)