blob: 1a0eca64675d6190e9af0dd2b3dd2be8709897d1 [file] [log] [blame]
Mark Whitley872138d2000-10-09 18:56:47 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini readlink implementation for busybox
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 2000,2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
Mark Whitley872138d2000-10-09 18:56:47 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Mark Whitley872138d2000-10-09 18:56:47 +00008 */
Pere Orga34425382011-03-31 14:43:25 +02009
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: "\nOptions:"
16//usage: "\n -f Canonicalize by following all symlinks"
17//usage: "\n -n Don't add newline"
18//usage: "\n -v Verbose"
19//usage: )
20
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000021#include "libbb.h"
22
Denys Vlasenkoa99aa6e2009-06-12 13:16:21 +020023/*
24 * # readlink --version
25 * readlink (GNU coreutils) 6.10
26 * # readlink --help
27 * -f, --canonicalize
28 * canonicalize by following every symlink in
29 * every component of the given name recursively;
30 * all but the last component must exist
31 * -e, --canonicalize-existing
32 * canonicalize by following every symlink in
33 * every component of the given name recursively,
34 * all components must exist
35 * -m, --canonicalize-missing
36 * canonicalize by following every symlink in
37 * every component of the given name recursively,
38 * without requirements on components existence
39 * -n, --no-newline do not output the trailing newline
40 * -q, --quiet, -s, --silent suppress most error messages
41 * -v, --verbose report error messages
42 *
43 * bbox supports: -f -n -v (fully), -q -s (accepts but ignores)
44 */
45
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000046int readlink_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000047int readlink_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley872138d2000-10-09 18:56:47 +000048{
Rob Landleyba502172005-09-11 23:45:28 +000049 char *buf;
Denis Vlasenko456fa6c2006-10-20 18:36:55 +000050 char *fname;
Mark Whitley8a633262001-04-30 18:17:00 +000051
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000052 IF_FEATURE_READLINK_FOLLOW(
Denis Vlasenko456fa6c2006-10-20 18:36:55 +000053 unsigned opt;
54 /* We need exactly one non-option argument. */
55 opt_complementary = "=1";
Denys Vlasenkoa99aa6e2009-06-12 13:16:21 +020056 opt = getopt32(argv, "fnvsq");
Denis Vlasenko456fa6c2006-10-20 18:36:55 +000057 fname = argv[optind];
58 )
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000059 IF_NOT_FEATURE_READLINK_FOLLOW(
Denis Vlasenko456fa6c2006-10-20 18:36:55 +000060 const unsigned opt = 0;
61 if (argc != 2) bb_show_usage();
62 fname = argv[1];
63 )
Mark Whitley872138d2000-10-09 18:56:47 +000064
Denis Vlasenko456fa6c2006-10-20 18:36:55 +000065 /* compat: coreutils readlink reports errors silently via exit code */
Denys Vlasenkoa99aa6e2009-06-12 13:16:21 +020066 if (!(opt & 4)) /* not -v */
67 logmode = LOGMODE_NONE;
Denis Vlasenko456fa6c2006-10-20 18:36:55 +000068
Denys Vlasenkoa99aa6e2009-06-12 13:16:21 +020069 if (opt & 1) { /* -f */
Jeremie Koenigb1754622010-05-27 15:32:19 +020070 buf = xmalloc_realpath(fname);
Denis Vlasenko456fa6c2006-10-20 18:36:55 +000071 } else {
Denis Vlasenko6ca04442007-02-11 16:19:28 +000072 buf = xmalloc_readlink_or_warn(fname);
Denis Vlasenko456fa6c2006-10-20 18:36:55 +000073 }
Ned Luddc6fbed52004-12-08 16:47:28 +000074
Eric Andersen28355a32001-05-07 17:48:28 +000075 if (!buf)
76 return EXIT_FAILURE;
Denys Vlasenkoa99aa6e2009-06-12 13:16:21 +020077 printf((opt & 2) ? "%s" : "%s\n", buf);
Rob Landleyb7128c62005-09-11 01:05:30 +000078
Jeremie Koenigb1754622010-05-27 15:32:19 +020079 if (ENABLE_FEATURE_CLEAN_UP)
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000080 free(buf);
Mark Whitley872138d2000-10-09 18:56:47 +000081
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000082 fflush_stdout_and_exit(EXIT_SUCCESS);
Mark Whitley872138d2000-10-09 18:56:47 +000083}