GNU bug report logs -
#33564
Incorrect path canonicalisation
Previous Next
Reported by: Mattias Andrée <maandree <at> kth.se>
Date: Sat, 1 Dec 2018 20:06:02 UTC
Severity: normal
Tags: notabug
Done: Stefan Kangas <stefan <at> marxist.se>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Emacs 26.1 removes ..'s incorrectly from file names.
Emacs removes the directory in front the .. rather than
getting its parent directory.
Example:
cd
mkdir -p 1/2
cd 1/2
echo 3 > ../../3
ln -s ~ 4
echo 5 > 5
emacs 4/../5 # works, but shouldn't
emacs 4/../$USER/3 # does not works, should
On Linux, the proper way to get the canonical path
for a file with the file descriptor $fd:
stat(3) /dev/fd/$fd
p := readlink(3) /dev/fd/$fd
if (st_nlinks != 0) {
stat(3) /dev/fd/$fd
if (st_nlinks == 0) {
p := readlink(3) /dev/fd/$fd
remove " (deleted)" from the end of p
}
} else {
remove " (deleted)" from the end of p
}
canonical path is p
This bug report was last modified 5 years and 279 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.