[v14,7/7] NEWS for RTLD_SHARED, RTLD_ISOLATE & DT_GNU_FLAGS_1/DF_GNU_1_UNIQUE

Message ID 20211010163836.14666-8-vivek@collabora.com
State New, archived
Headers
Series Implementation of RTLD_SHARED for dlmopen |

Checks

Context Check Description
dj/TryBot-apply_patch success Patch applied to master at the time it was sent
dj/TryBot-32bit success Build for i686

Commit Message

Vivek Dasmohapatra Oct. 10, 2021, 4:38 p.m. UTC
  ---
 NEWS | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
  

Patch

diff --git a/NEWS b/NEWS
index 2e3804e4d8..e3083b6b50 100644
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,23 @@  Version 2.35
 
 Major new features:
 
+* New flag RTLD_SHARED for dlmopen. A DSO opened into a secondary
+  namespace with the RTLD_SHARED flag is opened in the default
+  namespace instead (if not present there already) and that copy is
+  shared with the target namespace.
+
+* New dynamic section DT_GNU_FLAGS_1 with a value DF_GNU_1_UNIQUE.
+  This flag indicates that the DSO marked with it should be treated
+  by dlmopen as if RTLD_SHARED had been passed.  The core libc DSOs
+  are all marked with this section and flag.
+
+  NOTE: This does not affect DSOs opened for the audit mechanism.
+
+* New flag RTLD_ISOLATE for dlmopen.  This flag suppresses the effect
+  of DT_GNU_FLAGS_1/DF_GNU_1_UNIQUE, allowing DSOs that would otherwise
+  be shared with the default namespace to be loaded as a separate copy
+  in the target namespace.
+
 * Unicode 14.0.0 Support: Character encoding, character type info, and
   transliteration tables are all updated to Unicode 14.0.0, using
   generator scripts contributed by Mike FABIAN (Red Hat).