The processing of the scancodes for PAUSE/BREAK  has been broken since
the conversion to qcodes in:
  commit 8c10e0baf0260b59a4e984744462a18016662e3e
  Author: Hervé Poussineau <hpoussin@reactos.org>
  Date:   Thu Sep 15 22:06:26 2016 +0200
    ps2: use QEMU qcodes instead of scancodes
When using a VNC client, with the raw scancode extension, the client
will send a scancode of 0xc6 for both PAUSE and BREAK. There is mistakenly
no entry in the qcode_to_number table for this scancode, so
ps2_keyboard_event() just generates a log message and discards the
scancode
When using a SPICE client, it will also send 0xc6 for BREAK, but
will send 0xe1 0x1d 0x45 0xe1 0x9d 0xc5 for PAUSE. There is no
entry in the qcode_to_number table for the scancode 0xe1 because
it is a special XT keyboard prefix not mapping to any QKeyCode.
Again ps2_keyboard_event() just generates a log message and discards
the scancode. The following 0x1d, 0x45, 0x9d, 0xc5 scancodes get
handled correctly. Rather than trying to handle 3 byte sequences
of scancodes in the PS/2 driver, special case the SPICE input
code so that it captures the 3 byte pause sequence and turns it
into a Pause QKeyCode.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-id: 20170727113243.23991-1-berrange@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
		
	
			
		
			
				
	
	
		
			79 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * QEMU keysym to keycode conversion using rdesktop keymaps
 | 
						|
 *
 | 
						|
 * Copyright (c) 2004 Johannes Schindelin
 | 
						|
 *
 | 
						|
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
 * of this software and associated documentation files (the "Software"), to deal
 | 
						|
 * in the Software without restriction, including without limitation the rights
 | 
						|
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
 * copies of the Software, and to permit persons to whom the Software is
 | 
						|
 * furnished to do so, subject to the following conditions:
 | 
						|
 *
 | 
						|
 * The above copyright notice and this permission notice shall be included in
 | 
						|
 * all copies or substantial portions of the Software.
 | 
						|
 *
 | 
						|
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 | 
						|
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
						|
 * THE SOFTWARE.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef QEMU_KEYMAPS_H
 | 
						|
#define QEMU_KEYMAPS_H
 | 
						|
 | 
						|
#include "qemu-common.h"
 | 
						|
 | 
						|
typedef struct {
 | 
						|
	const char* name;
 | 
						|
	int keysym;
 | 
						|
} name2keysym_t;
 | 
						|
 | 
						|
struct key_range {
 | 
						|
    int start;
 | 
						|
    int end;
 | 
						|
    struct key_range *next;
 | 
						|
};
 | 
						|
 | 
						|
#define MAX_NORMAL_KEYCODE 512
 | 
						|
#define MAX_EXTRA_COUNT 256
 | 
						|
typedef struct {
 | 
						|
    uint16_t keysym2keycode[MAX_NORMAL_KEYCODE];
 | 
						|
    struct {
 | 
						|
	int keysym;
 | 
						|
	uint16_t keycode;
 | 
						|
    } keysym2keycode_extra[MAX_EXTRA_COUNT];
 | 
						|
    int extra_count;
 | 
						|
    struct key_range *keypad_range;
 | 
						|
    struct key_range *numlock_range;
 | 
						|
} kbd_layout_t;
 | 
						|
 | 
						|
/* scancode without modifiers */
 | 
						|
#define SCANCODE_KEYMASK 0xff
 | 
						|
/* scancode without grey or up bit */
 | 
						|
#define SCANCODE_KEYCODEMASK 0x7f
 | 
						|
 | 
						|
/* "grey" keys will usually need a 0xe0 prefix */
 | 
						|
#define SCANCODE_GREY   0x80
 | 
						|
#define SCANCODE_EMUL0  0xE0
 | 
						|
#define SCANCODE_EMUL1  0xE1
 | 
						|
/* "up" flag */
 | 
						|
#define SCANCODE_UP     0x80
 | 
						|
 | 
						|
/* Additional modifiers to use if not catched another way. */
 | 
						|
#define SCANCODE_SHIFT  0x100
 | 
						|
#define SCANCODE_CTRL   0x200
 | 
						|
#define SCANCODE_ALT    0x400
 | 
						|
#define SCANCODE_ALTGR  0x800
 | 
						|
 | 
						|
 | 
						|
void *init_keyboard_layout(const name2keysym_t *table, const char *language);
 | 
						|
int keysym2scancode(void *kbd_layout, int keysym);
 | 
						|
int keycode_is_keypad(void *kbd_layout, int keycode);
 | 
						|
int keysym_is_numlock(void *kbd_layout, int keysym);
 | 
						|
 | 
						|
#endif /* QEMU_KEYMAPS_H */
 |