2002-11-07 07:39:37 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* strings implementation for busybox
|
|
|
|
*
|
2008-11-23 20:28:14 +05:30
|
|
|
* Copyright 2003 Tito Ragusa <farmatito@tiscali.it>
|
2006-09-17 21:58:10 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2002-11-07 07:39:37 +05:30
|
|
|
*/
|
2016-11-23 03:44:24 +05:30
|
|
|
//config:config STRINGS
|
2018-12-28 07:50:17 +05:30
|
|
|
//config: bool "strings (4.6 kb)"
|
2016-11-23 03:44:24 +05:30
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: strings prints the printable character sequences for each file
|
|
|
|
//config: specified.
|
2002-11-07 07:39:37 +05:30
|
|
|
|
2016-11-23 04:24:17 +05:30
|
|
|
//applet:IF_STRINGS(APPLET(strings, BB_DIR_USR_BIN, BB_SUID_DROP))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_STRINGS) += strings.o
|
|
|
|
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage:#define strings_trivial_usage
|
2021-06-15 14:09:33 +05:30
|
|
|
//usage: "[-fo] [-t o|d|x] [-n LEN] [FILE]..."
|
2011-04-11 06:59:49 +05:30
|
|
|
//usage:#define strings_full_usage "\n\n"
|
|
|
|
//usage: "Display printable strings in a binary file\n"
|
2016-10-25 01:22:10 +05:30
|
|
|
//We usually don't bother user with "nop" options. They work, but are not shown:
|
|
|
|
////usage: "\n -a Scan whole file (default)"
|
|
|
|
//unimplemented alternative is -d: Only strings from initialized, loaded data sections
|
|
|
|
//usage: "\n -f Precede strings with filenames"
|
|
|
|
//usage: "\n -o Precede strings with octal offsets"
|
2021-06-15 14:09:33 +05:30
|
|
|
//usage: "\n -t o|d|x Precede strings with offsets in base 8/10/16"
|
2016-10-25 01:22:10 +05:30
|
|
|
//usage: "\n -n LEN At least LEN characters form a string (default 4)"
|
2011-04-11 06:59:49 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2002-11-07 07:39:37 +05:30
|
|
|
|
2010-10-28 22:27:19 +05:30
|
|
|
#define WHOLE_FILE 1
|
|
|
|
#define PRINT_NAME 2
|
|
|
|
#define PRINT_OFFSET 4
|
|
|
|
#define SIZE 8
|
2016-10-25 01:22:10 +05:30
|
|
|
#define PRINT_RADIX 16
|
2005-06-07 08:51:20 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int strings_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int strings_main(int argc UNUSED_PARAM, char **argv)
|
2002-11-07 07:39:37 +05:30
|
|
|
{
|
2007-06-17 17:49:07 +05:30
|
|
|
int n, c, status = EXIT_SUCCESS;
|
|
|
|
unsigned count;
|
|
|
|
off_t offset;
|
2008-03-17 14:37:36 +05:30
|
|
|
FILE *file;
|
2005-06-07 08:51:20 +05:30
|
|
|
char *string;
|
|
|
|
const char *fmt = "%s: ";
|
2007-01-30 04:21:25 +05:30
|
|
|
const char *n_arg = "4";
|
2016-10-25 01:22:10 +05:30
|
|
|
/* default for -o */
|
|
|
|
const char *radix = "o";
|
|
|
|
char *radix_fmt;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2016-10-25 01:22:10 +05:30
|
|
|
getopt32(argv, "afon:t:", &n_arg, &radix);
|
2005-06-07 08:51:20 +05:30
|
|
|
/* -a is our default behaviour */
|
2007-06-17 17:49:07 +05:30
|
|
|
/*argc -= optind;*/
|
2002-11-07 07:39:37 +05:30
|
|
|
argv += optind;
|
|
|
|
|
2007-06-17 17:49:07 +05:30
|
|
|
n = xatou_range(n_arg, 1, INT_MAX);
|
2006-05-29 12:13:55 +05:30
|
|
|
string = xzalloc(n + 1);
|
2005-06-07 08:51:20 +05:30
|
|
|
n--;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2016-10-25 01:22:10 +05:30
|
|
|
if ((radix[0] != 'd' && radix[0] != 'o' && radix[0] != 'x') || radix[1] != 0)
|
|
|
|
bb_show_usage();
|
|
|
|
|
|
|
|
radix_fmt = xasprintf("%%7"OFF_FMT"%s ", radix);
|
|
|
|
|
2007-06-17 17:49:07 +05:30
|
|
|
if (!*argv) {
|
2005-06-07 08:51:20 +05:30
|
|
|
fmt = "{%s}: ";
|
2007-06-17 17:49:07 +05:30
|
|
|
*--argv = (char *)bb_msg_standard_input;
|
2003-01-14 04:49:31 +05:30
|
|
|
}
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2005-06-07 08:51:20 +05:30
|
|
|
do {
|
2008-03-17 14:37:36 +05:30
|
|
|
file = fopen_or_warn_stdin(*argv);
|
2007-06-17 17:49:07 +05:30
|
|
|
if (!file) {
|
|
|
|
status = EXIT_FAILURE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
offset = 0;
|
|
|
|
count = 0;
|
|
|
|
do {
|
|
|
|
c = fgetc(file);
|
2009-11-18 16:04:43 +05:30
|
|
|
if (isprint_asciionly(c) || c == '\t') {
|
2007-06-17 17:49:07 +05:30
|
|
|
if (count > n) {
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar(c);
|
2007-06-17 17:49:07 +05:30
|
|
|
} else {
|
|
|
|
string[count] = c;
|
|
|
|
if (count == n) {
|
2008-11-23 20:28:14 +05:30
|
|
|
if (option_mask32 & PRINT_NAME) {
|
2005-06-07 08:51:20 +05:30
|
|
|
printf(fmt, *argv);
|
|
|
|
}
|
2016-10-25 01:22:10 +05:30
|
|
|
if (option_mask32 & (PRINT_OFFSET | PRINT_RADIX)) {
|
|
|
|
printf(radix_fmt, offset - n);
|
2005-06-07 08:51:20 +05:30
|
|
|
}
|
2021-02-04 01:17:14 +05:30
|
|
|
fputs_stdout(string);
|
2003-03-14 00:19:45 +05:30
|
|
|
}
|
2007-06-17 17:49:07 +05:30
|
|
|
count++;
|
2003-03-14 00:19:45 +05:30
|
|
|
}
|
2007-06-17 17:49:07 +05:30
|
|
|
} else {
|
|
|
|
if (count > n) {
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2007-06-17 17:49:07 +05:30
|
|
|
}
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
offset++;
|
|
|
|
} while (c != EOF);
|
|
|
|
fclose_if_not_stdin(file);
|
|
|
|
} while (*++argv);
|
2005-09-08 08:41:58 +05:30
|
|
|
|
2016-10-25 01:22:10 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
2006-02-28 04:04:41 +05:30
|
|
|
free(string);
|
2016-10-25 01:22:10 +05:30
|
|
|
free(radix_fmt);
|
|
|
|
}
|
2005-09-08 08:41:58 +05:30
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(status);
|
2002-11-07 07:39:37 +05:30
|
|
|
}
|