unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#36443: guix build mixes build dirs?
@ 2019-06-30 10:24 Robert Vollmert
  2019-06-30 12:13 ` bug#36443: suspicion Robert Vollmert
  2019-06-30 17:18 ` bug#36443: guix build mixes build dirs? Mark H Weaver
  0 siblings, 2 replies; 14+ messages in thread
From: Robert Vollmert @ 2019-06-30 10:24 UTC (permalink / raw)
  To: 36443

So this is pretty bizarre, and I haven’t managed to cut it down
to a smaller example yet, but it seems pretty clear that something
is broken:

$ guix build -K some-package
-> error, referencing /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0
note: keeping build directory `/tmp/guix-build-puzzledb-frontend-20190625-git.drv-0’
$ guix build -K some-package
-> same error, again referencing /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0
note: keeping build directory `/tmp/guix-build-puzzledb-frontend-20190625-git.drv-1’

My concrete packaging setup is a bit more complicated. I’m working with elm, and
faking the build directory as the home directory. The error message mentioned above
is

> The binary data at
> /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0/.elm/0.19.0/package/versions.dat
> is corrupt.

Elm caches build artifacts in the following directories:

    /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0/.elm
    elm-stuff/

while the package definition uses the trivial build system as such:

    (arguments
     `(#:modules ((guix build utils) (build-elm) (json parser) (versions))
       #:builder
         (begin
             …
             (setenv "HOME" (getcwd))
             (setenv "HTTP_PROXY" ".”) ; break http access
             (copy-recursively (assoc-ref %build-inputs "source") "src")
             (with-directory-excursion “src"
               …
               (invoke elm "make" "--output=../all.js" "src/All.elm”)))

The path in the error above comes from $HOME — is there a chance that this gets saved
somewhere? Other parts of the build script appear to work with the -1 directory as
expected.

I’m not at all sure that my package definition is even close to correct, but as far
as I can tell, a mix-up as above should be impossible.

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

* bug#36443: suspicion
  2019-06-30 10:24 bug#36443: guix build mixes build dirs? Robert Vollmert
@ 2019-06-30 12:13 ` Robert Vollmert
  2019-06-30 17:18 ` bug#36443: guix build mixes build dirs? Mark H Weaver
  1 sibling, 0 replies; 14+ messages in thread
From: Robert Vollmert @ 2019-06-30 12:13 UTC (permalink / raw)
  To: 36443

My suspicion right now is that there’s not any real mixup
happening, but that guix-daemon runs the build in a
different environment in the directory

/tmp/derivation-name.drv-0

which gets copied to

/tmp/derivation-name.drv-5

in the root filesystem by `guix build -K`, if directories
-0, -1, …, -4 already exist. In which case I’d suggest doing
something to the messages and/or documentation to make this
clearer.

E.g. instead of saying “keeping build directory <dir>” say
“keeping a copy of the build directory at <dir>”.

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

* bug#36443: guix build mixes build dirs?
  2019-06-30 10:24 bug#36443: guix build mixes build dirs? Robert Vollmert
  2019-06-30 12:13 ` bug#36443: suspicion Robert Vollmert
@ 2019-06-30 17:18 ` Mark H Weaver
  2019-06-30 17:22   ` Robert Vollmert
  2019-06-30 17:30   ` bug#36443: guix build mixes build dirs? Mark H Weaver
  1 sibling, 2 replies; 14+ messages in thread
From: Mark H Weaver @ 2019-06-30 17:18 UTC (permalink / raw)
  To: Robert Vollmert; +Cc: 36443

Robert Vollmert <rob@vllmrt.net> writes:

> So this is pretty bizarre, and I haven’t managed to cut it down
> to a smaller example yet, but it seems pretty clear that something
> is broken:
>
> $ guix build -K some-package
> -> error, referencing /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0
> note: keeping build directory `/tmp/guix-build-puzzledb-frontend-20190625-git.drv-0’
> $ guix build -K some-package
> -> same error, again referencing /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0
> note: keeping build directory `/tmp/guix-build-puzzledb-frontend-20190625-git.drv-1’

This is known behavior, and intentional.  The build is done within a
container, and the directory name within the container is canonicalized.

     Regards,
       Mark

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

* bug#36443: guix build mixes build dirs?
  2019-06-30 17:18 ` bug#36443: guix build mixes build dirs? Mark H Weaver
@ 2019-06-30 17:22   ` Robert Vollmert
  2019-06-30 17:43     ` bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?) Mark H Weaver
  2019-06-30 17:30   ` bug#36443: guix build mixes build dirs? Mark H Weaver
  1 sibling, 1 reply; 14+ messages in thread
From: Robert Vollmert @ 2019-06-30 17:22 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: 36443

> On 30. Jun 2019, at 19:18, Mark H Weaver <mhw@netris.org> wrote:
> 
> Robert Vollmert <rob@vllmrt.net> writes:
> 
>> So this is pretty bizarre, and I haven’t managed to cut it down
>> to a smaller example yet, but it seems pretty clear that something
>> is broken:
>> 
>> $ guix build -K some-package
>> -> error, referencing /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0
>> note: keeping build directory `/tmp/guix-build-puzzledb-frontend-20190625-git.drv-0’
>> $ guix build -K some-package
>> -> same error, again referencing /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0
>> note: keeping build directory `/tmp/guix-build-puzzledb-frontend-20190625-git.drv-1’
> 
> This is known behavior, and intentional.  The build is done within a
> container, and the directory name within the container is canonicalized.

Thanks for clarifying. Do you have an idea how to make this less confusing?

In my follow-up to the bug report I suggested

> E.g. instead of saying “keeping build directory <dir>” say
> “Keeping a copy of the build directory at <dir>”.

But I feel that might be improved upon. “Copied build directory to …”?
What do you think?

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

* bug#36443: guix build mixes build dirs?
  2019-06-30 17:18 ` bug#36443: guix build mixes build dirs? Mark H Weaver
  2019-06-30 17:22   ` Robert Vollmert
@ 2019-06-30 17:30   ` Mark H Weaver
  1 sibling, 0 replies; 14+ messages in thread
