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 | #ifdef HOST_IS_HPUX
|
---|
23 | #define _XOPEN_SOURCE_EXTENDED
|
---|
24 | #endif
|
---|
25 |
|
---|
26 | #include <stdlib.h>
|
---|
27 | #include <string.h>
|
---|
28 | #include <errno.h>
|
---|
29 |
|
---|
30 | #include <sys/types.h>
|
---|
31 | #include <unistd.h>
|
---|
32 | #include <sys/stat.h>
|
---|
33 | #include <fcntl.h>
|
---|
34 | #include <signal.h>
|
---|
35 | #include <sys/socket.h>
|
---|
36 | #include <netinet/in.h>
|
---|
37 |
|
---|
38 | #ifndef S_SPLINT_S
|
---|
39 | #include <arpa/inet.h>
|
---|
40 | #else
|
---|
41 | #define AF_INET 2
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | #include <time.h>
|
---|
45 |
|
---|
46 | #ifndef HAVE_LSTAT
|
---|
47 | #define lstat stat
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | #include "samhain.h"
|
---|
51 | #include "sh_error.h"
|
---|
52 | #include "sh_calls.h"
|
---|
53 | #include "sh_ipvx.h"
|
---|
54 | #include "sh_sub.h"
|
---|
55 | #include "sh_utils.h"
|
---|
56 |
|
---|
57 | #undef FIL__
|
---|
58 | #define FIL__ _("sh_calls.c")
|
---|
59 |
|
---|
60 | char aud_err_message[64];
|
---|
61 |
|
---|
62 | typedef struct cht_struct
|
---|
63 | {
|
---|
64 | const char * str;
|
---|
65 | unsigned long val;
|
---|
66 | } cht_type;
|
---|
67 |
|
---|
68 | static cht_type aud_tab[] =
|
---|
69 | {
|
---|
70 | { N_("execve"), AUD_EXEC },
|
---|
71 | { N_("utime"), AUD_UTIME },
|
---|
72 | { N_("unlink"), AUD_UNLINK },
|
---|
73 | { N_("dup"), AUD_DUP },
|
---|
74 | { N_("chdir"), AUD_CHDIR },
|
---|
75 | { N_("open"), AUD_OPEN },
|
---|
76 | { N_("kill"), AUD_KILL },
|
---|
77 | { N_("exit"), AUD_EXIT },
|
---|
78 | { N_("fork"), AUD_FORK },
|
---|
79 | { N_("setuid"), AUD_SETUID },
|
---|
80 | { N_("setgid"), AUD_SETGID },
|
---|
81 | { N_("pipe"), AUD_PIPE },
|
---|
82 | { NULL, 0 }
|
---|
83 | };
|
---|
84 |
|
---|
85 | /* Set aud functions
|
---|
86 | */
|
---|
87 | int sh_aud_set_functions(const char * str_s)
|
---|
88 | {
|
---|
89 | int i = 0;
|
---|
90 |
|
---|
91 | SL_ENTER(_("sh_aud_set_functions"));
|
---|
92 |
|
---|
93 | if (str_s == NULL)
|
---|
94 | return -1;
|
---|
95 |
|
---|
96 | while (aud_tab[i].str != NULL)
|
---|
97 | {
|
---|
98 | if (NULL != sl_strstr (str_s, _(aud_tab[i].str)))
|
---|
99 | {
|
---|
100 | sh.flag.audit = 1;
|
---|
101 | sh.flag.aud_mask |= aud_tab[i].val;
|
---|
102 | }
|
---|
103 | ++i;
|
---|
104 | }
|
---|
105 |
|
---|
106 | SL_RETURN(0,_("sh_aud_set_functions"));
|
---|
107 | }
|
---|
108 |
|
---|
109 |
|
---|
110 |
|
---|
111 |
|
---|
112 | /* Need to catch EINTR for these functions.
|
---|
113 | */
|
---|
114 | long int retry_sigaction(const char * file, int line,
|
---|
115 | int signum, const struct sigaction *act,
|
---|
116 | struct sigaction *oldact)
|
---|
117 | {
|
---|
118 | int error;
|
---|
119 | long int val_retry = -1;
|
---|
120 | char errbuf[SH_ERRBUF_SIZE];
|
---|
121 | errno = 0;
|
---|
122 |
|
---|
123 | SL_ENTER(_("retry_sigaction"));
|
---|
124 |
|
---|
125 | do {
|
---|
126 | val_retry = sigaction(signum, act, oldact);
|
---|
127 | } while (val_retry < 0 && errno == EINTR);
|
---|
128 |
|
---|
129 | error = errno;
|
---|
130 | if (val_retry < 0) {
|
---|
131 | sh_error_handle ((-1), file, line, error, MSG_ERR_SIGACT,
|
---|
132 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
133 | (long) signum );
|
---|
134 | }
|
---|
135 | errno = error;
|
---|
136 | SL_RETURN(val_retry, _("retry_sigaction"));
|
---|
137 | }
|
---|
138 |
|
---|
139 | static struct sh_sockaddr bind_addr;
|
---|
140 | static int use_bind_addr = 0;
|
---|
141 |
|
---|
142 | int sh_calls_set_bind_addr (const char * str)
|
---|
143 | {
|
---|
144 | static int reject = 0;
|
---|
145 |
|
---|
146 | if (reject == 1)
|
---|
147 | return (0);
|
---|
148 |
|
---|
149 | if (sh.flag.opts == S_TRUE)
|
---|
150 | reject = 1;
|
---|
151 |
|
---|
152 | #if defined(USE_IPVX)
|
---|
153 | if (0 == sh_ipvx_aton(str, &bind_addr))
|
---|
154 | return -1;
|
---|
155 | #else
|
---|
156 | if (0 == inet_aton(str, &(bind_addr.sin.sin_addr)))
|
---|
157 | return -1;
|
---|
158 | #endif
|
---|
159 |
|
---|
160 | use_bind_addr = 1;
|
---|
161 | return 0;
|
---|
162 | }
|
---|
163 |
|
---|
164 |
|
---|
165 | long int retry_connect(const char * file, int line, int sockfd,
|
---|
166 | struct sockaddr *serv_addr, int addrlen)
|
---|
167 | {
|
---|
168 | int error;
|
---|
169 | long int val_retry = 0;
|
---|
170 | char errbuf[SH_ERRBUF_SIZE];
|
---|
171 |
|
---|
172 | SL_ENTER(_("retry_connect"));
|
---|
173 |
|
---|
174 | errno = 0;
|
---|
175 |
|
---|
176 | if (0 != use_bind_addr)
|
---|
177 | {
|
---|
178 | int slen = SH_SS_LEN(bind_addr);
|
---|
179 |
|
---|
180 | val_retry = bind(sockfd, sh_ipvx_sockaddr_cast(&bind_addr), slen);
|
---|
181 | }
|
---|
182 |
|
---|
183 | if (val_retry == 0)
|
---|
184 | {
|
---|
185 | do {
|
---|
186 | val_retry = connect(sockfd, serv_addr, addrlen);
|
---|
187 | } while (val_retry < 0 && (errno == EINTR || errno == EINPROGRESS));
|
---|
188 | }
|
---|
189 |
|
---|
190 | error = errno;
|
---|
191 | if (val_retry != 0) {
|
---|
192 | long eport;
|
---|
193 | char eaddr[SH_IP_BUF];
|
---|
194 |
|
---|
195 | struct sh_sockaddr ss;
|
---|
196 | sh_ipvx_save(&ss, serv_addr->sa_family, serv_addr);
|
---|
197 | sh_ipvx_ntoa(eaddr, sizeof(eaddr), &ss);
|
---|
198 |
|
---|
199 | if (serv_addr->sa_family == AF_INET)
|
---|
200 | eport = (long) ntohs(((struct sockaddr_in *)serv_addr)->sin_port);
|
---|
201 | else
|
---|
202 | eport = (long) ntohs(((struct sockaddr_in6 *)serv_addr)->sin6_port);
|
---|
203 |
|
---|
204 | sh_error_handle ((-1), file, line, error, MSG_ERR_CONNECT,
|
---|
205 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
206 | (long) sockfd, eport, eaddr);
|
---|
207 | }
|
---|
208 | errno = error;
|
---|
209 | SL_RETURN(val_retry, _("retry_connect"));
|
---|
210 | }
|
---|
211 |
|
---|
212 | long int retry_accept(const char * file, int line, int fd,
|
---|
213 | struct sh_sockaddr *serv_addr, int * addrlen)
|
---|
214 | {
|
---|
215 | int error;
|
---|
216 | long int val_retry = -1;
|
---|
217 | char errbuf[SH_ERRBUF_SIZE];
|
---|
218 | struct sockaddr_storage ss;
|
---|
219 |
|
---|
220 | ACCEPT_TYPE_ARG3 my_addrlen = sizeof(ss);
|
---|
221 |
|
---|
222 | errno = 0;
|
---|
223 |
|
---|
224 | SL_ENTER(_("retry_accept"));
|
---|
225 |
|
---|
226 | do {
|
---|
227 | val_retry = accept(fd, (struct sockaddr *)&ss, &my_addrlen);
|
---|
228 | } while (val_retry < 0 && errno == EINTR);
|
---|
229 |
|
---|
230 | error = errno;
|
---|
231 | if (val_retry < 0) {
|
---|
232 | sh_error_handle ((-1), file, line, error, MSG_ERR_ACCEPT,
|
---|
233 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
234 | (long) fd );
|
---|
235 | }
|
---|
236 | errno = error;
|
---|
237 |
|
---|
238 | sh_ipvx_save(serv_addr, ss.ss_family, (struct sockaddr *) &ss);
|
---|
239 |
|
---|
240 | *addrlen = (int) my_addrlen;
|
---|
241 | SL_RETURN(val_retry, _("retry_accept"));
|
---|
242 | }
|
---|
243 |
|
---|
244 | static int sh_enable_use_sub = 0;
|
---|
245 |
|
---|
246 | #if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE)
|
---|
247 | static int sh_use_sub = 1;
|
---|
248 | #else
|
---|
249 | static int sh_use_sub = 0;
|
---|
250 | #endif
|
---|
251 |
|
---|
252 | void sh_calls_enable_sub()
|
---|
253 | {
|
---|
254 | sh_enable_use_sub = 1;
|
---|
255 | return;
|
---|
256 | }
|
---|
257 |
|
---|
258 | int sh_calls_set_sub (const char * str)
|
---|
259 | {
|
---|
260 | int ret = sh_util_flagval(str, &sh_use_sub);
|
---|
261 |
|
---|
262 | if ((ret == 0) && (!sh_use_sub))
|
---|
263 | {
|
---|
264 | sh_kill_sub();
|
---|
265 | }
|
---|
266 | return ret;
|
---|
267 | }
|
---|
268 |
|
---|
269 | long int retry_lstat_ns(const char * file, int line,
|
---|
270 | const char *file_name, struct stat *buf)
|
---|
271 | {
|
---|
272 | int error;
|
---|
273 | long int val_retry = -1;
|
---|
274 | char errbuf[SH_ERRBUF_SIZE];
|
---|
275 |
|
---|
276 | SL_ENTER(_("retry_lstat_ns"));
|
---|
277 |
|
---|
278 | do {
|
---|
279 | val_retry = /*@-unrecog@*/lstat (file_name, buf)/*@+unrecog@*/;
|
---|
280 | } while (val_retry < 0 && errno == EINTR);
|
---|
281 |
|
---|
282 | error = errno;
|
---|
283 | if (val_retry < 0) {
|
---|
284 | (void) sh_error_message(error, aud_err_message, 64);
|
---|
285 | sh_error_handle ((-1), file, line, error, MSG_ERR_LSTAT,
|
---|
286 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
287 | file_name );
|
---|
288 | }
|
---|
289 | errno = error;
|
---|
290 |
|
---|
291 | SL_RETURN(val_retry, _("retry_lstat_ns"));
|
---|
292 | }
|
---|
293 |
|
---|
294 | long int retry_lstat(const char * file, int line,
|
---|
295 | const char *file_name, struct stat *buf)
|
---|
296 | {
|
---|
297 | int error;
|
---|
298 | long int val_retry = -1;
|
---|
299 | char errbuf[SH_ERRBUF_SIZE];
|
---|
300 |
|
---|
301 | SL_ENTER(_("retry_lstat"));
|
---|
302 |
|
---|
303 | if (sh_use_sub && sh_enable_use_sub)
|
---|
304 | {
|
---|
305 | val_retry = sh_sub_lstat (file_name, buf);
|
---|
306 | }
|
---|
307 | else
|
---|
308 | {
|
---|
309 | do {
|
---|
310 | val_retry = /*@-unrecog@*/lstat (file_name, buf)/*@+unrecog@*/;
|
---|
311 | } while (val_retry < 0 && errno == EINTR);
|
---|
312 | }
|
---|
313 |
|
---|
314 | error = errno;
|
---|
315 | if (val_retry < 0) {
|
---|
316 | (void) sh_error_message(error, aud_err_message, 64);
|
---|
317 | sh_error_handle ((-1), file, line, error, MSG_ERR_LSTAT,
|
---|
318 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
319 | file_name );
|
---|
320 | }
|
---|
321 | errno = error;
|
---|
322 |
|
---|
323 | SL_RETURN(val_retry, _("retry_lstat"));
|
---|
324 | }
|
---|
325 |
|
---|
326 | long int retry_stat(const char * file, int line,
|
---|
327 | const char *file_name, struct stat *buf)
|
---|
328 | {
|
---|
329 | int error;
|
---|
330 | long int val_retry = -1;
|
---|
331 | char errbuf[SH_ERRBUF_SIZE];
|
---|
332 |
|
---|
333 | SL_ENTER(_("retry_stat"));
|
---|
334 |
|
---|
335 | if (sh_use_sub && sh_enable_use_sub)
|
---|
336 | {
|
---|
337 | val_retry = sh_sub_stat (file_name, buf);
|
---|
338 | }
|
---|
339 | else
|
---|
340 | {
|
---|
341 | do {
|
---|
342 | val_retry = stat (file_name, buf);
|
---|
343 | } while (val_retry < 0 && errno == EINTR);
|
---|
344 | }
|
---|
345 |
|
---|
346 | error = errno;
|
---|
347 | if (val_retry < 0) {
|
---|
348 | (void) sh_error_message(error, aud_err_message, 64);
|
---|
349 | sh_error_handle ((-1), file, line, error, MSG_ERR_STAT,
|
---|
350 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
351 | file_name );
|
---|
352 | }
|
---|
353 | errno = error;
|
---|
354 |
|
---|
355 | SL_RETURN(val_retry, _("retry_stat"));
|
---|
356 | }
|
---|
357 |
|
---|
358 | long int retry_fstat(const char * file, int line, int filed, struct stat *buf)
|
---|
359 | {
|
---|
360 | int error;
|
---|
361 | long int val_retry = -1;
|
---|
362 | char errbuf[SH_ERRBUF_SIZE];
|
---|
363 |
|
---|
364 | SL_ENTER(_("retry_fstat"));
|
---|
365 |
|
---|
366 | do {
|
---|
367 | val_retry = fstat (filed, buf);
|
---|
368 | } while (val_retry < 0 && errno == EINTR);
|
---|
369 | error = errno;
|
---|
370 | if (val_retry < 0) {
|
---|
371 | sh_error_handle ((-1), file, line, error, MSG_ERR_FSTAT,
|
---|
372 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
373 | (long) filed );
|
---|
374 | }
|
---|
375 | errno = error;
|
---|
376 | SL_RETURN(val_retry, _("retry_fstat"));
|
---|
377 | }
|
---|
378 |
|
---|
379 | long int retry_fcntl(const char * file, int line, int fd, int cmd, long arg)
|
---|
380 | {
|
---|
381 | int error;
|
---|
382 | long int val_retry = -1;
|
---|
383 | char errbuf[SH_ERRBUF_SIZE];
|
---|
384 | errno = 0;
|
---|
385 |
|
---|
386 | SL_ENTER(_("retry_fcntl"));
|
---|
387 |
|
---|
388 | if (cmd == F_GETFD || cmd == F_GETFL)
|
---|
389 | {
|
---|
390 | do {
|
---|
391 | val_retry = fcntl(fd, cmd);
|
---|
392 | } while (val_retry < 0 && errno == EINTR);
|
---|
393 | }
|
---|
394 | else
|
---|
395 | {
|
---|
396 | do {
|
---|
397 | val_retry = fcntl(fd, cmd, arg);
|
---|
398 | } while (val_retry < 0 && errno == EINTR);
|
---|
399 | }
|
---|
400 | error = errno;
|
---|
401 | if (val_retry < 0) {
|
---|
402 | sh_error_handle ((-1), file, line, error, MSG_ERR_FCNTL,
|
---|
403 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
404 | (long) fd, (long) cmd, arg );
|
---|
405 | }
|
---|
406 | errno = error;
|
---|
407 | SL_RETURN(val_retry, _("retry_fcntl"));
|
---|
408 | }
|
---|
409 |
|
---|
410 | long int retry_msleep (int sec, int millisec)
|
---|
411 | {
|
---|
412 | int result = 0;
|
---|
413 | #if defined(HAVE_NANOSLEEP)
|
---|
414 | struct timespec req, rem;
|
---|
415 | #endif
|
---|
416 |
|
---|
417 | SL_ENTER(_("retry_msleep"));
|
---|
418 |
|
---|
419 | errno = 0;
|
---|
420 | if (millisec > 999) millisec = 999;
|
---|
421 | if (millisec < 0) millisec = 0;
|
---|
422 | if (sec < 0) sec = 0;
|
---|
423 |
|
---|
424 | #if defined(HAVE_NANOSLEEP)
|
---|
425 | /*@-usedef@*/
|
---|
426 | req.tv_sec = sec; rem.tv_sec = 0;
|
---|
427 | req.tv_nsec = millisec * 1000000; rem.tv_nsec = 0;
|
---|
428 | /*@+usedef@*/
|
---|
429 | do {
|
---|
430 | result = /*@-unrecog@*/nanosleep(&req, &rem)/*@+unrecog@*/;
|
---|
431 |
|
---|
432 | req.tv_sec = rem.tv_sec; rem.tv_sec = 0;
|
---|
433 | req.tv_nsec = rem.tv_nsec; rem.tv_nsec = 0;
|
---|
434 |
|
---|
435 | } while ((result == -1) && (errno == EINTR));
|
---|
436 | #else
|
---|
437 | if (sec > 0)
|
---|
438 | {
|
---|
439 | sleep (sec); /* nanosleep not available */
|
---|
440 | }
|
---|
441 | else
|
---|
442 | {
|
---|
443 | #ifdef HAVE_USLEEP
|
---|
444 | if (millisec > 0)
|
---|
445 | {
|
---|
446 | usleep(1000 * millisec);
|
---|
447 | }
|
---|
448 | #else
|
---|
449 | if (millisec > 0)
|
---|
450 | {
|
---|
451 | sleep (1);
|
---|
452 | }
|
---|
453 | #endif
|
---|
454 | }
|
---|
455 | #endif
|
---|
456 | SL_RETURN(result, _("retry_msleep"));
|
---|
457 | }
|
---|
458 |
|
---|
459 | /***************************************************
|
---|
460 | *
|
---|
461 | * Audit these functions.
|
---|
462 | *
|
---|
463 | ***************************************************/
|
---|
464 |
|
---|
465 | long int retry_aud_execve (const char * file, int line,
|
---|
466 | const char *dateiname, char * argv[],
|
---|
467 | char * envp[])
|
---|
468 | {
|
---|
469 | uid_t a = geteuid();
|
---|
470 | gid_t b = getegid();
|
---|
471 | int i;
|
---|
472 | int error;
|
---|
473 | char errbuf[SH_ERRBUF_SIZE];
|
---|
474 |
|
---|
475 | SL_ENTER(_("retry_aud_execve"));
|
---|
476 |
|
---|
477 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_EXEC) != 0)
|
---|
478 | sh_error_handle ((-1), file, line, 0, MSG_AUD_EXEC,
|
---|
479 | dateiname, (long) a, (long) b );
|
---|
480 | do {
|
---|
481 | i = execve(dateiname, argv, envp);
|
---|
482 | } while (i < 0 && errno == EINTR);
|
---|
483 |
|
---|
484 | error = errno;
|
---|
485 | if (i < 0) {
|
---|
486 | sh_error_handle ((-1), file, line, error, MSG_ERR_EXEC,
|
---|
487 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
488 | dateiname, (long) a, (long) b );
|
---|
489 | }
|
---|
490 | errno = error;
|
---|
491 | SL_RETURN(i, _("retry_aud_execve"));
|
---|
492 | }
|
---|
493 |
|
---|
494 |
|
---|
495 | long int retry_aud_utime (const char * file, int line,
|
---|
496 | char * path, struct utimbuf *buf)
|
---|
497 | {
|
---|
498 | long int val_return;
|
---|
499 | int error;
|
---|
500 | char errbuf[SH_ERRBUF_SIZE];
|
---|
501 | errno = 0;
|
---|
502 |
|
---|
503 | SL_ENTER(_("retry_aud_utime"));
|
---|
504 |
|
---|
505 | do {
|
---|
506 | val_return = utime (path, buf);
|
---|
507 | } while (val_return < 0 && errno == EINTR);
|
---|
508 |
|
---|
509 | error = errno;
|
---|
510 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_UTIME) != 0)
|
---|
511 | sh_error_handle ((-1), file, line, 0, MSG_AUD_UTIME,
|
---|
512 | path,
|
---|
513 | (unsigned long) buf->actime,
|
---|
514 | (unsigned long) buf->modtime);
|
---|
515 | if (val_return < 0) {
|
---|
516 | sh_error_handle ((-1), file, line, error, MSG_ERR_UTIME,
|
---|
517 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
518 | path,
|
---|
519 | (unsigned long) buf->actime,
|
---|
520 | (unsigned long) buf->modtime);
|
---|
521 | }
|
---|
522 | errno = error;
|
---|
523 | SL_RETURN(val_return, _("retry_aud_utime"));
|
---|
524 | }
|
---|
525 |
|
---|
526 | long int retry_aud_unlink (const char * file, int line,
|
---|
527 | char * path)
|
---|
528 | {
|
---|
529 | long int val_return;
|
---|
530 | int error;
|
---|
531 | char errbuf[SH_ERRBUF_SIZE];
|
---|
532 | errno = 0;
|
---|
533 |
|
---|
534 | SL_ENTER(_("retry_aud_unlink"));
|
---|
535 |
|
---|
536 | do {
|
---|
537 | val_return = unlink (path);
|
---|
538 | } while (val_return < 0 && errno == EINTR);
|
---|
539 |
|
---|
540 | error = errno;
|
---|
541 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_UNLINK) != 0)
|
---|
542 | sh_error_handle ((-1), file, line, 0, MSG_AUD_UNLINK,
|
---|
543 | path);
|
---|
544 | if (val_return < 0) {
|
---|
545 | sh_error_handle ((-1), file, line, error, MSG_ERR_UNLINK,
|
---|
546 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
547 | path);
|
---|
548 | }
|
---|
549 | errno = error;
|
---|
550 | SL_RETURN(val_return, _("retry_aud_unlink"));
|
---|
551 | }
|
---|
552 |
|
---|
553 | long int retry_aud_dup2 (const char * file, int line,
|
---|
554 | int fd, int fd2)
|
---|
555 | {
|
---|
556 | long int val_return;
|
---|
557 | int error;
|
---|
558 | char errbuf[SH_ERRBUF_SIZE];
|
---|
559 | errno = 0;
|
---|
560 |
|
---|
561 | SL_ENTER(_("retry_aud_dup2"));
|
---|
562 |
|
---|
563 | do {
|
---|
564 | val_return = dup2 (fd, fd2);
|
---|
565 | } while (val_return < 0 && errno == EINTR);
|
---|
566 |
|
---|
567 | error = errno;
|
---|
568 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_DUP) != 0)
|
---|
569 | sh_error_handle ((-1), file, line, 0, MSG_AUD_DUP,
|
---|
570 | (long) fd, val_return);
|
---|
571 | if (val_return < 0) {
|
---|
572 | sh_error_handle ((-1), file, line, error, MSG_ERR_DUP,
|
---|
573 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
574 | (long) fd, val_return);
|
---|
575 | }
|
---|
576 | errno = error;
|
---|
577 | SL_RETURN(val_return, _("retry_aud_dup2"));
|
---|
578 | }
|
---|
579 |
|
---|
580 | long int retry_aud_dup (const char * file, int line,
|
---|
581 | int fd)
|
---|
582 | {
|
---|
583 | long int val_return;
|
---|
584 | int error;
|
---|
585 | char errbuf[SH_ERRBUF_SIZE];
|
---|
586 | errno = 0;
|
---|
587 |
|
---|
588 | SL_ENTER(_("retry_aud_dup"));
|
---|
589 |
|
---|
590 | do {
|
---|
591 | val_return = dup (fd);
|
---|
592 | } while (val_return < 0 && errno == EINTR);
|
---|
593 | error = errno;
|
---|
594 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_DUP) != 0)
|
---|
595 | sh_error_handle ((-1), file, line, 0, MSG_AUD_DUP,
|
---|
596 | (long) fd, val_return);
|
---|
597 | if (val_return < 0) {
|
---|
598 | sh_error_handle ((-1), file, line, error, MSG_ERR_DUP,
|
---|
599 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
600 | (long) fd, val_return);
|
---|
601 | }
|
---|
602 | errno = error;
|
---|
603 | SL_RETURN(val_return, _("retry_aud_dup"));
|
---|
604 | }
|
---|
605 |
|
---|
606 |
|
---|
607 |
|
---|
608 | long int retry_aud_chdir (const char * file, int line,
|
---|
609 | const char *path)
|
---|
610 | {
|
---|
611 | long int val_return;
|
---|
612 | int error = 0;
|
---|
613 | char errbuf[SH_ERRBUF_SIZE];
|
---|
614 | errno = 0;
|
---|
615 |
|
---|
616 | SL_ENTER(_("retry_aud_chdir"));
|
---|
617 |
|
---|
618 | do {
|
---|
619 | val_return = chdir (path);
|
---|
620 | } while (val_return < 0 && errno == EINTR);
|
---|
621 |
|
---|
622 | error = errno;
|
---|
623 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_CHDIR) != 0)
|
---|
624 | sh_error_handle ((-1), file, line, 0, MSG_AUD_CHDIR,
|
---|
625 | path);
|
---|
626 | if (val_return < 0) {
|
---|
627 | sh_error_handle ((-1), file, line, error, MSG_ERR_CHDIR,
|
---|
628 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
629 | path);
|
---|
630 | }
|
---|
631 | errno = error;
|
---|
632 | SL_RETURN(val_return, _("retry_aud_chdir"));
|
---|
633 | }
|
---|
634 |
|
---|
635 |
|
---|
636 | long int aud_open_noatime (const char * file, int line, int privs,
|
---|
637 | const char *pathname, int flags, mode_t mode,
|
---|
638 | int * o_noatime)
|
---|
639 | {
|
---|
640 | long int val_return;
|
---|
641 | int error;
|
---|
642 | char errbuf[SH_ERRBUF_SIZE];
|
---|
643 |
|
---|
644 | SL_ENTER(_("aud_open"));
|
---|
645 |
|
---|
646 | val_return = open (pathname, *o_noatime|flags, mode);
|
---|
647 | if ((val_return < 0) && (*o_noatime != 0))
|
---|
648 | {
|
---|
649 | val_return = open (pathname, flags, mode);
|
---|
650 | if (val_return >= 0)
|
---|
651 | *o_noatime = 0;
|
---|
652 | }
|
---|
653 | error = errno;
|
---|
654 | /*@-noeffect@*/
|
---|
655 | (void) privs; /* fix compiler warning */
|
---|
656 | /*@+noeffect@*/
|
---|
657 |
|
---|
658 | if (val_return < 0)
|
---|
659 | {
|
---|
660 | (void) sh_error_message(error, aud_err_message, 64);
|
---|
661 | }
|
---|
662 |
|
---|
663 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_OPEN) != 0)
|
---|
664 | {
|
---|
665 | sh_error_handle ((-1), file, line, 0, MSG_AUD_OPEN,
|
---|
666 | pathname, (long) flags, (long) mode, val_return);
|
---|
667 | }
|
---|
668 | if (val_return < 0) {
|
---|
669 | sh_error_handle ((-1), file, line, error, MSG_ERR_OPEN,
|
---|
670 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
671 | pathname, (long) flags, (long) mode, val_return);
|
---|
672 | }
|
---|
673 | errno = error;
|
---|
674 | SL_RETURN(val_return, _("aud_open"));
|
---|
675 | }
|
---|
676 |
|
---|
677 | long int aud_open (const char * file, int line, int privs,
|
---|
678 | const char *pathname, int flags, mode_t mode)
|
---|
679 | {
|
---|
680 | long int val_return;
|
---|
681 | int error;
|
---|
682 | char errbuf[SH_ERRBUF_SIZE];
|
---|
683 |
|
---|
684 | SL_ENTER(_("aud_open"));
|
---|
685 |
|
---|
686 | val_return = open (pathname, flags, mode);
|
---|
687 | error = errno;
|
---|
688 | /*@-noeffect@*/
|
---|
689 | (void) privs; /* fix compiler warning */
|
---|
690 | /*@+noeffect@*/
|
---|
691 |
|
---|
692 | if (val_return < 0)
|
---|
693 | {
|
---|
694 | (void) sh_error_message(error, aud_err_message, 64);
|
---|
695 | }
|
---|
696 |
|
---|
697 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_OPEN) != 0)
|
---|
698 | {
|
---|
699 | sh_error_handle ((-1), file, line, 0, MSG_AUD_OPEN,
|
---|
700 | pathname, (long) flags, (long) mode, val_return);
|
---|
701 | }
|
---|
702 | if (val_return < 0) {
|
---|
703 | sh_error_handle ((-1), file, line, error, MSG_ERR_OPEN,
|
---|
704 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
705 | pathname, (long) flags, (long) mode, val_return);
|
---|
706 | }
|
---|
707 | errno = error;
|
---|
708 | SL_RETURN(val_return, _("aud_open"));
|
---|
709 | }
|
---|
710 |
|
---|
711 | long int aud_kill (const char * file, int line, pid_t pid, int sig)
|
---|
712 | {
|
---|
713 | int myerror;
|
---|
714 | long int val_return = kill (pid, sig);
|
---|
715 | char errbuf[SH_ERRBUF_SIZE];
|
---|
716 | myerror = errno;
|
---|
717 |
|
---|
718 | SL_ENTER(_("aud_kill"));
|
---|
719 |
|
---|
720 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_KILL) != 0)
|
---|
721 | sh_error_handle ((-1), file, line, 0, MSG_AUD_KILL,
|
---|
722 | (long) pid, (long) sig);
|
---|
723 | if (val_return < 0) {
|
---|
724 | sh_error_handle ((-1), file, line, myerror, MSG_ERR_KILL,
|
---|
725 | sh_error_message(myerror, errbuf, sizeof(errbuf)),
|
---|
726 | (long) pid, (long) sig);
|
---|
727 | }
|
---|
728 | errno = myerror;
|
---|
729 | SL_RETURN(val_return, _("aud_kill"));
|
---|
730 | }
|
---|
731 |
|
---|
732 | /*@noreturn@*/
|
---|
733 | void aud_exit (const char * file, int line, int fd)
|
---|
734 | {
|
---|
735 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_EXIT) != 0)
|
---|
736 | sh_error_handle ((-1), file, line, 0, MSG_AUD_EXIT,
|
---|
737 | (long) fd);
|
---|
738 |
|
---|
739 | SL_ENTER(_("aud_exit"));
|
---|
740 |
|
---|
741 | sh.flag.exit = fd;
|
---|
742 | exit(fd);
|
---|
743 | }
|
---|
744 |
|
---|
745 | /*@noreturn@*/
|
---|
746 | void aud__exit (const char * file, int line, int fd)
|
---|
747 | {
|
---|
748 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_EXIT) != 0)
|
---|
749 | sh_error_handle ((-1), file, line, 0, MSG_AUD_EXIT,
|
---|
750 | (long) fd);
|
---|
751 |
|
---|
752 | SL_ENTER(_("aud__exit"));
|
---|
753 |
|
---|
754 | sh.flag.exit = fd;
|
---|
755 | _exit(fd);
|
---|
756 | }
|
---|
757 |
|
---|
758 | pid_t aud_fork (const char * file, int line)
|
---|
759 | {
|
---|
760 | int error;
|
---|
761 | pid_t i = fork();
|
---|
762 | char errbuf[SH_ERRBUF_SIZE];
|
---|
763 |
|
---|
764 | error = errno;
|
---|
765 | SL_ENTER(_("aud_fork"));
|
---|
766 |
|
---|
767 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_FORK) != 0 && (i > 0))
|
---|
768 | sh_error_handle ((-1), file, line, 0, MSG_AUD_FORK,
|
---|
769 | (long) i);
|
---|
770 | if (i == (pid_t) -1) {
|
---|
771 | sh_error_handle ((-1), file, line, error, MSG_ERR_FORK,
|
---|
772 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
773 | (long) i);
|
---|
774 | }
|
---|
775 | errno = error;
|
---|
776 | SL_RETURN(i, _("aud_fork"));
|
---|
777 | }
|
---|
778 |
|
---|
779 | int aud_setuid (const char * file, int line, uid_t uid)
|
---|
780 | {
|
---|
781 | int error = 0;
|
---|
782 | int i = 0;
|
---|
783 | char errbuf[SH_ERRBUF_SIZE];
|
---|
784 |
|
---|
785 | SL_ENTER(_("aud_setuid"));
|
---|
786 |
|
---|
787 | if (uid != (uid_t) 0) {
|
---|
788 | i = setuid(uid);
|
---|
789 | error = errno;
|
---|
790 | }
|
---|
791 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_SETUID) != 0)
|
---|
792 | sh_error_handle ((-1), file, line, 0, MSG_AUD_SETUID,
|
---|
793 | (long) uid);
|
---|
794 | if (uid == (uid_t) 0) {
|
---|
795 | i = setuid(uid);
|
---|
796 | error = errno;
|
---|
797 | }
|
---|
798 | if (i < 0) {
|
---|
799 | sh_error_handle ((-1), file, line, error, MSG_ERR_SETUID,
|
---|
800 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
801 | (long) uid);
|
---|
802 | }
|
---|
803 | errno = error;
|
---|
804 | SL_RETURN(i, _("aud_setuid"));
|
---|
805 | }
|
---|
806 |
|
---|
807 | int aud_setgid (const char * file, int line, gid_t gid)
|
---|
808 | {
|
---|
809 | int error = 0;
|
---|
810 | int i = 0;
|
---|
811 | char errbuf[SH_ERRBUF_SIZE];
|
---|
812 |
|
---|
813 | SL_ENTER(_("aud_setgid"));
|
---|
814 |
|
---|
815 | if (gid != (gid_t) 0) {
|
---|
816 | i = setgid(gid);
|
---|
817 | error = errno;
|
---|
818 | }
|
---|
819 |
|
---|
820 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_SETGID) != 0)
|
---|
821 | sh_error_handle ((-1), file, line, 0, MSG_AUD_SETGID,
|
---|
822 | (long) gid);
|
---|
823 | if (gid == (gid_t) 0) {
|
---|
824 | i = setgid(gid);
|
---|
825 | error = errno;
|
---|
826 | }
|
---|
827 | if (i < 0) {
|
---|
828 | sh_error_handle ((-1), file, line, error, MSG_ERR_SETGID,
|
---|
829 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
830 | (long) gid);
|
---|
831 | }
|
---|
832 | errno = error;
|
---|
833 | SL_RETURN(i, _("aud_setgid"));
|
---|
834 | }
|
---|
835 |
|
---|
836 | int aud_pipe (const char * file, int line, int * modus)
|
---|
837 | {
|
---|
838 | int error;
|
---|
839 | int i = pipe (modus);
|
---|
840 | char errbuf[SH_ERRBUF_SIZE];
|
---|
841 |
|
---|
842 | SL_ENTER(_("aud_pipe"));
|
---|
843 |
|
---|
844 | error = errno;
|
---|
845 | if (sh.flag.audit != 0 && (sh.flag.aud_mask & AUD_PIPE) != 0)
|
---|
846 | {
|
---|
847 | if (i < 0)
|
---|
848 | sh_error_handle ((-1), file, line, 0, MSG_AUD_PIPE,
|
---|
849 | (long) 0, (long) 0);
|
---|
850 | else
|
---|
851 | sh_error_handle ((-1), file, line, 0, MSG_AUD_PIPE,
|
---|
852 | (long) modus[0], (long) modus[1]);
|
---|
853 | }
|
---|
854 | if (i < 0) {
|
---|
855 | if (i < 0)
|
---|
856 | sh_error_handle ((-1), file, line, error, MSG_ERR_PIPE,
|
---|
857 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
858 | (long) 0, (long) 0);
|
---|
859 | else
|
---|
860 | sh_error_handle ((-1), file, line, error, MSG_ERR_PIPE,
|
---|
861 | sh_error_message(error, errbuf, sizeof(errbuf)),
|
---|
862 | (long) modus[0], (long) modus[1]);
|
---|
863 | }
|
---|
864 | SL_RETURN(i, _("aud_pipe"));
|
---|
865 | }
|
---|