/* $OpenBSD: kbd_wscons.c,v 1.26 2012/07/13 10:15:19 shadchin Exp $ */ /* * Copyright (c) 2001 Mats O Jansson. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define NUM_KBD 10 char *kbtype_tab[] = { "pc-xt/pc-at", "usb", "adb", "lk201", "sun", "sun5", "hil", "gsc", "domain" }; enum { SA_PCKBD, SA_UKBD, SA_AKBD, SA_LKKBD, SA_SUNKBD, SA_SUN5KBD, SA_HILKBD, SA_GSCKBD, SA_DOMAINKBD, SA_MAX }; #ifndef NOKVM struct nlist nl[] = { { "_pckbd_keydesctab" }, { "_ukbd_keydesctab" }, { "_akbd_keydesctab" }, { "_lkkbd_keydesctab" }, { "_sunkbd_keydesctab" }, { "_sunkbd5_keydesctab" }, { "_hilkbd_keydesctab" }, { "_gsckbd_keydesctab" }, { "_dnkbd_keydesctab" }, { NULL }, }; #endif /* NOKVM */ #ifndef NOKVM int rebuild = 0; #endif struct nameint { int value; char *name; }; struct nameint kbdenc_tab[] = { KB_ENCTAB , { 0, NULL } }; struct nameint kbdvar_tab[] = { KB_VARTAB , { 0, NULL } }; extern char *__progname; void kbd_show_enc(kvm_t *kd, int idx); void kbd_list(void); void kbd_set(char *name, int verbose); void kbd_show_enc(kvm_t *kd, int idx) { #ifndef NOKVM struct wscons_keydesc r; unsigned long p; int found; u_int32_t variant; struct nameint *n; #else int i; #endif /* NOKVM */ #ifndef NOKVM p = nl[idx].n_value; if (p == 0) { printf("no tables available for %s keyboard\n\n", kbtype_tab[idx]); return; } #endif printf("tables available for %s keyboard:\nencoding\n\n", kbtype_tab[idx]); #ifdef NOKVM for (i = 0; kbdenc_tab[i].value; i++) printf("%s\n", kbdenc_tab[i].name); #else kvm_read(kd, p, &r, sizeof(r)); while (r.name != 0) { n = &kbdenc_tab[0]; found = 0; while (n->value) { if (n->value == KB_ENCODING(r.name)) { printf("%s",n->name); found++; } n++; } if (found == 0) { printf("",KB_ENCODING(r.name)); rebuild++; } n = &kbdvar_tab[0]; found = 0; variant = KB_VARIANT(r.name); while (n->value) { if ((n->value & KB_VARIANT(r.name)) == n->value) { printf(".%s",n->name); variant &= ~n->value; } n++; } if (variant != 0) { printf(".",variant); rebuild++; } printf("\n"); p += sizeof(r); kvm_read(kd, p, &r, sizeof(r)); } #endif printf("\n"); } void kbd_list(void) { int kbds[SA_MAX]; int fd, i, kbtype; char device[MAXPATHLEN]; kvm_t *kd = NULL; #ifndef NOKVM char errbuf[LINE_MAX]; #endif bzero(kbds, sizeof(kbds)); /* Go through all keyboards. */ for (i = 0; i < NUM_KBD; i++) { (void) snprintf(device, sizeof device, "/dev/wskbd%d", i); fd = open(device, O_WRONLY); if (fd < 0) fd = open(device, O_RDONLY); if (fd >= 0) { if (ioctl(fd, WSKBDIO_GTYPE, &kbtype) < 0) err(1, "WSKBDIO_GTYPE"); switch (kbtype) { case WSKBD_TYPE_PC_XT: case WSKBD_TYPE_PC_AT: kbds[SA_PCKBD]++; break; case WSKBD_TYPE_USB: kbds[SA_UKBD]++; break; case WSKBD_TYPE_ADB: kbds[SA_AKBD]++; break; case WSKBD_TYPE_LK201: case WSKBD_TYPE_LK401: kbds[SA_LKKBD]++; break; case WSKBD_TYPE_SUN: kbds[SA_SUNKBD]++; break; case WSKBD_TYPE_SUN5: kbds[SA_SUN5KBD]++; break; case WSKBD_TYPE_HIL: kbds[SA_HILKBD]++; break; case WSKBD_TYPE_GSC: kbds[SA_GSCKBD]++; break; case WSKBD_TYPE_DOMAIN: kbds[SA_DOMAINKBD]++; break; }; close(fd); } } #ifndef NOKVM if ((kd = kvm_openfiles(NULL, NULL, NULL, O_RDONLY, errbuf)) == NULL) errx(1, "kvm_openfiles: %s", errbuf); if (kvm_nlist(kd, nl) == -1) errx(1, "kvm_nlist: %s", kvm_geterr(kd)); #endif for (i = 0; i < SA_MAX; i++) if (kbds[i] != 0) kbd_show_enc(kd, i); #ifndef NOKVM kvm_close(kd); if (rebuild > 0) printf("Unknown encoding or variant. kbd(8) needs to be rebuilt.\n"); #endif } void kbd_set(char *name, int verbose) { char buf[LINE_MAX], *c, *b, device[sizeof "/dev/wskbd00"]; int map = 0, v, i, fd; struct nameint *n; c = name; b = buf; while (*c != '.' && *c != '\0' && b < buf + sizeof(buf) - 1) *b++ = *c++; *b = '\0'; n = &kbdenc_tab[0]; while (n->value) { if (strcmp(n->name, buf) == 0) map = n->value; n++; } if (map == 0) errx(1, "unknown encoding %s", buf); while (*c == '.') { b = buf; c++; while (*c != '.' && *c != '\0' && b < buf + sizeof(buf) - 1) *b++ = *c++; *b = '\0'; v = 0; n = &kbdvar_tab[0]; while (n->value) { if (strcmp(n->name, buf) == 0) v = n->value; n++; } if (v == 0) errx(1, "unknown variant %s", buf); map |= v; } /* Go through all keyboards. */ v = 0; for (i = 0; i < NUM_KBD; i++) { (void) snprintf(device, sizeof device, "/dev/wskbd%d", i); fd = open(device, O_WRONLY); if (fd < 0) fd = open(device, O_RDONLY); if (fd >= 0) { if (ioctl(fd, WSKBDIO_SETENCODING, &map) < 0) { if (errno == EINVAL) { fprintf(stderr, "%s: unsupported encoding %s on %s\n", __progname, name, device); } else err(1, "WSKBDIO_SETENCODING: %s", device); v--; } v++; close(fd); } } if (verbose && v > 0) fprintf(stderr, "kbd: keyboard mapping set to %s\n", name); }