OSDN Git Service

LDP: Update original to LDP v3.68
[linuxjm/LDP_man-pages.git] / original / man7 / inotify.7
1 '\" t
2 .\" Copyright (C) 2006, 2014 Michael Kerrisk <mtk.manpages@gmail.com>
3 .\" Copyright (C) 2014 Heinrich Schuchardt <xypron.glpk@gmx.de>
4 .\"
5 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein.  The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" %%%LICENSE_END
26 .\"
27 .TH INOTIFY 7 2014-05-23 "Linux" "Linux Programmer's Manual"
28 .SH NAME
29 inotify \- monitoring filesystem events
30 .SH DESCRIPTION
31 The
32 .I inotify
33 API provides a mechanism for monitoring filesystem events.
34 Inotify can be used to monitor individual files,
35 or to monitor directories.
36 When a directory is monitored, inotify will return events
37 for the directory itself, and for files inside the directory.
38
39 The following system calls are used with this API:
40 .IP * 3
41 .BR inotify_init (2)
42 creates an inotify instance and returns a file descriptor
43 referring to the inotify instance.
44 The more recent
45 .BR inotify_init1 (2)
46 is like
47 .BR inotify_init (2),
48 but has a
49 .IR flags
50 argument that provides access to some extra functionality.
51 .IP *
52 .BR inotify_add_watch (2)
53 manipulates the "watch list" associated with an inotify instance.
54 Each item ("watch") in the watch list specifies the pathname of
55 a file or directory,
56 along with some set of events that the kernel should monitor for the
57 file referred to by that pathname.
58 .BR inotify_add_watch (2)
59 either creates a new watch item, or modifies an existing watch.
60 Each watch has a unique "watch descriptor", an integer
61 returned by
62 .BR inotify_add_watch (2)
63 when the watch is created.
64 .IP *
65 When events occur for monitored files and directories,
66 those events are made available to the application as structured data that
67 can be read from the inotify file descriptor using
68 .BR read (2)
69 (see below).
70 .IP *
71 .BR inotify_rm_watch (2)
72 removes an item from an inotify watch list.
73 .IP *
74 When all file descriptors referring to an inotify
75 instance have been closed (using
76 .BR close (2)),
77 the underlying object and its resources are
78 freed for reuse by the kernel;
79 all associated watches are automatically freed.
80
81 With careful programming,
82 an application can use inotify to efficiently monitor and cache
83 the state of a set of filesystem objects.
84 However, robust applications should allow for the fact that bugs
85 in the monitoring logic or races of the kind described below
86 may leave the cache inconsistent with the filesystem state.
87 It is probably wise to to do some consistency checking,
88 and rebuild the cache when inconsistencies are detected.
89 .SS Reading events from an inotify file descriptor
90 To determine what events have occurred, an application
91 .BR read (2)s
92 from the inotify file descriptor.
93 If no events have so far occurred, then,
94 assuming a blocking file descriptor,
95 .BR read (2)
96 will block until at least one event occurs
97 (unless interrupted by a signal,
98 in which case the call fails with the error
99 .BR EINTR ;
100 see
101 .BR signal (7)).
102
103 Each successful
104 .BR read (2)
105 returns a buffer containing one or more of the following structures:
106 .in +4n
107 .nf
108
109 struct inotify_event {
110     int      wd;       /* Watch descriptor */
111 .\" FIXME . The type of the 'wd' field should probably be "int32_t".
112 .\" I submitted a patch to fix this.  See the LKML thread
113 .\" "[patch] Fix type errors in inotify interfaces", 18 Nov 2008
114 .\" Glibc bug filed: http://sources.redhat.com/bugzilla/show_bug.cgi?id=7040
115     uint32_t mask;     /* Mask of events */
116     uint32_t cookie;   /* Unique cookie associating related
117                           events (for rename(2)) */
118     uint32_t len;      /* Size of \fIname\fP field */
119     char     name[];   /* Optional null-terminated name */
120 };
121 .fi
122 .in
123
124 .I wd
125 identifies the watch for which this event occurs.
126 It is one of the watch descriptors returned by a previous call to
127 .BR inotify_add_watch (2).
128
129 .I mask
130 contains bits that describe the event that occurred (see below).
131
132 .I cookie
133 is a unique integer that connects related events.
134 Currently this is used only for rename events, and
135 allows the resulting pair of
136 .B IN_MOVED_FROM
137 and
138 .B IN_MOVED_TO
139 events to be connected by the application.
140 For all other event types,
141 .I cookie
142 is set to 0.
143
144 The
145 .I name
146 field is present only when an event is returned
147 for a file inside a watched directory;
148 it identifies the file pathname relative to the watched directory.
149 This pathname is null-terminated,
150 and may include further null bytes (\(aq\\0\(aq) to align subsequent reads to a
151 suitable address boundary.
152
153 The
154 .I len
155 field counts all of the bytes in
156 .IR name ,
157 including the null bytes;
158 the length of each
159 .I inotify_event
160 structure is thus
161 .IR "sizeof(struct inotify_event)+len" .
162
163 The behavior when the buffer given to
164 .BR read (2)
165 is too small to return information about the next event depends
166 on the kernel version: in kernels before 2.6.21,
167 .BR read (2)
168 returns 0; since kernel 2.6.21,
169 .BR read (2)
170 fails with the error
171 .BR EINVAL .
172 Specifying a buffer of size
173
174     sizeof(struct inotify_event) + NAME_MAX + 1
175
176 will be sufficient to read at least one event.
177 .SS inotify events
178 The
179 .BR inotify_add_watch (2)
180 .I mask
181 argument and the
182 .I mask
183 field of the
184 .I inotify_event
185 structure returned when
186 .BR read (2)ing
187 an inotify file descriptor are both bit masks identifying
188 inotify events.
189 The following bits can be specified in
190 .I mask
191 when calling
192 .BR inotify_add_watch (2)
193 and may be returned in the
194 .I mask
195 field returned by
196 .BR read (2):
197 .RS 4
198 .TP
199 .BR IN_ACCESS " (*)"
200 File was accessed (e.g.,
201 .BR read (2),
202 .BR execve (2)).
203 .TP
204 .BR IN_ATTRIB " (*)"
205 Metadata changed\(emfor example, permissions (e.g.,
206 .BR chmod (2)),
207 timestamps (e.g.,
208 .BR utimensat (2)),
209 extended attributes
210 .RB ( setxattr (2)),
211 link count (since Linux 2.6.25; e.g.,
212 for the target of
213 .BR link (2)
214 and for
215 .BR unlink (2)),
216 and user/group ID (e.g.,
217 .BR chown (2)).
218 .TP
219 .BR IN_CLOSE_WRITE " (*)"
220 File opened for writing was closed.
221 .TP
222 .BR IN_CLOSE_NOWRITE " (*)"
223 File not opened for writing was closed.
224 .TP
225 .BR IN_CREATE " (*)"
226 File/directory created in watched directory (e.g.,
227 .BR open (2)
228 .BR O_CREAT ,
229 .BR mkdir (2),
230 .BR link (2),
231 .BR symlink (2),
232 .BR bind (2)
233 on a UNIX domain socket).
234 .TP
235 .BR IN_DELETE " (*)"
236 File/directory deleted from watched directory.
237 .TP
238 .B IN_DELETE_SELF
239 Watched file/directory was itself deleted.
240 (This event also occurs if an object is moved to another filesystem,
241 since
242 .BR mv (1)
243 in effect copies the file to the other filesystem and
244 then deletes it from the original filesystem.)
245 In addition, an
246 .B IN_IGNORED
247 event will subsequently be generated for the watch descriptor.
248 .TP
249 .BR IN_MODIFY " (*)"
250 File was modified (e.g.,
251 .BR write (2),
252 .BR truncate (2)).
253 .TP
254 .B IN_MOVE_SELF
255 Watched file/directory was itself moved.
256 .TP
257 .BR IN_MOVED_FROM " (*)"
258 Generated for the directory containing the old filename
259 when a file is renamed.
260 .TP
261 .BR IN_MOVED_TO " (*)"
262 Generated for the directory containing the new filename
263 when a file is renamed.
264 .TP
265 .BR IN_OPEN " (*)"
266 File was opened.
267 .RE
268 .PP
269 When monitoring a directory,
270 the events marked with an asterisk (*) above can occur for
271 files in the directory, in which case the
272 .I name
273 field in the returned
274 .I inotify_event
275 structure identifies the name of the file within the directory.
276 .PP
277 The
278 .B IN_ALL_EVENTS
279 macro is defined as a bit mask of all of the above events.
280 This macro can be used as the
281 .I mask
282 argument when calling
283 .BR inotify_add_watch (2).
284
285 Two additional convenience macros are defined:
286 .RS 4
287 .TP
288 .BR IN_MOVE
289 Equates to
290 .BR "IN_MOVED_FROM | IN_MOVED_TO" .
291 .TP
292 .BR IN_CLOSE
293 Equates to
294 .BR "IN_CLOSE_WRITE | IN_CLOSE_NOWRITE" .
295 .RE
296 .PP
297 The following further bits can be specified in
298 .I mask
299 when calling
300 .BR inotify_add_watch (2):
301 .RS 4
302 .TP
303 .BR IN_DONT_FOLLOW " (since Linux 2.6.15)"
304 Don't dereference
305 .I pathname
306 if it is a symbolic link.
307 .TP
308 .BR IN_EXCL_UNLINK " (since Linux 2.6.36)"
309 .\" commit 8c1934c8d70b22ca8333b216aec6c7d09fdbd6a6
310 By default, when watching events on the children of a directory,
311 events are generated for children even after they have been unlinked
312 from the directory.
313 This can result in large numbers of uninteresting events for
314 some applications (e.g., if watching
315 .IR /tmp ,
316 in which many applications create temporary files whose
317 names are immediately unlinked).
318 Specifying
319 .B IN_EXCL_UNLINK
320 changes the default behavior,
321 so that events are not generated for children after
322 they have been unlinked from the watched directory.
323 .TP
324 .B IN_MASK_ADD
325 Add (OR) events to watch mask for this pathname if
326 it already exists (instead of replacing mask).
327 .TP
328 .B IN_ONESHOT
329 Monitor
330 .I pathname
331 for one event, then remove from
332 watch list.
333 .TP
334 .BR IN_ONLYDIR " (since Linux 2.6.15)"
335 Only watch
336 .I pathname
337 if it is a directory.
338 .RE
339 .PP
340 The following bits may be set in the
341 .I mask
342 field returned by
343 .BR read (2):
344 .RS 4
345 .TP
346 .B IN_IGNORED
347 Watch was removed explicitly
348 .RB ( inotify_rm_watch (2))
349 or automatically (file was deleted, or filesystem was unmounted).
350 See also BUGS.
351 .TP
352 .B IN_ISDIR
353 Subject of this event is a directory.
354 .TP
355 .B IN_Q_OVERFLOW
356 Event queue overflowed
357 .RI ( wd
358 is \-1 for this event).
359 .TP
360 .B IN_UNMOUNT
361 Filesystem containing watched object was unmounted.
362 In addition, an
363 .B IN_IGNORED
364 event will subsequently be generated for the watch descriptor.
365 .RE
366 .SS Examples
367 Suppose an application is watching the directory
368 .I dir
369 and the file
370 .IR dir/myfile
371 for all events.
372 The examples below show some events that will be generated
373 for these two objects.
374 .RS 4
375 .TP
376 fd = open("dir/myfile", O_RDWR);
377 Generates
378 .B IN_OPEN
379 events for both
380 .I dir
381 and
382 .IR dir/myfile .
383 .TP
384 read(fd, buf, count);
385 Generates
386 .B IN_ACCESS
387 events for both
388 .I dir
389 and
390 .IR dir/myfile .
391 .TP
392 write(fd, buf, count);
393 Generates
394 .B IN_MODIFY
395 events for both
396 .I dir
397 and
398 .IR dir/myfile .
399 .TP
400 fchmod(fd, mode);
401 Generates
402 .B IN_ATTRIB
403 events for both
404 .I dir
405 and
406 .IR dir/myfile .
407 .TP
408 close(fd);
409 Generates
410 .B IN_CLOSE_WRITE
411 events for both
412 .I dir
413 and
414 .IR dir/myfile .
415 .RE
416 .PP
417 Suppose an application is watching the directories
418 .I dir1
419 and
420 .IR dir2 ,
421 and the file
422 .IR dir1/myfile .
423 The following examples show some events that may be generated.
424 .RS 4
425 .TP
426 link("dir1/myfile", "dir2/new");
427 Generates an
428 .B IN_ATTRIB
429 event for
430 .IR myfile
431 and an
432 .B IN_CREATE
433 event for
434 .IR dir2 .
435 .TP
436 rename("dir1/myfile", "dir2/myfile");
437 Generates an
438 .B IN_MOVED_FROM
439 event for
440 .IR dir1 ,
441 an
442 .B IN_MOVED_TO
443 event for
444 .IR dir2 ,
445 and an
446 .B IN_MOVE_SELF
447 event for
448 .IR myfile .
449 The
450 .B IN_MOVED_FROM
451 and
452 .B IN_MOVED_TO
453 events will have the same
454 .I cookie
455 value.
456 .RE
457 .PP
458 Suppose that
459 .IR dir1/xx
460 and
461 .IR dir2/yy
462 are (the only) links to the same file, and an application is watching
463 .IR dir1 ,
464 .IR dir2 ,
465 .IR dir1/xx ,
466 and
467 .IR dir2/yy .
468 Executing the following calls in the order given below will generate
469 the following events:
470 .RS 4
471 .TP
472 unlink("dir2/yy");
473 Generates an
474 .BR IN_ATTRIB
475 event for
476 .IR xx
477 (because its link count changes)
478 and an
479 .B IN_DELETE
480 event for
481 .IR dir2 .
482 .TP
483 unlink("dir1/xx");
484 Generates
485 .BR IN_ATTRIB ,
486 .BR IN_DELETE_SELF ,
487 and
488 .BR IN_IGNORED
489 events for
490 .IR xx ,
491 and an
492 .BR IN_DELETE
493 event for
494 .IR dir1 .
495 .RE
496 .PP
497 Suppose an application is watching the directory
498 .IR dir
499 and (the empty) directory
500 .IR dir/subdir .
501 The following examples show some events that may be generated.
502 .RS 4
503 .TP
504 mkdir("dir/new", mode);
505 Generates an
506 .B "IN_CREATE | IN_ISDIR"
507 event for
508 .IR dir .
509 .TP
510 rmdir("dir/subdir");
511 Generates
512 .B IN_DELETE_SELF
513 and
514 .B IN_IGNORED
515 events for
516 .IR subdir ,
517 and an
518 .B "IN_DELETE | IN_ISDIR"
519 event for
520 .IR dir .
521 .RE
522 .SS /proc interfaces
523 The following interfaces can be used to limit the amount of
524 kernel memory consumed by inotify:
525 .TP
526 .I /proc/sys/fs/inotify/max_queued_events
527 The value in this file is used when an application calls
528 .BR inotify_init (2)
529 to set an upper limit on the number of events that can be
530 queued to the corresponding inotify instance.
531 Events in excess of this limit are dropped, but an
532 .B IN_Q_OVERFLOW
533 event is always generated.
534 .TP
535 .I /proc/sys/fs/inotify/max_user_instances
536 This specifies an upper limit on the number of inotify instances
537 that can be created per real user ID.
538 .TP
539 .I /proc/sys/fs/inotify/max_user_watches
540 This specifies an upper limit on the number of watches
541 that can be created per real user ID.
542 .SH VERSIONS
543 Inotify was merged into the 2.6.13 Linux kernel.
544 The required library interfaces were added to glibc in version 2.4.
545 .RB ( IN_DONT_FOLLOW ,
546 .BR IN_MASK_ADD ,
547 and
548 .B IN_ONLYDIR
549 were added in glibc version 2.5.)
550 .SH CONFORMING TO
551 The inotify API is Linux-specific.
552 .SH NOTES
553 Inotify file descriptors can be monitored using
554 .BR select (2),
555 .BR poll (2),
556 and
557 .BR epoll (7).
558 When an event is available, the file descriptor indicates as readable.
559
560 Since Linux 2.6.25,
561 signal-driven I/O notification is available for inotify file descriptors;
562 see the discussion of
563 .B F_SETFL
564 (for setting the
565 .B O_ASYNC
566 flag),
567 .BR F_SETOWN ,
568 and
569 .B F_SETSIG
570 in
571 .BR fcntl (2).
572 The
573 .I siginfo_t
574 structure (described in
575 .BR sigaction (2))
576 that is passed to the signal handler has the following fields set:
577 .IR si_fd
578 is set to the inotify file descriptor number;
579 .IR si_signo
580 is set to the signal number;
581 .IR si_code
582 is set to
583 .BR POLL_IN ;
584 and
585 .B POLLIN
586 is set in
587 .IR si_band .
588
589 If successive output inotify events produced on the
590 inotify file descriptor are identical (same
591 .IR wd ,
592 .IR mask ,
593 .IR cookie ,
594 and
595 .IR name ),
596 then they are coalesced into a single event if the
597 older event has not yet been read (but see BUGS).
598 This reduces the amount of kernel memory required for the event queue,
599 but also means that an application can't use inotify to reliably count
600 file events.
601
602 The events returned by reading from an inotify file descriptor
603 form an ordered queue.
604 Thus, for example, it is guaranteed that when renaming from
605 one directory to another, events will be produced in the
606 correct order on the inotify file descriptor.
607
608 The
609 .B FIONREAD
610 .BR ioctl (2)
611 returns the number of bytes available to read from an
612 inotify file descriptor.
613 .SS Limitations and caveats
614 The inotify API provides no information about the user or process that
615 triggered the inotify event.
616 In particular, there is no easy
617 way for a process that is monitoring events via inotify
618 to distinguish events that it triggers
619 itself from those that are triggered by other processes.
620
621 Inotify reports only events that a user-space program triggers through
622 the filesystem API.
623 As a result, it does not catch remote events that occur
624 on network filesystems.
625 (Applications must fall back to polling the filesystem
626 to catch such events.)
627 Furthermore, various pseudo-filesystems such as
628 .IR /proc ,
629 .IR /sys ,
630 and
631 .IR /dev/pts
632 are not monitorable with inotify.
633
634 The inotify API does not report file accesses and modifications that
635 may occur because of
636 .BR mmap (2),
637 .BR msync (2),
638 and
639 .BR munmap (2).
640
641 The inotify API identifies affected files by filename.
642 However, by the time an application processes an inotify event,
643 the filename may already have been deleted or renamed.
644
645 The inotify API identifies events via watch descriptors.
646 It is the application's responsibility to cache a mapping
647 (if one is needed) between watch descriptors and pathnames.
648 Be aware that directory renamings may affect multiple cached pathnames.
649
650 Inotify monitoring of directories is not recursive:
651 to monitor subdirectories under a directory,
652 additional watches must be created.
653 This can take a significant amount time for large directory trees.
654
655 If monitoring an entire directory subtree,
656 and a new subdirectory is created in that tree or an existing directory
657 is renamed into that tree,
658 be aware that by the time you create a watch for the new subdirectory,
659 new files (and subdirectories) may already exist inside the subdirectory.
660 Therefore, you may want to scan the contents of the subdirectory
661 immediately after adding the watch (and, if desired,
662 recursively add watches for any subdirectories that it contains).
663
664 Note that the event queue can overflow.
665 In this case, events are lost.
666 Robust applications should handle the possibility of
667 lost events gracefully.
668 For example, it may be necessary to rebuild part or all of
669 the application cache.
670 (One simple, but possibly expensive,
671 approach is to close the inotify file descriptor, empty the cache,
672 create a new inotify file descriptor,
673 and then re-create watches and cache entries
674 for the objects to be monitored.)
675 .SS Dealing with rename() events
676 As noted above, the
677 .B IN_MOVED_FROM
678 and
679 .B IN_MOVED_TO
680 event pair that is generated by
681 .BR rename (2)
682 can be matched up via their shared cookie value.
683 However, the task of matching has some challenges.
684
685 These two events are usually consecutive in the event stream available
686 when reading from the inotify file descriptor.
687 However, this is not guaranteed.
688 If multiple processes are triggering events for monitored objects,
689 then (on rare occasions) an arbitrary number of
690 other events may appear between the
691 .B IN_MOVED_FROM
692 and
693 .B IN_MOVED_TO
694 events.
695
696 Matching up the
697 .B IN_MOVED_FROM
698 and
699 .B IN_MOVED_TO
700 event pair generated by
701 .BR rename (2)
702 is thus inherently racy.
703 (Don't forget that if an object is renamed outside of a monitored directory,
704 there may not even be an
705 .BR IN_MOVED_TO
706 event.)
707 Heuristic approaches (e.g., assume the events are always consecutive)
708 can be used to ensure a match in most cases,
709 but will inevitably miss some cases,
710 causing the application to perceive the
711 .B IN_MOVED_FROM
712 and
713 .B IN_MOVED_TO
714 events as being unrelated.
715 If watch descriptors are destroyed and re-created as a result,
716 then those watch descriptors will be inconsistent with
717 the watch descriptors in any pending events.
718 (Re-creating the inotify file descriptor and rebuilding the cache may
719 be useful to deal with this scenario.)
720
721 Applications should also allow for the possibility that the
722 .B IN_MOVED_FROM
723 event was the last event that could fit in the buffer
724 returned by the current call to
725 .BR read (2),
726 and the accompanying
727 .B IN_MOVED_TO
728 event might be fetched only on the next
729 .BR read (2).
730 .SH BUGS
731 .\" FIXME kernel commit 611da04f7a31b2208e838be55a42c7a1310ae321
732 .\" implies that unmount events were buggy 2.6.11 to 2.6.36
733 .\"
734 In kernels before 2.6.16, the
735 .B IN_ONESHOT
736 .I mask
737 flag does not work.
738
739 As originally designed and implemented, the
740 .B IN_ONESHOT
741 flag did not cause an
742 .B IN_IGNORED
743 event to be generated when the watch was dropped after one event.
744 However, as an unintended effect of other changes,
745 since Linux 2.6.36, an
746 .B IN_IGNORED
747 event is generated in this case.
748
749 Before kernel 2.6.25,
750 .\" commit 1c17d18e3775485bf1e0ce79575eb637a94494a2
751 the kernel code that was intended to coalesce successive identical events
752 (i.e., the two most recent events could potentially be coalesced
753 if the older had not yet been read)
754 instead checked if the most recent event could be coalesced with the
755 .I oldest
756 unread event.
757 .SH EXAMPLE
758 The following program demonstrates the usage of the inotify API.
759 It marks the directories passed as a command-line arguments
760 and waits for events of type
761 .BR IN_OPEN ,
762 .BR IN_CLOSE_NOWRITE
763 and
764 .BR IN_CLOSE_WRITE .
765 .PP
766 The following output was recorded while editing the file
767 .I /home/user/temp/foo
768 and listing directory
769 .IR /tmp .
770 Before the file and the directory were opened,
771 .B IN_OPEN
772 events occurred.
773 After the file was closed, an
774 .B IN_CLOSE_WRITE
775 event occurred.
776 After the directory was closed, an
777 .B IN_CLOSE_NOWRITE
778 event occurred.
779 Execution of the program ended when the user pressed the ENTER key.
780 .SS Example output
781 .in +4n
782 .nf
783 $ \fB./a.out /tmp /home/user/temp\fP
784 Press enter key to terminate.
785 Listening for events.
786 IN_OPEN: /home/user/temp/foo [file]
787 IN_CLOSE_WRITE: /home/user/temp/foo [file]
788 IN_OPEN: /tmp/ [directory]
789 IN_CLOSE_NOWRITE: /tmp/ [directory]
790
791 Listening for events stopped.
792 .fi
793 .in
794 .SS Program source
795 .nf
796 #include <errno.h>
797 #include <poll.h>
798 #include <stdio.h>
799 #include <stdlib.h>
800 #include <sys/inotify.h>
801 #include <unistd.h>
802
803 /* Read all available inotify events from the file descriptor 'fd'.
804    wd is the table of watch descriptors for the directories in argv.
805    argc is the length of wd and argv.
806    argv is the list of watched directories.
807    Entry 0 of wd and argv is unused. */
808
809 static void
810 handle_events(int fd, int *wd, int argc, char* argv[])
811 {
812     /* Some systems cannot read integer variables if they are not
813        properly aligned. On other systems, incorrect alignment may
814        decrease performance. Hence, the buffer used for reading from
815        the inotify file descriptor should have the same alignment as
816        struct inotify_event. */
817
818     char buf[4096]
819         __attribute__ ((aligned(__alignof__(struct inotify_event))));
820     const struct inotify_event *event;
821     int i;
822     ssize_t len;
823     char *ptr;
824
825     /* Loop while events can be read from inotify file descriptor. */
826
827     for (;;) {
828
829         /* Read some events. */
830
831         len = read(fd, buf, sizeof buf);
832         if (len == \-1 && errno != EAGAIN) {
833             perror("read");
834             exit(EXIT_FAILURE);
835         }
836
837         /* If the nonblocking read() found no events to read, then
838            it returns \-1 with errno set to EAGAIN. In that case,
839            we exit the loop. */
840
841         if (len <= 0)
842             break;
843
844         /* Loop over all events in the buffer */
845
846         for (ptr = buf; ptr < buf + len;
847                 ptr += sizeof(struct inotify_event) + event\->len) {
848
849             event = (const struct inotify_event *) ptr;
850
851             /* Print event type */
852
853             if (event\->mask & IN_OPEN)
854                 printf("IN_OPEN: ");
855             if (event\->mask & IN_CLOSE_NOWRITE)
856                 printf("IN_CLOSE_NOWRITE: ");
857             if (event\->mask & IN_CLOSE_WRITE)
858                 printf("IN_CLOSE_WRITE: ");
859
860             /* Print the name of the watched directory */
861
862             for (i = 1; i < argc; ++i) {
863                 if (wd[i] == event\->wd) {
864                     printf("%s/", argv[i]);
865                     break;
866                 }
867             }
868
869             /* Print the name of the file */
870
871             if (event\->len)
872                 printf("%s", event\->name);
873
874             /* Print type of filesystem object */
875
876             if (event\->mask & IN_ISDIR)
877                 printf(" [directory]\\n");
878             else
879                 printf(" [file]\\n");
880         }
881     }
882 }
883
884 int
885 main(int argc, char* argv[])
886 {
887     char buf;
888     int fd, i, poll_num;
889     int *wd;
890     nfds_t nfds;
891     struct pollfd fds[2];
892
893     if (argc < 2) {
894         printf("Usage: %s PATH [PATH ...]\\n", argv[0]);
895         exit(EXIT_FAILURE);
896     }
897
898     printf("Press ENTER key to terminate.\\n");
899
900     /* Create the file descriptor for accessing the inotify API */
901
902     fd = inotify_init1(IN_NONBLOCK);
903     if (fd == \-1) {
904         perror("inotify_init1");
905         exit(EXIT_FAILURE);
906     }
907
908     /* Allocate memory for watch descriptors */
909
910     wd = calloc(argc, sizeof(int));
911     if (wd == NULL) {
912         perror("calloc");
913         exit(EXIT_FAILURE);
914     }
915
916     /* Mark directories for events
917        \- file was opened
918        \- file was closed */
919
920     for (i = 1; i < argc; i++) {
921         wd[i] = inotify_add_watch(fd, argv[i],
922                                   IN_OPEN | IN_CLOSE);
923         if (wd[i] == \-1) {
924             fprintf(stderr, "Cannot watch '%s'\\n", argv[i]);
925             perror("inotify_add_watch");
926             exit(EXIT_FAILURE);
927         }
928     }
929
930     /* Prepare for polling */
931
932     nfds = 2;
933
934     /* Console input */
935
936     fds[0].fd = STDIN_FILENO;
937     fds[0].events = POLLIN;
938
939     /* Inotify input */
940
941     fds[1].fd = fd;
942     fds[1].events = POLLIN;
943
944     /* Wait for events and/or terminal input */
945
946     printf("Listening for events.\\n");
947     while (1) {
948         poll_num = poll(fds, nfds, \-1);
949         if (poll_num == \-1) {
950             if (errno == EINTR)
951                 continue;
952             perror("poll");
953             exit(EXIT_FAILURE);
954         }
955
956         if (poll_num > 0) {
957
958             if (fds[0].revents & POLLIN) {
959
960                 /* Console input is available. Empty stdin and quit */
961
962                 while (read(STDIN_FILENO, &buf, 1) > 0 && buf != '\\n')
963                     continue;
964                 break;
965             }
966
967             if (fds[1].revents & POLLIN) {
968
969                 /* Inotify events are available */
970
971                 handle_events(fd, wd, argc, argv);
972             }
973         }
974     }
975
976     printf("Listening for events stopped.\\n");
977
978     /* Close inotify file descriptor */
979
980     close(fd);
981
982     free(wd);
983     exit(EXIT_SUCCESS);
984 }
985 .fi
986 .SH SEE ALSO
987 .BR inotifywait (1),
988 .BR inotifywatch (1),
989 .BR inotify_add_watch (2),
990 .BR inotify_init (2),
991 .BR inotify_init1 (2),
992 .BR inotify_rm_watch (2),
993 .BR read (2),
994 .BR stat (2),
995 .BR fanotify (7)
996
997 .IR Documentation/filesystems/inotify.txt
998 in the Linux kernel source tree
999 .SH COLOPHON
1000 This page is part of release 3.68 of the Linux
1001 .I man-pages
1002 project.
1003 A description of the project,
1004 information about reporting bugs,
1005 and the latest version of this page,
1006 can be found at
1007 \%http://www.kernel.org/doc/man\-pages/.