From: Mark H Weaver @ 2019-06-30 17:30 UTC (permalink / raw)
  To: Robert Vollmert; +Cc: 36443

Mark H Weaver <mhw@netris.org> writes:

> Robert Vollmert <rob@vllmrt.net> writes:
>
>> So this is pretty bizarre, and I haven’t managed to cut it down
>> to a smaller example yet, but it seems pretty clear that something
>> is broken:
>>
>> $ guix build -K some-package
>> -> error, referencing /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0
>> note: keeping build directory `/tmp/guix-build-puzzledb-frontend-20190625-git.drv-0’
>> $ guix build -K some-package
>> -> same error, again referencing /tmp/guix-build-puzzledb-frontend-20190625-git.drv-0
>> note: keeping build directory `/tmp/guix-build-puzzledb-frontend-20190625-git.drv-1’
>
> This is known behavior, and intentional.  The build is done within a
> container, and the directory name within the container is canonicalized.

FYI, here's the relevant commit that added this behavior:

--8<---------------cut here---------------start------------->8---
commit cb9601029ea164b86bdf997f7160d494c15d344b
Author: Eelco Dolstra <eelco.dolstra@logicblox.com>
Date:   Wed Dec 2 14:59:07 2015 +0100

    daemon: Use deterministic $TMPDIR in chroot.
    
    Rather than using $<host-TMPDIR>/nix-build-<drvname>-<number>, the
    temporary directory is now always /tmp/nix-build-<drvname>-0. This
    improves bitwise-exact reproducibility for builds that store $TMPDIR
    in their build output. (Of course, those should still be fixed...)
    
    * nix/libstore/build.cc (DerivationGoal)[tmpDirInSandbox]: New field.
    (DerivationGoal::startBuilder): Initialize 'useChroot' earlier.  Compute
    'tmpDirInSandbox', and use it when populating 'dirsInChroot'.
    * doc/guix.texi (Build Environment Setup): Document it.
    
    Co-authored-by: Ludovic Courtès <ludo@gnu.org>
--8<---------------cut here---------------end--------------->8---

       Mark

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

* bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?)
  2019-06-30 17:22   ` Robert Vollmert
@ 2019-06-30 17:43     ` Mark H Weaver
  2019-06-30 17:47       ` Robert Vollmert
  0 siblings, 1 reply; 14+ messages in thread
From: Mark H Weaver @ 2019-06-30 17:43 UTC (permalink / raw)
  To: Robert Vollmert; +Cc: 36443

retitle 36443 Canonicalized build directory name in container leads to confusion
thanks

Hi Robert,

Robert Vollmert <rob@vllmrt.net> writes:
> Thanks for clarifying. Do you have an idea how to make this less confusing?
>
> In my follow-up to the bug report I suggested
>
>> E.g. instead of saying “keeping build directory <dir>” say
>> “Keeping a copy of the build directory at <dir>”.
>
> But I feel that might be improved upon. “Copied build directory to …”?
> What do you think?

The directory is not copied.  It is the same directory, but with a
different name in the build container's namespace.  You can see this by
examining the contents of the directory while the build is in progress.

I agree that it would be good to eliminate this potential source of
confusion, but it's not yet clear to me how to do it.

Any other ideas?

     Regards,
       Mark

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

* bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?)
  2019-06-30 17:43     ` bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?) Mark H Weaver
