1#!/bin/ksh -p 2# 3# CDDL HEADER START 4# 5# The contents of this file are subject to the terms of the 6# Common Development and Distribution License (the "License"). 7# You may not use this file except in compliance with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26#ident "%Z%%M% %I% %E% SMI" 27 28# Quis custodiet ipsos custodies? 29 30if [ -z "$SRC" ]; then 31 SRC=$CODEMGR_WS/usr/src 32fi 33 34if [ -z "$CODEMGR_WS" -o ! -d "$CODEMGR_WS" -o ! -d "$SRC" ]; then 35 echo "$0: must be run from within a workspace." 36 exit 1 37fi 38 39cd $CODEMGR_WS || exit 1 40 41# Use -b to tell this script to ignore derived (built) objects. 42if [ "$1" = "-b" ]; then 43 b_flg=y 44fi 45 46# Not currently used; available for temporary workarounds. 47args="-k NEVER_CHECK" 48 49# We intentionally don't depend on $MACH here, and thus no $ROOT. If 50# a proto area exists, then we use it. This allows this script to be 51# run against gates (which should contain both SPARC and x86 proto 52# areas), build workspaces (which should contain just one proto area), 53# and unbuilt workspaces (which contain no proto areas). 54if [ "$b_flg" = y ]; then 55 rootlist= 56elif [ $# -gt 0 ]; then 57 rootlist=$* 58else 59 rootlist="$CODEMGR_WS/proto/root_sparc $CODEMGR_WS/proto/root_i386" 60fi 61 62# If the closed source is not present, then exclude IKE from validation. 63if [ "$CLOSED_IS_PRESENT" = no ]; then 64 excl="-e ^usr/include/ike/" 65fi 66 67for ROOT in $rootlist 68do 69 case "$ROOT" in 70 *sparc) arch=sparc;; 71 *i386) arch=i386;; 72 *) 73 echo "$ROOT has unknown architecture." >&2 74 exit 1 75 ;; 76 esac 77 if [ -d $ROOT ]; then 78 validate_paths '-s/\s*'$arch'$//' -e '^opt/onbld' $excl \ 79 -b $ROOT $args $SRC/pkgdefs/etc/exception_list_$arch 80 fi 81done 82 83# Two entries in the findunref exception_list deal with things created 84# by nightly. Otherwise, this test could be run on an unmodifed (and 85# unbuilt) workspace. We handle this by flagging the one that is 86# present only on a built workspace (./*.out) and the one that's 87# present only after a run of findunref (./*.ref) with ISUSED, and 88# disabling all checks of them. The assumption is that the entries 89# marked with ISUSED are always known to be good, thus the Latin quote 90# at the top of the file. 91if [ -r $SRC/tools/findunref/exception_list ]; then 92 # If the closed source is not present, then don't validate it. 93 if [ "$CLOSED_IS_PRESENT" = no ]; then 94 excl="-e ^\./closed" 95 fi 96 validate_paths -k ISUSED -r -e '^\*' $excl -b $SRC/.. \ 97 $SRC/tools/findunref/exception_list 98fi 99 100# These are straightforward. 101if [ -d $SRC/xmod ]; then 102 # If the closed source is not present, then don't validate it. 103 if [ "$CLOSED_IS_PRESENT" = no ]; then 104 excl_cry="-e ^usr/closed" 105 excl_xmod="-e ^../closed" 106 fi 107 validate_paths $excl_cry $SRC/xmod/cry_files 108 validate_paths $excl_xmod -b $SRC $SRC/xmod/xmod_files 109fi 110 111# Finally, make sure the that (req|inc).flg files are in good shape. 112# If SCCS files are not expected to be present, though, then don't 113# check them. 114if [ ! -d "$CODEMGR_WS/Codemgr_wsdata" ]; then 115 f_flg='-f' 116fi 117# If the closed source is not present, then don't validate it. 118if [ "$CLOSED_IS_PRESENT" = no ]; then 119 excl="-e ^usr/closed/" 120fi 121 122validate_flg $f_flg $excl 123 124exit 0 125