323 lines
6.6 KiB
C
323 lines
6.6 KiB
C
/* inotify.c - inotify implementation
|
|
*
|
|
* (C) Copyright 2010 Henrik Hautakoski <henrik.hautakoski@gmail.com>
|
|
* (C) Copyright 2010 Fredric Nilsson <fredric@unknown.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <time.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/inotify.h>
|
|
|
|
#include "util.h"
|
|
/* red black tree for watch descriptors */
|
|
#include "rbtree.h"
|
|
#include "debug.h"
|
|
#include "path.h"
|
|
#include "queue.h"
|
|
#include "fscrawl.h"
|
|
#include "notify.h"
|
|
|
|
typedef struct inotify_event inoev;
|
|
|
|
#define INOBUFSIZE ((1 << 12) * (sizeof(inoev) + 0x40))
|
|
|
|
#define WATCH_MASK (IN_MOVE | IN_CREATE | IN_DELETE | IN_ONLYDIR)
|
|
|
|
/* Inotify file descriptor */
|
|
static int fd = 0;
|
|
|
|
/* redblack tree */
|
|
static rbtree tree;
|
|
|
|
static queue_t event_queue;
|
|
|
|
static int addwatch(const char *path, const char *name) {
|
|
|
|
rbnode *node;
|
|
char *npath;
|
|
int wd;
|
|
|
|
npath = path_normalize(path, name, 1);
|
|
|
|
wd = inotify_add_watch(fd, npath, WATCH_MASK);
|
|
|
|
if (wd < 0) {
|
|
free(npath);
|
|
return -1;
|
|
}
|
|
|
|
/* we must update to not introduce duplicated wd's (keys) */
|
|
node = rbtree_search(&tree, wd);
|
|
|
|
if (node == NULL) {
|
|
dprint("added wd = %i on %s\n", wd, npath);
|
|
rbtree_insert(&tree, wd, (void*)npath, strlen(npath)+1);
|
|
} else {
|
|
dprint("updated wd = %i from %s to %s\n", wd, (char*)node->data, npath);
|
|
free(node->data);
|
|
node->data = (void*) npath;
|
|
node->len = strlen(npath)+1;
|
|
}
|
|
|
|
return wd;
|
|
}
|
|
|
|
static int rmwatch(unsigned int wd) {
|
|
|
|
void *data = rbtree_delete(&tree, wd);
|
|
|
|
if (data == NULL)
|
|
return 0;
|
|
|
|
dprint("rmwatch: %i %s\n", wd, (char*) data);
|
|
inotify_rm_watch(fd, wd);
|
|
if (data)
|
|
free(data);
|
|
return 1;
|
|
}
|
|
|
|
static void proc_event(inoev *iev) {
|
|
|
|
rbnode *node;
|
|
notify_event *event;
|
|
char buf[4096];
|
|
uint8_t type = NOTIFY_UNKNOWN;
|
|
|
|
#ifdef __DEBUG__
|
|
fprintf(stderr, "RAW EVENT: %i, %x", iev->wd, iev->mask);
|
|
if (iev->len)
|
|
fprintf(stderr, ", %s\n", iev->name);
|
|
else
|
|
fprintf(stderr, "\n");
|
|
#endif
|
|
|
|
/* this event is triggered when a watch descriptor is removed.
|
|
so we can do a binary search instead of useing the IN_DELETE
|
|
event (that may be triggered on a parent wd) to do a traverse search */
|
|
if (iev->mask & IN_IGNORED) {
|
|
rmwatch(iev->wd);
|
|
return;
|
|
}
|
|
|
|
/* lookup the watch descriptor in rbtree */
|
|
node = rbtree_search(&tree, iev->wd);
|
|
|
|
if (!node) {
|
|
dprint("-- IGNORING EVENT -- invalid watchdescriptor %i\n", iev->wd);
|
|
return;
|
|
}
|
|
|
|
event = notify_event_new();
|
|
|
|
if (event == NULL) {
|
|
return;
|
|
}
|
|
|
|
/* set dir and drop that bit off (so its not in the way) */
|
|
event->dir = (iev->mask & IN_ISDIR) != 0;
|
|
iev->mask &= ~IN_ISDIR;
|
|
|
|
notify_event_set_path(event, node->data);
|
|
notify_event_set_filename(event, iev->name);
|
|
|
|
/* queue event before doing any fscrawl on a subdirectory
|
|
to prevent messing up the order */
|
|
queue_enqueue(event_queue, event);
|
|
|
|
switch (iev->mask) {
|
|
|
|
case IN_CREATE :
|
|
|
|
if (event->dir) {
|
|
dprint("IN_CREATE on directory, adding\n");
|
|
addwatch(event->path, event->filename);
|
|
}
|
|
|
|
type = NOTIFY_CREATE;
|
|
break;
|
|
case IN_MOVED_TO :
|
|
|
|
if (event->dir) {
|
|
dprint("IN_MOVED_TO on directory, adding\n");
|
|
/* TODO: clean this */
|
|
sprintf(buf, "%s%s/", event->path, event->filename);
|
|
notify_add_watch(buf);
|
|
}
|
|
|
|
type = NOTIFY_CREATE;
|
|
break;
|
|
case IN_MOVED_FROM :
|
|
/* TODO: and this */
|
|
sprintf(buf, "%s%s/", event->path, event->filename);
|
|
notify_rm_watch(buf);
|
|
case IN_DELETE :
|
|
type = NOTIFY_DELETE;
|
|
break;
|
|
}
|
|
|
|
event->type = type;
|
|
}
|
|
|
|
static void addrecursive(const char *path) {
|
|
|
|
fscrawl_t fsc;
|
|
fs_entry *ent;
|
|
notify_event *ev;
|
|
|
|
fsc = fsc_open(path);
|
|
|
|
if (!fsc)
|
|
return;
|
|
|
|
for(;;) {
|
|
|
|
ent = fsc_read(fsc);
|
|
|
|
if (!ent)
|
|
return;
|
|
|
|
if (ent->dir)
|
|
addwatch(ent->base, ent->name);
|
|
|
|
ev = notify_event_new();
|
|
|
|
notify_event_set_type(ev, NOTIFY_CREATE);
|
|
notify_event_set_path(ev, ent->base);
|
|
notify_event_set_filename(ev, ent->name);
|
|
notify_event_set_dir(ev, ent->dir);
|
|
|
|
queue_enqueue(event_queue, ev);
|
|
}
|
|
}
|
|
|
|
int notify_init() {
|
|
|
|
if (fd > 0) {
|
|
fprintf(stderr, "inotify already instantiated.");
|
|
return 0;
|
|
}
|
|
|
|
fd = inotify_init();
|
|
|
|
if (fd < 0)
|
|
return -1;
|
|
|
|
event_queue = queue_init();
|
|
|
|
if (event_queue == NULL)
|
|
return -1;
|
|
|
|
return 1;
|
|
}
|
|
|
|
void notify_exit() {
|
|
|
|
fd = 0;
|
|
|
|
rbtree_free(&tree, NULL);
|
|
|
|
if (event_queue) {
|
|
queue_destroy(event_queue);
|
|
event_queue = NULL;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Add inotify watch on path
|
|
*/
|
|
int notify_add_watch(const char *path) {
|
|
|
|
if (addwatch(path, NULL) < 0)
|
|
return -1;
|
|
|
|
addrecursive(path);
|
|
|
|
return 1;
|
|
}
|
|
|
|
int notify_rm_watch(const char *path) {
|
|
|
|
rbnode *node = rbtree_cmp_search(&tree, (void*)path, strlen(path));
|
|
|
|
if (node == NULL) {
|
|
dprint("remove watch: can't find %s\n", path);
|
|
return -1;
|
|
}
|
|
|
|
dprint("remove watch: %i %s\n", node->key, (char*) node->data);
|
|
rmwatch(node->key);
|
|
return 0;
|
|
}
|
|
|
|
notify_event* notify_read() {
|
|
|
|
/* bytes ready on the inotify descriptor */
|
|
int ioready;
|
|
|
|
/* if we don't have pending events, wait for more data on fd */
|
|
if (queue_isempty(event_queue)) {
|
|
|
|
/* time resolution */
|
|
struct timespec tres = { 0, 2000000 };
|
|
|
|
unsigned short tcount;
|
|
|
|
for(tcount = 0; tcount < 10; tcount++) {
|
|
|
|
if (ioctl(fd, FIONREAD, &ioready) == -1)
|
|
break;
|
|
|
|
if (ioready > INOBUFSIZE)
|
|
break;
|
|
|
|
nanosleep(&tres, NULL);
|
|
}
|
|
}
|
|
/* otherwise, only read if the data available at
|
|
this given moment is "large enough" */
|
|
else {
|
|
ioctl(fd, FIONREAD, &ioready);
|
|
|
|
if (ioready < INOBUFSIZE / 2)
|
|
ioready = 0;
|
|
}
|
|
|
|
while(ioready > 0) {
|
|
|
|
dprint("%i bytes avail\n", ioready);
|
|
|
|
char buf[INOBUFSIZE];
|
|
int offset = 0, rbytes = read(fd, buf, INOBUFSIZE);
|
|
|
|
if (rbytes == -1)
|
|
die_errno("INOTIFY");
|
|
|
|
while(rbytes > offset) {
|
|
inoev *rev = (inoev *) &buf[offset];
|
|
proc_event(rev);
|
|
offset += sizeof(inoev) + rev->len;
|
|
}
|
|
ioready -= rbytes;
|
|
}
|
|
|
|
return queue_dequeue(event_queue);
|
|
}
|
|
|
|
static void print_node(rbnode *node) {
|
|
printf("%i: %s\n", node->key, (char*) node->data);
|
|
}
|
|
|
|
void notify_stat() {
|
|
|
|
#ifdef __DEBUG__
|
|
rbtree_walk(&tree, print_node);
|
|
#endif
|
|
}
|