@ 2019-06-30 17:47       ` Robert Vollmert
  2019-06-30 17:59         ` Mark H Weaver
  0 siblings, 1 reply; 14+ messages in thread
From: Robert Vollmert @ 2019-06-30 17:47 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: 36443

Hi Mark,

> On 30. Jun 2019, at 19:43, Mark H Weaver <mhw@netris.org> wrote:
> 
> retitle 36443 Canonicalized build directory name in container leads to confusion
> thanks
> 
> Hi Robert,
> 
> Robert Vollmert <rob@vllmrt.net> writes:
>> Thanks for clarifying. Do you have an idea how to make this less confusing?
>> 
>> In my follow-up to the bug report I suggested
>> 
>>> E.g. instead of saying “keeping build directory <dir>” say
>>> “Keeping a copy of the build directory at <dir>”.
>> 
>> But I feel that might be improved upon. “Copied build directory to …”?
>> What do you think?
> 
> The directory is not copied.  It is the same directory, but with a
> different name in the build container's namespace.  You can see this by
> examining the contents of the directory while the build is in progress.
> 
> I agree that it would be good to eliminate this potential source of
> confusion, but it's not yet clear to me how to do it.
> 
> Any other ideas?

I see, thanks for clarifying.

How about dropping the “-0” suffix inside the container? The major part
of my confusion was that the directory “-0” actually existed in /tmp
from a previous failed build; this change might avoid that.

Cheers
Robert

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

* bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?)
  2019-06-30 17:47       ` Robert Vollmert
@ 2019-06-30 17:59         ` Mark H Weaver
  2019-07-02 13:37           ` Ludovic Courtès
  0 siblings, 1 reply; 14+ messages in thread
From: Mark H Weaver @ 2019-06-30 17:59 UTC (permalink / raw)
  To: Robert Vollmert; +Cc: 36443

Hi Robert,

Robert Vollmert <rob@vllmrt.net> writes:
> How about dropping the “-0” suffix inside the container? The major part
> of my confusion was that the directory “-0” actually existed in /tmp
> from a previous failed build; this change might avoid that.

Sounds good to me.  I think that would clearly be an improvement.
See below for an (untested but trivial) patch to make this change.

Ludovic, what do you think?  See <https://bugs.gnu.org/36443> for
context.

     Thanks,
       Mark

--8<---------------cut here---------------start------------->8---
diff --git a/nix/libstore/build.cc b/nix/libstore/build.cc
index fe7bf79069..a73f79eed5 100644
--- a/nix/libstore/build.cc
+++ b/nix/libstore/build.cc
@@ -1726,7 +1726,7 @@ void DerivationGoal::startBuilder()
 
     /* In a sandbox, for determinism, always use the same temporary
        directory. */
-    tmpDirInSandbox = useChroot ? canonPath("/tmp", true) + "/guix-build-" + drvName + "-0" : tmpDir;
+    tmpDirInSandbox = useChroot ? canonPath("/tmp", true) + "/guix-build-" + drvName : tmpDir;
 
     /* For convenience, set an environment pointing to the top build
        directory. */
--8<---------------cut here---------------end--------------->8---

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

* bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?)
  2019-06-30 17:59         ` Mark H Weaver
