Hash :
e120807b
Author :
Date :
2025-01-29T15:35:22
Update license notices to SDPX short identifiers + update LICENSE Fix #628. Signed-off-by: Ran Benita <ran@unusedvar.com>
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 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
/*
* Copyright © 2009 Dan Nicholson
* SPDX-License-Identifier: MIT
*/
#include "config.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "test.h"
#define DATA_PATH "keymaps/stringcomp.data"
static void
test_encodings(struct xkb_context *ctx)
{
struct xkb_keymap *keymap;
/* Accept UTF-8 encoded BOM (U+FEFF) */
const char utf8_with_bom[] =
"\xef\xbb\xbfxkb_keymap {"
" xkb_keycodes { };"
" xkb_types { };"
" xkb_compat { };"
" xkb_symbols { };"
"};";
keymap = test_compile_buffer(ctx, utf8_with_bom, sizeof(utf8_with_bom));
assert(keymap);
xkb_keymap_unref(keymap);
/* Reject UTF-16LE encoded string */
const char utf16_le[] =
"x\0k\0b\0_\0k\0e\0y\0m\0a\0p\0 \0{\0\n\0"
" \0 \0x\0k\0b\0_\0k\0e\0y\0c\0o\0d\0e\0s\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0e\0v\0d\0e\0v\0\"\0 \0}\0;\0\n\0"
" \0 \0x\0k\0b\0_\0t\0y\0p\0e\0s\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0c\0o\0m\0p\0l\0e\0t\0e\0\"\0 \0}\0;\0\n\0"
" \0 \0x\0k\0b\0_\0c\0o\0m\0p\0a\0t\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0c\0o\0m\0p\0l\0e\0t\0e\0\"\0 \0}\0;\0\n\0"
" \0 \0x\0k\0b\0_\0s\0y\0m\0b\0o\0l\0s\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0p\0c\0\"\0 \0}\0;\0\n\0"
"}\0;\0";
keymap = test_compile_buffer(ctx, utf16_le, sizeof(utf16_le));
assert(!keymap);
/* Reject UTF-16LE with BOM encoded string */
const char utf16_le_with_bom[] =
"\xff\xfex\0k\0b\0_\0k\0e\0y\0m\0a\0p\0 \0{\0\n\0"
" \0 \0x\0k\0b\0_\0k\0e\0y\0c\0o\0d\0e\0s\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0e\0v\0d\0e\0v\0\"\0 \0}\0;\0\n\0"
" \0 \0x\0k\0b\0_\0t\0y\0p\0e\0s\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0c\0o\0m\0p\0l\0e\0t\0e\0\"\0 \0}\0;\0\n\0"
" \0 \0x\0k\0b\0_\0c\0o\0m\0p\0a\0t\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0c\0o\0m\0p\0l\0e\0t\0e\0\"\0 \0}\0;\0\n\0"
" \0 \0x\0k\0b\0_\0s\0y\0m\0b\0o\0l\0s\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0p\0c\0\"\0 \0}\0;\0\n\0"
"}\0;\0";
keymap = test_compile_buffer(ctx, utf16_le_with_bom, sizeof(utf16_le_with_bom));
assert(!keymap);
/* Reject UTF-16BE encoded string */
const char utf16_be[] =
"\0x\0k\0b\0_\0k\0e\0y\0m\0a\0p\0 \0{\0\n\0"
" \0 \0x\0k\0b\0_\0k\0e\0y\0c\0o\0d\0e\0s\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0e\0v\0d\0e\0v\0\"\0 \0}\0;\0\n\0"
" \0 \0x\0k\0b\0_\0t\0y\0p\0e\0s\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0c\0o\0m\0p\0l\0e\0t\0e\0\"\0 \0}\0;\0\n\0"
" \0 \0x\0k\0b\0_\0c\0o\0m\0p\0a\0t\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0c\0o\0m\0p\0l\0e\0t\0e\0\"\0 \0}\0;\0\n\0"
" \0 \0x\0k\0b\0_\0s\0y\0m\0b\0o\0l\0s\0 \0{\0 \0i\0n\0c\0l\0u\0d\0e\0 \0\"\0p\0c\0\"\0 \0}\0;\0\n\0"
"}\0;";
keymap = test_compile_buffer(ctx, utf16_be, sizeof(utf16_be));
assert(!keymap);
}
static void
test_component_syntax_error(struct xkb_context *ctx)
{
/* The following used to trigger memory leak */
const char* const keymaps[] = {
"xkb_keymap {"
" xkb_keycodes { };"
"};"
"};", /* Syntax error, keymap “complete” */
"xkb_keymap {"
" xkb_keycodes { };"
" xkb_types { };"
" xkb_compat { };"
" xkb_symbols { };"
"};"
"};"/* Syntax error, keymap complete */,
"xkb_keymap {"
" xkb_keycodes { };"
"}" /* Syntax error, incomplete map */
" xkb_types { };"
" xkb_compat { };"
" xkb_symbols { };"
"};",
"xkb_keymap {"
" xkb_keycodes { };"
";" /* Syntax error, incomplete map */
" xkb_types { };"
" xkb_compat { };"
" xkb_symbols { };"
"};",
};
for (unsigned int k = 0; k < ARRAY_SIZE(keymaps); k++) {
fprintf(stderr, "------\n*** %s: #%u ***\n", __func__, k);
const struct xkb_keymap *keymap =
test_compile_buffer(ctx, keymaps[k], strlen(keymaps[k]));
assert(!keymap);
}
}
static void
test_recursive(struct xkb_context *ctx)
{
struct xkb_keymap *keymap;
const char* const keymaps[] = {
/* Recursive keycodes */
"Keycodes: recursive",
"xkb_keymap {"
" xkb_keycodes { include \"evdev+recursive\" };"
" xkb_types { include \"complete\" };"
" xkb_compat { include \"complete\" };"
" xkb_symbols { include \"pc\" };"
"};",
"Keycodes: recursive(bar)",
"xkb_keymap {"
" xkb_keycodes { include \"evdev+recursive(bar)\" };"
" xkb_types { include \"complete\" };"
" xkb_compat { include \"complete\" };"
" xkb_symbols { include \"pc\" };"
"};",
/* Recursive key types */
"Key types: recursive",
"xkb_keymap {"
" xkb_keycodes { include \"evdev\" };"
" xkb_types { include \"recursive\" };"
" xkb_compat { include \"complete\" };"
" xkb_symbols { include \"pc\" };"
"};",
"Key types: recursive(bar)",
"xkb_keymap {"
" xkb_keycodes { include \"evdev\" };"
" xkb_types { include \"recursive(bar)\" };"
" xkb_compat { include \"complete\" };"
" xkb_symbols { include \"pc\" };"
"};",
/* Recursive compat */
"Compat: recursive",
"xkb_keymap {"
" xkb_keycodes { include \"evdev\" };"
" xkb_types { include \"recursive\" };"
" xkb_compat { include \"complete\" };"
" xkb_symbols { include \"pc\" };"
"};",
"Compat: recursive(bar)",
"xkb_keymap {"
" xkb_keycodes { include \"evdev\" };"
" xkb_types { include \"complete\" };"
" xkb_compat { include \"recursive(bar)\" };"
" xkb_symbols { include \"pc\" };"
"};",
/* Recursive symbols */
"Symbols: recursive",
"xkb_keymap {"
" xkb_keycodes { include \"evdev\" };"
" xkb_types { include \"complete\" };"
" xkb_compat { include \"complete\" };"
" xkb_symbols { include \"recursive\" };"
"};",
"Symbols: recursive(bar)",
"xkb_keymap {"
" xkb_keycodes { include \"evdev\" };"
" xkb_types { include \"complete\" };"
" xkb_compat { include \"complete\" };"
" xkb_symbols { include \"recursive(bar)\" };"
"};"
};
for (unsigned int k = 0; k < ARRAY_SIZE(keymaps); k++) {
fprintf(stderr, "------\n*** %s: #%u %s ***\n", __func__, k, keymaps[k]);
k++;
keymap = test_compile_buffer(ctx, keymaps[k], strlen(keymaps[k]));
assert(!keymap);
}
}
/* Test some limits related to allocations */
static void
test_alloc_limits(struct xkb_context *ctx)
{
const char * const keymaps[] = {
/* Keycodes */
"xkb_keymap {\n"
/* Valid keycode value, but we should not handle it
* with our *continuous* array! */
" xkb_keycodes { <> = 0xfffffffe; };\n"
" xkb_types { };\n"
" xkb_compat { };\n"
" xkb_symbols { key <> {[a]}; };\n"
"};",
/* Key types */
"xkb_keymap {\n"
" xkb_keycodes { };\n"
" xkb_types {\n"
" type \"X\" { map[none] = 0xfffffffe; };\n" /* Invalid level index */
" };\n"
" xkb_compat { };\n"
" xkb_symbols { };\n"
"};",
"xkb_keymap {\n"
" xkb_keycodes { };\n"
" xkb_types {\n"
" type \"X\" {levelname[0xfffffffe]=\"x\";};\n" /* Invalid level index */
" };\n"
" xkb_compat { };\n"
" xkb_symbols { };\n"
"};"
};
for (unsigned int k = 0; k < ARRAY_SIZE(keymaps); k++) {
fprintf(stderr, "------\n*** %s: #%u ***\n", __func__, k);
const struct xkb_keymap *keymap =
test_compile_buffer(ctx, keymaps[k], strlen(keymaps[k]));
assert(!keymap);
}
}
/* Test various multi-{keysym,action} syntaxes */
static void
test_multi_keysyms_actions(struct xkb_context *ctx)
{
struct xkb_keymap *keymap;
/* Macros to define the tests */
#define make_keymap(keysyms, actions) \
"xkb_keymap {\n" \
" xkb_keycodes {\n" \
" minimum= 8;\n" \
" maximum= 10;\n" \
" <AE01> = 10;\n" \
" };\n" \
" xkb_types { include \"basic\" };\n" \
" xkb_compat { include \"basic\" };\n" \
" xkb_symbols {\n" \
" key <AE01> { " keysyms actions " };\n" \
" };\n" \
"};"
#define make_keymap_with_keysyms(keysyms) \
make_keymap("[" keysyms "]", "")
#define make_keymap_with_actions(actions) \
make_keymap("", "actions[1] = [" actions "]")
#define test_keymaps \
make_keymaps_with(make_keymap_with_keysyms, \
"a", "b", "c", "d"), \
make_keymaps_with(make_keymap_with_actions, \
"SetMods(modifiers=Control)", \
"SetGroup(group=+1)", \
"Private(data=\"foo\")", \
"Private(data=\"bar\")")
#define run_test(kind, condition, msg, ...) do { \
const char* const keymaps[] = { test_keymaps }; \
for (size_t k = 0; k < ARRAY_SIZE(keymaps); k++) { \
fprintf(stderr, \
"------\n" \
"*** %s: " kind "#%zu ***\n", \
__func__, k + 1); \
keymap = test_compile_buffer(ctx, keymaps[k], \
strlen(keymaps[k])); \
assert_printf(condition, \
"The following symbols " msg " parse:\n%s\n", \
keymaps[k]); \
__VA_ARGS__; \
} \
} while (0)
/* Test: valid keymaps */
#define make_keymaps_with(func, a, b, c, d) \
func(a), \
func(a", "b), \
func("{ "a", "b" }"), \
func("{ "a", "b", "c" }"), \
func(a", { "b", "c" }"), \
func("{ "a", "b" }, "c), \
func("{ "a", "b" }, { "c", "d" }"), \
func("{ "a", "b" }, "c", { "d", "a" }"), \
func("{ "a", "b" }, { "c", "d" }, "a)
run_test("valid", keymap != NULL, "does *not*", xkb_keymap_unref(keymap));
#undef make_keymaps_with
/* Test: invalid keymaps */
#define make_keymaps_with(func, a, b, c, d) \
func("{}"), \
func("{ {} }"), \
func("{ "a" }"), \
func("{ "a", {} }"), \
func("{ {}, "b" }"), \
func("{ {}, {} }"), \
func("{ "a", { "b" } }"), \
func("{ { "a" }, "b" }"), \
func("{ { "a", "b" }, "c" }"), \
func("{ "a", { "b", "c" } }"), \
func("{ "a", {}, "c" }"), \
func("{ "a", "b", {} }"), \
func("{ {}, "b", "c" }"), \
func("{ { "a", "b" }, "c", "d" }"), \
func("{ "a", { "b", "c" }, "d" }"), \
func("{ "a", "b", { "c", "d" } }"), \
func("{ { "a", "b" }, { "c", "d" } }")
run_test("invalid", keymap == NULL, "*does*");
#undef make_keymap
#undef make_keymap_with_actions
#undef make_keymap_with_keysyms
#undef make_keymaps_with
#undef test_keymaps
#undef run_test
}
static void
test_invalid_symbols_fields(struct xkb_context *ctx)
{
/* Any of the following is invalid syntax, but also use to trigger
* a NULL pointer deference, thus this regression test */
const char * const keymaps[] = {
"xkb_keymap {\n"
" xkb_keycodes { <> = 9; };\n"
" xkb_types { };\n"
" xkb_compat { };\n"
" xkb_symbols { key <> { vmods = [] }; };\n"
"};",
"xkb_keymap {\n"
" xkb_keycodes { <> = 9; };\n"
" xkb_types { };\n"
" xkb_compat { };\n"
" xkb_symbols { key <> { repeat = [] }; };\n"
"};",
"xkb_keymap {\n"
" xkb_keycodes { <> = 9; };\n"
" xkb_types { };\n"
" xkb_compat { };\n"
" xkb_symbols { key <> { type = [] }; };\n"
"};",
"xkb_keymap {\n"
" xkb_keycodes { <> = 9; };\n"
" xkb_types { };\n"
" xkb_compat { };\n"
" xkb_symbols { key <> { groupswrap = [] }; };\n"
"};",
"xkb_keymap {\n"
" xkb_keycodes { <> = 9; };\n"
" xkb_types { };\n"
" xkb_compat { };\n"
" xkb_symbols { key <> { groupsredirect = [] }; };\n"
"};",
/* Used to parse without error because the “repeats” key field is valid,
* but we should fail in the following 2 keymaps */
"xkb_keymap {\n"
" xkb_keycodes { <> = 9; };\n"
" xkb_types { };\n"
" xkb_compat { };\n"
" xkb_symbols { key <> { vmods=[], repeats=false }; };\n"
"};",
"xkb_keymap {\n"
" xkb_keycodes { <> = 9; };\n"
" xkb_types { };\n"
" xkb_compat { };\n"
" xkb_symbols { key <> { repeats=false, vmods=[] }; };\n"
"};"
};
for (unsigned int k = 0; k < ARRAY_SIZE(keymaps); k++) {
fprintf(stderr, "------\n*** %s: #%u ***\n", __func__, k);
const struct xkb_keymap *keymap =
test_compile_buffer(ctx, keymaps[k], strlen(keymaps[k]));
assert(!keymap);
}
}
static void
test_prebuilt_keymap_roundtrip(struct xkb_context *ctx)
{
/* Load in a prebuilt keymap, make sure we can compile it from memory,
* then compare it to make sure we get the same result when dumping it
* to a string. */
char *original = test_read_file(DATA_PATH);
assert(original);
/* Load a prebuild keymap, once without, once with the trailing \0 */
for (unsigned int i = 0; i <= 1; i++) {
fprintf(stderr, "------\n*** %s, trailing \\0: %d ***\n", __func__, i);
struct xkb_keymap *keymap =
test_compile_buffer(ctx, original, strlen(original) + i);
assert(keymap);
char *dump =
xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
assert(dump);
if (!streq(original, dump)) {
fprintf(stderr,
"round-trip test failed: dumped map differs from original\n");
fprintf(stderr, "path to original file: %s\n",
test_get_path(DATA_PATH));
fprintf(stderr, "length: dumped %lu, original %lu\n",
(unsigned long) strlen(dump),
(unsigned long) strlen(original));
fprintf(stderr, "dumped map:\n");
fprintf(stderr, "%s\n", dump);
fflush(stderr);
assert(0);
}
free(dump);
xkb_keymap_unref(keymap);
}
free(original);
}
static void
test_keymap_from_rules(struct xkb_context *ctx)
{
/* Make sure we can recompile our output for a normal keymap from rules. */
fprintf(stderr, "------\n*** %s ***\n", __func__);
struct xkb_keymap *keymap = test_compile_rules(ctx, NULL, NULL,
"ru,ca,de,us",
",multix,neo,intl", NULL);
assert(keymap);
char *dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
assert(dump);
xkb_keymap_unref(keymap);
keymap = test_compile_buffer(ctx, dump, strlen(dump));
assert(keymap);
xkb_keymap_unref(keymap);
free(dump);
}
int
main(int argc, char *argv[])
{
test_init();
struct xkb_context *ctx = test_get_context(CONTEXT_NO_FLAG);
assert(ctx);
/* Make sure we can't (falsely claim to) compile an empty string. */
struct xkb_keymap *keymap = test_compile_buffer(ctx, "", 0);
assert(!keymap);
test_encodings(ctx);
test_component_syntax_error(ctx);
test_recursive(ctx);
test_alloc_limits(ctx);
test_multi_keysyms_actions(ctx);
test_invalid_symbols_fields(ctx);
test_prebuilt_keymap_roundtrip(ctx);
test_keymap_from_rules(ctx);
xkb_context_unref(ctx);
return EXIT_SUCCESS;
}