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: [PATCHv5][PING^3][BZ #17833] _dl_close_worker() does not release inconsistent objects.


Pavel Kopyl <p.kopyl@samsung.com> writes:

> @@ -152,6 +152,10 @@ _dl_close_worker (struct link_map *map)
>        l->l_idx = idx;
>        maps[idx] = l;
>        ++idx;
> +
> +      /* clear DF_1_NODELETE to force object deletion.  */
> +      if (force)
> +	l->l_flags_1 &= ~DF_1_NODELETE;

This is a very bad idea.  It can cause libpthread to be unloaded, which
will crash ld.so on the next __rtld_lock_unlock.

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."


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