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 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2002-11-07 02:09:37 +00:00
|
|
|
*/
|
|
|
|
|
2011-04-11 01:29:49 +00:00
|
|
|
//usage:#define strings_trivial_usage
|
|
|
|
//usage: "[-afo] [-n LEN] [FILE]..."
|
|
|
|
//usage:#define strings_full_usage "\n\n"
|
|
|
|
//usage: "Display printable strings in a binary file\n"
|
|
|
|
//usage: "\nOptions:"
|
|
|
|
//usage: "\n -a Scan whole file (default)"
|
|
|
|
//usage: "\n -f Precede strings with filenames"
|
|
|
|
//usage: "\n -n LEN At least LEN characters form a string (default 4)"
|
|
|
|
//usage: "\n -o Precede strings with decimal offsets"
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2002-11-07 02:09:37 +00:00
|
|
|
|
2010-10-28 16:57:19 +00:00
|
|
|
#define WHOLE_FILE 1
|
|
|
|
#define PRINT_NAME 2
|
|
|
|
#define PRINT_OFFSET 4
|
|
|
|
#define SIZE 8
|
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";
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2008-11-23 14:58:14 +00:00
|
|
|
getopt32(argv, "afon:", &n_arg);
|
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
|
|
|
|
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 10:34:43 +00: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);
|
|
|
|
}
|
2008-11-23 14:58:14 +00:00
|
|
|
if (option_mask32 & PRINT_OFFSET) {
|
2007-06-17 12:19:07 +00:00
|
|
|
printf("%7"OFF_FMT"o ", offset - n);
|
2005-06-07 03:21:20 +00:00
|
|
|
}
|
2007-06-17 12:19:07 +00:00
|
|
|
fputs(string, stdout);
|
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
|
|
|
|
2006-02-27 22:34:41 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(string);
|
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
|
|
|
}
|