Bug 12401 - Binding keys with keycodes > 127 to XKB modifiers doesn't work
Summary: Binding keys with keycodes > 127 to XKB modifiers doesn't work
Status: RESOLVED MOVED
Alias: None
Product: xorg
Classification: Unclassified
Component: Input/Keyboard (show other bugs)
Version: unspecified
Hardware: Other All
: medium normal
Assignee: Xorg Project Team
QA Contact: Xorg Project Team
URL: http://lists.freedesktop.org/archives...
Whiteboard:
Keywords:
: 8584 (view as bug list)
Depends on:
Blocks:
 
Reported: 2007-09-12 04:21 UTC by Marius Gedminas
Modified: 2018-08-10 20:55 UTC (History)
3 users (show)

See Also:
i915 platform:
i915 features:


Attachments

Description Marius Gedminas 2007-09-12 04:21:11 UTC
My Thinkpad T61 has a few keys that act strangely in X: Menu, Workspace
Prev, Workspace Next.  By "acting strangely" I mean:

  1. xset -r disables autorepeat for all the keys on the keyboard except
     for these three (and Fn).

  2. It appears to be impossible to map these keys to modifiers (neither
     with xmodmap, nor with custom xkb symbols files)

The Menu key sends keycode 227 (instead of the usual 117 I get from the
Menu key on a USB keyboard).  I'm trying to map it to a ISO_Level3_Shift
with

  xmodmap -e 'keycode 227 = ISO_Level3_Shift' -e 'add mod5 = ISO_Level3_Shift'

and xev shows me the keysym correctly, but the state remains 0x0.  Why?

I had the same problem mapping keycode 234 to Alt, and I went as far as
to compile a custom XKB description so that xkbcomp :0 - showed me
identical configurations for it and the real Alt key.

I can map these extra keys to, e.g., Multi_key, but not to any of the modifiers.

The Menu key on a USB keyboard, the one that sends keycode 117, is also mapped
to ISO_Level3_Shift.  It autorepeats, but despite that the state bit flips to
0x80 while I hold it down.  xmodmap shows both 0xe3 (227) and 0x75 (117) among
the keys mapped to mod5.

The only difference I can think of is that one keycode is < 128, while
the other one needs full 8 bits.  Just a blind guess, but could the XKB
code be using signed chars somewhere and sign-extending them to ints?

