Difference between revisions of "Understand how keyboards work"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
Line 2: Line 2:
  
 
= The X layer =  
 
= The X layer =  
 
 
Use [[xev]] to see which keyboard events X sees.
 
Use [[xev]] to see which keyboard events X sees.
  
 
= The layer beneath X =
 
= The layer beneath X =
 
 
To find out what signals X receives from the keyboard, open a new graphical [http://simple.wikipedia.org/wiki/Command_Line_Interface console] and type
 
To find out what signals X receives from the keyboard, open a new graphical [http://simple.wikipedia.org/wiki/Command_Line_Interface console] and type
 
  cat /dev/tty0
 
  cat /dev/tty0
 
You will see the messages that the kernel (and his modules) put into the tty0 device, the keyboard. When you are ready, close the console with a [[mouse]] click, as because of obvious reasons, you cannot abort with a keypress.
 
You will see the messages that the kernel (and his modules) put into the tty0 device, the keyboard. When you are ready, close the console with a [[mouse]] click, as because of obvious reasons, you cannot abort with a keypress.
 +
 +
= The USB layer =
 +
If you have a USB keyboard you can watch what happens on the USB bus.
 +
* use lsusb to find out what USB bus your keyboard is on
 +
lsusb
 +
* load the kernel module usbmon
 +
modprobe usbmon
 +
* analyse the respective USB bus with WireShark
 +
wireshark
  
 
= The [[kernel]] layer =
 
= The [[kernel]] layer =
 
 
If you really want to see what data comes over the wire, you have to write a [[kernel module]], because the i386's security concept will not let anything read data but the kernel. So, create /root/keyb.c:
 
If you really want to see what data comes over the wire, you have to write a [[kernel module]], because the i386's security concept will not let anything read data but the kernel. So, create /root/keyb.c:
 
  /*  A kernel module.
 
  /*  A kernel module.

Revision as of 08:24, 23 October 2012

Keyboards typically are connected to the computer via a USB or a PS/2 cable. They send signals when they transfer data, when they acknowledge and when their buffer is full or empty. The kernel receives these signals and, depending on the loaded kernel module (provided the kernel does not do the work itself), sends the data to /dev/tty0. The application (typically X or a shell) gets these signals and puts them into a queue, like stdin.

The X layer

Use xev to see which keyboard events X sees.

The layer beneath X

To find out what signals X receives from the keyboard, open a new graphical console and type

cat /dev/tty0

You will see the messages that the kernel (and his modules) put into the tty0 device, the keyboard. When you are ready, close the console with a mouse click, as because of obvious reasons, you cannot abort with a keypress.

The USB layer

If you have a USB keyboard you can watch what happens on the USB bus.

  • use lsusb to find out what USB bus your keyboard is on
lsusb
  • load the kernel module usbmon
modprobe usbmon
  • analyse the respective USB bus with WireShark
wireshark

The kernel layer

If you really want to see what data comes over the wire, you have to write a kernel module, because the i386's security concept will not let anything read data but the kernel. So, create /root/keyb.c:

/*  A kernel module.
*/

#include <linux/module.h>
#include <linux/kernel.h>
#include <asm/io.h>

int init_module(void)
{
  printk("This is a kernel module\

");

  int retries = 0x100100;
  int input;
  while (--retries != 0){int oldinput=input; input=inb(0x60); if (oldinput!=input)
  printk("got %i",input);};
}

void cleanup_module(void)
{
  printk(KERN_ALERT "Au revoir\

");

}

and Makefile:

obj-m += keyb.o

and compile this:

$ make -C /lib/modules/$(uname -r)/build M=$(pwd) modules       

Now when you load this module, the kernel will, during the initialization phase (the while loop) listen to port 0x60 and print the data on wire there. So, be prepared

  • the module will take a little time to initialize
  • during the load phase, you can type a bit and you will see it in the system log
  • this is tested for the PS/2 port, but not for USB

Load the module:

insmod keyb.ko

Check the syslog:

dmesg

See also