blob: a95d2ba34c6a5a21571228c44d4ca6f5cfdace95 [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
9import oe.utils
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080010import subprocess
11import shlex
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050012
13class LocalSigner(object):
14 """Class for handling local (on the build host) signing"""
15 def __init__(self, d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050016 self.gpg_bin = d.getVar('GPG_BIN') or \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050017 bb.utils.which(os.getenv('PATH'), 'gpg')
Brad Bishop6e60e8b2018-02-01 10:27:11 -050018 self.gpg_path = d.getVar('GPG_PATH')
Brad Bishop37a0e4d2017-12-04 01:01:44 -050019 self.gpg_version = self.get_gpg_version()
Brad Bishop6e60e8b2018-02-01 10:27:11 -050020 self.rpm_bin = bb.utils.which(os.getenv('PATH'), "rpmsign")
Brad Bishop316dfdd2018-06-25 12:45:53 -040021 self.gpg_agent_bin = bb.utils.which(os.getenv('PATH'), "gpg-agent")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050022
23 def export_pubkey(self, output_file, keyid, armor=True):
24 """Export GPG public key to a file"""
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025 cmd = '%s --no-permission-warning --batch --yes --export -o %s ' % \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050026 (self.gpg_bin, output_file)
27 if self.gpg_path:
28 cmd += "--homedir %s " % self.gpg_path
29 if armor:
30 cmd += "--armor "
31 cmd += keyid
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080032 subprocess.check_output(shlex.split(cmd), stderr=subprocess.STDOUT)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050033
Brad Bishopd7bf8c12018-02-25 22:55:05 -050034 def sign_rpms(self, files, keyid, passphrase, digest, sign_chunk, fsk=None, fsk_password=None):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050035 """Sign RPM files"""
36
37 cmd = self.rpm_bin + " --addsign --define '_gpg_name %s' " % keyid
Brad Bishop316dfdd2018-06-25 12:45:53 -040038 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 -050039 if self.gpg_version > (2,1,):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050040 gpg_args += ' --pinentry-mode=loopback'
41 cmd += "--define '_gpg_sign_cmd_extra_args %s' " % gpg_args
Brad Bishopd7bf8c12018-02-25 22:55:05 -050042 cmd += "--define '_binary_filedigest_algorithm %s' " % digest
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050043 if self.gpg_bin:
Brad Bishopd7bf8c12018-02-25 22:55:05 -050044 cmd += "--define '__gpg %s' " % self.gpg_bin
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050045 if self.gpg_path:
46 cmd += "--define '_gpg_path %s' " % self.gpg_path
Brad Bishopd7bf8c12018-02-25 22:55:05 -050047 if fsk:
48 cmd += "--signfiles --fskpath %s " % fsk
49 if fsk_password:
50 cmd += "--define '_file_signing_key_password %s' " % fsk_password
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050051
Brad Bishopd7bf8c12018-02-25 22:55:05 -050052 # Sign in chunks
53 for i in range(0, len(files), sign_chunk):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080054 subprocess.check_output(shlex.split(cmd + ' '.join(files[i:i+sign_chunk])), stderr=subprocess.STDOUT)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050055
56 def detach_sign(self, input_file, keyid, passphrase_file, passphrase=None, armor=True):
57 """Create a detached signature of a file"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050058
59 if passphrase_file and passphrase:
60 raise Exception("You should use either passphrase_file of passphrase, not both")
61
Brad Bishopd7bf8c12018-02-25 22:55:05 -050062 cmd = [self.gpg_bin, '--detach-sign', '--no-permission-warning', '--batch',
63 '--no-tty', '--yes', '--passphrase-fd', '0', '-u', keyid]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050064
65 if self.gpg_path:
66 cmd += ['--homedir', self.gpg_path]
67 if armor:
68 cmd += ['--armor']
69
70 #gpg > 2.1 supports password pipes only through the loopback interface
71 #gpg < 2.1 errors out if given unknown parameters
Brad Bishop37a0e4d2017-12-04 01:01:44 -050072 if self.gpg_version > (2,1,):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050073 cmd += ['--pinentry-mode', 'loopback']
74
Brad Bishop316dfdd2018-06-25 12:45:53 -040075 if self.gpg_agent_bin:
76 cmd += ["--agent-program=%s|--auto-expand-secmem" % (self.gpg_agent_bin)]
77
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050078 cmd += [input_file]
79
80 try:
81 if passphrase_file:
82 with open(passphrase_file) as fobj:
83 passphrase = fobj.readline();
84
85 job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060086 (_, stderr) = job.communicate(passphrase.encode("utf-8"))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050087
88 if job.returncode:
89 raise bb.build.FuncFailed("GPG exited with code %d: %s" %
Patrick Williamsc0f7c042017-02-23 20:41:17 -060090 (job.returncode, stderr.decode("utf-8")))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050091
92 except IOError as e:
93 bb.error("IO error (%s): %s" % (e.errno, e.strerror))
94 raise Exception("Failed to sign '%s'" % input_file)
95
96 except OSError as e:
97 bb.error("OS error (%s): %s" % (e.errno, e.strerror))
98 raise Exception("Failed to sign '%s" % input_file)
99
100
101 def get_gpg_version(self):
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500102 """Return the gpg version as a tuple of ints"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500103 try:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500104 ver_str = subprocess.check_output((self.gpg_bin, "--version", "--no-permission-warning")).split()[2].decode("utf-8")
Brad Bishop316dfdd2018-06-25 12:45:53 -0400105 return tuple([int(i) for i in ver_str.split("-")[0].split('.')])
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500106 except subprocess.CalledProcessError as e:
107 raise bb.build.FuncFailed("Could not get gpg version: %s" % e)
108
109
110 def verify(self, sig_file):
111 """Verify signature"""
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500112 cmd = self.gpg_bin + " --verify --no-permission-warning "
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500113 if self.gpg_path:
114 cmd += "--homedir %s " % self.gpg_path
115 cmd += sig_file
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800116 status = subprocess.call(shlex.split(cmd))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500117 ret = False if status else True
118 return ret
119
120
121def get_signer(d, backend):
122 """Get signer object for the specified backend"""
123 # Use local signing by default
124 if backend == 'local':
125 return LocalSigner(d)
126 else:
127 bb.fatal("Unsupported signing backend '%s'" % backend)