【问题标题】:Get Inotify to properly emit an IN_UNMOUNT event获取 Inotify 以正确发出 IN_UNMOUNT 事件
【发布时间】:2011-03-19 05:10:10
【问题描述】:

您好,我一直试图让 Inotify 产生一个 IN_UNMOUNT 事件,但它根本不与我合作,所以我用 inotifywait 做了一个简单的实验,结果如下:

paul@imaskar ~ $ inotifywait -r /storage/test/ -m
Setting up watches.  Beware: since -r was given, this may take a while!
Watches established.
/storage/test/ CREATE,ISDIR a
/storage/test/ OPEN,ISDIR a
/storage/test/ CLOSE_NOWRITE,CLOSE,ISDIR a
/storage/test/ DELETE,ISDIR a
/storage/test/a/ DELETE_SELF 
/storage/test/a/ IGNORED 
/storage/test/ IGNORED 

基本上会发生什么,它将接收所有其他事件,例如创建、打开等......但是当我卸载 /storage/test/ 时,它会发出一个 忽略它创建的所有手表,但它从不发出 UNMOUNT 事件...

所以我似乎无法获得 IN_UNMOUNT 事件,但我阅读的所有 inotify 文档都说,当卸载受监控的文件/目录后备存储时,内核将向该事件添加一个 IN_UNMOUNT 位标志。 ..

这是来自 - Inotify patch 的简单 C 代码

#include <stdio.h>
#include <stdlib.h>
#include <sys/inotify.h>

int main(int argc, char **argv)
{
        char buf[1024];
        struct inotify_event *ie;
        char *p;
        int i;
        ssize_t l;

        p = argv[1];
        i = inotify_init();
        inotify_add_watch(i, p, ~0);

        l = read(i, buf, sizeof(buf));
        printf("read %d bytes\n", l);
        ie = (struct inotify_event *) buf;
        printf("event mask: %x\n", ie->mask);
    return 0;
}

无论如何我做了以下步骤:

gcc -oinotify inotify.c
mkdir mnt
sudo mount -ttmpfs none mnt
mkdir mnt/d
./inotify mnt/d/

# Different shell
sudo umount mnt

最后是它发出的东西

read 16 bytes
event mask: 8000

所以目前我不确定问题出在代码中还是其他原因?

【问题讨论】:

    标签: linux inotify


    【解决方案1】:

    这似乎是一个内核错误,已根据LKML 进行了修复。大约从内核 2.6.31 开始,当 inode 被卸载时,IN_UNMOUNT 事件还没有发送……这个补丁是针对“34-longterm”,也就是内核 2.6.35(?)。

    无论如何,我能够升级到内核 2.6.37 并重新运行上述测试,结果如下:

    mkdir mnt
    sudo mount -ttmpfs none mnt
    mkdir mnt/d
    inotifywait -r mnt/d/ -m
    
    
    # Different shell
    sudo umount mnt
    

    这是输出:

    Setting up watches.  Beware: since -r was given, this may take a while!
    Watches established.
    /tmp/test/d/ UNMOUNT 
    /tmp/test/d/ IGNORED 
    /tmp/test/ UNMOUNT 
    /tmp/test/ IGNORED 
    

    根据示例 C 代码,输出如下:

    read 32 bytes
    event mask: 2000
    

    查看 inotify.h 标头,这是 IN_UNMOUNT 标志的正确事件掩码,这意味着它最终修复了 ~2.6.35 或更高版本...

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-11-29
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-12-22
      相关资源
      最近更新 更多