1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
|
/* libnih
*
* watch.c - watching of files and directories with inotify
*
* Copyright © 2009 Scott James Remnant <scott@netsplit.com>.
* Copyright © 2009 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif /* HAVE_CONFIG_H */
#include <sys/inotify.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <dirent.h>
#include <string.h>
#include <unistd.h>
#include <nih/macros.h>
#include <nih/alloc.h>
#include <nih/string.h>
#include <nih/list.h>
#include <nih/hash.h>
#include <nih/io.h>
#include <nih/file.h>
#include <nih/watch.h>
#include <nih/logging.h>
#include <nih/error.h>
/**
* INOTIFY_EVENTS:
*
* The standard set of inotify events we use for watching any path; if
* people want a different set, they can use inotify_add_watch() directly.
**/
#define INOTIFY_EVENTS (IN_CREATE | IN_DELETE | IN_CLOSE_WRITE \
| IN_MOVE | IN_MOVE_SELF)
/* Prototypes for static functions */
static NihWatchHandle *nih_watch_handle_by_wd (NihWatch *watch, int wd);
static NihWatchHandle *nih_watch_handle_by_path (NihWatch *watch,
const char *path);
static int nih_watch_add_visitor (NihWatch *watch,
const char *dirname,
const char *path,
struct stat *statbuf)
__attribute__ ((warn_unused_result));
static void nih_watch_reader (NihWatch *watch, NihIo *io,
const char *buf, size_t len);
static void nih_watch_handle (NihWatch *watch,
NihWatchHandle *handle,
uint32_t events, uint32_t cookie,
const char *name,
int *caught_free);
/**
* nih_watch_new:
* @parent: parent object for new watch,
* @path: full path to be watched,
* @subdirs: include sub-directories of @path,
* @create: call @create_handler for existing files,
* @filter: function to filter paths watched,
* @create_handler: function called when a path is created,
* @modify_handler: function called when a path is modified,
* @delete_handler: function called when a path is deleted,
* @data: pointer to pass to functions.
*
* Watches @path for changes, which may be either a single file or a
* directory. If @path is a directory, then sub-directories can be included
* by setting @subdirs to TRUE; both existing and newly created
* sub-directories will be automatically watched.
*
* Additionally, the set of files and directories within @path can be
* limited by passing a @filter function which will recieve the paths and
* may return TRUE to indicate that the path received should not be watched.
*
* When a file is created within @path, or moved from outside this location
* into it, @create_handler will be called. If @path is removed, or a file
* is removed within @path, or moved to a location outside it,
* @delete_handler will be called. Finally if @path is modified, or a file
* within it is modified, @modify_handler will be called.
*
* If @create is TRUE, @create_handler will also be called for all of the
* files that exist under @path when the watch is first added. This only
* occurs if the watch can be added.
*
* This is a very high level wrapped around the inotify API; lower levels
* can be obtained using the inotify API itself and some of the helper
* functions used by this one.
*
* The returned watch structure is allocated with nih_alloc(), and contains
* open inotify descriptors and child structures including NihIo, which are
* children of the returned structure; there is no non-allocated version
* because of this.
*
* If @parent is not NULL, it should be a pointer to another object which
* will be used as a parent for the returned watch. When all parents
* of the returned watch are freed, the returned watch will also be
* freed.
*
* Returns: new NihWatch structure, or NULL on raised error.
**/
NihWatch *
nih_watch_new (const void *parent,
const char *path,
int subdirs,
int create,
NihFileFilter filter,
NihCreateHandler create_handler,
NihModifyHandler modify_handler,
NihDeleteHandler delete_handler,
void *data)
{
NihWatch *watch;
nih_assert (path != NULL);
/* Allocate the NihWatch structure */
watch = NIH_MUST (nih_new (parent, NihWatch));
watch->path = NIH_MUST (nih_strdup (watch, path));
watch->created = NIH_MUST (nih_hash_string_new (watch, 0));
watch->subdirs = subdirs;
watch->create = create;
watch->filter = filter;
watch->create_handler = create_handler;
watch->modify_handler = modify_handler;
watch->delete_handler = delete_handler;
watch->data = data;
watch->free = NULL;
/* Open an inotify instance file descriptor */
watch->fd = inotify_init ();
if (watch->fd < 0) {
nih_error_raise_system ();
nih_free (watch);
return NULL;
}
/* Add the path (and subdirs) to the list of watches */
nih_list_init (&watch->watches);
if (nih_watch_add (watch, path, subdirs) < 0) {
close (watch->fd);
nih_free (watch);
return NULL;
}
/* Create an NihIo to handle incoming events. */
watch->io = NIH_SHOULD (nih_io_reopen (watch, watch->fd, NIH_IO_STREAM,
(NihIoReader)nih_watch_reader,
NULL, NULL, watch));
if (! watch->io) {
close (watch->fd);
nih_free (watch);
return NULL;
}
nih_alloc_set_destructor (watch, nih_watch_destroy);
return watch;
}
/**
* nih_watch_handle_by_wd:
* @watch: watch to search,
* @wd: inotify watch descriptor.
*
* Searches @watch for the path that @wd is handling.
*
* Returns: NihWatchHandle for @wd, or NULL if none known.
**/
static NihWatchHandle *
nih_watch_handle_by_wd (NihWatch *watch,
int wd)
{
nih_assert (watch != NULL);
nih_assert (wd >= 0);
NIH_LIST_FOREACH (&watch->watches, iter) {
NihWatchHandle *handle = (NihWatchHandle *)iter;
if (handle->wd == wd)
return handle;
}
return NULL;
}
/**
* nih_watch_handle_by_path:
* @watch: watch to search,
* @path: path being watched.
*
* Searches @watch for the watch descriptor that is handling @path.
*
* Returns: NihWatchHandle for @path, or NULL if none known.
**/
static NihWatchHandle *
nih_watch_handle_by_path (NihWatch *watch,
const char *path)
{
nih_assert (watch != NULL);
nih_assert (path != NULL);
NIH_LIST_FOREACH (&watch->watches, iter) {
NihWatchHandle *handle = (NihWatchHandle *)iter;
if (! strcmp (handle->path, path))
return handle;
}
return NULL;
}
/**
* nih_watch_add:
* @watch: NihWatch to change,
* @path: path to be watched,
* @subdirs: also watch sub-directories?
*
* Adds a new @path to be watched to the existing @watch structure, the
* same handlers will be called. @path need not be related to the path
* originally given to @watch.
*
* If @subdirs is TRUE, and @path is a directory, then sub-directories of
* the path are also watched.
*
* An NihWatchHandle structure is allocated and stored in the watches
* member of @watch, it is also a child of that structure; there is no
* non-allocated version of this because of this.
*
* Returns: zero on success, negative value on raised error.
**/
int
nih_watch_add (NihWatch *watch,
const char *path,
int subdirs)
{
NihWatchHandle *handle;
nih_assert (watch != NULL);
nih_assert (path != NULL);
/* Allocate the NihWatchHandle structure */
handle = NIH_MUST (nih_new (watch, NihWatchHandle));
handle->path = NIH_MUST (nih_strdup (handle, path));
nih_list_init (&handle->entry);
nih_alloc_set_destructor (handle, nih_list_destroy);
/* Get a watch descriptor for the path */
handle->wd = inotify_add_watch (watch->fd, path, INOTIFY_EVENTS);
if (handle->wd < 0) {
nih_error_raise_system ();
nih_free (handle);
return -1;
}
/* Check for duplicates in the list */
if (nih_watch_handle_by_wd (watch, handle->wd)) {
nih_free (handle);
return 0;
}
nih_list_add (&watch->watches, &handle->entry);
/* Recurse into sub-directories, attempting to add a watch for each
* one; errors within the walk are warned automatically, so if this
* fails, it means we literally couldn't watch the top-level.
*/
if (subdirs && (nih_dir_walk (path, watch->filter,
(NihFileVisitor)nih_watch_add_visitor,
NULL, watch) < 0)) {
NihError *err;
err = nih_error_get ();
if (err->number != ENOTDIR) {
nih_free (handle);
return -1;
} else
nih_free (err);
}
return 0;
}
/**
* nih_watch_add_visitor:
* @watch: watch to add to,
* @dirname: top-level being watched,
* @path: path to add,
* @statbuf: stat of @path.
*
* Callback function for nih_dir_walk(), used by nih_watch_add() to add
* sub-directories. Just calls nih_watch_add() with subdirs as FALSE for
* each directory found.
*
* If the create member of @watch is TRUE, it also calls the create handle
* for each path found.
*
* Returns: zero on success, negative value on raised error.
**/
static int
nih_watch_add_visitor (NihWatch *watch,
const char *dirname,
const char *path,
struct stat *statbuf)
{
nih_assert (watch != NULL);
nih_assert (dirname != NULL);
nih_assert (path != NULL);
nih_assert (statbuf != NULL);
if (watch->create && watch->create_handler)
watch->create_handler (watch->data, watch, path, statbuf);
if (S_ISDIR (statbuf->st_mode)) {
int ret;
ret = nih_watch_add (watch, path, FALSE);
if (ret < 0)
return ret;
}
return 0;
}
/**
* nih_watch_destroy:
* @watch: NihWatch to be destroyed.
*
* Closes the inotify descriptor and frees the NihIo instance handling it.
*
* Normally used or called from an nih_alloc() destructor.
*
* Returns: zero.
**/
int
nih_watch_destroy (NihWatch *watch)
{
nih_assert (watch != NULL);
if (watch->free)
*watch->free = TRUE;
return 0;
}
/**
* nih_watch_reader:
* @watch: NihWatch for descriptor,
* @io: NihIo with data to be read,
* @buf: buffer data is available in,
* @len: bytes in @buf.
*
* This function is called whenever there is data to be read on the inotify
* file descriptor associated with @watch. Each event in the buffer is read,
* including the following name, and handled by calling one of the functions
* in @watch.
**/
static void
nih_watch_reader (NihWatch *watch,
NihIo *io,
const char *buf,
size_t len)
{
int caught_free;
nih_assert (watch != NULL);
nih_assert (io != NULL);
nih_assert (buf != NULL);
nih_assert (len > 0);
caught_free = FALSE;
if (! watch->free)
watch->free = &caught_free;
while (len > 0) {
NihWatchHandle *handle;
struct inotify_event *event;
size_t sz;
/* Wait until there's a complete event waiting
* (should always be true, but better to be safe than sorry)
*/
sz = sizeof (struct inotify_event);
if (len < sz)
goto finish;
/* Never read an event without its name (again should always
* be true
*/
event = (struct inotify_event *) buf;
sz += event->len;
if (len < sz)
goto finish;
/* Find the handle for this watch */
handle = nih_watch_handle_by_wd (watch, event->wd);
if (handle)
nih_watch_handle (watch, handle, event->mask,
event->cookie, event->name,
&caught_free);
/* Check whether the user freed the watch from inside the
* handler. Just drop out now; everything we had has gone.
*/
if (caught_free)
return;
/* Remove the event from the front of the buffer, and
* decrease our own length counter.
*/
nih_io_buffer_shrink (io->recv_buf, sz);
len -= sz;
}
finish:
if (watch->free == &caught_free)
watch->free = NULL;
}
/**
* nih_watch_handle:
* @watch: NihWatch for descriptor,
* @handle: NihWatchHandle for individual path,
* @events: inotify events mask,
* @cookie: unique cookie for renames,
* @name: name of path under @handle,
* @caught_free: set to TRUE if the watch is freed.
*
* This handler is called when an event occurs for an individual watch
* handle, it deals with the event and ensures that the @watch handlers
* are called.
**/
static void
nih_watch_handle (NihWatch *watch,
NihWatchHandle *handle,
uint32_t events,
uint32_t cookie,
const char *name,
int *caught_free)
{
NihListEntry *entry;
int delayed = FALSE;
struct stat statbuf;
nih_local char *path = NULL;
nih_assert (watch != NULL);
nih_assert (handle != NULL);
/* First check whether this event is being caused by the actual
* path being watched by the handle being deleted or moved. In
* either case, we drop the watch because we've lost the path.
*/
if ((events & IN_IGNORED) || (events & IN_MOVE_SELF)) {
if (watch->delete_handler)
watch->delete_handler (watch->data, watch,
handle->path);
if (*caught_free)
return;
nih_debug ("Ceasing watch on %s", handle->path);
nih_free (handle);
return;
}
/* Every other event must come with a name. */
if ((! name) || strchr (name, '/'))
return;
path = NIH_MUST (nih_sprintf (NULL, "%s/%s", handle->path, name));
/* Check the filter */
if (watch->filter && watch->filter (watch->data, path,
events & IN_ISDIR))
return;
/* Look to see whether we have a delayed create handler for this
* path - it's handled differently depending on the events and
* file type.
*/
entry = (NihListEntry *)nih_hash_lookup (watch->created, path);
if (entry) {
delayed = TRUE;
nih_free (entry);
}
/* Handle it differently depending on the events mask */
if ((events & IN_CREATE) || (events & IN_MOVED_TO)) {
if (stat (path, &statbuf) < 0)
return;
/* Delay the create handler when files are first created. */
if ((events & IN_CREATE) && (! S_ISDIR (statbuf.st_mode))) {
entry = NIH_MUST (nih_list_entry_new (watch));
nih_ref (path, entry);
entry->str = path;
nih_hash_add (watch->created, &entry->entry);
return;
}
if (watch->create_handler)
watch->create_handler (watch->data, watch,
path, &statbuf);
if (*caught_free)
return;
/* See if it's a sub-directory, and we're handling those
* ourselves. Add a watch to the directory and any
* sub-directories within it.
*/
if (watch->subdirs && S_ISDIR (statbuf.st_mode)) {
if (nih_watch_add (watch, path, TRUE) < 0) {
NihError *err;
err = nih_error_get ();
nih_warn ("%s: %s: %s", path,
_("Unable to watch directory"),
err->message);
nih_free (err);
}
}
} else if (events & IN_CLOSE_WRITE) {
if (stat (path, &statbuf) < 0)
return;
/* Use the create handler when a newly created file is
* closed.
*/
if (delayed && watch->create_handler) {
watch->create_handler (watch->data, watch,
path, &statbuf);
} else if (watch->modify_handler)
watch->modify_handler (watch->data, watch,
path, &statbuf);
if (*caught_free)
return;
} else if ((events & IN_DELETE) || (events & IN_MOVED_FROM)) {
NihWatchHandle *path_handle;
/* Suppress the handler if the file was newly created. */
if ((! delayed) && watch->delete_handler)
watch->delete_handler (watch->data, watch, path);
if (*caught_free)
return;
/* If there's a watch for that path, we act as if it got
* IN_IGNORED or IN_MOVE_SELF; just in case it's a symlink
* that's getting removed or something.
*/
path_handle = nih_watch_handle_by_path (watch, path);
if (path_handle) {
nih_debug ("Ceasing watch on %s", path_handle->path);
nih_free (path_handle);
}
}
}
|