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

嵌入式Linux

开发平台:

C/C++

  1. /* 
  2.  * outp.c -- write 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 outb/outw/outl 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 write_one(unsigned int port, unsigned int val, 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. outl(val, port);
  38.     else if (size == 2)
  39. outw(val&0xffff, port);
  40.     else
  41. outb(val&0xff, port);
  42.     return 0;
  43. }
  44. #else /* not i386 */
  45. static int write_one(unsigned int port, unsigned int val, int size)
  46. {
  47.     static int fd = -1;
  48.     unsigned char b; unsigned short w;
  49.     if (fd < 0)
  50. fd = open(PORT_FILE, O_WRONLY);
  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. write(fd, &val, 4);
  59.     } else if (size == 2) {
  60. w = val;
  61. write(fd, &w, 2);
  62.     } else {
  63. b = val;
  64. write(fd, &b, 1);
  65.     }
  66.     return 0;
  67. }
  68. #endif /* i386 */
  69. int main(int argc, char **argv)
  70. {
  71.     unsigned int i, n, port, val, size, error = 0;
  72.     
  73.     prgname = argv[0];
  74.     /* find the data size */
  75.     switch (prgname[strlen(prgname)-1]) {
  76.         case 'w': size = 2; break;
  77.         case 'l': size = 4; break;
  78.         case 'b': case 'p': default:
  79.     size = 1;
  80.     }
  81.     setuid(0); /* if we're setuid, force it on */
  82.     for (i=1;i<argc-1;i++) {
  83.         if ( sscanf(argv[i], "%x%n", &port, &n) < 1
  84.       || n != strlen(argv[i]) ) {
  85.     fprintf(stderr, "%s: argument "%s" is not a hex numbern",
  86.     argv[0], argv[i]);
  87.     error++; continue;
  88. }
  89. if (port & (size-1)) {
  90.     fprintf(stderr, "%s: argument "%s" is not properly alignedn",
  91.     argv[0], argv[i]);
  92.     error++; continue;
  93. }
  94.         if ( sscanf(argv[i+1], "%x%n", &val, &n) < 1
  95.       || n != strlen(argv[i+1]) ) {
  96.     fprintf(stderr, "%s: argument "%s" is not a hex numbern",
  97.     argv[0], argv[i+1]);
  98.     error++; continue;
  99. }
  100. if (size < 4 && val > (size == 1 ? 0xff : 0xffff)) {
  101.     fprintf(stderr, "%s: argument "%s" out of rangen",
  102.     argv[0], argv[i+1]);
  103.     error++; continue;
  104. }
  105. error += write_one(port, val, size);
  106.     }
  107.     exit (error ? 1 : 0);
  108. }