Use getword() instead of getw().
[findutils.git] / locate / locate.c
blob84640feeed0f9347ede1fd404a92a5632a57a4ea
1 /* locate -- search databases for filenames that match patterns
2 Copyright (C) 1994, 1996, 1998, 1999, 2000, 2003,
3 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
18 USA.
21 /* Usage: locate [options] pattern...
23 Scan a pathname list for the full pathname of a file, given only
24 a piece of the name (possibly containing shell globbing metacharacters).
25 The list has been processed with front-compression, which reduces
26 the list size by a factor of 4-5.
27 Recognizes two database formats, old and new. The old format is
28 bigram coded, which reduces space by a further 20-25% and uses the
29 following encoding of the database bytes:
31 0-28 likeliest differential counts + offset (14) to make nonnegative
32 30 escape code for out-of-range count to follow in next halfword
33 128-255 bigram codes (the 128 most common, as determined by `updatedb')
34 32-127 single character (printable) ASCII remainder
36 Earlier versions of GNU locate used to use a novel two-tiered
37 string search technique, which was described in Usenix ;login:, Vol
38 8, No 1, February/March, 1983, p. 8.
40 However, latterly code changes to provide additional functionality
41 became dificult to make with the existing reading scheme, and so
42 we no longer perform the matching as efficiently as we used to (that is,
43 we no longer use the same algorithm).
45 The old algorithm was:
47 First, match a metacharacter-free subpattern and a partial
48 pathname BACKWARDS to avoid full expansion of the pathname list.
49 The time savings is 40-50% over forward matching, which cannot
50 efficiently handle overlapped search patterns and compressed
51 path remainders.
53 Then, match the actual shell glob pattern (if in this form)
54 against the candidate pathnames using the slower shell filename
55 matching routines.
58 Written by James A. Woods <jwoods@adobe.com>.
59 Modified by David MacKenzie <djm@gnu.org>.
60 Additional work by James Youngman and Bas van Gompel.
63 #include <config.h>
64 #include <stdio.h>
65 #include <signal.h>
66 #include <ctype.h>
67 #include <sys/types.h>
68 #include <grp.h> /* for setgroups() */
69 #include <sys/stat.h>
70 #include <time.h>
71 #include <fnmatch.h>
72 #include <getopt.h>
73 #include <xstrtol.h>
75 /* The presence of unistd.h is assumed by gnulib these days, so we
76 * might as well assume it too.
78 /* We need <unistd.h> for isatty(). */
79 #include <unistd.h>
81 #if HAVE_FCNTL_H
82 /* We use fcntl() */
83 #include <fcntl.h>
84 #endif
86 #define NDEBUG
87 #include <assert.h>
88 #include <string.h>
91 #ifdef STDC_HEADERS
92 #include <stdlib.h>
93 #endif
95 #include <errno.h>
97 #ifdef HAVE_LOCALE_H
98 #include <locale.h>
99 #endif
101 #if ENABLE_NLS
102 # include <libintl.h>
103 # define _(Text) gettext (Text)
104 #else
105 # define _(Text) Text
106 #define textdomain(Domain)
107 #define bindtextdomain(Package, Directory)
108 #endif
109 #ifdef gettext_noop
110 # define N_(String) gettext_noop (String)
111 #else
112 /* We used to use (String) instead of just String, but apparently ISO C
113 * doesn't allow this (at least, that's what HP said when someone reported
114 * this as a compiler bug). This is HP case number 1205608192. See
115 * also http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11250 (which references
116 * ANSI 3.5.7p14-15). The Intel icc compiler also rejects constructs
117 * like: static const char buf[] = ("string");
119 # define N_(String) String
120 #endif
122 #include "locatedb.h"
123 #include <getline.h>
124 #include "xalloc.h"
125 #include "error.h"
126 #include "human.h"
127 #include "dirname.h"
128 #include "closeout.h"
129 #include "nextelem.h"
130 #include "regex.h"
131 #include "quote.h"
132 #include "quotearg.h"
133 #include "printquoted.h"
134 #include "regextype.h"
135 #include "gnulib-version.h"
137 /* Note that this evaluates Ch many times. */
138 #ifdef _LIBC
139 # define TOUPPER(Ch) toupper (Ch)
140 # define TOLOWER(Ch) tolower (Ch)
141 #else
142 # define TOUPPER(Ch) (islower (Ch) ? toupper (Ch) : (Ch))
143 # define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
144 #endif
146 /* typedef enum {false, true} boolean; */
148 /* Warn if a database is older than this. 8 days allows for a weekly
149 update that takes up to a day to perform. */
150 static unsigned int warn_number_units = 8;
152 /* Printable name of units used in WARN_SECONDS */
153 static const char warn_name_units[] = N_("days");
154 #define SECONDS_PER_UNIT (60 * 60 * 24)
156 enum visit_result
158 VISIT_CONTINUE = 1, /* please call the next visitor */
159 VISIT_ACCEPTED = 2, /* accepted, call no futher callbacks for this file */
160 VISIT_REJECTED = 4, /* rejected, process next file. */
161 VISIT_ABORT = 8 /* rejected, process no more files. */
164 enum ExistenceCheckType
166 ACCEPT_EITHER, /* Corresponds to lack of -E/-e option */
167 ACCEPT_EXISTING, /* Corresponds to option -e */
168 ACCEPT_NON_EXISTING /* Corresponds to option -E */
171 /* Check for existence of files before printing them out? */
172 enum ExistenceCheckType check_existence = ACCEPT_EITHER;
174 static int follow_symlinks = 1;
176 /* What to separate the results with. */
177 static int separator = '\n';
179 static struct quoting_options * quote_opts = NULL;
180 static bool stdout_is_a_tty;
181 static bool print_quoted_filename;
182 static bool results_were_filtered;
184 static const char *selected_secure_db = NULL;
187 /* Change the number of days old the database can be
188 * before we complain about it.
190 static void
191 set_max_db_age(const char *s)
193 char *end;
194 unsigned long int val;
195 /* XXX: we ignore the case where the input is negative, which is allowed(!). */
197 if (0 == *s)
199 error(1, 0,
200 _("The argument argument for option --max-database-age must not be empty"));
204 /* We have to set errno here, otherwise when the function returns ULONG_MAX,
205 * we would not be able to tell if that is the correct answer, or whether it
206 * signifies an error.
208 errno = 0;
209 val = strtoul(s, &end, 10);
211 /* Diagnose number too large, non-numbes and trailing junk. */
212 if ((ULONG_MAX == val && ERANGE == errno) ||
213 (0 == val && EINVAL == errno))
215 error(1, errno,
216 _("Invalid argument %s for option --max-database-age"),
217 quotearg_n_style(0, locale_quoting_style, s));
219 else if (*end)
221 /* errno wasn't set, don't print its message */
222 error(1, 0,
223 _("Invalid argument %s for option --max-database-age"),
224 quotearg_n_style(0, locale_quoting_style, s));
226 else
228 warn_number_units = val;
234 /* Read in a 16-bit int, high byte first (network byte order). */
236 static short
237 get_short (FILE *fp)
240 register short x;
242 x = (signed char) fgetc (fp) << 8;
243 x |= (fgetc (fp) & 0xff);
244 return x;
247 const char * const metacharacters = "*?[]\\";
249 /* Return nonzero if S contains any shell glob characters.
251 static int
252 contains_metacharacter(const char *s)
254 if (NULL == strpbrk(s, metacharacters))
255 return 0;
256 else
257 return 1;
260 /* locate_read_str()
262 * Read bytes from FP into the buffer at offset OFFSET in (*BUF),
263 * until we reach DELIMITER or end-of-file. We reallocate the buffer
264 * as necessary, altering (*BUF) and (*SIZ) as appropriate. No assumption
265 * is made regarding the content of the data (i.e. the implementation is
266 * 8-bit clean, the only delimiter is DELIMITER).
268 * Written Fri May 23 18:41:16 2003 by James Youngman, because getstr()
269 * has been removed from gnulib.
271 * We call the function locate_read_str() to avoid a name clash with the curses
272 * function getstr().
274 static int
275 locate_read_str(char **buf, size_t *siz, FILE *fp, int delimiter, int offs)
277 char * p = NULL;
278 size_t sz = 0;
279 int nread;
280 size_t needed;
282 nread = getdelim(&p, &sz, delimiter, fp);
283 if (nread >= 0)
285 assert(p != NULL);
287 needed = offs + nread + 1u;
288 if (needed > (*siz))
290 char *pnew = realloc(*buf, needed);
291 if (NULL == pnew)
293 return -1; /* FAIL */
295 else
297 *siz = needed;
298 *buf = pnew;
301 memcpy((*buf)+offs, p, nread);
302 free(p);
304 return nread;
308 struct locate_limits
310 uintmax_t limit;
311 uintmax_t items_accepted;
313 static struct locate_limits limits;
316 struct locate_stats
318 uintmax_t compressed_bytes;
319 uintmax_t total_filename_count;
320 uintmax_t total_filename_length;
321 uintmax_t whitespace_count;
322 uintmax_t newline_count;
323 uintmax_t highbit_filename_count;
325 static struct locate_stats statistics;
328 struct regular_expression
330 struct re_pattern_buffer regex; /* for --regex */
334 struct process_data
336 int c; /* An input byte. */
337 char itemcount; /* Indicates we're at the beginning of an slocate db. */
338 int count; /* The length of the prefix shared with the previous database entry. */
339 int len;
340 char *original_filename; /* The current input database entry. */
341 size_t pathsize; /* Amount allocated for it. */
342 char *munged_filename; /* path or base_name(path) */
343 FILE *fp; /* The pathname database. */
344 const char *dbfile; /* Its name, or "<stdin>" */
345 int slocatedb_format; /* Allows us to cope with slocate's format variant */
346 /* for the old database format,
347 the first and second characters of the most common bigrams. */
348 char bigram1[128];
349 char bigram2[128];
353 typedef int (*visitfunc)(struct process_data *procdata,
354 void *context);
356 struct visitor
358 visitfunc inspector;
359 void * context;
360 struct visitor *next;
364 static struct visitor *inspectors = NULL;
365 static struct visitor *lastinspector = NULL;
366 static struct visitor *past_pat_inspector = NULL;
368 static inline int visit(const struct visitor *p,
369 int accept_flags,
370 struct process_data *procdata,
371 const struct visitor * const stop)
373 register int result = accept_flags;
374 while ( (accept_flags & result) && (stop != p) )
376 result = (p->inspector)(procdata, p->context);
377 p = p->next;
379 return result;
382 /* 0 or 1 pattern(s) */
383 static int
384 process_simple(struct process_data *procdata)
386 return visit(inspectors, (VISIT_CONTINUE|VISIT_ACCEPTED), procdata, NULL);
389 /* Accept if any pattern matches. */
390 static int
391 process_or (struct process_data *procdata)
393 int result;
395 result = visit(inspectors, (VISIT_CONTINUE|VISIT_REJECTED), procdata, past_pat_inspector);
396 if (result == VISIT_CONTINUE)
397 result = VISIT_REJECTED;
398 if (result & (VISIT_ABORT | VISIT_REJECTED))
399 return result;
401 result = visit(past_pat_inspector, VISIT_CONTINUE, procdata, NULL);
402 if (VISIT_CONTINUE == result)
403 return VISIT_ACCEPTED;
404 else
405 return result;
408 /* Accept if all pattern match. */
409 static int
410 process_and (struct process_data *procdata)
412 int result;
414 result = visit(inspectors, (VISIT_CONTINUE|VISIT_ACCEPTED), procdata, past_pat_inspector);
415 if (result == VISIT_CONTINUE)
416 result = VISIT_REJECTED;
417 if (result & (VISIT_ABORT | VISIT_REJECTED))
418 return result;
420 result = visit(past_pat_inspector, VISIT_CONTINUE, procdata, NULL);
421 if (VISIT_CONTINUE == result)
422 return VISIT_ACCEPTED;
423 else
424 return result;
427 typedef int (*processfunc)(struct process_data *procdata);
429 static processfunc mainprocessor = NULL;
431 static void
432 add_visitor(visitfunc fn, void *context)
434 struct visitor *p = xmalloc(sizeof(struct visitor));
435 p->inspector = fn;
436 p->context = context;
437 p->next = NULL;
439 if (NULL == lastinspector)
441 lastinspector = inspectors = p;
443 else
445 lastinspector->next = p;
446 lastinspector = p;
450 static int
451 visit_justprint_quoted(struct process_data *procdata, void *context)
453 (void) context;
454 print_quoted (stdout, quote_opts, stdout_is_a_tty,
455 "%s",
456 procdata->original_filename);
457 putchar(separator);
458 return VISIT_CONTINUE;
461 static int
462 visit_justprint_unquoted(struct process_data *procdata, void *context)
464 (void) context;
465 fputs(procdata->original_filename, stdout);
466 putchar(separator);
467 return VISIT_CONTINUE;
470 static void
471 toolong (struct process_data *procdata)
473 error (1, 0,
474 _("locate database %s contains a "
475 "filename longer than locate can handle"),
476 procdata->dbfile);
479 static void
480 extend (struct process_data *procdata, size_t siz1, size_t siz2)
482 /* Figure out if the addition operation is safe before performing it. */
483 if (SIZE_MAX - siz1 < siz2)
485 toolong (procdata);
487 else if (procdata->pathsize < (siz1+siz2))
489 procdata->pathsize = siz1+siz2;
490 procdata->original_filename = x2nrealloc (procdata->original_filename,
491 &procdata->pathsize,
496 static int
497 visit_old_format(struct process_data *procdata, void *context)
499 register size_t i;
500 (void) context;
502 if (EOF == procdata->c)
503 return VISIT_ABORT;
505 /* Get the offset in the path where this path info starts. */
506 if (procdata->c == LOCATEDB_OLD_ESCAPE)
508 int state = GetwordEndianStateInitial;
509 int minval, maxval;
510 int word;
512 procdata->count -= LOCATEDB_OLD_OFFSET;
513 minval = (0 - procdata->count);
514 if (procdata->count >= 0)
515 maxval = (procdata->len - procdata->count);
516 else
517 maxval = (procdata->len - 0);
518 word = getword(procdata->fp, procdata->dbfile,
519 minval, maxval, &state);
520 procdata->count += word;
521 assert(procdata->count >= 0);
523 else
525 procdata->count += (procdata->c - LOCATEDB_OLD_OFFSET);
526 assert(procdata->count >= 0);
529 /* Overlay the old path with the remainder of the new. Read
530 * more data until we get to the next filename.
532 for (i=procdata->count;
533 (procdata->c = getc (procdata->fp)) > LOCATEDB_OLD_ESCAPE;)
535 if (EOF == procdata->c)
536 break;
538 if (procdata->c < 0200)
540 /* An ordinary character. */
541 extend (procdata, i, 1u);
542 procdata->original_filename[i++] = procdata->c;
544 else
546 /* Bigram markers have the high bit set. */
547 extend (procdata, i, 2u);
548 procdata->c &= 0177;
549 procdata->original_filename[i++] = procdata->bigram1[procdata->c];
550 procdata->original_filename[i++] = procdata->bigram2[procdata->c];
554 /* Consider the case where we executed the loop body zero times; we
555 * still need space for the terminating null byte.
557 extend (procdata, i, 1u);
558 procdata->original_filename[i] = 0;
559 procdata->len = i;
560 procdata->munged_filename = procdata->original_filename;
562 return VISIT_CONTINUE;
565 static int
566 visit_locate02_format(struct process_data *procdata, void *context)
568 register char *s;
569 int nread;
570 (void) context;
572 if (procdata->slocatedb_format)
574 if (procdata->itemcount == 0)
576 ungetc(procdata->c, procdata->fp);
577 procdata->count = 0;
578 procdata->len = 0;
580 else if (procdata->itemcount == 1)
582 procdata->count = procdata->len-1;
584 else
586 if (procdata->c == LOCATEDB_ESCAPE)
587 procdata->count += (short)get_short (procdata->fp);
588 else if (procdata->c > 127)
589 procdata->count += procdata->c - 256;
590 else
591 procdata->count += procdata->c;
594 else
596 if (procdata->c == LOCATEDB_ESCAPE)
597 procdata->count += (short)get_short (procdata->fp);
598 else if (procdata->c > 127)
599 procdata->count += procdata->c - 256;
600 else
601 procdata->count += procdata->c;
604 if (procdata->count > procdata->len || procdata->count < 0)
606 /* This should not happen generally , but since we're
607 * reading in data which is outside our control, we
608 * cannot prevent it.
610 error(1, 0, _("locate database %s is corrupt or invalid"),
611 quotearg_n_style(0, locale_quoting_style, procdata->dbfile));
614 /* Overlay the old path with the remainder of the new. */
615 nread = locate_read_str (&procdata->original_filename,
616 &procdata->pathsize,
617 procdata->fp, 0, procdata->count);
618 if (nread < 0)
619 return VISIT_ABORT;
620 procdata->c = getc (procdata->fp);
621 procdata->len = procdata->count + nread;
622 s = procdata->original_filename + procdata->len - 1; /* Move to the last char in path. */
623 assert (s[0] != '\0');
624 assert (s[1] == '\0'); /* Our terminator. */
625 assert (s[2] == '\0'); /* Added by locate_read_str. */
627 procdata->munged_filename = procdata->original_filename;
629 if (procdata->slocatedb_format)
631 /* Don't increment indefinitely, it might overflow. */
632 if (procdata->itemcount < 6)
634 ++(procdata->itemcount);
639 return VISIT_CONTINUE;
642 static int
643 visit_basename(struct process_data *procdata, void *context)
645 (void) context;
646 procdata->munged_filename = base_name(procdata->original_filename);
648 return VISIT_CONTINUE;
652 /* visit_existing_follow implements -L -e */
653 static int
654 visit_existing_follow(struct process_data *procdata, void *context)
656 struct stat st;
657 (void) context;
659 /* munged_filename has been converted in some way (to lower case,
660 * or is just the base name of the file), and original_filename has not.
661 * Hence only original_filename is still actually the name of the file
662 * whose existence we would need to check.
664 if (stat(procdata->original_filename, &st) != 0)
666 return VISIT_REJECTED;
668 else
670 return VISIT_CONTINUE;
674 /* visit_non_existing_follow implements -L -E */
675 static int
676 visit_non_existing_follow(struct process_data *procdata, void *context)
678 struct stat st;
679 (void) context;
681 /* munged_filename has been converted in some way (to lower case,
682 * or is just the base name of the file), and original_filename has not.
683 * Hence only original_filename is still actually the name of the file
684 * whose existence we would need to check.
686 if (stat(procdata->original_filename, &st) == 0)
688 return VISIT_REJECTED;
690 else
692 return VISIT_CONTINUE;
696 /* visit_existing_nofollow implements -P -e */
697 static int
698 visit_existing_nofollow(struct process_data *procdata, void *context)
700 struct stat st;
701 (void) context;
703 /* munged_filename has been converted in some way (to lower case,
704 * or is just the base name of the file), and original_filename has not.
705 * Hence only original_filename is still actually the name of the file
706 * whose existence we would need to check.
708 if (lstat(procdata->original_filename, &st) != 0)
710 return VISIT_REJECTED;
712 else
714 return VISIT_CONTINUE;
718 /* visit_non_existing_nofollow implements -P -E */
719 static int
720 visit_non_existing_nofollow(struct process_data *procdata, void *context)
722 struct stat st;
723 (void) context;
725 /* munged_filename has been converted in some way (to lower case,
726 * or is just the base name of the file), and original_filename has not.
727 * Hence only original_filename is still actually the name of the file
728 * whose existence we would need to check.
730 if (lstat(procdata->original_filename, &st) == 0)
732 return VISIT_REJECTED;
734 else
736 return VISIT_CONTINUE;
740 static int
741 visit_substring_match_nocasefold_wide(struct process_data *procdata, void *context)
743 const char *pattern = context;
745 if (NULL != mbsstr(procdata->munged_filename, pattern))
746 return VISIT_ACCEPTED;
747 else
748 return VISIT_REJECTED;
751 static int
752 visit_substring_match_nocasefold_narrow(struct process_data *procdata, void *context)
754 const char *pattern = context;
755 assert(MB_CUR_MAX == 1);
756 if (NULL != strstr(procdata->munged_filename, pattern))
757 return VISIT_ACCEPTED;
758 else
759 return VISIT_REJECTED;
762 static int
763 visit_substring_match_casefold_wide(struct process_data *procdata, void *context)
765 const char *pattern = context;
767 if (NULL != mbscasestr(procdata->munged_filename, pattern))
768 return VISIT_ACCEPTED;
769 else
770 return VISIT_REJECTED;
774 static int
775 visit_substring_match_casefold_narrow(struct process_data *procdata, void *context)
777 const char *pattern = context;
779 assert(MB_CUR_MAX == 1);
780 if (NULL != strcasestr(procdata->munged_filename, pattern))
781 return VISIT_ACCEPTED;
782 else
783 return VISIT_REJECTED;
787 static int
788 visit_globmatch_nofold(struct process_data *procdata, void *context)
790 const char *glob = context;
791 if (fnmatch(glob, procdata->munged_filename, 0) != 0)
792 return VISIT_REJECTED;
793 else
794 return VISIT_ACCEPTED;
798 static int
799 visit_globmatch_casefold(struct process_data *procdata, void *context)
801 const char *glob = context;
802 if (fnmatch(glob, procdata->munged_filename, FNM_CASEFOLD) != 0)
803 return VISIT_REJECTED;
804 else
805 return VISIT_ACCEPTED;
809 static int
810 visit_regex(struct process_data *procdata, void *context)
812 struct regular_expression *p = context;
813 const size_t len = strlen(procdata->munged_filename);
815 int rv = re_search (&p->regex, procdata->munged_filename,
816 len, 0, len,
817 (struct re_registers *) NULL);
818 if (rv < 0)
820 return VISIT_REJECTED; /* no match (-1), or internal error (-2) */
822 else
824 return VISIT_ACCEPTED; /* match */
829 static int
830 visit_stats(struct process_data *procdata, void *context)
832 struct locate_stats *p = context;
833 size_t len = strlen(procdata->original_filename);
834 const char *s;
835 int highbit, whitespace, newline;
837 ++(p->total_filename_count);
838 p->total_filename_length += len;
840 highbit = whitespace = newline = 0;
841 for (s=procdata->original_filename; *s; ++s)
843 if ( (int)(*s) & 128 )
844 highbit = 1;
845 if ('\n' == *s)
847 newline = whitespace = 1;
849 else if (isspace((unsigned char)*s))
851 whitespace = 1;
855 if (highbit)
856 ++(p->highbit_filename_count);
857 if (whitespace)
858 ++(p->whitespace_count);
859 if (newline)
860 ++(p->newline_count);
862 return VISIT_CONTINUE;
866 static int
867 visit_limit(struct process_data *procdata, void *context)
869 struct locate_limits *p = context;
871 (void) procdata;
873 if (++p->items_accepted >= p->limit)
874 return VISIT_ABORT;
875 else
876 return VISIT_CONTINUE;
879 static int
880 visit_count(struct process_data *procdata, void *context)
882 struct locate_limits *p = context;
884 (void) procdata;
886 ++p->items_accepted;
887 return VISIT_CONTINUE;
890 /* Emit the statistics.
892 static void
893 print_stats(int argc, size_t database_file_size)
895 char hbuf[LONGEST_HUMAN_READABLE + 1];
897 printf(_("Locate database size: %s bytes\n"),
898 human_readable ((uintmax_t) database_file_size,
899 hbuf, human_ceiling, 1, 1));
901 printf( (results_were_filtered ?
902 _("Matching Filenames: %s ") :
903 _("All Filenames: %s ")),
904 human_readable (statistics.total_filename_count,
905 hbuf, human_ceiling, 1, 1));
906 printf(_("with a cumulative length of %s bytes"),
907 human_readable (statistics.total_filename_length,
908 hbuf, human_ceiling, 1, 1));
910 printf(_("\n\tof which %s contain whitespace, "),
911 human_readable (statistics.whitespace_count,
912 hbuf, human_ceiling, 1, 1));
913 printf(_("\n\t%s contain newline characters, "),
914 human_readable (statistics.newline_count,
915 hbuf, human_ceiling, 1, 1));
916 printf(_("\n\tand %s contain characters with the high bit set.\n"),
917 human_readable (statistics.highbit_filename_count,
918 hbuf, human_ceiling, 1, 1));
920 if (!argc)
922 if (results_were_filtered)
924 printf(_("Some filenames may have been filtered out, "
925 "so we cannot compute the compression ratio.\n"));
927 else
929 if (statistics.total_filename_length)
931 /* A negative compression ratio just means that the
932 * compressed database is larger than the list of
933 * filenames. This can happen for example for
934 * old-format databases containing a small list of short
935 * filenames, because the bigram list is 256 bytes.
937 printf(_("Compression ratio %4.2f%% (higher is better)\n"),
938 100.0 * ((double)statistics.total_filename_length
939 - (double) database_file_size)
940 / (double) statistics.total_filename_length);
942 else
944 printf(_("Compression ratio is undefined\n"));
948 printf("\n");
952 * Return nonzero if the data we read in indicates that we are
953 * looking at a LOCATE02 locate database.
955 static int
956 looking_at_gnu_locatedb (const char *data, size_t len)
958 if (len < sizeof (LOCATEDB_MAGIC))
959 return 0;
960 else if (0 == memcmp (data, LOCATEDB_MAGIC, sizeof (LOCATEDB_MAGIC)))
961 return 1; /* We saw the magic byte sequence */
962 else
963 return 0;
967 * Return nonzero if the data we read in indicates that we are
968 * looking at an slocate database.
970 static int
971 looking_at_slocate_locatedb (const char *filename,
972 const char *data,
973 size_t len,
974 int *seclevel)
976 assert(len <= 2);
978 if (len < 2)
980 return 0;
982 else
984 /* Check that the magic number is a one-byte string */
985 if (0 == data[1])
987 if (isdigit((unsigned char)data[0]))
989 /* looks promising. */
990 *seclevel = (data[0] - '0');
992 if (*seclevel > 1)
994 /* Hmm, well it's probably an slocate database
995 * of some awsomely huge security level, like 2.
996 * We don't know how to handle those.
998 error(0, 0,
999 _("locate database %s looks like an slocate "
1000 "database but it seems to have security level %c, "
1001 "which GNU findutils does not currently support"),
1002 quotearg_n_style(0, locale_quoting_style, filename),
1003 data[1]);
1004 return 1;
1006 else
1008 return 1;
1011 else
1013 /* Not a digit. */
1014 return 0;
1017 else
1019 /* Definitely not slocate. */
1020 return 0;
1025 /* Print or count the entries in DBFILE that match shell globbing patterns in
1026 ARGV. Return the number of entries matched. */
1028 static unsigned long
1029 search_one_database (int argc,
1030 char **argv,
1031 const char *dbfile,
1032 FILE *fp,
1033 off_t filesize,
1034 int ignore_case,
1035 int enable_print,
1036 int basename_only,
1037 int use_limit,
1038 struct locate_limits *plimit,
1039 int stats,
1040 int op_and,
1041 int regex,
1042 int regex_options)
1044 char *pathpart; /* A pattern to consider. */
1045 int argn; /* Index to current pattern in argv. */
1046 int nread; /* number of bytes read from an entry. */
1047 struct process_data procdata; /* Storage for data shared with visitors. */
1048 int slocate_seclevel;
1049 struct visitor* pvis; /* temp for determining past_pat_inspector. */
1050 const char *format_name;
1051 enum ExistenceCheckType do_check_existence;
1054 /* We may turn on existence checking for a given database.
1055 * We ensure that we can return to the previous behaviour
1056 * by using two variables, do_check_existence (which we act on)
1057 * and check_existence (whcih indicates the default before we
1058 * adjust it on the bassis of what kind of database we;re using
1060 do_check_existence = check_existence;
1063 if (ignore_case)
1064 regex_options |= RE_ICASE;
1066 procdata.len = procdata.count = 0;
1067 procdata.slocatedb_format = 0;
1068 procdata.itemcount = 0;
1070 procdata.dbfile = dbfile;
1071 procdata.fp = fp;
1073 /* Set up the inspection regime */
1074 inspectors = NULL;
1075 lastinspector = NULL;
1076 past_pat_inspector = NULL;
1077 results_were_filtered = false;
1078 #if 0
1079 procdata.pathsize = 1026; /* Increased as necessary by locate_read_str. */
1080 #else
1081 procdata.pathsize = 128; /* Increased as necessary by locate_read_str. */
1082 #endif
1083 procdata.original_filename = xmalloc (procdata.pathsize);
1086 nread = fread (procdata.original_filename, 1, SLOCATE_DB_MAGIC_LEN,
1087 procdata.fp);
1088 slocate_seclevel = 0;
1089 if (looking_at_slocate_locatedb(procdata.dbfile,
1090 procdata.original_filename,
1091 nread,
1092 &slocate_seclevel))
1094 error(0, 0,
1095 _("%s is an slocate database. "
1096 "Support for these is new, expect problems for now."),
1097 quotearg_n_style(0, locale_quoting_style, procdata.dbfile));
1099 /* slocate also uses frcode, but with a different header.
1100 * We handle the header here and then work with the data
1101 * in the normal way.
1103 if (slocate_seclevel > 1)
1105 /* We don't know what those security levels mean,
1106 * so do nothing further
1108 error(0, 0,
1109 _("%s is an slocate database of unsupported security level %d; skipping it."),
1110 quotearg_n_style(0, locale_quoting_style, procdata.dbfile),
1111 slocate_seclevel);
1112 return 0;
1114 else if (slocate_seclevel > 0)
1116 /* Don't show the filenames to the user if they don't exist.
1117 * Showing stats is safe since filenames are only counted
1118 * after the existence check
1120 if (ACCEPT_NON_EXISTING == check_existence)
1122 /* Do not allow the user to see a list of filenames that they
1123 * cannot stat().
1125 error(0, 0,
1126 _("You specified the -E option, but that option "
1127 "cannot be used with slocate-format databases "
1128 "with a non-zero security level. No results will be "
1129 "generated for this database.\n"));
1130 return 0;
1132 if (ACCEPT_EXISTING != do_check_existence)
1134 if (enable_print || stats)
1136 error(0, 0,
1137 _("%s is an slocate database. "
1138 "Turning on the '-e' option."),
1139 quotearg_n_style(0, locale_quoting_style, procdata.dbfile));
1141 do_check_existence = ACCEPT_EXISTING;
1144 add_visitor(visit_locate02_format, NULL);
1145 format_name = "slocate";
1146 procdata.slocatedb_format = 1;
1148 else
1150 int nread2;
1152 procdata.slocatedb_format = 0;
1153 extend (&procdata, sizeof(LOCATEDB_MAGIC), 0u);
1154 nread2 = fread (procdata.original_filename+nread, 1, sizeof (LOCATEDB_MAGIC)-nread,
1155 procdata.fp);
1156 if (looking_at_gnu_locatedb(procdata.original_filename, nread+nread2))
1158 add_visitor(visit_locate02_format, NULL);
1159 format_name = "GNU LOCATE02";
1161 else /* Use the old format */
1163 int i;
1165 nread += nread2;
1166 /* Read the list of the most common bigrams in the database. */
1167 if (nread < 256)
1169 extend (&procdata, 256u, 0u);
1170 int more_read = fread (procdata.original_filename + nread, 1,
1171 256 - nread, procdata.fp);
1172 if ( (more_read + nread) != 256 )
1174 error(1, 0,
1175 _("Old-format locate database %s is "
1176 "too short to be valid"),
1177 quotearg_n_style(0, locale_quoting_style, dbfile));
1182 for (i = 0; i < 128; i++)
1184 procdata.bigram1[i] = procdata.original_filename[i << 1];
1185 procdata.bigram2[i] = procdata.original_filename[(i << 1) + 1];
1187 format_name = "old";
1188 add_visitor(visit_old_format, NULL);
1192 if (basename_only)
1193 add_visitor(visit_basename, NULL);
1195 /* Add an inspector for each pattern we're looking for. */
1196 for ( argn = 0; argn < argc; argn++ )
1198 results_were_filtered = true;
1199 pathpart = argv[argn];
1200 if (regex)
1202 struct regular_expression *p = xmalloc(sizeof(*p));
1203 const char *error_message = NULL;
1205 memset (&p->regex, 0, sizeof (p->regex));
1207 re_set_syntax(regex_options);
1208 p->regex.allocated = 100;
1209 p->regex.buffer = (unsigned char *) xmalloc (p->regex.allocated);
1210 p->regex.fastmap = NULL;
1211 p->regex.syntax = regex_options;
1212 p->regex.translate = NULL;
1214 error_message = re_compile_pattern (pathpart, strlen (pathpart),
1215 &p->regex);
1216 if (error_message)
1218 error (1, 0, "%s", error_message);
1220 else
1222 add_visitor(visit_regex, p);
1225 else if (contains_metacharacter(pathpart))
1227 if (ignore_case)
1228 add_visitor(visit_globmatch_casefold, pathpart);
1229 else
1230 add_visitor(visit_globmatch_nofold, pathpart);
1232 else
1234 /* No glob characters used. Hence we match on
1235 * _any part_ of the filename, not just the
1236 * basename. This seems odd to me, but it is the
1237 * traditional behaviour.
1238 * James Youngman <jay@gnu.org>
1240 visitfunc matcher;
1241 if (1 == MB_CUR_MAX)
1243 /* As an optimisation, use a strstr() matcher if we are
1244 * in a unibyte locale. This can give a x2 speedup in
1245 * the C locale. Some light testing reveals that
1246 * glibc's strstr() is somewhere around 40% faster than
1247 * gnulib's, so we just use strstr().
1249 matcher = ignore_case ?
1250 visit_substring_match_casefold_narrow :
1251 visit_substring_match_nocasefold_narrow;
1253 else
1255 matcher = ignore_case ?
1256 visit_substring_match_casefold_wide :
1257 visit_substring_match_nocasefold_wide;
1259 add_visitor(matcher, pathpart);
1263 pvis = lastinspector;
1265 /* We add visit_existing_*() as late as possible to reduce the
1266 * number of stat() calls.
1268 switch (do_check_existence)
1270 case ACCEPT_EXISTING:
1271 results_were_filtered = true;
1272 if (follow_symlinks) /* -L, default */
1273 add_visitor(visit_existing_follow, NULL);
1274 else /* -P */
1275 add_visitor(visit_existing_nofollow, NULL);
1276 break;
1278 case ACCEPT_NON_EXISTING:
1279 results_were_filtered = true;
1280 if (follow_symlinks) /* -L, default */
1281 add_visitor(visit_non_existing_follow, NULL);
1282 else /* -P */
1283 add_visitor(visit_non_existing_nofollow, NULL);
1284 break;
1286 case ACCEPT_EITHER: /* Default, neither -E nor -e */
1287 /* do nothing; no extra processing. */
1288 break;
1291 /* Security issue: The stats visitor must be added immediately
1292 * before the print visitor, because otherwise the -S option would
1293 * leak information about files that the caller cannot see.
1295 if (stats)
1296 add_visitor(visit_stats, &statistics);
1298 if (enable_print)
1300 if (print_quoted_filename)
1301 add_visitor(visit_justprint_quoted, NULL);
1302 else
1303 add_visitor(visit_justprint_unquoted, NULL);
1307 if (use_limit)
1308 add_visitor(visit_limit, plimit);
1309 else
1310 add_visitor(visit_count, plimit);
1313 if (argc > 1)
1315 past_pat_inspector = pvis->next;
1316 if (op_and)
1317 mainprocessor = process_and;
1318 else
1319 mainprocessor = process_or;
1321 else
1322 mainprocessor = process_simple;
1324 if (stats)
1326 printf(_("Database %s is in the %s format.\n"),
1327 procdata.dbfile,
1328 format_name);
1332 procdata.c = getc (procdata.fp);
1333 /* If we are searching for filename patterns, the inspector list
1334 * will contain an entry for each pattern for which we are searching.
1336 while ( (procdata.c != EOF) &&
1337 (VISIT_ABORT != (mainprocessor)(&procdata)) )
1339 /* Do nothing; all the work is done in the visitor functions. */
1342 if (stats)
1344 if (filesize)
1345 print_stats(argc, filesize);
1348 if (ferror (procdata.fp))
1350 error (0, errno, "%s",
1351 quotearg_n_style(0, locale_quoting_style, procdata.dbfile));
1352 return 0;
1354 return plimit->items_accepted;
1360 extern char *version_string;
1362 /* The name this program was run with. */
1363 char *program_name;
1365 static void
1366 usage (FILE *stream)
1368 fprintf (stream, _("\
1369 Usage: %s [-d path | --database=path] [-e | -E | --[non-]existing]\n\
1370 [-i | --ignore-case] [-w | --wholename] [-b | --basename] \n\
1371 [--limit=N | -l N] [-S | --statistics] [-0 | --null] [-c | --count]\n\
1372 [-P | -H | --nofollow] [-L | --follow] [-m | --mmap ] [ -s | --stdio ]\n\
1373 [-A | --all] [-p | --print] [-r | --regex ] [--regextype=TYPE]\n\
1374 [--max-database-age D] [--version] [--help]\n\
1375 pattern...\n"),
1376 program_name);
1377 fputs (_("\nReport bugs to <bug-findutils@gnu.org>.\n"), stream);
1379 enum
1381 REGEXTYPE_OPTION = CHAR_MAX + 1,
1382 MAX_DB_AGE
1386 static struct option const longopts[] =
1388 {"database", required_argument, NULL, 'd'},
1389 {"existing", no_argument, NULL, 'e'},
1390 {"non-existing", no_argument, NULL, 'E'},
1391 {"ignore-case", no_argument, NULL, 'i'},
1392 {"all", no_argument, NULL, 'A'},
1393 {"help", no_argument, NULL, 'h'},
1394 {"version", no_argument, NULL, 'v'},
1395 {"null", no_argument, NULL, '0'},
1396 {"count", no_argument, NULL, 'c'},
1397 {"wholename", no_argument, NULL, 'w'},
1398 {"wholepath", no_argument, NULL, 'w'}, /* Synonym. */
1399 {"basename", no_argument, NULL, 'b'},
1400 {"print", no_argument, NULL, 'p'},
1401 {"stdio", no_argument, NULL, 's'},
1402 {"mmap", no_argument, NULL, 'm'},
1403 {"limit", required_argument, NULL, 'l'},
1404 {"regex", no_argument, NULL, 'r'},
1405 {"regextype", required_argument, NULL, REGEXTYPE_OPTION},
1406 {"statistics", no_argument, NULL, 'S'},
1407 {"follow", no_argument, NULL, 'L'},
1408 {"nofollow", no_argument, NULL, 'P'},
1409 {"max-database-age", required_argument, NULL, MAX_DB_AGE},
1410 {NULL, no_argument, NULL, 0}
1414 static int
1415 drop_privs(void)
1417 const char * what = "failed";
1418 const uid_t orig_euid = geteuid();
1419 const uid_t uid = getuid();
1420 const gid_t gid = getgid();
1422 #if HAVE_SETGROUPS
1423 /* Use of setgroups() is restricted to root only. */
1424 if (0 == orig_euid)
1426 /* We're either root or running setuid-root. */
1427 gid_t groups[1];
1428 groups[1] = gid;
1429 if (0 != setgroups(1u, groups))
1431 what = _("failed to drop group privileges");
1432 goto fail;
1435 #endif
1437 /* Drop any setuid privileges */
1438 if (uid != orig_euid)
1440 if (0 == uid)
1442 /* We're really root anyway, but are setuid to something else. Leave it. */
1444 else
1446 errno = 0;
1447 if (0 != setuid(getuid()))
1449 what = _("failed to drop setuid privileges");
1450 goto fail;
1453 /* Defend against the case where the attacker runs us with the
1454 * capability to call setuid() turned off, which on some systems
1455 * will cause the above attempt to drop privileges fail (leaving us
1456 * privileged).
1458 else
1460 /* Check that we can no longer switch bask to root */
1461 if (0 == setuid(0))
1463 what = _("Failed to fully drop privileges");
1464 /* The errno value here is not interesting (since
1465 * the system call we are complaining about
1466 * succeeded when we wanted it to fail). Arrange
1467 * for the call to error() not to print the errno
1468 * value by setting errno=0.
1470 errno = 0;
1471 goto fail;
1477 /* Drop any setgid privileges */
1478 errno = 0;
1479 if (0 != setgid(gid))
1481 what = _("failed to drop setgid privileges");
1482 goto fail;
1485 /* success. */
1486 return 0;
1488 fail:
1489 error(1, errno, "%s",
1490 quotearg_n_style(0, locale_quoting_style, what));
1491 abort();
1492 kill(0, SIGKILL);
1493 _exit(1);
1494 /*NOTREACHED*/
1495 /* ... we hope. */
1496 for (;;)
1498 /* deliberate infinite loop */
1502 static int
1503 opendb(const char *name)
1505 int fd = open(name, O_RDONLY
1506 #if defined(O_LARGEFILE)
1507 |O_LARGEFILE
1508 #endif
1510 if (fd >= 0)
1512 /* Make sure it won't survive an exec */
1513 if (0 != fcntl(fd, F_SETFD, FD_CLOEXEC))
1515 close(fd);
1516 fd = -1;
1519 return fd;
1523 dolocate (int argc, char **argv, int secure_db_fd)
1525 char *dbpath;
1526 unsigned long int found = 0uL;
1527 int optc;
1528 int ignore_case = 0;
1529 int print = 0;
1530 int just_count = 0;
1531 int basename_only = 0;
1532 int use_limit = 0;
1533 int regex = 0;
1534 int regex_options = RE_SYNTAX_EMACS;
1535 int stats = 0;
1536 int op_and = 0;
1537 const char *e;
1538 FILE *fp;
1539 int they_chose_db = 0;
1540 bool did_stdin = false; /* Set to prevent rereading stdin. */
1542 program_name = argv[0];
1544 #ifdef HAVE_SETLOCALE
1545 setlocale (LC_ALL, "");
1546 #endif
1547 bindtextdomain (PACKAGE, LOCALEDIR);
1548 textdomain (PACKAGE);
1549 atexit (close_stdout);
1551 limits.limit = 0;
1552 limits.items_accepted = 0;
1554 quote_opts = clone_quoting_options (NULL);
1555 print_quoted_filename = true;
1557 /* We cannot simultaneously trust $LOCATE_PATH and use the
1558 * setuid-access-controlled database,, since that could cause a leak
1559 * of private data.
1561 dbpath = getenv ("LOCATE_PATH");
1562 if (dbpath)
1564 they_chose_db = 1;
1567 check_existence = ACCEPT_EITHER;
1569 while ((optc = getopt_long (argc, argv, "Abcd:eEil:prsm0SwHPL", longopts, (int *) 0)) != -1)
1570 switch (optc)
1572 case '0':
1573 separator = 0;
1574 print_quoted_filename = false; /* print filename 'raw'. */
1575 break;
1577 case 'A':
1578 op_and = 1;
1579 break;
1581 case 'b':
1582 basename_only = 1;
1583 break;
1585 case 'c':
1586 just_count = 1;
1587 break;
1589 case 'd':
1590 dbpath = optarg;
1591 they_chose_db = 1;
1592 break;
1594 case 'e':
1595 check_existence = ACCEPT_EXISTING;
1596 break;
1598 case 'E':
1599 check_existence = ACCEPT_NON_EXISTING;
1600 break;
1602 case 'i':
1603 ignore_case = 1;
1604 break;
1606 case 'h':
1607 usage (stdout);
1608 return 0;
1610 case MAX_DB_AGE:
1611 /* XXX: nothing in the test suite for this option. */
1612 set_max_db_age(optarg);
1613 break;
1615 case 'p':
1616 print = 1;
1617 break;
1619 case 'v':
1620 printf (_("GNU locate version %s\n"), version_string);
1621 printf (_("Built using GNU gnulib version %s\n"), gnulib_version);
1622 return 0;
1624 case 'w':
1625 basename_only = 0;
1626 break;
1628 case 'r':
1629 regex = 1;
1630 break;
1632 case REGEXTYPE_OPTION:
1633 regex_options = get_regex_type(optarg);
1634 break;
1636 case 'S':
1637 stats = 1;
1638 break;
1640 case 'L':
1641 follow_symlinks = 1;
1642 break;
1644 /* In find, -P and -H differ in the way they handle paths
1645 * given on the command line. This is not relevant for
1646 * locate, but the -H option is supported because it is
1647 * probably more intuitive to do so.
1649 case 'P':
1650 case 'H':
1651 follow_symlinks = 0;
1652 break;
1654 case 'l':
1656 char *end = optarg;
1657 strtol_error err = xstrtoumax(optarg, &end, 10, &limits.limit, NULL);
1658 if (LONGINT_OK != err)
1660 STRTOL_FATAL_ERROR(optarg, _("argument to --limit"), err);
1662 use_limit = 1;
1664 break;
1666 case 's': /* use stdio */
1667 case 'm': /* use mmap */
1668 /* These options are implemented simply for
1669 * compatibility with FreeBSD
1671 break;
1673 default:
1674 usage (stderr);
1675 return 1;
1679 /* If the user gave the -d option or set LOCATE_PATH,
1680 * relinquish access to the secure database.
1682 if (they_chose_db)
1684 if (secure_db_fd >= 0)
1686 close(secure_db_fd);
1687 secure_db_fd = -1;
1691 if (!just_count && !stats)
1692 print = 1;
1694 if (stats)
1696 if (optind == argc)
1697 use_limit = 0;
1699 else
1701 if (!just_count && optind == argc)
1703 usage (stderr);
1704 return 1;
1709 if (1 == isatty(STDOUT_FILENO))
1710 stdout_is_a_tty = true;
1711 else
1712 stdout_is_a_tty = false;
1714 if (they_chose_db)
1715 next_element (dbpath, 0); /* Initialize. */
1717 /* Bail out early if limit already reached. */
1718 while (!use_limit || limits.limit > limits.items_accepted)
1720 struct stat st;
1721 int fd;
1722 off_t filesize;
1724 statistics.compressed_bytes =
1725 statistics.total_filename_count =
1726 statistics.total_filename_length =
1727 statistics.whitespace_count =
1728 statistics.newline_count =
1729 statistics.highbit_filename_count = 0u;
1731 if (they_chose_db)
1733 /* Take the next element from the list of databases */
1734 e = next_element ((char *) NULL, 0);
1735 if (NULL == e)
1736 break;
1738 if (0 == strcmp (e, "-"))
1740 if (did_stdin)
1742 error (0, 0,
1743 _("warning: the locate database can only be read from stdin once."));
1744 return 0;
1746 else
1748 e = "<stdin>";
1749 fd = 0;
1750 did_stdin = true;
1753 else
1755 if (0 == strlen(e) || 0 == strcmp(e, "."))
1757 e = LOCATE_DB;
1760 /* open the database */
1761 fd = opendb(e);
1762 if (fd < 0)
1764 error (0, errno, "%s",
1765 quotearg_n_style(0, locale_quoting_style, e));
1766 return 0;
1770 else
1772 if (-1 == secure_db_fd)
1774 /* Already searched the database, it's time to exit the loop */
1775 break;
1777 else
1779 e = selected_secure_db;
1780 fd = secure_db_fd;
1781 secure_db_fd = -1;
1785 /* Check the database to see if it is old. */
1786 if (fstat(fd, &st))
1788 error (0, errno, "%s",
1789 quotearg_n_style(0, locale_quoting_style, e));
1790 /* continue anyway */
1791 filesize = (off_t)0;
1793 else
1795 time_t now;
1797 filesize = st.st_size;
1799 if ((time_t)-1 == time(&now))
1801 /* If we can't tell the time, we don't know how old the
1802 * database is. But since the message is just advisory,
1803 * we continue anyway.
1805 error (0, errno, "time system call");
1807 else
1809 double age = difftime(now, st.st_mtime);
1810 double warn_seconds = SECONDS_PER_UNIT * warn_number_units;
1811 if (age > warn_seconds)
1813 /* For example:
1814 warning: database `fred' is more than 8 days old (actual age is 10 days)*/
1815 error (0, 0,
1816 _("warning: database %s is more than %d %s old (actual age is %.1f %s)"),
1817 quotearg_n_style(0, locale_quoting_style, e),
1818 warn_number_units, _(warn_name_units),
1819 (age/(double)SECONDS_PER_UNIT), _(warn_name_units));
1824 fp = fdopen(fd, "r");
1825 if (NULL == fp)
1827 error (0, errno, "%s",
1828 quotearg_n_style(0, locale_quoting_style, e));
1829 return 0;
1832 /* Search this database for all patterns simultaneously */
1833 found = search_one_database (argc - optind, &argv[optind],
1834 e, fp, filesize,
1835 ignore_case, print, basename_only,
1836 use_limit, &limits, stats,
1837 op_and, regex, regex_options);
1839 /* Close the databsase (even if it is stdin) */
1840 if (fclose (fp) == EOF)
1842 error (0, errno, "%s",
1843 quotearg_n_style(0, locale_quoting_style, e));
1844 return 0;
1848 if (just_count)
1850 printf("%ld\n", found);
1853 if (found || (use_limit && (limits.limit==0)) || stats )
1854 return 0;
1855 else
1856 return 1;
1859 #define ARRAYSIZE(a) (sizeof(a)/sizeof(a[0]))
1860 static int
1861 open_secure_db(void)
1863 int fd, i;
1865 const char * secure_db_list[] =
1867 LOCATE_DB,
1868 "/var/lib/slocate/slocate.db",
1869 NULL
1871 for (i=0; secure_db_list[i]; ++i)
1873 fd = opendb(secure_db_list[i]);
1874 if (fd >= 0)
1876 selected_secure_db = secure_db_list[i];
1877 return fd;
1880 return -1;
1884 main (int argc, char **argv)
1886 int dbfd = open_secure_db();
1887 drop_privs();
1889 return dolocate(argc, argv, dbfd);