summaryrefslogtreecommitdiff
path: root/udev_utils_string.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2007-05-17 20:01:54 +0200
committerKay Sievers <kay.sievers@vrfy.org>2007-05-17 20:01:54 +0200
commit2f2c4fa442f33d7eaee02eda016d6149b9aa0be6 (patch)
treea40732c948ff2aba27d4cb0478917fddf92dd64a /udev_utils_string.c
parentc2666405031cfda5720ddb9ecd88c1b476babc2a (diff)
replace_chars: replace spaces in node name
Diffstat (limited to 'udev_utils_string.c')
-rw-r--r--udev_utils_string.c25
1 files changed, 15 insertions, 10 deletions
diff --git a/udev_utils_string.c b/udev_utils_string.c
index 6f51aef014..e3dc137e63 100644
--- a/udev_utils_string.c
+++ b/udev_utils_string.c
@@ -216,8 +216,8 @@ int utf8_encoded_valid_unichar(const char *str)
return len;
}
-/* replace everything but whitelisted plain ascii and valid utf8 */
-int replace_untrusted_chars(char *str)
+/* allow chars in whitelist, plain ascii, hex-escaping and valid utf8 */
+int replace_chars(char *str, const char *white)
{
size_t i = 0;
int replaced = 0;
@@ -225,37 +225,42 @@ int replace_untrusted_chars(char *str)
while (str[i] != '\0') {
int len;
- /* valid printable ascii char */
+ /* accept whitelist */
+ if (white != NULL && strchr(white, str[i]) != NULL) {
+ i++;
+ continue;
+ }
+
+ /* accept plain ascii char */
if ((str[i] >= '0' && str[i] <= '9') ||
(str[i] >= 'A' && str[i] <= 'Z') ||
- (str[i] >= 'a' && str[i] <= 'z') ||
- strchr("#$%+-./:=?@_,", str[i])) {
+ (str[i] >= 'a' && str[i] <= 'z')) {
i++;
continue;
}
- /* hex encoding */
+ /* accept hex encoding */
if (str[i] == '\\' && str[i+1] == 'x') {
i += 2;
continue;
}
- /* valid utf8 is accepted */
+ /* accept valid utf8 */
len = utf8_encoded_valid_unichar(&str[i]);
if (len > 1) {
i += len;
continue;
}
- /* whitespace replaced with ordinary space */
- if (isspace(str[i])) {
+ /* if space is allowed, replace whitespace with ordinary space */
+ if (isspace(str[i]) && strchr(white, ' ') != NULL) {
str[i] = ' ';
i++;
replaced++;
continue;
}
- /* everything else is garbage */
+ /* everything else is replaced with '_' */
str[i] = '_';
i++;
replaced++;