2000-10-10 00:26:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini readlink implementation for busybox
|
|
|
|
*
|
2001-10-24 10:30:29 +05:30
|
|
|
* Copyright (C) 2000,2001 Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
2000-10-10 00:26:47 +05:30
|
|
|
*
|
2006-09-13 22:09:19 +05:30
|
|
|
* Licensed under GPL v2 or later, see file LICENSE in this tarball for details.
|
2000-10-10 00:26:47 +05:30
|
|
|
*/
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
|
|
|
|
2009-06-12 16:46:21 +05:30
|
|
|
/*
|
|
|
|
* # readlink --version
|
|
|
|
* readlink (GNU coreutils) 6.10
|
|
|
|
* # readlink --help
|
|
|
|
* -f, --canonicalize
|
|
|
|
* canonicalize by following every symlink in
|
|
|
|
* every component of the given name recursively;
|
|
|
|
* all but the last component must exist
|
|
|
|
* -e, --canonicalize-existing
|
|
|
|
* canonicalize by following every symlink in
|
|
|
|
* every component of the given name recursively,
|
|
|
|
* all components must exist
|
|
|
|
* -m, --canonicalize-missing
|
|
|
|
* canonicalize by following every symlink in
|
|
|
|
* every component of the given name recursively,
|
|
|
|
* without requirements on components existence
|
|
|
|
* -n, --no-newline do not output the trailing newline
|
|
|
|
* -q, --quiet, -s, --silent suppress most error messages
|
|
|
|
* -v, --verbose report error messages
|
|
|
|
*
|
|
|
|
* bbox supports: -f -n -v (fully), -q -s (accepts but ignores)
|
|
|
|
*/
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int readlink_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int readlink_main(int argc UNUSED_PARAM, char **argv)
|
2000-10-10 00:26:47 +05:30
|
|
|
{
|
2005-09-12 05:15:28 +05:30
|
|
|
char *buf;
|
2006-10-21 00:06:55 +05:30
|
|
|
char *fname;
|
2007-11-10 07:01:19 +05:30
|
|
|
char pathbuf[PATH_MAX];
|
2006-10-21 00:06:55 +05:30
|
|
|
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_FEATURE_READLINK_FOLLOW(
|
2006-10-21 00:06:55 +05:30
|
|
|
unsigned opt;
|
|
|
|
/* We need exactly one non-option argument. */
|
|
|
|
opt_complementary = "=1";
|
2009-06-12 16:46:21 +05:30
|
|
|
opt = getopt32(argv, "fnvsq");
|
2006-10-21 00:06:55 +05:30
|
|
|
fname = argv[optind];
|
|
|
|
)
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_NOT_FEATURE_READLINK_FOLLOW(
|
2006-10-21 00:06:55 +05:30
|
|
|
const unsigned opt = 0;
|
|
|
|
if (argc != 2) bb_show_usage();
|
|
|
|
fname = argv[1];
|
|
|
|
)
|
|
|
|
|
|
|
|
/* compat: coreutils readlink reports errors silently via exit code */
|
2009-06-12 16:46:21 +05:30
|
|
|
if (!(opt & 4)) /* not -v */
|
|
|
|
logmode = LOGMODE_NONE;
|
2006-10-21 00:06:55 +05:30
|
|
|
|
2009-06-12 16:46:21 +05:30
|
|
|
if (opt & 1) { /* -f */
|
2007-11-10 07:01:19 +05:30
|
|
|
buf = realpath(fname, pathbuf);
|
2006-10-21 00:06:55 +05:30
|
|
|
} else {
|
2007-02-11 21:49:28 +05:30
|
|
|
buf = xmalloc_readlink_or_warn(fname);
|
2006-10-21 00:06:55 +05:30
|
|
|
}
|
2004-12-08 22:17:28 +05:30
|
|
|
|
2001-05-07 23:18:28 +05:30
|
|
|
if (!buf)
|
|
|
|
return EXIT_FAILURE;
|
2009-06-12 16:46:21 +05:30
|
|
|
printf((opt & 2) ? "%s" : "%s\n", buf);
|
2005-09-11 06:35:30 +05:30
|
|
|
|
2007-06-04 15:46:52 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP && !opt)
|
2006-06-03 02:26:16 +05:30
|
|
|
free(buf);
|
2000-10-10 00:26:47 +05:30
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(EXIT_SUCCESS);
|
2000-10-10 00:26:47 +05:30
|
|
|
}
|