1

我正在尝试使用 asm volatile 为 read() 系统调用编写一个包装函数,但它不起作用,因为 res 不会改变它的值。

这是代码:

ssize_t my_read(int fd, void *buf, size_t count)

{

      ssize_t res;

      __asm__ volatile(
        "int $0x80"        /* make the request to the OS */
        : "=a" (res),       /* return result in eax ("a") */
          "+b" (fd),     /* pass arg1 in ebx ("b") */
          "+c" (buf),     /* pass arg2 in ecx ("c") */
          "+d" (count)      /* pass arg3 in edx ("d") */
        : "a"  (5)          /* passing the system call for read to %eax , with call number 5  */
        : "memory", "cc"); /* announce to the compiler that the memory and condition codes have been modified */

      /* The operating system will return a negative value on error;
       * wrappers return -1 on error and set the errno global variable */

      if (-125 <= res && res < 0)
      {
        errno = -res;
        res   = -1;
      }

      return res;

}

这是int main ()

 int main() {
     int fd = 432423;
     char buf[128];
     size_t count = 128;
     my_read(fd, buf, count);

     return 0;
 }

难道我做错了什么 ?也许是因为volatile

我试图调试代码,当 Eclipse 进入my_read(fd, buf, count); 并进入线路 __asm__ volatile(my_read,它失败并进入if (-125 <= res && res < 0)......

编辑 :

ssize_t my_read(int fd, void *buf, size_t count)

{

      ssize_t res;

      __asm__ volatile(
        "int $0x80"        /* make the request to the OS */
        : "=a" (res)       /* return result in eax ("a") */

        : "a"  (5) ,      /* passing the system call for read to %eax , with call number 5  */
          "b" (fd),     /* pass arg1 in ebx ("b") */
          "c" (buf),     /* pass arg2 in ecx ("c") */
          "d" (count)      /* pass arg3 in edx ("d") */

        : "memory", "cc"); /* announce to the compiler that the memory and condition codes have been modified */

      /* The operating system will return a negative value on error;
       * wrappers return -1 on error and set the errno global variable */

      if (-125 <= res && res < 0)
      {
        errno = -res;
        res   = -1;
      }

      return res;

}

和主要:

 int main() {
     int fd = 0;
     char buf[128];
     size_t count = 128;
     my_read(fd, buf, count);

     return 0;
 }
4

2 回答 2

5

它失败并进入if (-125 <= res && res < 0)

你期望它去哪里?

我希望 read 系统调用失败-EINVAL,因为您没有将有效的文件描述符传递给它。

更新:

你从哪里得到一个SYS_read想法5

在我的系统SYS_read上,3处于 32 位模式和064 位模式:

echo "#include <syscall.h>" | gcc -xc - -dD -E | grep ' __NR_read '
#define __NR_read 0

echo "#include <syscall.h>" | gcc -xc - -dD -E -m32 | grep ' __NR_read '
#define __NR_read 3

假设您在 32 位系统上,您正在调用SYS_open,它以-EFAULT(-14) 失败,因为 open 系统调用的第一个参数应该是文件名并且0( NULL) 不是有效的文件名。

于 2012-04-21T15:17:20.437 回答
2

运行它strace以查看肯定发生了什么,但我认为您的问题是您将所有输入都放在输出寄存器列表而不是输入寄存器列表中......

于 2012-04-21T15:16:20.907 回答