inp.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /* 
  2.  * inp.c -- read all the ports specified in hex on the command line.
  3.  *     The program uses the faster ioperm/iopl calls on x86, /dev/port
  4.  *     on other platforms. The program acts as inb/inw/inl according
  5.  *     to its own name
  6.  */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <unistd.h>
  11. #include <errno.h>
  12. #include <fcntl.h>
  13. #include <sys/types.h>
  14. #include <sys/stat.h>
  15. #include <asm/io.h> /* linux-specific */
  16. #ifdef __GLIBC__
  17. #  include <sys/perm.h>
  18. #endif
  19. #define PORT_FILE "/dev/port"
  20. char *prgname;
  21. #ifdef __i386__
  22. static int read_and_print_one(unsigned int port,int size)
  23. {
  24.     static int iopldone = 0;
  25.     if (port > 1024) {
  26. if (!iopldone && iopl(3)) {
  27.     fprintf(stderr, "%s: iopl(): %sn", prgname, strerror(errno));
  28.     return 1;
  29. }
  30. iopldone++;
  31.     } else if (ioperm(port,size,1)) {
  32. fprintf(stderr, "%s: ioperm(%x): %sn", prgname,
  33. port, strerror(errno));
  34. return 1;
  35.     }
  36.     if (size == 4)
  37. printf("%04x: %08xn", port, inl(port));
  38.     else if (size == 2)
  39. printf("%04x: %04xn", port, inw(port));
  40.     else
  41. printf("%04x: %02xn", port, inb(port));
  42.     return 0;
  43. }
  44. #else /* not i386 */
  45. static int read_and_print_one(unsigned int port,int size)
  46. {
  47.     static int fd = -1;
  48.     unsigned char b; unsigned short w; unsigned int l;
  49.     if (fd < 0)
  50. fd = open(PORT_FILE, O_RDONLY);
  51.     if (fd < 0) {
  52. fprintf(stderr, "%s: %s: %sn", prgname, PORT_FILE, strerror(errno));
  53. return 1;
  54.     }
  55.     lseek(fd, port, SEEK_SET);
  56.     
  57.     if (size == 4) {
  58. read(fd, &l, 4);
  59. printf("%04x: 0x%08xn", port, l);
  60.     } else if (size == 2) {
  61. read(fd, &w, 2);
  62. printf("%04x: 0x%04xn", port, w & 0xffff);
  63.     } else {
  64. read(fd, &b, 1);
  65. printf("%04x: 0x%02xn", port, b & 0xff);
  66.     }
  67.     return 0;
  68. }
  69. #endif /* i386 */
  70. int main(int argc, char **argv)
  71. {
  72.     unsigned int i, n, port, size, error = 0;
  73.     
  74.     prgname = argv[0];
  75.     /* find the data size */
  76.     switch (prgname[strlen(prgname)-1]) {
  77.         case 'w': size = 2; break;
  78.         case 'l': size = 4; break;
  79.         case 'b': case 'p': default:
  80.     size = 1;
  81.     }
  82.     setuid(0); /* if we're setuid, force it on */
  83.     for (i = 1; i < argc; i++) {
  84.         if ( sscanf(argv[i], "%x%n", &port, &n) < 1
  85.       || n != strlen(argv[i]) ) {
  86.     fprintf(stderr, "%s: argument "%s" is not a hex numbern",
  87.     argv[0], argv[i]);
  88.     error++; continue;
  89. }
  90. if (port & (size-1)) {
  91.     fprintf(stderr, "%s: argument "%s" is not properly alignedn",
  92.     argv[0], argv[i]);
  93.     error++; continue;
  94. }
  95. error += read_and_print_one(port, size);
  96.     }
  97.     exit (error ? 1 : 0);
  98. }