[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 |
|
---|
| 23 | #include <stdio.h>
|
---|
| 24 | #include <stdlib.h>
|
---|
| 25 | #include <string.h>
|
---|
| 26 | #include <ctype.h>
|
---|
[98] | 27 | #ifdef HAVE_LINUX_FS_H
|
---|
| 28 | #include <linux/fs.h>
|
---|
| 29 | #endif
|
---|
[1] | 30 |
|
---|
| 31 | #ifdef HAVE_MEMORY_H
|
---|
| 32 | #include <memory.h>
|
---|
| 33 | #endif
|
---|
| 34 |
|
---|
| 35 | #ifdef HAVE_UNISTD_H
|
---|
| 36 | #include <errno.h>
|
---|
| 37 | #include <signal.h>
|
---|
| 38 | #include <pwd.h>
|
---|
| 39 | #include <grp.h>
|
---|
| 40 | #include <sys/types.h>
|
---|
| 41 | #include <sys/stat.h>
|
---|
| 42 | #include <sys/resource.h>
|
---|
| 43 | #include <fcntl.h>
|
---|
| 44 | #include <unistd.h>
|
---|
| 45 | #include <sys/wait.h>
|
---|
| 46 |
|
---|
| 47 | /*********************
|
---|
| 48 | #ifdef HAVE_SYS_VFS_H
|
---|
| 49 | #include <sys/vfs.h>
|
---|
| 50 | #endif
|
---|
| 51 | **********************/
|
---|
| 52 | #endif
|
---|
| 53 |
|
---|
| 54 | #if TIME_WITH_SYS_TIME
|
---|
| 55 | #include <sys/time.h>
|
---|
| 56 | #include <time.h>
|
---|
| 57 | #else
|
---|
| 58 | #if HAVE_SYS_TIME_H
|
---|
| 59 | #include <sys/time.h>
|
---|
| 60 | #else
|
---|
| 61 | #include <time.h>
|
---|
| 62 | #endif
|
---|
| 63 | #endif
|
---|
| 64 |
|
---|
| 65 | #ifdef HAVE_SYS_SELECT_H
|
---|
| 66 | #include <sys/select.h>
|
---|
| 67 | #endif
|
---|
| 68 |
|
---|
| 69 | #ifndef FD_SET
|
---|
| 70 | #define NFDBITS 32
|
---|
| 71 | #define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
|
---|
| 72 | #define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
|
---|
| 73 | #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
|
---|
| 74 | #endif /* !FD_SET */
|
---|
| 75 | #ifndef FD_SETSIZE
|
---|
| 76 | #define FD_SETSIZE 32
|
---|
| 77 | #endif
|
---|
| 78 | #ifndef FD_ZERO
|
---|
| 79 | #define FD_ZERO(p) memset((char *)(p), '\0', sizeof(*(p)))
|
---|
| 80 | #endif
|
---|
| 81 |
|
---|
| 82 |
|
---|
| 83 | #if defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK)
|
---|
| 84 | #include <sys/mman.h>
|
---|
| 85 | #endif
|
---|
| 86 |
|
---|
| 87 | #include "samhain.h"
|
---|
| 88 | #include "sh_error.h"
|
---|
| 89 | #include "sh_unix.h"
|
---|
| 90 | #include "sh_utils.h"
|
---|
| 91 | #include "sh_mem.h"
|
---|
| 92 | #include "sh_hash.h"
|
---|
| 93 | #include "sh_tools.h"
|
---|
| 94 | #include "sh_tiger.h"
|
---|
| 95 | #include "sh_prelink.h"
|
---|
[137] | 96 | #include "sh_pthread.h"
|
---|
[1] | 97 |
|
---|
| 98 | /* moved here from far below
|
---|
| 99 | */
|
---|
| 100 | #include <netdb.h>
|
---|
| 101 |
|
---|
| 102 | #define SH_NEED_PWD_GRP
|
---|
| 103 | #define SH_NEED_GETHOSTBYXXX
|
---|
| 104 | #include "sh_static.h"
|
---|
| 105 |
|
---|
| 106 | #ifndef HAVE_LSTAT
|
---|
| 107 | #define lstat stat
|
---|
| 108 | #endif
|
---|
| 109 |
|
---|
| 110 | #if defined(S_IFLNK) && !defined(S_ISLNK)
|
---|
| 111 | #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
|
---|
| 112 | #else
|
---|
| 113 | #if !defined(S_ISLNK)
|
---|
| 114 | #define S_ISLNK(mode) (0)
|
---|
| 115 | #endif
|
---|
| 116 | #endif
|
---|
| 117 |
|
---|
| 118 | #if defined(S_IFSOCK) && !defined(S_ISSOCK)
|
---|
| 119 | #define S_ISSOCK(mode) (((mode) & S_IFMT) == S_IFSOCK)
|
---|
| 120 | #else
|
---|
| 121 | #if !defined(S_ISSOCK)
|
---|
| 122 | #define S_ISSOCK(mode) (0)
|
---|
| 123 | #endif
|
---|
| 124 | #endif
|
---|
| 125 |
|
---|
[40] | 126 | #if defined(S_IFDOOR) && !defined(S_ISDOOR)
|
---|
| 127 | #define S_ISDOOR(mode) (((mode) & S_IFMT) == S_IFDOOR)
|
---|
| 128 | #else
|
---|
| 129 | #if !defined(S_ISDOOR)
|
---|
| 130 | #define S_ISDOOR(mode) (0)
|
---|
| 131 | #endif
|
---|
| 132 | #endif
|
---|
| 133 |
|
---|
| 134 | #if defined(S_IFPORT) && !defined(S_ISPORT)
|
---|
| 135 | #define S_ISPORT(mode) (((mode) & S_IFMT) == S_IFPORT)
|
---|
| 136 | #else
|
---|
| 137 | #if !defined(S_ISPORT)
|
---|
| 138 | #define S_ISPORT(mode) (0)
|
---|
| 139 | #endif
|
---|
| 140 | #endif
|
---|
| 141 |
|
---|
[105] | 142 | #define SH_KEY_NULL _("000000000000000000000000000000000000000000000000")
|
---|
[40] | 143 |
|
---|
[1] | 144 | #undef FIL__
|
---|
| 145 | #define FIL__ _("sh_unix.c")
|
---|
| 146 |
|
---|
| 147 | unsigned long mask_PRELINK = MASK_PRELINK_;
|
---|
| 148 | unsigned long mask_USER0 = MASK_USER_;
|
---|
| 149 | unsigned long mask_USER1 = MASK_USER_;
|
---|
[27] | 150 | unsigned long mask_USER2 = MASK_USER_;
|
---|
| 151 | unsigned long mask_USER3 = MASK_USER_;
|
---|
| 152 | unsigned long mask_USER4 = MASK_USER_;
|
---|
[1] | 153 | unsigned long mask_ALLIGNORE = MASK_ALLIGNORE_;
|
---|
| 154 | unsigned long mask_ATTRIBUTES = MASK_ATTRIBUTES_;
|
---|
| 155 | unsigned long mask_LOGFILES = MASK_LOGFILES_;
|
---|
| 156 | unsigned long mask_LOGGROW = MASK_LOGGROW_;
|
---|
| 157 | unsigned long mask_READONLY = MASK_READONLY_;
|
---|
| 158 | unsigned long mask_NOIGNORE = MASK_NOIGNORE_;
|
---|
| 159 |
|
---|
| 160 |
|
---|
| 161 | extern char **environ;
|
---|
| 162 |
|
---|
| 163 | int sh_unix_maskreset()
|
---|
| 164 | {
|
---|
| 165 | mask_PRELINK = MASK_PRELINK_;
|
---|
| 166 | mask_USER0 = MASK_USER_;
|
---|
| 167 | mask_USER1 = MASK_USER_;
|
---|
[27] | 168 | mask_USER2 = MASK_USER_;
|
---|
| 169 | mask_USER3 = MASK_USER_;
|
---|
| 170 | mask_USER4 = MASK_USER_;
|
---|
[1] | 171 | mask_ALLIGNORE = MASK_ALLIGNORE_;
|
---|
| 172 | mask_ATTRIBUTES = MASK_ATTRIBUTES_;
|
---|
| 173 | mask_LOGFILES = MASK_LOGFILES_;
|
---|
| 174 | mask_LOGGROW = MASK_LOGGROW_;
|
---|
| 175 | mask_READONLY = MASK_READONLY_;
|
---|
| 176 | mask_NOIGNORE = MASK_NOIGNORE_;
|
---|
| 177 | return 0;
|
---|
| 178 | }
|
---|
| 179 |
|
---|
| 180 |
|
---|
| 181 | #ifdef SYS_SIGLIST_DECLARED
|
---|
| 182 | /* extern const char * const sys_siglist[]; */
|
---|
| 183 | #else
|
---|
| 184 | char * sh_unix_siglist (int signum)
|
---|
| 185 | {
|
---|
| 186 | switch (signum)
|
---|
| 187 | {
|
---|
| 188 | #ifdef SIGHUP
|
---|
| 189 | case SIGHUP:
|
---|
| 190 | return _("Hangup");
|
---|
| 191 | #endif
|
---|
| 192 | #ifdef SIGINT
|
---|
| 193 | case SIGINT:
|
---|
| 194 | return _("Interrupt");
|
---|
| 195 | #endif
|
---|
| 196 | #ifdef SIGQUIT
|
---|
| 197 | case SIGQUIT:
|
---|
| 198 | return _("Quit");
|
---|
| 199 | #endif
|
---|
| 200 | #ifdef SIGILL
|
---|
| 201 | case SIGILL:
|
---|
| 202 | return _("Illegal instruction");
|
---|
| 203 | #endif
|
---|
| 204 | #ifdef SIGTRAP
|
---|
| 205 | case SIGTRAP:
|
---|
| 206 | return _("Trace/breakpoint trap");
|
---|
| 207 | #endif
|
---|
| 208 | #ifdef SIGABRT
|
---|
| 209 | case SIGABRT:
|
---|
| 210 | return _("IOT trap/Abort");
|
---|
| 211 | #endif
|
---|
| 212 | #ifdef SIGBUS
|
---|
| 213 | case SIGBUS:
|
---|
| 214 | return _("Bus error");
|
---|
| 215 | #endif
|
---|
| 216 | #ifdef SIGFPE
|
---|
| 217 | case SIGFPE:
|
---|
| 218 | return _("Floating point exception");
|
---|
| 219 | #endif
|
---|
| 220 | #ifdef SIGUSR1
|
---|
| 221 | case SIGUSR1:
|
---|
| 222 | return _("User defined signal 1");
|
---|
| 223 | #endif
|
---|
| 224 | #ifdef SIGSEGV
|
---|
| 225 | case SIGSEGV:
|
---|
| 226 | return _("Segmentation fault");
|
---|
| 227 | #endif
|
---|
| 228 | #ifdef SIGUSR2
|
---|
| 229 | case SIGUSR2:
|
---|
| 230 | return _("User defined signal 2");
|
---|
| 231 | #endif
|
---|
| 232 | #ifdef SIGPIPE
|
---|
| 233 | case SIGPIPE:
|
---|
| 234 | return _("Broken pipe");
|
---|
| 235 | #endif
|
---|
| 236 | #ifdef SIGALRM
|
---|
| 237 | case SIGALRM:
|
---|
| 238 | return _("Alarm clock");
|
---|
| 239 | #endif
|
---|
| 240 | #ifdef SIGTERM
|
---|
| 241 | case SIGTERM:
|
---|
| 242 | return _("Terminated");
|
---|
| 243 | #endif
|
---|
| 244 | #ifdef SIGSTKFLT
|
---|
| 245 | case SIGSTKFLT:
|
---|
| 246 | return _("Stack fault");
|
---|
| 247 | #endif
|
---|
| 248 | #ifdef SIGCHLD
|
---|
| 249 | case SIGCHLD:
|
---|
| 250 | return _("Child exited");
|
---|
| 251 | #endif
|
---|
| 252 | #ifdef SIGCONT
|
---|
| 253 | case SIGCONT:
|
---|
| 254 | return _("Continued");
|
---|
| 255 | #endif
|
---|
| 256 | #ifdef SIGSTOP
|
---|
| 257 | case SIGSTOP:
|
---|
| 258 | return _("Stopped");
|
---|
| 259 | #endif
|
---|
| 260 | #ifdef SIGTSTP
|
---|
| 261 | case SIGTSTP:
|
---|
| 262 | return _("Stop typed at tty");
|
---|
| 263 | #endif
|
---|
| 264 | #ifdef SIGTTIN
|
---|
| 265 | case SIGTTIN:
|
---|
| 266 | return _("Stopped (tty input)");
|
---|
| 267 | #endif
|
---|
| 268 | #ifdef SIGTTOU
|
---|
| 269 | case SIGTTOU:
|
---|
| 270 | return _("Stopped (tty output)");
|
---|
| 271 | #endif
|
---|
| 272 | #ifdef SIGURG
|
---|
| 273 | case SIGURG:
|
---|
| 274 | return _("Urgent condition");
|
---|
| 275 | #endif
|
---|
| 276 | #ifdef SIGXCPU
|
---|
| 277 | case SIGXCPU:
|
---|
| 278 | return _("CPU time limit exceeded");
|
---|
| 279 | #endif
|
---|
| 280 | #ifdef SIGXFSZ
|
---|
| 281 | case SIGXFSZ:
|
---|
| 282 | return _("File size limit exceeded");
|
---|
| 283 | #endif
|
---|
| 284 | #ifdef SIGVTALRM
|
---|
| 285 | case SIGVTALRM:
|
---|
| 286 | return _("Virtual time alarm");
|
---|
| 287 | #endif
|
---|
| 288 | #ifdef SIGPROF
|
---|
| 289 | case SIGPROF:
|
---|
| 290 | return _("Profile signal");
|
---|
| 291 | #endif
|
---|
| 292 | #ifdef SIGWINCH
|
---|
| 293 | case SIGWINCH:
|
---|
| 294 | return _("Window size changed");
|
---|
| 295 | #endif
|
---|
| 296 | #ifdef SIGIO
|
---|
| 297 | case SIGIO:
|
---|
| 298 | return _("Possible I/O");
|
---|
| 299 | #endif
|
---|
| 300 | #ifdef SIGPWR
|
---|
| 301 | case SIGPWR:
|
---|
| 302 | return _("Power failure");
|
---|
| 303 | #endif
|
---|
| 304 | #ifdef SIGUNUSED
|
---|
| 305 | case SIGUNUSED:
|
---|
| 306 | return _("Unused signal");
|
---|
| 307 | #endif
|
---|
| 308 | }
|
---|
| 309 | return _("Unknown");
|
---|
| 310 | }
|
---|
| 311 | #endif
|
---|
| 312 |
|
---|
| 313 |
|
---|
| 314 | /* Log from within a signal handler without using any
|
---|
| 315 | * functions that are not async signal safe.
|
---|
| 316 | *
|
---|
| 317 | * This is the safe_itoa helper function.
|
---|
| 318 | */
|
---|
| 319 | char * safe_itoa(int i, char * str, int size)
|
---|
| 320 | {
|
---|
| 321 | unsigned int u;
|
---|
| 322 | int iisneg = 0;
|
---|
| 323 | char *p = &str[size-1];
|
---|
| 324 |
|
---|
| 325 | *p = '\0';
|
---|
| 326 | if (i < 0) {
|
---|
| 327 | iisneg = 1;
|
---|
| 328 | u = ((unsigned int)(-(1+i))) + 1;
|
---|
| 329 | } else {
|
---|
| 330 | u = i;
|
---|
| 331 | }
|
---|
| 332 | do {
|
---|
| 333 | --p;
|
---|
| 334 | *p = '0' + (u % 10);
|
---|
| 335 | u /= 10;
|
---|
[22] | 336 | } while (u && (p != str));
|
---|
| 337 | if ((iisneg == 1) && (p != str)) {
|
---|
[1] | 338 | --p;
|
---|
| 339 | *p = '-';
|
---|
| 340 | }
|
---|
| 341 | return p;
|
---|
| 342 | }
|
---|
| 343 |
|
---|
| 344 | /* Log from within a signal handler without using any
|
---|
| 345 | * functions that are not async signal safe.
|
---|
| 346 | *
|
---|
| 347 | * This is the safe_logger function.
|
---|
| 348 | * Arguments: signal (signal number), method (0=logger, 1=stderr), thepid (pid)
|
---|
| 349 | */
|
---|
| 350 | extern int OnlyStderr;
|
---|
| 351 |
|
---|
[22] | 352 | int safe_logger (int signal, int method, char * details)
|
---|
[1] | 353 | {
|
---|
[34] | 354 | unsigned int i = 0;
|
---|
[1] | 355 | int status = -1;
|
---|
| 356 | struct stat buf;
|
---|
| 357 | pid_t newpid;
|
---|
| 358 | char str[128];
|
---|
| 359 | char * p;
|
---|
[22] | 360 |
|
---|
[1] | 361 | char l0[64], l1[64], l2[64], l3[64];
|
---|
| 362 | char a0[32], a1[32], a2[32];
|
---|
| 363 | char e0[128];
|
---|
| 364 | char msg[128];
|
---|
[22] | 365 |
|
---|
[1] | 366 | char * locations[] = { NULL, NULL, NULL, NULL, NULL };
|
---|
| 367 | char * envp[] = { NULL, NULL };
|
---|
| 368 | char * argp[] = { NULL, NULL, NULL, NULL, NULL };
|
---|
[22] | 369 |
|
---|
| 370 | pid_t thepid = getpid();
|
---|
| 371 |
|
---|
[1] | 372 | if ((sh.flag.isdaemon == S_FALSE) || (OnlyStderr == S_TRUE))
|
---|
| 373 | method = 1;
|
---|
[22] | 374 |
|
---|
[1] | 375 | /* seems that solaris cc needs this way of initializing ...
|
---|
| 376 | */
|
---|
| 377 | locations[0] = l0;
|
---|
| 378 | locations[1] = l1;
|
---|
| 379 | locations[2] = l2;
|
---|
| 380 | locations[3] = l3;
|
---|
[22] | 381 |
|
---|
[1] | 382 | envp[0] = e0;
|
---|
[22] | 383 |
|
---|
[1] | 384 | argp[0] = a0;
|
---|
| 385 | argp[1] = a1;
|
---|
| 386 | argp[2] = a2;
|
---|
[22] | 387 |
|
---|
[1] | 388 | sl_strlcpy(msg, _("samhain["), 128);
|
---|
| 389 | p = safe_itoa((int) thepid, str, 128);
|
---|
| 390 | if (p && *p)
|
---|
| 391 | sl_strlcat(msg, p, 128);
|
---|
| 392 | if (signal == 0)
|
---|
| 393 | {
|
---|
[22] | 394 | if (details == NULL) {
|
---|
| 395 | sl_strlcat(msg, _("]: out of memory"), 128);
|
---|
| 396 | } else {
|
---|
| 397 | sl_strlcat(msg, _("]: "), 128);
|
---|
| 398 | sl_strlcat(msg, details, 128);
|
---|
| 399 | }
|
---|
[1] | 400 | }
|
---|
| 401 | else
|
---|
| 402 | {
|
---|
| 403 | sl_strlcat(msg, _("]: exit on signal "), 128);
|
---|
| 404 | p = safe_itoa(signal, str, 128);
|
---|
| 405 | if (p && *p)
|
---|
| 406 | sl_strlcat(msg, p, 128);
|
---|
| 407 | }
|
---|
| 408 |
|
---|
| 409 | if (method == 1) {
|
---|
| 410 | #ifndef STDERR_FILENO
|
---|
| 411 | #define STDERR_FILENO 2
|
---|
| 412 | #endif
|
---|
| 413 | write(STDERR_FILENO, msg, strlen(msg));
|
---|
| 414 | write(STDERR_FILENO, "\n", 1);
|
---|
| 415 | return 0;
|
---|
| 416 | }
|
---|
[22] | 417 |
|
---|
| 418 | sl_strlcpy (l0, _("/usr/bin/logger"), 64);
|
---|
| 419 | sl_strlcpy (l1, _("/usr/sbin/logger"), 64);
|
---|
| 420 | sl_strlcpy (l2, _("/usr/ucb/logger"), 64);
|
---|
| 421 | sl_strlcpy (l3, _("/bin/logger"), 64);
|
---|
| 422 |
|
---|
| 423 | sl_strlcpy (a0, _("logger"), 32);
|
---|
| 424 | sl_strlcpy (a1, _("-p"), 32);
|
---|
| 425 | sl_strlcpy (a2, _("daemon.alert"), 32);
|
---|
| 426 |
|
---|
| 427 | sl_strlcpy (e0,
|
---|
| 428 | _("PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/ucb:/usr/local/bin"),
|
---|
| 429 | 128);
|
---|
| 430 |
|
---|
[1] | 431 | while (locations[i] != NULL) {
|
---|
| 432 | status = stat(locations[i], &buf);
|
---|
| 433 | if (status == 0)
|
---|
| 434 | break;
|
---|
| 435 | ++i;
|
---|
| 436 | }
|
---|
| 437 |
|
---|
| 438 | if (locations[i] != NULL) {
|
---|
| 439 | argp[3] = msg;
|
---|
| 440 | newpid = fork();
|
---|
| 441 | if (newpid == 0) {
|
---|
| 442 | execve(locations[i], argp, envp);
|
---|
| 443 | _exit(1);
|
---|
| 444 | }
|
---|
| 445 | else if (newpid > 0) {
|
---|
| 446 | waitpid(newpid, &status, WUNTRACED);
|
---|
| 447 | }
|
---|
| 448 | }
|
---|
| 449 | return 0;
|
---|
| 450 | }
|
---|
| 451 |
|
---|
[34] | 452 | void safe_fatal (char * details,
|
---|
| 453 | char * file, int line)
|
---|
[22] | 454 | {
|
---|
| 455 | char msg[128];
|
---|
| 456 | char str[128];
|
---|
| 457 | char * p;
|
---|
[34] | 458 | int signal = 0;
|
---|
| 459 | int method = 0;
|
---|
| 460 |
|
---|
[22] | 461 | p = safe_itoa((int) line, str, 128);
|
---|
| 462 | sl_strlcpy(msg, _("FATAL: "), 128);
|
---|
| 463 | sl_strlcat(msg, file, 128);
|
---|
| 464 | sl_strlcat(msg, ": ", 128);
|
---|
| 465 | if (p && (*p)) {
|
---|
| 466 | sl_strlcat(msg, p , 128);
|
---|
| 467 | sl_strlcat(msg, ": ", 128);
|
---|
| 468 | }
|
---|
| 469 | sl_strlcat(msg, details, 128);
|
---|
| 470 | safe_logger (signal, method, msg);
|
---|
| 471 | _exit(EXIT_FAILURE);
|
---|
| 472 | }
|
---|
[1] | 473 |
|
---|
| 474 | extern char sh_sig_msg[64];
|
---|
| 475 |
|
---|
| 476 | volatile int immediate_exit_normal = 0;
|
---|
| 477 |
|
---|
| 478 | #if defined(SA_SIGACTION_WORKS)
|
---|
| 479 | static
|
---|
| 480 | void sh_unix_sigexit (int mysignal, siginfo_t * signal_info, void * signal_add)
|
---|
| 481 | #else
|
---|
| 482 | static
|
---|
| 483 | void sh_unix_sigexit (int mysignal)
|
---|
| 484 | #endif
|
---|
| 485 | {
|
---|
| 486 |
|
---|
| 487 | #if defined(SA_SIGACTION_WORKS)
|
---|
| 488 | if (signal_info != NULL && signal_info->si_code == SI_USER &&
|
---|
| 489 | mysignal != SIGTERM && mysignal != SIGINT)
|
---|
| 490 | {
|
---|
| 491 | return;
|
---|
| 492 | }
|
---|
| 493 |
|
---|
| 494 | /* avoid compiler warning (unused var)
|
---|
| 495 | */
|
---|
| 496 | (void) signal_add;
|
---|
| 497 | #endif
|
---|
| 498 |
|
---|
| 499 | /*
|
---|
| 500 | * Block re-entry
|
---|
| 501 | */
|
---|
| 502 | if (immediate_exit_normal > 0)
|
---|
| 503 | {
|
---|
| 504 | ++immediate_exit_normal;
|
---|
| 505 | if ((skey != NULL) && (immediate_exit_normal == 2))
|
---|
| 506 | memset (skey, '\0', sizeof(sh_key_t));
|
---|
| 507 | if (immediate_exit_normal == 2)
|
---|
| 508 | {
|
---|
| 509 | chdir ("/");
|
---|
[22] | 510 | safe_logger (mysignal, 0, NULL);
|
---|
[1] | 511 | }
|
---|
| 512 | _exit(mysignal);
|
---|
| 513 | }
|
---|
| 514 | else
|
---|
| 515 | {
|
---|
| 516 | immediate_exit_normal = 1;
|
---|
| 517 | }
|
---|
| 518 |
|
---|
| 519 | #ifdef SYS_SIGLIST_DECLARED
|
---|
| 520 | strncpy (sh_sig_msg, sys_siglist[mysignal], 40);
|
---|
| 521 | #else
|
---|
| 522 | strncpy (sh_sig_msg, sh_unix_siglist(mysignal), 40);
|
---|
| 523 | #endif
|
---|
| 524 | sh_sig_msg[63] = '\0';
|
---|
| 525 |
|
---|
| 526 | ++sig_raised;
|
---|
| 527 | ++sig_urgent;
|
---|
| 528 | sig_termfast = 1;
|
---|
| 529 | return;
|
---|
| 530 | }
|
---|
| 531 |
|
---|
| 532 | volatile int immediate_exit_fast = 0;
|
---|
| 533 |
|
---|
| 534 | #if defined(SA_SIGACTION_WORKS)
|
---|
| 535 | static
|
---|
| 536 | void sh_unix_sigexit_fast (int mysignal, siginfo_t * signal_info,
|
---|
| 537 | void * signal_add)
|
---|
| 538 | #else
|
---|
| 539 | static
|
---|
| 540 | void sh_unix_sigexit_fast (int mysignal)
|
---|
| 541 | #endif
|
---|
| 542 | {
|
---|
| 543 | #if defined(SA_SIGACTION_WORKS)
|
---|
| 544 | if (signal_info != NULL && signal_info->si_code == SI_USER)
|
---|
| 545 | {
|
---|
| 546 | return;
|
---|
| 547 | }
|
---|
| 548 | #endif
|
---|
| 549 |
|
---|
| 550 | /* avoid compiler warning (unused var)
|
---|
| 551 | */
|
---|
| 552 | #if defined(SA_SIGACTION_WORKS)
|
---|
| 553 | (void) signal_add;
|
---|
| 554 | #endif
|
---|
| 555 |
|
---|
| 556 | /* Check whether the heap is ok; otherwise _exit
|
---|
| 557 | */
|
---|
| 558 | #if !defined(SL_DEBUG)
|
---|
| 559 | ++immediate_exit_fast;
|
---|
| 560 | if (skey != NULL && immediate_exit_fast < 2)
|
---|
| 561 | memset (skey, '\0', sizeof(sh_key_t));
|
---|
| 562 | if (immediate_exit_fast < 2)
|
---|
[22] | 563 | safe_logger (mysignal, 0, NULL);
|
---|
[1] | 564 | _exit(mysignal);
|
---|
| 565 | #else
|
---|
| 566 |
|
---|
| 567 | /* debug code
|
---|
| 568 | */
|
---|
| 569 | if (immediate_exit_fast == 1)
|
---|
| 570 | {
|
---|
| 571 | ++immediate_exit_fast;
|
---|
| 572 | if (skey != NULL)
|
---|
| 573 | memset (skey, '\0', sizeof(sh_key_t));
|
---|
| 574 | #ifdef WITH_MESSAGE_QUEUE
|
---|
| 575 | close_ipc ();
|
---|
| 576 | #endif
|
---|
[22] | 577 | safe_logger (mysignal, 0, NULL);
|
---|
[1] | 578 | chdir ("/");
|
---|
| 579 | raise(SIGFPE);
|
---|
| 580 | }
|
---|
| 581 | else if (immediate_exit_fast == 2)
|
---|
| 582 | {
|
---|
| 583 | chdir ("/");
|
---|
| 584 | raise(SIGFPE);
|
---|
| 585 | }
|
---|
| 586 | else if (immediate_exit_fast != 0)
|
---|
| 587 | {
|
---|
| 588 | _exit(mysignal);
|
---|
| 589 | }
|
---|
| 590 |
|
---|
| 591 | ++immediate_exit_fast;
|
---|
| 592 |
|
---|
| 593 | /* The FPE|BUS|SEGV|ILL signals leave the system in an undefined
|
---|
| 594 | * state, thus it is best to exit immediately.
|
---|
| 595 | */
|
---|
| 596 | #ifdef SYS_SIGLIST_DECLARED
|
---|
| 597 | strncpy (sh_sig_msg, sys_siglist[mysignal], 40);
|
---|
| 598 | #else
|
---|
| 599 | strncpy (sh_sig_msg, sh_unix_siglist(mysignal), 40);
|
---|
| 600 | #endif
|
---|
[131] | 601 | sh_sig_msg[63] = '\0';
|
---|
[1] | 602 |
|
---|
| 603 | sl_stack_print();
|
---|
| 604 |
|
---|
| 605 | /* Try to push out an error message.
|
---|
| 606 | */
|
---|
| 607 | sh_error_handle ((-1), FIL__, __LINE__, mysignal, MSG_EXIT_NORMAL,
|
---|
| 608 | sh.prg_name, sh_sig_msg);
|
---|
| 609 |
|
---|
| 610 | if (skey != NULL)
|
---|
| 611 | memset (skey, '\0', sizeof(sh_key_t));
|
---|
| 612 | #ifdef WITH_MESSAGE_QUEUE
|
---|
| 613 | close_ipc ();
|
---|
| 614 | #endif
|
---|
| 615 |
|
---|
| 616 | chdir ("/");
|
---|
| 617 | raise(SIGFPE);
|
---|
| 618 | #endif
|
---|
| 619 | }
|
---|
| 620 |
|
---|
| 621 |
|
---|
| 622 | static
|
---|
| 623 | void sh_unix_sigaction (int mysignal)
|
---|
| 624 | {
|
---|
| 625 | ++sig_raised;
|
---|
| 626 | #ifdef SIGUSR1
|
---|
| 627 | if (mysignal == SIGUSR1)
|
---|
| 628 | sig_debug_switch = 1;
|
---|
| 629 | #endif
|
---|
| 630 | #ifdef SIGUSR2
|
---|
| 631 | if (mysignal == SIGUSR2)
|
---|
| 632 | {
|
---|
[19] | 633 | ++sig_suspend_switch;
|
---|
[1] | 634 | ++sig_urgent;
|
---|
| 635 | }
|
---|
| 636 | #endif
|
---|
| 637 | #ifdef SIGHUP
|
---|
| 638 | if (mysignal == SIGHUP)
|
---|
| 639 | sig_config_read_again = 1;
|
---|
| 640 | #endif
|
---|
| 641 | #ifdef SIGTTOU
|
---|
| 642 | if (mysignal == SIGTTOU)
|
---|
| 643 | sig_force_check = 1;
|
---|
| 644 | #endif
|
---|
| 645 | #ifdef SIGABRT
|
---|
| 646 | if (mysignal == SIGABRT)
|
---|
| 647 | sig_fresh_trail = 1;
|
---|
| 648 | #endif
|
---|
| 649 | #ifdef SIGQUIT
|
---|
| 650 | if (mysignal == SIGQUIT)
|
---|
| 651 | {
|
---|
[131] | 652 | sig_terminate = 1;
|
---|
[1] | 653 | ++sig_urgent;
|
---|
| 654 | }
|
---|
| 655 | #endif
|
---|
| 656 | #ifdef SIGTERM
|
---|
| 657 | if (mysignal == SIGTERM)
|
---|
| 658 | {
|
---|
| 659 | strncpy (sh_sig_msg, _("Terminated"), 40);
|
---|
| 660 | sig_termfast = 1;
|
---|
| 661 | ++sig_urgent;
|
---|
| 662 | }
|
---|
| 663 | #endif
|
---|
| 664 |
|
---|
| 665 | return;
|
---|
| 666 | }
|
---|
| 667 |
|
---|
| 668 | static
|
---|
| 669 | void sh_unix_siginstall (int goDaemon)
|
---|
| 670 | {
|
---|
| 671 | struct sigaction act, act_fast, act2, oldact, ignact;
|
---|
| 672 | #if defined (SH_WITH_SERVER)
|
---|
| 673 | (void) goDaemon;
|
---|
| 674 | #endif
|
---|
| 675 |
|
---|
| 676 | SL_ENTER(_("sh_unix_siginstall"));
|
---|
| 677 |
|
---|
| 678 | ignact.sa_handler = SIG_IGN; /* signal action */
|
---|
| 679 | sigemptyset( &ignact.sa_mask ); /* set an empty mask */
|
---|
| 680 | ignact.sa_flags = 0; /* init sa_flags */
|
---|
| 681 |
|
---|
| 682 | #if defined(SA_SIGACTION_WORKS)
|
---|
| 683 | act.sa_sigaction = &sh_unix_sigexit; /* signal action */
|
---|
| 684 | #else
|
---|
| 685 | act.sa_handler = &sh_unix_sigexit; /* signal action */
|
---|
| 686 | #endif
|
---|
| 687 |
|
---|
| 688 | sigfillset ( &act.sa_mask ); /* set a full mask */
|
---|
| 689 |
|
---|
| 690 |
|
---|
| 691 | /* Block all but deadly signals.
|
---|
| 692 | */
|
---|
| 693 | #ifdef SIGILL
|
---|
| 694 | sigdelset ( &act.sa_mask, SIGILL );
|
---|
| 695 | #endif
|
---|
| 696 | #ifndef SL_DEBUG
|
---|
| 697 | #ifdef SIGFPE
|
---|
| 698 | sigdelset ( &act.sa_mask, SIGFPE );
|
---|
| 699 | #endif
|
---|
| 700 | #endif
|
---|
| 701 | #ifdef SIGSEGV
|
---|
| 702 | sigdelset ( &act.sa_mask, SIGSEGV );
|
---|
| 703 | #endif
|
---|
| 704 | #ifdef SIGBUS
|
---|
| 705 | sigdelset ( &act.sa_mask, SIGBUS );
|
---|
| 706 | #endif
|
---|
| 707 |
|
---|
| 708 | #if defined(SA_SIGACTION_WORKS)
|
---|
| 709 | act_fast.sa_sigaction = &sh_unix_sigexit_fast; /* signal action */
|
---|
| 710 | #else
|
---|
| 711 | act_fast.sa_handler = &sh_unix_sigexit_fast; /* signal action */
|
---|
| 712 | #endif
|
---|
| 713 |
|
---|
| 714 | sigfillset ( &act_fast.sa_mask ); /* set a full mask */
|
---|
| 715 |
|
---|
| 716 | #ifdef SIGILL
|
---|
| 717 | sigdelset ( &act_fast.sa_mask, SIGILL );
|
---|
| 718 | #endif
|
---|
| 719 | #ifndef SL_DEBUG
|
---|
| 720 | #ifdef SIGFPE
|
---|
| 721 | sigdelset ( &act_fast.sa_mask, SIGFPE );
|
---|
| 722 | #endif
|
---|
| 723 | #endif
|
---|
| 724 | #ifdef SIGSEGV
|
---|
| 725 | sigdelset ( &act_fast.sa_mask, SIGSEGV );
|
---|
| 726 | #endif
|
---|
| 727 | #ifdef SIGBUS
|
---|
| 728 | sigdelset ( &act_fast.sa_mask, SIGBUS );
|
---|
| 729 | #endif
|
---|
| 730 |
|
---|
| 731 |
|
---|
| 732 | /* Use siginfo to verify origin of signal, if possible.
|
---|
| 733 | */
|
---|
| 734 | #if defined(SA_SIGACTION_WORKS)
|
---|
| 735 | act.sa_flags = SA_SIGINFO;
|
---|
| 736 | act_fast.sa_flags = SA_SIGINFO;
|
---|
| 737 | #else
|
---|
| 738 | act.sa_flags = 0;
|
---|
| 739 | act_fast.sa_flags = 0;
|
---|
| 740 | #endif
|
---|
| 741 |
|
---|
| 742 | /* Do not block the signal from being received in its handler ...
|
---|
| 743 | * (is this a good or a bad idea ??).
|
---|
| 744 | */
|
---|
| 745 | #if defined(SA_NOMASK)
|
---|
| 746 | act_fast.sa_flags |= SA_NOMASK;
|
---|
| 747 | #elif defined(SA_NODEFER)
|
---|
| 748 | act_fast.sa_flags |= SA_NODEFER;
|
---|
| 749 | #endif
|
---|
| 750 |
|
---|
| 751 |
|
---|
| 752 | act2.sa_handler = &sh_unix_sigaction; /* signal action */
|
---|
| 753 | sigemptyset( &act2.sa_mask ); /* set an empty mask */
|
---|
| 754 | act2.sa_flags = 0; /* init sa_flags */
|
---|
| 755 |
|
---|
| 756 | /* signals to control the daemon */
|
---|
| 757 |
|
---|
| 758 | #ifdef SIGHUP
|
---|
| 759 | retry_sigaction(FIL__, __LINE__, SIGHUP, &act2, &oldact);
|
---|
| 760 | #endif
|
---|
| 761 | #ifdef SIGABRT
|
---|
| 762 | retry_sigaction(FIL__, __LINE__, SIGABRT, &act2, &oldact);
|
---|
| 763 | #endif
|
---|
| 764 | #ifdef SIGUSR1
|
---|
| 765 | retry_sigaction(FIL__, __LINE__, SIGUSR1, &act2, &oldact);
|
---|
| 766 | #endif
|
---|
| 767 | #ifdef SIGUSR2
|
---|
| 768 | retry_sigaction(FIL__, __LINE__, SIGUSR2, &act2, &oldact);
|
---|
| 769 | #endif
|
---|
| 770 | #ifdef SIGQUIT
|
---|
| 771 | retry_sigaction(FIL__, __LINE__, SIGQUIT, &act2, &oldact);
|
---|
| 772 | #endif
|
---|
| 773 | #ifdef SIGTERM
|
---|
[131] | 774 | retry_sigaction(FIL__, __LINE__, SIGTERM, &act, &oldact);
|
---|
[1] | 775 | #endif
|
---|
| 776 |
|
---|
| 777 | /* fatal signals that may cause termination */
|
---|
| 778 |
|
---|
| 779 | #ifdef SIGILL
|
---|
| 780 | retry_sigaction(FIL__, __LINE__, SIGILL, &act_fast, &oldact);
|
---|
| 781 | #endif
|
---|
| 782 | #ifndef SL_DEBUG
|
---|
| 783 | #ifdef SIGFPE
|
---|
| 784 | retry_sigaction(FIL__, __LINE__, SIGFPE, &act_fast, &oldact);
|
---|
| 785 | #endif
|
---|
| 786 | #endif
|
---|
| 787 | #ifdef SIGSEGV
|
---|
| 788 | retry_sigaction(FIL__, __LINE__, SIGSEGV, &act_fast, &oldact);
|
---|
| 789 | #endif
|
---|
| 790 | #ifdef SIGBUS
|
---|
| 791 | retry_sigaction(FIL__, __LINE__, SIGBUS, &act_fast, &oldact);
|
---|
| 792 | #endif
|
---|
| 793 |
|
---|
| 794 | /* other signals */
|
---|
| 795 |
|
---|
| 796 | #ifdef SIGINT
|
---|
| 797 | retry_sigaction(FIL__, __LINE__, SIGINT, &act, &oldact);
|
---|
| 798 | #endif
|
---|
| 799 | #ifdef SIGPIPE
|
---|
[132] | 800 | #ifdef HAVE_PTHREAD
|
---|
| 801 | retry_sigaction(FIL__, __LINE__, SIGPIPE, &ignact, &oldact);
|
---|
| 802 | #else
|
---|
[1] | 803 | retry_sigaction(FIL__, __LINE__, SIGPIPE, &act, &oldact);
|
---|
| 804 | #endif
|
---|
[132] | 805 | #endif
|
---|
[1] | 806 | #ifdef SIGALRM
|
---|
| 807 | retry_sigaction(FIL__, __LINE__, SIGALRM, &ignact, &oldact);
|
---|
| 808 | #endif
|
---|
| 809 | #ifdef SIGTSTP
|
---|
| 810 | retry_sigaction(FIL__, __LINE__, SIGTSTP, &ignact, &oldact);
|
---|
| 811 | #endif
|
---|
| 812 | #ifdef SIGTTIN
|
---|
| 813 | retry_sigaction(FIL__, __LINE__, SIGTTIN, &ignact, &oldact);
|
---|
| 814 | #endif
|
---|
| 815 | #if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE)
|
---|
| 816 | #ifdef SIGTTOU
|
---|
| 817 | if (goDaemon == 1)
|
---|
| 818 | retry_sigaction(FIL__, __LINE__, SIGTTOU, &act2, &oldact);
|
---|
| 819 | else
|
---|
| 820 | retry_sigaction(FIL__, __LINE__, SIGTTOU, &ignact, &oldact);
|
---|
| 821 | #endif
|
---|
| 822 | #else
|
---|
| 823 | #ifdef SIGTTOU
|
---|
| 824 | retry_sigaction(FIL__, __LINE__, SIGTTOU, &ignact, &oldact);
|
---|
| 825 | #endif
|
---|
| 826 | #endif
|
---|
| 827 |
|
---|
| 828 | #ifdef SIGTRAP
|
---|
| 829 | #if !defined(SCREW_IT_UP)
|
---|
| 830 | retry_sigaction(FIL__, __LINE__, SIGTRAP, &act, &oldact);
|
---|
| 831 | #endif
|
---|
| 832 | #endif
|
---|
| 833 |
|
---|
| 834 | #ifdef SIGPOLL
|
---|
| 835 | retry_sigaction(FIL__, __LINE__, SIGPOLL, &ignact, &oldact);
|
---|
| 836 | #endif
|
---|
| 837 | #if defined(SIGPROF) && !defined(SH_PROFILE)
|
---|
| 838 | retry_sigaction(FIL__, __LINE__, SIGPROF, &ignact, &oldact);
|
---|
| 839 | #endif
|
---|
| 840 | #ifdef SIGSYS
|
---|
| 841 | retry_sigaction(FIL__, __LINE__, SIGSYS, &act, &oldact);
|
---|
| 842 | #endif
|
---|
| 843 | #ifdef SIGURG
|
---|
| 844 | retry_sigaction(FIL__, __LINE__, SIGURG, &ignact, &oldact);
|
---|
| 845 | #endif
|
---|
| 846 | #if defined(SIGVTALRM) && !defined(SH_PROFILE)
|
---|
| 847 | retry_sigaction(FIL__, __LINE__, SIGVTALRM, &ignact, &oldact);
|
---|
| 848 | #endif
|
---|
| 849 | #ifdef SIGXCPU
|
---|
| 850 | retry_sigaction(FIL__, __LINE__, SIGXCPU, &act, &oldact);
|
---|
| 851 | #endif
|
---|
| 852 | #ifdef SIGXFSZ
|
---|
| 853 | retry_sigaction(FIL__, __LINE__, SIGXFSZ, &act, &oldact);
|
---|
| 854 | #endif
|
---|
| 855 |
|
---|
| 856 | #ifdef SIGEMT
|
---|
| 857 | retry_sigaction(FIL__, __LINE__, SIGEMT, &ignact, &oldact);
|
---|
| 858 | #endif
|
---|
| 859 | #ifdef SIGSTKFLT
|
---|
| 860 | retry_sigaction(FIL__, __LINE__, SIGSTKFLT, &act, &oldact);
|
---|
| 861 | #endif
|
---|
| 862 | #ifdef SIGIO
|
---|
| 863 | retry_sigaction(FIL__, __LINE__, SIGIO, &ignact, &oldact);
|
---|
| 864 | #endif
|
---|
| 865 | #ifdef SIGPWR
|
---|
| 866 | retry_sigaction(FIL__, __LINE__, SIGPWR, &act, &oldact);
|
---|
| 867 | #endif
|
---|
| 868 |
|
---|
| 869 | #ifdef SIGLOST
|
---|
| 870 | retry_sigaction(FIL__, __LINE__, SIGLOST, &ignact, &oldact);
|
---|
| 871 | #endif
|
---|
| 872 | #ifdef SIGUNUSED
|
---|
| 873 | retry_sigaction(FIL__, __LINE__, SIGUNUSED, &ignact, &oldact);
|
---|
| 874 | #endif
|
---|
| 875 |
|
---|
| 876 | SL_RET0(_("sh_unix_siginstall"));
|
---|
| 877 | }
|
---|
| 878 |
|
---|
| 879 | /* ---------------------------------------------------------------- */
|
---|
| 880 |
|
---|
| 881 | /* checksum the own binary
|
---|
| 882 | */
|
---|
[22] | 883 | int sh_unix_self_hash (const char * c)
|
---|
[1] | 884 | {
|
---|
| 885 | char message[512];
|
---|
[133] | 886 | char hashbuf[KEYBUF_SIZE];
|
---|
[1] | 887 |
|
---|
| 888 | SL_ENTER(_("sh_unix_self_hash"));
|
---|
| 889 |
|
---|
| 890 | if (c == NULL)
|
---|
| 891 | {
|
---|
| 892 | sh.exec.path[0] = '\0';
|
---|
| 893 | SL_RETURN((0), _("sh_unix_self_hash"));
|
---|
| 894 | }
|
---|
| 895 | sl_strlcpy(sh.exec.path, c, SH_PATHBUF);
|
---|
| 896 |
|
---|
| 897 | sl_strlcpy(sh.exec.hash,
|
---|
[133] | 898 | sh_tiger_hash (c, TIGER_FILE, 0, hashbuf, sizeof(hashbuf)),
|
---|
[1] | 899 | KEY_LEN+1);
|
---|
| 900 | sl_snprintf(message, 512, _("%s has checksum: %s"),
|
---|
| 901 | sh.exec.path, sh.exec.hash);
|
---|
| 902 | message[511] = '\0';
|
---|
| 903 | sh_error_handle(SH_ERR_INFO, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
| 904 | message, _("sh_unix_self_hash"));
|
---|
[93] | 905 | if (0 == sl_strcmp(sh.exec.hash, SH_KEY_NULL ))
|
---|
[1] | 906 | {
|
---|
| 907 | dlog(1, FIL__, __LINE__,
|
---|
| 908 | _("Could not checksum my own executable because of the\nfollowing error: %s: %s\n\nPossible reasons include:\n Wrong path in configure file option SamhainPath=/path/to/executable\n No read permission for the effective UID: %d\n"),
|
---|
| 909 | sh.exec.path, sl_get_errmsg(), (int) sl_ret_euid());
|
---|
| 910 | sh_error_handle ((-1), FIL__, __LINE__, EACCES, MSG_NOACCESS,
|
---|
| 911 | (long) sh.real.uid, c);
|
---|
| 912 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 913 | }
|
---|
| 914 | SL_RETURN((0), _("sh_unix_self_hash"));
|
---|
| 915 | }
|
---|
| 916 |
|
---|
| 917 | int sh_unix_self_check ()
|
---|
| 918 | {
|
---|
| 919 | char newhash[KEY_LEN+1];
|
---|
| 920 | char message[512];
|
---|
[133] | 921 | char hashbuf[KEYBUF_SIZE];
|
---|
[1] | 922 |
|
---|
| 923 | SL_ENTER(_("sh_unix_self_check"));
|
---|
| 924 | if (sh.exec.path == NULL || sh.exec.path[0] == '\0')
|
---|
| 925 | SL_RETURN((0), _("sh_unix_self_check"));
|
---|
| 926 |
|
---|
[133] | 927 | sl_strlcpy(newhash,
|
---|
| 928 | sh_tiger_hash (sh.exec.path, TIGER_FILE, 0, hashbuf, sizeof(hashbuf)),
|
---|
| 929 | KEY_LEN+1);
|
---|
[1] | 930 | if (0 == sl_strncmp(sh.exec.hash,
|
---|
| 931 | newhash,
|
---|
| 932 | KEY_LEN))
|
---|
| 933 | SL_RETURN((0), _("sh_unix_self_check"));
|
---|
| 934 |
|
---|
| 935 |
|
---|
| 936 | dlog(1, FIL__, __LINE__,
|
---|
| 937 | _("The checksum of the executable: %s has changed since startup (%s -> %s).\n"),
|
---|
| 938 | sh.exec.path, sh.exec.hash, newhash);
|
---|
| 939 |
|
---|
| 940 | sl_snprintf(message, 512,
|
---|
| 941 | _("The checksum of %s has changed since startup (%s -> %s)"),
|
---|
| 942 | sh.exec.path, sh.exec.hash, newhash);
|
---|
| 943 | message[511] = '\0';
|
---|
| 944 |
|
---|
| 945 | sh_error_handle(SH_ERR_INFO, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
| 946 | message, _("sh_unix_self_check"));
|
---|
| 947 | sh_error_handle ((-1), FIL__, __LINE__, EACCES, MSG_E_AUTH,
|
---|
| 948 | sh.exec.path);
|
---|
| 949 | SL_RETURN((-1), _("sh_unix_self_check"));
|
---|
| 950 | }
|
---|
| 951 |
|
---|
| 952 |
|
---|
| 953 | /* ---------------------------------------------------------------- */
|
---|
| 954 |
|
---|
| 955 |
|
---|
| 956 | /* added Tue Feb 22 10:36:44 NFT 2000 Rainer Wichmann */
|
---|
[22] | 957 | static int tf_add_trusted_user_int(const char * c)
|
---|
[1] | 958 | {
|
---|
[137] | 959 | struct passwd * w;
|
---|
[1] | 960 | int count;
|
---|
| 961 | uid_t pwid = (uid_t)-1;
|
---|
| 962 |
|
---|
[131] | 963 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
|
---|
| 964 | struct passwd pwd;
|
---|
| 965 | char buffer[SH_PWBUF_SIZE];
|
---|
| 966 | #endif
|
---|
| 967 |
|
---|
[1] | 968 | SL_ENTER(_("tf_add_trusted_user_int"));
|
---|
| 969 |
|
---|
| 970 | /* First check for a user name.
|
---|
| 971 | */
|
---|
[131] | 972 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
|
---|
[137] | 973 | sh_getpwnam_r(c, &pwd, buffer, sizeof(buffer), &w);
|
---|
[131] | 974 | #else
|
---|
| 975 | w = sh_getpwnam(c);
|
---|
| 976 | #endif
|
---|
| 977 |
|
---|
| 978 | if ((w != NULL) && ((pwid = w->pw_uid) > 0))
|
---|
[1] | 979 | goto succe;
|
---|
| 980 |
|
---|
| 981 | /* Failed, so check for a numerical value.
|
---|
| 982 | */
|
---|
| 983 | pwid = strtol(c, (char **)NULL, 10);
|
---|
| 984 | if (pwid > 0 && pwid < 65535)
|
---|
| 985 | goto succe;
|
---|
| 986 |
|
---|
| 987 | sh_error_handle ((-1), FIL__, __LINE__, EINVAL, MSG_EINVALS,
|
---|
| 988 | _("add trusted user"), c);
|
---|
| 989 | SL_RETURN((-1), _("tf_add_trusted_user_int"));
|
---|
| 990 |
|
---|
| 991 | succe:
|
---|
| 992 | count = sl_trust_add_user(pwid);
|
---|
| 993 | SL_RETURN((count), _("tf_add_trusted_user_int"));
|
---|
| 994 | }
|
---|
| 995 |
|
---|
[22] | 996 | int tf_add_trusted_user(const char * c)
|
---|
[1] | 997 | {
|
---|
| 998 | int i;
|
---|
| 999 | char * q;
|
---|
| 1000 | char * p = sh_util_strdup (c);
|
---|
[131] | 1001 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_STRTOK_R)
|
---|
| 1002 | char * saveptr;
|
---|
| 1003 | #endif
|
---|
| 1004 |
|
---|
[1] | 1005 | SL_ENTER(_("tf_add_trusted_user"));
|
---|
| 1006 |
|
---|
[131] | 1007 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_STRTOK_R)
|
---|
| 1008 | q = strtok_r(p, ", \t", &saveptr);
|
---|
| 1009 | #else
|
---|
[1] | 1010 | q = strtok(p, ", \t");
|
---|
[131] | 1011 | #endif
|
---|
[1] | 1012 | if (!q)
|
---|
| 1013 | {
|
---|
| 1014 | SH_FREE(p);
|
---|
| 1015 | SL_RETURN((-1), _("tf_add_trusted_user"));
|
---|
| 1016 | }
|
---|
| 1017 | while (q)
|
---|
| 1018 | {
|
---|
| 1019 | i = tf_add_trusted_user_int(q);
|
---|
| 1020 | if (SL_ISERROR(i))
|
---|
| 1021 | {
|
---|
| 1022 | SH_FREE(p);
|
---|
| 1023 | SL_RETURN((i), _("tf_add_trusted_user"));
|
---|
| 1024 | }
|
---|
[131] | 1025 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_STRTOK_R)
|
---|
| 1026 | q = strtok_r(NULL, ", \t", &saveptr);
|
---|
| 1027 | #else
|
---|
[1] | 1028 | q = strtok(NULL, ", \t");
|
---|
[131] | 1029 | #endif
|
---|
[1] | 1030 | }
|
---|
| 1031 | SH_FREE(p);
|
---|
| 1032 | SL_RETURN((0), _("tf_add_trusted_user"));
|
---|
| 1033 | }
|
---|
| 1034 |
|
---|
| 1035 | extern uid_t sl_trust_baduid();
|
---|
| 1036 | extern gid_t sl_trust_badgid();
|
---|
| 1037 |
|
---|
| 1038 | #if defined(HOST_IS_CYGWIN) || defined(__cygwin__) || defined(__CYGWIN32__) || defined(__CYGWIN__)
|
---|
| 1039 | int tf_trust_check (char * file, int mode)
|
---|
| 1040 | {
|
---|
| 1041 | (void) file;
|
---|
| 1042 | (void) mode;
|
---|
| 1043 | return 0;
|
---|
| 1044 | }
|
---|
| 1045 | #else
|
---|
| 1046 | int tf_trust_check (char * file, int mode)
|
---|
| 1047 | {
|
---|
| 1048 | char * tmp;
|
---|
| 1049 | char * tmp2;
|
---|
| 1050 | char * p;
|
---|
| 1051 | int status;
|
---|
| 1052 | int level;
|
---|
| 1053 | uid_t ff_euid;
|
---|
| 1054 |
|
---|
| 1055 | SL_ENTER(_("tf_trust_check"));
|
---|
| 1056 |
|
---|
| 1057 | if (mode == SL_YESPRIV)
|
---|
| 1058 | sl_get_euid(&ff_euid);
|
---|
| 1059 | else
|
---|
| 1060 | sl_get_ruid(&ff_euid);
|
---|
| 1061 |
|
---|
| 1062 | #if defined(SH_WITH_SERVER)
|
---|
| 1063 | if (0 == sl_ret_euid()) /* privileges not dropped yet */
|
---|
| 1064 | {
|
---|
[131] | 1065 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
|
---|
| 1066 | struct passwd pwd;
|
---|
| 1067 | char buffer[SH_PWBUF_SIZE];
|
---|
| 1068 | struct passwd * tempres;
|
---|
| 1069 | sh_getpwnam_r(DEFAULT_IDENT, &pwd, buffer, sizeof(buffer), &tempres);
|
---|
| 1070 | #else
|
---|
[1] | 1071 | struct passwd * tempres = sh_getpwnam(DEFAULT_IDENT);
|
---|
[131] | 1072 | #endif
|
---|
[1] | 1073 |
|
---|
| 1074 | if (!tempres)
|
---|
| 1075 | {
|
---|
| 1076 | dlog(1, FIL__, __LINE__,
|
---|
| 1077 | _("User %s does not exist. Please add the user to your system.\n"),
|
---|
| 1078 | DEFAULT_IDENT);
|
---|
| 1079 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 1080 | }
|
---|
| 1081 | ff_euid = tempres->pw_uid;
|
---|
| 1082 | }
|
---|
| 1083 | #endif
|
---|
| 1084 |
|
---|
| 1085 | status = sl_trustfile_euid(file, ff_euid);
|
---|
| 1086 |
|
---|
| 1087 | if ( SL_ENONE != status)
|
---|
| 1088 | {
|
---|
| 1089 | if (status == SL_ESTAT)
|
---|
| 1090 | level = SH_ERR_ALL;
|
---|
| 1091 | else
|
---|
| 1092 | level = SH_ERR_ERR;
|
---|
| 1093 |
|
---|
| 1094 | tmp = sh_util_safe_name (file);
|
---|
| 1095 | p = sl_trust_errfile();
|
---|
| 1096 | if (p && *p != '\0')
|
---|
| 1097 | {
|
---|
| 1098 | tmp2 = sh_util_safe_name (sl_trust_errfile());
|
---|
| 1099 | sh_error_handle(level, FIL__, __LINE__, status, MSG_E_TRUST2,
|
---|
| 1100 | sl_error_string(status), tmp, tmp2);
|
---|
| 1101 | SH_FREE(tmp2);
|
---|
| 1102 | }
|
---|
| 1103 | else
|
---|
| 1104 | {
|
---|
| 1105 | sh_error_handle(level, FIL__, __LINE__, status, MSG_E_TRUST1,
|
---|
| 1106 | sl_error_string(status), tmp);
|
---|
| 1107 | }
|
---|
| 1108 | SH_FREE(tmp);
|
---|
| 1109 |
|
---|
| 1110 | if (status == SL_EBADUID || status == SL_EBADGID ||
|
---|
| 1111 | status == SL_EBADOTH || status == SL_ETRUNC ||
|
---|
| 1112 | status == SL_EINTERNAL )
|
---|
| 1113 | {
|
---|
| 1114 | switch (status) {
|
---|
| 1115 | case SL_EINTERNAL:
|
---|
| 1116 | dlog(1, FIL__, __LINE__,
|
---|
| 1117 | _("An internal error occured in the trustfile function.\n"));
|
---|
| 1118 | break;
|
---|
| 1119 | case SL_ETRUNC:
|
---|
| 1120 | tmp = sh_util_safe_name (file);
|
---|
| 1121 | dlog(1, FIL__, __LINE__,
|
---|
| 1122 | _("A filename truncation occured in the trustfile function.\nProbably the normalized filename for %s\nis too long. This may be due e.g. to deep or circular softlinks.\n"),
|
---|
| 1123 | tmp);
|
---|
| 1124 | SH_FREE(tmp);
|
---|
| 1125 | break;
|
---|
| 1126 | case SL_EBADOTH:
|
---|
| 1127 | tmp = sh_util_safe_name (file);
|
---|
| 1128 | p = sl_trust_errfile();
|
---|
| 1129 | dlog(1, FIL__, __LINE__,
|
---|
| 1130 | _("The path element: %s\nin the filename: %s is world writeable.\n"),
|
---|
| 1131 | p, tmp);
|
---|
| 1132 | SH_FREE(tmp);
|
---|
| 1133 | break;
|
---|
| 1134 | case SL_EBADUID:
|
---|
| 1135 | tmp = sh_util_safe_name (file);
|
---|
| 1136 | p = sl_trust_errfile();
|
---|
| 1137 | dlog(1, FIL__, __LINE__,
|
---|
| 1138 | _("The owner (UID = %ld) of the path element: %s\nin the filename: %s\nis not in the list of trusted users.\nTo fix the problem, you can:\n - run ./configure again with the option --with-trusted=0,...,UID\n where UID is the UID of the untrusted user, or\n - use the option TrustedUser=UID in the configuration file.\n"),
|
---|
| 1139 | (UID_CAST)sl_trust_baduid(), p, tmp);
|
---|
| 1140 | SH_FREE(tmp);
|
---|
| 1141 | break;
|
---|
| 1142 | case SL_EBADGID:
|
---|
| 1143 | tmp = sh_util_safe_name (file);
|
---|
| 1144 | p = sl_trust_errfile();
|
---|
| 1145 | dlog(1, FIL__, __LINE__,
|
---|
| 1146 | _("The path element: %s\nin the filename: %s\nis group writeable (GID = %ld), and at least one of the group\nmembers (UID = %ld) is not in the list of trusted users.\nTo fix the problem, you can:\n - run ./configure again with the option --with-trusted=0,...,UID\n where UID is the UID of the untrusted user, or\n - use the option TrustedUser=UID in the configuration file.\n"),
|
---|
| 1147 | p, tmp, (UID_CAST)sl_trust_badgid(),
|
---|
| 1148 | (UID_CAST)sl_trust_baduid());
|
---|
| 1149 | SH_FREE(tmp);
|
---|
| 1150 | break;
|
---|
| 1151 | default:
|
---|
| 1152 | break;
|
---|
| 1153 | }
|
---|
| 1154 |
|
---|
| 1155 | SL_RETURN((-1), _("tf_trust_check"));
|
---|
| 1156 | }
|
---|
| 1157 | }
|
---|
| 1158 |
|
---|
| 1159 | SL_RETURN((0), _("tf_trust_check"));
|
---|
| 1160 | }
|
---|
| 1161 | #endif
|
---|
| 1162 |
|
---|
| 1163 | #ifdef HAVE_INITGROUPS
|
---|
| 1164 | #ifdef HOST_IS_OSF
|
---|
| 1165 | int sh_unix_initgroups ( char * in_user, gid_t in_gid)
|
---|
| 1166 | #else
|
---|
| 1167 | int sh_unix_initgroups (const char * in_user, gid_t in_gid)
|
---|
| 1168 | #endif
|
---|
| 1169 | {
|
---|
| 1170 | int status = -1;
|
---|
| 1171 | status = sh_initgroups (in_user, in_gid);
|
---|
| 1172 | if (status < 0)
|
---|
| 1173 | {
|
---|
| 1174 | if (errno == EPERM)
|
---|
| 1175 | return 0;
|
---|
| 1176 | if (errno == EINVAL)
|
---|
| 1177 | return 0;
|
---|
| 1178 | return -1;
|
---|
| 1179 | }
|
---|
| 1180 | return 0;
|
---|
| 1181 | }
|
---|
| 1182 | #else
|
---|
| 1183 | int sh_unix_initgroups (const char * in_user, gid_t in_gid)
|
---|
| 1184 | {
|
---|
| 1185 | (void) in_user;
|
---|
| 1186 | (void) in_gid;
|
---|
| 1187 | return 0;
|
---|
| 1188 | }
|
---|
| 1189 | #endif
|
---|
| 1190 |
|
---|
| 1191 | #ifdef HAVE_INITGROUPS
|
---|
[132] | 1192 | char * sh_unix_getUIDname (int level, uid_t uid, char * out, size_t len);
|
---|
[1] | 1193 | int sh_unix_initgroups2 (uid_t in_pid, gid_t in_gid)
|
---|
| 1194 | {
|
---|
| 1195 | int status = -1;
|
---|
[132] | 1196 | char user[SH_MINIBUF];
|
---|
[1] | 1197 |
|
---|
| 1198 | SL_ENTER(_("sh_unix_initgroups2"));
|
---|
| 1199 |
|
---|
[132] | 1200 | if (NULL == sh_unix_getUIDname (SH_ERR_ERR, in_pid, user, sizeof(user)))
|
---|
[1] | 1201 | SL_RETURN((-1), _("sh_unix_initgroups2"));
|
---|
| 1202 | status = sh_initgroups (user, in_gid);
|
---|
| 1203 | if (status < 0)
|
---|
| 1204 | {
|
---|
| 1205 | if (errno == EPERM)
|
---|
| 1206 | status = 0;
|
---|
| 1207 | if (errno == EINVAL)
|
---|
| 1208 | status = 0;
|
---|
| 1209 | }
|
---|
| 1210 | SL_RETURN((status), _("sh_unix_initgroups2"));
|
---|
| 1211 | }
|
---|
| 1212 | #else
|
---|
| 1213 | int sh_unix_initgroups2 (uid_t in_pid, gid_t in_gid)
|
---|
| 1214 | {
|
---|
| 1215 | (void) in_pid;
|
---|
| 1216 | (void) in_gid;
|
---|
| 1217 | return 0;
|
---|
| 1218 | }
|
---|
| 1219 | #endif
|
---|
| 1220 |
|
---|
| 1221 | void sh_unix_closeall (int fd, int except)
|
---|
| 1222 | {
|
---|
| 1223 | int fdx = fd;
|
---|
| 1224 | #ifdef _SC_OPEN_MAX
|
---|
| 1225 | int fdlimit = sysconf (_SC_OPEN_MAX);
|
---|
| 1226 | #else
|
---|
| 1227 | #ifdef OPEN_MAX
|
---|
| 1228 | int fdlimit = OPEN_MAX;
|
---|
| 1229 | #else
|
---|
| 1230 | int fdlimit = _POSIX_OPEN_MAX;
|
---|
| 1231 | #endif
|
---|
| 1232 | #endif
|
---|
| 1233 |
|
---|
| 1234 | SL_ENTER(_("sh_unix_closeall"));
|
---|
| 1235 |
|
---|
| 1236 | /* can't happen - so fix it :-(
|
---|
| 1237 | */
|
---|
| 1238 | if (fdlimit < 0)
|
---|
[84] | 1239 | fdlimit = 20; /* POSIX lower limit */
|
---|
[1] | 1240 |
|
---|
| 1241 | if (fdlimit > 65536)
|
---|
| 1242 | fdlimit = 65536;
|
---|
| 1243 |
|
---|
| 1244 | /* Close everything from fd (inclusive) up to fdlimit (exclusive).
|
---|
| 1245 | */
|
---|
| 1246 | while (fd < fdlimit)
|
---|
| 1247 | {
|
---|
| 1248 | if (fd == except)
|
---|
| 1249 | fd++;
|
---|
| 1250 | else if (slib_do_trace != 0 && fd == slib_trace_fd)
|
---|
| 1251 | fd++;
|
---|
| 1252 | else
|
---|
| 1253 | close(fd++);
|
---|
| 1254 | }
|
---|
| 1255 |
|
---|
| 1256 | sl_dropall (fdx, except);
|
---|
| 1257 |
|
---|
| 1258 | SL_RET0(_("sh_unix_closeall"));
|
---|
| 1259 | }
|
---|
| 1260 |
|
---|
| 1261 | static void sh_unix_setlimits(void)
|
---|
| 1262 | {
|
---|
| 1263 | struct rlimit limits;
|
---|
| 1264 |
|
---|
| 1265 | SL_ENTER(_("sh_unix_setlimits"));
|
---|
| 1266 |
|
---|
| 1267 | limits.rlim_cur = RLIM_INFINITY;
|
---|
| 1268 | limits.rlim_max = RLIM_INFINITY;
|
---|
| 1269 |
|
---|
| 1270 | #ifdef RLIMIT_CPU
|
---|
| 1271 | setrlimit (RLIMIT_CPU, &limits);
|
---|
| 1272 | #endif
|
---|
| 1273 | #ifdef RLIMIT_FSIZE
|
---|
| 1274 | setrlimit (RLIMIT_FSIZE, &limits);
|
---|
| 1275 | #endif
|
---|
| 1276 | #ifdef RLIMIT_DATA
|
---|
| 1277 | setrlimit (RLIMIT_DATA, &limits);
|
---|
| 1278 | #endif
|
---|
| 1279 | #ifdef RLIMIT_STACK
|
---|
| 1280 | setrlimit (RLIMIT_STACK, &limits);
|
---|
| 1281 | #endif
|
---|
| 1282 | #ifdef RLIMIT_RSS
|
---|
| 1283 | setrlimit (RLIMIT_RSS, &limits);
|
---|
| 1284 | #endif
|
---|
| 1285 | #ifdef RLIMIT_NPROC
|
---|
| 1286 | setrlimit (RLIMIT_NPROC, &limits);
|
---|
| 1287 | #endif
|
---|
| 1288 | #ifdef RLIMIT_MEMLOCK
|
---|
| 1289 | setrlimit (RLIMIT_MEMLOCK, &limits);
|
---|
| 1290 | #endif
|
---|
| 1291 |
|
---|
| 1292 | #if !defined(SL_DEBUG)
|
---|
| 1293 | /* no core dumps
|
---|
| 1294 | */
|
---|
| 1295 | limits.rlim_cur = 0;
|
---|
| 1296 | limits.rlim_max = 0;
|
---|
| 1297 | #ifdef RLIMIT_CORE
|
---|
| 1298 | setrlimit (RLIMIT_CORE, &limits);
|
---|
| 1299 | #endif
|
---|
| 1300 | #else
|
---|
| 1301 | #ifdef RLIMIT_CORE
|
---|
| 1302 | setrlimit (RLIMIT_CORE, &limits);
|
---|
| 1303 | #endif
|
---|
| 1304 | #endif
|
---|
| 1305 |
|
---|
[8] | 1306 | limits.rlim_cur = 1024;
|
---|
| 1307 | limits.rlim_max = 1024;
|
---|
[1] | 1308 |
|
---|
[8] | 1309 | #if defined(RLIMIT_NOFILE)
|
---|
| 1310 | setrlimit (RLIMIT_NOFILE, &limits);
|
---|
| 1311 | #elif defined(RLIMIT_OFILE)
|
---|
| 1312 | setrlimit (RLIMIT_OFILE, &limits);
|
---|
| 1313 | #endif
|
---|
| 1314 |
|
---|
[1] | 1315 | SL_RET0(_("sh_unix_setlimits"));
|
---|
| 1316 | }
|
---|
| 1317 |
|
---|
| 1318 | static void sh_unix_copyenv(void)
|
---|
| 1319 | {
|
---|
| 1320 | char ** env0 = environ;
|
---|
| 1321 | char ** env1;
|
---|
| 1322 | int envlen = 0;
|
---|
[22] | 1323 | size_t len;
|
---|
[1] | 1324 |
|
---|
| 1325 | SL_ENTER(_("sh_unix_copyenv"));
|
---|
| 1326 |
|
---|
| 1327 | while (env0 != NULL && env0[envlen] != NULL) {
|
---|
| 1328 | /* printf("%2d: %s\n", envlen, env0[envlen]); */
|
---|
| 1329 | ++envlen;
|
---|
| 1330 | }
|
---|
| 1331 | ++envlen;
|
---|
| 1332 |
|
---|
| 1333 | /* printf("-> %2d: slots allocated\n", envlen); */
|
---|
| 1334 | env1 = malloc (sizeof(char *) * envlen); /* only once */
|
---|
| 1335 | if (env1 == NULL)
|
---|
| 1336 | {
|
---|
| 1337 | fprintf(stderr, _("%s: %d: Out of memory\n"), FIL__, __LINE__);
|
---|
| 1338 | SL_RET0(_("sh_unix_copyenv"));
|
---|
| 1339 | }
|
---|
| 1340 | env0 = environ;
|
---|
| 1341 | envlen = 0;
|
---|
| 1342 |
|
---|
[22] | 1343 | while (env0 != NULL && env0[envlen] != NULL) {
|
---|
| 1344 | len = strlen(env0[envlen]) + 1;
|
---|
| 1345 | env1[envlen] = malloc (len); /* only once */
|
---|
[1] | 1346 | if (env1[envlen] == NULL)
|
---|
| 1347 | {
|
---|
| 1348 | fprintf(stderr, _("%s: %d: Out of memory\n"), FIL__, __LINE__);
|
---|
| 1349 | SL_RET0(_("sh_unix_copyenv"));
|
---|
| 1350 | }
|
---|
[22] | 1351 | sl_strlcpy(env1[envlen], env0[envlen], len);
|
---|
[1] | 1352 | ++envlen;
|
---|
| 1353 | }
|
---|
| 1354 | env1[envlen] = NULL;
|
---|
| 1355 |
|
---|
| 1356 | environ = env1;
|
---|
| 1357 | SL_RET0(_("sh_unix_copyenv"));
|
---|
| 1358 | }
|
---|
| 1359 |
|
---|
| 1360 | /* delete all environment variables
|
---|
| 1361 | */
|
---|
| 1362 | static void sh_unix_zeroenv(void)
|
---|
| 1363 | {
|
---|
| 1364 | char * c;
|
---|
| 1365 | char ** env;
|
---|
| 1366 |
|
---|
| 1367 | SL_ENTER(_("sh_unix_zeroenv"));
|
---|
| 1368 |
|
---|
| 1369 | sh_unix_copyenv();
|
---|
| 1370 | env = environ;
|
---|
| 1371 |
|
---|
| 1372 | while (env != NULL && *env != NULL) {
|
---|
| 1373 | c = strchr ((*env), '=');
|
---|
| 1374 | #ifdef WITH_MYSQL
|
---|
| 1375 | /*
|
---|
| 1376 | * Skip the MYSQL_UNIX_PORT environment variable; MySQL may need it.
|
---|
| 1377 | */
|
---|
| 1378 | if (0 == sl_strncmp((*env), _("MYSQL_UNIX_PORT="), 16))
|
---|
| 1379 | {
|
---|
| 1380 | ++(env);
|
---|
| 1381 | continue;
|
---|
| 1382 | }
|
---|
[18] | 1383 | if (0 == sl_strncmp((*env), _("MYSQL_TCP_PORT="), 15))
|
---|
| 1384 | {
|
---|
| 1385 | ++(env);
|
---|
| 1386 | continue;
|
---|
| 1387 | }
|
---|
| 1388 | if (0 == sl_strncmp((*env), _("MYSQL_HOME="), 11))
|
---|
| 1389 | {
|
---|
| 1390 | ++(env);
|
---|
| 1391 | continue;
|
---|
| 1392 | }
|
---|
[1] | 1393 | #endif
|
---|
| 1394 | #ifdef WITH_ORACLE
|
---|
| 1395 | /*
|
---|
| 1396 | * Skip the ORACLE_HOME environment variable; Oracle may need it.
|
---|
| 1397 | */
|
---|
| 1398 | if (0 == sl_strncmp((*env), _("ORACLE_HOME="), 12))
|
---|
| 1399 | {
|
---|
| 1400 | ++(env);
|
---|
| 1401 | continue;
|
---|
| 1402 | }
|
---|
| 1403 | #endif
|
---|
| 1404 | /*
|
---|
| 1405 | * Skip the TZ environment variable.
|
---|
| 1406 | */
|
---|
| 1407 | if (0 == sl_strncmp((*env), _("TZ="), 3))
|
---|
| 1408 | {
|
---|
| 1409 | ++(env);
|
---|
| 1410 | continue;
|
---|
| 1411 | }
|
---|
| 1412 | ++(env);
|
---|
| 1413 | if (c != NULL)
|
---|
| 1414 | {
|
---|
| 1415 | ++c;
|
---|
| 1416 | while ((*c) != '\0') {
|
---|
| 1417 | (*c) = '\0';
|
---|
| 1418 | ++c;
|
---|
| 1419 | }
|
---|
| 1420 | }
|
---|
| 1421 | }
|
---|
| 1422 |
|
---|
| 1423 | SL_RET0(_("sh_unix_zeroenv"));
|
---|
| 1424 | }
|
---|
| 1425 |
|
---|
| 1426 |
|
---|
| 1427 | static void sh_unix_resettimer(void)
|
---|
| 1428 | {
|
---|
| 1429 | struct itimerval this_timer;
|
---|
| 1430 |
|
---|
| 1431 | SL_ENTER(_("sh_unix_resettimer"));
|
---|
| 1432 |
|
---|
| 1433 | this_timer.it_value.tv_sec = 0;
|
---|
| 1434 | this_timer.it_value.tv_usec = 0;
|
---|
| 1435 |
|
---|
| 1436 | this_timer.it_interval.tv_sec = 0;
|
---|
| 1437 | this_timer.it_interval.tv_usec = 0;
|
---|
| 1438 |
|
---|
| 1439 | setitimer(ITIMER_REAL, &this_timer, NULL);
|
---|
| 1440 | #if !defined(SH_PROFILE)
|
---|
| 1441 | setitimer(ITIMER_VIRTUAL, &this_timer, NULL);
|
---|
| 1442 | setitimer(ITIMER_PROF, &this_timer, NULL);
|
---|
| 1443 | #endif
|
---|
| 1444 |
|
---|
| 1445 | SL_RET0(_("sh_unix_resettimer"));
|
---|
| 1446 | }
|
---|
| 1447 |
|
---|
| 1448 | static void sh_unix_resetsignals(void)
|
---|
| 1449 | {
|
---|
| 1450 | int sig_num;
|
---|
| 1451 | #ifdef NSIG
|
---|
| 1452 | int max_sig = NSIG;
|
---|
| 1453 | #else
|
---|
| 1454 | int max_sig = 255;
|
---|
| 1455 | #endif
|
---|
| 1456 | int test;
|
---|
| 1457 | struct sigaction act, oldact;
|
---|
| 1458 | int status;
|
---|
| 1459 |
|
---|
| 1460 | sigset_t set_proc;
|
---|
| 1461 |
|
---|
| 1462 | SL_ENTER(_("sh_unix_resetsignals"));
|
---|
| 1463 | /*
|
---|
| 1464 | * Reset the current signal mask (inherited from parent process).
|
---|
| 1465 | */
|
---|
| 1466 |
|
---|
| 1467 | sigfillset(&set_proc);
|
---|
| 1468 |
|
---|
| 1469 | do {
|
---|
| 1470 | errno = 0;
|
---|
| 1471 | test = sigprocmask(SIG_UNBLOCK, &set_proc, NULL);
|
---|
| 1472 | } while (test < 0 && errno == EINTR);
|
---|
| 1473 |
|
---|
| 1474 | /*
|
---|
| 1475 | * Reset signal handling.
|
---|
| 1476 | */
|
---|
| 1477 |
|
---|
| 1478 | act.sa_handler = SIG_DFL; /* signal action */
|
---|
| 1479 | sigemptyset( &act.sa_mask ); /* set an empty mask */
|
---|
| 1480 | act.sa_flags = 0; /* init sa_flags */
|
---|
| 1481 |
|
---|
| 1482 | for (sig_num = 1; sig_num <= max_sig; ++sig_num)
|
---|
| 1483 | {
|
---|
| 1484 | #if !defined(SH_PROFILE)
|
---|
| 1485 | test = retry_sigaction(FIL__, __LINE__, sig_num, &act, &oldact);
|
---|
| 1486 | #else
|
---|
| 1487 | test = 0;
|
---|
| 1488 | #endif
|
---|
| 1489 | if ((test == -1) && (errno != EINVAL))
|
---|
| 1490 | {
|
---|
[132] | 1491 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 1492 | status = errno;
|
---|
| 1493 | sh_error_handle ((-1), FIL__, __LINE__, status, MSG_W_SIG,
|
---|
[132] | 1494 | sh_error_message (status, errbuf, sizeof(errbuf)), sig_num);
|
---|
[1] | 1495 | }
|
---|
| 1496 | }
|
---|
| 1497 |
|
---|
| 1498 | SL_RET0(_("sh_unix_resetsignals"));
|
---|
| 1499 | }
|
---|
| 1500 |
|
---|
| 1501 | /* Get the local hostname (FQDN)
|
---|
| 1502 | */
|
---|
| 1503 | #include <sys/socket.h>
|
---|
| 1504 |
|
---|
| 1505 | /* Required for BSD
|
---|
| 1506 | */
|
---|
| 1507 | #ifdef HAVE_NETINET_IN_H
|
---|
| 1508 | #include <netinet/in.h>
|
---|
| 1509 | #endif
|
---|
| 1510 |
|
---|
| 1511 | #include <arpa/inet.h>
|
---|
| 1512 |
|
---|
[29] | 1513 | char * sh_unix_h_name (struct hostent * host_entry)
|
---|
| 1514 | {
|
---|
| 1515 | char ** p;
|
---|
| 1516 | if (strchr(host_entry->h_name, '.')) {
|
---|
| 1517 | return host_entry->h_name;
|
---|
| 1518 | } else {
|
---|
| 1519 | for (p = host_entry->h_aliases; *p; ++p) {
|
---|
| 1520 | if (strchr(*p, '.'))
|
---|
| 1521 | return *p;
|
---|
| 1522 | }
|
---|
| 1523 | }
|
---|
| 1524 | return host_entry->h_name;
|
---|
| 1525 | }
|
---|
| 1526 |
|
---|
[1] | 1527 | /* uname() on FreeBSD is broken, because the 'nodename' buf is too small
|
---|
| 1528 | * to hold a valid (leftmost) domain label.
|
---|
| 1529 | */
|
---|
| 1530 | #if defined(HAVE_UNAME) && !defined(HOST_IS_FREEBSD)
|
---|
| 1531 | #include <sys/utsname.h>
|
---|
| 1532 | void sh_unix_localhost()
|
---|
| 1533 | {
|
---|
| 1534 | struct utsname buf;
|
---|
| 1535 | struct hostent * he1;
|
---|
| 1536 | int i;
|
---|
| 1537 | int ddot = 0;
|
---|
| 1538 | int len;
|
---|
| 1539 | char * p;
|
---|
| 1540 | char hostname[256];
|
---|
| 1541 |
|
---|
| 1542 |
|
---|
| 1543 | SL_ENTER(_("sh_unix_localhost"));
|
---|
| 1544 |
|
---|
| 1545 | (void) uname (&buf);
|
---|
[22] | 1546 | /* flawfinder: ignore */ /* ff bug, ff sees system() */
|
---|
[1] | 1547 | sl_strlcpy (sh.host.system, buf.sysname, SH_MINIBUF);
|
---|
| 1548 | sl_strlcpy (sh.host.release, buf.release, SH_MINIBUF);
|
---|
| 1549 | sl_strlcpy (sh.host.machine, buf.machine, SH_MINIBUF);
|
---|
| 1550 |
|
---|
| 1551 | /* Workaround for cases where nodename could be
|
---|
| 1552 | * a truncated FQDN.
|
---|
| 1553 | */
|
---|
| 1554 | if (strlen(buf.nodename) == (sizeof(buf.nodename)-1))
|
---|
| 1555 | {
|
---|
| 1556 | p = strchr(buf.nodename, '.');
|
---|
| 1557 | if (NULL != p) {
|
---|
| 1558 | *p = '\0';
|
---|
| 1559 | sl_strlcpy(hostname, buf.nodename, 256);
|
---|
| 1560 | } else {
|
---|
| 1561 | #ifdef HAVE_GETHOSTNAME
|
---|
| 1562 | if (0 != gethostname(hostname, 256))
|
---|
| 1563 | {
|
---|
| 1564 | sh_error_handle(SH_ERR_WARN, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
| 1565 | _("nodename returned by uname may be truncated"),
|
---|
| 1566 | _("sh_unix_localhost"));
|
---|
| 1567 | sl_strlcpy (hostname, buf.nodename, 256);
|
---|
| 1568 | }
|
---|
| 1569 | else
|
---|
| 1570 | {
|
---|
| 1571 | hostname[255] = '\0';
|
---|
| 1572 | }
|
---|
| 1573 | #else
|
---|
| 1574 | sh_error_handle(SH_ERR_WARN, FIL__, __LINE__, 0, MSG_E_SUBGEN,
|
---|
| 1575 | _("nodename returned by uname may be truncated"),
|
---|
| 1576 | _("sh_unix_localhost"));
|
---|
| 1577 | sl_strlcpy(hostname, buf.nodename, 256);
|
---|
| 1578 | #endif
|
---|
| 1579 | }
|
---|
| 1580 | }
|
---|
| 1581 | else
|
---|
| 1582 | {
|
---|
| 1583 | sl_strlcpy(hostname, buf.nodename, 256);
|
---|
| 1584 | }
|
---|
| 1585 |
|
---|
[134] | 1586 | SH_MUTEX_LOCK(mutex_resolv);
|
---|
[1] | 1587 | he1 = sh_gethostbyname(hostname);
|
---|
| 1588 |
|
---|
[134] | 1589 | if (he1 != NULL)
|
---|
| 1590 | {
|
---|
| 1591 | sl_strlcpy (sh.host.name, sh_unix_h_name(he1), SH_PATHBUF);
|
---|
| 1592 | }
|
---|
| 1593 | SH_MUTEX_UNLOCK(mutex_resolv);
|
---|
| 1594 |
|
---|
[1] | 1595 | if (he1 == NULL)
|
---|
| 1596 | {
|
---|
| 1597 | dlog(1, FIL__, __LINE__,
|
---|
| 1598 | _("According to uname, your nodename is %s, but your resolver\nlibrary cannot resolve this nodename to a FQDN. For more information, see the entry about self-resolving under 'Most frequently' in the FAQ that you will find in the docs/ subdirectory.\n"),
|
---|
| 1599 | hostname);
|
---|
| 1600 | sl_strlcpy (sh.host.name, hostname, SH_PATHBUF);
|
---|
| 1601 | }
|
---|
| 1602 |
|
---|
| 1603 |
|
---|
| 1604 | /* check whether it looks like a FQDN
|
---|
| 1605 | */
|
---|
| 1606 | len = sl_strlen(sh.host.name);
|
---|
| 1607 | for (i = 0; i < len; ++i)
|
---|
| 1608 | if (sh.host.name[i] == '.') ++ddot;
|
---|
| 1609 |
|
---|
| 1610 | if (ddot == 0 && he1 != NULL)
|
---|
| 1611 | {
|
---|
| 1612 | dlog(1, FIL__, __LINE__,
|
---|
| 1613 | _("According to uname, your nodename is %s, but your resolver\nlibrary cannot resolve this nodename to a FQDN.\nRather, it resolves this to %s.\nFor more information, see the entry about self-resolving under\n'Most frequently' in the FAQ that you will find in the docs/ subdirectory.\n"),
|
---|
| 1614 | hostname, sh.host.name);
|
---|
| 1615 | sl_strlcpy (sh.host.name,
|
---|
| 1616 | inet_ntoa (*(struct in_addr *) he1->h_addr),
|
---|
| 1617 | SH_PATHBUF);
|
---|
| 1618 | SL_RET0(_("sh_unix_localhost"));
|
---|
| 1619 | }
|
---|
| 1620 |
|
---|
| 1621 | if (is_numeric(sh.host.name))
|
---|
| 1622 | {
|
---|
| 1623 | dlog(1, FIL__, __LINE__,
|
---|
| 1624 | _("According to uname, your nodename is %s, but your resolver\nlibrary cannot resolve this nodename to a FQDN.\nRather, it resolves this to %s.\nFor more information, see the entry about self-resolving under\n'Most frequently' in the FAQ that you will find in the docs/ subdirectory.\n"),
|
---|
| 1625 | hostname, sh.host.name);
|
---|
| 1626 | }
|
---|
| 1627 |
|
---|
| 1628 | SL_RET0(_("sh_unix_localhost"));
|
---|
| 1629 | }
|
---|
| 1630 | #else
|
---|
| 1631 | void sh_unix_localhost()
|
---|
| 1632 | {
|
---|
| 1633 | struct hostent * he1;
|
---|
| 1634 | int i;
|
---|
| 1635 | int ddot = 0;
|
---|
| 1636 | int len;
|
---|
| 1637 | char hostname[1024];
|
---|
| 1638 |
|
---|
| 1639 |
|
---|
| 1640 | SL_ENTER(_("sh_unix_localhost"));
|
---|
| 1641 |
|
---|
| 1642 | (void) gethostname (hostname, 1024);
|
---|
| 1643 | hostname[1023] = '\0';
|
---|
[134] | 1644 |
|
---|
| 1645 | SH_MUTEX_LOCK(mutex_resolv);
|
---|
[1] | 1646 | he1 = sh_gethostbyname(hostname);
|
---|
| 1647 |
|
---|
| 1648 | if (he1 != NULL)
|
---|
| 1649 | {
|
---|
[29] | 1650 | sl_strlcpy (sh.host.name, sh_unix_h_name(he1), SH_PATHBUF);
|
---|
[1] | 1651 | }
|
---|
[134] | 1652 | SH_MUTEX_UNLOCK(mutex_resolv);
|
---|
| 1653 |
|
---|
| 1654 | if (he1 == NULL)
|
---|
[1] | 1655 | {
|
---|
| 1656 | dlog(1, FIL__, __LINE__,
|
---|
| 1657 | _("According to gethostname, your nodename is %s, but your resolver\nlibrary cannot resolve this nodename to a FQDN.\nFor more information, see the entry about self-resolving under\n'Most frequently' in the FAQ that you will find in the docs/ subdirectory.\n"),
|
---|
| 1658 | hostname);
|
---|
| 1659 | sl_strlcpy (sh.host.name, _("localhost"), SH_PATHBUF);
|
---|
| 1660 | SL_RET0(_("sh_unix_localhost"));
|
---|
| 1661 | }
|
---|
| 1662 |
|
---|
| 1663 | /* check whether it looks like a FQDN
|
---|
| 1664 | */
|
---|
| 1665 | len = sl_strlen(sh.host.name);
|
---|
| 1666 | for (i = 0; i < len; ++i)
|
---|
| 1667 | if (sh.host.name[i] == '.') ++ddot;
|
---|
| 1668 | if (ddot == 0)
|
---|
| 1669 | {
|
---|
| 1670 | dlog(1, FIL__, __LINE__,
|
---|
| 1671 | _("According to uname, your nodename is %s, but your resolver\nlibrary cannot resolve this nodename to a FQDN.\nRather, it resolves this to %s.\nFor more information, see the entry about self-resolving under\n'Most frequently' in the FAQ that you will find in the docs/ subdirectory.\n"),
|
---|
| 1672 | hostname, sh.host.name);
|
---|
| 1673 | sl_strlcpy (sh.host.name,
|
---|
| 1674 | inet_ntoa (*(struct in_addr *) he1->h_addr),
|
---|
| 1675 | SH_PATHBUF);
|
---|
| 1676 | SL_RET0(_("sh_unix_localhost"));
|
---|
| 1677 | }
|
---|
| 1678 |
|
---|
| 1679 | if (is_numeric(sh.host.name))
|
---|
| 1680 | {
|
---|
| 1681 | dlog(1, FIL__, __LINE__,
|
---|
| 1682 | _("According to uname, your nodename is %s, but your resolver\nlibrary cannot resolve this nodename to a FQDN.\nRather, it resolves this to %s.\nFor more information, see the entry about self-resolving under\n'Most frequently' in the FAQ that you will find in the docs/ subdirectory.\n"),
|
---|
| 1683 | hostname, sh.host.name);
|
---|
| 1684 | }
|
---|
| 1685 |
|
---|
| 1686 | SL_RET0(_("sh_unix_localhost"));
|
---|
| 1687 | }
|
---|
| 1688 | #endif
|
---|
| 1689 |
|
---|
| 1690 |
|
---|
| 1691 | void sh_unix_memlock()
|
---|
| 1692 | {
|
---|
| 1693 | SL_ENTER(_("sh_unix_memlock"));
|
---|
| 1694 |
|
---|
| 1695 | /* do this before dropping privileges
|
---|
| 1696 | */
|
---|
| 1697 | #if defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK)
|
---|
| 1698 | if (skey->mlock_failed == SL_FALSE)
|
---|
| 1699 | {
|
---|
[19] | 1700 | if ( (-1) == sh_unix_mlock( FIL__, __LINE__,
|
---|
| 1701 | (char *) skey, sizeof (sh_key_t)) )
|
---|
[1] | 1702 | {
|
---|
[134] | 1703 | SH_MUTEX_LOCK_UNSAFE(mutex_skey);
|
---|
[1] | 1704 | skey->mlock_failed = SL_TRUE;
|
---|
[134] | 1705 | SH_MUTEX_UNLOCK_UNSAFE(mutex_skey);
|
---|
[1] | 1706 | }
|
---|
| 1707 | }
|
---|
| 1708 | #else
|
---|
| 1709 | if (skey->mlock_failed == SL_FALSE)
|
---|
| 1710 | {
|
---|
[134] | 1711 | SH_MUTEX_LOCK_UNSAFE(mutex_skey);
|
---|
[1] | 1712 | skey->mlock_failed = SL_TRUE;
|
---|
[134] | 1713 | SH_MUTEX_UNLOCK_UNSAFE(mutex_skey);
|
---|
[1] | 1714 | }
|
---|
| 1715 | #endif
|
---|
| 1716 |
|
---|
| 1717 | SL_RET0(_("sh_unix_memlock"));
|
---|
| 1718 | }
|
---|
| 1719 |
|
---|
| 1720 | #ifdef SH_WITH_SERVER
|
---|
| 1721 | char * chroot_dir = NULL;
|
---|
| 1722 |
|
---|
[20] | 1723 | int sh_unix_set_chroot(const char * str)
|
---|
[1] | 1724 | {
|
---|
| 1725 | size_t len;
|
---|
| 1726 | static int block = 0;
|
---|
| 1727 |
|
---|
| 1728 | if (block == 1)
|
---|
| 1729 | return 0;
|
---|
| 1730 |
|
---|
| 1731 | if (str && *str == '/')
|
---|
| 1732 | {
|
---|
| 1733 | len = strlen(str) + 1;
|
---|
| 1734 | chroot_dir = malloc(strlen(str) + 1); /* only once */
|
---|
| 1735 | if (!chroot_dir)
|
---|
| 1736 | {
|
---|
| 1737 | fprintf(stderr, _("%s: %d: Out of memory\n"), FIL__, __LINE__);
|
---|
| 1738 | return 1;
|
---|
| 1739 | }
|
---|
| 1740 | sl_strlcpy(chroot_dir, str, len);
|
---|
| 1741 | block = 1;
|
---|
| 1742 | return 0;
|
---|
| 1743 | }
|
---|
| 1744 | return 1;
|
---|
| 1745 | }
|
---|
| 1746 |
|
---|
| 1747 | int sh_unix_chroot()
|
---|
| 1748 | {
|
---|
| 1749 | int status;
|
---|
| 1750 |
|
---|
| 1751 | if (chroot_dir != NULL)
|
---|
| 1752 | {
|
---|
| 1753 | status = retry_aud_chdir(FIL__, __LINE__, chroot_dir);
|
---|
| 1754 | if ( (-1) == status )
|
---|
| 1755 | {
|
---|
[132] | 1756 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 1757 | status = errno;
|
---|
| 1758 | sh_error_handle ((-1), FIL__, __LINE__, status, MSG_W_CHDIR,
|
---|
[132] | 1759 | sh_error_message (status, errbuf, sizeof(errbuf)), chroot_dir);
|
---|
[1] | 1760 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 1761 | }
|
---|
[22] | 1762 | /* flawfinder: ignore */
|
---|
[1] | 1763 | return (chroot(chroot_dir));
|
---|
| 1764 | }
|
---|
| 1765 | return 0;
|
---|
| 1766 | }
|
---|
| 1767 | /* #ifdef SH_WITH_SERVER */
|
---|
| 1768 | #else
|
---|
| 1769 | int sh_unix_chroot() { return 0; }
|
---|
| 1770 | #endif
|
---|
| 1771 |
|
---|
| 1772 | /* daemon mode
|
---|
| 1773 | */
|
---|
| 1774 | static int block_setdeamon = 0;
|
---|
| 1775 |
|
---|
[20] | 1776 | int sh_unix_setdeamon(const char * dummy)
|
---|
[1] | 1777 | {
|
---|
| 1778 | int res = 0;
|
---|
| 1779 |
|
---|
| 1780 | SL_ENTER(_("sh_unix_setdeamon"));
|
---|
| 1781 |
|
---|
| 1782 | if (block_setdeamon != 0)
|
---|
| 1783 | SL_RETURN((0),_("sh_unix_setdeamon"));
|
---|
| 1784 |
|
---|
| 1785 | if (dummy == NULL)
|
---|
| 1786 | sh.flag.isdaemon = ON;
|
---|
| 1787 | else
|
---|
| 1788 | res = sh_util_flagval (dummy, &sh.flag.isdaemon);
|
---|
| 1789 |
|
---|
| 1790 | if (sh.flag.opts == S_TRUE)
|
---|
| 1791 | block_setdeamon = 1;
|
---|
| 1792 |
|
---|
| 1793 | SL_RETURN(res, _("sh_unix_setdeamon"));
|
---|
| 1794 | }
|
---|
| 1795 | #if defined(HAVE_LIBPRELUDE)
|
---|
| 1796 | #include "sh_prelude.h"
|
---|
| 1797 | #endif
|
---|
| 1798 |
|
---|
[20] | 1799 | int sh_unix_setnodeamon(const char * dummy)
|
---|
[1] | 1800 | {
|
---|
| 1801 | int res = 0;
|
---|
[132] | 1802 |
|
---|
[1] | 1803 | SL_ENTER(_("sh_unix_setnodeamon"));
|
---|
| 1804 |
|
---|
| 1805 | if (block_setdeamon != 0)
|
---|
| 1806 | SL_RETURN((0),_("sh_unix_setmodeamon"));
|
---|
| 1807 |
|
---|
| 1808 | if (dummy == NULL)
|
---|
| 1809 | sh.flag.isdaemon = OFF;
|
---|
| 1810 | else
|
---|
| 1811 | res = sh_util_flagval (dummy, &sh.flag.isdaemon);
|
---|
| 1812 |
|
---|
| 1813 | if (sh.flag.opts == S_TRUE)
|
---|
| 1814 | block_setdeamon = 1;
|
---|
| 1815 |
|
---|
| 1816 | SL_RETURN(res, _("sh_unix_setnodeamon"));
|
---|
| 1817 | }
|
---|
| 1818 |
|
---|
| 1819 | int sh_unix_init(int goDaemon)
|
---|
| 1820 | {
|
---|
| 1821 | int status;
|
---|
| 1822 | uid_t uid;
|
---|
| 1823 | pid_t oldpid = getpid();
|
---|
| 1824 | #if defined(SH_WITH_SERVER)
|
---|
| 1825 | extern int sh_socket_open_int ();
|
---|
| 1826 | #endif
|
---|
[132] | 1827 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 1828 |
|
---|
| 1829 | SL_ENTER(_("sh_unix_init"));
|
---|
| 1830 |
|
---|
| 1831 | /* fork twice, exit the parent process
|
---|
| 1832 | */
|
---|
| 1833 | if (goDaemon == 1) {
|
---|
| 1834 |
|
---|
| 1835 | switch (aud_fork(FIL__, __LINE__)) {
|
---|
| 1836 | case 0: break; /* child process continues */
|
---|
| 1837 | case -1: SL_RETURN((-1),_("sh_unix_init")); /* error */
|
---|
| 1838 | default: aud__exit(FIL__, __LINE__, 0); /* parent process exits */
|
---|
| 1839 | }
|
---|
| 1840 |
|
---|
| 1841 | /* Child processes do not inherit page locks across a fork.
|
---|
| 1842 | * Error in next fork would return in this (?) thread of execution.
|
---|
| 1843 | */
|
---|
| 1844 | sh_unix_memlock();
|
---|
| 1845 |
|
---|
| 1846 | setsid(); /* should not fail */
|
---|
| 1847 |
|
---|
| 1848 | switch (aud_fork(FIL__, __LINE__)) {
|
---|
| 1849 | case 0: break; /* child process continues */
|
---|
| 1850 | case -1: SL_RETURN((-1),_("sh_unix_init")); /* error */
|
---|
| 1851 | default: aud__exit(FIL__, __LINE__, 0); /* parent process exits */
|
---|
| 1852 | }
|
---|
| 1853 |
|
---|
| 1854 | /* Child processes do not inherit page locks across a fork.
|
---|
| 1855 | */
|
---|
| 1856 | sh_unix_memlock();
|
---|
| 1857 |
|
---|
| 1858 | } else {
|
---|
| 1859 | setsid(); /* should not fail */
|
---|
| 1860 | }
|
---|
| 1861 |
|
---|
| 1862 | /* set working directory
|
---|
| 1863 | */
|
---|
| 1864 | #ifdef SH_PROFILE
|
---|
| 1865 | status = 0;
|
---|
| 1866 | #else
|
---|
| 1867 | status = retry_aud_chdir(FIL__, __LINE__, "/");
|
---|
| 1868 | #endif
|
---|
| 1869 | if ( (-1) == status )
|
---|
| 1870 | {
|
---|
| 1871 | status = errno;
|
---|
| 1872 | sh_error_handle ((-1), FIL__, __LINE__, status, MSG_W_CHDIR,
|
---|
[132] | 1873 | sh_error_message (status, errbuf, sizeof(errbuf)), "/");
|
---|
[1] | 1874 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 1875 | }
|
---|
| 1876 |
|
---|
| 1877 | /* reset timers
|
---|
| 1878 | */
|
---|
| 1879 | sh_unix_resettimer();
|
---|
| 1880 |
|
---|
| 1881 | /* signal handlers
|
---|
| 1882 | */
|
---|
| 1883 | sh_unix_resetsignals();
|
---|
| 1884 | #if defined(SCREW_IT_UP)
|
---|
| 1885 | sh_sigtrap_prepare();
|
---|
| 1886 | #endif
|
---|
| 1887 | sh_unix_siginstall (goDaemon);
|
---|
| 1888 |
|
---|
| 1889 | /* set file creation mask
|
---|
| 1890 | */
|
---|
| 1891 | (void) umask (0); /* should not fail */
|
---|
| 1892 |
|
---|
| 1893 | /* set resource limits to maximum, and
|
---|
| 1894 | * core dump size to zero
|
---|
| 1895 | */
|
---|
| 1896 | sh_unix_setlimits();
|
---|
| 1897 |
|
---|
| 1898 | /* zero out the environment (like PATH='\0')
|
---|
| 1899 | */
|
---|
| 1900 | sh_unix_zeroenv();
|
---|
| 1901 |
|
---|
| 1902 | if (goDaemon == 1)
|
---|
| 1903 | {
|
---|
[92] | 1904 | /* Close first tree file descriptors
|
---|
[84] | 1905 | */
|
---|
[92] | 1906 | close (0); /* if running as daemon */
|
---|
| 1907 | close (1); /* if running as daemon */
|
---|
| 1908 | close (2); /* if running as daemon */
|
---|
[84] | 1909 |
|
---|
| 1910 | /* Enable full error logging
|
---|
| 1911 | */
|
---|
| 1912 | sh_error_only_stderr (S_FALSE);
|
---|
| 1913 |
|
---|
| 1914 | /* open first three streams to /dev/null
|
---|
| 1915 | */
|
---|
| 1916 | status = aud_open(FIL__, __LINE__, SL_NOPRIV, _("/dev/null"), O_RDWR, 0);
|
---|
| 1917 | if (status < 0)
|
---|
| 1918 | {
|
---|
| 1919 | status = errno;
|
---|
| 1920 | sh_error_handle((-1), FIL__, __LINE__, status, MSG_E_SUBGEN,
|
---|
[132] | 1921 | sh_error_message(status, errbuf, sizeof(errbuf)), _("open"));
|
---|
[84] | 1922 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 1923 | }
|
---|
| 1924 |
|
---|
| 1925 | status = retry_aud_dup(FIL__, __LINE__, 0);
|
---|
| 1926 | if (status >= 0)
|
---|
| 1927 | retry_aud_dup(FIL__, __LINE__, 0);
|
---|
| 1928 |
|
---|
| 1929 | if (status < 0)
|
---|
| 1930 | {
|
---|
| 1931 | status = errno;
|
---|
| 1932 | sh_error_handle((-1), FIL__, __LINE__, status, MSG_E_SUBGEN,
|
---|
[132] | 1933 | sh_error_message(status, errbuf, sizeof(errbuf)), _("dup"));
|
---|
[84] | 1934 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 1935 | }
|
---|
| 1936 |
|
---|
[86] | 1937 | sh_error_enable_unsafe (S_TRUE);
|
---|
[1] | 1938 | #if defined(HAVE_LIBPRELUDE)
|
---|
| 1939 | sh_prelude_reset ();
|
---|
| 1940 | #endif
|
---|
| 1941 |
|
---|
| 1942 | /* --- wait until parent has exited ---
|
---|
| 1943 | */
|
---|
| 1944 | while (1 == 1)
|
---|
| 1945 | {
|
---|
| 1946 | errno = 0;
|
---|
| 1947 | if (0 > aud_kill (FIL__, __LINE__, oldpid, 0) && errno == ESRCH)
|
---|
| 1948 | {
|
---|
| 1949 | break;
|
---|
| 1950 | }
|
---|
| 1951 | retry_msleep(0, 1);
|
---|
| 1952 | }
|
---|
| 1953 |
|
---|
| 1954 | /* write PID file
|
---|
| 1955 | */
|
---|
| 1956 | status = sh_unix_write_pid_file();
|
---|
| 1957 | if (status < 0)
|
---|
| 1958 | {
|
---|
| 1959 | sl_get_euid(&uid);
|
---|
| 1960 | sh_error_handle ((-1), FIL__, __LINE__, status, MSG_PIDFILE,
|
---|
| 1961 | (long) uid, sh.srvlog.alt);
|
---|
| 1962 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 1963 | }
|
---|
| 1964 | #if defined(SH_WITH_SERVER)
|
---|
| 1965 | sh_socket_open_int ();
|
---|
| 1966 | #endif
|
---|
| 1967 | }
|
---|
| 1968 | else
|
---|
| 1969 | {
|
---|
[86] | 1970 | sh_error_enable_unsafe (S_TRUE);
|
---|
[1] | 1971 | #if defined(HAVE_LIBPRELUDE)
|
---|
| 1972 | sh_prelude_reset ();
|
---|
| 1973 | #endif
|
---|
| 1974 | #if defined(SH_WITH_SERVER)
|
---|
| 1975 | sh_socket_open_int ();
|
---|
| 1976 | #endif
|
---|
| 1977 | }
|
---|
| 1978 |
|
---|
| 1979 | /* chroot (this is a no-op if no chroot dir is specified
|
---|
| 1980 | */
|
---|
| 1981 | status = sh_unix_chroot();
|
---|
| 1982 | if (status < 0)
|
---|
| 1983 | {
|
---|
| 1984 | status = errno;
|
---|
| 1985 | sh_error_handle((-1), FIL__, __LINE__, status, MSG_E_SUBGEN,
|
---|
[132] | 1986 | sh_error_message(status, errbuf, sizeof(errbuf)), _("chroot"));
|
---|
[1] | 1987 | aud_exit(FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 1988 | }
|
---|
| 1989 |
|
---|
| 1990 | /* drop capabilities
|
---|
| 1991 | */
|
---|
| 1992 | sl_drop_cap();
|
---|
| 1993 |
|
---|
| 1994 | SL_RETURN((0),_("sh_unix_init"));
|
---|
| 1995 | }
|
---|
| 1996 |
|
---|
| 1997 | /********************************************************
|
---|
| 1998 | *
|
---|
| 1999 | * TIME
|
---|
| 2000 | *
|
---|
| 2001 | ********************************************************/
|
---|
| 2002 |
|
---|
| 2003 | /* Figure out the time offset of the current timezone
|
---|
| 2004 | * in a portable way.
|
---|
| 2005 | */
|
---|
| 2006 | char * t_zone(const time_t * xx)
|
---|
| 2007 | {
|
---|
| 2008 | struct tm aa;
|
---|
| 2009 | struct tm bb;
|
---|
| 2010 | struct tm * cc;
|
---|
| 2011 | int sign = 0;
|
---|
| 2012 | int diff = 0;
|
---|
| 2013 | int hh, mm;
|
---|
| 2014 | static char tz[64];
|
---|
| 2015 |
|
---|
| 2016 | SL_ENTER(_("t_zone"));
|
---|
| 2017 |
|
---|
[131] | 2018 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GMTIME_R)
|
---|
| 2019 | cc = gmtime_r (xx, &aa);
|
---|
| 2020 | #else
|
---|
[1] | 2021 | cc = gmtime (xx);
|
---|
| 2022 | memcpy (&aa, cc, sizeof(struct tm));
|
---|
[131] | 2023 | #endif
|
---|
| 2024 |
|
---|
| 2025 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_LOCALTIME_R)
|
---|
| 2026 | cc = localtime_r (xx, &bb);
|
---|
| 2027 | #else
|
---|
[1] | 2028 | cc = localtime (xx);
|
---|
| 2029 | memcpy (&bb, cc, sizeof(struct tm));
|
---|
[131] | 2030 | #endif
|
---|
[1] | 2031 |
|
---|
| 2032 | /* Check for datum wrap-around.
|
---|
| 2033 | */
|
---|
| 2034 | if (aa.tm_year < bb.tm_year)
|
---|
| 2035 | sign = (-1);
|
---|
| 2036 | else if (aa.tm_mon < bb.tm_mon)
|
---|
| 2037 | sign = (-1);
|
---|
| 2038 | else if (aa.tm_mday < bb.tm_mday)
|
---|
| 2039 | sign = (-1);
|
---|
| 2040 | else if (bb.tm_year < aa.tm_year)
|
---|
| 2041 | sign = ( 1);
|
---|
| 2042 | else if (bb.tm_mon < aa.tm_mon)
|
---|
| 2043 | sign = ( 1);
|
---|
| 2044 | else if (bb.tm_mday < aa.tm_mday)
|
---|
| 2045 | sign = ( 1);
|
---|
| 2046 |
|
---|
| 2047 | diff = aa.tm_hour * 60 + aa.tm_min;
|
---|
| 2048 | diff = (bb.tm_hour * 60 + bb.tm_min) - diff;
|
---|
| 2049 | diff = diff - (sign * 24 * 60); /* datum wrap-around correction */
|
---|
| 2050 | hh = diff / 60;
|
---|
| 2051 | mm = diff - (hh * 60);
|
---|
| 2052 | sprintf (tz, _("%+03d%02d"), hh, mm); /* known to fit */
|
---|
| 2053 |
|
---|
| 2054 | SL_RETURN(tz, _("t_zone"));
|
---|
| 2055 | }
|
---|
| 2056 |
|
---|
| 2057 | unsigned long sh_unix_longtime ()
|
---|
| 2058 | {
|
---|
| 2059 | return ((unsigned long)time(NULL));
|
---|
| 2060 | }
|
---|
| 2061 |
|
---|
| 2062 | #ifdef HAVE_GETTIMEOFDAY
|
---|
| 2063 | unsigned long sh_unix_notime ()
|
---|
| 2064 | {
|
---|
| 2065 | struct timeval tv;
|
---|
| 2066 |
|
---|
| 2067 | gettimeofday (&tv, NULL);
|
---|
| 2068 |
|
---|
| 2069 | return ((unsigned long)(tv.tv_sec + tv.tv_usec * 10835 + getpid() + getppid()));
|
---|
| 2070 |
|
---|
| 2071 | }
|
---|
| 2072 | #endif
|
---|
| 2073 |
|
---|
| 2074 | static int count_dev_time = 0;
|
---|
| 2075 |
|
---|
| 2076 | void reset_count_dev_time(void)
|
---|
| 2077 | {
|
---|
| 2078 | count_dev_time = 0;
|
---|
| 2079 | return;
|
---|
| 2080 | }
|
---|
| 2081 |
|
---|
[22] | 2082 | int sh_unix_settimeserver (const char * address)
|
---|
[1] | 2083 | {
|
---|
| 2084 |
|
---|
| 2085 | SL_ENTER(_("sh_unix_settimeserver"));
|
---|
| 2086 |
|
---|
| 2087 | if (address != NULL && count_dev_time < 2
|
---|
| 2088 | && sl_strlen(address) < SH_PATHBUF)
|
---|
| 2089 | {
|
---|
| 2090 | if (count_dev_time == 0)
|
---|
| 2091 | sl_strlcpy (sh.srvtime.name, address, SH_PATHBUF);
|
---|
| 2092 | else
|
---|
| 2093 | sl_strlcpy (sh.srvtime.alt, address, SH_PATHBUF);
|
---|
| 2094 |
|
---|
| 2095 | ++count_dev_time;
|
---|
| 2096 | SL_RETURN((0), _("sh_unix_settimeserver"));
|
---|
| 2097 | }
|
---|
| 2098 | SL_RETURN((-1), _("sh_unix_settimeserver"));
|
---|
| 2099 | }
|
---|
| 2100 |
|
---|
| 2101 |
|
---|
| 2102 | #ifdef HAVE_NTIME
|
---|
| 2103 | #define UNIXEPOCH 2208988800UL /* difference between Unix time and net time
|
---|
| 2104 | * The UNIX EPOCH starts in 1970.
|
---|
| 2105 | */
|
---|
| 2106 | #include <sys/socket.h>
|
---|
| 2107 | #include <netinet/in.h>
|
---|
| 2108 | #include <arpa/inet.h>
|
---|
| 2109 | #include <netdb.h>
|
---|
| 2110 | #include <ctype.h>
|
---|
| 2111 | #endif
|
---|
| 2112 |
|
---|
| 2113 | /* Timeserver service. */
|
---|
| 2114 | /* define is missing on HP-UX 10.20 */
|
---|
| 2115 | #ifndef IPPORT_TIMESERVER
|
---|
| 2116 | #define IPPORT_TIMESERVER 37
|
---|
| 2117 | #endif
|
---|
| 2118 |
|
---|
[132] | 2119 | char * sh_unix_time (time_t thetime, char * buffer, size_t len)
|
---|
[1] | 2120 | {
|
---|
| 2121 |
|
---|
| 2122 | int status;
|
---|
[132] | 2123 | char AsciiTime[81]; /* local time */
|
---|
[1] | 2124 | time_t time_now;
|
---|
| 2125 | struct tm * time_ptr;
|
---|
[131] | 2126 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_LOCALTIME_R)
|
---|
| 2127 | struct tm time_tm;
|
---|
| 2128 | #endif
|
---|
[1] | 2129 | #ifdef SH_USE_XML
|
---|
| 2130 | static char deftime[] = N_("0000-00-00T00:00:00"); /* default time */
|
---|
| 2131 | #else
|
---|
| 2132 | static char deftime[] = N_("[0000-00-00T00:00:00]"); /* default time */
|
---|
| 2133 | #endif
|
---|
| 2134 |
|
---|
| 2135 | #ifdef HAVE_NTIME
|
---|
| 2136 | int fd; /* network file descriptor */
|
---|
| 2137 | u_char net_time[4]; /* remote time in network format */
|
---|
| 2138 | static int failerr = 0; /* no net time */
|
---|
| 2139 | int fail = 0; /* no net time */
|
---|
| 2140 | int errflag;
|
---|
| 2141 | char errmsg[256];
|
---|
| 2142 | char error_call[SH_MINIBUF];
|
---|
| 2143 | int error_num;
|
---|
| 2144 | #endif
|
---|
| 2145 |
|
---|
| 2146 | SL_ENTER(_("sh_unix_time"));
|
---|
| 2147 |
|
---|
| 2148 | #ifdef HAVE_NTIME
|
---|
| 2149 | if (thetime == 0)
|
---|
| 2150 | {
|
---|
| 2151 | if (sh.srvtime.name[0] == '\0')
|
---|
| 2152 | {
|
---|
| 2153 | fail = 1;
|
---|
| 2154 | (void) time (&time_now);
|
---|
| 2155 | }
|
---|
| 2156 | else /* have a timeserver address */
|
---|
| 2157 | {
|
---|
| 2158 | fd = connect_port_2 (sh.srvtime.name, sh.srvtime.alt,
|
---|
| 2159 | IPPORT_TIMESERVER,
|
---|
| 2160 | error_call, &error_num, errmsg, sizeof(errmsg));
|
---|
| 2161 | if (fd >= 0)
|
---|
| 2162 | {
|
---|
| 2163 | if (4 != read_port (fd, (char *) net_time, 4, &errflag, 2))
|
---|
| 2164 | {
|
---|
| 2165 | fail = 1;
|
---|
| 2166 | sh_error_handle ((-1), FIL__, __LINE__, errflag,
|
---|
| 2167 | MSG_E_NLOST,
|
---|
| 2168 | _("time"), sh.srvtime.name);
|
---|
| 2169 | }
|
---|
| 2170 | close(fd);
|
---|
| 2171 | }
|
---|
| 2172 | else
|
---|
| 2173 | {
|
---|
| 2174 | sh_error_handle ((-1), FIL__, __LINE__, error_num,
|
---|
| 2175 | MSG_E_NET, errmsg, error_call,
|
---|
| 2176 | _("time"), sh.srvtime.name);
|
---|
| 2177 | fail = 1;
|
---|
| 2178 | }
|
---|
| 2179 |
|
---|
| 2180 | if (fail == 0)
|
---|
| 2181 | {
|
---|
| 2182 | time_now = ntohl(* (long *) net_time) - UNIXEPOCH;
|
---|
| 2183 | /* fprintf(stderr, "TIME IS %ld\n", time_now); */
|
---|
| 2184 | if (failerr == 1) {
|
---|
| 2185 | failerr = 0;
|
---|
| 2186 | sh_error_handle ((-1), FIL__, __LINE__, 0,
|
---|
| 2187 | MSG_E_NEST,
|
---|
| 2188 | _("time"), sh.srvtime.name);
|
---|
| 2189 | }
|
---|
| 2190 | }
|
---|
| 2191 | else
|
---|
| 2192 | {
|
---|
| 2193 | (void) time (&time_now);
|
---|
| 2194 | if (failerr == 0)
|
---|
| 2195 | {
|
---|
| 2196 | failerr = 1;
|
---|
| 2197 | sh_error_handle ((-1), FIL__, __LINE__, errflag,
|
---|
| 2198 | MSG_SRV_FAIL,
|
---|
| 2199 | _("time"), sh.srvtime.name);
|
---|
| 2200 | }
|
---|
| 2201 | }
|
---|
| 2202 | }
|
---|
| 2203 | }
|
---|
| 2204 | else
|
---|
| 2205 | {
|
---|
| 2206 | time_now = thetime;
|
---|
| 2207 | }
|
---|
| 2208 |
|
---|
| 2209 | /* #ifdef HAVE_NTIME */
|
---|
| 2210 | #else
|
---|
| 2211 |
|
---|
| 2212 | if (thetime == 0)
|
---|
| 2213 | {
|
---|
| 2214 | (void) time (&time_now);
|
---|
| 2215 | }
|
---|
| 2216 | else
|
---|
| 2217 | {
|
---|
| 2218 | time_now = thetime;
|
---|
| 2219 | }
|
---|
| 2220 |
|
---|
| 2221 | /* #ifdef HAVE_NTIME */
|
---|
| 2222 | #endif
|
---|
| 2223 |
|
---|
[132] | 2224 | if (time_now == (-1) )
|
---|
| 2225 | {
|
---|
| 2226 | sl_strlcpy(buffer, _(deftime), len);
|
---|
| 2227 | SL_RETURN(buffer, _("sh_unix_time"));
|
---|
| 2228 | }
|
---|
[1] | 2229 | else
|
---|
[131] | 2230 | {
|
---|
| 2231 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_LOCALTIME_R)
|
---|
| 2232 | time_ptr = localtime_r (&time_now, &time_tm);
|
---|
| 2233 | #else
|
---|
| 2234 | time_ptr = localtime (&time_now);
|
---|
| 2235 | #endif
|
---|
| 2236 | }
|
---|
[1] | 2237 | if (time_ptr != NULL)
|
---|
| 2238 | {
|
---|
[132] | 2239 | status = strftime (AsciiTime, sizeof(AsciiTime),
|
---|
[1] | 2240 | #ifdef SH_USE_XML
|
---|
| 2241 | _("%Y-%m-%dT%H:%M:%S%%s"),
|
---|
| 2242 | #else
|
---|
| 2243 | _("[%Y-%m-%dT%H:%M:%S%%s]"),
|
---|
| 2244 | #endif
|
---|
| 2245 | time_ptr);
|
---|
| 2246 |
|
---|
[132] | 2247 | sl_snprintf(buffer, len, AsciiTime, t_zone(&time_now));
|
---|
[1] | 2248 |
|
---|
[132] | 2249 | if ( (status == 0) || (status == sizeof(AsciiTime)) )
|
---|
| 2250 | {
|
---|
| 2251 | sl_strlcpy(buffer, _(deftime), len);
|
---|
| 2252 | SL_RETURN( buffer, _("sh_unix_time"));
|
---|
| 2253 | }
|
---|
[1] | 2254 | else
|
---|
[132] | 2255 | {
|
---|
| 2256 | SL_RETURN(buffer, _("sh_unix_time"));
|
---|
| 2257 | }
|
---|
[1] | 2258 | }
|
---|
| 2259 |
|
---|
| 2260 | /* last resort
|
---|
| 2261 | */
|
---|
[132] | 2262 | sl_strlcpy(buffer, _(deftime), len);
|
---|
| 2263 | SL_RETURN( buffer, _("sh_unix_time"));
|
---|
[1] | 2264 | }
|
---|
| 2265 |
|
---|
| 2266 | static int sh_unix_use_localtime = S_FALSE;
|
---|
| 2267 |
|
---|
| 2268 | /* whether to use localtime for file timesatams in logs
|
---|
| 2269 | */
|
---|
[22] | 2270 | int sh_unix_uselocaltime (const char * c)
|
---|
[1] | 2271 | {
|
---|
| 2272 | int i;
|
---|
| 2273 | SL_ENTER(_("sh_unix_uselocaltime"));
|
---|
| 2274 | i = sh_util_flagval(c, &(sh_unix_use_localtime));
|
---|
| 2275 |
|
---|
| 2276 | SL_RETURN(i, _("sh_unix_uselocaltime"));
|
---|
| 2277 | }
|
---|
| 2278 |
|
---|
[132] | 2279 | char * sh_unix_gmttime (time_t thetime, char * buffer, size_t len)
|
---|
[1] | 2280 | {
|
---|
| 2281 |
|
---|
| 2282 | int status;
|
---|
| 2283 |
|
---|
| 2284 | struct tm * time_ptr;
|
---|
[131] | 2285 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS)
|
---|
| 2286 | struct tm time_tm;
|
---|
| 2287 | #endif
|
---|
[132] | 2288 | char AsciiTime[81]; /* GMT time */
|
---|
[1] | 2289 | #ifdef SH_USE_XML
|
---|
| 2290 | static char deftime[] = N_("0000-00-00T00:00:00"); /* default time */
|
---|
| 2291 | #else
|
---|
| 2292 | static char deftime[] = N_("[0000-00-00T00:00:00]"); /* default time */
|
---|
| 2293 | #endif
|
---|
| 2294 |
|
---|
| 2295 | SL_ENTER(_("sh_unix_gmttime"));
|
---|
| 2296 |
|
---|
| 2297 | if (sh_unix_use_localtime == S_FALSE)
|
---|
[131] | 2298 | {
|
---|
| 2299 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GMTIME_R)
|
---|
| 2300 | time_ptr = gmtime_r (&thetime, &time_tm);
|
---|
| 2301 | #else
|
---|
| 2302 | time_ptr = gmtime (&thetime);
|
---|
| 2303 | #endif
|
---|
| 2304 | }
|
---|
[1] | 2305 | else
|
---|
[131] | 2306 | {
|
---|
| 2307 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_LOCALTIME_R)
|
---|
| 2308 | time_ptr = localtime_r (&thetime, &time_tm);
|
---|
| 2309 | #else
|
---|
| 2310 | time_ptr = localtime (&thetime);
|
---|
| 2311 | #endif
|
---|
| 2312 | }
|
---|
[1] | 2313 | if (time_ptr != NULL)
|
---|
| 2314 | {
|
---|
| 2315 | status = strftime (AsciiTime, 80,
|
---|
| 2316 | #ifdef SH_USE_XML
|
---|
| 2317 | _("%Y-%m-%dT%H:%M:%S"),
|
---|
| 2318 | #else
|
---|
| 2319 | _("[%Y-%m-%dT%H:%M:%S]"),
|
---|
| 2320 | #endif
|
---|
| 2321 | time_ptr);
|
---|
| 2322 |
|
---|
[132] | 2323 | if ( (status == 0) || (status == 80) )
|
---|
| 2324 | sl_strlcpy(buffer, _(deftime), len);
|
---|
[1] | 2325 | else
|
---|
[132] | 2326 | sl_strlcpy(buffer, AsciiTime, len);
|
---|
| 2327 | SL_RETURN( buffer, _("sh_unix_gmttime"));
|
---|
[1] | 2328 | }
|
---|
| 2329 |
|
---|
| 2330 | /* last resort
|
---|
| 2331 | */
|
---|
[132] | 2332 | sl_strlcpy(buffer, _(deftime), len);
|
---|
| 2333 | SL_RETURN( buffer, _("sh_unix_gmttime"));
|
---|
[1] | 2334 | }
|
---|
| 2335 |
|
---|
| 2336 |
|
---|
[132] | 2337 | char * sh_unix_getUIDdir (int level, uid_t uid, char * out, size_t len)
|
---|
[1] | 2338 | {
|
---|
| 2339 | struct passwd * tempres;
|
---|
| 2340 | int status = 0;
|
---|
[131] | 2341 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWUID_R)
|
---|
| 2342 | struct passwd pwd;
|
---|
| 2343 | char buffer[SH_PWBUF_SIZE];
|
---|
| 2344 | #endif
|
---|
[132] | 2345 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 2346 |
|
---|
| 2347 | SL_ENTER(_("sh_unix_getUIDdir"));
|
---|
| 2348 |
|
---|
[131] | 2349 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWUID_R)
|
---|
| 2350 | sh_getpwuid_r(uid, &pwd, buffer, sizeof(buffer), &tempres);
|
---|
| 2351 | #else
|
---|
[1] | 2352 | errno = 0;
|
---|
| 2353 | tempres = sh_getpwuid(uid);
|
---|
| 2354 | status = errno;
|
---|
[131] | 2355 | #endif
|
---|
[1] | 2356 |
|
---|
| 2357 | if (tempres == NULL) {
|
---|
| 2358 | sh_error_handle (level, FIL__, __LINE__, EINVAL, MSG_E_PWNULL,
|
---|
[132] | 2359 | sh_error_message(status, errbuf, sizeof(errbuf)),
|
---|
[1] | 2360 | _("getpwuid"), (long) uid, _("completely missing"));
|
---|
| 2361 | SL_RETURN( NULL, _("sh_unix_getUIDdir"));
|
---|
| 2362 | }
|
---|
| 2363 |
|
---|
| 2364 | if (tempres->pw_dir != NULL) {
|
---|
[132] | 2365 | sl_strlcpy(out, tempres->pw_dir, len);
|
---|
| 2366 | SL_RETURN( out, _("sh_unix_getUIDdir"));
|
---|
[1] | 2367 | } else {
|
---|
| 2368 | sh_error_handle (level, FIL__, __LINE__, EINVAL, MSG_E_PWNULL,
|
---|
[132] | 2369 | sh_error_message(status, errbuf, sizeof(errbuf)),
|
---|
[1] | 2370 | _("getpwuid"), (long) uid, _("pw_dir"));
|
---|
| 2371 | SL_RETURN( NULL, _("sh_unix_getUIDdir"));
|
---|
| 2372 | }
|
---|
| 2373 | }
|
---|
| 2374 |
|
---|
[133] | 2375 | SH_MUTEX_STATIC(mutex_getUIDname, PTHREAD_MUTEX_INITIALIZER);
|
---|
[132] | 2376 |
|
---|
| 2377 | char * sh_unix_getUIDname (int level, uid_t uid, char * out, size_t len)
|
---|
[1] | 2378 | {
|
---|
| 2379 | struct passwd * tempres;
|
---|
[131] | 2380 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWUID_R)
|
---|
| 2381 | struct passwd pwd;
|
---|
| 2382 | char buffer[SH_PWBUF_SIZE];
|
---|
| 2383 | #endif
|
---|
[1] | 2384 | int status = 0;
|
---|
| 2385 | static uid_t old_uid;
|
---|
| 2386 | static char name[32] = { '\0' };
|
---|
[132] | 2387 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 2388 |
|
---|
| 2389 | SL_ENTER(_("sh_unix_getUIDname"));
|
---|
| 2390 |
|
---|
| 2391 | if ((uid == old_uid) && (name[0] != '\0')) {
|
---|
[132] | 2392 | out[0] = '\0';
|
---|
[133] | 2393 | SH_MUTEX_LOCK_UNSAFE(mutex_getUIDname);
|
---|
[132] | 2394 | if ((uid == old_uid) && (name[0] != '\0')) {
|
---|
| 2395 | sl_strlcpy(out, name, len);
|
---|
| 2396 | }
|
---|
[133] | 2397 | SH_MUTEX_UNLOCK_UNSAFE(mutex_getUIDname);
|
---|
[132] | 2398 | if (out[0] != '\0')
|
---|
| 2399 | SL_RETURN( out, _("sh_unix_getUIDname"));
|
---|
[1] | 2400 | }
|
---|
| 2401 |
|
---|
[131] | 2402 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWUID_R)
|
---|
| 2403 | sh_getpwuid_r(uid, &pwd, buffer, sizeof(buffer), &tempres);
|
---|
| 2404 | #else
|
---|
[1] | 2405 | errno = 0;
|
---|
| 2406 | tempres = sh_getpwuid(uid);
|
---|
| 2407 | status = errno;
|
---|
[131] | 2408 | #endif
|
---|
[1] | 2409 |
|
---|
| 2410 | if (tempres == NULL) {
|
---|
| 2411 | sh_error_handle (level, FIL__, __LINE__, EINVAL, MSG_E_PWNULL,
|
---|
[132] | 2412 | sh_error_message(status, errbuf, sizeof(errbuf)),
|
---|
[1] | 2413 | _("getpwuid"), (long) uid, _("completely missing"));
|
---|
| 2414 | SL_RETURN( NULL, _("sh_unix_getUIDname"));
|
---|
| 2415 | }
|
---|
| 2416 |
|
---|
| 2417 |
|
---|
| 2418 | if (tempres->pw_name != NULL) {
|
---|
[133] | 2419 | SH_MUTEX_LOCK_UNSAFE(mutex_getUIDname);
|
---|
[1] | 2420 | sl_strlcpy(name, tempres->pw_name, sizeof(name));
|
---|
| 2421 | old_uid = uid;
|
---|
[132] | 2422 | sl_strlcpy(out, name, len);
|
---|
[133] | 2423 | SH_MUTEX_UNLOCK_UNSAFE(mutex_getUIDname);
|
---|
[132] | 2424 | SL_RETURN( out, _("sh_unix_getUIDname"));
|
---|
[1] | 2425 | } else {
|
---|
| 2426 | sh_error_handle (level, FIL__, __LINE__, EINVAL, MSG_E_PWNULL,
|
---|
[132] | 2427 | sh_error_message(status, errbuf, sizeof(errbuf)),
|
---|
[1] | 2428 | _("getpwuid"), (long) uid, _("pw_user"));
|
---|
| 2429 | SL_RETURN( NULL, _("sh_unix_getUIDname"));
|
---|
| 2430 | }
|
---|
| 2431 | }
|
---|
| 2432 |
|
---|
[133] | 2433 | SH_MUTEX_STATIC(mutex_getGIDname, PTHREAD_MUTEX_INITIALIZER);
|
---|
[132] | 2434 |
|
---|
| 2435 | char * sh_unix_getGIDname (int level, gid_t gid, char * out, size_t len)
|
---|
[1] | 2436 | {
|
---|
| 2437 | struct group * tempres;
|
---|
| 2438 | int status = 0;
|
---|
| 2439 | static gid_t old_gid;
|
---|
| 2440 | static char name[32] = { '\0' };
|
---|
[131] | 2441 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETGRGID_R)
|
---|
| 2442 | struct group grp;
|
---|
| 2443 | char buffer[SH_GRBUF_SIZE];
|
---|
| 2444 | #endif
|
---|
[132] | 2445 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[131] | 2446 |
|
---|
[1] | 2447 |
|
---|
| 2448 | SL_ENTER(_("sh_unix_getGIDname"));
|
---|
| 2449 |
|
---|
| 2450 | if ((gid == old_gid) && (name[0] != '\0')) {
|
---|
[132] | 2451 | out[0] = '\0';
|
---|
[133] | 2452 | SH_MUTEX_LOCK_UNSAFE(mutex_getGIDname);
|
---|
[132] | 2453 | if ((gid == old_gid) && (name[0] != '\0')) {
|
---|
| 2454 | sl_strlcpy(out, name, len);
|
---|
| 2455 | }
|
---|
[133] | 2456 | SH_MUTEX_UNLOCK_UNSAFE(mutex_getGIDname);
|
---|
[132] | 2457 | if (out[0] != '\0')
|
---|
| 2458 | SL_RETURN( out, _("sh_unix_getGIDname"));
|
---|
[1] | 2459 | }
|
---|
[132] | 2460 |
|
---|
[131] | 2461 | #if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETGRGID_R)
|
---|
| 2462 | status = sh_getgrgid_r(gid, &grp, buffer, sizeof(buffer), &tempres);
|
---|
| 2463 | #else
|
---|
[1] | 2464 | errno = 0;
|
---|
| 2465 | tempres = sh_getgrgid(gid);
|
---|
| 2466 | status = errno;
|
---|
[131] | 2467 | #endif
|
---|
[1] | 2468 |
|
---|
| 2469 | if (tempres == NULL) {
|
---|
| 2470 | sh_error_handle (level, FIL__, __LINE__, EINVAL, MSG_E_GRNULL,
|
---|
[132] | 2471 | sh_error_message(status, errbuf, sizeof(errbuf)),
|
---|
[1] | 2472 | _("getgrgid"), (long) gid, _("completely missing"));
|
---|
| 2473 |
|
---|
| 2474 | SL_RETURN( NULL, _("sh_unix_getGIDname"));
|
---|
| 2475 | }
|
---|
| 2476 |
|
---|
| 2477 | if (tempres->gr_name != NULL) {
|
---|
[133] | 2478 | SH_MUTEX_LOCK_UNSAFE(mutex_getGIDname);
|
---|
[1] | 2479 | sl_strlcpy(name, tempres->gr_name, sizeof(name));
|
---|
| 2480 | old_gid = gid;
|
---|
[132] | 2481 | sl_strlcpy(out, name, len);
|
---|
[133] | 2482 | SH_MUTEX_UNLOCK_UNSAFE(mutex_getGIDname);
|
---|
[132] | 2483 | SL_RETURN( out, _("sh_unix_getGIDname"));
|
---|
[1] | 2484 | } else {
|
---|
| 2485 | sh_error_handle (level, FIL__, __LINE__, EINVAL, MSG_E_GRNULL,
|
---|
[132] | 2486 | sh_error_message(status, errbuf, sizeof(errbuf)),
|
---|
[1] | 2487 | _("getgrgid"), (long) gid, _("gr_name"));
|
---|
| 2488 | SL_RETURN( NULL, _("sh_unix_getGIDname"));
|
---|
| 2489 | }
|
---|
| 2490 | }
|
---|
| 2491 |
|
---|
| 2492 | int sh_unix_getUser ()
|
---|
| 2493 | {
|
---|
| 2494 | char * p;
|
---|
| 2495 | uid_t seuid, sruid;
|
---|
[132] | 2496 | char user[USER_MAX];
|
---|
| 2497 | char dir[SH_PATHBUF];
|
---|
[1] | 2498 |
|
---|
| 2499 | SL_ENTER(_("sh_unix_getUser"));
|
---|
| 2500 |
|
---|
| 2501 | seuid = geteuid();
|
---|
| 2502 |
|
---|
| 2503 | sh.effective.uid = seuid;
|
---|
| 2504 |
|
---|
[132] | 2505 | p = sh_unix_getUIDdir (SH_ERR_ERR, seuid, dir, sizeof(dir));
|
---|
[1] | 2506 |
|
---|
| 2507 | if (p == NULL)
|
---|
| 2508 | SL_RETURN((-1), _("sh_unix_getUser"));
|
---|
| 2509 | else
|
---|
| 2510 | {
|
---|
| 2511 | if (sl_strlen(p) >= SH_PATHBUF) {
|
---|
| 2512 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__, EINVAL, MSG_E_PWLONG,
|
---|
| 2513 | _("getpwuid"), (long) seuid, _("pw_home"));
|
---|
| 2514 | SL_RETURN((-1), _("sh_unix_getUser"));
|
---|
| 2515 | } else {
|
---|
| 2516 | sl_strlcpy ( sh.effective.home, p, SH_PATHBUF);
|
---|
| 2517 | }
|
---|
| 2518 | }
|
---|
| 2519 |
|
---|
| 2520 | sruid = getuid();
|
---|
| 2521 |
|
---|
| 2522 | sh.real.uid = sruid;
|
---|
| 2523 |
|
---|
[132] | 2524 | p = sh_unix_getUIDname (SH_ERR_ERR, sruid, user, sizeof(user));
|
---|
[1] | 2525 | if (p == NULL)
|
---|
| 2526 | SL_RETURN((-1), _("sh_unix_getUser"));
|
---|
| 2527 | else
|
---|
| 2528 | {
|
---|
| 2529 | if (sl_strlen(p) >= USER_MAX) {
|
---|
| 2530 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__, EINVAL, MSG_E_PWLONG,
|
---|
| 2531 | _("getpwuid"), (long) sruid, _("pw_user"));
|
---|
| 2532 | SL_RETURN((-1), _("sh_unix_getUser"));
|
---|
| 2533 | } else {
|
---|
| 2534 | sl_strlcpy ( sh.real.user, p, USER_MAX);
|
---|
| 2535 | }
|
---|
| 2536 | }
|
---|
| 2537 |
|
---|
[132] | 2538 | p = sh_unix_getUIDdir (SH_ERR_ERR, sruid, dir, sizeof(dir));
|
---|
[1] | 2539 |
|
---|
| 2540 | if (p == NULL)
|
---|
| 2541 | SL_RETURN((-1), _("sh_unix_getUser"));
|
---|
| 2542 | else
|
---|
| 2543 | {
|
---|
| 2544 | if (sl_strlen(p) >= SH_PATHBUF) {
|
---|
| 2545 | sh_error_handle (SH_ERR_ERR, FIL__, __LINE__, EINVAL, MSG_E_PWLONG,
|
---|
| 2546 | _("getpwuid"), (long) sruid, _("pw_home"));
|
---|
| 2547 | SL_RETURN((-1), _("sh_unix_getUser"));
|
---|
| 2548 | } else {
|
---|
| 2549 | sl_strlcpy ( sh.real.home, p, SH_PATHBUF);
|
---|
| 2550 | }
|
---|
| 2551 | }
|
---|
| 2552 |
|
---|
| 2553 | SL_RETURN((0), _("sh_unix_getUser"));
|
---|
| 2554 |
|
---|
| 2555 | /* notreached */
|
---|
| 2556 | }
|
---|
| 2557 |
|
---|
| 2558 |
|
---|
| 2559 | int sh_unix_getline (SL_TICKET fd, char * line, int sizeofline)
|
---|
| 2560 | {
|
---|
| 2561 | register int count;
|
---|
| 2562 | register int n = 0;
|
---|
| 2563 | char c;
|
---|
| 2564 |
|
---|
| 2565 | SL_ENTER(_("sh_unix_getline"));
|
---|
| 2566 |
|
---|
| 2567 | if (sizeofline < 2) {
|
---|
[34] | 2568 | line[0] = '\0';
|
---|
[1] | 2569 | SL_RETURN((0), _("sh_unix_getline"));
|
---|
| 2570 | }
|
---|
| 2571 |
|
---|
[34] | 2572 | --sizeofline;
|
---|
| 2573 |
|
---|
[1] | 2574 | while (n < sizeofline) {
|
---|
| 2575 |
|
---|
| 2576 | count = sl_read (fd, &c, 1);
|
---|
| 2577 |
|
---|
| 2578 | /* end of file
|
---|
| 2579 | */
|
---|
| 2580 | if (count < 1) {
|
---|
| 2581 | line[n] = '\0';
|
---|
| 2582 | n = -1;
|
---|
| 2583 | break;
|
---|
| 2584 | }
|
---|
| 2585 |
|
---|
| 2586 | if (/* c != '\0' && */ c != '\n') {
|
---|
| 2587 | line[n] = c;
|
---|
| 2588 | ++n;
|
---|
| 2589 | } else if (c == '\n') {
|
---|
| 2590 | if (n > 0) {
|
---|
| 2591 | line[n] = '\0';
|
---|
| 2592 | break;
|
---|
| 2593 | } else {
|
---|
| 2594 | line[n] = '\n'; /* get newline only if only char on line */
|
---|
| 2595 | ++n;
|
---|
| 2596 | line[n] = '\0';
|
---|
| 2597 | break;
|
---|
| 2598 | }
|
---|
| 2599 | } else {
|
---|
| 2600 | line[n] = '\0';
|
---|
| 2601 | break;
|
---|
| 2602 | }
|
---|
| 2603 |
|
---|
| 2604 | }
|
---|
| 2605 |
|
---|
| 2606 |
|
---|
| 2607 | line[sizeofline] = '\0'; /* make sure line is terminated */
|
---|
| 2608 | SL_RETURN((n), _("sh_unix_getline"));
|
---|
| 2609 | }
|
---|
| 2610 |
|
---|
| 2611 |
|
---|
| 2612 | #if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE)
|
---|
| 2613 |
|
---|
| 2614 | /**************************************************************
|
---|
| 2615 | *
|
---|
| 2616 | * --- FILE INFO ---
|
---|
| 2617 | *
|
---|
| 2618 | **************************************************************/
|
---|
| 2619 |
|
---|
[10] | 2620 | #if (defined(__linux__) && (defined(HAVE_LINUX_EXT2_FS_H) || defined(HAVE_EXT2FS_EXT2_FS_H))) || defined(HAVE_STAT_FLAGS)
|
---|
[1] | 2621 |
|
---|
[10] | 2622 | #if defined(__linux__)
|
---|
[1] | 2623 |
|
---|
| 2624 | /* --- Determine ext2fs file attributes. ---
|
---|
| 2625 | */
|
---|
| 2626 | #include <sys/ioctl.h>
|
---|
| 2627 | #if defined(HAVE_EXT2FS_EXT2_FS_H)
|
---|
| 2628 | #include <ext2fs/ext2_fs.h>
|
---|
| 2629 | #else
|
---|
| 2630 | #include <linux/ext2_fs.h>
|
---|
| 2631 | #endif
|
---|
| 2632 |
|
---|
[10] | 2633 | /* __linux__ includes */
|
---|
| 2634 | #endif
|
---|
| 2635 |
|
---|
[1] | 2636 | static
|
---|
| 2637 | int sh_unix_getinfo_attr (char * name,
|
---|
| 2638 | unsigned long * flags,
|
---|
| 2639 | char * c_attr,
|
---|
[10] | 2640 | int fd, struct stat * buf)
|
---|
[1] | 2641 | {
|
---|
| 2642 |
|
---|
| 2643 | /* TAKEN FROM:
|
---|
| 2644 | *
|
---|
| 2645 | * lsattr.c - List file attributes on an ext2 file system
|
---|
| 2646 | *
|
---|
| 2647 | * Copyright (C) 1993, 1994 Remy Card <card@masi.ibp.fr>
|
---|
| 2648 | * Laboratoire MASI, Institut Blaise Pascal
|
---|
| 2649 | * Universite Pierre et Marie Curie (Paris VI)
|
---|
| 2650 | *
|
---|
| 2651 | * This file can be redistributed under the terms of the GNU General
|
---|
| 2652 | * Public License
|
---|
| 2653 | */
|
---|
| 2654 |
|
---|
| 2655 | #ifdef HAVE_STAT_FLAGS
|
---|
| 2656 |
|
---|
| 2657 | SL_ENTER(_("sh_unix_getinfo_attr"));
|
---|
| 2658 |
|
---|
| 2659 | *flags = 0;
|
---|
| 2660 |
|
---|
[10] | 2661 | /* cast to void to avoid compiler warning about unused parameters */
|
---|
| 2662 | (void) fd;
|
---|
| 2663 | (void) name;
|
---|
[1] | 2664 |
|
---|
[10] | 2665 | #ifdef UF_NODUMP
|
---|
| 2666 | if (buf->st_flags & UF_NODUMP) {
|
---|
| 2667 | *flags |= UF_NODUMP;
|
---|
| 2668 | c_attr[0] = 'd';
|
---|
| 2669 | }
|
---|
| 2670 | #endif
|
---|
[1] | 2671 | #ifdef UF_IMMUTABLE
|
---|
[10] | 2672 | if (buf->st_flags & UF_IMMUTABLE) {
|
---|
| 2673 | *flags |= UF_IMMUTABLE;
|
---|
| 2674 | c_attr[1] = 'i';
|
---|
| 2675 | }
|
---|
[1] | 2676 | #endif
|
---|
| 2677 | #ifdef UF_APPEND
|
---|
[10] | 2678 | if (buf->st_flags & UF_APPEND) {
|
---|
| 2679 | *flags |= UF_APPEND;
|
---|
| 2680 | c_attr[2] = 'a';
|
---|
| 2681 | }
|
---|
[1] | 2682 | #endif
|
---|
[10] | 2683 | #ifdef UF_NOUNLINK
|
---|
| 2684 | if (buf->st_flags & UF_NOUNLINK) {
|
---|
| 2685 | *flags |= UF_NOUNLINK;
|
---|
| 2686 | c_attr[3] = 'u';
|
---|
| 2687 | }
|
---|
[1] | 2688 | #endif
|
---|
[10] | 2689 | #ifdef UF_OPAQUE
|
---|
| 2690 | if (buf->st_flags & UF_OPAQUE) {
|
---|
| 2691 | *flags |= UF_OPAQUE;
|
---|
| 2692 | c_attr[4] = 'o';
|
---|
| 2693 | }
|
---|
| 2694 | #endif
|
---|
| 2695 | #ifdef SF_ARCHIVED
|
---|
| 2696 | if (buf->st_flags & SF_ARCHIVED) {
|
---|
| 2697 | *flags |= SF_ARCHIVED;
|
---|
| 2698 | c_attr[5] = 'R';
|
---|
| 2699 | }
|
---|
| 2700 |
|
---|
| 2701 | #endif
|
---|
| 2702 | #ifdef SF_IMMUTABLE
|
---|
| 2703 | if (buf->st_flags & SF_IMMUTABLE) {
|
---|
| 2704 | *flags |= SF_IMMUTABLE;
|
---|
| 2705 | c_attr[6] = 'I';
|
---|
| 2706 | }
|
---|
| 2707 | #endif
|
---|
| 2708 | #ifdef SF_APPEND
|
---|
| 2709 | if (buf->st_flags & SF_APPEND) {
|
---|
| 2710 | *flags |= SF_APPEND;
|
---|
| 2711 | c_attr[7] = 'A';
|
---|
| 2712 | }
|
---|
| 2713 | #endif
|
---|
| 2714 | #ifdef SF_NOUNLINK
|
---|
| 2715 | if (buf->st_flags & SF_NOUNLINK) {
|
---|
| 2716 | *flags |= SF_NOUNLINK;
|
---|
| 2717 | c_attr[8] = 'U';
|
---|
| 2718 | }
|
---|
| 2719 | #endif
|
---|
[1] | 2720 |
|
---|
[10] | 2721 | /* ! HAVE_STAT_FLAGS */
|
---|
[1] | 2722 | #else
|
---|
| 2723 |
|
---|
| 2724 | #ifdef HAVE_EXT2_IOCTLS
|
---|
| 2725 | int /* fd, */ r, f;
|
---|
| 2726 |
|
---|
| 2727 | SL_ENTER(_("sh_unix_getinfo_attr"));
|
---|
| 2728 |
|
---|
| 2729 | *flags = 0;
|
---|
[10] | 2730 | (void) buf;
|
---|
[1] | 2731 |
|
---|
| 2732 | /* open() -> aud_open() R.Wichmann
|
---|
| 2733 | fd = aud_open (FIL__, __LINE__, SL_YESPRIV, name, O_RDONLY|O_NONBLOCK, 0);
|
---|
| 2734 | */
|
---|
| 2735 |
|
---|
| 2736 | if (fd == -1 || name == NULL)
|
---|
| 2737 | SL_RETURN(-1, _("sh_unix_getinfo_attr"));
|
---|
| 2738 |
|
---|
| 2739 |
|
---|
| 2740 | r = ioctl (fd, EXT2_IOC_GETFLAGS, &f);
|
---|
| 2741 | /* close (fd); */
|
---|
| 2742 |
|
---|
| 2743 | if (r == -1)
|
---|
| 2744 | SL_RETURN(-1, _("sh_unix_getinfo_attr"));
|
---|
| 2745 |
|
---|
[10] | 2746 | if (f == 0)
|
---|
| 2747 | SL_RETURN(0, _("sh_unix_getinfo_attr"));
|
---|
| 2748 |
|
---|
[1] | 2749 | *flags = f;
|
---|
| 2750 |
|
---|
| 2751 | /* ! HAVE_EXT2_IOCTLS */
|
---|
| 2752 | #else
|
---|
| 2753 |
|
---|
| 2754 | SL_ENTER(_("sh_unix_getinfo_attr"));
|
---|
| 2755 |
|
---|
| 2756 | *flags = 0; /* modified by R.Wichmann */
|
---|
| 2757 |
|
---|
| 2758 | /* ! HAVE_EXT2_IOCTLS */
|
---|
| 2759 | #endif
|
---|
| 2760 | /*
|
---|
| 2761 | * END
|
---|
| 2762 | *
|
---|
| 2763 | * lsattr.c - List file attributes on an ext2 file system
|
---|
| 2764 | */
|
---|
| 2765 |
|
---|
[10] | 2766 | if (*flags == 0)
|
---|
| 2767 | goto theend;
|
---|
| 2768 |
|
---|
[1] | 2769 | #ifdef EXT2_SECRM_FL
|
---|
| 2770 | if ( (*flags & EXT2_SECRM_FL) != 0 ) c_attr[0] = 's';
|
---|
| 2771 | #endif
|
---|
| 2772 | #ifdef EXT2_UNRM_FL
|
---|
| 2773 | if ( (*flags & EXT2_UNRM_FL) != 0 ) c_attr[1] = 'u';
|
---|
| 2774 | #endif
|
---|
| 2775 | #ifdef EXT2_SYNC_FL
|
---|
| 2776 | if ( (*flags & EXT2_SYNC_FL) != 0 ) c_attr[2] = 'S';
|
---|
| 2777 | #endif
|
---|
| 2778 | #ifdef EXT2_IMMUTABLE_FL
|
---|
| 2779 | if ( (*flags & EXT2_IMMUTABLE_FL) != 0) c_attr[3] = 'i';
|
---|
| 2780 | #endif
|
---|
| 2781 | #ifdef EXT2_APPEND_FL
|
---|
| 2782 | if ( (*flags & EXT2_APPEND_FL) != 0 ) c_attr[4] = 'a';
|
---|
| 2783 | #endif
|
---|
| 2784 | #ifdef EXT2_NODUMP_FL
|
---|
| 2785 | if ( (*flags & EXT2_NODUMP_FL) != 0 ) c_attr[5] = 'd';
|
---|
| 2786 | #endif
|
---|
| 2787 | #ifdef EXT2_NOATIME_FL
|
---|
| 2788 | if ( (*flags & EXT2_NOATIME_FL) != 0) c_attr[6] = 'A';
|
---|
| 2789 | #endif
|
---|
| 2790 | #ifdef EXT2_COMPR_FL
|
---|
| 2791 | if ( (*flags & EXT2_COMPR_FL) != 0 ) c_attr[7] = 'c';
|
---|
| 2792 | #endif
|
---|
[10] | 2793 |
|
---|
| 2794 | #ifdef EXT2_TOPDIR_FL
|
---|
| 2795 | if ( (*flags & EXT2_TOPDIR_FL) != 0 ) c_attr[8] = 'T';
|
---|
[1] | 2796 | #endif
|
---|
[10] | 2797 | #ifdef EXT2_DIRSYNC_FL
|
---|
| 2798 | if ( (*flags & EXT2_DIRSYNC_FL) != 0 ) c_attr[9] = 'D';
|
---|
[1] | 2799 | #endif
|
---|
[10] | 2800 | #ifdef EXT2_NOTAIL_FL
|
---|
| 2801 | if ( (*flags & EXT2_NOTAIL_FL) != 0 ) c_attr[10] = 't';
|
---|
[1] | 2802 | #endif
|
---|
[10] | 2803 | #ifdef EXT2_JOURNAL_DATA_FL
|
---|
| 2804 | if ( (*flags & EXT2_JOURNAL_DATA_FL) != 0) c_attr[11] = 'j';
|
---|
[1] | 2805 | #endif
|
---|
| 2806 |
|
---|
[10] | 2807 | theend:
|
---|
| 2808 | /* ext2 */
|
---|
| 2809 | #endif
|
---|
| 2810 |
|
---|
[1] | 2811 | c_attr[12] = '\0';
|
---|
| 2812 |
|
---|
| 2813 | SL_RETURN(0, _("sh_unix_getinfo_attr"));
|
---|
| 2814 | }
|
---|
| 2815 | #else
|
---|
| 2816 | static
|
---|
| 2817 | int sh_unix_getinfo_attr (char * name,
|
---|
| 2818 | unsigned long * flags,
|
---|
| 2819 | char * c_attr,
|
---|
[10] | 2820 | int fd, struct stat * buf)
|
---|
[1] | 2821 | {
|
---|
| 2822 | return 0;
|
---|
| 2823 | }
|
---|
| 2824 |
|
---|
[10] | 2825 | /* defined(__linux__) || defined(HAVE_STAT_FLAGS) */
|
---|
[1] | 2826 | #endif
|
---|
| 2827 |
|
---|
| 2828 | /* determine file type
|
---|
| 2829 | */
|
---|
| 2830 | static
|
---|
| 2831 | int sh_unix_getinfo_type (struct stat * buf,
|
---|
| 2832 | ShFileType * type,
|
---|
| 2833 | char * c_mode)
|
---|
| 2834 | {
|
---|
| 2835 | SL_ENTER(_("sh_unix_getinfo_type"));
|
---|
| 2836 |
|
---|
| 2837 | if ( S_ISREG(buf->st_mode) ) {
|
---|
| 2838 | (*type) = SH_FILE_REGULAR;
|
---|
| 2839 | c_mode[0] = '-';
|
---|
| 2840 | }
|
---|
| 2841 | else if ( S_ISLNK(buf->st_mode) ) {
|
---|
| 2842 | (*type) = SH_FILE_SYMLINK;
|
---|
| 2843 | c_mode[0] = 'l';
|
---|
| 2844 | }
|
---|
| 2845 | else if ( S_ISDIR(buf->st_mode) ) {
|
---|
| 2846 | (*type) = SH_FILE_DIRECTORY;
|
---|
| 2847 | c_mode[0] = 'd';
|
---|
| 2848 | }
|
---|
| 2849 | else if ( S_ISCHR(buf->st_mode) ) {
|
---|
| 2850 | (*type) = SH_FILE_CDEV;
|
---|
| 2851 | c_mode[0] = 'c';
|
---|
| 2852 | }
|
---|
| 2853 | else if ( S_ISBLK(buf->st_mode) ) {
|
---|
| 2854 | (*type) = SH_FILE_BDEV;
|
---|
| 2855 | c_mode[0] = 'b';
|
---|
| 2856 | }
|
---|
| 2857 | else if ( S_ISFIFO(buf->st_mode) ) {
|
---|
| 2858 | (*type) = SH_FILE_FIFO;
|
---|
| 2859 | c_mode[0] = '|';
|
---|
| 2860 | }
|
---|
| 2861 | else if ( S_ISSOCK(buf->st_mode) ) {
|
---|
| 2862 | (*type) = SH_FILE_SOCKET;
|
---|
| 2863 | c_mode[0] = 's';
|
---|
| 2864 | }
|
---|
[40] | 2865 | else if ( S_ISDOOR(buf->st_mode) ) {
|
---|
| 2866 | (*type) = SH_FILE_DOOR;
|
---|
| 2867 | c_mode[0] = 'D';
|
---|
| 2868 | }
|
---|
| 2869 | else if ( S_ISPORT(buf->st_mode) ) {
|
---|
| 2870 | (*type) = SH_FILE_PORT;
|
---|
| 2871 | c_mode[0] = 'P';
|
---|
| 2872 | }
|
---|
[1] | 2873 | else {
|
---|
| 2874 | (*type) = SH_FILE_UNKNOWN;
|
---|
| 2875 | c_mode[0] = '?';
|
---|
| 2876 | }
|
---|
| 2877 |
|
---|
| 2878 | SL_RETURN(0, _("sh_unix_getinfo_type"));
|
---|
| 2879 | }
|
---|
| 2880 |
|
---|
| 2881 | int sh_unix_get_ftype(char * fullpath)
|
---|
| 2882 | {
|
---|
| 2883 | char c_mode[16];
|
---|
| 2884 | struct stat buf;
|
---|
| 2885 | ShFileType type;
|
---|
| 2886 | int res;
|
---|
| 2887 |
|
---|
| 2888 | SL_ENTER(_("sh_unix_get_ftype"));
|
---|
| 2889 |
|
---|
| 2890 | res = retry_lstat(FIL__, __LINE__, fullpath, &buf);
|
---|
| 2891 |
|
---|
| 2892 | if (res < 0)
|
---|
| 2893 | SL_RETURN(SH_FILE_UNKNOWN, _("sh_unix_getinfo_type"));
|
---|
| 2894 |
|
---|
| 2895 | sh_unix_getinfo_type (&buf, &type, c_mode);
|
---|
| 2896 |
|
---|
| 2897 | SL_RETURN(type, _("sh_unix_get_ftype"));
|
---|
| 2898 | }
|
---|
| 2899 |
|
---|
| 2900 |
|
---|
| 2901 | static
|
---|
| 2902 | int sh_unix_getinfo_mode (struct stat *buf,
|
---|
| 2903 | unsigned int * mode,
|
---|
| 2904 | char * c_mode)
|
---|
| 2905 | {
|
---|
| 2906 |
|
---|
| 2907 | SL_ENTER(_("sh_unix_getinfo_mode"));
|
---|
| 2908 |
|
---|
| 2909 | (*mode) = buf->st_mode;
|
---|
| 2910 |
|
---|
| 2911 | /* make 'ls'-like string */
|
---|
| 2912 |
|
---|
| 2913 | if ( (buf->st_mode & S_IRUSR) != 0 ) c_mode[1] = 'r';
|
---|
| 2914 | if ( (buf->st_mode & S_IWUSR) != 0 ) c_mode[2] = 'w';
|
---|
| 2915 | if ( (buf->st_mode & S_IXUSR) != 0 ) {
|
---|
| 2916 | if ((buf->st_mode & S_ISUID) != 0 ) c_mode[3] = 's';
|
---|
| 2917 | else c_mode[3] = 'x';
|
---|
| 2918 | } else {
|
---|
| 2919 | if ((buf->st_mode & S_ISUID) != 0 ) c_mode[3] = 'S';
|
---|
| 2920 | }
|
---|
| 2921 |
|
---|
| 2922 | if ( (buf->st_mode & S_IRGRP) != 0 ) c_mode[4] = 'r';
|
---|
| 2923 | if ( (buf->st_mode & S_IWGRP) != 0 ) c_mode[5] = 'w';
|
---|
| 2924 | if ( (buf->st_mode & S_IXGRP) != 0 ) {
|
---|
| 2925 | if ((buf->st_mode & S_ISGID) != 0 ) c_mode[6] = 's';
|
---|
| 2926 | else c_mode[6] = 'x';
|
---|
| 2927 | } else {
|
---|
| 2928 | if ((buf->st_mode & S_ISGID) != 0 ) c_mode[6] = 'S';
|
---|
| 2929 | }
|
---|
| 2930 |
|
---|
| 2931 | if ( (buf->st_mode & S_IROTH) != 0 ) c_mode[7] = 'r';
|
---|
| 2932 | if ( (buf->st_mode & S_IWOTH) != 0 ) c_mode[8] = 'w';
|
---|
| 2933 | #ifdef S_ISVTX /* not POSIX */
|
---|
| 2934 | if ( (buf->st_mode & S_IXOTH) != 0 ) {
|
---|
| 2935 | if ((buf->st_mode & S_ISVTX) != 0 ) c_mode[9] = 't';
|
---|
| 2936 | else c_mode[9] = 'x';
|
---|
| 2937 | } else {
|
---|
| 2938 | if ((buf->st_mode & S_ISVTX) != 0 ) c_mode[9] = 'T';
|
---|
| 2939 | }
|
---|
| 2940 | #else
|
---|
| 2941 | if ( (buf->st_mode & S_IXOTH) != 0 ) c_mode[9] = 'x';
|
---|
| 2942 | #endif
|
---|
| 2943 |
|
---|
| 2944 | SL_RETURN(0, _("sh_unix_getinfo_mode"));
|
---|
| 2945 | }
|
---|
| 2946 |
|
---|
| 2947 |
|
---|
| 2948 | long IO_Limit = 0;
|
---|
| 2949 |
|
---|
| 2950 | void sh_unix_io_pause ()
|
---|
| 2951 | {
|
---|
| 2952 | long runtime;
|
---|
| 2953 | float someval;
|
---|
| 2954 | unsigned long sometime;
|
---|
| 2955 |
|
---|
| 2956 | if (IO_Limit == 0)
|
---|
| 2957 | {
|
---|
| 2958 | return;
|
---|
| 2959 | }
|
---|
| 2960 | else
|
---|
| 2961 | {
|
---|
| 2962 | runtime = (long) (time(NULL) - sh.statistics.time_start);
|
---|
| 2963 |
|
---|
| 2964 | if (runtime > 0 && (long)(sh.statistics.bytes_hashed/runtime) > IO_Limit)
|
---|
| 2965 | {
|
---|
| 2966 | someval = sh.statistics.bytes_hashed - (IO_Limit * runtime);
|
---|
| 2967 | someval /= (float) IO_Limit;
|
---|
| 2968 | if (someval < 1.0)
|
---|
| 2969 | {
|
---|
| 2970 | someval *= 1000; /* milliseconds in a second */
|
---|
| 2971 | sometime = (unsigned long) someval;
|
---|
| 2972 | /* fprintf(stderr, "FIXME PAUSE %ld\n", sometime); */
|
---|
| 2973 | retry_msleep(0, sometime);
|
---|
| 2974 | }
|
---|
| 2975 | else
|
---|
| 2976 | {
|
---|
| 2977 | sometime = (unsigned long) someval;
|
---|
| 2978 | /* fprintf(stderr, "FIXME PAUSE %ld sec\n", sometime); */
|
---|
| 2979 | retry_msleep (sometime, 0);
|
---|
| 2980 | }
|
---|
| 2981 | }
|
---|
| 2982 | }
|
---|
| 2983 | return;
|
---|
| 2984 | }
|
---|
| 2985 |
|
---|
[22] | 2986 | int sh_unix_set_io_limit (const char * c)
|
---|
[1] | 2987 | {
|
---|
| 2988 | long val;
|
---|
| 2989 |
|
---|
| 2990 | SL_ENTER(_("sh_unix_set_io_limit"));
|
---|
| 2991 |
|
---|
| 2992 | val = strtol (c, (char **)NULL, 10);
|
---|
| 2993 | if (val < 0)
|
---|
| 2994 | sh_error_handle ((-1), FIL__, __LINE__, EINVAL, MSG_EINVALS,
|
---|
| 2995 | _("set I/O limit"), c);
|
---|
| 2996 |
|
---|
| 2997 | val = (val < 0 ? 0 : val);
|
---|
| 2998 |
|
---|
| 2999 | IO_Limit = val * 1024;
|
---|
| 3000 | SL_RETURN( 0, _("sh_unix_set_io_limit"));
|
---|
| 3001 | }
|
---|
| 3002 |
|
---|
| 3003 | /* obtain file info
|
---|
| 3004 | */
|
---|
| 3005 | extern int flag_err_debug;
|
---|
| 3006 |
|
---|
| 3007 | #include "sh_ignore.h"
|
---|
| 3008 |
|
---|
[19] | 3009 | int sh_unix_checksum_size (char * filename, struct stat * fbuf,
|
---|
[133] | 3010 | char * fileHash, int alert_timeout, SL_TICKET fd)
|
---|
[19] | 3011 | {
|
---|
| 3012 | file_type tmpFile;
|
---|
| 3013 | int status;
|
---|
| 3014 |
|
---|
| 3015 | SL_ENTER(_("sh_unix_checksum_size"));
|
---|
| 3016 |
|
---|
[59] | 3017 | if (sh.flag.checkSum != SH_CHECK_INIT)
|
---|
| 3018 | {
|
---|
| 3019 | /* lookup file in database */
|
---|
| 3020 | status = sh_hash_get_it (filename, &tmpFile);
|
---|
| 3021 | if (status != 0) {
|
---|
| 3022 | goto out;
|
---|
| 3023 | }
|
---|
| 3024 | }
|
---|
| 3025 | else
|
---|
| 3026 | {
|
---|
| 3027 | tmpFile.size = fbuf->st_size;
|
---|
| 3028 | }
|
---|
[19] | 3029 |
|
---|
| 3030 | /* if last < current get checksum */
|
---|
| 3031 | if (tmpFile.size < fbuf->st_size)
|
---|
| 3032 | {
|
---|
[133] | 3033 | char hashbuf[KEYBUF_SIZE];
|
---|
[22] | 3034 | sl_strlcpy(fileHash,
|
---|
[133] | 3035 | sh_tiger_generic_hash (filename, fd, tmpFile.size,
|
---|
| 3036 | alert_timeout, hashbuf, sizeof(hashbuf)),
|
---|
[59] | 3037 | KEY_LEN+1);
|
---|
[68] | 3038 |
|
---|
[107] | 3039 | /* return */
|
---|
[19] | 3040 | SL_RETURN( 0, _("sh_unix_checksum_size"));
|
---|
| 3041 | }
|
---|
| 3042 |
|
---|
| 3043 | out:
|
---|
[93] | 3044 | sl_strlcpy(fileHash, SH_KEY_NULL, KEY_LEN+1);
|
---|
[19] | 3045 | SL_RETURN( -1, _("sh_unix_checksum_size"));
|
---|
| 3046 | }
|
---|
| 3047 |
|
---|
[68] | 3048 | int sh_unix_check_selinux = S_FALSE;
|
---|
| 3049 | int sh_unix_check_acl = S_FALSE;
|
---|
| 3050 |
|
---|
| 3051 | #ifdef USE_ACL
|
---|
| 3052 |
|
---|
| 3053 | #include <sys/acl.h>
|
---|
| 3054 | static char * sh_unix_getinfo_acl (char * path, int fd, struct stat * buf)
|
---|
| 3055 | {
|
---|
| 3056 | /* system.posix_acl_access, system.posix_acl_default
|
---|
| 3057 | */
|
---|
| 3058 | char * out = NULL;
|
---|
| 3059 | char * collect = NULL;
|
---|
| 3060 | char * tmp;
|
---|
| 3061 | char * out_compact;
|
---|
| 3062 | ssize_t len;
|
---|
| 3063 | acl_t result;
|
---|
| 3064 |
|
---|
| 3065 | SL_ENTER(_("sh_unix_getinfo_acl"));
|
---|
| 3066 |
|
---|
| 3067 | result = (fd == -1) ?
|
---|
| 3068 | acl_get_file (path, ACL_TYPE_ACCESS) :
|
---|
| 3069 | acl_get_fd (fd);
|
---|
| 3070 |
|
---|
| 3071 | if (result)
|
---|
| 3072 | {
|
---|
| 3073 | out = acl_to_text (result, &len);
|
---|
| 3074 | if (out && (len > 0)) {
|
---|
| 3075 | out_compact = sh_util_acl_compact (out, len);
|
---|
| 3076 | acl_free(out);
|
---|
| 3077 | if (out_compact)
|
---|
| 3078 | {
|
---|
| 3079 | collect = sh_util_strconcat (_("acl_access:"), out_compact, NULL);
|
---|
| 3080 | SH_FREE(out_compact);
|
---|
| 3081 | }
|
---|
| 3082 | }
|
---|
| 3083 | acl_free(result);
|
---|
| 3084 | }
|
---|
| 3085 |
|
---|
| 3086 |
|
---|
| 3087 | if ( S_ISDIR(buf->st_mode) )
|
---|
| 3088 | {
|
---|
| 3089 | result = acl_get_file (path, ACL_TYPE_DEFAULT);
|
---|
| 3090 |
|
---|
| 3091 | if (result)
|
---|
| 3092 | {
|
---|
| 3093 | out = acl_to_text (result, &len);
|
---|
| 3094 | if (out && (len > 0)) {
|
---|
| 3095 | out_compact = sh_util_acl_compact (out, len);
|
---|
| 3096 | acl_free(out);
|
---|
| 3097 | if (out_compact) {
|
---|
| 3098 | if (collect) {
|
---|
| 3099 | tmp = sh_util_strconcat (_("acl_default:"),
|
---|
| 3100 | out_compact, ":", collect, NULL);
|
---|
| 3101 | SH_FREE(collect);
|
---|
| 3102 | }
|
---|
| 3103 | else {
|
---|
| 3104 | tmp = sh_util_strconcat (_("acl_default:"), out_compact, NULL);
|
---|
| 3105 | }
|
---|
| 3106 | SH_FREE(out_compact);
|
---|
| 3107 | collect = tmp;
|
---|
| 3108 | }
|
---|
| 3109 | }
|
---|
| 3110 | acl_free(result);
|
---|
| 3111 | }
|
---|
| 3112 | }
|
---|
| 3113 |
|
---|
| 3114 | SL_RETURN((collect),_("sh_unix_getinfo_acl"));
|
---|
| 3115 | }
|
---|
| 3116 | #endif
|
---|
| 3117 |
|
---|
| 3118 | #ifdef USE_XATTR
|
---|
| 3119 |
|
---|
| 3120 | #include <attr/xattr.h>
|
---|
| 3121 | static char * sh_unix_getinfo_xattr_int (char * path, int fd, char * name)
|
---|
| 3122 | {
|
---|
| 3123 | char * out = NULL;
|
---|
| 3124 | char * tmp = NULL;
|
---|
| 3125 | size_t size = 256;
|
---|
| 3126 | ssize_t result;
|
---|
| 3127 |
|
---|
| 3128 | SL_ENTER(_("sh_unix_getinfo_xattr_int"));
|
---|
| 3129 |
|
---|
| 3130 | out = SH_ALLOC(size);
|
---|
| 3131 |
|
---|
| 3132 | result = (fd == -1) ?
|
---|
| 3133 | lgetxattr (path, name, out, size-1) :
|
---|
| 3134 | fgetxattr (fd, name, out, size-1);
|
---|
| 3135 |
|
---|
| 3136 | if (result == -1 && errno == ERANGE)
|
---|
| 3137 | {
|
---|
| 3138 | SH_FREE(out);
|
---|
| 3139 | result = (fd == -1) ?
|
---|
| 3140 | lgetxattr (path, name, NULL, 0) :
|
---|
| 3141 | fgetxattr (fd, name, NULL, 0);
|
---|
| 3142 | size = result + 1;
|
---|
| 3143 | out = SH_ALLOC(size);
|
---|
| 3144 | result = (fd == -1) ?
|
---|
| 3145 | lgetxattr (path, name, out, size-1) :
|
---|
| 3146 | fgetxattr (fd, name, out, size-1);
|
---|
| 3147 | }
|
---|
| 3148 |
|
---|
| 3149 | if ((result > 0) && ((size_t)result < size))
|
---|
| 3150 | {
|
---|
| 3151 | out[size-1] = '\0';
|
---|
| 3152 | tmp = out;
|
---|
| 3153 | }
|
---|
| 3154 | else
|
---|
| 3155 | {
|
---|
| 3156 | SH_FREE(out);
|
---|
| 3157 | }
|
---|
| 3158 |
|
---|
| 3159 | SL_RETURN((tmp),_("sh_unix_getinfo_xattr_int"));
|
---|
| 3160 | }
|
---|
| 3161 |
|
---|
| 3162 |
|
---|
| 3163 | static char * sh_unix_getinfo_xattr (char * path, int fd, struct stat * buf)
|
---|
| 3164 | {
|
---|
| 3165 | /* system.posix_acl_access, system.posix_acl_default, security.selinux
|
---|
| 3166 | */
|
---|
| 3167 | char * tmp;
|
---|
| 3168 | char * out = NULL;
|
---|
| 3169 | char * collect = NULL;
|
---|
| 3170 |
|
---|
| 3171 | SL_ENTER(_("sh_unix_getinfo_xattr"));
|
---|
| 3172 |
|
---|
| 3173 | #ifdef USE_ACL
|
---|
| 3174 | /*
|
---|
| 3175 | * we need the acl_get_fd/acl_get_file functions, getxattr will only
|
---|
| 3176 | * yield the raw bytes
|
---|
| 3177 | */
|
---|
| 3178 | if (sh_unix_check_acl == S_TRUE)
|
---|
| 3179 | {
|
---|
| 3180 | out = sh_unix_getinfo_acl(path, fd, buf);
|
---|
| 3181 |
|
---|
| 3182 | if (out)
|
---|
| 3183 | {
|
---|
| 3184 | collect = out;
|
---|
| 3185 | }
|
---|
| 3186 | }
|
---|
| 3187 | #endif
|
---|
| 3188 |
|
---|
[105] | 3189 | if (sh_unix_check_selinux == S_TRUE)
|
---|
| 3190 | {
|
---|
| 3191 | out = sh_unix_getinfo_xattr_int(path, fd, _("security.selinux"));
|
---|
[68] | 3192 |
|
---|
[105] | 3193 | if (out)
|
---|
| 3194 | {
|
---|
| 3195 | if (collect) {
|
---|
| 3196 | tmp = sh_util_strconcat(_("selinux:"), out, ":", collect, NULL);
|
---|
| 3197 | SH_FREE(collect);
|
---|
| 3198 | }
|
---|
| 3199 | else {
|
---|
| 3200 | tmp = sh_util_strconcat(_("selinux:"), out, NULL);
|
---|
| 3201 | }
|
---|
| 3202 | SH_FREE(out);
|
---|
| 3203 | collect = tmp;
|
---|
| 3204 | }
|
---|
[68] | 3205 | }
|
---|
| 3206 |
|
---|
| 3207 | SL_RETURN((collect),_("sh_unix_getinfo_xattr"));
|
---|
| 3208 | }
|
---|
| 3209 | #endif
|
---|
| 3210 |
|
---|
| 3211 | #ifdef USE_XATTR
|
---|
| 3212 | int sh_unix_setcheckselinux (const char * c)
|
---|
| 3213 | {
|
---|
| 3214 | int i;
|
---|
| 3215 | SL_ENTER(_("sh_unix_setcheckselinux"));
|
---|
| 3216 | i = sh_util_flagval(c, &(sh_unix_check_selinux));
|
---|
| 3217 |
|
---|
| 3218 | SL_RETURN(i, _("sh_unix_setcheckselinux"));
|
---|
| 3219 | }
|
---|
| 3220 | #endif
|
---|
| 3221 |
|
---|
| 3222 | #ifdef USE_ACL
|
---|
| 3223 | int sh_unix_setcheckacl (const char * c)
|
---|
| 3224 | {
|
---|
| 3225 | int i;
|
---|
| 3226 | SL_ENTER(_("sh_unix_setcheckacl"));
|
---|
| 3227 | i = sh_util_flagval(c, &(sh_unix_check_acl));
|
---|
| 3228 |
|
---|
| 3229 | SL_RETURN(i, _("sh_unix_setcheckacl"));
|
---|
| 3230 | }
|
---|
| 3231 | #endif
|
---|
| 3232 |
|
---|
| 3233 |
|
---|
[1] | 3234 | int sh_unix_getinfo (int level, char * filename, file_type * theFile,
|
---|
| 3235 | char * fileHash, int policy)
|
---|
| 3236 | {
|
---|
| 3237 | char timestr[81];
|
---|
| 3238 | long runtim;
|
---|
| 3239 | struct stat buf;
|
---|
| 3240 | struct stat lbuf;
|
---|
| 3241 | struct stat fbuf;
|
---|
| 3242 | int stat_return;
|
---|
[8] | 3243 |
|
---|
[1] | 3244 | ShFileType type;
|
---|
| 3245 | unsigned int mode;
|
---|
| 3246 | char * tmp;
|
---|
| 3247 | char * tmp2;
|
---|
[8] | 3248 |
|
---|
[1] | 3249 | char * linknamebuf;
|
---|
| 3250 | int linksize;
|
---|
| 3251 |
|
---|
| 3252 | extern int get_the_fd (SL_TICKET ticket);
|
---|
| 3253 |
|
---|
| 3254 | SL_TICKET rval_open;
|
---|
| 3255 | int fd;
|
---|
| 3256 | int fstat_return;
|
---|
| 3257 |
|
---|
| 3258 | time_t tend;
|
---|
| 3259 | time_t tstart;
|
---|
| 3260 |
|
---|
| 3261 |
|
---|
| 3262 | char * path = NULL;
|
---|
| 3263 |
|
---|
| 3264 | int alert_timeout = 120;
|
---|
| 3265 |
|
---|
| 3266 | path = theFile->fullpath;
|
---|
| 3267 |
|
---|
| 3268 | SL_ENTER(_("sh_unix_getinfo"));
|
---|
| 3269 |
|
---|
| 3270 | /* --- Stat the file, and get checksum. ---
|
---|
| 3271 | */
|
---|
| 3272 | tstart = time(NULL);
|
---|
[8] | 3273 |
|
---|
[1] | 3274 | stat_return = retry_lstat (FIL__, __LINE__,
|
---|
| 3275 | path /* theFile->fullpath */, &buf);
|
---|
| 3276 |
|
---|
[8] | 3277 | fd = -1;
|
---|
| 3278 | fstat_return = -1;
|
---|
| 3279 | rval_open = -1;
|
---|
| 3280 |
|
---|
[1] | 3281 | if (stat_return == 0 && S_ISREG(buf.st_mode))
|
---|
| 3282 | {
|
---|
| 3283 | rval_open = sl_open_fastread (path /* theFile->fullpath */, SL_YESPRIV);
|
---|
| 3284 |
|
---|
| 3285 | alert_timeout = 120; /* this is per 8K block now ! */
|
---|
| 3286 |
|
---|
[8] | 3287 | if (path[1] == 'p' && path[5] == '/' && path[2] == 'r' &&
|
---|
| 3288 | path[3] == 'o' && path[4] == 'c' && path[0] == '/')
|
---|
[1] | 3289 | {
|
---|
| 3290 | /* seven is magic */
|
---|
| 3291 | alert_timeout = 7;
|
---|
| 3292 | }
|
---|
[8] | 3293 |
|
---|
| 3294 | fd = get_the_fd(rval_open);
|
---|
[1] | 3295 | }
|
---|
| 3296 |
|
---|
| 3297 | tend = time(NULL);
|
---|
| 3298 |
|
---|
| 3299 | /* An unprivileged user may slow lstat/open to a crawl
|
---|
| 3300 | * with clever path/symlink setup
|
---|
| 3301 | */
|
---|
| 3302 | if ((tend - tstart) > (time_t) /* 60 */ 6)
|
---|
| 3303 | {
|
---|
| 3304 | tmp2 = sh_util_safe_name (theFile->fullpath);
|
---|
| 3305 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_TOOLATE,
|
---|
| 3306 | (long)(tend - tstart), tmp2);
|
---|
| 3307 | SH_FREE(tmp2);
|
---|
| 3308 | }
|
---|
[8] | 3309 |
|
---|
[1] | 3310 | if (fd >= 0)
|
---|
[8] | 3311 | fstat_return = retry_fstat (FIL__, __LINE__, fd, &fbuf);
|
---|
[1] | 3312 | else
|
---|
[8] | 3313 | fd = -1;
|
---|
| 3314 |
|
---|
[1] | 3315 |
|
---|
| 3316 | /* --- case 1: lstat failed ---
|
---|
| 3317 | */
|
---|
| 3318 | if (stat_return != 0)
|
---|
| 3319 | {
|
---|
| 3320 | stat_return = errno;
|
---|
| 3321 | if (!SL_ISERROR(rval_open))
|
---|
| 3322 | sl_close(rval_open);
|
---|
| 3323 | if (sh.flag.checkSum == SH_CHECK_INIT ||
|
---|
| 3324 | (sh_hash_have_it (theFile->fullpath) >= 0 &&
|
---|
[114] | 3325 | (!SH_FFLAG_REPORTED_SET(theFile->file_reported))))
|
---|
[1] | 3326 | {
|
---|
| 3327 | if (S_FALSE == sh_ignore_chk_del(theFile->fullpath)) {
|
---|
[132] | 3328 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 3329 | tmp2 = sh_util_safe_name (theFile->fullpath);
|
---|
| 3330 | sh_error_handle (level, FIL__, __LINE__, stat_return, MSG_FI_LSTAT,
|
---|
[132] | 3331 | sh_error_message (stat_return, errbuf, sizeof(errbuf)),
|
---|
| 3332 | tmp2);
|
---|
[1] | 3333 | SH_FREE(tmp2);
|
---|
| 3334 | }
|
---|
| 3335 | }
|
---|
| 3336 | SL_RETURN((-1),_("sh_unix_getinfo"));
|
---|
| 3337 | }
|
---|
| 3338 |
|
---|
[8] | 3339 | /* --- case 2: not a regular file ---
|
---|
[1] | 3340 | */
|
---|
| 3341 | else if (! S_ISREG(buf.st_mode))
|
---|
| 3342 | {
|
---|
| 3343 | if (fileHash != NULL)
|
---|
[93] | 3344 | sl_strlcpy(fileHash, SH_KEY_NULL, KEY_LEN+1);
|
---|
[1] | 3345 | }
|
---|
| 3346 |
|
---|
| 3347 | /* --- case 3a: a regular file, fstat ok ---
|
---|
| 3348 | */
|
---|
| 3349 | else if (fstat_return == 0 &&
|
---|
| 3350 | buf.st_mode == fbuf.st_mode &&
|
---|
| 3351 | buf.st_ino == fbuf.st_ino &&
|
---|
| 3352 | buf.st_uid == fbuf.st_uid &&
|
---|
| 3353 | buf.st_gid == fbuf.st_gid &&
|
---|
| 3354 | buf.st_dev == fbuf.st_dev )
|
---|
| 3355 | {
|
---|
| 3356 | if (fileHash != NULL)
|
---|
| 3357 | {
|
---|
| 3358 | if ((theFile->check_mask & MODI_CHK) == 0)
|
---|
| 3359 | {
|
---|
[93] | 3360 | sl_strlcpy(fileHash, SH_KEY_NULL, KEY_LEN+1);
|
---|
[1] | 3361 | }
|
---|
[19] | 3362 | else if ((theFile->check_mask & MODI_PREL) != 0 &&
|
---|
[1] | 3363 | S_TRUE == sh_prelink_iself(rval_open, fbuf.st_size,
|
---|
[102] | 3364 | alert_timeout, theFile->fullpath))
|
---|
[1] | 3365 | {
|
---|
| 3366 | if (0 != sh_prelink_run (theFile->fullpath,
|
---|
| 3367 | fileHash, alert_timeout))
|
---|
[93] | 3368 | sl_strlcpy(fileHash, SH_KEY_NULL, KEY_LEN+1);
|
---|
[1] | 3369 | }
|
---|
| 3370 | else
|
---|
| 3371 | {
|
---|
[133] | 3372 | char hashbuf[KEYBUF_SIZE];
|
---|
[22] | 3373 | sl_strlcpy(fileHash,
|
---|
| 3374 | sh_tiger_generic_hash (theFile->fullpath,
|
---|
[133] | 3375 | rval_open, TIGER_NOLIM,
|
---|
| 3376 | alert_timeout,
|
---|
| 3377 | hashbuf, sizeof(hashbuf)),
|
---|
[22] | 3378 | KEY_LEN+1);
|
---|
[19] | 3379 | if ((theFile->check_mask & MODI_SGROW) != 0)
|
---|
| 3380 | {
|
---|
| 3381 | sl_rewind(rval_open);
|
---|
| 3382 | sh_unix_checksum_size (theFile->fullpath, &fbuf,
|
---|
| 3383 | &fileHash[KEY_LEN + 1],
|
---|
[133] | 3384 | alert_timeout, rval_open);
|
---|
[19] | 3385 | }
|
---|
[1] | 3386 | }
|
---|
| 3387 | }
|
---|
| 3388 | }
|
---|
| 3389 |
|
---|
| 3390 | /* --- case 3b: a regular file, fstat ok, but different ---
|
---|
| 3391 | */
|
---|
| 3392 | else if (fstat_return == 0 && S_ISREG(fbuf.st_mode))
|
---|
| 3393 | {
|
---|
| 3394 | memcpy (&buf, &fbuf, sizeof( struct stat ));
|
---|
| 3395 |
|
---|
| 3396 | if (fileHash != NULL)
|
---|
| 3397 | {
|
---|
| 3398 | if ((theFile->check_mask & MODI_CHK) == 0)
|
---|
| 3399 | {
|
---|
[93] | 3400 | sl_strlcpy(fileHash, SH_KEY_NULL, KEY_LEN+1);
|
---|
[1] | 3401 | }
|
---|
| 3402 | else if (policy == SH_LEVEL_PRELINK &&
|
---|
| 3403 | S_TRUE == sh_prelink_iself(rval_open, fbuf.st_size,
|
---|
[102] | 3404 | alert_timeout, theFile->fullpath))
|
---|
[1] | 3405 | {
|
---|
| 3406 | if (0 != sh_prelink_run (theFile->fullpath,
|
---|
| 3407 | fileHash, alert_timeout))
|
---|
[93] | 3408 | sl_strlcpy(fileHash, SH_KEY_NULL, KEY_LEN+1);
|
---|
[1] | 3409 | }
|
---|
| 3410 | else
|
---|
| 3411 | {
|
---|
[133] | 3412 | char hashbuf[KEYBUF_SIZE];
|
---|
[1] | 3413 | sl_strlcpy(fileHash,
|
---|
[133] | 3414 | sh_tiger_generic_hash (theFile->fullpath, rval_open,
|
---|
| 3415 | TIGER_NOLIM,
|
---|
| 3416 | alert_timeout,
|
---|
| 3417 | hashbuf, sizeof(hashbuf)),
|
---|
[1] | 3418 | KEY_LEN + 1);
|
---|
[19] | 3419 | if ((theFile->check_mask & MODI_SGROW) != 0)
|
---|
| 3420 | {
|
---|
| 3421 | sl_rewind(rval_open);
|
---|
| 3422 | sh_unix_checksum_size (theFile->fullpath, &fbuf,
|
---|
| 3423 | &fileHash[KEY_LEN + 1],
|
---|
[133] | 3424 | alert_timeout, rval_open);
|
---|
[19] | 3425 | }
|
---|
[1] | 3426 | }
|
---|
| 3427 | }
|
---|
| 3428 | }
|
---|
| 3429 |
|
---|
| 3430 | /* --- case 4: a regular file, fstat failed ---
|
---|
| 3431 | */
|
---|
| 3432 |
|
---|
| 3433 | else /* fstat_return != 0 or !S_ISREG(fbuf->st_mode) */
|
---|
| 3434 | {
|
---|
| 3435 | fstat_return = errno;
|
---|
| 3436 | if (fileHash != NULL)
|
---|
[93] | 3437 | sl_strlcpy(fileHash, SH_KEY_NULL, KEY_LEN+1);
|
---|
[1] | 3438 |
|
---|
[65] | 3439 | if ((theFile->check_mask & MODI_CHK) != 0)
|
---|
| 3440 | {
|
---|
| 3441 | tmp2 = sh_util_safe_name (theFile->fullpath);
|
---|
| 3442 | sh_error_handle (level, FIL__, __LINE__, fstat_return, MSG_E_READ,
|
---|
| 3443 | tmp2);
|
---|
| 3444 | SH_FREE(tmp2);
|
---|
| 3445 | }
|
---|
[1] | 3446 | }
|
---|
| 3447 |
|
---|
| 3448 |
|
---|
| 3449 | /* --- Determine file type. ---
|
---|
| 3450 | */
|
---|
[8] | 3451 | memset (theFile->c_mode, '-', 10);
|
---|
[1] | 3452 | theFile->c_mode[10] = '\0';
|
---|
[8] | 3453 |
|
---|
| 3454 | memset (theFile->link_c_mode, '-', 10);
|
---|
[1] | 3455 | theFile->link_c_mode[10] = '\0';
|
---|
| 3456 |
|
---|
| 3457 | sh_unix_getinfo_type (&buf, &type, theFile->c_mode);
|
---|
| 3458 | theFile->type = type;
|
---|
| 3459 |
|
---|
[10] | 3460 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
[1] | 3461 |
|
---|
| 3462 | /* --- Determine file attributes. ---
|
---|
| 3463 | */
|
---|
[8] | 3464 | memset (theFile->c_attributes, '-', 12);
|
---|
[1] | 3465 | theFile->c_attributes[12] = '\0';
|
---|
| 3466 | theFile->attributes = 0;
|
---|
| 3467 |
|
---|
| 3468 | if (theFile->c_mode[0] != 'c' && theFile->c_mode[0] != 'b' &&
|
---|
| 3469 | theFile->c_mode[0] != 'l' )
|
---|
| 3470 | sh_unix_getinfo_attr(theFile->fullpath,
|
---|
[10] | 3471 | &theFile->attributes, theFile->c_attributes,
|
---|
| 3472 | fd, &buf);
|
---|
[1] | 3473 | #endif
|
---|
| 3474 |
|
---|
[105] | 3475 | #if defined(USE_XATTR) && defined(USE_ACL)
|
---|
| 3476 | if (sh_unix_check_selinux == S_TRUE || sh_unix_check_acl == S_TRUE)
|
---|
| 3477 | theFile->attr_string = sh_unix_getinfo_xattr (theFile->fullpath, fd, &buf);
|
---|
| 3478 | #elif defined(USE_XATTR)
|
---|
[68] | 3479 | if (sh_unix_check_selinux == S_TRUE)
|
---|
| 3480 | theFile->attr_string = sh_unix_getinfo_xattr (theFile->fullpath, fd, &buf);
|
---|
| 3481 | #elif defined(USE_ACL)
|
---|
| 3482 | if (sh_unix_check_acl == S_TRUE)
|
---|
| 3483 | theFile->attr_string = sh_unix_getinfo_acl (theFile->fullpath, fd, &buf);
|
---|
| 3484 | #else
|
---|
| 3485 | theFile->attr_string = NULL;
|
---|
| 3486 | #endif
|
---|
| 3487 |
|
---|
[1] | 3488 | if (!SL_ISERROR(rval_open))
|
---|
| 3489 | sl_close(rval_open);
|
---|
| 3490 |
|
---|
| 3491 |
|
---|
| 3492 | /* --- I/O limit. ---
|
---|
| 3493 | */
|
---|
| 3494 | if (IO_Limit > 0)
|
---|
| 3495 | {
|
---|
| 3496 | runtim = (long) (time(NULL) - sh.statistics.time_start);
|
---|
| 3497 |
|
---|
| 3498 | if (runtim > 0 && (long)(sh.statistics.bytes_hashed/runtim) > IO_Limit)
|
---|
| 3499 | retry_msleep(1, 0);
|
---|
| 3500 | }
|
---|
| 3501 |
|
---|
| 3502 | /* --- Determine permissions. ---
|
---|
| 3503 | */
|
---|
| 3504 | sh_unix_getinfo_mode (&buf, &mode, theFile->c_mode);
|
---|
| 3505 |
|
---|
| 3506 | /* --- Trivia. ---
|
---|
| 3507 | */
|
---|
| 3508 | theFile->dev = buf.st_dev;
|
---|
| 3509 | theFile->ino = buf.st_ino;
|
---|
| 3510 | theFile->mode = buf.st_mode;
|
---|
| 3511 | theFile->hardlinks = buf.st_nlink;
|
---|
| 3512 | theFile->owner = buf.st_uid;
|
---|
| 3513 | theFile->group = buf.st_gid;
|
---|
| 3514 | theFile->rdev = buf.st_rdev;
|
---|
| 3515 | theFile->size = buf.st_size;
|
---|
| 3516 | theFile->blksize = (unsigned long) buf.st_blksize;
|
---|
| 3517 | theFile->blocks = (unsigned long) buf.st_blocks;
|
---|
| 3518 | theFile->atime = buf.st_atime;
|
---|
| 3519 | theFile->mtime = buf.st_mtime;
|
---|
| 3520 | theFile->ctime = buf.st_ctime;
|
---|
| 3521 |
|
---|
| 3522 |
|
---|
| 3523 | /* --- Owner and group. ---
|
---|
| 3524 | */
|
---|
| 3525 |
|
---|
[132] | 3526 | if (NULL == sh_unix_getGIDname(SH_ERR_ALL, buf.st_gid, theFile->c_group, GROUP_MAX+1)) {
|
---|
[1] | 3527 |
|
---|
| 3528 | tmp2 = sh_util_safe_name (theFile->fullpath);
|
---|
| 3529 |
|
---|
| 3530 | if (policy == SH_LEVEL_ALLIGNORE)
|
---|
| 3531 | {
|
---|
| 3532 | sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, ENOENT,
|
---|
| 3533 | MSG_FI_NOGRP,
|
---|
| 3534 | (long) buf.st_gid, tmp2);
|
---|
| 3535 | }
|
---|
| 3536 | else
|
---|
| 3537 | {
|
---|
| 3538 | sh_error_handle (ShDFLevel[SH_ERR_T_NAME], FIL__, __LINE__, ENOENT,
|
---|
| 3539 | MSG_FI_NOGRP,
|
---|
| 3540 | (long) buf.st_gid, tmp2);
|
---|
| 3541 | }
|
---|
| 3542 | SH_FREE(tmp2);
|
---|
| 3543 | sl_snprintf(theFile->c_group, GROUP_MAX+1, "%d", (long) buf.st_gid);
|
---|
| 3544 | }
|
---|
| 3545 |
|
---|
| 3546 |
|
---|
[137] | 3547 | if (NULL == sh_unix_getUIDname(SH_ERR_ALL, buf.st_uid, theFile->c_owner, USER_MAX+1)) {
|
---|
[1] | 3548 |
|
---|
| 3549 | tmp2 = sh_util_safe_name (theFile->fullpath);
|
---|
| 3550 |
|
---|
| 3551 | if (policy == SH_LEVEL_ALLIGNORE)
|
---|
| 3552 | {
|
---|
| 3553 | sh_error_handle (SH_ERR_ALL, FIL__, __LINE__, ENOENT,
|
---|
| 3554 | MSG_FI_NOUSR,
|
---|
| 3555 | (long) buf.st_uid, tmp2);
|
---|
| 3556 | }
|
---|
| 3557 | else
|
---|
| 3558 | {
|
---|
| 3559 | sh_error_handle (ShDFLevel[SH_ERR_T_NAME], FIL__, __LINE__, ENOENT,
|
---|
| 3560 | MSG_FI_NOUSR,
|
---|
| 3561 | (long) buf.st_uid, tmp2);
|
---|
| 3562 | }
|
---|
| 3563 | SH_FREE(tmp2);
|
---|
| 3564 | sl_snprintf(theFile->c_owner, USER_MAX+1, "%d", (long) buf.st_uid);
|
---|
| 3565 | }
|
---|
| 3566 |
|
---|
| 3567 | /* --- Output the file. ---
|
---|
| 3568 | */
|
---|
| 3569 | if (flag_err_debug == SL_TRUE)
|
---|
| 3570 | {
|
---|
| 3571 | tmp2 = sh_util_safe_name ((filename == NULL) ?
|
---|
| 3572 | theFile->fullpath : filename);
|
---|
[137] | 3573 | (void) sh_unix_time(theFile->mtime, timestr, sizeof(timestr));
|
---|
[1] | 3574 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_LIST,
|
---|
| 3575 | theFile->c_mode,
|
---|
| 3576 | theFile->hardlinks,
|
---|
| 3577 | theFile->c_owner,
|
---|
| 3578 | theFile->c_group,
|
---|
| 3579 | (unsigned long) theFile->size,
|
---|
| 3580 | timestr,
|
---|
| 3581 | tmp2);
|
---|
| 3582 | SH_FREE(tmp2);
|
---|
| 3583 | }
|
---|
| 3584 |
|
---|
| 3585 | /* --- Check for links. ---
|
---|
| 3586 | */
|
---|
| 3587 | if (theFile->c_mode[0] == 'l')
|
---|
| 3588 | {
|
---|
| 3589 |
|
---|
| 3590 | linknamebuf = SH_ALLOC(PATH_MAX);
|
---|
| 3591 |
|
---|
[22] | 3592 | /* flawfinder: ignore */
|
---|
[1] | 3593 | linksize = readlink (theFile->fullpath, linknamebuf, PATH_MAX-1);
|
---|
| 3594 |
|
---|
| 3595 | if (linksize < (PATH_MAX-1) && linksize >= 0)
|
---|
| 3596 | linknamebuf[linksize] = '\0';
|
---|
| 3597 | else
|
---|
| 3598 | linknamebuf[PATH_MAX-1] = '\0';
|
---|
| 3599 |
|
---|
| 3600 | if (linksize < 0)
|
---|
| 3601 | {
|
---|
[132] | 3602 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 3603 | linksize = errno;
|
---|
| 3604 | tmp2 = sh_util_safe_name (theFile->fullpath);
|
---|
| 3605 | sh_error_handle (level, FIL__, __LINE__, linksize, MSG_FI_RDLNK,
|
---|
[132] | 3606 | sh_error_message (linksize, errbuf, sizeof(errbuf)), tmp2);
|
---|
[1] | 3607 | SH_FREE(tmp2);
|
---|
| 3608 | SH_FREE(linknamebuf);
|
---|
[22] | 3609 | theFile->linkpath[0] = '-';
|
---|
| 3610 | theFile->linkpath[1] = '\0';
|
---|
[1] | 3611 | SL_RETURN((-1),_("sh_unix_getinfo"));
|
---|
| 3612 | }
|
---|
[138] | 3613 |
|
---|
[1] | 3614 | if (linknamebuf[0] == '/')
|
---|
| 3615 | {
|
---|
| 3616 | sl_strlcpy (theFile->linkpath, linknamebuf, PATH_MAX);
|
---|
| 3617 | }
|
---|
| 3618 | else
|
---|
| 3619 | {
|
---|
[34] | 3620 | tmp = sh_util_dirname(theFile->fullpath);
|
---|
[93] | 3621 | if (tmp) {
|
---|
| 3622 | sl_strlcpy (theFile->linkpath, tmp, PATH_MAX);
|
---|
| 3623 | SH_FREE(tmp);
|
---|
| 3624 | } else {
|
---|
| 3625 | theFile->linkpath[0] = '\0';
|
---|
| 3626 | }
|
---|
| 3627 | /*
|
---|
| 3628 | * Only attach '/' if not root directory. Handle "//", which
|
---|
| 3629 | * according to POSIX is implementation-defined, and may be
|
---|
| 3630 | * different from "/" (however, three or more '/' will collapse
|
---|
| 3631 | * to one).
|
---|
| 3632 | */
|
---|
| 3633 | tmp = theFile->linkpath; while (*tmp == '/') ++tmp;
|
---|
| 3634 | if (*tmp != '\0')
|
---|
| 3635 | {
|
---|
| 3636 | sl_strlcat (theFile->linkpath, "/", PATH_MAX);
|
---|
| 3637 | }
|
---|
| 3638 | sl_strlcat (theFile->linkpath, linknamebuf, PATH_MAX);
|
---|
[1] | 3639 | }
|
---|
| 3640 |
|
---|
| 3641 | /* stat the link
|
---|
| 3642 | */
|
---|
| 3643 | stat_return = retry_lstat (FIL__, __LINE__, theFile->linkpath, &lbuf);
|
---|
| 3644 |
|
---|
| 3645 | /* check for error
|
---|
| 3646 | */
|
---|
| 3647 | if (stat_return != 0)
|
---|
| 3648 | {
|
---|
| 3649 | stat_return = errno;
|
---|
| 3650 | tmp = sh_util_safe_name (theFile->fullpath);
|
---|
| 3651 | tmp2 = sh_util_safe_name (theFile->linkpath);
|
---|
| 3652 | if (stat_return != ENOENT)
|
---|
| 3653 | {
|
---|
[132] | 3654 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 3655 | sh_error_handle (level, FIL__, __LINE__, stat_return,
|
---|
| 3656 | MSG_FI_LSTAT,
|
---|
[132] | 3657 | sh_error_message (stat_return,errbuf, sizeof(errbuf)),
|
---|
| 3658 | tmp2);
|
---|
[1] | 3659 | }
|
---|
| 3660 | else
|
---|
| 3661 | {
|
---|
| 3662 | /* a dangling link -- everybody seems to have plenty of them
|
---|
| 3663 | */
|
---|
| 3664 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_DLNK,
|
---|
| 3665 | tmp, tmp2);
|
---|
| 3666 | }
|
---|
| 3667 | theFile->linkisok = BAD;
|
---|
| 3668 | SH_FREE(tmp);
|
---|
| 3669 | SH_FREE(tmp2);
|
---|
| 3670 | SH_FREE(linknamebuf);
|
---|
| 3671 | /*
|
---|
| 3672 | * changed Tue Feb 10 16:16:13 CET 2004:
|
---|
| 3673 | * add dangling symlinks into database
|
---|
| 3674 | * SL_RETURN((-1),_("sh_unix_getinfo"));
|
---|
| 3675 | */
|
---|
| 3676 | theFile->linkmode = 0;
|
---|
| 3677 | SL_RETURN((0),_("sh_unix_getinfo"));
|
---|
| 3678 | }
|
---|
| 3679 |
|
---|
| 3680 | theFile->linkisok = GOOD;
|
---|
| 3681 |
|
---|
| 3682 |
|
---|
| 3683 | /* --- Determine file type. ---
|
---|
| 3684 | */
|
---|
| 3685 | sh_unix_getinfo_type (&lbuf, &type, theFile->link_c_mode);
|
---|
| 3686 | theFile->type = type;
|
---|
| 3687 |
|
---|
| 3688 | /* --- Determine permissions. ---
|
---|
| 3689 | */
|
---|
| 3690 | sh_unix_getinfo_mode (&lbuf, &mode, theFile->link_c_mode);
|
---|
| 3691 | theFile->linkmode = lbuf.st_mode;
|
---|
| 3692 |
|
---|
| 3693 | /* --- Output the link. ---
|
---|
| 3694 | */
|
---|
| 3695 | if (theFile->linkisok == GOOD)
|
---|
| 3696 | {
|
---|
| 3697 | tmp2 = sh_util_safe_name (linknamebuf);
|
---|
| 3698 | sh_error_handle ((-1), FIL__, __LINE__, 0, MSG_FI_LLNK,
|
---|
| 3699 | theFile->link_c_mode, tmp2);
|
---|
| 3700 | SH_FREE(tmp2);
|
---|
| 3701 | }
|
---|
| 3702 | SH_FREE(linknamebuf);
|
---|
| 3703 | }
|
---|
| 3704 | SL_RETURN((0),_("sh_unix_getinfo"));
|
---|
| 3705 | }
|
---|
| 3706 |
|
---|
| 3707 | /* #if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE) */
|
---|
| 3708 | #endif
|
---|
| 3709 |
|
---|
| 3710 | int sh_unix_unlock (char * lockfile, char * flag);
|
---|
| 3711 | int sh_unix_lock (char * lockfile, char * flag);
|
---|
| 3712 |
|
---|
| 3713 | /* check whether file is locked
|
---|
| 3714 | */
|
---|
| 3715 | int sh_unix_test_and_lock (char * filename, char * lockfile)
|
---|
| 3716 | {
|
---|
| 3717 | static struct stat buf;
|
---|
| 3718 | int status = 0;
|
---|
| 3719 |
|
---|
| 3720 |
|
---|
| 3721 | SL_TICKET fd;
|
---|
| 3722 | char line_in[128];
|
---|
| 3723 |
|
---|
| 3724 | SL_ENTER(_("sh_unix_test_and_lock"));
|
---|
| 3725 |
|
---|
| 3726 | status = retry_lstat (FIL__, __LINE__, lockfile, &buf);
|
---|
| 3727 |
|
---|
| 3728 | /* --- No lock file found, try to lock. ---
|
---|
| 3729 | */
|
---|
| 3730 |
|
---|
| 3731 | if (status < 0 && errno == ENOENT)
|
---|
| 3732 | {
|
---|
| 3733 | if (0 == sh_unix_lock (lockfile, filename))
|
---|
| 3734 | {
|
---|
| 3735 | if (filename != NULL)
|
---|
| 3736 | sh.flag.islocked = GOOD;
|
---|
| 3737 | SL_RETURN((0),_("sh_unix_test_and_lock"));
|
---|
| 3738 | }
|
---|
[76] | 3739 | else
|
---|
| 3740 | {
|
---|
| 3741 | sh_error_handle ((-1), FIL__, __LINE__, status,
|
---|
| 3742 | MSG_E_SUBGEN,
|
---|
| 3743 | (filename == NULL) ? _("Cannot create PID file") : _("Cannot create lock file"),
|
---|
| 3744 | _("sh_unix_test_and_lock"));
|
---|
| 3745 | SL_RETURN((-1),_("sh_unix_test_and_lock"));
|
---|
| 3746 | }
|
---|
[1] | 3747 | }
|
---|
| 3748 | else if (status == 0 && buf.st_size == 0)
|
---|
| 3749 | {
|
---|
| 3750 | if (filename != NULL)
|
---|
| 3751 | sh.flag.islocked = GOOD;
|
---|
| 3752 | sh_unix_unlock (lockfile, filename);
|
---|
| 3753 | if (filename != NULL)
|
---|
| 3754 | sh.flag.islocked = BAD;
|
---|
| 3755 | if (0 == sh_unix_lock (lockfile, filename))
|
---|
| 3756 | {
|
---|
| 3757 | if (filename != NULL)
|
---|
| 3758 | sh.flag.islocked = GOOD;
|
---|
| 3759 | SL_RETURN((0),_("sh_unix_test_and_lock"));
|
---|
| 3760 | }
|
---|
| 3761 | else
|
---|
| 3762 | {
|
---|
[76] | 3763 | sh_error_handle ((-1), FIL__, __LINE__, status,
|
---|
| 3764 | MSG_E_SUBGEN,
|
---|
| 3765 | (filename == NULL) ? _("Cannot create PID file") : _("Cannot create lock file"),
|
---|
| 3766 | _("sh_unix_test_and_lock"));
|
---|
[1] | 3767 | SL_RETURN((-1),_("sh_unix_test_and_lock"));
|
---|
| 3768 | }
|
---|
| 3769 | }
|
---|
| 3770 |
|
---|
| 3771 | /* --- Check on lock. ---
|
---|
| 3772 | */
|
---|
| 3773 |
|
---|
| 3774 | if (status >= 0)
|
---|
| 3775 | {
|
---|
| 3776 | fd = sl_open_read (lockfile, SL_YESPRIV);
|
---|
| 3777 | if (SL_ISERROR(fd))
|
---|
| 3778 | sh_error_handle ((-1), FIL__, __LINE__, fd,
|
---|
| 3779 | MSG_E_SUBGEN,
|
---|
| 3780 | (filename == NULL) ? _("Cannot open PID file for read") : _("Cannot open lock file for read"),
|
---|
| 3781 | _("sh_unix_test_and_lock"));
|
---|
| 3782 | }
|
---|
| 3783 | else
|
---|
| 3784 | fd = -1;
|
---|
| 3785 |
|
---|
| 3786 | if (!SL_ISERROR(fd))
|
---|
| 3787 | {
|
---|
| 3788 | /* read the PID in the lock file
|
---|
| 3789 | */
|
---|
[76] | 3790 | status = sl_read (fd, line_in, sizeof(line_in));
|
---|
| 3791 | line_in[sizeof(line_in)-1] = '\0';
|
---|
[1] | 3792 |
|
---|
| 3793 | /* convert to numeric
|
---|
| 3794 | */
|
---|
| 3795 | if (status > 0)
|
---|
| 3796 | {
|
---|
| 3797 | errno = 0;
|
---|
| 3798 | status = strtol(line_in, (char **)NULL, 10);
|
---|
| 3799 | if (errno == ERANGE || status <= 0)
|
---|
| 3800 | {
|
---|
| 3801 | sh_error_handle ((-1), FIL__, __LINE__, status,
|
---|
| 3802 | MSG_E_SUBGEN,
|
---|
| 3803 | (filename == NULL) ? _("Bad PID in PID file") : _("Bad PID in lock file"),
|
---|
| 3804 | _("sh_unix_test_and_lock"));
|
---|
| 3805 |
|
---|
| 3806 | status = -1;
|
---|
| 3807 | }
|
---|
| 3808 | }
|
---|
| 3809 | else
|
---|
| 3810 | {
|
---|
| 3811 | sh_error_handle ((-1), FIL__, __LINE__, status,
|
---|
| 3812 | MSG_E_SUBGEN,
|
---|
| 3813 | (filename == NULL) ? _("Cannot read PID file") : _("Cannot read lock file"),
|
---|
| 3814 | _("sh_unix_test_and_lock"));
|
---|
| 3815 | }
|
---|
| 3816 | sl_close(fd);
|
---|
| 3817 |
|
---|
| 3818 | if (status == (int) getpid())
|
---|
| 3819 | {
|
---|
| 3820 | if (filename != NULL)
|
---|
| 3821 | sh.flag.islocked = GOOD;
|
---|
| 3822 | SL_RETURN((0),_("sh_unix_test_and_lock"));
|
---|
| 3823 | }
|
---|
| 3824 |
|
---|
| 3825 |
|
---|
| 3826 | /* --- Check whether the process exists. ---
|
---|
| 3827 | */
|
---|
| 3828 | if (status > 0)
|
---|
| 3829 | {
|
---|
| 3830 | errno = 0;
|
---|
| 3831 | status = aud_kill (FIL__, __LINE__, status, 0);
|
---|
| 3832 |
|
---|
| 3833 | /* Does not exist, so remove the stale lock
|
---|
| 3834 | * and create a new one.
|
---|
| 3835 | */
|
---|
| 3836 | if (status < 0 && errno == ESRCH)
|
---|
| 3837 | {
|
---|
| 3838 | if (filename != NULL)
|
---|
| 3839 | sh.flag.islocked = GOOD;
|
---|
| 3840 | if (0 != sh_unix_unlock(lockfile, filename) && (filename !=NULL))
|
---|
| 3841 | sh.flag.islocked = BAD;
|
---|
| 3842 | else
|
---|
| 3843 | {
|
---|
| 3844 | if (0 == sh_unix_lock (lockfile, filename))
|
---|
| 3845 | {
|
---|
| 3846 | if (filename != NULL)
|
---|
| 3847 | sh.flag.islocked = GOOD;
|
---|
| 3848 | SL_RETURN((0),_("sh_unix_test_and_lock"));
|
---|
| 3849 | }
|
---|
| 3850 | else
|
---|
| 3851 | {
|
---|
| 3852 | sh_error_handle ((-1), FIL__, __LINE__, status,
|
---|
| 3853 | MSG_E_SUBGEN,
|
---|
| 3854 | (filename == NULL) ? _("Cannot create PID file") : _("Cannot create lock file"),
|
---|
| 3855 | _("sh_unix_test_and_lock"));
|
---|
| 3856 | }
|
---|
| 3857 | if (filename != NULL)
|
---|
| 3858 | sh.flag.islocked = BAD;
|
---|
| 3859 | }
|
---|
| 3860 | }
|
---|
| 3861 | else
|
---|
| 3862 | {
|
---|
| 3863 | sh_error_handle ((-1), FIL__, __LINE__, status,
|
---|
| 3864 | MSG_E_SUBGEN,
|
---|
| 3865 | (filename == NULL) ? _("Cannot remove stale PID file, PID may be a running process") : _("Cannot remove stale lock file, PID may be a running process"),
|
---|
| 3866 | _("sh_unix_test_and_lock"));
|
---|
| 3867 | if (filename != NULL)
|
---|
| 3868 | sh.flag.islocked = BAD;
|
---|
| 3869 | }
|
---|
| 3870 | }
|
---|
| 3871 | }
|
---|
| 3872 | SL_RETURN((-1),_("sh_unix_testlock"));
|
---|
| 3873 | }
|
---|
| 3874 |
|
---|
| 3875 | /* write the PID file
|
---|
| 3876 | */
|
---|
| 3877 | int sh_unix_write_pid_file()
|
---|
| 3878 | {
|
---|
| 3879 | return sh_unix_test_and_lock(NULL, sh.srvlog.alt);
|
---|
| 3880 | }
|
---|
| 3881 |
|
---|
| 3882 | /* write lock for filename
|
---|
| 3883 | */
|
---|
| 3884 | int sh_unix_write_lock_file(char * filename)
|
---|
| 3885 | {
|
---|
[34] | 3886 | size_t len;
|
---|
| 3887 | int res;
|
---|
[1] | 3888 | char * lockfile;
|
---|
| 3889 |
|
---|
| 3890 | if (filename == NULL)
|
---|
| 3891 | return (-1);
|
---|
| 3892 |
|
---|
[34] | 3893 | len = sl_strlen(filename);
|
---|
| 3894 | if (sl_ok_adds(len, 6))
|
---|
| 3895 | len += 6;
|
---|
| 3896 | lockfile = SH_ALLOC(len);
|
---|
| 3897 | sl_strlcpy(lockfile, filename, len);
|
---|
| 3898 | sl_strlcat(lockfile, _(".lock"), len);
|
---|
| 3899 | res = sh_unix_test_and_lock(filename, lockfile);
|
---|
[1] | 3900 | SH_FREE(lockfile);
|
---|
[34] | 3901 | return res;
|
---|
[1] | 3902 | }
|
---|
| 3903 |
|
---|
| 3904 | int sh_unix_unlock(char * lockfile, char * flag)
|
---|
| 3905 | {
|
---|
| 3906 | int error = 0;
|
---|
| 3907 |
|
---|
| 3908 | SL_ENTER(_("sh_unix_unlock"));
|
---|
| 3909 |
|
---|
| 3910 | /* --- Logfile is not locked to us. ---
|
---|
| 3911 | */
|
---|
| 3912 | if (sh.flag.islocked == BAD && flag != NULL)
|
---|
| 3913 | SL_RETURN((-1),_("sh_unix_unlock"));
|
---|
| 3914 |
|
---|
| 3915 | /* --- Check whether the directory is secure. ---
|
---|
| 3916 | */
|
---|
| 3917 | if (0 != tf_trust_check (lockfile, SL_YESPRIV))
|
---|
| 3918 | SL_RETURN((-1),_("sh_unix_unlock"));
|
---|
| 3919 |
|
---|
| 3920 | /* --- Delete the lock file. ---
|
---|
| 3921 | */
|
---|
| 3922 | error = retry_aud_unlink (FIL__, __LINE__, lockfile);
|
---|
| 3923 |
|
---|
| 3924 | if (error == 0)
|
---|
| 3925 | {
|
---|
| 3926 | if (flag != NULL)
|
---|
| 3927 | sh.flag.islocked = BAD; /* not locked anymore */
|
---|
| 3928 | }
|
---|
| 3929 | else if (flag != NULL)
|
---|
| 3930 | {
|
---|
[132] | 3931 | char errbuf[SH_ERRBUF_SIZE];
|
---|
[1] | 3932 | error = errno;
|
---|
| 3933 | sh_error_handle ((-1), FIL__, __LINE__, error, MSG_E_UNLNK,
|
---|
[132] | 3934 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
| 3935 | lockfile);
|
---|
[1] | 3936 | SL_RETURN((-1),_("sh_unix_unlock"));
|
---|
| 3937 | }
|
---|
| 3938 | SL_RETURN((0),_("sh_unix_unlock"));
|
---|
| 3939 | }
|
---|
| 3940 |
|
---|
| 3941 | /* rm lock for filename
|
---|
| 3942 | */
|
---|
| 3943 | int sh_unix_rm_lock_file(char * filename)
|
---|
| 3944 | {
|
---|
[34] | 3945 | size_t len;
|
---|
| 3946 | int res;
|
---|
[1] | 3947 | char * lockfile;
|
---|
| 3948 |
|
---|
| 3949 | if (filename == NULL)
|
---|
| 3950 | return (-1);
|
---|
| 3951 |
|
---|
[34] | 3952 | len = sl_strlen(filename);
|
---|
| 3953 | if (sl_ok_adds(len, 6))
|
---|
| 3954 | len += 6;
|
---|
| 3955 | lockfile = SH_ALLOC(len);
|
---|
| 3956 | sl_strlcpy(lockfile, filename, len);
|
---|
| 3957 | sl_strlcat(lockfile, _(".lock"), len);
|
---|
| 3958 |
|
---|
| 3959 | res = sh_unix_unlock(lockfile, filename);
|
---|
[1] | 3960 | SH_FREE(lockfile);
|
---|
[34] | 3961 | return res;
|
---|
[1] | 3962 | }
|
---|
| 3963 |
|
---|
| 3964 | /* rm lock for filename
|
---|
| 3965 | */
|
---|
| 3966 | int sh_unix_rm_pid_file()
|
---|
| 3967 | {
|
---|
| 3968 | return sh_unix_unlock(sh.srvlog.alt, NULL);
|
---|
| 3969 | }
|
---|
| 3970 |
|
---|
| 3971 | int sh_unix_lock (char * lockfile, char * flag)
|
---|
| 3972 | {
|
---|
| 3973 | int filed;
|
---|
| 3974 | int errnum;
|
---|
| 3975 | char myPid[64];
|
---|
| 3976 | SL_TICKET fd;
|
---|
| 3977 | extern int get_the_fd (SL_TICKET ticket);
|
---|
| 3978 |
|
---|
| 3979 | SL_ENTER(_("sh_unix_lock"));
|
---|
| 3980 |
|
---|
| 3981 | sprintf (myPid, "%ld\n", (long) getpid()); /* known to fit */
|
---|
| 3982 |
|
---|
[76] | 3983 | fd = sl_open_safe_rdwr (lockfile, SL_YESPRIV); /* fails if file exists */
|
---|
[1] | 3984 |
|
---|
| 3985 | if (!SL_ISERROR(fd))
|
---|
| 3986 | {
|
---|
| 3987 | errnum = sl_write (fd, myPid, sl_strlen(myPid));
|
---|
| 3988 | filed = get_the_fd(fd);
|
---|
| 3989 | fchmod (filed, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
|
---|
| 3990 | sl_close (fd);
|
---|
| 3991 |
|
---|
| 3992 | if (!SL_ISERROR(errnum))
|
---|
| 3993 | {
|
---|
| 3994 | if (flag != NULL)
|
---|
| 3995 | sh.flag.islocked = GOOD;
|
---|
| 3996 | SL_RETURN((0),_("sh_unix_lock"));
|
---|
| 3997 | }
|
---|
| 3998 | }
|
---|
| 3999 |
|
---|
| 4000 | TPT((0, FIL__, __LINE__, _("msg=<open pid file failed>\n")));
|
---|
| 4001 | if (flag != NULL)
|
---|
| 4002 | sh.flag.islocked = BAD;
|
---|
| 4003 | SL_RETURN((-1),_("sh_unix_lock"));
|
---|
| 4004 |
|
---|
| 4005 | /* notreached */
|
---|
| 4006 | }
|
---|
| 4007 |
|
---|
| 4008 | /* Test whether file exists
|
---|
| 4009 | */
|
---|
[78] | 4010 | int sh_unix_file_exists(char * path)
|
---|
[1] | 4011 | {
|
---|
| 4012 | struct stat buf;
|
---|
| 4013 |
|
---|
[78] | 4014 | SL_ENTER(_("sh_unix_file_exists"));
|
---|
[1] | 4015 |
|
---|
| 4016 | if (-1 == retry_stat(FIL__, __LINE__, path, &buf))
|
---|
[78] | 4017 | SL_RETURN( S_FALSE, _("sh_unix_file_exists"));
|
---|
[1] | 4018 | else
|
---|
[78] | 4019 | SL_RETURN( S_TRUE, _("sh_unix_file_exists"));
|
---|
[1] | 4020 | }
|
---|
| 4021 |
|
---|
| 4022 |
|
---|
[78] | 4023 | /* Test whether file exists, is a character device, and allows read
|
---|
| 4024 | * access.
|
---|
[1] | 4025 | */
|
---|
[78] | 4026 | int sh_unix_device_readable(int fd)
|
---|
[1] | 4027 | {
|
---|
| 4028 | struct stat buf;
|
---|
| 4029 |
|
---|
[78] | 4030 | SL_ENTER(_("sh_unix_device_readable"));
|
---|
[1] | 4031 |
|
---|
| 4032 | if (retry_fstat(FIL__, __LINE__, fd, &buf) == -1)
|
---|
[78] | 4033 | SL_RETURN( (-1), _("sh_unix_device_readable"));
|
---|
| 4034 | else if ( S_ISCHR(buf.st_mode) && 0 != (S_IROTH & buf.st_mode) )
|
---|
| 4035 | SL_RETURN( (0), _("sh_unix_device_readable"));
|
---|
[1] | 4036 | else
|
---|
[78] | 4037 | SL_RETURN( (-1), _("sh_unix_device_readable"));
|
---|
[1] | 4038 | }
|
---|
| 4039 |
|
---|
| 4040 | static char preq[16];
|
---|
| 4041 |
|
---|
| 4042 | /* return true if database is remote
|
---|
| 4043 | */
|
---|
| 4044 | int file_is_remote ()
|
---|
| 4045 | {
|
---|
| 4046 | static int init = 0;
|
---|
[42] | 4047 | struct stat buf;
|
---|
[1] | 4048 |
|
---|
| 4049 | SL_ENTER(_("file_is_remote"));
|
---|
| 4050 |
|
---|
| 4051 | if (init == 0)
|
---|
| 4052 | {
|
---|
| 4053 | sl_strlcpy(preq, _("REQ_FROM_SERVER"), 16);
|
---|
| 4054 | ++init;
|
---|
| 4055 | }
|
---|
| 4056 | if (0 == sl_strncmp (sh.data.path, preq, 15))
|
---|
| 4057 | {
|
---|
[42] | 4058 | if (sh.data.path[15] != '\0') /* should be start of path */
|
---|
| 4059 | {
|
---|
| 4060 | if (0 == stat(&(sh.data.path[15]), &buf))
|
---|
| 4061 | {
|
---|
| 4062 | SL_RETURN( S_FALSE, _("file_is_remote"));
|
---|
| 4063 | }
|
---|
| 4064 | }
|
---|
[1] | 4065 | SL_RETURN( S_TRUE, _("file_is_remote"));
|
---|
| 4066 | }
|
---|
| 4067 | SL_RETURN( S_FALSE, _("file_is_remote"));
|
---|
| 4068 | }
|
---|
| 4069 |
|
---|
| 4070 | /* Return the path to the configuration/database file.
|
---|
| 4071 | */
|
---|
| 4072 | char * file_path(char what, char flag)
|
---|
| 4073 | {
|
---|
| 4074 | static int init = 0;
|
---|
| 4075 |
|
---|
| 4076 | SL_ENTER(_("file_path"));
|
---|
| 4077 |
|
---|
| 4078 | if (init == 0)
|
---|
| 4079 | {
|
---|
| 4080 | sl_strlcpy(preq, _("REQ_FROM_SERVER"), 16);
|
---|
| 4081 | ++init;
|
---|
| 4082 | }
|
---|
| 4083 |
|
---|
| 4084 | switch (what)
|
---|
| 4085 | {
|
---|
| 4086 |
|
---|
| 4087 | case 'C':
|
---|
| 4088 | if (0 == sl_strncmp (sh.conf.path, preq, 15))
|
---|
| 4089 | {
|
---|
| 4090 | #if defined(SH_WITH_SERVER)
|
---|
| 4091 | if (sh.flag.isserver == S_TRUE && sl_strlen(sh.conf.path) == 15)
|
---|
| 4092 | SL_RETURN( NULL, _("file_path"));
|
---|
| 4093 | if (sh.flag.isserver == S_TRUE)
|
---|
| 4094 | SL_RETURN( &(sh.conf.path[15]), _("file_path"));
|
---|
| 4095 | #endif
|
---|
| 4096 | if (flag == 'R')
|
---|
| 4097 | SL_RETURN( preq, _("file_path"));
|
---|
| 4098 | if (flag == 'I')
|
---|
| 4099 | {
|
---|
| 4100 | if (sl_strlen(sh.conf.path) == 15)
|
---|
| 4101 | SL_RETURN( NULL, _("file_path"));
|
---|
| 4102 | else
|
---|
| 4103 | SL_RETURN( &(sh.conf.path[15]), _("file_path"));
|
---|
| 4104 | }
|
---|
| 4105 | SL_RETURN ( preq, _("file_path"));
|
---|
| 4106 | }
|
---|
| 4107 | else
|
---|
| 4108 | SL_RETURN( sh.conf.path, _("file_path"));
|
---|
| 4109 | /* break; *//* unreachable */
|
---|
| 4110 |
|
---|
| 4111 | case 'D':
|
---|
| 4112 | if (0 == sl_strncmp (sh.data.path, preq, 15))
|
---|
| 4113 | {
|
---|
| 4114 | if (flag == 'R')
|
---|
| 4115 | SL_RETURN( preq, _("file_path"));
|
---|
| 4116 | if (flag == 'W' && sl_strlen(sh.data.path) == 15)
|
---|
| 4117 | SL_RETURN (NULL, _("file_path"));
|
---|
| 4118 | if (flag == 'W')
|
---|
| 4119 | SL_RETURN( &(sh.data.path[15]), _("file_path"));
|
---|
| 4120 | }
|
---|
| 4121 | else
|
---|
| 4122 | SL_RETURN( sh.data.path, _("file_path"));
|
---|
| 4123 | break;
|
---|
| 4124 |
|
---|
| 4125 | default:
|
---|
| 4126 | SL_RETURN( NULL, _("file_path"));
|
---|
| 4127 | }
|
---|
| 4128 |
|
---|
| 4129 | return NULL; /* notreached */
|
---|
| 4130 | }
|
---|
| 4131 | /************************************************/
|
---|
| 4132 | /**** Mlock Utilities ****/
|
---|
| 4133 | /************************************************/
|
---|
| 4134 |
|
---|
| 4135 | #include <limits.h>
|
---|
| 4136 |
|
---|
| 4137 | int sh_unix_pagesize()
|
---|
| 4138 | {
|
---|
| 4139 | int pagesize = 4096;
|
---|
| 4140 | #if defined(_SC_PAGESIZE)
|
---|
| 4141 | pagesize = sysconf(_SC_PAGESIZE);
|
---|
| 4142 | #elif defined(_SC_PAGE_SIZE)
|
---|
| 4143 | pagesize = sysconf(_SC_PAGE_SIZE);
|
---|
| 4144 | #elif defined(HAVE_GETPAGESIZE)
|
---|
| 4145 | pagesize = getpagesize();
|
---|
| 4146 | #elif defined(PAGESIZE)
|
---|
| 4147 | pagesize = PAGESIZE;
|
---|
| 4148 | #endif
|
---|
| 4149 |
|
---|
| 4150 | return ((pagesize > 0) ? pagesize : 4096);
|
---|
| 4151 | }
|
---|
| 4152 |
|
---|
| 4153 | typedef struct sh_page_lt {
|
---|
| 4154 | unsigned long page_start;
|
---|
| 4155 | int page_refcount;
|
---|
[19] | 4156 | char file[64];
|
---|
| 4157 | int line;
|
---|
[1] | 4158 | struct sh_page_lt * next;
|
---|
| 4159 | } sh_page_l;
|
---|
| 4160 |
|
---|
| 4161 | sh_page_l * sh_page_locked = NULL;
|
---|
| 4162 | volatile int page_locking = 0;
|
---|
| 4163 |
|
---|
| 4164 | unsigned long sh_unix_lookup_page (void * in_addr, size_t len, int * num_pages)
|
---|
| 4165 | {
|
---|
| 4166 | int pagesize = sh_unix_pagesize();
|
---|
| 4167 | unsigned long addr = (unsigned long) in_addr;
|
---|
| 4168 |
|
---|
| 4169 | unsigned long pagebase;
|
---|
| 4170 | unsigned long pagediff;
|
---|
| 4171 | unsigned long pagenum = addr / pagesize;
|
---|
| 4172 |
|
---|
| 4173 | SL_ENTER(_("sh_unix_lookup_page"));
|
---|
| 4174 | #if 0
|
---|
| 4175 | fprintf(stderr, "mlock: --> base %ld, pagenum: %ld\n",
|
---|
| 4176 | addr, pagenum);
|
---|
| 4177 | #endif
|
---|
| 4178 |
|
---|
| 4179 | /* address of first page
|
---|
| 4180 | */
|
---|
| 4181 | pagebase = pagenum * pagesize;
|
---|
| 4182 |
|
---|
| 4183 | /* number of pages
|
---|
| 4184 | */
|
---|
| 4185 | pagediff = (addr + len) - pagebase;
|
---|
| 4186 | pagenum = pagediff / pagesize;
|
---|
| 4187 | if (pagenum * pagesize < pagediff)
|
---|
| 4188 | ++pagenum;
|
---|
| 4189 |
|
---|
| 4190 | #if 0
|
---|
| 4191 | fprintf(stderr, "mlock: --> pagebase %ld, pagediff %ld, (addr + len) %ld\n",
|
---|
| 4192 | pagebase, pagediff, (addr + len));
|
---|
| 4193 | #endif
|
---|
| 4194 |
|
---|
| 4195 | *num_pages = pagenum;
|
---|
| 4196 | SL_RETURN((pagebase), _("sh_unix_lookup_page"));
|
---|
| 4197 | }
|
---|
| 4198 |
|
---|
| 4199 |
|
---|
| 4200 | #if defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK)
|
---|
[134] | 4201 |
|
---|
| 4202 | SH_MUTEX_STATIC(mutex_mlock,PTHREAD_MUTEX_INITIALIZER);
|
---|
| 4203 |
|
---|
[19] | 4204 | int sh_unix_mlock (char * file, int line, void * in_addr, size_t len)
|
---|
[1] | 4205 | {
|
---|
| 4206 | int num_pages;
|
---|
| 4207 | int status = 0;
|
---|
| 4208 | int pagesize;
|
---|
| 4209 | sh_page_l * page_list = sh_page_locked;
|
---|
| 4210 | unsigned long addr;
|
---|
| 4211 | #ifdef TEST_MLOCK
|
---|
| 4212 | int i = 0;
|
---|
| 4213 | #endif
|
---|
| 4214 |
|
---|
| 4215 | SL_ENTER(_("sh_unix_mlock"));
|
---|
| 4216 |
|
---|
[134] | 4217 | /* There's no cancellation point here, except if tracing is on
|
---|
| 4218 | */
|
---|
| 4219 | SH_MUTEX_LOCK_UNSAFE(mutex_mlock);
|
---|
| 4220 |
|
---|
[1] | 4221 | if (0 != page_locking)
|
---|
| 4222 | {
|
---|
[143] | 4223 | status = -1;
|
---|
| 4224 | goto exit_mlock;
|
---|
[1] | 4225 | }
|
---|
[134] | 4226 |
|
---|
[1] | 4227 | page_locking = 1;
|
---|
| 4228 |
|
---|
| 4229 | pagesize = sh_unix_pagesize();
|
---|
| 4230 | addr = sh_unix_lookup_page (in_addr, len, &num_pages);
|
---|
| 4231 |
|
---|
| 4232 | #ifdef TEST_MLOCK
|
---|
| 4233 | fprintf(stderr, "mlock: addr %ld, base %ld, pages: %d, length %d\n",
|
---|
| 4234 | (unsigned long) in_addr, addr, num_pages, len);
|
---|
| 4235 | #endif
|
---|
| 4236 |
|
---|
| 4237 | /* increase refcount of locked pages
|
---|
| 4238 | * addr is first page; num_pages is #(consecutive pages) to lock
|
---|
| 4239 | */
|
---|
[134] | 4240 |
|
---|
[1] | 4241 | while ((page_list != NULL) && (num_pages > 0))
|
---|
| 4242 | {
|
---|
| 4243 | #ifdef TEST_MLOCK
|
---|
| 4244 | fprintf(stderr, "mlock: check page %d: %ld [%d]\n",
|
---|
| 4245 | i, page_list->page_start, page_list->page_refcount);
|
---|
| 4246 | #endif
|
---|
| 4247 | if (page_list->page_start == addr)
|
---|
| 4248 | {
|
---|
| 4249 | page_list->page_refcount += 1;
|
---|
| 4250 | num_pages -= 1;
|
---|
| 4251 | addr += pagesize;
|
---|
| 4252 | #ifdef TEST_MLOCK
|
---|
| 4253 | fprintf(stderr, "mlock: found page %d: %ld [%d], next page %ld\n",
|
---|
| 4254 | i, page_list->page_start, page_list->page_refcount, addr);
|
---|
| 4255 | #endif
|
---|
| 4256 | }
|
---|
| 4257 | #ifdef TEST_MLOCK
|
---|
| 4258 | ++i;
|
---|
| 4259 | #endif
|
---|
| 4260 | page_list = page_list->next;
|
---|
| 4261 | }
|
---|
| 4262 |
|
---|
| 4263 | /* mlock some more pages, if needed
|
---|
| 4264 | */
|
---|
| 4265 | while (num_pages > 0)
|
---|
| 4266 | {
|
---|
| 4267 | #ifdef TEST_MLOCK
|
---|
| 4268 | fprintf(stderr, "mlock: lock page %d: mlock %ld [num_pages %d]\n",
|
---|
| 4269 | i, addr, num_pages);
|
---|
| 4270 | ++i;
|
---|
| 4271 | #endif
|
---|
| 4272 | page_list = SH_ALLOC(sizeof(sh_page_l));
|
---|
| 4273 | page_list->page_start = addr;
|
---|
| 4274 | page_list->page_refcount = 1;
|
---|
[19] | 4275 | sl_strlcpy(page_list->file, file, 64);
|
---|
| 4276 | page_list->line = line;
|
---|
[1] | 4277 | status = mlock( (void *) addr, pagesize);
|
---|
| 4278 | if (status != 0)
|
---|
| 4279 | {
|
---|
| 4280 | #ifdef TEST_MLOCK
|
---|
[132] | 4281 | char errbuf[SH_ERRBUF_SIZE];
|
---|
| 4282 | fprintf(stderr, "mlock: error: %s\n",
|
---|
| 4283 | sh_error_message(errno, errbuf, sizeof(errbuf)));
|
---|
[1] | 4284 | #endif
|
---|
| 4285 | SH_FREE(page_list);
|
---|
| 4286 | page_locking = 0;
|
---|
[143] | 4287 | goto exit_mlock;
|
---|
[1] | 4288 | }
|
---|
| 4289 | page_list->next = sh_page_locked;
|
---|
| 4290 | sh_page_locked = page_list;
|
---|
| 4291 | num_pages -= 1;
|
---|
| 4292 | addr += pagesize;
|
---|
| 4293 | }
|
---|
[134] | 4294 | page_locking = 0;
|
---|
[143] | 4295 |
|
---|
| 4296 | exit_mlock:
|
---|
[134] | 4297 | SH_MUTEX_UNLOCK_UNSAFE(mutex_mlock);
|
---|
[1] | 4298 |
|
---|
| 4299 | SL_RETURN((status), _("sh_unix_mlock"));
|
---|
| 4300 | }
|
---|
| 4301 | #else
|
---|
[49] | 4302 | int sh_unix_mlock (char * file, int line, void * in_addr, size_t len)
|
---|
[1] | 4303 | {
|
---|
[49] | 4304 | (void) file; (void) line;
|
---|
[1] | 4305 | (void) in_addr; (void) len;
|
---|
| 4306 | return -1;
|
---|
| 4307 | }
|
---|
| 4308 | #endif
|
---|
| 4309 |
|
---|
| 4310 | #if defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK)
|
---|
| 4311 | int sh_unix_munlock (void * in_addr, size_t len)
|
---|
| 4312 | {
|
---|
| 4313 | int num_pages;
|
---|
| 4314 | int unlocked = 0;
|
---|
| 4315 | int status = 0;
|
---|
| 4316 | int pagesize;
|
---|
| 4317 | sh_page_l * page_list = sh_page_locked;
|
---|
| 4318 | sh_page_l * page_last;
|
---|
| 4319 | unsigned long addr;
|
---|
| 4320 |
|
---|
| 4321 | int test_count;
|
---|
| 4322 | int test_status;
|
---|
| 4323 | int test_pages;
|
---|
| 4324 |
|
---|
| 4325 | #ifdef TEST_MLOCK
|
---|
| 4326 | int i = 0;
|
---|
| 4327 | #endif
|
---|
| 4328 |
|
---|
| 4329 | SL_ENTER(_("sh_unix_munlock"));
|
---|
| 4330 |
|
---|
[134] | 4331 | /* There's no cancellation point here, except if tracing is on
|
---|
| 4332 | */
|
---|
| 4333 | SH_MUTEX_LOCK_UNSAFE(mutex_mlock);
|
---|
| 4334 |
|
---|
[1] | 4335 | if (0 != page_locking)
|
---|
| 4336 | {
|
---|
[143] | 4337 | status = -1;
|
---|
| 4338 | goto exit_munlock;
|
---|
[1] | 4339 | }
|
---|
| 4340 | page_locking = 1;
|
---|
| 4341 |
|
---|
| 4342 | pagesize = sh_unix_pagesize();
|
---|
| 4343 | addr = sh_unix_lookup_page (in_addr, len, &num_pages);
|
---|
| 4344 |
|
---|
| 4345 | #ifdef TEST_MLOCK
|
---|
| 4346 | fprintf(stderr, "munlock: in_addr %ld, addr %ld, pages: %d, length %d\n",
|
---|
| 4347 | (unsigned long) in_addr, addr, num_pages, len);
|
---|
| 4348 | #endif
|
---|
| 4349 |
|
---|
| 4350 | test_pages = num_pages;
|
---|
| 4351 |
|
---|
| 4352 | /* reduce refcount of locked pages
|
---|
| 4353 | * addr is first page; num_pages is #(consecutive pages) to lock
|
---|
| 4354 | */
|
---|
| 4355 | while ((page_list != NULL) && (num_pages > 0))
|
---|
| 4356 | {
|
---|
| 4357 | #ifdef TEST_MLOCK
|
---|
| 4358 | fprintf(stderr, "munlock: page %d: %ld [%d]\n",
|
---|
| 4359 | i, page_list->page_start, page_list->page_refcount);
|
---|
| 4360 | #endif
|
---|
| 4361 |
|
---|
| 4362 | test_status = 0;
|
---|
| 4363 | for (test_count = 0; test_count < test_pages; ++test_count)
|
---|
| 4364 | {
|
---|
| 4365 | if (page_list->page_start == (addr + (test_count * pagesize)))
|
---|
| 4366 | {
|
---|
| 4367 | test_status = 1;
|
---|
| 4368 | break;
|
---|
| 4369 | }
|
---|
| 4370 | }
|
---|
| 4371 |
|
---|
| 4372 | if (test_status == 1)
|
---|
| 4373 | {
|
---|
| 4374 | page_list->page_refcount -= 1;
|
---|
| 4375 | if (page_list->page_refcount == 0)
|
---|
| 4376 | {
|
---|
| 4377 | status = munlock ( (void *) addr, pagesize);
|
---|
| 4378 | ++unlocked;
|
---|
| 4379 | }
|
---|
| 4380 | num_pages -= 1;
|
---|
| 4381 | #ifdef TEST_MLOCK
|
---|
| 4382 | fprintf(stderr,
|
---|
| 4383 | "munlock: page %d: %ld [refcount %d], refcount reduced\n",
|
---|
| 4384 | i, page_list->page_start, page_list->page_refcount);
|
---|
| 4385 | #endif
|
---|
| 4386 | }
|
---|
| 4387 | #ifdef TEST_MLOCK
|
---|
| 4388 | ++i;
|
---|
| 4389 | #endif
|
---|
| 4390 | page_list = page_list->next;
|
---|
| 4391 | }
|
---|
| 4392 |
|
---|
| 4393 | #ifdef TEST_MLOCK
|
---|
| 4394 | i = 0;
|
---|
| 4395 | #endif
|
---|
| 4396 |
|
---|
| 4397 | if (unlocked > 0)
|
---|
| 4398 | {
|
---|
| 4399 | page_list = sh_page_locked;
|
---|
| 4400 | page_last = sh_page_locked;
|
---|
| 4401 |
|
---|
| 4402 | while ((page_list != NULL) && (unlocked > 0))
|
---|
| 4403 | {
|
---|
| 4404 | if (page_list->page_refcount == 0)
|
---|
| 4405 | {
|
---|
| 4406 | #ifdef TEST_MLOCK
|
---|
| 4407 | fprintf(stderr, "munlock: remove page %d: %ld [refcount %d]\n",
|
---|
| 4408 | i, page_list->page_start, page_list->page_refcount);
|
---|
| 4409 | #endif
|
---|
| 4410 | if (page_last != page_list)
|
---|
| 4411 | {
|
---|
| 4412 | page_last->next = page_list->next;
|
---|
| 4413 | SH_FREE(page_list);
|
---|
| 4414 | page_list = page_last->next;
|
---|
| 4415 | }
|
---|
| 4416 | else
|
---|
| 4417 | {
|
---|
| 4418 | page_last = page_list->next;
|
---|
| 4419 | if (page_list == sh_page_locked)
|
---|
| 4420 | sh_page_locked = page_list->next;
|
---|
| 4421 | SH_FREE(page_list);
|
---|
| 4422 | page_list = page_last;
|
---|
| 4423 | }
|
---|
| 4424 | --unlocked;
|
---|
| 4425 | }
|
---|
| 4426 | else
|
---|
| 4427 | {
|
---|
| 4428 | #ifdef TEST_MLOCK
|
---|
| 4429 | fprintf(stderr, "munlock: skip page %d: %ld [refcount %d]\n",
|
---|
| 4430 | i, page_list->page_start, page_list->page_refcount);
|
---|
| 4431 | #endif
|
---|
| 4432 |
|
---|
| 4433 | page_last = page_list;
|
---|
| 4434 | page_list = page_list->next;
|
---|
| 4435 | }
|
---|
| 4436 | #ifdef TEST_MLOCK
|
---|
| 4437 | ++i;
|
---|
| 4438 | #endif
|
---|
| 4439 | }
|
---|
| 4440 | }
|
---|
| 4441 |
|
---|
| 4442 | page_locking = 0;
|
---|
[143] | 4443 |
|
---|
| 4444 | exit_munlock:
|
---|
[134] | 4445 | SH_MUTEX_UNLOCK_UNSAFE(mutex_mlock);
|
---|
[1] | 4446 | SL_RETURN((status), _("sh_unix_munlock"));
|
---|
| 4447 | }
|
---|
| 4448 | #else
|
---|
| 4449 | int sh_unix_munlock (void * in_addr, size_t len)
|
---|
| 4450 | {
|
---|
| 4451 | (void) in_addr; (void) len;
|
---|
| 4452 | return -1;
|
---|
| 4453 | }
|
---|
| 4454 | #endif
|
---|
| 4455 |
|
---|
| 4456 | int sh_unix_count_mlock()
|
---|
| 4457 | {
|
---|
| 4458 | int i = 0;
|
---|
| 4459 | char str[128];
|
---|
| 4460 | sh_page_l * page_list = sh_page_locked;
|
---|
| 4461 |
|
---|
| 4462 | SL_ENTER(_("sh_unix_count_mlock"));
|
---|
| 4463 | while (page_list != NULL)
|
---|
| 4464 | {
|
---|
[19] | 4465 | #ifdef WITH_TPT
|
---|
[25] | 4466 | sl_snprintf(str, sizeof(str), _("file: %s line: %d page: %d"),
|
---|
[19] | 4467 | page_list->file, page_list->line, i+1);
|
---|
| 4468 | sh_error_handle(SH_ERR_INFO, FIL__, __LINE__, i, MSG_E_SUBGEN,
|
---|
| 4469 | str, _("sh_unix_count_mlock"));
|
---|
| 4470 | #endif
|
---|
[1] | 4471 | page_list = page_list->next;
|
---|
| 4472 | ++i;
|
---|
| 4473 | }
|
---|
[25] | 4474 | sl_snprintf(str, sizeof(str), _("%d pages locked"), i);
|
---|
[1] | 4475 | sh_error_handle(SH_ERR_INFO, FIL__, __LINE__, i, MSG_E_SUBGEN,
|
---|
| 4476 | str, _("sh_unix_count_mlock"));
|
---|
| 4477 | SL_RETURN((i), _("sh_unix_count_mlock"));
|
---|
| 4478 | }
|
---|
| 4479 |
|
---|
| 4480 | /************************************************/
|
---|
| 4481 | /************************************************/
|
---|
| 4482 | /**** Stealth Utilities ****/
|
---|
| 4483 | /************************************************/
|
---|
| 4484 | /************************************************/
|
---|
| 4485 | #ifdef SH_STEALTH
|
---|
| 4486 |
|
---|
| 4487 | void sh_unix_xor_code (char * str, int len)
|
---|
| 4488 | {
|
---|
| 4489 | register int i;
|
---|
| 4490 |
|
---|
| 4491 | for (i = 0; i < len; ++i) str[i] ^= (char) XOR_CODE;
|
---|
| 4492 | return;
|
---|
| 4493 | }
|
---|
| 4494 |
|
---|
| 4495 | #if !defined(SH_STEALTH_MICRO)
|
---|
| 4496 |
|
---|
| 4497 |
|
---|
[89] | 4498 | int hideout_hex_block(SL_TICKET fd, unsigned char * str, int len,
|
---|
| 4499 | unsigned long * bytes_read);
|
---|
[1] | 4500 | unsigned long first_hex_block(SL_TICKET fd, unsigned long * max);
|
---|
| 4501 |
|
---|
| 4502 | /*
|
---|
| 4503 | * --- Get hidden data from a block of hex data. ---
|
---|
| 4504 | */
|
---|
| 4505 | int sh_unix_getline_stealth (SL_TICKET fd, char * str, int len)
|
---|
| 4506 | {
|
---|
[89] | 4507 | int add_off = 0, llen;
|
---|
| 4508 | static unsigned long off_data = 0;
|
---|
| 4509 | static unsigned long max_data = 0;
|
---|
| 4510 | static unsigned long bytes_read = 0;
|
---|
[52] | 4511 | static int stealth_init = BAD;
|
---|
[1] | 4512 |
|
---|
| 4513 | SL_ENTER(_("sh_unix_getline_stealth"));
|
---|
| 4514 |
|
---|
[34] | 4515 |
|
---|
[1] | 4516 | /* --- Initialize. ---
|
---|
| 4517 | */
|
---|
| 4518 | if (stealth_init == BAD)
|
---|
| 4519 | {
|
---|
| 4520 | off_data = first_hex_block(fd, &max_data);
|
---|
| 4521 | if (off_data == 0)
|
---|
| 4522 | {
|
---|
| 4523 | dlog(1, FIL__, __LINE__,
|
---|
| 4524 | _("The stealth config file does not contain any steganographically\nhidden data. This file must be an image file in _uncompressed_\npostscript format.\nTo hide data in it, use:\n samhain_stealth -s postscript_file orig_config_file\n mv postscript_file /path/to/config/file\n"));
|
---|
| 4525 | sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_P_NODATA,
|
---|
| 4526 | _("Stealth config file."));
|
---|
| 4527 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 4528 | }
|
---|
| 4529 | stealth_init = GOOD;
|
---|
[52] | 4530 | max_data += off_data;
|
---|
[1] | 4531 | }
|
---|
| 4532 |
|
---|
| 4533 | /* --- Seek to proper position. ---
|
---|
| 4534 | */
|
---|
[89] | 4535 | if (bytes_read >= max_data || add_off < 0)
|
---|
[52] | 4536 | {
|
---|
| 4537 | dlog(1, FIL__, __LINE__,
|
---|
| 4538 | _("The capacity of the container image file for the stealth config file seems to be too small. Your config file is likely truncated.\n"));
|
---|
| 4539 | sh_error_handle ((-1), FIL__, __LINE__, EIO, MSG_P_NODATA,
|
---|
| 4540 | _("Stealth config file."));
|
---|
| 4541 | aud_exit (FIL__, __LINE__, EXIT_FAILURE);
|
---|
| 4542 | }
|
---|
[1] | 4543 | sl_seek(fd, off_data);
|
---|
| 4544 |
|
---|
| 4545 | /* --- Read one line. ---
|
---|
| 4546 | */
|
---|
[89] | 4547 | add_off = hideout_hex_block(fd, (unsigned char *) str, len, &bytes_read);
|
---|
[1] | 4548 | off_data += add_off;
|
---|
| 4549 |
|
---|
| 4550 | llen = sl_strlen(str);
|
---|
| 4551 | SL_RETURN(llen, _("sh_unix_getline_stealth"));
|
---|
| 4552 | }
|
---|
| 4553 |
|
---|
[89] | 4554 | int hideout_hex_block(SL_TICKET fd, unsigned char * str, int len,
|
---|
| 4555 | unsigned long * bytes_read)
|
---|
[1] | 4556 | {
|
---|
| 4557 |
|
---|
| 4558 | register int i, j, k;
|
---|
| 4559 | unsigned char c, e;
|
---|
| 4560 | register int num;
|
---|
| 4561 | unsigned char mask[9] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
|
---|
| 4562 | unsigned long here = 0;
|
---|
| 4563 | unsigned long retval = 0;
|
---|
[89] | 4564 | unsigned long bread = 0;
|
---|
[1] | 4565 |
|
---|
| 4566 | SL_ENTER(_("hideout_hex_block"));
|
---|
| 4567 |
|
---|
[34] | 4568 | ASSERT_RET((len > 1), _("len > 1"), (0));
|
---|
| 4569 |
|
---|
| 4570 | --len;
|
---|
| 4571 |
|
---|
[1] | 4572 | i = 0;
|
---|
| 4573 | while (i < len)
|
---|
| 4574 | {
|
---|
| 4575 | for (j = 0; j < 8; ++j)
|
---|
| 4576 | {
|
---|
| 4577 |
|
---|
| 4578 | /* --- Get a low byte, modify, read back. ---
|
---|
| 4579 | */
|
---|
| 4580 | for (k = 0; k < 2; ++k)
|
---|
| 4581 | {
|
---|
| 4582 | /* -- Skip whitespace. ---
|
---|
| 4583 | */
|
---|
| 4584 | c = ' ';
|
---|
| 4585 | do {
|
---|
| 4586 | do {
|
---|
| 4587 | num = sl_read (fd, &c, 1);
|
---|
| 4588 | } while (num == 0 && errno == EINTR);
|
---|
[89] | 4589 | if (num > 0)
|
---|
| 4590 | ++here;
|
---|
| 4591 | else if (num == 0)
|
---|
[34] | 4592 | SL_RETURN((0), _("hideout_hex_block"));
|
---|
[89] | 4593 | else
|
---|
| 4594 | SL_RETURN((-1), _("hideout_hex_block"));
|
---|
[1] | 4595 | } while (c == '\n' || c == '\t' || c == '\r' ||
|
---|
| 4596 | c == ' ');
|
---|
| 4597 | }
|
---|
| 4598 |
|
---|
| 4599 |
|
---|
| 4600 | /* --- e is the value of the low byte. ---
|
---|
| 4601 | */
|
---|
| 4602 | e = (unsigned char) sh_util_hexchar( c );
|
---|
| 4603 | if ((e & mask[7]) != 0) /* bit is set */
|
---|
| 4604 | str[i] |= mask[j];
|
---|
| 4605 | else /* bit is not set */
|
---|
| 4606 | str[i] &= ~mask[j];
|
---|
| 4607 |
|
---|
[89] | 4608 | bread += 1;
|
---|
[1] | 4609 | }
|
---|
| 4610 | if (str[i] == '\n') break;
|
---|
| 4611 | ++i;
|
---|
| 4612 | }
|
---|
| 4613 |
|
---|
| 4614 | if (i != 0)
|
---|
| 4615 | str[i] = '\0';
|
---|
| 4616 | else
|
---|
[34] | 4617 | str[i+1] = '\0'; /* keep newline and terminate */
|
---|
[1] | 4618 | retval += here;
|
---|
[89] | 4619 | *bytes_read += (bread/8);
|
---|
[1] | 4620 |
|
---|
| 4621 | SL_RETURN(retval, _("hideout_hex_block"));
|
---|
| 4622 | }
|
---|
| 4623 |
|
---|
| 4624 | /* --- Get offset of first data block. ---
|
---|
| 4625 | */
|
---|
| 4626 | unsigned long first_hex_block(SL_TICKET fd, unsigned long * max)
|
---|
| 4627 | {
|
---|
[34] | 4628 | unsigned int i;
|
---|
| 4629 | long num = 1;
|
---|
| 4630 | unsigned long lnum;
|
---|
[1] | 4631 | char c;
|
---|
| 4632 | int nothex = 0;
|
---|
| 4633 | unsigned long retval = 0;
|
---|
[34] | 4634 | unsigned int this_line = 0;
|
---|
[1] | 4635 | char theline[SH_BUFSIZE];
|
---|
| 4636 |
|
---|
| 4637 | SL_ENTER(_("first_hex_block"));
|
---|
| 4638 |
|
---|
| 4639 | *max = 0;
|
---|
| 4640 |
|
---|
| 4641 | while (1)
|
---|
| 4642 | {
|
---|
| 4643 | theline[0] = '\0';
|
---|
| 4644 | this_line = 0;
|
---|
| 4645 | c = '\0';
|
---|
[34] | 4646 | while (c != '\n' && num > 0 && this_line < (sizeof(theline)-1))
|
---|
[1] | 4647 | {
|
---|
| 4648 | do {
|
---|
| 4649 | num = sl_read (fd, &c, 1);
|
---|
| 4650 | } while (num == 0 && errno == EINTR);
|
---|
| 4651 | if (num > 0)
|
---|
| 4652 | theline[this_line] = c;
|
---|
| 4653 | else
|
---|
| 4654 | SL_RETURN((0), _("first_hex_block"));
|
---|
[34] | 4655 | ++this_line;
|
---|
[1] | 4656 | }
|
---|
| 4657 | theline[this_line] = '\0';
|
---|
| 4658 |
|
---|
| 4659 | /* not only 'newline' */
|
---|
| 4660 | if (this_line > 60)
|
---|
| 4661 | {
|
---|
| 4662 | nothex = 0;
|
---|
| 4663 | i = 0;
|
---|
| 4664 | while (nothex == 0 && i < (this_line-1))
|
---|
| 4665 | {
|
---|
| 4666 | if (! isxdigit((int)theline[i])) nothex = 1;
|
---|
| 4667 | ++i;
|
---|
| 4668 | }
|
---|
| 4669 | if (nothex == 1) retval += this_line;
|
---|
| 4670 | }
|
---|
| 4671 | else
|
---|
| 4672 | {
|
---|
| 4673 | nothex = 1;
|
---|
| 4674 | retval += this_line;
|
---|
| 4675 | }
|
---|
| 4676 |
|
---|
| 4677 | if (nothex == 0)
|
---|
| 4678 | {
|
---|
| 4679 | *max = 0;
|
---|
| 4680 | do {
|
---|
| 4681 | do {
|
---|
| 4682 | num = sl_read (fd, theline, SH_BUFSIZE);
|
---|
| 4683 | } while (num == 0 && errno == EINTR);
|
---|
[34] | 4684 | if (num > 0)
|
---|
| 4685 | {
|
---|
| 4686 | lnum = (unsigned long) num;
|
---|
| 4687 | for (i = 0; i < lnum; ++i)
|
---|
| 4688 | {
|
---|
| 4689 | c = theline[i];
|
---|
| 4690 | if (c == '\n' || c == '\t' || c == '\r' || c == ' ')
|
---|
| 4691 | ;
|
---|
| 4692 | else if (!isxdigit((int)c))
|
---|
| 4693 | break;
|
---|
| 4694 | else
|
---|
| 4695 | *max += 1;
|
---|
| 4696 | }
|
---|
[1] | 4697 | }
|
---|
| 4698 | } while (num > 0);
|
---|
| 4699 |
|
---|
| 4700 | *max /= 16;
|
---|
| 4701 | SL_RETURN((retval), _("first_hex_block"));
|
---|
| 4702 | }
|
---|
| 4703 |
|
---|
| 4704 | }
|
---|
| 4705 | /* SL_RETURN((0), _("first_hex_block")); *//* unreachable */
|
---|
| 4706 | }
|
---|
| 4707 |
|
---|
| 4708 | /* if !defined(SH_STEALTH_MICRO) */
|
---|
| 4709 | #endif
|
---|
| 4710 |
|
---|
| 4711 | /* ifdef SH_STEALTH */
|
---|
| 4712 | #endif
|
---|
| 4713 |
|
---|
| 4714 | /*
|
---|
| 4715 | * anti-debugger code
|
---|
| 4716 | */
|
---|
| 4717 | #if defined(SCREW_IT_UP)
|
---|
| 4718 | volatile int sh_not_traced = 0;
|
---|
| 4719 |
|
---|
| 4720 | #ifdef HAVE_GETTIMEOFDAY
|
---|
| 4721 | struct timeval save_tv;
|
---|
| 4722 | #endif
|
---|
| 4723 |
|
---|
| 4724 | void sh_sigtrap_handler (int signum)
|
---|
| 4725 | {
|
---|
| 4726 | #ifdef HAVE_GETTIMEOFDAY
|
---|
| 4727 | struct timeval tv;
|
---|
| 4728 | long difftv;
|
---|
| 4729 |
|
---|
| 4730 | gettimeofday(&tv, NULL);
|
---|
| 4731 | difftv = (tv.tv_sec - save_tv.tv_sec) * 1000000 +
|
---|
| 4732 | (tv.tv_usec - save_tv.tv_usec);
|
---|
| 4733 | if (difftv > 500000)
|
---|
| 4734 | _exit(6);
|
---|
| 4735 | #endif
|
---|
| 4736 | sh_not_traced += signum;
|
---|
| 4737 | return;
|
---|
| 4738 | }
|
---|
| 4739 | #endif
|
---|