1 | /* SAMHAIN file system integrity testing */
|
---|
2 | /* Copyright (C) 1999, 2000, 2001, 2002 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 | #include "config_xor.h"
|
---|
21 |
|
---|
22 | /* define this if you want version 1.3 style database file */
|
---|
23 | /* #define OLD_BUG */
|
---|
24 |
|
---|
25 | /* make sure state changes of a file are always reported, even
|
---|
26 | * with reportonlyonce=true
|
---|
27 | */
|
---|
28 | /* #define REPLACE_OLD *//* moved to samhain.h */
|
---|
29 |
|
---|
30 | #include <stdlib.h>
|
---|
31 | #include <string.h>
|
---|
32 | #include <stdio.h>
|
---|
33 | #include <sys/types.h>
|
---|
34 | #include <sys/stat.h>
|
---|
35 | #include <unistd.h>
|
---|
36 |
|
---|
37 | #ifdef MAJOR_IN_MKDEV
|
---|
38 | #include <sys/mkdev.h>
|
---|
39 | #else
|
---|
40 | #ifdef MAJOR_IN_SYSMACROS
|
---|
41 | #include <sys/sysmacros.h>
|
---|
42 | #endif
|
---|
43 | #endif
|
---|
44 |
|
---|
45 | #ifdef HAVE_MEMORY_H
|
---|
46 | #include <memory.h>
|
---|
47 | #endif
|
---|
48 |
|
---|
49 | #if defined(SH_WITH_CLIENT) || defined(SH_STANDALONE)
|
---|
50 |
|
---|
51 | #include "sh_hash.h"
|
---|
52 | #include "sh_utils.h"
|
---|
53 | #include "sh_error.h"
|
---|
54 | #include "sh_tiger.h"
|
---|
55 | #include "sh_gpg.h"
|
---|
56 | #include "sh_unix.h"
|
---|
57 | #include "sh_files.h"
|
---|
58 | #include "sh_ignore.h"
|
---|
59 | #include "sh_pthread.h"
|
---|
60 |
|
---|
61 | #if defined(SH_WITH_CLIENT)
|
---|
62 | #include "sh_forward.h"
|
---|
63 | #endif
|
---|
64 |
|
---|
65 |
|
---|
66 | #define SH_KEY_NULL _("000000000000000000000000000000000000000000000000")
|
---|
67 |
|
---|
68 |
|
---|
69 | #undef FIL__
|
---|
70 | #define FIL__ _("sh_hash.c")
|
---|
71 |
|
---|
72 | SH_MUTEX_STATIC(mutex_hash,PTHREAD_MUTEX_INITIALIZER);
|
---|
73 |
|
---|
74 | const char notalink[2] = { '-', '\0' };
|
---|
75 |
|
---|
76 | static char * all_items (file_type * theFile, char * fileHash, int is_new);
|
---|
77 |
|
---|
78 | #define QUOTE_CHAR '='
|
---|
79 |
|
---|
80 | char * unquote_string (const char * str, size_t len)
|
---|
81 | {
|
---|
82 | int i = 0, t1, t2;
|
---|
83 | char * tmp = NULL;
|
---|
84 | size_t l2, j, k = 0;
|
---|
85 |
|
---|
86 | SL_ENTER(_("unquote_string"));
|
---|
87 |
|
---|
88 | if (str != NULL)
|
---|
89 | {
|
---|
90 | l2 = len - 2;
|
---|
91 | tmp = SH_ALLOC(len + 1);
|
---|
92 |
|
---|
93 | for (j = 0; j <= len; ++j)
|
---|
94 | {
|
---|
95 | if (str[j] != QUOTE_CHAR)
|
---|
96 | {
|
---|
97 | tmp[k] = str[j];
|
---|
98 | }
|
---|
99 | else if (str[j] == QUOTE_CHAR && j < l2)
|
---|
100 | {
|
---|
101 | t1 = sh_util_hexchar(str[j+1]);
|
---|
102 | t2 = sh_util_hexchar(str[j+2]);
|
---|
103 | if ((t1|t2) >= 0)
|
---|
104 | {
|
---|
105 | i = 16 * t1 + t2;
|
---|
106 | tmp[k] = i;
|
---|
107 | j += 2;
|
---|
108 | }
|
---|
109 | else
|
---|
110 | {
|
---|
111 | tmp[k] = str[j];
|
---|
112 | }
|
---|
113 | }
|
---|
114 | else
|
---|
115 | tmp[k] = str[j];
|
---|
116 | ++k;
|
---|
117 | }
|
---|
118 | }
|
---|
119 | SL_RETURN(tmp, _("unquote_string"));
|
---|
120 | }
|
---|
121 |
|
---|
122 |
|
---|
123 | static char * int2hex (unsigned char i, char * i2h)
|
---|
124 | {
|
---|
125 | static char hexchars[] = "0123456789ABCDEF";
|
---|
126 |
|
---|
127 | i2h[0] = hexchars[(((i) & 0xF0) >> 4)]; /* high */
|
---|
128 | i2h[1] = hexchars[((i) & 0x0F)]; /* low */
|
---|
129 |
|
---|
130 | return i2h;
|
---|
131 | }
|
---|
132 |
|
---|
133 |
|
---|
134 | char * quote_string (const char * str, size_t len)
|
---|
135 | {
|
---|
136 | char * tmp;
|
---|
137 | char * tmp2;
|
---|
138 | size_t l2, j, i = 0, k = 0;
|
---|
139 | char i2h[2];
|
---|
140 |
|
---|
141 | SL_ENTER(_("quote_string"));
|
---|
142 |
|
---|
143 | if (str == NULL)
|
---|
144 | {
|
---|
145 | SL_RETURN(NULL, _("quote_string"));
|
---|
146 | }
|
---|
147 |
|
---|
148 | for (j = 0; j < len; ++j)
|
---|
149 | if (str[j] == '\n' || str[j] == QUOTE_CHAR) ++i;
|
---|
150 |
|
---|
151 | l2 = len + 1;
|
---|
152 | if (sl_ok_muls(3, i) && sl_ok_adds(l2, (3*i)))
|
---|
153 | {
|
---|
154 | tmp = SH_ALLOC(len + 1 + 3*i);
|
---|
155 | }
|
---|
156 | else
|
---|
157 | {
|
---|
158 | sh_error_handle((-1), FIL__, __LINE__, -1, MSG_E_SUBGEN,
|
---|
159 | _("integer overflow"),
|
---|
160 | _("quote_string"));
|
---|
161 | SL_RETURN(NULL, _("quote_string"));
|
---|
162 | }
|
---|
163 |
|
---|
164 | for (j = 0; j <= len; ++j)
|
---|
165 | {
|
---|
166 | if (str[j] == '\n')
|
---|
167 | {
|
---|
168 | tmp2 = int2hex((unsigned char) '\n', i2h); /* was 'n', fixed in 1.5.4 */
|
---|
169 | tmp[k] = QUOTE_CHAR; ++k;
|
---|
170 | tmp[k] = tmp2[0]; ++k;
|
---|
171 | tmp[k] = tmp2[1];
|
---|
172 | }
|
---|
173 | else if (str[j] == QUOTE_CHAR)
|
---|
174 | {
|
---|
175 | tmp2 = int2hex((unsigned char) QUOTE_CHAR, i2h);
|
---|
176 | tmp[k] = QUOTE_CHAR; ++k;
|
---|
177 | tmp[k] = tmp2[0]; ++k;
|
---|
178 | tmp[k] = tmp2[1];
|
---|
179 | }
|
---|
180 | else
|
---|
181 | {
|
---|
182 | tmp[k] = str[j];
|
---|
183 | }
|
---|
184 | ++k;
|
---|
185 | }
|
---|
186 | SL_RETURN(tmp, _("quote_string"));
|
---|
187 | }
|
---|
188 |
|
---|
189 | static UINT32 * swap_32 (UINT32 * iptr)
|
---|
190 | {
|
---|
191 | #ifdef WORDS_BIGENDIAN
|
---|
192 | unsigned char swap;
|
---|
193 | unsigned char * ii = (unsigned char *) iptr;
|
---|
194 | swap = ii[0]; ii[0] = ii[3]; ii[3] = swap;
|
---|
195 | swap = ii[1]; ii[1] = ii[2]; ii[2] = swap;
|
---|
196 | return iptr;
|
---|
197 | #else
|
---|
198 | return iptr;
|
---|
199 | #endif
|
---|
200 | }
|
---|
201 |
|
---|
202 | static UINT64 * swap_64 (UINT64 * iptr)
|
---|
203 | {
|
---|
204 | #ifdef WORDS_BIGENDIAN
|
---|
205 | #ifdef UINT64_IS_32
|
---|
206 | swap_32 ((UINT32*) iptr);
|
---|
207 | #else
|
---|
208 | unsigned char swap;
|
---|
209 | unsigned char * ii = (unsigned char *) iptr;
|
---|
210 | swap = ii[0]; ii[0] = ii[7]; ii[7] = swap;
|
---|
211 | swap = ii[1]; ii[1] = ii[6]; ii[6] = swap;
|
---|
212 | swap = ii[2]; ii[2] = ii[5]; ii[5] = swap;
|
---|
213 | swap = ii[3]; ii[3] = ii[4]; ii[4] = swap;
|
---|
214 | #endif
|
---|
215 | return iptr;
|
---|
216 | #else
|
---|
217 | return iptr;
|
---|
218 | #endif
|
---|
219 | }
|
---|
220 |
|
---|
221 | static unsigned short * swap_short (unsigned short * iptr)
|
---|
222 | {
|
---|
223 | #ifdef WORDS_BIGENDIAN
|
---|
224 | if (sizeof(short) == 4)
|
---|
225 | swap_32 ((UINT32*) iptr);
|
---|
226 | else
|
---|
227 | {
|
---|
228 | /* alignment problem */
|
---|
229 | unsigned char swap;
|
---|
230 | static unsigned short ooop;
|
---|
231 | unsigned char * ii;
|
---|
232 | ooop = *iptr;
|
---|
233 | ii = (unsigned char *) &ooop;
|
---|
234 | /* printf("SWAP0: %hd %d\n", *iptr, sizeof(unsigned short)); */
|
---|
235 | swap = ii[0]; ii[0] = ii[1]; ii[1] = swap;
|
---|
236 | /* printf("SWAP1: %hd\n", (unsigned short) ooop); */
|
---|
237 | #ifndef OLD_BUG
|
---|
238 | return &ooop;
|
---|
239 | #endif
|
---|
240 | }
|
---|
241 | return iptr;
|
---|
242 | #else
|
---|
243 | return iptr;
|
---|
244 | #endif
|
---|
245 | }
|
---|
246 |
|
---|
247 |
|
---|
248 | /* MAX_PATH_STORE must be >= KEY_LEN
|
---|
249 | */
|
---|
250 | #define MAX_PATH_STORE 12287
|
---|
251 |
|
---|
252 | typedef struct store_info {
|
---|
253 |
|
---|
254 | UINT32 mode;
|
---|
255 | UINT32 linkmode;
|
---|
256 |
|
---|
257 | UINT64 dev;
|
---|
258 | UINT64 rdev;
|
---|
259 | UINT32 hardlinks;
|
---|
260 | UINT32 ino;
|
---|
261 | UINT64 size;
|
---|
262 | UINT64 atime;
|
---|
263 | UINT64 mtime;
|
---|
264 | UINT64 ctime;
|
---|
265 | UINT32 owner;
|
---|
266 | UINT32 group;
|
---|
267 |
|
---|
268 | #ifdef OLD_BUG
|
---|
269 | #if defined(__linux__)
|
---|
270 | UINT32 attributes;
|
---|
271 | char c_attributes[ATTRBUF_SIZE];
|
---|
272 | #endif
|
---|
273 | #else
|
---|
274 | /* #if defined(__linux__) */
|
---|
275 | UINT32 attributes;
|
---|
276 | char c_attributes[ATTRBUF_SIZE];
|
---|
277 | /* endif */
|
---|
278 | #endif
|
---|
279 | unsigned short mark;
|
---|
280 | char c_owner[USER_MAX+2];
|
---|
281 | char c_group[GROUP_MAX+2];
|
---|
282 | char c_mode[CMODE_SIZE];
|
---|
283 | char checksum[KEY_LEN+1];
|
---|
284 | } sh_filestore_t;
|
---|
285 |
|
---|
286 | typedef struct file_info {
|
---|
287 | sh_filestore_t theFile;
|
---|
288 | char * fullpath;
|
---|
289 | char * linkpath;
|
---|
290 | char * attr_string;
|
---|
291 | int fflags;
|
---|
292 | unsigned long modi_mask;
|
---|
293 | struct file_info * next;
|
---|
294 | } sh_file_t;
|
---|
295 |
|
---|
296 | static char *policy[] = {
|
---|
297 | N_("[]"),
|
---|
298 | N_("[ReadOnly]"),
|
---|
299 | N_("[LogFiles]"),
|
---|
300 | N_("[GrowingLogs]"),
|
---|
301 | N_("[IgnoreNone]"),
|
---|
302 | N_("[IgnoreAll]"),
|
---|
303 | N_("[Attributes]"),
|
---|
304 | N_("[User0]"),
|
---|
305 | N_("[User1]"),
|
---|
306 | N_("[User2]"),
|
---|
307 | N_("[User3]"),
|
---|
308 | N_("[User4]"),
|
---|
309 | N_("[Prelink]"),
|
---|
310 | NULL
|
---|
311 | };
|
---|
312 |
|
---|
313 |
|
---|
314 | /**********************************
|
---|
315 | *
|
---|
316 | * hash table functions
|
---|
317 | *
|
---|
318 | **********************************
|
---|
319 | */
|
---|
320 |
|
---|
321 | #include "sh_hash.h"
|
---|
322 |
|
---|
323 | /* must fit an int */
|
---|
324 | /* #define TABSIZE 2048 */
|
---|
325 | #define TABSIZE 65536
|
---|
326 |
|
---|
327 | /* must fit an unsigned short */
|
---|
328 | /* changed for V0.8, as the */
|
---|
329 | /* database format has changed */
|
---|
330 |
|
---|
331 | /* changed again for V0.9 */
|
---|
332 | /* #define REC_MAGIC 19 */
|
---|
333 | /* changed again for V1.3 */
|
---|
334 | #ifdef OLD_BUG
|
---|
335 | #define REC_MAGIC 20
|
---|
336 | #else
|
---|
337 | /* changed again for V1.4 */
|
---|
338 | #define REC_MAGIC 21
|
---|
339 | #endif
|
---|
340 |
|
---|
341 | #define REC_FLAGS_ATTR (1<<8)
|
---|
342 | #define REC_FLAGS_MASK 0xFF00
|
---|
343 |
|
---|
344 | /**************************************************************
|
---|
345 | *
|
---|
346 | * create a file_type from a sh_file_t
|
---|
347 | *
|
---|
348 | **************************************************************/
|
---|
349 | static file_type * sh_hash_create_ft (const sh_file_t * p, char * fileHash)
|
---|
350 | {
|
---|
351 | file_type * theFile;
|
---|
352 |
|
---|
353 | SL_ENTER(_("sh_hash_create_ft"));
|
---|
354 |
|
---|
355 | theFile = SH_ALLOC(sizeof(file_type));
|
---|
356 |
|
---|
357 | sl_strlcpy(theFile->c_mode, p->theFile.c_mode, 11);
|
---|
358 | theFile->mode = p->theFile.mode;
|
---|
359 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
360 | sl_strlcpy(theFile->c_attributes, p->theFile.c_attributes, ATTRBUF_SIZE);
|
---|
361 | theFile->attributes = p->theFile.attributes;
|
---|
362 | #endif
|
---|
363 |
|
---|
364 | sl_strlcpy(theFile->fullpath, p->fullpath, PATH_MAX);
|
---|
365 | if (p->linkpath != NULL /* && theFile->c_mode[0] == 'l' */)
|
---|
366 | {
|
---|
367 | theFile->link_path = sh_util_strdup(p->linkpath);
|
---|
368 | }
|
---|
369 | else
|
---|
370 | {
|
---|
371 | theFile->link_path = NULL;
|
---|
372 | }
|
---|
373 | sl_strlcpy(fileHash, p->theFile.checksum, KEY_LEN+1);
|
---|
374 |
|
---|
375 | theFile->mtime = p->theFile.mtime;
|
---|
376 | theFile->ctime = p->theFile.ctime;
|
---|
377 | theFile->atime = p->theFile.atime;
|
---|
378 |
|
---|
379 | theFile->size = p->theFile.size;
|
---|
380 |
|
---|
381 | sl_strlcpy(theFile->c_group, p->theFile.c_group, GROUP_MAX+2);
|
---|
382 | theFile->group = p->theFile.group;
|
---|
383 | sl_strlcpy(theFile->c_owner, p->theFile.c_owner, USER_MAX+2);
|
---|
384 | theFile->owner = p->theFile.owner;
|
---|
385 |
|
---|
386 | theFile->ino = p->theFile.ino;
|
---|
387 | theFile->rdev = p->theFile.rdev;
|
---|
388 | theFile->dev = p->theFile.dev;
|
---|
389 | theFile->hardlinks = p->theFile.hardlinks;
|
---|
390 |
|
---|
391 | if (p->attr_string)
|
---|
392 | theFile->attr_string = sh_util_strdup(p->attr_string);
|
---|
393 | else
|
---|
394 | theFile->attr_string = NULL;
|
---|
395 |
|
---|
396 | SL_RETURN((theFile), _("sh_hash_create_ft"));
|
---|
397 | }
|
---|
398 |
|
---|
399 | static sh_file_t * hashsearch (char * s);
|
---|
400 |
|
---|
401 | static sh_file_t * tab[TABSIZE];
|
---|
402 |
|
---|
403 | /**************************************************************
|
---|
404 | *
|
---|
405 | * compute hash function
|
---|
406 | *
|
---|
407 | **************************************************************/
|
---|
408 |
|
---|
409 | static int hashfunc(char *s)
|
---|
410 | {
|
---|
411 | unsigned int n = 0;
|
---|
412 |
|
---|
413 | for ( ; *s; s++)
|
---|
414 | n = 31 * n + *s;
|
---|
415 |
|
---|
416 | return n & (TABSIZE - 1); /* % TABSIZE */;
|
---|
417 | }
|
---|
418 |
|
---|
419 |
|
---|
420 | int hashreport_missing( char *fullpath, int level)
|
---|
421 | {
|
---|
422 | sh_file_t * p;
|
---|
423 | char * tmp;
|
---|
424 | char fileHash[KEY_LEN + 1];
|
---|
425 | file_type * theFile;
|
---|
426 | char * str;
|
---|
427 | char hashbuf[KEYBUF_SIZE];
|
---|
428 | int retval = 0;
|
---|
429 |
|
---|
430 | /* -------- find the entry for the file ---------------- */
|
---|
431 |
|
---|
432 | SH_MUTEX_LOCK(mutex_hash);
|
---|
433 |
|
---|
434 | if (sl_strlen(fullpath) <= MAX_PATH_STORE)
|
---|
435 | p = hashsearch(fullpath);
|
---|
436 | else
|
---|
437 | p = hashsearch( sh_tiger_hash(fullpath,
|
---|
438 | TIGER_DATA,
|
---|
439 | sl_strlen(fullpath),
|
---|
440 | hashbuf, sizeof(hashbuf))
|
---|
441 | );
|
---|
442 | if (p == NULL)
|
---|
443 | {
|
---|
444 | retval = -1;
|
---|
445 | goto unlock_and_return;
|
---|
446 | }
|
---|
447 |
|
---|
448 | theFile = sh_hash_create_ft (p, fileHash);
|
---|
449 | str = all_items(theFile, fileHash, 0);
|
---|
450 | tmp = sh_util_safe_name(fullpath);
|
---|
451 | sh_error_handle (level, FIL__, __LINE__, 0,
|
---|
452 | MSG_FI_MISS2, tmp, str);
|
---|
453 | SH_FREE(tmp);
|
---|
454 | SH_FREE(str);
|
---|
455 | if (theFile->attr_string) SH_FREE(theFile->attr_string);
|
---|
456 | if (theFile->link_path) SH_FREE(theFile->link_path);
|
---|
457 | SH_FREE(theFile);
|
---|
458 |
|
---|
459 | unlock_and_return:
|
---|
460 | ; /* 'label at end of compound statement */
|
---|
461 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
462 | return retval;
|
---|
463 | }
|
---|
464 |
|
---|
465 |
|
---|
466 | /**************************************************************
|
---|
467 | *
|
---|
468 | * search for files not visited, and check whether they exist
|
---|
469 | *
|
---|
470 | **************************************************************/
|
---|
471 | static void hash_unvisited (int j,
|
---|
472 | sh_file_t *prev, sh_file_t *p, ShErrLevel level)
|
---|
473 | {
|
---|
474 | struct stat buf;
|
---|
475 | int i;
|
---|
476 | char * tmp;
|
---|
477 | char * ptr;
|
---|
478 | char fileHash[KEY_LEN + 1];
|
---|
479 | file_type * theFile;
|
---|
480 |
|
---|
481 | char * str;
|
---|
482 |
|
---|
483 |
|
---|
484 | SL_ENTER(_("hash_unvisited"));
|
---|
485 |
|
---|
486 | if (p->next != NULL)
|
---|
487 | hash_unvisited (j, p, p->next, level);
|
---|
488 |
|
---|
489 | if (p->fullpath == NULL)
|
---|
490 | {
|
---|
491 | SL_RET0(_("hash_unvisited"));
|
---|
492 | }
|
---|
493 |
|
---|
494 | /* Not a fully qualified path, i.e. some info stored by some module
|
---|
495 | */
|
---|
496 | if (p->fullpath[0] != '/')
|
---|
497 | {
|
---|
498 | SL_RET0(_("hash_unvisited"));
|
---|
499 | }
|
---|
500 |
|
---|
501 | /* visited flag not set: not seen;
|
---|
502 | * checked flag set: not seen (i.e. missing), and already checked
|
---|
503 | * reported flag not set: not reported yet
|
---|
504 | * allignore flag not set: not under IgnoreAll
|
---|
505 | *
|
---|
506 | * Files/directories under IgnoreAll are noticed as missing already
|
---|
507 | * during the file check.
|
---|
508 | */
|
---|
509 | if (((!SH_FFLAG_VISITED_SET(p->fflags)) || SH_FFLAG_CHECKED_SET(p->fflags))
|
---|
510 | && (!SH_FFLAG_REPORTED_SET(p->fflags))
|
---|
511 | && (!SH_FFLAG_ALLIGNORE_SET(p->fflags)))
|
---|
512 | {
|
---|
513 | i = retry_lstat(FIL__, __LINE__, p->fullpath, &buf);
|
---|
514 |
|
---|
515 | /* if file does not exist
|
---|
516 | */
|
---|
517 | if (0 != i)
|
---|
518 | {
|
---|
519 | ptr = sh_util_dirname (p->fullpath);
|
---|
520 | if (ptr)
|
---|
521 | {
|
---|
522 | /* If any of the parent directories is under IgnoreAll
|
---|
523 | */
|
---|
524 | if (0 != sh_files_is_allignore(ptr))
|
---|
525 | level = ShDFLevel[SH_LEVEL_ALLIGNORE];
|
---|
526 | SH_FREE(ptr);
|
---|
527 | }
|
---|
528 |
|
---|
529 | /* Only report if !SH_FFLAG_CHECKED_SET
|
---|
530 | */
|
---|
531 | if (!SH_FFLAG_CHECKED_SET(p->fflags))
|
---|
532 | {
|
---|
533 | if (S_FALSE == sh_ignore_chk_del(p->fullpath))
|
---|
534 | {
|
---|
535 | tmp = sh_util_safe_name(p->fullpath);
|
---|
536 |
|
---|
537 | theFile = sh_hash_create_ft (p, fileHash);
|
---|
538 | str = all_items(theFile, fileHash, 0);
|
---|
539 | sh_error_handle (level, FIL__, __LINE__, 0,
|
---|
540 | MSG_FI_MISS2, tmp, str);
|
---|
541 | SH_FREE(str);
|
---|
542 | if (theFile->attr_string) SH_FREE(theFile->attr_string);
|
---|
543 | if (theFile->link_path) SH_FREE(theFile->link_path);
|
---|
544 | SH_FREE(theFile);
|
---|
545 |
|
---|
546 | SH_FREE(tmp);
|
---|
547 | }
|
---|
548 | }
|
---|
549 |
|
---|
550 | /* We rewrite the db on update, thus we need to keep this
|
---|
551 | * if the user does not want to purge it from the db.
|
---|
552 | */
|
---|
553 |
|
---|
554 | if ((sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE) ||
|
---|
555 | (S_TRUE == sh.flag.update && S_TRUE == sh_util_ask_update(p->fullpath)))
|
---|
556 | {
|
---|
557 | #ifdef REPLACE_OLD
|
---|
558 | /* Remove the old entry
|
---|
559 | */
|
---|
560 | if (prev == p)
|
---|
561 | tab[j] = p->next;
|
---|
562 | else
|
---|
563 | prev->next = p->next;
|
---|
564 | if (p->fullpath)
|
---|
565 | {
|
---|
566 | SH_FREE(p->fullpath);
|
---|
567 | p->fullpath = NULL;
|
---|
568 | }
|
---|
569 | if (p->linkpath)
|
---|
570 | {
|
---|
571 | if (p->linkpath != notalink)
|
---|
572 | SH_FREE(p->linkpath);
|
---|
573 | p->linkpath = NULL;
|
---|
574 | }
|
---|
575 | if (p->attr_string)
|
---|
576 | {
|
---|
577 | SH_FREE(p->attr_string);
|
---|
578 | p->attr_string = NULL;
|
---|
579 | }
|
---|
580 | SH_FREE(p);
|
---|
581 | p = NULL;
|
---|
582 | SL_RET0(_("hash_unvisited"));
|
---|
583 | #else
|
---|
584 | SET_SH_FFLAG_REPORTED(p->fflags);
|
---|
585 | #endif
|
---|
586 | }
|
---|
587 | }
|
---|
588 | }
|
---|
589 |
|
---|
590 | else if (SH_FFLAG_VISITED_SET(p->fflags) && SH_FFLAG_REPORTED_SET(p->fflags)
|
---|
591 | && (!SH_FFLAG_ALLIGNORE_SET(p->fflags)))
|
---|
592 | {
|
---|
593 | if (S_FALSE == sh_ignore_chk_new(p->fullpath))
|
---|
594 | {
|
---|
595 | tmp = sh_util_safe_name(p->fullpath);
|
---|
596 |
|
---|
597 | theFile = sh_hash_create_ft (p, fileHash);
|
---|
598 | str = all_items(theFile, fileHash, 0);
|
---|
599 | sh_error_handle (level, FIL__, __LINE__, 0,
|
---|
600 | MSG_FI_MISS2, tmp, str);
|
---|
601 | SH_FREE(str);
|
---|
602 | if (theFile->attr_string)
|
---|
603 | SH_FREE(theFile->attr_string);
|
---|
604 | SH_FREE(theFile);
|
---|
605 |
|
---|
606 | SH_FREE(tmp);
|
---|
607 | }
|
---|
608 |
|
---|
609 | CLEAR_SH_FFLAG_REPORTED(p->fflags);
|
---|
610 | }
|
---|
611 |
|
---|
612 | if (sh.flag.reportonce == S_FALSE)
|
---|
613 | CLEAR_SH_FFLAG_REPORTED(p->fflags);
|
---|
614 |
|
---|
615 | CLEAR_SH_FFLAG_VISITED(p->fflags);
|
---|
616 | CLEAR_SH_FFLAG_CHECKED(p->fflags);
|
---|
617 |
|
---|
618 | SL_RET0(_("hash_unvisited"));
|
---|
619 | }
|
---|
620 |
|
---|
621 |
|
---|
622 | /*********************************************************************
|
---|
623 | *
|
---|
624 | * Search for files in the database that have been deleted from disk.
|
---|
625 | *
|
---|
626 | *********************************************************************/
|
---|
627 | void sh_hash_unvisited (ShErrLevel level)
|
---|
628 | {
|
---|
629 | int i;
|
---|
630 |
|
---|
631 | SL_ENTER(_("sh_hash_unvisited"));
|
---|
632 |
|
---|
633 | SH_MUTEX_LOCK(mutex_hash);
|
---|
634 | for (i = 0; i < TABSIZE; ++i)
|
---|
635 | {
|
---|
636 | if (tab[i] != NULL)
|
---|
637 | hash_unvisited (i, tab[i], tab[i], level);
|
---|
638 | }
|
---|
639 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
640 |
|
---|
641 | SL_RET0(_("hash_unvisited"));
|
---|
642 | }
|
---|
643 |
|
---|
644 |
|
---|
645 | /**********************************************************************
|
---|
646 | *
|
---|
647 | * delete hash array
|
---|
648 | *
|
---|
649 | **********************************************************************/
|
---|
650 | static void hash_kill (sh_file_t *p)
|
---|
651 | {
|
---|
652 | SL_ENTER(_("hash_kill"));
|
---|
653 |
|
---|
654 | if (p == NULL)
|
---|
655 | SL_RET0(_("hash_kill"));
|
---|
656 |
|
---|
657 | if (p->next != NULL)
|
---|
658 | hash_kill (p->next);
|
---|
659 |
|
---|
660 | if (p->fullpath)
|
---|
661 | {
|
---|
662 | SH_FREE(p->fullpath);
|
---|
663 | p->fullpath = NULL;
|
---|
664 | }
|
---|
665 | if (p->linkpath)
|
---|
666 | {
|
---|
667 | if (p->linkpath != notalink)
|
---|
668 | SH_FREE(p->linkpath);
|
---|
669 | p->linkpath = NULL;
|
---|
670 | }
|
---|
671 | if (p->attr_string)
|
---|
672 | {
|
---|
673 | SH_FREE(p->attr_string);
|
---|
674 | p->attr_string = NULL;
|
---|
675 | }
|
---|
676 | SH_FREE(p);
|
---|
677 | p = NULL;
|
---|
678 | SL_RET0(_("hash_kill"));
|
---|
679 | }
|
---|
680 |
|
---|
681 |
|
---|
682 | /***********************************************************************
|
---|
683 | *
|
---|
684 | * get info out of hash array
|
---|
685 | *
|
---|
686 | ***********************************************************************/
|
---|
687 | static sh_file_t * hashsearch (char * s)
|
---|
688 | {
|
---|
689 | sh_file_t * p;
|
---|
690 |
|
---|
691 | SL_ENTER(_("hashsearch"));
|
---|
692 |
|
---|
693 | if (s)
|
---|
694 | {
|
---|
695 | for (p = tab[hashfunc(s)]; p; p = p->next)
|
---|
696 | if ((p->fullpath != NULL) && (0 == strcmp(s, p->fullpath)))
|
---|
697 | SL_RETURN( p, _("hashsearch"));
|
---|
698 | }
|
---|
699 | SL_RETURN( NULL, _("hashsearch"));
|
---|
700 | }
|
---|
701 |
|
---|
702 |
|
---|
703 | /***********************************************************************
|
---|
704 | *
|
---|
705 | * insert into hash array
|
---|
706 | *
|
---|
707 | ***********************************************************************/
|
---|
708 | static void hashinsert (sh_file_t * s)
|
---|
709 | {
|
---|
710 | sh_file_t * p;
|
---|
711 | sh_file_t * q;
|
---|
712 | int key;
|
---|
713 |
|
---|
714 | SL_ENTER(_("hashinsert"));
|
---|
715 |
|
---|
716 | key = hashfunc(s->fullpath);
|
---|
717 |
|
---|
718 | if (tab[key] == NULL)
|
---|
719 | {
|
---|
720 | tab[key] = s;
|
---|
721 | tab[key]->next = NULL;
|
---|
722 | SL_RET0(_("hashinsert"));
|
---|
723 | }
|
---|
724 | else
|
---|
725 | {
|
---|
726 | p = tab[key];
|
---|
727 | while (1)
|
---|
728 | {
|
---|
729 | if (p && p->fullpath &&
|
---|
730 | 0 == strcmp(s->fullpath, p->fullpath))
|
---|
731 | {
|
---|
732 | q = p->next;
|
---|
733 | SH_FREE(p->fullpath);
|
---|
734 | if(p->linkpath && p->linkpath != notalink)
|
---|
735 | SH_FREE(p->linkpath);
|
---|
736 | if(p->attr_string)
|
---|
737 | SH_FREE(p->attr_string);
|
---|
738 | memcpy(p, s, sizeof(sh_file_t));
|
---|
739 | p->next = q;
|
---|
740 | SH_FREE(s);
|
---|
741 | s = NULL;
|
---|
742 | SL_RET0(_("hashinsert"));
|
---|
743 | }
|
---|
744 | else
|
---|
745 | if (p->next == NULL)
|
---|
746 | {
|
---|
747 | p->next = s;
|
---|
748 | p->next->next = NULL;
|
---|
749 | SL_RET0(_("hashinsert"));
|
---|
750 | }
|
---|
751 | p = p->next;
|
---|
752 | }
|
---|
753 | }
|
---|
754 | /* notreached */
|
---|
755 | }
|
---|
756 |
|
---|
757 |
|
---|
758 | /******************************************************************
|
---|
759 | *
|
---|
760 | * Get a single line
|
---|
761 | *
|
---|
762 | ******************************************************************/
|
---|
763 | static FILE * sh_fin_fd = NULL;
|
---|
764 |
|
---|
765 | static int sh_hash_getline (FILE * fd, char * line, int sizeofline)
|
---|
766 | {
|
---|
767 | register int n = 0;
|
---|
768 | char * res;
|
---|
769 |
|
---|
770 | if (sizeofline < 2) {
|
---|
771 | if (sizeofline > 0) line[0] = '\0';
|
---|
772 | return 0;
|
---|
773 | }
|
---|
774 | res = fgets(line, sizeofline, fd);
|
---|
775 | if (res == NULL)
|
---|
776 | {
|
---|
777 | line[0] = '\0';
|
---|
778 | return -1;
|
---|
779 | }
|
---|
780 | n = strlen(line);
|
---|
781 | if (n > 0) {
|
---|
782 | --n;
|
---|
783 | line[n] = '\0'; /* remove terminating '\n' */
|
---|
784 | }
|
---|
785 | return n;
|
---|
786 | }
|
---|
787 |
|
---|
788 | static void sh_hash_getline_end ()
|
---|
789 | {
|
---|
790 | fclose (sh_fin_fd);
|
---|
791 | sh_fin_fd = NULL;
|
---|
792 | return;
|
---|
793 | }
|
---|
794 |
|
---|
795 | /******************************************************************
|
---|
796 | *
|
---|
797 | * ------- Check functions -------
|
---|
798 | *
|
---|
799 | ******************************************************************/
|
---|
800 |
|
---|
801 | static int IsInit = 0;
|
---|
802 |
|
---|
803 |
|
---|
804 | /******************************************************************
|
---|
805 | *
|
---|
806 | * Fast forward to start of data
|
---|
807 | *
|
---|
808 | ******************************************************************/
|
---|
809 | int sh_hash_setdataent (SL_TICKET fd, char * line, int size, const char * file)
|
---|
810 | {
|
---|
811 | long i;
|
---|
812 | extern int get_the_fd (SL_TICKET ticket);
|
---|
813 |
|
---|
814 | SL_ENTER(_("sh_hash_setdataent"));
|
---|
815 |
|
---|
816 | sl_rewind (fd);
|
---|
817 |
|
---|
818 | if (sh_fin_fd != NULL)
|
---|
819 | {
|
---|
820 | fclose (sh_fin_fd);
|
---|
821 | sh_fin_fd = NULL;
|
---|
822 | }
|
---|
823 |
|
---|
824 | sh_fin_fd = fdopen(get_the_fd(fd), "rb");
|
---|
825 | if (!sh_fin_fd)
|
---|
826 | {
|
---|
827 | dlog(1, FIL__, __LINE__,
|
---|
828 | _("The file signature database: %s is not readable.\n"),
|
---|
829 | (NULL == file) ? _("(null)") : file);
|
---|
830 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_P_NODATA,
|
---|
831 | ( (NULL == file) ? _("(null)") : file)
|
---|
832 | );
|
---|
833 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
834 | }
|
---|
835 |
|
---|
836 | while (1)
|
---|
837 | {
|
---|
838 | i = sh_hash_getline (sh_fin_fd, line, size);
|
---|
839 | if (i < 0 )
|
---|
840 | {
|
---|
841 | SH_FREE(line);
|
---|
842 | dlog(1, FIL__, __LINE__,
|
---|
843 | _("The file signature database: %s does not\ncontain any data, or the start-of-file marker is missing (unlikely,\nunless modified by hand).\n"),
|
---|
844 | (NULL == file) ? _("(null)") : file);
|
---|
845 |
|
---|
846 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_P_NODATA,
|
---|
847 | ( (NULL == file) ? _("(null)") : file)
|
---|
848 | );
|
---|
849 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
850 | }
|
---|
851 |
|
---|
852 | #if defined(SH_STEALTH)
|
---|
853 | if (0 == sl_strncmp (line, N_("[SOF]"), 5))
|
---|
854 | #else
|
---|
855 | if (0 == sl_strncmp (line, _("[SOF]"), 5))
|
---|
856 | #endif
|
---|
857 | break;
|
---|
858 | }
|
---|
859 | SL_RETURN( 1, _("sh_hash_setdataent"));
|
---|
860 | }
|
---|
861 |
|
---|
862 | static int sh_hash_setdataent_old (SL_TICKET fd, char * line, int size,
|
---|
863 | char * file)
|
---|
864 | {
|
---|
865 | long i;
|
---|
866 |
|
---|
867 | SL_ENTER(_("sh_hash_setdataent_old"));
|
---|
868 |
|
---|
869 | sl_rewind (fd);
|
---|
870 |
|
---|
871 | while (1)
|
---|
872 | {
|
---|
873 | i = sh_unix_getline (fd, line, size-1);
|
---|
874 | if (i < 0 )
|
---|
875 | {
|
---|
876 | SH_FREE(line);
|
---|
877 | dlog(1, FIL__, __LINE__,
|
---|
878 | _("The file signature database: %s does not\ncontain any data, or the start-of-file marker is missing (unlikely,\nunless modified by hand).\n"),
|
---|
879 | (NULL == file) ? _("(null)") : file);
|
---|
880 |
|
---|
881 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_P_NODATA,
|
---|
882 | ( (NULL == file) ? _("(null)") : file)
|
---|
883 | );
|
---|
884 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
885 | }
|
---|
886 |
|
---|
887 | #if defined(SH_STEALTH)
|
---|
888 | if (0 == sl_strncmp (line, N_("[SOF]"), 5))
|
---|
889 | #else
|
---|
890 | if (0 == sl_strncmp (line, _("[SOF]"), 5))
|
---|
891 | #endif
|
---|
892 | break;
|
---|
893 | }
|
---|
894 | SL_RETURN( 1, _("sh_hash_setdataent_old"));
|
---|
895 | }
|
---|
896 |
|
---|
897 | /******************************************************************
|
---|
898 | *
|
---|
899 | * Read next record
|
---|
900 | *
|
---|
901 | ******************************************************************/
|
---|
902 | sh_file_t * sh_hash_getdataent (SL_TICKET fd, char * line, int size)
|
---|
903 | {
|
---|
904 | sh_file_t * p;
|
---|
905 | sh_filestore_t ft;
|
---|
906 | long i;
|
---|
907 | size_t len;
|
---|
908 | char * fullpath;
|
---|
909 | char * linkpath;
|
---|
910 | char * attr_string = NULL;
|
---|
911 | char * tmp;
|
---|
912 |
|
---|
913 | SL_ENTER(_("sh_hash_getdataent"));
|
---|
914 |
|
---|
915 | (void) fd;
|
---|
916 |
|
---|
917 | /* Read next record -- Part One
|
---|
918 | */
|
---|
919 | p = SH_ALLOC(sizeof(sh_file_t));
|
---|
920 |
|
---|
921 | i = fread (&ft, sizeof(sh_filestore_t), 1, sh_fin_fd);
|
---|
922 | /* i = sl_read(fd, &ft, sizeof(sh_filestore_t)); */
|
---|
923 | /* if ( SL_ISERROR(i) || i == 0) */
|
---|
924 | if (i < 1)
|
---|
925 | {
|
---|
926 | SH_FREE(p);
|
---|
927 | SL_RETURN( NULL, _("sh_hash_getdataent"));
|
---|
928 | }
|
---|
929 |
|
---|
930 | swap_32(&(ft.mode));
|
---|
931 | swap_32(&(ft.linkmode));
|
---|
932 | swap_64(&(ft.dev));
|
---|
933 | swap_64(&(ft.rdev));
|
---|
934 | swap_32(&(ft.hardlinks));
|
---|
935 | swap_32(&(ft.ino));
|
---|
936 | swap_64(&(ft.size));
|
---|
937 | swap_64(&(ft.atime));
|
---|
938 | swap_64(&(ft.mtime));
|
---|
939 | swap_64(&(ft.ctime));
|
---|
940 | swap_32(&(ft.owner));
|
---|
941 | swap_32(&(ft.group));
|
---|
942 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
943 | swap_32(&(ft.attributes));
|
---|
944 | #endif
|
---|
945 | #ifdef OLD_BUG
|
---|
946 | swap_short(&(ft.mark));
|
---|
947 | #else
|
---|
948 | ft.mark = *(swap_short(&(ft.mark)));
|
---|
949 | #endif
|
---|
950 |
|
---|
951 | if ((ft.mark & ~REC_FLAGS_MASK) != REC_MAGIC)
|
---|
952 | {
|
---|
953 | SH_FREE(p);
|
---|
954 | SL_RETURN( NULL, _("sh_hash_getdataent"));
|
---|
955 | }
|
---|
956 |
|
---|
957 | /* Read next record -- Part Two -- Fullpath
|
---|
958 | */
|
---|
959 | i = sh_hash_getline (sh_fin_fd, line, size);
|
---|
960 | if (i <= 0 )
|
---|
961 | {
|
---|
962 | SH_FREE(line);
|
---|
963 | SH_FREE(p);
|
---|
964 | dlog(1, FIL__, __LINE__,
|
---|
965 | _("There is a corrupt record in the file signature database: %s\nThe file path is missing.\n"),
|
---|
966 | (NULL == file_path('D', 'R'))? _("(null)"):file_path('D', 'R'));
|
---|
967 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_P_NODATA,
|
---|
968 | ( (NULL == file_path('D', 'R')) ? _("(null)") :
|
---|
969 | file_path('D', 'R'))
|
---|
970 | );
|
---|
971 | aud_exit (FIL__, __LINE__,EXIT_FAILURE);
|
---|
972 | }
|
---|
973 |
|
---|
974 | tmp = unquote_string (line, i);
|
---|
975 | len = sl_strlen(tmp)+1;
|
---|
976 | fullpath = SH_ALLOC(len);
|
---|
977 | (void) sl_strlcpy (fullpath, tmp, len);
|
---|
978 | if (tmp)
|
---|
979 | SH_FREE(tmp);
|
---|
980 | if (fullpath[len-2] == '\n')
|
---|
981 | fullpath[len-2] = '\0';
|
---|
982 |
|
---|
983 | /* Read next record -- Part Three -- Linkpath
|
---|
984 | */
|
---|
985 | i = sh_hash_getline (sh_fin_fd, line, size);
|
---|
986 | if (i <= 0 )
|
---|
987 | {
|
---|
988 | SH_FREE(line);
|
---|
989 | SH_FREE(fullpath);
|
---|
990 | SH_FREE(p);
|
---|
991 | dlog(1, FIL__, __LINE__,
|
---|
992 | _("There is a corrupt record in the file signature database: %s\nThe link path (or its placeholder) is missing.\n"),
|
---|
993 | (NULL == file_path('D', 'R'))? _("(null)"):file_path('D', 'R'));
|
---|
994 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_P_NODATA,
|
---|
995 | ( (NULL == file_path('D', 'R')) ? _("(null)") :
|
---|
996 | file_path('D', 'R'))
|
---|
997 | );
|
---|
998 | aud_exit (FIL__, __LINE__,EXIT_FAILURE);
|
---|
999 | }
|
---|
1000 |
|
---|
1001 | tmp = unquote_string (line, i);
|
---|
1002 |
|
---|
1003 | if ( tmp && tmp[0] == '-' &&
|
---|
1004 | (tmp[1] == '\0' || (tmp[1] == '\n' && tmp[2] == '\0')))
|
---|
1005 | {
|
---|
1006 | linkpath = (char *)notalink;
|
---|
1007 | }
|
---|
1008 | else
|
---|
1009 | {
|
---|
1010 | len = sl_strlen(tmp);
|
---|
1011 | linkpath = sh_util_strdup_l(tmp, len);
|
---|
1012 | if (len > 0 && linkpath[len-1] == '\n')
|
---|
1013 | linkpath[len-1] = '\0';
|
---|
1014 | }
|
---|
1015 |
|
---|
1016 | if (tmp)
|
---|
1017 | SH_FREE(tmp);
|
---|
1018 |
|
---|
1019 | /* Read next record -- Part Four -- attr_string
|
---|
1020 | */
|
---|
1021 | if ((ft.mark & REC_FLAGS_ATTR) != 0)
|
---|
1022 | {
|
---|
1023 | i = sh_hash_getline (sh_fin_fd, line, size);
|
---|
1024 | if (i <= 0 )
|
---|
1025 | {
|
---|
1026 | SH_FREE(line);
|
---|
1027 | SH_FREE(fullpath);
|
---|
1028 | if (linkpath != notalink)
|
---|
1029 | SH_FREE(linkpath);
|
---|
1030 | SH_FREE(p);
|
---|
1031 | dlog(1, FIL__, __LINE__,
|
---|
1032 | _("There is a corrupt record in the file signature database: %s\nThe attribute string is missing.\n"),
|
---|
1033 | (NULL == file_path('D', 'R'))? _("(null)"):file_path('D', 'R'));
|
---|
1034 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_P_NODATA,
|
---|
1035 | ( (NULL == file_path('D', 'R')) ? _("(null)") :
|
---|
1036 | file_path('D', 'R'))
|
---|
1037 | );
|
---|
1038 | aud_exit (FIL__, __LINE__,EXIT_FAILURE);
|
---|
1039 | }
|
---|
1040 |
|
---|
1041 | tmp = unquote_string (line, i);
|
---|
1042 |
|
---|
1043 | len = sl_strlen(tmp)+1;
|
---|
1044 | attr_string = SH_ALLOC(len);
|
---|
1045 | (void) sl_strlcpy (attr_string, tmp, len);
|
---|
1046 | if (tmp)
|
---|
1047 | SH_FREE(tmp);
|
---|
1048 | if (attr_string[len-2] == '\n')
|
---|
1049 | attr_string[len-2] = '\0';
|
---|
1050 | }
|
---|
1051 |
|
---|
1052 | /* Read next record -- Part Four -- Decode
|
---|
1053 | */
|
---|
1054 | #if defined(SH_STEALTH)
|
---|
1055 | sh_do_decode(fullpath, sl_strlen(fullpath));
|
---|
1056 |
|
---|
1057 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
1058 | sh_do_decode(ft.c_attributes, sl_strlen(ft.c_attributes));
|
---|
1059 | #endif
|
---|
1060 |
|
---|
1061 | sh_do_decode(ft.c_mode, sl_strlen(ft.c_mode));
|
---|
1062 | sh_do_decode(ft.c_owner, sl_strlen(ft.c_owner));
|
---|
1063 | sh_do_decode(ft.c_group, sl_strlen(ft.c_group));
|
---|
1064 | sh_do_decode(ft.checksum, sl_strlen(ft.checksum));
|
---|
1065 |
|
---|
1066 |
|
---|
1067 | if (ft.c_mode[0] == 'l' && linkpath != notalink)
|
---|
1068 | {
|
---|
1069 | sh_do_decode(linkpath, sl_strlen(linkpath));
|
---|
1070 | }
|
---|
1071 | if ((ft.mark & REC_FLAGS_ATTR) != 0)
|
---|
1072 | {
|
---|
1073 | sh_do_decode(attr_string, sl_strlen(attr_string));
|
---|
1074 | }
|
---|
1075 | #endif
|
---|
1076 |
|
---|
1077 | memcpy( &(*p).theFile, &ft, sizeof(sh_filestore_t) );
|
---|
1078 |
|
---|
1079 | /* init fflags, such that suid files in
|
---|
1080 | * database are recognized as such
|
---|
1081 | */
|
---|
1082 | {
|
---|
1083 | mode_t mode = (mode_t) ft.mode;
|
---|
1084 |
|
---|
1085 | if (S_ISREG(mode) &&
|
---|
1086 | (0 !=(S_ISUID & mode) ||
|
---|
1087 | #if defined(HOST_IS_LINUX)
|
---|
1088 | (0 !=(S_ISGID & mode) &&
|
---|
1089 | 0 !=(S_IXGRP & mode))
|
---|
1090 | #else
|
---|
1091 | 0 !=(S_ISGID & mode)
|
---|
1092 | #endif
|
---|
1093 | )
|
---|
1094 | )
|
---|
1095 | p->fflags = SH_FFLAG_SUIDCHK;
|
---|
1096 |
|
---|
1097 | else
|
---|
1098 | p->fflags = 0;
|
---|
1099 | }
|
---|
1100 |
|
---|
1101 | p->modi_mask = 0L;
|
---|
1102 | p->fullpath = fullpath;
|
---|
1103 | p->linkpath = linkpath;
|
---|
1104 |
|
---|
1105 | p->attr_string = attr_string;
|
---|
1106 |
|
---|
1107 | /* set to an invalid value
|
---|
1108 | */
|
---|
1109 | ft.mark = (REC_MAGIC + 5);
|
---|
1110 |
|
---|
1111 | SL_RETURN( p, _("sh_hash_getdataent"));
|
---|
1112 | }
|
---|
1113 |
|
---|
1114 | /******************************************************************
|
---|
1115 | *
|
---|
1116 | * Initialize
|
---|
1117 | *
|
---|
1118 | ******************************************************************/
|
---|
1119 | void sh_hash_init ()
|
---|
1120 | {
|
---|
1121 |
|
---|
1122 | #define FGETS_BUF 16384
|
---|
1123 |
|
---|
1124 | sh_file_t * p;
|
---|
1125 | SL_TICKET fd = (-1);
|
---|
1126 | long i;
|
---|
1127 | int count = 0;
|
---|
1128 | char * line = NULL;
|
---|
1129 |
|
---|
1130 | #if defined(WITH_GPG) || defined(WITH_PGP)
|
---|
1131 | extern int get_the_fd (SL_TICKET ticket);
|
---|
1132 | FILE * fin_cp;
|
---|
1133 |
|
---|
1134 | char * buf = NULL;
|
---|
1135 | int bufc;
|
---|
1136 | int flag_pgp = S_FALSE;
|
---|
1137 | int flag_nohead = S_FALSE;
|
---|
1138 | SL_TICKET fdTmp = (-1);
|
---|
1139 | SL_TICKET open_tmp (void);
|
---|
1140 | #endif
|
---|
1141 | char hashbuf[KEYBUF_SIZE];
|
---|
1142 |
|
---|
1143 | SL_ENTER(_("sh_hash_init"));
|
---|
1144 |
|
---|
1145 | SH_MUTEX_LOCK(mutex_hash);
|
---|
1146 |
|
---|
1147 | if (IsInit == 1)
|
---|
1148 | {
|
---|
1149 | goto unlock_and_return;
|
---|
1150 | }
|
---|
1151 |
|
---|
1152 | #if defined(SH_WITH_CLIENT)
|
---|
1153 |
|
---|
1154 | /* Data file from Server
|
---|
1155 | */
|
---|
1156 |
|
---|
1157 | if (fd == (-1) && 0 == sl_strcmp(file_path('D', 'R'), _("REQ_FROM_SERVER")))
|
---|
1158 | {
|
---|
1159 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_D_DSTART);
|
---|
1160 | fd = sh_forward_req_file(_("DATA"));
|
---|
1161 | if (SL_ISERROR(fd))
|
---|
1162 | {
|
---|
1163 | dlog(1, FIL__, __LINE__,
|
---|
1164 | _("Could not retrieve the file signature database from the server(errnum = %ld).\nPossible reasons include:\n - the server is not running,\n - session key negotiation failed (see the manual for proper setup), or\n - the server cannot access the file.\n"), fd);
|
---|
1165 | sh_error_handle ((-1), FIL__, __LINE__, fd, MSG_EXIT_ABORT1,
|
---|
1166 | sh.prg_name);
|
---|
1167 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
1168 | }
|
---|
1169 | sl_rewind (fd);
|
---|
1170 |
|
---|
1171 | sl_strlcpy (sh.data.hash,
|
---|
1172 | sh_tiger_hash (file_path('C', 'R'),
|
---|
1173 | fd, TIGER_NOLIM, hashbuf, sizeof(hashbuf)),
|
---|
1174 | KEY_LEN+1);
|
---|
1175 | sl_rewind (fd);
|
---|
1176 | }
|
---|
1177 | else
|
---|
1178 | #endif
|
---|
1179 | /* Local data file
|
---|
1180 | */
|
---|
1181 |
|
---|
1182 | if (fd == (-1))
|
---|
1183 | {
|
---|
1184 | if ( SL_ISERROR(fd = sl_open_read(file_path('D', 'R'), SL_YESPRIV)))
|
---|
1185 | {
|
---|
1186 | TPT(( 0, FIL__, __LINE__, _("msg=<Error opening: %s>\n"),
|
---|
1187 | file_path('D', 'R')));
|
---|
1188 | dlog(1, FIL__, __LINE__,
|
---|
1189 | _("Could not open the local file signature database for reading because\nof the following error: %s (errnum = %ld)\nIf this is a permission problem, you need to change file permissions\nto make the file readable for the effective UID: %d\n"),
|
---|
1190 | sl_get_errmsg(), fd, (int) sl_ret_euid());
|
---|
1191 | sh_error_handle ((-1), FIL__, __LINE__, fd, MSG_EXIT_ABORT1,
|
---|
1192 | sh.prg_name);
|
---|
1193 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
1194 | }
|
---|
1195 |
|
---|
1196 | TPT(( 0, FIL__, __LINE__, _("msg=<Opened database: %s>\n"),
|
---|
1197 | file_path('D', 'R')));
|
---|
1198 |
|
---|
1199 | if (0 != sl_strncmp(sh.data.hash,
|
---|
1200 | sh_tiger_hash (file_path('D', 'R'), fd, TIGER_NOLIM,
|
---|
1201 | hashbuf, sizeof(hashbuf)),
|
---|
1202 | KEY_LEN)
|
---|
1203 | && sh.flag.checkSum != SH_CHECK_INIT)
|
---|
1204 | {
|
---|
1205 | dlog(1, FIL__, __LINE__,
|
---|
1206 | _("The checksum of the file signature database has changed since startup: %s -> %s\n"),
|
---|
1207 | sh.data.hash, sh_tiger_hash (file_path('D', 'R'), fd, TIGER_NOLIM,
|
---|
1208 | hashbuf, sizeof(hashbuf)));
|
---|
1209 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_E_AUTH,
|
---|
1210 | ( (NULL == file_path('D', 'R')) ? _("(null)") :
|
---|
1211 | file_path('D', 'R') )
|
---|
1212 | );
|
---|
1213 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
1214 | }
|
---|
1215 | sl_rewind (fd);
|
---|
1216 |
|
---|
1217 | } /* new 1.4.8 */
|
---|
1218 |
|
---|
1219 | if (sig_termfast == 1) /* SIGTERM */
|
---|
1220 | {
|
---|
1221 | TPT((0, FIL__, __LINE__, _("msg=<Terminate.>\n")));
|
---|
1222 | --sig_raised; --sig_urgent;
|
---|
1223 | aud_exit (FIL__, __LINE__, EXIT_SUCCESS);
|
---|
1224 | }
|
---|
1225 |
|
---|
1226 | #if defined(WITH_GPG) || defined(WITH_PGP)
|
---|
1227 | /* new 1.4.8: also checked for server data */
|
---|
1228 |
|
---|
1229 | /* extract the data and copy to temporary file
|
---|
1230 | */
|
---|
1231 | fdTmp = open_tmp();
|
---|
1232 |
|
---|
1233 | fin_cp = fdopen(get_the_fd(fd), "rb");
|
---|
1234 | buf = SH_ALLOC(FGETS_BUF);
|
---|
1235 |
|
---|
1236 | while (NULL != fgets(buf, FGETS_BUF, fin_cp))
|
---|
1237 | {
|
---|
1238 | bufc = 0;
|
---|
1239 | while (bufc < FGETS_BUF) {
|
---|
1240 | if (buf[bufc] == '\n') { ++bufc; break; }
|
---|
1241 | ++bufc;
|
---|
1242 | }
|
---|
1243 |
|
---|
1244 | if (sig_termfast == 1) /* SIGTERM */
|
---|
1245 | {
|
---|
1246 | TPT((0, FIL__, __LINE__, _("msg=<Terminate.>\n")));
|
---|
1247 | --sig_raised; --sig_urgent;
|
---|
1248 | aud_exit (FIL__, __LINE__, EXIT_SUCCESS);
|
---|
1249 | }
|
---|
1250 |
|
---|
1251 | if (flag_pgp == S_FALSE &&
|
---|
1252 | (0 == sl_strcmp(buf, _("-----BEGIN PGP SIGNED MESSAGE-----\n"))||
|
---|
1253 | 0 == sl_strcmp(buf, _("-----BEGIN PGP MESSAGE-----\n")))
|
---|
1254 | )
|
---|
1255 | {
|
---|
1256 | flag_pgp = S_TRUE;
|
---|
1257 | sl_write(fdTmp, buf, bufc);
|
---|
1258 | continue;
|
---|
1259 | }
|
---|
1260 |
|
---|
1261 | if (flag_pgp == S_TRUE && flag_nohead == S_FALSE)
|
---|
1262 | {
|
---|
1263 | if (buf[0] == '\n')
|
---|
1264 | {
|
---|
1265 | flag_nohead = S_TRUE;
|
---|
1266 | sl_write(fdTmp, buf, 1);
|
---|
1267 | continue;
|
---|
1268 | }
|
---|
1269 | else if (0 == sl_strncmp(buf, _("Hash:"), 5) ||
|
---|
1270 | 0 == sl_strncmp(buf, _("NotDashEscaped:"), 15))
|
---|
1271 | {
|
---|
1272 | sl_write(fdTmp, buf, bufc);
|
---|
1273 | continue;
|
---|
1274 | }
|
---|
1275 | else
|
---|
1276 | continue;
|
---|
1277 | }
|
---|
1278 |
|
---|
1279 | if (flag_pgp == S_TRUE && buf[0] == '\n')
|
---|
1280 | {
|
---|
1281 | sl_write(fdTmp, buf, 1);
|
---|
1282 | }
|
---|
1283 | else if (flag_pgp == S_TRUE)
|
---|
1284 | {
|
---|
1285 | /* sl_write_line(fdTmp, buf, bufc); */
|
---|
1286 | sl_write(fdTmp, buf, bufc);
|
---|
1287 | }
|
---|
1288 |
|
---|
1289 | if (flag_pgp == S_TRUE &&
|
---|
1290 | 0 == sl_strcmp(buf, _("-----END PGP SIGNATURE-----\n")))
|
---|
1291 | break;
|
---|
1292 | }
|
---|
1293 | SH_FREE(buf);
|
---|
1294 | sl_close(fd);
|
---|
1295 | fclose(fin_cp);
|
---|
1296 |
|
---|
1297 | fd = fdTmp;
|
---|
1298 | sl_rewind (fd);
|
---|
1299 |
|
---|
1300 | /* Validate signature of open file.
|
---|
1301 | */
|
---|
1302 | if (0 != sh_gpg_check_sign (0, fd, 2))
|
---|
1303 | {
|
---|
1304 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
1305 | }
|
---|
1306 | sl_rewind (fd);
|
---|
1307 | #endif
|
---|
1308 | /* } new 1.4.8 check sig also for files downloaded from server */
|
---|
1309 |
|
---|
1310 | line = SH_ALLOC(MAX_PATH_STORE+1);
|
---|
1311 |
|
---|
1312 | /* fast forward to start of data
|
---|
1313 | */
|
---|
1314 | sh_hash_setdataent(fd, line, MAX_PATH_STORE, file_path('D', 'R'));
|
---|
1315 |
|
---|
1316 | for (i = 0; i < TABSIZE; ++i)
|
---|
1317 | tab[i] = NULL;
|
---|
1318 |
|
---|
1319 | while (1)
|
---|
1320 | {
|
---|
1321 | if (sig_termfast == 1) /* SIGTERM */
|
---|
1322 | {
|
---|
1323 | TPT((0, FIL__, __LINE__, _("msg=<Terminate.>\n")));
|
---|
1324 | --sig_raised; --sig_urgent;
|
---|
1325 | aud_exit (FIL__, __LINE__, EXIT_SUCCESS);
|
---|
1326 | }
|
---|
1327 |
|
---|
1328 | p = sh_hash_getdataent (fd, line, MAX_PATH_STORE);
|
---|
1329 | if (p != NULL)
|
---|
1330 | {
|
---|
1331 | hashinsert (p);
|
---|
1332 | ++count;
|
---|
1333 | }
|
---|
1334 | else
|
---|
1335 | break;
|
---|
1336 | }
|
---|
1337 |
|
---|
1338 | /* Initialization completed.
|
---|
1339 | */
|
---|
1340 | IsInit = 1;
|
---|
1341 |
|
---|
1342 | if (line != NULL)
|
---|
1343 | SH_FREE(line);
|
---|
1344 |
|
---|
1345 | /* Always keep db in memory, so we have no open file
|
---|
1346 | */
|
---|
1347 | sl_close (fd);
|
---|
1348 | sh_hash_getline_end();
|
---|
1349 | fd = -1;
|
---|
1350 |
|
---|
1351 | unlock_and_return:
|
---|
1352 | ; /* 'label at end of compound statement */
|
---|
1353 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
1354 | SL_RET0(_("sh_hash_init"));
|
---|
1355 | }
|
---|
1356 |
|
---|
1357 | /*****************************************************************
|
---|
1358 | *
|
---|
1359 | * delete hash array
|
---|
1360 | *
|
---|
1361 | *****************************************************************/
|
---|
1362 | void sh_hash_hashdelete ()
|
---|
1363 | {
|
---|
1364 | int i;
|
---|
1365 |
|
---|
1366 | SL_ENTER(_("sh_hash_hashdelete"));
|
---|
1367 | SH_MUTEX_LOCK(mutex_hash);
|
---|
1368 |
|
---|
1369 | if (IsInit == 0)
|
---|
1370 | goto unlock_and_exit;
|
---|
1371 |
|
---|
1372 | for (i = 0; i < TABSIZE; ++i)
|
---|
1373 | if (tab[i] != NULL)
|
---|
1374 | {
|
---|
1375 | hash_kill (tab[i]);
|
---|
1376 | tab[i] = NULL;
|
---|
1377 | }
|
---|
1378 | IsInit = 0;
|
---|
1379 |
|
---|
1380 | unlock_and_exit:
|
---|
1381 | ; /* 'label at end of compound statement */
|
---|
1382 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
1383 | SL_RET0(_("sh_hash_hashdelete"));
|
---|
1384 | }
|
---|
1385 |
|
---|
1386 | /******************************************************************
|
---|
1387 | *
|
---|
1388 | * Insert a file into the database.
|
---|
1389 | *
|
---|
1390 | ******************************************************************/
|
---|
1391 | static int pushdata_isfirst = 1;
|
---|
1392 | static SL_TICKET pushdata_fd = -1;
|
---|
1393 |
|
---|
1394 | static int pushdata_stdout = S_FALSE;
|
---|
1395 |
|
---|
1396 | static char * sh_db_version_string = NULL;
|
---|
1397 |
|
---|
1398 | int sh_hash_pushdata_stdout (const char * str)
|
---|
1399 | {
|
---|
1400 | if (!str)
|
---|
1401 | { pushdata_stdout = S_TRUE; return 0; }
|
---|
1402 | return -1;
|
---|
1403 | }
|
---|
1404 |
|
---|
1405 | int sh_hash_version_string(const char * str)
|
---|
1406 | {
|
---|
1407 | if (str)
|
---|
1408 | {
|
---|
1409 | if (sh_db_version_string != NULL) {
|
---|
1410 | SH_FREE(sh_db_version_string);
|
---|
1411 | }
|
---|
1412 | if (0 == sl_strncmp(str, _("NULL"), 4))
|
---|
1413 | {
|
---|
1414 | sh_db_version_string = NULL;
|
---|
1415 | return 0;
|
---|
1416 | }
|
---|
1417 | sh_db_version_string = sh_util_strdup(str);
|
---|
1418 | return 0;
|
---|
1419 | }
|
---|
1420 | return -1;
|
---|
1421 | }
|
---|
1422 |
|
---|
1423 |
|
---|
1424 | static void sh_hash_pushdata_int (file_type * buf, char * fileHash)
|
---|
1425 | {
|
---|
1426 | static long p_count = 0;
|
---|
1427 |
|
---|
1428 | int status = 0;
|
---|
1429 |
|
---|
1430 | char * tmp;
|
---|
1431 | size_t tmp_len = 0;
|
---|
1432 | size_t old_len = 0;
|
---|
1433 | size_t path_len = 0;
|
---|
1434 |
|
---|
1435 | sh_filestore_t p;
|
---|
1436 |
|
---|
1437 | struct stat sbuf;
|
---|
1438 |
|
---|
1439 | char * fullpath = NULL;
|
---|
1440 | char * linkpath = NULL;
|
---|
1441 | char * attr_string = NULL;
|
---|
1442 |
|
---|
1443 | char * line = NULL;
|
---|
1444 |
|
---|
1445 | char timestring[81];
|
---|
1446 |
|
---|
1447 | #if !defined(__linux__) && !defined(HAVE_STAT_FLAGS)
|
---|
1448 | int i;
|
---|
1449 | #endif
|
---|
1450 |
|
---|
1451 | SL_ENTER(_("sh_hash_pushdata_int"));
|
---|
1452 |
|
---|
1453 | fullpath = SH_ALLOC(MAX_PATH_STORE+1);
|
---|
1454 | linkpath = SH_ALLOC(MAX_PATH_STORE+1);
|
---|
1455 |
|
---|
1456 | linkpath[0] = '-';
|
---|
1457 | linkpath[1] = '\0';
|
---|
1458 | fullpath[0] = '-';
|
---|
1459 | fullpath[1] = '\0';
|
---|
1460 |
|
---|
1461 | if (!buf) {
|
---|
1462 | memset(&p, '\0', sizeof(sh_filestore_t));
|
---|
1463 | }
|
---|
1464 |
|
---|
1465 | if ((pushdata_stdout == S_TRUE) && (sh.flag.update == S_TRUE))
|
---|
1466 | {
|
---|
1467 | dlog(1, FIL__, __LINE__,
|
---|
1468 | _("You cannot write the database to stdout when you use update rather than init.\n"));
|
---|
1469 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_EXIT_ABORTS,
|
---|
1470 | _("Writing database to stdout with update"),
|
---|
1471 | sh.prg_name,
|
---|
1472 | _("sh_hash_pushdata_int"));
|
---|
1473 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
1474 | }
|
---|
1475 |
|
---|
1476 | if ((pushdata_stdout == S_TRUE) && (sl_is_suid()))
|
---|
1477 | {
|
---|
1478 | dlog(1, FIL__, __LINE__,
|
---|
1479 | _("You cannot write the database to stdout when running with suid privileges.\n"));
|
---|
1480 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_EXIT_ABORTS,
|
---|
1481 | _("Writing database to stdout when suid"),
|
---|
1482 | sh.prg_name,
|
---|
1483 | _("sh_hash_pushdata_int"));
|
---|
1484 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
1485 | }
|
---|
1486 |
|
---|
1487 |
|
---|
1488 | if ((pushdata_isfirst == 1) && (pushdata_stdout == S_FALSE) &&
|
---|
1489 | ( (NULL == file_path('D', 'W')) ||
|
---|
1490 | (0 == sl_strcmp(file_path('D', 'W'), _("REQ_FROM_SERVER"))) ))
|
---|
1491 | {
|
---|
1492 | dlog(1, FIL__, __LINE__,
|
---|
1493 | _("You need to configure a local path for initializing the database\nlike ./configure --with-data-file=REQ_FROM_SERVER/some/local/path\n"));
|
---|
1494 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_EXIT_ABORTS,
|
---|
1495 | _("No local path for database specified"),
|
---|
1496 | sh.prg_name,
|
---|
1497 | _("sh_hash_pushdata_int"));
|
---|
1498 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
1499 | }
|
---|
1500 |
|
---|
1501 |
|
---|
1502 | if ((pushdata_isfirst == 1) && (pushdata_stdout == S_FALSE))
|
---|
1503 | {
|
---|
1504 | /* Warn that file already exists; file_path != NULL here because
|
---|
1505 | * checked above
|
---|
1506 | */
|
---|
1507 | if (0 == retry_lstat(FIL__, __LINE__, file_path('D', 'W'), &sbuf))
|
---|
1508 | {
|
---|
1509 | if (sh.flag.update == S_FALSE)
|
---|
1510 | {
|
---|
1511 | sh_error_handle((-1), FIL__, __LINE__, 0, MSG_FI_DBEX,
|
---|
1512 | file_path('D', 'W'));
|
---|
1513 | }
|
---|
1514 | }
|
---|
1515 | }
|
---|
1516 |
|
---|
1517 |
|
---|
1518 | if (sh.flag.update == S_FALSE)
|
---|
1519 | {
|
---|
1520 | if (pushdata_stdout == S_FALSE && pushdata_fd == -1)
|
---|
1521 | {
|
---|
1522 | if ( SL_ISERROR(pushdata_fd = sl_open_write(file_path('D', 'W'), SL_YESPRIV)))
|
---|
1523 | {
|
---|
1524 | SH_FREE(fullpath);
|
---|
1525 | SH_FREE(linkpath);
|
---|
1526 | sh_error_handle((-1), FIL__, __LINE__, pushdata_fd, MSG_E_ACCESS,
|
---|
1527 | geteuid(), file_path('D', 'W'));
|
---|
1528 | SL_RET0(_("sh_hash_pushdata_int"));
|
---|
1529 | }
|
---|
1530 | if ( SL_ISERROR(status = sl_forward(pushdata_fd)))
|
---|
1531 | {
|
---|
1532 | SH_FREE(fullpath);
|
---|
1533 | SH_FREE(linkpath);
|
---|
1534 | sh_error_handle((-1), FIL__, __LINE__, status, MSG_E_SUBGPATH,
|
---|
1535 | _("Fast forward failed"), _("sh_hash_pushdata_int"),
|
---|
1536 | file_path('D', 'W'));
|
---|
1537 | SL_RET0(_("sh_hash_pushdata_int"));
|
---|
1538 | }
|
---|
1539 | }
|
---|
1540 | }
|
---|
1541 | else /* update == TRUE */
|
---|
1542 | {
|
---|
1543 | if (pushdata_isfirst == 1)
|
---|
1544 | {
|
---|
1545 | TPT((0, FIL__, __LINE__, _("msg=<Update.>\n")))
|
---|
1546 | if ( SL_ISERROR(pushdata_fd = sl_open_rdwr(file_path('D', 'W'), SL_YESPRIV))){
|
---|
1547 | SH_FREE(fullpath);
|
---|
1548 | SH_FREE(linkpath);
|
---|
1549 | sh_error_handle((-1), FIL__, __LINE__, pushdata_fd, MSG_E_ACCESS,
|
---|
1550 | geteuid(), file_path('D', 'W'));
|
---|
1551 | SL_RET0(_("sh_hash_pushdata_int"));
|
---|
1552 | }
|
---|
1553 | line = SH_ALLOC(MAX_PATH_STORE+1);
|
---|
1554 | if (SL_ISERROR(sh_hash_setdataent_old (pushdata_fd, line,
|
---|
1555 | MAX_PATH_STORE,
|
---|
1556 | file_path('D', 'W'))))
|
---|
1557 | {
|
---|
1558 | SH_FREE(fullpath);
|
---|
1559 | SH_FREE(linkpath);
|
---|
1560 | SH_FREE(line);
|
---|
1561 | SL_RET0(_("sh_hash_pushdata_int"));
|
---|
1562 | }
|
---|
1563 | SH_FREE(line);
|
---|
1564 | }
|
---|
1565 | }
|
---|
1566 |
|
---|
1567 | if (buf != NULL && buf->fullpath != NULL) {
|
---|
1568 |
|
---|
1569 | old_len = sl_strlen(buf->fullpath);
|
---|
1570 | #if defined(SH_STEALTH)
|
---|
1571 | sh_do_encode(buf->fullpath, old_len);
|
---|
1572 | #endif
|
---|
1573 | tmp = quote_string(buf->fullpath, old_len);
|
---|
1574 | tmp_len = sl_strlen(tmp);
|
---|
1575 | #if defined(SH_STEALTH)
|
---|
1576 | sh_do_decode(buf->fullpath, old_len);
|
---|
1577 | #endif
|
---|
1578 |
|
---|
1579 | if (tmp && tmp_len <= MAX_PATH_STORE)
|
---|
1580 | {
|
---|
1581 | sl_strlcpy(fullpath, buf->fullpath, MAX_PATH_STORE+1);
|
---|
1582 | /*
|
---|
1583 | if (sl_strlen(buf->fullpath) < (MAX_PATH_STORE-3))
|
---|
1584 | {
|
---|
1585 | fullpath[MAX_PATH_STORE-2] = '\0';
|
---|
1586 | fullpath[MAX_PATH_STORE-1] = '\n';
|
---|
1587 | }
|
---|
1588 | */
|
---|
1589 | }
|
---|
1590 | else
|
---|
1591 | {
|
---|
1592 | char hashbuf[KEYBUF_SIZE];
|
---|
1593 |
|
---|
1594 | sl_strlcpy(fullpath,
|
---|
1595 | sh_tiger_hash (buf->fullpath,
|
---|
1596 | TIGER_DATA, old_len,
|
---|
1597 | hashbuf, sizeof(hashbuf)),
|
---|
1598 | KEY_LEN+1);
|
---|
1599 | }
|
---|
1600 | if (tmp) SH_FREE(tmp);
|
---|
1601 | }
|
---|
1602 |
|
---|
1603 | path_len = sl_strlen(fullpath);
|
---|
1604 | #if defined(SH_STEALTH)
|
---|
1605 | sh_do_encode(fullpath, path_len);
|
---|
1606 | #endif
|
---|
1607 |
|
---|
1608 | tmp = quote_string(fullpath, path_len);
|
---|
1609 | if (tmp) {
|
---|
1610 | sl_strlcpy(fullpath, tmp, MAX_PATH_STORE+1);
|
---|
1611 | SH_FREE(tmp);
|
---|
1612 | }
|
---|
1613 |
|
---|
1614 | if (buf != NULL /* && buf->c_mode[0] == 'l' */ && buf->link_path != NULL)
|
---|
1615 | {
|
---|
1616 |
|
---|
1617 | old_len = sl_strlen(buf->link_path);
|
---|
1618 | #if defined(SH_STEALTH)
|
---|
1619 | if (buf->c_mode[0] == 'l')
|
---|
1620 | sh_do_encode(buf->link_path, old_len);
|
---|
1621 | #endif
|
---|
1622 | tmp = quote_string(buf->link_path, old_len);
|
---|
1623 | tmp_len = sl_strlen(tmp);
|
---|
1624 | #if defined(SH_STEALTH)
|
---|
1625 | if (buf->c_mode[0] == 'l')
|
---|
1626 | sh_do_decode(buf->link_path, old_len);
|
---|
1627 | #endif
|
---|
1628 |
|
---|
1629 | if (tmp && tmp_len <= MAX_PATH_STORE)
|
---|
1630 | {
|
---|
1631 | sl_strlcpy(linkpath, buf->link_path, MAX_PATH_STORE+1);
|
---|
1632 | }
|
---|
1633 | else
|
---|
1634 | {
|
---|
1635 | char hashbuf[KEYBUF_SIZE];
|
---|
1636 | sl_strlcpy(linkpath,
|
---|
1637 | sh_tiger_hash (buf->link_path,
|
---|
1638 | TIGER_DATA, old_len,
|
---|
1639 | hashbuf, sizeof(hashbuf)),
|
---|
1640 | KEY_LEN+1);
|
---|
1641 | }
|
---|
1642 | if (tmp) SH_FREE(tmp);
|
---|
1643 |
|
---|
1644 | path_len = sl_strlen(linkpath);
|
---|
1645 | #if defined(SH_STEALTH)
|
---|
1646 | if (buf->c_mode[0] == 'l')
|
---|
1647 | sh_do_encode(linkpath, path_len);
|
---|
1648 | #endif
|
---|
1649 | tmp = quote_string(linkpath, path_len);
|
---|
1650 | if (tmp)
|
---|
1651 | {
|
---|
1652 | sl_strlcpy(linkpath, tmp, MAX_PATH_STORE+1);
|
---|
1653 | SH_FREE(tmp);
|
---|
1654 | }
|
---|
1655 | }
|
---|
1656 |
|
---|
1657 | if (buf != NULL && buf->attr_string != NULL)
|
---|
1658 | {
|
---|
1659 | old_len = sl_strlen(buf->attr_string);
|
---|
1660 | #if defined(SH_STEALTH)
|
---|
1661 | sh_do_encode(buf->attr_string, old_len);
|
---|
1662 | #endif
|
---|
1663 | tmp = quote_string(buf->attr_string, old_len);
|
---|
1664 | if (tmp)
|
---|
1665 | {
|
---|
1666 | attr_string = tmp;
|
---|
1667 | tmp = NULL;
|
---|
1668 | }
|
---|
1669 | #if defined(SH_STEALTH)
|
---|
1670 | sh_do_decode(buf->attr_string, old_len);
|
---|
1671 | #endif
|
---|
1672 | }
|
---|
1673 |
|
---|
1674 |
|
---|
1675 | if (buf != NULL) {
|
---|
1676 | p.mark = REC_MAGIC;
|
---|
1677 | if (attr_string)
|
---|
1678 | p.mark |= REC_FLAGS_ATTR;
|
---|
1679 | sl_strlcpy(p.c_mode, buf->c_mode, CMODE_SIZE);
|
---|
1680 | sl_strlcpy(p.c_group, buf->c_group, GROUP_MAX+1);
|
---|
1681 | sl_strlcpy(p.c_owner, buf->c_owner, USER_MAX+1);
|
---|
1682 | if (fileHash) {
|
---|
1683 | sl_strlcpy(p.checksum, fileHash, KEY_LEN+1);
|
---|
1684 | }
|
---|
1685 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
1686 | sl_strlcpy(p.c_attributes, buf->c_attributes, ATTRBUF_SIZE);
|
---|
1687 | #else
|
---|
1688 | for (i = 0; i < ATTRBUF_USED; ++i) p.c_attributes[i] = '-';
|
---|
1689 | p.c_attributes[ATTRBUF_USED] = '\0';
|
---|
1690 | #endif
|
---|
1691 |
|
---|
1692 | #if defined(SH_STEALTH)
|
---|
1693 | sh_do_encode(p.c_mode, sl_strlen(p.c_mode));
|
---|
1694 | sh_do_encode(p.c_owner, sl_strlen(p.c_owner));
|
---|
1695 | sh_do_encode(p.c_group, sl_strlen(p.c_group));
|
---|
1696 | sh_do_encode(p.checksum, sl_strlen(p.checksum));
|
---|
1697 |
|
---|
1698 | sh_do_encode(p.c_attributes, sl_strlen(p.c_attributes));
|
---|
1699 | #endif
|
---|
1700 |
|
---|
1701 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
1702 | p.attributes = (UINT32) buf->attributes;
|
---|
1703 | #else
|
---|
1704 | p.attributes = 0;
|
---|
1705 | #endif
|
---|
1706 | p.linkmode = (UINT32) buf->linkmode;
|
---|
1707 | p.hardlinks = (UINT32) buf->hardlinks;
|
---|
1708 | p.dev = (UINT64) buf->dev;
|
---|
1709 | p.rdev = (UINT64) buf->rdev;
|
---|
1710 | p.mode = (UINT32) buf->mode;
|
---|
1711 | p.ino = (UINT32) buf->ino;
|
---|
1712 | p.size = (UINT64) buf->size;
|
---|
1713 | p.mtime = (UINT64) buf->mtime;
|
---|
1714 | p.atime = (UINT64) buf->atime;
|
---|
1715 | p.ctime = (UINT64) buf->ctime;
|
---|
1716 | p.owner = (UINT32) buf->owner;
|
---|
1717 | p.group = (UINT32) buf->group;
|
---|
1718 |
|
---|
1719 | swap_32(&(p.mode));
|
---|
1720 | swap_32(&(p.linkmode));
|
---|
1721 | swap_64(&(p.dev));
|
---|
1722 | swap_64(&(p.rdev));
|
---|
1723 | swap_32(&(p.hardlinks));
|
---|
1724 | swap_32(&(p.ino));
|
---|
1725 | swap_64(&(p.size));
|
---|
1726 | swap_64(&(p.atime));
|
---|
1727 | swap_64(&(p.mtime));
|
---|
1728 | swap_64(&(p.ctime));
|
---|
1729 | swap_32(&(p.owner));
|
---|
1730 | swap_32(&(p.group));
|
---|
1731 | swap_32(&(p.attributes));
|
---|
1732 |
|
---|
1733 | #ifdef OLD_BUG
|
---|
1734 | swap_short(&(p.mark));
|
---|
1735 | #else
|
---|
1736 | p.mark = *(swap_short(&(p.mark)));
|
---|
1737 | #endif
|
---|
1738 | }
|
---|
1739 |
|
---|
1740 | /* write the start marker
|
---|
1741 | */
|
---|
1742 | if (pushdata_isfirst == 1)
|
---|
1743 | {
|
---|
1744 | if (sh.flag.update == S_FALSE)
|
---|
1745 | {
|
---|
1746 | if (sh_db_version_string != NULL)
|
---|
1747 | {
|
---|
1748 | if (pushdata_stdout == S_FALSE)
|
---|
1749 | {
|
---|
1750 | sl_write (pushdata_fd, _("\n#Host "), 7);
|
---|
1751 | sl_write (pushdata_fd, sh.host.name,
|
---|
1752 | sl_strlen(sh.host.name));
|
---|
1753 | sl_write (pushdata_fd, _(" Version "), 9);
|
---|
1754 | sl_write (pushdata_fd, sh_db_version_string,
|
---|
1755 | sl_strlen(sh_db_version_string));
|
---|
1756 | sl_write (pushdata_fd, _(" Date "), 6);
|
---|
1757 | (void) sh_unix_time(0, timestring, sizeof(timestring));
|
---|
1758 | sl_write (pushdata_fd, timestring, sl_strlen(timestring));
|
---|
1759 | sl_write (pushdata_fd, "\n", 1);
|
---|
1760 | } else {
|
---|
1761 | printf (_("\n#Host "));
|
---|
1762 | printf ("%s", sh.host.name);
|
---|
1763 | printf (_(" Version "));
|
---|
1764 | printf ("%s", sh_db_version_string);
|
---|
1765 | printf (_(" Date "));
|
---|
1766 | (void) sh_unix_time(0, timestring, sizeof(timestring));
|
---|
1767 | printf ("%s\n", timestring);
|
---|
1768 | }
|
---|
1769 | }
|
---|
1770 |
|
---|
1771 | if (pushdata_stdout == S_FALSE)
|
---|
1772 | {
|
---|
1773 | #if defined(SH_STEALTH)
|
---|
1774 | sl_write (pushdata_fd, "\n", 1);
|
---|
1775 | sl_write_line (pushdata_fd, N_("[SOF]"), 5);
|
---|
1776 | #else
|
---|
1777 | sl_write_line (pushdata_fd, _("\n[SOF]"), 6);
|
---|
1778 | #endif
|
---|
1779 | }
|
---|
1780 | else
|
---|
1781 | {
|
---|
1782 | #if defined(SH_STEALTH)
|
---|
1783 | printf ("\n%s\n", N_("[SOF]"));
|
---|
1784 | #else
|
---|
1785 | printf ("%s\n", _("\n[SOF]"));
|
---|
1786 | #endif
|
---|
1787 | }
|
---|
1788 | }
|
---|
1789 | pushdata_isfirst = 0;
|
---|
1790 | }
|
---|
1791 |
|
---|
1792 | if (pushdata_stdout == S_FALSE)
|
---|
1793 | {
|
---|
1794 | sl_write (pushdata_fd, &p, sizeof(sh_filestore_t));
|
---|
1795 | sl_write_line_fast (pushdata_fd, fullpath, sl_strlen(fullpath));
|
---|
1796 | sl_write_line_fast (pushdata_fd, linkpath, sl_strlen(linkpath));
|
---|
1797 | if (attr_string)
|
---|
1798 | sl_write_line_fast (pushdata_fd, attr_string, sl_strlen(attr_string));
|
---|
1799 | } else {
|
---|
1800 | if (fwrite (&p, sizeof(sh_filestore_t), 1, stdout))
|
---|
1801 | {
|
---|
1802 | printf ("%s\n", fullpath);
|
---|
1803 | printf ("%s\n", linkpath);
|
---|
1804 | if (attr_string)
|
---|
1805 | printf ("%s\n", attr_string);
|
---|
1806 | }
|
---|
1807 | else
|
---|
1808 | {
|
---|
1809 | perror(_("Error writing database"));
|
---|
1810 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
1811 | }
|
---|
1812 | }
|
---|
1813 |
|
---|
1814 | ++p_count;
|
---|
1815 |
|
---|
1816 | if ((sh.flag.update != S_TRUE) && (pushdata_stdout == S_FALSE))
|
---|
1817 | {
|
---|
1818 | if (sh.flag.checkSum != SH_CHECK_INIT || (buf == NULL && fileHash == NULL))
|
---|
1819 | {
|
---|
1820 | sl_close (pushdata_fd);
|
---|
1821 | pushdata_fd = -1;
|
---|
1822 | }
|
---|
1823 | }
|
---|
1824 |
|
---|
1825 | SH_FREE(fullpath);
|
---|
1826 | SH_FREE(linkpath);
|
---|
1827 | if (attr_string)
|
---|
1828 | SH_FREE(attr_string);
|
---|
1829 |
|
---|
1830 | SL_RET0(_("sh_hash_pushdata_int"));
|
---|
1831 | }
|
---|
1832 |
|
---|
1833 | SH_MUTEX_STATIC(mutex_writeout,PTHREAD_MUTEX_INITIALIZER);
|
---|
1834 |
|
---|
1835 | void sh_hash_pushdata (file_type * buf, char * fileHash)
|
---|
1836 | {
|
---|
1837 | SH_MUTEX_LOCK(mutex_writeout);
|
---|
1838 | sh_hash_pushdata_int (buf, fileHash);
|
---|
1839 | SH_MUTEX_UNLOCK(mutex_writeout);
|
---|
1840 | return;
|
---|
1841 | }
|
---|
1842 |
|
---|
1843 |
|
---|
1844 | int sh_hash_writeout()
|
---|
1845 | {
|
---|
1846 | sh_file_t * p;
|
---|
1847 | int i;
|
---|
1848 | file_type * f;
|
---|
1849 | char fileHash[KEY_LEN + 1];
|
---|
1850 |
|
---|
1851 | SL_ENTER(_("sh_hash_writeout"));
|
---|
1852 |
|
---|
1853 | if (S_TRUE == file_is_remote())
|
---|
1854 | {
|
---|
1855 | sh_error_handle((-1), FIL__, __LINE__, S_FALSE, MSG_E_SUBGEN,
|
---|
1856 | _("Baseline database is remote"), _("sh_hash_writeout"));
|
---|
1857 | SL_RETURN (1, _("sh_hash_writeout"));
|
---|
1858 | }
|
---|
1859 |
|
---|
1860 | SH_MUTEX_LOCK(mutex_writeout);
|
---|
1861 | if (!SL_ISERROR(pushdata_fd))
|
---|
1862 | {
|
---|
1863 | sl_close(pushdata_fd);
|
---|
1864 | pushdata_fd = -1;
|
---|
1865 | }
|
---|
1866 | pushdata_isfirst = 1;
|
---|
1867 |
|
---|
1868 |
|
---|
1869 | SH_MUTEX_LOCK(mutex_hash);
|
---|
1870 | for (i = 0; i < TABSIZE; ++i)
|
---|
1871 | {
|
---|
1872 | for (p = tab[i]; p; p = p->next)
|
---|
1873 | {
|
---|
1874 | f = sh_hash_create_ft (p, fileHash);
|
---|
1875 | sh_hash_pushdata_int (f, fileHash);
|
---|
1876 | if (f->attr_string) SH_FREE(f->attr_string);
|
---|
1877 | if (f->link_path) SH_FREE(f->link_path);
|
---|
1878 | SH_FREE(f);
|
---|
1879 | }
|
---|
1880 | }
|
---|
1881 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
1882 |
|
---|
1883 | if (!SL_ISERROR(pushdata_fd))
|
---|
1884 | {
|
---|
1885 | sl_close(pushdata_fd);
|
---|
1886 | pushdata_fd = -1;
|
---|
1887 | }
|
---|
1888 | pushdata_isfirst = 1;
|
---|
1889 | SH_MUTEX_UNLOCK(mutex_writeout);
|
---|
1890 |
|
---|
1891 | SL_RETURN (0, _("sh_hash_writeout"));
|
---|
1892 | }
|
---|
1893 |
|
---|
1894 |
|
---|
1895 | /*********************************************************************
|
---|
1896 | *
|
---|
1897 | * Check whether a file is present in the database.
|
---|
1898 | *
|
---|
1899 | *********************************************************************/
|
---|
1900 | static sh_file_t * sh_hash_have_it_int (char * newname)
|
---|
1901 | {
|
---|
1902 | sh_file_t * p;
|
---|
1903 | char hashbuf[KEYBUF_SIZE];
|
---|
1904 |
|
---|
1905 | SL_ENTER(_("sh_hash_have_it_int"));
|
---|
1906 |
|
---|
1907 | if (newname == NULL)
|
---|
1908 | SL_RETURN( (NULL), _("sh_hash_have_it_int"));
|
---|
1909 |
|
---|
1910 | if (sl_strlen(newname) <= MAX_PATH_STORE)
|
---|
1911 | p = hashsearch(newname);
|
---|
1912 | else
|
---|
1913 | p = hashsearch ( sh_tiger_hash(newname, TIGER_DATA, sl_strlen(newname),
|
---|
1914 | hashbuf, sizeof(hashbuf)) );
|
---|
1915 | if (p == NULL)
|
---|
1916 | SL_RETURN( (NULL), _("sh_hash_have_it_int"));
|
---|
1917 |
|
---|
1918 | SL_RETURN( (p), _("sh_hash_have_it_int"));
|
---|
1919 | }
|
---|
1920 |
|
---|
1921 | int sh_hash_have_it (char * newname)
|
---|
1922 | {
|
---|
1923 | sh_file_t * p;
|
---|
1924 | int retval = 0;
|
---|
1925 |
|
---|
1926 | if (IsInit != 1)
|
---|
1927 | sh_hash_init();
|
---|
1928 |
|
---|
1929 | SH_MUTEX_LOCK(mutex_hash);
|
---|
1930 | p = sh_hash_have_it_int (newname);
|
---|
1931 |
|
---|
1932 | if (!p)
|
---|
1933 | retval = (-1);
|
---|
1934 | else if ((!SH_FFLAG_ALLIGNORE_SET(p->fflags)) &&
|
---|
1935 | (p->modi_mask & MODI_CHK) != 0 &&
|
---|
1936 | (p->modi_mask & MODI_MOD) != 0)
|
---|
1937 | retval = 1;
|
---|
1938 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
1939 |
|
---|
1940 | return retval;
|
---|
1941 | }
|
---|
1942 |
|
---|
1943 | int sh_hash_get_it (char * newname, file_type * tmpFile)
|
---|
1944 | {
|
---|
1945 | sh_file_t * p;
|
---|
1946 | int retval = -1;
|
---|
1947 |
|
---|
1948 | if (IsInit != 1)
|
---|
1949 | sh_hash_init();
|
---|
1950 |
|
---|
1951 | tmpFile->link_path = NULL;
|
---|
1952 | tmpFile->attr_string = NULL;
|
---|
1953 |
|
---|
1954 | SH_MUTEX_LOCK(mutex_hash);
|
---|
1955 | p = sh_hash_have_it_int (newname);
|
---|
1956 | if (p)
|
---|
1957 | {
|
---|
1958 | sl_strlcpy(tmpFile->fullpath, p->fullpath, PATH_MAX);
|
---|
1959 | if (p->linkpath)
|
---|
1960 | tmpFile->link_path = sh_util_strdup (p->linkpath);
|
---|
1961 | tmpFile->size = p->theFile.size;
|
---|
1962 | tmpFile->mtime = p->theFile.mtime;
|
---|
1963 | tmpFile->ctime = p->theFile.ctime;
|
---|
1964 | tmpFile->attr_string = NULL;
|
---|
1965 | retval = 0;
|
---|
1966 | }
|
---|
1967 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
1968 |
|
---|
1969 | return retval;
|
---|
1970 | }
|
---|
1971 |
|
---|
1972 | int sh_hash_getflags (char * filename)
|
---|
1973 | {
|
---|
1974 | sh_file_t * p;
|
---|
1975 | int retval = -1;
|
---|
1976 |
|
---|
1977 | if (IsInit != 1)
|
---|
1978 | sh_hash_init();
|
---|
1979 |
|
---|
1980 | SH_MUTEX_LOCK(mutex_hash);
|
---|
1981 | p = sh_hash_have_it_int (filename);
|
---|
1982 | if (p)
|
---|
1983 | retval = p->fflags;
|
---|
1984 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
1985 | return retval;
|
---|
1986 | }
|
---|
1987 |
|
---|
1988 | int sh_hash_setflags (char * filename, int flags)
|
---|
1989 | {
|
---|
1990 | sh_file_t * p;
|
---|
1991 | int retval = -1;
|
---|
1992 |
|
---|
1993 | if (IsInit != 1)
|
---|
1994 | sh_hash_init();
|
---|
1995 |
|
---|
1996 | SH_MUTEX_LOCK(mutex_hash);
|
---|
1997 | p = sh_hash_have_it_int (filename);
|
---|
1998 | if (p)
|
---|
1999 | {
|
---|
2000 | p->fflags = flags;
|
---|
2001 | retval = 0;
|
---|
2002 | }
|
---|
2003 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
2004 | return retval;
|
---|
2005 | }
|
---|
2006 |
|
---|
2007 | /* needs lock to be threadsafe
|
---|
2008 | */
|
---|
2009 | void sh_hash_addflag (char * filename, int flag_to_set)
|
---|
2010 | {
|
---|
2011 | sh_file_t * p;
|
---|
2012 |
|
---|
2013 | if (IsInit != 1)
|
---|
2014 | sh_hash_init();
|
---|
2015 |
|
---|
2016 | SH_MUTEX_LOCK(mutex_hash);
|
---|
2017 | p = sh_hash_have_it_int (filename);
|
---|
2018 | if (p)
|
---|
2019 | {
|
---|
2020 | p->fflags |= flag_to_set;
|
---|
2021 | }
|
---|
2022 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
2023 | return;
|
---|
2024 | }
|
---|
2025 |
|
---|
2026 | /*****************************************************************
|
---|
2027 | *
|
---|
2028 | * Set a file's status to 'visited'. This is required for
|
---|
2029 | * files that should be ignored, and may be present in the
|
---|
2030 | * database, but not on disk.
|
---|
2031 | *
|
---|
2032 | *****************************************************************/
|
---|
2033 | static int sh_hash_set_visited_int (char * newname, int flag)
|
---|
2034 | {
|
---|
2035 | sh_file_t * p;
|
---|
2036 | char hashbuf[KEYBUF_SIZE];
|
---|
2037 | int retval = -1;
|
---|
2038 |
|
---|
2039 | SL_ENTER(_("sh_hash_set_visited_int"));
|
---|
2040 |
|
---|
2041 | if (newname == NULL)
|
---|
2042 | SL_RETURN((-1), _("sh_hash_set_visited_int"));
|
---|
2043 |
|
---|
2044 | if (IsInit != 1)
|
---|
2045 | sh_hash_init();
|
---|
2046 |
|
---|
2047 | SH_MUTEX_LOCK(mutex_hash);
|
---|
2048 |
|
---|
2049 | if (sl_strlen(newname) <= MAX_PATH_STORE)
|
---|
2050 | p = hashsearch(newname);
|
---|
2051 | else
|
---|
2052 | p = hashsearch (sh_tiger_hash(newname, TIGER_DATA, sl_strlen(newname),
|
---|
2053 | hashbuf, sizeof(hashbuf)));
|
---|
2054 |
|
---|
2055 | if (p)
|
---|
2056 | {
|
---|
2057 | if (flag == SH_FFLAG_CHECKED)
|
---|
2058 | {
|
---|
2059 | CLEAR_SH_FFLAG_REPORTED(p->fflags);
|
---|
2060 | CLEAR_SH_FFLAG_VISITED(p->fflags);
|
---|
2061 | SET_SH_FFLAG_CHECKED(p->fflags);
|
---|
2062 | }
|
---|
2063 | else
|
---|
2064 | {
|
---|
2065 | SET_SH_FFLAG_VISITED(p->fflags);
|
---|
2066 | CLEAR_SH_FFLAG_CHECKED(p->fflags);
|
---|
2067 | if (flag == SH_FFLAG_REPORTED)
|
---|
2068 | SET_SH_FFLAG_REPORTED(p->fflags);
|
---|
2069 | else
|
---|
2070 | CLEAR_SH_FFLAG_REPORTED(p->fflags);
|
---|
2071 | }
|
---|
2072 | retval = 0;
|
---|
2073 | }
|
---|
2074 |
|
---|
2075 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
2076 | SL_RETURN((retval), _("sh_hash_set_visited_int"));
|
---|
2077 | }
|
---|
2078 |
|
---|
2079 |
|
---|
2080 | /* cause the record to be deleted without a 'missing' message
|
---|
2081 | */
|
---|
2082 | int sh_hash_set_missing (char * newname)
|
---|
2083 | {
|
---|
2084 | int i;
|
---|
2085 | SL_ENTER(_("sh_hash_set_visited"));
|
---|
2086 | i = sh_hash_set_visited_int(newname, SH_FFLAG_CHECKED);
|
---|
2087 | SL_RETURN(i, _("sh_hash_set_visited"));
|
---|
2088 | }
|
---|
2089 |
|
---|
2090 | /* mark the file as visited and reported
|
---|
2091 | */
|
---|
2092 | int sh_hash_set_visited (char * newname)
|
---|
2093 | {
|
---|
2094 | int i;
|
---|
2095 | SL_ENTER(_("sh_hash_set_visited"));
|
---|
2096 | i = sh_hash_set_visited_int(newname, SH_FFLAG_REPORTED);
|
---|
2097 | SL_RETURN(i, _("sh_hash_set_visited"));
|
---|
2098 | }
|
---|
2099 |
|
---|
2100 | /* mark the file as visited and NOT reported
|
---|
2101 | * used to avoid deletion of file from internal database
|
---|
2102 | */
|
---|
2103 | int sh_hash_set_visited_true (char * newname)
|
---|
2104 | {
|
---|
2105 | int i;
|
---|
2106 | SL_ENTER(_("sh_hash_set_visited_true"));
|
---|
2107 | i = sh_hash_set_visited_int(newname, 0);
|
---|
2108 | SL_RETURN(i, _("sh_hash_set_visited_true"));
|
---|
2109 | }
|
---|
2110 |
|
---|
2111 |
|
---|
2112 | /******************************************************************
|
---|
2113 | *
|
---|
2114 | * Data entry for arbitrary data into database
|
---|
2115 | *
|
---|
2116 | ******************************************************************/
|
---|
2117 |
|
---|
2118 | void sh_hash_push2db (char * key, unsigned long val1,
|
---|
2119 | unsigned long val2, unsigned long val3,
|
---|
2120 | unsigned char * str, int size)
|
---|
2121 | {
|
---|
2122 | file_type tmpFile;
|
---|
2123 | int i = 0;
|
---|
2124 | char * p;
|
---|
2125 | char i2h[2];
|
---|
2126 |
|
---|
2127 | tmpFile.attr_string = NULL;
|
---|
2128 | tmpFile.link_path = NULL;
|
---|
2129 |
|
---|
2130 | sl_strlcpy(tmpFile.fullpath, key, PATH_MAX);
|
---|
2131 | tmpFile.size = val1;
|
---|
2132 | tmpFile.mtime = val2;
|
---|
2133 | tmpFile.ctime = val3;
|
---|
2134 |
|
---|
2135 | tmpFile.atime = 0;
|
---|
2136 | tmpFile.mode = 0;
|
---|
2137 | tmpFile.owner = 0;
|
---|
2138 | tmpFile.group = 0;
|
---|
2139 | sl_strlcpy(tmpFile.c_owner, _("root"), 5);
|
---|
2140 | sl_strlcpy(tmpFile.c_group, _("root"), 5);
|
---|
2141 |
|
---|
2142 | if ((str != NULL) && (size < (PATH_MAX/2)-1))
|
---|
2143 | {
|
---|
2144 | tmpFile.c_mode[0] = 'l';
|
---|
2145 | tmpFile.c_mode[1] = 'r'; tmpFile.c_mode[2] = 'w';
|
---|
2146 | tmpFile.c_mode[3] = 'x'; tmpFile.c_mode[4] = 'r';
|
---|
2147 | tmpFile.c_mode[5] = 'w'; tmpFile.c_mode[6] = 'x';
|
---|
2148 | tmpFile.c_mode[7] = 'r'; tmpFile.c_mode[8] = 'w';
|
---|
2149 | tmpFile.c_mode[9] = 'x'; tmpFile.c_mode[10] = '\0';
|
---|
2150 | tmpFile.link_path = SH_ALLOC((size * 2) + 2);
|
---|
2151 | for (i = 0; i < size; ++i)
|
---|
2152 | {
|
---|
2153 | p = sh_util_charhex (str[i],i2h);
|
---|
2154 | tmpFile.link_path[2*i] = p[0];
|
---|
2155 | tmpFile.link_path[2*i+1] = p[1];
|
---|
2156 | tmpFile.link_path[2*i+2] = '\0';
|
---|
2157 | }
|
---|
2158 | }
|
---|
2159 | else
|
---|
2160 | {
|
---|
2161 | for (i = 0; i < 10; ++i)
|
---|
2162 | tmpFile.c_mode[i] = '-';
|
---|
2163 | tmpFile.c_mode[10] = '\0';
|
---|
2164 | tmpFile.link_path = sh_util_strdup("-");
|
---|
2165 | }
|
---|
2166 |
|
---|
2167 | if (sh.flag.checkSum == SH_CHECK_CHECK &&
|
---|
2168 | sh.flag.update == S_TRUE)
|
---|
2169 | sh_hash_pushdata_memory (&tmpFile, SH_KEY_NULL);
|
---|
2170 | else
|
---|
2171 | sh_hash_pushdata (&tmpFile, SH_KEY_NULL);
|
---|
2172 |
|
---|
2173 | if (tmpFile.link_path) SH_FREE(tmpFile.link_path);
|
---|
2174 | return;
|
---|
2175 | }
|
---|
2176 |
|
---|
2177 | extern int sh_util_hextobinary (char * binary, char * hex, int bytes);
|
---|
2178 |
|
---|
2179 | char * sh_hash_db2pop (char * key, unsigned long * val1,
|
---|
2180 | unsigned long * val2, unsigned long * val3,
|
---|
2181 | int * size)
|
---|
2182 | {
|
---|
2183 | file_type tmpFile;
|
---|
2184 | size_t len;
|
---|
2185 | char * p;
|
---|
2186 | int i;
|
---|
2187 | char * retval = NULL;
|
---|
2188 |
|
---|
2189 | *size = 0;
|
---|
2190 |
|
---|
2191 | if (0 == sh_hash_get_it (key, &tmpFile))
|
---|
2192 | {
|
---|
2193 | *val1 = tmpFile.size;
|
---|
2194 | *val2 = tmpFile.mtime;
|
---|
2195 | *val3 = tmpFile.ctime;
|
---|
2196 |
|
---|
2197 | if (tmpFile.link_path && tmpFile.link_path[0] != '-')
|
---|
2198 | {
|
---|
2199 | len = strlen(tmpFile.link_path);
|
---|
2200 |
|
---|
2201 | p = SH_ALLOC((len/2)+1);
|
---|
2202 | i = sh_util_hextobinary (p, tmpFile.link_path, len);
|
---|
2203 |
|
---|
2204 | if (i == 0)
|
---|
2205 | {
|
---|
2206 | *size = (len/2);
|
---|
2207 | p[*size] = '\0';
|
---|
2208 | retval = p;
|
---|
2209 | }
|
---|
2210 | else
|
---|
2211 | {
|
---|
2212 | SH_FREE(p);
|
---|
2213 | *size = 0;
|
---|
2214 | }
|
---|
2215 | }
|
---|
2216 | else
|
---|
2217 | {
|
---|
2218 | *size = 0;
|
---|
2219 | }
|
---|
2220 | }
|
---|
2221 | else
|
---|
2222 | {
|
---|
2223 | *size = -1;
|
---|
2224 | *val1 = 0;
|
---|
2225 | *val2 = 0;
|
---|
2226 | *val3 = 0;
|
---|
2227 | }
|
---|
2228 | if (tmpFile.link_path) SH_FREE(tmpFile.link_path);
|
---|
2229 | return retval;
|
---|
2230 | }
|
---|
2231 |
|
---|
2232 |
|
---|
2233 |
|
---|
2234 |
|
---|
2235 | /******************************************************************
|
---|
2236 | *
|
---|
2237 | * Data entry in hash table
|
---|
2238 | *
|
---|
2239 | ******************************************************************/
|
---|
2240 | sh_file_t * sh_hash_push_int (file_type * buf, char * fileHash)
|
---|
2241 | {
|
---|
2242 | sh_file_t * fp;
|
---|
2243 | sh_filestore_t p;
|
---|
2244 |
|
---|
2245 | size_t len;
|
---|
2246 | char * fullpath;
|
---|
2247 | char * linkpath;
|
---|
2248 | char * attr_string = NULL;
|
---|
2249 | char hashbuf[KEYBUF_SIZE];
|
---|
2250 |
|
---|
2251 | SL_ENTER(_("sh_hash_push_int"));
|
---|
2252 |
|
---|
2253 | fp = SH_ALLOC(sizeof(sh_file_t));
|
---|
2254 |
|
---|
2255 | p.mark = REC_MAGIC;
|
---|
2256 | if (buf->attr_string)
|
---|
2257 | p.mark |= REC_FLAGS_ATTR;
|
---|
2258 | sl_strlcpy(p.c_mode, buf->c_mode, 11);
|
---|
2259 | sl_strlcpy(p.c_group, buf->c_group, GROUP_MAX+1);
|
---|
2260 | sl_strlcpy(p.c_owner, buf->c_owner, USER_MAX+1);
|
---|
2261 | sl_strlcpy(p.checksum, fileHash, KEY_LEN+1);
|
---|
2262 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
2263 | sl_strlcpy(p.c_attributes, buf->c_attributes, 13);
|
---|
2264 | #endif
|
---|
2265 |
|
---|
2266 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
2267 | p.attributes = (UINT32) buf->attributes;
|
---|
2268 | #endif
|
---|
2269 | p.linkmode = (UINT32) buf->linkmode;
|
---|
2270 | p.hardlinks = (UINT32) buf->hardlinks;
|
---|
2271 | p.dev = (UINT64) buf->dev;
|
---|
2272 | p.rdev = (UINT64) buf->rdev;
|
---|
2273 | p.mode = (UINT32) buf->mode;
|
---|
2274 | p.ino = (UINT32) buf->ino;
|
---|
2275 | p.size = (UINT64) buf->size;
|
---|
2276 | p.mtime = (UINT64) buf->mtime;
|
---|
2277 | p.atime = (UINT64) buf->atime;
|
---|
2278 | p.ctime = (UINT64) buf->ctime;
|
---|
2279 | p.owner = (UINT32) buf->owner;
|
---|
2280 | p.group = (UINT32) buf->group;
|
---|
2281 |
|
---|
2282 | memcpy( &(*fp).theFile, &p, sizeof(sh_filestore_t) );
|
---|
2283 | fp->fflags = 0; /* init fflags */
|
---|
2284 | fp->modi_mask = 0L;
|
---|
2285 |
|
---|
2286 | if (buf->attr_string)
|
---|
2287 | attr_string = sh_util_strdup(buf->attr_string);
|
---|
2288 | fp->attr_string = attr_string;
|
---|
2289 |
|
---|
2290 | len = sl_strlen(buf->fullpath);
|
---|
2291 | if (len <= MAX_PATH_STORE)
|
---|
2292 | {
|
---|
2293 | fullpath = SH_ALLOC(len+1);
|
---|
2294 | sl_strlcpy(fullpath, buf->fullpath, len+1);
|
---|
2295 | }
|
---|
2296 | else
|
---|
2297 | {
|
---|
2298 | fullpath = SH_ALLOC(KEY_LEN + 1);
|
---|
2299 | sl_strlcpy(fullpath,
|
---|
2300 | sh_tiger_hash (buf->fullpath, TIGER_DATA, len,
|
---|
2301 | hashbuf, sizeof(hashbuf)),
|
---|
2302 | KEY_LEN+1);
|
---|
2303 | }
|
---|
2304 | fp->fullpath = fullpath;
|
---|
2305 |
|
---|
2306 | if (buf->link_path)
|
---|
2307 | {
|
---|
2308 | len = sl_strlen(buf->link_path);
|
---|
2309 | if (len <= MAX_PATH_STORE)
|
---|
2310 | {
|
---|
2311 | linkpath = SH_ALLOC(len+1);
|
---|
2312 | sl_strlcpy(linkpath, buf->link_path, len+1);
|
---|
2313 | }
|
---|
2314 | else
|
---|
2315 | {
|
---|
2316 | linkpath = SH_ALLOC(KEY_LEN + 1);
|
---|
2317 | sl_strlcpy(linkpath,
|
---|
2318 | sh_tiger_hash (buf->link_path, TIGER_DATA, len,
|
---|
2319 | hashbuf, sizeof(hashbuf)),
|
---|
2320 | KEY_LEN+1);
|
---|
2321 | }
|
---|
2322 | fp->linkpath = linkpath;
|
---|
2323 | }
|
---|
2324 | else
|
---|
2325 | fp->linkpath = NULL;
|
---|
2326 |
|
---|
2327 | SL_RETURN( fp, _("sh_hash_push_int"));
|
---|
2328 | }
|
---|
2329 |
|
---|
2330 | #ifdef HAVE_INTTYPES_H
|
---|
2331 | #include <inttypes.h>
|
---|
2332 | #else
|
---|
2333 | #ifdef HAVE_STDINT_H
|
---|
2334 | #include <stdint.h>
|
---|
2335 | #endif
|
---|
2336 | #endif
|
---|
2337 |
|
---|
2338 | #ifndef PRIu64
|
---|
2339 | #ifdef HAVE_LONG_32
|
---|
2340 | #define PRIu64 "llu"
|
---|
2341 | #else
|
---|
2342 | #define PRIu64 "lu"
|
---|
2343 | #endif
|
---|
2344 | #endif
|
---|
2345 |
|
---|
2346 | char * sh_hash_size_format()
|
---|
2347 | {
|
---|
2348 | static char form_rval[81];
|
---|
2349 |
|
---|
2350 | SL_ENTER(_("sh_hash_size_format"));
|
---|
2351 |
|
---|
2352 |
|
---|
2353 | #ifdef SH_USE_XML
|
---|
2354 | sl_snprintf(form_rval, 80, _("%s%s%s%s%s"),
|
---|
2355 | _("size_old=\"%"), PRIu64, _("\" size_new=\"%"), PRIu64, "\" ");
|
---|
2356 | #else
|
---|
2357 | sl_snprintf(form_rval, 80, _("%s%s%s%s%s"),
|
---|
2358 | _("size_old=<%"), PRIu64, _(">, size_new=<%"), PRIu64, ">, ");
|
---|
2359 | #endif
|
---|
2360 |
|
---|
2361 | SL_RETURN( form_rval, _("sh_hash_size_format"));
|
---|
2362 | }
|
---|
2363 |
|
---|
2364 |
|
---|
2365 | #ifdef SH_USE_XML
|
---|
2366 | static char * all_items (file_type * theFile, char * fileHash, int is_new)
|
---|
2367 | {
|
---|
2368 | char timstr1c[32];
|
---|
2369 | char timstr1a[32];
|
---|
2370 | char timstr1m[32];
|
---|
2371 |
|
---|
2372 | char * tmp_lnk;
|
---|
2373 | char * format;
|
---|
2374 |
|
---|
2375 | char * tmp = SH_ALLOC(SH_BUFSIZE);
|
---|
2376 | char * msg = SH_ALLOC(SH_BUFSIZE);
|
---|
2377 |
|
---|
2378 | tmp[0] = '\0';
|
---|
2379 | msg[0] = '\0';
|
---|
2380 |
|
---|
2381 |
|
---|
2382 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
2383 | if (is_new)
|
---|
2384 | format = _("mode_new=\"%s\" attr_new=\"%s\" imode_new=\"%ld\" iattr_new=\"%ld\" ");
|
---|
2385 | else
|
---|
2386 | format = _("mode_old=\"%s\" attr_old=\"%s\" imode_old=\"%ld\" iattr_old=\"%ld\" ");
|
---|
2387 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2388 | theFile->c_mode,
|
---|
2389 | theFile->c_attributes,
|
---|
2390 | (long) theFile->mode,
|
---|
2391 | (long) theFile->attributes
|
---|
2392 | );
|
---|
2393 | #else
|
---|
2394 | if (is_new)
|
---|
2395 | format = _("mode_new=\"%s\" imode_new=\"%ld\" ");
|
---|
2396 | else
|
---|
2397 | format = _("mode_old=\"%s\" imode_old=\"%ld\" ");
|
---|
2398 |
|
---|
2399 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2400 | theFile->c_mode,
|
---|
2401 | (long) theFile->mode
|
---|
2402 | );
|
---|
2403 | #endif
|
---|
2404 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2405 |
|
---|
2406 | if (is_new)
|
---|
2407 | format = _("hardlinks_new=\"%lu\" ");
|
---|
2408 | else
|
---|
2409 | format = _("hardlinks_old=\"%lu\" ");
|
---|
2410 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2411 | (unsigned long) theFile->hardlinks);
|
---|
2412 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2413 |
|
---|
2414 |
|
---|
2415 | if (is_new)
|
---|
2416 | format = _("idevice_new=\"%lu\" ");
|
---|
2417 | else
|
---|
2418 | format = _("idevice_old=\"%lu\" ");
|
---|
2419 | sl_snprintf(tmp, SH_BUFSIZE, format, (unsigned long) theFile->rdev);
|
---|
2420 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2421 |
|
---|
2422 |
|
---|
2423 | if (is_new)
|
---|
2424 | format = _("inode_new=\"%lu\" ");
|
---|
2425 | else
|
---|
2426 | format = _("inode_old=\"%lu\" ");
|
---|
2427 | sl_snprintf(tmp, SH_BUFSIZE, format, (unsigned long) theFile->ino);
|
---|
2428 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2429 |
|
---|
2430 | /*
|
---|
2431 | * also report device for prelude
|
---|
2432 | */
|
---|
2433 | #if defined(HAVE_LIBPRELUDE) && defined(HAVE_LIBPRELUDE_9)
|
---|
2434 | if (is_new)
|
---|
2435 | format = _("dev_new=\"%lu,%lu\" ");
|
---|
2436 | else
|
---|
2437 | format = _("dev_old=\"%lu,%lu\" ");
|
---|
2438 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2439 | (unsigned long) major(theFile->dev),
|
---|
2440 | (unsigned long) minor(theFile->dev));
|
---|
2441 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2442 | #endif
|
---|
2443 |
|
---|
2444 |
|
---|
2445 | if (is_new)
|
---|
2446 | format = _("owner_new=\"%s\" iowner_new=\"%ld\" ");
|
---|
2447 | else
|
---|
2448 | format = _("owner_old=\"%s\" iowner_old=\"%ld\" ");
|
---|
2449 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2450 | theFile->c_owner, (long) theFile->owner);
|
---|
2451 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2452 |
|
---|
2453 |
|
---|
2454 | if (is_new)
|
---|
2455 | format = _("group_new=\"%s\" igroup_new=\"%ld\" ");
|
---|
2456 | else
|
---|
2457 | format = _("group_old=\"%s\" igroup_old=\"%ld\" ");
|
---|
2458 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2459 | theFile->c_group, (long) theFile->group);
|
---|
2460 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2461 |
|
---|
2462 |
|
---|
2463 | if (is_new)
|
---|
2464 | sl_snprintf(tmp, SH_BUFSIZE, sh_hash_size_format(),
|
---|
2465 | (UINT64) 0, (UINT64) theFile->size);
|
---|
2466 | else
|
---|
2467 | sl_snprintf(tmp, SH_BUFSIZE, sh_hash_size_format(),
|
---|
2468 | (UINT64) theFile->size, (UINT64) 0);
|
---|
2469 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2470 |
|
---|
2471 |
|
---|
2472 | (void) sh_unix_gmttime (theFile->ctime, timstr1c, sizeof(timstr1c));
|
---|
2473 | if (is_new)
|
---|
2474 | sl_snprintf(tmp, SH_BUFSIZE, _("ctime_new=\"%s\" "), timstr1c);
|
---|
2475 | else
|
---|
2476 | sl_snprintf(tmp, SH_BUFSIZE, _("ctime_old=\"%s\" "), timstr1c);
|
---|
2477 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2478 |
|
---|
2479 | (void) sh_unix_gmttime (theFile->atime, timstr1a, sizeof(timstr1a));
|
---|
2480 | if (is_new)
|
---|
2481 | sl_snprintf(tmp, SH_BUFSIZE, _("atime_new=\"%s\" "), timstr1a);
|
---|
2482 | else
|
---|
2483 | sl_snprintf(tmp, SH_BUFSIZE, _("atime_old=\"%s\" "), timstr1a);
|
---|
2484 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2485 |
|
---|
2486 | (void) sh_unix_gmttime (theFile->mtime, timstr1m, sizeof(timstr1m));
|
---|
2487 | if (is_new)
|
---|
2488 | sl_snprintf(tmp, SH_BUFSIZE, _("mtime_new=\"%s\" "), timstr1m);
|
---|
2489 | else
|
---|
2490 | sl_snprintf(tmp, SH_BUFSIZE, _("mtime_old=\"%s\" "), timstr1m);
|
---|
2491 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2492 |
|
---|
2493 | if (is_new)
|
---|
2494 | sl_snprintf(tmp, SH_BUFSIZE, _("chksum_new=\"%s\" "), fileHash);
|
---|
2495 | else
|
---|
2496 | sl_snprintf(tmp, SH_BUFSIZE, _("chksum_old=\"%s\" "), fileHash);
|
---|
2497 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2498 |
|
---|
2499 | if (theFile->c_mode[0] == 'l' || theFile->link_path != NULL)
|
---|
2500 | {
|
---|
2501 | tmp_lnk = sh_util_safe_name(theFile->link_path);
|
---|
2502 | if (tmp_lnk)
|
---|
2503 | {
|
---|
2504 | if (is_new)
|
---|
2505 | sl_snprintf(tmp, SH_BUFSIZE, _("link_new=\"%s\" "), tmp_lnk);
|
---|
2506 | else
|
---|
2507 | sl_snprintf(tmp, SH_BUFSIZE, _("link_old=\"%s\" "), tmp_lnk);
|
---|
2508 | SH_FREE(tmp_lnk);
|
---|
2509 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2510 | }
|
---|
2511 | }
|
---|
2512 |
|
---|
2513 | if (theFile->attr_string)
|
---|
2514 | {
|
---|
2515 | tmp_lnk = sh_util_safe_name(theFile->attr_string);
|
---|
2516 | if (tmp_lnk)
|
---|
2517 | {
|
---|
2518 | if (is_new)
|
---|
2519 | sl_snprintf(tmp, SH_BUFSIZE, _("acl_new=\"%s\" "), tmp_lnk);
|
---|
2520 | else
|
---|
2521 | sl_snprintf(tmp, SH_BUFSIZE, _("acl_old=\"%s\" "), tmp_lnk);
|
---|
2522 | SH_FREE(tmp_lnk);
|
---|
2523 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2524 | }
|
---|
2525 | }
|
---|
2526 |
|
---|
2527 |
|
---|
2528 | SH_FREE(tmp);
|
---|
2529 | return (msg);
|
---|
2530 | }
|
---|
2531 | #else
|
---|
2532 | static char * all_items (file_type * theFile, char * fileHash, int is_new)
|
---|
2533 | {
|
---|
2534 | char timstr1c[32];
|
---|
2535 | char timstr1a[32];
|
---|
2536 | char timstr1m[32];
|
---|
2537 |
|
---|
2538 | char * tmp_lnk;
|
---|
2539 | char * format;
|
---|
2540 |
|
---|
2541 | char * tmp = SH_ALLOC(SH_BUFSIZE);
|
---|
2542 | char * msg = SH_ALLOC(SH_BUFSIZE);
|
---|
2543 |
|
---|
2544 | tmp[0] = '\0';
|
---|
2545 | msg[0] = '\0';
|
---|
2546 |
|
---|
2547 |
|
---|
2548 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
2549 | if (is_new)
|
---|
2550 | format = _("mode_new=<%s>, attr_new=<%s>, imode_new=<%ld>, iattr_new=<%ld>, ");
|
---|
2551 | else
|
---|
2552 | format = _("mode_old=<%s>, attr_old=<%s>, imode_old=<%ld>, iattr_old=<%ld>, ");
|
---|
2553 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2554 | theFile->c_mode,
|
---|
2555 | theFile->c_attributes,
|
---|
2556 | (long) theFile->mode,
|
---|
2557 | (long) theFile->attributes
|
---|
2558 | );
|
---|
2559 | #else
|
---|
2560 | if (is_new)
|
---|
2561 | format = _("mode_new=<%s>, imode_new=<%ld>, ");
|
---|
2562 | else
|
---|
2563 | format = _("mode_old=<%s>, imode_old=<%ld>, ");
|
---|
2564 |
|
---|
2565 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2566 | theFile->c_mode,
|
---|
2567 | (long) theFile->mode
|
---|
2568 | );
|
---|
2569 | #endif
|
---|
2570 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2571 |
|
---|
2572 | if (is_new)
|
---|
2573 | format = _("hardlinks_new=<%lu>, ");
|
---|
2574 | else
|
---|
2575 | format = _("hardlinks_old=<%lu>, ");
|
---|
2576 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2577 | (unsigned long) theFile->hardlinks);
|
---|
2578 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2579 |
|
---|
2580 |
|
---|
2581 | if (is_new)
|
---|
2582 | format = _("idevice_new=<%lu>, ");
|
---|
2583 | else
|
---|
2584 | format = _("idevice_old=<%lu>, ");
|
---|
2585 | sl_snprintf(tmp, SH_BUFSIZE, format, (unsigned long) theFile->rdev);
|
---|
2586 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2587 |
|
---|
2588 |
|
---|
2589 | if (is_new)
|
---|
2590 | format = _("inode_new=<%lu>, ");
|
---|
2591 | else
|
---|
2592 | format = _("inode_old=<%lu>, ");
|
---|
2593 | sl_snprintf(tmp, SH_BUFSIZE, format, (unsigned long) theFile->ino);
|
---|
2594 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2595 |
|
---|
2596 |
|
---|
2597 | /*
|
---|
2598 | * also report device for prelude
|
---|
2599 | */
|
---|
2600 | #if defined(HAVE_LIBPRELUDE) && defined(HAVE_LIBPRELUDE_9)
|
---|
2601 | if (is_new)
|
---|
2602 | format = _("dev_new=<%lu,%lu>, ");
|
---|
2603 | else
|
---|
2604 | format = _("dev_old=<%lu,%lu>, ");
|
---|
2605 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2606 | (unsigned long) major(theFile->dev),
|
---|
2607 | (unsigned long) minor(theFile->dev));
|
---|
2608 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2609 | #endif
|
---|
2610 |
|
---|
2611 | if (is_new)
|
---|
2612 | format = _("owner_new=<%s>, iowner_new=<%ld>, ");
|
---|
2613 | else
|
---|
2614 | format = _("owner_old=<%s>, iowner_old=<%ld>, ");
|
---|
2615 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2616 | theFile->c_owner, (long) theFile->owner);
|
---|
2617 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2618 |
|
---|
2619 |
|
---|
2620 | if (is_new)
|
---|
2621 | format = _("group_new=<%s>, igroup_new=<%ld>, ");
|
---|
2622 | else
|
---|
2623 | format = _("group_old=<%s>, igroup_old=<%ld>, ");
|
---|
2624 | sl_snprintf(tmp, SH_BUFSIZE, format,
|
---|
2625 | theFile->c_group, (long) theFile->group);
|
---|
2626 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2627 |
|
---|
2628 |
|
---|
2629 | if (is_new)
|
---|
2630 | sl_snprintf(tmp, SH_BUFSIZE, sh_hash_size_format(),
|
---|
2631 | (UINT64) 0, (UINT64) theFile->size);
|
---|
2632 | else
|
---|
2633 | sl_snprintf(tmp, SH_BUFSIZE, sh_hash_size_format(),
|
---|
2634 | (UINT64) theFile->size, (UINT64) 0);
|
---|
2635 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2636 |
|
---|
2637 |
|
---|
2638 | (void) sh_unix_gmttime (theFile->ctime, timstr1c, sizeof(timstr1c));
|
---|
2639 | if (is_new)
|
---|
2640 | sl_snprintf(tmp, SH_BUFSIZE, _("ctime_new=<%s>, "), timstr1c);
|
---|
2641 | else
|
---|
2642 | sl_snprintf(tmp, SH_BUFSIZE, _("ctime_old=<%s>, "), timstr1c);
|
---|
2643 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2644 |
|
---|
2645 | (void) sh_unix_gmttime (theFile->atime, timstr1a, sizeof(timstr1a));
|
---|
2646 | if (is_new)
|
---|
2647 | sl_snprintf(tmp, SH_BUFSIZE, _("atime_new=<%s>, "), timstr1a);
|
---|
2648 | else
|
---|
2649 | sl_snprintf(tmp, SH_BUFSIZE, _("atime_old=<%s>, "), timstr1a);
|
---|
2650 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2651 |
|
---|
2652 | (void) sh_unix_gmttime (theFile->mtime, timstr1m, sizeof(timstr1m));
|
---|
2653 | if (is_new)
|
---|
2654 | sl_snprintf(tmp, SH_BUFSIZE, _("mtime_new=<%s>, "), timstr1m);
|
---|
2655 | else
|
---|
2656 | sl_snprintf(tmp, SH_BUFSIZE, _("mtime_old=<%s>, "), timstr1m);
|
---|
2657 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2658 |
|
---|
2659 | if (is_new)
|
---|
2660 | sl_snprintf(tmp, SH_BUFSIZE, _("chksum_new=<%s>"), fileHash);
|
---|
2661 | else
|
---|
2662 | sl_snprintf(tmp, SH_BUFSIZE, _("chksum_old=<%s>"), fileHash);
|
---|
2663 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2664 |
|
---|
2665 | if (theFile->c_mode[0] == 'l' || theFile->link_path != NULL)
|
---|
2666 | {
|
---|
2667 | tmp_lnk = sh_util_safe_name(theFile->link_path);
|
---|
2668 | if (tmp_lnk)
|
---|
2669 | {
|
---|
2670 | if (is_new)
|
---|
2671 | sl_snprintf(tmp, SH_BUFSIZE, _(", link_new=<%s> "), tmp_lnk);
|
---|
2672 | else
|
---|
2673 | sl_snprintf(tmp, SH_BUFSIZE, _(", link_old=<%s> "), tmp_lnk);
|
---|
2674 | SH_FREE(tmp_lnk);
|
---|
2675 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2676 | }
|
---|
2677 | }
|
---|
2678 |
|
---|
2679 | if (theFile->attr_string)
|
---|
2680 | {
|
---|
2681 | tmp_lnk = sh_util_safe_name(theFile->attr_string);
|
---|
2682 | if (tmp_lnk)
|
---|
2683 | {
|
---|
2684 | if (is_new)
|
---|
2685 | sl_snprintf(tmp, SH_BUFSIZE, _(", acl_new=<%s> "), tmp_lnk);
|
---|
2686 | else
|
---|
2687 | sl_snprintf(tmp, SH_BUFSIZE, _(", acl_old=<%s> "), tmp_lnk);
|
---|
2688 | SH_FREE(tmp_lnk);
|
---|
2689 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
2690 | }
|
---|
2691 | }
|
---|
2692 |
|
---|
2693 | SH_FREE(tmp);
|
---|
2694 | return (msg);
|
---|
2695 | }
|
---|
2696 | #endif
|
---|
2697 |
|
---|
2698 | void sh_hash_pushdata_memory (file_type * theFile, char * fileHash)
|
---|
2699 | {
|
---|
2700 | sh_file_t * p;
|
---|
2701 |
|
---|
2702 | SL_ENTER(_("sh_hash_pushdata_memory"));
|
---|
2703 |
|
---|
2704 | p = sh_hash_push_int(theFile, fileHash);
|
---|
2705 | if (p)
|
---|
2706 | {
|
---|
2707 | SH_MUTEX_LOCK(mutex_hash);
|
---|
2708 | hashinsert (p);
|
---|
2709 | p->modi_mask = theFile->check_mask;
|
---|
2710 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
2711 | }
|
---|
2712 |
|
---|
2713 | SL_RET0(_("sh_hash_pushdata_memory"));
|
---|
2714 | }
|
---|
2715 |
|
---|
2716 |
|
---|
2717 | /*****************************************************************
|
---|
2718 | *
|
---|
2719 | * Compare a file with the database status.
|
---|
2720 | *
|
---|
2721 | *****************************************************************/
|
---|
2722 | int sh_hash_compdata (int class, file_type * theFile, char * fileHash,
|
---|
2723 | char * policy_override, int severity_override)
|
---|
2724 | {
|
---|
2725 | char * msg;
|
---|
2726 | sh_file_t * p;
|
---|
2727 | char * tmp;
|
---|
2728 | char * tmp_path;
|
---|
2729 | char * tmp_lnk;
|
---|
2730 | char * tmp_lnk_old;
|
---|
2731 |
|
---|
2732 | char * str;
|
---|
2733 |
|
---|
2734 | char timstr1c[32];
|
---|
2735 | char timstr2c[32];
|
---|
2736 | char timstr1a[32];
|
---|
2737 | char timstr2a[32];
|
---|
2738 | char timstr1m[32];
|
---|
2739 | char timstr2m[32];
|
---|
2740 | char linkHash[KEY_LEN+1];
|
---|
2741 | int maxcomp;
|
---|
2742 |
|
---|
2743 | char change_code[16];
|
---|
2744 | int i;
|
---|
2745 |
|
---|
2746 | unsigned long modi_mask = 0;
|
---|
2747 |
|
---|
2748 | char log_policy[32];
|
---|
2749 | volatile int log_severity;
|
---|
2750 | char hashbuf[KEYBUF_SIZE];
|
---|
2751 |
|
---|
2752 | int retval = 0;
|
---|
2753 |
|
---|
2754 | SL_ENTER(_("sh_hash_compdata"));
|
---|
2755 |
|
---|
2756 | if (IsInit != 1) sh_hash_init();
|
---|
2757 |
|
---|
2758 | if (severity_override < 0)
|
---|
2759 | log_severity = ShDFLevel[class];
|
---|
2760 | else
|
---|
2761 | log_severity = severity_override;
|
---|
2762 |
|
---|
2763 | if (policy_override != NULL)
|
---|
2764 | sl_strlcpy (log_policy, policy_override, 32);
|
---|
2765 |
|
---|
2766 | /* -------- find the entry for the file ---------------- */
|
---|
2767 |
|
---|
2768 | SH_MUTEX_LOCK(mutex_hash);
|
---|
2769 |
|
---|
2770 | if (sl_strlen(theFile->fullpath) <= MAX_PATH_STORE)
|
---|
2771 | p = hashsearch(theFile->fullpath);
|
---|
2772 | else
|
---|
2773 | p = hashsearch( sh_tiger_hash(theFile->fullpath,
|
---|
2774 | TIGER_DATA,
|
---|
2775 | sl_strlen(theFile->fullpath),
|
---|
2776 | hashbuf, sizeof(hashbuf))
|
---|
2777 | );
|
---|
2778 |
|
---|
2779 |
|
---|
2780 | /* --------- Not found in database. ------------
|
---|
2781 | */
|
---|
2782 |
|
---|
2783 | if (p == NULL)
|
---|
2784 | {
|
---|
2785 | if (S_FALSE == sh_ignore_chk_new(theFile->fullpath))
|
---|
2786 | {
|
---|
2787 | tmp = sh_util_safe_name(theFile->fullpath);
|
---|
2788 |
|
---|
2789 | str = all_items (theFile, fileHash, 1);
|
---|
2790 | sh_error_handle (log_severity, FIL__, __LINE__, 0,
|
---|
2791 | MSG_FI_ADD2,
|
---|
2792 | tmp, str);
|
---|
2793 | SH_FREE(str);
|
---|
2794 |
|
---|
2795 | SH_FREE(tmp);
|
---|
2796 | }
|
---|
2797 |
|
---|
2798 | if (sh.flag.reportonce == S_TRUE)
|
---|
2799 | SET_SH_FFLAG_REPORTED(theFile->file_reported);
|
---|
2800 |
|
---|
2801 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
2802 | {
|
---|
2803 | p = sh_hash_push_int(theFile, fileHash);
|
---|
2804 | if (p)
|
---|
2805 | {
|
---|
2806 | hashinsert (p);
|
---|
2807 | p->modi_mask = theFile->check_mask;
|
---|
2808 | }
|
---|
2809 | }
|
---|
2810 |
|
---|
2811 | else if (S_TRUE == sh.flag.update)
|
---|
2812 | {
|
---|
2813 | if (S_TRUE == sh_util_ask_update (theFile->fullpath))
|
---|
2814 | {
|
---|
2815 | p = sh_hash_push_int(theFile, fileHash);
|
---|
2816 | if (p)
|
---|
2817 | {
|
---|
2818 | hashinsert (p);
|
---|
2819 | p->modi_mask = theFile->check_mask;
|
---|
2820 | }
|
---|
2821 | }
|
---|
2822 | else
|
---|
2823 | {
|
---|
2824 | retval = 1;
|
---|
2825 | goto unlock_and_return;
|
---|
2826 | }
|
---|
2827 | }
|
---|
2828 |
|
---|
2829 | goto unlock_and_return;
|
---|
2830 | }
|
---|
2831 |
|
---|
2832 | p->modi_mask = theFile->check_mask;
|
---|
2833 |
|
---|
2834 | /* initialize change_code */
|
---|
2835 | for (i = 0; i < 15; ++i)
|
---|
2836 | change_code[i] = '-';
|
---|
2837 | change_code[15] = '\0';
|
---|
2838 |
|
---|
2839 | TPT ((0, FIL__, __LINE__, _("file=<%s>, cs_old=<%s>, cs_new=<%s>\n"),
|
---|
2840 | theFile->fullpath, fileHash, p->theFile.checksum));
|
---|
2841 |
|
---|
2842 | if ( (fileHash != NULL) && (p->theFile.checksum != NULL) &&
|
---|
2843 | (strncmp (fileHash, p->theFile.checksum, KEY_LEN) != 0) &&
|
---|
2844 | (theFile->check_mask & MODI_CHK) != 0)
|
---|
2845 | {
|
---|
2846 | if ((theFile->check_mask & MODI_SGROW) == 0)
|
---|
2847 | {
|
---|
2848 | modi_mask |= MODI_CHK;
|
---|
2849 | change_code[0] = 'C';
|
---|
2850 | TPT ((0, FIL__, __LINE__, _("mod=<checksum>")));
|
---|
2851 | }
|
---|
2852 | else
|
---|
2853 | {
|
---|
2854 | if (0 != strncmp (&fileHash[KEY_LEN + 1],
|
---|
2855 | p->theFile.checksum, KEY_LEN))
|
---|
2856 | {
|
---|
2857 | modi_mask |= MODI_CHK;
|
---|
2858 | change_code[0] = 'C';
|
---|
2859 | TPT ((0, FIL__, __LINE__, _("mod=<checksum>")));
|
---|
2860 | }
|
---|
2861 | else
|
---|
2862 | {
|
---|
2863 | p->theFile.size = theFile->size;
|
---|
2864 | sl_strlcpy(p->theFile.checksum, fileHash, KEY_LEN+1);
|
---|
2865 | }
|
---|
2866 | }
|
---|
2867 | }
|
---|
2868 |
|
---|
2869 | if (p->theFile.c_mode[0] == 'l')
|
---|
2870 | {
|
---|
2871 | if (sl_strlen(theFile->link_path) >= MAX_PATH_STORE)
|
---|
2872 | {
|
---|
2873 | sl_strlcpy(linkHash,
|
---|
2874 | sh_tiger_hash(theFile->link_path,
|
---|
2875 | TIGER_DATA,
|
---|
2876 | sl_strlen(theFile->link_path),
|
---|
2877 | hashbuf, sizeof(hashbuf)),
|
---|
2878 | MAX_PATH_STORE+1);
|
---|
2879 | maxcomp = MAX_PATH_STORE;
|
---|
2880 | }
|
---|
2881 | else
|
---|
2882 | {
|
---|
2883 | sl_strlcpy(linkHash, theFile->link_path, KEY_LEN + 1);
|
---|
2884 | maxcomp = KEY_LEN;
|
---|
2885 | }
|
---|
2886 |
|
---|
2887 |
|
---|
2888 | if ( sl_strncmp (linkHash, p->linkpath, maxcomp) != 0 &&
|
---|
2889 | (theFile->check_mask & MODI_LNK) != 0)
|
---|
2890 | {
|
---|
2891 | modi_mask |= MODI_LNK;
|
---|
2892 | change_code[1] = 'L';
|
---|
2893 | TPT ((0, FIL__, __LINE__, _("mod=<link>")));
|
---|
2894 | }
|
---|
2895 | }
|
---|
2896 |
|
---|
2897 | if (p->theFile.c_mode[0] == 'c' || p->theFile.c_mode[0] == 'b')
|
---|
2898 | {
|
---|
2899 | if ( ( major(theFile->rdev) != major((dev_t)p->theFile.rdev) ||
|
---|
2900 | minor(theFile->rdev) != minor((dev_t)p->theFile.rdev) ) &&
|
---|
2901 | (theFile->check_mask & MODI_RDEV) != 0)
|
---|
2902 | {
|
---|
2903 | modi_mask |= MODI_RDEV;
|
---|
2904 | change_code[2] = 'D';
|
---|
2905 | TPT ((0, FIL__, __LINE__, _("mod=<rdev>")));
|
---|
2906 | }
|
---|
2907 | }
|
---|
2908 |
|
---|
2909 | /* cast to UINT32 in case ino_t is not 32bit
|
---|
2910 | */
|
---|
2911 | if ( (UINT32) theFile->ino != (UINT32) p->theFile.ino &&
|
---|
2912 | (theFile->check_mask & MODI_INO) != 0)
|
---|
2913 | {
|
---|
2914 | modi_mask |= MODI_INO;
|
---|
2915 | change_code[3] = 'I';
|
---|
2916 | TPT ((0, FIL__, __LINE__, _("mod=<inode>")));
|
---|
2917 | }
|
---|
2918 |
|
---|
2919 | if ( theFile->hardlinks != (nlink_t) p->theFile.hardlinks &&
|
---|
2920 | (theFile->check_mask & MODI_HLN) != 0)
|
---|
2921 | {
|
---|
2922 | modi_mask |= MODI_HLN;
|
---|
2923 | change_code[4] = 'H';
|
---|
2924 | TPT ((0, FIL__, __LINE__, _("mod=<hardlink>")));
|
---|
2925 | }
|
---|
2926 |
|
---|
2927 |
|
---|
2928 | if ( ( (theFile->mode != p->theFile.mode)
|
---|
2929 | #if defined(USE_ACL) || defined(USE_XATTR)
|
---|
2930 | || ( (sh_unix_check_selinux|sh_unix_check_acl) &&
|
---|
2931 | (
|
---|
2932 | (theFile->attr_string == NULL && p->attr_string != NULL) ||
|
---|
2933 | (theFile->attr_string != NULL && p->attr_string == NULL) ||
|
---|
2934 | (theFile->attr_string != NULL && 0 != strcmp(theFile->attr_string, p->attr_string))
|
---|
2935 | )
|
---|
2936 | )
|
---|
2937 | #endif
|
---|
2938 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
2939 | || (theFile->attributes != p->theFile.attributes)
|
---|
2940 | #endif
|
---|
2941 | )
|
---|
2942 | && (theFile->check_mask & MODI_MOD) != 0)
|
---|
2943 | {
|
---|
2944 | modi_mask |= MODI_MOD;
|
---|
2945 | change_code[5] = 'M';
|
---|
2946 | TPT ((0, FIL__, __LINE__, _("mod=<mode>")));
|
---|
2947 | /*
|
---|
2948 | * report link path if switch link/no link
|
---|
2949 | */
|
---|
2950 | if ((theFile->check_mask & MODI_LNK) != 0 &&
|
---|
2951 | (theFile->c_mode[0] != p->theFile.c_mode[0]) &&
|
---|
2952 | (theFile->c_mode[0] == 'l' || p->theFile.c_mode[0] == 'l'))
|
---|
2953 | {
|
---|
2954 | modi_mask |= MODI_LNK;
|
---|
2955 | change_code[1] = 'L';
|
---|
2956 | TPT ((0, FIL__, __LINE__, _("mod=<link>")));
|
---|
2957 | }
|
---|
2958 | }
|
---|
2959 |
|
---|
2960 | if ( theFile->owner != (uid_t) p->theFile.owner &&
|
---|
2961 | (theFile->check_mask & MODI_USR) != 0)
|
---|
2962 | {
|
---|
2963 | modi_mask |= MODI_USR;
|
---|
2964 | change_code[6] = 'U';
|
---|
2965 | TPT ((0, FIL__, __LINE__, _("mod=<user>")));
|
---|
2966 | }
|
---|
2967 |
|
---|
2968 | if ( theFile->group != (gid_t) p->theFile.group &&
|
---|
2969 | (theFile->check_mask & MODI_GRP) != 0)
|
---|
2970 | {
|
---|
2971 | modi_mask |= MODI_GRP;
|
---|
2972 | change_code[7] = 'G';
|
---|
2973 | TPT ((0, FIL__, __LINE__, _("mod=<group>")));
|
---|
2974 | }
|
---|
2975 |
|
---|
2976 |
|
---|
2977 | if ( theFile->mtime != (time_t) p->theFile.mtime &&
|
---|
2978 | (theFile->check_mask & MODI_MTM) != 0)
|
---|
2979 | {
|
---|
2980 | modi_mask |= MODI_MTM;
|
---|
2981 | change_code[8] = 'T';
|
---|
2982 | TPT ((0, FIL__, __LINE__, _("mod=<mtime>")));
|
---|
2983 | }
|
---|
2984 |
|
---|
2985 | if ( (theFile->check_mask & MODI_ATM) != 0 &&
|
---|
2986 | theFile->atime != (time_t) p->theFile.atime)
|
---|
2987 | {
|
---|
2988 | modi_mask |= MODI_ATM;
|
---|
2989 | change_code[8] = 'T';
|
---|
2990 | TPT ((0, FIL__, __LINE__, _("mod=<atime>")));
|
---|
2991 | }
|
---|
2992 |
|
---|
2993 |
|
---|
2994 | /* Resetting the access time will set a new ctime. Thus, either we ignore
|
---|
2995 | * the access time or the ctime for NOIGNORE
|
---|
2996 | */
|
---|
2997 | if ( theFile->ctime != (time_t) p->theFile.ctime &&
|
---|
2998 | (theFile->check_mask & MODI_CTM) != 0)
|
---|
2999 | {
|
---|
3000 | modi_mask |= MODI_CTM;
|
---|
3001 | change_code[8] = 'T';
|
---|
3002 | TPT ((0, FIL__, __LINE__, _("mod=<ctime>")));
|
---|
3003 | }
|
---|
3004 |
|
---|
3005 | if ( theFile->size != (off_t) p->theFile.size &&
|
---|
3006 | (theFile->check_mask & MODI_SIZ) != 0)
|
---|
3007 | {
|
---|
3008 | if ((theFile->check_mask & MODI_SGROW) == 0 ||
|
---|
3009 | theFile->size < (off_t) p->theFile.size)
|
---|
3010 | {
|
---|
3011 | modi_mask |= MODI_SIZ;
|
---|
3012 | change_code[9] = 'S';
|
---|
3013 | TPT ((0, FIL__, __LINE__, _("mod=<size>")));
|
---|
3014 | }
|
---|
3015 | }
|
---|
3016 | change_code[10] = '\0';
|
---|
3017 |
|
---|
3018 | /* --- Report full details. ---
|
---|
3019 | */
|
---|
3020 | if (modi_mask != 0 && sh.flag.fulldetail == S_TRUE)
|
---|
3021 | {
|
---|
3022 | if ((theFile->check_mask & MODI_ATM) == 0)
|
---|
3023 | modi_mask = MASK_READONLY_;
|
---|
3024 | else
|
---|
3025 | modi_mask = MASK_NOIGNORE_;
|
---|
3026 | }
|
---|
3027 |
|
---|
3028 | /* --- Report on modified files. ---
|
---|
3029 | */
|
---|
3030 | if (modi_mask != 0 && (!SH_FFLAG_REPORTED_SET(p->fflags)))
|
---|
3031 | {
|
---|
3032 | tmp = SH_ALLOC(SH_BUFSIZE);
|
---|
3033 | msg = SH_ALLOC(SH_BUFSIZE);
|
---|
3034 | msg[0] = '\0';
|
---|
3035 |
|
---|
3036 | if ( ((modi_mask & MODI_MOD) != 0)
|
---|
3037 | #if defined(HAVE_LIBPRELUDE) && defined(HAVE_LIBPRELUDE_9)
|
---|
3038 | || ((modi_mask & MODI_USR) != 0)
|
---|
3039 | || ((modi_mask & MODI_GRP) != 0)
|
---|
3040 | #endif
|
---|
3041 | )
|
---|
3042 | {
|
---|
3043 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
3044 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3045 | #ifdef SH_USE_XML
|
---|
3046 | _("mode_old=\"%s\" mode_new=\"%s\" attr_old=\"%s\" attr_new=\"%s\" imode_old=\"%ld\" imode_new=\"%ld\" iattr_old=\"%ld\" iattr_new=\"%ld\" "),
|
---|
3047 | #else
|
---|
3048 | _("mode_old=<%s>, mode_new=<%s>, attr_old=<%s>, attr_new=<%s>, "),
|
---|
3049 | #endif
|
---|
3050 | p->theFile.c_mode, theFile->c_mode,
|
---|
3051 | p->theFile.c_attributes, theFile->c_attributes
|
---|
3052 | #ifdef SH_USE_XML
|
---|
3053 | , (long) p->theFile.mode, (long) theFile->mode,
|
---|
3054 | (long) p->theFile.attributes,
|
---|
3055 | (long) theFile->attributes
|
---|
3056 | #endif
|
---|
3057 | );
|
---|
3058 | #else
|
---|
3059 | #ifdef SH_USE_XML
|
---|
3060 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3061 | _("mode_old=\"%s\" mode_new=\"%s\" imode_old=\"%ld\" imode_new=\"%ld\" "),
|
---|
3062 | p->theFile.c_mode, theFile->c_mode,
|
---|
3063 | (long) p->theFile.mode, (long) theFile->mode);
|
---|
3064 | #else
|
---|
3065 | sl_snprintf(tmp, SH_BUFSIZE, _("mode_old=<%s>, mode_new=<%s>, "),
|
---|
3066 | p->theFile.c_mode, theFile->c_mode);
|
---|
3067 | #endif
|
---|
3068 | #endif
|
---|
3069 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3070 |
|
---|
3071 | #if defined(USE_ACL) || defined(USE_XATTR)
|
---|
3072 | if (theFile->attr_string != NULL || p->attr_string != NULL)
|
---|
3073 | {
|
---|
3074 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3075 | #ifdef SH_USE_XML
|
---|
3076 | _("acl_old=\"%s\" acl_new=\"%s\" "),
|
---|
3077 | #else
|
---|
3078 | _("acl_old=<%s>, acl_new=<%s>, "),
|
---|
3079 | #endif
|
---|
3080 | (p->attr_string) ? p->attr_string : _("none"),
|
---|
3081 | (theFile->attr_string) ? theFile->attr_string : _("none"));
|
---|
3082 |
|
---|
3083 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3084 | }
|
---|
3085 | #endif
|
---|
3086 |
|
---|
3087 | #ifdef REPLACE_OLD
|
---|
3088 | if ((modi_mask & MODI_MOD) != 0)
|
---|
3089 | {
|
---|
3090 | /*
|
---|
3091 | * We postpone update if sh.flag.update == S_TRUE because
|
---|
3092 | * in interactive mode the user may not accept the change.
|
---|
3093 | */
|
---|
3094 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3095 | {
|
---|
3096 | sl_strlcpy(p->theFile.c_mode, theFile->c_mode, 11);
|
---|
3097 | p->theFile.mode = theFile->mode;
|
---|
3098 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
3099 | sl_strlcpy(p->theFile.c_attributes,theFile->c_attributes,16);
|
---|
3100 | p->theFile.attributes = theFile->attributes;
|
---|
3101 | #endif
|
---|
3102 | #if defined(USE_ACL) || defined(USE_XATTR)
|
---|
3103 | if (p->attr_string == NULL && theFile->attr_string != NULL)
|
---|
3104 | { p->attr_string = sh_util_strdup (theFile->attr_string); }
|
---|
3105 | else if (p->attr_string != NULL && theFile->attr_string == NULL)
|
---|
3106 | { SH_FREE(p->attr_string); p->attr_string = NULL; }
|
---|
3107 | else if (theFile->attr_string != NULL && p->attr_string != NULL)
|
---|
3108 | {
|
---|
3109 | if (0 != strcmp(theFile->attr_string, p->attr_string))
|
---|
3110 | {
|
---|
3111 | SH_FREE(p->attr_string);
|
---|
3112 | p->attr_string = sh_util_strdup (theFile->attr_string);
|
---|
3113 | }
|
---|
3114 | }
|
---|
3115 | #endif
|
---|
3116 | }
|
---|
3117 | }
|
---|
3118 | #endif
|
---|
3119 | }
|
---|
3120 |
|
---|
3121 | if ((modi_mask & MODI_HLN) != 0)
|
---|
3122 | {
|
---|
3123 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3124 | #ifdef SH_USE_XML
|
---|
3125 | _("hardlinks_old=\"%lu\" hardlinks_new=\"%lu\" "),
|
---|
3126 | #else
|
---|
3127 | _("hardlinks_old=<%lu>, hardlinks_new=<%lu>, "),
|
---|
3128 | #endif
|
---|
3129 | (unsigned long) p->theFile.hardlinks,
|
---|
3130 | (unsigned long) theFile->hardlinks);
|
---|
3131 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3132 | #ifdef REPLACE_OLD
|
---|
3133 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3134 | p->theFile.hardlinks = theFile->hardlinks;
|
---|
3135 | #endif
|
---|
3136 | }
|
---|
3137 |
|
---|
3138 | if ((modi_mask & MODI_RDEV) != 0)
|
---|
3139 | {
|
---|
3140 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3141 | #ifdef SH_USE_XML
|
---|
3142 | _("device_old=\"%lu,%lu\" device_new=\"%lu,%lu\" idevice_old=\"%lu\" idevice_new=\"%lu\" "),
|
---|
3143 | #else
|
---|
3144 | _("device_old=<%lu,%lu>, device_new=<%lu,%lu>, "),
|
---|
3145 | #endif
|
---|
3146 | (unsigned long) major(p->theFile.rdev),
|
---|
3147 | (unsigned long) minor(p->theFile.rdev),
|
---|
3148 | (unsigned long) major(theFile->rdev),
|
---|
3149 | (unsigned long) minor(theFile->rdev)
|
---|
3150 | #ifdef SH_USE_XML
|
---|
3151 | , (unsigned long) p->theFile.rdev,
|
---|
3152 | (unsigned long) theFile->rdev
|
---|
3153 | #endif
|
---|
3154 | );
|
---|
3155 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3156 | #ifdef REPLACE_OLD
|
---|
3157 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3158 | p->theFile.rdev = theFile->rdev;
|
---|
3159 | #endif
|
---|
3160 | }
|
---|
3161 |
|
---|
3162 | if ((modi_mask & MODI_INO) != 0)
|
---|
3163 | {
|
---|
3164 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3165 | #ifdef SH_USE_XML
|
---|
3166 | _("inode_old=\"%lu\" inode_new=\"%lu\" "),
|
---|
3167 | #else
|
---|
3168 | _("inode_old=<%lu>, inode_new=<%lu>, "),
|
---|
3169 | #endif
|
---|
3170 | (unsigned long) p->theFile.ino,
|
---|
3171 | (unsigned long) theFile->ino);
|
---|
3172 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3173 | #ifdef REPLACE_OLD
|
---|
3174 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3175 | {
|
---|
3176 | p->theFile.ino = theFile->ino;
|
---|
3177 | p->theFile.dev = theFile->dev;
|
---|
3178 | }
|
---|
3179 | #endif
|
---|
3180 | }
|
---|
3181 |
|
---|
3182 |
|
---|
3183 | /*
|
---|
3184 | * also report device for prelude
|
---|
3185 | */
|
---|
3186 | #if defined(HAVE_LIBPRELUDE) && defined(HAVE_LIBPRELUDE_9)
|
---|
3187 | if ((modi_mask & MODI_INO) != 0)
|
---|
3188 | {
|
---|
3189 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3190 | #ifdef SH_USE_XML
|
---|
3191 | _("dev_old=\"%lu,%lu\" dev_new=\"%lu,%lu\" "),
|
---|
3192 | #else
|
---|
3193 | _("dev_old=<%lu,%lu>, dev_new=<%lu,%lu>, "),
|
---|
3194 | #endif
|
---|
3195 | (unsigned long) major(p->theFile.dev),
|
---|
3196 | (unsigned long) minor(p->theFile.dev),
|
---|
3197 | (unsigned long) major(theFile->dev),
|
---|
3198 | (unsigned long) minor(theFile->dev)
|
---|
3199 | );
|
---|
3200 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3201 | #ifdef REPLACE_OLD
|
---|
3202 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3203 | p->theFile.dev = theFile->dev;
|
---|
3204 | #endif
|
---|
3205 | }
|
---|
3206 | #endif
|
---|
3207 |
|
---|
3208 | if ( ((modi_mask & MODI_USR) != 0)
|
---|
3209 | #if defined(HAVE_LIBPRELUDE) && defined(HAVE_LIBPRELUDE_9)
|
---|
3210 | || ((modi_mask & MODI_MOD) != 0)
|
---|
3211 | #endif
|
---|
3212 | )
|
---|
3213 | {
|
---|
3214 | #ifdef SH_USE_XML
|
---|
3215 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3216 | _("owner_old=\"%s\" owner_new=\"%s\" iowner_old=\"%ld\" iowner_new=\"%ld\" "),
|
---|
3217 | #else
|
---|
3218 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3219 | _("owner_old=<%s>, owner_new=<%s>, iowner_old=<%ld>, iowner_new=<%ld>, "),
|
---|
3220 | #endif
|
---|
3221 | p->theFile.c_owner, theFile->c_owner,
|
---|
3222 | (long) p->theFile.owner, (long) theFile->owner
|
---|
3223 | );
|
---|
3224 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3225 | #ifdef REPLACE_OLD
|
---|
3226 | if ((modi_mask & MODI_USR) != 0) {
|
---|
3227 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3228 | {
|
---|
3229 | sl_strlcpy(p->theFile.c_owner, theFile->c_owner, USER_MAX+2);
|
---|
3230 | p->theFile.owner = theFile->owner;
|
---|
3231 | }
|
---|
3232 | }
|
---|
3233 | #endif
|
---|
3234 | }
|
---|
3235 |
|
---|
3236 | if ( ((modi_mask & MODI_GRP) != 0)
|
---|
3237 | #if defined(HAVE_LIBPRELUDE) && defined(HAVE_LIBPRELUDE_9)
|
---|
3238 | || ((modi_mask & MODI_MOD) != 0)
|
---|
3239 | #endif
|
---|
3240 | )
|
---|
3241 | {
|
---|
3242 | #ifdef SH_USE_XML
|
---|
3243 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3244 | _("group_old=\"%s\" group_new=\"%s\" igroup_old=\"%ld\" igroup_new=\"%ld\" "),
|
---|
3245 | p->theFile.c_group, theFile->c_group,
|
---|
3246 | (long) p->theFile.group, (long) theFile->group);
|
---|
3247 | #else
|
---|
3248 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3249 | _("group_old=<%s>, group_new=<%s>, igroup_old=<%ld>, igroup_new=<%ld>, "),
|
---|
3250 | p->theFile.c_group, theFile->c_group,
|
---|
3251 | (long) p->theFile.group, (long) theFile->group);
|
---|
3252 | #endif
|
---|
3253 |
|
---|
3254 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3255 | #ifdef REPLACE_OLD
|
---|
3256 | if ((modi_mask & MODI_GRP) != 0) {
|
---|
3257 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3258 | {
|
---|
3259 | sl_strlcpy(p->theFile.c_group, theFile->c_group, GROUP_MAX+2);
|
---|
3260 | p->theFile.group = theFile->group;
|
---|
3261 | }
|
---|
3262 | }
|
---|
3263 | #endif
|
---|
3264 | }
|
---|
3265 |
|
---|
3266 | if ((modi_mask & MODI_SIZ) != 0)
|
---|
3267 | {
|
---|
3268 | sl_snprintf(tmp, SH_BUFSIZE, sh_hash_size_format(),
|
---|
3269 | (UINT64) p->theFile.size,
|
---|
3270 | (UINT64) theFile->size);
|
---|
3271 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3272 | #ifdef REPLACE_OLD
|
---|
3273 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3274 | p->theFile.size = theFile->size;
|
---|
3275 | #endif
|
---|
3276 | }
|
---|
3277 |
|
---|
3278 | if ((modi_mask & MODI_CTM) != 0)
|
---|
3279 | {
|
---|
3280 | (void) sh_unix_gmttime (p->theFile.ctime, timstr1c, sizeof(timstr1c));
|
---|
3281 | (void) sh_unix_gmttime (theFile->ctime, timstr2c, sizeof(timstr2c));
|
---|
3282 | #ifdef SH_USE_XML
|
---|
3283 | sl_snprintf(tmp, SH_BUFSIZE, _("ctime_old=\"%s\" ctime_new=\"%s\" "),
|
---|
3284 | timstr1c, timstr2c);
|
---|
3285 | #else
|
---|
3286 | sl_snprintf(tmp, SH_BUFSIZE, _("ctime_old=<%s>, ctime_new=<%s>, "),
|
---|
3287 | timstr1c, timstr2c);
|
---|
3288 | #endif
|
---|
3289 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3290 | #ifdef REPLACE_OLD
|
---|
3291 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3292 | p->theFile.ctime = theFile->ctime;
|
---|
3293 | #endif
|
---|
3294 | }
|
---|
3295 |
|
---|
3296 | if ((modi_mask & MODI_ATM) != 0)
|
---|
3297 | {
|
---|
3298 | (void) sh_unix_gmttime (p->theFile.atime, timstr1a, sizeof(timstr1a));
|
---|
3299 | (void) sh_unix_gmttime (theFile->atime, timstr2a, sizeof(timstr2a));
|
---|
3300 | #ifdef SH_USE_XML
|
---|
3301 | sl_snprintf(tmp, SH_BUFSIZE, _("atime_old=\"%s\" atime_new=\"%s\" "),
|
---|
3302 | timstr1a, timstr2a);
|
---|
3303 | #else
|
---|
3304 | sl_snprintf(tmp, SH_BUFSIZE, _("atime_old=<%s>, atime_new=<%s>, "),
|
---|
3305 | timstr1a, timstr2a);
|
---|
3306 | #endif
|
---|
3307 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3308 | #ifdef REPLACE_OLD
|
---|
3309 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3310 | p->theFile.atime = theFile->atime;
|
---|
3311 | #endif
|
---|
3312 | }
|
---|
3313 |
|
---|
3314 | if ((modi_mask & MODI_MTM) != 0)
|
---|
3315 | {
|
---|
3316 | (void) sh_unix_gmttime (p->theFile.mtime, timstr1m, sizeof(timstr1m));
|
---|
3317 | (void) sh_unix_gmttime (theFile->mtime, timstr2m, sizeof(timstr2m));
|
---|
3318 | #ifdef SH_USE_XML
|
---|
3319 | sl_snprintf(tmp, SH_BUFSIZE, _("mtime_old=\"%s\" mtime_new=\"%s\" "),
|
---|
3320 | timstr1m, timstr2m);
|
---|
3321 | #else
|
---|
3322 | sl_snprintf(tmp, SH_BUFSIZE, _("mtime_old=<%s>, mtime_new=<%s>, "),
|
---|
3323 | timstr1m, timstr2m);
|
---|
3324 | #endif
|
---|
3325 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3326 | #ifdef REPLACE_OLD
|
---|
3327 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3328 | p->theFile.mtime = theFile->mtime;
|
---|
3329 | #endif
|
---|
3330 | }
|
---|
3331 |
|
---|
3332 |
|
---|
3333 | if ((modi_mask & MODI_CHK) != 0)
|
---|
3334 | {
|
---|
3335 | sl_snprintf(tmp, SH_BUFSIZE,
|
---|
3336 | #ifdef SH_USE_XML
|
---|
3337 | _("chksum_old=\"%s\" chksum_new=\"%s\" "),
|
---|
3338 | #else
|
---|
3339 | _("chksum_old=<%s>, chksum_new=<%s>, "),
|
---|
3340 | #endif
|
---|
3341 | p->theFile.checksum, fileHash);
|
---|
3342 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3343 | #ifdef REPLACE_OLD
|
---|
3344 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3345 | {
|
---|
3346 | sl_strlcpy(p->theFile.checksum, fileHash, KEY_LEN+1);
|
---|
3347 | if ((theFile->check_mask & MODI_SGROW) != 0)
|
---|
3348 | p->theFile.size = theFile->size;
|
---|
3349 | }
|
---|
3350 | #endif
|
---|
3351 | }
|
---|
3352 |
|
---|
3353 |
|
---|
3354 | if ((modi_mask & MODI_LNK) != 0 && theFile->c_mode[0] == 'l')
|
---|
3355 | {
|
---|
3356 | tmp_lnk = sh_util_safe_name(theFile->link_path);
|
---|
3357 | tmp_lnk_old = sh_util_safe_name(p->linkpath);
|
---|
3358 | #ifdef SH_USE_XML
|
---|
3359 | sl_snprintf(tmp, SH_BUFSIZE, _("link_old=\"%s\" link_new=\"%s\" "),
|
---|
3360 | tmp_lnk_old, tmp_lnk);
|
---|
3361 | #else
|
---|
3362 | sl_snprintf(tmp, SH_BUFSIZE, _("link_old=<%s>, link_new=<%s>"),
|
---|
3363 | tmp_lnk_old, tmp_lnk);
|
---|
3364 | #endif
|
---|
3365 | SH_FREE(tmp_lnk);
|
---|
3366 | SH_FREE(tmp_lnk_old);
|
---|
3367 | sl_strlcat(msg, tmp, SH_BUFSIZE);
|
---|
3368 | #ifdef REPLACE_OLD
|
---|
3369 | if (sh.flag.reportonce == S_TRUE && sh.flag.update == S_FALSE)
|
---|
3370 | {
|
---|
3371 | if (p->linkpath != NULL && p->linkpath != notalink)
|
---|
3372 | SH_FREE(p->linkpath);
|
---|
3373 | if (!(theFile->link_path) ||
|
---|
3374 | (theFile->link_path[0] == '-' && theFile->link_path[1] == '\0'))
|
---|
3375 | p->linkpath = (char *)notalink;
|
---|
3376 | else
|
---|
3377 | p->linkpath = sh_util_strdup(theFile->link_path);
|
---|
3378 | }
|
---|
3379 | #endif
|
---|
3380 | }
|
---|
3381 |
|
---|
3382 |
|
---|
3383 | tmp_path = sh_util_safe_name(theFile->fullpath);
|
---|
3384 | sh_error_handle(log_severity, FIL__, __LINE__,
|
---|
3385 | (long) modi_mask, MSG_FI_CHAN,
|
---|
3386 | (policy_override == NULL) ? _(policy[class]):log_policy,
|
---|
3387 | change_code, tmp_path, msg);
|
---|
3388 |
|
---|
3389 | SH_FREE(tmp_path);
|
---|
3390 | SH_FREE(tmp);
|
---|
3391 | SH_FREE(msg);
|
---|
3392 |
|
---|
3393 | #ifndef REPLACE_OLD
|
---|
3394 | SET_SH_FFLAG_REPORTED(p->fflags);
|
---|
3395 | #endif
|
---|
3396 |
|
---|
3397 | if (S_TRUE == sh.flag.update)
|
---|
3398 | {
|
---|
3399 | if (S_FALSE == sh_util_ask_update(theFile->fullpath))
|
---|
3400 | {
|
---|
3401 | /* user does not want to update, thus we replace
|
---|
3402 | * with data from the baseline database
|
---|
3403 | */
|
---|
3404 | sl_strlcpy(theFile->c_mode, p->theFile.c_mode, 11);
|
---|
3405 | theFile->mode = p->theFile.mode;
|
---|
3406 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
3407 | sl_strlcpy(theFile->c_attributes, p->theFile.c_attributes, 16);
|
---|
3408 | theFile->attributes = p->theFile.attributes;
|
---|
3409 | #endif
|
---|
3410 | #if defined(USE_ACL) || defined(USE_XATTR)
|
---|
3411 | if (theFile->attr_string == NULL && p->attr_string != NULL)
|
---|
3412 | { theFile->attr_string = sh_util_strdup (p->attr_string); }
|
---|
3413 | else if (theFile->attr_string != NULL && p->attr_string == NULL)
|
---|
3414 | { SH_FREE(theFile->attr_string); theFile->attr_string = NULL; }
|
---|
3415 | else if (theFile->attr_string != NULL && p->attr_string != NULL)
|
---|
3416 | {
|
---|
3417 | if (0 != strcmp(theFile->attr_string, p->attr_string))
|
---|
3418 | {
|
---|
3419 | SH_FREE(theFile->attr_string);
|
---|
3420 | theFile->attr_string = sh_util_strdup (p->attr_string);
|
---|
3421 | }
|
---|
3422 | }
|
---|
3423 | #endif
|
---|
3424 |
|
---|
3425 | if (theFile->c_mode[0] == 'l') /* c_mode is already copied */
|
---|
3426 | {
|
---|
3427 | if (theFile->link_path)
|
---|
3428 | SH_FREE(theFile->link_path);
|
---|
3429 | if (p->linkpath)
|
---|
3430 | theFile->link_path = sh_util_strdup(p->linkpath);
|
---|
3431 | else
|
---|
3432 | theFile->link_path = sh_util_strdup("-");
|
---|
3433 | }
|
---|
3434 | else
|
---|
3435 | {
|
---|
3436 | if (theFile->link_path)
|
---|
3437 | SH_FREE(theFile->link_path);
|
---|
3438 | if (p->linkpath && p->linkpath != notalink)
|
---|
3439 | theFile->link_path = sh_util_strdup(p->linkpath);
|
---|
3440 | else
|
---|
3441 | theFile->link_path = NULL;
|
---|
3442 | }
|
---|
3443 |
|
---|
3444 | sl_strlcpy(fileHash, p->theFile.checksum, KEY_LEN+1);
|
---|
3445 |
|
---|
3446 | theFile->mtime = p->theFile.mtime;
|
---|
3447 | theFile->ctime = p->theFile.ctime;
|
---|
3448 | theFile->atime = p->theFile.atime;
|
---|
3449 |
|
---|
3450 | theFile->size = p->theFile.size;
|
---|
3451 |
|
---|
3452 | sl_strlcpy(theFile->c_group, p->theFile.c_group, GROUP_MAX+2);
|
---|
3453 | theFile->group = p->theFile.group;
|
---|
3454 | sl_strlcpy(theFile->c_owner, p->theFile.c_owner, USER_MAX+2);
|
---|
3455 | theFile->owner = p->theFile.owner;
|
---|
3456 |
|
---|
3457 | theFile->ino = p->theFile.ino;
|
---|
3458 | theFile->rdev = p->theFile.rdev;
|
---|
3459 | theFile->dev = p->theFile.dev;
|
---|
3460 | theFile->hardlinks = p->theFile.hardlinks;
|
---|
3461 |
|
---|
3462 | SET_SH_FFLAG_VISITED(p->fflags);
|
---|
3463 | CLEAR_SH_FFLAG_CHECKED(p->fflags);
|
---|
3464 | retval = 1;
|
---|
3465 | goto unlock_and_return;
|
---|
3466 | }
|
---|
3467 | else /* if (sh.flag.reportonce == S_TRUE) */
|
---|
3468 | {
|
---|
3469 | /* we replace the data in the in-memory copy of the
|
---|
3470 | * baseline database, because otherwise we would get
|
---|
3471 | * another warning if the suidcheck runs
|
---|
3472 | */
|
---|
3473 | sl_strlcpy(p->theFile.c_mode, theFile->c_mode, 11);
|
---|
3474 | p->theFile.mode = theFile->mode;
|
---|
3475 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
3476 | sl_strlcpy(p->theFile.c_attributes, theFile->c_attributes, 16);
|
---|
3477 | p->theFile.attributes = theFile->attributes;
|
---|
3478 | #endif
|
---|
3479 | #if defined(USE_ACL) || defined(USE_XATTR)
|
---|
3480 | if (p->attr_string == NULL && theFile->attr_string != NULL)
|
---|
3481 | { p->attr_string = sh_util_strdup (theFile->attr_string); }
|
---|
3482 | else if (p->attr_string != NULL && theFile->attr_string == NULL)
|
---|
3483 | { SH_FREE(p->attr_string); p->attr_string = NULL; }
|
---|
3484 | else if (theFile->attr_string != NULL && p->attr_string != NULL)
|
---|
3485 | {
|
---|
3486 | if (0 != strcmp(theFile->attr_string, p->attr_string))
|
---|
3487 | {
|
---|
3488 | SH_FREE(p->attr_string);
|
---|
3489 | p->attr_string = sh_util_strdup (theFile->attr_string);
|
---|
3490 | }
|
---|
3491 | }
|
---|
3492 | #endif
|
---|
3493 |
|
---|
3494 | if (theFile->c_mode[0] == 'l' || theFile->link_path)
|
---|
3495 | {
|
---|
3496 | if (p->linkpath != NULL && p->linkpath != notalink)
|
---|
3497 | SH_FREE(p->linkpath);
|
---|
3498 | p->linkpath = sh_util_strdup(theFile->link_path);
|
---|
3499 | }
|
---|
3500 | else
|
---|
3501 | {
|
---|
3502 | if (p->linkpath != NULL && p->linkpath != notalink) {
|
---|
3503 | SH_FREE(p->linkpath);
|
---|
3504 | }
|
---|
3505 | p->linkpath = (char *)notalink;
|
---|
3506 | }
|
---|
3507 |
|
---|
3508 | sl_strlcpy(p->theFile.checksum, fileHash, KEY_LEN+1);
|
---|
3509 |
|
---|
3510 | p->theFile.mtime = theFile->mtime;
|
---|
3511 | p->theFile.ctime = theFile->ctime;
|
---|
3512 | p->theFile.atime = theFile->atime;
|
---|
3513 |
|
---|
3514 | p->theFile.size = theFile->size;
|
---|
3515 |
|
---|
3516 | sl_strlcpy(p->theFile.c_group, theFile->c_group, GROUP_MAX+2);
|
---|
3517 | p->theFile.group = theFile->group;
|
---|
3518 | sl_strlcpy(p->theFile.c_owner, theFile->c_owner, USER_MAX+2);
|
---|
3519 | p->theFile.owner = theFile->owner;
|
---|
3520 |
|
---|
3521 | p->theFile.ino = theFile->ino;
|
---|
3522 | p->theFile.rdev = theFile->rdev;
|
---|
3523 | p->theFile.dev = theFile->dev;
|
---|
3524 | p->theFile.hardlinks = theFile->hardlinks;
|
---|
3525 | }
|
---|
3526 | }
|
---|
3527 | }
|
---|
3528 |
|
---|
3529 | SET_SH_FFLAG_VISITED(p->fflags);
|
---|
3530 | CLEAR_SH_FFLAG_CHECKED(p->fflags);
|
---|
3531 |
|
---|
3532 | unlock_and_return:
|
---|
3533 | ; /* 'label at end of compound statement */
|
---|
3534 | SH_MUTEX_UNLOCK(mutex_hash);
|
---|
3535 | SL_RETURN(retval, _("sh_hash_compdata"));
|
---|
3536 | }
|
---|
3537 |
|
---|
3538 | int hash_full_tree ()
|
---|
3539 | {
|
---|
3540 | sh_file_t * p;
|
---|
3541 | int i;
|
---|
3542 |
|
---|
3543 | SL_ENTER(_("sh_hash_compdata"));
|
---|
3544 |
|
---|
3545 | if (IsInit != 1)
|
---|
3546 | SL_RETURN(0, _("sh_hash_compdata"));
|
---|
3547 |
|
---|
3548 | SH_MUTEX_LOCK_UNSAFE(mutex_hash);
|
---|
3549 | for (i = 0; i < TABSIZE; ++i)
|
---|
3550 | {
|
---|
3551 | for (p = tab[i]; p; p = p->next)
|
---|
3552 | CLEAR_SH_FFLAG_ALLIGNORE(p->fflags);
|
---|
3553 | }
|
---|
3554 | SH_MUTEX_UNLOCK_UNSAFE(mutex_hash);
|
---|
3555 | SL_RETURN (0, _("sh_hash_compdata"));
|
---|
3556 | }
|
---|
3557 |
|
---|
3558 |
|
---|
3559 | int hash_remove_tree (char * s)
|
---|
3560 | {
|
---|
3561 | sh_file_t * p;
|
---|
3562 | size_t len;
|
---|
3563 | unsigned int i;
|
---|
3564 |
|
---|
3565 | SL_ENTER(_("hash_remove_tree"));
|
---|
3566 |
|
---|
3567 | if (!s || *s == '\0')
|
---|
3568 | SL_RETURN ((-1), _("hash_remove_tree"));
|
---|
3569 |
|
---|
3570 | len = sl_strlen(s);
|
---|
3571 |
|
---|
3572 | if (IsInit != 1)
|
---|
3573 | sh_hash_init();
|
---|
3574 |
|
---|
3575 | SH_MUTEX_LOCK_UNSAFE(mutex_hash);
|
---|
3576 | for (i = 0; i < TABSIZE; ++i)
|
---|
3577 | {
|
---|
3578 | for (p = tab[i]; p; p = p->next)
|
---|
3579 | {
|
---|
3580 | if (p->fullpath && 0 == strncmp(s, p->fullpath, len))
|
---|
3581 | {
|
---|
3582 | SET_SH_FFLAG_ALLIGNORE(p->fflags);
|
---|
3583 | }
|
---|
3584 | }
|
---|
3585 | }
|
---|
3586 | SH_MUTEX_UNLOCK_UNSAFE(mutex_hash);
|
---|
3587 | SL_RETURN ((0), _("hash_remove_tree"));
|
---|
3588 | }
|
---|
3589 |
|
---|
3590 | #if TIME_WITH_SYS_TIME
|
---|
3591 | #include <sys/time.h>
|
---|
3592 | #include <time.h>
|
---|
3593 | #else
|
---|
3594 | #if HAVE_SYS_TIME_H
|
---|
3595 | #include <sys/time.h>
|
---|
3596 | #else
|
---|
3597 | #include <time.h>
|
---|
3598 | #endif
|
---|
3599 | #endif
|
---|
3600 |
|
---|
3601 | static int ListFullDetail = S_FALSE;
|
---|
3602 | static int ListWithDelimiter = S_FALSE;
|
---|
3603 |
|
---|
3604 | int set_full_detail (const char * c)
|
---|
3605 | {
|
---|
3606 | (void) c;
|
---|
3607 | ListFullDetail = S_TRUE;
|
---|
3608 | return 0;
|
---|
3609 | }
|
---|
3610 |
|
---|
3611 | int set_list_delimited (const char * c)
|
---|
3612 | {
|
---|
3613 | (void) c;
|
---|
3614 | ListFullDetail = S_TRUE;
|
---|
3615 | ListWithDelimiter = S_TRUE;
|
---|
3616 | return 0;
|
---|
3617 | }
|
---|
3618 |
|
---|
3619 | /* Always quote the string, except if it is empty. Quote quotes by
|
---|
3620 | * doubling them.
|
---|
3621 | */
|
---|
3622 | char * csv_escape(const char * str)
|
---|
3623 | {
|
---|
3624 | const char * p = str;
|
---|
3625 | const char * q;
|
---|
3626 |
|
---|
3627 | size_t size = 0;
|
---|
3628 | size_t flag_quote = 0;
|
---|
3629 | int flag_comma = 0;
|
---|
3630 | char * new;
|
---|
3631 | char * pnew;
|
---|
3632 |
|
---|
3633 | if (p)
|
---|
3634 | {
|
---|
3635 |
|
---|
3636 | while (*p)
|
---|
3637 | {
|
---|
3638 | if (*p == ',')
|
---|
3639 | flag_comma = 1;
|
---|
3640 | else if (*p == '"')
|
---|
3641 | ++flag_quote;
|
---|
3642 |
|
---|
3643 | ++size; ++p;
|
---|
3644 | }
|
---|
3645 |
|
---|
3646 | if (sl_ok_adds(size, flag_quote))
|
---|
3647 | size += flag_quote; /* double each quote */
|
---|
3648 | else
|
---|
3649 | return NULL;
|
---|
3650 |
|
---|
3651 | if (sl_ok_adds(size, 3))
|
---|
3652 | size += 3; /* two quotes and terminating null */
|
---|
3653 | else
|
---|
3654 | return NULL;
|
---|
3655 |
|
---|
3656 | new = SH_ALLOC(size);
|
---|
3657 |
|
---|
3658 | if (flag_quote != 0)
|
---|
3659 | {
|
---|
3660 | new[0] = '"';
|
---|
3661 | pnew = &new[1];
|
---|
3662 | q = str;
|
---|
3663 | while (*q)
|
---|
3664 | {
|
---|
3665 | *pnew = *q;
|
---|
3666 | if (*pnew == '"')
|
---|
3667 | {
|
---|
3668 | ++pnew; *pnew = '"';
|
---|
3669 | }
|
---|
3670 | ++pnew; ++q;
|
---|
3671 | }
|
---|
3672 | *pnew = '"'; ++pnew;
|
---|
3673 | *pnew = '\0';
|
---|
3674 | }
|
---|
3675 | else
|
---|
3676 | {
|
---|
3677 | if (size > 3)
|
---|
3678 | {
|
---|
3679 | new[0] = '"';
|
---|
3680 | sl_strlcpy (&new[1], str, size-1);
|
---|
3681 | new[size-2] = '"';
|
---|
3682 | new[size-1] = '\0';
|
---|
3683 | }
|
---|
3684 | else
|
---|
3685 | {
|
---|
3686 | new[0] = '\0';
|
---|
3687 | }
|
---|
3688 | }
|
---|
3689 |
|
---|
3690 | return new;
|
---|
3691 | }
|
---|
3692 | return NULL;
|
---|
3693 | }
|
---|
3694 |
|
---|
3695 |
|
---|
3696 |
|
---|
3697 | void sh_hash_list_db_entry_full_detail (sh_file_t * p)
|
---|
3698 | {
|
---|
3699 | char * tmp;
|
---|
3700 | char * esc;
|
---|
3701 | char str[81];
|
---|
3702 |
|
---|
3703 | if (ListWithDelimiter == S_TRUE)
|
---|
3704 | {
|
---|
3705 | printf(_("%7ld, %7ld, %10s, %5d, %12s, %5d, %3d, %-8s, %5d, %-8s, %5d, "),
|
---|
3706 | (unsigned long) p->theFile.ino, (unsigned long) p->theFile.dev,
|
---|
3707 | p->theFile.c_mode, (int) p->theFile.mode,
|
---|
3708 | p->theFile.c_attributes, (int) p->theFile.attributes,
|
---|
3709 | (int) p->theFile.hardlinks,
|
---|
3710 | p->theFile.c_owner, (int) p->theFile.owner,
|
---|
3711 | p->theFile.c_group, (int) p->theFile.group);
|
---|
3712 | }
|
---|
3713 | else
|
---|
3714 | {
|
---|
3715 | printf(_("%7ld %7ld %10s %5d %12s %5d %3d %-8s %5d %-8s %5d "),
|
---|
3716 | (unsigned long) p->theFile.ino, (unsigned long) p->theFile.dev,
|
---|
3717 | p->theFile.c_mode, (int) p->theFile.mode,
|
---|
3718 | p->theFile.c_attributes, (int) p->theFile.attributes,
|
---|
3719 | (int) p->theFile.hardlinks,
|
---|
3720 | p->theFile.c_owner, (int) p->theFile.owner,
|
---|
3721 | p->theFile.c_group, (int) p->theFile.group);
|
---|
3722 | }
|
---|
3723 |
|
---|
3724 | if ('c' == p->theFile.c_mode[0] || 'b' == p->theFile.c_mode[0])
|
---|
3725 | sl_snprintf(str, sizeof(str), "%"PRIu64, p->theFile.rdev);
|
---|
3726 | else
|
---|
3727 | sl_snprintf(str, sizeof(str), "%"PRIu64, p->theFile.size);
|
---|
3728 |
|
---|
3729 | printf( _(" %8s"), str);
|
---|
3730 | if (ListWithDelimiter == S_TRUE)
|
---|
3731 | putchar(',');
|
---|
3732 |
|
---|
3733 | printf( _(" %s"), sh_unix_gmttime (p->theFile.ctime, str, sizeof(str)));
|
---|
3734 | if (ListWithDelimiter == S_TRUE)
|
---|
3735 | putchar(',');
|
---|
3736 | printf( _(" %s"), sh_unix_gmttime (p->theFile.mtime, str, sizeof(str)));
|
---|
3737 | if (ListWithDelimiter == S_TRUE)
|
---|
3738 | putchar(',');
|
---|
3739 | printf( _(" %s"), sh_unix_gmttime (p->theFile.atime, str, sizeof(str)));
|
---|
3740 | if (ListWithDelimiter == S_TRUE)
|
---|
3741 | putchar(',');
|
---|
3742 | printf( _(" %s"), p->theFile.checksum);
|
---|
3743 | if (ListWithDelimiter == S_TRUE)
|
---|
3744 | putchar(',');
|
---|
3745 |
|
---|
3746 | tmp = sh_util_safe_name(p->fullpath);
|
---|
3747 | if (ListWithDelimiter != S_TRUE)
|
---|
3748 | {
|
---|
3749 | printf( _(" %s"), tmp);
|
---|
3750 | }
|
---|
3751 | else
|
---|
3752 | {
|
---|
3753 | esc = csv_escape(tmp);
|
---|
3754 | printf( _(" %s,"), (esc != NULL) ? esc : _("(null)"));
|
---|
3755 | if (esc)
|
---|
3756 | SH_FREE(esc);
|
---|
3757 | }
|
---|
3758 | SH_FREE(tmp);
|
---|
3759 |
|
---|
3760 | if ('l' == p->theFile.c_mode[0])
|
---|
3761 | {
|
---|
3762 | tmp = sh_util_safe_name(p->linkpath);
|
---|
3763 | if (ListWithDelimiter != S_TRUE)
|
---|
3764 | {
|
---|
3765 | printf(_(" -> %s"), tmp);
|
---|
3766 | }
|
---|
3767 | else
|
---|
3768 | {
|
---|
3769 | esc = csv_escape(tmp);
|
---|
3770 | printf( _(" %s,"), (esc != NULL) ? esc : _("(null)"));
|
---|
3771 | if (esc)
|
---|
3772 | SH_FREE(esc);
|
---|
3773 | }
|
---|
3774 | SH_FREE(tmp);
|
---|
3775 | }
|
---|
3776 |
|
---|
3777 | if (p->attr_string)
|
---|
3778 | {
|
---|
3779 | tmp = sh_util_safe_name(p->attr_string);
|
---|
3780 | if (ListWithDelimiter != S_TRUE)
|
---|
3781 | {
|
---|
3782 | printf(_(" %s"), tmp);
|
---|
3783 | }
|
---|
3784 | else
|
---|
3785 | {
|
---|
3786 | esc = csv_escape(tmp);
|
---|
3787 | printf( _(" %s"), (esc != NULL) ? esc : _("(null)"));
|
---|
3788 | if (esc)
|
---|
3789 | SH_FREE(esc);
|
---|
3790 | }
|
---|
3791 | SH_FREE(tmp);
|
---|
3792 | }
|
---|
3793 | else
|
---|
3794 | {
|
---|
3795 | if (ListWithDelimiter == S_TRUE)
|
---|
3796 | printf(_(" no_attr"));
|
---|
3797 | }
|
---|
3798 | putchar('\n');
|
---|
3799 |
|
---|
3800 | return;
|
---|
3801 | }
|
---|
3802 |
|
---|
3803 | void sh_hash_list_db_entry (sh_file_t * p)
|
---|
3804 | {
|
---|
3805 | char nowtime[128];
|
---|
3806 | char thetime[128];
|
---|
3807 | char * tmp;
|
---|
3808 | time_t now = time(NULL);
|
---|
3809 | time_t then = (time_t) p->theFile.mtime;
|
---|
3810 |
|
---|
3811 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GMTIME_R)
|
---|
3812 | struct tm * time_ptr;
|
---|
3813 | struct tm time_tm;
|
---|
3814 |
|
---|
3815 | time_ptr = gmtime_r(&then, &time_tm);
|
---|
3816 | strftime(thetime, 127, _("%b %d %Y"), time_ptr);
|
---|
3817 | time_ptr = gmtime_r(&now, &time_tm);
|
---|
3818 | strftime(nowtime, 127, _("%b %d %Y"), time_ptr);
|
---|
3819 | if (0 == strncmp(&nowtime[7], &thetime[7], 4))
|
---|
3820 | {
|
---|
3821 | time_ptr = gmtime_r(&then, &time_tm);
|
---|
3822 | strftime(thetime, 127, _("%b %d %H:%M"), time_ptr);
|
---|
3823 | }
|
---|
3824 | #else
|
---|
3825 | strftime(thetime, 127, _("%b %d %Y"), gmtime(&then));
|
---|
3826 | strftime(nowtime, 127, _("%b %d %Y"), gmtime(&now));
|
---|
3827 | if (0 == strncmp(&nowtime[7], &thetime[7], 4))
|
---|
3828 | strftime(thetime, 127, _("%b %d %H:%M"), gmtime(&then));
|
---|
3829 | #endif
|
---|
3830 |
|
---|
3831 | tmp = sh_util_safe_name(p->fullpath);
|
---|
3832 | if ('c' == p->theFile.c_mode[0] || 'b' == p->theFile.c_mode[0])
|
---|
3833 | printf(_("%10s %3d %-8s %-8s %3d,%4d %s %s"),
|
---|
3834 | p->theFile.c_mode, (int) p->theFile.hardlinks,
|
---|
3835 | p->theFile.c_owner, p->theFile.c_group,
|
---|
3836 | (int) major((dev_t)p->theFile.rdev),
|
---|
3837 | (int) minor((dev_t)p->theFile.rdev),
|
---|
3838 | thetime,
|
---|
3839 | tmp);
|
---|
3840 | else
|
---|
3841 | printf(_("%10s %3d %-8s %-8s %8ld %s %s"),
|
---|
3842 | p->theFile.c_mode, (int) p->theFile.hardlinks,
|
---|
3843 | p->theFile.c_owner, p->theFile.c_group, (long) p->theFile.size,
|
---|
3844 | thetime,
|
---|
3845 | tmp);
|
---|
3846 | SH_FREE(tmp);
|
---|
3847 |
|
---|
3848 | if ('l' == p->theFile.c_mode[0])
|
---|
3849 | {
|
---|
3850 | tmp = sh_util_safe_name(p->linkpath);
|
---|
3851 | printf(_(" -> %s\n"), tmp);
|
---|
3852 | SH_FREE(tmp);
|
---|
3853 | }
|
---|
3854 | else
|
---|
3855 | printf("\n");
|
---|
3856 |
|
---|
3857 | return;
|
---|
3858 | }
|
---|
3859 |
|
---|
3860 | int sh_hash_list_db (const char * db_file)
|
---|
3861 | {
|
---|
3862 | sh_file_t * p;
|
---|
3863 | SL_TICKET fd;
|
---|
3864 | char * line;
|
---|
3865 |
|
---|
3866 | if (!db_file)
|
---|
3867 | {
|
---|
3868 | _exit(EXIT_FAILURE);
|
---|
3869 | return -1;
|
---|
3870 | }
|
---|
3871 | if (sl_is_suid())
|
---|
3872 | {
|
---|
3873 | fprintf(stderr, _("ERROR: insufficient privilege\n"));
|
---|
3874 | _exit (EXIT_FAILURE);
|
---|
3875 | return -1; /* for Mac OSX compiler */
|
---|
3876 | }
|
---|
3877 | if (0 == strcmp(db_file, _("default")))
|
---|
3878 | db_file = file_path('D', 'W');
|
---|
3879 | if (!db_file)
|
---|
3880 | {
|
---|
3881 | _exit(EXIT_FAILURE);
|
---|
3882 | return -1;
|
---|
3883 | }
|
---|
3884 |
|
---|
3885 | line = SH_ALLOC(MAX_PATH_STORE+1);
|
---|
3886 |
|
---|
3887 | if ( SL_ISERROR(fd = sl_open_read(db_file, SL_YESPRIV)))
|
---|
3888 | {
|
---|
3889 | fprintf(stderr, _("ERROR: can't open %s for read (errnum = %ld)\n"),
|
---|
3890 | db_file, fd);
|
---|
3891 | _exit(EXIT_FAILURE);
|
---|
3892 | return -1;
|
---|
3893 | }
|
---|
3894 |
|
---|
3895 | /* fast forward to start of data
|
---|
3896 | */
|
---|
3897 | sh_hash_setdataent(fd, line, MAX_PATH_STORE, db_file);
|
---|
3898 |
|
---|
3899 | while (1)
|
---|
3900 | {
|
---|
3901 | p = sh_hash_getdataent (fd, line, MAX_PATH_STORE);
|
---|
3902 | if ((p != NULL) && (p->fullpath[0] != 'K'))
|
---|
3903 | {
|
---|
3904 | if (ListFullDetail == S_FALSE)
|
---|
3905 | sh_hash_list_db_entry (p);
|
---|
3906 | else
|
---|
3907 | sh_hash_list_db_entry_full_detail (p);
|
---|
3908 | }
|
---|
3909 | else if (p == NULL)
|
---|
3910 | {
|
---|
3911 | break;
|
---|
3912 | }
|
---|
3913 | }
|
---|
3914 |
|
---|
3915 | if (line != NULL)
|
---|
3916 | SH_FREE(line);
|
---|
3917 | sl_close (fd);
|
---|
3918 |
|
---|
3919 | fflush(NULL);
|
---|
3920 |
|
---|
3921 | _exit(EXIT_SUCCESS);
|
---|
3922 | return 0;
|
---|
3923 | }
|
---|
3924 |
|
---|
3925 | /* if defined(SH_WITH_CLIENT) || defined(SH_STANDALONE) */
|
---|
3926 | #endif
|
---|