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 (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 24# Copyright 2021 OmniOS Community Edition (OmniOSce) Association. 25 26# This file provides exceptions to the usual rules applied to shared 27# objects by interface_check. All strings are Perl regular expressions 28# that are compared to file names. In addition to the standard Perl 29# syntax, there is one extension: 30# 31# MACH(dir) 32# 33# is expanded into a regular expression that matches the given 34# directory, or a 64-bit subdirectory of the directory with the 35# name of a 64-bit architecture. For example, MACH(lib) will match 36# any of the following: 37# 38# lib 39# lib/amd64 40# lib/sparcv9 41 42 43# Shared objects underneath these parts of the tree are taken to be plugins. 44# Plugins are not required to have versioned file names, and are not required 45# to be internally versioned. 46# 47PLUGIN ^usr/lib/devfsadm 48PLUGIN ^usr/lib/efcode/.*\.so$ 49PLUGIN ^usr/lib/elfedit 50PLUGIN ^usr/lib/fm/fmd/plugins 51PLUGIN ^usr/lib/fm/fmd/schemes 52PLUGIN ^usr/lib/fm/topo/plugins 53PLUGIN ^usr/lib/fwflash 54PLUGIN ^usr/lib/iconv 55PLUGIN ^usr/lib/inet/ppp 56PLUGIN ^usr/lib/lp/ipp 57PLUGIN ^usr/lib/mdb 58PLUGIN ^usr/lib/pci 59PLUGIN ^usr/lib/picl/plugins 60PLUGIN ^usr/lib/python2.[467] 61PLUGIN ^usr/lib/python3.\d+ 62PLUGIN ^usr/lib/rcm/modules 63PLUGIN ^usr/lib/scsi/plugins 64PLUGIN ^usr/lib/sysevent/modules 65PLUGIN ^usr/perl5/5\.[^\\]*/lib 66PLUGIN ^usr/platform 67PLUGIN ^usr/sadm/lib/wbem 68# We unfortunately can't use MACH() here, since .../64/ is literal, and not a 69# link to to amd64 or sparcv9 70PLUGIN ^usr/lib/dtrace/libdtrace_forceload\.so$ 71PLUGIN ^usr/lib/dtrace/64/libdtrace_forceload\.so$ 72 73# Objects that are not expected to contain versioning information. 74# Note that PLUGIN objects are automatically exempt from this, 75# so these directives are generally applied to non-plugin objects 76NOVERDEF ^usr/MACH(lib)/0\@0\.so\.1$ 77NOVERDEF ^usr/lib/MACH(abi)/apptrace\.so\.1$ 78NOVERDEF ^usr/MACH(lib)/libfru.*\.so\.1$ 79NOVERDEF ^usr/MACH(lib)/libkrb5\.so\.1$ 80NOVERDEF ^usr/MACH(lib)/libzpool\.so\.1$ 81NOVERDEF ^usr/MACH(lib)/madv\.so\.1$ 82NOVERDEF ^usr/MACH(lib)/mpss\.so\.1$ 83NOVERDEF ^usr/MACH(lib)/s10_brand\.so\.1$ 84NOVERDEF ^usr/MACH(lib)/s10_npreload\.so\.1$ 85NOVERDEF ^usr/MACH(lib)/sn1_brand\.so\.1$ 86NOVERDEF ^usr/lib/fs/[^/]*/fstyp\.so\.1$ 87NOVERDEF ^usr/lib/libmilter\.so\.1$ 88NOVERDEF ^usr/lib/libwrap\.so\.1\.0$ 89NOVERDEF ^usr/lib/locale/MACH(iso_8859_1)/iso_8859_1\.so\.3$ 90NOVERDEF ^usr/lib/picl/plugins$ 91NOVERDEF ^usr/sadm/admin/dhcpmgr/dhcpmgr\.so\.1$ 92 93 94# Objects that are allowed to deviate from our standard version 95# names. 96NONSTD_VERNAME ^MACH(lib)/libsqlite-sys\.so\. 97NONSTD_VERNAME ^usr/MACH(lib)/libtecla\.so\.1$ 98 99# These libc variants have an SONAME of libc\.so\.1$ 100NONSTD_VERNAME ^usr/MACH(lib)/libc/libc_hwcap[1-3]+\.so\.1$ 101