@ 2019-07-02 13:37           ` Ludovic Courtès
  2019-07-02 13:41             ` Robert Vollmert
  2019-07-03  3:48             ` Mark H Weaver
  0 siblings, 2 replies; 14+ messages in thread
From: Ludovic Courtès @ 2019-07-02 13:37 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: 36443, Robert Vollmert

Hello,

Mark H Weaver <mhw@netris.org> skribis:

> Robert Vollmert <rob@vllmrt.net> writes:
>> How about dropping the “-0” suffix inside the container? The major part
>> of my confusion was that the directory “-0” actually existed in /tmp
>> from a previous failed build; this change might avoid that.

Bah, I see.

> Sounds good to me.  I think that would clearly be an improvement.
> See below for an (untested but trivial) patch to make this change.
>
> Ludovic, what do you think?  See <https://bugs.gnu.org/36443> for
> context.

[...]

>      /* In a sandbox, for determinism, always use the same temporary
>         directory. */
> -    tmpDirInSandbox = useChroot ? canonPath("/tmp", true) + "/guix-build-" + drvName + "-0" : tmpDir;
> +    tmpDirInSandbox = useChroot ? canonPath("/tmp", true) + "/guix-build-" + drvName : tmpDir;

The result would be that the temporary directory would always have a
different name inside and outside the container.  Consequently,
debugging along the lines of what the manual suggests (info "(guix)
Debugging Build Failures") would become pretty much impossible.

Thus, I’m in favor of the status quo.

Thoughts?

Ludo’.

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

* bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?)
  2019-07-02 13:37           ` Ludovic Courtès
@ 2019-07-02 13:41             ` Robert Vollmert
  2019-07-04  7:59               ` Ludovic Courtès
  2019-07-03  3:48             ` Mark H Weaver
  1 sibling, 1 reply; 14+ messages in thread
From: Robert Vollmert @ 2019-07-02 13:41 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 36443



> On 2. Jul 2019, at 15:37, Ludovic Courtès <ludo@gnu.org> wrote:
> 
>>     /* In a sandbox, for determinism, always use the same temporary
>>        directory. */
>> -    tmpDirInSandbox = useChroot ? canonPath("/tmp", true) + "/guix-build-" + drvName + "-0" : tmpDir;
>> +    tmpDirInSandbox = useChroot ? canonPath("/tmp", true) + "/guix-build-" + drvName : tmpDir;
> 
> The result would be that the temporary directory would always have a
> different name inside and outside the container.  Consequently,
> debugging along the lines of what the manual suggests (info "(guix)
> Debugging Build Failures") would become pretty much impossible.

Why do you think it would become impossible?

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

* bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?)
  2019-07-02 13:37           ` Ludovic Courtès
  2019-07-02 13:41             ` Robert Vollmert
@ 2019-07-03  3:48             ` Mark H Weaver
  1 sibling, 0 replies; 14+ messages in thread
From: Mark H Weaver @ 2019-07-03  3:48 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 36443, Robert Vollmert

Hi Ludovic,

Ludovic Courtès <ludo@gnu.org> wrote:
> The result would be that the temporary directory would always have a
> different name inside and outside the container.  Consequently,
> debugging along the lines of what the manual suggests (info "(guix)
> Debugging Build Failures") would become pretty much impossible.

It's a good point, but I think "pretty much impossible" is an
exaggeration, because you can simply rename the failed build directory
from /tmp/guix-build-*.drv-0 to /tmp/guix-build-*.drv before debugging.

However, it's true that this would be a slightly annoying extra step
that is currently not required in the common case.

> Thus, I'm in favor of the status quo.

I don't feel strongly either way.  At first it seemed like a clear
improvement, but now I'm unsure.

     Thanks,
       Mark

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

* bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?)
  2019-07-02 13:41             ` Robert Vollmert
@ 2019-07-04  7:59               ` Ludovic Courtès
  2019-07-04  8:04                 ` Robert Vollmert
  0 siblings, 1 reply; 14+ messages in thread
From: Ludovic Courtès @ 2019-07-04  7:59 UTC (permalink / raw)
  To: Robert Vollmert; +Cc: 36443

Hi,

Robert Vollmert <rob@vllmrt.net> skribis:

>> On 2. Jul 2019, at 15:37, Ludovic Courtès <ludo@gnu.org> wrote:
>> 
>>>     /* In a sandbox, for determinism, always use the same temporary
>>>        directory. */
>>> -    tmpDirInSandbox = useChroot ? canonPath("/tmp", true) + "/guix-build-" + drvName + "-0" : tmpDir;
>>> +    tmpDirInSandbox = useChroot ? canonPath("/tmp", true) + "/guix-build-" + drvName : tmpDir;
>> 
>> The result would be that the temporary directory would always have a
>> different name inside and outside the container.  Consequently,
>> debugging along the lines of what the manual suggests (info "(guix)
>> Debugging Build Failures") would become pretty much impossible.
>
> Why do you think it would become impossible?

“Impossible” is an exaggeration, but when you source the
‘environment-variables’ file, for example, PWD and other variables will
refer to /tmp/guix-build-….drv, which won’t exist.  Likewise, generated
files such as Makefiles would have captured the ….drv name.

Like Mark writes, it’s not the end of the world: you can simply rename
/tmp/guix-build-….drv-0 to /tmp/guix-build-….drv.  However, it means
that things would be inconvenient by default, which doesn’t sound great
to me.

WDYT?

Thanks,
Ludo’.

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

* bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?)
  2019-07-04  7:59               ` Ludovic Courtès
