Bash, Fork mit CLOEXEC

Bash, Fork mit CLOEXEC

Kann Bash einen Unterprozess ausführen und gleichzeitig verhindern, dass ein Unterprozess einen Dateideskriptor erbt?

if flock -nx 9
then
  # If begin program runs away, it will keep the lock.
  begin program
else
  echo "Lock held :/)" >&2
fi 9> /tmp/lk

Antwort1

Soweit ich weiß, nein. Du musst es manuell schließen:

if flock 9 -nx
then
   program 9>&- #<= manual close of fd 9 after `program` has forked but before it execs
else
  echo "Lock held :/)" >&2
fi 9> /tmp/lk

Wenn Sie es noch raffinierter angehen möchten, können Sie das Flag setzen, indem Sie die fcntlFunktion direkt überctypes.sh:

#!/bin/bash

echo initial
ls /proc/$$/fd/

echo with 9
{

ls /proc/$$/fd/

echo with 9 in an execced child
bash -c ' ls /proc/$$/fd/'

} 9</etc/passwd


echo
echo BEGIN MAGIC
FD_CLOEXEC=1
FD_SETFD=2

. ctypes.sh
echo initial
ls /proc/$$/fd/

echo with 9
{

dlcall fcntl int:9 int:$FD_SETFD int:$FD_CLOEXEC

ls /proc/$$/fd/

echo with 9 in an execced child
bash -c ' ls /proc/$$/fd/'

} 9</etc/passwd

Ausgabe:

initial
0
1
2
255
with 9
0
1
2
255
9
with 9 in an execced child
0
1
2
3
9

BEGIN MAGIC
initial
0
1
2
255
with 9
0
1
2
255
9
with 9 in an execced child
0
1
2
3

(Kein Tippfehler beim Einfügen – die 9 wurde tatsächlich geschlossen, als die untergeordnete Bash ausgeführt wurde).

Antwort2

Mit Bash 5.0+ und den Beispiel-ladbaren Modulen (Debian erfordert, dass Sie das bash-builtinsPaket auch installieren) können Sie das ladbare Modul fdflags verwenden.

if flock -nx 9
then
  enable -f /usr/lib/bash/fdflags fdflags
  fdflags -s+cloexec 9
  begin program
else
  echo "Lock held :/)" >&2
fi 9> /tmp/lk

verwandte Informationen