3
0

dumpkmap.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Mini dumpkmap implementation for busybox
  4. *
  5. * Copyright (C) Arne Bernin <arne@matrix.loopback.org>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. *
  21. */
  22. #include <errno.h>
  23. #include <fcntl.h>
  24. #include <stdio.h>
  25. #include <unistd.h>
  26. #include <string.h>
  27. #include <stdlib.h>
  28. #include <sys/ioctl.h>
  29. #include "busybox.h"
  30. /* From <linux/kd.h> */
  31. struct kbentry {
  32. unsigned char kb_table;
  33. unsigned char kb_index;
  34. unsigned short kb_value;
  35. };
  36. static const int KDGKBENT = 0x4B46; /* gets one entry in translation table */
  37. /* From <linux/keyboard.h> */
  38. static const int NR_KEYS = 128;
  39. static const int MAX_NR_KEYMAPS = 256;
  40. int dumpkmap_main(int argc, char **argv)
  41. {
  42. struct kbentry ke;
  43. int i, j, fd;
  44. char flags[MAX_NR_KEYMAPS], magic[] = "bkeymap";
  45. if (argc>=2 && *argv[1]=='-') {
  46. bb_show_usage();
  47. }
  48. fd=bb_xopen(CURRENT_VC, O_RDWR);
  49. write(1, magic, 7);
  50. for (i=0; i < MAX_NR_KEYMAPS; i++) flags[i]=0;
  51. flags[0]=1;
  52. flags[1]=1;
  53. flags[2]=1;
  54. flags[4]=1;
  55. flags[5]=1;
  56. flags[6]=1;
  57. flags[8]=1;
  58. flags[9]=1;
  59. flags[10]=1;
  60. flags[12]=1;
  61. /* dump flags */
  62. for (i=0; i < MAX_NR_KEYMAPS; i++) write(1,&flags[i],1);
  63. for (i = 0; i < MAX_NR_KEYMAPS; i++) {
  64. if (flags[i] == 1) {
  65. for (j = 0; j < NR_KEYS; j++) {
  66. ke.kb_index = j;
  67. ke.kb_table = i;
  68. if (ioctl(fd, KDGKBENT, &ke) < 0) {
  69. bb_error_msg("ioctl returned: %m, %s, %s, %xqq", (char *)&ke.kb_index,(char *)&ke.kb_table,(int)&ke.kb_value);
  70. }
  71. else {
  72. write(1,(void*)&ke.kb_value,2);
  73. }
  74. }
  75. }
  76. }
  77. close(fd);
  78. return EXIT_SUCCESS;
  79. }