IPB
>  Man Pages > Linux > Suse Linux 10.1 > Section 7 > inotify man page

inotify man page

Section 7 - Suse Linux 10.1 Man Pages

Other operating system man pages available here


Advanced Search

Hopefully, this page is exactly what you are looking for, but if not, you can always find further assistance on Unix/Linux Forum!


INOTIFY(7)                 Linux Programmer's Manual                INOTIFY(7)




NAME

       inotify - monitoring file system events


DESCRIPTION

       The inotify API provides a mechanism for monitoring file system events.
       Inotify can be used to monitor individual files, or to monitor directo-
       ries.   When  a  directory is monitored, inotify will return events for
       the directory itself, and for files inside the directory.

       The following system calls are used with this API: inotify_init(), inoβ€β€
       tify_add_watch(), read(), inotify_rm_watch(), and close().

       inotify_init(2) creates an inotify instance and returns a file descrip-
       tor referring to the inotify object.

       inotify_add_watch(2) manipulates the "watch list"  associated  with  an
       inotify  object.   Each  item ("watch") in the watch list specifies the
       pathname of a file or directory, along with some set of events that the
       kernel  should monitor for the file referred to by that pathname.  inoβ€β€
       tify_add_watch() either creates a new watch item, or modifies an exist-
       ing  watch.   Each  watch  has  a unique "watch descriptor", an integer
       returned by inotify_add_watch() when the watch is created.

       inotify_rm_watch(2) removes an item from an inotify watch list.

       When all file descriptors referring to  an  inotify  object  have  been
       closed, the underlying object and its resources are freed for re-use by
       the kernel; all associated watches are automatically freed.

       To determine what events have occurred, an  application  read(2)s  from
       the  inotify file descriptor.  If no events have so far occurred, then,
       assuming a blocking file descriptor, read() will block until  at  least
       one event occurs.

       Each  successful  read() returns a buffer containing one or more of the
       following structures:

         struct inotify_event {
             int      wd;       /* Watch descriptor */
             uint32_t mask;     /* Mask of events */
             uint32_t cookie;   /* Unique cookie associating related
                                   events (for rename(2)) */
             uint32_t len;      /* Size of 'name' field */
             char     name[];   /* Optional null-terminated name */
         };

       wd identifies the watch for which this event occurs.  It is one of  the
       watch descriptors returned by a previous call to inotify_add_watch().

       mask contains bits that describe the event that occurred (see below).

       cookie  is  a  unique  integer that connects related events.  Currently
       this is only used for rename events, and allows the resulting  pair  of
       IN_MOVE_FROM  and IN_MOVE_TO events to be connected by the application.

       The name field is only present when an event is  returned  for  a  file
       inside a watched directory; it identifies the file pathname relative to
       the watched directory.   This  pathname  is  null-terminated,  and  may
       include  further  null  bytes  to  align subsequent reads to a suitable
       address boundary.

       The len field counts all of the  bytes  in  name,  including  the  null
       bytes;  the  length of each inotify_event structure is thus sizeof(ino‐
       tify_event)+len.

   inotify events
       The inotify_add_watch(2) mask argument and the mask field of  the  ino‐
       tify_event  structure returned when read(2)ing an inotify file descrip-
       tor are both bit masks identifying inotify events.  The following  bits
       can  be  specified  in mask when calling inotify_add_watch() and may be
       returned in the mask field returned by read():

         Bit                Description
         IN_ACCESS          File was accessed (read) (*)
         IN_ATTRIB          Metadata changed (permissions, timestamps,
                            extended attributes, etc.) (*)
         IN_CLOSE_WRITE     File opened for writing was closed (*)
         IN_CLOSE_NOWRITE   File not opened for writing was closed (*)
         IN_CREATE          File/directory created in watched directory (*)
         IN_DELETE          File/directory deleted from watched directory (*)
         IN_DELETE_SELF     Watched file/directory was itself deleted
         IN_MODIFY          File was modified (*)
         IN_MOVE_SELF       Watched file/directory was itself moved
         IN_MOVED_FROM      File moved out of watched directory (*)
         IN_MOVED_TO        File moved into watched directory (*)
         IN_OPEN            File was opened (*)

       When monitoring a directory, the events marked  with  an  asterisk  (*)
       above  can  occur  for  files  in the directory, in which case the name
       field in the returned inotify_event structure identifies  the  name  of
       the file within the directory.

       The  IN_ALL_EVENTS  macro  is defined as a bit mask of all of the above
       events.  This macro can be used as the mask argument when calling  inoβ€β€
       tify_add_watch().

       Two  additional  convenience  macros  are  IN_MOVE,  which  equates  to
       IN_MOVED_FROM|IN_MOVED_TO,    and    IN_CLOSE    which    equates    to
       IN_CLOSE_WRITE|IN_CLOSE_NOWRITE.

       The  following  further bits can be specified in mask when calling inoβ€β€
       tify_add_watch():

         Bit              Description
         IN_DONT_FOLLOW   Don't dereference path if it is a symbolic link
         IN_MASK_ADD      Add (OR) events to watch mask for this path if
                          it already exists (instead of replacing mask)
         IN_ONESHOT       Monitor path for one event, then remove from
                          watch list
         IN_ONLYDIR       Only watch path if it is a directory

       The following bits may be set in the mask field returned by read():

         Bit             Description
         IN_IGNORED      Watch was removed explicitly (inotify_rm_watch())
                         or automatically (file was deleted, or
                         file system was unmounted)
         IN_ISDIR        Subject of this event is a directory
         IN_Q_OVERFLOW   Event queue overflowed (wd is -1 for this event)
         IN_UNMOUNT      File system containing watched object was unmounted

   /proc interfaces
       The following interfaces can be used to limit the amount of kernel mem-
       ory consumed by inotify:

       /proc/sys/fs/inotify/max_queued_events
              The  value  in  this file is used when an application calls inoβ€β€
              tify_init(2) to set an upper limit on the number of events  that
              can  be queued to the corresponding inotify instance.  Events in
              excess of this limit are dropped, but an IN_Q_OVERFLOW event  is
              always generated.

       /proc/sys/fs/inotify/max_user_instances
              This specifies an upper limit on the number of inotify instances
              that can be created per real user ID.

       /proc/sys/fs/inotify/max_user_watches
              This specifies a limit on the number  of  watches  that  can  be
              associated with each inotify instance.


