]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/locate/locate/updatedb.sh
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.bin / locate / locate / updatedb.sh
1 #!/bin/sh
2 #
3 # Copyright (c) September 1995 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
26 #
27 # updatedb - update locate database for local mounted filesystems
28 #
29 # $FreeBSD$
30
31 if [ "$(id -u)" = "0" ]; then
32         echo ">>> WARNING" 1>&2
33         echo ">>> Executing updatedb as root.  This WILL reveal all filenames" 1>&2
34         echo ">>> on your machine to all login users, which is a security risk." 1>&2
35 fi
36 : ${LOCATE_CONFIG="/etc/locate.rc"}
37 if [ -f "$LOCATE_CONFIG" -a -r "$LOCATE_CONFIG" ]; then
38        . $LOCATE_CONFIG
39 fi
40
41 # The directory containing locate subprograms
42 : ${LIBEXECDIR:=/usr/libexec}; export LIBEXECDIR
43 : ${TMPDIR:=/tmp}; export TMPDIR
44 if ! TMPDIR=`mktemp -d $TMPDIR/locateXXXXXXXXXX`; then
45         exit 1
46 fi
47
48 PATH=$LIBEXECDIR:/bin:/usr/bin:$PATH; export PATH
49
50
51 : ${mklocatedb:=locate.mklocatedb}       # make locate database program
52 : ${FCODES:=/var/db/locate.database}     # the database
53 : ${SEARCHPATHS:="/"}           # directories to be put in the database
54 : ${PRUNEPATHS:="/tmp /usr/tmp /var/tmp /var/db/portsnap"} # unwanted directories
55 : ${FILESYSTEMS:="$(lsvfs | tail -n +3 | \
56         egrep -vw "loopback|network|synthetic|read-only|0" | \
57         cut -d " " -f1)"}               # allowed filesystems
58 : ${find:=find}
59
60 case X"$SEARCHPATHS" in 
61         X) echo "$0: empty variable SEARCHPATHS"; exit 1;; esac
62 case X"$FILESYSTEMS" in 
63         X) echo "$0: empty variable FILESYSTEMS"; exit 1;; esac
64
65 # Make a list a paths to exclude in the locate run
66 excludes="! (" or=""
67 for fstype in $FILESYSTEMS
68 do
69        excludes="$excludes $or -fstype $fstype"
70        or="-or"
71 done
72 excludes="$excludes ) -prune"
73
74 case X"$PRUNEPATHS" in
75         X) ;;
76         *) for path in $PRUNEPATHS
77            do 
78                 excludes="$excludes -or -path $path -prune"
79            done;;
80 esac
81
82 tmp=$TMPDIR/_updatedb$$
83 trap 'rm -f $tmp; rmdir $TMPDIR' 0 1 2 3 5 10 15
84                 
85 # search locally
86 # echo $find $SEARCHPATHS $excludes -or -print && exit
87 if $find -s $SEARCHPATHS $excludes -or -print 2>/dev/null |
88         $mklocatedb -presort > $tmp
89 then
90         case X"`$find $tmp -size -257c -print`" in
91                 X) cat $tmp > $FCODES;;
92                 *) echo "updatedb: locate database $tmp is empty"
93                    exit 1
94         esac
95 fi