1*75ce41a5SAli Bahrami# 2*75ce41a5SAli Bahrami# CDDL HEADER START 3*75ce41a5SAli Bahrami# 4*75ce41a5SAli Bahrami# The contents of this file are subject to the terms of the 5*75ce41a5SAli Bahrami# Common Development and Distribution License (the "License"). 6*75ce41a5SAli Bahrami# You may not use this file except in compliance with the License. 7*75ce41a5SAli Bahrami# 8*75ce41a5SAli Bahrami# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*75ce41a5SAli Bahrami# or http://www.opensolaris.org/os/licensing. 10*75ce41a5SAli Bahrami# See the License for the specific language governing permissions 11*75ce41a5SAli Bahrami# and limitations under the License. 12*75ce41a5SAli Bahrami# 13*75ce41a5SAli Bahrami# When distributing Covered Code, include this CDDL HEADER in each 14*75ce41a5SAli Bahrami# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*75ce41a5SAli Bahrami# If applicable, add the following below this CDDL HEADER, with the 16*75ce41a5SAli Bahrami# fields enclosed by brackets "[]" replaced with your own identifying 17*75ce41a5SAli Bahrami# information: Portions Copyright [yyyy] [name of copyright owner] 18*75ce41a5SAli Bahrami# 19*75ce41a5SAli Bahrami# CDDL HEADER END 20*75ce41a5SAli Bahrami# 21*75ce41a5SAli Bahrami 22*75ce41a5SAli Bahrami# 23*75ce41a5SAli Bahrami# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24*75ce41a5SAli Bahrami# Use is subject to license terms. 25*75ce41a5SAli Bahrami# 26*75ce41a5SAli Bahrami 27*75ce41a5SAli Bahrami# This file provides exceptions to the usual rules applied to sharable 28*75ce41a5SAli Bahrami# objects by intf_cmp. All strings are Perl regular expressions that 29*75ce41a5SAli Bahrami# are compared to file, version, and symbol names. In addition to the 30*75ce41a5SAli Bahrami# standard Perl syntax, there is one extension: 31*75ce41a5SAli Bahrami# 32*75ce41a5SAli Bahrami# MACH(dir) 33*75ce41a5SAli Bahrami# 34*75ce41a5SAli Bahrami# is expanded into a regular expression that matches the given 35*75ce41a5SAli Bahrami# directory, or a 64-bit subdirectory of the directory with the 36*75ce41a5SAli Bahrami# name of a 64-bit architecture. For example, MACH(lib) will match 37*75ce41a5SAli Bahrami# any of the following: 38*75ce41a5SAli Bahrami# 39*75ce41a5SAli Bahrami# lib 40*75ce41a5SAli Bahrami# lib/amd64 41*75ce41a5SAli Bahrami# lib/sparcv9 42*75ce41a5SAli Bahrami# 43*75ce41a5SAli Bahrami 44*75ce41a5SAli Bahrami 45*75ce41a5SAli Bahrami## libbsm 46*75ce41a5SAli Bahrami# 47*75ce41a5SAli Bahrami# - Removed interfaces: setauclassfile, setaueventfile setauuserfile testac 48*75ce41a5SAli Bahrami# 4686423 undocumented interfaces are not used 49*75ce41a5SAli Bahrami# - Removed interfaces: auditsvc 50*75ce41a5SAli Bahrami# 6638707 implement the removal of auditsvc(2) as noted in PSARC/2002/665 51*75ce41a5SAli Bahrami# 52*75ce41a5SAli BahramiDELSYM ^(auditsvc|setauclassfile|setaueventfile|setauuserfile|testac)$ \ 53*75ce41a5SAli Bahrami ^SUNW_(0\.[7-8]|1\.[1-2])$ \ 54*75ce41a5SAli Bahrami ^MACH(lib)/libbsm\.so\.1$ 55*75ce41a5SAli Bahrami 56*75ce41a5SAli Bahrami 57*75ce41a5SAli Bahrami## libmalloc / libmapmalloc 58*75ce41a5SAli Bahrami# 59*75ce41a5SAli Bahrami# - Objects that provide malloc implementations had functions intentionally 60*75ce41a5SAli Bahrami# removed by: 61*75ce41a5SAli Bahrami# 6464344 malloc library cleanup 62*75ce41a5SAli Bahrami# PSARC 2006/477 malloc library cleanup 63*75ce41a5SAli Bahrami# 64*75ce41a5SAli BahramiDELSYM ^(_cfree|_mallinfo|_mallopt)$ \ 65*75ce41a5SAli Bahrami ^SUNW_1\.1$ \ 66*75ce41a5SAli Bahrami ^usr/MACH(lib)/libmalloc\.so\.1$ 67*75ce41a5SAli BahramiDELSYM ^(mallinfo|mallopt)$ \ 68*75ce41a5SAli Bahrami ^SUNW_(0\.7|1\.1)$ \ 69*75ce41a5SAli Bahrami ^usr/MACH(lib)/libmapmalloc\.so\.1$ 70*75ce41a5SAli BahramiDELSYM ^(_cfree|_?mallinfo|_?mallopt|_memalign|_valloc)$ \ 71*75ce41a5SAli Bahrami ^SUNW_1\.1$ \ 72*75ce41a5SAli Bahrami ^usr/MACH(lib)/watchmalloc\.so\.1$ 73*75ce41a5SAli Bahrami 74*75ce41a5SAli Bahrami 75*75ce41a5SAli Bahrami## libc 76*75ce41a5SAli Bahrami# 77*75ce41a5SAli Bahrami# - In Solaris 10, libc version SUNW_1.23 was incorrectly defined. In a 78*75ce41a5SAli Bahrami# subsequent update, those symbols were properly transfered to SUNW_1.22.4. 79*75ce41a5SAli Bahrami# However, SUNW_1.23 had to remain in place as an empty version to satisfy 80*75ce41a5SAli Bahrami# executables already in the field that were bound to it. 81*75ce41a5SAli Bahrami# 6763000 libc versioning needs a little tlc in Solaris 10 82*75ce41a5SAli Bahrami# The following excludes an empty top version SUNW_1.23 from triggering 83*75ce41a5SAli Bahrami# a flood of "added interface" errors. 84*75ce41a5SAli Bahrami# 85*75ce41a5SAli BahramiEMPTY_TOPVERSION ^SUNW_1\.23$ ^MACH(lib)/libc\.so\.1$ 86*75ce41a5SAli BahramiEMPTY_TOPVERSION ^SUNW_1\.23$ ^usr/lib/libc/libc_hwcap\d+\.so\.1$ 87*75ce41a5SAli Bahrami 88*75ce41a5SAli Bahrami 89*75ce41a5SAli Bahrami## libnsl 90*75ce41a5SAli Bahrami# 91*75ce41a5SAli Bahrami# - The function _inet_aton was removed from libnsl.so.1 as part of 92*75ce41a5SAli Bahrami# 6700179 expunge synonyms.h 93*75ce41a5SAli Bahrami# PSARC 2008/309 expunge synonyms.h 94*75ce41a5SAli Bahrami# - Version SUN_1.10 was vacated when inet_aton was backported into SUNW_1.9.1 95*75ce41a5SAli Bahrami# 4944187 getaddrinfo doesn't convert broadcast address if dns 96*75ce41a5SAli Bahrami# isn't in nsswitch.conf 97*75ce41a5SAli Bahrami# 6747055 Solaris 10 apps using recent version of libnsl.so do 98*75ce41a5SAli Bahrami# not run on Nevada 99*75ce41a5SAli Bahrami# 100*75ce41a5SAli BahramiDELSYM ^_inet_aton$ ^SUNW_1\.9\.1$ ^MACH(lib)/libnsl\.so\.1$ 101*75ce41a5SAli BahramiEMPTY_TOPVERSION ^SUNW_1\.10$ ^MACH(lib)/libnsl\.so\.1$ 102*75ce41a5SAli Bahrami 103*75ce41a5SAli Bahrami 104*75ce41a5SAli Bahrami## libpapi 105*75ce41a5SAli Bahrami# 106*75ce41a5SAli Bahrami# - FSG_1.0 is a label for the Free Standards Group, version 1 of this library 107*75ce41a5SAli Bahrami# 6346505 print commands should use PAPI for service interaction 108*75ce41a5SAli Bahrami# (LSARC/2003/547) 109*75ce41a5SAli Bahrami# 110*75ce41a5SAli BahramiEMPTY_TOPVERSION ^FSG_1\.0$ ^usr/lib/libpapi.so.0$ 111*75ce41a5SAli Bahrami 112*75ce41a5SAli Bahrami 113*75ce41a5SAli Bahrami## libresolv2 114*75ce41a5SAli Bahrami# 115*75ce41a5SAli Bahrami# - Version SUNW_2.3 is empty 116*75ce41a5SAli Bahrami# 6689937 libresolv2's mapfile-vers needs updating to line up 117*75ce41a5SAli Bahrami# with S10 changes 118*75ce41a5SAli Bahrami# 119*75ce41a5SAli BahramiEMPTY_TOPVERSION ^SUNW_2\.3$ ^MACH(lib)/libresolv\.so\.2$ 120*75ce41a5SAli Bahrami 121*75ce41a5SAli Bahrami 122*75ce41a5SAli Bahrami## librtld_db 123*75ce41a5SAli Bahrami# 124*75ce41a5SAli Bahrami# - rd_fix_phdrs() was introduced into Solaris 10 to support branded zones, 125*75ce41a5SAli Bahrami# and was removed as part of: 126*75ce41a5SAli Bahrami# 6599700 librtld_db needs better plugin support 127*75ce41a5SAli Bahrami# 128*75ce41a5SAli BahramiDELSYM ^rd_fix_phdrs$ ^SUNW_1\.1$ ^MACH(lib)/librtld_db\.so\.1$ 129*75ce41a5SAli Bahrami 130*75ce41a5SAli Bahrami 131*75ce41a5SAli Bahrami## libtecla 132*75ce41a5SAli Bahrami# 133*75ce41a5SAli Bahrami# - gl_completion_action() was renamed pca_path_completions() 134*75ce41a5SAli Bahrami# - gl_set_term_size was moved from tecla_1.4 to tecla_l.5 135*75ce41a5SAli Bahrami# - The version tecla_l.5 (note the "el" (l) instead of a one (1) is 136*75ce41a5SAli Bahrami# intentional. See the libtecla mapfile for details. 137*75ce41a5SAli Bahrami# 138*75ce41a5SAli BahramiDELSYM ^gl_completion_action$ \ 139*75ce41a5SAli Bahrami ^tecla_1\.[2-4]$ \ 140*75ce41a5SAli Bahrami ^usr/MACH(lib)/libtecla\.so\.1$ 141*75ce41a5SAli BahramiDELSYM ^gl_set_term_size$ \ 142*75ce41a5SAli Bahrami ^tecla_1\.4$ \ 143*75ce41a5SAli Bahrami ^usr/MACH(lib)/libtecla\.so\.1$ 144*75ce41a5SAli BahramiADDSYM ^pca_path_completions$ \ 145*75ce41a5SAli Bahrami ^(tecla_1\.[2346]|tecla_l\.5)$ \ 146*75ce41a5SAli Bahrami ^usr/MACH(lib)/libtecla\.so\.1$ 147