mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-16 01:22:18 +03:00
Because I actually managed to hit deadlock in libvirt's child process due to glibc's mutex use in user database lookup, I figured it is worth documenting the issue for others to be aware of when writing a privileged multithreaded parent app that spawns child processes owned by non-privileged ids. * doc/glibc-functions/initgroups.texi (initgroups): Mention multithread safety. * doc/posix-functions/getpwuid.texi (getpwuid): Likewise. * doc/posix-functions/getpwuid_r.texi (getpwuid_r): Likewise. * doc/glibc-functions/getgrouplist.texi (getgrouplist): Mention getugroups. * doc/posix-functions/getgroups.texi (getgroups): Mention multithread safety and mgetgroups. Signed-off-by: Eric Blake <eblake@redhat.com>
22 lines
561 B
Plaintext
22 lines
561 B
Plaintext
@node initgroups
|
|
@subsection @code{initgroups}
|
|
@findex initgroups
|
|
|
|
Gnulib module: ---
|
|
|
|
Portability problems fixed by Gnulib:
|
|
@itemize
|
|
@end itemize
|
|
|
|
Portability problems not fixed by Gnulib:
|
|
@itemize
|
|
@item
|
|
This function is unsafe to call between @code{fork} and @code{exec} if
|
|
the parent process is multi-threaded. Instead, use @code{getgroups} or
|
|
@code{getgrouplist} (or use the gnulib module @code{mgetgroups})
|
|
before forking, and @code{setgroups} in the child.
|
|
@item
|
|
This function is missing on some platforms:
|
|
mingw, MSVC 9, Interix 3.5, BeOS.
|
|
@end itemize
|