* npm has irreproducible install behavior
@ 2023-07-07 5:47 Ricardo Wurmus
2023-07-07 12:38 ` Jelle Licht
0 siblings, 1 reply; 4+ messages in thread
From: Ricardo Wurmus @ 2023-07-07 5:47 UTC (permalink / raw)
To: guix-devel; +Cc: Jelle Licht
Hi Guix,
after a few days of frustrating investigation I found a bug in one of
the libraries used by npm:
https://github.com/npm/pacote/issues/285
The result is that “npm install” will not install *all* files dependent
on whether a file is deduplicated in the store. This causes
irreproducible output and build failures down the line on different
systems depending on the state of the file system.
We should patch this ourselves. We can either tell node-tar not to mark
up hardlinks with the “Link” type, or we can patch pacote to not skip
files that have the “Link” type.
I’ve tested this little addition to the build phases of node-lts on an
affected system:
--8<---------------cut here---------------start------------->8---
(add-after 'install 'do-not-ignore-links
(lambda* (#:key outputs #:allow-other-keys)
(with-directory-excursion
(string-append (assoc-ref outputs "out")
"/lib/node_modules/npm/node_modules")
(substitute* "pacote/lib/fetcher.js"
(("\\/Link\\$\\/.test\\(entry.type\\)") "false")
(("\\/File\\$\\/.test\\(entry.type\\)")
"/(File|Link)$/.test(entry.type)"))
--8<---------------cut here---------------end--------------->8---
What do you think?
--
Ricardo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: npm has irreproducible install behavior
2023-07-07 5:47 npm has irreproducible install behavior Ricardo Wurmus
@ 2023-07-07 12:38 ` Jelle Licht
2023-07-13 6:48 ` Ricardo Wurmus
0 siblings, 1 reply; 4+ messages in thread
From: Jelle Licht @ 2023-07-07 12:38 UTC (permalink / raw)
To: Ricardo Wurmus, guix-devel
Hi Ricardo,
Ricardo Wurmus <rekado@elephly.net> writes:
> Hi Guix,
>
> after a few days of frustrating investigation I found a bug in one of
> the libraries used by npm:
>
> https://github.com/npm/pacote/issues/285
Props on finding the root cause, I hope it didn't cost you much sanity :).
> The result is that “npm install” will not install *all* files dependent
> on whether a file is deduplicated in the store. This causes
> irreproducible output and build failures down the line on different
> systems depending on the state of the file system.
>
> We should patch this ourselves. We can either tell node-tar not to mark
> up hardlinks with the “Link” type, or we can patch pacote to not skip
> files that have the “Link” type.
The first option makes more sense to me at first glance. Wouldn't the
proposed solution change behavior w.r.t. softlinks as well? OTOH,
deciding where to address this particular issue and which color the
bikeshed should be seems like a job for upstream to figure out.
> I’ve tested this little addition to the build phases of node-lts on an
> affected system:
>
> --8<---------------cut here---------------start------------->8---
> (add-after 'install 'do-not-ignore-links
> (lambda* (#:key outputs #:allow-other-keys)
> (with-directory-excursion
> (string-append (assoc-ref outputs "out")
> "/lib/node_modules/npm/node_modules")
> (substitute* "pacote/lib/fetcher.js"
> (("\\/Link\\$\\/.test\\(entry.type\\)") "false")
> (("\\/File\\$\\/.test\\(entry.type\\)")
> "/(File|Link)$/.test(entry.type)"))
> --8<---------------cut here---------------end--------------->8---
The proposed change seems fine to me, provided our QA shows a pretty
green button at some point. Could you send a patch that also includes a
comment referencing the upstream bug report?
Thanks,
- Jelle
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: npm has irreproducible install behavior
2023-07-07 12:38 ` Jelle Licht
@ 2023-07-13 6:48 ` Ricardo Wurmus
2023-07-13 8:41 ` Ricardo Wurmus
0 siblings, 1 reply; 4+ messages in thread
From: Ricardo Wurmus @ 2023-07-13 6:48 UTC (permalink / raw)
To: Jelle Licht; +Cc: guix-devel
Hi Jelle,
>> I’ve tested this little addition to the build phases of node-lts on an
>> affected system:
>>
>> --8<---------------cut here---------------start------------->8---
>> (add-after 'install 'do-not-ignore-links
>> (lambda* (#:key outputs #:allow-other-keys)
>> (with-directory-excursion
>> (string-append (assoc-ref outputs "out")
>> "/lib/node_modules/npm/node_modules")
>> (substitute* "pacote/lib/fetcher.js"
>> (("\\/Link\\$\\/.test\\(entry.type\\)") "false")
>> (("\\/File\\$\\/.test\\(entry.type\\)")
>> "/(File|Link)$/.test(entry.type)"))
>> --8<---------------cut here---------------end--------------->8---
>
> The proposed change seems fine to me, provided our QA shows a pretty
> green button at some point. Could you send a patch that also includes a
> comment referencing the upstream bug report?
I changed it to patch node-tar instead, because the patch to fetcher.js
would cause *some* files to be copied to the wrong location.
I’ll send the updated patch to guix-patches today.
--
Ricardo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: npm has irreproducible install behavior
2023-07-13 6:48 ` Ricardo Wurmus
@ 2023-07-13 8:41 ` Ricardo Wurmus
0 siblings, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2023-07-13 8:41 UTC (permalink / raw)
To: Jelle Licht, guix-devel
Ricardo Wurmus <rekado@elephly.net> writes:
> Hi Jelle,
>
>>> I’ve tested this little addition to the build phases of node-lts on an
>>> affected system:
>>>
>>> --8<---------------cut here---------------start------------->8---
>>> (add-after 'install 'do-not-ignore-links
>>> (lambda* (#:key outputs #:allow-other-keys)
>>> (with-directory-excursion
>>> (string-append (assoc-ref outputs "out")
>>> "/lib/node_modules/npm/node_modules")
>>> (substitute* "pacote/lib/fetcher.js"
>>> (("\\/Link\\$\\/.test\\(entry.type\\)") "false")
>>> (("\\/File\\$\\/.test\\(entry.type\\)")
>>> "/(File|Link)$/.test(entry.type)"))
>>> --8<---------------cut here---------------end--------------->8---
>>
>> The proposed change seems fine to me, provided our QA shows a pretty
>> green button at some point. Could you send a patch that also includes a
>> comment referencing the upstream bug report?
>
> I changed it to patch node-tar instead, because the patch to fetcher.js
> would cause *some* files to be copied to the wrong location.
>
> I’ll send the updated patch to guix-patches today.
Here’s the patch set:
https://issues.guix.gnu.org/64592
The first patch is to clean up the snippet while we’re at it. The
second changes the behavior of node-tar, so that files with hardlinks
are not treated any different from files without.
--
Ricardo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-07-13 8:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-07 5:47 npm has irreproducible install behavior Ricardo Wurmus
2023-07-07 12:38 ` Jelle Licht
2023-07-13 6:48 ` Ricardo Wurmus
2023-07-13 8:41 ` Ricardo Wurmus
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.