mirror of
https://github.com/sheumann/hush.git
synced 2024-12-26 10:32:02 +00:00
libbb: introduce and use strcpy_and_process_escape_sequences
function old new delta strcpy_and_process_escape_sequences - 50 +50 bb_process_escape_sequence 148 138 -10 printf_main 789 776 -13 getty_main 1897 1831 -66 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 0/3 up/down: 50/-89) Total: -39 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
6a0d7490ea
commit
5360059131
@ -122,16 +122,14 @@ static double my_xstrtod(const char *arg)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_esc_string(char *str)
|
static void print_esc_string(const char *str)
|
||||||
{
|
{
|
||||||
while (*str) {
|
char c;
|
||||||
if (*str == '\\') {
|
while ((c = *str) != '\0') {
|
||||||
str++;
|
str++;
|
||||||
bb_putchar(bb_process_escape_sequence((const char **)&str));
|
if (c == '\\')
|
||||||
} else {
|
c = bb_process_escape_sequence(&str);
|
||||||
bb_putchar(*str);
|
putchar(c);
|
||||||
str++;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -344,7 +342,7 @@ static char **print_formatted(char *f, char **argv, int *conv_err)
|
|||||||
f--;
|
f--;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
bb_putchar(*f);
|
putchar(*f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -349,15 +349,7 @@ static void parse_escape(char *word)
|
|||||||
if (!word)
|
if (!word)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (p = q = word; *p; q++) {
|
strcpy_and_process_escape_sequences(word, word);
|
||||||
c = *p++;
|
|
||||||
if (c != '\\') {
|
|
||||||
*q = c;
|
|
||||||
} else {
|
|
||||||
*q = bb_process_escape_sequence(&p);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*q = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void free_instance(struct fsck_instance *i)
|
static void free_instance(struct fsck_instance *i)
|
||||||
|
@ -324,6 +324,7 @@ extern void bb_copyfd_exact_size(int fd1, int fd2, off_t size) FAST_FUNC;
|
|||||||
/* this helper yells "short read!" if param is not -1 */
|
/* this helper yells "short read!" if param is not -1 */
|
||||||
extern void complain_copyfd_and_die(off_t sz) NORETURN FAST_FUNC;
|
extern void complain_copyfd_and_die(off_t sz) NORETURN FAST_FUNC;
|
||||||
extern char bb_process_escape_sequence(const char **ptr) FAST_FUNC;
|
extern char bb_process_escape_sequence(const char **ptr) FAST_FUNC;
|
||||||
|
char* strcpy_and_process_escape_sequences(char *dst, const char *src) FAST_FUNC;
|
||||||
/* xxxx_strip version can modify its parameter:
|
/* xxxx_strip version can modify its parameter:
|
||||||
* "/" -> "/"
|
* "/" -> "/"
|
||||||
* "abc" -> "abc"
|
* "abc" -> "abc"
|
||||||
|
@ -187,19 +187,7 @@ again:
|
|||||||
|
|
||||||
#if 0 /* unused so far */
|
#if 0 /* unused so far */
|
||||||
if (flags & PARSE_ESCAPE) {
|
if (flags & PARSE_ESCAPE) {
|
||||||
const char *from;
|
strcpy_and_process_escape_sequences(tokens[t], tokens[t]);
|
||||||
char *to;
|
|
||||||
|
|
||||||
from = to = tokens[t];
|
|
||||||
while (*from) {
|
|
||||||
if (*from == '\\') {
|
|
||||||
from++;
|
|
||||||
*to++ = bb_process_escape_sequence(&from);
|
|
||||||
} else {
|
|
||||||
*to++ = *from++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*to = '\0';
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
/* Skip possible delimiters */
|
/* Skip possible delimiters */
|
||||||
|
@ -31,14 +31,13 @@ char FAST_FUNC bb_process_escape_sequence(const char **ptr)
|
|||||||
unsigned num_digits;
|
unsigned num_digits;
|
||||||
unsigned r;
|
unsigned r;
|
||||||
unsigned n;
|
unsigned n;
|
||||||
unsigned d;
|
|
||||||
unsigned base;
|
unsigned base;
|
||||||
|
|
||||||
num_digits = n = 0;
|
num_digits = n = 0;
|
||||||
base = 8;
|
base = 8;
|
||||||
q = *ptr;
|
q = *ptr;
|
||||||
|
|
||||||
#ifdef WANT_HEX_ESCAPES
|
#if WANT_HEX_ESCAPES
|
||||||
if (*q == 'x') {
|
if (*q == 'x') {
|
||||||
++q;
|
++q;
|
||||||
base = 16;
|
base = 16;
|
||||||
@ -50,20 +49,21 @@ char FAST_FUNC bb_process_escape_sequence(const char **ptr)
|
|||||||
* \02 works, \2 does not (prints \ and 2).
|
* \02 works, \2 does not (prints \ and 2).
|
||||||
* We treat \2 as a valid octal escape sequence. */
|
* We treat \2 as a valid octal escape sequence. */
|
||||||
do {
|
do {
|
||||||
d = (unsigned char)(*q) - '0';
|
#if !WANT_HEX_ESCAPES
|
||||||
#ifdef WANT_HEX_ESCAPES
|
unsigned d = (unsigned char)(*q) - '0';
|
||||||
if (d >= 10) {
|
#else
|
||||||
d = (unsigned char)(_tolower(*q)) - 'a' + 10;
|
unsigned d = (unsigned char)_tolower(*q) - '0';
|
||||||
}
|
if (d >= 10)
|
||||||
|
d += ('0' - 'a' + 10);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (d >= base) {
|
if (d >= base) {
|
||||||
#ifdef WANT_HEX_ESCAPES
|
if (WANT_HEX_ESCAPES && base == 16) {
|
||||||
if ((base == 16) && (!--num_digits)) {
|
--num_digits;
|
||||||
/* return '\\'; */
|
if (num_digits == 0) {
|
||||||
--q;
|
/* \x<bad_char> */
|
||||||
|
--q; /* go back to x */
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -85,7 +85,9 @@ char FAST_FUNC bb_process_escape_sequence(const char **ptr)
|
|||||||
}
|
}
|
||||||
} while (*++p);
|
} while (*++p);
|
||||||
/* p points to found escape char or NUL,
|
/* p points to found escape char or NUL,
|
||||||
* advance it and find what it translates to */
|
* advance it and find what it translates to.
|
||||||
|
* Note that unrecognized sequence \z returns '\'
|
||||||
|
* and leaves ptr pointing to z. */
|
||||||
p += sizeof(charmap) / 2;
|
p += sizeof(charmap) / 2;
|
||||||
n = *p;
|
n = *p;
|
||||||
}
|
}
|
||||||
@ -94,3 +96,17 @@ char FAST_FUNC bb_process_escape_sequence(const char **ptr)
|
|||||||
|
|
||||||
return (char) n;
|
return (char) n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char* FAST_FUNC strcpy_and_process_escape_sequences(char *dst, const char *src)
|
||||||
|
{
|
||||||
|
while (1) {
|
||||||
|
char c, c1;
|
||||||
|
c = c1 = *src++;
|
||||||
|
if (c1 == '\\')
|
||||||
|
c1 = bb_process_escape_sequence(&src);
|
||||||
|
*dst = c1;
|
||||||
|
if (c == '\0')
|
||||||
|
return dst;
|
||||||
|
dst++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -188,21 +188,9 @@ static void parse_args(char **argv, struct options *op, char **fakehost_p)
|
|||||||
&(op->login), &op->timeout);
|
&(op->login), &op->timeout);
|
||||||
argv += optind;
|
argv += optind;
|
||||||
if (op->flags & F_INITSTRING) {
|
if (op->flags & F_INITSTRING) {
|
||||||
const char *p = op->initstring;
|
op->initstring = xstrdup(op->initstring);
|
||||||
char *q;
|
/* decode \ddd octal codes into chars */
|
||||||
|
strcpy_and_process_escape_sequences((char*)op->initstring, op->initstring);
|
||||||
op->initstring = q = xstrdup(p);
|
|
||||||
/* copy optarg into op->initstring decoding \ddd
|
|
||||||
octal codes into chars */
|
|
||||||
while (*p) {
|
|
||||||
if (*p == '\\') {
|
|
||||||
p++;
|
|
||||||
*q++ = bb_process_escape_sequence(&p);
|
|
||||||
} else {
|
|
||||||
*q++ = *p++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*q = '\0';
|
|
||||||
}
|
}
|
||||||
op->flags ^= F_ISSUE; /* invert flag "show /etc/issue" */
|
op->flags ^= F_ISSUE; /* invert flag "show /etc/issue" */
|
||||||
debug("after getopt\n");
|
debug("after getopt\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user