GNU bug report logs - #69436
confused by changing absolute pathname

Previous Next

Package: guile;

Reported by: Zefram <zefram <at> fysh.org>

Date: Tue, 27 Feb 2024 20:26:02 UTC

Severity: normal

To reply to this bug, email your comments to 69436 AT debbugs.gnu.org.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guile <at> gnu.org:
bug#69436; Package guile. (Tue, 27 Feb 2024 20:26:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Zefram <zefram <at> fysh.org>:
New bug report received and forwarded. Copy sent to bug-guile <at> gnu.org. (Tue, 27 Feb 2024 20:26:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Zefram <zefram <at> fysh.org>
To: bug-guile <at> gnu.org
Subject: confused by changing absolute pathname
Date: Tue, 27 Feb 2024 20:25:05 +0000
The guile(1) command-line interface is documented to take the filename
of a script to execute.  Here's how well it resolves filenames (testing
on Guile 3.0.5):

$ mkdir a
$ cd a
$ echo '(display "ok") (newline)' > ok.scm
$ perl -e 'chdir ".."; while(1) { rename("a", "b"); rename("b", "a"); }' &
[1] 389562
$ guile --no-auto-compile ok.scm
ok
$ guile --no-auto-compile ok.scm
Backtrace:
           0 (primitive-load "/home/zefram/tmp/g0/b/ok.scm")

ERROR: In procedure primitive-load:
In procedure open-file: No such file or directory: "/home/zefram/tmp/g0/b/ok.scm"
$ guile --no-auto-compile ok.scm
Backtrace:
           0 (primitive-load "/home/zefram/tmp/g0/a/ok.scm")

ERROR: In procedure primitive-load:
In procedure open-file: No such file or directory: "/home/zefram/tmp/g0/a/ok.scm"
$ guile --no-auto-compile ok.scm
;;; Stat of /home/zefram/tmp/g0/b/ok.scm failed:
;;; In procedure stat: No such file or directory: "/home/zefram/tmp/g0/b/ok.scm"
ok
$ guile --no-auto-compile ok.scm
ok

Each time that I invoked guile(1), the filename "ok.scm" given on the
command line unambiguously referred to an extant script file in the
current directory.  Some invocations successfully ran it, but others
got confused.  The confused invocations either entirely fail to run the
script, or produce some extra stderr noise and then run the script.

guile(1) is getting confused because the absolute pathname of the
current directory is changing.  It works out an absolute pathname for
the specified script, and then tries to use that at a time when it may
be stale.  The manifestation of the bug varies from run to run because
it is subject to this race condition.

I use the --no-auto-compile option in my example in order to avoid the
extra noise of guile's caching system.  If caching is allowed to occur
then similar results ensue, but there's extra stderr noise that doesn't
indicate a real problem, and the situation is semantically a bit more
complicated because of the caching.

guile(1) shouldn't need to use an absolute pathname for the script file.
The name given on the command line should be used; relative pathnames
should work.

Debian incarnations of this bug report (two of them because two versions
of Guile are packaged separately):
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064443
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064446

-zefram




This bug report was last modified 66 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.