xref: /titanic_52/exception_lists/check_rtime (revision 906afcb89d0412cc073b95c2d701a804a8cdb62c)
175ce41a5SAli Bahrami#
275ce41a5SAli Bahrami# CDDL HEADER START
375ce41a5SAli Bahrami#
475ce41a5SAli Bahrami# The contents of this file are subject to the terms of the
575ce41a5SAli Bahrami# Common Development and Distribution License (the "License").
675ce41a5SAli Bahrami# You may not use this file except in compliance with the License.
775ce41a5SAli Bahrami#
875ce41a5SAli Bahrami# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
975ce41a5SAli Bahrami# or http://www.opensolaris.org/os/licensing.
1075ce41a5SAli Bahrami# See the License for the specific language governing permissions
1175ce41a5SAli Bahrami# and limitations under the License.
1275ce41a5SAli Bahrami#
1375ce41a5SAli Bahrami# When distributing Covered Code, include this CDDL HEADER in each
1475ce41a5SAli Bahrami# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1575ce41a5SAli Bahrami# If applicable, add the following below this CDDL HEADER, with the
1675ce41a5SAli Bahrami# fields enclosed by brackets "[]" replaced with your own identifying
1775ce41a5SAli Bahrami# information: Portions Copyright [yyyy] [name of copyright owner]
1875ce41a5SAli Bahrami#
1975ce41a5SAli Bahrami# CDDL HEADER END
2075ce41a5SAli Bahrami#
2175ce41a5SAli Bahrami
2275ce41a5SAli Bahrami#
235253169eSAli Bahrami# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24cf2fa554SDan McDonald# Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
25*906afcb8SAndy Fiddaman# Copyright 2021 OmniOS Community Edition (OmniOSce) Association.
2675ce41a5SAli Bahrami#
2775ce41a5SAli Bahrami
2875ce41a5SAli Bahrami# This file provides exceptions to the usual rules applied to ELF objects by
2975ce41a5SAli Bahrami# check_rtime. All strings are Perl regular expressions that are compared to
3075ce41a5SAli Bahrami# file paths. In addition to the standard Perl syntax, there is one extension:
3175ce41a5SAli Bahrami#
3275ce41a5SAli Bahrami#	MACH(dir)
3375ce41a5SAli Bahrami#
3475ce41a5SAli Bahrami# is expanded into a regular expression that matches the given
3575ce41a5SAli Bahrami# directory, or a 64-bit subdirectory of the directory with the
3675ce41a5SAli Bahrami# name of a 64-bit architecture. For example, MACH(lib) will match
3775ce41a5SAli Bahrami# any of the following:
3875ce41a5SAli Bahrami#
3975ce41a5SAli Bahrami#	lib
4075ce41a5SAli Bahrami#	lib/amd64
4175ce41a5SAli Bahrami#	lib/sparcv9
4275ce41a5SAli Bahrami
4375ce41a5SAli Bahrami# Directory hierarchies to skip completely
4475ce41a5SAli BahramiSKIP		^usr/lib/libc/			# optimized libc
4575ce41a5SAli BahramiSKIP		^usr/lib/rcm/			# 4426119
4675ce41a5SAli BahramiSKIP		^usr/perl5/			# alan's taking care of these :-)
4775ce41a5SAli BahramiSKIP		^usr/src/			# no objects in source code
4875ce41a5SAli Bahrami
4975ce41a5SAli Bahrami# Individual files that we don't examine
5075ce41a5SAli BahramiSKIP		^boot/grub/bin/grub$
5175ce41a5SAli Bahrami# USIII specific extns. cause ldd noise on USII bld. m/c
5275ce41a5SAli BahramiSKIP		^usr/lib/fps/sun4u/UltraSPARC.*/fptest$
5375ce41a5SAli BahramiSKIP		^usr/MACH(lib)/lddstub$		# lddstub has no dependencies
5475ce41a5SAli BahramiSKIP		^usr/MACH(lib)/libssagent\.so\.1$	# 4328854
5575ce41a5SAli BahramiSKIP		^usr/lib/MACH(iconv)/geniconvtbl.so$	# 4384329
5675ce41a5SAli Bahrami
5775ce41a5SAli Bahrami# picl file exclusions (4385799)
5875ce41a5SAli BahramiSKIP		^usr/platform/.*/libpsvcplugin_psr\.so\.1
5975ce41a5SAli BahramiSKIP		^usr/platform/.*/libpsvcpolicy_psr\.so\.1
6075ce41a5SAli BahramiSKIP		^usr/platform/.*/libpsvcpolicy\.so\.1
6175ce41a5SAli BahramiSKIP		^usr/lib/sysevent/modules/picl_slm.so$
6275ce41a5SAli Bahrami
635253169eSAli Bahrami# Objects that are allowed to have executable data segments
645253169eSAli BahramiEXEC_DATA	^MACH(lib)/ld\.so\.1$
655253169eSAli BahramiEXEC_DATA	^lib/libc\.so\.1$	# 6524709, 32-bit, needed for x86 only
664f364e7cSRobert MustacchiEXEC_DATA	^lib/amd64/libumem\.so\.1$ # ptcumem
674f364e7cSRobert MustacchiEXEC_DATA	^lib/libumem\.so\.1$	# ptcumem
685253169eSAli BahramiEXEC_DATA	^opt/SUNWdtrt/tst/.*/ustack/tst\.helper\.exe$
695253169eSAli BahramiEXEC_DATA	^platform/.*/MACH(kernel)/unix$
705253169eSAli BahramiEXEC_DATA	^platform/.*/multiboot$
715253169eSAli Bahrami
725253169eSAli Bahrami# Objects that are allowed to have an executable stack
7375ce41a5SAli BahramiEXEC_STACK	^platform/.*/MACH(kernel)/unix$
7475ce41a5SAli BahramiEXEC_STACK	^platform/.*/multiboot$
7575ce41a5SAli Bahrami
7675ce41a5SAli Bahrami# Objects for which we allow relocations to the text segment
7775ce41a5SAli BahramiTEXTREL		^platform/.*/MACH(kernel)/unix$
7875ce41a5SAli Bahrami
7975ce41a5SAli Bahrami# Directories and files that are allowed to have no direct bound symbols
8075ce41a5SAli BahramiNODIRECT	^platform/.*/MACH(kernel)/unix$
8175ce41a5SAli BahramiNODIRECT	^usr/ucb
8275ce41a5SAli BahramiNODIRECT	^usr/4lib/sbcp$
8375ce41a5SAli Bahrami
8475ce41a5SAli Bahrami# Identify any files that should be skipped when building a crle(1)
8575ce41a5SAli Bahrami# configuration file.  As the hwcap libraries can be loop-back mounted onto
8675ce41a5SAli Bahrami# libc, these can confuse crle(1) because of their identical dev/inode.
8775ce41a5SAli BahramiNOCRLEALT	^usr/lib/libc/libc_hwcap[1-3].so.1$
8875ce41a5SAli Bahrami
8975ce41a5SAli Bahrami# Files that should contain debugging information.
9075ce41a5SAli BahramiSTAB	^platform/.*/MACH(kernel)/unix$
9175ce41a5SAli Bahrami
9275ce41a5SAli Bahrami# Files that are allowed undefined references
9375ce41a5SAli BahramiUNDEF_REF	^usr/lib/libnisdb\.so\.2$
9475ce41a5SAli Bahrami
9575ce41a5SAli Bahrami# Objects allowed to have unused dependencies
9675ce41a5SAli BahramiUNUSED_DEPS	^usr/lib/picl/plugins/		# require devtree dependencies
9775ce41a5SAli Bahrami
9875ce41a5SAli Bahrami# libm.so.2 dependency
9975ce41a5SAli BahramiUNUSED_OBJ	unused object=.*MACH(libm)/libm_hwcap1\.so\.2
10075ce41a5SAli Bahrami
101e3dc7d16SDan McDonald# libnetsnmphelpers.so is empty in some net-snmp versions
102e3dc7d16SDan McDonaldUNUSED_OBJ	unused object=.*/libnetsnmphelpers\.so\..*
103cf2fa554SDan McDonaldUNREF_OBJ	unreferenced object=.*/libnetsnmphelpers\.so\..*
104e3dc7d16SDan McDonald
105*906afcb8SAndy Fiddaman# ksh93 is just a wrapper into libshell but it is linked with libumem.so
106*906afcb8SAndy Fiddaman# so that the underlying libraries use that implementation for memory
107*906afcb8SAndy Fiddaman# management. Since ksh itself doesn't perform any memory allocations in
108*906afcb8SAndy Fiddaman# the stub, ldd -U determines that libumem is an unreferenced object.
109*906afcb8SAndy FiddamanUNREF_OBJ	/libumem\.so\.1.*/usr/bin/(i86|amd64)/r?ksh(93)?\b
110*906afcb8SAndy FiddamanUNREF_OBJ	/libumem\.so\.1.*/usr/bin/sparcv[79]/r?ksh(93)?\b
111*906afcb8SAndy Fiddaman
11275ce41a5SAli Bahrami# Unused runpaths due to dlopen() use
11375ce41a5SAli BahramiUNUSED_RPATH	/usr/lib/fs/autofs.*\ from\ .automountd
11475ce41a5SAli BahramiUNUSED_RPATH	/etc/ppp/plugins.*\ from\ .*pppd
11575ce41a5SAli BahramiUNUSED_RPATH	/usr/lib/inet/ppp.*\ from\ .*pppd
11675ce41a5SAli BahramiUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libipsecutil\.so\.1
11775ce41a5SAli BahramiUNUSED_RPATH	/usr/platform/.*rsmlib.*\ from\ .*librsm\.so\.2
11875ce41a5SAli BahramiUNUSED_RPATH	\$ORIGIN.*\ from\ .*fcode.so
11975ce41a5SAli BahramiUNUSED_RPATH	/opt/VRTSvxvm/lib.*\ from\ .*libdiskmgt\.so\.1
12075ce41a5SAli Bahrami
12175ce41a5SAli Bahrami# Unused runpaths in picl code
12275ce41a5SAli BahramiUNUSED_RPATH	/usr/platform/.*\ from\ .*/usr/platform
12375ce41a5SAli BahramiUNUSED_RPATH	/usr/lib/picl/.*\ from\ .*/usr/platform
12475ce41a5SAli BahramiUNUSED_RPATH	/usr/platform/.*\ from\ .*/usr/lib/picl
12575ce41a5SAli Bahrami
12675ce41a5SAli Bahrami# Unused runpaths in non-OSNET objects we can't change
12775ce41a5SAli BahramiUNUSED_RPATH	/usr/lib/mps.*\ from\ .*libnss3\.so
128e64d0ff9SAli BahramiUNUSED_RPATH	/usr/lib/mps.*\ from\ .*libnssutil3\.so
129e64d0ff9SAli BahramiUNUSED_RPATH	/usr/lib/mps.*\ from\ .*libsmime3\.so
130e64d0ff9SAli BahramiUNUSED_RPATH	/usr/lib/mps.*\ from\ .*libssl3\.so
13175ce41a5SAli BahramiUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libdbus-1\.so\.3
13275ce41a5SAli BahramiUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libdbus-glib-1\.so\.2
13375ce41a5SAli BahramiUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libglib-2\.0\.so\.0
13475ce41a5SAli BahramiUNUSED_RPATH	/usr/X11/lib.*\ from\ .*libglib-2\.0\.so\.0
13575ce41a5SAli BahramiUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libgobject-2\.0\.so\.0
13675ce41a5SAli BahramiUNUSED_RPATH	/usr/X11/lib.*\ from\ .*libgobject-2\.0\.so\.0
13775ce41a5SAli BahramiUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libgthread-2\.0\.so\.0
13875ce41a5SAli BahramiUNUSED_RPATH	/usr/X11/lib.*\ from\ .*libgthread-2\.0\.so\.0
13975ce41a5SAli BahramiUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libcrypto\.so\.0\.9\.8
140e3dc7d16SDan McDonaldUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libnetsnmp\.so\..*
14175ce41a5SAli BahramiUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libgcc_s\.so\.1
142b2db26f3SRichard LoweUNUSED_RPATH	/usr/ccs/lib.*\ from\ .*libgcc_s\.so\.1
143b2db26f3SRichard LoweUNUSED_RPATH	/usr/lib.*\ from\ .*libgcc_s\.so\.1
14475ce41a5SAli BahramiUNUSED_RPATH	/usr/postgres/8.3/lib.*\ from\ .*libpq\.so\.5
14575ce41a5SAli BahramiUNUSED_RPATH	/usr/sfw/lib.*\ from\ .*libpq\.so\.5
146b2db26f3SRichard LoweUNUSED_RPATH	/usr/lib.*\ from\ .*/usr/lib/mps
147b2db26f3SRichard LoweUNUSED_RPATH	/usr/ccs/lib.*\ from\ .*/usr/lib/mps
1482fb4439dSAlexander PyhalovUNUSED_RPATH	/usr/gnu/lib.*\ from\ .*/usr/lib/libpython2\..
1492fb4439dSAlexander PyhalovUNUSED_RPATH	/usr/gnu/lib.*\ from\ .*/usr/lib/64/libpython2\..
150d561bb99SAndy FiddamanUNUSED_RPATH	/usr/gnu/lib.*\ from\ .*/usr/lib/64/libpython3\..
151cf2fa554SDan McDonaldUNUSED_RPATH	/usr/snadm/lib.*\ from\ .*/usr/snadm/lib/libspmicommon\.so\.1
1526298d528SAlexander PyhalovUNUSED_RPATH	/usr/gcc/.*/lib.*\ from\ .*
153941d8a6eSRichard LoweUNUSED_RPATH	/usr/gnu/lib.*\ from\ .*libncurses\.so\.5
154cf2fa554SDan McDonald
15575ce41a5SAli Bahrami
15675ce41a5SAli Bahrami# Unused runpaths for reasons not captured above
15775ce41a5SAli BahramiUNUSED_RPATH	/usr/lib/smbsrv.*\ from\ .*libsmb\.so\.1 	# future needs
15875ce41a5SAli BahramiUNUSED_RPATH	/usr.*\ from\ .*tst\.gcc\.exe			# gcc built
15975ce41a5SAli Bahrami
16075ce41a5SAli Bahrami
16175ce41a5SAli Bahrami# Unreferenced objects of non-OSnet objects we can't change
16275ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libcimapi\.so
163f6abcda3SOndrej KubeckaUNREF_OBJ	/lib.*\ of\ .*libdbus-1\.so\.3
164f6abcda3SOndrej KubeckaUNREF_OBJ	/lib.*\ of\ .*libdbus-glib-1\.so\.2
165cf2fa554SDan McDonaldUNREF_OBJ	/lib.*\ of\ .*libgio-2.0\.so\.0
16601143f78SJohn BeckUNREF_OBJ	/lib.*\ of\ .*libglib-2.0\.so\.0
16701143f78SJohn BeckUNREF_OBJ	/lib.*\ of\ .*libgobject-2.0\.so\.0
168f6abcda3SOndrej KubeckaUNREF_OBJ	/lib.*\ of\ .*libgthread-2\.0\.so\.0
16975ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libjvm\.so
170e3dc7d16SDan McDonaldUNREF_OBJ	/lib.*\ of\ .*libnetsnmp\.so\..*
171e3dc7d16SDan McDonaldUNREF_OBJ	/lib.*\ of\ .*libnetsnmpagent\.so\..*
172e3dc7d16SDan McDonaldUNREF_OBJ	/lib.*\ of\ .*libnetsnmpmibs\.so\..*
173e3dc7d16SDan McDonaldUNREF_OBJ	/lib.*\ of\ .*libnetsnmphelpers\.so\..*
17475ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libnspr4\.so
17575ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libpq\.so\.5
17675ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libsoftokn3\.so
17775ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libspmicommon\.so\.1
17875ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libspmocommon\.so\.1
17975ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libssl3\.so
18075ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libtspi\.so\.1
18175ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libxml2\.so\.2
18275ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libxslt\.so\.1
18375ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libpq\.so\.4
18475ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*libpython2\.4\.so\.1\.0
185cf2fa554SDan McDonaldUNREF_OBJ	/lib.*\ of\ .*libpython2\.6\.so\.1\.0
186d35eb64cSAndy FiddamanUNREF_OBJ	/lib.*\ of\ .*libpython2\.7\.so\.1\.0
187d35eb64cSAndy FiddamanUNREF_OBJ	/lib.*\ of\ .*libpython3\.[56789]m?\.so\.1\.0
1886a3e8e86SRichard LoweUNREF_OBJ	/libgcc_s.*\ of\ .*libstdc\+\+\.so\.6
189cf2fa554SDan McDonaldUNREF_OBJ	/libgcc_s.*\ of\ .*libgmodule-2\.0\.so\.0
19075ce41a5SAli Bahrami
19175ce41a5SAli Bahrami# Unreferenced object of objects we can't change for other reasons
19275ce41a5SAli BahramiUNREF_OBJ	/libmapmalloc\.so\.1;\ unused\ dependency\ of	# interposer
19375ce41a5SAli BahramiUNREF_OBJ	/libstdc\+\+\.so\.6;\ unused\ dependency\ of	# gcc build
194cf2fa554SDan McDonaldUNREF_OBJ	/libgcc_s\.so\.1.*\ of\ .*libstdc\+\+\.so\.6	# omnios gcc mix
19575ce41a5SAli BahramiUNREF_OBJ	/libm\.so\.2.*\ of\ .*libstdc\+\+\.so\.6	# gcc build
19675ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*/lib/picl/plugins/		# picl
19775ce41a5SAli BahramiUNREF_OBJ	/lib.*\ of\ .*kcfd				# interposer
19875ce41a5SAli BahramiUNREF_OBJ	/libpkcs11\.so\.1; .*\ of\ .*libkmf\.so\.1	# interposed
1996a3e8e86SRichard Lowe# Referenced by the Studio build, not the GCC build.  GCC eliminates the unused
2006a3e8e86SRichard Lowe# statics which have the dependence.
2016a3e8e86SRichard LoweUNREF_OBJ	/libc\.so\.1.*\ of\ .*kldap\.so\.1
2026a3e8e86SRichard Lowe
20375ce41a5SAli Bahrami
20475ce41a5SAli Bahrami# Objects that used to contain system functionalty that has since
20575ce41a5SAli Bahrami# migrated to libc. We preserve these libraries as pure filters for
20675ce41a5SAli Bahrami# backward compatability but nothing needs to link to them.
20775ce41a5SAli BahramiOLDDEP		libaio\.so\.1			# onnv build 44
20875ce41a5SAli BahramiOLDDEP		libdl\.so\.1			# on10 build 49
20975ce41a5SAli BahramiOLDDEP		libdoor\.so\.1			# onnv build 12
21075ce41a5SAli BahramiOLDDEP		libintl\.so\.1			# on297 build 7
21175ce41a5SAli BahramiOLDDEP		libpthread\.so\.1		# on10 build 53
21275ce41a5SAli BahramiOLDDEP		librt\.so\.1			# onnv build 44
21375ce41a5SAli BahramiOLDDEP		libsched\.so\.1			# on10 build 36
21475ce41a5SAli BahramiOLDDEP		libthread\.so\.1		# on10 build 53
21575ce41a5SAli BahramiOLDDEP		libw\.so\.1			# on297 build 7
21675ce41a5SAli Bahrami
21775ce41a5SAli Bahrami# Files for which we skip checking of duplicate addresses in the
21875ce41a5SAli Bahrami# symbol sort sections. Such exceptions should be rare --- most code will
21975ce41a5SAli Bahrami# not have duplicate addresses, since it takes assember or a "#pragma weak"
22075ce41a5SAli Bahrami# to do such aliasing in C. C++ is different: The compiler generates aliases
22175ce41a5SAli Bahrami# for implementation reasons, and the mangled names used to encode argument
22275ce41a5SAli Bahrami# and return value types are difficult to handle well in mapfiles.
22375ce41a5SAli Bahrami# Furthermore, the Sun compiler and gcc use different and incompatible
22475ce41a5SAli Bahrami# name mangling conventions. Since ON must be buildable by either, we
22575ce41a5SAli Bahrami# would have to maintain two sets of mapfiles for each such object.
22675ce41a5SAli Bahrami# C++ use is rare in ON, so this is not worth pursuing.
22775ce41a5SAli Bahrami#
22875ce41a5SAli BahramiNOSYMSORT	opt/SUNWdtrt/tst/common/pid/tst.weak2.exe	# DTrace test
22975ce41a5SAli BahramiNOSYMSORT	lib/amd64/libnsl\.so\.1				# C++
23075ce41a5SAli BahramiNOSYMSORT	lib/sparcv9/libnsl\.so\.1			# C++
23175ce41a5SAli BahramiNOSYMSORT	lib/sparcv9/libfru\.so\.1			# C++
23275ce41a5SAli BahramiNOSYMSORT	usr/lib/lms					# C++
23375ce41a5SAli BahramiNOSYMSORT	ld\.so\.1					# libc_pic.a user
23475ce41a5SAli BahramiNOSYMSORT	lib/libsun_fc\.so\.1				# C++
23575ce41a5SAli BahramiNOSYMSORT	lib/amd64/libsun_fc\.so\.1			# C++
23675ce41a5SAli BahramiNOSYMSORT	lib/sparcv9/libsun_fc\.so\.1 			# C++
2376bbe0590SSundeep PanickerNOSYMSORT	usr/lib/amd64/libfru\.so\.1			# C++
23875ce41a5SAli Bahrami
23975ce41a5SAli Bahrami
24075ce41a5SAli Bahrami# The libprtdiag_psr.so.1 objects built under usr/src/lib/libprtdiag_psr
24175ce41a5SAli Bahrami# are a family, all built using the same makefile, targeted at different
24275ce41a5SAli Bahrami# sparc hardware variants. There are a small number of cases where this
24375ce41a5SAli Bahrami# one size fits all approach causes an object to be linked against an
24475ce41a5SAli Bahrami# unneeded library.
24575ce41a5SAli BahramiUNREF_OBJ	lib/(libdevinfo|libcfgadm)\.so\.1; .*\ of\ .*SUNW,Netra-CP2300/lib/libprtdiag_psr\.so\.1
24675ce41a5SAli Bahrami
24775ce41a5SAli Bahrami
248