mapfile-vers revision 1007fd6fd24227460e77ce89f5ca85641a85a576
98N/A#
98N/A# CDDL HEADER START
199N/A#
98N/A# The contents of this file are subject to the terms of the
606N/A# Common Development and Distribution License (the "License").
98N/A# You may not use this file except in compliance with the License.
98N/A#
98N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
98N/A# or http://www.opensolaris.org/os/licensing.
98N/A# See the License for the specific language governing permissions
98N/A# and limitations under the License.
98N/A#
98N/A# When distributing Covered Code, include this CDDL HEADER in each
98N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
98N/A# If applicable, add the following below this CDDL HEADER, with the
98N/A# fields enclosed by brackets "[]" replaced with your own identifying
98N/A# information: Portions Copyright [yyyy] [name of copyright owner]
98N/A#
98N/A# CDDL HEADER END
98N/A#
98N/A
98N/A#
98N/A# Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved.
98N/A#
98N/A# Generic interface definition for usr/src/cmd/sgs/rtld.
98N/A#
98N/A
98N/A#
98N/A# MAPFILE HEADER START
98N/A#
98N/A# WARNING: STOP NOW. DO NOT MODIFY THIS FILE.
98N/A# Object versioning must comply with the rules detailed in
814N/A#
98N/A# usr/src/lib/README.mapfiles
98N/A#
98N/A# You should not be making modifications here until you've read the most current
493N/A# copy of that file. If you need help, contact a gatekeeper for guidance.
98N/A#
98N/A# MAPFILE HEADER END
814N/A#
98N/A
98N/A$mapfile_version 2
567N/A
720N/A#
814N/A# All symbols in ld.so.1 are private as no-one should bind to these directly.
98N/A#
98N/ASYMBOL_VERSION SUNWprivate_1.3 {
98N/A protected:
493N/A dladdr; # Standard dlopen(3x) family
493N/A dladdr1;
98N/A dldump;
705N/A dlclose;
705N/A dlerror;
705N/A dlinfo;
705N/A dlopen;
606N/A dlmopen;
606N/A dlsym;
98N/A
98N/A _dladdr; # these should not exist
493N/A _dladdr1;
493N/A _dldump;
493N/A _dlclose;
98N/A _dlerror;
427N/A _dlinfo;
493N/A _dlopen;
493N/A _dlmopen;
98N/A _dlsym;
98N/A
199N/A _ld_libc; # provides libc initialization
199N/A
493N/A _elf_rtbndr; # dbx expects to find these
493N/A elf_rtbndr;
493N/A _rt_boot; # Provides basic adb symbol offsets
98N/A
98N/A rtld_db_dlactivity; # Required to support librtld_db
98N/A rtld_db_preinit;
199N/A rtld_db_postinit;
r_debug;
elf_plt_write;
is_so_loaded;
lml_main;
lookup_sym;
alist_append; # librtld support
ld_entry_cnt;
dbg_desc; # Diagnostic support
dbg_print;
eprintf; # Error message printing
veprintf;
dgettext; # Messaging support
strerror;
calloc; # Memory management (mapmalloc).
free;
malloc;
realloc;
_environ; # PLT tracing getenv() support.
environ;
memcpy; # Some routines are useful for support
snprintf; # libraries such as liblddbg.
sprintf; # Note that some of these functions
strcat; # (like sprintf) may have reduced
strcmp; # functionality over libc, as a simpler
strcpy; # implementation is provided in ld.so.1.
strlen;
strrchr;
strtok_r;
___errno;
qsort;
dl_iterate_phdr;
$if _x86 && _ELF64
# amd64 ABI exception unwinding
_dlamd64getunwind;
dlamd64getunwind;
$endif
# doXX_reloc_rtld and relocXX_table are required to
# support librtld.so.
$if _ELF32
do32_reloc_rtld;
reloc32_table;
$elif _ELF64
do64_reloc_rtld;
reloc64_table;
$else
$error unknown ELFCLASS
$endif
local:
*;
};