1 /************************************************************
2 * Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc.
4 * Permission to use, copy, modify, and distribute this
5 * software and its documentation for any purpose and without
6 * fee is hereby granted, provided that the above copyright
7 * notice appear in all copies and that both that copyright
8 * notice and this permission notice appear in supporting
9 * documentation, and that the name of Silicon Graphics not be
10 * used in advertising or publicity pertaining to distribution
11 * of the software without specific prior written permission.
12 * Silicon Graphics makes no representation about the suitability
13 * of this software for any purpose. It is provided "as is"
14 * without any express or implied warranty.
16 * SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
17 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
18 * AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
19 * GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
20 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
22 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
23 * THE USE OR PERFORMANCE OF THIS SOFTWARE.
25 ********************************************************/
27 #include "xkbcomp-priv.h"
33 * The xkb_keycodes section
34 * ========================
36 * This is the simplest section type, and is the first one to be
37 * compiled. The purpose of this is mostly to map between the
38 * hardware/evdev scancodes and xkb keycodes. Each key is given a name
39 * by which it can be referred to later, e.g. in the symbols section.
43 * Statements of the form:
47 * The above would let 49 and 10 be valid keycodes in the keymap, and
48 * assign them the names TLDE and AE01 respectively. The format <WXYZ> is
49 * always used to refer to a key by name.
51 * [ The naming convention <AE01> just denoted the position of the key
52 * in the main alphanumric section of the keyboard, with the two letters
53 * specifying the row and the two digits specifying the column, from
56 * In the common case this just maps to the evdev scancodes from
57 * /usr/include/linux/input.h, e.g. the following definitions:
58 * #define KEY_GRAVE 41
60 * Similar definitions appear in the xf86-input-keyboard driver. Note
61 * that in all current keymaps there's a constant offset of 8 (for
62 * historical reasons).
64 * If there's a conflict, like the same name given to different keycodes,
65 * or same keycode given different names, it is resolved according to the
66 * merge mode which applies to the definitions.
70 * Statements of the form:
71 * alias <MENU> = <COMP>;
73 * Allows to refer to a previously defined key (here <COMP>) by another
74 * name (here <MENU>). Conflicts are handled similarly.
77 * -------------------------
78 * Statements of the form:
79 * indicator 1 = "Caps Lock";
80 * indicator 2 = "Num Lock";
81 * indicator 3 = "Scroll Lock";
83 * Assigns a name to the keyboard LED (a.k.a indicator) with the given index.
84 * The led may be referred by this name later in the compat section
87 * Effect on the keymap
88 * --------------------
89 * After all of the xkb_keycodes sections have been compiled, the
90 * following members of struct xkb_keymap are finalized:
91 * xkb_keycode_t min_key_code;
92 * xkb_keycode_t max_key_code;
93 * unsigned int num_aliases;
94 * struct xkb_key_alias *key_aliases;
95 * char *keycodes_section_name;
96 * The 'name' field of leds declared in xkb_keycodes:
97 * darray(struct xkb_led) leds;
98 * Further, the array of keys:
99 * struct xkb_key *keys;
100 * had been resized to its final size (i.e. all of the xkb_key objects are
101 * referable by their keycode). However the objects themselves do not
102 * contain any useful information besides the key name at this point.
106 enum merge_mode merge;
113 enum merge_mode merge;
122 xkb_keycode_t min_key_code;
123 xkb_keycode_t max_key_code;
124 darray(xkb_atom_t) key_names;
125 darray(LedNameInfo) led_names;
126 darray(AliasInfo) aliases;
128 struct xkb_context *ctx;
131 /***====================================================================***/
134 InitAliasInfo(AliasInfo *info, enum merge_mode merge,
135 xkb_atom_t alias, xkb_atom_t real)
137 memset(info, 0, sizeof(*info));
144 FindLedByName(KeyNamesInfo *info, xkb_atom_t name,
145 xkb_led_index_t *idx_out)
150 darray_enumerate(idx, ledi, info->led_names) {
151 if (ledi->name == name) {
161 AddLedName(KeyNamesInfo *info, enum merge_mode merge, bool same_file,
162 LedNameInfo *new, xkb_led_index_t new_idx)
164 xkb_led_index_t old_idx;
166 const int verbosity = xkb_context_get_log_verbosity(info->ctx);
167 const bool report = (same_file && verbosity > 0) || verbosity > 9;
168 const bool replace = (merge == MERGE_REPLACE || merge == MERGE_OVERRIDE);
170 /* LED with the same name already exists. */
171 old = FindLedByName(info, new->name, &old_idx);
173 if (old_idx == new_idx) {
175 "Multiple indicators named \"%s\"; "
176 "Identical definitions ignored\n",
177 xkb_atom_text(info->ctx, new->name));
182 xkb_led_index_t use = (replace ? new_idx + 1 : old_idx + 1);
183 xkb_led_index_t ignore = (replace ? old_idx + 1 : new_idx + 1);
185 "Multiple indicators named %s; Using %d, ignoring %d\n",
186 xkb_atom_text(info->ctx, new->name), use, ignore);
195 if (new_idx >= darray_size(info->led_names))
196 darray_resize0(info->led_names, new_idx + 1);
198 /* LED with the same index already exists. */
199 old = &darray_item(info->led_names, new_idx);
200 if (old->name != XKB_ATOM_NONE) {
202 const xkb_atom_t use = (replace ? new->name : old->name);
203 const xkb_atom_t ignore = (replace ? old->name : new->name);
204 log_warn(info->ctx, "Multiple names for indicator %d; "
205 "Using %s, ignoring %s\n", new_idx + 1,
206 xkb_atom_text(info->ctx, use),
207 xkb_atom_text(info->ctx, ignore));
216 darray_item(info->led_names, new_idx) = *new;
221 ClearKeyNamesInfo(KeyNamesInfo *info)
224 darray_free(info->key_names);
225 darray_free(info->aliases);
226 darray_free(info->led_names);
230 InitKeyNamesInfo(KeyNamesInfo *info, struct xkb_context *ctx)
232 memset(info, 0, sizeof(*info));
234 info->min_key_code = XKB_KEYCODE_INVALID;
235 #if XKB_KEYCODE_INVALID < XKB_KEYCODE_MAX
236 #error "Hey, you can't be changing stuff like that."
241 FindKeyByName(KeyNamesInfo *info, xkb_atom_t name)
245 for (i = info->min_key_code; i <= info->max_key_code; i++)
246 if (darray_item(info->key_names, i) == name)
249 return XKB_KEYCODE_INVALID;
253 AddKeyName(KeyNamesInfo *info, xkb_keycode_t kc, xkb_atom_t name,
254 enum merge_mode merge, bool same_file, bool report)
257 xkb_keycode_t old_kc;
258 const int verbosity = xkb_context_get_log_verbosity(info->ctx);
260 report = report && ((same_file && verbosity > 0) || verbosity > 7);
262 if (kc >= darray_size(info->key_names))
263 darray_resize0(info->key_names, kc + 1);
265 info->min_key_code = MIN(info->min_key_code, kc);
266 info->max_key_code = MAX(info->max_key_code, kc);
268 /* There's already a key with this keycode. */
269 old_name = darray_item(info->key_names, kc);
270 if (old_name != XKB_ATOM_NONE) {
271 const char *lname = KeyNameText(info->ctx, old_name);
272 const char *kname = KeyNameText(info->ctx, name);
274 if (old_name == name) {
277 "Multiple identical key name definitions; "
278 "Later occurrences of \"%s = %d\" ignored\n",
282 else if (merge == MERGE_AUGMENT) {
285 "Multiple names for keycode %d; "
286 "Using %s, ignoring %s\n", kc, lname, kname);
292 "Multiple names for keycode %d; "
293 "Using %s, ignoring %s\n", kc, kname, lname);
294 darray_item(info->key_names, kc) = XKB_ATOM_NONE;
298 /* There's already a key with this name. */
299 old_kc = FindKeyByName(info, name);
300 if (old_kc != XKB_KEYCODE_INVALID && old_kc != kc) {
301 const char *kname = KeyNameText(info->ctx, name);
303 if (merge == MERGE_OVERRIDE) {
304 darray_item(info->key_names, old_kc) = XKB_ATOM_NONE;
307 "Key name %s assigned to multiple keys; "
308 "Using %d, ignoring %d\n", kname, kc, old_kc);
312 log_vrb(info->ctx, 3,
313 "Key name %s assigned to multiple keys; "
314 "Using %d, ignoring %d\n", kname, old_kc, kc);
319 darray_item(info->key_names, kc) = name;
323 /***====================================================================***/
326 HandleAliasDef(KeyNamesInfo *info, KeyAliasDef *def, enum merge_mode merge);
329 MergeIncludedKeycodes(KeyNamesInfo *into, KeyNamesInfo *from,
330 enum merge_mode merge)
332 if (from->errorCount > 0) {
333 into->errorCount += from->errorCount;
337 if (into->name == NULL) {
338 into->name = from->name;
342 /* Merge key names. */
343 if (darray_empty(into->key_names)) {
344 into->key_names = from->key_names;
345 darray_init(from->key_names);
346 into->min_key_code = from->min_key_code;
347 into->max_key_code = from->max_key_code;
350 if (darray_size(into->key_names) < darray_size(from->key_names))
351 darray_resize0(into->key_names, darray_size(from->key_names));
353 for (unsigned i = from->min_key_code; i <= from->max_key_code; i++) {
354 xkb_atom_t name = darray_item(from->key_names, i);
355 if (name == XKB_ATOM_NONE)
358 if (!AddKeyName(into, i, name, merge, true, false))
363 /* Merge key aliases. */
364 if (darray_empty(into->aliases)) {
365 into->aliases = from->aliases;
366 darray_init(from->aliases);
371 darray_foreach(alias, from->aliases) {
374 def.merge = (merge == MERGE_DEFAULT ? alias->merge : merge);
375 def.alias = alias->alias;
376 def.real = alias->real;
378 if (!HandleAliasDef(into, &def, def.merge))
383 /* Merge LED names. */
384 if (darray_empty(into->led_names)) {
385 into->led_names = from->led_names;
386 darray_init(from->led_names);
392 darray_enumerate(idx, ledi, from->led_names) {
393 if (ledi->name == XKB_ATOM_NONE)
396 ledi->merge = (merge == MERGE_DEFAULT ? ledi->merge : merge);
397 if (!AddLedName(into, ledi->merge, false, ledi, idx))
404 HandleKeycodesFile(KeyNamesInfo *info, XkbFile *file, enum merge_mode merge);
407 HandleIncludeKeycodes(KeyNamesInfo *info, IncludeStmt *include)
409 KeyNamesInfo included;
411 InitKeyNamesInfo(&included, info->ctx);
412 included.name = include->stmt;
413 include->stmt = NULL;
415 for (IncludeStmt *stmt = include; stmt; stmt = stmt->next_incl) {
416 KeyNamesInfo next_incl;
419 file = ProcessIncludeFile(info->ctx, stmt, FILE_TYPE_KEYCODES);
421 info->errorCount += 10;
422 ClearKeyNamesInfo(&included);
426 InitKeyNamesInfo(&next_incl, info->ctx);
428 HandleKeycodesFile(&next_incl, file, MERGE_OVERRIDE);
430 MergeIncludedKeycodes(&included, &next_incl, stmt->merge);
432 ClearKeyNamesInfo(&next_incl);
436 MergeIncludedKeycodes(info, &included, include->merge);
437 ClearKeyNamesInfo(&included);
439 return (info->errorCount == 0);
443 HandleKeycodeDef(KeyNamesInfo *info, KeycodeDef *stmt, enum merge_mode merge)
445 if (stmt->merge != MERGE_DEFAULT) {
446 if (stmt->merge == MERGE_REPLACE)
447 merge = MERGE_OVERRIDE;
452 if (stmt->value < 0 || stmt->value > XKB_KEYCODE_MAX) {
454 "Illegal keycode %lld: must be between 0..%u; "
455 "Key ignored\n", (long long) stmt->value, XKB_KEYCODE_MAX);
459 return AddKeyName(info, stmt->value, stmt->name, merge, false, true);
463 HandleAliasDef(KeyNamesInfo *info, KeyAliasDef *def, enum merge_mode merge)
467 darray_foreach(old, info->aliases) {
468 if (old->alias == def->alias) {
469 if (def->real == old->real) {
470 log_vrb(info->ctx, 1,
471 "Alias of %s for %s declared more than once; "
472 "First definition ignored\n",
473 KeyNameText(info->ctx, def->alias),
474 KeyNameText(info->ctx, def->real));
477 xkb_atom_t use, ignore;
479 use = (merge == MERGE_AUGMENT ? old->real : def->real);
480 ignore = (merge == MERGE_AUGMENT ? def->real : old->real);
483 "Multiple definitions for alias %s; "
484 "Using %s, ignoring %s\n",
485 KeyNameText(info->ctx, old->alias),
486 KeyNameText(info->ctx, use),
487 KeyNameText(info->ctx, ignore));
497 InitAliasInfo(&new, merge, def->alias, def->real);
498 darray_append(info->aliases, new);
503 HandleKeyNameVar(KeyNamesInfo *info, VarDef *stmt)
505 const char *elem, *field;
508 if (!ExprResolveLhs(info->ctx, stmt->name, &elem, &field, &arrayNdx))
512 log_err(info->ctx, "Unknown element %s encountered; "
513 "Default for field %s ignored\n", elem, field);
517 if (!istreq(field, "minimum") && !istreq(field, "maximum")) {
518 log_err(info->ctx, "Unknown field encountered; "
519 "Assignment to field %s ignored\n", field);
523 /* We ignore explicit min/max statements, we always use computed. */
528 HandleLedNameDef(KeyNamesInfo *info, LedNameDef *def,
529 enum merge_mode merge)
534 if (def->ndx < 1 || def->ndx > XKB_MAX_LEDS) {
537 "Illegal indicator index (%d) specified; must be between 1 .. %d; "
538 "Ignored\n", def->ndx, XKB_MAX_LEDS);
542 if (!ExprResolveString(info->ctx, def->name, &name)) {
544 snprintf(buf, sizeof(buf), "%d", def->ndx);
546 return ReportBadType(info->ctx, "indicator", "name", buf, "string");
551 return AddLedName(info, merge, true, &ledi, def->ndx - 1);
555 HandleKeycodesFile(KeyNamesInfo *info, XkbFile *file, enum merge_mode merge)
560 info->name = strdup_safe(file->name);
562 for (ParseCommon *stmt = file->defs; stmt; stmt = stmt->next) {
563 switch (stmt->type) {
565 ok = HandleIncludeKeycodes(info, (IncludeStmt *) stmt);
568 ok = HandleKeycodeDef(info, (KeycodeDef *) stmt, merge);
571 ok = HandleAliasDef(info, (KeyAliasDef *) stmt, merge);
574 ok = HandleKeyNameVar(info, (VarDef *) stmt);
577 ok = HandleLedNameDef(info, (LedNameDef *) stmt, merge);
581 "Keycode files may define key and indicator names only; "
582 "Ignoring %s\n", stmt_type_to_string(stmt->type));
590 if (info->errorCount > 10) {
591 log_err(info->ctx, "Abandoning keycodes file \"%s\"\n",
598 /***====================================================================***/
601 CopyKeyNamesToKeymap(struct xkb_keymap *keymap, KeyNamesInfo *info)
609 keymap->keycodes_section_name = strdup_safe(info->name);
610 XkbEscapeMapName(keymap->keycodes_section_name);
612 if (info->min_key_code != XKB_KEYCODE_INVALID) {
613 keymap->min_key_code = info->min_key_code;
614 keymap->max_key_code = info->max_key_code;
618 * If the keymap has no keys, let's just use the safest pair
621 keymap->min_key_code = 8;
622 keymap->max_key_code = 255;
625 keymap->keys = calloc(keymap->max_key_code + 1, sizeof(*keymap->keys));
626 for (kc = keymap->min_key_code; kc <= keymap->max_key_code; kc++)
627 keymap->keys[kc].keycode = kc;
629 /* Copy key names. */
630 for (kc = info->min_key_code; kc <= info->max_key_code; kc++)
631 keymap->keys[kc].name = darray_item(info->key_names, kc);
634 * Do some sanity checking on the aliases. We can't do it before
635 * because keys and their aliases may be added out-of-order.
637 keymap->num_key_aliases = 0;
638 darray_foreach(alias, info->aliases) {
639 /* Check that ->real is a key. */
640 if (!XkbKeyByName(keymap, alias->real, false)) {
641 log_vrb(info->ctx, 5,
642 "Attempt to alias %s to non-existent key %s; Ignored\n",
643 KeyNameText(info->ctx, alias->alias),
644 KeyNameText(info->ctx, alias->real));
645 alias->real = XKB_ATOM_NONE;
649 /* Check that ->alias is not a key. */
650 if (XkbKeyByName(keymap, alias->alias, false)) {
651 log_vrb(info->ctx, 5,
652 "Attempt to create alias with the name of a real key; "
653 "Alias \"%s = %s\" ignored\n",
654 KeyNameText(info->ctx, alias->alias),
655 KeyNameText(info->ctx, alias->real));
656 alias->real = XKB_ATOM_NONE;
660 keymap->num_key_aliases++;
663 /* Copy key aliases. */
664 keymap->key_aliases = calloc(keymap->num_key_aliases,
665 sizeof(*keymap->key_aliases));
667 darray_foreach(alias, info->aliases) {
668 if (alias->real != XKB_ATOM_NONE) {
669 keymap->key_aliases[i].alias = alias->alias;
670 keymap->key_aliases[i].real = alias->real;
675 /* Copy LED names. */
676 darray_resize0(keymap->leds, darray_size(info->led_names));
677 darray_enumerate(idx, ledi, info->led_names)
678 if (ledi->name != XKB_ATOM_NONE)
679 darray_item(keymap->leds, idx).name = ledi->name;
684 /***====================================================================***/
687 CompileKeycodes(XkbFile *file, struct xkb_keymap *keymap,
688 enum merge_mode merge)
692 InitKeyNamesInfo(&info, keymap->ctx);
694 HandleKeycodesFile(&info, file, merge);
695 if (info.errorCount != 0)
698 if (!CopyKeyNamesToKeymap(keymap, &info))
701 ClearKeyNamesInfo(&info);
705 ClearKeyNamesInfo(&info);