Changes for kernel and Busybox
[tomato.git] / release / src / router / busybox / coreutils / readlink.c
blobf7ad791ec8de6a9d73d37470b760610ede4e76c6
1 /* vi: set sw=4 ts=4: */
2 /*
3 * Mini readlink implementation for busybox
5 * Copyright (C) 2000,2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */
10 //usage:#define readlink_trivial_usage
11 //usage: IF_FEATURE_READLINK_FOLLOW("[-fnv] ") "FILE"
12 //usage:#define readlink_full_usage "\n\n"
13 //usage: "Display the value of a symlink"
14 //usage: IF_FEATURE_READLINK_FOLLOW( "\n"
15 //usage: "\n -f Canonicalize by following all symlinks"
16 //usage: "\n -n Don't add newline"
17 //usage: "\n -v Verbose"
18 //usage: )
20 #include "libbb.h"
23 * # readlink --version
24 * readlink (GNU coreutils) 6.10
25 * # readlink --help
26 * -f, --canonicalize
27 * canonicalize by following every symlink in
28 * every component of the given name recursively;
29 * all but the last component must exist
30 * -e, --canonicalize-existing
31 * canonicalize by following every symlink in
32 * every component of the given name recursively,
33 * all components must exist
34 * -m, --canonicalize-missing
35 * canonicalize by following every symlink in
36 * every component of the given name recursively,
37 * without requirements on components existence
38 * -n, --no-newline do not output the trailing newline
39 * -q, --quiet, -s, --silent suppress most error messages
40 * -v, --verbose report error messages
42 * bbox supports: -f -n -v (fully), -q -s (accepts but ignores)
45 int readlink_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
46 int readlink_main(int argc UNUSED_PARAM, char **argv)
48 char *buf;
49 char *fname;
51 IF_FEATURE_READLINK_FOLLOW(
52 unsigned opt;
53 /* We need exactly one non-option argument. */
54 opt_complementary = "=1";
55 opt = getopt32(argv, "fnvsq");
56 fname = argv[optind];
58 IF_NOT_FEATURE_READLINK_FOLLOW(
59 const unsigned opt = 0;
60 if (argc != 2) bb_show_usage();
61 fname = argv[1];
64 /* compat: coreutils readlink reports errors silently via exit code */
65 if (!(opt & 4)) /* not -v */
66 logmode = LOGMODE_NONE;
68 if (opt & 1) { /* -f */
69 buf = xmalloc_realpath(fname);
70 } else {
71 buf = xmalloc_readlink_or_warn(fname);
74 if (!buf)
75 return EXIT_FAILURE;
76 printf((opt & 2) ? "%s" : "%s\n", buf);
78 if (ENABLE_FEATURE_CLEAN_UP)
79 free(buf);
81 fflush_stdout_and_exit(EXIT_SUCCESS);