Implemented --max-database-age
[findutils.git] / locate / locate.c
blob8c992728a6cc76dd7feffcae377dc949f80adefc
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 <sys/stat.h>
69 #include <time.h>
70 #include <fnmatch.h>
71 #include <getopt.h>
72 #include <xstrtol.h>
74 /* The presence of unistd.h is assumed by gnulib these days, so we
75 * might as well assume it too.
77 /* We need <unistd.h> for isatty(). */
78 #include <unistd.h>
80 #if HAVE_FCNTL_H
81 /* We use fcntl() */
82 #include <fcntl.h>
83 #endif
85 #define NDEBUG
86 #include <assert.h>
88 #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
89 #include <string.h>
90 #else
91 #include <strings.h>
92 #define strchr index
93 #endif
95 #ifdef STDC_HEADERS
96 #include <stdlib.h>
97 #endif
99 #ifdef HAVE_ERRNO_H
100 #include <errno.h>
101 #else
102 extern int errno;
103 #endif
105 #ifdef HAVE_LOCALE_H
106 #include <locale.h>
107 #endif
109 #if ENABLE_NLS
110 # include <libintl.h>
111 # define _(Text) gettext (Text)
112 #else
113 # define _(Text) Text
114 #define textdomain(Domain)
115 #define bindtextdomain(Package, Directory)
116 #endif
117 #ifdef gettext_noop
118 # define N_(String) gettext_noop (String)
119 #else
120 /* We used to use (String) instead of just String, but apparentl;y ISO C
121 * doesn't allow this (at least, that's what HP said when someone reported
122 * this as a compiler bug). This is HP case number 1205608192. See
123 * also http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11250 (which references
124 * ANSI 3.5.7p14-15). The Intel icc compiler also rejects constructs
125 * like: static const char buf[] = ("string");
127 # define N_(String) String
128 #endif
130 #include "locatedb.h"
131 #include <getline.h>
132 #include "../gnulib/lib/xalloc.h"
133 #include "../gnulib/lib/error.h"
134 #include "../gnulib/lib/human.h"
135 #include "dirname.h"
136 #include "closeout.h"
137 #include "nextelem.h"
138 #include "regex.h"
139 #include "quote.h"
140 #include "quotearg.h"
141 #include "printquoted.h"
142 #include "regextype.h"
145 /* Note that this evaluates C many times. */
146 #ifdef _LIBC
147 # define TOUPPER(Ch) toupper (Ch)
148 # define TOLOWER(Ch) tolower (Ch)
149 #else
150 # define TOUPPER(Ch) (islower (Ch) ? toupper (Ch) : (Ch))
151 # define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))
152 #endif
154 /* typedef enum {false, true} boolean; */
156 /* Warn if a database is older than this. 8 days allows for a weekly
157 update that takes up to a day to perform. */
158 static unsigned int warn_number_units = 8;
160 /* Printable name of units used in WARN_SECONDS */
161 static const char warn_name_units[] = N_("days");
162 #define SECONDS_PER_UNIT (60 * 60 * 24)
164 enum visit_result
166 VISIT_CONTINUE = 1, /* please call the next visitor */
167 VISIT_ACCEPTED = 2, /* accepted, call no futher callbacks for this file */
168 VISIT_REJECTED = 4, /* rejected, process next file. */
169 VISIT_ABORT = 8 /* rejected, process no more files. */
172 enum ExistenceCheckType
174 ACCEPT_EITHER, /* Corresponds to lack of -E/-e option */
175 ACCEPT_EXISTING, /* Corresponds to option -e */
176 ACCEPT_NON_EXISTING /* Corresponds to option -E */
179 /* Check for existence of files before printing them out? */
180 enum ExistenceCheckType check_existence = ACCEPT_EITHER;
182 static int follow_symlinks = 1;
184 /* What to separate the results with. */
185 static int separator = '\n';
187 static struct quoting_options * quote_opts = NULL;
188 static bool stdout_is_a_tty;
189 static bool print_quoted_filename;
190 static bool results_were_filtered;
192 static char* slocate_db_pathname = "/var/lib/slocate/slocate.db";
194 static const char *selected_secure_db = NULL;
197 /* Change the number of days old the database can be
198 * before we complain about it.
200 static void
201 set_max_db_age(const char *s)
203 char *end;
204 unsigned long int val;
205 /* XXX: we ignore the case where the input is negative, which is allowed(!). */
207 if (0 == *s)
209 error(1, 0,
210 _("The argument argument for option --max-database-age must not be empty"),
215 /* We have to set errno here, otherwise when the function returns ULONG_MAX,
216 * we would not be able to tell if that is the correct answer, or whether it
217 * signifies an error.
219 errno = 0;
220 val = strtoul(s, &end, 10);
222 /* Diagnose number too large, non-numbes and trailing junk. */
223 if ((ULONG_MAX == val && ERANGE == errno) ||
224 (0 == val && EINVAL == errno))
226 error(1, errno,
227 _("Invalid argument `%s' for option --max-database-age"),
230 else if (*end)
232 /* errno wasn't set, don't print its message */
233 error(1, 0,
234 _("Invalid argument `%s' for option --max-database-age"),
237 else
239 warn_number_units = val;
245 /* Read in a 16-bit int, high byte first (network byte order). */
247 static short
248 get_short (FILE *fp)
251 register short x;
253 x = (signed char) fgetc (fp) << 8;
254 x |= (fgetc (fp) & 0xff);
255 return x;
258 const char * const metacharacters = "*?[]\\";
260 /* Return nonzero if S contains any shell glob characters.
262 static int
263 contains_metacharacter(const char *s)
265 if (NULL == strpbrk(s, metacharacters))
266 return 0;
267 else
268 return 1;
271 /* locate_read_str()
273 * Read bytes from FP into the buffer at offset OFFSET in (*BUF),
274 * until we reach DELIMITER or end-of-file. We reallocate the buffer
275 * as necessary, altering (*BUF) and (*SIZ) as appropriate. No assumption
276 * is made regarding the content of the data (i.e. the implementation is
277 * 8-bit clean, the only delimiter is DELIMITER).
279 * Written Fri May 23 18:41:16 2003 by James Youngman, because getstr()
280 * has been removed from gnulib.
282 * We call the function locate_read_str() to avoid a name clash with the curses
283 * function getstr().
285 static int
286 locate_read_str(char **buf, size_t *siz, FILE *fp, int delimiter, int offs)
288 char * p = NULL;
289 size_t sz = 0;
290 int nread;
291 size_t needed;
293 nread = getdelim(&p, &sz, delimiter, fp);
294 if (nread >= 0)
296 assert(p != NULL);
298 needed = offs + nread + 1u;
299 if (needed > (*siz))
301 char *pnew = realloc(*buf, needed);
302 if (NULL == pnew)
304 return -1; /* FAIL */
306 else
308 *siz = needed;
309 *buf = pnew;
312 memcpy((*buf)+offs, p, nread);
313 free(p);
315 return nread;
319 static void
320 lc_strcpy(char *dest, const char *src)
322 while (*src)
324 *dest++ = TOLOWER(*src);
325 ++src;
327 *dest = 0;
330 struct locate_limits
332 uintmax_t limit;
333 uintmax_t items_accepted;
335 static struct locate_limits limits;
338 struct locate_stats
340 uintmax_t compressed_bytes;
341 uintmax_t total_filename_count;
342 uintmax_t total_filename_length;
343 uintmax_t whitespace_count;
344 uintmax_t newline_count;
345 uintmax_t highbit_filename_count;
347 static struct locate_stats statistics;
350 struct stringbuf
352 char *buffer;
353 size_t buffersize;
354 size_t *preqlen;
356 static struct stringbuf casebuf;
359 struct casefolder
361 const char *pattern;
362 struct stringbuf *pbuf;
365 struct regular_expression
367 struct re_pattern_buffer regex; /* for --regex */
371 struct process_data
373 int c; /* An input byte. */
374 char itemcount; /* Indicates we're at the beginning of an slocate db. */
375 int count; /* The length of the prefix shared with the previous database entry. */
376 int len;
377 char *original_filename; /* The current input database entry. */
378 size_t pathsize; /* Amount allocated for it. */
379 char *munged_filename; /* path or base_name(path) */
380 FILE *fp; /* The pathname database. */
381 const char *dbfile; /* Its name, or "<stdin>" */
382 int slocatedb_format; /* Allows us to cope with slocate's format variant */
383 /* for the old database format,
384 the first and second characters of the most common bigrams. */
385 char bigram1[128];
386 char bigram2[128];
390 typedef int (*visitfunc)(struct process_data *procdata,
391 void *context);
393 struct visitor
395 visitfunc inspector;
396 void * context;
397 struct visitor *next;
401 static struct visitor *inspectors = NULL;
402 static struct visitor *lastinspector = NULL;
403 static struct visitor *past_pat_inspector = NULL;
405 /* 0 or 1 pattern(s) */
406 static int
407 process_simple(struct process_data *procdata)
409 int result = VISIT_CONTINUE;
410 const struct visitor *p = inspectors;
412 while ( ((VISIT_CONTINUE | VISIT_ACCEPTED) & result) && (NULL != p) )
414 result = (p->inspector)(procdata, p->context);
415 p = p->next;
418 return result;
421 /* Accept if any pattern matches. */
422 static int
423 process_or (struct process_data *procdata)
425 int result = VISIT_CONTINUE;
426 const struct visitor *p = inspectors;
428 while ( ((VISIT_CONTINUE | VISIT_REJECTED) & result) && (past_pat_inspector != p) )
430 result = (p->inspector)(procdata, p->context);
431 p = p->next;
434 if (result == VISIT_CONTINUE)
435 result = VISIT_REJECTED;
436 if (result & (VISIT_ABORT | VISIT_REJECTED))
437 return result;
439 p = past_pat_inspector;
440 result = VISIT_CONTINUE;
442 while ( (VISIT_CONTINUE == result) && (NULL != p) )
444 result = (p->inspector)(procdata, p->context);
445 p = p->next;
448 if (VISIT_CONTINUE == result)
449 return VISIT_ACCEPTED;
450 else
451 return result;
454 /* Accept if all pattern match. */
455 static int
456 process_and (struct process_data *procdata)
458 int result = VISIT_CONTINUE;
459 const struct visitor *p = inspectors;
461 while ( ((VISIT_CONTINUE | VISIT_ACCEPTED) & result) && (past_pat_inspector != p) )
463 result = (p->inspector)(procdata, p->context);
464 p = p->next;
467 if (result == VISIT_CONTINUE)
468 result = VISIT_REJECTED;
469 if (result & (VISIT_ABORT | VISIT_REJECTED))
470 return result;
472 p = past_pat_inspector;
473 result = VISIT_CONTINUE;
475 while ( (VISIT_CONTINUE == result) && (NULL != p) )
477 result = (p->inspector)(procdata, p->context);
478 p = p->next;
481 if (VISIT_CONTINUE == result)
482 return VISIT_ACCEPTED;
483 else
484 return result;
487 typedef int (*processfunc)(struct process_data *procdata);
489 static processfunc mainprocessor = NULL;
491 static void
492 add_visitor(visitfunc fn, void *context)
494 struct visitor *p = xmalloc(sizeof(struct visitor));
495 p->inspector = fn;
496 p->context = context;
497 p->next = NULL;
499 if (NULL == lastinspector)
501 lastinspector = inspectors = p;
503 else
505 lastinspector->next = p;
506 lastinspector = p;
512 static int
513 visit_justprint_quoted(struct process_data *procdata, void *context)
515 (void) context;
516 print_quoted (stdout, quote_opts, stdout_is_a_tty,
517 "%s",
518 procdata->original_filename);
519 putchar(separator);
520 return VISIT_CONTINUE;
523 static int
524 visit_justprint_unquoted(struct process_data *procdata, void *context)
526 (void) context;
527 fputs(procdata->original_filename, stdout);
528 putchar(separator);
529 return VISIT_CONTINUE;
532 static int
533 visit_old_format(struct process_data *procdata, void *context)
535 register char *s;
536 (void) context;
538 /* Get the offset in the path where this path info starts. */
539 if (procdata->c == LOCATEDB_OLD_ESCAPE)
540 procdata->count += getw (procdata->fp) - LOCATEDB_OLD_OFFSET;
541 else
542 procdata->count += procdata->c - LOCATEDB_OLD_OFFSET;
544 /* Overlay the old path with the remainder of the new. */
545 for (s = procdata->original_filename + procdata->count;
546 (procdata->c = getc (procdata->fp)) > LOCATEDB_OLD_ESCAPE;)
547 if (procdata->c < 0200)
548 *s++ = procdata->c; /* An ordinary character. */
549 else
551 /* Bigram markers have the high bit set. */
552 procdata->c &= 0177;
553 *s++ = procdata->bigram1[procdata->c];
554 *s++ = procdata->bigram2[procdata->c];
556 *s-- = '\0';
558 procdata->munged_filename = procdata->original_filename;
560 return VISIT_CONTINUE;
564 static int
565 visit_locate02_format(struct process_data *procdata, void *context)
567 register char *s;
568 int nread;
569 (void) context;
571 if (procdata->slocatedb_format)
573 if (procdata->itemcount == 0)
575 ungetc(procdata->c, procdata->fp);
576 procdata->count = 0;
577 procdata->len = 0;
579 else if (procdata->itemcount == 1)
581 procdata->count = procdata->len-1;
583 else
585 if (procdata->c == LOCATEDB_ESCAPE)
586 procdata->count += (short)get_short (procdata->fp);
587 else if (procdata->c > 127)
588 procdata->count += procdata->c - 256;
589 else
590 procdata->count += procdata->c;
593 else
595 if (procdata->c == LOCATEDB_ESCAPE)
596 procdata->count += (short)get_short (procdata->fp);
597 else if (procdata->c > 127)
598 procdata->count += procdata->c - 256;
599 else
600 procdata->count += procdata->c;
603 if (procdata->count > procdata->len || procdata->count < 0)
605 /* This should not happen generally , but since we're
606 * reading in data which is outside our control, we
607 * cannot prevent it.
609 error(1, 0, _("locate database `%s' is corrupt or invalid"), procdata->dbfile);
612 /* Overlay the old path with the remainder of the new. */
613 nread = locate_read_str (&procdata->original_filename, &procdata->pathsize,
614 procdata->fp, 0, procdata->count);
615 if (nread < 0)
616 return VISIT_ABORT;
617 procdata->c = getc (procdata->fp);
618 procdata->len = procdata->count + nread;
619 s = procdata->original_filename + procdata->len - 1; /* Move to the last char in path. */
620 assert (s[0] != '\0');
621 assert (s[1] == '\0'); /* Our terminator. */
622 assert (s[2] == '\0'); /* Added by locate_read_str. */
624 procdata->munged_filename = procdata->original_filename;
626 if (procdata->slocatedb_format)
628 /* Don't increment indefinitely, it might overflow. */
629 if (procdata->itemcount < 6)
631 ++(procdata->itemcount);
636 return VISIT_CONTINUE;
639 static int
640 visit_basename(struct process_data *procdata, void *context)
642 (void) context;
643 procdata->munged_filename = base_name(procdata->original_filename);
645 return VISIT_CONTINUE;
649 static int
650 visit_casefold(struct process_data *procdata, void *context)
652 struct stringbuf *b = context;
654 if (*b->preqlen+1 > b->buffersize)
656 b->buffer = xrealloc(b->buffer, *b->preqlen+1); /* XXX: consider using extendbuf(). */
657 b->buffersize = *b->preqlen+1;
659 lc_strcpy(b->buffer, procdata->munged_filename);
661 return VISIT_CONTINUE;
664 /* visit_existing_follow implements -L -e */
665 static int
666 visit_existing_follow(struct process_data *procdata, void *context)
668 struct stat st;
669 (void) context;
671 /* munged_filename has been converted in some way (to lower case,
672 * or is just the base name of the file), and original_filename has not.
673 * Hence only original_filename is still actually the name of the file
674 * whose existence we would need to check.
676 if (stat(procdata->original_filename, &st) != 0)
678 return VISIT_REJECTED;
680 else
682 return VISIT_CONTINUE;
686 /* visit_non_existing_follow implements -L -E */
687 static int
688 visit_non_existing_follow(struct process_data *procdata, void *context)
690 struct stat st;
691 (void) context;
693 /* munged_filename has been converted in some way (to lower case,
694 * or is just the base name of the file), and original_filename has not.
695 * Hence only original_filename is still actually the name of the file
696 * whose existence we would need to check.
698 if (stat(procdata->original_filename, &st) == 0)
700 return VISIT_REJECTED;
702 else
704 return VISIT_CONTINUE;
708 /* visit_existing_nofollow implements -P -e */
709 static int
710 visit_existing_nofollow(struct process_data *procdata, void *context)
712 struct stat st;
713 (void) context;
715 /* munged_filename has been converted in some way (to lower case,
716 * or is just the base name of the file), and original_filename has not.
717 * Hence only original_filename is still actually the name of the file
718 * whose existence we would need to check.
720 if (lstat(procdata->original_filename, &st) != 0)
722 return VISIT_REJECTED;
724 else
726 return VISIT_CONTINUE;
730 /* visit_non_existing_nofollow implements -P -E */
731 static int
732 visit_non_existing_nofollow(struct process_data *procdata, void *context)
734 struct stat st;
735 (void) context;
737 /* munged_filename has been converted in some way (to lower case,
738 * or is just the base name of the file), and original_filename has not.
739 * Hence only original_filename is still actually the name of the file
740 * whose existence we would need to check.
742 if (lstat(procdata->original_filename, &st) == 0)
744 return VISIT_REJECTED;
746 else
748 return VISIT_CONTINUE;
752 static int
753 visit_substring_match_nocasefold(struct process_data *procdata, void *context)
755 const char *pattern = context;
757 if (NULL != strstr(procdata->munged_filename, pattern))
758 return VISIT_ACCEPTED;
759 else
760 return VISIT_REJECTED;
763 static int
764 visit_substring_match_casefold(struct process_data *procdata, void *context)
766 const struct casefolder * p = context;
767 const struct stringbuf * b = p->pbuf;
768 (void) procdata;
770 if (NULL != strstr(b->buffer, p->pattern))
771 return VISIT_ACCEPTED;
772 else
773 return VISIT_REJECTED;
777 static int
778 visit_globmatch_nofold(struct process_data *procdata, void *context)
780 const char *glob = context;
781 if (fnmatch(glob, procdata->munged_filename, 0) != 0)
782 return VISIT_REJECTED;
783 else
784 return VISIT_ACCEPTED;
788 static int
789 visit_globmatch_casefold(struct process_data *procdata, void *context)
791 const char *glob = context;
792 if (fnmatch(glob, procdata->munged_filename, FNM_CASEFOLD) != 0)
793 return VISIT_REJECTED;
794 else
795 return VISIT_ACCEPTED;
799 static int
800 visit_regex(struct process_data *procdata, void *context)
802 struct regular_expression *p = context;
803 const size_t len = strlen(procdata->munged_filename);
805 int rv = re_search (&p->regex, procdata->munged_filename,
806 len, 0, len,
807 (struct re_registers *) NULL);
808 if (rv < 0)
810 return VISIT_REJECTED; /* no match (-1), or internal error (-2) */
812 else
814 return VISIT_ACCEPTED; /* match */
819 static int
820 visit_stats(struct process_data *procdata, void *context)
822 struct locate_stats *p = context;
823 size_t len = strlen(procdata->original_filename);
824 const char *s;
825 int highbit, whitespace, newline;
827 ++(p->total_filename_count);
828 p->total_filename_length += len;
830 highbit = whitespace = newline = 0;
831 for (s=procdata->original_filename; *s; ++s)
833 if ( (int)(*s) & 128 )
834 highbit = 1;
835 if ('\n' == *s)
837 newline = whitespace = 1;
839 else if (isspace((unsigned char)*s))
841 whitespace = 1;
845 if (highbit)
846 ++(p->highbit_filename_count);
847 if (whitespace)
848 ++(p->whitespace_count);
849 if (newline)
850 ++(p->newline_count);
852 return VISIT_CONTINUE;
856 static int
857 visit_limit(struct process_data *procdata, void *context)
859 struct locate_limits *p = context;
861 (void) procdata;
863 if (++p->items_accepted >= p->limit)
864 return VISIT_ABORT;
865 else
866 return VISIT_CONTINUE;
869 static int
870 visit_count(struct process_data *procdata, void *context)
872 struct locate_limits *p = context;
874 (void) procdata;
876 ++p->items_accepted;
877 return VISIT_CONTINUE;
880 /* Emit the statistics.
882 static void
883 print_stats(int argc, size_t database_file_size)
885 char hbuf[LONGEST_HUMAN_READABLE + 1];
887 printf(_("Locate database size: %s bytes\n"),
888 human_readable ((uintmax_t) database_file_size,
889 hbuf, human_ceiling, 1, 1));
891 printf( (results_were_filtered ?
892 _("Matching Filenames: %s ") :
893 _("All Filenames: %s ")),
894 human_readable (statistics.total_filename_count,
895 hbuf, human_ceiling, 1, 1));
896 printf(_("with a cumulative length of %s bytes"),
897 human_readable (statistics.total_filename_length,
898 hbuf, human_ceiling, 1, 1));
900 printf(_("\n\tof which %s contain whitespace, "),
901 human_readable (statistics.whitespace_count,
902 hbuf, human_ceiling, 1, 1));
903 printf(_("\n\t%s contain newline characters, "),
904 human_readable (statistics.newline_count,
905 hbuf, human_ceiling, 1, 1));
906 printf(_("\n\tand %s contain characters with the high bit set.\n"),
907 human_readable (statistics.highbit_filename_count,
908 hbuf, human_ceiling, 1, 1));
910 if (!argc)
912 if (results_were_filtered)
914 printf(_("Some filenames may have been filtered out, "
915 "so we cannot compute the compression ratio.\n"));
917 else
919 if (statistics.total_filename_length)
921 printf(_("Compression ratio %4.2f%%\n"),
922 100.0 * ((double)statistics.total_filename_length
923 - (double) database_file_size)
924 / (double) statistics.total_filename_length);
926 else
928 printf(_("Compression ratio is undefined\n"));
932 printf("\n");
936 * Return nonzero if the data we read in indicates that we are
937 * looking at a LOCATE02 locate database.
939 static int
940 looking_at_gnu_locatedb (const char *data, size_t len)
942 if (len < sizeof (LOCATEDB_MAGIC))
943 return 0;
944 else if (0 == memcmp (data, LOCATEDB_MAGIC, sizeof (LOCATEDB_MAGIC)))
945 return 1; /* We saw the magic byte sequence */
946 else
947 return 0;
951 * Return nonzero if the data we read in indicates that we are
952 * looking at an slocate database.
954 static int
955 looking_at_slocate_locatedb (const char *filename,
956 const char *data,
957 size_t len,
958 int *seclevel)
960 char slocate_magic[] = "1";
961 size_t lenwanted = sizeof(slocate_magic);
962 assert(len <= 2);
964 if (len < 2)
966 return 0;
968 else
970 /* Check that the magic number is a one-byte string */
971 if (0 == data[1])
973 if (isdigit((unsigned char)data[0]))
975 /* looks promising. */
976 *seclevel = (data[0] - '0');
978 if (*seclevel > 1)
980 /* Hmm, well it's probably an slocate database
981 * of some awsomely huge security level, like 2.
982 * We don't know how to handle those.
984 error(0, 0,
985 _("locate database `%s' looks like an slocate "
986 "database but it seems to have security level %c, "
987 "which GNU findutils does not currently support"),
988 filename, data[1]);
989 return 1;
991 else
993 return 1;
997 else
999 /* Definitely not slocate. */
1000 return 0;
1005 /* Print or count the entries in DBFILE that match shell globbing patterns in
1006 ARGV. Return the number of entries matched. */
1008 static unsigned long
1009 search_one_database (int argc,
1010 char **argv,
1011 const char *dbfile,
1012 FILE *fp,
1013 off_t filesize,
1014 int ignore_case,
1015 int enable_print,
1016 int basename_only,
1017 int use_limit,
1018 struct locate_limits *plimit,
1019 int stats,
1020 int op_and,
1021 int regex,
1022 int regex_options)
1024 char *pathpart; /* A pattern to consider. */
1025 int argn; /* Index to current pattern in argv. */
1026 int need_fold; /* Set when folding and any pattern is non-glob. */
1027 int nread; /* number of bytes read from an entry. */
1028 struct process_data procdata; /* Storage for data shared with visitors. */
1029 int slocate_seclevel;
1030 struct visitor* pvis; /* temp for determining past_pat_inspector. */
1031 const char *format_name;
1032 enum ExistenceCheckType do_check_existence;
1035 /* We may turn on existence checking for a given database.
1036 * We ensure that we can return to the previous behaviour
1037 * by using two variables, do_check_existence (which we act on)
1038 * and check_existence (whcih indicates the default before we
1039 * adjust it on the bassis of what kind of database we;re using
1041 do_check_existence = check_existence;
1044 if (ignore_case)
1045 regex_options |= RE_ICASE;
1047 procdata.len = procdata.count = 0;
1048 procdata.slocatedb_format = 0;
1049 procdata.itemcount = 0;
1051 procdata.dbfile = dbfile;
1052 procdata.fp = fp;
1054 /* Set up the inspection regime */
1055 inspectors = NULL;
1056 lastinspector = NULL;
1057 past_pat_inspector = NULL;
1058 results_were_filtered = false;
1060 procdata.pathsize = 1026; /* Increased as necessary by locate_read_str. */
1061 procdata.original_filename = xmalloc (procdata.pathsize);
1064 nread = fread (procdata.original_filename, 1, SLOCATE_DB_MAGIC_LEN,
1065 procdata.fp);
1066 if (looking_at_slocate_locatedb(procdata.dbfile,
1067 procdata.original_filename,
1068 nread,
1069 &slocate_seclevel))
1071 error(0, 0,
1072 _("`%s' is an slocate database. "
1073 "Support for these is new, expect problems for now "
1074 "(you are, after all, using the CVS code)."),
1075 procdata.dbfile);
1077 /* slocate also uses frcode, but with a different header.
1078 * We handle the header here and then work with the data
1079 * in the normal way.
1081 if (slocate_seclevel > 1)
1083 /* We don't know what those security levels mean,
1084 * so do nothing further
1086 return 0;
1088 else if (slocate_seclevel > 0)
1090 /* Don't show the filenames to the user if they don't exist.
1091 * Showing stats is safe since filenames are only counted
1092 * after the existence check
1094 if (ACCEPT_NON_EXISTING == check_existence)
1096 /* Do not allow the user to see a list of filenames that they
1097 * cannot stat().
1099 error(0, 0,
1100 _("You specified the -E option, but that option "
1101 "cannot be used with slocate-format databases "
1102 "with a non-zero security level. No results will be "
1103 "generated for this database.\n"));
1104 return 0;
1106 if (ACCEPT_EXISTING != do_check_existence)
1108 if (enable_print || stats)
1110 error(0, 0,
1111 _("`%s' is an slocate database. "
1112 "Turning on the '-e' option."),
1113 procdata.dbfile);
1115 do_check_existence = ACCEPT_EXISTING;
1118 add_visitor(visit_locate02_format, NULL);
1119 format_name = "slocate";
1120 procdata.slocatedb_format = 1;
1122 else
1124 int nread2;
1126 procdata.slocatedb_format = 0;
1127 nread2 = fread (procdata.original_filename+nread, 1, sizeof (LOCATEDB_MAGIC)-nread,
1128 procdata.fp);
1129 if (looking_at_gnu_locatedb(procdata.original_filename, nread+nread2))
1131 add_visitor(visit_locate02_format, NULL);
1132 format_name = "GNU LOCATE02";
1134 else /* Use the old format */
1136 int i;
1138 nread += nread2;
1139 /* Read the list of the most common bigrams in the database. */
1140 if (nread < 256)
1142 int more_read = fread (procdata.original_filename + nread, 1,
1143 256 - nread, procdata.fp);
1144 /* XXX: check more_read+nread! */
1147 for (i = 0; i < 128; i++)
1149 procdata.bigram1[i] = procdata.original_filename[i << 1];
1150 procdata.bigram2[i] = procdata.original_filename[(i << 1) + 1];
1152 format_name = "old";
1153 add_visitor(visit_old_format, NULL);
1157 if (basename_only)
1158 add_visitor(visit_basename, NULL);
1160 /* See if we need fold. */
1161 if (ignore_case && !regex)
1162 for ( argn = 0; argn < argc; argn++ )
1164 pathpart = argv[argn];
1165 if (!contains_metacharacter(pathpart))
1167 need_fold = 1;
1168 break;
1172 if (need_fold)
1174 add_visitor(visit_casefold, &casebuf);
1175 casebuf.preqlen = &procdata.pathsize;
1178 /* Add an inspector for each pattern we're looking for. */
1179 for ( argn = 0; argn < argc; argn++ )
1181 results_were_filtered = true;
1182 pathpart = argv[argn];
1183 if (regex)
1185 struct regular_expression *p = xmalloc(sizeof(*p));
1186 const char *error_message = NULL;
1188 memset (&p->regex, 0, sizeof (p->regex));
1190 re_set_syntax(regex_options);
1191 p->regex.allocated = 100;
1192 p->regex.buffer = (unsigned char *) xmalloc (p->regex.allocated);
1193 p->regex.fastmap = NULL;
1194 p->regex.syntax = regex_options;
1195 p->regex.translate = NULL;
1197 error_message = re_compile_pattern (pathpart, strlen (pathpart),
1198 &p->regex);
1199 if (error_message)
1201 error (1, 0, "%s", error_message);
1203 else
1205 add_visitor(visit_regex, p);
1208 else if (contains_metacharacter(pathpart))
1210 if (ignore_case)
1211 add_visitor(visit_globmatch_casefold, pathpart);
1212 else
1213 add_visitor(visit_globmatch_nofold, pathpart);
1215 else
1217 /* No glob characters used. Hence we match on
1218 * _any part_ of the filename, not just the
1219 * basename. This seems odd to me, but it is the
1220 * traditional behaviour.
1221 * James Youngman <jay@gnu.org>
1223 if (ignore_case)
1225 struct casefolder * cf = xmalloc(sizeof(*cf));
1226 cf->pattern = pathpart;
1227 cf->pbuf = &casebuf;
1228 add_visitor(visit_substring_match_casefold, cf);
1229 /* If we ignore case, convert it to lower now so we don't have to
1230 * do it every time
1232 lc_strcpy(pathpart, pathpart);
1234 else
1236 add_visitor(visit_substring_match_nocasefold, pathpart);
1241 pvis = lastinspector;
1243 /* We add visit_existing_*() as late as possible to reduce the
1244 * number of stat() calls.
1246 switch (do_check_existence)
1248 case ACCEPT_EXISTING:
1249 results_were_filtered = true;
1250 if (follow_symlinks) /* -L, default */
1251 add_visitor(visit_existing_follow, NULL);
1252 else /* -P */
1253 add_visitor(visit_existing_nofollow, NULL);
1254 break;
1256 case ACCEPT_NON_EXISTING:
1257 results_were_filtered = true;
1258 if (follow_symlinks) /* -L, default */
1259 add_visitor(visit_non_existing_follow, NULL);
1260 else /* -P */
1261 add_visitor(visit_non_existing_nofollow, NULL);
1262 break;
1264 case ACCEPT_EITHER: /* Default, neither -E nor -e */
1265 /* do nothing; no extra processing. */
1266 break;
1269 /* Security issue: The stats visitor must be added immediately
1270 * before the print visitor, because otherwise the -S option would
1271 * leak information about files that the caller cannot see.
1273 if (stats)
1274 add_visitor(visit_stats, &statistics);
1276 if (enable_print)
1278 if (print_quoted_filename)
1279 add_visitor(visit_justprint_quoted, NULL);
1280 else
1281 add_visitor(visit_justprint_unquoted, NULL);
1285 if (use_limit)
1286 add_visitor(visit_limit, plimit);
1287 else
1288 add_visitor(visit_count, plimit);
1291 if (argc > 1)
1293 past_pat_inspector = pvis->next;
1294 if (op_and)
1295 mainprocessor = process_and;
1296 else
1297 mainprocessor = process_or;
1299 else
1300 mainprocessor = process_simple;
1302 if (stats)
1304 printf(_("Database %s is in the %s format.\n"),
1305 procdata.dbfile,
1306 format_name);
1310 procdata.c = getc (procdata.fp);
1311 /* If we are searching for filename patterns, the inspector list
1312 * will contain an entry for each pattern for which we are searching.
1314 while ( (procdata.c != EOF) &&
1315 (VISIT_ABORT != (mainprocessor)(&procdata)) )
1317 /* Do nothing; all the work is done in the visitor functions. */
1320 if (stats)
1322 if (filesize)
1323 print_stats(argc, filesize);
1326 if (ferror (procdata.fp))
1328 error (0, errno, "%s", procdata.dbfile);
1329 return 0;
1331 return plimit->items_accepted;
1337 extern char *version_string;
1339 /* The name this program was run with. */
1340 char *program_name;
1342 static void
1343 usage (FILE *stream)
1345 fprintf (stream, _("\
1346 Usage: %s [-d path | --database=path] [-e | -E | --[non-]existing]\n\
1347 [-i | --ignore-case] [-w | --wholename] [-b | --basename] \n\
1348 [--limit=N | -l N] [-S | --statistics] [-0 | --null] [-c | --count]\n\
1349 [-P | -H | --nofollow] [-L | --follow] [-m | --mmap ] [ -s | --stdio ]\n\
1350 [-A | --all] [-p | --print] [-r | --regex ] [--regextype=TYPE]\n\
1351 [--max-database-age D] [-version] [--help]\n\
1352 pattern...\n"),
1353 program_name);
1354 fputs (_("\nReport bugs to <bug-findutils@gnu.org>.\n"), stream);
1356 enum
1358 REGEXTYPE_OPTION = CHAR_MAX + 1,
1359 MAX_DB_AGE
1363 static struct option const longopts[] =
1365 {"database", required_argument, NULL, 'd'},
1366 {"existing", no_argument, NULL, 'e'},
1367 {"non-existing", no_argument, NULL, 'E'},
1368 {"ignore-case", no_argument, NULL, 'i'},
1369 {"all", no_argument, NULL, 'A'},
1370 {"help", no_argument, NULL, 'h'},
1371 {"version", no_argument, NULL, 'v'},
1372 {"null", no_argument, NULL, '0'},
1373 {"count", no_argument, NULL, 'c'},
1374 {"wholename", no_argument, NULL, 'w'},
1375 {"wholepath", no_argument, NULL, 'w'}, /* Synonym. */
1376 {"basename", no_argument, NULL, 'b'},
1377 {"print", no_argument, NULL, 'p'},
1378 {"stdio", no_argument, NULL, 's'},
1379 {"mmap", no_argument, NULL, 'm'},
1380 {"limit", required_argument, NULL, 'l'},
1381 {"regex", no_argument, NULL, 'r'},
1382 {"regextype", required_argument, NULL, REGEXTYPE_OPTION},
1383 {"statistics", no_argument, NULL, 'S'},
1384 {"follow", no_argument, NULL, 'L'},
1385 {"nofollow", no_argument, NULL, 'P'},
1386 {"max-database-age", required_argument, NULL, MAX_DB_AGE},
1387 {NULL, no_argument, NULL, 0}
1391 static int
1392 drop_privs(void)
1394 const char * what = "failed";
1395 uid_t orig_euid = geteuid();
1397 /* Use of setgroups() is restrcted to root only. */
1398 if (0 == orig_euid)
1400 gid_t groups[1];
1401 groups[1] = getgid();
1402 if (0 != setgroups(1, groups))
1404 what = _("failed to drop group privileges");
1405 goto fail;
1409 if (0 != setuid(getuid()))
1411 what = _("failed to drop setuid privileges");
1412 goto fail;
1415 /* Defend against the case where the attacker runs us with the
1416 * capability to call setuid() turned off, which on some systems
1417 * will cause the above attempt to drop privileges fail (leaving us
1418 * privileged).
1420 if (0 == setuid(0))
1422 what = _("Failed to drop privileges");
1423 goto fail;
1426 /* success. */
1427 return 0;
1429 fail:
1430 error(1, errno, "%s", what);
1431 abort();
1432 kill(0, SIGKILL);
1433 _exit(1);
1434 /*NOTREACHED*/
1435 /* ... we hope. */
1436 for (;;)
1438 /* deliberate infinite loop */
1442 static int
1443 opendb(const char *name)
1445 int fd = open(name, O_RDONLY
1446 #if defined(O_LARGEFILE)
1447 |O_LARGEFILE
1448 #endif
1450 if (fd >= 0)
1452 /* Make sure it won't survive an exec */
1453 if (0 != fcntl(fd, F_SETFD, FD_CLOEXEC))
1455 close(fd);
1456 fd = -1;
1459 return fd;
1463 dolocate (int argc, char **argv, int secure_db_fd)
1465 char *dbpath;
1466 unsigned long int found = 0uL;
1467 int optc;
1468 int ignore_case = 0;
1469 int print = 0;
1470 int just_count = 0;
1471 int basename_only = 0;
1472 int use_limit = 0;
1473 int regex = 0;
1474 int regex_options = RE_SYNTAX_EMACS;
1475 int stats = 0;
1476 int op_and = 0;
1477 const char *e;
1478 FILE *fp;
1479 int they_chose_db = 0;
1480 bool did_stdin = false; /* Set to prevent rereading stdin. */
1482 program_name = argv[0];
1484 #ifdef HAVE_SETLOCALE
1485 setlocale (LC_ALL, "");
1486 #endif
1487 bindtextdomain (PACKAGE, LOCALEDIR);
1488 textdomain (PACKAGE);
1489 atexit (close_stdout);
1491 limits.limit = 0;
1492 limits.items_accepted = 0;
1494 quote_opts = clone_quoting_options (NULL);
1495 print_quoted_filename = true;
1497 /* We cannot simultaneously trust $LOCATE_PATH and use the
1498 * setuid-access-controlled database,, since that could cause a leak
1499 * of private data.
1501 dbpath = getenv ("LOCATE_PATH");
1502 if (dbpath)
1504 they_chose_db = 1;
1507 check_existence = ACCEPT_EITHER;
1509 while ((optc = getopt_long (argc, argv, "Abcd:eEil:prsm0SwHPL", longopts, (int *) 0)) != -1)
1510 switch (optc)
1512 case '0':
1513 separator = 0;
1514 print_quoted_filename = false; /* print filename 'raw'. */
1515 break;
1517 case 'A':
1518 op_and = 1;
1519 break;
1521 case 'b':
1522 basename_only = 1;
1523 break;
1525 case 'c':
1526 just_count = 1;
1527 break;
1529 case 'd':
1530 dbpath = optarg;
1531 they_chose_db = 1;
1532 break;
1534 case 'e':
1535 check_existence = ACCEPT_EXISTING;
1536 break;
1538 case 'E':
1539 check_existence = ACCEPT_NON_EXISTING;
1540 break;
1542 case 'i':
1543 ignore_case = 1;
1544 break;
1546 case 'h':
1547 usage (stdout);
1548 return 0;
1550 case MAX_DB_AGE:
1551 /* XXX: nothing in the test suite for this option. */
1552 set_max_db_age(optarg);
1553 break;
1555 case 'p':
1556 print = 1;
1557 break;
1559 case 'v':
1560 printf (_("GNU locate version %s\n"), version_string);
1561 return 0;
1563 case 'w':
1564 basename_only = 0;
1565 break;
1567 case 'r':
1568 regex = 1;
1569 break;
1571 case REGEXTYPE_OPTION:
1572 regex_options = get_regex_type(optarg);
1573 break;
1575 case 'S':
1576 stats = 1;
1577 break;
1579 case 'L':
1580 follow_symlinks = 1;
1581 break;
1583 /* In find, -P and -H differ in the way they handle paths
1584 * given on the command line. This is not relevant for
1585 * locate, but the -H option is supported because it is
1586 * probably more intuitive to do so.
1588 case 'P':
1589 case 'H':
1590 follow_symlinks = 0;
1591 break;
1593 case 'l':
1595 char *end = optarg;
1596 strtol_error err = xstrtoumax(optarg, &end, 10, &limits.limit, NULL);
1597 if (LONGINT_OK != err)
1599 STRTOL_FATAL_ERROR(optarg, _("argument to --limit"), err);
1601 use_limit = 1;
1603 break;
1605 case 's': /* use stdio */
1606 case 'm': /* use mmap */
1607 /* These options are implemented simply for
1608 * compatibility with FreeBSD
1610 break;
1612 default:
1613 usage (stderr);
1614 return 1;
1618 /* If the user gave the -d option or set LOCATE_PATH,
1619 * relinquish access to the secure database.
1621 if (they_chose_db)
1623 if (secure_db_fd >= 0)
1625 close(secure_db_fd);
1626 secure_db_fd = 0;
1630 if (!just_count && !stats)
1631 print = 1;
1633 if (stats)
1635 if (optind == argc)
1636 use_limit = 0;
1638 else
1640 if (!just_count && optind == argc)
1642 usage (stderr);
1643 return 1;
1648 if (1 == isatty(STDOUT_FILENO))
1649 stdout_is_a_tty = true;
1650 else
1651 stdout_is_a_tty = false;
1653 if (they_chose_db)
1654 next_element (dbpath, 0); /* Initialize. */
1656 /* Bail out early if limit already reached. */
1657 while (!use_limit || limits.limit > limits.items_accepted)
1659 struct stat st;
1660 int fd;
1661 off_t filesize;
1663 statistics.compressed_bytes =
1664 statistics.total_filename_count =
1665 statistics.total_filename_length =
1666 statistics.whitespace_count =
1667 statistics.newline_count =
1668 statistics.highbit_filename_count = 0u;
1670 if (they_chose_db)
1672 /* Take the next element from the list of databases */
1673 e = next_element ((char *) NULL, 0);
1674 if (NULL == e)
1675 break;
1677 if (0 == strcmp (e, "-"))
1679 if (did_stdin)
1681 error (0, 0,
1682 _("warning: the locate database can only be read from stdin once."));
1683 return 0;
1685 else
1687 e = "<stdin>";
1688 fd = 0;
1689 did_stdin = true;
1692 else
1694 if (0 == strlen(e) || 0 == strcmp(e, "."))
1696 e = LOCATE_DB;
1699 /* open the database */
1700 fd = opendb(e);
1701 if (fd < 0)
1703 error (0, errno, "%s", e);
1704 return 0;
1708 else
1710 if (-1 == secure_db_fd)
1712 /* Already searched the database, it's time to exit the loop */
1713 break;
1715 else
1717 e = selected_secure_db;
1718 fd = secure_db_fd;
1719 secure_db_fd = -1;
1723 /* Check the database to see if it is old. */
1724 if (fstat(fd, &st))
1726 error (0, errno, "%s", e);
1727 /* continue anyway */
1728 filesize = (off_t)0;
1730 else
1732 time_t now;
1734 filesize = st.st_size;
1736 if ((time_t)-1 == time(&now))
1738 /* If we can't tell the time, we don't know how old the
1739 * database is. But since the message is just advisory,
1740 * we continue anyway.
1742 error (0, errno, "time system call");
1744 else
1746 double age = difftime(now, st.st_mtime);
1747 double warn_seconds = SECONDS_PER_UNIT * warn_number_units;
1748 if (age > warn_seconds)
1750 /* For example:
1751 warning: database `fred' is more than 8 days old (actual age is 10 days)*/
1752 error (0, 0,
1753 _("warning: database `%s' is more than %d %s old (actual age is %.1f %s)"),
1755 warn_number_units, _(warn_name_units),
1756 (age/(double)SECONDS_PER_UNIT), _(warn_name_units));
1761 fp = fdopen(fd, "r");
1762 if (NULL == fp)
1764 error (0, errno, "%s", e);
1765 return 0;
1768 /* Search this database for all patterns simultaneously */
1769 found = search_one_database (argc - optind, &argv[optind],
1770 e, fp, filesize,
1771 ignore_case, print, basename_only,
1772 use_limit, &limits, stats,
1773 op_and, regex, regex_options);
1775 /* Close the databsase (even if it is stdin) */
1776 if (fclose (fp) == EOF)
1778 error (0, errno, "%s", e);
1779 return 0;
1783 if (just_count)
1785 printf("%ld\n", found);
1788 if (found || (use_limit && (limits.limit==0)) || stats )
1789 return 0;
1790 else
1791 return 1;
1794 #define ARRAYSIZE(a) (sizeof(a)/sizeof(a[0]))
1795 static int
1796 open_secure_db(void)
1798 int fd, i;
1800 const char * secure_db_list[] =
1802 LOCATE_DB,
1803 "/var/lib/slocate/slocate.db",
1804 NULL
1806 for (i=0; secure_db_list[i]; ++i)
1808 fd = opendb(secure_db_list[i]);
1809 if (fd >= 0)
1811 selected_secure_db = secure_db_list[i];
1812 return fd;
1815 return -1;
1819 main (int argc, char **argv)
1821 int dbfd = open_secure_db();
1822 drop_privs();
1824 return dolocate(argc, argv, dbfd);