未定义对`inotify_init1'的引用

时间:2018-11-08 14:08:36

标签: c linux-kernel embedded-linux dnsmasq

我正在尝试将最新的version 2.80 of dnsmasq应用程序集成到我的项目中。该平台是Linux 2.6.32。 使用交叉编译器arm-none-linux-gnueabi-gcc进行编译时会出现此错误:

inotify.o: In function `inotify_dnsmasq_init':
inotify.c:(.text+0x514): undefined reference to `inotify_init1'

此平台似乎不支持函数inotify_init1()。

我想知道我是否可以自己编写此功能。

int inotify_init1(int flags)
{
    int flags1 = 0;
    int inotify_fd = inotify_init();

    if ((inotify_fd != -1) && (flags != 0)) 
    {
        if((flags1 = fcntl(inotify_fd, F_GETFL)) != -1)
        {
            fcntl(inotify_fd, F_SETFL, flags1 | flags);
        }
    }
    return inotify_fd;
}

这段代码能完成这项工作吗?

更新: 根据{{​​3}},在2.9版中将inotify_init1()添加到了glibc中。我仅使用glibc 2.8版

另一方面,我看到inotify_init1存在于内核的多个文件中:

1) /fs/notify/inotify/inotify_user.c
/* inotify syscalls */
SYSCALL_DEFINE1(inotify_init1, int, flags)
{ 
...
}
2) /kernel/sys_ni.c
cond_syscall(sys_inotify_init1);

我知道我丢失了一些东西,但是我不知道是否在dnsmasq构建文件上构建了适当的库或正确链接了该库。

谢谢您的建议。

1 个答案:

答案 0 :(得分:1)

您的功能看起来还不错,应该可以工作。但是,我不知道您的应用程序如何定义宏IN_NONBLOCK和IN_CLOEXEC。从kernel srcrs看,它们的定义应与O_NONBLOCK和O_CLOEXEC相同。添加if (flags & ~(IN_CLOEXEC | IN_NONBLOCK)) return -EINVAL;一些检查也很不错。

我会向您的项目/ dnsmasq源添加文件inotify.h,我将添加文件以包含路径:

#ifndef MY_INOTIFY_H_
#define MY_INOTIFY_H_
#include_next <inotify.h>

// from https://github.molgen.mpg.de/git-mirror/glibc/blob/glibc-2.9/sysdeps/unix/sysv/linux/sys/inotify.h#L25
/* Flags for the parameter of inotify_init1.  */
enum
  {
    IN_CLOEXEC = 02000000,
#define IN_CLOEXEC IN_CLOEXEC
    IN_NONBLOCK = 04000
#define IN_NONBLOCK IN_NONBLOCK
  };

extern int inotify_init1 (int flags) __THROW;
// or just int inotify_init1(int flags); ...

#endif

与此同时,您在c文件中的包装器也添加到了编译/链接中。 include_next用作glibc inotify.h的简单覆盖。

如果您的内核支持inotify_wait1系统调用,我认为是it does。您甚至可以检查unistd.h中是否定义了__NR_inotify_wait1。您可以:

   #define _GNU_SOURCE
   #include <unistd.h>
   #include <sys/syscall.h>

   int inotify_init1(int flags) {
       return syscall(332, flags);
   }

要进行系统调用,只需调用syscall()函数。