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