]> git.ipfire.org Git - thirdparty/util-linux.git/blame - misc-utils/whereis.c
include/c: add print_version() macro
[thirdparty/util-linux.git] / misc-utils / whereis.c
CommitLineData
6dbe3af9
KZ
1/*-
2 * Copyright (c) 1980 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
9db54a7e
SK
32 *
33 * 1999-02-22 Arkadiusz Miƛkiewicz <misiek@pld.ORG.PL>
7eda085c 34 * - added Native Language Support
9db54a7e 35 * 2011-08-12 Davidlohr Bueso <dave@gnu.org>
f51be859 36 * - added $PATH lookup
9db54a7e
SK
37 *
38 * Copyright (C) 2013 Karel Zak <kzak@redhat.com>
39 * 2013 Sami Kerola <kerolasa@iki.fi>
f51be859
DB
40 */
41
6dbe3af9 42#include <sys/param.h>
7574f09b 43#include <sys/types.h>
2b6fc908 44#include <sys/stat.h>
7574f09b 45#include <dirent.h>
6dbe3af9 46#include <stdio.h>
66ee8158 47#include <stdlib.h>
fd6b7a7f 48#include <string.h>
6dbe3af9 49#include <ctype.h>
9db54a7e 50#include <assert.h>
f51be859
DB
51
52#include "xalloc.h"
7eda085c 53#include "nls.h"
58513363 54#include "c.h"
c05a80ca 55#include "closestream.h"
f84559ee 56#include "canonicalize.h"
6dbe3af9 57
3635f53c
KZ
58#include "debug.h"
59
2ba641e5 60static UL_DEBUG_DEFINE_MASK(whereis);
819d9a29 61UL_DEBUG_DEFINE_MASKNAMES(whereis) = UL_DEBUG_EMPTY_MASKNAMES;
3635f53c
KZ
62
63#define WHEREIS_DEBUG_INIT (1 << 1)
64#define WHEREIS_DEBUG_PATH (1 << 2)
65#define WHEREIS_DEBUG_ENV (1 << 3)
66#define WHEREIS_DEBUG_ARGV (1 << 4)
67#define WHEREIS_DEBUG_SEARCH (1 << 5)
68#define WHEREIS_DEBUG_STATIC (1 << 6)
69#define WHEREIS_DEBUG_LIST (1 << 7)
70#define WHEREIS_DEBUG_ALL 0xFFFF
71
72#define DBG(m, x) __UL_DBG(whereis, WHEREIS_DEBUG_, m, x)
73#define ON_DBG(m, x) __UL_DBG_CALL(whereis, WHEREIS_DEBUG_, m, x)
9db54a7e 74
6d00cfb2
KZ
75#define UL_DEBUG_CURRENT_MASK UL_DEBUG_MASK(whereis)
76#include "debugobj.h"
77
9db54a7e
SK
78static char uflag = 0;
79
80/* supported types */
81enum {
82 BIN_DIR = (1 << 1),
83 MAN_DIR = (1 << 2),
84 SRC_DIR = (1 << 3),
85
86 ALL_DIRS = BIN_DIR | MAN_DIR | SRC_DIR
87};
88
89/* directories */
90struct wh_dirlist {
91 int type;
92 dev_t st_dev;
93 ino_t st_ino;
94 char *path;
95
96 struct wh_dirlist *next;
97};
98
99static const char *bindirs[] = {
30ad62d0 100 "/usr/bin",
30ad62d0 101 "/usr/sbin",
9ed21178
KZ
102 "/bin",
103 "/sbin",
c9ab7387
AH
104#if defined(MULTIARCHTRIPLET)
105 "/lib/" MULTIARCHTRIPLET,
106 "/usr/lib/" MULTIARCHTRIPLET,
107 "/usr/local/lib/" MULTIARCHTRIPLET,
108#endif
f84559ee
KZ
109 "/usr/lib",
110 "/usr/lib64",
30ad62d0
SK
111 "/etc",
112 "/usr/etc",
113 "/lib",
30ad62d0 114 "/lib64",
30ad62d0
SK
115 "/usr/games",
116 "/usr/games/bin",
117 "/usr/games/lib",
118 "/usr/emacs/etc",
119 "/usr/lib/emacs/*/etc",
120 "/usr/TeX/bin",
121 "/usr/tex/bin",
122 "/usr/interviews/bin/LINUX",
123
124 "/usr/X11R6/bin",
125 "/usr/X386/bin",
126 "/usr/bin/X11",
127 "/usr/X11/bin",
128 "/usr/X11R5/bin",
129
130 "/usr/local/bin",
131 "/usr/local/sbin",
132 "/usr/local/etc",
133 "/usr/local/lib",
134 "/usr/local/games",
135 "/usr/local/games/bin",
136 "/usr/local/emacs/etc",
137 "/usr/local/TeX/bin",
138 "/usr/local/tex/bin",
139 "/usr/local/bin/X11",
140
141 "/usr/contrib",
142 "/usr/hosts",
143 "/usr/include",
144
145 "/usr/g++-include",
146
147 "/usr/ucb",
148 "/usr/old",
149 "/usr/new",
150 "/usr/local",
151 "/usr/libexec",
152 "/usr/share",
153
154 "/opt/*/bin",
9db54a7e 155 NULL
6dbe3af9 156};
2b6fc908 157
9db54a7e 158static const char *mandirs[] = {
2b6fc908 159 "/usr/man/*",
66ee8158 160 "/usr/share/man/*",
2b6fc908
KZ
161 "/usr/X386/man/*",
162 "/usr/X11/man/*",
163 "/usr/TeX/man/*",
6dbe3af9 164 "/usr/interviews/man/mann",
db0ccb76 165 "/usr/share/info",
9db54a7e 166 NULL
6dbe3af9 167};
2b6fc908 168
9db54a7e 169static const char *srcdirs[] = {
2b6fc908
KZ
170 "/usr/src/*",
171 "/usr/src/lib/libc/*",
172 "/usr/src/lib/libc/net/*",
6dbe3af9
KZ
173 "/usr/src/ucb/pascal",
174 "/usr/src/ucb/pascal/utilities",
175 "/usr/src/undoc",
9db54a7e 176 NULL
6dbe3af9
KZ
177};
178
3635f53c
KZ
179static void whereis_init_debug(void)
180{
a15dca2f 181 __UL_INIT_DEBUG_FROM_ENV(whereis, WHEREIS_DEBUG_, 0, WHEREIS_DEBUG);
3635f53c
KZ
182}
183
184static const char *whereis_type_to_name(int type)
185{
186 switch (type) {
187 case BIN_DIR: return "bin";
188 case MAN_DIR: return "man";
189 case SRC_DIR: return "src";
190 default: return "???";
191 }
192}
9db54a7e 193
5aaa966d 194static void __attribute__((__noreturn__)) usage(void)
58513363 195{
5aaa966d
RM
196 FILE *out = stdout;
197
ec3bc7aa 198 fputs(USAGE_HEADER, out);
bde76c04 199 fprintf(out, _(" %s [options] [-BMS <dir>... -f] <name>\n"), program_invocation_short_name);
ec3bc7aa 200
451dbcfa
BS
201 fputs(USAGE_SEPARATOR, out);
202 fputs(_("Locate the binary, source, and manual-page files for a command.\n"), out);
203
ec3bc7aa
SK
204 fputs(USAGE_OPTIONS, out);
205 fputs(_(" -b search only for binaries\n"), out);
206 fputs(_(" -B <dirs> define binaries lookup path\n"), out);
db0ccb76
KZ
207 fputs(_(" -m search only for manuals and infos\n"), out);
208 fputs(_(" -M <dirs> define man and info lookup path\n"), out);
ec3bc7aa
SK
209 fputs(_(" -s search only for sources\n"), out);
210 fputs(_(" -S <dirs> define sources lookup path\n"), out);
211 fputs(_(" -f terminate <dirs> argument list\n"), out);
212 fputs(_(" -u search for unusual entries\n"), out);
213 fputs(_(" -l output effective lookup paths\n"), out);
ec3bc7aa 214
5aaa966d 215 fputs(USAGE_SEPARATOR, out);
f45f3ec3
RM
216 printf(USAGE_HELP_OPTIONS(16));
217 printf(USAGE_MAN_TAIL("whereis(1)"));
5aaa966d 218 exit(EXIT_SUCCESS);
58513363
SK
219}
220
9db54a7e 221static void dirlist_add_dir(struct wh_dirlist **ls0, int type, const char *dir)
30ad62d0 222{
9db54a7e
SK
223 struct stat st;
224 struct wh_dirlist *prev = NULL, *ls = *ls0;
32ae96ae 225
9db54a7e
SK
226 if (access(dir, R_OK) != 0)
227 return;
228 if (stat(dir, &st) != 0 || !S_ISDIR(st.st_mode))
229 return;
3635f53c 230
9db54a7e
SK
231 while (ls) {
232 if (ls->st_ino == st.st_ino &&
233 ls->st_dev == st.st_dev &&
234 ls->type == type) {
3635f53c 235 DBG(LIST, ul_debugobj(*ls0, " ignore (already in list): %s", dir));
0b542a94 236 return;
0b542a94 237 }
9db54a7e
SK
238 prev = ls;
239 ls = ls->next;
0b542a94 240 }
6dbe3af9 241
9db54a7e
SK
242
243 ls = xcalloc(1, sizeof(*ls));
244 ls->st_ino = st.st_ino;
245 ls->st_dev = st.st_dev;
246 ls->type = type;
f84559ee 247 ls->path = canonicalize_path(dir);
9db54a7e
SK
248
249 if (!*ls0)
250 *ls0 = ls; /* first in the list */
251 else {
252 assert(prev);
253 prev->next = ls; /* add to the end of the list */
0b542a94 254 }
3635f53c
KZ
255
256 DBG(LIST, ul_debugobj(*ls0, " add dir: %s", ls->path));
0b542a94 257 return;
0b542a94 258}
6dbe3af9 259
9db54a7e
SK
260/* special case for '*' in the paths */
261static void dirlist_add_subdir(struct wh_dirlist **ls, int type, const char *dir)
f51be859 262{
9db54a7e
SK
263 char buf[PATH_MAX], *d;
264 DIR *dirp;
265 struct dirent *dp;
f51be859 266
9db54a7e
SK
267 strncpy(buf, dir, PATH_MAX);
268 buf[PATH_MAX - 1] = '\0';
f51be859 269
9db54a7e
SK
270 d = strchr(buf, '*');
271 if (!d)
272 return;
273 *d = 0;
f51be859 274
9db54a7e
SK
275 dirp = opendir(buf);
276 if (!dirp)
277 return;
278
3635f53c 279 DBG(LIST, ul_debugobj(*ls, " scanning subdir: %s", dir));
9db54a7e
SK
280
281 while ((dp = readdir(dirp)) != NULL) {
282 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
283 continue;
284 snprintf(d, PATH_MAX - (d - buf), "%s", dp->d_name);
285 /* a dir definition can have a star in middle of path */
286 strcat(buf, strchr(dir, '*') + 1);
287 dirlist_add_dir(ls, type, buf);
288 }
289 closedir(dirp);
290 return;
f51be859
DB
291}
292
9db54a7e
SK
293static void construct_dirlist_from_env(const char *env,
294 struct wh_dirlist **ls,
295 int type)
f51be859 296{
9db54a7e 297 char *key = NULL, *tok = NULL, *pathcp, *path = getenv(env);
f51be859
DB
298
299 if (!path)
300 return;
301 pathcp = xstrdup(path);
302
3635f53c
KZ
303 DBG(ENV, ul_debugobj(*ls, "construct %s dirlist from: %s",
304 whereis_type_to_name(type), path));
f51be859 305
9db54a7e
SK
306 for (tok = strtok_r(pathcp, ":", &key); tok;
307 tok = strtok_r(NULL, ":", &key))
308 dirlist_add_dir(ls, type, tok);
f51be859 309
f51be859 310 free(pathcp);
9db54a7e 311 return;
f51be859
DB
312}
313
9db54a7e
SK
314static void construct_dirlist_from_argv(struct wh_dirlist **ls,
315 int *idx,
316 int argc,
317 char *argv[],
318 int type)
f51be859 319{
3635f53c 320 int i;
9db54a7e 321
3635f53c
KZ
322 DBG(ARGV, ul_debugobj(*ls, "construct %s dirlist from argv[%d..]",
323 whereis_type_to_name(type), *idx));
324
325 for (i = *idx; i < argc; i++) {
326 if (*argv[i] == '-') /* end of the list */
327 break;
328
329 DBG(ARGV, ul_debugobj(*ls, " using argv[%d]: %s", *idx, argv[*idx]));
330 dirlist_add_dir(ls, type, argv[i]);
331 *idx = i;
9db54a7e 332 }
3635f53c 333
9db54a7e 334 return;
f51be859
DB
335}
336
9db54a7e
SK
337static void construct_dirlist(struct wh_dirlist **ls,
338 int type,
339 const char **paths)
0b542a94 340{
9db54a7e 341 size_t i;
f51be859 342
3635f53c
KZ
343 DBG(STATIC, ul_debugobj(*ls, "construct %s dirlist from static array",
344 whereis_type_to_name(type)));
6dbe3af9 345
9db54a7e
SK
346 for (i = 0; paths[i]; i++) {
347 if (!strchr(paths[i], '*'))
348 dirlist_add_dir(ls, type, paths[i]);
349 else
350 dirlist_add_subdir(ls, type, paths[i]);
351 }
352 return;
0b542a94 353}
6dbe3af9 354
9db54a7e 355static void free_dirlist(struct wh_dirlist **ls0, int type)
0b542a94 356{
9db54a7e 357 struct wh_dirlist *prev = NULL, *next, *ls = *ls0;
6dbe3af9 358
9db54a7e 359 *ls0 = NULL;
6dbe3af9 360
3635f53c 361 DBG(LIST, ul_debugobj(*ls0, "free dirlist"));
9db54a7e
SK
362
363 while (ls) {
364 if (ls->type & type) {
365 next = ls->next;
3635f53c 366 DBG(LIST, ul_debugobj(*ls0, " free: %s", ls->path));
9db54a7e
SK
367 free(ls->path);
368 free(ls);
369 ls = next;
370 if (prev)
371 prev->next = ls;
372 } else {
373 if (!prev)
374 *ls0 = ls; /* first unremoved */
375 prev = ls;
376 ls = ls->next;
377 }
378 }
379
380 return;
6dbe3af9
KZ
381}
382
9db54a7e
SK
383
384static int filename_equal(const char *cp, const char *dp)
6dbe3af9 385{
9db54a7e
SK
386 int i = strlen(dp);
387
db0ccb76 388 DBG(SEARCH, ul_debug("compare '%s' and '%s'", cp, dp));
9db54a7e
SK
389
390 if (dp[0] == 's' && dp[1] == '.' && filename_equal(cp, dp + 2))
391 return 1;
392 if (!strcmp(dp + i - 2, ".Z"))
393 i -= 2;
394 else if (!strcmp(dp + i - 3, ".gz"))
395 i -= 3;
396 else if (!strcmp(dp + i - 3, ".xz"))
397 i -= 3;
398 else if (!strcmp(dp + i - 4, ".bz2"))
399 i -= 4;
400 while (*cp && *dp && *cp == *dp)
401 cp++, dp++, i--;
402 if (*cp == 0 && *dp == 0)
403 return 1;
404 while (isdigit(*dp))
405 dp++;
406 if (*cp == 0 && *dp++ == '.') {
407 --i;
408 while (i > 0 && *dp)
409 if (--i, *dp++ == '.')
410 return (*dp++ == 'C' && *dp++ == 0);
411 return 1;
412 }
413 return 0;
6dbe3af9 414}
fd6b7a7f 415
9db54a7e 416static void findin(const char *dir, const char *pattern, int *count, char **wait)
12b80642 417{
9db54a7e
SK
418 DIR *dirp;
419 struct dirent *dp;
420
421 dirp = opendir(dir);
422 if (dirp == NULL)
423 return;
424
3635f53c 425 DBG(SEARCH, ul_debug("find '%s' in '%s'", pattern, dir));
9db54a7e
SK
426
427 while ((dp = readdir(dirp)) != NULL) {
428 if (!filename_equal(pattern, dp->d_name))
429 continue;
430
431 if (uflag && *count == 0)
432 xasprintf(wait, "%s/%s", dir, dp->d_name);
433
434 else if (uflag && *count == 1 && *wait) {
435 printf("%s: %s %s/%s", pattern, *wait, dir, dp->d_name);
436 free(*wait);
437 *wait = NULL;
438 } else
439 printf(" %s/%s", dir, dp->d_name);
440 ++(*count);
12b80642 441 }
9db54a7e
SK
442 closedir(dirp);
443 return;
12b80642
SK
444}
445
9db54a7e 446static void lookup(const char *pattern, struct wh_dirlist *ls, int want)
30ad62d0 447{
9db54a7e
SK
448 char patbuf[PATH_MAX];
449 int count = 0;
450 char *wait = NULL, *p;
451
9db54a7e
SK
452 /* canonicalize pattern -- remove path suffix etc. */
453 p = strrchr(pattern, '/');
454 p = p ? p + 1 : (char *) pattern;
455 strncpy(patbuf, p, PATH_MAX);
456 patbuf[PATH_MAX - 1] = '\0';
3635f53c
KZ
457
458 DBG(SEARCH, ul_debug("lookup dirs for '%s' (%s), want: %s %s %s",
459 patbuf, pattern,
460 want & BIN_DIR ? "bin" : "",
7468a8d1 461 want & MAN_DIR ? "man" : "",
3635f53c 462 want & SRC_DIR ? "src" : ""));
9db54a7e
SK
463 p = strrchr(patbuf, '.');
464 if (p)
465 *p = '\0';
466
467 if (!uflag)
468 /* if -u not specified then we always print the pattern */
469 printf("%s:", patbuf);
470
471 for (; ls; ls = ls->next) {
472 if ((ls->type & want) && ls->path)
473 findin(ls->path, patbuf, &count, &wait);
6dbe3af9 474 }
9db54a7e
SK
475
476 free(wait);
477
7508d991 478 if (!uflag || count > 1)
9db54a7e
SK
479 putchar('\n');
480 return;
6dbe3af9
KZ
481}
482
3bfb9636
SK
483static void list_dirlist(struct wh_dirlist *ls)
484{
485 while (ls) {
486 if (ls->path) {
487 switch (ls->type) {
488 case BIN_DIR:
489 printf("bin: ");
490 break;
491 case MAN_DIR:
492 printf("man: ");
493 break;
494 case SRC_DIR:
495 printf("src: ");
496 break;
497 default:
498 abort();
499 }
500 printf("%s\n", ls->path);
501 }
502 ls = ls->next;
503 }
504}
505
9db54a7e 506int main(int argc, char **argv)
30ad62d0 507{
9db54a7e
SK
508 struct wh_dirlist *ls = NULL;
509 int want = ALL_DIRS;
a3d29ee0 510 int i, want_resetable = 0, opt_f_missing = 0;
9db54a7e 511
0b542a94
DB
512 setlocale(LC_ALL, "");
513 bindtextdomain(PACKAGE, LOCALEDIR);
514 textdomain(PACKAGE);
c05a80ca 515 atexit(close_stdout);
6dbe3af9 516
5aaa966d
RM
517 if (argc <= 1) {
518 warnx(_("not enough arguments"));
519 errtryhelp(EXIT_FAILURE);
520 } else {
521 /* first arg may be one of our standard longopts */
522 if (!strcmp(argv[1], "--help"))
523 usage();
524 if (!strcmp(argv[1], "--version")) {
525 printf(UTIL_LINUX_VERSION);
526 exit(EXIT_SUCCESS);
527 }
528 }
6dbe3af9 529
3635f53c
KZ
530 whereis_init_debug();
531
9db54a7e
SK
532 construct_dirlist(&ls, BIN_DIR, bindirs);
533 construct_dirlist_from_env("PATH", &ls, BIN_DIR);
534
535 construct_dirlist(&ls, MAN_DIR, mandirs);
ccec32a1
SK
536 construct_dirlist_from_env("MANPATH", &ls, MAN_DIR);
537
9db54a7e
SK
538 construct_dirlist(&ls, SRC_DIR, srcdirs);
539
540 for (i = 1; i < argc; i++) {
541 const char *arg = argv[i];
3635f53c
KZ
542 int arg_i = i;
543
544 DBG(ARGV, ul_debug("argv[%d]: %s", i, arg));
6dbe3af9 545
9db54a7e
SK
546 if (*arg != '-') {
547 lookup(arg, ls, want);
f4802c90
KZ
548 /*
549 * The lookup mask ("want") is cumulative and it's
11026083 550 * resettable only when it has been already used.
9db54a7e 551 *
f4802c90
KZ
552 * whereis -b -m foo :'foo' mask=BIN|MAN
553 * whereis -b foo bar :'foo' and 'bar' mask=BIN|MAN
554 * whereis -b foo -m bar :'foo' mask=BIN; 'bar' mask=MAN
9db54a7e 555 */
f4802c90
KZ
556 want_resetable = 1;
557 continue;
3635f53c 558 }
9db54a7e
SK
559
560 for (++arg; arg && *arg; arg++) {
3635f53c
KZ
561 DBG(ARGV, ul_debug(" arg: %s", arg));
562
9db54a7e 563 switch (*arg) {
0b542a94 564 case 'f':
a3d29ee0 565 opt_f_missing = 0;
0b542a94 566 break;
9db54a7e
SK
567 case 'u':
568 uflag = 1;
a3d29ee0 569 opt_f_missing = 0;
0b542a94 570 break;
0b542a94 571 case 'B':
5aaa966d
RM
572 if (*(arg + 1)) {
573 warnx(_("bad usage"));
574 errtryhelp(EXIT_FAILURE);
575 }
9db54a7e
SK
576 i++;
577 free_dirlist(&ls, BIN_DIR);
578 construct_dirlist_from_argv(
579 &ls, &i, argc, argv, BIN_DIR);
a3d29ee0 580 opt_f_missing = 1;
0b542a94 581 break;
0b542a94 582 case 'M':
5aaa966d
RM
583 if (*(arg + 1)) {
584 warnx(_("bad usage"));
585 errtryhelp(EXIT_FAILURE);
586 }
9db54a7e
SK
587 i++;
588 free_dirlist(&ls, MAN_DIR);
589 construct_dirlist_from_argv(
590 &ls, &i, argc, argv, MAN_DIR);
a3d29ee0 591 opt_f_missing = 1;
9db54a7e
SK
592 break;
593 case 'S':
5aaa966d
RM
594 if (*(arg + 1)) {
595 warnx(_("bad usage"));
596 errtryhelp(EXIT_FAILURE);
597 }
9db54a7e
SK
598 i++;
599 free_dirlist(&ls, SRC_DIR);
600 construct_dirlist_from_argv(
601 &ls, &i, argc, argv, SRC_DIR);
a3d29ee0 602 opt_f_missing = 1;
0b542a94 603 break;
0b542a94 604 case 'b':
f4802c90
KZ
605 if (want_resetable) {
606 want = ALL_DIRS;
607 want_resetable = 0;
608 }
9db54a7e 609 want = want == ALL_DIRS ? BIN_DIR : want | BIN_DIR;
a3d29ee0 610 opt_f_missing = 0;
9db54a7e 611 break;
0b542a94 612 case 'm':
f4802c90
KZ
613 if (want_resetable) {
614 want = ALL_DIRS;
615 want_resetable = 0;
616 }
9db54a7e 617 want = want == ALL_DIRS ? MAN_DIR : want | MAN_DIR;
a3d29ee0 618 opt_f_missing = 0;
9db54a7e
SK
619 break;
620 case 's':
f4802c90
KZ
621 if (want_resetable) {
622 want = ALL_DIRS;
623 want_resetable = 0;
624 }
9db54a7e 625 want = want == ALL_DIRS ? SRC_DIR : want | SRC_DIR;
a3d29ee0 626 opt_f_missing = 0;
9db54a7e 627 break;
3bfb9636
SK
628 case 'l':
629 list_dirlist(ls);
630 break;
0b542a94 631 case 'V':
e421313d 632 printf(UTIL_LINUX_VERSION);
0b542a94
DB
633 return EXIT_SUCCESS;
634 case 'h':
5aaa966d 635 usage();
0b542a94 636 default:
5aaa966d
RM
637 warnx(_("bad usage"));
638 errtryhelp(EXIT_FAILURE);
0b542a94 639 }
3635f53c 640
6e834d67 641 if (arg_i < i) /* moved to the next argv[] item */
3635f53c 642 break;
4ff826f6 643 }
9db54a7e 644 }
f51be859 645
9db54a7e 646 free_dirlist(&ls, ALL_DIRS);
a3d29ee0
SK
647 if (opt_f_missing)
648 errx(EXIT_FAILURE, _("option -f is missing"));
0b542a94 649 return EXIT_SUCCESS;
6dbe3af9 650}