1*10355SAli.Bahrami@Sun.COM
2*10355SAli.Bahrami@Sun.COM#
3*10355SAli.Bahrami@Sun.COM# CDDL HEADER START
4*10355SAli.Bahrami@Sun.COM#
5*10355SAli.Bahrami@Sun.COM# The contents of this file are subject to the terms of the
6*10355SAli.Bahrami@Sun.COM# Common Development and Distribution License (the "License").
7*10355SAli.Bahrami@Sun.COM# You may not use this file except in compliance with the License.
8*10355SAli.Bahrami@Sun.COM#
9*10355SAli.Bahrami@Sun.COM# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*10355SAli.Bahrami@Sun.COM# or http://www.opensolaris.org/os/licensing.
11*10355SAli.Bahrami@Sun.COM# See the License for the specific language governing permissions
12*10355SAli.Bahrami@Sun.COM# and limitations under the License.
13*10355SAli.Bahrami@Sun.COM#
14*10355SAli.Bahrami@Sun.COM# When distributing Covered Code, include this CDDL HEADER in each
15*10355SAli.Bahrami@Sun.COM# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*10355SAli.Bahrami@Sun.COM# If applicable, add the following below this CDDL HEADER, with the
17*10355SAli.Bahrami@Sun.COM# fields enclosed by brackets "[]" replaced with your own identifying
18*10355SAli.Bahrami@Sun.COM# information: Portions Copyright [yyyy] [name of copyright owner]
19*10355SAli.Bahrami@Sun.COM#
20*10355SAli.Bahrami@Sun.COM# CDDL HEADER END
21*10355SAli.Bahrami@Sun.COM#
22*10355SAli.Bahrami@Sun.COM
23*10355SAli.Bahrami@Sun.COM#
24*10355SAli.Bahrami@Sun.COM# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
25*10355SAli.Bahrami@Sun.COM# Use is subject to license terms.
26*10355SAli.Bahrami@Sun.COM#
27*10355SAli.Bahrami@Sun.COM
28*10355SAli.Bahrami@Sun.COM# This file provides exceptions to the usual rules applied to ELF objects by
29*10355SAli.Bahrami@Sun.COM# check_rtime. All strings are Perl regular expressions that are compared to
30*10355SAli.Bahrami@Sun.COM# file paths. In addition to the standard Perl syntax, there is one extension:
31*10355SAli.Bahrami@Sun.COM#
32*10355SAli.Bahrami@Sun.COM#	MACH(dir)
33*10355SAli.Bahrami@Sun.COM#
34*10355SAli.Bahrami@Sun.COM# is expanded into a regular expression that matches the given
35*10355SAli.Bahrami@Sun.COM# directory, or a 64-bit subdirectory of the directory with the
36*10355SAli.Bahrami@Sun.COM# name of a 64-bit architecture. For example, MACH(lib) will match
37*10355SAli.Bahrami@Sun.COM# any of the following:
38*10355SAli.Bahrami@Sun.COM#
39*10355SAli.Bahrami@Sun.COM#	lib
40*10355SAli.Bahrami@Sun.COM#	lib/amd64
41*10355SAli.Bahrami@Sun.COM#	lib/sparcv9
42*10355SAli.Bahrami@Sun.COM
43*10355SAli.Bahrami@Sun.COM
44*10355SAli.Bahrami@Sun.COM# Directory hierarchies to skip completely
45*10355SAli.Bahrami@Sun.COMSKIP		^usr/lib/libc/			# optimized libc
46*10355SAli.Bahrami@Sun.COMSKIP		^usr/lib/rcm/			# 4426119
47*10355SAli.Bahrami@Sun.COMSKIP		^usr/perl5/			# alan's taking care of these :-)
48*10355SAli.Bahrami@Sun.COMSKIP		^usr/src/			# no objects in source code
49*10355SAli.Bahrami@Sun.COM
50*10355SAli.Bahrami@Sun.COM# Individual files that we don't examine
51*10355SAli.Bahrami@Sun.COMSKIP		^boot/grub/bin/grub$
52*10355SAli.Bahrami@Sun.COMSKIP		^usr/apache/libexec/mod_ipp.so$	# Apache loadable module
53*10355SAli.Bahrami@Sun.COM# USIII specific extns. cause ldd noise on USII bld. m/c
54*10355SAli.Bahrami@Sun.COMSKIP		^usr/lib/fps/sun4u/UltraSPARC.*/fptest$
55*10355SAli.Bahrami@Sun.COMSKIP		^usr/MACH(lib)/lddstub$		# lddstub has no dependencies
56*10355SAli.Bahrami@Sun.COMSKIP		^usr/MACH(lib)/libssagent\.so\.1$	# 4328854
57*10355SAli.Bahrami@Sun.COMSKIP		^usr/lib/MACH(iconv)/geniconvtbl.so$	# 4384329
58*10355SAli.Bahrami@Sun.COM
59*10355SAli.Bahrami@Sun.COM# picl file exclusions (4385799)
60*10355SAli.Bahrami@Sun.COMSKIP		^usr/platform/.*/libpsvcplugin_psr\.so\.1
61*10355SAli.Bahrami@Sun.COMSKIP		^usr/platform/.*/libpsvcpolicy_psr\.so\.1
62*10355SAli.Bahrami@Sun.COMSKIP		^usr/platform/.*/libpsvcpolicy\.so\.1
63*10355SAli.Bahrami@Sun.COMSKIP		^usr/lib/sysevent/modules/picl_slm.so$
64*10355SAli.Bahrami@Sun.COM
65*10355SAli.Bahrami@Sun.COM# Objects that don't require a non-executable stack definition
66*10355SAli.Bahrami@Sun.COMEXEC_STACK	^platform/.*/MACH(kernel)/unix$
67*10355SAli.Bahrami@Sun.COMEXEC_STACK	^platform/.*/multiboot$
68*10355SAli.Bahrami@Sun.COM
69*10355SAli.Bahrami@Sun.COM# Objects for which we allow relocations to the text segment
70*10355SAli.Bahrami@Sun.COMTEXTREL		^platform/.*/MACH(kernel)/unix$
71*10355SAli.Bahrami@Sun.COM
72*10355SAli.Bahrami@Sun.COM# Directories and files that are allowed to have no direct bound symbols
73*10355SAli.Bahrami@Sun.COMNODIRECT	^platform/.*/MACH(kernel)/unix$
74*10355SAli.Bahrami@Sun.COMNODIRECT	^usr/ucb
75*10355SAli.Bahrami@Sun.COMNODIRECT	^usr/4lib/sbcp$
76*10355SAli.Bahrami@Sun.COM
77*10355SAli.Bahrami@Sun.COM# Identify any files that should be skipped when building a crle(1)
78*10355SAli.Bahrami@Sun.COM# configuration file.  As the hwcap libraries can be loop-back mounted onto
79*10355SAli.Bahrami@Sun.COM# libc, these can confuse crle(1) because of their identical dev/inode.
80*10355SAli.Bahrami@Sun.COMNOCRLEALT	^usr/lib/libc/libc_hwcap[1-3].so.1$
81*10355SAli.Bahrami@Sun.COM
82*10355SAli.Bahrami@Sun.COM# Files that should contain debugging information.
83*10355SAli.Bahrami@Sun.COMSTAB	^platform/.*/MACH(kernel)/unix$
84*10355SAli.Bahrami@Sun.COM
85*10355SAli.Bahrami@Sun.COM# Files that are allowed undefined references
86*10355SAli.Bahrami@Sun.COMUNDEF_REF	^usr/lib/libnisdb\.so\.2$
87*10355SAli.Bahrami@Sun.COMUNDEF_REF	^usr/snadm/lib/libsvm\.so\.1$
88*10355SAli.Bahrami@Sun.COM
89*10355SAli.Bahrami@Sun.COM# Objects allowed to have unused dependencies
90*10355SAli.Bahrami@Sun.COMUNUSED_DEPS	^usr/lib/picl/plugins/		# require devtree dependencies
91*10355SAli.Bahrami@Sun.COMUNUSED_DEPS	^usr/lib/libp	# profile libc makes libm an unused dep of libc
92*10355SAli.Bahrami@Sun.COM
93*10355SAli.Bahrami@Sun.COM# libm.so.2 dependency
94*10355SAli.Bahrami@Sun.COMUNUSED_OBJ	unused object=.*MACH(libm)/libm_hwcap1\.so\.2
95*10355SAli.Bahrami@Sun.COM
96*10355SAli.Bahrami@Sun.COM# Unused runpaths due to dlopen() use
97*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/lib/fs/autofs.*\ from\ .automountd
98*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/etc/ppp/plugins.*\ from\ .*pppd
99*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/lib/inet/ppp.*\ from\ .*pppd
100*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libipsecutil\.so\.1
101*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/platform/.*rsmlib.*\ from\ .*librsm\.so\.2
102*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	\$ORIGIN.*\ from\ .*fcode.so
103*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/opt/VRTSvxvm/lib.*\ from\ .*libdiskmgt\.so\.1
104*10355SAli.Bahrami@Sun.COM
105*10355SAli.Bahrami@Sun.COM# Unused runpaths in picl code
106*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/platform/.*\ from\ .*/usr/platform
107*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/lib/picl/.*\ from\ .*/usr/platform
108*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/platform/.*\ from\ .*/usr/lib/picl
109*10355SAli.Bahrami@Sun.COM
110*10355SAli.Bahrami@Sun.COM# Unused runpaths in non-OSNET objects we can't change
111*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/lib/mps/secv1.*\ from\ .*libnss3\.so
112*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/lib/mps.*\ from\ .*libnss3\.so
113*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/lib/mps.*\ from\ .*libnssutil3.so
114*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libdbus-1\.so\.3
115*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libdbus-glib-1\.so\.2
116*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libglib-2\.0\.so\.0
117*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/X11/lib.*\ from\ .*libglib-2\.0\.so\.0
118*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libgmodule-2\.0\.so\.0
119*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/X11/lib.*\ from\ .*libgmodule-2\.0\.so\.0
120*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libgnomevfs-2\.so\.0
121*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libgobject-2\.0\.so\.0
122*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/X11/lib.*\ from\ .*libgobject-2\.0\.so\.0
123*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libgthread-2\.0\.so\.0
124*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/X11/lib.*\ from\ .*libgthread-2\.0\.so\.0
125*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libcrypto\.so\.0\.9\.8
126*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libnetsnmp\.so\.15
127*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libgcc_s\.so\.1
128*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/postgres/8.3/lib.*\ from\ .*libpq\.so\.5
129*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libpq\.so\.5
130*10355SAli.Bahrami@Sun.COM
131*10355SAli.Bahrami@Sun.COM# Unused runpaths for reasons not captured above
132*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr/lib/smbsrv.*\ from\ .*libsmb\.so\.1 	# future needs
133*10355SAli.Bahrami@Sun.COMUNUSED_RPATH	/usr.*\ from\ .*tst\.gcc\.exe			# gcc built
134*10355SAli.Bahrami@Sun.COM
135*10355SAli.Bahrami@Sun.COM
136*10355SAli.Bahrami@Sun.COM# Unreferenced objects of non-OSnet objects we can't change
137*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libcimapi\.so
138*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libjvm\.so
139*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libnetsnmp\.so\.15
140*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libnetsnmpagent\.so\.15
141*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libnetsnmpmibs\.so\.15
142*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libnetsnmphelpers\.so\.15
143*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libnspr4\.so
144*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libpq\.so\.5
145*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libsoftokn3\.so
146*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libspmicommon\.so\.1
147*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libspmocommon\.so\.1
148*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libssl3\.so
149*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libtspi\.so\.1
150*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libxml2\.so\.2
151*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libxslt\.so\.1
152*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libpq\.so\.4
153*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*libpython2\.4\.so\.1\.0
154*10355SAli.Bahrami@Sun.COM
155*10355SAli.Bahrami@Sun.COM# Unreferenced object of objects we can't change for other reasons
156*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/libmapmalloc\.so\.1;\ unused\ dependency\ of	# interposer
157*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/libstdc\+\+\.so\.6;\ unused\ dependency\ of	# gcc build
158*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/libm\.so\.2.*\ of\ .*libstdc\+\+\.so\.6	# gcc build
159*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*/lib/picl/plugins/		# picl
160*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/lib.*\ of\ .*kcfd				# interposer
161*10355SAli.Bahrami@Sun.COMUNREF_OBJ	/libpkcs11\.so\.1; .*\ of\ .*libkmf\.so\.1	# interposed
162*10355SAli.Bahrami@Sun.COM
163*10355SAli.Bahrami@Sun.COM# Objects that used to contain system functionalty that has since
164*10355SAli.Bahrami@Sun.COM# migrated to libc. We preserve these libraries as pure filters for
165*10355SAli.Bahrami@Sun.COM# backward compatability but nothing needs to link to them.
166*10355SAli.Bahrami@Sun.COMOLDDEP		libaio\.so\.1			# onnv build 44
167*10355SAli.Bahrami@Sun.COMOLDDEP		libdl\.so\.1			# on10 build 49
168*10355SAli.Bahrami@Sun.COMOLDDEP		libdoor\.so\.1			# onnv build 12
169*10355SAli.Bahrami@Sun.COMOLDDEP		libintl\.so\.1			# on297 build 7
170*10355SAli.Bahrami@Sun.COMOLDDEP		libpthread\.so\.1		# on10 build 53
171*10355SAli.Bahrami@Sun.COMOLDDEP		librt\.so\.1			# onnv build 44
172*10355SAli.Bahrami@Sun.COMOLDDEP		libsched\.so\.1			# on10 build 36
173*10355SAli.Bahrami@Sun.COMOLDDEP		libthread\.so\.1		# on10 build 53
174*10355SAli.Bahrami@Sun.COMOLDDEP		libw\.so\.1			# on297 build 7
175*10355SAli.Bahrami@Sun.COM
176*10355SAli.Bahrami@Sun.COM# Files for which we skip checking of duplicate addresses in the
177*10355SAli.Bahrami@Sun.COM# symbol sort sections. Such exceptions should be rare --- most code will
178*10355SAli.Bahrami@Sun.COM# not have duplicate addresses, since it takes assember or a "#pragma weak"
179*10355SAli.Bahrami@Sun.COM# to do such aliasing in C. C++ is different: The compiler generates aliases
180*10355SAli.Bahrami@Sun.COM# for implementation reasons, and the mangled names used to encode argument
181*10355SAli.Bahrami@Sun.COM# and return value types are difficult to handle well in mapfiles.
182*10355SAli.Bahrami@Sun.COM# Furthermore, the Sun compiler and gcc use different and incompatible
183*10355SAli.Bahrami@Sun.COM# name mangling conventions. Since ON must be buildable by either, we
184*10355SAli.Bahrami@Sun.COM# would have to maintain two sets of mapfiles for each such object.
185*10355SAli.Bahrami@Sun.COM# C++ use is rare in ON, so this is not worth pursuing.
186*10355SAli.Bahrami@Sun.COM#
187*10355SAli.Bahrami@Sun.COMNOSYMSORT	opt/SUNWdtrt/tst/common/pid/tst.weak2.exe	# DTrace test
188*10355SAli.Bahrami@Sun.COMNOSYMSORT	lib/amd64/libnsl\.so\.1				# C++
189*10355SAli.Bahrami@Sun.COMNOSYMSORT	lib/sparcv9/libnsl\.so\.1			# C++
190*10355SAli.Bahrami@Sun.COMNOSYMSORT	lib/sparcv9/libfru\.so\.1			# C++
191*10355SAli.Bahrami@Sun.COMNOSYMSORT	usr/lib/sgml/nsgmls				# C++
192*10355SAli.Bahrami@Sun.COMNOSYMSORT	usr/lib/lms					# C++
193*10355SAli.Bahrami@Sun.COMNOSYMSORT	ld\.so\.1					# libc_pic.a user
194*10355SAli.Bahrami@Sun.COMNOSYMSORT	lib/libsun_fc\.so\.1				# C++
195*10355SAli.Bahrami@Sun.COMNOSYMSORT	lib/amd64/libsun_fc\.so\.1			# C++
196*10355SAli.Bahrami@Sun.COMNOSYMSORT	lib/sparcv9/libsun_fc\.so\.1 			# C++
197*10355SAli.Bahrami@Sun.COM
198*10355SAli.Bahrami@Sun.COM
199*10355SAli.Bahrami@Sun.COM# The libprtdiag_psr.so.1 objects built under usr/src/lib/libprtdiag_psr
200*10355SAli.Bahrami@Sun.COM# are a family, all built using the same makefile, targeted at different
201*10355SAli.Bahrami@Sun.COM# sparc hardware variants. There are a small number of cases where this
202*10355SAli.Bahrami@Sun.COM# one size fits all approach causes an object to be linked against an
203*10355SAli.Bahrami@Sun.COM# unneeded library.
204*10355SAli.Bahrami@Sun.COMUNREF_OBJ	lib/(libdevinfo|libcfgadm)\.so\.1; .*\ of\ .*SUNW,Netra-CP2300/lib/libprtdiag_psr\.so\.1
205*10355SAli.Bahrami@Sun.COM
206*10355SAli.Bahrami@Sun.COM
207*10355SAli.Bahrami@Sun.COM# Remove this once the following integrates:
208*10355SAli.Bahrami@Sun.COM#	6858961 check_rtime issues with fwflash plugins (IB transports)
209*10355SAli.Bahrami@Sun.COM#
210*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/identify/hermon\.so$
211*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/identify/tavor\.so$
212*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/verify/hermon-MELLANOX\.so$
213*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/verify/tavor-MELLANOX\.so$
214*10355SAli.Bahrami@Sun.COM
215*10355SAli.Bahrami@Sun.COM
216*10355SAli.Bahrami@Sun.COM# Remove this once the following integrates:
217*10355SAli.Bahrami@Sun.COM#	6858954 check_rtime issues with fwflash plugins (scsi transports)
218*10355SAli.Bahrami@Sun.COM#
219*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/identify/sd\.so$
220*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/identify/ses\.so$
221*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/identify/sgen\.so$
222*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/verify/sd-GENERIC\.so$
223*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/verify/ses-LSILOGIC\.so$
224*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/verify/ses-SUN\.so$
225*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/verify/sgen-LSILOGIC\.so$
226*10355SAli.Bahrami@Sun.COMSKIP	^usr/lib/fwflash/verify/sgen-SUN\.so$
227