Erik Andersen | 42387e4 | 2000-02-21 17:27:17 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Mini basename implementation for busybox |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Erik Andersen | 42387e4 | 2000-02-21 17:27:17 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Erik Andersen | 42387e4 | 2000-02-21 17:27:17 +0000 | [diff] [blame] | 8 | */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 9 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 10 | * |
| 11 | * Changes: |
| 12 | * 1) Now checks for too many args. Need at least one and at most two. |
| 13 | * 2) Don't check for options, as per SUSv3. |
| 14 | * 3) Save some space by using strcmp(). Calling strncmp() here was silly. |
| 15 | */ |
Denys Vlasenko | e4070cb | 2010-06-04 19:59:49 +0200 | [diff] [blame] | 16 | //config:config BASENAME |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 17 | //config: bool "basename (438 bytes)" |
Denys Vlasenko | 2f32bf8 | 2010-06-06 04:14:28 +0200 | [diff] [blame] | 18 | //config: default y |
Denys Vlasenko | e4070cb | 2010-06-04 19:59:49 +0200 | [diff] [blame] | 19 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 20 | //config: basename is used to strip the directory and suffix from filenames, |
| 21 | //config: leaving just the filename itself. Enable this option if you wish |
| 22 | //config: to enable the 'basename' utility. |
Denys Vlasenko | e4070cb | 2010-06-04 19:59:49 +0200 | [diff] [blame] | 23 | |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 24 | //applet:IF_BASENAME(APPLET_NOFORK(basename, basename, BB_DIR_USR_BIN, BB_SUID_DROP, basename)) |
| 25 | |
| 26 | //kbuild:lib-$(CONFIG_BASENAME) += basename.o |
| 27 | |
| 28 | /* BB_AUDIT SUSv3 compliant */ |
| 29 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/basename.html */ |
| 30 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 31 | //usage:#define basename_trivial_usage |
Denys Vlasenko | 0599e0f | 2021-09-09 23:45:13 +0200 | [diff] [blame] | 32 | //usage: "FILE [SUFFIX] | -a FILE... | -s SUFFIX FILE..." |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 33 | //usage:#define basename_full_usage "\n\n" |
Denys Vlasenko | 0599e0f | 2021-09-09 23:45:13 +0200 | [diff] [blame] | 34 | //usage: "Strip directory path and SUFFIX from FILE\n" |
| 35 | //usage: "\n -a All arguments are FILEs" |
| 36 | //usage: "\n -s SUFFIX Remove SUFFIX (implies -a)" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 37 | //usage: |
| 38 | //usage:#define basename_example_usage |
| 39 | //usage: "$ basename /usr/local/bin/foo\n" |
| 40 | //usage: "foo\n" |
| 41 | //usage: "$ basename /usr/local/bin/\n" |
| 42 | //usage: "bin\n" |
| 43 | //usage: "$ basename /foo/bar.txt .txt\n" |
| 44 | //usage: "bar" |
| 45 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 46 | #include "libbb.h" |
Erik Andersen | 42387e4 | 2000-02-21 17:27:17 +0000 | [diff] [blame] | 47 | |
Denis Vlasenko | 99912ca | 2007-04-10 15:43:37 +0000 | [diff] [blame] | 48 | /* This is a NOFORK applet. Be very careful! */ |
| 49 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 50 | int basename_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | fd5e66e | 2017-07-21 18:41:46 +0200 | [diff] [blame] | 51 | int basename_main(int argc UNUSED_PARAM, char **argv) |
Erik Andersen | 42387e4 | 2000-02-21 17:27:17 +0000 | [diff] [blame] | 52 | { |
Denys Vlasenko | 0599e0f | 2021-09-09 23:45:13 +0200 | [diff] [blame] | 53 | unsigned opts; |
| 54 | const char *suffix = NULL; |
Erik Andersen | 42387e4 | 2000-02-21 17:27:17 +0000 | [diff] [blame] | 55 | |
Denys Vlasenko | 0599e0f | 2021-09-09 23:45:13 +0200 | [diff] [blame] | 56 | /* '+': stop at first non-option */ |
| 57 | opts = getopt32(argv, "^+" "as:" |
| 58 | "\0" "-1" /* At least one argument */ |
| 59 | , &suffix |
| 60 | ); |
| 61 | argv += optind; |
Erik Andersen | 330fd2b | 2000-05-19 05:35:19 +0000 | [diff] [blame] | 62 | |
Denys Vlasenko | 0599e0f | 2021-09-09 23:45:13 +0200 | [diff] [blame] | 63 | do { |
| 64 | char *s; |
| 65 | size_t m; |
Erik Andersen | 42387e4 | 2000-02-21 17:27:17 +0000 | [diff] [blame] | 66 | |
Denys Vlasenko | 0599e0f | 2021-09-09 23:45:13 +0200 | [diff] [blame] | 67 | /* It should strip slash: /abc/def/ -> def */ |
| 68 | s = bb_get_last_path_component_strip(*argv++); |
| 69 | m = strlen(s); |
| 70 | if (!opts) { |
| 71 | if (*argv) { |
| 72 | suffix = *argv; |
| 73 | if (argv[1]) |
| 74 | bb_show_usage(); |
| 75 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 76 | } |
Denys Vlasenko | 0599e0f | 2021-09-09 23:45:13 +0200 | [diff] [blame] | 77 | if (suffix) { |
| 78 | size_t n = strlen(suffix); |
| 79 | if ((m > n) && (strcmp(s + m - n, suffix) == 0)) { |
| 80 | m -= n; |
| 81 | /*s[m] = '\0'; - redundant */ |
| 82 | } |
| 83 | } |
| 84 | /* puts(s) will do, but we can do without stdio this way: */ |
| 85 | s[m++] = '\n'; |
| 86 | /* NB: != is correct here: */ |
| 87 | if (full_write(STDOUT_FILENO, s, m) != (ssize_t)m) |
| 88 | return EXIT_FAILURE; |
| 89 | } while (opts && *argv); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 90 | |
Denys Vlasenko | 0599e0f | 2021-09-09 23:45:13 +0200 | [diff] [blame] | 91 | return EXIT_SUCCESS; |
Erik Andersen | 42387e4 | 2000-02-21 17:27:17 +0000 | [diff] [blame] | 92 | } |