Florian Weimer
440b7f8653
Avoid late failure in dlopen in global scope update [BZ #25112 ]
...
The call to add_to_global in dl_open_worker happens after running ELF
constructors for new objects. At this point, proper recovery from
malloc failure would be quite complicated: We would have to run the
ELF destructors and close all opened objects, something that we
currently do not do.
Instead, this change splits add_to_global into two phases,
add_to_global_resize (which can raise an exception, called before ELF
constructors run), and add_to_global_update (which cannot, called
after ELF constructors). A complication arises due to recursive
dlopen: After the inner dlopen consumes some space, the pre-allocation
in the outer dlopen may no longer be sufficient. A new member in the
namespace structure, _ns_global_scope_pending_adds keeps track of the
maximum number of objects that need to be added to the global scope.
This enables the inner add_to_global_resize call to take into account
the needs of an outer dlopen.
Most code in the dynamic linker assumes that the number of global
scope entries fits into an unsigned int (matching the r_nlist member
of struct r_scop_elem). Therefore, change the type of
_ns_global_scope_alloc to unsigned int (from size_t), and add overflow
checks.
Change-Id: Ie08e2f318510d5a6a4bcb1c315f46791b5b77524
2019-11-27 20:55:35 +01:00
..
2019-05-23 11:49:44 +02:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2006-03-01 06:18:49 +00:00
2002-07-17 00:34:35 +00:00
2002-06-30 07:17:02 +00:00
2002-07-17 00:34:35 +00:00
2002-07-17 00:34:35 +00:00
2002-07-17 00:34:35 +00:00
2002-06-30 07:17:02 +00:00
2001-01-21 17:15:50 +00:00
2000-12-17 17:50:56 +00:00
2001-09-06 01:03:05 +00:00
2001-12-21 10:16:16 +00:00
2001-12-21 10:16:16 +00:00
2001-12-21 10:16:16 +00:00
2001-09-06 01:03:05 +00:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2005-12-14 08:43:25 +00:00
2019-09-07 02:43:31 -07:00
2019-11-27 20:55:35 +01:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-11-16 15:57:01 +01:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-11-15 13:03:40 +01:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-11-15 13:03:40 +01:00
2019-09-07 02:43:31 -07:00
2019-11-12 20:11:04 +01:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-11-15 13:03:40 +01:00
2019-11-27 20:55:35 +01:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-11-21 13:31:29 +01:00
2019-11-15 13:03:40 +01:00
2005-12-14 08:43:25 +00:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-11-27 20:19:22 +01:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2005-12-14 08:43:25 +00:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2001-02-06 10:38:10 +00:00
2016-01-07 04:03:21 -05:00
2019-09-07 02:43:31 -07:00
2001-03-21 07:21:34 +00:00
2001-04-06 15:23:41 +00:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2016-12-26 10:08:41 +01:00
2009-06-03 16:21:40 -07:00
2009-06-22 15:07:40 -07:00
2009-06-22 15:07:40 -07:00
2013-06-05 20:44:03 +00:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2009-06-22 15:07:40 -07:00
2013-06-05 20:44:03 +00:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2009-10-30 00:48:54 -07:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2009-11-06 09:30:56 -08:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2009-06-03 16:21:40 -07:00
2009-10-30 00:48:54 -07:00
2009-06-22 15:07:40 -07:00
2009-06-22 15:07:40 -07:00
2009-06-22 15:07:40 -07:00
2009-06-22 15:07:40 -07:00
2009-06-22 15:07:40 -07:00
2016-12-26 10:08:41 +01:00
2016-12-26 10:08:41 +01:00
2009-06-22 15:07:40 -07:00
2009-06-22 15:07:40 -07:00
2009-06-22 15:07:40 -07:00
2009-06-22 15:07:40 -07:00
2019-09-07 02:43:31 -07:00
2019-02-28 11:52:44 +01:00
2019-02-28 11:52:44 +01:00
2019-02-28 11:52:44 +01:00
2019-02-28 11:52:44 +01:00
2016-12-26 10:08:41 +01:00
2009-10-30 00:48:54 -07:00
2016-12-26 10:08:41 +01:00
2009-06-22 15:07:40 -07:00
2001-02-02 06:54:15 +00:00
2019-09-07 02:43:31 -07:00
2004-04-21 18:58:31 +00:00
2019-09-07 02:43:31 -07:00
2019-10-15 16:41:51 +02:00
2019-09-07 02:43:31 -07:00
2017-06-27 17:52:42 +00:00
2000-12-17 17:50:56 +00:00
2019-11-27 20:55:35 +01:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2000-12-31 06:09:08 +00:00
2000-12-31 06:09:08 +00:00
2006-03-01 06:18:49 +00:00
2006-03-01 06:18:49 +00:00
2012-01-07 23:57:22 -05:00
2006-03-01 06:18:49 +00:00
2017-04-05 10:34:58 -03:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2003-01-12 07:52:53 +00:00
2003-01-12 07:52:53 +00:00
2003-01-12 07:52:53 +00:00
2003-01-12 10:11:16 +00:00
2017-04-05 10:34:58 -03:00
2000-12-17 17:50:56 +00:00
2002-02-10 22:40:17 +00:00
2002-03-03 19:43:30 +00:00
2011-02-25 20:49:48 -05:00
2017-04-05 10:34:58 -03:00
2005-03-19 08:04:37 +00:00
2005-12-27 22:50:12 +00:00
2005-03-19 08:04:37 +00:00
2005-03-19 08:04:37 +00:00
2000-12-17 17:50:56 +00:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-10-16 15:54:44 +02:00
2019-09-07 02:43:31 -07:00
2001-09-08 17:45:32 +00:00
2013-08-21 19:48:48 +02:00
2001-09-22 15:44:07 +00:00
2001-05-22 23:55:23 +00:00
2001-06-22 13:50:51 +00:00
2001-05-22 23:55:23 +00:00
2001-06-22 13:50:51 +00:00
2001-09-22 15:44:35 +00:00
2003-01-12 10:11:16 +00:00
2001-10-01 00:14:14 +00:00
2001-10-01 00:14:14 +00:00
2001-10-01 00:14:14 +00:00
2001-10-01 00:14:14 +00:00
2001-10-01 00:14:14 +00:00
2002-04-15 17:10:22 +00:00
2002-04-15 17:10:22 +00:00
2002-04-15 17:10:22 +00:00
2002-12-30 20:25:40 +00:00
2002-12-30 20:25:40 +00:00
2002-12-30 20:25:40 +00:00
2002-12-30 20:25:40 +00:00
2003-01-12 10:11:16 +00:00
2003-01-12 10:11:16 +00:00
2003-01-12 10:11:16 +00:00
2003-01-12 10:11:16 +00:00
2013-08-21 19:48:48 +02:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2001-12-21 10:16:16 +00:00
2001-12-21 10:16:16 +00:00
2001-05-22 22:30:18 +00:00
2012-07-27 14:03:20 +01:00
2019-09-07 02:43:31 -07:00
2019-11-15 13:03:40 +01:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2010-12-24 20:14:37 -05:00
2017-03-01 20:33:46 -05:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2005-03-06 00:08:10 +00:00
2017-06-14 10:47:25 +09:30
2013-06-05 20:44:03 +00:00
2012-07-17 11:30:58 +00:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2018-06-29 17:10:43 +01:00
2019-09-07 02:43:31 -07:00
2017-04-05 10:34:58 -03:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2005-02-14 21:25:50 +00:00
2012-11-16 07:40:38 -08:00
2002-11-07 22:28:16 +00:00
2002-11-07 22:28:16 +00:00
2002-11-07 22:28:16 +00:00
2012-11-16 07:40:38 -08:00
2002-11-07 22:28:16 +00:00
2003-01-27 21:03:22 +00:00
2003-01-27 21:03:22 +00:00
2005-07-07 23:00:02 +00:00
2005-07-07 23:00:02 +00:00
2005-07-07 23:00:02 +00:00
2005-07-07 23:00:02 +00:00
2005-07-07 23:00:02 +00:00
2005-01-06 22:40:27 +00:00
2017-04-05 10:34:58 -03:00
2012-11-14 15:44:40 -08:00
2017-04-05 10:34:58 -03:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2019-11-15 13:03:32 +01:00
2017-02-16 17:33:18 -05:00
2014-02-25 13:18:15 -05:00
2014-02-25 13:18:15 -05:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2017-04-05 10:34:58 -03:00
2004-09-23 07:45:38 +00:00
2004-09-23 07:45:38 +00:00
2004-09-23 07:45:38 +00:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2017-04-05 10:34:58 -03:00
2004-10-27 20:27:40 +00:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2019-09-07 02:43:31 -07:00
2019-10-17 08:51:21 +02:00
2019-10-17 08:51:21 +02:00
2019-10-17 08:51:21 +02:00
2019-10-17 08:51:21 +02:00
2019-10-17 08:51:21 +02:00
2019-10-17 08:51:21 +02:00
2019-10-17 08:51:21 +02:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2003-09-23 12:07:26 +00:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2019-11-27 20:55:35 +01:00
2017-04-05 10:34:58 -03:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-11-27 20:55:35 +01:00
2019-11-27 20:55:35 +01:00
2011-08-22 16:08:16 -04:00
2011-08-22 16:08:16 -04:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2012-10-20 16:16:59 -07:00
2017-12-15 20:22:29 -08:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2017-04-05 10:34:58 -03:00
2015-08-11 10:13:22 +02:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2015-07-07 11:06:56 -07:00
2015-07-07 11:06:56 -07:00
2015-07-07 11:06:56 -07:00
2017-04-05 10:34:58 -03:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2011-01-19 16:00:11 -05:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2019-09-07 02:43:31 -07:00
2004-07-16 17:56:45 +00:00
2019-09-07 02:43:31 -07:00
2017-04-05 10:34:58 -03:00
2019-09-18 12:42:39 +02:00
2019-09-07 02:43:31 -07:00
2015-11-14 12:00:38 -08:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2013-09-23 00:52:09 -04:00
2019-09-07 02:43:31 -07:00
2017-04-05 10:34:58 -03:00
2012-01-27 15:05:19 -05:00
2012-01-27 15:05:19 -05:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-06-28 10:15:38 +02:00
2019-09-07 02:43:31 -07:00
2019-06-28 10:15:38 +02:00
2019-09-07 02:43:31 -07:00
2019-06-28 10:15:38 +02:00
2005-06-26 18:14:26 +00:00
2019-09-07 02:43:31 -07:00
2017-04-05 10:34:58 -03:00
2017-09-30 01:39:32 -07:00
2002-08-28 10:42:59 +00:00
2017-04-05 10:34:58 -03:00
2002-08-28 10:42:59 +00:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2002-10-22 06:22:38 +00:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2013-10-18 19:45:36 +05:30
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2017-04-05 10:34:58 -03:00
2011-05-14 21:25:43 -04:00
2011-05-14 21:25:43 -04:00
2011-05-14 21:25:43 -04:00
2017-04-05 10:34:58 -03:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2015-06-02 16:55:36 -07:00
2019-09-07 02:43:31 -07:00
2015-05-06 13:32:18 -07:00
2015-05-06 13:32:18 -07:00
2015-06-02 16:55:36 -07:00
2019-09-07 02:43:31 -07:00
2013-10-18 19:45:36 +05:30
2013-10-18 19:45:36 +05:30
2013-10-18 19:45:36 +05:30
2013-10-18 19:45:36 +05:30
2013-10-18 19:45:36 +05:30
2013-10-18 19:45:36 +05:30
2011-09-10 14:34:15 -04:00
2011-09-10 14:34:15 -04:00
2011-09-10 14:34:15 -04:00
2003-04-17 19:19:29 +00:00
2011-09-10 14:34:15 -04:00
2011-09-10 14:34:15 -04:00
2013-10-18 19:45:36 +05:30
2013-10-18 19:45:36 +05:30
2013-10-18 19:45:36 +05:30
2003-07-24 20:07:00 +00:00
2005-03-20 22:25:59 +00:00
2011-09-10 14:34:15 -04:00
2013-10-18 19:45:36 +05:30
2013-10-18 19:45:36 +05:30
2008-10-17 15:24:10 +00:00
2008-10-17 15:24:10 +00:00
2008-10-31 20:50:16 +00:00
2017-04-05 10:34:58 -03:00
2015-10-19 22:34:20 +00:00
2015-10-19 22:34:20 +00:00
2017-04-05 10:34:58 -03:00
2015-10-19 22:34:20 +00:00
2015-10-19 22:34:20 +00:00
2012-01-25 16:50:17 +00:00
2011-03-10 12:51:33 -05:00
2012-01-25 16:50:17 +00:00
2012-01-25 16:50:17 +00:00
2012-01-25 16:50:17 +00:00
2011-05-12 21:59:09 -04:00
2014-12-16 10:26:48 +01:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2006-03-01 06:18:49 +00:00
2000-12-17 17:50:56 +00:00
2000-12-17 17:50:56 +00:00
2005-03-03 08:28:23 +00:00
2005-03-03 08:28:23 +00:00
2005-03-03 08:28:23 +00:00
2005-03-03 08:28:23 +00:00
2005-03-06 00:08:10 +00:00
2005-03-18 10:54:53 +00:00
2005-03-18 10:54:53 +00:00
2005-03-18 10:54:53 +00:00
2005-03-18 10:54:53 +00:00
2005-03-18 10:54:53 +00:00
2005-03-18 10:54:53 +00:00
2005-04-27 01:39:11 +00:00
2005-04-27 01:39:11 +00:00
2005-04-27 01:39:11 +00:00
2005-04-27 01:39:11 +00:00
2006-09-19 14:42:12 +00:00
2006-09-19 14:42:12 +00:00
2006-09-19 14:42:12 +00:00
2011-08-24 09:32:13 +02:00
2011-08-24 09:32:13 +02:00
2011-08-24 09:32:13 +02:00
2011-08-24 09:32:13 +02:00
2011-08-24 09:32:13 +02:00
2006-03-01 06:18:49 +00:00
2018-01-04 18:46:24 +01:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2019-09-07 02:43:31 -07:00
2003-03-29 03:46:03 +00:00