git-readlink-fifo
authorGNU Libc Maintainers <debian-glibc@lists.debian.org>
Thu, 22 Sep 2022 20:02:00 +0000 (21:02 +0100)
committerAurelien Jarno <aurel32@debian.org>
Thu, 22 Sep 2022 20:02:00 +0000 (21:02 +0100)
commit42cc2d501243a9754ccd6c5e42d66585f9068a7f
tree938a5378ae9476a974920dacdbb48558f25f1c12
parentfbd26ab1954743b4ce890779be1da92562c0e7ff
git-readlink-fifo

commit 9e5c991106cb04b489272de0ef6a7a6bcef50477 (origin/master, origin/HEAD)
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Wed Sep 14 18:52:52 2022 +0200

    hurd: Fix readlink() hanging on fifo

    readlink() opens the target with O_READ to be able to read the symlink
    content. When the target is actually a fifo, that would hang waiting for a
    writer (caught in the coreutils testsuite). We thus have to first lookup the
    target without O_READ to perform io_stat and lookout for fifos, and only
    after checking the symlink type, we can re-lookup with O_READ.

commit 5652e12cce80825297c3e0666991deb10310343c (HEAD -> master, origin-rw/master)
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Thu Sep 15 21:53:57 2022 +0200

    hurd: Make readlink* just reopen the file used for stat

    9e5c991106cb ("hurd: Fix readlink() hanging on fifo") separated opening
    the file for the stat call from opening the file for the read call. That
    however opened a small window for the file to change. Better make this
    atomic by reopening the file with O_READ.

Gbp-Pq: Topic hurd-i386
Gbp-Pq: Name git-readlink-fifo.diff
sysdeps/mach/hurd/readlink.c
sysdeps/mach/hurd/readlinkat.c