chiark / gitweb /
extras: use libudev code
authorKay Sievers <kay.sievers@vrfy.org>
Wed, 10 Sep 2008 16:24:39 +0000 (18:24 +0200)
committerKay Sievers <kay.sievers@vrfy.org>
Wed, 10 Sep 2008 16:24:39 +0000 (18:24 +0200)
14 files changed:
extras/ata_id/Makefile.am
extras/cdrom_id/Makefile.am
extras/edd_id/Makefile.am
extras/edd_id/edd_id.c
extras/fstab_import/Makefile.am
extras/fstab_import/fstab_import.c
extras/scsi_id/Makefile.am
extras/usb_id/Makefile.am
extras/volume_id/Makefile.am
extras/volume_id/vol_id.c
udev/lib/libudev-private.h
udev/lib/libudev-util.c
udev/udev.h
udev/udev_utils_string.c

index bc3b7001a42d52f4724366132181203d07c36f1b..ce4a32330f6b88c0021096d8e58794e35d1bb491 100644 (file)
@@ -12,10 +12,7 @@ ata_id_SOURCES = \
        ata_id.c \
        ../../udev/lib/libudev.h \
        ../../udev/lib/libudev.c \
-       ../../udev/lib/libudev-util.c \
-       ../../udev/udev_sysdeps.c \
-       ../../udev/udev_utils.c \
-       ../../udev/udev_utils_string.c
+       ../../udev/lib/libudev-util.c
 
 if USE_SELINUX
 ata_id_LDADD = \
index 595d710965ff6c66169106c2a1cec708101eabe9..d4db32b783543fb707f901813f2ea63931eaccd4 100644 (file)
@@ -15,10 +15,7 @@ cdrom_id_SOURCES = \
        cdrom_id.c \
        ../../udev/lib/libudev.h \
        ../../udev/lib/libudev.c \
-       ../../udev/lib/libudev-util.c \
-       ../../udev/udev_sysdeps.c \
-       ../../udev/udev_utils.c \
-       ../../udev/udev_utils_string.c
+       ../../udev/lib/libudev-util.c
 
 if USE_SELINUX
 cdrom_id_LDADD = \
index e494c1e6725e1780375685cc449c2bae866d95a4..3bdbbd85b28521889abc69e5f1cdb1517fe5d0b5 100644 (file)
@@ -15,10 +15,7 @@ edd_id_SOURCES = \
        edd_id.c \
        ../../udev/lib/libudev.h \
        ../../udev/lib/libudev.c \
-       ../../udev/lib/libudev-util.c \
-       ../../udev/udev_sysdeps.c \
-       ../../udev/udev_utils.c \
-       ../../udev/udev_utils_string.c
+       ../../udev/lib/libudev-util.c
 
 if USE_SELINUX
 edd_id_LDADD = \
