2002-12-10 05:44:33 +05:30
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
/* BB_AUDIT SUSv3 N/A -- Apparently a busybox extension. */
|
|
|
|
|
|
|
|
/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
|
|
|
|
*
|
|
|
|
* Now does proper error checking on output and returns a failure exit code
|
|
|
|
* if one or more paths can not be resolved.
|
|
|
|
*/
|
|
|
|
|
2002-12-10 05:44:33 +05:30
|
|
|
#include <limits.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "busybox.h"
|
|
|
|
|
|
|
|
int realpath_main(int argc, char **argv)
|
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
|
2002-12-10 08:46:37 +05:30
|
|
|
RESERVE_CONFIG_BUFFER(resolved_path, PATH_MAX);
|
2002-12-10 05:44:33 +05:30
|
|
|
|
2002-12-10 08:46:37 +05:30
|
|
|
if (--argc == 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2002-12-10 05:44:33 +05:30
|
|
|
}
|
|
|
|
|
2002-12-10 08:46:37 +05:30
|
|
|
do {
|
|
|
|
argv++;
|
|
|
|
if (realpath(*argv, resolved_path) != NULL) {
|
2002-12-10 05:44:33 +05:30
|
|
|
puts(resolved_path);
|
|
|
|
} else {
|
2003-03-19 14:43:01 +05:30
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
bb_perror_msg("%s", *argv);
|
2002-12-10 05:44:33 +05:30
|
|
|
}
|
2002-12-10 08:46:37 +05:30
|
|
|
} while (--argc);
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
#ifdef CONFIG_FEATURE_CLEAN_UP
|
2002-12-10 08:46:37 +05:30
|
|
|
RELEASE_CONFIG_BUFFER(resolved_path);
|
2003-03-19 14:43:01 +05:30
|
|
|
#endif
|
2002-12-10 05:44:33 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_fflush_stdout_and_exit(retval);
|
2002-12-10 08:46:37 +05:30
|
|
|
}
|