@ 2019-07-04  8:04                 ` Robert Vollmert
  2019-07-04 15:12                   ` Ludovic Courtès
  0 siblings, 1 reply; 14+ messages in thread
From: Robert Vollmert @ 2019-07-04  8:04 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 36443



> On 4. Jul 2019, at 09:59, Ludovic Courtès <ludo@gnu.org> wrote:
> 
> Hi,
> 
> “Impossible” is an exaggeration, but when you source the
> ‘environment-variables’ file, for example, PWD and other variables will
> refer to /tmp/guix-build-….drv, which won’t exist.  Likewise, generated
> files such as Makefiles would have captured the ….drv name.

But, wait, won’t they refer to /tmp/guix-build-0.drv? So debugging a build
from /tmp/guix-build-1.drv will use a mix of both directories?

> Like Mark writes, it’s not the end of the world: you can simply rename
> /tmp/guix-build-….drv-0 to /tmp/guix-build-….drv.  However, it means
> that things would be inconvenient by default, which doesn’t sound great
> to me.
> 
> WDYT?

I don't particularly care anymore. I think it’s a confusing mess, but for
myself I’ve learnt this wart and won’t run into the problem anymore.

Cheers
Robert

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

* bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?)
  2019-07-04  8:04                 ` Robert Vollmert
@ 2019-07-04 15:12                   ` Ludovic Courtès
  0 siblings, 0 replies; 14+ messages in thread
From: Ludovic Courtès @ 2019-07-04 15:12 UTC (permalink / raw)
  To: Robert Vollmert; +Cc: 36443-done

Hello,

Robert Vollmert <rob@vllmrt.net> skribis:

>> On 4. Jul 2019, at 09:59, Ludovic Courtès <ludo@gnu.org> wrote:
>> 
>> Hi,
>> 
>> “Impossible” is an exaggeration, but when you source the
>> ‘environment-variables’ file, for example, PWD and other variables will
>> refer to /tmp/guix-build-….drv, which won’t exist.  Likewise, generated
>> files such as Makefiles would have captured the ….drv name.
>
> But, wait, won’t they refer to /tmp/guix-build-0.drv? So debugging a build
> from /tmp/guix-build-1.drv will use a mix of both directories?

As the manual explains, the name inside the container is fixed, it’s
always .drv-0; the name outside may vary to avoid naming collisions or
as a consequence of setting TMPDIR.

>> Like Mark writes, it’s not the end of the world: you can simply rename
>> /tmp/guix-build-….drv-0 to /tmp/guix-build-….drv.  However, it means
>> that things would be inconvenient by default, which doesn’t sound great
>> to me.
>> 
>> WDYT?
>
> I don't particularly care anymore. I think it’s a confusing mess, but for
> myself I’ve learnt this wart and won’t run into the problem anymore.

I understand this has been a confusing experience, but I can’t really
think of any other sensible way to approach it.

Anyway, closing it now.  Thank you!

Ludo’.

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

end of thread, other threads:[~2019-07-04 15:13 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-30 10:24 bug#36443: guix build mixes build dirs? Robert Vollmert
2019-06-30 12:13 ` bug#36443: suspicion Robert Vollmert
2019-06-30 17:18 ` bug#36443: guix build mixes build dirs? Mark H Weaver
2019-06-30 17:22   ` Robert Vollmert
2019-06-30 17:43     ` bug#36443: Canonicalized build directory name in container leads to confusion (was guix build mixes build dirs?) Mark H Weaver
2019-06-30 17:47       ` Robert Vollmert
2019-06-30 17:59         ` Mark H Weaver
2019-07-02 13:37           ` Ludovic Courtès
2019-07-02 13:41             ` Robert Vollmert
2019-07-04  7:59               ` Ludovic Courtès
2019-07-04  8:04                 ` Robert Vollmert
2019-07-04 15:12                   ` Ludovic Courtès
2019-07-03  3:48             ` Mark H Weaver
2019-06-30 17:30   ` bug#36443: guix build mixes build dirs? Mark H Weaver

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).