diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2018-01-10 14:27:42 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-11 10:26:07 +0000 |
commit | 0f49d9182f9a6204399c0946b9e9ae64ad3c0838 (patch) | |
tree | 2776060ece2f57e90c308c88c1f5aa62749d7629 /meta/lib/oe/gpg_sign.py | |
parent | 0a732a9c66ffe33e9bf11757acb3ae599219a89f (diff) | |
download | poky-0f49d9182f9a6204399c0946b9e9ae64ad3c0838.tar.gz |
gnupg: use native version for signing, rather than one provided by host
Using host gpg has been problematic, and particularly this removes
the need to serialize package creation, as long as --auto-expand-secmem
is passed to gpg-agent, and gnupg >= 2.2.4 is in use
(https://dev.gnupg.org/T3530).
Sadly, gpg-agent itself is single-threaded, so in the longer run
we might want to seek alternatives:
https://lwn.net/Articles/742542/
(a smaller issue is that rpm itself runs the gpg fronted in a serial
fashion, which slows down the build in cases of recipes with very
large amount of packages, e.g. glibc-locale)
Note that sstate signing and verification continues to use host
gpg, as depending on native gpg would create circular dependencies.
[YOCTO #12022]
(From OE-Core rev: 08fef6198122fe79d4c1213f9a64b862162ed6cd)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/gpg_sign.py')
-rw-r--r-- | meta/lib/oe/gpg_sign.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py index 9cc88f020c..b17272928f 100644 --- a/meta/lib/oe/gpg_sign.py +++ b/meta/lib/oe/gpg_sign.py | |||
@@ -12,6 +12,7 @@ class LocalSigner(object): | |||
12 | self.gpg_path = d.getVar('GPG_PATH') | 12 | self.gpg_path = d.getVar('GPG_PATH') |
13 | self.gpg_version = self.get_gpg_version() | 13 | self.gpg_version = self.get_gpg_version() |
14 | self.rpm_bin = bb.utils.which(os.getenv('PATH'), "rpmsign") | 14 | self.rpm_bin = bb.utils.which(os.getenv('PATH'), "rpmsign") |
15 | self.gpg_agent_bin = bb.utils.which(os.getenv('PATH'), "gpg-agent") | ||
15 | 16 | ||
16 | def export_pubkey(self, output_file, keyid, armor=True): | 17 | def export_pubkey(self, output_file, keyid, armor=True): |
17 | """Export GPG public key to a file""" | 18 | """Export GPG public key to a file""" |
@@ -31,7 +32,7 @@ class LocalSigner(object): | |||
31 | """Sign RPM files""" | 32 | """Sign RPM files""" |
32 | 33 | ||
33 | cmd = self.rpm_bin + " --addsign --define '_gpg_name %s' " % keyid | 34 | cmd = self.rpm_bin + " --addsign --define '_gpg_name %s' " % keyid |
34 | gpg_args = '--no-permission-warning --batch --passphrase=%s' % passphrase | 35 | gpg_args = '--no-permission-warning --batch --passphrase=%s --agent-program=%s|--auto-expand-secmem' % (passphrase, self.gpg_agent_bin) |
35 | if self.gpg_version > (2,1,): | 36 | if self.gpg_version > (2,1,): |
36 | gpg_args += ' --pinentry-mode=loopback' | 37 | gpg_args += ' --pinentry-mode=loopback' |
37 | cmd += "--define '_gpg_sign_cmd_extra_args %s' " % gpg_args | 38 | cmd += "--define '_gpg_sign_cmd_extra_args %s' " % gpg_args |
@@ -71,6 +72,9 @@ class LocalSigner(object): | |||
71 | if self.gpg_version > (2,1,): | 72 | if self.gpg_version > (2,1,): |
72 | cmd += ['--pinentry-mode', 'loopback'] | 73 | cmd += ['--pinentry-mode', 'loopback'] |
73 | 74 | ||
75 | if self.gpg_agent_bin: | ||
76 | cmd += ["--agent-program=%s|--auto-expand-secmem" % (self.gpg_agent_bin)] | ||
77 | |||
74 | cmd += [input_file] | 78 | cmd += [input_file] |
75 | 79 | ||
76 | try: | 80 | try: |
@@ -99,7 +103,7 @@ class LocalSigner(object): | |||
99 | import subprocess | 103 | import subprocess |
100 | try: | 104 | try: |
101 | ver_str = subprocess.check_output((self.gpg_bin, "--version", "--no-permission-warning")).split()[2].decode("utf-8") | 105 | ver_str = subprocess.check_output((self.gpg_bin, "--version", "--no-permission-warning")).split()[2].decode("utf-8") |
102 | return tuple([int(i) for i in ver_str.split('.')]) | 106 | return tuple([int(i) for i in ver_str.split("-")[0].split('.')]) |
103 | except subprocess.CalledProcessError as e: | 107 | except subprocess.CalledProcessError as e: |
104 | raise bb.build.FuncFailed("Could not get gpg version: %s" % e) | 108 | raise bb.build.FuncFailed("Could not get gpg version: %s" % e) |
105 | 109 | ||