source: trunk/src/sh_unix.c@ 9

Last change on this file since 9 was 8, checked in by rainer, 19 years ago

minor optimisations for speed

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