[PATCH master 3/7] sandbox: support escaping commas in --image filenames
Ahmad Fatoum
a.fatoum at pengutronix.de
Mon Sep 14 09:42:01 EDT 2020
On 9/14/20 12:05 PM, Ahmad Fatoum wrote:
> Some tools like afl-fuzz generate file names containing commas.
> Allow escaping the commas in the file names, so they can be passed
> to barebox.
/* Unit tests for strsep_unescaped */
#include <stdio.h>
#include <string.h>
#include <assert.h>
char *strsep_unescaped(char **s, const char *ct)
{
char *sbegin = *s, *hay;
const char *needle;
size_t shift = 0;
if (sbegin == NULL)
return NULL;
for (hay = sbegin; *hay != '\0'; ++hay) {
*hay = hay[shift];
if (*hay == '\\') {
*hay = hay[++shift];
if (*hay != '\\')
continue;
}
for (needle = ct; *needle != '\0'; ++needle) {
if (*hay == *needle)
goto match;
}
}
*s = NULL;
return sbegin;
match:
*hay = '\0';
*s = &hay[shift + 1];
return sbegin;
}
static _Bool streq(const char *a, const char *b)
{
if (a == NULL || b == NULL)
return a == b;
return strcmp(a, b) == 0;
}
#define ensure(_s, d, ...) do { \
char *expected[] = { __VA_ARGS__, NULL }; \
char *tok; \
char *s = strdup(_s); \
int i = 0; \
while ((tok = strsep_unescaped(&s, d))) { \
printf("'%s' <> '%s'?\n", tok, expected[i]); \
assert(streq(tok, expected[i])); \
i++; \
} \
} while (0)
int main(int argc, char *argv[])
{
setbuf(stdout, NULL);
ensure("aaa", ",", /* => */ "aaa", NULL);
ensure("bla,bla", ",", /* => */ "bla", "bla");
ensure("bla,bAL", ",", /* => */ "bla", "bAL");
ensure("2e\\,,bAL", ",", /* => */ "2e,", "bAL");
ensure("1\\,2,dol", ",", /* => */ "1,2", "dol");
ensure("1-2,\\,", ",", /* => */ "1-2", ",");
ensure("1\\,2,\\,", ",", /* => */ "1,2", ",");
ensure("oh,oh,oh", ",", /* => */ "oh", "oh", "oh");
ensure("oh\\,,oh", ",", /* => */ "oh,", "oh");
ensure("oh\\,,,oh", ",", /* => */ "oh,", "", "oh");
ensure("1-2,\\,", ",", /* => */ "1-2", ",");
ensure("1280\\,1024.png,ro", ",", /* => */ "1280,1024.png", "ro");
ensure("1280\\1024.png,ro", ",", /* => */ "12801024.png", "ro");
ensure("1280\\\\1024.png,ro", ",", /* => */ "1280\\1024.png", "ro");
ensure("1280.png\\\\ro", "\\", /* => */ "1280.png", "ro");
ensure("1280\\1024.png,ro", "\\", /* => */ "12801024.png,ro", NULL);
ensure("1280\\\\1024.png,ro", "\\", /* => */ "1280", "1024.png,ro", NULL);
ensure("1280\\\\1024.png\\ro", "\\", /* => */ "1280", "1024.pngro");
ensure("1280\\\\1024.png\\\\ro", "\\", /* => */ "1280", "1024.png", "ro");
ensure("/file/aa\\,b\\,b\\,b,ro,cdev", ",", /* => */ "/file/aa,b,b,b", "ro", "cdev");
printf("\nAll succeeded\n");
}
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
More information about the barebox
mailing list