Changeset 373


Ignore:
Timestamp:
Nov 1, 2011, 9:29:51 PM (13 years ago)
Author:
katerina
Message:

Patch for ticket #265 (inotify). Handling of added subdirectories and file list rescan.

Location:
trunk
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r371 r373  
    1212dnl start
    1313dnl
    14 AM_INIT_AUTOMAKE(samhain, 2.8.99)
     14AM_INIT_AUTOMAKE(samhain, 3.0.0)
    1515AC_DEFINE([SAMHAIN], 1, [Application is samhain])
    1616AC_CANONICAL_HOST
  • trunk/docs/Changelog

    r367 r373  
    113.0.0:
     2        * Add support for the inotify API
    23        * Fix missing check_mask storage for glob pattern
    34        * Add support for integer keys in zAVL
  • trunk/include/samhain.h

    r367 r373  
    205205#define SH_INOTIFY_DOSCAN   (1<<1)
    206206#define SH_INOTIFY_NEEDINIT (1<<2)
     207#define SH_INOTIFY_INSCAN   (1<<3)
    207208
    208209
  • trunk/include/sh_files.h

    r371 r373  
    2121#define SH_FILES_H
    2222
    23 void sh_audit_mark (char * file);
     23void sh_audit_mark (const char * file);
    2424void sh_audit_delete_all ();
    2525char * sh_audit_fetch (char * file, time_t time, char * result, size_t rsize);
     
    226226
    227227ShFileType sh_files_filecheck (int class, unsigned long check_mask,
    228                                char * dirName,
    229                                char * infileName,
     228                               const char * dirName,
     229                               const char * infileName,
    230230                               int * reported,
    231231                               int rsrcflag);
    232232
    233 int sh_files_search_file(char * name, int * class, unsigned long *check_mask, int * reported);
    234 void sh_files_set_file_reported(char * name);
    235 void sh_files_clear_file_reported(char * name);
     233int sh_files_checkdir (int iclass, unsigned long check_mask,
     234                       int idepth, char * iname,
     235                       char * relativeName);
     236
     237int sh_files_search_file(char * name, int * class,
     238                         unsigned long *check_mask, int * reported);
     239int sh_files_search_dir(char * name, int * class,
     240                        unsigned long *check_mask, int *reported,
     241                        int * rdepth);
     242void sh_files_set_file_reported(const char * name);
     243void sh_files_clear_file_reported(const char * name);
    236244
    237245#endif
  • trunk/include/sh_inotify.h

    r372 r373  
    3232
    3333int sh_inotify_add_watch(char * filename, sh_watches * watches, int  * errnum,
    34                          int class, unsigned long check_mask, int type);
     34                         int class, unsigned long check_mask, int type, int rdepth);
    3535
    36 int sh_inotify_add_watch_later(char * filename, sh_watches * watches, int  * errnum,
    37                                int class, unsigned long check_mask, int type);
     36int sh_inotify_add_watch_later(const char * filename, sh_watches * watches,
     37                               int  * errnum,
     38                               int class, unsigned long check_mask,
     39                               int type, int rdepth);
    3840
    39 char * sh_inotify_pop_dormant(sh_watches * watches, int * class, unsigned long * check_mask, int * type);
     41char * sh_inotify_pop_dormant(sh_watches * watches, int * class,
     42                              unsigned long * check_mask, int * type, int * rdepth);
    4043
    4144void sh_inotify_purge_dormant(sh_watches * watches);
     
    4447
    4548char * sh_inotify_search_item(sh_watches * watches, int watch,
    46                               int * class, unsigned long * check_mask, int * type);
     49                              int * class, unsigned long * check_mask,
     50                              int * type, int * rdepth);
    4751ssize_t sh_inotify_read(char * buffer, size_t count);
    4852ssize_t sh_inotify_read_timeout(char * buffer, size_t count, int timeout);
  • trunk/include/sh_unix.h

    r294 r373  
    307307/* obtain file info
    308308 */
    309 int sh_unix_getinfo (int level, char * filename, file_type * theFile,
     309int sh_unix_getinfo (int level, const char * filename, file_type * theFile,
    310310                     char * fileHash, int flagrel);
    311311
  • trunk/include/sh_utils.h

    r355 r373  
    187187/* check for obscure filenames
    188188 */
    189 int sh_util_obscurename (ShErrLevel level, char * name, int flag);
     189int sh_util_obscurename (ShErrLevel level, const char * name, int flag);
    190190
    191191/* returns freshly allocated memory, return value should be free'd
  • trunk/src/samhain.c

    r367 r373  
    20012001          (flag_check_1 == 1 || flag_check_2 == 1))
    20022002        {
     2003          sh.flag.inotify |= SH_INOTIFY_INSCAN;
    20032004          /* Refresh list files matching glob patterns.
    20042005           */
     
    20622063          flag_check_2 = 0;
    20632064          check_done   = 1;
     2065          sh.flag.inotify &= ~SH_INOTIFY_INSCAN;
    20642066          sh.flag.inotify &= ~SH_INOTIFY_DOSCAN;
    20652067
  • trunk/src/sh_audit.c

    r295 r373  
    224224}
    225225
    226 void sh_audit_mark (char * file)
     226void sh_audit_mark (const char * file)
    227227{
    228228  static int flushRules = 0;
     
    372372  return 0;
    373373}
    374 void sh_audit_mark (char * file)
     374void sh_audit_mark (const char * file)
    375375{
    376376  (void) file;
  • trunk/src/sh_fInotify.c

    r372 r373  
    4242sh_watches sh_file_watches = SH_INOTIFY_INITIALIZER;
    4343
     44#if defined(HAVE_SYS_INOTIFY_H)
     45
    4446static sh_watches sh_file_missing = SH_INOTIFY_INITIALIZER;
    45 
    46 #if defined(HAVE_SYS_INOTIFY_H)
    4747
    4848#include <sys/inotify.h>
     
    111111static int sh_fInotify_process(struct inotify_event * event);
    112112static int sh_fInotify_report(struct inotify_event * event, char * filename,
    113                               int class, unsigned long check_mask, int ftype);
     113                              int class, unsigned long check_mask, int ftype, int rdepth);
    114114
    115115int sh_fInotify_init(struct mod_type * arg)
     
    205205           return SH_MOD_FAILED;
    206206        }
    207  
    208     }
     207     }
    209208
    210209  /* Re-scan 'dormant' list of sh_file_missing.
     
    218217    {
    219218      count = 0; /* Re-expand glob patterns to discover added files. */
     219      sh.flag.inotify |= SH_INOTIFY_INSCAN;
    220220      sh_files_check_globFilePatterns();
     221      sh.flag.inotify &= ~SH_INOTIFY_INSCAN;
     222      sh.flag.inotify |= SH_INOTIFY_NEEDINIT;
    221223    }
    222224
     
    224226    {
    225227      count2 = 0; /* Update baseline database. */
    226       if (sh.flag.checkSum == SH_CHECK_CHECK &&
    227           sh.flag.update == S_TRUE)
     228      if (sh.flag.checkSum == SH_CHECK_CHECK && sh.flag.update == S_TRUE)
    228229        sh_hash_writeout ();
    229230    }
     
    314315  int    class;
    315316  int    type;
     317  int    rdepth;
    316318  unsigned long check_mask;
    317319  int    retval;
     
    334336
    335337  while (NULL != (filename = sh_inotify_pop_dormant(&sh_file_watches,
    336                                                     &class, &check_mask, &type)))
     338                                                    &class, &check_mask,
     339                                                    &type, &rdepth)))
    337340    {
    338341      retval = sh_inotify_add_watch(filename, &sh_file_watches, &errnum,
    339                                     class, check_mask, type);
     342                                    class, check_mask, type, rdepth);
    340343
    341344      if (retval < 0)
     
    375378}
    376379
     380static void sh_fInotify_logmask(struct inotify_event * event)
     381{
     382  char dbgbuf[256];
     383 
     384  sl_strlcpy (dbgbuf, "inotify mask: ", sizeof(dbgbuf));
     385 
     386  if (event->mask & IN_ACCESS) sl_strlcat(dbgbuf, "IN_ACCESS ", sizeof(dbgbuf));
     387  if (event->mask & IN_ATTRIB) sl_strlcat(dbgbuf, "IN_ATTRIB ", sizeof(dbgbuf));
     388  if (event->mask & IN_CLOSE_WRITE) sl_strlcat(dbgbuf, "IN_CLOSE_WRITE ", sizeof(dbgbuf));
     389  if (event->mask & IN_CLOSE_NOWRITE) sl_strlcat(dbgbuf, "IN_CLOSE_NOWRITE ", sizeof(dbgbuf));
     390  if (event->mask & IN_CREATE) sl_strlcat(dbgbuf, "IN_CREATE ", sizeof(dbgbuf));
     391  if (event->mask & IN_DELETE) sl_strlcat(dbgbuf, "IN_DELETE ", sizeof(dbgbuf));
     392  if (event->mask & IN_DELETE_SELF) sl_strlcat(dbgbuf, "IN_DELETE_SELF ", sizeof(dbgbuf));
     393  if (event->mask & IN_MODIFY) sl_strlcat(dbgbuf, "IN_MODIFY ", sizeof(dbgbuf));
     394  if (event->mask & IN_MOVE_SELF) sl_strlcat(dbgbuf, "IN_MOVE_SELF ", sizeof(dbgbuf));
     395  if (event->mask & IN_MOVED_FROM) sl_strlcat(dbgbuf, "IN_MOVED_FROM ", sizeof(dbgbuf));
     396  if (event->mask & IN_MOVED_TO) sl_strlcat(dbgbuf, "IN_MOVED_TO ", sizeof(dbgbuf));
     397  if (event->mask & IN_OPEN) sl_strlcat(dbgbuf, "IN_OPEN ", sizeof(dbgbuf));
     398  if (event->mask & IN_IGNORED) sl_strlcat(dbgbuf, "IN_IGNORED ", sizeof(dbgbuf));
     399  if (event->mask & IN_ISDIR) sl_strlcat(dbgbuf, "IN_ISDIR ", sizeof(dbgbuf));
     400  if (event->mask & IN_Q_OVERFLOW) sl_strlcat(dbgbuf, "IN_Q_OVERFLOW ", sizeof(dbgbuf));
     401  if (event->mask & IN_UNMOUNT) sl_strlcat(dbgbuf, "IN_UNMOUNT ", sizeof(dbgbuf));
     402 
     403  /* fprintf(stderr, "FIXME: %s\n", dbgbuf); */
     404 
     405  SH_MUTEX_LOCK(mutex_thread_nolog);
     406  sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
     407                  dbgbuf, _("sh_fInotify_process"));
     408  SH_MUTEX_UNLOCK(mutex_thread_nolog);
     409}
     410
    377411static int sh_fInotify_process(struct inotify_event * event)
    378412{
    379413  int class;
    380414  int ftype;
     415  int rdepth;
    381416  unsigned long check_mask;
    382417  char * filename;
     
    385420  if (flag_err_debug == SL_TRUE)
    386421    {
    387       char dbgbuf[256];
    388 
    389       sl_strlcpy (dbgbuf, "inotify mask: ", sizeof(dbgbuf));
    390 
    391       if (event->mask & IN_ACCESS) sl_strlcat(dbgbuf, "IN_ACCESS ", sizeof(dbgbuf));
    392       if (event->mask & IN_ATTRIB) sl_strlcat(dbgbuf, "IN_ATTRIB ", sizeof(dbgbuf));
    393       if (event->mask & IN_CLOSE_WRITE) sl_strlcat(dbgbuf, "IN_CLOSE_WRITE ", sizeof(dbgbuf));
    394       if (event->mask & IN_CLOSE_NOWRITE) sl_strlcat(dbgbuf, "IN_CLOSE_NOWRITE ", sizeof(dbgbuf));
    395       if (event->mask & IN_CREATE) sl_strlcat(dbgbuf, "IN_CREATE ", sizeof(dbgbuf));
    396       if (event->mask & IN_DELETE) sl_strlcat(dbgbuf, "IN_DELETE ", sizeof(dbgbuf));
    397       if (event->mask & IN_DELETE_SELF) sl_strlcat(dbgbuf, "IN_DELETE_SELF ", sizeof(dbgbuf));
    398       if (event->mask & IN_MODIFY) sl_strlcat(dbgbuf, "IN_MODIFY ", sizeof(dbgbuf));
    399       if (event->mask & IN_MOVE_SELF) sl_strlcat(dbgbuf, "IN_MOVE_SELF ", sizeof(dbgbuf));
    400       if (event->mask & IN_MOVED_FROM) sl_strlcat(dbgbuf, "IN_MOVED_FROM ", sizeof(dbgbuf));
    401       if (event->mask & IN_MOVED_TO) sl_strlcat(dbgbuf, "IN_MOVED_TO ", sizeof(dbgbuf));
    402       if (event->mask & IN_OPEN) sl_strlcat(dbgbuf, "IN_OPEN ", sizeof(dbgbuf));
    403       if (event->mask & IN_IGNORED) sl_strlcat(dbgbuf, "IN_IGNORED ", sizeof(dbgbuf));
    404       if (event->mask & IN_ISDIR) sl_strlcat(dbgbuf, "IN_ISDIR ", sizeof(dbgbuf));
    405       if (event->mask & IN_Q_OVERFLOW) sl_strlcat(dbgbuf, "IN_Q_OVERFLOW ", sizeof(dbgbuf));
    406       if (event->mask & IN_UNMOUNT) sl_strlcat(dbgbuf, "IN_UNMOUNT ", sizeof(dbgbuf));
    407 
    408       SH_MUTEX_LOCK(mutex_thread_nolog);
    409       sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
    410                       dbgbuf, _("sh_fInotify_process"));
    411       SH_MUTEX_UNLOCK(mutex_thread_nolog);
    412     }
    413 
     422      sh_fInotify_logmask(event);
     423    }
    414424
    415425  if (event->wd >= 0)
    416426    {
    417427      filename = sh_inotify_search_item(&sh_file_watches, event->wd,
    418                                         &class, &check_mask, &ftype);
     428                                        &class, &check_mask, &ftype, &rdepth);
    419429
    420430      if (filename)
    421431        {
    422           sh_fInotify_report(event, filename, class, check_mask, ftype);
    423 
     432          sh_fInotify_report(event, filename, class, check_mask, ftype, rdepth);
    424433          SH_FREE(filename);
    425434        }
     
    435444          SH_MUTEX_LOCK(mutex_thread_nolog);
    436445          sh_error_handle((-1), FIL__, __LINE__, event->wd, MSG_E_SUBGEN,
    437                           _("Watch removed: internal error - file path unknown"),
     446                          _("Watch removed: file path unknown"),
    438447                          _("sh_fInotify_process"));
    439448          SH_MUTEX_UNLOCK(mutex_thread_nolog);
     
    444453      sh.flag.inotify |= SH_INOTIFY_DOSCAN;
    445454      sh.flag.inotify |= SH_INOTIFY_NEEDINIT;
     455      SH_MUTEX_LOCK(mutex_thread_nolog);
     456      sh_error_handle(SH_ERR_WARN, FIL__, __LINE__, event->wd, MSG_E_SUBGEN,
     457                      _("Inotify queue overflow"),
     458                      _("sh_fInotify_process"));
     459      SH_MUTEX_UNLOCK(mutex_thread_nolog);
    446460      return 1;
    447461    }
     
    481495}
    482496
    483 static int sh_fInotify_report(struct inotify_event * event, char * filename,
    484                               int class, unsigned long check_mask, int ftype)
    485 {
    486   char * fullpath = NULL;
    487   char * path;
     497static int sh_fInotify_report_change (struct inotify_event * event,
     498                                      char * path, char * filename,
     499                                      int class, unsigned long check_mask, int ftype)
     500{
    488501  int    reported;
    489 
    490   if (event->len > 0)
    491     {
    492       fullpath = sh_util_strconcat(filename, "/", event->name, NULL);
    493       path = fullpath;
     502  int ret = sh_files_search_file(path, &class, &check_mask, &reported);
     503
     504  if ((ret == 0) && (event->len > 0) && (ftype == SH_INOTIFY_FILE))
     505    {
     506      ; /* do nothing, watch was for directory monitored as file only */
    494507    }
    495508  else
    496509    {
    497       path = filename;
    498     }
    499 
    500   if ( (event->mask & (IN_ATTRIB|IN_MODIFY)) != 0)
    501     {
    502       int ret = sh_files_search_file(path, &class, &check_mask, &reported);
    503 
     510      sh_files_filecheck (class, check_mask, filename,
     511                          (event->len > 0) ? event->name : NULL,
     512                          &reported, 0);
     513    }
     514  return 0;
     515}
     516
     517
     518static int sh_fInotify_report_missing (struct inotify_event * event,
     519                                       char * path,
     520                                       int class, unsigned long check_mask, int ftype)
     521{
     522  int    reported;
     523  int isdir = (event->mask & IN_ISDIR);
     524  int level = (class == SH_LEVEL_ALLIGNORE) ?
     525    ShDFLevel[class] :
     526    ShDFLevel[(isdir == 0) ? SH_ERR_T_FILE : SH_ERR_T_DIR];
     527
     528  if (S_FALSE == sh_ignore_chk_del(path))
     529    {
     530      if (0 != hashreport_missing(path, level))
     531        {
     532          int ret = sh_files_search_file(path, &class, &check_mask, &reported);
     533         
     534          if ((ret == 0) && (event->len > 0) && (ftype == SH_INOTIFY_FILE))
     535            {
     536              ; /* do nothing, watch was for directory monitored as file only */
     537            }
     538          else
     539            {
     540              /* Removal of a directory triggers:
     541               * (1) IN_DELETE IN_ISDIR
     542               * (2) IN_DELETE_SELF
     543               */
     544              if ((event->mask & IN_DELETE_SELF) == 0)
     545                sh_fInotify_report_miss(path, level);
     546            }
     547        }
     548    }
     549
     550#ifndef REPLACE_OLD
     551  sh_hash_set_visited_true(path);
     552#else
     553  sh_hash_set_missing(path);
     554#endif
     555  if (sh.flag.reportonce == S_TRUE)
     556    sh_files_set_file_reported(path);
     557
     558  /* Move to 'dormant' list, if not file within directory.
     559   */
     560  if (event->len == 0)
     561    sh_inotify_rm_watch(&sh_file_watches, &sh_file_missing, event->wd);
     562
     563  return 0;
     564}
     565
     566static int sh_fInotify_report_added (struct inotify_event * event,
     567                                     char * path, char * filename,
     568                                     int class, unsigned long check_mask,
     569                                     int ftype, int rdepth)
     570{
     571  if (S_FALSE == sh_ignore_chk_new(path))
     572    {
     573      int reported;
     574      int ret;
     575      int retD = 0;
     576      int rdepthD = rdepth;
     577     
     578      sh_files_clear_file_reported(path);
     579         
     580      ret = sh_files_search_file(path, &class, &check_mask, &reported);
     581     
    504582      if ((ret == 0) && (event->len > 0) && (ftype == SH_INOTIFY_FILE))
    505583        {
    506           ; /* do nothing */
     584          ; /* do nothing, watch was for directory monitored as file only */
    507585        }
    508586      else
    509587        {
     588          int classD = class;
     589          int reportedD = reported;
     590          unsigned long check_maskD = check_mask;
     591         
     592          if (event->mask & IN_ISDIR)
     593            {
     594              retD = sh_files_search_dir(path, &classD, &check_maskD,
     595                                         &reportedD, &rdepthD);
     596              if (retD != 0)
     597                {
     598                  if (ret == 0)
     599                    {
     600                      class      = classD;
     601                      check_mask = check_maskD;
     602                    }
     603                }
     604            }
     605         
    510606          sh_files_filecheck (class, check_mask, filename,
    511607                              (event->len > 0) ? event->name : NULL,
    512608                              &reported, 0);
    513         }
     609         
     610          if (event->mask & IN_ISDIR)
     611            {
     612              sh.flag.inotify |= SH_INOTIFY_INSCAN;
     613              sh_files_checkdir (classD, check_maskD, rdepthD,
     614                                 path, (event->len > 0) ? event->name : NULL);
     615              sh.flag.inotify &= ~SH_INOTIFY_INSCAN;
     616              sh.flag.inotify |= SH_INOTIFY_NEEDINIT;
     617              sh_dirs_reset  ();
     618              sh_files_reset ();
     619            }
     620         
     621        }
     622     
     623      if (SH_FFLAG_REPORTED_SET(reported))
     624        sh_files_set_file_reported(path);
     625     
     626      if ((ret != 0) || (event->mask & IN_ISDIR))
     627        {
     628          sh_inotify_add_watch(path, &sh_file_watches, &ret,
     629                               class, check_mask,
     630                               (event->mask & IN_ISDIR)?SH_INOTIFY_DIR:SH_INOTIFY_FILE,
     631                               rdepthD);
     632        }
     633    }
     634  return 0;
     635}
     636
     637static int sh_fInotify_report(struct inotify_event * event, char * filename,
     638                              int class, unsigned long check_mask, int ftype, int rdepth)
     639{
     640  char * fullpath = NULL;
     641  char * path;
     642
     643  if (event->len > 0)
     644    {
     645      fullpath = sh_util_strconcat(filename, "/", event->name, NULL);
     646      path = fullpath;
     647    }
     648  else
     649    {
     650      path = filename;
     651    }
     652
     653  if ( (event->mask & (IN_ATTRIB|IN_MODIFY)) != 0)
     654    {
     655      sh_fInotify_report_change (event, path, filename,
     656                                 class, check_mask, ftype);
    514657    }
    515658  else if ((event->mask & (IN_DELETE|IN_DELETE_SELF|IN_MOVE_SELF|IN_MOVED_FROM)) != 0)
    516659    {
    517       int isdir = (event->mask & IN_ISDIR);
    518       int level = (class == SH_LEVEL_ALLIGNORE) ?
    519         ShDFLevel[class] :
    520         ShDFLevel[(isdir == 0) ? SH_ERR_T_FILE : SH_ERR_T_DIR];
    521 
    522       if (S_FALSE == sh_ignore_chk_del(path))
    523         {
    524           if (0 != hashreport_missing(path, level))
    525             {
    526               int ret = sh_files_search_file(path, &class, &check_mask, &reported);
    527 
    528               if ((ret == 0) && (event->len > 0) && (ftype == SH_INOTIFY_FILE))
    529                 {
    530                   ; /* do nothing */
    531                 }
    532               else
    533                 {
    534                   sh_fInotify_report_miss(path, level);
    535                 }
    536             }
    537         }
    538 
    539 #ifndef REPLACE_OLD
    540       sh_hash_set_visited_true(path);
    541 #else
    542       sh_hash_set_missing(path);
     660      sh_fInotify_report_missing (event, path,
     661                                  class, check_mask, ftype);
     662   }
     663  else if((event->mask & (IN_CREATE|IN_MOVED_TO)) != 0)
     664    {
     665      sh_fInotify_report_added (event, path, filename,
     666                                class, check_mask,
     667                                ftype, rdepth);
     668    }
     669
     670  if (fullpath)
     671    SH_FREE(fullpath);
     672
     673  return 0;
     674}
     675
     676
    543677#endif
    544       if (sh.flag.reportonce == S_TRUE)
    545         sh_files_set_file_reported(path);
    546 
    547       /* Move to 'dormant' list, if not file within directory.
    548        */
    549       if (event->len == 0)
    550         sh_inotify_rm_watch(&sh_file_watches, &sh_file_missing, event->wd);
    551     }
    552   else if((event->mask & (IN_CREATE|IN_MOVED_TO)) != 0)
    553     {
    554       if (S_FALSE == sh_ignore_chk_new(path))
    555         {
    556           int ret;
    557 
    558           sh_files_clear_file_reported(path);
    559          
    560           ret = sh_files_search_file(path, &class, &check_mask, &reported);
    561          
    562           if ((ret == 0) && (event->len > 0) && (ftype == SH_INOTIFY_FILE))
    563             {
    564               ; /* do nothing */
    565             }
    566           else
    567             {
    568               sh_files_filecheck (class, check_mask, filename,
    569                                   (event->len > 0) ? event->name : NULL,
    570                                   &reported, 0);
    571             }
    572 
    573           if (SH_FFLAG_REPORTED_SET(reported))
    574             sh_files_set_file_reported(path);
    575 
    576           if (ret != 0)
    577             {
    578               sh_inotify_add_watch(path, &sh_file_watches, &ret,
    579                                    class, check_mask, SH_INOTIFY_FILE);
    580             }
    581         }
    582     }
    583 
    584   return 0;
    585 }
    586 
    587678
    588679#endif
    589 
    590 #endif
  • trunk/src/sh_files.c

    r372 r373  
    287287SH_MUTEX_STATIC(mutex_zfiles,      PTHREAD_MUTEX_INITIALIZER);
    288288SH_MUTEX_STATIC(mutex_zglob,       PTHREAD_MUTEX_INITIALIZER);
    289 
    290 static int        sh_files_fullpath  (char * testdir, char * d_name,
     289SH_MUTEX_RECURSIVE(mutex_zdirs);
     290
     291static int        sh_files_fullpath  (const char * testdir,
     292                                      const char * d_name,
    291293                                      char * statpath);
    292294static int        sh_files_pushdir   (int class, const char * str_s);
    293295static int        sh_files_pushfile  (int class, const char * str_s);
    294 static int        sh_files_checkdir  (int class, unsigned long check_mask,
    295                                       int rdepth, char * dirName,
    296                                       char * relativeName);
    297296
    298297static long MaxRecursionLevel = 0;
     
    367366            }
    368367
    369           if ((sh.flag.inotify & SH_INOTIFY_DOSCAN) != 0)
     368          if ((sh.flag.inotify & SH_INOTIFY_INSCAN) != 0)
    370369            {
    371370              sh_inotify_add_watch_later(ptr->name, &sh_file_watches, NULL,
    372                                          ptr->class, ptr->check_mask, SH_INOTIFY_FILE);
     371                                         ptr->class, ptr->check_mask,
     372                                         SH_INOTIFY_FILE, 0);
    373373            }
    374374
     
    540540int sh_files_setrec ()
    541541{
     542  volatile int ret;
     543  SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     544  SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
    542545  sh_files_setrec_int(zdirListOne);
    543   return sh_files_setrec_int(zdirListTwo);
     546  ret = sh_files_setrec_int(zdirListTwo);
     547  SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
     548
     549  return ret;
    544550}
    545551
     
    555561int sh_files_deldirstack ()
    556562{
     563  SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     564  SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
    557565  zdirListOne = sh_files_deldirstack_int(zdirListOne);
    558566  zdirListTwo = sh_files_deldirstack_int(zdirListTwo);
     567  SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
    559568  return 0;
    560569}
     
    583592  SL_ENTER(_("sh_dirs_reset"));
    584593
     594  SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     595  SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
    585596  for (ptr = (dirstack_t *) zAVLFirst(&avlcursor1, zdirListOne); ptr;
    586597       ptr = (dirstack_t *) zAVLNext(&avlcursor1))
     
    590601       ptr = (dirstack_t *) zAVLNext(&avlcursor2))
    591602    ptr->checked = 0;
     603  SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
    592604
    593605  SL_RET0(_("sh_dirs_reset"));
     
    896908  char  * fileName;
    897909  int     ret;
     910  int     count = 0;
    898911
    899912  SL_ENTER(_("sh_files_push_file_int"));
     
    942955  else
    943956    {
    944       unsigned long mask = sh_files_maskof(class);
    945       if (MODI_AUDIT_ENABLED(mask))
     957      int           reported;
     958      unsigned long check_mask = sh_files_maskof(class);
     959
     960      if ((sh.flag.inotify & SH_INOTIFY_INSCAN) != 0)
    946961        {
    947           sh_audit_mark(new_item_ptr->name);
     962          sh_files_filecheck (class, check_mask, str_s, NULL,
     963                              &reported, 0);
     964          if (SH_FFLAG_REPORTED_SET(reported))
     965            sh_files_set_file_reported(str_s);
     966          sh_inotify_add_watch_later(str_s, &sh_file_watches, NULL,
     967                                     class, check_mask,
     968                                     SH_INOTIFY_FILE, 0);
    948969        }
    949     }
    950   SL_RETURN(0, _("sh_files_push_file_int"));
     970
     971      if (MODI_AUDIT_ENABLED(check_mask))
     972        {
     973          sh_audit_mark(str_s);
     974        }
     975      ++count;
     976    }
     977  SL_RETURN(count, _("sh_files_push_file_int"));
    951978}
    952979
     
    966993static zAVLTree * zglobList   = NULL;
    967994
    968 static void sh_files_pushglob (int class, int type, const char * p, int rdepth,
     995static int sh_files_pushglob (int class, int type, const char * p, int rdepth,
    969996                               unsigned long check_mask_in, int flag)
    970997{
     
    9731000  glob_t  pglob;
    9741001
     1002  int     count = 0;
    9751003  volatile unsigned long check_mask = check_mask_in;
    9761004 
     
    10241052          if (type == SH_LIST_FILE)
    10251053            {
    1026               sh_files_push_file_int (class, pglob.gl_pathv[gloop],
    1027                                       sl_strlen(pglob.gl_pathv[gloop]));
     1054              count += sh_files_push_file_int (class, pglob.gl_pathv[gloop],
     1055                                               sl_strlen(pglob.gl_pathv[gloop]));
    10281056            }
    10291057          else
     
    10311059              which_dirList = type;
    10321060
    1033               sh_files_push_dir_int  (class, pglob.gl_pathv[gloop],
    1034                                       sl_strlen(pglob.gl_pathv[gloop]), rdepth);
     1061              count += sh_files_push_dir_int  (class, pglob.gl_pathv[gloop],
     1062                                               sl_strlen(pglob.gl_pathv[gloop]), rdepth);
    10351063            }
    10361064        }
     
    10711099 
    10721100  globfree(&pglob);
    1073   SL_RET0(_("sh_files_pushglob"));
    1074   return;
     1101  SL_RETURN(count, _("sh_files_pushglob"));
     1102  return count;
    10751103}
    10761104
     
    12831311int sh_files_is_allignore (char * str)
    12841312{
    1285   if (1 == sh_files_is_allignore_int(str, zdirListOne))
    1286     return 1;
    1287   if (NULL == zdirListTwo)
    1288     return 0;
    1289   return sh_files_is_allignore_int(str, zdirListTwo);
     1313  int retval = 0;
     1314
     1315  SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     1316  SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
     1317  retval = sh_files_is_allignore_int(str, zdirListOne);
     1318
     1319  if (NULL != zdirListTwo && retval == 0)
     1320    {
     1321      retval = sh_files_is_allignore_int(str, zdirListTwo);
     1322    }
     1323  SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
     1324  return retval;
    12901325}
    12911326
     
    13061341  sh_dummy_ptr = (void *) &ptr;
    13071342 
     1343  SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     1344  SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
    13081345  if (which == 1)
    13091346    tree = zdirListOne;
     
    13151352    {
    13161353      if (sig_urgent > 0) {
    1317         SL_RETURN(dcount, _("sh_dirs_chk"));
     1354        goto out;
    13181355      }
    13191356
     
    13301367                {
    13311368                  BREAKEXIT(sh_files_filecheck);
    1332                   sh_files_filecheck (dst_ptr->class, dst_ptr->check_mask, ptr->name, 
     1369                  sh_files_filecheck (dst_ptr->class, dst_ptr->check_mask,
     1370                                      ptr->name, 
    13331371                                      NULL,  &status, 0);
    13341372                  dst_ptr->checked = S_TRUE;
     
    13431381
    13441382          if (status == S_FALSE)
    1345             sh_files_filecheck (ptr->class,  ptr->check_mask, ptr->name,  NULL,  &status, 0);
     1383            sh_files_filecheck (ptr->class,  ptr->check_mask,
     1384                                ptr->name,  NULL,  &status, 0);
    13461385
    13471386          BREAKEXIT(sh_files_checkdir);
    1348           status = sh_files_checkdir (ptr->class, ptr->check_mask, ptr->rdepth, ptr->name,
     1387          status = sh_files_checkdir (ptr->class, ptr->check_mask,
     1388                                      ptr->rdepth, ptr->name,
    13491389                                      ptr->name);
    13501390
     
    14101450
    14111451      if (sig_urgent > 0) {
    1412         SL_RETURN(dcount, _("sh_dirs_chk"));
     1452        goto out;
    14131453      }
    14141454
    14151455    }
     1456 out:
     1457  SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
     1458
    14161459  SL_RETURN(dcount, _("sh_dirs_chk"));
    14171460}
     
    15081551  new_item_ptr->childs_checked = S_FALSE;
    15091552
     1553  SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     1554  SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
    15101555  if (which_dirList == SH_LIST_DIR1)
    15111556    {
     
    15321577
    15331578  ret = zAVLInsert (tree, new_item_ptr);
     1579  SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
    15341580
    15351581  if (-1 == ret)
     
    15471593      new_item_ptr = NULL;
    15481594    }
    1549 
    1550   if (new_item_ptr && MODI_AUDIT_ENABLED(new_item_ptr->check_mask))
    1551     {
    1552       sh_audit_mark(new_item_ptr->name);
    1553     }
    1554 
     1595  else
     1596    {
     1597      unsigned long mask = sh_files_maskof(class);
     1598      if (MODI_AUDIT_ENABLED(mask))
     1599        {
     1600          sh_audit_mark(tail);
     1601        }
     1602    }
    15551603  SL_RETURN(0, _("sh_files_push_dir_int"));
    15561604}
     
    18081856static void * sh_dummy_dirlist;
    18091857
    1810 /* -- check a single directory and its content
     1858/* -- Check a single directory and its content. Does not
     1859 *    check the directory inode itself.
    18111860 */
    1812 static int sh_files_checkdir (int iclass, unsigned long check_mask,
    1813                               int idepth, char * iname,
    1814                               char * relativeName)
     1861int sh_files_checkdir (int iclass, unsigned long check_mask,
     1862                       int idepth, char * iname,
     1863                       char * relativeName)
    18151864{
    18161865  struct sh_dirent * dirlist;
     
    19491998    }
    19501999
    1951   if ((sh.flag.inotify & SH_INOTIFY_DOSCAN) != 0)
     2000  if ((sh.flag.inotify & SH_INOTIFY_INSCAN) != 0)
    19522001    {
    19532002      sh_inotify_add_watch_later(iname, &sh_file_watches, &status,
    1954                                  iclass, check_mask, SH_INOTIFY_DIR);
     2003                                 iclass, check_mask, SH_INOTIFY_DIR, idepth);
    19552004    }
    19562005   
     
    20692118     * is checked with the policy of the parent directory
    20702119     */
     2120    SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     2121    SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
    20712122    dst_ptr         = (dirstack_t *) zAVLSearch(zdirListOne, tmpcat);
    20722123
     
    20992150          }
    21002151      }
    2101 
    2102     SH_MUTEX_LOCK(mutex_zfiles);
     2152    SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
     2153
     2154    SH_MUTEX_LOCK_UNSAFE(mutex_zfiles);
    21032155    dst_ptr         = (dirstack_t *) zAVLSearch(zfileList, tmpcat);
    21042156
     
    21142166        /* not set, hence always FALSE                   */
    21152167        /* cchecked_flag      = dst_ptr->childs_checked; */
     2168
     2169        if (checked_flag != S_TRUE)
     2170          {
     2171            /* -- need to check the file itself --
     2172             */
     2173            if (sh.flag.reportonce == S_TRUE)
     2174              dummy = dst_ptr->is_reported;
     2175          }
    21162176      }
    2117     SH_MUTEX_UNLOCK(mutex_zfiles);
     2177    SH_MUTEX_UNLOCK_UNSAFE(mutex_zfiles);
    21182178   
    21192179    /* ---- Has been checked already. ----
     
    21452205        /* -- need to check the file itself --
    21462206         */
    2147         if (dst_ptr && sh.flag.reportonce == S_TRUE)
    2148           dummy = dst_ptr->is_reported;
     2207        /* -- moved up --
     2208         * if (dst_ptr && sh.flag.reportonce == S_TRUE)
     2209         *   dummy = dst_ptr->is_reported;
     2210         */
    21492211
    21502212        checkit = sh_files_filecheck (file_class_next, file_check_mask_next,
     
    21532215                                      &dummy, 0);
    21542216
     2217       
     2218        SH_MUTEX_LOCK_UNSAFE(mutex_zfiles);
     2219        dst_ptr         = (dirstack_t *) zAVLSearch(zfileList, tmpcat);
     2220
    21552221        if (dst_ptr && checked_flag == S_FALSE)
    21562222          dst_ptr->checked = S_TRUE;
     2223
    21572224        /* Thu Mar  7 15:09:40 CET 2002 Propagate the 'reported' flag
    21582225         */
    21592226        if (dst_ptr && sh.flag.reportonce == S_TRUE)
    21602227          dst_ptr->is_reported = dummy;
     2228
     2229        if (dst_ptr)
     2230          dst_ptr->childs_checked = S_TRUE;
     2231        SH_MUTEX_UNLOCK_UNSAFE(mutex_zfiles);
    21612232      }
    21622233   
     
    21782249            cchecked_flag = -1;
    21792250           
     2251            SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     2252            SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
    21802253            tmp_ptr     = (dirstack_t *) zAVLSearch(zdirListOne, tmpcat);
    21812254
     
    22122285                  }
    22132286              }
    2214            
    2215           if (cchecked_flag == S_FALSE)
     2287
     2288            if (tmp_ptr && cchecked_flag == S_FALSE)
    22162289              {
    2217                 sh_files_checkdir (class_next, check_mask_next, rdepth_next, tmpcat,
    2218                                    dirlist->sh_d_name);
    22192290                tmp_ptr->childs_checked = S_TRUE;
    22202291                /*
     
    22232294                tmp_ptr->checked        = S_TRUE;
    22242295              }
     2296            SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
     2297
     2298            if (cchecked_flag == S_FALSE)
     2299              {
     2300                sh_files_checkdir (class_next, check_mask_next, rdepth_next,
     2301                                   tmpcat, dirlist->sh_d_name);
     2302                /*
     2303                  tmp_ptr->childs_checked = S_TRUE;
     2304                  tmp_ptr->checked        = S_TRUE;
     2305                */
     2306              }
    22252307            else if (checked_flag == -1)
    2226               sh_files_checkdir (class_next, check_mask_next, rdepth_next, tmpcat,
    2227                                  dirlist->sh_d_name);
     2308              sh_files_checkdir (class_next, check_mask_next, rdepth_next,
     2309                                 tmpcat, dirlist->sh_d_name);
    22282310           
    22292311          }
     
    22482330    dirlist = dirlist->next;
    22492331
    2250     if (dst_ptr)
    2251       dst_ptr->childs_checked = S_TRUE;
    2252    
     2332    /* -- moved up, only affects zfileList anyway
     2333     * if (dst_ptr)
     2334     *   dst_ptr->childs_checked = S_TRUE;
     2335     */
     2336
    22532337  } while (dirlist != NULL);
    22542338
     
    23092393
    23102394ShFileType sh_files_filecheck (int class, unsigned long check_mask,
    2311                                char * dirName,
    2312                                char * infileName,
     2395                               const char * dirName,
     2396                               const char * infileName,
    23132397                               int * reported,
    23142398                               int rsrcflag)
     
    23222406  char          * tmpdir;
    23232407  char          * tmpname;
    2324   char          * fileName;
     2408  const char    * fileName;
    23252409  struct utimbuf  utime_buf;
    23262410  static unsigned int state = 1;
     
    25462630/* concatenate statpath = testdir"/"d_name
    25472631 */
    2548 static int sh_files_fullpath (char * testdir, char * d_name, char * statpath)
     2632static int sh_files_fullpath (const char * testdir, const char * d_name,
     2633                              char * statpath)
    25492634{
    25502635  int llen = 0;
     
    25752660 * -----------------------------------
    25762661 */
     2662int sh_files_search_dir(char * name, int * class,
     2663                        unsigned long *check_mask, int *reported,
     2664                        int * rdepth)
     2665{
     2666  int retval = 0;
     2667#if defined(HAVE_GLOB_H) && defined(HAVE_FNMATCH_H)
     2668  sh_globstack_t * testPattern;
     2669  zAVLCursor   cursor;
     2670#endif
     2671  dirstack_t * item;
     2672
     2673  SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     2674  SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
     2675
     2676  item = zAVLSearch(zdirListOne, name);
     2677
     2678  if (item)
     2679    {
     2680      *check_mask = item->check_mask;
     2681      *class      = item->class;
     2682      *reported   = item->is_reported;
     2683      *rdepth     = item->rdepth;
     2684      item->checked        = S_FALSE;
     2685      item->childs_checked = S_FALSE;
     2686      item->is_reported    = S_FALSE;
     2687      retval = 1;
     2688      goto out;
     2689    }
     2690
     2691  item = zAVLSearch(zdirListTwo, name);
     2692
     2693  if (item)
     2694    {
     2695      *check_mask = item->check_mask;
     2696      *class      = item->class;
     2697      *reported   = item->is_reported;
     2698      *rdepth     = item->rdepth;
     2699      item->checked        = S_FALSE;
     2700      item->childs_checked = S_FALSE;
     2701      item->is_reported    = S_FALSE;
     2702      retval = 1;
     2703      goto out;
     2704    }
     2705
     2706#if defined(HAVE_GLOB_H) && defined(HAVE_FNMATCH_H)
     2707  SH_MUTEX_LOCK(mutex_zglob);
     2708  for (testPattern = (sh_globstack_t *) zAVLFirst (&cursor, zglobList);
     2709       testPattern;
     2710       testPattern = (sh_globstack_t *) zAVLNext  (&cursor))
     2711    {
     2712      if (testPattern->type == SH_LIST_DIR1 ||
     2713          testPattern->type == SH_LIST_DIR2)
     2714        {
     2715          if (0 == fnmatch(testPattern->name, name, FNM_PATHNAME|FNM_PERIOD))
     2716            {
     2717              *check_mask = testPattern->check_mask;
     2718              *class      = testPattern->class;
     2719              *rdepth     = testPattern->rdepth;
     2720              retval = 1;
     2721              break;
     2722            }
     2723       
     2724        }
     2725    }
     2726  SH_MUTEX_UNLOCK(mutex_zglob);
     2727#endif
     2728 out:
     2729  SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
     2730  return retval;
     2731}
     2732
    25772733int sh_files_search_file(char * name, int * class,
    25782734                         unsigned long *check_mask, int *reported)
     
    26222778}
    26232779
    2624 void sh_files_set_file_reported(char * name)
     2780void sh_files_set_file_reported(const char * name)
    26252781{
    26262782  dirstack_t * item;
     
    26382794}
    26392795
    2640 void sh_files_clear_file_reported(char * name)
     2796void sh_files_clear_file_reported(const char * name)
    26412797{
    26422798  dirstack_t * item;
     
    27712927int sh_files_test_setup ()
    27722928{
    2773   int retval = 0;
    2774 
     2929  int retval;
     2930
     2931  SH_MUTEX_RECURSIVE_INIT(mutex_zdirs);
     2932  SH_MUTEX_RECURSIVE_LOCK(mutex_zdirs);
    27752933  /* Test for modifications allowed in ReadOnly directory
    27762934   */ 
     
    27872945  if (retval != 0)
    27882946    aud_exit(FIL__, __LINE__, EXIT_FAILURE);
    2789 
    2790 
    2791   /*
    2792   retval = sh_files_test_double (zfileList,   NULL);
    2793   if (retval != 0)
    2794     aud_exit(FIL__, __LINE__, EXIT_FAILURE);
    2795   */
     2947  SH_MUTEX_RECURSIVE_UNLOCK(mutex_zdirs);
     2948
    27962949  return 0;
    27972950}
  • trunk/src/sh_inotify.c

    r372 r373  
    128128  short  type;
    129129  int    class;
     130  int    rdepth;
    130131  unsigned long check_mask;
    131132  char * file;
     
    245246}
    246247
    247 static sh_watch * sh_inotify_create_watch(char * file, int nwatch, int flag)
     248static sh_watch * sh_inotify_create_watch(const char * file, int nwatch, int flag)
    248249{
    249250  sh_watch * this = SH_ALLOC(sizeof(sh_watch));
     
    356357
    357358char * sh_inotify_pop_dormant(sh_watches * watches,
    358                               int * class, unsigned long * check_mask, int * type)
     359                              int * class, unsigned long * check_mask,
     360                              int * type, int * rdepth)
    359361{
    360362  char * popret = NULL;
     
    372374  if (this)
    373375    {
    374       *class = this->watch->class;
    375       *type  = this->watch->type;
     376      *class  = this->watch->class;
     377      *type   = this->watch->type;
     378      *rdepth = this->watch->rdepth;
    376379      *check_mask = this->watch->check_mask;
    377       popret = sh_util_strdup(this->watch->file);
     380      popret  = sh_util_strdup(this->watch->file);
    378381
    379382      watches->dormant_watches = this->next;
     
    472475/* Create an item and put it on the 'dormant' list for later watch creation
    473476 */
    474 int sh_inotify_add_watch_later(char * filename, sh_watches * watches,
     477int sh_inotify_add_watch_later(const char * filename, sh_watches * watches,
    475478                               int * errnum,
    476                                int class, unsigned long check_mask, int type)
     479                               int class, unsigned long check_mask, int type, int rdepth)
    477480{
    478481  sh_watch   * item;
     
    482485  item->class      = class;
    483486  item->type       = (short) type;
     487  item->rdepth     = (short) rdepth;
    484488  item->check_mask = check_mask;
    485489
     
    574578 */
    575579int sh_inotify_add_watch(char * filename, sh_watches * watches, int * errnum,
    576                          int class, unsigned long check_mask, int type)
     580                         int class, unsigned long check_mask, int type, int rdepth)
    577581{
    578582  volatile int retval = 0;
     
    618622          item->class      = class;
    619623          item->type       = type;
     624          item->rdepth     = rdepth;
    620625          item->check_mask = check_mask;
    621626         
     
    646651          ++(watches->count);
    647652        }
     653      else if (type == SH_INOTIFY_DIR) /* watch exists */
     654        {
     655          /* This covers the case that a directory has been added,
     656           * but is watched as file at first because it is also
     657           * specified as file in the config.
     658           */
     659          item = zAVLSearch(watches->list_of_watches, &index);
     660
     661          if (item && item->type == SH_INOTIFY_FILE)
     662            {
     663              item->type = SH_INOTIFY_DIR;
     664            }
     665        }
    648666    }
    649667 retpoint:
     
    655673
    656674char * sh_inotify_search_item(sh_watches * watches, int watch,
    657                               int * class, unsigned long * check_mask, int * type)
     675                              int * class, unsigned long * check_mask,
     676                              int * type, int * rdepth)
    658677{
    659678  sh_watch * item;
     
    673692      *check_mask = item->check_mask;
    674693      *type       = item->type;
     694      *rdepth     = item->rdepth;
    675695      sret = sh_util_strdup(item->file);
    676696    }
     
    710730      if (filename)
    711731        {
    712           if (sh_inotify_add_watch(filename, watches, errnum, 0, 0, SH_INOTIFY_FILE) < 0)
     732          if (sh_inotify_add_watch(filename, watches, errnum,
     733                                   0, 0, SH_INOTIFY_FILE, 0) < 0)
    713734            {
    714735              retry_msleep(waitsec, 0);
     
    841862
    842863int sh_inotify_add_watch(char * filename, sh_watches * watches, int  * errnum,
    843                          int class, unsigned long check_mask)
     864                         int class, unsigned long check_mask, int type, int rdepth)
    844865{
    845866  (void) filename;
     
    847868  (void) class;
    848869  (void) check_mask;
     870  (void) type;
     871  (void) rdepth;
    849872  *errnum = 0;
    850873  return 0;
    851874}
    852875
    853 int sh_inotify_add_watch_later(char * filename, sh_watches * watches,
     876int sh_inotify_add_watch_later(const char * filename, sh_watches * watches,
    854877                               int  * errnum,
    855                                int class, unsigned long check_mask)
     878                               int class, unsigned long check_mask, int type, int rdepth)
    856879{
    857880  (void) filename;
     
    859882  (void) class;
    860883  (void) check_mask;
     884  (void) type;
     885  (void) rdepth;
    861886  *errnum = 0;
    862887  return 0;
     
    876901  char * p;
    877902  int class;
     903  int type;
     904  int rdepth;
    878905  unsigned long check_mask;
    879906  int           nrun = 0;
    880907
    881   sh_watch aw1 = { -1, 0, 1, 1, "a1" };
    882   sh_watch aw2 = { -1, 0, 2, 1, "a2" };
    883   sh_watch aw3 = {  2, 0, 3, 1, "a3" };
    884   sh_watch aw4 = { -1, 0, 4, 1, "a4" };
    885   sh_watch aw5 = {  5, 0, 5, 1, "a5" };
     908  sh_watch aw1 = { -1, 0, 0, 1, 99, 1, "a1" };
     909  sh_watch aw2 = { -1, 0, 0, 2, 99, 1, "a2" };
     910  sh_watch aw3 = {  2, 0, 0, 3, 99, 1, "a3" };
     911  sh_watch aw4 = { -1, 0, 0, 4, 99, 1, "a4" };
     912  sh_watch aw5 = {  5, 0, 0, 5, 99, 1, "a5" };
    886913
    887914  do {
     
    971998    CuAssertIntEquals(tc, count, 5);
    972999   
    973     p = sh_inotify_pop_dormant(&twatch, &class, &check_mask);
     1000    p = sh_inotify_pop_dormant(&twatch, &class, &check_mask, &type, &rdepth);
    9741001    CuAssertStrEquals(tc, p, "a5");
    9751002   
    976     p = sh_inotify_pop_dormant(&twatch, &class, &check_mask);
     1003    p = sh_inotify_pop_dormant(&twatch, &class, &check_mask, &type, &rdepth);
    9771004    CuAssertStrEquals(tc, p, "a3");
    9781005    CuAssertIntEquals(tc, class, 3);
    9791006   
    980     p = sh_inotify_pop_dormant(&twatch, &class, &check_mask);
     1007    p = sh_inotify_pop_dormant(&twatch, &class, &check_mask, &type, &rdepth);
    9811008    CuAssertTrue(tc, NULL == p);
    9821009    CuAssertTrue(tc, NULL == twatch.dormant_watches);
  • trunk/src/sh_unix.c

    r367 r373  
    35903590static void * sh_dummy_tmp2;
    35913591
    3592 int sh_unix_getinfo (int level, char * filename, file_type * theFile,
     3592int sh_unix_getinfo (int level, const char * filename, file_type * theFile,
    35933593                     char * fileHash, int policy)
    35943594{
  • trunk/src/sh_utils.c

    r355 r373  
    18041804
    18051805
    1806 int sh_util_obscurename (ShErrLevel level, char * name_orig, int flag)
    1807 {
    1808   unsigned char * name = (unsigned char *) name_orig;
     1806int sh_util_obscurename (ShErrLevel level, const char * name_orig, int flag)
     1807{
     1808  const unsigned char * name = (unsigned char *) name_orig;
    18091809  char * safe;
    18101810  unsigned int i;
Note: See TracChangeset for help on using the changeset viewer.