blob: ccd5aee4207fdedcec06e3968f164653dde59a39 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001"""Helper module for GPG signing"""
2import os
3
4import bb
5import oe.utils
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08006import subprocess
7import shlex
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05008
9class LocalSigner(object):
10 """Class for handling local (on the build host) signing"""
11 def __init__(self, d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050012 self.gpg_bin = d.getVar('GPG_BIN') or \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050013 bb.utils.which(os.getenv('PATH'), 'gpg')
Brad Bishop6e60e8b2018-02-01 10:27:11 -050014 self.gpg_path = d.getVar('GPG_PATH')
Brad Bishop37a0e4d2017-12-04 01:01:44 -050015 self.gpg_version = self.get_gpg_version()
Brad Bishop6e60e8b2018-02-01 10:27:11 -050016 self.rpm_bin = bb.utils.which(os.getenv('PATH'), "rpmsign")
Brad Bishop316dfdd2018-06-25 12:45:53 -040017 self.gpg_agent_bin = bb.utils.which(os.getenv('PATH'), "gpg-agent")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050018
19 def export_pubkey(self, output_file, keyid, armor=True):
20 """Export GPG public key to a file"""
Brad Bishopd7bf8c12018-02-25 22:55:05 -050021 cmd = '%s --no-permission-warning --batch --yes --export -o %s ' % \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050022 (self.gpg_bin, output_file)
23 if self.gpg_path:
24 cmd += "--homedir %s " % self.gpg_path
25 if armor:
26 cmd += "--armor "
27 cmd += keyid
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080028 subprocess.check_output(shlex.split(cmd), stderr=subprocess.STDOUT)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050029
Brad Bishopd7bf8c12018-02-25 22:55:05 -050030 def sign_rpms(self, files, keyid, passphrase, digest, sign_chunk, fsk=None, fsk_password=None):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050031 """Sign RPM files"""
32
33 cmd = self.rpm_bin + " --addsign --define '_gpg_name %s' " % keyid
Brad Bishop316dfdd2018-06-25 12:45:53 -040034 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 -050035 if self.gpg_version > (2,1,):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050036 gpg_args += ' --pinentry-mode=loopback'
37 cmd += "--define '_gpg_sign_cmd_extra_args %s' " % gpg_args
Brad Bishopd7bf8c12018-02-25 22:55:05 -050038 cmd += "--define '_binary_filedigest_algorithm %s' " % digest
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050039 if self.gpg_bin:
Brad Bishopd7bf8c12018-02-25 22:55:05 -050040 cmd += "--define '__gpg %s' " % self.gpg_bin
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050041 if self.gpg_path:
42 cmd += "--define '_gpg_path %s' " % self.gpg_path
Brad Bishopd7bf8c12018-02-25 22:55:05 -050043 if fsk:
44 cmd += "--signfiles --fskpath %s " % fsk
45 if fsk_password:
46 cmd += "--define '_file_signing_key_password %s' " % fsk_password
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050047
Brad Bishopd7bf8c12018-02-25 22:55:05 -050048 # Sign in chunks
49 for i in range(0, len(files), sign_chunk):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080050 subprocess.check_output(shlex.split(cmd + ' '.join(files[i:i+sign_chunk])), stderr=subprocess.STDOUT)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050051
52 def detach_sign(self, input_file, keyid, passphrase_file, passphrase=None, armor=True):
53 """Create a detached signature of a file"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050054
55 if passphrase_file and passphrase:
56 raise Exception("You should use either passphrase_file of passphrase, not both")
57
Brad Bishopd7bf8c12018-02-25 22:55:05 -050058 cmd = [self.gpg_bin, '--detach-sign', '--no-permission-warning', '--batch',
59 '--no-tty', '--yes', '--passphrase-fd', '0', '-u', keyid]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050060
61 if self.gpg_path:
62 cmd += ['--homedir', self.gpg_path]
63 if armor:
64 cmd += ['--armor']
65
66 #gpg > 2.1 supports password pipes only through the loopback interface
67 #gpg < 2.1 errors out if given unknown parameters
Brad Bishop37a0e4d2017-12-04 01:01:44 -050068 if self.gpg_version > (2,1,):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050069 cmd += ['--pinentry-mode', 'loopback']
70
Brad Bishop316dfdd2018-06-25 12:45:53 -040071 if self.gpg_agent_bin:
72 cmd += ["--agent-program=%s|--auto-expand-secmem" % (self.gpg_agent_bin)]
73
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050074 cmd += [input_file]
75
76 try:
77 if passphrase_file:
78 with open(passphrase_file) as fobj:
79 passphrase = fobj.readline();
80
81 job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060082 (_, stderr) = job.communicate(passphrase.encode("utf-8"))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050083
84 if job.returncode:
85 raise bb.build.FuncFailed("GPG exited with code %d: %s" %
Patrick Williamsc0f7c042017-02-23 20:41:17 -060086 (job.returncode, stderr.decode("utf-8")))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050087
88 except IOError as e:
89 bb.error("IO error (%s): %s" % (e.errno, e.strerror))
90 raise Exception("Failed to sign '%s'" % input_file)
91
92 except OSError as e:
93 bb.error("OS error (%s): %s" % (e.errno, e.strerror))
94 raise Exception("Failed to sign '%s" % input_file)
95
96
97 def get_gpg_version(self):
Brad Bishop37a0e4d2017-12-04 01:01:44 -050098 """Return the gpg version as a tuple of ints"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050099 try:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500100 ver_str = subprocess.check_output((self.gpg_bin, "--version", "--no-permission-warning")).split()[2].decode("utf-8")
Brad Bishop316dfdd2018-06-25 12:45:53 -0400101 return tuple([int(i) for i in ver_str.split("-")[0].split('.')])
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500102 except subprocess.CalledProcessError as e:
103 raise bb.build.FuncFailed("Could not get gpg version: %s" % e)
104
105
106 def verify(self, sig_file):
107 """Verify signature"""
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500108 cmd = self.gpg_bin + " --verify --no-permission-warning "
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500109 if self.gpg_path:
110 cmd += "--homedir %s " % self.gpg_path
111 cmd += sig_file
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800112 status = subprocess.call(shlex.split(cmd))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500113 ret = False if status else True
114 return ret
115
116
117def get_signer(d, backend):
118 """Get signer object for the specified backend"""
119 # Use local signing by default
120 if backend == 'local':
121 return LocalSigner(d)
122 else:
123 bb.fatal("Unsupported signing backend '%s'" % backend)