[1] | 1 | /* SAMHAIN file system integrity testing */
|
---|
| 2 | /* Copyright (C) 1999 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 | #include <stdio.h>
|
---|
| 23 | #include <stdlib.h>
|
---|
| 24 | #include <string.h>
|
---|
| 25 | #include <limits.h>
|
---|
| 26 |
|
---|
| 27 | #include <errno.h>
|
---|
| 28 |
|
---|
| 29 | /* Must be before <utime.h> on FreeBSD
|
---|
| 30 | */
|
---|
| 31 | #include <sys/types.h>
|
---|
| 32 | #include <unistd.h>
|
---|
| 33 |
|
---|
| 34 | #include <utime.h>
|
---|
| 35 |
|
---|
| 36 | #ifdef HAVE_DIRENT_H
|
---|
| 37 | #include <dirent.h>
|
---|
| 38 | #define NAMLEN(dirent) sl_strlen((dirent)->d_name)
|
---|
| 39 | #else
|
---|
| 40 | #define dirent direct
|
---|
| 41 | #define NAMLEN(dirent) (dirent)->d_namlen
|
---|
| 42 | #ifdef HAVE_SYS_NDIR_H
|
---|
| 43 | #include <sys/ndir.h>
|
---|
| 44 | #endif
|
---|
| 45 | #ifdef HAVE_SYS_DIR_H
|
---|
| 46 | #include <sys/dir.h>
|
---|
| 47 | #endif
|
---|
| 48 | #ifdef HAVE_NDIR_H
|
---|
| 49 | #include <ndir.h>
|
---|
| 50 | #endif
|
---|
| 51 | #endif
|
---|
[137] | 52 | #define NEED_ADD_DIRENT
|
---|
[1] | 53 |
|
---|
| 54 | #ifdef HAVE_GLOB_H
|
---|
| 55 | #include <glob.h>
|
---|
| 56 | #endif
|
---|
| 57 |
|
---|
| 58 | #include "samhain.h"
|
---|
| 59 |
|
---|
| 60 | #if (defined (SH_WITH_CLIENT) || defined (SH_STANDALONE))
|
---|
| 61 |
|
---|
[131] | 62 | #include "sh_pthread.h"
|
---|
[1] | 63 | #include "sh_error.h"
|
---|
| 64 | #include "sh_utils.h"
|
---|
| 65 | #include "sh_unix.h"
|
---|
| 66 | #include "sh_files.h"
|
---|
| 67 | #include "sh_tiger.h"
|
---|
| 68 | #include "sh_hash.h"
|
---|
| 69 | #include "sh_ignore.h"
|
---|
| 70 | #include "zAVLTree.h"
|
---|
| 71 |
|
---|
| 72 | #undef FIL__
|
---|
| 73 | #define FIL__ _("sh_files.c")
|
---|
| 74 |
|
---|
| 75 | extern int flag_err_debug;
|
---|
| 76 | extern int flag_err_info;
|
---|
| 77 |
|
---|
[22] | 78 | int sh_files_reportonce(const char * c)
|
---|
[1] | 79 | {
|
---|
| 80 | int i;
|
---|
| 81 | SL_ENTER(_("sh_files_reportonce"));
|
---|
| 82 | i = sh_util_flagval(c, &(sh.flag.reportonce));
|
---|
| 83 |
|
---|
| 84 | SL_RETURN(i, _("sh_files_reportonce"));
|
---|
| 85 | }
|
---|
| 86 |
|
---|
[22] | 87 | int sh_files_fulldetail(const char * c)
|
---|
[1] | 88 | {
|
---|
| 89 | int i;
|
---|
| 90 | SL_ENTER(_("sh_files_fulldetail"));
|
---|
| 91 | i = sh_util_flagval(c, &(sh.flag.fulldetail));
|
---|
| 92 |
|
---|
| 93 | SL_RETURN((i), _("sh_files_fulldetail"));
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 |
|
---|
| 97 | typedef struct dir_struct {
|
---|
| 98 | long NumRegular;
|
---|
| 99 | long NumDirs;
|
---|
| 100 | long NumSymlinks;
|
---|
| 101 | long NumFifos;
|
---|
| 102 | long NumSockets;
|
---|
| 103 | long NumCDev;
|
---|
| 104 | long NumBDev;
|
---|
[40] | 105 | long NumDoor;
|
---|
| 106 | long NumPort;
|
---|
[1] | 107 | long NumAll;
|
---|
| 108 | long TotalBytes;
|
---|
| 109 | char DirPath[PATH_MAX];
|
---|
| 110 | } dir_type;
|
---|
| 111 |
|
---|
| 112 | typedef struct dirstack_entry {
|
---|
| 113 | char * name;
|
---|
| 114 | int class;
|
---|
| 115 | unsigned long check_mask;
|
---|
| 116 | int rdepth;
|
---|
| 117 | short checked;
|
---|
| 118 | short childs_checked;
|
---|
[114] | 119 | short is_reported;
|
---|
[1] | 120 | /* struct dirstack_entry * next; */
|
---|
| 121 | } dirstack_t;
|
---|
| 122 |
|
---|
| 123 |
|
---|
| 124 | /* the destructor
|
---|
| 125 | */
|
---|
| 126 | void free_dirstack (void * inptr)
|
---|
| 127 | {
|
---|
| 128 | dirstack_t * here;
|
---|
| 129 |
|
---|
| 130 | SL_ENTER(_("free_dirstack"));
|
---|
| 131 | if (inptr == NULL)
|
---|
| 132 | SL_RET0(_("free_dirstack"));
|
---|
| 133 | else
|
---|
| 134 | here = (dirstack_t *) inptr;
|
---|
| 135 |
|
---|
| 136 | if (here->name != NULL)
|
---|
| 137 | SH_FREE(here->name);
|
---|
| 138 | SH_FREE(here);
|
---|
| 139 | SL_RET0(_("free_dirstack"));
|
---|
| 140 | }
|
---|
| 141 |
|
---|
| 142 | /* Function to return the key for indexing
|
---|
| 143 | * the argument
|
---|
| 144 | */
|
---|
| 145 | zAVLKey zdirstack_key (void const * arg)
|
---|
| 146 | {
|
---|
| 147 | const dirstack_t * sa = (const dirstack_t *) arg;
|
---|
| 148 | return (zAVLKey) sa->name;
|
---|
| 149 | }
|
---|
| 150 |
|
---|
| 151 |
|
---|
| 152 | static zAVLTree * zdirListOne = NULL;
|
---|
| 153 | static zAVLTree * zdirListTwo = NULL;
|
---|
| 154 | static zAVLTree * zfileList = NULL;
|
---|
| 155 |
|
---|
| 156 |
|
---|
| 157 | static int sh_files_fullpath (char * testdir, char * d_name,
|
---|
| 158 | char * statpath);
|
---|
[22] | 159 | static int sh_files_pushdir (int class, const char * str_s);
|
---|
| 160 | static int sh_files_pushfile (int class, const char * str_s);
|
---|
[1] | 161 | static int sh_files_checkdir (int class, int rdepth, char * dirName,
|
---|
| 162 | char * relativeName);
|
---|
| 163 | static ShFileType sh_files_filecheck (int class, char * dirName,
|
---|
| 164 | char * fileName, int * reported,
|
---|
| 165 | int rsrcflag);
|
---|
| 166 |
|
---|
| 167 | static long MaxRecursionLevel = 0;
|
---|
| 168 |
|
---|
| 169 | /* set default recursion level
|
---|
| 170 | */
|
---|
[20] | 171 | int sh_files_setrecursion (const char * flag_s)
|
---|
[1] | 172 | {
|
---|
| 173 | long flag = 0;
|
---|
| 174 | static int reject = 0;
|
---|
| 175 |
|
---|
| 176 | SL_ENTER( _("sh_files_setrecursion"));
|
---|
| 177 |
|
---|
| 178 | if (reject == 1)
|
---|
| 179 | SL_RETURN((-1), _("sh_files_setrecursion"));
|
---|
| 180 |
|
---|
| 181 | if (sh.flag.opts == 1)
|
---|
| 182 | reject = 1;
|
---|
| 183 |
|
---|
| 184 | if (flag_s != NULL)
|
---|
| 185 | flag = (int)(atof(flag_s));
|
---|
| 186 |
|
---|
| 187 | if (flag >= 0 && flag <= 99)
|
---|
| 188 | MaxRecursionLevel = flag;
|
---|
| 189 | else
|
---|
| 190 | SL_RETURN((-1), _("sh_files_setrecursion"));
|
---|
| 191 |
|
---|
| 192 | SL_RETURN((0), _("sh_files_setrecursion"));
|
---|
| 193 | }
|
---|
| 194 |
|
---|
| 195 | unsigned long sh_files_chk ()
|
---|
| 196 | {
|
---|
| 197 | zAVLCursor cursor;
|
---|
| 198 | ShFileType status;
|
---|
| 199 | unsigned long fcount = 0;
|
---|
| 200 |
|
---|
| 201 | char * tmp = NULL;
|
---|
| 202 |
|
---|
| 203 | dirstack_t * ptr;
|
---|
[34] | 204 | char * dir;
|
---|
[1] | 205 | char * file;
|
---|
[46] | 206 | int tmp_reported;
|
---|
[1] | 207 |
|
---|
| 208 | SL_ENTER(_("sh_files_chk"));
|
---|
| 209 |
|
---|
| 210 | for (ptr = (dirstack_t *) zAVLFirst(&cursor, zfileList); ptr;
|
---|
| 211 | ptr = (dirstack_t *) zAVLNext(&cursor))
|
---|
| 212 | {
|
---|
| 213 |
|
---|
| 214 | if (sig_urgent > 0) {
|
---|
| 215 | SL_RETURN(fcount, _("sh_files_chk"));
|
---|
| 216 | }
|
---|
| 217 |
|
---|
| 218 | if (ptr->checked == S_FALSE)
|
---|
| 219 | {
|
---|
[34] | 220 | dir = sh_util_dirname (ptr->name);
|
---|
| 221 | file = sh_util_basename (ptr->name);
|
---|
[1] | 222 | #if defined(WITH_TPT)
|
---|
| 223 | tmp = sh_util_safe_name (ptr->name);
|
---|
| 224 | #endif
|
---|
| 225 |
|
---|
| 226 |
|
---|
| 227 | if (flag_err_info == SL_TRUE)
|
---|
| 228 | {
|
---|
| 229 | #if !defined(WITH_TPT)
|
---|
| 230 | tmp = sh_util_safe_name (ptr->name);
|
---|
| 231 | #endif
|
---|
[8] | 232 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_CHK, tmp);
|
---|
[1] | 233 | }
|
---|
| 234 |
|
---|
| 235 | BREAKEXIT(sh_files_filecheck);
|
---|
[114] | 236 | tmp_reported = ptr->is_reported; /* fix aliasing warning */
|
---|
[34] | 237 | status = sh_files_filecheck (ptr->class, dir, file,
|
---|
[46] | 238 | &tmp_reported, 0);
|
---|
[114] | 239 | ptr->is_reported = tmp_reported;
|
---|
[1] | 240 |
|
---|
| 241 | TPT(( 0, FIL__, __LINE__,
|
---|
| 242 | _("msg=<filecheck complete: %s> status=<%d> reported=<%d>\n"),
|
---|
[114] | 243 | tmp, status, ptr->is_reported));
|
---|
[1] | 244 |
|
---|
[114] | 245 | if (status == SH_FILE_UNKNOWN && (!SH_FFLAG_REPORTED_SET(ptr->is_reported)))
|
---|
[1] | 246 | {
|
---|
| 247 | TPT(( 0, FIL__, __LINE__, _("msg=<file: %s> status=<%d>\n"),
|
---|
| 248 | tmp, status));
|
---|
| 249 |
|
---|
| 250 | if ( sh.flag.checkSum == SH_CHECK_INIT ||
|
---|
| 251 | sh_hash_have_it (ptr->name) >= 0)
|
---|
| 252 | {
|
---|
| 253 | if (S_FALSE == sh_ignore_chk_del(ptr->name))
|
---|
| 254 | {
|
---|
| 255 | if (0 != hashreport_missing(ptr->name,
|
---|
| 256 | (ptr->class == SH_LEVEL_ALLIGNORE) ?
|
---|
| 257 | ShDFLevel[ptr->class] :
|
---|
| 258 | ShDFLevel[SH_ERR_T_FILE])) {
|
---|
| 259 | if (tmp == NULL)
|
---|
| 260 | tmp = sh_util_safe_name (ptr->name);
|
---|
| 261 | sh_error_handle ((ptr->class == SH_LEVEL_ALLIGNORE) ?
|
---|
| 262 | ShDFLevel[ptr->class] :
|
---|
| 263 | ShDFLevel[SH_ERR_T_FILE],
|
---|
| 264 | FIL__, __LINE__, 0, MSG_FI_MISS,
|
---|
| 265 | tmp);
|
---|
| 266 | }
|
---|
| 267 | }
|
---|
| 268 | }
|
---|
| 269 | else /* not there at init, and still missing */
|
---|
| 270 | {
|
---|
| 271 | if (tmp == NULL)
|
---|
| 272 | tmp = sh_util_safe_name (ptr->name);
|
---|
| 273 | sh_error_handle (SH_ERR_NOTICE,
|
---|
| 274 | FIL__, __LINE__, 0,
|
---|
| 275 | MSG_FI_FAIL,
|
---|
| 276 | tmp);
|
---|
| 277 | }
|
---|
| 278 | #ifndef REPLACE_OLD
|
---|
| 279 | /* this will tell that we have seen the file, and thus prevent
|
---|
| 280 | * deletion from the database, resulting in an incomplete
|
---|
| 281 | * message when the file reappears
|
---|
| 282 | */
|
---|
| 283 | if (sh.flag.checkSum != SH_CHECK_INIT)
|
---|
| 284 | sh_hash_set_visited_true(ptr->name);
|
---|
| 285 | #else
|
---|
| 286 | if (sh.flag.checkSum != SH_CHECK_INIT)
|
---|
| 287 | sh_hash_set_missing(ptr->name);
|
---|
| 288 | #endif
|
---|
| 289 | if (sh.flag.reportonce == S_TRUE)
|
---|
[114] | 290 | SET_SH_FFLAG_REPORTED(ptr->is_reported);
|
---|
[1] | 291 | }
|
---|
| 292 | else
|
---|
| 293 | {
|
---|
| 294 | /* exists (status >= 0), but was missing (reported == TRUE)
|
---|
| 295 | */
|
---|
[114] | 296 | if (status != SH_FILE_UNKNOWN && SH_FFLAG_REPORTED_SET(ptr->is_reported))
|
---|
[1] | 297 | {
|
---|
[114] | 298 | CLEAR_SH_FFLAG_REPORTED(ptr->is_reported);
|
---|
[1] | 299 | }
|
---|
| 300 | /* Catchall
|
---|
| 301 | */
|
---|
| 302 | else if (status == SH_FILE_UNKNOWN)
|
---|
| 303 | {
|
---|
| 304 | /* Thu Mar 7 15:09:40 CET 2002 Make sure missing file
|
---|
| 305 | * is reported if ptr->reported == S_TRUE because the
|
---|
| 306 | * file has been added.
|
---|
| 307 | */
|
---|
| 308 | if (sh_hash_have_it (ptr->name) >= 0)
|
---|
| 309 | {
|
---|
| 310 | if (S_FALSE == sh_ignore_chk_del(ptr->name))
|
---|
| 311 | {
|
---|
| 312 | if (0 != hashreport_missing(ptr->name,
|
---|
| 313 | (ptr->class == SH_LEVEL_ALLIGNORE) ?
|
---|
| 314 | ShDFLevel[ptr->class] :
|
---|
| 315 | ShDFLevel[SH_ERR_T_FILE])) {
|
---|
| 316 | if (tmp == NULL)
|
---|
| 317 | tmp = sh_util_safe_name (ptr->name);
|
---|
| 318 | sh_error_handle ((ptr->class == SH_LEVEL_ALLIGNORE)?
|
---|
| 319 | ShDFLevel[ptr->class] :
|
---|
| 320 | ShDFLevel[SH_ERR_T_FILE],
|
---|
| 321 | FIL__, __LINE__, 0, MSG_FI_MISS,
|
---|
| 322 | tmp);
|
---|
| 323 | }
|
---|
| 324 | }
|
---|
| 325 | #ifndef REPLACE_OLD
|
---|
| 326 | if (sh.flag.checkSum != SH_CHECK_INIT)
|
---|
| 327 | sh_hash_set_visited_true(ptr->name);
|
---|
| 328 | #else
|
---|
| 329 | /* delete from database
|
---|
| 330 | */
|
---|
| 331 | if (sh.flag.checkSum != SH_CHECK_INIT)
|
---|
| 332 | sh_hash_set_missing(ptr->name);
|
---|
| 333 | #endif
|
---|
| 334 | }
|
---|
| 335 | else
|
---|
| 336 | {
|
---|
| 337 | if (tmp == NULL)
|
---|
| 338 | tmp = sh_util_safe_name (ptr->name);
|
---|
| 339 | sh_error_handle (SH_ERR_INFO, FIL__, __LINE__, 0,
|
---|
| 340 | MSG_FI_FAIL,
|
---|
| 341 | tmp);
|
---|
| 342 | if (sh.flag.checkSum != SH_CHECK_INIT)
|
---|
| 343 | sh_hash_set_visited_true(ptr->name);
|
---|
| 344 | }
|
---|
| 345 | }
|
---|
| 346 | ++fcount;
|
---|
| 347 | }
|
---|
| 348 |
|
---|
| 349 | if (tmp != NULL)
|
---|
| 350 | {
|
---|
| 351 | SH_FREE(tmp);
|
---|
| 352 | tmp = NULL;
|
---|
| 353 | }
|
---|
[94] | 354 | if (file)
|
---|
| 355 | SH_FREE(file);
|
---|
| 356 | if (dir)
|
---|
| 357 | SH_FREE(dir);
|
---|
[1] | 358 |
|
---|
| 359 | ptr->checked = S_TRUE;
|
---|
| 360 | }
|
---|
| 361 | }
|
---|
| 362 |
|
---|
| 363 | SL_RETURN(fcount, _("sh_files_chk"));
|
---|
| 364 | }
|
---|
| 365 |
|
---|
| 366 | int sh_files_delfilestack ()
|
---|
| 367 | {
|
---|
| 368 | SL_ENTER(_("sh_files_delfilestack"));
|
---|
| 369 |
|
---|
| 370 | zAVLFreeTree (zfileList, free_dirstack);
|
---|
| 371 | zfileList = NULL;
|
---|
| 372 |
|
---|
| 373 | SL_RETURN(0, _("sh_files_delfilestack"));
|
---|
| 374 | }
|
---|
| 375 |
|
---|
| 376 | int sh_files_setrec_int (zAVLTree * tree)
|
---|
| 377 | {
|
---|
| 378 | dirstack_t * ptr;
|
---|
| 379 | zAVLCursor avlcursor;
|
---|
| 380 |
|
---|
| 381 | SL_ENTER(_("sh_files_setrec"));
|
---|
| 382 | if (tree != NULL) {
|
---|
| 383 | for (ptr = (dirstack_t *) zAVLFirst(&avlcursor, tree); ptr;
|
---|
| 384 | ptr = (dirstack_t *) zAVLNext(&avlcursor))
|
---|
| 385 | {
|
---|
| 386 | if (ptr->rdepth < (-1) || ptr->rdepth > 99)
|
---|
| 387 | {
|
---|
| 388 | ptr->rdepth = MaxRecursionLevel;
|
---|
| 389 | }
|
---|
| 390 | if (ptr->rdepth == (-1) && sh.flag.checkSum != SH_CHECK_INIT)
|
---|
| 391 | hash_remove_tree (ptr->name);
|
---|
| 392 | }
|
---|
| 393 | }
|
---|
| 394 | SL_RETURN(0, _("sh_files_setrec"));
|
---|
| 395 | }
|
---|
| 396 |
|
---|
| 397 | int sh_files_setrec ()
|
---|
| 398 | {
|
---|
| 399 | sh_files_setrec_int(zdirListOne);
|
---|
| 400 | return sh_files_setrec_int(zdirListTwo);
|
---|
| 401 | }
|
---|
| 402 |
|
---|
| 403 | zAVLTree * sh_files_deldirstack_int (zAVLTree * ptr)
|
---|
| 404 | {
|
---|
| 405 | SL_ENTER(_("sh_files_deldirstack"));
|
---|
| 406 |
|
---|
| 407 | zAVLFreeTree (ptr, free_dirstack);
|
---|
| 408 |
|
---|
| 409 | SL_RETURN(NULL, _("sh_files_deldirstack"));
|
---|
| 410 | }
|
---|
| 411 |
|
---|
| 412 | int sh_files_deldirstack ()
|
---|
| 413 | {
|
---|
| 414 | zdirListOne = sh_files_deldirstack_int(zdirListOne);
|
---|
| 415 | zdirListTwo = sh_files_deldirstack_int(zdirListTwo);
|
---|
| 416 | return 0;
|
---|
| 417 | }
|
---|
| 418 |
|
---|
| 419 | void sh_files_reset()
|
---|
| 420 | {
|
---|
| 421 | dirstack_t * ptr;
|
---|
| 422 | zAVLCursor avlcursor;
|
---|
| 423 |
|
---|
| 424 | SL_ENTER(_("sh_files_reset"));
|
---|
| 425 |
|
---|
| 426 | for (ptr = (dirstack_t *) zAVLFirst(&avlcursor, zfileList); ptr;
|
---|
| 427 | ptr = (dirstack_t *) zAVLNext(&avlcursor))
|
---|
| 428 | ptr->checked = 0;
|
---|
| 429 |
|
---|
| 430 | SL_RET0(_("sh_files_reset"));
|
---|
| 431 | }
|
---|
| 432 |
|
---|
| 433 | void sh_dirs_reset()
|
---|
| 434 | {
|
---|
| 435 | dirstack_t * ptr;
|
---|
| 436 | zAVLCursor avlcursor1;
|
---|
| 437 | zAVLCursor avlcursor2;
|
---|
| 438 |
|
---|
| 439 | SL_ENTER(_("sh_dirs_reset"));
|
---|
| 440 |
|
---|
| 441 | for (ptr = (dirstack_t *) zAVLFirst(&avlcursor1, zdirListOne); ptr;
|
---|
| 442 | ptr = (dirstack_t *) zAVLNext(&avlcursor1))
|
---|
| 443 | ptr->checked = 0;
|
---|
| 444 |
|
---|
| 445 | for (ptr = (dirstack_t *) zAVLFirst(&avlcursor2, zdirListTwo); ptr;
|
---|
| 446 | ptr = (dirstack_t *) zAVLNext(&avlcursor2))
|
---|
| 447 | ptr->checked = 0;
|
---|
| 448 |
|
---|
| 449 | SL_RET0(_("sh_dirs_reset"));
|
---|
| 450 | }
|
---|
| 451 |
|
---|
| 452 |
|
---|
[22] | 453 | int sh_files_pushfile_prelink (const char * str_s)
|
---|
[1] | 454 | {
|
---|
| 455 | return (sh_files_pushfile (SH_LEVEL_PRELINK, str_s));
|
---|
| 456 | }
|
---|
| 457 |
|
---|
[22] | 458 | int sh_files_pushfile_user0 (const char * str_s)
|
---|
[1] | 459 | {
|
---|
| 460 | return (sh_files_pushfile (SH_LEVEL_USER0, str_s));
|
---|
| 461 | }
|
---|
| 462 |
|
---|
[22] | 463 | int sh_files_pushfile_user1 (const char * str_s)
|
---|
[1] | 464 | {
|
---|
| 465 | return (sh_files_pushfile (SH_LEVEL_USER1, str_s));
|
---|
| 466 | }
|
---|
| 467 |
|
---|
[27] | 468 | int sh_files_pushfile_user2 (const char * str_s)
|
---|
| 469 | {
|
---|
| 470 | return (sh_files_pushfile (SH_LEVEL_USER2, str_s));
|
---|
| 471 | }
|
---|
[1] | 472 |
|
---|
[27] | 473 | int sh_files_pushfile_user3 (const char * str_s)
|
---|
| 474 | {
|
---|
| 475 | return (sh_files_pushfile (SH_LEVEL_USER3, str_s));
|
---|
| 476 | }
|
---|
| 477 |
|
---|
| 478 | int sh_files_pushfile_user4 (const char * str_s)
|
---|
| 479 | {
|
---|
| 480 | return (sh_files_pushfile (SH_LEVEL_USER4, str_s));
|
---|
| 481 | }
|
---|
| 482 |
|
---|
| 483 |
|
---|
[22] | 484 | int sh_files_pushfile_ro (const char * str_s)
|
---|
[1] | 485 | {
|
---|
| 486 | return (sh_files_pushfile (SH_LEVEL_READONLY, str_s));
|
---|
| 487 | }
|
---|
| 488 |
|
---|
[22] | 489 | int sh_files_pushfile_attr (const char * str_s)
|
---|
[1] | 490 | {
|
---|
| 491 | return (sh_files_pushfile (SH_LEVEL_ATTRIBUTES, str_s));
|
---|
| 492 | }
|
---|
| 493 |
|
---|
[22] | 494 | int sh_files_pushfile_log (const char * str_s)
|
---|
[1] | 495 | {
|
---|
| 496 | return (sh_files_pushfile (SH_LEVEL_LOGFILES, str_s));
|
---|
| 497 | }
|
---|
| 498 |
|
---|
[22] | 499 | int sh_files_pushfile_glog (const char * str_s)
|
---|
[1] | 500 | {
|
---|
| 501 | return (sh_files_pushfile (SH_LEVEL_LOGGROW, str_s));
|
---|
| 502 | }
|
---|
| 503 |
|
---|
[22] | 504 | int sh_files_pushfile_noig (const char * str_s)
|
---|
[1] | 505 | {
|
---|
| 506 | return (sh_files_pushfile (SH_LEVEL_NOIGNORE, str_s));
|
---|
| 507 | }
|
---|
| 508 |
|
---|
[22] | 509 | int sh_files_pushfile_allig (const char * str_s)
|
---|
[1] | 510 | {
|
---|
| 511 | return (sh_files_pushfile (SH_LEVEL_ALLIGNORE, str_s));
|
---|
| 512 | }
|
---|
| 513 |
|
---|
| 514 |
|
---|
| 515 | static void sh_files_set_mask (unsigned long * mask,
|
---|
| 516 | unsigned long val, int act)
|
---|
| 517 | {
|
---|
| 518 | SL_ENTER(_("sh_files_set_mask"));
|
---|
| 519 |
|
---|
| 520 | if (act == 0)
|
---|
| 521 | (*mask) = val;
|
---|
| 522 | else if (act > 0)
|
---|
| 523 | (*mask) |= val;
|
---|
| 524 | else
|
---|
| 525 | (*mask) &= ~val;
|
---|
| 526 |
|
---|
| 527 | SL_RET0(_("sh_files_set_mask"));
|
---|
| 528 | }
|
---|
| 529 |
|
---|
| 530 | /* set mask(class)
|
---|
| 531 | */
|
---|
[22] | 532 | static int sh_files_parse_mask (unsigned long * mask, const char * str)
|
---|
[1] | 533 | {
|
---|
| 534 | int l, i = 0, act = 0, k = 0;
|
---|
| 535 | char myword[64];
|
---|
| 536 |
|
---|
| 537 | SL_ENTER(_("sh_files_parse_mask"));
|
---|
| 538 |
|
---|
| 539 | if (str == NULL)
|
---|
| 540 | {
|
---|
| 541 | SL_RETURN ( (-1), _("sh_files_parse_mask"));
|
---|
| 542 | }
|
---|
| 543 | else
|
---|
| 544 | l = sl_strlen(str);
|
---|
| 545 |
|
---|
| 546 | while (i < l) {
|
---|
| 547 | if (str[i] == '\0')
|
---|
| 548 | break;
|
---|
| 549 | if (str[i] == ' ' || str[i] == '\t' || str[i] == ',')
|
---|
| 550 | {
|
---|
| 551 | ++i;
|
---|
| 552 | continue;
|
---|
| 553 | }
|
---|
| 554 |
|
---|
| 555 | if (str[i] == '+')
|
---|
| 556 | {
|
---|
| 557 | act = +1; ++i;
|
---|
| 558 | continue;
|
---|
| 559 | }
|
---|
| 560 | else if (str[i] == '-')
|
---|
| 561 | {
|
---|
| 562 | act = -1; ++i;
|
---|
| 563 | continue;
|
---|
| 564 | }
|
---|
| 565 | else /* a word */
|
---|
| 566 | {
|
---|
| 567 | k = 0;
|
---|
| 568 | while (k < 63 && str[i] != ' ' && str[i] != '\t' && str[i] != ','
|
---|
| 569 | && str[i] != '+' && str[i] != '-' && str[i] != '\0') {
|
---|
| 570 | myword[k] = str[i];
|
---|
| 571 | ++i; ++k;
|
---|
| 572 | }
|
---|
| 573 | myword[k] = '\0';
|
---|
| 574 |
|
---|
| 575 | /* checksum */
|
---|
| 576 | if (0 == strncmp(myword, _("CHK"), 3))
|
---|
| 577 | sh_files_set_mask (mask, MODI_CHK, act);
|
---|
| 578 | /* link */
|
---|
| 579 | if (0 == strncmp(myword, _("LNK"), 3))
|
---|
| 580 | sh_files_set_mask (mask, MODI_LNK, act);
|
---|
| 581 | /* inode */
|
---|
| 582 | if (0 == strncmp(myword, _("RDEV"), 3))
|
---|
| 583 | sh_files_set_mask (mask, MODI_RDEV, act);
|
---|
| 584 | /* inode */
|
---|
| 585 | if (0 == strncmp(myword, _("INO"), 3))
|
---|
| 586 | sh_files_set_mask (mask, MODI_INO, act);
|
---|
| 587 | /* user */
|
---|
| 588 | if (0 == strncmp(myword, _("USR"), 3))
|
---|
| 589 | sh_files_set_mask (mask, MODI_USR, act);
|
---|
| 590 | /* group */
|
---|
| 591 | if (0 == strncmp(myword, _("GRP"), 3))
|
---|
| 592 | sh_files_set_mask (mask, MODI_GRP, act);
|
---|
| 593 | /* mtime */
|
---|
| 594 | if (0 == strncmp(myword, _("MTM"), 3))
|
---|
| 595 | sh_files_set_mask (mask, MODI_MTM, act);
|
---|
| 596 | /* ctime */
|
---|
| 597 | if (0 == strncmp(myword, _("CTM"), 3))
|
---|
| 598 | sh_files_set_mask (mask, MODI_CTM, act);
|
---|
| 599 | /* atime */
|
---|
| 600 | if (0 == strncmp(myword, _("ATM"), 3))
|
---|
| 601 | sh_files_set_mask (mask, MODI_ATM, act);
|
---|
| 602 | /* size */
|
---|
| 603 | if (0 == strncmp(myword, _("SIZ"), 3))
|
---|
| 604 | sh_files_set_mask (mask, MODI_SIZ, act);
|
---|
| 605 | /* file mode */
|
---|
| 606 | if (0 == strncmp(myword, _("MOD"), 3))
|
---|
| 607 | sh_files_set_mask (mask, MODI_MOD, act);
|
---|
| 608 | /* hardlinks */
|
---|
| 609 | if (0 == strncmp(myword, _("HLN"), 3))
|
---|
| 610 | sh_files_set_mask (mask, MODI_HLN, act);
|
---|
[19] | 611 | /* size may grow */
|
---|
| 612 | if (0 == strncmp(myword, _("GROW"), 3))
|
---|
| 613 | sh_files_set_mask (mask, MODI_SGROW, act);
|
---|
| 614 | /* use prelink */
|
---|
| 615 | if (0 == strncmp(myword, _("PRE"), 3))
|
---|
| 616 | sh_files_set_mask (mask, MODI_PREL, act);
|
---|
[167] | 617 | /* get content */
|
---|
| 618 | if (0 == strncmp(myword, _("TXT"), 3))
|
---|
| 619 | sh_files_set_mask (mask, MODI_TXT, act);
|
---|
[1] | 620 |
|
---|
| 621 | }
|
---|
| 622 | }
|
---|
| 623 | SL_RETURN ( (0), _("sh_files_parse_mask"));
|
---|
| 624 | }
|
---|
| 625 |
|
---|
[22] | 626 | int sh_files_redef_prelink(const char * str)
|
---|
[1] | 627 | {
|
---|
| 628 | return (sh_files_parse_mask(&mask_PRELINK, str));
|
---|
| 629 | }
|
---|
[22] | 630 | int sh_files_redef_user0(const char * str)
|
---|
[1] | 631 | {
|
---|
| 632 | return (sh_files_parse_mask(&mask_USER0, str));
|
---|
| 633 | }
|
---|
[22] | 634 | int sh_files_redef_user1(const char * str)
|
---|
[1] | 635 | {
|
---|
| 636 | return (sh_files_parse_mask(&mask_USER1, str));
|
---|
| 637 | }
|
---|
[27] | 638 | int sh_files_redef_user2(const char * str)
|
---|
| 639 | {
|
---|
| 640 | return (sh_files_parse_mask(&mask_USER2, str));
|
---|
| 641 | }
|
---|
| 642 | int sh_files_redef_user3(const char * str)
|
---|
| 643 | {
|
---|
| 644 | return (sh_files_parse_mask(&mask_USER3, str));
|
---|
| 645 | }
|
---|
| 646 | int sh_files_redef_user4(const char * str)
|
---|
| 647 | {
|
---|
| 648 | return (sh_files_parse_mask(&mask_USER4, str));
|
---|
| 649 | }
|
---|
[22] | 650 | int sh_files_redef_readonly(const char * str)
|
---|
[1] | 651 | {
|
---|
| 652 | return (sh_files_parse_mask(&mask_READONLY, str));
|
---|
| 653 | }
|
---|
[22] | 654 | int sh_files_redef_loggrow(const char * str)
|
---|
[1] | 655 | {
|
---|
| 656 | return (sh_files_parse_mask(&mask_LOGGROW, str));
|
---|
| 657 | }
|
---|
[22] | 658 | int sh_files_redef_logfiles(const char * str)
|
---|
[1] | 659 | {
|
---|
| 660 | return (sh_files_parse_mask(&mask_LOGFILES, str));
|
---|
| 661 | }
|
---|
[22] | 662 | int sh_files_redef_attributes(const char * str)
|
---|
[1] | 663 | {
|
---|
| 664 | return (sh_files_parse_mask(&mask_ATTRIBUTES, str));
|
---|
| 665 | }
|
---|
[22] | 666 | int sh_files_redef_noignore(const char * str)
|
---|
[1] | 667 | {
|
---|
| 668 | return (sh_files_parse_mask(&mask_NOIGNORE, str));
|
---|
| 669 | }
|
---|
[22] | 670 | int sh_files_redef_allignore(const char * str)
|
---|
[1] | 671 | {
|
---|
| 672 | return (sh_files_parse_mask(&mask_ALLIGNORE, str));
|
---|
| 673 | }
|
---|
| 674 |
|
---|
| 675 | unsigned long sh_files_maskof (int class)
|
---|
| 676 | {
|
---|
| 677 | switch (class)
|
---|
| 678 | {
|
---|
| 679 | case SH_LEVEL_READONLY:
|
---|
| 680 | return (unsigned long) mask_READONLY;
|
---|
| 681 | case SH_LEVEL_ATTRIBUTES:
|
---|
| 682 | return (unsigned long) mask_ATTRIBUTES;
|
---|
| 683 | case SH_LEVEL_LOGFILES:
|
---|
| 684 | return (unsigned long) mask_LOGFILES;
|
---|
| 685 | case SH_LEVEL_LOGGROW:
|
---|
| 686 | return (unsigned long) mask_LOGGROW;
|
---|
| 687 | case SH_LEVEL_ALLIGNORE:
|
---|
| 688 | return (unsigned long) mask_ALLIGNORE;
|
---|
| 689 | case SH_LEVEL_NOIGNORE:
|
---|
| 690 | return (unsigned long) mask_NOIGNORE;
|
---|
| 691 | case SH_LEVEL_USER0:
|
---|
| 692 | return (unsigned long) mask_USER0;
|
---|
| 693 | case SH_LEVEL_USER1:
|
---|
| 694 | return (unsigned long) mask_USER1;
|
---|
[27] | 695 | case SH_LEVEL_USER2:
|
---|
| 696 | return (unsigned long) mask_USER2;
|
---|
| 697 | case SH_LEVEL_USER3:
|
---|
| 698 | return (unsigned long) mask_USER3;
|
---|
| 699 | case SH_LEVEL_USER4:
|
---|
| 700 | return (unsigned long) mask_USER4;
|
---|
[1] | 701 | case SH_LEVEL_PRELINK:
|
---|
| 702 | return (unsigned long) mask_PRELINK;
|
---|
| 703 | default:
|
---|
| 704 | return (unsigned long) 0;
|
---|
| 705 | }
|
---|
| 706 | }
|
---|
| 707 |
|
---|
| 708 | #ifdef HAVE_GLOB_H
|
---|
| 709 | int sh_files_has_metachar (const char * str)
|
---|
| 710 | {
|
---|
| 711 | SL_ENTER(_("sh_files_has_metachar"));
|
---|
| 712 | if (NULL != strchr(str, '*'))
|
---|
| 713 | SL_RETURN(1, _("sh_files_has_metachar"));
|
---|
| 714 | else if (NULL != strchr(str, '?'))
|
---|
| 715 | SL_RETURN(1, _("sh_files_has_metachar"));
|
---|
| 716 | else if (NULL != (strchr(str, '[')))
|
---|
| 717 | SL_RETURN(1, _("sh_files_has_metachar"));
|
---|
| 718 | else
|
---|
| 719 | SL_RETURN(0, _("sh_files_has_metachar"));
|
---|
| 720 | }
|
---|
| 721 |
|
---|
| 722 |
|
---|
| 723 | int sh_files_globerr (const char * epath, int errnum)
|
---|
| 724 | {
|
---|
| 725 | char * p;
|
---|
[132] | 726 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 727 |
|
---|
| 728 | SL_ENTER(_("sh_files_globerr"));
|
---|
| 729 |
|
---|
[61] | 730 | if (errnum == ENOTDIR || errnum == ENOENT)
|
---|
| 731 | {
|
---|
| 732 | SL_RETURN(0, _("sh_files_globerr"));
|
---|
| 733 | }
|
---|
| 734 |
|
---|
[1] | 735 | p = sh_util_safe_name (epath);
|
---|
| 736 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__, errnum, MSG_FI_GLOB,
|
---|
[132] | 737 | sh_error_message (errnum, errbuf, sizeof(errbuf)), p);
|
---|
[1] | 738 | SH_FREE(p);
|
---|
| 739 |
|
---|
| 740 | SL_RETURN(0, _("sh_files_globerr"));
|
---|
| 741 | }
|
---|
| 742 |
|
---|
| 743 | /* #ifdef HAVE_GLOB_H
|
---|
| 744 | */
|
---|
| 745 | #endif
|
---|
| 746 |
|
---|
[34] | 747 | int sh_files_push_file_int (int class, const char * str_s, size_t len)
|
---|
[1] | 748 | {
|
---|
| 749 | dirstack_t * new_item_ptr;
|
---|
| 750 | char * fileName;
|
---|
| 751 | int ret;
|
---|
| 752 |
|
---|
| 753 | SL_ENTER(_("sh_files_push_file_int"));
|
---|
| 754 |
|
---|
| 755 | fileName = SH_ALLOC(len+1);
|
---|
| 756 | sl_strlcpy(fileName, str_s, len+1);
|
---|
| 757 |
|
---|
| 758 | new_item_ptr = (dirstack_t *) SH_ALLOC (sizeof(dirstack_t));
|
---|
| 759 |
|
---|
| 760 | new_item_ptr->name = fileName;
|
---|
| 761 | new_item_ptr->class = class;
|
---|
| 762 | new_item_ptr->check_mask = sh_files_maskof(class);
|
---|
| 763 | new_item_ptr->rdepth = 0;
|
---|
| 764 | new_item_ptr->checked = S_FALSE;
|
---|
[114] | 765 | new_item_ptr->is_reported = 0;
|
---|
[1] | 766 | new_item_ptr->childs_checked = S_FALSE;
|
---|
| 767 |
|
---|
| 768 | if (zfileList == NULL)
|
---|
| 769 | {
|
---|
| 770 | zfileList = zAVLAllocTree (zdirstack_key);
|
---|
| 771 | if (zfileList == NULL)
|
---|
| 772 | {
|
---|
[22] | 773 | (void) safe_logger (0, 0, NULL);
|
---|
[1] | 774 | aud__exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 775 | }
|
---|
| 776 | }
|
---|
| 777 |
|
---|
| 778 | ret = zAVLInsert (zfileList, new_item_ptr);
|
---|
| 779 |
|
---|
| 780 | if (-1 == ret)
|
---|
| 781 | {
|
---|
[22] | 782 | (void) safe_logger (0, 0, NULL);
|
---|
[1] | 783 | aud__exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 784 | }
|
---|
| 785 | if (3 == ret)
|
---|
| 786 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_DOUBLE,
|
---|
| 787 | fileName);
|
---|
| 788 |
|
---|
| 789 | SL_RETURN(0, _("sh_files_push_file_int"));
|
---|
| 790 | }
|
---|
| 791 |
|
---|
| 792 |
|
---|
[22] | 793 | static int sh_files_pushfile (int class, const char * str_s)
|
---|
[1] | 794 | {
|
---|
[34] | 795 | size_t len;
|
---|
[1] | 796 | char * tmp;
|
---|
[22] | 797 | char * p;
|
---|
[1] | 798 | #ifdef HAVE_GLOB_H
|
---|
| 799 | int globstatus = -1;
|
---|
| 800 | unsigned int gloop;
|
---|
[22] | 801 | glob_t pglob;
|
---|
[1] | 802 | #endif
|
---|
| 803 |
|
---|
| 804 | static int reject = 0;
|
---|
| 805 |
|
---|
| 806 | SL_ENTER(_("sh_files_pushfile"));
|
---|
| 807 |
|
---|
| 808 | if (reject == 1)
|
---|
| 809 | SL_RETURN((-1),_("sh_files_pushfile"));
|
---|
| 810 |
|
---|
| 811 | /* if we push a filename from the command line, make sure it
|
---|
| 812 | * is the only one -- and will stay the only one
|
---|
| 813 | */
|
---|
| 814 | if (sh.flag.opts == 1)
|
---|
| 815 | {
|
---|
| 816 | sh_files_delfilestack ();
|
---|
| 817 | sh_files_deldirstack ();
|
---|
| 818 | reject = 1;
|
---|
| 819 | }
|
---|
| 820 |
|
---|
| 821 | if (str_s == NULL)
|
---|
| 822 | SL_RETURN((-1),_("sh_files_pushfile"));
|
---|
| 823 |
|
---|
| 824 | len = sl_strlen(str_s);
|
---|
| 825 |
|
---|
| 826 | if (len >= PATH_MAX)
|
---|
| 827 | {
|
---|
| 828 | /* Name too long
|
---|
| 829 | */
|
---|
| 830 | tmp = sh_util_safe_name (str_s);
|
---|
| 831 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_2LONG,
|
---|
| 832 | tmp);
|
---|
| 833 | SH_FREE(tmp);
|
---|
| 834 | SL_RETURN((-1),_("sh_files_pushfile"));
|
---|
| 835 | }
|
---|
| 836 | else if (len < 1)
|
---|
| 837 | {
|
---|
| 838 | /* Should not happen (str_s == NULL caught further above)
|
---|
| 839 | */
|
---|
| 840 | SL_RETURN((-1),_("sh_files_pushfile"));
|
---|
| 841 | }
|
---|
| 842 | else if (str_s[0] != '/')
|
---|
| 843 | {
|
---|
| 844 | /* Not an absolute path
|
---|
| 845 | */
|
---|
| 846 | tmp = sh_util_safe_name (str_s);
|
---|
| 847 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_NOPATH,
|
---|
| 848 | tmp);
|
---|
| 849 | SH_FREE(tmp);
|
---|
| 850 | SL_RETURN((-1),_("sh_files_pushfile"));
|
---|
| 851 | }
|
---|
| 852 | else
|
---|
| 853 | {
|
---|
| 854 | /* remove a terminating '/', take care of the
|
---|
| 855 | * special case of the root directory.
|
---|
| 856 | */
|
---|
[22] | 857 | p = sh_util_strdup (str_s);
|
---|
| 858 | if (p[len-1] == '/' && len > 1)
|
---|
[1] | 859 | {
|
---|
[22] | 860 | p[len-1] = '\0';
|
---|
[1] | 861 | --len;
|
---|
| 862 | }
|
---|
| 863 |
|
---|
| 864 | }
|
---|
| 865 |
|
---|
| 866 | #ifdef HAVE_GLOB_H
|
---|
[22] | 867 | if (0 == sh_files_has_metachar(p))
|
---|
[1] | 868 | {
|
---|
[22] | 869 | sh_files_push_file_int (class, p, len);
|
---|
[1] | 870 | }
|
---|
| 871 | else
|
---|
| 872 | {
|
---|
| 873 | pglob.gl_offs = 0;
|
---|
[22] | 874 | globstatus = glob (p, 0, sh_files_globerr, &pglob);
|
---|
[1] | 875 |
|
---|
| 876 | if (globstatus == 0 && pglob.gl_pathc > 0)
|
---|
| 877 | {
|
---|
| 878 | for (gloop = 0; gloop < (unsigned int) pglob.gl_pathc; ++gloop)
|
---|
| 879 | sh_files_push_file_int (class, pglob.gl_pathv[gloop],
|
---|
| 880 | sl_strlen(pglob.gl_pathv[gloop]));
|
---|
| 881 | }
|
---|
| 882 | else
|
---|
| 883 | {
|
---|
[22] | 884 | tmp = sh_util_safe_name (p);
|
---|
[1] | 885 |
|
---|
| 886 | if (pglob.gl_pathc == 0
|
---|
| 887 | #ifdef GLOB_NOMATCH
|
---|
| 888 | || globstatus == GLOB_NOMATCH
|
---|
| 889 | #endif
|
---|
| 890 | )
|
---|
| 891 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__,
|
---|
| 892 | globstatus, MSG_FI_GLOB,
|
---|
| 893 | _("No matches found"), tmp);
|
---|
| 894 | #ifdef GLOB_NOSPACE
|
---|
| 895 | else if (globstatus == GLOB_NOSPACE)
|
---|
| 896 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__,
|
---|
| 897 | globstatus, MSG_FI_GLOB,
|
---|
| 898 | _("Out of memory"), tmp);
|
---|
| 899 | #endif
|
---|
| 900 | #ifdef GLOB_ABORTED
|
---|
| 901 | else if (globstatus == GLOB_ABORTED)
|
---|
| 902 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__,
|
---|
| 903 | globstatus, MSG_FI_GLOB,
|
---|
| 904 | _("Read error"), tmp);
|
---|
| 905 | #endif
|
---|
| 906 | else
|
---|
| 907 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__,
|
---|
| 908 | globstatus, MSG_FI_GLOB,
|
---|
| 909 | _("Unknown error"), tmp);
|
---|
| 910 |
|
---|
| 911 | SH_FREE(tmp);
|
---|
| 912 |
|
---|
| 913 | }
|
---|
| 914 |
|
---|
| 915 | globfree(&pglob);
|
---|
| 916 | }
|
---|
| 917 |
|
---|
| 918 | #else
|
---|
[22] | 919 | sh_files_push_file_int (class, p, len);
|
---|
[1] | 920 | #endif
|
---|
| 921 |
|
---|
[22] | 922 | SH_FREE(p);
|
---|
[1] | 923 | SL_RETURN((0),_("sh_files_pushfile"));
|
---|
| 924 | }
|
---|
| 925 |
|
---|
| 926 |
|
---|
| 927 | /* ------ directories ----- */
|
---|
| 928 |
|
---|
| 929 | int sh_files_is_allignore_int (char * str, zAVLTree * tree)
|
---|
| 930 | {
|
---|
| 931 | dirstack_t * ptr;
|
---|
| 932 |
|
---|
| 933 | SL_ENTER(_("sh_files_is_allignore"));
|
---|
| 934 |
|
---|
| 935 | if (tree)
|
---|
| 936 | {
|
---|
| 937 | ptr = zAVLSearch(tree, str);
|
---|
| 938 | if (ptr)
|
---|
| 939 | {
|
---|
| 940 | if (ptr->class == SH_LEVEL_ALLIGNORE)
|
---|
| 941 | SL_RETURN( 1, _("sh_files_is_allignore"));
|
---|
| 942 | else
|
---|
| 943 | SL_RETURN( 0, _("sh_files_is_allignore"));
|
---|
| 944 | }
|
---|
| 945 | }
|
---|
| 946 | SL_RETURN( 0, _("sh_files_is_allignore"));
|
---|
| 947 | }
|
---|
| 948 |
|
---|
| 949 | int sh_files_is_allignore (char * str)
|
---|
| 950 | {
|
---|
| 951 | if (1 == sh_files_is_allignore_int(str, zdirListOne))
|
---|
| 952 | return 1;
|
---|
| 953 | if (NULL == zdirListTwo)
|
---|
| 954 | return 0;
|
---|
| 955 | return sh_files_is_allignore_int(str, zdirListTwo);
|
---|
| 956 | }
|
---|
| 957 |
|
---|
| 958 | unsigned long sh_dirs_chk (int which)
|
---|
| 959 | {
|
---|
| 960 | zAVLTree * tree;
|
---|
| 961 | zAVLCursor cursor;
|
---|
| 962 | dirstack_t * ptr;
|
---|
| 963 | dirstack_t * dst_ptr;
|
---|
| 964 | int status;
|
---|
| 965 | unsigned long dcount = 0;
|
---|
| 966 | char * tmp;
|
---|
| 967 |
|
---|
| 968 | SL_ENTER(_("sh_dirs_chk"));
|
---|
| 969 |
|
---|
| 970 | if (which == 1)
|
---|
| 971 | tree = zdirListOne;
|
---|
| 972 | else
|
---|
| 973 | tree = zdirListTwo;
|
---|
| 974 |
|
---|
| 975 | for (ptr = (dirstack_t *) zAVLFirst(&cursor, tree); ptr;
|
---|
| 976 | ptr = (dirstack_t *) zAVLNext(&cursor))
|
---|
| 977 | {
|
---|
| 978 | if (sig_urgent > 0) {
|
---|
| 979 | SL_RETURN(dcount, _("sh_dirs_chk"));
|
---|
| 980 | }
|
---|
| 981 |
|
---|
| 982 | if (ptr->checked == S_FALSE)
|
---|
| 983 | {
|
---|
| 984 | /* 28 Aug 2001 check the top level directory
|
---|
| 985 | */
|
---|
| 986 | status = S_FALSE;
|
---|
| 987 | dst_ptr = zAVLSearch(zfileList, ptr->name);
|
---|
| 988 | if (dst_ptr)
|
---|
| 989 | {
|
---|
| 990 | if (dst_ptr->checked == S_FALSE)
|
---|
| 991 | {
|
---|
| 992 | BREAKEXIT(sh_files_filecheck);
|
---|
| 993 | sh_files_filecheck (dst_ptr->class, ptr->name,
|
---|
| 994 | NULL, &status, 0);
|
---|
| 995 | dst_ptr->checked = S_TRUE;
|
---|
| 996 | status = S_TRUE;
|
---|
| 997 | }
|
---|
| 998 | else
|
---|
| 999 | {
|
---|
| 1000 | status = S_TRUE;
|
---|
| 1001 | }
|
---|
| 1002 | }
|
---|
| 1003 |
|
---|
| 1004 | if (status == S_FALSE)
|
---|
| 1005 | sh_files_filecheck (ptr->class, ptr->name, NULL, &status, 0);
|
---|
| 1006 |
|
---|
| 1007 | BREAKEXIT(sh_files_checkdir);
|
---|
| 1008 | status = sh_files_checkdir (ptr->class, ptr->rdepth, ptr->name,
|
---|
| 1009 | ptr->name);
|
---|
| 1010 |
|
---|
[114] | 1011 | if (status < 0 && (!SH_FFLAG_REPORTED_SET(ptr->is_reported)))
|
---|
[1] | 1012 | {
|
---|
| 1013 | /* directory is missing
|
---|
| 1014 | */
|
---|
| 1015 | if (S_FALSE == sh_ignore_chk_del(ptr->name))
|
---|
| 1016 | {
|
---|
| 1017 | if (0 != hashreport_missing(ptr->name,
|
---|
| 1018 | (ptr->class == SH_LEVEL_ALLIGNORE) ?
|
---|
| 1019 | ShDFLevel[ptr->class] :
|
---|
| 1020 | ShDFLevel[SH_ERR_T_DIR])) {
|
---|
| 1021 | tmp = sh_util_safe_name (ptr->name);
|
---|
| 1022 | sh_error_handle ((ptr->class == SH_LEVEL_ALLIGNORE) ?
|
---|
| 1023 | ShDFLevel[ptr->class] :
|
---|
| 1024 | ShDFLevel[SH_ERR_T_DIR], FIL__, __LINE__,
|
---|
| 1025 | 0, MSG_FI_MISS, tmp);
|
---|
| 1026 | SH_FREE(tmp);
|
---|
| 1027 | }
|
---|
| 1028 | }
|
---|
| 1029 | if (sh.flag.reportonce == S_TRUE)
|
---|
[114] | 1030 | SET_SH_FFLAG_REPORTED(ptr->is_reported);
|
---|
[1] | 1031 | }
|
---|
| 1032 | else
|
---|
| 1033 | {
|
---|
| 1034 | /* exists (status >= 0), but was missing (reported == TRUE)
|
---|
| 1035 | */
|
---|
[114] | 1036 | if (status >= 0 && SH_FFLAG_REPORTED_SET(ptr->is_reported))
|
---|
[1] | 1037 | {
|
---|
[114] | 1038 | CLEAR_SH_FFLAG_REPORTED(ptr->is_reported);
|
---|
[1] | 1039 | #if 0
|
---|
| 1040 | /* obsoleted (really?) by the mandatory sh_files_filecheck()
|
---|
| 1041 | * above, which will catch missing directories anyway
|
---|
| 1042 | */
|
---|
| 1043 | tmp = sh_util_safe_name (ptr->name);
|
---|
| 1044 | sh_error_handle ((ptr->class == SH_LEVEL_ALLIGNORE) ?
|
---|
| 1045 | ShDFLevel[ptr->class] :
|
---|
| 1046 | ShDFLevel[SH_ERR_T_DIR],
|
---|
| 1047 | FIL__, __LINE__, 0, MSG_FI_ADD,
|
---|
| 1048 | tmp);
|
---|
| 1049 | SH_FREE(tmp);
|
---|
| 1050 | #endif
|
---|
| 1051 | }
|
---|
| 1052 | else if (status == SH_FILE_UNKNOWN)
|
---|
| 1053 | {
|
---|
| 1054 | /* catchall
|
---|
| 1055 | */
|
---|
| 1056 | tmp = sh_util_safe_name (ptr->name);
|
---|
| 1057 | sh_error_handle (SH_ERR_INFO, FIL__, __LINE__, 0,
|
---|
| 1058 | MSG_FI_FAIL,
|
---|
| 1059 | tmp);
|
---|
| 1060 | SH_FREE(tmp);
|
---|
| 1061 | if (sh.flag.checkSum != SH_CHECK_INIT)
|
---|
| 1062 | sh_hash_set_visited_true(ptr->name);
|
---|
| 1063 | }
|
---|
| 1064 |
|
---|
| 1065 | ++dcount;
|
---|
| 1066 | }
|
---|
[19] | 1067 | ptr->checked = S_TRUE;
|
---|
| 1068 | ptr->childs_checked = S_TRUE;
|
---|
[1] | 1069 | }
|
---|
| 1070 |
|
---|
| 1071 | if (sig_urgent > 0) {
|
---|
| 1072 | SL_RETURN(dcount, _("sh_dirs_chk"));
|
---|
| 1073 | }
|
---|
| 1074 |
|
---|
| 1075 | }
|
---|
| 1076 | SL_RETURN(dcount, _("sh_dirs_chk"));
|
---|
| 1077 | }
|
---|
| 1078 |
|
---|
[22] | 1079 | int sh_files_pushdir_prelink (const char * str_s)
|
---|
[1] | 1080 | {
|
---|
| 1081 | return (sh_files_pushdir (SH_LEVEL_PRELINK, str_s));
|
---|
| 1082 | }
|
---|
| 1083 |
|
---|
[22] | 1084 | int sh_files_pushdir_user0 (const char * str_s)
|
---|
[1] | 1085 | {
|
---|
| 1086 | return (sh_files_pushdir (SH_LEVEL_USER0, str_s));
|
---|
| 1087 | }
|
---|
| 1088 |
|
---|
[22] | 1089 | int sh_files_pushdir_user1 (const char * str_s)
|
---|
[1] | 1090 | {
|
---|
| 1091 | return (sh_files_pushdir (SH_LEVEL_USER1, str_s));
|
---|
| 1092 | }
|
---|
| 1093 |
|
---|
[27] | 1094 | int sh_files_pushdir_user2 (const char * str_s)
|
---|
| 1095 | {
|
---|
| 1096 | return (sh_files_pushdir (SH_LEVEL_USER2, str_s));
|
---|
| 1097 | }
|
---|
| 1098 |
|
---|
| 1099 | int sh_files_pushdir_user3 (const char * str_s)
|
---|
| 1100 | {
|
---|
| 1101 | return (sh_files_pushdir (SH_LEVEL_USER3, str_s));
|
---|
| 1102 | }
|
---|
| 1103 |
|
---|
| 1104 | int sh_files_pushdir_user4 (const char * str_s)
|
---|
| 1105 | {
|
---|
| 1106 | return (sh_files_pushdir (SH_LEVEL_USER4, str_s));
|
---|
| 1107 | }
|
---|
| 1108 |
|
---|
[22] | 1109 | int sh_files_pushdir_attr (const char * str_s)
|
---|
[1] | 1110 | {
|
---|
| 1111 | return (sh_files_pushdir (SH_LEVEL_ATTRIBUTES, str_s));
|
---|
| 1112 | }
|
---|
| 1113 |
|
---|
[22] | 1114 | int sh_files_pushdir_ro (const char * str_s)
|
---|
[1] | 1115 | {
|
---|
| 1116 | return (sh_files_pushdir (SH_LEVEL_READONLY, str_s));
|
---|
| 1117 | }
|
---|
| 1118 |
|
---|
[22] | 1119 | int sh_files_pushdir_log (const char * str_s)
|
---|
[1] | 1120 | {
|
---|
| 1121 | return (sh_files_pushdir (SH_LEVEL_LOGFILES, str_s));
|
---|
| 1122 | }
|
---|
| 1123 |
|
---|
[22] | 1124 | int sh_files_pushdir_glog (const char * str_s)
|
---|
[1] | 1125 | {
|
---|
| 1126 | return (sh_files_pushdir (SH_LEVEL_LOGGROW, str_s));
|
---|
| 1127 | }
|
---|
| 1128 |
|
---|
[22] | 1129 | int sh_files_pushdir_noig (const char * str_s)
|
---|
[1] | 1130 | {
|
---|
| 1131 | return (sh_files_pushdir (SH_LEVEL_NOIGNORE, str_s));
|
---|
| 1132 | }
|
---|
| 1133 |
|
---|
[22] | 1134 | int sh_files_pushdir_allig (const char * str_s)
|
---|
[1] | 1135 | {
|
---|
| 1136 | return (sh_files_pushdir (SH_LEVEL_ALLIGNORE, str_s));
|
---|
| 1137 | }
|
---|
| 1138 |
|
---|
| 1139 | static int which_dirList = 1;
|
---|
| 1140 |
|
---|
| 1141 | int set_dirList (int which)
|
---|
| 1142 | {
|
---|
| 1143 | if (which == 2)
|
---|
| 1144 | which_dirList = 2;
|
---|
| 1145 | else
|
---|
| 1146 | which_dirList = 1;
|
---|
| 1147 | return 0;
|
---|
| 1148 | }
|
---|
| 1149 |
|
---|
[34] | 1150 | int sh_files_push_dir_int (int class, char * tail, size_t len, int rdepth)
|
---|
[1] | 1151 | {
|
---|
| 1152 | zAVLTree * tree;
|
---|
| 1153 | dirstack_t * new_item_ptr;
|
---|
| 1154 | char * dirName;
|
---|
| 1155 | int ret;
|
---|
| 1156 |
|
---|
| 1157 | SL_ENTER(_("sh_files_push_dir_int"));
|
---|
| 1158 |
|
---|
| 1159 | dirName = SH_ALLOC(len+1);
|
---|
| 1160 | sl_strlcpy(dirName, tail, len+1);
|
---|
| 1161 |
|
---|
| 1162 | new_item_ptr = (dirstack_t * ) SH_ALLOC (sizeof(dirstack_t));
|
---|
| 1163 |
|
---|
| 1164 | new_item_ptr->name = dirName;
|
---|
| 1165 | new_item_ptr->class = class;
|
---|
| 1166 | new_item_ptr->check_mask = sh_files_maskof(class);
|
---|
| 1167 | new_item_ptr->rdepth = rdepth;
|
---|
| 1168 | new_item_ptr->checked = S_FALSE;
|
---|
[114] | 1169 | new_item_ptr->is_reported = 0;
|
---|
[1] | 1170 | new_item_ptr->childs_checked = S_FALSE;
|
---|
| 1171 |
|
---|
| 1172 | if (which_dirList == 1)
|
---|
| 1173 | {
|
---|
| 1174 | tree = zdirListOne;
|
---|
| 1175 | }
|
---|
| 1176 | else
|
---|
| 1177 | {
|
---|
| 1178 | tree = zdirListTwo;
|
---|
| 1179 | }
|
---|
| 1180 |
|
---|
| 1181 | if (tree == NULL)
|
---|
| 1182 | {
|
---|
| 1183 | tree = zAVLAllocTree (zdirstack_key);
|
---|
| 1184 | if (tree == NULL)
|
---|
| 1185 | {
|
---|
[22] | 1186 | (void) safe_logger (0, 0, NULL);
|
---|
[1] | 1187 | aud__exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 1188 | }
|
---|
| 1189 | if (which_dirList == 1)
|
---|
| 1190 | zdirListOne = tree;
|
---|
| 1191 | else
|
---|
| 1192 | zdirListTwo = tree;
|
---|
| 1193 | }
|
---|
| 1194 |
|
---|
| 1195 | ret = zAVLInsert (tree, new_item_ptr);
|
---|
| 1196 |
|
---|
| 1197 | if (-1 == ret)
|
---|
| 1198 | {
|
---|
[22] | 1199 | (void) safe_logger (0, 0, NULL);
|
---|
[1] | 1200 | aud__exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 1201 | }
|
---|
| 1202 | if (3 == ret)
|
---|
| 1203 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_DOUBLE,
|
---|
| 1204 | dirName);
|
---|
| 1205 |
|
---|
| 1206 | SL_RETURN(0, _("sh_files_push_dir_int"));
|
---|
| 1207 | }
|
---|
| 1208 |
|
---|
[22] | 1209 | static int sh_files_pushdir (int class, const char * str_s)
|
---|
[1] | 1210 | {
|
---|
| 1211 | char * tmp;
|
---|
[34] | 1212 | size_t len;
|
---|
[1] | 1213 | int rdepth = 0;
|
---|
| 1214 | char * tail = NULL;
|
---|
[22] | 1215 | char * p;
|
---|
[1] | 1216 |
|
---|
| 1217 | #ifdef HAVE_GLOB_H
|
---|
| 1218 | glob_t pglob;
|
---|
| 1219 | int globstatus = -1;
|
---|
| 1220 | unsigned int gloop;
|
---|
| 1221 | #endif
|
---|
| 1222 |
|
---|
| 1223 | SL_ENTER(_("sh_files_pushdir"));
|
---|
| 1224 |
|
---|
| 1225 | if (sh.flag.opts == 1) {
|
---|
| 1226 | sh_files_delfilestack ();
|
---|
| 1227 | sh_files_deldirstack ();
|
---|
| 1228 | }
|
---|
| 1229 |
|
---|
| 1230 | if (str_s == NULL)
|
---|
| 1231 | SL_RETURN((-1), _("sh_files_pushdir"));
|
---|
| 1232 |
|
---|
[22] | 1233 | p = sh_util_strdup (str_s);
|
---|
[1] | 1234 |
|
---|
[22] | 1235 | if (p[0] != '/')
|
---|
[1] | 1236 | {
|
---|
[22] | 1237 | rdepth = strtol(p, &tail, 10);
|
---|
| 1238 | if (tail == p)
|
---|
| 1239 | {
|
---|
| 1240 | SH_FREE(p);
|
---|
| 1241 | SL_RETURN((-1), _("sh_files_pushdir"));
|
---|
| 1242 | }
|
---|
[1] | 1243 | }
|
---|
| 1244 | else
|
---|
[22] | 1245 | tail = p;
|
---|
[1] | 1246 |
|
---|
| 1247 |
|
---|
[22] | 1248 | if (rdepth < (-1) || tail == p || rdepth > 99)
|
---|
[1] | 1249 | rdepth = (-2);
|
---|
| 1250 |
|
---|
| 1251 | len = sl_strlen(tail);
|
---|
| 1252 |
|
---|
| 1253 | if (len >= PATH_MAX)
|
---|
| 1254 | {
|
---|
| 1255 | tmp = sh_util_safe_name (tail);
|
---|
| 1256 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_2LONG,
|
---|
| 1257 | tmp);
|
---|
| 1258 | SH_FREE(tmp);
|
---|
[22] | 1259 | SH_FREE(p);
|
---|
[1] | 1260 | SL_RETURN((-1), _("sh_files_pushdir"));
|
---|
| 1261 | }
|
---|
| 1262 | else if (len < 1)
|
---|
| 1263 | {
|
---|
[22] | 1264 | SH_FREE(p);
|
---|
[1] | 1265 | SL_RETURN((-1), _("sh_files_pushdir"));
|
---|
| 1266 | }
|
---|
| 1267 | else if (tail[0] != '/')
|
---|
| 1268 | {
|
---|
| 1269 | tmp = sh_util_safe_name (tail);
|
---|
| 1270 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_NOPATH,
|
---|
| 1271 | tmp);
|
---|
| 1272 | SH_FREE(tmp);
|
---|
[22] | 1273 | SH_FREE(p);
|
---|
[1] | 1274 | SL_RETURN((-1), _("sh_files_pushdir"));
|
---|
| 1275 | }
|
---|
| 1276 | else
|
---|
| 1277 | {
|
---|
| 1278 |
|
---|
| 1279 | if (tail[len-1] == '/' && len > 1)
|
---|
| 1280 | {
|
---|
| 1281 | tail[len-1] = '\0';
|
---|
| 1282 | --len;
|
---|
| 1283 | }
|
---|
| 1284 |
|
---|
| 1285 | }
|
---|
| 1286 |
|
---|
| 1287 | #ifdef HAVE_GLOB_H
|
---|
| 1288 | if (0 == sh_files_has_metachar(tail))
|
---|
| 1289 | {
|
---|
| 1290 | sh_files_push_dir_int (class, tail, len, rdepth);
|
---|
| 1291 | }
|
---|
| 1292 | else
|
---|
| 1293 | {
|
---|
| 1294 | pglob.gl_offs = 0;
|
---|
| 1295 | globstatus = glob (tail, 0, sh_files_globerr, &pglob);
|
---|
| 1296 |
|
---|
| 1297 | if (globstatus == 0 && pglob.gl_pathc > 0)
|
---|
| 1298 | {
|
---|
| 1299 | for (gloop = 0; gloop < (unsigned int) pglob.gl_pathc; ++gloop)
|
---|
| 1300 | sh_files_push_dir_int (class,
|
---|
| 1301 | pglob.gl_pathv[gloop],
|
---|
| 1302 | sl_strlen(pglob.gl_pathv[gloop]),
|
---|
| 1303 | rdepth);
|
---|
| 1304 | }
|
---|
| 1305 | else
|
---|
| 1306 | {
|
---|
| 1307 | tmp = sh_util_safe_name (tail);
|
---|
| 1308 |
|
---|
| 1309 | if (pglob.gl_pathc == 0
|
---|
| 1310 | #ifdef GLOB_NOMATCH
|
---|
| 1311 | || globstatus == GLOB_NOMATCH
|
---|
| 1312 | #endif
|
---|
| 1313 | )
|
---|
| 1314 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__,
|
---|
| 1315 | globstatus, MSG_FI_GLOB,
|
---|
| 1316 | _("No matches found"), tmp);
|
---|
| 1317 | #ifdef GLOB_NOSPACE
|
---|
| 1318 | else if (globstatus == GLOB_NOSPACE)
|
---|
| 1319 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__,
|
---|
| 1320 | globstatus, MSG_FI_GLOB,
|
---|
| 1321 | _("Out of memory"), tmp);
|
---|
| 1322 | #endif
|
---|
| 1323 | #ifdef GLOB_ABORTED
|
---|
| 1324 | else if (globstatus == GLOB_ABORTED)
|
---|
| 1325 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__,
|
---|
| 1326 | globstatus, MSG_FI_GLOB,
|
---|
| 1327 | _("Read error"), tmp);
|
---|
| 1328 | #endif
|
---|
| 1329 | else
|
---|
| 1330 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__,
|
---|
| 1331 | globstatus, MSG_FI_GLOB,
|
---|
| 1332 | _("Unknown error"), tmp);
|
---|
| 1333 | SH_FREE(tmp);
|
---|
| 1334 | }
|
---|
| 1335 |
|
---|
| 1336 | globfree(&pglob);
|
---|
| 1337 | }
|
---|
| 1338 | #else
|
---|
| 1339 | sh_files_push_dir_int (class, tail, len, rdepth);
|
---|
| 1340 | #endif
|
---|
| 1341 |
|
---|
[22] | 1342 | SH_FREE(p);
|
---|
[1] | 1343 | SL_RETURN((0), _("sh_files_pushdir"));
|
---|
[34] | 1344 | }
|
---|
[1] | 1345 |
|
---|
[131] | 1346 | /**
|
---|
[1] | 1347 | struct sh_dirent {
|
---|
| 1348 | char * sh_d_name;
|
---|
| 1349 | struct sh_dirent * next;
|
---|
| 1350 | };
|
---|
[131] | 1351 | **/
|
---|
[1] | 1352 |
|
---|
[131] | 1353 | void kill_sh_dirlist (struct sh_dirent * dirlist)
|
---|
[1] | 1354 | {
|
---|
| 1355 | struct sh_dirent * this;
|
---|
| 1356 |
|
---|
| 1357 | while (dirlist)
|
---|
| 1358 | {
|
---|
| 1359 | this = dirlist->next;
|
---|
| 1360 | SH_FREE(dirlist->sh_d_name);
|
---|
| 1361 | SH_FREE(dirlist);
|
---|
| 1362 | dirlist = this;
|
---|
| 1363 | }
|
---|
| 1364 | return;
|
---|
| 1365 | }
|
---|
| 1366 |
|
---|
| 1367 | /* -- add an entry to a directory listing
|
---|
| 1368 | */
|
---|
[131] | 1369 | struct sh_dirent * addto_sh_dirlist (struct dirent * thisEntry,
|
---|
| 1370 | struct sh_dirent * dirlist)
|
---|
[1] | 1371 | {
|
---|
| 1372 | struct sh_dirent * this;
|
---|
[34] | 1373 | size_t len;
|
---|
[1] | 1374 |
|
---|
| 1375 | if (thisEntry == NULL)
|
---|
| 1376 | return dirlist;
|
---|
| 1377 |
|
---|
[34] | 1378 | len = sl_strlen(thisEntry->d_name);
|
---|
| 1379 | if (len == 0)
|
---|
[1] | 1380 | return dirlist;
|
---|
[34] | 1381 | ++len;
|
---|
[1] | 1382 |
|
---|
| 1383 | this = SH_ALLOC(sizeof(struct sh_dirent));
|
---|
| 1384 | if (!this)
|
---|
| 1385 | return dirlist;
|
---|
| 1386 |
|
---|
[34] | 1387 | this->sh_d_name = SH_ALLOC(len);
|
---|
| 1388 | sl_strlcpy(this->sh_d_name, thisEntry->d_name, len);
|
---|
[1] | 1389 |
|
---|
| 1390 | this->next = dirlist;
|
---|
| 1391 | return this;
|
---|
| 1392 | }
|
---|
| 1393 |
|
---|
| 1394 | static int sh_check_hardlinks = S_TRUE;
|
---|
| 1395 |
|
---|
| 1396 | /* Simply sets our boolean as to whether this check is active
|
---|
| 1397 | */
|
---|
[22] | 1398 | int sh_files_check_hardlinks (const char * opt)
|
---|
[1] | 1399 | {
|
---|
| 1400 | int i;
|
---|
| 1401 | SL_ENTER(_("sh_files_check_hardlinks"));
|
---|
| 1402 | i = sh_util_flagval(opt, &sh_check_hardlinks);
|
---|
| 1403 | SL_RETURN(i, _("sh_files_check_hardlinks"));
|
---|
| 1404 | }
|
---|
| 1405 |
|
---|
| 1406 | struct sh_hle_struct {
|
---|
| 1407 | long offset;
|
---|
| 1408 | char * path;
|
---|
| 1409 | struct sh_hle_struct * next;
|
---|
| 1410 | };
|
---|
| 1411 |
|
---|
| 1412 | static struct sh_hle_struct * sh_hl_exc = NULL;
|
---|
| 1413 |
|
---|
[22] | 1414 | int sh_files_hle_reg (const char * str)
|
---|
[1] | 1415 | {
|
---|
| 1416 | long offset;
|
---|
| 1417 | size_t len;
|
---|
| 1418 | char * path;
|
---|
| 1419 |
|
---|
| 1420 | struct sh_hle_struct * tmp = sh_hl_exc;
|
---|
| 1421 |
|
---|
| 1422 | SL_ENTER(_("sh_files_hle_reg"));
|
---|
| 1423 |
|
---|
| 1424 | /* Free the linked list if called with NULL argument
|
---|
| 1425 | */
|
---|
| 1426 | if (str == NULL)
|
---|
| 1427 | {
|
---|
| 1428 | while (tmp)
|
---|
| 1429 | {
|
---|
| 1430 | sh_hl_exc = tmp->next;
|
---|
| 1431 | SH_FREE(tmp->path);
|
---|
| 1432 | SH_FREE(tmp);
|
---|
| 1433 | tmp = sh_hl_exc;
|
---|
| 1434 | }
|
---|
| 1435 | sh_hl_exc = NULL;
|
---|
| 1436 | SL_RETURN(0, _("sh_files_hle_reg"));
|
---|
| 1437 | }
|
---|
| 1438 |
|
---|
| 1439 | /* We expect 'offset:/path'
|
---|
| 1440 | */
|
---|
| 1441 | offset = strtol(str, &path, 0);
|
---|
| 1442 | if ((path == NULL) || (*path == '\0') || (*path != ':') || (path[1] != '/'))
|
---|
| 1443 | {
|
---|
| 1444 | SL_RETURN(-1, _("sh_files_hle_reg"));
|
---|
| 1445 | }
|
---|
| 1446 | ++path;
|
---|
| 1447 | len = 1 + sl_strlen(path);
|
---|
| 1448 |
|
---|
| 1449 | tmp = SH_ALLOC(sizeof(struct sh_hle_struct));
|
---|
| 1450 | tmp->path = SH_ALLOC(len);
|
---|
| 1451 | sl_strlcpy (tmp->path, path, len);
|
---|
| 1452 | tmp->offset = offset;
|
---|
| 1453 | tmp->next = sh_hl_exc;
|
---|
| 1454 | sh_hl_exc = tmp;
|
---|
| 1455 |
|
---|
| 1456 | SL_RETURN(0, _("sh_files_hle_reg"));
|
---|
| 1457 | }
|
---|
| 1458 |
|
---|
| 1459 | #if !defined(HOST_IS_DARWIN)
|
---|
| 1460 | static int sh_files_hle_test (int offset, char * path)
|
---|
| 1461 | {
|
---|
| 1462 | struct sh_hle_struct * tmp = sh_hl_exc;
|
---|
| 1463 |
|
---|
| 1464 | SL_ENTER(_("sh_files_hle_reg"));
|
---|
| 1465 |
|
---|
| 1466 | while(tmp)
|
---|
| 1467 | {
|
---|
| 1468 | if ((offset == tmp->offset) && (0 == strcmp(path, tmp->path)))
|
---|
| 1469 | {
|
---|
| 1470 | SL_RETURN(0, _("sh_files_hle_test"));
|
---|
| 1471 | }
|
---|
| 1472 | tmp = tmp->next;
|
---|
| 1473 | }
|
---|
| 1474 | SL_RETURN(-1, _("sh_files_hle_test"));
|
---|
| 1475 | }
|
---|
| 1476 | #endif
|
---|
| 1477 |
|
---|
| 1478 | /* -- check a single directory and its content
|
---|
| 1479 | */
|
---|
| 1480 | static int sh_files_checkdir (int iclass, int idepth, char * iname,
|
---|
| 1481 | char * relativeName)
|
---|
| 1482 | {
|
---|
[170] | 1483 | struct sh_dirent * dirlist;
|
---|
| 1484 | struct sh_dirent * dirlist_orig;
|
---|
[1] | 1485 |
|
---|
| 1486 | DIR * thisDir = NULL;
|
---|
| 1487 | struct dirent * thisEntry;
|
---|
| 1488 | int status;
|
---|
| 1489 | int dummy = S_FALSE;
|
---|
[227] | 1490 | dir_type * theDir;
|
---|
[1] | 1491 | ShFileType checkit;
|
---|
[131] | 1492 | static unsigned int state = 1;
|
---|
[1] | 1493 |
|
---|
[227] | 1494 | file_type * theFile;
|
---|
[1] | 1495 | char * tmpname;
|
---|
| 1496 | char * tmpcat;
|
---|
[132] | 1497 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 1498 |
|
---|
| 1499 | int rdepth = 0;
|
---|
| 1500 | int class = 0;
|
---|
| 1501 | int rdepth_next;
|
---|
| 1502 | int class_next;
|
---|
| 1503 | int file_class_next;
|
---|
| 1504 |
|
---|
| 1505 | int checked_flag = S_FALSE;
|
---|
| 1506 | int cchecked_flag = S_FALSE;
|
---|
| 1507 |
|
---|
| 1508 | dirstack_t * dst_ptr;
|
---|
[19] | 1509 | dirstack_t * tmp_ptr;
|
---|
[1] | 1510 |
|
---|
| 1511 | int hardlink_num = 0;
|
---|
[34] | 1512 | #if !defined(HOST_IS_DARWIN)
|
---|
| 1513 | size_t len;
|
---|
| 1514 | #endif
|
---|
[1] | 1515 |
|
---|
| 1516 | SL_ENTER(_("sh_files_checkdir"));
|
---|
| 1517 |
|
---|
| 1518 | if (sig_urgent > 0) {
|
---|
| 1519 | SL_RETURN((0), _("sh_files_checkdir"));
|
---|
| 1520 | }
|
---|
| 1521 |
|
---|
| 1522 | if (iname == NULL || idepth < (-1))
|
---|
| 1523 | SL_RETURN((-1), _("sh_files_checkdir"));
|
---|
| 1524 |
|
---|
| 1525 | if (idepth < 0)
|
---|
| 1526 | {
|
---|
| 1527 | /* hash_remove_tree (iname); */
|
---|
| 1528 | SL_RETURN((0), _("sh_files_checkdir"));
|
---|
| 1529 | }
|
---|
| 1530 |
|
---|
| 1531 | rdepth = idepth;
|
---|
| 1532 | class = iclass;
|
---|
| 1533 |
|
---|
| 1534 | tmpname = sh_util_safe_name (iname);
|
---|
| 1535 |
|
---|
| 1536 | /* ---- check for obscure name ----
|
---|
| 1537 | */
|
---|
| 1538 | if (iclass != SH_LEVEL_ALLIGNORE)
|
---|
| 1539 | {
|
---|
| 1540 | sh_util_obscurename (ShDFLevel[SH_ERR_T_NAME], iname, S_TRUE);
|
---|
| 1541 | }
|
---|
| 1542 |
|
---|
[8] | 1543 | if (flag_err_info == SL_TRUE)
|
---|
| 1544 | {
|
---|
| 1545 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_CHK, tmpname);
|
---|
| 1546 | }
|
---|
| 1547 |
|
---|
[1] | 1548 | /* ---- check input ----
|
---|
| 1549 | */
|
---|
| 1550 | if ( sl_strlen(iname) >= PATH_MAX)
|
---|
| 1551 | {
|
---|
| 1552 | sh_error_handle (ShDFLevel[SH_ERR_T_DIR], FIL__, __LINE__, 0,
|
---|
| 1553 | MSG_FI_2LONG,
|
---|
| 1554 | tmpname);
|
---|
| 1555 | SH_FREE(tmpname);
|
---|
| 1556 | SL_RETURN((-1), _("sh_files_checkdir"));
|
---|
| 1557 | }
|
---|
| 1558 |
|
---|
| 1559 | /* ---- check for absolute path ---- */
|
---|
| 1560 | if ( iname[0] != '/')
|
---|
| 1561 | {
|
---|
| 1562 | sh_error_handle (ShDFLevel[SH_ERR_T_DIR], FIL__, __LINE__, 0,
|
---|
| 1563 | MSG_FI_NOPATH,
|
---|
| 1564 | tmpname);
|
---|
| 1565 | SH_FREE(tmpname);
|
---|
| 1566 | SL_RETURN((-1), _("sh_files_checkdir"));
|
---|
| 1567 | }
|
---|
| 1568 |
|
---|
| 1569 |
|
---|
| 1570 | /* ---- stat the directory ----
|
---|
| 1571 | */
|
---|
[227] | 1572 | theFile = SH_ALLOC(sizeof(file_type));
|
---|
| 1573 | sl_strlcpy (theFile->fullpath, iname, PATH_MAX);
|
---|
| 1574 | theFile->attr_string = NULL;
|
---|
| 1575 | theFile->link_path = NULL;
|
---|
[1] | 1576 |
|
---|
| 1577 | (void) relativeName;
|
---|
| 1578 | status = sh_unix_getinfo (ShDFLevel[SH_ERR_T_DIR],
|
---|
| 1579 | iname,
|
---|
[227] | 1580 | theFile, NULL, iclass);
|
---|
[1] | 1581 |
|
---|
| 1582 | if ((sig_termfast == 1) || (sig_terminate == 1))
|
---|
| 1583 | {
|
---|
[227] | 1584 | if (theFile->attr_string) SH_FREE(theFile->attr_string);
|
---|
| 1585 | if (theFile->link_path) SH_FREE(theFile->link_path);
|
---|
| 1586 | SH_FREE(theFile);
|
---|
[1] | 1587 | SL_RETURN((0), _("sh_files_checkdir"));
|
---|
| 1588 | }
|
---|
| 1589 |
|
---|
| 1590 | if (status == -1)
|
---|
| 1591 | {
|
---|
| 1592 | SH_FREE(tmpname);
|
---|
[227] | 1593 | if (theFile->attr_string) SH_FREE(theFile->attr_string);
|
---|
| 1594 | if (theFile->link_path) SH_FREE(theFile->link_path);
|
---|
| 1595 | SH_FREE(theFile);
|
---|
| 1596 | SL_RETURN((-1), _("sh_files_checkdir"));
|
---|
[1] | 1597 | }
|
---|
| 1598 |
|
---|
[227] | 1599 | if (theFile->c_mode[0] != 'd')
|
---|
[1] | 1600 | {
|
---|
| 1601 | sh_error_handle (ShDFLevel[SH_ERR_T_DIR], FIL__, __LINE__, 0,
|
---|
| 1602 | MSG_FI_NODIR,
|
---|
| 1603 | tmpname);
|
---|
| 1604 | SH_FREE(tmpname);
|
---|
[227] | 1605 | if (theFile->attr_string) SH_FREE(theFile->attr_string);
|
---|
| 1606 | if (theFile->link_path) SH_FREE(theFile->link_path);
|
---|
| 1607 | SH_FREE(theFile);
|
---|
[1] | 1608 | SL_RETURN((-1), _("sh_files_checkdir"));
|
---|
| 1609 | }
|
---|
| 1610 |
|
---|
[227] | 1611 | hardlink_num = theFile->hardlinks;
|
---|
[1] | 1612 |
|
---|
[227] | 1613 | if (theFile->attr_string) SH_FREE(theFile->attr_string);
|
---|
| 1614 | if (theFile->link_path) SH_FREE(theFile->link_path);
|
---|
| 1615 | SH_FREE(theFile);
|
---|
[1] | 1616 |
|
---|
| 1617 | /* ---- open directory for reading ----
|
---|
| 1618 | *
|
---|
| 1619 | * opendir() will fail with ENOTDIR if the path has been changed
|
---|
| 1620 | * to a non-directory in between lstat() and opendir().
|
---|
| 1621 | */
|
---|
| 1622 | thisDir = opendir (iname);
|
---|
| 1623 |
|
---|
| 1624 | if (thisDir == NULL)
|
---|
| 1625 | {
|
---|
| 1626 | status = errno;
|
---|
| 1627 | sh_error_handle (ShDFLevel[SH_ERR_T_DIR], FIL__, __LINE__, 0,
|
---|
| 1628 | MSG_E_OPENDIR,
|
---|
[132] | 1629 | sh_error_message (status, errbuf, sizeof(errbuf)), tmpname);
|
---|
[1] | 1630 | SH_FREE(tmpname);
|
---|
| 1631 | SL_RETURN((-1), _("sh_files_checkdir"));
|
---|
| 1632 | }
|
---|
| 1633 |
|
---|
[227] | 1634 | theDir = SH_ALLOC(sizeof(dir_type));
|
---|
[1] | 1635 |
|
---|
[227] | 1636 | theDir->NumRegular = 0;
|
---|
| 1637 | theDir->NumDirs = 0;
|
---|
| 1638 | theDir->NumSymlinks = 0;
|
---|
| 1639 | theDir->NumFifos = 0;
|
---|
| 1640 | theDir->NumSockets = 0;
|
---|
| 1641 | theDir->NumCDev = 0;
|
---|
| 1642 | theDir->NumBDev = 0;
|
---|
| 1643 | theDir->NumDoor = 0;
|
---|
| 1644 | theDir->NumPort = 0;
|
---|
| 1645 | theDir->NumAll = 0;
|
---|
| 1646 | theDir->TotalBytes = 0;
|
---|
| 1647 | sl_strlcpy (theDir->DirPath, iname, PATH_MAX);
|
---|
[1] | 1648 |
|
---|
[227] | 1649 |
|
---|
[1] | 1650 | /* ---- read ----
|
---|
| 1651 | */
|
---|
[137] | 1652 | SH_MUTEX_LOCK(mutex_readdir);
|
---|
[131] | 1653 |
|
---|
[170] | 1654 | dirlist = NULL;
|
---|
| 1655 | dirlist_orig = NULL;
|
---|
| 1656 |
|
---|
[1] | 1657 | do {
|
---|
| 1658 | thisEntry = readdir (thisDir);
|
---|
| 1659 | if (thisEntry != NULL)
|
---|
| 1660 | {
|
---|
[227] | 1661 | ++theDir->NumAll;
|
---|
[1] | 1662 | if (sl_strcmp (thisEntry->d_name, ".") == 0)
|
---|
| 1663 | {
|
---|
[227] | 1664 | ++theDir->NumDirs;
|
---|
[1] | 1665 | continue;
|
---|
| 1666 | }
|
---|
| 1667 | if (sl_strcmp (thisEntry->d_name, "..") == 0)
|
---|
| 1668 | {
|
---|
[227] | 1669 | ++theDir->NumDirs;
|
---|
[1] | 1670 | continue;
|
---|
| 1671 | }
|
---|
| 1672 | dirlist = addto_sh_dirlist (thisEntry, dirlist);
|
---|
| 1673 | }
|
---|
| 1674 | } while (thisEntry != NULL);
|
---|
| 1675 |
|
---|
[137] | 1676 | SH_MUTEX_UNLOCK(mutex_readdir);
|
---|
[131] | 1677 |
|
---|
[1] | 1678 | closedir (thisDir);
|
---|
| 1679 |
|
---|
| 1680 | ++sh.statistics.dirs_checked;
|
---|
| 1681 |
|
---|
| 1682 | dirlist_orig = dirlist;
|
---|
| 1683 |
|
---|
| 1684 | do {
|
---|
| 1685 |
|
---|
| 1686 | /* If the directory is empty, dirlist = NULL
|
---|
| 1687 | */
|
---|
| 1688 | if (!dirlist)
|
---|
| 1689 | break;
|
---|
| 1690 |
|
---|
| 1691 | if (sig_termfast == 1)
|
---|
| 1692 | {
|
---|
[227] | 1693 | SH_FREE(theDir);
|
---|
[1] | 1694 | SL_RETURN((0), _("sh_files_checkdir"));
|
---|
| 1695 | }
|
---|
| 1696 |
|
---|
| 1697 | BREAKEXIT(sh_derr);
|
---|
[131] | 1698 |
|
---|
| 1699 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_RAND_R)
|
---|
| 1700 | if (0 == (rand_r(&state) % 5)) (void) sh_derr();
|
---|
| 1701 | #else
|
---|
| 1702 | if (0 == state * (rand() % 5)) (void) sh_derr();
|
---|
| 1703 | #endif
|
---|
[1] | 1704 |
|
---|
| 1705 | /* ---- Check the file. ----
|
---|
| 1706 | */
|
---|
| 1707 | tmpcat = SH_ALLOC(PATH_MAX);
|
---|
| 1708 | sl_strlcpy(tmpcat, iname, PATH_MAX);
|
---|
| 1709 | if (sl_strlen(tmpcat) > 1 || tmpcat[0] != '/')
|
---|
| 1710 | sl_strlcat(tmpcat, "/", PATH_MAX);
|
---|
| 1711 | sl_strlcat(tmpcat, dirlist->sh_d_name, PATH_MAX);
|
---|
| 1712 |
|
---|
| 1713 | rdepth_next = rdepth - 1;
|
---|
| 1714 | class_next = class;
|
---|
| 1715 | file_class_next = class;
|
---|
| 1716 | checked_flag = -1;
|
---|
| 1717 | cchecked_flag = -1;
|
---|
| 1718 |
|
---|
| 1719 | /* Wed Aug 24 2005 compare against dirListOne, dirListTwo
|
---|
| 1720 | * this fixes the problem that the directory special file
|
---|
| 1721 | * is checked with the policy of the parent directory
|
---|
| 1722 | */
|
---|
| 1723 | dst_ptr = (dirstack_t *) zAVLSearch(zdirListOne, tmpcat);
|
---|
| 1724 |
|
---|
| 1725 | if (dst_ptr)
|
---|
| 1726 | {
|
---|
| 1727 | /* Tue Aug 6 22:13:27 CEST 2002 introduce file_class_next
|
---|
| 1728 | * this fixes the problem that a policy for the directory
|
---|
| 1729 | * inode erroneously becomes a policy for the directory itself.
|
---|
| 1730 | */
|
---|
| 1731 | file_class_next = dst_ptr->class;
|
---|
| 1732 | checked_flag = dst_ptr->checked;
|
---|
| 1733 | cchecked_flag = dst_ptr->childs_checked;
|
---|
| 1734 | }
|
---|
| 1735 |
|
---|
| 1736 | if (checked_flag == -1)
|
---|
| 1737 | {
|
---|
| 1738 | dst_ptr = (dirstack_t *) zAVLSearch(zdirListTwo, tmpcat);
|
---|
| 1739 |
|
---|
| 1740 | if (dst_ptr)
|
---|
| 1741 | {
|
---|
| 1742 | /* Tue Aug 6 22:13:27 CEST 2002 introduce file_class_next
|
---|
| 1743 | * this fixes the problem that a policy for the directory
|
---|
| 1744 | * inode erroneously becomes a policy for the directory itself.
|
---|
| 1745 | */
|
---|
| 1746 | file_class_next = dst_ptr->class;
|
---|
| 1747 | checked_flag = dst_ptr->checked;
|
---|
| 1748 | cchecked_flag = dst_ptr->childs_checked;
|
---|
| 1749 | }
|
---|
| 1750 | }
|
---|
| 1751 |
|
---|
| 1752 | dst_ptr = (dirstack_t *) zAVLSearch(zfileList, tmpcat);
|
---|
| 1753 |
|
---|
| 1754 | if (dst_ptr)
|
---|
| 1755 | {
|
---|
| 1756 | /* Tue Aug 6 22:13:27 CEST 2002 introduce file_class_next
|
---|
| 1757 | * this fixes the problem that a policy for the directory
|
---|
| 1758 | * inode erroneously becomes a policy for the directory itself.
|
---|
| 1759 | */
|
---|
| 1760 | file_class_next = dst_ptr->class;
|
---|
| 1761 | checked_flag = dst_ptr->checked;
|
---|
[19] | 1762 | /* not set, hence always FALSE */
|
---|
| 1763 | /* cchecked_flag = dst_ptr->childs_checked; */
|
---|
[1] | 1764 | }
|
---|
| 1765 |
|
---|
| 1766 | /* ---- Has been checked already. ----
|
---|
| 1767 | */
|
---|
| 1768 | if (checked_flag == S_TRUE && cchecked_flag == S_TRUE)
|
---|
| 1769 | {
|
---|
| 1770 | /* Mar 11 2004 get ftype for complete directory count
|
---|
| 1771 | */
|
---|
| 1772 | checkit = sh_unix_get_ftype(tmpcat);
|
---|
| 1773 | if (checkit == SH_FILE_DIRECTORY)
|
---|
| 1774 | {
|
---|
[227] | 1775 | ++theDir->NumDirs;
|
---|
[1] | 1776 | }
|
---|
| 1777 | SH_FREE(tmpcat);
|
---|
| 1778 | dirlist = dirlist->next;
|
---|
| 1779 | continue;
|
---|
| 1780 | }
|
---|
| 1781 |
|
---|
| 1782 | /* --- May be true, false, or not found. ---
|
---|
| 1783 | */
|
---|
| 1784 | if (checked_flag == S_TRUE)
|
---|
| 1785 | {
|
---|
| 1786 | /* -- need only the file type --
|
---|
| 1787 | */
|
---|
| 1788 | checkit = sh_unix_get_ftype(tmpcat);
|
---|
| 1789 | }
|
---|
| 1790 | else
|
---|
| 1791 | {
|
---|
| 1792 | /* -- need to check the file itself --
|
---|
| 1793 | */
|
---|
| 1794 | if (dst_ptr && sh.flag.reportonce == S_TRUE)
|
---|
[114] | 1795 | dummy = dst_ptr->is_reported;
|
---|
[1] | 1796 |
|
---|
| 1797 | checkit = sh_files_filecheck (file_class_next,
|
---|
| 1798 | iname,
|
---|
| 1799 | dirlist->sh_d_name,
|
---|
| 1800 | &dummy, 0);
|
---|
| 1801 |
|
---|
| 1802 | if (dst_ptr && checked_flag == S_FALSE)
|
---|
| 1803 | dst_ptr->checked = S_TRUE;
|
---|
| 1804 | /* Thu Mar 7 15:09:40 CET 2002 Propagate the 'reported' flag
|
---|
| 1805 | */
|
---|
| 1806 | if (dst_ptr && sh.flag.reportonce == S_TRUE)
|
---|
[114] | 1807 | dst_ptr->is_reported = dummy;
|
---|
[1] | 1808 | }
|
---|
| 1809 |
|
---|
| 1810 | if (checkit == SH_FILE_REGULAR)
|
---|
[227] | 1811 | ++theDir->NumRegular;
|
---|
[1] | 1812 |
|
---|
| 1813 | else if (checkit == SH_FILE_DIRECTORY)
|
---|
| 1814 | {
|
---|
[227] | 1815 | ++theDir->NumDirs;
|
---|
[1] | 1816 | if (rdepth_next >= 0 && cchecked_flag != S_TRUE)
|
---|
| 1817 | {
|
---|
| 1818 | rdepth_next = rdepth - 1;
|
---|
| 1819 |
|
---|
| 1820 | /* check whether the new directory is in the
|
---|
| 1821 | * list with a recursion depth already defined
|
---|
| 1822 | */
|
---|
| 1823 | checked_flag = -1;
|
---|
| 1824 | cchecked_flag = -1;
|
---|
| 1825 |
|
---|
[19] | 1826 | tmp_ptr = (dirstack_t *) zAVLSearch(zdirListOne, tmpcat);
|
---|
[1] | 1827 |
|
---|
[19] | 1828 | if (tmp_ptr)
|
---|
[1] | 1829 | {
|
---|
| 1830 | TPT((0, FIL__, __LINE__,
|
---|
| 1831 | _("msg=<%s -> recursion depth %d\n>"),
|
---|
[19] | 1832 | tmp_ptr->name, tmp_ptr->rdepth));
|
---|
| 1833 | rdepth_next = tmp_ptr->rdepth;
|
---|
| 1834 | class_next = tmp_ptr->class;
|
---|
[1] | 1835 | /* 28. Aug 2001 reversed
|
---|
| 1836 | */
|
---|
[19] | 1837 | cchecked_flag = tmp_ptr->childs_checked;
|
---|
| 1838 | checked_flag = tmp_ptr->checked;
|
---|
[1] | 1839 | }
|
---|
| 1840 |
|
---|
| 1841 | if (checked_flag == -1)
|
---|
| 1842 | {
|
---|
[19] | 1843 | tmp_ptr = (dirstack_t *) zAVLSearch(zdirListTwo, tmpcat);
|
---|
[1] | 1844 |
|
---|
[19] | 1845 | if (tmp_ptr)
|
---|
[1] | 1846 | {
|
---|
| 1847 | TPT((0, FIL__, __LINE__,
|
---|
| 1848 | _("msg=<%s -> recursion depth %d\n>"),
|
---|
[19] | 1849 | tmp_ptr->name, tmp_ptr->rdepth));
|
---|
| 1850 | rdepth_next = tmp_ptr->rdepth;
|
---|
| 1851 | class_next = tmp_ptr->class;
|
---|
[1] | 1852 | /* 28. Aug 2001 reversed
|
---|
| 1853 | */
|
---|
[19] | 1854 | cchecked_flag = tmp_ptr->childs_checked;
|
---|
| 1855 | checked_flag = tmp_ptr->checked;
|
---|
[1] | 1856 | }
|
---|
| 1857 | }
|
---|
| 1858 |
|
---|
| 1859 | if (cchecked_flag == S_FALSE)
|
---|
| 1860 | {
|
---|
| 1861 | sh_files_checkdir (class_next, rdepth_next, tmpcat,
|
---|
| 1862 | dirlist->sh_d_name);
|
---|
[19] | 1863 | tmp_ptr->childs_checked = S_TRUE;
|
---|
| 1864 | /*
|
---|
| 1865 | * 04. Feb 2006 avoid double checking
|
---|
| 1866 | */
|
---|
| 1867 | tmp_ptr->checked = S_TRUE;
|
---|
[1] | 1868 | }
|
---|
| 1869 | else if (checked_flag == -1)
|
---|
| 1870 | sh_files_checkdir (class_next, rdepth_next, tmpcat,
|
---|
| 1871 | dirlist->sh_d_name);
|
---|
| 1872 |
|
---|
| 1873 | }
|
---|
| 1874 | }
|
---|
| 1875 |
|
---|
[227] | 1876 | else if (checkit == SH_FILE_SYMLINK) ++theDir->NumSymlinks;
|
---|
| 1877 | else if (checkit == SH_FILE_FIFO) ++theDir->NumFifos;
|
---|
| 1878 | else if (checkit == SH_FILE_SOCKET) ++theDir->NumSockets;
|
---|
| 1879 | else if (checkit == SH_FILE_CDEV) ++theDir->NumCDev;
|
---|
| 1880 | else if (checkit == SH_FILE_BDEV) ++theDir->NumBDev;
|
---|
| 1881 | else if (checkit == SH_FILE_DOOR) ++theDir->NumDoor;
|
---|
| 1882 | else if (checkit == SH_FILE_PORT) ++theDir->NumPort;
|
---|
[1] | 1883 |
|
---|
| 1884 | SH_FREE(tmpcat);
|
---|
| 1885 |
|
---|
| 1886 | if ((sig_termfast == 1) || (sig_terminate == 1))
|
---|
| 1887 | {
|
---|
[227] | 1888 | SH_FREE(theDir);
|
---|
[1] | 1889 | SL_RETURN((0), _("sh_files_checkdir"));
|
---|
| 1890 | }
|
---|
| 1891 |
|
---|
| 1892 | dirlist = dirlist->next;
|
---|
[19] | 1893 |
|
---|
| 1894 | if (dst_ptr)
|
---|
| 1895 | dst_ptr->childs_checked = S_TRUE;
|
---|
[1] | 1896 |
|
---|
| 1897 | } while (dirlist != NULL);
|
---|
| 1898 |
|
---|
| 1899 | if (flag_err_info == SL_TRUE)
|
---|
| 1900 | {
|
---|
| 1901 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_DSUM,
|
---|
[227] | 1902 | theDir->NumDirs,
|
---|
| 1903 | theDir->NumRegular,
|
---|
| 1904 | theDir->NumSymlinks,
|
---|
| 1905 | theDir->NumFifos,
|
---|
| 1906 | theDir->NumSockets,
|
---|
| 1907 | theDir->NumCDev,
|
---|
| 1908 | theDir->NumBDev);
|
---|
[1] | 1909 | }
|
---|
| 1910 |
|
---|
| 1911 | kill_sh_dirlist (dirlist_orig);
|
---|
| 1912 |
|
---|
| 1913 | #if !defined(HOST_IS_DARWIN)
|
---|
| 1914 | /*
|
---|
| 1915 | * Hardlink check; not done on MacOS X because of resource forks
|
---|
| 1916 | */
|
---|
[227] | 1917 | if ((sh_check_hardlinks == S_TRUE) && (hardlink_num != theDir->NumDirs))
|
---|
[1] | 1918 | {
|
---|
[227] | 1919 | if (0 != sh_files_hle_test(hardlink_num-theDir->NumDirs, iname))
|
---|
[1] | 1920 | {
|
---|
[34] | 1921 | len = strlen(tmpname);
|
---|
| 1922 | if (sl_ok_adds(len, 256))
|
---|
| 1923 | len += 256;
|
---|
| 1924 | tmpcat = SH_ALLOC(len);
|
---|
| 1925 | sl_snprintf(tmpcat, len,
|
---|
[1] | 1926 | _("%s: subdirectory count (%d) != hardlinks (%d)"),
|
---|
[227] | 1927 | tmpname, theDir->NumDirs, hardlink_num);
|
---|
[1] | 1928 | sh_error_handle (ShDFLevel[SH_ERR_T_DIR], FIL__, __LINE__, 0,
|
---|
| 1929 | MSG_E_SUBGEN, tmpcat, _("sh_files_checkdir"));
|
---|
| 1930 | SH_FREE(tmpcat);
|
---|
| 1931 | }
|
---|
| 1932 | }
|
---|
| 1933 | #endif
|
---|
| 1934 |
|
---|
| 1935 | SH_FREE(tmpname);
|
---|
[227] | 1936 | SH_FREE(theDir);
|
---|
[1] | 1937 |
|
---|
| 1938 | SL_RETURN((0), _("sh_files_checkdir"));
|
---|
| 1939 | }
|
---|
| 1940 |
|
---|
| 1941 | int get_the_fd (SL_TICKET ticket);
|
---|
| 1942 |
|
---|
[254] | 1943 | static int sh_use_rsrc = S_FALSE;
|
---|
[1] | 1944 |
|
---|
[254] | 1945 | int sh_files_use_rsrc(const char * str)
|
---|
| 1946 | {
|
---|
| 1947 | return sh_util_flagval(str, &sh_use_rsrc);
|
---|
| 1948 | }
|
---|
| 1949 |
|
---|
[1] | 1950 | static ShFileType sh_files_filecheck (int class, char * dirName,
|
---|
[34] | 1951 | char * infileName,
|
---|
[1] | 1952 | int * reported,
|
---|
| 1953 | int rsrcflag)
|
---|
| 1954 | {
|
---|
| 1955 | /* 28 Aug 2001 allow NULL fileName
|
---|
| 1956 | */
|
---|
[227] | 1957 | char * fullpath;
|
---|
[19] | 1958 | char fileHash[2*(KEY_LEN + 1)];
|
---|
[1] | 1959 | int status;
|
---|
[227] | 1960 | file_type * theFile;
|
---|
[1] | 1961 | char * tmpdir;
|
---|
| 1962 | char * tmpname;
|
---|
[34] | 1963 | char * fileName;
|
---|
[1] | 1964 | struct utimbuf utime_buf;
|
---|
[131] | 1965 | static unsigned int state = 1;
|
---|
[227] | 1966 | char sc;
|
---|
[1] | 1967 |
|
---|
| 1968 | SL_ENTER(_("sh_files_filecheck"));
|
---|
| 1969 |
|
---|
[227] | 1970 | fullpath = SH_ALLOC(PATH_MAX);
|
---|
| 1971 | theFile = SH_ALLOC(sizeof(file_type));
|
---|
| 1972 |
|
---|
[1] | 1973 | BREAKEXIT(sh_derr);
|
---|
| 1974 |
|
---|
[131] | 1975 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_RAND_R)
|
---|
| 1976 | if (0 == (rand_r(&state) % 2)) (void) sh_derr();
|
---|
| 1977 | #else
|
---|
| 1978 | if (0 == state * (rand() % 2)) (void) sh_derr();
|
---|
| 1979 | #endif
|
---|
| 1980 |
|
---|
[34] | 1981 | if (dirName && infileName && (dirName[0] == '/') && (dirName[1] == '\0')
|
---|
| 1982 | && (infileName[0] == '/') && (infileName[1] == '\0'))
|
---|
| 1983 | {
|
---|
| 1984 | fileName = NULL;
|
---|
| 1985 | }
|
---|
| 1986 | else
|
---|
| 1987 | {
|
---|
| 1988 | fileName = infileName;
|
---|
| 1989 | }
|
---|
| 1990 |
|
---|
[1] | 1991 | /* fileName may be NULL if this is a directory
|
---|
| 1992 | */
|
---|
| 1993 | if (dirName == NULL /* || fileName == NULL */)
|
---|
| 1994 | {
|
---|
| 1995 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_NULL);
|
---|
[227] | 1996 | SH_FREE(fullpath);
|
---|
| 1997 | SH_FREE(theFile);
|
---|
[1] | 1998 | SL_RETURN(SH_FILE_UNKNOWN, _("sh_files_filecheck"));
|
---|
| 1999 | }
|
---|
| 2000 |
|
---|
| 2001 | if ((fileName != NULL) && (class != SH_LEVEL_ALLIGNORE) &&
|
---|
| 2002 | (0 != sh_util_obscurename (ShDFLevel[SH_ERR_T_NAME],
|
---|
| 2003 | fileName, S_FALSE)))
|
---|
| 2004 | {
|
---|
| 2005 | if ((dirName != NULL) && (dirName[0] == '/') && (dirName[1] == '\0'))
|
---|
| 2006 | {
|
---|
| 2007 | tmpname = sh_util_safe_name (fileName);
|
---|
| 2008 | sh_error_handle (ShDFLevel[SH_ERR_T_NAME], FIL__, __LINE__, 0,
|
---|
| 2009 | MSG_FI_OBSC2,
|
---|
| 2010 | "", tmpname);
|
---|
| 2011 | SH_FREE(tmpname);
|
---|
| 2012 | }
|
---|
| 2013 | else
|
---|
| 2014 | {
|
---|
| 2015 | tmpdir = sh_util_safe_name (dirName);
|
---|
| 2016 | tmpname = sh_util_safe_name (fileName);
|
---|
| 2017 | sh_error_handle (ShDFLevel[SH_ERR_T_NAME], FIL__, __LINE__, 0,
|
---|
| 2018 | MSG_FI_OBSC2,
|
---|
| 2019 | tmpdir, tmpname);
|
---|
| 2020 | SH_FREE(tmpname);
|
---|
| 2021 | SH_FREE(tmpdir);
|
---|
| 2022 | }
|
---|
| 2023 | }
|
---|
| 2024 |
|
---|
| 2025 | /* sh_files_fullpath accepts NULL fileName
|
---|
| 2026 | */
|
---|
| 2027 | if (0 != sh_files_fullpath (dirName, fileName, fullpath))
|
---|
| 2028 | {
|
---|
| 2029 | tmpdir = sh_util_safe_name (dirName);
|
---|
| 2030 | tmpname = sh_util_safe_name (fileName);
|
---|
| 2031 | sh_error_handle (ShDFLevel[SH_ERR_T_FILE], FIL__, __LINE__, 0,
|
---|
| 2032 | MSG_FI_2LONG2,
|
---|
| 2033 | tmpdir, tmpname);
|
---|
| 2034 | SH_FREE(tmpname);
|
---|
| 2035 | SH_FREE(tmpdir);
|
---|
[227] | 2036 | SH_FREE(fullpath);
|
---|
| 2037 | SH_FREE(theFile);
|
---|
[1] | 2038 | SL_RETURN(SH_FILE_UNKNOWN, _("sh_files_filecheck"));
|
---|
| 2039 | }
|
---|
| 2040 |
|
---|
| 2041 |
|
---|
| 2042 | /* stat the file and determine checksum (if a regular file)
|
---|
| 2043 | */
|
---|
[227] | 2044 | sl_strlcpy (theFile->fullpath, fullpath, PATH_MAX);
|
---|
| 2045 | theFile->check_mask = sh_files_maskof(class);
|
---|
| 2046 | theFile->file_reported = (*reported);
|
---|
| 2047 | theFile->attr_string = NULL;
|
---|
| 2048 | theFile->link_path = NULL;
|
---|
[1] | 2049 |
|
---|
| 2050 | TPT(( 0, FIL__, __LINE__, _("msg=<checking file: %s>\n"), fullpath));
|
---|
| 2051 |
|
---|
| 2052 | status = sh_unix_getinfo ( (class == SH_LEVEL_ALLIGNORE) ?
|
---|
| 2053 | ShDFLevel[class] : ShDFLevel[SH_ERR_T_FILE],
|
---|
| 2054 | fileName,
|
---|
[227] | 2055 | theFile, fileHash, class);
|
---|
[1] | 2056 |
|
---|
| 2057 | if (status != 0)
|
---|
| 2058 | {
|
---|
| 2059 | TPT(( 0, FIL__, __LINE__, _("msg=<file: %s> status=<%d>\n"),
|
---|
| 2060 | fullpath, status));
|
---|
| 2061 | if (class == SH_LEVEL_ALLIGNORE && sh.flag.checkSum != SH_CHECK_INIT)
|
---|
[68] | 2062 | sh_hash_set_visited_true (fullpath);
|
---|
[227] | 2063 | if (theFile->attr_string) SH_FREE(theFile->attr_string);
|
---|
| 2064 | if (theFile->link_path) SH_FREE(theFile->link_path);
|
---|
| 2065 | SH_FREE(fullpath);
|
---|
| 2066 | SH_FREE(theFile);
|
---|
[1] | 2067 | SL_RETURN(SH_FILE_UNKNOWN, _("sh_files_filecheck"));
|
---|
| 2068 | }
|
---|
| 2069 |
|
---|
| 2070 | if (sig_termfast == 1) {
|
---|
| 2071 | goto ret_point;
|
---|
| 2072 | }
|
---|
| 2073 |
|
---|
| 2074 | /* report
|
---|
| 2075 | */
|
---|
[227] | 2076 | if ((flag_err_debug == SL_TRUE) && (theFile->c_mode[0] == '-'))
|
---|
[1] | 2077 | {
|
---|
| 2078 | tmpname = sh_util_safe_name (fullpath); /* fixed in 1.5.4 */
|
---|
| 2079 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_CSUM,
|
---|
| 2080 | fileHash, tmpname);
|
---|
| 2081 | SH_FREE(tmpname);
|
---|
| 2082 | }
|
---|
| 2083 | ++sh.statistics.files_checked;
|
---|
| 2084 |
|
---|
[77] | 2085 | if ( sh.flag.checkSum == SH_CHECK_INIT /* && sh.flag.update == S_FALSE */)
|
---|
[1] | 2086 | {
|
---|
[227] | 2087 | sh_hash_pushdata (theFile, fileHash);
|
---|
[1] | 2088 | }
|
---|
| 2089 | else if (sh.flag.checkSum == SH_CHECK_CHECK
|
---|
| 2090 | /* && theFile.c_mode[0] == '-' */
|
---|
| 2091 | /* && class != SH_LEVEL_ALLIGNORE */
|
---|
| 2092 | )
|
---|
| 2093 | {
|
---|
[227] | 2094 | sh_hash_compdata (class, theFile, fileHash, NULL, -1);
|
---|
[1] | 2095 | }
|
---|
| 2096 |
|
---|
[227] | 2097 | (*reported) = theFile->file_reported;
|
---|
[1] | 2098 |
|
---|
| 2099 | /* reset the access time
|
---|
| 2100 | */
|
---|
[227] | 2101 | if (class == SH_LEVEL_NOIGNORE && (theFile->check_mask & MODI_ATM) != 0)
|
---|
[1] | 2102 | {
|
---|
[227] | 2103 | utime_buf.actime = (time_t) theFile->atime;
|
---|
| 2104 | utime_buf.modtime = (time_t) theFile->mtime;
|
---|
[1] | 2105 | #if !defined(O_NOATIME)
|
---|
| 2106 | retry_aud_utime (FIL__, __LINE__, fullpath, &utime_buf);
|
---|
| 2107 | #endif
|
---|
| 2108 | }
|
---|
| 2109 |
|
---|
[254] | 2110 | #if defined(HOST_IS_DARWIN)
|
---|
[1] | 2111 | /*
|
---|
| 2112 | * Check for resource fork
|
---|
| 2113 | */
|
---|
[254] | 2114 | if ( (sh_use_rsrc == S_TRUE) && (theFile->c_mode[0] != 'd') && (rsrcflag == 0) )
|
---|
[1] | 2115 | {
|
---|
| 2116 | int dummy;
|
---|
| 2117 | static int rsrc_init = 0;
|
---|
| 2118 | static char rsrc[17];
|
---|
[242] | 2119 | char * testpath = SH_ALLOC(PATH_MAX);
|
---|
[1] | 2120 |
|
---|
| 2121 | if (rsrc_init == 0) {
|
---|
| 2122 | sl_strlcpy(rsrc, _("..namedfork/rsrc"), 17);
|
---|
| 2123 | rsrc_init = 1;
|
---|
| 2124 | }
|
---|
| 2125 | sl_strlcpy (testpath, fullpath, PATH_MAX);
|
---|
| 2126 | sl_strlcat (testpath, "/", PATH_MAX);
|
---|
| 2127 | sl_strlcat (testpath, rsrc, PATH_MAX);
|
---|
| 2128 |
|
---|
| 2129 | if (sl_strlen(testpath) == (17 + sl_strlen(fullpath)))
|
---|
| 2130 | {
|
---|
[78] | 2131 | if (S_TRUE == sh_unix_file_exists (testpath))
|
---|
[1] | 2132 | {
|
---|
| 2133 | sh_files_filecheck (class, fullpath, rsrc, &dummy, 1);
|
---|
| 2134 | }
|
---|
| 2135 | }
|
---|
[227] | 2136 | SH_FREE(testpath);
|
---|
[1] | 2137 | }
|
---|
| 2138 | #else
|
---|
[68] | 2139 | (void) rsrcflag; /* avoid compiler warning */
|
---|
[1] | 2140 | #endif
|
---|
| 2141 |
|
---|
| 2142 | ret_point:
|
---|
| 2143 |
|
---|
[227] | 2144 | sc = theFile->c_mode[0];
|
---|
[68] | 2145 |
|
---|
[227] | 2146 | if (theFile->attr_string) SH_FREE(theFile->attr_string);
|
---|
| 2147 | if (theFile->link_path) SH_FREE(theFile->link_path);
|
---|
| 2148 | SH_FREE(fullpath);
|
---|
| 2149 | SH_FREE(theFile);
|
---|
| 2150 |
|
---|
| 2151 | switch (sc)
|
---|
[1] | 2152 | {
|
---|
| 2153 | case '-': SL_RETURN(SH_FILE_REGULAR, _("sh_files_filecheck"));
|
---|
| 2154 | case 'l': SL_RETURN(SH_FILE_SYMLINK, _("sh_files_filecheck"));
|
---|
| 2155 | case 'd': SL_RETURN(SH_FILE_DIRECTORY, _("sh_files_filecheck"));
|
---|
| 2156 | case 'c': SL_RETURN(SH_FILE_CDEV, _("sh_files_filecheck"));
|
---|
| 2157 | case 'b': SL_RETURN(SH_FILE_BDEV, _("sh_files_filecheck"));
|
---|
| 2158 | case '|': SL_RETURN(SH_FILE_FIFO, _("sh_files_filecheck"));
|
---|
[40] | 2159 | case 'D': SL_RETURN(SH_FILE_DOOR, _("sh_files_filecheck"));
|
---|
| 2160 | case 'P': SL_RETURN(SH_FILE_PORT, _("sh_files_filecheck"));
|
---|
[1] | 2161 | case 's': SL_RETURN(SH_FILE_SOCKET, _("sh_files_filecheck"));
|
---|
| 2162 | default: SL_RETURN(SH_FILE_UNKNOWN, _("sh_files_filecheck"));
|
---|
| 2163 | }
|
---|
| 2164 |
|
---|
| 2165 | /* notreached */
|
---|
| 2166 | }
|
---|
| 2167 |
|
---|
| 2168 | /* concatenate statpath = testdir"/"d_name
|
---|
| 2169 | */
|
---|
| 2170 | static int sh_files_fullpath (char * testdir, char * d_name, char * statpath)
|
---|
| 2171 | {
|
---|
| 2172 | int llen = 0;
|
---|
| 2173 |
|
---|
| 2174 | SL_ENTER(_("sh_files_fullpath"));
|
---|
| 2175 |
|
---|
| 2176 | if (testdir != NULL)
|
---|
| 2177 | {
|
---|
| 2178 | if ( (llen = sl_strlen(testdir)) > (PATH_MAX-2) )
|
---|
| 2179 | SL_RETURN((-1),_("sh_files_fullpath"));
|
---|
| 2180 | sl_strlcpy(statpath, testdir, PATH_MAX - 1);
|
---|
| 2181 | }
|
---|
| 2182 | if (d_name != NULL)
|
---|
| 2183 | {
|
---|
| 2184 | if (llen > 1 || statpath[0] != '/')
|
---|
| 2185 | sl_strlcat(statpath, "/", PATH_MAX);
|
---|
| 2186 | if ((sl_strlen(d_name) + sl_strlen(statpath)) >= PATH_MAX)
|
---|
| 2187 | SL_RETURN((-1),_("sh_files_fullpath"));
|
---|
| 2188 | sl_strlcat(statpath, d_name, PATH_MAX);
|
---|
| 2189 | }
|
---|
| 2190 | if (statpath == NULL)
|
---|
| 2191 | SL_RETURN((-1),_("sh_files_fullpath"));
|
---|
| 2192 | SL_RETURN((0),_("sh_files_fullpath"));
|
---|
| 2193 | }
|
---|
| 2194 |
|
---|
| 2195 |
|
---|
| 2196 | /* -----------------------------------
|
---|
| 2197 | *
|
---|
| 2198 | * The following two routines serve to
|
---|
| 2199 | * verify that the user has selected
|
---|
| 2200 | * a proper setup for file policies.
|
---|
| 2201 | *
|
---|
| 2202 | * -----------------------------------
|
---|
| 2203 | */
|
---|
| 2204 | static int check_file(char * name)
|
---|
| 2205 | {
|
---|
| 2206 | dirstack_t * pfilL;
|
---|
| 2207 | zAVLCursor cursor;
|
---|
| 2208 |
|
---|
| 2209 | SL_ENTER(_("check_file"));
|
---|
| 2210 |
|
---|
| 2211 | if (SH_FILE_DIRECTORY == sh_unix_get_ftype(name))
|
---|
| 2212 | SL_RETURN(0, _("check_file"));
|
---|
| 2213 |
|
---|
| 2214 | for (pfilL = (dirstack_t *) zAVLFirst (&cursor, zfileList); pfilL;
|
---|
| 2215 | pfilL = (dirstack_t *) zAVLNext (&cursor))
|
---|
| 2216 | {
|
---|
| 2217 | if (0 == strcmp(name, pfilL->name) &&
|
---|
| 2218 | (pfilL->check_mask & MODI_ATM) == 0 &&
|
---|
| 2219 | (pfilL->check_mask & MODI_CTM) == 0 &&
|
---|
| 2220 | (pfilL->check_mask & MODI_MTM) == 0)
|
---|
| 2221 | SL_RETURN(0, _("check_file"));
|
---|
| 2222 | }
|
---|
| 2223 | SL_RETURN((-1), _("check_file"));
|
---|
| 2224 | }
|
---|
| 2225 |
|
---|
| 2226 | int sh_files_test_setup_int (zAVLTree * tree)
|
---|
| 2227 | {
|
---|
| 2228 | int dlen, flen;
|
---|
| 2229 | zAVLCursor cursor1;
|
---|
| 2230 | zAVLCursor cursor2;
|
---|
| 2231 |
|
---|
| 2232 | dirstack_t * pdirL;
|
---|
| 2233 | dirstack_t * pfilL;
|
---|
| 2234 |
|
---|
| 2235 | SL_ENTER(_("sh_files_test_setup"));
|
---|
| 2236 |
|
---|
| 2237 | for (pdirL = (dirstack_t *) zAVLFirst (&cursor1, tree); pdirL;
|
---|
| 2238 | pdirL = (dirstack_t *) zAVLNext (&cursor1))
|
---|
| 2239 | {
|
---|
| 2240 | dlen = strlen(pdirL->name);
|
---|
| 2241 |
|
---|
| 2242 | for (pfilL = (dirstack_t *) zAVLFirst (&cursor2, zfileList); pfilL;
|
---|
| 2243 | pfilL = (dirstack_t *) zAVLNext (&cursor2))
|
---|
| 2244 | {
|
---|
| 2245 | flen = strlen(pfilL->name);
|
---|
| 2246 |
|
---|
| 2247 | /* check whether file is in tree of dir
|
---|
| 2248 | */
|
---|
| 2249 | if ((pfilL->class == SH_LEVEL_READONLY) ||
|
---|
| 2250 | (pfilL->class == SH_LEVEL_NOIGNORE))
|
---|
| 2251 | {
|
---|
| 2252 | ; /* do nothing */
|
---|
| 2253 | }
|
---|
| 2254 | else
|
---|
| 2255 | {
|
---|
| 2256 | if ((flen > (dlen+1)) &&
|
---|
| 2257 | (pfilL->name[dlen] == '/') &&
|
---|
| 2258 | (NULL == strchr(&(pfilL->name[dlen+1]), '/')) && /*30-5-01*/
|
---|
| 2259 | (0 == strncmp(pfilL->name, pdirL->name, dlen)))
|
---|
| 2260 | {
|
---|
| 2261 | if ((pdirL->check_mask & MODI_ATM) != 0 ||
|
---|
| 2262 | (pdirL->check_mask & MODI_MTM) != 0 ||
|
---|
| 2263 | (pdirL->check_mask & MODI_CTM) != 0)
|
---|
| 2264 | {
|
---|
| 2265 | if (check_file (pdirL->name) != 0)
|
---|
| 2266 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_COLL,
|
---|
| 2267 | pdirL->name, pfilL->name);
|
---|
| 2268 | }
|
---|
| 2269 | }
|
---|
| 2270 | }
|
---|
| 2271 | }
|
---|
| 2272 | }
|
---|
| 2273 |
|
---|
| 2274 | SL_RETURN((0), _("sh_files_test_setup"));
|
---|
| 2275 | }
|
---|
| 2276 |
|
---|
| 2277 | int sh_files_test_double (zAVLTree * firstList, zAVLTree * secondList)
|
---|
| 2278 | {
|
---|
| 2279 | int retval = 0;
|
---|
| 2280 | zAVLCursor cursor;
|
---|
| 2281 | dirstack_t * first;
|
---|
| 2282 |
|
---|
| 2283 | for (first = (dirstack_t *) zAVLFirst (&cursor, firstList); first;
|
---|
| 2284 | first = (dirstack_t *) zAVLNext (&cursor))
|
---|
| 2285 | {
|
---|
| 2286 |
|
---|
| 2287 | if (NULL != zAVLSearch(secondList, first->name))
|
---|
| 2288 | {
|
---|
| 2289 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_DOUBLE,
|
---|
| 2290 | first->name);
|
---|
| 2291 | retval = 1;
|
---|
| 2292 | }
|
---|
| 2293 | }
|
---|
| 2294 | return retval;
|
---|
| 2295 | }
|
---|
| 2296 |
|
---|
[170] | 2297 | extern void aud_exit (const char * file, int line, int fd);
|
---|
[1] | 2298 |
|
---|
| 2299 | int sh_files_test_setup ()
|
---|
| 2300 | {
|
---|
| 2301 | int retval = 0;
|
---|
| 2302 |
|
---|
| 2303 | /* Test for modifications allowed in ReadOnly directory
|
---|
| 2304 | */
|
---|
| 2305 | sh_files_test_setup_int (zdirListOne);
|
---|
| 2306 | sh_files_test_setup_int (zdirListTwo);
|
---|
| 2307 |
|
---|
| 2308 | /* Test for files/dirz defined twice
|
---|
| 2309 | */
|
---|
| 2310 | retval = sh_files_test_double (zdirListOne, zdirListTwo);
|
---|
| 2311 | if (retval != 0)
|
---|
| 2312 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 2313 |
|
---|
| 2314 | retval = sh_files_test_double (zdirListTwo, zdirListOne);
|
---|
| 2315 | if (retval != 0)
|
---|
| 2316 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 2317 |
|
---|
[5] | 2318 |
|
---|
[1] | 2319 | /*
|
---|
| 2320 | retval = sh_files_test_double (zfileList, NULL);
|
---|
| 2321 | if (retval != 0)
|
---|
| 2322 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 2323 | */
|
---|
| 2324 | return 0;
|
---|
| 2325 | }
|
---|
| 2326 |
|
---|
| 2327 | #endif
|
---|