aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/gen/dlinfo.3
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2020-05-21 22:24:23 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2020-05-21 22:24:23 +0000
commitd0ca9a7fe4450aaa19ad281a9cef37f413bd9e5c (patch)
tree3157709def91a36554b53c9e0dcc29a742579887 /lib/libc/gen/dlinfo.3
parente68cde59c392635d615971c61a1fa26abcc66754 (diff)
downloadsrc-d0ca9a7fe4450aaa19ad281a9cef37f413bd9e5c.tar.gz
src-d0ca9a7fe4450aaa19ad281a9cef37f413bd9e5c.zip
Restore the binary compatibility for link_map l_addr.
Keep link_map l_addr binary layout compatible, rename l_addr to l_base where rtld returns map base. Provide relocbase in newly added l_addr. This effectively reverts the patch to the initial version of D24918. Reported by: antoine (portmgr) Reviewed by: jhb, markj Tested by: markj Sponsored by: The FreeBSD Foundation MFC after: 1 week Differential revision: https://reviews.freebsd.org/D24946
Notes
Notes: svn path=/head/; revision=361349
Diffstat (limited to 'lib/libc/gen/dlinfo.3')
-rw-r--r--lib/libc/gen/dlinfo.313
1 files changed, 8 insertions, 5 deletions
diff --git a/lib/libc/gen/dlinfo.3 b/lib/libc/gen/dlinfo.3
index 7a6551dfe9ee..a801b0bd005d 100644
--- a/lib/libc/gen/dlinfo.3
+++ b/lib/libc/gen/dlinfo.3
@@ -105,17 +105,16 @@ structure is defined in
.In link.h
and has the following members:
.Bd -literal -offset indent
-caddr_t l_addr; /* Load Offset of library */
+caddr_t l_base; /* Base Address of library */
const char *l_name; /* Absolute Path to Library */
const void *l_ld; /* Pointer to .dynamic in memory */
struct link_map *l_next, /* linked list of mapped libs */
*l_prev;
+caddr_t l_addr; /* Load Offset of library */
.Ed
.Bl -tag -width ".Va l_addr"
-.It Va l_addr
-The load offset of the object, that is, the difference between
-the actual load address and the base virtual address the object
-was linked at.
+.It Va l_base
+The base address of the object loaded into memory.
.It Va l_name
The full name of the loaded shared object.
.It Va l_ld
@@ -130,6 +129,10 @@ structure on the link-map list.
The previous
.Vt Link_map
structure on the link-map list.
+.It Va l_addr
+The load offset of the object, that is, the difference between
+the actual load address and the base virtual address the object
+was linked at.
.El
.It Dv RTLD_DI_SERINFO
Retrieve the library search paths associated with the given