Glenn L McGrath | 62fae30 | 2002-12-10 00:14:33 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify |
| 3 | * it under the terms of the GNU General Public License as published by |
| 4 | * the Free Software Foundation; either version 2 of the License, or |
| 5 | * (at your option) any later version. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | * |
| 12 | * You should have received a copy of the GNU General Public License |
| 13 | * along with this program; if not, write to the Free Software |
| 14 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 15 | */ |
| 16 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 17 | /* BB_AUDIT SUSv3 N/A -- Apparently a busybox extension. */ |
| 18 | |
| 19 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 20 | * |
| 21 | * Now does proper error checking on output and returns a failure exit code |
| 22 | * if one or more paths can not be resolved. |
| 23 | */ |
| 24 | |
Glenn L McGrath | 62fae30 | 2002-12-10 00:14:33 +0000 | [diff] [blame] | 25 | #include <limits.h> |
| 26 | #include <stdlib.h> |
Glenn L McGrath | 62fae30 | 2002-12-10 00:14:33 +0000 | [diff] [blame] | 27 | #include "busybox.h" |
| 28 | |
| 29 | int realpath_main(int argc, char **argv) |
| 30 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 31 | int retval = EXIT_SUCCESS; |
| 32 | |
"Vladimir N. Oleynik" | a2eec60 | 2005-10-15 13:45:32 +0000 | [diff] [blame] | 33 | #if PATH_MAX > (BUFSIZ+1) |
Glenn L McGrath | 7b4e89b | 2002-12-10 03:16:37 +0000 | [diff] [blame] | 34 | RESERVE_CONFIG_BUFFER(resolved_path, PATH_MAX); |
"Vladimir N. Oleynik" | a2eec60 | 2005-10-15 13:45:32 +0000 | [diff] [blame] | 35 | # define resolved_path_MUST_FREE 1 |
| 36 | #else |
| 37 | #define resolved_path bb_common_bufsiz1 |
| 38 | # define resolved_path_MUST_FREE 0 |
| 39 | #endif |
Glenn L McGrath | 62fae30 | 2002-12-10 00:14:33 +0000 | [diff] [blame] | 40 | |
Glenn L McGrath | 7b4e89b | 2002-12-10 03:16:37 +0000 | [diff] [blame] | 41 | if (--argc == 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 42 | bb_show_usage(); |
Glenn L McGrath | 62fae30 | 2002-12-10 00:14:33 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Glenn L McGrath | 7b4e89b | 2002-12-10 03:16:37 +0000 | [diff] [blame] | 45 | do { |
| 46 | argv++; |
| 47 | if (realpath(*argv, resolved_path) != NULL) { |
Glenn L McGrath | 62fae30 | 2002-12-10 00:14:33 +0000 | [diff] [blame] | 48 | puts(resolved_path); |
| 49 | } else { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 50 | retval = EXIT_FAILURE; |
| 51 | bb_perror_msg("%s", *argv); |
Glenn L McGrath | 62fae30 | 2002-12-10 00:14:33 +0000 | [diff] [blame] | 52 | } |
Glenn L McGrath | 7b4e89b | 2002-12-10 03:16:37 +0000 | [diff] [blame] | 53 | } while (--argc); |
| 54 | |
"Vladimir N. Oleynik" | a2eec60 | 2005-10-15 13:45:32 +0000 | [diff] [blame] | 55 | #if ENABLE_FEATURE_CLEAN_UP && resolved_path_MUST_FREE |
Glenn L McGrath | 7b4e89b | 2002-12-10 03:16:37 +0000 | [diff] [blame] | 56 | RELEASE_CONFIG_BUFFER(resolved_path); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 57 | #endif |
Glenn L McGrath | 62fae30 | 2002-12-10 00:14:33 +0000 | [diff] [blame] | 58 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 59 | bb_fflush_stdout_and_exit(retval); |
Glenn L McGrath | 7b4e89b | 2002-12-10 03:16:37 +0000 | [diff] [blame] | 60 | } |