This is with xserver 1.3.0 (Ubuntu's xorg-server 2:1.3.0.0.dfsg-12ubuntu3).
I've had the problem with older versions as well.
Comment 1 Marius Gedminas 2007-09-12 04:23:09 UTC
*** Bug 8584 has been marked as a duplicate of this bug. ***
Comment 2 kuroneko.yukai 2008-05-01 19:42:57 UTC
I have the same problem, so I report what I have found hoping it might be any help.

I am using JP106 keyboards, and have been mapping <AB11> (backslash/underscore keycode=211) to Shift_R by xmodmap.  Then, the key worked as a Shift modifier on Debian Etch (and olders), but does not work on Ubuntu 7.10 nor on Ubuntu 8.4.  It seems it is because the key release event for keycode=211 is produced immediately after the key press event is produced even if I hold down the key and do not release.  For example, if I press <AB11> -> press "z" -> release "z" -> release <AB11>, then xev says:

KeyPress event, serial 30, synthetic NO, window 0x3600001,
    root 0x80, subw 0x0, time 2808272285, (156,133), root:(161,181),
    state 0x0, keycode 211 (keysym 0x5c, backslash), same_screen YES,
    XKeysymToKeycode returns keycode: 51
    XLookupString gives 1 bytes: (5c) "\"
    XmbLookupString gives 1 bytes: (5c) "\"
    XFilterEvent returns: False

KeyRelease event, serial 30, synthetic NO, window 0x3600001,
    root 0x80, subw 0x0, time 2808272285, (156,133), root:(161,181),
    state 0x0, keycode 211 (keysym 0x5c, backslash), same_screen YES,
    XKeysymToKeycode returns keycode: 51
    XLookupString gives 1 bytes: (5c) "\"
    XFilterEvent returns: False

KeyPress event, serial 30, synthetic NO, window 0x3600001,
    root 0x80, subw 0x0, time 2808272679, (156,133), root:(161,181),
    state 0x0, keycode 52 (keysym 0x7a, z), same_screen YES,
    XLookupString gives 1 bytes: (7a) "z"
    XmbLookupString gives 1 bytes: (7a) "z"
    XFilterEvent returns: False

KeyRelease event, serial 30, synthetic NO, window 0x3600001,
    root 0x80, subw 0x0, time 2808273058, (156,133), root:(161,181),
    state 0x0, keycode 52 (keysym 0x7a, z), same_screen YES,
    XLookupString gives 1 bytes: (7a) "z"
    XFilterEvent returns: False

On the other hand, if I press, say "/", press "z", release "z", release "/", xev correctly says: KeyPress "/" -> KeyPress "z" -> KeyRelease "z" -> KeyRelease "/".

It seems the following three keys on JP106 keyboards have the same behavior:

<AB11> keycode=211
<HKTG> keycode=208
<PAUS> keycode=110 (less than 128...? because of some other reason?)

First, I thought it must be related to key type configuration in XKB JP106 layout, so I edited the following two lines in xkb/keycode/xfree86:

    <RTSH> =  62;
           :
           :
    <AB11> =   211;             // backslash/underscore

to:

    <AB11> =  62;
           :
           :
    <RTSH> =   211;             // backslash/underscore

and rebooted.  Then, keymap was changed correctly, but the behavior of KeyRelease event for the key 211 did not change.

Other things I found:

1. On the console, key press/release event for the key 211 is normal.  I tested it with showkey command.
2. On X, the behavior above happens even with twm, so gnome does not seem related.
3. It happens both with the keyboard on a laptop and a USB connected keyboard, so probably not a hardware problem.

Are those findings of any help?  If there is anything I can do to provide more information, please let me know. This is a quite serious problem for me because I cannot map <AB11> "the key at the position where the shift key should be" to the shift key!!
Comment 3 Nicolas Brodu 2008-07-26 05:50:55 UTC
Here is a probably related bug, with a possible workaround :

The idea is to bind some keys to perform automatically CTRL+C/V/X/Z.

Let's say that I have the following mapping (the >127 keycode change nothing for the base key) in xkb_symbols:

    key <I73> { [ v ] };

I now want to do something like :

    key <I7C> { actions[group1] = [ Redirect(keycode=<I73>, modifiers=Control) ] };      // ctrl-v


But this does not work and results in :

X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  150 (XKEYBOARD)
  Minor opcode of failed request:  9 (XkbSetMap)
  Value in failed request:  0x23fa0001
  Serial number of failed request:  107
  Current serial number in output stream:  113


However if I use a < 127 keycode for the redirection, this works :

    key <FK15> { actions[group1] = [ Redirect(keycode=<I73>, modifiers=Control) ] };      // ctrl-v


Here is now the promised workaround. In the xkb_compatibility section, interpret an unused symbol:

    interpret F33 {
        action = Redirect(Key=<I73>, modifiers=Control);
    };

Then in the xkb_symbols section, there is no need for the redirect anymore :

    key <I7C> { [ F33 ] };      // ctrl-v

Now this works, even for this > 127 keycode.


Both the <127 keycode and the workaround solution work when additionnally used as overlay (hence double-indirection):

    key <AB04> {
        // key definition here: type[group1] = ..., [...]
        overlay1 = <I7C>
    };
 
This works with overlay1 = <I7C> using the workaround, or with overlay1 = <FK15> for the <127 solution.


Hope this helps,

Nicolas Brodu
Comment 4 GitLab Migration User 2018-08-10 20:55:12 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.freedesktop.org/xorg/driver/xf86-input-keyboard/issues/7.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.