NOTES

       Inotify file descriptors can be monitored using select(2), poll(2), and
       epoll(4).

       If successive output  inotify  events  produced  on  the  inotify  file
       descriptor  are  identical  (same wd, mask, cookie, and name) then they
       are coalesced into a single event.

       The events returned by reading from an inotify file descriptor form  an
       ordered  queue.  Thus, for example, it is guaranteed that when renaming
       from one directory to another, events will be produced in  the  correct
       order on the inotify file descriptor.

       The FIONREAD ioctl() returns the number of bytes available to read from
       an inotify file descriptor.

       Inotify monitoring of directories is not recursive: to  monitor  subdi-
       rectories under a directory, additional watches must be created.


VERSIONS

       Inotify  was merged into the 2.6.13 Linux kernel.  The required library
       interfaces were added to glibc in version 2.4.


CONFORMING TO

       The inotify API is Linux specific.  Some other systems provide  similar
       mechanisms, e.g., FreeBSD has kqueue, and Solaris has /dev/poll.


SEE ALSO

       inotify_add_watch(2),  inotify_init(2),  inotify_rm_watch(2),  read(2),
       stat(2), Documentation/filesystems/inotify.txt.



Linux 2.6.15                      2006-02-07                        INOTIFY(7)


Man(1) output converted with man2html and wrapped by fishsponge

This page was generated on Tue Feb 13 02:22:28 GMT 2007

Your favourite pages:

No pages logged yet.
Trying to save cookie...

Top 10 most popular pages:

svn man page (5499 hits)
(FreeBSD 6.2)

sqlite3 man page (5423 hits)
(openSUSE 10.2)

adv_cap_autoneg man page (4921 hits)
(Solaris 10 11_06)

CPAN man page (4660 hits)
(Suse Linux 10.1)

ssh man page (4365 hits)
(Suse Linux 10.1)

ssh-socks5-proxy-connect man page (3081 hits)
(Solaris 10 11_06)

netcat man page (2906 hits)
(Suse Linux 10.1)

signal man page (2757 hits)
(Suse Linux 10.1)

pprosetup man page (2549 hits)
(Solaris 10 11_06)

startproc man page (2549 hits)
(Suse Linux 10.1)

Useful Links

Go Back

Visitor Statistics


Valid XHTML 1.0 Transitional     Valid CSS!

Partners: Cambridge Plus :: Pyrenees Mountain Holidays Contact Us :: Circuit Design, Bedfordshire :: <Link Available>
Unix Man Pages / Linux Man Pages :: HiFi Forum :: SIP VoIP Phone & Provider Reviews :: UNIX/Linux Forum Archives

More info on advertising on Unix/Linux Forum