Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | // SPDX-License-Identifier: GPL-2.0-only /* * Kernel module for testing utf-8 support. * * Copyright 2017 Collabora Ltd. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> #include <linux/printk.h> #include <linux/unicode.h> #include <linux/dcache.h> #include "utf8n.h" unsigned int failed_tests; unsigned int total_tests; /* Tests will be based on this version. */ #define UTF8_LATEST UNICODE_AGE(12, 1, 0) #define _test(cond, func, line, fmt, ...) do { \ total_tests++; \ if (!cond) { \ failed_tests++; \ pr_err("test %s:%d Failed: %s%s", \ func, line, #cond, (fmt?":":".")); \ if (fmt) \ pr_err(fmt, ##__VA_ARGS__); \ } \ } while (0) #define test_f(cond, fmt, ...) _test(cond, __func__, __LINE__, fmt, ##__VA_ARGS__) #define test(cond) _test(cond, __func__, __LINE__, "") static const struct { /* UTF-8 strings in this vector _must_ be NULL-terminated. */ unsigned char str[10]; unsigned char dec[10]; } nfdi_test_data[] = { /* Trivial sequence */ { /* "ABba" decomposes to itself */ .str = "aBba", .dec = "aBba", }, /* Simple equivalent sequences */ { /* 'VULGAR FRACTION ONE QUARTER' cannot decompose to 'NUMBER 1' + 'FRACTION SLASH' + 'NUMBER 4' on canonical decomposition */ .str = {0xc2, 0xbc, 0x00}, .dec = {0xc2, 0xbc, 0x00}, }, { /* 'LATIN SMALL LETTER A WITH DIAERESIS' decomposes to 'LETTER A' + 'COMBINING DIAERESIS' */ .str = {0xc3, 0xa4, 0x00}, .dec = {0x61, 0xcc, 0x88, 0x00}, }, { /* 'LATIN SMALL LETTER LJ' can't decompose to 'LETTER L' + 'LETTER J' on canonical decomposition */ .str = {0xC7, 0x89, 0x00}, .dec = {0xC7, 0x89, 0x00}, }, { /* GREEK ANO TELEIA decomposes to MIDDLE DOT */ .str = {0xCE, 0x87, 0x00}, .dec = {0xC2, 0xB7, 0x00} }, /* Canonical ordering */ { /* A + 'COMBINING ACUTE ACCENT' + 'COMBINING OGONEK' decomposes to A + 'COMBINING OGONEK' + 'COMBINING ACUTE ACCENT' */ .str = {0x41, 0xcc, 0x81, 0xcc, 0xa8, 0x0}, .dec = {0x41, 0xcc, 0xa8, 0xcc, 0x81, 0x0}, }, { /* 'LATIN SMALL LETTER A WITH DIAERESIS' + 'COMBINING OGONEK' decomposes to 'LETTER A' + 'COMBINING OGONEK' + 'COMBINING DIAERESIS' */ .str = {0xc3, 0xa4, 0xCC, 0xA8, 0x00}, .dec = {0x61, 0xCC, 0xA8, 0xcc, 0x88, 0x00}, }, }; static const struct { /* UTF-8 strings in this vector _must_ be NULL-terminated. */ unsigned char str[30]; unsigned char ncf[30]; } nfdicf_test_data[] = { /* Trivial sequences */ { /* "ABba" folds to lowercase */ .str = {0x41, 0x42, 0x62, 0x61, 0x00}, .ncf = {0x61, 0x62, 0x62, 0x61, 0x00}, }, { /* All ASCII folds to lower-case */ .str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0.1", .ncf = "abcdefghijklmnopqrstuvwxyz0.1", }, { /* LATIN SMALL LETTER SHARP S folds to LATIN SMALL LETTER S + LATIN SMALL LETTER S */ .str = {0xc3, 0x9f, 0x00}, .ncf = {0x73, 0x73, 0x00}, }, { /* LATIN CAPITAL LETTER A WITH RING ABOVE folds to LATIN SMALL LETTER A + COMBINING RING ABOVE */ .str = {0xC3, 0x85, 0x00}, .ncf = {0x61, 0xcc, 0x8a, 0x00}, }, /* Introduced by UTF-8.0.0. */ /* Cherokee letters are interesting test-cases because they fold to upper-case. Before 8.0.0, Cherokee lowercase were undefined, thus, the folding from LC is not stable between 7.0.0 -> 8.0.0, but it is from UC. */ { /* CHEROKEE SMALL LETTER A folds to CHEROKEE LETTER A */ .str = {0xea, 0xad, 0xb0, 0x00}, .ncf = {0xe1, 0x8e, 0xa0, 0x00}, }, { /* CHEROKEE SMALL LETTER YE folds to CHEROKEE LETTER YE */ .str = {0xe1, 0x8f, 0xb8, 0x00}, .ncf = {0xe1, 0x8f, 0xb0, 0x00}, }, { /* OLD HUNGARIAN CAPITAL LETTER AMB folds to OLD HUNGARIAN SMALL LETTER AMB */ .str = {0xf0, 0x90, 0xb2, 0x83, 0x00}, .ncf = {0xf0, 0x90, 0xb3, 0x83, 0x00}, }, /* Introduced by UTF-9.0.0. */ { /* OSAGE CAPITAL LETTER CHA folds to OSAGE SMALL LETTER CHA */ .str = {0xf0, 0x90, 0x92, 0xb5, 0x00}, .ncf = {0xf0, 0x90, 0x93, 0x9d, 0x00}, }, { /* LATIN CAPITAL LETTER SMALL CAPITAL I folds to LATIN LETTER SMALL CAPITAL I */ .str = {0xea, 0x9e, 0xae, 0x00}, .ncf = {0xc9, 0xaa, 0x00}, }, /* Introduced by UTF-11.0.0. */ { /* GEORGIAN SMALL LETTER AN folds to GEORGIAN MTAVRULI CAPITAL LETTER AN */ .str = {0xe1, 0xb2, 0x90, 0x00}, .ncf = {0xe1, 0x83, 0x90, 0x00}, } }; static ssize_t utf8len(const struct unicode_map *um, enum utf8_normalization n, const char *s) { return utf8nlen(um, n, s, (size_t)-1); } static int utf8cursor(struct utf8cursor *u8c, const struct unicode_map *um, enum utf8_normalization n, const char *s) { return utf8ncursor(u8c, um, n, s, (unsigned int)-1); } static void check_utf8_nfdi(struct unicode_map *um) { int i; struct utf8cursor u8c; for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { int len = strlen(nfdi_test_data[i].str); int nlen = strlen(nfdi_test_data[i].dec); int j = 0; unsigned char c; test((utf8len(um, UTF8_NFDI, nfdi_test_data[i].str) == nlen)); test((utf8nlen(um, UTF8_NFDI, nfdi_test_data[i].str, len) == nlen)); if (utf8cursor(&u8c, um, UTF8_NFDI, nfdi_test_data[i].str) < 0) pr_err("can't create cursor\n"); while ((c = utf8byte(&u8c)) > 0) { test_f((c == nfdi_test_data[i].dec[j]), "Unexpected byte 0x%x should be 0x%x\n", c, nfdi_test_data[i].dec[j]); j++; } test((j == nlen)); } } static void check_utf8_nfdicf(struct unicode_map *um) { int i; struct utf8cursor u8c; for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { int len = strlen(nfdicf_test_data[i].str); int nlen = strlen(nfdicf_test_data[i].ncf); int j = 0; unsigned char c; test((utf8len(um, UTF8_NFDICF, nfdicf_test_data[i].str) == nlen)); test((utf8nlen(um, UTF8_NFDICF, nfdicf_test_data[i].str, len) == nlen)); if (utf8cursor(&u8c, um, UTF8_NFDICF, nfdicf_test_data[i].str) < 0) pr_err("can't create cursor\n"); while ((c = utf8byte(&u8c)) > 0) { test_f((c == nfdicf_test_data[i].ncf[j]), "Unexpected byte 0x%x should be 0x%x\n", c, nfdicf_test_data[i].ncf[j]); j++; } test((j == nlen)); } } static void check_utf8_comparisons(struct unicode_map *table) { int i; for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { const struct qstr s1 = {.name = nfdi_test_data[i].str, .len = sizeof(nfdi_test_data[i].str)}; const struct qstr s2 = {.name = nfdi_test_data[i].dec, .len = sizeof(nfdi_test_data[i].dec)}; test_f(!utf8_strncmp(table, &s1, &s2), "%s %s comparison mismatch\n", s1.name, s2.name); } for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { const struct qstr s1 = {.name = nfdicf_test_data[i].str, .len = sizeof(nfdicf_test_data[i].str)}; const struct qstr s2 = {.name = nfdicf_test_data[i].ncf, .len = sizeof(nfdicf_test_data[i].ncf)}; test_f(!utf8_strncasecmp(table, &s1, &s2), "%s %s comparison mismatch\n", s1.name, s2.name); } } static void check_supported_versions(struct unicode_map *um) { /* Unicode 7.0.0 should be supported. */ test(utf8version_is_supported(um, UNICODE_AGE(7, 0, 0))); /* Unicode 9.0.0 should be supported. */ test(utf8version_is_supported(um, UNICODE_AGE(9, 0, 0))); /* Unicode 1x.0.0 (the latest version) should be supported. */ test(utf8version_is_supported(um, UTF8_LATEST)); /* Next versions don't exist. */ test(!utf8version_is_supported(um, UNICODE_AGE(13, 0, 0))); test(!utf8version_is_supported(um, UNICODE_AGE(0, 0, 0))); test(!utf8version_is_supported(um, UNICODE_AGE(-1, -1, -1))); } static int __init init_test_ucd(void) { struct unicode_map *um; failed_tests = 0; total_tests = 0; um = utf8_load(UTF8_LATEST); if (IS_ERR(um)) { pr_err("%s: Unable to load utf8 table.\n", __func__); return PTR_ERR(um); } check_supported_versions(um); check_utf8_nfdi(um); check_utf8_nfdicf(um); check_utf8_comparisons(um); if (!failed_tests) pr_info("All %u tests passed\n", total_tests); else pr_err("%u out of %u tests failed\n", failed_tests, total_tests); utf8_unload(um); return 0; } static void __exit exit_test_ucd(void) { } module_init(init_test_ucd); module_exit(exit_test_ucd); MODULE_AUTHOR("Gabriel Krisman Bertazi <krisman@collabora.co.uk>"); MODULE_LICENSE("GPL"); |