1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21 22# 23# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# ident "%Z%%M% %I% %E% SMI" 27# 28# Generic interface definition for usr/src/cmd/sgs/rtld. 29# 30# For information regarding the establishment of versioned definitions see: 31# The Linker and Libraries Manual (version 2.5 or greater) 32# This is part of the Developers Guide in the Answerbook. Specifically refer 33# to Chapter 2 under section "Defining Additional Symbols" through section 34# "Reducing Symbol Scope", and Chapter 5 "Versioning". 35# 36# For specific OSNET rules for the modification (evolution) of these version 37# definitions see: 38# Policy for Shared Library Version Names and Interface Definitions 39# 40# All symbols in ld.so.1 are private as no-one should bind to these directly. 41 42SUNWprivate_1.2 { 43 global: 44 _dladdr; # Standard dlopen(3x) family 45 dladdr; 46 _dladdr1; 47 dladdr1; 48 _dldump; 49 dldump; 50 _dlclose; 51 dlclose; 52 _dlerror; 53 dlerror; 54 _dlinfo; 55 dlinfo; 56 _dlopen; 57 dlopen; 58 _dlmopen; 59 dlmopen; 60 _dlsym; 61 dlsym; 62 63 _ld_libc; # provides libc initialization 64 65 _elf_rtbndr; # dbx expects to find these 66 elf_rtbndr; 67 _rt_boot; # Provides basic adb symbol offsets 68 69 rtld_db_dlactivity; # Required to support librtld_db 70 rtld_db_preinit; 71 rtld_db_postinit; 72 r_debug; 73 74 elf_plt_write; 75 is_so_loaded; 76 lml_main; 77 lookup_sym; 78 79 dbg_desc; # Diagnostic support 80 dbg_print; 81 eprintf; # Error message printing 82 83 _dgettext; # Messaging support 84 strerror; 85 86 calloc; # Memory management (mapmalloc). 87 dz_fd; 88 free; 89 malloc; 90 realloc; 91 92 _environ; # PLT tracing getenv() support. 93 environ; 94 95 _open; # Some routines are useful for support 96 _close; # libraries such as liblddbg (this 97 memcpy; # reduces the cost of debugging as the 98 snprintf; # library doesn't have its own 99 sprintf; # dependency on libc). 100 strcat; 101 strcmp; 102 strcpy; # Note that some of these functions 103 strlen; # (like sprintf) may have reduced 104 strrchr; # functionality over libc, as a simpler 105 strtok_r; # implementation is provided in ld.so.1. 106 _write; 107 ___errno; 108 qsort; 109 local: 110 *; 111}; 112