-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathcheckvers
executable file
·210 lines (185 loc) · 5.57 KB
/
checkvers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#!/bin/ksh
# $NetBSD: checkvers,v 1.9 2021/12/05 08:09:30 msaitoh Exp $
#
# Copyright (c) 1998 The NetBSD Foundation, Inc.
# All rights reserved.
#
# This code is derived from software contributed to The NetBSD Foundation
# by Eric Haszlakiewicz.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
#--------------------------------------------------------------------#
# checkvers [-q] [systemlibdir [library name]]
#
# This is a wrapper script around checkver. It will find
# all directories within the current directory containing
# a shlib_version file and call checkver for each.
#
# As with checkver, a list of directories of installed libraries
# may be specified. This will replace the default of "/usr/lib"
# and search there instead.
#
# A library name may also be specified. However, this script
# will not work correctly if it finds shlib_version files
# corresponding to a different library.
#
# This script produces no output if all library versions are ok.
# If the versions aren't ok the header will be displayed once
# followed by a list of problematic libraries.
#
# checkvers:
# if "-s", build list, pass with -f to checkver.
# if "-d", build list, pass with -f to checkver.
# if "-f", pass with -f to checkver.
# Cleanup on exit.
TMP=/tmp/checkvers.$$
trap "exit 2" 1 2 3 4 5 6 7 8 10 11 12 13 14 15
trap "rm -rf $TMP" 0
Usage ( ) {
echo "Usage: $1 [-q] -d [installedlibdir [library name]]"
echo " $1 [-q] -s [setlistdir [library name]]"
echo " $1 [-q] -f liblistfile [library name]"
}
basedir=/usr/src
setsdir=$basedir/distrib/sets/lists
libdir=/usr/lib
error=0
quiet=0
usedir=0
usefile=0
usesets=0
CWD=`pwd`
args=`getopt "df:shq" "$@"`
if [ $? -ne 0 ] ; then
Usage $0
exit 0
fi
set -- $args
while . ; do
case "$1" in
-d) usedir=1 ; shift
if [ $usefile -eq 1 -o $usesets -eq 1 ]; then
Usage $0 ; exit 2
fi;;
-f) usefile=1 ; arg1=$2 ; shift ; shift
if [ $usedir -eq 1 -o $usesets -eq 1 ]; then
Usage $0 ; exit 2
fi;;
-s) usesets=1 ; shift
if [ $usedir -eq 1 -o $usefile -eq 1 ]; then
Usage $0 ; exit 2
fi;;
-h) Usage $0 ; exit 0;;
-q) quiet=1 ; shift;;
--) shift ; break;;
esac
done
if [ $usedir -eq 0 -a $usefile -eq 0 -a $usesets -eq 0 ] ; then
Usage $0 ; exit 2
fi
if [ $usefile -eq 0 -a $# -gt 2 ] ; then
Usage $0 ; exit 2
fi
if [ $usefile -eq 1 -a $# -gt 1 ] ; then
Usage $0 ; exit 2
fi
#-------------------------#
QUIET=
LIBNAME=
# Suppress header.
if [ quiet -eq 1 ] ; then
QUIET="-q"
fi
if ! mkdir -m 700 $TMP ; then
echo "$0: Unable to create temp directory."
exit 2
fi
if [ $usefile -eq 1 ] ; then
# Just pass the file name to checkver.
LIBLIST="$arg1"
else
LIBLIST=$TMP/libs.lst
fi
# Build list from the installed libraries.
if [ $usedir -eq 1 ] ; then
if [ "X$1" != "X" ] ; then
libdir="$1"
fi
for f in $libdir ; do
ls $f/lib*.so.*.*
done > $LIBLIST 2> /dev/null
fi
# Build list from set lists. Parameter may be either
# the "lists" directory or the top of the source tree.
if [ $usesets -eq 1 ] ; then
if [ "X$1" != "X" ] ; then
setsdir="$1"
if [ -d "$setsdir/distrib/sets/lists" ] ; then
setsdir="$setsdir/distrib/sets/lists"
fi
fi
(cd $setsdir ;
cat */[a-z]* | grep '^./usr/lib/lib.*\.so\.[0-9][0-9]*\.[0-9][0-9]*' \
| sort -u > $LIBLIST
)
fi
if [ "X$2" != "X" ] ; then
LIBNAME="$2"
fi
EXECDIR=`eval "(cd \`dirname $0\` ; pwd)"`
CWD=`pwd`
VERFILES=`find $CWD -name shlib_version -print`
for f in $VERFILES ; do
# Call checkver. We always have a list of libraries
# here, whether given to us or built, so always
# pass the -f flag.
(cd `dirname $f` ;
"sh $EXECDIR"/checkver $QUIET -f "$LIBLIST" "$LIBNAME" ;
exit $?)
ERR=$?
if [ $ERR -eq 2 ] ; then
echo "$0: checkver failed. LIBLIST=$LIBLIST $LIBNAME=$LIBNAME"
exit 2
fi
if [ $ERR -ne 0 ] ; then
QUIET="-q"
error=1
fi
if [ "X$LIBNAME" = "X" ] ; then
# Build the library name from the directory it's in.
libname=`dirname $f`
libname=`basename $libname`
if ! echo $libname | grep -q "^lib" ; then
libname="lib$libname"
fi
else
libname="$LIBNAME"
fi
if [ -e $TMP/$libname ] ; then
echo "Warning: $libname sources encountered multiple times."
echo " Previous location: `cat $TMP/$libname`"
echo " Current location: `dirname $f`"
fi
echo "`dirname $f`" > $TMP/$libname
done
exit $error