This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] nptl: Fix deadlock on atfork handler which calls dlclose (BZ#24595)


* Adhemerval Zanella:

> The solution sounds correct, but I don't have a strong opinion if this
> is really an improvement over a recursive lock plus a linked list.  It 
> potentially adds 'free' calls in fork for multithread mode if list needs 
> to be deallocated. Also, since the locks is internal to register-atfork.c
> we might have a better control to make the exported interfaces not 
> deadlock.

Recursive locks do not prevent deadlocks if the callback launches
threads.  I'm not sure if this can be considered a stretch.  If
there's dlclose involved, their might also be dlopen, and threads
launched from an ELF constructor and so on.

Furthermore, I'm not sure if the implementation of __unregister_atfork
is correct.  I think you have a potential use-after-free issue if the
callback deregisters a fork handler.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]