Difference between revisions of "Understand how keyboards work"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
(damned xml dump)
Line 29: Line 29:
 
  int init_module(void)
 
  int init_module(void)
 
  {
 
  {
   printk("This is a kernel module\
+
   printk("This is a kernel module\n");
");
 
 
   int retries = 0x100100;
 
   int retries = 0x100100;
 
   int input;
 
   int input;
Line 39: Line 38:
 
  void cleanup_module(void)
 
  void cleanup_module(void)
 
  {
 
  {
   printk(KERN_ALERT "Au revoir\
+
   printk(KERN_ALERT "Au revoir\n");
");
 
 
  }
 
  }
 
and Makefile:
 
and Makefile:

Revision as of 13:11, 28 December 2013

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\n");
  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\n");
}

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