unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#22954: Suspicious ownership or permission on harfbuzz-1.0.6-bin
@ 2016-03-09  3:14 Jeffrey Serio
  2016-03-09  9:32 ` Andreas Enge
  2016-10-10 20:21 ` Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Jeffrey Serio @ 2016-03-09  3:14 UTC (permalink / raw)
  To: 22954


I'm running the GuixSD usb install image version 0.9.0. I booted into
the install environment, and after connecting to the internet I ran
"guix pull". After "guix pull", I prepared the system to install to hard
drive, then I ran "guix system init /mnt/etc/config.scm /mnt
--fallback".

The build failed with the error message "Suspicious ownership or
permission on /gnu/store/...-harfbuzz-1.0.6-bin".

mark_weaver on the IRC channel asked me to run the stat command on that
directory, so I ran "stat /gnu/store/...-harfbuzz-1.0.6-bin" (but with
the actual string of alphanumeric characters in place of the
ellipsis). The stat command indicated that the -harfbuzz-1.0.6-bin
directory permissions is 0777. To be more specific:

Access: (0777/drwxrwxrwx) Uid: (30001/guixbuilder01) Gid:
(30000/guixbuild).

Let me know if any more information is needed.

-Jeffrey (hyperreal on IRC)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#22954: Suspicious ownership or permission on harfbuzz-1.0.6-bin
  2016-03-09  3:14 bug#22954: Suspicious ownership or permission on harfbuzz-1.0.6-bin Jeffrey Serio
@ 2016-03-09  9:32 ` Andreas Enge
  2016-03-09 13:17   ` Ludovic Courtès
  2016-10-10 20:21 ` Ludovic Courtès
  1 sibling, 1 reply; 5+ messages in thread
From: Andreas Enge @ 2016-03-09  9:32 UTC (permalink / raw)
  To: Jeffrey Serio; +Cc: 22954

On Tue, Mar 08, 2016 at 09:14:40PM -0600, Jeffrey Serio wrote:
> The build failed with the error message "Suspicious ownership or
> permission on /gnu/store/...-harfbuzz-1.0.6-bin".

I have been getting these from time to time recently; it may be related
to grafts, I think it appears when one package is supposed to be grafted
to another one. The two or three times it happened to me, just rerunning
the command succeeded.

Andreas

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#22954: Suspicious ownership or permission on harfbuzz-1.0.6-bin
  2016-03-09  9:32 ` Andreas Enge
@ 2016-03-09 13:17   ` Ludovic Courtès
  0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2016-03-09 13:17 UTC (permalink / raw)
  To: Andreas Enge; +Cc: Jeffrey Serio, 22954

Andreas Enge <andreas@enge.fr> skribis:

> On Tue, Mar 08, 2016 at 09:14:40PM -0600, Jeffrey Serio wrote:
>> The build failed with the error message "Suspicious ownership or
>> permission on /gnu/store/...-harfbuzz-1.0.6-bin".
>
> I have been getting these from time to time recently; it may be related
> to grafts, I think it appears when one package is supposed to be grafted
> to another one. The two or three times it happened to me, just rerunning
> the command succeeded.

Right, I experienced it a few times, hence 82f5186.

However, last time I saw this failure, I re-run the faulty derivation
with

  guix build /gnu/store/….drv --rounds=10

and it always succeeded.

So I suspect something fishy like a race condition in the daemon or
something.

Ludo’.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#22954: Suspicious ownership or permission on harfbuzz-1.0.6-bin
  2016-03-09  3:14 bug#22954: Suspicious ownership or permission on harfbuzz-1.0.6-bin Jeffrey Serio
  2016-03-09  9:32 ` Andreas Enge
@ 2016-10-10 20:21 ` Ludovic Courtès
  2016-10-10 20:33   ` Leo Famulari
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2016-10-10 20:21 UTC (permalink / raw)
  To: Jeffrey Serio; +Cc: 22954-done

Hello!

Jeffrey Serio <serio.jeffrey@gmail.com> skribis:

> The build failed with the error message "Suspicious ownership or
> permission on /gnu/store/...-harfbuzz-1.0.6-bin".

I’m happy to report that this is finally fixed!

Commit d72267863382041b84a9712eea354882be72ef55.

The root problem was that libguile’s ‘mkdir’ was playing dirty tricks
with umask(2), as explained at <http://bugs.gnu.org/24659>.  Our
multithreaded grafting code triggered the issue described in that bug.

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#22954: Suspicious ownership or permission on harfbuzz-1.0.6-bin
  2016-10-10 20:21 ` Ludovic Courtès
@ 2016-10-10 20:33   ` Leo Famulari
  0 siblings, 0 replies; 5+ messages in thread
From: Leo Famulari @ 2016-10-10 20:33 UTC (permalink / raw)
  To: 22954, ludo, serio.jeffrey

On Mon, Oct 10, 2016 at 10:21:38PM +0200, Ludovic Courtès wrote:
> Hello!
> 
> Jeffrey Serio <serio.jeffrey@gmail.com> skribis:
> 
> > The build failed with the error message "Suspicious ownership or
> > permission on /gnu/store/...-harfbuzz-1.0.6-bin".
> 
> I’m happy to report that this is finally fixed!
> 
> Commit d72267863382041b84a9712eea354882be72ef55.
> 
> The root problem was that libguile’s ‘mkdir’ was playing dirty tricks
> with umask(2), as explained at <http://bugs.gnu.org/24659>.  Our
> multithreaded grafting code triggered the issue described in that bug.

Hooray!

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-10-10 20:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-09  3:14 bug#22954: Suspicious ownership or permission on harfbuzz-1.0.6-bin Jeffrey Serio
2016-03-09  9:32 ` Andreas Enge
2016-03-09 13:17   ` Ludovic Courtès
2016-10-10 20:21 ` Ludovic Courtès
2016-10-10 20:33   ` Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).