19b50d902SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni *
49b50d902SRodney W. Grimes * Copyright (c) 1991, 1993
59b50d902SRodney W. Grimes * The Regents of the University of California. All rights reserved.
69b50d902SRodney W. Grimes *
79b50d902SRodney W. Grimes * This code is derived from software contributed to Berkeley by
89b50d902SRodney W. Grimes * David Hitz of Auspex Systems, Inc.
99b50d902SRodney W. Grimes *
109b50d902SRodney W. Grimes * Redistribution and use in source and binary forms, with or without
119b50d902SRodney W. Grimes * modification, are permitted provided that the following conditions
129b50d902SRodney W. Grimes * are met:
139b50d902SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright
149b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer.
159b50d902SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright
169b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the
179b50d902SRodney W. Grimes * documentation and/or other materials provided with the distribution.
18fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors
199b50d902SRodney W. Grimes * may be used to endorse or promote products derived from this software
209b50d902SRodney W. Grimes * without specific prior written permission.
219b50d902SRodney W. Grimes *
229b50d902SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
239b50d902SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
249b50d902SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
259b50d902SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
269b50d902SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
279b50d902SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
289b50d902SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
299b50d902SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
309b50d902SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
319b50d902SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
329b50d902SRodney W. Grimes * SUCH DAMAGE.
339b50d902SRodney W. Grimes */
349b50d902SRodney W. Grimes
359b50d902SRodney W. Grimes /*
369b50d902SRodney W. Grimes * look -- find lines in a sorted list.
379b50d902SRodney W. Grimes *
389b50d902SRodney W. Grimes * The man page said that TABs and SPACEs participate in -d comparisons.
399b50d902SRodney W. Grimes * In fact, they were ignored. This implements historic practice, not
409b50d902SRodney W. Grimes * the manual page.
419b50d902SRodney W. Grimes */
429b50d902SRodney W. Grimes
439b50d902SRodney W. Grimes #include <sys/types.h>
449b50d902SRodney W. Grimes #include <sys/mman.h>
459b50d902SRodney W. Grimes #include <sys/stat.h>
469b50d902SRodney W. Grimes
479baefe4aSPhilippe Charnier #include <err.h>
489b50d902SRodney W. Grimes #include <errno.h>
499b50d902SRodney W. Grimes #include <fcntl.h>
50b5bb9538SEitan Adler #include <getopt.h>
51df3f5d9dSPeter Wemm #include <limits.h>
529baefe4aSPhilippe Charnier #include <locale.h>
53d13b008dSEd Schouten #include <stdint.h>
542a5e51faSEd Schouten #include <stdio.h>
559b50d902SRodney W. Grimes #include <stdlib.h>
569b50d902SRodney W. Grimes #include <string.h>
57df3f5d9dSPeter Wemm #include <unistd.h>
58d67148e4STim J. Robbins #include <wchar.h>
59d67148e4STim J. Robbins #include <wctype.h>
60df3f5d9dSPeter Wemm
619b50d902SRodney W. Grimes #include "pathnames.h"
629b50d902SRodney W. Grimes
639e5ff032SMark Murray static char _path_words[] = _PATH_WORDS;
649e5ff032SMark Murray
659b50d902SRodney W. Grimes #define EQUAL 0
669b50d902SRodney W. Grimes #define GREATER 1
679b50d902SRodney W. Grimes #define LESS (-1)
689b50d902SRodney W. Grimes
6976de4396SEd Schouten static int dflag, fflag;
709b50d902SRodney W. Grimes
7176de4396SEd Schouten static char *binary_search(wchar_t *, unsigned char *, unsigned char *);
7276de4396SEd Schouten static int compare(wchar_t *, unsigned char *, unsigned char *);
7376de4396SEd Schouten static char *linear_search(wchar_t *, unsigned char *, unsigned char *);
7476de4396SEd Schouten static int look(wchar_t *, unsigned char *, unsigned char *);
7576de4396SEd Schouten static wchar_t *prepkey(const char *, wchar_t);
7676de4396SEd Schouten static void print_from(wchar_t *, unsigned char *, unsigned char *);
779b50d902SRodney W. Grimes
78*a1b6427aSAlfonso Gregory static void usage(void) __dead2;
799b50d902SRodney W. Grimes
80b5bb9538SEitan Adler static struct option longopts[] = {
81b5bb9538SEitan Adler { "alternative",no_argument, NULL, 'a' },
82b5bb9538SEitan Adler { "alphanum", no_argument, NULL, 'd' },
83b5bb9538SEitan Adler { "ignore-case",no_argument, NULL, 'i' },
84b5bb9538SEitan Adler { "terminate", required_argument, NULL, 't'},
85b5bb9538SEitan Adler { NULL, 0, NULL, 0 },
86b5bb9538SEitan Adler };
87b5bb9538SEitan Adler
889baefe4aSPhilippe Charnier int
main(int argc,char * argv[])89f4ac32deSDavid Malone main(int argc, char *argv[])
909b50d902SRodney W. Grimes {
919b50d902SRodney W. Grimes struct stat sb;
92d67148e4STim J. Robbins int ch, fd, match;
93d67148e4STim J. Robbins wchar_t termchar;
94d67148e4STim J. Robbins unsigned char *back, *front;
95106b1a8cSDavid Malone unsigned const char *file;
96d67148e4STim J. Robbins wchar_t *key;
97ac7154f5SAndrey A. Chernov
98ac7154f5SAndrey A. Chernov (void) setlocale(LC_CTYPE, "");
999b50d902SRodney W. Grimes
1009e5ff032SMark Murray file = _path_words;
101d67148e4STim J. Robbins termchar = L'\0';
102b5bb9538SEitan Adler while ((ch = getopt_long(argc, argv, "+adft:", longopts, NULL)) != -1)
1039b50d902SRodney W. Grimes switch(ch) {
104b245fc98SEitan Adler case 'a':
105b245fc98SEitan Adler /* COMPATIBILITY */
106b245fc98SEitan Adler break;
1079b50d902SRodney W. Grimes case 'd':
1089b50d902SRodney W. Grimes dflag = 1;
1099b50d902SRodney W. Grimes break;
1109b50d902SRodney W. Grimes case 'f':
1119b50d902SRodney W. Grimes fflag = 1;
1129b50d902SRodney W. Grimes break;
1139b50d902SRodney W. Grimes case 't':
114d67148e4STim J. Robbins if (mbrtowc(&termchar, optarg, MB_LEN_MAX, NULL) !=
115d67148e4STim J. Robbins strlen(optarg))
116d67148e4STim J. Robbins errx(2, "invalid termination character");
1179b50d902SRodney W. Grimes break;
1189b50d902SRodney W. Grimes case '?':
1199b50d902SRodney W. Grimes default:
1209b50d902SRodney W. Grimes usage();
1219b50d902SRodney W. Grimes }
1229b50d902SRodney W. Grimes argc -= optind;
1239b50d902SRodney W. Grimes argv += optind;
1249b50d902SRodney W. Grimes
1254d3ee609SWolfram Schneider if (argc == 0)
1269b50d902SRodney W. Grimes usage();
1274d3ee609SWolfram Schneider if (argc == 1) /* But set -df by default. */
1284d3ee609SWolfram Schneider dflag = fflag = 1;
129d67148e4STim J. Robbins key = prepkey(*argv++, termchar);
1304d3ee609SWolfram Schneider if (argc >= 2)
1314d3ee609SWolfram Schneider file = *argv++;
1329b50d902SRodney W. Grimes
1334d3ee609SWolfram Schneider match = 1;
1349b50d902SRodney W. Grimes
1354d3ee609SWolfram Schneider do {
1369b50d902SRodney W. Grimes if ((fd = open(file, O_RDONLY, 0)) < 0 || fstat(fd, &sb))
1379baefe4aSPhilippe Charnier err(2, "%s", file);
138d2ea3bedSEd Schouten if ((uintmax_t)sb.st_size > (uintmax_t)SIZE_T_MAX)
1399baefe4aSPhilippe Charnier errx(2, "%s: %s", file, strerror(EFBIG));
140f9f23184SColin Percival if (sb.st_size == 0) {
141f9f23184SColin Percival close(fd);
142f9f23184SColin Percival continue;
143f9f23184SColin Percival }
1444d3ee609SWolfram Schneider if ((front = mmap(NULL, (size_t)sb.st_size, PROT_READ, MAP_SHARED, fd, (off_t)0)) == MAP_FAILED)
1459baefe4aSPhilippe Charnier err(2, "%s", file);
1469b50d902SRodney W. Grimes back = front + sb.st_size;
147d67148e4STim J. Robbins match *= (look(key, front, back));
1484d3ee609SWolfram Schneider close(fd);
1494d3ee609SWolfram Schneider } while (argc-- > 2 && (file = *argv++));
1504d3ee609SWolfram Schneider
1514d3ee609SWolfram Schneider exit(match);
1529b50d902SRodney W. Grimes }
1539b50d902SRodney W. Grimes
15476de4396SEd Schouten static wchar_t *
prepkey(const char * string,wchar_t termchar)155d67148e4STim J. Robbins prepkey(const char *string, wchar_t termchar)
1569b50d902SRodney W. Grimes {
157d67148e4STim J. Robbins const char *readp;
158d67148e4STim J. Robbins wchar_t *key, *writep;
159d67148e4STim J. Robbins wchar_t ch;
160d67148e4STim J. Robbins size_t clen;
1619b50d902SRodney W. Grimes
162d67148e4STim J. Robbins /*
163d67148e4STim J. Robbins * Reformat search string and convert to wide character representation
164d67148e4STim J. Robbins * to avoid doing it multiple times later.
165d67148e4STim J. Robbins */
166d67148e4STim J. Robbins if ((key = malloc(sizeof(wchar_t) * (strlen(string) + 1))) == NULL)
167d67148e4STim J. Robbins err(2, NULL);
168d67148e4STim J. Robbins readp = string;
169d67148e4STim J. Robbins writep = key;
170d67148e4STim J. Robbins while ((clen = mbrtowc(&ch, readp, MB_LEN_MAX, NULL)) != 0) {
171d67148e4STim J. Robbins if (clen == (size_t)-1 || clen == (size_t)-2)
172d67148e4STim J. Robbins errc(2, EILSEQ, NULL);
1739b50d902SRodney W. Grimes if (fflag)
174d67148e4STim J. Robbins ch = towlower(ch);
175d67148e4STim J. Robbins if (!dflag || iswalnum(ch))
176d67148e4STim J. Robbins *writep++ = ch;
177d67148e4STim J. Robbins readp += clen;
1789b50d902SRodney W. Grimes }
179d67148e4STim J. Robbins *writep = L'\0';
180d67148e4STim J. Robbins if (termchar != L'\0' && (writep = wcschr(key, termchar)) != NULL)
181d67148e4STim J. Robbins *++writep = L'\0';
182d67148e4STim J. Robbins return (key);
183d67148e4STim J. Robbins }
184d67148e4STim J. Robbins
18576de4396SEd Schouten static int
look(wchar_t * string,unsigned char * front,unsigned char * back)186d67148e4STim J. Robbins look(wchar_t *string, unsigned char *front, unsigned char *back)
187d67148e4STim J. Robbins {
1889b50d902SRodney W. Grimes
1899b50d902SRodney W. Grimes front = binary_search(string, front, back);
1909b50d902SRodney W. Grimes front = linear_search(string, front, back);
1919b50d902SRodney W. Grimes
1929b50d902SRodney W. Grimes if (front)
1939b50d902SRodney W. Grimes print_from(string, front, back);
1949b50d902SRodney W. Grimes return (front ? 0 : 1);
1959b50d902SRodney W. Grimes }
1969b50d902SRodney W. Grimes
1979b50d902SRodney W. Grimes
1989b50d902SRodney W. Grimes /*
1999b50d902SRodney W. Grimes * Binary search for "string" in memory between "front" and "back".
2009b50d902SRodney W. Grimes *
2019b50d902SRodney W. Grimes * This routine is expected to return a pointer to the start of a line at
2029b50d902SRodney W. Grimes * *or before* the first word matching "string". Relaxing the constraint
2039b50d902SRodney W. Grimes * this way simplifies the algorithm.
2049b50d902SRodney W. Grimes *
2059b50d902SRodney W. Grimes * Invariants:
2069b50d902SRodney W. Grimes * front points to the beginning of a line at or before the first
2079b50d902SRodney W. Grimes * matching string.
2089b50d902SRodney W. Grimes *
2099b50d902SRodney W. Grimes * back points to the beginning of a line at or after the first
2109b50d902SRodney W. Grimes * matching line.
2119b50d902SRodney W. Grimes *
2129b50d902SRodney W. Grimes * Base of the Invariants.
2139b50d902SRodney W. Grimes * front = NULL;
2149b50d902SRodney W. Grimes * back = EOF;
2159b50d902SRodney W. Grimes *
2169b50d902SRodney W. Grimes * Advancing the Invariants:
2179b50d902SRodney W. Grimes *
2189b50d902SRodney W. Grimes * p = first newline after halfway point from front to back.
2199b50d902SRodney W. Grimes *
2209b50d902SRodney W. Grimes * If the string at "p" is not greater than the string to match,
2219b50d902SRodney W. Grimes * p is the new front. Otherwise it is the new back.
2229b50d902SRodney W. Grimes *
2239b50d902SRodney W. Grimes * Termination:
2249b50d902SRodney W. Grimes *
2259b50d902SRodney W. Grimes * The definition of the routine allows it return at any point,
2269b50d902SRodney W. Grimes * since front is always at or before the line to print.
2279b50d902SRodney W. Grimes *
2289b50d902SRodney W. Grimes * In fact, it returns when the chosen "p" equals "back". This
2299b50d902SRodney W. Grimes * implies that there exists a string is least half as long as
2309b50d902SRodney W. Grimes * (back - front), which in turn implies that a linear search will
2319b50d902SRodney W. Grimes * be no more expensive than the cost of simply printing a string or two.
2329b50d902SRodney W. Grimes *
2339b50d902SRodney W. Grimes * Trying to continue with binary search at this point would be
2349b50d902SRodney W. Grimes * more trouble than it's worth.
2359b50d902SRodney W. Grimes */
2369b50d902SRodney W. Grimes #define SKIP_PAST_NEWLINE(p, back) \
2379b50d902SRodney W. Grimes while (p < back && *p++ != '\n');
2389b50d902SRodney W. Grimes
23976de4396SEd Schouten static char *
binary_search(wchar_t * string,unsigned char * front,unsigned char * back)240d67148e4STim J. Robbins binary_search(wchar_t *string, unsigned char *front, unsigned char *back)
2419b50d902SRodney W. Grimes {
242f4ac32deSDavid Malone unsigned char *p;
2439b50d902SRodney W. Grimes
2449b50d902SRodney W. Grimes p = front + (back - front) / 2;
2459b50d902SRodney W. Grimes SKIP_PAST_NEWLINE(p, back);
2469b50d902SRodney W. Grimes
2479b50d902SRodney W. Grimes /*
2489b50d902SRodney W. Grimes * If the file changes underneath us, make sure we don't
2499b50d902SRodney W. Grimes * infinitely loop.
2509b50d902SRodney W. Grimes */
2519b50d902SRodney W. Grimes while (p < back && back > front) {
2529b50d902SRodney W. Grimes if (compare(string, p, back) == GREATER)
2539b50d902SRodney W. Grimes front = p;
2549b50d902SRodney W. Grimes else
2559b50d902SRodney W. Grimes back = p;
2569b50d902SRodney W. Grimes p = front + (back - front) / 2;
2579b50d902SRodney W. Grimes SKIP_PAST_NEWLINE(p, back);
2589b50d902SRodney W. Grimes }
2599b50d902SRodney W. Grimes return (front);
2609b50d902SRodney W. Grimes }
2619b50d902SRodney W. Grimes
2629b50d902SRodney W. Grimes /*
2639b50d902SRodney W. Grimes * Find the first line that starts with string, linearly searching from front
2649b50d902SRodney W. Grimes * to back.
2659b50d902SRodney W. Grimes *
2669b50d902SRodney W. Grimes * Return NULL for no such line.
2679b50d902SRodney W. Grimes *
2689b50d902SRodney W. Grimes * This routine assumes:
2699b50d902SRodney W. Grimes *
2709b50d902SRodney W. Grimes * o front points at the first character in a line.
2719b50d902SRodney W. Grimes * o front is before or at the first line to be printed.
2729b50d902SRodney W. Grimes */
27376de4396SEd Schouten static char *
linear_search(wchar_t * string,unsigned char * front,unsigned char * back)274d67148e4STim J. Robbins linear_search(wchar_t *string, unsigned char *front, unsigned char *back)
2759b50d902SRodney W. Grimes {
2769b50d902SRodney W. Grimes while (front < back) {
2779b50d902SRodney W. Grimes switch (compare(string, front, back)) {
2789b50d902SRodney W. Grimes case EQUAL: /* Found it. */
2799b50d902SRodney W. Grimes return (front);
2809b50d902SRodney W. Grimes case LESS: /* No such string. */
2819b50d902SRodney W. Grimes return (NULL);
2829b50d902SRodney W. Grimes case GREATER: /* Keep going. */
2839b50d902SRodney W. Grimes break;
2849b50d902SRodney W. Grimes }
2859b50d902SRodney W. Grimes SKIP_PAST_NEWLINE(front, back);
2869b50d902SRodney W. Grimes }
2879b50d902SRodney W. Grimes return (NULL);
2889b50d902SRodney W. Grimes }
2899b50d902SRodney W. Grimes
2909b50d902SRodney W. Grimes /*
2919b50d902SRodney W. Grimes * Print as many lines as match string, starting at front.
2929b50d902SRodney W. Grimes */
29376de4396SEd Schouten static void
print_from(wchar_t * string,unsigned char * front,unsigned char * back)294d67148e4STim J. Robbins print_from(wchar_t *string, unsigned char *front, unsigned char *back)
2959b50d902SRodney W. Grimes {
2969b50d902SRodney W. Grimes for (; front < back && compare(string, front, back) == EQUAL; ++front) {
2979b50d902SRodney W. Grimes for (; front < back && *front != '\n'; ++front)
2989b50d902SRodney W. Grimes if (putchar(*front) == EOF)
2999baefe4aSPhilippe Charnier err(2, "stdout");
3009b50d902SRodney W. Grimes if (putchar('\n') == EOF)
3019baefe4aSPhilippe Charnier err(2, "stdout");
3029b50d902SRodney W. Grimes }
3039b50d902SRodney W. Grimes }
3049b50d902SRodney W. Grimes
3059b50d902SRodney W. Grimes /*
3069b50d902SRodney W. Grimes * Return LESS, GREATER, or EQUAL depending on how the string1 compares with
3079b50d902SRodney W. Grimes * string2 (s1 ??? s2).
3089b50d902SRodney W. Grimes *
3099b50d902SRodney W. Grimes * o Matches up to len(s1) are EQUAL.
3109b50d902SRodney W. Grimes * o Matches up to len(s2) are GREATER.
3119b50d902SRodney W. Grimes *
3129b50d902SRodney W. Grimes * Compare understands about the -f and -d flags, and treats comparisons
3139b50d902SRodney W. Grimes * appropriately.
3149b50d902SRodney W. Grimes *
3159b50d902SRodney W. Grimes * The string "s1" is null terminated. The string s2 is '\n' terminated (or
3169b50d902SRodney W. Grimes * "back" terminated).
3179b50d902SRodney W. Grimes */
31876de4396SEd Schouten static int
compare(wchar_t * s1,unsigned char * s2,unsigned char * back)319d67148e4STim J. Robbins compare(wchar_t *s1, unsigned char *s2, unsigned char *back)
3209b50d902SRodney W. Grimes {
321d67148e4STim J. Robbins wchar_t ch1, ch2;
322d67148e4STim J. Robbins size_t len2;
3239b50d902SRodney W. Grimes
324d67148e4STim J. Robbins for (; *s1 && s2 < back && *s2 != '\n'; ++s1, s2 += len2) {
325d67148e4STim J. Robbins ch1 = *s1;
326d67148e4STim J. Robbins len2 = mbrtowc(&ch2, s2, back - s2, NULL);
327d67148e4STim J. Robbins if (len2 == (size_t)-1 || len2 == (size_t)-2) {
328d67148e4STim J. Robbins ch2 = *s2;
329d67148e4STim J. Robbins len2 = 1;
330d67148e4STim J. Robbins }
3319b50d902SRodney W. Grimes if (fflag)
332d67148e4STim J. Robbins ch2 = towlower(ch2);
333d67148e4STim J. Robbins if (dflag && !iswalnum(ch2)) {
334d67148e4STim J. Robbins /* Ignore character in comparison. */
335d67148e4STim J. Robbins --s1;
3369b50d902SRodney W. Grimes continue;
3379b50d902SRodney W. Grimes }
338d67148e4STim J. Robbins if (ch1 != ch2)
339d67148e4STim J. Robbins return (ch1 < ch2 ? LESS : GREATER);
3409b50d902SRodney W. Grimes }
3419b50d902SRodney W. Grimes return (*s1 ? GREATER : EQUAL);
3429b50d902SRodney W. Grimes }
3439b50d902SRodney W. Grimes
3449b50d902SRodney W. Grimes static void
usage(void)345f4ac32deSDavid Malone usage(void)
3469b50d902SRodney W. Grimes {
3474d3ee609SWolfram Schneider (void)fprintf(stderr, "usage: look [-df] [-t char] string [file ...]\n");
3489b50d902SRodney W. Grimes exit(2);
3499b50d902SRodney W. Grimes }
350