1 | /* SAMHAIN file system integrity testing */
|
---|
2 | /* Copyright (C) 2011 Rainer Wichmann */
|
---|
3 | /* */
|
---|
4 | /* This program is free software; you can redistribute it */
|
---|
5 | /* and/or modify */
|
---|
6 | /* it under the terms of the GNU General Public License as */
|
---|
7 | /* published by */
|
---|
8 | /* the Free Software Foundation; either version 2 of the License, or */
|
---|
9 | /* (at your option) any later version. */
|
---|
10 | /* */
|
---|
11 | /* This program is distributed in the hope that it will be useful, */
|
---|
12 | /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
---|
13 | /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
---|
14 | /* GNU General Public License for more details. */
|
---|
15 | /* */
|
---|
16 | /* You should have received a copy of the GNU General Public License */
|
---|
17 | /* along with this program; if not, write to the Free Software */
|
---|
18 | /* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
---|
19 |
|
---|
20 | /***************************************************************************
|
---|
21 | *
|
---|
22 | * This file provides a module for samhain to use inotify for file checking.
|
---|
23 | *
|
---|
24 | */
|
---|
25 |
|
---|
26 | #include "config_xor.h"
|
---|
27 |
|
---|
28 | #if (defined(SH_WITH_CLIENT) || defined(SH_STANDALONE))
|
---|
29 |
|
---|
30 | #include "samhain.h"
|
---|
31 | #include "sh_utils.h"
|
---|
32 | #include "sh_modules.h"
|
---|
33 | #include "sh_pthread.h"
|
---|
34 | #include "sh_inotify.h"
|
---|
35 | #include "sh_unix.h"
|
---|
36 | #include "sh_hash.h"
|
---|
37 | #include "sh_files.h"
|
---|
38 | #include "sh_ignore.h"
|
---|
39 |
|
---|
40 | #define FIL__ _("sh_fInotify.c")
|
---|
41 |
|
---|
42 | sh_watches sh_file_watches = SH_INOTIFY_INITIALIZER;
|
---|
43 |
|
---|
44 | #if defined(HAVE_SYS_INOTIFY_H)
|
---|
45 |
|
---|
46 | static sh_watches sh_file_missing = SH_INOTIFY_INITIALIZER;
|
---|
47 |
|
---|
48 | #include <sys/inotify.h>
|
---|
49 |
|
---|
50 | /* --- Configuration ------- */
|
---|
51 |
|
---|
52 | static int ShfInotifyActive = S_FALSE;
|
---|
53 |
|
---|
54 | static unsigned long ShfInotifyWatches = 0;
|
---|
55 |
|
---|
56 | static int sh_fInotify_active(const char *s)
|
---|
57 | {
|
---|
58 | int value;
|
---|
59 |
|
---|
60 | SL_ENTER(_("sh_fInotify_active"));
|
---|
61 | value = sh_util_flagval(s, &ShfInotifyActive);
|
---|
62 | if (value == 0 && ShfInotifyActive != S_FALSE)
|
---|
63 | {
|
---|
64 | sh.flag.inotify |= SH_INOTIFY_USE;
|
---|
65 | sh.flag.inotify |= SH_INOTIFY_DOSCAN;
|
---|
66 | sh.flag.inotify |= SH_INOTIFY_NEEDINIT;
|
---|
67 | }
|
---|
68 | if (value == 0 && ShfInotifyActive == S_FALSE)
|
---|
69 | {
|
---|
70 | sh.flag.inotify = 0;
|
---|
71 | }
|
---|
72 | SL_RETURN((value), _("sh_fInotify_active"));
|
---|
73 | }
|
---|
74 |
|
---|
75 | static int sh_fInotify_watches(const char *s)
|
---|
76 | {
|
---|
77 | int retval = -1;
|
---|
78 | char * foo;
|
---|
79 | unsigned long value;
|
---|
80 |
|
---|
81 | SL_ENTER(_("sh_fInotify_watches"));
|
---|
82 |
|
---|
83 | value = strtoul(s, &foo, 0);
|
---|
84 | if (*foo == '\0')
|
---|
85 | {
|
---|
86 | ShfInotifyWatches = (value > 2147483647) ? 2147483647 /* MAX_INT_32 */: value;
|
---|
87 | retval = 0;
|
---|
88 | }
|
---|
89 | SL_RETURN((retval), _("sh_fInotify_watches"));
|
---|
90 | }
|
---|
91 |
|
---|
92 |
|
---|
93 | sh_rconf sh_fInotify_table[] = {
|
---|
94 | {
|
---|
95 | N_("inotifyactive"),
|
---|
96 | sh_fInotify_active,
|
---|
97 | },
|
---|
98 | {
|
---|
99 | N_("inotifywatches"),
|
---|
100 | sh_fInotify_watches,
|
---|
101 | },
|
---|
102 | {
|
---|
103 | NULL,
|
---|
104 | NULL
|
---|
105 | }
|
---|
106 | };
|
---|
107 |
|
---|
108 | /* --- End Configuration --- */
|
---|
109 |
|
---|
110 | static int sh_fInotify_init_internal(void);
|
---|
111 | static int sh_fInotify_process(struct inotify_event * event);
|
---|
112 | static int sh_fInotify_report(struct inotify_event * event, char * filename,
|
---|
113 | int class, unsigned long check_mask, int ftype, int rdepth);
|
---|
114 |
|
---|
115 | int sh_fInotify_init(struct mod_type * arg)
|
---|
116 | {
|
---|
117 | #ifndef HAVE_PTHREAD
|
---|
118 | (void) arg;
|
---|
119 | return SH_MOD_FAILED;
|
---|
120 | #else
|
---|
121 |
|
---|
122 | if (ShfInotifyActive == S_FALSE)
|
---|
123 | return SH_MOD_FAILED;
|
---|
124 |
|
---|
125 | if (sh.flag.checkSum == SH_CHECK_INIT)
|
---|
126 | return SH_MOD_FAILED;
|
---|
127 |
|
---|
128 | if (arg != NULL && arg->initval < 0 &&
|
---|
129 | (sh.flag.isdaemon == S_TRUE || sh.flag.loop == S_TRUE))
|
---|
130 | {
|
---|
131 | /* Init from main thread */
|
---|
132 | sh.flag.inotify |= SH_INOTIFY_DOSCAN;
|
---|
133 | sh.flag.inotify |= SH_INOTIFY_NEEDINIT;
|
---|
134 |
|
---|
135 | if (0 == sh_pthread_create(sh_threaded_module_run, (void *)arg))
|
---|
136 | {
|
---|
137 | return SH_MOD_THREAD;
|
---|
138 | }
|
---|
139 | else
|
---|
140 | {
|
---|
141 | sh.flag.inotify = 0;
|
---|
142 | return SH_MOD_FAILED;
|
---|
143 | }
|
---|
144 | }
|
---|
145 | else if (arg != NULL && arg->initval < 0 &&
|
---|
146 | (sh.flag.isdaemon != S_TRUE && sh.flag.loop != S_TRUE))
|
---|
147 | {
|
---|
148 | sh.flag.inotify = 0;
|
---|
149 | return SH_MOD_FAILED;
|
---|
150 | }
|
---|
151 | else if (arg != NULL && arg->initval == SH_MOD_THREAD &&
|
---|
152 | (sh.flag.isdaemon == S_TRUE || sh.flag.loop == S_TRUE))
|
---|
153 | {
|
---|
154 | /* Reconfigure from main thread */
|
---|
155 | /* sh_fInotify_init_internal(); */
|
---|
156 | sh.flag.inotify |= SH_INOTIFY_DOSCAN;
|
---|
157 | sh.flag.inotify |= SH_INOTIFY_NEEDINIT;
|
---|
158 | return SH_MOD_THREAD;
|
---|
159 | }
|
---|
160 |
|
---|
161 | /* Within thread, init */
|
---|
162 | return sh_fInotify_init_internal();
|
---|
163 | #endif
|
---|
164 | }
|
---|
165 |
|
---|
166 | int sh_fInotify_run()
|
---|
167 | {
|
---|
168 | ssize_t len = -1;
|
---|
169 | char * buffer;
|
---|
170 | static int count = 0;
|
---|
171 | static int count2 = 0;
|
---|
172 |
|
---|
173 | if (ShfInotifyActive == S_FALSE)
|
---|
174 | {
|
---|
175 | return SH_MOD_FAILED;
|
---|
176 | }
|
---|
177 |
|
---|
178 | if ( (sh.flag.inotify & SH_INOTIFY_DOSCAN) ||
|
---|
179 | (sh.flag.inotify & SH_INOTIFY_NEEDINIT))
|
---|
180 | {
|
---|
181 | if (0 != sh_fInotify_init_internal())
|
---|
182 | {
|
---|
183 | return SH_MOD_FAILED;
|
---|
184 | }
|
---|
185 | }
|
---|
186 |
|
---|
187 | buffer = SH_ALLOC(16384);
|
---|
188 |
|
---|
189 | /* Blocking read from inotify file descriptor.
|
---|
190 | */
|
---|
191 | len = sh_inotify_read_timeout(buffer, 16384, 1);
|
---|
192 |
|
---|
193 | if (len > 0)
|
---|
194 | {
|
---|
195 | struct inotify_event *event;
|
---|
196 | int i = 0;
|
---|
197 |
|
---|
198 | while (i < len)
|
---|
199 | {
|
---|
200 | event = (struct inotify_event *) &(buffer[i]);
|
---|
201 |
|
---|
202 | sh_fInotify_process(event);
|
---|
203 |
|
---|
204 | i += sizeof (struct inotify_event) + event->len;
|
---|
205 | }
|
---|
206 |
|
---|
207 | if ( (sh.flag.inotify & SH_INOTIFY_DOSCAN) ||
|
---|
208 | (sh.flag.inotify & SH_INOTIFY_NEEDINIT))
|
---|
209 | {
|
---|
210 | if (0 != sh_fInotify_init_internal())
|
---|
211 | {
|
---|
212 | SH_FREE(buffer);
|
---|
213 | return SH_MOD_FAILED;
|
---|
214 | }
|
---|
215 | }
|
---|
216 | }
|
---|
217 |
|
---|
218 | /* Re-scan 'dormant' list of sh_file_missing.
|
---|
219 | */
|
---|
220 | sh_inotify_recheck_watches (&sh_file_watches, &sh_file_missing);
|
---|
221 |
|
---|
222 | ++count;
|
---|
223 | ++count2;
|
---|
224 |
|
---|
225 | if (count >= 10)
|
---|
226 | {
|
---|
227 | count = 0; /* Re-expand glob patterns to discover added files. */
|
---|
228 | sh.flag.inotify |= SH_INOTIFY_INSCAN;
|
---|
229 | sh_files_check_globFilePatterns();
|
---|
230 | sh.flag.inotify &= ~SH_INOTIFY_INSCAN;
|
---|
231 | sh.flag.inotify |= SH_INOTIFY_NEEDINIT;
|
---|
232 | }
|
---|
233 |
|
---|
234 | if (count2 >= 300)
|
---|
235 | {
|
---|
236 | count2 = 0; /* Update baseline database. */
|
---|
237 | if (sh.flag.checkSum == SH_CHECK_CHECK && sh.flag.update == S_TRUE)
|
---|
238 | sh_hash_writeout ();
|
---|
239 | }
|
---|
240 |
|
---|
241 | SH_FREE(buffer);
|
---|
242 | return 0;
|
---|
243 | }
|
---|
244 |
|
---|
245 | /* We block in the read() call on the inotify descriptor,
|
---|
246 | * so we always run.
|
---|
247 | */
|
---|
248 | int sh_fInotify_timer(time_t tcurrent)
|
---|
249 | {
|
---|
250 | (void) tcurrent;
|
---|
251 | return 1;
|
---|
252 | }
|
---|
253 |
|
---|
254 | int sh_fInotify_cleanup()
|
---|
255 | {
|
---|
256 | sh_inotify_purge_dormant(&sh_file_watches);
|
---|
257 | sh_inotify_remove(&sh_file_watches);
|
---|
258 | sh_inotify_init(&sh_file_watches);
|
---|
259 | return 0;
|
---|
260 | }
|
---|
261 |
|
---|
262 | int sh_fInotify_reconf()
|
---|
263 | {
|
---|
264 | sh.flag.inotify = 0;
|
---|
265 |
|
---|
266 | ShfInotifyWatches = 0;
|
---|
267 | ShfInotifyActive = 0;
|
---|
268 |
|
---|
269 | return sh_fInotify_cleanup();
|
---|
270 | }
|
---|
271 |
|
---|
272 | #define PROC_WATCHES_MAX _("/proc/sys/fs/inotify/max_user_watches")
|
---|
273 |
|
---|
274 | static void sh_fInotify_set_nwatches()
|
---|
275 | {
|
---|
276 | static int fails = 0;
|
---|
277 |
|
---|
278 | if (ShfInotifyWatches == 0 || fails == 1)
|
---|
279 | return;
|
---|
280 |
|
---|
281 | if (0 == access(PROC_WATCHES_MAX, R_OK|W_OK)) /* flawfinder: ignore */
|
---|
282 | {
|
---|
283 | FILE * fd;
|
---|
284 |
|
---|
285 | if (NULL != (fd = fopen(PROC_WATCHES_MAX, "r+")))
|
---|
286 | {
|
---|
287 | char str[128];
|
---|
288 | char * ret;
|
---|
289 | char * ptr;
|
---|
290 | unsigned long wn;
|
---|
291 |
|
---|
292 | str[0] = '\0';
|
---|
293 | ret = fgets(str, 128, fd);
|
---|
294 | if (ret && *str != '\0')
|
---|
295 | {
|
---|
296 | wn = strtoul(str, &ptr, 0);
|
---|
297 | if (*ptr == '\0' || *ptr == '\n')
|
---|
298 | {
|
---|
299 | if (wn < ShfInotifyWatches)
|
---|
300 | {
|
---|
301 | sl_snprintf(str, sizeof(str), "%lu\n", ShfInotifyWatches);
|
---|
302 | (void) fseek(fd, 0L, SEEK_SET);
|
---|
303 | fputs(str, fd);
|
---|
304 | }
|
---|
305 | sl_fclose(FIL__, __LINE__, fd);
|
---|
306 | return;
|
---|
307 | }
|
---|
308 | }
|
---|
309 | sl_fclose(FIL__, __LINE__, fd);
|
---|
310 | }
|
---|
311 | }
|
---|
312 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
313 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
314 | _("Cannot set max_user_watches"),
|
---|
315 | _("sh_fInotify_set_nwatches"));
|
---|
316 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
317 | fails = 1;
|
---|
318 | return;
|
---|
319 | }
|
---|
320 |
|
---|
321 | /* The watch fd is thread specific. To have it in the fInotify thread,
|
---|
322 | * the main thread writes a list of files/dirs to watch, and here we
|
---|
323 | * now pop files from the list to add watches for them.
|
---|
324 | */
|
---|
325 | static int sh_fInotify_init_internal()
|
---|
326 | {
|
---|
327 | char * filename;
|
---|
328 | int class;
|
---|
329 | int type;
|
---|
330 | int rdepth;
|
---|
331 | unsigned long check_mask;
|
---|
332 | int retval;
|
---|
333 | int errnum;
|
---|
334 |
|
---|
335 | if (ShfInotifyActive == S_FALSE)
|
---|
336 | return SH_MOD_FAILED;
|
---|
337 |
|
---|
338 | /* Wait until file scan is finished.
|
---|
339 | */
|
---|
340 | while((sh.flag.inotify & SH_INOTIFY_DOSCAN) != 0)
|
---|
341 | {
|
---|
342 | retry_msleep(1,0);
|
---|
343 |
|
---|
344 | if (ShfInotifyActive == S_FALSE)
|
---|
345 | return SH_MOD_FAILED;
|
---|
346 | }
|
---|
347 |
|
---|
348 | sh_fInotify_set_nwatches();
|
---|
349 |
|
---|
350 | while (NULL != (filename = sh_inotify_pop_dormant(&sh_file_watches,
|
---|
351 | &class, &check_mask,
|
---|
352 | &type, &rdepth)))
|
---|
353 | {
|
---|
354 | retval = sh_inotify_add_watch(filename, &sh_file_watches, &errnum,
|
---|
355 | class, check_mask, type, rdepth);
|
---|
356 |
|
---|
357 | if (retval < 0)
|
---|
358 | {
|
---|
359 | char errbuf[SH_ERRBUF_SIZE];
|
---|
360 |
|
---|
361 | sh_error_message(errnum, errbuf, sizeof(errbuf));
|
---|
362 |
|
---|
363 | if ((errnum == ENOENT) || (errnum == EEXIST))
|
---|
364 | {
|
---|
365 | char * epath = sh_util_safe_name (filename);
|
---|
366 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
367 | sh_error_handle( (class == SH_LEVEL_ALLIGNORE) ?
|
---|
368 | ShDFLevel[class] :
|
---|
369 | ShDFLevel[SH_ERR_T_FILE],
|
---|
370 | FIL__, __LINE__, errnum, MSG_E_SUBGPATH,
|
---|
371 | errbuf, _("sh_fInotify_init_internal"), epath);
|
---|
372 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
373 | SH_FREE(epath);
|
---|
374 | }
|
---|
375 | else
|
---|
376 | {
|
---|
377 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
378 | sh_error_handle((-1), FIL__, __LINE__, errnum, MSG_E_SUBGEN,
|
---|
379 | errbuf, _("sh_fInotify_init_internal"));
|
---|
380 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
381 | }
|
---|
382 | }
|
---|
383 | SH_FREE(filename);
|
---|
384 | }
|
---|
385 |
|
---|
386 | /* Need this because mod_check() may run after
|
---|
387 | * DOSCAN is finished, hence wouldn't call init().
|
---|
388 | */
|
---|
389 | sh.flag.inotify &= ~SH_INOTIFY_NEEDINIT;
|
---|
390 |
|
---|
391 | return 0;
|
---|
392 | }
|
---|
393 |
|
---|
394 | static void sh_fInotify_logmask(struct inotify_event * event)
|
---|
395 | {
|
---|
396 | char dbgbuf[256];
|
---|
397 |
|
---|
398 | sl_strlcpy (dbgbuf, "inotify mask: ", sizeof(dbgbuf));
|
---|
399 |
|
---|
400 | if (event->mask & IN_ACCESS) sl_strlcat(dbgbuf, "IN_ACCESS ", sizeof(dbgbuf));
|
---|
401 | if (event->mask & IN_ATTRIB) sl_strlcat(dbgbuf, "IN_ATTRIB ", sizeof(dbgbuf));
|
---|
402 | if (event->mask & IN_CLOSE_WRITE) sl_strlcat(dbgbuf, "IN_CLOSE_WRITE ", sizeof(dbgbuf));
|
---|
403 | if (event->mask & IN_CLOSE_NOWRITE) sl_strlcat(dbgbuf, "IN_CLOSE_NOWRITE ", sizeof(dbgbuf));
|
---|
404 | if (event->mask & IN_CREATE) sl_strlcat(dbgbuf, "IN_CREATE ", sizeof(dbgbuf));
|
---|
405 | if (event->mask & IN_DELETE) sl_strlcat(dbgbuf, "IN_DELETE ", sizeof(dbgbuf));
|
---|
406 | if (event->mask & IN_DELETE_SELF) sl_strlcat(dbgbuf, "IN_DELETE_SELF ", sizeof(dbgbuf));
|
---|
407 | if (event->mask & IN_MODIFY) sl_strlcat(dbgbuf, "IN_MODIFY ", sizeof(dbgbuf));
|
---|
408 | if (event->mask & IN_MOVE_SELF) sl_strlcat(dbgbuf, "IN_MOVE_SELF ", sizeof(dbgbuf));
|
---|
409 | if (event->mask & IN_MOVED_FROM) sl_strlcat(dbgbuf, "IN_MOVED_FROM ", sizeof(dbgbuf));
|
---|
410 | if (event->mask & IN_MOVED_TO) sl_strlcat(dbgbuf, "IN_MOVED_TO ", sizeof(dbgbuf));
|
---|
411 | if (event->mask & IN_OPEN) sl_strlcat(dbgbuf, "IN_OPEN ", sizeof(dbgbuf));
|
---|
412 | if (event->mask & IN_IGNORED) sl_strlcat(dbgbuf, "IN_IGNORED ", sizeof(dbgbuf));
|
---|
413 | if (event->mask & IN_ISDIR) sl_strlcat(dbgbuf, "IN_ISDIR ", sizeof(dbgbuf));
|
---|
414 | if (event->mask & IN_Q_OVERFLOW) sl_strlcat(dbgbuf, "IN_Q_OVERFLOW ", sizeof(dbgbuf));
|
---|
415 | if (event->mask & IN_UNMOUNT) sl_strlcat(dbgbuf, "IN_UNMOUNT ", sizeof(dbgbuf));
|
---|
416 |
|
---|
417 | /* fprintf(stderr, "FIXME: %s\n", dbgbuf); */
|
---|
418 |
|
---|
419 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
420 | sh_error_handle(SH_ERR_ALL, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
421 | dbgbuf, _("sh_fInotify_process"));
|
---|
422 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
423 | }
|
---|
424 |
|
---|
425 | static int sh_fInotify_process(struct inotify_event * event)
|
---|
426 | {
|
---|
427 | int class;
|
---|
428 | int ftype;
|
---|
429 | int rdepth;
|
---|
430 | unsigned long check_mask;
|
---|
431 | char * filename;
|
---|
432 | extern int flag_err_debug;
|
---|
433 |
|
---|
434 | if (flag_err_debug == SL_TRUE)
|
---|
435 | {
|
---|
436 | sh_fInotify_logmask(event);
|
---|
437 | }
|
---|
438 |
|
---|
439 | if (event->wd >= 0)
|
---|
440 | {
|
---|
441 | filename = sh_inotify_search_item(&sh_file_watches, event->wd,
|
---|
442 | &class, &check_mask, &ftype, &rdepth);
|
---|
443 |
|
---|
444 | if (filename)
|
---|
445 | {
|
---|
446 | sh_fInotify_report(event, filename, class, check_mask, ftype, rdepth);
|
---|
447 | SH_FREE(filename);
|
---|
448 | }
|
---|
449 | else if (sh.flag.inotify & SH_INOTIFY_NEEDINIT)
|
---|
450 | {
|
---|
451 | return 1;
|
---|
452 | }
|
---|
453 | else if ((event->mask & IN_UNMOUNT) == 0 && (event->mask & IN_IGNORED) == 0)
|
---|
454 | {
|
---|
455 | /* Remove watch ? Seems reasonable. */
|
---|
456 | sh_inotify_rm_watch(NULL, NULL, event->wd);
|
---|
457 |
|
---|
458 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
459 | sh_error_handle((-1), FIL__, __LINE__, event->wd, MSG_E_SUBGEN,
|
---|
460 | _("Watch removed: file path unknown"),
|
---|
461 | _("sh_fInotify_process"));
|
---|
462 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
463 | }
|
---|
464 | }
|
---|
465 | else if ((event->mask & IN_Q_OVERFLOW) != 0)
|
---|
466 | {
|
---|
467 | sh.flag.inotify |= SH_INOTIFY_DOSCAN;
|
---|
468 | sh.flag.inotify |= SH_INOTIFY_NEEDINIT;
|
---|
469 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
470 | sh_error_handle(SH_ERR_WARN, FIL__, __LINE__, event->wd, MSG_E_SUBGEN,
|
---|
471 | _("Inotify queue overflow"),
|
---|
472 | _("sh_fInotify_process"));
|
---|
473 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
474 | return 1;
|
---|
475 | }
|
---|
476 |
|
---|
477 | return 0;
|
---|
478 | }
|
---|
479 |
|
---|
480 | void sh_fInotify_report_add(char * path, int class, unsigned long check_mask)
|
---|
481 | {
|
---|
482 | if (S_FALSE == sh_ignore_chk_new(path))
|
---|
483 | {
|
---|
484 | int reported = 0;
|
---|
485 |
|
---|
486 | sh_files_clear_file_reported(path);
|
---|
487 |
|
---|
488 | sh_files_search_file(path, &class, &check_mask, &reported);
|
---|
489 |
|
---|
490 | sh_files_filecheck (class, check_mask, path, NULL,
|
---|
491 | &reported, 0);
|
---|
492 | if (SH_FFLAG_REPORTED_SET(reported))
|
---|
493 | sh_files_set_file_reported(path);
|
---|
494 | }
|
---|
495 | return;
|
---|
496 | }
|
---|
497 |
|
---|
498 |
|
---|
499 | static void sh_fInotify_report_miss(char * name, int level)
|
---|
500 | {
|
---|
501 | char * tmp = sh_util_safe_name (name);
|
---|
502 |
|
---|
503 | SH_MUTEX_LOCK(mutex_thread_nolog);
|
---|
504 | sh_error_handle (level, FIL__, __LINE__, 0, MSG_FI_MISS, tmp);
|
---|
505 | SH_MUTEX_UNLOCK(mutex_thread_nolog);
|
---|
506 |
|
---|
507 | SH_FREE(tmp);
|
---|
508 | return;
|
---|
509 | }
|
---|
510 |
|
---|
511 | static int sh_fInotify_report_change (struct inotify_event * event,
|
---|
512 | char * path, char * filename,
|
---|
513 | int class, unsigned long check_mask, int ftype)
|
---|
514 | {
|
---|
515 | int reported;
|
---|
516 | int ret = sh_files_search_file(path, &class, &check_mask, &reported);
|
---|
517 |
|
---|
518 | if ((ret == 0) && (event->len > 0) && (ftype == SH_INOTIFY_FILE))
|
---|
519 | {
|
---|
520 | ; /* do nothing, watch was for directory monitored as file only */
|
---|
521 | }
|
---|
522 | else
|
---|
523 | {
|
---|
524 | sh_files_filecheck (class, check_mask, filename,
|
---|
525 | (event->len > 0) ? event->name : NULL,
|
---|
526 | &reported, 0);
|
---|
527 | }
|
---|
528 | return 0;
|
---|
529 | }
|
---|
530 |
|
---|
531 |
|
---|
532 | static int sh_fInotify_report_missing (struct inotify_event * event,
|
---|
533 | char * path,
|
---|
534 | int class, unsigned long check_mask, int ftype)
|
---|
535 | {
|
---|
536 | int reported;
|
---|
537 | int isdir = (event->mask & IN_ISDIR);
|
---|
538 | int level = (class == SH_LEVEL_ALLIGNORE) ?
|
---|
539 | ShDFLevel[class] :
|
---|
540 | ShDFLevel[(isdir == 0) ? SH_ERR_T_FILE : SH_ERR_T_DIR];
|
---|
541 |
|
---|
542 | if (S_FALSE == sh_ignore_chk_del(path))
|
---|
543 | {
|
---|
544 | if (0 != hashreport_missing(path, level))
|
---|
545 | {
|
---|
546 | int ret = sh_files_search_file(path, &class, &check_mask, &reported);
|
---|
547 |
|
---|
548 | if ((ret == 0) && (event->len > 0) && (ftype == SH_INOTIFY_FILE))
|
---|
549 | {
|
---|
550 | ; /* do nothing, watch was for directory monitored as file only */
|
---|
551 | }
|
---|
552 | else
|
---|
553 | {
|
---|
554 | /* Removal of a directory triggers:
|
---|
555 | * (1) IN_DELETE IN_ISDIR
|
---|
556 | * (2) IN_DELETE_SELF
|
---|
557 | */
|
---|
558 | if ((event->mask & IN_DELETE_SELF) == 0)
|
---|
559 | sh_fInotify_report_miss(path, level);
|
---|
560 | }
|
---|
561 | }
|
---|
562 | }
|
---|
563 |
|
---|
564 | #ifndef REPLACE_OLD
|
---|
565 | sh_hash_set_visited_true(path);
|
---|
566 | #else
|
---|
567 | sh_hash_set_missing(path);
|
---|
568 | #endif
|
---|
569 | if (sh.flag.reportonce == S_TRUE)
|
---|
570 | sh_files_set_file_reported(path);
|
---|
571 |
|
---|
572 | /* Move to 'dormant' list, if not file within directory.
|
---|
573 | */
|
---|
574 | if (event->len == 0)
|
---|
575 | sh_inotify_rm_watch(&sh_file_watches, &sh_file_missing, event->wd);
|
---|
576 |
|
---|
577 | return 0;
|
---|
578 | }
|
---|
579 |
|
---|
580 | static int sh_fInotify_report_added (struct inotify_event * event,
|
---|
581 | char * path, char * filename,
|
---|
582 | int class, unsigned long check_mask,
|
---|
583 | int ftype, int rdepth)
|
---|
584 | {
|
---|
585 | if (S_FALSE == sh_ignore_chk_new(path))
|
---|
586 | {
|
---|
587 | int reported;
|
---|
588 | int ret;
|
---|
589 | int retD = 0;
|
---|
590 | int rdepthD = rdepth;
|
---|
591 |
|
---|
592 | sh_files_clear_file_reported(path);
|
---|
593 |
|
---|
594 | ret = sh_files_search_file(path, &class, &check_mask, &reported);
|
---|
595 |
|
---|
596 | if ((ret == 0) && (event->len > 0) && (ftype == SH_INOTIFY_FILE))
|
---|
597 | {
|
---|
598 | ; /* do nothing, watch was for directory monitored as file only */
|
---|
599 | }
|
---|
600 | else
|
---|
601 | {
|
---|
602 | int classD = class;
|
---|
603 | int reportedD = reported;
|
---|
604 | unsigned long check_maskD = check_mask;
|
---|
605 |
|
---|
606 | if (event->mask & IN_ISDIR)
|
---|
607 | {
|
---|
608 | retD = sh_files_search_dir(path, &classD, &check_maskD,
|
---|
609 | &reportedD, &rdepthD);
|
---|
610 | if (retD != 0)
|
---|
611 | {
|
---|
612 | if (ret == 0)
|
---|
613 | {
|
---|
614 | class = classD;
|
---|
615 | check_mask = check_maskD;
|
---|
616 | }
|
---|
617 | }
|
---|
618 | }
|
---|
619 |
|
---|
620 | sh_files_filecheck (class, check_mask, filename,
|
---|
621 | (event->len > 0) ? event->name : NULL,
|
---|
622 | &reported, 0);
|
---|
623 |
|
---|
624 | if (event->mask & IN_ISDIR)
|
---|
625 | {
|
---|
626 | sh.flag.inotify |= SH_INOTIFY_INSCAN;
|
---|
627 | sh_files_checkdir (classD, check_maskD, rdepthD,
|
---|
628 | path, (event->len > 0) ? event->name : NULL);
|
---|
629 | sh.flag.inotify &= ~SH_INOTIFY_INSCAN;
|
---|
630 | sh.flag.inotify |= SH_INOTIFY_NEEDINIT;
|
---|
631 | sh_dirs_reset ();
|
---|
632 | sh_files_reset ();
|
---|
633 | }
|
---|
634 |
|
---|
635 | }
|
---|
636 |
|
---|
637 | if (SH_FFLAG_REPORTED_SET(reported))
|
---|
638 | sh_files_set_file_reported(path);
|
---|
639 |
|
---|
640 | if ((ret != 0) || (event->mask & IN_ISDIR))
|
---|
641 | {
|
---|
642 | sh_inotify_add_watch(path, &sh_file_watches, &ret,
|
---|
643 | class, check_mask,
|
---|
644 | (event->mask & IN_ISDIR)?SH_INOTIFY_DIR:SH_INOTIFY_FILE,
|
---|
645 | rdepthD);
|
---|
646 | }
|
---|
647 | }
|
---|
648 | return 0;
|
---|
649 | }
|
---|
650 |
|
---|
651 | static int sh_fInotify_report(struct inotify_event * event, char * filename,
|
---|
652 | int class, unsigned long check_mask, int ftype, int rdepth)
|
---|
653 | {
|
---|
654 | char * fullpath = NULL;
|
---|
655 | char * path;
|
---|
656 |
|
---|
657 | if (event->len > 0)
|
---|
658 | {
|
---|
659 | fullpath = sh_util_strconcat(filename, "/", event->name, NULL);
|
---|
660 | path = fullpath;
|
---|
661 | }
|
---|
662 | else
|
---|
663 | {
|
---|
664 | path = filename;
|
---|
665 | }
|
---|
666 |
|
---|
667 | if ( (event->mask & (IN_ATTRIB|IN_MODIFY)) != 0)
|
---|
668 | {
|
---|
669 | sh_fInotify_report_change (event, path, filename,
|
---|
670 | class, check_mask, ftype);
|
---|
671 | }
|
---|
672 | else if ((event->mask & (IN_DELETE|IN_DELETE_SELF|IN_MOVE_SELF|IN_MOVED_FROM)) != 0)
|
---|
673 | {
|
---|
674 | sh_fInotify_report_missing (event, path,
|
---|
675 | class, check_mask, ftype);
|
---|
676 | }
|
---|
677 | else if((event->mask & (IN_CREATE|IN_MOVED_TO)) != 0)
|
---|
678 | {
|
---|
679 | sh_fInotify_report_added (event, path, filename,
|
---|
680 | class, check_mask,
|
---|
681 | ftype, rdepth);
|
---|
682 | }
|
---|
683 |
|
---|
684 | if (fullpath)
|
---|
685 | SH_FREE(fullpath);
|
---|
686 |
|
---|
687 | return 0;
|
---|
688 | }
|
---|
689 |
|
---|
690 |
|
---|
691 | #endif
|
---|
692 |
|
---|
693 | #endif
|
---|