2010-11-29 16:12:13 +00:00
|
|
|
/** fsevents.c from Lsyncd - Live (Mirror) Syncing Demon
|
2010-11-26 16:52:24 +00:00
|
|
|
*
|
|
|
|
* License: GPLv2 (see COPYING) or any later version
|
|
|
|
*
|
|
|
|
* Authors: Axel Kittenberger <axkibe@gmail.com>
|
2011-08-16 14:25:30 +00:00
|
|
|
* Damian Steward <damian.stewart@gmail.com>
|
2010-11-26 16:52:24 +00:00
|
|
|
*
|
|
|
|
* -----------------------------------------------------------------------
|
|
|
|
*
|
2010-11-29 16:12:13 +00:00
|
|
|
* Event interface for MacOS 10.5 (Leopard) /dev/fsevents interface.
|
|
|
|
*
|
|
|
|
* Special thanks go to Amit Singh and his fslogger demonstration that showed
|
|
|
|
* how apples /dev/fsevents can be used. http://osxbook.com/software/fslogger/
|
2010-11-26 16:52:24 +00:00
|
|
|
*
|
2010-11-29 16:12:13 +00:00
|
|
|
* -- WARNING -- Quoting http://www.osxbook.com/software/fslogger/ --
|
2010-11-26 16:52:24 +00:00
|
|
|
*
|
2010-11-29 16:12:13 +00:00
|
|
|
* The interface that fslogger [and thus Lsyncd] uses is private to Apple.
|
|
|
|
* Currently, there is a caveat regarding the use of this interface by third
|
|
|
|
* parties (including fslogger [and thus Lsyncd]). While the change
|
|
|
|
* notification interface supports multiple clients, there is a single kernel
|
|
|
|
* buffer for holding events that are to be delivered to one or more
|
|
|
|
* subscribers, with the primary subscriber being Spotlight. Now, the kernel
|
|
|
|
* must hold events until it has notified all subscribers that are interested
|
|
|
|
* in them. Since there is a single buffer, a slow subscriber can cause it to
|
|
|
|
* overflow. If this happens, events will be dropped — for all subscribers,
|
|
|
|
* including Spotlight. Consequently, Spotlight may need to look at the entire
|
2012-01-27 11:08:10 +00:00
|
|
|
* volume to determine "what changed".
|
2010-11-26 16:52:24 +00:00
|
|
|
*/
|
|
|
|
#include "lsyncd.h"
|
|
|
|
|
2010-11-29 16:12:13 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "bsd/sys/fsevents.h"
|
|
|
|
|
2010-11-26 17:01:18 +00:00
|
|
|
#include <lua.h>
|
|
|
|
#include <lualib.h>
|
|
|
|
#include <lauxlib.h>
|
|
|
|
|
2010-11-29 16:12:13 +00:00
|
|
|
|
|
|
|
/* the fsevents pseudo-device */
|
|
|
|
#define DEV_FSEVENTS "/dev/fsevents"
|
|
|
|
|
|
|
|
/* buffer for reading from the device */
|
2013-07-30 10:20:23 +00:00
|
|
|
#define FSEVENT_BUFSIZ 131072
|
|
|
|
|
2010-11-29 16:12:13 +00:00
|
|
|
/* limited by MAX_KFS_EVENTS */
|
2013-07-30 10:20:23 +00:00
|
|
|
#define EVENT_QUEUE_SIZE 4096
|
|
|
|
|
2010-11-29 16:12:13 +00:00
|
|
|
#define KFS_NUM_ARGS FSE_MAX_ARGS
|
|
|
|
|
|
|
|
/* OS 10.5 structuce */
|
|
|
|
/* an event argument */
|
|
|
|
struct kfs_event_arg {
|
|
|
|
/* argument type */
|
2012-01-27 11:08:10 +00:00
|
|
|
u_int16_t type;
|
2010-11-29 16:12:13 +00:00
|
|
|
|
|
|
|
/* size of argument data that follows this field */
|
|
|
|
u_int16_t len;
|
2012-01-27 11:08:10 +00:00
|
|
|
|
2010-11-29 16:12:13 +00:00
|
|
|
union {
|
|
|
|
struct vnode *vp;
|
|
|
|
char *str;
|
|
|
|
void *ptr;
|
|
|
|
int32_t int32;
|
|
|
|
dev_t dev;
|
|
|
|
ino_t ino;
|
|
|
|
int32_t mode;
|
|
|
|
uid_t uid;
|
|
|
|
gid_t gid;
|
|
|
|
uint64_t timestamp;
|
|
|
|
} data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* OS 10.5 structuce */
|
|
|
|
/* an event */
|
|
|
|
struct kfs_event {
|
|
|
|
|
|
|
|
/* event type */
|
|
|
|
int32_t type;
|
|
|
|
|
|
|
|
/* pid of the process that performed the operation */
|
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
/* event arguments */
|
2012-01-27 11:08:10 +00:00
|
|
|
struct kfs_event_arg* args[FSE_MAX_ARGS];
|
2010-11-29 16:12:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* fsevents (cloned) filedescriptor
|
|
|
|
*/
|
|
|
|
static int fsevents_fd = -1;
|
|
|
|
|
2010-12-07 15:42:46 +00:00
|
|
|
/* event names */
|
2010-12-10 13:28:10 +00:00
|
|
|
/*static const char *eventNames[FSE_MAX_EVENTS] = {
|
2010-12-01 16:12:15 +00:00
|
|
|
"CREATE_FILE",
|
|
|
|
"DELETE",
|
|
|
|
"STAT_CHANGED",
|
|
|
|
"RENAME",
|
|
|
|
"CONTENT_MODIFIED",
|
|
|
|
"EXCHANGE",
|
|
|
|
"FINDER_INFO_CHANGED",
|
|
|
|
"CREATE_DIR",
|
|
|
|
"CHOWN",
|
|
|
|
"XATTR_MODIFIED",
|
|
|
|
"XATTR_REMOVED",
|
2010-12-10 13:28:10 +00:00
|
|
|
};*/
|
2010-11-29 16:12:13 +00:00
|
|
|
|
2010-12-07 15:42:46 +00:00
|
|
|
/* argument names*/
|
2010-12-09 15:12:08 +00:00
|
|
|
/*static const char *argNames[] = {
|
2010-12-07 15:42:46 +00:00
|
|
|
"UNKNOWN",
|
|
|
|
"VNODE",
|
|
|
|
"STRING",
|
|
|
|
"PATH",
|
|
|
|
"INT32",
|
|
|
|
"INT64",
|
|
|
|
"RAW",
|
|
|
|
"INO",
|
2012-01-27 11:08:10 +00:00
|
|
|
"UID",
|
|
|
|
"DEV",
|
|
|
|
"MODE",
|
2010-12-07 15:42:46 +00:00
|
|
|
"GID",
|
|
|
|
"FINFO",
|
2010-12-09 15:12:08 +00:00
|
|
|
};*/
|
2010-12-07 15:42:46 +00:00
|
|
|
|
|
|
|
/**
|
2012-01-27 11:08:10 +00:00
|
|
|
* The read buffer
|
2010-12-07 15:42:46 +00:00
|
|
|
*/
|
2010-11-29 16:12:13 +00:00
|
|
|
static size_t const readbuf_size = 131072;
|
|
|
|
static char * readbuf = NULL;
|
|
|
|
|
2011-08-16 14:25:30 +00:00
|
|
|
/**
|
|
|
|
* The event buffer
|
|
|
|
*/
|
|
|
|
static size_t const eventbuf_size = FSEVENT_BUFSIZ;
|
|
|
|
static char* eventbuf = NULL;
|
|
|
|
|
2010-12-07 15:42:46 +00:00
|
|
|
/**
|
|
|
|
* Handles one fsevents event
|
|
|
|
*/
|
2011-08-16 14:25:30 +00:00
|
|
|
static void
|
2010-12-07 15:42:46 +00:00
|
|
|
handle_event(lua_State *L, struct kfs_event *event, ssize_t mlen)
|
|
|
|
{
|
2010-12-10 13:28:10 +00:00
|
|
|
int32_t atype;
|
2010-12-07 15:42:46 +00:00
|
|
|
const char *path = NULL;
|
2010-12-09 15:12:08 +00:00
|
|
|
const char *trg = NULL;
|
2010-12-10 13:28:10 +00:00
|
|
|
const char *etype = NULL;
|
|
|
|
int isdir = -1;
|
2010-12-07 15:42:46 +00:00
|
|
|
|
|
|
|
if (event->type == FSE_EVENTS_DROPPED) {
|
|
|
|
logstring("Fsevents", "Events dropped!");
|
|
|
|
load_runner_func(L, "overflow");
|
|
|
|
if (lua_pcall(L, 0, 0, -2)) {
|
|
|
|
exit(-1); // ERRNO
|
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
|
|
|
hup = 1;
|
2011-08-16 14:25:30 +00:00
|
|
|
return;
|
2010-12-07 15:42:46 +00:00
|
|
|
}
|
|
|
|
|
2011-08-16 14:25:30 +00:00
|
|
|
atype = event->type & FSE_TYPE_MASK;
|
|
|
|
/*uint32_t aflags = FSE_GET_FLAGS(event->type);*/
|
2010-12-07 15:42:46 +00:00
|
|
|
|
2011-08-16 14:25:30 +00:00
|
|
|
if ((atype < FSE_MAX_EVENTS) && (atype >= -1)) {
|
|
|
|
/*printlogf(L, "Fsevents", "got event %s", eventNames[atype]);
|
|
|
|
if (aflags & FSE_COMBINED_EVENTS) {
|
|
|
|
logstring("Fsevents", "combined events");
|
|
|
|
}
|
|
|
|
if (aflags & FSE_CONTAINS_DROPPED_EVENTS) {
|
|
|
|
logstring("Fsevents", "contains dropped events");
|
|
|
|
}*/
|
|
|
|
} else {
|
2013-07-30 10:20:23 +00:00
|
|
|
printlogf(
|
|
|
|
L,
|
|
|
|
"Error",
|
|
|
|
"unknown event(%d) in fsevents.",
|
|
|
|
atype
|
|
|
|
);
|
|
|
|
|
2011-08-16 14:25:30 +00:00
|
|
|
exit(-1); // ERRNO
|
2010-12-07 15:42:46 +00:00
|
|
|
}
|
2011-08-16 14:25:30 +00:00
|
|
|
|
2010-12-07 15:42:46 +00:00
|
|
|
{
|
2010-12-09 15:12:08 +00:00
|
|
|
/* assigns the expected arguments */
|
2011-08-16 14:25:30 +00:00
|
|
|
int whichArg = 0;
|
|
|
|
while (whichArg < FSE_MAX_ARGS) {
|
|
|
|
struct kfs_event_arg * arg = event->args[whichArg++];
|
2010-12-07 15:42:46 +00:00
|
|
|
if (arg->type == FSE_ARG_DONE) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (arg->type) {
|
|
|
|
case FSE_ARG_STRING :
|
2010-12-10 13:28:10 +00:00
|
|
|
switch(atype) {
|
|
|
|
case FSE_RENAME :
|
|
|
|
if (path) {
|
2012-01-27 11:08:10 +00:00
|
|
|
// for move events second string is target
|
2010-12-10 13:28:10 +00:00
|
|
|
trg = (char *) &arg->data.str;
|
|
|
|
}
|
2012-01-27 11:08:10 +00:00
|
|
|
// fallthrough
|
2010-12-10 13:28:10 +00:00
|
|
|
case FSE_CHOWN :
|
|
|
|
case FSE_CONTENT_MODIFIED :
|
|
|
|
case FSE_CREATE_FILE :
|
|
|
|
case FSE_CREATE_DIR :
|
|
|
|
case FSE_DELETE :
|
|
|
|
case FSE_STAT_CHANGED :
|
2012-01-27 11:08:10 +00:00
|
|
|
if (!path) path = (char *)&arg->data.str;
|
2010-12-10 13:28:10 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FSE_ARG_MODE :
|
|
|
|
switch(atype) {
|
|
|
|
case FSE_RENAME :
|
2010-12-10 16:12:15 +00:00
|
|
|
case FSE_CHOWN :
|
|
|
|
case FSE_CONTENT_MODIFIED :
|
|
|
|
case FSE_CREATE_FILE :
|
|
|
|
case FSE_CREATE_DIR :
|
2010-12-10 13:28:10 +00:00
|
|
|
case FSE_DELETE :
|
|
|
|
case FSE_STAT_CHANGED :
|
|
|
|
isdir = arg->data.mode & S_IFDIR ? 1 : 0;
|
|
|
|
break;
|
2010-12-07 15:42:46 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-10 13:28:10 +00:00
|
|
|
switch(atype) {
|
|
|
|
case FSE_CHOWN :
|
|
|
|
case FSE_STAT_CHANGED :
|
|
|
|
etype = "Attrib";
|
|
|
|
break;
|
|
|
|
case FSE_CREATE_DIR :
|
|
|
|
case FSE_CREATE_FILE :
|
|
|
|
etype = "Create";
|
|
|
|
break;
|
|
|
|
case FSE_DELETE :
|
|
|
|
etype = "Delete";
|
|
|
|
break;
|
|
|
|
case FSE_RENAME :
|
|
|
|
etype = "Move";
|
|
|
|
break;
|
|
|
|
case FSE_CONTENT_MODIFIED :
|
|
|
|
etype = "Modify";
|
|
|
|
break;
|
2010-12-09 15:12:08 +00:00
|
|
|
}
|
2010-12-10 13:28:10 +00:00
|
|
|
|
|
|
|
if (etype) {
|
|
|
|
if (!path) {
|
2012-01-27 11:08:10 +00:00
|
|
|
printlogf(L, "Error", "Internal fail, fsevents, no path.");
|
2010-12-10 13:28:10 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
if (isdir < 0) {
|
2012-01-27 11:08:10 +00:00
|
|
|
printlogf(L, "Error", "Internal fail, fsevents, neither dir nor file.");
|
2010-12-10 13:28:10 +00:00
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
load_runner_func(L, "fsEventsEvent");
|
|
|
|
lua_pushstring(L, etype);
|
|
|
|
lua_pushboolean(L, isdir);
|
|
|
|
l_now(L);
|
|
|
|
lua_pushstring(L, path);
|
|
|
|
if (trg) {
|
2010-12-10 16:12:15 +00:00
|
|
|
lua_pushstring(L, trg);
|
2010-12-10 13:28:10 +00:00
|
|
|
} else {
|
|
|
|
lua_pushnil(L);
|
|
|
|
}
|
2012-01-27 11:08:10 +00:00
|
|
|
|
2010-12-10 13:28:10 +00:00
|
|
|
if (lua_pcall(L, 5, 0, -7)) {
|
2010-12-15 14:17:27 +00:00
|
|
|
exit(-1); // ERRNO
|
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
2010-12-07 15:42:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-29 16:12:13 +00:00
|
|
|
/**
|
2012-01-27 11:08:10 +00:00
|
|
|
* Called when fsevents has something to read
|
2010-11-29 16:12:13 +00:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
fsevents_ready(lua_State *L, struct observance *obs)
|
|
|
|
{
|
|
|
|
if (obs->fd != fsevents_fd) {
|
|
|
|
logstring("Error", "Internal, fsevents_fd != ob->fd");
|
|
|
|
exit(-1); // ERRNO
|
|
|
|
}
|
2012-01-27 11:08:10 +00:00
|
|
|
|
|
|
|
ptrdiff_t len = read (fsevents_fd, readbuf, readbuf_size);
|
|
|
|
int err = errno;
|
|
|
|
if (len == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (len < 0) {
|
|
|
|
if (err == EAGAIN) {
|
|
|
|
/* nothing more */
|
2010-12-10 15:30:45 +00:00
|
|
|
return;
|
2012-01-27 11:08:10 +00:00
|
|
|
} else {
|
|
|
|
printlogf(L, "Error", "Read fail on fsevents");
|
|
|
|
exit(-1); // ERRNO
|
2010-11-29 16:12:13 +00:00
|
|
|
}
|
2012-01-27 11:08:10 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
int off = 0;
|
|
|
|
while (off < len && !hup && !term) {
|
|
|
|
/* deals with alignment issues on 64 bit by copying data bit by bit */
|
|
|
|
struct kfs_event* event = (struct kfs_event *) eventbuf;
|
|
|
|
event->type = *(int32_t*)(readbuf+off);
|
|
|
|
off += sizeof(int32_t);
|
|
|
|
event->pid = *(pid_t*)(readbuf+off);
|
|
|
|
off += sizeof(pid_t);
|
|
|
|
/* arguments */
|
|
|
|
int whichArg = 0;
|
|
|
|
int eventbufOff = sizeof(struct kfs_event);
|
|
|
|
size_t ptrSize = sizeof(void*);
|
|
|
|
if ((eventbufOff % ptrSize) != 0) {
|
|
|
|
eventbufOff += ptrSize-(eventbufOff%ptrSize);
|
2010-11-29 16:12:13 +00:00
|
|
|
}
|
2012-01-27 11:08:10 +00:00
|
|
|
while (off < len && whichArg < FSE_MAX_ARGS) {
|
|
|
|
/* assign argument pointer to eventbuf based on
|
|
|
|
known current offset into eventbuf */
|
|
|
|
uint16_t argLen = 0;
|
|
|
|
event->args[whichArg] = (struct kfs_event_arg *) (eventbuf + eventbufOff);
|
|
|
|
/* copy type */
|
|
|
|
uint16_t argType = *(uint16_t*)(readbuf + off);
|
|
|
|
event->args[whichArg]->type = argType;
|
|
|
|
off += sizeof(uint16_t);
|
|
|
|
if (argType == FSE_ARG_DONE) {
|
|
|
|
/* done */
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
/* copy data length */
|
|
|
|
argLen = *(uint16_t *)(readbuf + off);
|
|
|
|
event->args[whichArg]->len = argLen;
|
2011-08-16 14:25:30 +00:00
|
|
|
off += sizeof(uint16_t);
|
2012-01-27 11:08:10 +00:00
|
|
|
/* copy data */
|
|
|
|
memcpy(&(event->args[whichArg]->data), readbuf + off, argLen);
|
|
|
|
off += argLen;
|
|
|
|
}
|
|
|
|
/* makes sure alignment is correct for 64 bit systems */
|
|
|
|
size_t argStructLen = sizeof(uint16_t) + sizeof(uint16_t);
|
|
|
|
if ((argStructLen % ptrSize) != 0) {
|
|
|
|
argStructLen += ptrSize-(argStructLen % ptrSize);
|
|
|
|
}
|
|
|
|
argStructLen += argLen;
|
|
|
|
if ((argStructLen % ptrSize) != 0) {
|
|
|
|
argStructLen += ptrSize-(argStructLen % ptrSize);
|
2011-08-16 14:25:30 +00:00
|
|
|
}
|
2012-01-27 11:08:10 +00:00
|
|
|
eventbufOff += argStructLen;
|
|
|
|
whichArg++;
|
2010-12-01 16:12:15 +00:00
|
|
|
}
|
2012-01-27 11:08:10 +00:00
|
|
|
handle_event(L, event, len);
|
2010-11-29 16:12:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-01-27 11:08:10 +00:00
|
|
|
* Called to close/tidy fsevents
|
2010-11-29 16:12:13 +00:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
fsevents_tidy(struct observance *obs)
|
|
|
|
{
|
|
|
|
if (obs->fd != fsevents_fd) {
|
|
|
|
logstring("Error", "Internal, fsevents_fd != ob->fd");
|
|
|
|
exit(-1); // ERRNO
|
|
|
|
}
|
|
|
|
close(fsevents_fd);
|
2010-12-01 16:12:15 +00:00
|
|
|
free(readbuf);
|
|
|
|
readbuf = NULL;
|
2011-08-16 14:25:30 +00:00
|
|
|
free(eventbuf);
|
|
|
|
eventbuf = NULL;
|
2010-11-29 16:12:13 +00:00
|
|
|
}
|
|
|
|
|
2012-01-27 11:08:10 +00:00
|
|
|
/**
|
2010-11-26 16:52:24 +00:00
|
|
|
* opens and initalizes fsevents.
|
|
|
|
*/
|
|
|
|
extern void
|
2012-01-27 11:08:10 +00:00
|
|
|
open_fsevents(lua_State *L)
|
2010-11-29 17:45:04 +00:00
|
|
|
{
|
2010-11-29 16:12:13 +00:00
|
|
|
int8_t event_list[] = { // action to take for each event
|
2012-01-27 11:08:10 +00:00
|
|
|
FSE_REPORT, // FSE_CREATE_FILE
|
|
|
|
FSE_REPORT, // FSE_DELETE
|
|
|
|
FSE_REPORT, // FSE_STAT_CHANGED
|
|
|
|
FSE_REPORT, // FSE_RENAME
|
|
|
|
FSE_REPORT, // FSE_CONTENT_MODIFIED
|
|
|
|
FSE_REPORT, // FSE_EXCHANGE
|
|
|
|
FSE_REPORT, // FSE_FINDER_INFO_CHANGED
|
|
|
|
FSE_REPORT, // FSE_CREATE_DIR
|
|
|
|
FSE_REPORT, // FSE_CHOWN
|
|
|
|
FSE_REPORT, // FSE_XATTR_MODIFIED
|
|
|
|
FSE_REPORT, // FSE_XATTR_REMOVED
|
2010-11-29 16:12:13 +00:00
|
|
|
};
|
|
|
|
struct fsevent_clone_args fca = {
|
|
|
|
.event_list = (int8_t *) event_list,
|
|
|
|
.num_events = sizeof(event_list)/sizeof(int8_t),
|
|
|
|
.event_queue_depth = EVENT_QUEUE_SIZE,
|
|
|
|
.fd = &fsevents_fd,
|
|
|
|
};
|
|
|
|
int fd = open(DEV_FSEVENTS, O_RDONLY);
|
2010-12-16 12:56:46 +00:00
|
|
|
int err = errno;
|
2012-01-27 11:08:10 +00:00
|
|
|
printlogf(L, "Warn",
|
2010-12-10 13:28:10 +00:00
|
|
|
"Using /dev/fsevents which is considered an OSX internal interface.");
|
2012-01-27 11:08:10 +00:00
|
|
|
printlogf(L, "Warn",
|
2010-12-15 13:33:48 +00:00
|
|
|
"Functionality might break across OSX versions (This is for 10.5.X)");
|
2012-01-27 11:08:10 +00:00
|
|
|
printlogf(L, "Warn",
|
2010-12-10 13:28:10 +00:00
|
|
|
"A hanging Lsyncd might cause Spotlight/Timemachine doing extra work.");
|
|
|
|
|
2010-11-29 16:12:13 +00:00
|
|
|
if (fd < 0) {
|
2012-01-27 11:08:10 +00:00
|
|
|
printlogf(L, "Error",
|
|
|
|
"Cannot access %s monitor! (%d:%s)",
|
2010-12-16 12:56:46 +00:00
|
|
|
DEV_FSEVENTS, err, strerror(err));
|
2010-11-29 16:12:13 +00:00
|
|
|
exit(-1); // ERRNO
|
|
|
|
}
|
|
|
|
|
2010-12-15 14:20:34 +00:00
|
|
|
if (ioctl(fd, FSEVENTS_CLONE, (char *)&fca) < 0) {
|
2012-01-27 11:08:10 +00:00
|
|
|
printlogf(L, "Error",
|
|
|
|
"Cannot control %s monitor! (%d:%s)",
|
2010-11-29 16:12:13 +00:00
|
|
|
DEV_FSEVENTS, errno, strerror(errno));
|
2010-12-15 14:20:34 +00:00
|
|
|
exit(-1); // ERRNO
|
|
|
|
}
|
2012-01-27 11:08:10 +00:00
|
|
|
|
2010-12-01 16:12:15 +00:00
|
|
|
if (readbuf) {
|
2012-01-27 11:08:10 +00:00
|
|
|
logstring("Error",
|
|
|
|
"internal fail, inotify readbuf!=NULL in open_inotify()")
|
2010-12-01 16:12:15 +00:00
|
|
|
exit(-1); // ERRNO
|
|
|
|
}
|
|
|
|
readbuf = s_malloc(readbuf_size);
|
2011-08-16 14:25:30 +00:00
|
|
|
eventbuf = s_malloc(eventbuf_size);
|
2012-01-27 11:08:10 +00:00
|
|
|
// fd has been cloned, closes access fd
|
2010-12-15 14:20:34 +00:00
|
|
|
close(fd);
|
2010-11-29 16:12:13 +00:00
|
|
|
close_exec_fd(fsevents_fd);
|
|
|
|
non_block_fd(fsevents_fd);
|
|
|
|
observe_fd(fsevents_fd, fsevents_ready, NULL, fsevents_tidy, NULL);
|
2010-11-26 16:52:24 +00:00
|
|
|
}
|
|
|
|
|
2010-11-29 16:12:13 +00:00
|
|
|
|