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