* [PATCH] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign
@ 2023-03-23 10:08 Tobias Hagelborn
2023-03-29 22:33 ` [OE-core] " Richard Purdie
[not found] ` <1751049D3A378E36.12651@lists.openembedded.org>
0 siblings, 2 replies; 6+ messages in thread
From: Tobias Hagelborn @ 2023-03-23 10:08 UTC (permalink / raw)
To: openembedded-core
Move the signature file into place only after it is successfully signed.
This to avoid race and corrupted .sig files in cases multiple onging
builds write to a shared sstate-cache dir.
Signed-off-by: Tobias Hagelborn <tobiasha@axis.com>
---
meta/lib/oe/gpg_sign.py | 25 +++++++++++++++----------
1 file changed, 15 insertions(+), 10 deletions(-)
diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py
index 613dab8561..868846cdc5 100644
--- a/meta/lib/oe/gpg_sign.py
+++ b/meta/lib/oe/gpg_sign.py
@@ -5,11 +5,12 @@
#
"""Helper module for GPG signing"""
-import os
import bb
-import subprocess
+import os
import shlex
+import subprocess
+import tempfile
class LocalSigner(object):
"""Class for handling local (on the build host) signing"""
@@ -73,8 +74,6 @@ class LocalSigner(object):
cmd += ['--homedir', self.gpg_path]
if armor:
cmd += ['--armor']
- if output_suffix:
- cmd += ['-o', input_file + "." + output_suffix]
if use_sha256:
cmd += ['--digest-algo', "SHA256"]
@@ -83,19 +82,25 @@ class LocalSigner(object):
if self.gpg_version > (2,1,):
cmd += ['--pinentry-mode', 'loopback']
- cmd += [input_file]
-
try:
if passphrase_file:
with open(passphrase_file) as fobj:
passphrase = fobj.readline();
- job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
- (_, stderr) = job.communicate(passphrase.encode("utf-8"))
+ output_file = input_file + "." + (output_suffix or 'sig')
+ with tempfile.TemporaryDirectory(dir=os.path.dirname(output_file)) as tmp_dir:
+ tmp_file = os.path.join(tmp_dir, os.path.basename(output_file))
+ cmd += ['-o', tmp_file]
+
+ cmd += [input_file]
+
+ job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
+ (_, stderr) = job.communicate(passphrase.encode("utf-8"))
- if job.returncode:
- bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
+ if job.returncode:
+ bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
+ os.rename(tmp_file, output_file)
except IOError as e:
bb.error("IO error (%s): %s" % (e.errno, e.strerror))
raise Exception("Failed to sign '%s'" % input_file)
--
2.30.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [OE-core] [PATCH] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign
2023-03-23 10:08 [PATCH] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign Tobias Hagelborn
@ 2023-03-29 22:33 ` Richard Purdie
[not found] ` <1751049D3A378E36.12651@lists.openembedded.org>
1 sibling, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2023-03-29 22:33 UTC (permalink / raw)
To: Tobias Hagelborn, openembedded-core
On Thu, 2023-03-23 at 11:08 +0100, Tobias Hagelborn wrote:
> Move the signature file into place only after it is successfully signed.
> This to avoid race and corrupted .sig files in cases multiple onging
> builds write to a shared sstate-cache dir.
>
> Signed-off-by: Tobias Hagelborn <tobiasha@axis.com>
> ---
> meta/lib/oe/gpg_sign.py | 25 +++++++++++++++----------
> 1 file changed, 15 insertions(+), 10 deletions(-)
>
> diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py
> index 613dab8561..868846cdc5 100644
> --- a/meta/lib/oe/gpg_sign.py
> +++ b/meta/lib/oe/gpg_sign.py
> @@ -5,11 +5,12 @@
> #
>
> """Helper module for GPG signing"""
> -import os
>
> import bb
> -import subprocess
> +import os
> import shlex
> +import subprocess
> +import tempfile
>
> class LocalSigner(object):
> """Class for handling local (on the build host) signing"""
> @@ -73,8 +74,6 @@ class LocalSigner(object):
> cmd += ['--homedir', self.gpg_path]
> if armor:
> cmd += ['--armor']
> - if output_suffix:
> - cmd += ['-o', input_file + "." + output_suffix]
> if use_sha256:
> cmd += ['--digest-algo', "SHA256"]
>
> @@ -83,19 +82,25 @@ class LocalSigner(object):
> if self.gpg_version > (2,1,):
> cmd += ['--pinentry-mode', 'loopback']
>
> - cmd += [input_file]
> -
> try:
> if passphrase_file:
> with open(passphrase_file) as fobj:
> passphrase = fobj.readline();
>
> - job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> - (_, stderr) = job.communicate(passphrase.encode("utf-8"))
> + output_file = input_file + "." + (output_suffix or 'sig')
This doesn't match the behaviour of output_suffix as used above where
it defaults to None. This forces it to a default of "sig" instead?
If that intentional that should be in the commit message.
> + with tempfile.TemporaryDirectory(dir=os.path.dirname(output_file)) as tmp_dir:
> + tmp_file = os.path.join(tmp_dir, os.path.basename(output_file))
> + cmd += ['-o', tmp_file]
> +
> + cmd += [input_file]
> +
> + job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> + (_, stderr) = job.communicate(passphrase.encode("utf-8"))
>
> - if job.returncode:
> - bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
> + if job.returncode:
> + bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
>
> + os.rename(tmp_file, output_file)
> except IOError as e:
> bb.error("IO error (%s): %s" % (e.errno, e.strerror))
> raise Exception("Failed to sign '%s'" % input_file)
Cheers,
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread[parent not found: <1751049D3A378E36.12651@lists.openembedded.org>]
* Re: [OE-core] [PATCH] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign
[not found] ` <1751049D3A378E36.12651@lists.openembedded.org>
@ 2023-03-30 9:10 ` Richard Purdie
2023-03-30 12:39 ` Tobias Hagelborn
2023-03-30 12:54 ` Alexandre Belloni
[not found] ` <1751275EEB419793.12651@lists.openembedded.org>
1 sibling, 2 replies; 6+ messages in thread
From: Richard Purdie @ 2023-03-30 9:10 UTC (permalink / raw)
To: Tobias Hagelborn, openembedded-core
On Wed, 2023-03-29 at 23:33 +0100, Richard Purdie via
lists.openembedded.org wrote:
> On Thu, 2023-03-23 at 11:08 +0100, Tobias Hagelborn wrote:
> > Move the signature file into place only after it is successfully signed.
> > This to avoid race and corrupted .sig files in cases multiple onging
> > builds write to a shared sstate-cache dir.
> >
> > Signed-off-by: Tobias Hagelborn <tobiasha@axis.com>
> > ---
> > meta/lib/oe/gpg_sign.py | 25 +++++++++++++++----------
> > 1 file changed, 15 insertions(+), 10 deletions(-)
> >
> > diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py
> > index 613dab8561..868846cdc5 100644
> > --- a/meta/lib/oe/gpg_sign.py
> > +++ b/meta/lib/oe/gpg_sign.py
> > @@ -5,11 +5,12 @@
> > #
> >
> > """Helper module for GPG signing"""
> > -import os
> >
> > import bb
> > -import subprocess
> > +import os
> > import shlex
> > +import subprocess
> > +import tempfile
> >
> > class LocalSigner(object):
> > """Class for handling local (on the build host) signing"""
> > @@ -73,8 +74,6 @@ class LocalSigner(object):
> > cmd += ['--homedir', self.gpg_path]
> > if armor:
> > cmd += ['--armor']
> > - if output_suffix:
> > - cmd += ['-o', input_file + "." + output_suffix]
> > if use_sha256:
> > cmd += ['--digest-algo', "SHA256"]
> >
> > @@ -83,19 +82,25 @@ class LocalSigner(object):
> > if self.gpg_version > (2,1,):
> > cmd += ['--pinentry-mode', 'loopback']
> >
> > - cmd += [input_file]
> > -
> > try:
> > if passphrase_file:
> > with open(passphrase_file) as fobj:
> > passphrase = fobj.readline();
> >
> > - job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> > - (_, stderr) = job.communicate(passphrase.encode("utf-8"))
> > + output_file = input_file + "." + (output_suffix or 'sig')
>
> This doesn't match the behaviour of output_suffix as used above where
> it defaults to None. This forces it to a default of "sig" instead?
>
> If that intentional that should be in the commit message.
>
>
> > + with tempfile.TemporaryDirectory(dir=os.path.dirname(output_file)) as tmp_dir:
> > + tmp_file = os.path.join(tmp_dir, os.path.basename(output_file))
> > + cmd += ['-o', tmp_file]
> > +
> > + cmd += [input_file]
> > +
> > + job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> > + (_, stderr) = job.communicate(passphrase.encode("utf-8"))
> >
> > - if job.returncode:
> > - bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
> > + if job.returncode:
> > + bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
> >
> > + os.rename(tmp_file, output_file)
> > except IOError as e:
> > bb.error("IO error (%s): %s" % (e.errno, e.strerror))
> > raise Exception("Failed to sign '%s'" % input_file)
I've been struggling to confirm it but have now done so. This does
cause an oe-selftest failure as here:
https://autobuilder.yoctoproject.org/typhoon/#/builders/80/builds/4950/steps/14/logs/stdio
i.e. from
oe-selftest -r runtime_test.TestImage.test_testimage_dnf
Cheers,
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [OE-core] [PATCH] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign
2023-03-30 9:10 ` Richard Purdie
@ 2023-03-30 12:39 ` Tobias Hagelborn
2023-03-30 12:54 ` Alexandre Belloni
1 sibling, 0 replies; 6+ messages in thread
From: Tobias Hagelborn @ 2023-03-30 12:39 UTC (permalink / raw)
To: openembedded-core@lists.openembedded.org
[-- Attachment #1: Type: text/plain, Size: 4117 bytes --]
Thanks for the test feedback Richard!
I have not run the oe selftest properly on this one and will look in to the self-test results.
(We have not used the signed rpm part for instance)
Cheers
Tobias
________________________________
From: Richard Purdie <richard.purdie@linuxfoundation.org>
Sent: Thursday, March 30, 2023 11:10 AM
To: Tobias Hagelborn <Tobias.Hagelborn@axis.com>; openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core] [PATCH] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign
On Wed, 2023-03-29 at 23:33 +0100, Richard Purdie via
lists.openembedded.org wrote:
> On Thu, 2023-03-23 at 11:08 +0100, Tobias Hagelborn wrote:
> > Move the signature file into place only after it is successfully signed.
> > This to avoid race and corrupted .sig files in cases multiple onging
> > builds write to a shared sstate-cache dir.
> >
> > Signed-off-by: Tobias Hagelborn <tobiasha@axis.com>
> > ---
> > meta/lib/oe/gpg_sign.py | 25 +++++++++++++++----------
> > 1 file changed, 15 insertions(+), 10 deletions(-)
> >
> > diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py
> > index 613dab8561..868846cdc5 100644
> > --- a/meta/lib/oe/gpg_sign.py
> > +++ b/meta/lib/oe/gpg_sign.py
> > @@ -5,11 +5,12 @@
> > #
> >
> > """Helper module for GPG signing"""
> > -import os
> >
> > import bb
> > -import subprocess
> > +import os
> > import shlex
> > +import subprocess
> > +import tempfile
> >
> > class LocalSigner(object):
> > """Class for handling local (on the build host) signing"""
> > @@ -73,8 +74,6 @@ class LocalSigner(object):
> > cmd += ['--homedir', self.gpg_path]
> > if armor:
> > cmd += ['--armor']
> > - if output_suffix:
> > - cmd += ['-o', input_file + "." + output_suffix]
> > if use_sha256:
> > cmd += ['--digest-algo', "SHA256"]
> >
> > @@ -83,19 +82,25 @@ class LocalSigner(object):
> > if self.gpg_version > (2,1,):
> > cmd += ['--pinentry-mode', 'loopback']
> >
> > - cmd += [input_file]
> > -
> > try:
> > if passphrase_file:
> > with open(passphrase_file) as fobj:
> > passphrase = fobj.readline();
> >
> > - job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> > - (_, stderr) = job.communicate(passphrase.encode("utf-8"))
> > + output_file = input_file + "." + (output_suffix or 'sig')
>
> This doesn't match the behaviour of output_suffix as used above where
> it defaults to None. This forces it to a default of "sig" instead?
>
> If that intentional that should be in the commit message.
>
>
> > + with tempfile.TemporaryDirectory(dir=os.path.dirname(output_file)) as tmp_dir:
> > + tmp_file = os.path.join(tmp_dir, os.path.basename(output_file))
> > + cmd += ['-o', tmp_file]
> > +
> > + cmd += [input_file]
> > +
> > + job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> > + (_, stderr) = job.communicate(passphrase.encode("utf-8"))
> >
> > - if job.returncode:
> > - bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
> > + if job.returncode:
> > + bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
> >
> > + os.rename(tmp_file, output_file)
> > except IOError as e:
> > bb.error("IO error (%s): %s" % (e.errno, e.strerror))
> > raise Exception("Failed to sign '%s'" % input_file)
I've been struggling to confirm it but have now done so. This does
cause an oe-selftest failure as here:
https://autobuilder.yoctoproject.org/typhoon/#/builders/80/builds/4950/steps/14/logs/stdio
i.e. from
oe-selftest -r runtime_test.TestImage.test_testimage_dnf
Cheers,
Richard
[-- Attachment #2: Type: text/html, Size: 8448 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [OE-core] [PATCH] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign
2023-03-30 9:10 ` Richard Purdie
2023-03-30 12:39 ` Tobias Hagelborn
@ 2023-03-30 12:54 ` Alexandre Belloni
1 sibling, 0 replies; 6+ messages in thread
From: Alexandre Belloni @ 2023-03-30 12:54 UTC (permalink / raw)
To: Richard Purdie; +Cc: Tobias Hagelborn, openembedded-core
On 30/03/2023 10:10:21+0100, Richard Purdie wrote:
> On Wed, 2023-03-29 at 23:33 +0100, Richard Purdie via
> lists.openembedded.org wrote:
> > On Thu, 2023-03-23 at 11:08 +0100, Tobias Hagelborn wrote:
> > > Move the signature file into place only after it is successfully signed.
> > > This to avoid race and corrupted .sig files in cases multiple onging
> > > builds write to a shared sstate-cache dir.
> > >
> > > Signed-off-by: Tobias Hagelborn <tobiasha@axis.com>
> > > ---
> > > meta/lib/oe/gpg_sign.py | 25 +++++++++++++++----------
> > > 1 file changed, 15 insertions(+), 10 deletions(-)
> > >
> > > diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py
> > > index 613dab8561..868846cdc5 100644
> > > --- a/meta/lib/oe/gpg_sign.py
> > > +++ b/meta/lib/oe/gpg_sign.py
> > > @@ -5,11 +5,12 @@
> > > #
> > >
> > > """Helper module for GPG signing"""
> > > -import os
> > >
> > > import bb
> > > -import subprocess
> > > +import os
> > > import shlex
> > > +import subprocess
> > > +import tempfile
> > >
> > > class LocalSigner(object):
> > > """Class for handling local (on the build host) signing"""
> > > @@ -73,8 +74,6 @@ class LocalSigner(object):
> > > cmd += ['--homedir', self.gpg_path]
> > > if armor:
> > > cmd += ['--armor']
> > > - if output_suffix:
> > > - cmd += ['-o', input_file + "." + output_suffix]
> > > if use_sha256:
> > > cmd += ['--digest-algo', "SHA256"]
> > >
> > > @@ -83,19 +82,25 @@ class LocalSigner(object):
> > > if self.gpg_version > (2,1,):
> > > cmd += ['--pinentry-mode', 'loopback']
> > >
> > > - cmd += [input_file]
> > > -
> > > try:
> > > if passphrase_file:
> > > with open(passphrase_file) as fobj:
> > > passphrase = fobj.readline();
> > >
> > > - job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> > > - (_, stderr) = job.communicate(passphrase.encode("utf-8"))
> > > + output_file = input_file + "." + (output_suffix or 'sig')
> >
> > This doesn't match the behaviour of output_suffix as used above where
> > it defaults to None. This forces it to a default of "sig" instead?
> >
> > If that intentional that should be in the commit message.
> >
> >
> > > + with tempfile.TemporaryDirectory(dir=os.path.dirname(output_file)) as tmp_dir:
> > > + tmp_file = os.path.join(tmp_dir, os.path.basename(output_file))
> > > + cmd += ['-o', tmp_file]
> > > +
> > > + cmd += [input_file]
> > > +
> > > + job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> > > + (_, stderr) = job.communicate(passphrase.encode("utf-8"))
> > >
> > > - if job.returncode:
> > > - bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
> > > + if job.returncode:
> > > + bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
> > >
> > > + os.rename(tmp_file, output_file)
> > > except IOError as e:
> > > bb.error("IO error (%s): %s" % (e.errno, e.strerror))
> > > raise Exception("Failed to sign '%s'" % input_file)
>
> I've been struggling to confirm it but have now done so. This does
> cause an oe-selftest failure as here:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/80/builds/4950/steps/14/logs/stdio
>
>
> i.e. from
>
> oe-selftest -r runtime_test.TestImage.test_testimage_dnf
>
I realize just now that I forgot to send an email telling exactly that,
sorry!
> Cheers,
>
> Richard
>
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#179308): https://lists.openembedded.org/g/openembedded-core/message/179308
> Mute This Topic: https://lists.openembedded.org/mt/97797700/3617179
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alexandre.belloni@bootlin.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 6+ messages in thread
[parent not found: <1751275EEB419793.12651@lists.openembedded.org>]
* Re: [OE-core] [PATCH] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign
[not found] ` <1751275EEB419793.12651@lists.openembedded.org>
@ 2023-03-30 9:14 ` Richard Purdie
0 siblings, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2023-03-30 9:14 UTC (permalink / raw)
To: Tobias Hagelborn, openembedded-core
On Thu, 2023-03-30 at 10:10 +0100, Richard Purdie via
lists.openembedded.org wrote:
> On Wed, 2023-03-29 at 23:33 +0100, Richard Purdie via
> lists.openembedded.org wrote:
> > On Thu, 2023-03-23 at 11:08 +0100, Tobias Hagelborn wrote:
> > > Move the signature file into place only after it is successfully signed.
> > > This to avoid race and corrupted .sig files in cases multiple onging
> > > builds write to a shared sstate-cache dir.
> > >
> > > Signed-off-by: Tobias Hagelborn <tobiasha@axis.com>
> > > ---
> > > meta/lib/oe/gpg_sign.py | 25 +++++++++++++++----------
> > > 1 file changed, 15 insertions(+), 10 deletions(-)
> > >
> > > diff --git a/meta/lib/oe/gpg_sign.py b/meta/lib/oe/gpg_sign.py
> > > index 613dab8561..868846cdc5 100644
> > > --- a/meta/lib/oe/gpg_sign.py
> > > +++ b/meta/lib/oe/gpg_sign.py
> > > @@ -5,11 +5,12 @@
> > > #
> > >
> > > """Helper module for GPG signing"""
> > > -import os
> > >
> > > import bb
> > > -import subprocess
> > > +import os
> > > import shlex
> > > +import subprocess
> > > +import tempfile
> > >
> > > class LocalSigner(object):
> > > """Class for handling local (on the build host) signing"""
> > > @@ -73,8 +74,6 @@ class LocalSigner(object):
> > > cmd += ['--homedir', self.gpg_path]
> > > if armor:
> > > cmd += ['--armor']
> > > - if output_suffix:
> > > - cmd += ['-o', input_file + "." + output_suffix]
> > > if use_sha256:
> > > cmd += ['--digest-algo', "SHA256"]
> > >
> > > @@ -83,19 +82,25 @@ class LocalSigner(object):
> > > if self.gpg_version > (2,1,):
> > > cmd += ['--pinentry-mode', 'loopback']
> > >
> > > - cmd += [input_file]
> > > -
> > > try:
> > > if passphrase_file:
> > > with open(passphrase_file) as fobj:
> > > passphrase = fobj.readline();
> > >
> > > - job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> > > - (_, stderr) = job.communicate(passphrase.encode("utf-8"))
> > > + output_file = input_file + "." + (output_suffix or 'sig')
> >
> > This doesn't match the behaviour of output_suffix as used above where
> > it defaults to None. This forces it to a default of "sig" instead?
> >
> > If that intentional that should be in the commit message.
> >
> >
> > > + with tempfile.TemporaryDirectory(dir=os.path.dirname(output_file)) as tmp_dir:
> > > + tmp_file = os.path.join(tmp_dir, os.path.basename(output_file))
> > > + cmd += ['-o', tmp_file]
> > > +
> > > + cmd += [input_file]
> > > +
> > > + job = subprocess.Popen(cmd, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
> > > + (_, stderr) = job.communicate(passphrase.encode("utf-8"))
> > >
> > > - if job.returncode:
> > > - bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
> > > + if job.returncode:
> > > + bb.fatal("GPG exited with code %d: %s" % (job.returncode, stderr.decode("utf-8")))
> > >
> > > + os.rename(tmp_file, output_file)
> > > except IOError as e:
> > > bb.error("IO error (%s): %s" % (e.errno, e.strerror))
> > > raise Exception("Failed to sign '%s'" % input_file)
>
> I've been struggling to confirm it but have now done so. This does
> cause an oe-selftest failure as here:
>
> https://autobuilder.yoctoproject.org/typhoon/#/builders/80/builds/4950/steps/14/logs/stdio
>
>
> i.e. from
>
> oe-selftest -r runtime_test.TestImage.test_testimage_dnf
I should also mention, this test fails with oe-core's nodistro for
other reasons but does work ok with poky. I filed a bug for that:
https://bugzilla.yoctoproject.org/show_bug.cgi?id=15086
since it was confusing my debugging! You'd therefore need to use poky
for testing your change until we fix that.
Cheers,
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-03-30 12:55 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-23 10:08 [PATCH] lib/oe/gpg_sign.py: Avoid race when creating .sig files in detach_sign Tobias Hagelborn
2023-03-29 22:33 ` [OE-core] " Richard Purdie
[not found] ` <1751049D3A378E36.12651@lists.openembedded.org>
2023-03-30 9:10 ` Richard Purdie
2023-03-30 12:39 ` Tobias Hagelborn
2023-03-30 12:54 ` Alexandre Belloni
[not found] ` <1751275EEB419793.12651@lists.openembedded.org>
2023-03-30 9:14 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox