diff options
author | Ioan-Adrian Ratiu <adrian.ratiu@ni.com> | 2016-03-10 12:02:55 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-11 16:50:45 +0000 |
commit | 2fccd8aa1c96a6db056e2352b1d5039ce671a102 (patch) | |
tree | f89662a5fa662b8eadd3c7df9da31a620f0c32d0 /meta/lib/oe/gpg_sign.py | |
parent | 6bd6a2b6fe0775e6ec75ad70af6231f944fa399c (diff) | |
download | poky-2fccd8aa1c96a6db056e2352b1d5039ce671a102.tar.gz |
gpg_sign: add local ipk package signing functionality
Implement ipk signing inside the sign_ipk bbclass using the gpg_sign
module and configure signing similar to how rpm does it. sign_ipk uses
gpg_sign's detach_sign because its functionality is identical to package
feed signing.
IPK signing process is a bit different from rpm:
- Signatures are stored outside ipk files; opkg connects to a feed
server and downloads them to verify a package.
- Signatures are of two types (both supported by opkg): binary or
ascii armoured. By default we sign using ascii armoured.
- Public keys are stored on targets to verify ipks using the
opkg-keyrings recipe.
(From OE-Core rev: a40f27aa7802e8a0bd87a5417e35adbface62d05)
Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.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 | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py index ada1b2f408..059381d5e3 100644 --- a/meta/lib/oe/gpg_sign.py +++ b/meta/lib/oe/gpg_sign.py | |||
@@ -50,6 +50,7 @@ class LocalSigner(object): | |||
50 | bb.error('rpmsign failed: %s' % proc.before.strip()) | 50 | bb.error('rpmsign failed: %s' % proc.before.strip()) |
51 | raise bb.build.FuncFailed("Failed to sign RPM packages") | 51 | raise bb.build.FuncFailed("Failed to sign RPM packages") |
52 | 52 | ||
53 | |||
53 | def detach_sign(self, input_file, keyid, passphrase_file, passphrase=None, armor=True): | 54 | def detach_sign(self, input_file, keyid, passphrase_file, passphrase=None, armor=True): |
54 | """Create a detached signature of a file""" | 55 | """Create a detached signature of a file""" |
55 | import subprocess | 56 | import subprocess |
@@ -58,22 +59,35 @@ class LocalSigner(object): | |||
58 | raise Exception("You should use either passphrase_file of passphrase, not both") | 59 | raise Exception("You should use either passphrase_file of passphrase, not both") |
59 | 60 | ||
60 | cmd = [self.gpg_bin, '--detach-sign', '--batch', '--no-tty', '--yes', | 61 | cmd = [self.gpg_bin, '--detach-sign', '--batch', '--no-tty', '--yes', |
61 | '-u', keyid] | 62 | '--passphrase-fd', '0', '-u', keyid] |
62 | if passphrase_file: | 63 | |
63 | cmd += ['--passphrase-file', passphrase_file] | ||
64 | else: | ||
65 | cmd += ['--passphrase-fd', '0'] | ||
66 | if self.gpg_path: | 64 | if self.gpg_path: |
67 | cmd += ['--homedir', self.gpg_path] | 65 | cmd += ['--homedir', self.gpg_path] |
68 | if armor: | 66 | if armor: |
69 | cmd += ['--armor'] | 67 | cmd += ['--armor'] |
70 | cmd.append(input_file) | 68 | |
71 | job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, | 69 | cmd += [input_file] |
72 | stderr=subprocess.PIPE) | 70 | |
73 | _, stderr = job.communicate(passphrase) | 71 | try: |
74 | if job.returncode: | 72 | if passphrase_file: |
75 | raise bb.build.FuncFailed("Failed to create signature for '%s': %s" % | 73 | with open(passphrase_file) as fobj: |
76 | (input_file, stderr)) | 74 | passphrase = fobj.readline(); |
75 | |||
76 | job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE) | ||
77 | (_, stderr) = job.communicate(passphrase) | ||
78 | |||
79 | if job.returncode: | ||
80 | raise bb.build.FuncFailed("GPG exited with code %d: %s" % | ||
81 | (job.returncode, stderr)) | ||
82 | |||
83 | except IOError as e: | ||
84 | bb.error("IO error (%s): %s" % (e.errno, e.strerror)) | ||
85 | raise Exception("Failed to sign '%s'" % input_file) | ||
86 | |||
87 | except OSError as e: | ||
88 | bb.error("OS error (%s): %s" % (e.errno, e.strerror)) | ||
89 | raise Exception("Failed to sign '%s" % input_file) | ||
90 | |||
77 | 91 | ||
78 | def verify(self, sig_file): | 92 | def verify(self, sig_file): |
79 | """Verify signature""" | 93 | """Verify signature""" |