]> git.ipfire.org Git - thirdparty/util-linux.git/blob - misc-utils/findfs.c
Merge branch 'fix-ipcs-q-fallback' of https://github.com/rudimeier/util-linux
[thirdparty/util-linux.git] / misc-utils / findfs.c
1 /*
2 * Copyright (C) 2009 Karel Zak <kzak@redhat.com>
3 *
4 * This file may be redistributed under the terms of the GNU Public
5 * License.
6 */
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <string.h>
10 #include <errno.h>
11
12 #include <blkid.h>
13
14 #include "nls.h"
15 #include "closestream.h"
16 #include "c.h"
17 #include "exitcodes.h"
18
19 /* Exit codes used by findfs. */
20 #define FINDFS_SUCCESS 0 /* no errors */
21 #define FINDFS_NOT_FOUND 1 /* label or uuid cannot be found */
22 #define FINDFS_USAGE_ERROR 2 /* user did something unexpected */
23
24 static void __attribute__((__noreturn__)) usage(int rc)
25 {
26 FILE *out = rc ? stderr : stdout;
27 fputs(USAGE_HEADER, out);
28 fprintf(out, _(" %s [options] {LABEL,UUID,PARTUUID,PARTLABEL}=<value>\n"),
29 program_invocation_short_name);
30 fputs(USAGE_OPTIONS, out);
31 fputs(USAGE_HELP, out);
32 fputs(USAGE_VERSION, out);
33 fprintf(out, USAGE_MAN_TAIL("findfs(8)"));
34 exit(rc);
35 }
36
37 int main(int argc, char **argv)
38 {
39 char *dev;
40
41 setlocale(LC_ALL, "");
42 bindtextdomain(PACKAGE, LOCALEDIR);
43 textdomain(PACKAGE);
44 atexit(close_stdout);
45
46 if (argc != 2)
47 /* we return '2' for backward compatibility
48 * with version from e2fsprogs */
49 usage(FINDFS_USAGE_ERROR);
50
51 if (strcmp(argv[1], "-V") == 0 ||
52 strcmp(argv[1], "--version") == 0) {
53 printf(UTIL_LINUX_VERSION);
54 return FINDFS_SUCCESS;
55 } else if (strcmp(argv[1], "-h") == 0 ||
56 strcmp(argv[1], "--help") == 0) {
57 usage(FINDFS_SUCCESS);
58 } else if (argv[1][0] == '-')
59 usage(FINDFS_USAGE_ERROR);
60
61 dev = blkid_evaluate_tag(argv[1], NULL, NULL);
62 if (!dev)
63 errx(FINDFS_NOT_FOUND, _("unable to resolve '%s'"), argv[1]);
64
65 puts(dev);
66 return FINDFS_SUCCESS;
67 }
68