index b53700e7561cba2e36af100a778bc8aa4fe4e77c..4ba60393a07bdc8596393c89aac5be06b9e42f7f 100644 (file)
@@ -156,7 +156,7 @@ int main(int argc, char *argv[])
                if (disk_id == sysfs_id) {
                        if (match[0] == '\0') {
                                /* store id */
-                               strlcpy(match, dent->d_name, sizeof(match));
+                               util_strlcpy(match, dent->d_name, sizeof(match));
                        } else {
                                /* error, same signature for another device */
                                info(udev, "'%s' does not have a unique signature\n", node);
index 7b99471fa2aedd179750d34b081395c4b5f5fedc..2ed383d95ece19adcaebcfb79c22f1e7fd8c01fb 100644 (file)
@@ -15,10 +15,7 @@ fstab_import_SOURCES = \
        fstab_import.c \
        ../../udev/lib/libudev.h \
        ../../udev/lib/libudev.c \
-       ../../udev/lib/libudev-util.c \
-       ../../udev/udev_sysdeps.c \
-       ../../udev/udev_utils.c \
-       ../../udev/udev_utils_string.c
+       ../../udev/lib/libudev-util.c
 
 if USE_SELINUX
 fstab_import_LDADD = \
index 0f4685ae2a89ce89c428b403fa85bd3df0a99314..245a72fffbc34ad4bf68da604e54d966d926a1c1 100644 (file)
@@ -146,7 +146,7 @@ int main(int argc, char *argv[])
                        if (label[0] == '"' || label[0] == '\'') {
                                char *pos;
 
-                               strlcpy(str, &label[1], sizeof(str));
+                               util_strlcpy(str, &label[1], sizeof(str));
                                pos = strrchr(str, label[0]);
                                if (pos == NULL)
                                        continue;
@@ -170,7 +170,7 @@ int main(int argc, char *argv[])
                        if (uuid[0] == '"' || uuid[0] == '\'') {
                                char *pos;
 
-                               strlcpy(str, &uuid[1], sizeof(str));
+                               util_strlcpy(str, &uuid[1], sizeof(str));
                                pos = strrchr(str, uuid[0]);
                                if (pos == NULL)
                                        continue;
index 62e14e5adb927652cc037e97be2b352310ecdaef..b6bebb69a590c9c69011c84c6f053102961e3863 100644 (file)
@@ -15,10 +15,7 @@ scsi_id_SOURCES = \
        bsg.h \
        ../../udev/lib/libudev.h \
        ../../udev/lib/libudev.c \
-       ../../udev/lib/libudev-util.c \
-       ../../udev/udev_sysdeps.c \
-       ../../udev/udev_utils.c \
-       ../../udev/udev_utils_string.c
+       ../../udev/lib/libudev-util.c
 
 if USE_SELINUX
 scsi_id_LDADD = \
index 07692df3a2df12fab89d37b7312d0b077bd61d0f..ba74baad4289569b3f5f4a5c34d621bfea7e5c87 100644 (file)
@@ -24,4 +24,3 @@ endif
 
 distclean-local:
        rm -f Makefile.in
-
index 75f3e984d6c56aadde102e8a55dfb7cd19b0803c..3e11d5c348f40b9a2e781e5c89f06bc8c7e16f45 100644 (file)
@@ -14,10 +14,7 @@ vol_id_SOURCES = \
        vol_id.c \
        ../../udev/lib/libudev.h \
        ../../udev/lib/libudev.c \
-       ../../udev/lib/libudev-util.c \
-       ../../udev/udev_sysdeps.c \
-       ../../udev/udev_utils.c \
-       ../../udev/udev_utils_string.c
+       ../../udev/lib/libudev-util.c
 
 vol_id_LDADD = \
        lib/libvolume_id.la
index 4b101be92920e5dbe7e1be437c1aa2152d0999fe..79ed0998038024e8f206106af98ecafb719fec79 100644 (file)
@@ -275,7 +275,7 @@ int main(int argc, char *argv[])
        }
 
        set_str(label_safe, label, sizeof(label_safe));
-       replace_chars(label_safe, ALLOWED_CHARS_INPUT);
+       util_replace_chars(label_safe, ALLOWED_CHARS_INPUT);
 
        volume_id_encode_string(label, label_enc, sizeof(label_enc));
        volume_id_encode_string(uuid, uuid_enc, sizeof(uuid_enc));
index 32837e368d278b11f01bd97859af0fbe6563a75f..1f4abc07ba2edc574318301b4a0b5ba8c4ba537f 100644 (file)
@@ -123,4 +123,5 @@ extern size_t util_path_decode(char *s);
 extern void util_remove_trailing_chars(char *path, char c);
 extern size_t util_strlcpy(char *dst, const char *src, size_t size);
 extern size_t util_strlcat(char *dst, const char *src, size_t size);
+extern int util_replace_chars(char *str, const char *white);
 #endif
index ae0adf4b88cbb8b26df2dbbbcce9ed6a57826876..7aea8c67fba38ad464895b4889f5bbf397a90403 100644 (file)
@@ -26,6 +26,7 @@
 #include <errno.h>
 #include <string.h>
 #include <dirent.h>
+#include <ctype.h>
 #include <sys/stat.h>
 
 #include "libudev.h"
@@ -255,3 +256,179 @@ size_t util_strlcat(char *dst, const char *src, size_t size)
        *q = '\0';
        return bytes;
 }
+
+/* count of characters used to encode one unicode char */
+static int utf8_encoded_expected_len(const char *str)
+{
+       unsigned char c = (unsigned char)str[0];
+
+       if (c < 0x80)
+               return 1;
+       if ((c & 0xe0) == 0xc0)
+               return 2;
+       if ((c & 0xf0) == 0xe0)
+               return 3;
+       if ((c & 0xf8) == 0xf0)
+               return 4;
+       if ((c & 0xfc) == 0xf8)
+               return 5;
+       if ((c & 0xfe) == 0xfc)
+               return 6;
+       return 0;
+}
+
+/* decode one unicode char */
+static int utf8_encoded_to_unichar(const char *str)
+{
+       int unichar;
+       int len;
+       int i;
+
+       len = utf8_encoded_expected_len(str);
+       switch (len) {
+       case 1:
+               return (int)str[0];
+       case 2:
+               unichar = str[0] & 0x1f;
+               break;
+       case 3:
+               unichar = (int)str[0] & 0x0f;
+               break;
+       case 4:
+               unichar = (int)str[0] & 0x07;
+               break;
+       case 5:
+               unichar = (int)str[0] & 0x03;
+               break;
+       case 6:
+               unichar = (int)str[0] & 0x01;
+               break;
+       default:
+               return -1;
+       }
+
+       for (i = 1; i < len; i++) {
+               if (((int)str[i] & 0xc0) != 0x80)
+                       return -1;
+               unichar <<= 6;
+               unichar |= (int)str[i] & 0x3f;
+       }
+
+       return unichar;
+}
+
+/* expected size used to encode one unicode char */
+static int utf8_unichar_to_encoded_len(int unichar)
+{
+       if (unichar < 0x80)
+               return 1;
+       if (unichar < 0x800)
+               return 2;
+       if (unichar < 0x10000)
+               return 3;
+       if (unichar < 0x200000)
+               return 4;
+       if (unichar < 0x4000000)
+               return 5;
+       return 6;
+}
+
+/* check if unicode char has a valid numeric range */
+static int utf8_unichar_valid_range(int unichar)
+{
+       if (unichar > 0x10ffff)
+               return 0;
+       if ((unichar & 0xfffff800) == 0xd800)
+               return 0;
+       if ((unichar > 0xfdcf) && (unichar < 0xfdf0))
+               return 0;
+       if ((unichar & 0xffff) == 0xffff)
+               return 0;
+       return 1;
+}
+
+/* validate one encoded unicode char and return its length */
+static int utf8_encoded_valid_unichar(const char *str)
+{
+       int len;
+       int unichar;
+       int i;
+
+       len = utf8_encoded_expected_len(str);
+       if (len == 0)
+               return -1;
+
+       /* ascii is valid */
+       if (len == 1)
+               return 1;
+
+       /* check if expected encoded chars are available */
+       for (i = 0; i < len; i++)
+               if ((str[i] & 0x80) != 0x80)
+                       return -1;
+
+       unichar = utf8_encoded_to_unichar(str);
+
+       /* check if encoded length matches encoded value */
+       if (utf8_unichar_to_encoded_len(unichar) != len)
+               return -1;
+
+       /* check if value has valid range */
+       if (!utf8_unichar_valid_range(unichar))
+               return -1;
+
+       return len;
+}
+
+/* allow chars in whitelist, plain ascii, hex-escaping and valid utf8 */
+int util_replace_chars(char *str, const char *white)
+{
+       size_t i = 0;
+       int replaced = 0;
+
+       while (str[i] != '\0') {
+               int len;
+
+               /* 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')) {
+                       i++;
+                       continue;
+               }
+
+               /* accept hex encoding */
+               if (str[i] == '\\' && str[i+1] == 'x') {
+                       i += 2;
+                       continue;
+               }
+
+               /* accept valid utf8 */
+               len = utf8_encoded_valid_unichar(&str[i]);
+               if (len > 1) {
+                       i += len;
+                       continue;
+               }
+
+               /* if space is allowed, replace whitespace with ordinary space */
+               if (isspace(str[i]) && strchr(white, ' ') != NULL) {
+                       str[i] = ' ';
+                       i++;
+                       replaced++;
+                       continue;
+               }
+
+               /* everything else is replaced with '_' */
+               str[i] = '_';
+               i++;
+               replaced++;
+       }
+
+       return replaced;
+}
index 24646ece594cb1835c6b69fe7c79d917b07132ac..7f5bd10a7c1cfaa06b3868fa540cc12b16b21162 100644 (file)
@@ -176,7 +176,6 @@ extern int string_is_true(const char *str);
 extern void remove_trailing_chars(char *path, char c);
 extern size_t path_encode(char *s, size_t len);
 extern size_t path_decode(char *s);
-extern int utf8_encoded_valid_unichar(const char *str);
 extern int replace_chars(char *str, const char *white);
 
 /* udev_utils_file.c */
index 0dea6686dbfd5d128f0c73bf62a6d50b348e9a38..540fb5caaa473667501a9a662d39a34c77041168 100644 (file)
@@ -185,7 +185,7 @@ static int utf8_unichar_valid_range(int unichar)
 }
 
 /* validate one encoded unicode char and return its length */
-int utf8_encoded_valid_unichar(const char *str)
+static int utf8_encoded_valid_unichar(const char *str)
 {
        int len;
        int unichar;