source: trunk/src/slib.c@ 246

Last change on this file since 246 was 243, checked in by katerina, 15 years ago

Improved diagnostics for the 'Not accessible' bug

File size: 65.8 KB
Line 
1#include "config_xor.h"
2
3#if defined(HAVE_POSIX_FADVISE) && defined(HAVE_MINCORE)
4#define _XOPEN_SOURCE 600
5#define _BSD_SOURCE
6#endif
7
8#include <stdio.h>
9#include <stdlib.h>
10#include <stdarg.h>
11#include <string.h>
12#include <limits.h>
13#ifdef HAVE_STDINT_H
14/* for SIZE_MAX */
15#include <stdint.h>
16#endif
17
18#include <unistd.h>
19#include <sys/stat.h>
20#include <sys/types.h>
21#include <fcntl.h>
22#include <signal.h>
23
24#if defined(HAVE_POSIX_FADVISE) && defined(HAVE_MINCORE)
25#include <sys/mman.h>
26#endif
27
28#if TIME_WITH_SYS_TIME
29#include <sys/time.h>
30#include <time.h>
31#else
32#if HAVE_SYS_TIME_H
33#include <sys/time.h>
34#else
35#include <time.h>
36#endif
37#endif
38
39#ifdef HAVE_MEMORY_H
40#include <memory.h>
41#endif
42#ifdef HAVE_SYS_SELECT_H
43#include <sys/select.h>
44#endif
45
46#ifndef FD_SET
47#define NFDBITS 32
48#define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
49#define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
50#define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
51#endif /* !FD_SET */
52#ifndef FD_SETSIZE
53#define FD_SETSIZE 32
54#endif
55#ifndef FD_ZERO
56#define FD_ZERO(p) memset((char *)(p), '\0', sizeof(*(p)))
57#endif
58
59#define SH_REAL_SET
60
61#include "slib.h"
62#include "sh_calls.h"
63#define SH_NEED_PWD_GRP 1
64#include "sh_static.h"
65#include "sh_pthread.h"
66#include "sh_string.h"
67
68#undef FIL__
69#define FIL__ _("slib.c")
70
71const uid_t sh_uid_neg = ((uid_t) -1);
72const gid_t sh_gid_neg = ((gid_t) -1);
73
74#undef BREAKEXIT
75#if defined(SCREW_IT_UP) && defined(__linux__) && defined(__i386__)
76
77#ifdef SH_DEBUG
78#define BREAKEXIT(expr) \
79 do { \
80 int ixi; \
81 for (ixi = 0; ixi < 8; ++ixi) { \
82 if ((*(volatile unsigned *)((unsigned) expr + ixi) & 0xff) == 0xcc) \
83 { dlog(0, FIL__, __LINE__, _("BREAKEXIT")); _exit(EXIT_FAILURE); } \
84 } \
85 } \
86 while (1 == 0)
87#else
88#define BREAKEXIT(expr) \
89 do { \
90 int ixi; \
91 for (ixi = 0; ixi < 8; ++ixi) { \
92 if ((*(volatile unsigned *)((unsigned) expr + ixi) & 0xff) == 0xcc) \
93 _exit(EXIT_FAILURE); \
94 } \
95 } \
96 while (1 == 0)
97#endif
98
99#else
100#define BREAKEXIT(expr)
101#endif
102
103/****************************************************************
104 *
105 * The debug/trace subsystem
106 *
107 ****************************************************************/
108
109int slib_do_trace = 0;
110int slib_trace_fd = -1;
111
112static char trace_log[256] = { '\0' };
113static int trace_level = 0;
114static FILE * trace_fp = NULL;
115
116int sl_trace_use (const char * dummy)
117{
118 (void) dummy;
119 slib_do_trace = 1;
120 return 0;
121}
122
123int sl_trace_file (const char * str)
124{
125 if (!str)
126 return -1;
127 if (str[0] != '/')
128 return -1;
129 sl_strlcpy(trace_log, str, 256);
130 return 0;
131}
132
133FILE * sl_tracefile_open(const char * file, const char * mode)
134{
135 FILE * xp = NULL;
136 slib_trace_fd = open(file, O_WRONLY|O_CREAT|O_APPEND, 0600);
137 if (slib_trace_fd >= 0)
138 xp = fdopen(slib_trace_fd, mode);
139 return xp;
140}
141
142void sl_trace_in(const char * str, const char * file, int line)
143{
144 int i;
145 if (trace_log[0] == '\0')
146 {
147 fprintf(stderr, "++ ");
148 for (i = 0; i < trace_level; ++i)
149 fprintf(stderr, ". ");
150 fprintf(stderr, "[%2d] %s \t - File %c%s%c at line %d\n",
151 trace_level, str, 0x22, file, 0x22, line);
152 }
153 else if (!sl_is_suid())
154 {
155 if (!trace_fp)
156 trace_fp = sl_tracefile_open(trace_log, "a");
157 if (trace_fp)
158 {
159 fprintf(trace_fp, "++ ");
160 for (i = 0; i < trace_level; ++i)
161 fprintf(trace_fp, ". ");
162 fprintf(trace_fp, "[%2d] %s \t - File %c%s%c at line %d\n",
163 trace_level, str, 0x22, file, 0x22, line);
164 fflush(trace_fp);
165 }
166 else
167 {
168 perror(_("sl_trace_in: fopen"));
169 _exit(1);
170 }
171 }
172 ++trace_level;
173}
174
175void sl_trace_out(const char * str, const char * file, int line)
176{
177 int i;
178
179 --trace_level; if (trace_level < 0) trace_level = 0;
180
181 if (trace_log[0] == '\0')
182 {
183 fprintf(stderr, "-- ");
184 for (i = 0; i < trace_level; ++i)
185 fprintf(stderr, ". ");
186 fprintf(stderr, _("[%2d] %s \t - File %c%s%c at line %d\n"),
187 trace_level, str, 0x22, file, 0x22, line);
188 }
189 else if (!sl_is_suid())
190 {
191 if (!trace_fp)
192 trace_fp = sl_tracefile_open(trace_log, "a");
193 if (trace_fp)
194 {
195 fprintf(trace_fp, "-- ");
196 for (i = 0; i < trace_level; ++i)
197 fprintf(trace_fp, ". ");
198 fprintf(trace_fp, _("[%2d] %s \t - File %c%s%c at line %d\n"),
199 trace_level, str, 0x22, file, 0x22, line);
200 fflush(trace_fp);
201 }
202 else
203 {
204 perror(_("sl_trace_out: fopen"));
205 _exit(1);
206 }
207 }
208}
209
210extern int sh_log_console (const char * msg);
211
212static int dlogActive = 0;
213
214/* this is called from sh_error_setprint()
215 */
216void dlog_set_active(int flag)
217{
218 dlogActive = flag;
219}
220
221/* flag = 0 debug messages
222 * = 1 descriptive error messages
223 * = 3 backtrace
224 */
225int dlog (int flag, const char * file, int line, const char *fmt, ...)
226{
227 va_list ap;
228 char val[81];
229 char msg[512];
230 char tmp[512];
231 int retval = 0;
232 int i;
233
234#ifdef SH_STEALTH
235 /*
236 * do not even print descriptive failure messages in stealth mode
237 */
238 if (dlogActive == 0)
239 return 0;
240 if (dlogActive == 1 && flag == 0) /* debug requires debug level */
241 return 0;
242#else
243 if (dlogActive <= 1 && flag == 0) /* debug requires debug level */
244 return 0;
245#endif
246
247 if (flag == 1)
248 {
249 sl_snprintf (val, 81, _("\n--------- %10s "), file);
250 sl_strlcpy (msg, val, 80);
251 sl_snprintf (val, 81, _(" --- %6d ---------\n"), line);
252 sl_strlcat (msg, val, 80);
253 sh_log_console (msg);
254 }
255
256 va_start (ap, fmt);
257 if (flag == 1)
258 sl_strlcpy(tmp, fmt, 512);
259 else
260 sl_strlcpy(tmp, fmt, 256);
261 retval = sl_strlen(tmp);
262 if (retval > 0 && tmp[retval-1] == '\n')
263 tmp[retval-1] = '\0';
264 retval = 0;
265 if (flag == 1)
266 {
267 sl_vsnprintf (msg, 511, tmp, ap);
268 }
269 else
270 {
271 sl_strlcpy (msg, "## ", 256);
272 for (i = 0; i < trace_level; ++i)
273 sl_strlcat (msg, ". ", 256);
274 sprintf (val, _("[%2d] "), trace_level);
275 sl_strlcat (msg, val, 256);
276 sl_vsnprintf (&msg[sl_strlen(msg)], 255, tmp, ap);
277 sl_snprintf (tmp, 255, _(" \t - File %c%s%c at line %d"),
278 0x22, file, 0x22, line);
279 sl_strlcat (msg, tmp, 512);
280 }
281 va_end (ap);
282 if (flag != 0 || sl_is_suid())
283 retval = sh_log_console (msg);
284 else
285 {
286 if (trace_log[0] == '\0')
287 {
288 /* sh_log_console (msg); */
289 fprintf(stderr, "%s\n", msg);
290 }
291 else
292 {
293 if (!trace_fp)
294 trace_fp = sl_tracefile_open(trace_log, "a");
295 if (trace_fp)
296 {
297 fprintf(trace_fp, "%s\n", msg);
298 }
299 else
300 {
301 perror(_("dlog: fopen"));
302 _exit(1);
303 }
304 }
305 }
306 if (flag == 1)
307 sh_log_console (_("\n----------------------------------------------\n"));
308 return retval;
309}
310
311extern char aud_err_message[64];
312static char alt_err_message[64];
313char * sl_get_errmsg()
314{
315 if (aud_err_message[0] == '\0')
316 {
317 sl_strlcpy(alt_err_message, sl_error_string(sl_errno), 64);
318 return &alt_err_message[0];
319 }
320 return &aud_err_message[0];
321}
322
323
324#if defined(SL_DEBUG)
325#define SL_MAX_MYSTACK 128
326
327static char sl_mystack[SL_MAX_MYSTACK][32];
328static int sl_mystack_count = 0;
329
330void sl_stack_push(char * c, char * file, int line )
331{
332 if (slib_do_trace)
333 sl_trace_in(c, file, line);
334 if (c && sl_mystack_count < SL_MAX_MYSTACK)
335 {
336 strncpy(sl_mystack[sl_mystack_count], c, 31);
337 sl_mystack[sl_mystack_count][31] = '\0';
338 ++sl_mystack_count;
339 /*
340 fprintf(stderr, "#%03d %s\n", sl_mystack_count,
341 sl_mystack[sl_mystack_count-1]);
342 */
343 }
344 return;
345}
346
347void sl_stack_pop(char * c, char * file, int line)
348{
349 if (slib_do_trace)
350 sl_trace_out(c, file, line);
351 if (sl_mystack_count > 0)
352 {
353 /*
354 fprintf(stderr, " <- #%03d %s\n", sl_mystack_count,
355 sl_mystack[sl_mystack_count-1]);
356 */
357 --sl_mystack_count;
358 }
359 return;
360}
361
362void sl_stack_print()
363{
364 int i;
365 /* FILE * dfile; */
366
367 if (sl_mystack_count > 0)
368 {
369 sh_log_console(_("\nBacktrace:\n"));
370 /* dlog(3, FIL__, __LINE__, _("\nBacktrace:\n")); */
371 for (i = 0; i < sl_mystack_count; ++i)
372 sh_log_console(sl_mystack[i]);
373 /* dlog(3, FIL__, __LINE__, _("#%03d %s\n"), i, sl_mystack[i]); */
374 }
375 return;
376}
377
378#endif
379
380
381/*
382 * The global errno.
383 * On error, this is set to the return value of the function.
384 */
385long int sl_errno;
386
387
388/* ----------------------------------------------------------------
389 *
390 * Capability routines
391 *
392 * ---------------------------------------------------------------- */
393
394int sl_useCaps = 0;
395
396#ifdef FANCY_LIBCAP
397#include <sys/capability.h>
398
399/*
400 * While these routines are tested and work, we don't use POSIX
401 * capabilities, as they don't seem to be useful (root can write
402 * to root-owned files anyway). Things would be more interesting
403 * if we could switch to a non-root UID with just a few capabilities
404 * enabled.
405 */
406int sl_drop_cap ()
407{
408 int error;
409 cap_t caps;
410 cap_flag_t capflag;
411 cap_flag_value_t capfval = CAP_CLEAR;
412 cap_value_t capvals_e[] =
413 {
414 CAP_CHOWN, CAP_FOWNER, CAP_FSETID,
415 CAP_LINUX_IMMUTABLE, CAP_MKNOD, CAP_NET_ADMIN,
416 CAP_NET_BIND_SERVICE, CAP_NET_BROADCAST, CAP_NET_RAW,
417 CAP_SYS_ADMIN, CAP_SYS_BOOT, CAP_SYS_CHROOT,
418 CAP_SYS_PACCT, CAP_SYS_PTRACE, CAP_SYS_RAWIO,
419 CAP_SYS_RESOURCE, CAP_SYS_TIME, CAP_SYS_TTY_CONFIG,
420 CAP_SETGID, CAP_SETUID, CAP_KILL,
421 CAP_DAC_OVERRIDE,
422#if !defined(WITH_MESSAGE_QUEUE)
423 CAP_IPC_OWNER,
424#endif
425 CAP_SYS_MODULE, CAP_LEASE
426 };
427 cap_value_t capvals_p[] =
428 {
429 CAP_CHOWN, CAP_LEASE, CAP_FSETID,
430 CAP_LINUX_IMMUTABLE, CAP_MKNOD, CAP_NET_ADMIN,
431 CAP_NET_BIND_SERVICE, CAP_NET_BROADCAST, CAP_NET_RAW,
432 CAP_SYS_ADMIN, CAP_SYS_BOOT, CAP_SYS_CHROOT,
433 CAP_SYS_PACCT, CAP_SYS_PTRACE, CAP_SYS_RAWIO,
434 CAP_SYS_RESOURCE, CAP_SYS_TIME, CAP_SYS_TTY_CONFIG,
435#if !defined(WITH_EXTERNAL) && !defined(HAVE_UNIX_RANDOM)
436 CAP_SETGID, CAP_SETUID, CAP_KILL,
437#endif
438#if !defined(SH_USE_SUIDCHK)
439 CAP_DAC_OVERRIDE, CAP_FOWNER,
440#endif
441#if !defined(WITH_MESSAGE_QUEUE)
442 CAP_IPC_OWNER,
443#endif
444 CAP_SYS_MODULE
445 };
446
447 if (0 == sl_useCaps) /* 0 = S_FALSE */
448 {
449 return 0;
450 }
451
452 if(NULL == (caps = cap_get_proc()))
453 {
454 return errno;
455 }
456
457 capflag = CAP_EFFECTIVE;
458 if (0 != cap_set_flag(caps, capflag, sizeof(capvals_e)/sizeof(cap_value_t),
459 capvals_e, capfval))
460 {
461 error = errno;
462 cap_free(caps);
463 return error;
464 }
465 if (0 != cap_set_proc(caps))
466 {
467 error = errno;
468 cap_free(caps);
469 return error;
470 }
471
472 capflag = CAP_PERMITTED;
473 if (0 != cap_set_flag(caps, capflag, sizeof(capvals_p)/sizeof(cap_value_t),
474 capvals_p, capfval))
475 {
476 error = errno;
477 cap_free(caps);
478 return error;
479 }
480 if (0 != cap_set_proc(caps))
481 {
482 error = errno;
483 cap_free(caps);
484 return error;
485 }
486 cap_free(caps);
487 return 0;
488}
489
490int sl_drop_cap_int(int what)
491{
492#if defined(SL_DEBUG)
493 char * captext;
494#endif
495 cap_flag_t capflag = CAP_EFFECTIVE;
496 cap_flag_value_t capfval = CAP_CLEAR;
497 cap_value_t capvals_a[] = { CAP_SETGID, CAP_SETUID, CAP_KILL };
498 cap_value_t capvals_b[] = { CAP_DAC_OVERRIDE, CAP_FOWNER };
499 cap_value_t * capvals;
500 int nvals;
501 int error = 0;
502 cap_t caps = cap_get_proc();
503
504 if (0 == sl_useCaps) /* 0 = S_FALSE */
505 {
506 return 0;
507 }
508
509 if (caps == NULL)
510 {
511 return errno;
512 }
513
514 switch (what) {
515 case 1:
516 capvals = capvals_a;
517 nvals = 3;
518 capfval = CAP_CLEAR;
519 break;
520 case 2:
521 capvals = capvals_a;
522 nvals = 3;
523 capfval = CAP_SET;
524 break;
525 case 3:
526 capvals = capvals_b;
527 nvals = 2;
528 capfval = CAP_CLEAR;
529 break;
530 case 4:
531 capvals = capvals_b;
532 nvals = 2;
533 capfval = CAP_SET;
534 break;
535 default:
536 return (0);
537 }
538
539 if (0 != cap_set_flag(caps, capflag, nvals, capvals, capfval))
540 {
541 error = errno;
542 cap_free(caps);
543 return error;
544 }
545 if (0 != cap_set_proc(caps))
546 {
547 error = errno;
548 cap_free(caps);
549 return error;
550 }
551#if defined(SL_DEBUG)
552 captext = cap_to_text(caps, NULL);
553 TPT(( 0, FIL__, __LINE__, _("msg=<cap_int %d: %s>\n"), what, captext));
554 cap_free(captext);
555#endif
556 cap_free(caps);
557 return 0;
558}
559
560int sl_drop_cap_sub() { return sl_drop_cap_int(1); }
561int sl_get_cap_sub() { return sl_drop_cap_int(2); }
562int sl_drop_cap_qdel() { return sl_drop_cap_int(3); }
563int sl_get_cap_qdel() { return sl_drop_cap_int(4); }
564
565#else
566int sl_drop_cap () { return 0; }
567int sl_drop_cap_sub() { return 0; }
568int sl_get_cap_sub() { return 0; }
569int sl_drop_cap_qdel() { return 0; }
570int sl_get_cap_qdel() { return 0; }
571#endif
572
573/* ----------------------------------------------------------------
574 *
575 * String handling routines
576 *
577 * ---------------------------------------------------------------- */
578
579/*
580 * Have memset in a different translation unit (i.e. this) to prevent
581 * it to get optimized away
582 */
583void *sl_memset(void *s, int c, size_t n)
584{
585 return memset(s, c,n);
586}
587
588
589#if !defined (VA_COPY)
590#if defined (__GNUC__) && defined (__PPC__) && (defined (_CALL_SYSV) || defined (_WIN32))
591#define VA_COPY(ap1, ap2) (*(ap1) = *(ap2))
592#elif defined (VA_COPY_AS_ARRAY)
593#define VA_COPY(ap1, ap2) memmove ((ap1), (ap2), sizeof (va_list))
594#else /* va_list is a pointer */
595#define VA_COPY(ap1, ap2) ((ap1) = (ap2))
596#endif
597#endif
598
599#if !defined(HAVE_VSNPRINTF) || defined(HAVE_BROKEN_VSNPRINTF)
600static
601size_t sl_printf_count (const char * fmt, va_list vl)
602{
603 size_t length = 1;
604 int fini = 0;
605 int islong = 0;
606 int islonglong = 0;
607 int islongdouble = 0;
608 char * string_arg;
609
610 SL_ENTER(_("sl_printf_count"));
611
612 if (fmt == NULL)
613 SL_IRETURN(SL_ENULL, _("sl_printf_count"));
614
615 while (*fmt) {
616
617 if ( (*fmt) == '%' ) { /* a format specifier */
618
619 fmt++; /* point to first char after '%' */
620
621 fini = 0;
622 islong = 0;
623 islongdouble = 0;
624
625 while (*fmt && (fini == 0) ) {
626
627 switch (*fmt) {
628
629 case '*': /* field width supplied by an integer */
630 length = length + va_arg (vl, int);
631 ++fmt;
632 break;
633 case '1':
634 case '2':
635 case '3':
636 case '4':
637 case '5':
638 case '6':
639 case '7':
640 case '8':
641 case '9':
642 length = length + strtol (fmt, (char**) &fmt, 10);
643 /* strtol makes FastForward to first invalid char */
644 break;
645
646 case 'l': /* 'long' modifier */
647 if (islong == 0)
648 islong = 1;
649 else
650 {
651 islonglong = 1;
652 islong = 0;
653 }
654 ++fmt;
655 break;
656
657 case 'L': /* 'long double' modifier */
658#ifdef HAVE_LONG_DOUBLE
659 islongdouble = 1;
660#else
661 islong = 1;
662#endif
663 ++fmt;
664 break;
665
666 case 'd':
667 case 'i':
668 case 'o':
669 case 'u':
670 case 'x':
671 case 'X':
672 if (islonglong == 1)
673#ifdef HAVE_LONG_LONG
674 (void) va_arg (vl, long long);
675#else
676 (void) va_arg (vl, long);
677#endif
678 else if (islong == 1)
679 (void) va_arg (vl, long);
680 else
681 (void) va_arg (vl, int);
682 islong = 0;
683 islonglong = 0;
684 length = length + 24;
685 ++fmt;
686 fini = 1;
687 break;
688
689 case 'D':
690 case 'O':
691 case 'U':
692 (void) va_arg (vl, long);
693 length = length + 24;
694 fmt++;
695 fini = 1;
696 break;
697
698 case 'e':
699 case 'E':
700 case 'f':
701 case 'g':
702#ifdef HAVE_LONG_DOUBLE
703 if (islongdouble == 1) {
704 (void) va_arg (vl, long double);
705 islongdouble = 0;
706 length = length + 20;
707 }
708 else
709#endif
710 (void) va_arg (vl, double);
711 length = length + 20;
712 fini = 1;
713 ++fmt;
714 break;
715
716 case 's':
717 string_arg = va_arg (vl, char *);
718 if (string_arg != NULL)
719 length = length + sl_strlen (string_arg);
720 else
721 length = length + 16;
722 fini = 1;
723 ++fmt;
724 break;
725
726 case 'c':
727 (void) va_arg (vl, int);
728 length = length + 1;
729 fini = 1;
730 ++fmt;
731 break;
732
733 case 'p':
734 case 'n':
735 (void) va_arg (vl, void * );
736 length = length + 32;
737 fini = 1;
738 ++fmt;
739 break;
740
741 case '%': /* %% will print '%' */
742 length = length + 1;
743 fini = 1;
744 ++fmt;
745 break;
746
747 default:
748 length = length + 1;
749 ++fmt;
750 break;
751
752 } /* end switch */
753 }
754 /* end parsing a single format specifier */
755 } else {
756 length = length + 1;
757 fmt++;
758 }
759 }
760 SL_IRETURN(length, _("sl_printf_count"));
761}
762#endif /* #ifndef HAVE_VSNPRINTF */
763
764/*
765 * An implementation of vsnprintf. va_start/va_end are in the caller
766 * function.
767 * Returns C99 (#bytes that would heve been written) on success.
768 */
769int sl_vsnprintf(char *str, size_t n,
770 const char *format, va_list vl )
771{
772 int len = 0;
773#if !defined(HAVE_VSNPRINTF) || defined(HAVE_BROKEN_VSNPRINTF)
774 size_t total;
775 va_list vl2;
776#endif
777
778 SL_ENTER(_("sl_vsnprintf"));
779 if (str == NULL || format == NULL)
780 SL_IRETURN(0, _("sl_vsnprintf"));
781
782#if defined(HAVE_VSNPRINTF) && !defined(HAVE_BROKEN_VSNPRINTF)
783 len = vsnprintf (str, n, format, vl); /* flawfinder: ignore */
784 str[n-1] = '\0';
785#else
786 VA_COPY (vl2, vl); /* save the argument list */
787 total = sl_printf_count (format, vl);
788 len = (int) total;
789 if (total < n)
790 {
791 /* flawfinder: ignore */
792 vsprintf (str, format, vl2); /* program has checked that it fits */
793 str[n-1] = '\0';
794 }
795 else
796 {
797 sl_strlcpy (str, format, n);
798 va_end(vl2);
799 SL_IRETURN(len, _("sl_vsnprintf"));
800 }
801 va_end(vl2);
802#endif
803 SL_IRETURN(len, _("sl_vsnprintf"));
804}
805
806/*
807 * An implementation of snprintf.
808 * Returns SL_ENONE on success.
809 * ENULL: src || format == NULL
810 * ERANGE: n out of range
811 * ETRUNC: truncated (unimplemented)
812 */
813int sl_snprintf(char *str, size_t n,
814 const char *format, ... )
815{
816 va_list vl;
817#if !defined(HAVE_VSNPRINTF) || defined(HAVE_BROKEN_VSNPRINTF)
818 size_t total = 0;
819 va_list vl2;
820#endif
821
822 SL_ENTER(_("sl_snprintf"));
823 if (str == NULL || format == NULL)
824 SL_IRETURN(SL_ENULL, _("sl_snprintf"));
825
826 va_start (vl, format);
827#if defined(HAVE_VSNPRINTF) && !defined(HAVE_BROKEN_VSNPRINTF)
828 /* flawfinder: ignore */
829 vsnprintf (str, n, format, vl);
830 str[n-1] = '\0';
831#else
832 VA_COPY (vl2, vl); /* save the argument list */
833 total = sl_printf_count (format, vl);
834 if (total < n)
835 {
836 /* flawfinder: ignore */
837 vsprintf (str, format, vl2); /* program has checked that it fits */
838 str[n-1] = '\0';
839 }
840 else
841 {
842 sl_strlcpy (str, format, n);
843 va_end(vl2);
844 va_end(vl);
845 SL_IRETURN(SL_ETRUNC, _("sl_snprintf"));
846 }
847 va_end(vl2);
848#endif
849 va_end(vl);
850 SL_IRETURN(SL_ENONE, _("sl_snprintf"));
851}
852
853/*
854 * Appends src to string dst of size siz (unlike strncat, siz is the
855 * full size of dst, not space left). At most siz-1 characters
856 * will be copied. Always NUL terminates (unless siz == 0).
857 * Returns SL_NONE on success, errcode on failure.
858 *
859 * ENULL: dst == NULL
860 * ERANGE: siz out of range
861 * ETRUNC: src truncated
862 */
863int sl_strlcat(char * dst, /*@null@*/const char *src, size_t siz)
864{
865 register size_t dst_end;
866 register size_t dst_free;
867
868 register char * p;
869 register const char * q;
870
871 if (!(dst == NULL || src == NULL || *src == '\0'))
872 {
873 if (siz > 0)
874 {
875
876 /* How much free space do we have ?
877 */
878 dst_end = strlen(dst);
879 dst_free = siz - dst_end - 1;
880
881 p = &dst[dst_end];
882 q = src;
883
884 while (dst_free > 0 && *q != '\0')
885 {
886 *p++ = *q++;
887 --dst_free;
888 }
889
890 /* NULL terminate dst.
891 */
892 *p = '\0';
893
894 if (*q == '\0')
895 return SL_ENONE;
896 else
897 return SL_ETRUNC;
898 }
899 }
900 return SL_ENONE;
901}
902
903/*
904 * An alternative implementation of the OpenBSD strlcpy() function.
905 *
906 * Copy src to string dst of size siz. At most siz-1 characters
907 * will be copied. Always NUL terminates (unless siz == 0).
908 * Returns SL_NONE on success, errcode on failure.
909 *
910 * ENULL: dst == NULL
911 * ERANGE: siz out of range
912 * ETRUNC: src truncated
913 */
914int sl_strlcpy(char * dst, /*@null@*/const char * src, size_t siz)
915{
916 /* SL_ENTER(_("sl_strlcpy")); */
917
918 if (!((dst == NULL) || (src == NULL)))
919 {
920 if (siz > 0) {
921 /* copy siz-1 characters
922 */
923 (void) strncpy(dst, src, siz-1);
924
925 /* NULL terminate
926 */
927 dst[siz-1] = '\0';
928 }
929 return SL_ENONE;
930 }
931 else if (src == NULL)
932 {
933 if (siz > 0)
934 dst[0] = '\0';
935 return SL_ENONE;
936 }
937 else
938 {
939 return SL_ENULL;
940 }
941}
942
943/*
944 * A robust drop-in replacement of strncpy. strlcpy is preferable.
945 */
946char * sl_strncpy(char *dst, const char *src, size_t size)
947{
948
949#ifdef SL_FAIL_ON_ERROR
950 SL_REQUIRE(dst != NULL, _("dst != NULL"));
951 SL_REQUIRE(src != NULL, _("src != NULL"));
952 SL_REQUIRE(size > 0, _("size > 0"));
953#endif
954
955 if (dst == NULL)
956 {
957 sl_errno = SL_ENULL;
958 return (NULL);
959 }
960 if (size < 1)
961 {
962 sl_errno = SL_ERANGE;
963 return (dst);
964 }
965 if (!src)
966 {
967 sl_errno = SL_ENULL;
968 dst[0] = '\0';
969 }
970 else if (src[0] == '\0')
971 dst[0] = '\0';
972 else
973 strncpy(dst, src, size);
974
975 if (sl_strlen(src) >= size)
976 {
977 errno = ENOSPC;
978 dst[size-1] = '\0';
979 }
980 return (dst);
981}
982
983/*
984 * A robust drop-in replacement of strncat. strlcat is preferable.
985 */
986char * sl_strncat(char *dst, const char *src, size_t n)
987{
988#ifdef SL_FAIL_ON_ERROR
989 SL_REQUIRE(dst != NULL, _("dst != NULL"));
990 SL_REQUIRE(src != NULL, _("src != NULL"));
991 SL_REQUIRE(n > 0, _("n > 0"));
992#endif
993
994 if (dst == NULL)
995 {
996 sl_errno = SL_ENULL;
997 return (NULL);
998 }
999 if (n < 1)
1000 {
1001 sl_errno = SL_ERANGE;
1002 return (dst);
1003 }
1004 if (!src)
1005 {
1006 sl_errno = SL_ENULL;
1007 return (dst);
1008 }
1009 else if (src[0] == '\0')
1010 dst[0] = '\0';
1011 else
1012 strncat(dst, src, n);
1013
1014 return (dst);
1015}
1016
1017#include <ctype.h>
1018int sl_strcasecmp(const char * one, const char * two)
1019{
1020#ifdef SL_FAIL_ON_ERROR
1021 SL_REQUIRE (one != NULL, _("one != NULL"));
1022 SL_REQUIRE (two != NULL, _("two != NULL"));
1023#endif
1024
1025 if (one && two)
1026 {
1027 do {
1028 if (*one && *two)
1029 {
1030 if (tolower(*one) == tolower(*two))
1031 {
1032 ++one; ++two;
1033 }
1034 else if (tolower(*one) < tolower(*two))
1035 return -1;
1036 else
1037 return 1;
1038 }
1039 else if (*one == '\0' && *two == '\0')
1040 return 0;
1041 else if (*one == '\0')
1042 return -1;
1043 else
1044 return 1;
1045 } while (1 == 1);
1046 }
1047 else if (one == NULL && two != NULL)
1048 return -1;
1049 else if (one != NULL && two == NULL)
1050 return 1;
1051 else
1052 return -7; /* default to not equal */
1053}
1054
1055int sl_strcmp(const char * a, const char * b)
1056{
1057#ifdef SL_FAIL_ON_ERROR
1058 SL_REQUIRE (a != NULL, _("a != NULL"));
1059 SL_REQUIRE (b != NULL, _("b != NULL"));
1060#endif
1061
1062 if (a != NULL && b != NULL)
1063 return (strcmp(a, b));
1064 else if (a == NULL && b != NULL)
1065 return (-1);
1066 else if (a != NULL && b == NULL)
1067 return (1);
1068 else
1069 return (-7); /* default to not equal */
1070}
1071
1072int sl_strncmp(const char * a, const char * b, size_t n)
1073{
1074#ifdef SL_FAIL_ON_ERROR
1075 SL_REQUIRE (a != NULL, _("a != NULL"));
1076 SL_REQUIRE (b != NULL, _("b != NULL"));
1077 SL_REQUIRE (n > 0, _("n > 0"));
1078#endif
1079
1080 if (a != NULL && b != NULL)
1081 return (strncmp(a, b, n));
1082 else if (a == NULL && b != NULL)
1083 return (-1);
1084 else if (a != NULL && b == NULL)
1085 return (1);
1086 else
1087 return (-7); /* default to not equal */
1088}
1089
1090/* string searching
1091 */
1092
1093char * sl_strstr (const char * haystack, const char * needle)
1094{
1095#ifndef HAVE_STRSTR
1096 unsigned int i;
1097 size_t needle_len;
1098 size_t haystack_len;
1099#endif
1100
1101 if (haystack == NULL || needle == NULL)
1102 return NULL;
1103 if (*needle == '\0' || *haystack == '\0')
1104 return NULL;
1105
1106#if defined(HAVE_STRSTR)
1107 return (strstr(haystack, needle));
1108#else
1109 needle_len = strlen(needle);
1110 haystack_len = strlen(haystack);
1111
1112 for (i = 0; i <= (haystack_len-needle_len); ++i)
1113 if (0 == sl_strncmp(&haystack[i], needle, needle_len))
1114 return (needle);
1115 return NULL;
1116#endif
1117}
1118
1119
1120/* ----------------------------------------------------------------
1121 *
1122 * Privilege handling routines
1123 *
1124 * ---------------------------------------------------------------- */
1125
1126
1127
1128static uid_t euid;
1129static uid_t ruid;
1130static uid_t ruid_orig;
1131static gid_t egid;
1132static gid_t rgid;
1133static gid_t rgid_orig;
1134
1135static int uids_are_stored = SL_FALSE;
1136static int suid_is_set = SL_TRUE;
1137
1138#ifdef HAVE_SETRESUID
1139extern int setresuid (uid_t truid, uid_t teuid, uid_t tsuid);
1140extern int setresgid (gid_t trgid, gid_t tegid, gid_t tsgid);
1141#endif
1142
1143
1144/*
1145 * This function returns true if the program is SUID.
1146 * It calls abort() if the uid's are not saved already.
1147 */
1148int sl_is_suid()
1149{
1150 if (uids_are_stored == SL_FALSE)
1151 {
1152 if (getuid() == geteuid() && getgid() == getegid())
1153 return (0); /* FALSE */
1154 else
1155 return (1); /* TRUE */
1156 }
1157 else
1158 {
1159 if (euid == ruid && egid == rgid)
1160 return (0); /* FALSE */
1161 else
1162 return (1); /* TRUE */
1163 }
1164}
1165
1166/*
1167 * This function returns the saved euid.
1168 * It calls abort() if the uid's are not saved already.
1169 */
1170int sl_get_euid(uid_t * ret)
1171{
1172 SL_ENTER(_("sl_get_euid"));
1173 /* SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));*/
1174 if (uids_are_stored == SL_TRUE)
1175 *ret = euid;
1176 else
1177 *ret = geteuid();
1178 SL_IRETURN (SL_ENONE, _("sl_get_euid"));
1179}
1180
1181uid_t sl_ret_euid()
1182{
1183 /* SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));*/
1184 if (uids_are_stored == SL_TRUE)
1185 return (euid);
1186 else
1187 return (geteuid());
1188}
1189
1190/*
1191 * This function returns the saved egid.
1192 * It calls abort() if the uid's are not saved already.
1193 */
1194int sl_get_egid(gid_t * ret)
1195{
1196 SL_ENTER(_("sl_get_egid"));
1197 /* SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));*/
1198 if (uids_are_stored == SL_TRUE)
1199 *ret = egid;
1200 else
1201 *ret = getegid();
1202 SL_IRETURN (SL_ENONE, _("sl_get_egid"));
1203}
1204
1205/*
1206 * This function returns the saved ruid.
1207 * It calls abort() if the uid's are not saved already.
1208 */
1209int sl_get_ruid(uid_t * ret)
1210{
1211 SL_ENTER(_("sl_get_ruid"));
1212 /* SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));*/
1213 if (uids_are_stored == SL_TRUE)
1214 *ret = ruid;
1215 else
1216 *ret = getuid();
1217 SL_IRETURN (SL_ENONE, _("sl_get_ruid"));
1218}
1219
1220/*
1221 * This function returns the saved rgid.
1222 * It calls abort() if the uid's are not saved already.
1223 */
1224int sl_get_rgid(gid_t * ret)
1225{
1226 SL_ENTER(_("sl_get_rgid"));
1227 /* SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));*/
1228 if (uids_are_stored == SL_TRUE)
1229 *ret = rgid;
1230 else
1231 *ret = getgid();
1232 SL_IRETURN (SL_ENONE, _("sl_get_rgid"));
1233}
1234
1235/*
1236 * This function returns the saved original ruid.
1237 * It calls abort() if the uid's are not saved already.
1238 */
1239int sl_get_ruid_orig(uid_t * ret)
1240{
1241 SL_ENTER(_("sl_get_ruid_orig"));
1242 /* SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));*/
1243 if (uids_are_stored == SL_TRUE)
1244 *ret = ruid_orig;
1245 else
1246 *ret = getuid();
1247 SL_IRETURN (SL_ENONE, _("sl_get_ruid_orig"));
1248}
1249
1250/*
1251 * This function returns the saved original rgid.
1252 * It calls abort() if the uid's are not saved already.
1253 */
1254int sl_get_rgid_orig(gid_t * ret)
1255{
1256 SL_ENTER(_("sl_get_rgid_orig"));
1257 /* SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));*/
1258 if (uids_are_stored == SL_TRUE)
1259 *ret = rgid_orig;
1260 else
1261 *ret = getgid();
1262 SL_IRETURN (SL_ENONE, _("sl_get_rgid_orig"));
1263}
1264
1265static int suid_warn_flag = 1;
1266static void suid_warn(int a)
1267{
1268 fprintf(stderr, _("ERROR: open set/unset suid !!! %d\n"), a);
1269 return;
1270}
1271
1272/*
1273 * This function sets the effective uid
1274 * to the saved effective uid.
1275 * It will abort on failure.
1276 */
1277int sl_set_suid ()
1278{
1279 int retval;
1280
1281 SL_ENTER(_("sl_set_suid"));
1282
1283 if (uids_are_stored == SL_FALSE)
1284 {
1285 SL_IRETURN(SL_ENONE, _("sl_set_suid"));
1286 }
1287
1288 SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));
1289
1290 if (ruid == euid && rgid == egid)
1291 {
1292 suid_is_set = SL_TRUE;
1293 SL_IRETURN(SL_ENONE, _("sl_set_suid"));
1294 }
1295 SL_REQUIRE(suid_is_set == SL_FALSE, _("suid_is_set == SL_FALSE"));
1296
1297#if defined(HAVE_SETRESUID)
1298 retval = setresuid (sh_uid_neg, euid, sh_uid_neg);
1299 if (retval == 0)
1300 retval = setresgid (sh_gid_neg, egid, sh_gid_neg);
1301
1302#elif defined(HAVE_SETEUID)
1303 retval = seteuid (egid);
1304 if (retval == 0)
1305 retval = setegid (euid);
1306
1307 /* on AIX, setreuid does not behave well for non-root users.
1308 */
1309#elif defined(HAVE_SETREUID)
1310 retval = setreuid (ruid, euid);
1311 if (retval == 0)
1312 retval = setregid (rgid, egid);
1313
1314#else
1315 retval = setuid (euid);
1316 if (retval == 0)
1317 retval = setgid (egid);
1318#endif
1319 if (suid_warn_flag == 1)
1320 suid_warn(1);
1321 suid_warn_flag = 1;
1322
1323 SL_REQUIRE(retval == 0, _("retval == 0"));
1324 suid_is_set = SL_TRUE;
1325 SL_IRETURN(SL_ENONE, _("sl_set_suid"));
1326}
1327
1328/*
1329 * This function sets the effective uid to the real uid.
1330 * It will abort on failure.
1331 */
1332int sl_unset_suid ()
1333{
1334 register int retval;
1335
1336 SL_ENTER(_("sl_unset_suid"));
1337
1338 if (uids_are_stored == SL_FALSE)
1339 {
1340 SL_IRETURN(SL_ENONE, _("sl_unset_suid"));
1341 }
1342
1343 SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));
1344
1345 if (ruid == euid && rgid == egid)
1346 {
1347 suid_is_set = SL_FALSE;
1348 SL_IRETURN(SL_ENONE, _("sl_unset_suid"));
1349 }
1350 SL_REQUIRE(suid_is_set == SL_TRUE, _("suid_is_set == SL_TRUE"));
1351
1352#if defined(HAVE_SETRESUID)
1353 retval = setresgid (sh_gid_neg, rgid, sh_gid_neg);
1354 if (retval == 0)
1355 retval = setresuid (sh_uid_neg, ruid, sh_uid_neg);
1356
1357#elif defined(HAVE_SETEUID)
1358 retval = setegid (rgid);
1359 if (retval == 0)
1360 retval = seteuid (ruid);
1361
1362#elif defined(HAVE_SETREUID)
1363 retval = setregid (egid, rgid);
1364 if (retval == 0)
1365 retval = setreuid (euid, ruid);
1366
1367#else
1368 retval = setgid (rgid);
1369 if (retval == 0)
1370 retval = setuid (ruid);
1371#endif
1372
1373 if (suid_warn_flag == 0)
1374 suid_warn(0);
1375 suid_warn_flag = 0;
1376
1377 SL_REQUIRE(retval == 0, _("retval == 0"));
1378 suid_is_set = SL_FALSE;
1379 SL_IRETURN(SL_ENONE, _("sl_unset_suid"));
1380}
1381
1382
1383/*
1384 * This function saves the uid's.
1385 */
1386int sl_save_uids()
1387{
1388 SL_ENTER(_("sl_save_uids"));
1389 if (uids_are_stored == SL_TRUE)
1390 SL_IRETURN(SL_EREPEAT, _("sl_save_uids"));
1391
1392 ruid_orig = getuid();
1393 rgid_orig = getgid();
1394 egid = getegid();
1395 euid = geteuid();
1396 ruid = ruid_orig;
1397 rgid = rgid_orig;
1398 uids_are_stored = SL_TRUE;
1399
1400 SL_IRETURN(SL_ENONE, _("sl_save_uids"));
1401}
1402
1403/*
1404 * This function drops SUID privileges irrevocably.
1405 * It set the effective uid to the original real uid.
1406 */
1407extern int sh_unix_initgroups2 (uid_t in_pid, gid_t in_gid);
1408int sl_drop_privileges()
1409{
1410 SL_ENTER(_("sl_drop_privileges"));
1411 SL_REQUIRE(uids_are_stored == SL_TRUE, _("uids_are_stored == SL_TRUE"));
1412
1413 SL_REQUIRE(setgid(rgid_orig) == 0, _("setgid(rgid_orig) == 0"));
1414 SL_REQUIRE(sh_unix_initgroups2(ruid_orig, rgid_orig) == 0, _("sh_unix_initgroups2(ruid_orig,rgid_orig) == 0"));
1415 SL_REQUIRE(setuid(ruid_orig) == 0, _("setuid(ruid_orig) == 0"));
1416
1417 /* make sure that setuid(0) fails
1418 */
1419 SL_REQUIRE(setuid(0) < 0, _("setuid(0) < 0"));
1420
1421 euid = ruid_orig;
1422 egid = rgid_orig;
1423 ruid = ruid_orig;
1424 rgid = rgid_orig;
1425
1426 SL_IRETURN(SL_ENONE, _("sl_drop_privileges"));
1427}
1428
1429/*
1430 * Define a policy: Stay root.
1431 * Do nothing if not SUID.
1432 */
1433int sl_policy_get_root()
1434{
1435 SL_ENTER(_("sl_policy_get_root"));
1436 SL_REQUIRE(uids_are_stored == SL_FALSE, _("uids_are_stored == SL_FALSE"));
1437
1438 SL_REQUIRE (sl_save_uids() == SL_ENONE, _("sl_save_uids() == SL_ENONE"));
1439
1440 if (euid != ruid || egid != rgid)
1441 {
1442 SL_REQUIRE(setgid(egid) == 0, _("setgid(egid) == 0"));
1443 SL_REQUIRE(setuid(euid) == 0, _("setuid(euid) == 0"));
1444 SL_REQUIRE(ruid == getuid() && rgid == getgid(),
1445 _("ruid == getuid() && rgid == getgid()"));
1446 ruid = euid;
1447 rgid = egid;
1448 }
1449 suid_is_set = SL_TRUE;
1450 if (euid == 0)
1451 {
1452 SL_REQUIRE(sh_unix_initgroups2(euid, egid) == 0, _("sh_unix_initgroups2(euid,egid) == 0"));
1453 }
1454 SL_IRETURN(SL_ENONE, _("sl_policy_get_root"));
1455}
1456
1457#include <pwd.h>
1458
1459/*
1460 * Define a policy: Get real (irrevocably).
1461 * This function drops SUID privileges irrevocably.
1462 * Do nothing if not SUID (? not true - drops if root).
1463 */
1464
1465int sl_policy_get_real(char * user)
1466{
1467 SL_ENTER(_("sl_policy_get_real"));
1468 SL_REQUIRE(uids_are_stored == SL_FALSE, _("uids_are_stored == SL_FALSE"));
1469 SL_REQUIRE (sl_save_uids() == SL_ENONE, _("sl_save_uids() == SL_ENONE"));
1470
1471 if (euid == 0 || ruid == 0)
1472 {
1473#if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
1474 struct passwd pwd;
1475 char * buffer;
1476 struct passwd * tempres;
1477 buffer = malloc(SH_PWBUF_SIZE);
1478 SL_REQUIRE (buffer != NULL, _("buffer != NULL"));
1479 sh_getpwnam_r(user, &pwd, buffer, SH_PWBUF_SIZE, &tempres);
1480#else
1481 struct passwd * tempres = sh_getpwnam(user);
1482#endif
1483
1484 SL_REQUIRE (NULL != tempres, _("tempres != NULL"));
1485
1486 rgid_orig = tempres->pw_gid;
1487 ruid_orig = tempres->pw_uid;
1488#if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
1489 free(buffer);
1490#endif
1491 }
1492 else
1493 {
1494 rgid_orig = rgid;
1495 ruid_orig = ruid;
1496 }
1497
1498 SL_REQUIRE (sl_drop_privileges() == SL_ENONE,
1499 _("sl_drop_privileges() == SL_ENONE"));
1500
1501 suid_is_set = SL_TRUE;
1502 SL_IRETURN(SL_ENONE, _("sl_policy_get_real"));
1503}
1504
1505
1506/*
1507 * Define a policy: Get user.
1508 * Drops privileges.
1509 * Do nothing if not SUID.
1510 */
1511int sl_policy_get_user(const char * user)
1512{
1513 SL_ENTER(_("sl_policy_get_user"));
1514
1515 SL_REQUIRE(user != NULL, _("user != NULL"));
1516 SL_REQUIRE(uids_are_stored == SL_FALSE, _("uids_are_stored == SL_FALSE"));
1517 SL_REQUIRE (sl_save_uids() == SL_ENONE, _("sl_save_uids() == SL_ENONE"));
1518
1519 if (euid != ruid || egid != rgid)
1520 {
1521#if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
1522 struct passwd pwd;
1523 char * buffer;
1524 struct passwd * tempres;
1525 buffer = malloc(SH_PWBUF_SIZE);
1526 SL_REQUIRE (buffer != NULL, _("buffer != NULL"));
1527 sh_getpwnam_r(user, &pwd, buffer, SH_PWBUF_SIZE, &tempres);
1528#else
1529 struct passwd * tempres = sh_getpwnam(user);
1530#endif
1531
1532 SL_REQUIRE (NULL != tempres, _("tempres != NULL"));
1533
1534 SL_REQUIRE (sl_drop_privileges() == SL_ENONE,
1535 _("sl_drop_privileges() == SL_ENONE"));
1536#if defined(HAVE_PTHREAD) && defined (_POSIX_THREAD_SAFE_FUNCTIONS) && defined(HAVE_GETPWNAM_R)
1537 free(buffer);
1538#endif
1539 }
1540 SL_IRETURN(SL_ENONE, _("sl_policy_get_user"));
1541}
1542
1543
1544
1545/* ----------------------------------------------------------------
1546 *
1547 * File access routines
1548 *
1549 * ---------------------------------------------------------------- */
1550
1551#define TOFFSET 0x1234
1552
1553/* this would prevent opening files if the first 16 fds are open :( */
1554/* #define MAXFD FOPEN_MAX */
1555
1556#define MAXFD 1024
1557
1558typedef struct openfiles {
1559 SL_TICKET ticket; /* The unique ID. */
1560 int fd; /* The file descriptor. */
1561 char * path; /* The file path. */
1562 int flush; /* Whether we want to flush the cache */
1563 sh_string * content; /* The file content */
1564} SL_OFILE;
1565
1566static SL_OFILE * ofiles[MAXFD];
1567
1568SH_MUTEX_STATIC(mutex_ticket, PTHREAD_MUTEX_INITIALIZER);
1569
1570static unsigned int nonce_counter = TOFFSET;
1571
1572static
1573SL_TICKET sl_create_ticket (unsigned int myindex)
1574{
1575 unsigned int high; /* index */
1576 unsigned int low; /* nonce */
1577 SL_TICKET retval = SL_EINTERNAL;
1578
1579 SL_ENTER(_("sl_create_ticket"));
1580
1581 if (myindex >= MAXFD)
1582 {
1583 retval = SL_EINTERNAL01;
1584 goto out_ticket;
1585 }
1586
1587 /* mask out the high bit and check that it is not used
1588 * -> verify that it fits into 16 bits as positive
1589 */
1590 high = (myindex + TOFFSET) & 0x7fff;
1591
1592 if (high != myindex + TOFFSET)
1593 {
1594 retval = SL_EINTERNAL02;
1595 goto out_ticket;
1596 }
1597
1598 SH_MUTEX_LOCK_UNSAFE(mutex_ticket);
1599
1600 low = nonce_counter & 0xffff;
1601
1602 /* Overflow -> nonce too big.
1603 */
1604 if ((low != nonce_counter++) || low == 0)
1605 {
1606 retval = SL_EINTERNAL03;
1607 goto out_ticket;
1608 }
1609
1610 /* Wrap around the nonce counter.
1611 * This is a dirty trick.
1612 */
1613 if (nonce_counter > 0x7fff)
1614 nonce_counter = TOFFSET;
1615
1616 retval = (SL_TICKET) ((high << 16) | low);
1617
1618 out_ticket:
1619 ;
1620
1621 SH_MUTEX_UNLOCK_UNSAFE(mutex_ticket);
1622 SL_RETURN (retval, _("sl_create_ticket"));
1623}
1624
1625static
1626int sl_read_ticket (SL_TICKET fno)
1627{
1628 register unsigned myindex;
1629 register SL_OFILE *of;
1630
1631 myindex = ((fno >> 16) & 0xffff) - TOFFSET;
1632 if (myindex >= MAXFD)
1633 return (SL_ETICKET);
1634
1635 if (ofiles[myindex] == NULL)
1636 return (SL_ETICKET);
1637
1638 if (ofiles[myindex]->ticket != fno)
1639 return (SL_ETICKET);
1640
1641 if ((of = ofiles[myindex])->fd < 0 || of->fd >= MAXFD )
1642 return (SL_EINTERNAL04);
1643
1644 if (((of->ticket) & 0xffff) == 0)
1645 return (SL_EINTERNAL05);
1646
1647 return (myindex);
1648}
1649
1650SL_TICKET sl_make_ticket (int fd, const char * filename)
1651{
1652 size_t len;
1653 SL_TICKET ticket;
1654 SL_ENTER(_("sl_make_ticket"));
1655 /* Make entry.
1656 */
1657 if (fd >= MAXFD || fd < 0)
1658 {
1659 SL_IRETURN(SL_TOOMANY, _("sl_make_ticket"));
1660 }
1661
1662 if (ofiles[fd] != NULL)
1663 {
1664 SL_IRETURN(SL_EINTERNAL06, _("sl_make_ticket"));
1665 }
1666
1667 if ( (ofiles[fd] = (SL_OFILE *) malloc(sizeof(SL_OFILE))) == NULL)
1668 {
1669 SL_IRETURN(SL_EMEM, _("sl_make_ticket"));
1670 }
1671
1672 len = sl_strlen(filename)+1;
1673
1674 if ( (ofiles[fd]->path = (char *) malloc(len) ) == NULL)
1675 {
1676 free(ofiles[fd]);
1677 ofiles[fd] = NULL;
1678 SL_IRETURN(SL_EMEM, _("sl_make_ticket"));
1679 }
1680
1681 /* Get a ticket.
1682 */
1683 ticket = sl_create_ticket((unsigned int)fd);
1684
1685 if (SL_ISERROR(ticket))
1686 {
1687 (void) free (ofiles[fd]->path);
1688 (void) free (ofiles[fd]);
1689 SL_IRETURN(ticket, _("sl_make_ticket"));
1690 }
1691
1692 sl_strlcpy (ofiles[fd]->path, filename, len);
1693 ofiles[fd]->ticket = ticket;
1694 ofiles[fd]->fd = fd;
1695 ofiles[fd]->content = NULL;
1696 ofiles[fd]->flush = SL_FALSE;
1697
1698 SL_IRETURN(ticket, _("sl_make_ticket"));
1699}
1700
1701#define SL_OPEN_MIN 113
1702#define SL_OPEN_FOR_READ 113
1703#define SL_OPEN_FOR_WRITE 114
1704#define SL_OPEN_FOR_RDWR 115
1705#define SL_OPEN_FOR_WTRUNC 116
1706#define SL_OPEN_FOR_RWTRUNC 117
1707#define SL_OPEN_SAFE_RDWR 118
1708#define SL_OPEN_FOR_FASTREAD 119
1709#define SL_OPEN_MAX 119
1710
1711#if !defined(O_NOATIME)
1712#if defined(__linux__) && (defined(__i386__) || defined(__PPC__))
1713#define O_NOATIME 01000000
1714#else
1715 /*
1716 * bitwise 'or' with zero does not modify any bit
1717 */
1718#define O_NOATIME 0
1719#endif
1720#endif
1721
1722static int o_noatime = O_NOATIME;
1723static mode_t open_mode = (S_IWUSR|S_IRUSR|S_IRGRP);
1724
1725
1726static
1727int sl_open_file (const char *filename, int mode, int priv)
1728{
1729 struct stat lbuf;
1730 struct stat buf;
1731 int errval = 0;
1732 int lstat_return;
1733 int stat_return;
1734 int fd;
1735 int sflags;
1736 size_t len;
1737 SL_TICKET ticket;
1738
1739#if !defined(O_NONBLOCK)
1740#if defined(O_NDELAY)
1741#define O_NONBLOCK O_NDELAY
1742#else
1743#define O_NONBLOCK 0
1744#endif
1745#endif
1746
1747 SL_ENTER(_("sl_open_file"));
1748
1749 if (filename == NULL)
1750 SL_IRETURN(SL_ENULL, _("sl_open_file"));
1751 if (mode < SL_OPEN_MIN || mode > SL_OPEN_MAX)
1752 SL_IRETURN(SL_EINTERNAL07, _("sl_open_file"));
1753
1754 /* "This system call always succeeds and the previous value of
1755 * the mask is returned."
1756 */
1757 (void) umask (0);
1758
1759 if (mode == SL_OPEN_FOR_FASTREAD)
1760 {
1761 fd = aud_open_noatime (FIL__, __LINE__, priv, filename,
1762 O_RDONLY|O_NONBLOCK, 0, &o_noatime);
1763 /*
1764 if (fd >= 0) {
1765 sflags = retry_fcntl(FIL__, __LINE__, fd, F_GETFL, 0);
1766 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags & ~O_NONBLOCK);
1767 }
1768 */
1769 if (fd < 0)
1770 SL_IRETURN(SL_EBADFILE, _("sl_open_file"));
1771 goto createTicket;
1772 }
1773
1774#ifdef USE_SUID
1775 if (priv == SL_YESPRIV)
1776 sl_set_suid();
1777#endif
1778 if (mode == SL_OPEN_FOR_READ)
1779 lstat_return = retry_stat (FIL__, __LINE__, filename, &lbuf);
1780 else
1781 lstat_return = retry_lstat(FIL__, __LINE__, filename, &lbuf);
1782 errval = errno;
1783#ifdef USE_SUID
1784 if (priv == SL_YESPRIV)
1785 sl_unset_suid();
1786#endif
1787
1788 if (lstat_return == -1)
1789 {
1790 lstat_return = ENOENT;
1791 if ( (mode == SL_OPEN_FOR_READ && lstat_return == ENOENT) ||
1792 (errval != ENOENT))
1793 {
1794 TPT(( 0, FIL__, __LINE__, _("msg=<lstat: %s> errno=<%d>\n"),
1795 filename, errval));
1796 errno = errval;
1797 SL_IRETURN(SL_ESTAT, _("sl_open_file"));
1798 }
1799 }
1800
1801 if ( (mode != SL_OPEN_FOR_READ) && (lstat_return != ENOENT) &&
1802 ( S_ISDIR(lbuf.st_mode) || (S_IWOTH & lbuf.st_mode) )
1803 )
1804 {
1805 int retval = S_ISDIR(lbuf.st_mode) ? SL_EISDIR : SL_EBADOTH;
1806 errno = 0;
1807 SL_IRETURN(retval, _("sl_open_file"));
1808 }
1809
1810 /* O_NOATIME has an effect for read(). But write() ?.
1811 */
1812 switch (mode)
1813 {
1814 case SL_OPEN_FOR_READ:
1815 fd = aud_open_noatime (FIL__, __LINE__, priv, filename,
1816 O_RDONLY|O_NONBLOCK, 0, &o_noatime);
1817 errval = errno;
1818 if (fd >= 0) {
1819 sflags = retry_fcntl(FIL__, __LINE__, fd, F_GETFL, 0);
1820 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags & ~O_NONBLOCK);
1821 }
1822 break;
1823 case SL_OPEN_FOR_WRITE:
1824 if (lstat_return == ENOENT)
1825 fd = aud_open (FIL__, __LINE__, priv, filename,
1826 O_WRONLY|O_CREAT|O_EXCL, open_mode);
1827 else
1828 fd = aud_open (FIL__, __LINE__, priv, filename,
1829 O_WRONLY, open_mode);
1830 errval = errno;
1831 break;
1832 case SL_OPEN_SAFE_RDWR:
1833 if (lstat_return == ENOENT)
1834 {
1835 fd = aud_open (FIL__, __LINE__, priv, filename,
1836 O_RDWR|O_CREAT|O_EXCL, open_mode);
1837 errval = errno;
1838 }
1839 else
1840 {
1841 errno = errval;
1842 SL_IRETURN(SL_EBADFILE, _("sl_open_file"));
1843 }
1844 break;
1845 case SL_OPEN_FOR_RDWR:
1846 if (lstat_return == ENOENT)
1847 fd = aud_open (FIL__, __LINE__, priv, filename,
1848 O_RDWR|O_CREAT|O_EXCL, open_mode);
1849 else
1850 fd = aud_open (FIL__, __LINE__, priv, filename,
1851 O_RDWR, open_mode);
1852 errval = errno;
1853 break;
1854 case SL_OPEN_FOR_WTRUNC:
1855 if (lstat_return == ENOENT)
1856 fd = aud_open (FIL__, __LINE__, priv, filename,
1857 O_WRONLY|O_CREAT|O_EXCL, open_mode);
1858 else
1859 fd = aud_open (FIL__, __LINE__, priv, filename,
1860 O_WRONLY|O_TRUNC, open_mode);
1861 errval = errno;
1862 break;
1863 case SL_OPEN_FOR_RWTRUNC:
1864 if (lstat_return == ENOENT)
1865 fd = aud_open (FIL__, __LINE__, priv, filename,
1866 O_RDWR|O_CREAT|O_EXCL, open_mode);
1867 else
1868 fd = aud_open (FIL__, __LINE__, priv, filename,
1869 O_RDWR|O_TRUNC, open_mode);
1870 errval = errno;
1871 break;
1872 default:
1873 errno = 0;
1874 SL_IRETURN(SL_EINTERNAL08, _("sl_open_file"));
1875 }
1876
1877 if (fd < 0)
1878 {
1879 TPT(( 0, FIL__, __LINE__, _("msg=<Error opening: %s> errno=<%d>\n"),
1880 filename, errval));
1881 errno = errval;
1882 SL_IRETURN(SL_EBADFILE, _("sl_open_file"));
1883 }
1884
1885#ifdef USE_SUID
1886 if (priv == SL_YESPRIV)
1887 sl_set_suid();
1888#endif
1889 stat_return = retry_fstat(FIL__, __LINE__, fd, &buf);
1890 errval = errno;
1891#ifdef USE_SUID
1892 if (priv == SL_YESPRIV)
1893 sl_unset_suid();
1894#endif
1895
1896 if (stat_return < 0)
1897 {
1898 close (fd);
1899 errno = errval;
1900 SL_IRETURN(SL_EFSTAT, _("sl_open_file"));
1901 }
1902
1903 errno = 0;
1904
1905 if (lstat_return != ENOENT && buf.st_ino != lbuf.st_ino)
1906 {
1907 close (fd);
1908 SL_IRETURN(SL_EBOGUS, _("sl_open_file"));
1909 }
1910
1911 createTicket:
1912
1913 /* Make entry.
1914 */
1915 if (fd >= MAXFD)
1916 {
1917 close(fd);
1918 SL_IRETURN(SL_TOOMANY, _("sl_open_file"));
1919 }
1920
1921 if (ofiles[fd] != NULL)
1922 {
1923 close(fd);
1924 SL_IRETURN(SL_EINTERNAL09, _("sl_open_file"));
1925 }
1926
1927 if ( (ofiles[fd] = (SL_OFILE *) malloc(sizeof(SL_OFILE))) == NULL)
1928 {
1929 close(fd);
1930 SL_IRETURN(SL_EMEM, _("sl_open_file"));
1931 }
1932
1933 len = sl_strlen(filename)+1;
1934
1935 if ( (ofiles[fd]->path = (char *) malloc(len) ) == NULL)
1936 {
1937 free(ofiles[fd]);
1938 ofiles[fd] = NULL;
1939 close(fd);
1940 SL_IRETURN(SL_EMEM, _("sl_open_file"));
1941 }
1942
1943 /* Get a ticket.
1944 */
1945 ticket = sl_create_ticket(fd);
1946
1947 if (SL_ISERROR(ticket))
1948 {
1949 (void) free (ofiles[fd]->path);
1950 (void) free (ofiles[fd]);
1951 close(fd);
1952 SL_IRETURN(ticket, _("sl_open_file"));
1953 }
1954
1955 sl_strlcpy (ofiles[fd]->path, filename, len);
1956 ofiles[fd]->ticket = ticket;
1957 ofiles[fd]->fd = fd;
1958 ofiles[fd]->content = NULL;
1959 ofiles[fd]->flush = SL_FALSE;
1960
1961 SL_IRETURN(ticket, _("sl_open_file"));
1962}
1963
1964int get_the_fd (SL_TICKET ticket)
1965{
1966 int fd;
1967
1968 if (SL_ISERROR(fd = sl_read_ticket(ticket)))
1969 return (fd);
1970
1971 if (ofiles[fd] == NULL || fd != ofiles[fd]->fd || fd < 0)
1972 return (SL_EINTERNAL10);
1973 return (fd);
1974}
1975
1976static
1977int check_fname_priv (const char * fname, int priv)
1978{
1979 SL_ENTER(_("check_fname_priv"));
1980 if (fname == NULL)
1981 SL_IRETURN(SL_ENULL, _("check_fname_priv"));
1982 if (priv != SL_YESPRIV && priv != SL_NOPRIV)
1983 SL_IRETURN(SL_EINTERNAL11, _("check_fname_priv"));
1984 SL_IRETURN(SL_ENONE, _("check_fname_priv"));
1985}
1986
1987SL_TICKET sl_open_write (const char * fname, int priv)
1988{
1989 long status;
1990 SL_ENTER(_("sl_open_write"));
1991
1992 if (SL_ENONE != (status = check_fname_priv (fname, priv)))
1993 SL_IRETURN(status, _("sl_open_write"));
1994
1995 status = sl_open_file(fname, SL_OPEN_FOR_WRITE, priv);
1996 SL_IRETURN(status, _("sl_open_write"));
1997}
1998
1999SL_TICKET sl_open_read (const char * fname, int priv)
2000{
2001 long status;
2002 SL_ENTER(_("sl_open_read"));
2003
2004 if (SL_ENONE != (status = check_fname_priv (fname, priv)))
2005 {
2006 TPT(( 0, FIL__, __LINE__,
2007 _("msg=<Error in check_fname_priv.> status=<%ld>\n"),
2008 status));
2009 SL_IRETURN(status, _("sl_open_read"));
2010 }
2011
2012 status = sl_open_file(fname, SL_OPEN_FOR_READ, priv);
2013 SL_IRETURN(status, _("sl_open_read"));
2014}
2015
2016#if defined(HAVE_POSIX_FADVISE) && defined(HAVE_MINCORE) && defined(POSIX_FADV_DONTNEED)
2017static int sl_check_mincore(int fd)
2018{
2019 /* Idea from Tobias Oetiker (http://insights.oetiker.ch/linux/fadvise.html)
2020 */
2021 struct stat fbuf;
2022 int retval = -1;
2023
2024 if (0 == fstat(fd, &fbuf))
2025 {
2026 void *f_map;
2027
2028 f_map = mmap((void *)0, fbuf.st_size, PROT_NONE, MAP_SHARED, fd, 0);
2029 if (MAP_FAILED != f_map)
2030 {
2031 extern int sh_unix_pagesize(void);
2032 size_t i;
2033 size_t page_size = sh_unix_pagesize();
2034 size_t vec_size = (fbuf.st_size+page_size-1)/page_size;
2035 unsigned char * vec = calloc(1, vec_size);
2036
2037 if (vec)
2038 {
2039 mincore(f_map, fbuf.st_size, vec);
2040 /* imax = fbuf.st_size/page_size; */
2041 for (i = 0; i <= vec_size; ++i)
2042 {
2043 if (vec[i]&1)
2044 {
2045 goto incore;
2046 }
2047 }
2048 retval = 0;
2049 incore:
2050 free(vec);
2051 }
2052 munmap(f_map, fbuf.st_size);
2053 }
2054 }
2055 return retval;
2056}
2057#endif
2058
2059static int sl_drop_cache = SL_FALSE;
2060
2061int sl_set_drop_cache(const char * str)
2062{
2063 extern int sh_util_flagval(const char * c, int * fval);
2064 return sh_util_flagval(str, &sl_drop_cache);
2065}
2066
2067SL_TICKET sl_open_fastread (const char * fname, int priv)
2068{
2069 long status;
2070 SL_ENTER(_("sl_open_fastread"));
2071
2072 if (SL_ENONE != (status = check_fname_priv (fname, priv)))
2073 SL_IRETURN(status, _("sl_open_read"));
2074
2075 status = sl_open_file(fname, SL_OPEN_FOR_FASTREAD, priv);
2076
2077#if defined(HAVE_POSIX_FADVISE) && defined(HAVE_MINCORE) && defined(POSIX_FADV_DONTNEED)
2078
2079 if (SL_FALSE != sl_drop_cache && !SL_ISERROR(status))
2080 {
2081 int fd = get_the_fd(status);
2082 if (fd >= 0)
2083 {
2084 if (0 == sl_check_mincore(fd))
2085 ofiles[fd]->flush = SL_TRUE;
2086 }
2087 }
2088
2089#endif
2090
2091 SL_IRETURN(status, _("sl_open_fastread"));
2092}
2093
2094SL_TICKET sl_open_rdwr (const char * fname, int priv)
2095{
2096 long status;
2097 SL_ENTER(_("sl_open_rdwr"));
2098
2099 if (SL_ENONE != (status = check_fname_priv (fname, priv)))
2100 SL_IRETURN(status, _("sl_open_rdwr"));
2101
2102 status = sl_open_file(fname, SL_OPEN_FOR_RDWR, priv);
2103 SL_IRETURN(status, _("sl_open_rdwr"));
2104}
2105
2106SL_TICKET sl_open_safe_rdwr (const char * fname, int priv)
2107{
2108 long status;
2109 SL_ENTER(_("sl_open_safe_rdwr"));
2110
2111 if (SL_ENONE != (status = check_fname_priv (fname, priv)))
2112 SL_IRETURN(status, _("sl_open_safe_rdwr"));
2113
2114 status = sl_open_file(fname, SL_OPEN_SAFE_RDWR, priv);
2115 SL_IRETURN(status, _("sl_open_safe_rdwr"));
2116}
2117
2118SL_TICKET sl_open_write_trunc (const char * fname, int priv)
2119{
2120 long status;
2121 SL_ENTER(_("sl_open_write_trunc"));
2122
2123 if (SL_ENONE != (status = check_fname_priv (fname, priv)))
2124 SL_IRETURN(status, _("sl_open_write_trunc"));
2125
2126 status = sl_open_file(fname, SL_OPEN_FOR_WTRUNC, priv);
2127 SL_IRETURN(status, _("sl_open_write_trunc"));
2128}
2129
2130SL_TICKET sl_open_rdwr_trunc (const char * fname, int priv)
2131{
2132 long status;
2133 SL_ENTER(_("sl_open_rdwr_trunc"));
2134
2135 if (SL_ENONE != (status = check_fname_priv (fname, priv)))
2136 SL_IRETURN(status, _("sl_open_rdwr_trunc"));
2137
2138 status = sl_open_file(fname, SL_OPEN_FOR_RWTRUNC, priv);
2139 SL_IRETURN(status, _("sl_open_rdwr_trunc"));
2140}
2141
2142
2143int sl_init_content (SL_TICKET ticket, size_t size)
2144{
2145 int fd;
2146
2147 if (SL_ISERROR(fd = sl_read_ticket(ticket)))
2148 return (fd);
2149
2150 if (ofiles[fd] == NULL || fd != ofiles[fd]->fd || fd < 0)
2151 return (SL_EINTERNAL12);
2152
2153 if (ofiles[fd]->content)
2154 sh_string_destroy(&(ofiles[fd]->content));
2155 ofiles[fd]->content = sh_string_new(size);
2156
2157 return SL_ENONE;
2158}
2159
2160sh_string * sl_get_content (SL_TICKET ticket)
2161{
2162 int fd;
2163
2164 if (SL_ISERROR(fd = sl_read_ticket(ticket)))
2165 return (NULL);
2166
2167 if (ofiles[fd] == NULL || fd != ofiles[fd]->fd || fd < 0)
2168 return (NULL);
2169
2170 return (ofiles[fd]->content);
2171}
2172
2173int sl_lock (SL_TICKET ticket)
2174{
2175 int fd;
2176 struct flock lock;
2177 int retval;
2178
2179 SL_ENTER(_("sl_lock"));
2180
2181 if (SL_ISERROR(fd = get_the_fd (ticket)))
2182 SL_IRETURN(fd, _("sl_lock"));
2183
2184 lock.l_type = F_WRLCK;
2185 lock.l_whence = SEEK_SET;
2186 lock.l_start = 0;
2187 lock.l_len = 0;
2188
2189 /* F_SETLK returns if the lock cannot be obtained */
2190 do {
2191 retval = fcntl(fd, F_SETLK, &lock);
2192 } while (retval < 0 && errno == EINTR);
2193
2194 if (retval < 0 && errno == EBADF)
2195 SL_IRETURN(SL_ETICKET, _("sl_lock"));
2196 else if (retval < 0)
2197 SL_IRETURN(SL_EBADFILE, _("sl_lock"));
2198 else
2199 SL_IRETURN(SL_ENONE, _("sl_lock"));
2200 }
2201
2202int sl_close (SL_TICKET ticket)
2203{
2204 register int fd;
2205
2206 SL_ENTER(_("sl_close"));
2207
2208 if (SL_ISERROR(fd = get_the_fd (ticket)))
2209 SL_IRETURN(fd, _("sl_close"));
2210
2211#if defined(HAVE_POSIX_FADVISE) && defined(HAVE_MINCORE) && defined(POSIX_FADV_DONTNEED)
2212
2213 if (ofiles[fd]->flush == SL_TRUE)
2214 {
2215 posix_fadvise(fd, 0, 0, POSIX_FADV_DONTNEED);
2216 }
2217
2218#endif
2219
2220 /* This may fail, but what to do then ?
2221 */
2222 if (0 != close(fd) && ofiles[fd] != NULL)
2223 {
2224 TPT((0, FIL__, __LINE__,
2225 _("msg=<Error closing file.>, path=<%s>, fd=<%d>, err=<%s>\n"),
2226 ofiles[fd]->path, fd, strerror(errno)));
2227 }
2228
2229 if (ofiles[fd] != NULL)
2230 {
2231 if (ofiles[fd]->content)
2232 sh_string_destroy(&(ofiles[fd]->content));
2233 (void) free(ofiles[fd]->path);
2234 (void) free(ofiles[fd]);
2235 ofiles[fd] = NULL;
2236 }
2237
2238 SL_IRETURN(SL_ENONE, _("sl_close"));
2239}
2240
2241int sl_dropall(int fd, int except)
2242{
2243 while (fd < MAXFD)
2244 {
2245 if (ofiles[fd] != NULL && fd != except)
2246 {
2247 if (ofiles[fd]->content)
2248 sh_string_destroy(&(ofiles[fd]->content));
2249 if (ofiles[fd]->path != NULL)
2250 (void) free(ofiles[fd]->path);
2251 (void) free(ofiles[fd]);
2252 ofiles[fd] = NULL;
2253 }
2254 ++fd;
2255 }
2256 return 0;
2257}
2258
2259int sl_dropall_dirty(int fd, int except)
2260{
2261 while (fd < MAXFD)
2262 {
2263 if (ofiles[fd] != NULL && fd != except)
2264 {
2265 ofiles[fd] = NULL;
2266 }
2267 ++fd;
2268 }
2269 return 0;
2270}
2271
2272
2273int sl_unlink (SL_TICKET ticket)
2274{
2275 register int fd;
2276
2277 SL_ENTER(_("sl_unlink"));
2278
2279 if (SL_ISERROR(fd = get_the_fd(ticket)))
2280 SL_IRETURN(fd, _("sl_unlink"));
2281
2282 if (retry_aud_unlink(FIL__, __LINE__, ofiles[fd]->path) < 0)
2283 SL_IRETURN(SL_EUNLINK, _("sl_unlink"));
2284
2285 SL_IRETURN(SL_ENONE, _("sl_unlink"));
2286}
2287
2288
2289int sl_seek (SL_TICKET ticket, off_t off_data)
2290{
2291 register int fd;
2292
2293 SL_ENTER(_("sl_seek"));
2294
2295 if (SL_ISERROR(fd = get_the_fd(ticket)))
2296 SL_IRETURN(fd, _("sl_seek"));
2297
2298 if (lseek(fd, off_data, SEEK_SET) == (off_t)-1)
2299 SL_IRETURN(SL_EREWIND, _("sl_seek"));
2300
2301 SL_IRETURN(SL_ENONE, _("sl_seek"));
2302}
2303
2304int sl_rewind (SL_TICKET ticket)
2305{
2306 register int fd;
2307
2308 SL_ENTER(_("sl_rewind"));
2309
2310 if (SL_ISERROR(fd = get_the_fd(ticket)))
2311 SL_IRETURN(fd, _("sl_rewind"));
2312
2313 if (lseek (fd, 0L, SEEK_SET) == (off_t)-1)
2314 SL_IRETURN(SL_EREWIND, _("sl_rewind"));
2315
2316 SL_IRETURN(SL_ENONE, _("sl_rewind"));
2317}
2318
2319int sl_forward (SL_TICKET ticket)
2320{
2321 register int fd;
2322
2323 SL_ENTER(_("sl_forward"));
2324
2325 if (SL_ISERROR(fd = get_the_fd(ticket)))
2326 SL_IRETURN(fd, _("sl_forward"));
2327
2328 if (lseek (fd, 0L, SEEK_END) == (off_t)-1)
2329 SL_IRETURN(SL_EFORWARD, _("sl_forward"));
2330
2331 SL_IRETURN(SL_ENONE, _("sl_forward"));
2332}
2333
2334
2335int sl_sync (SL_TICKET ticket)
2336{
2337 register int fd;
2338
2339 SL_ENTER(_("sl_sync"));
2340
2341 if (SL_ISERROR(fd = get_the_fd(ticket)))
2342 SL_IRETURN(fd, _("sl_sync"));
2343
2344 if (fsync (fd) == -1)
2345 SL_IRETURN(SL_ESYNC, _("sl_sync"));
2346
2347 SL_IRETURN(SL_ENONE, _("sl_sync"));
2348}
2349
2350int sl_read_timeout_prep (SL_TICKET ticket)
2351{
2352 int fd;
2353 int sflags;
2354
2355 SL_ENTER(_("sl_read_timeout_prep"));
2356
2357 if (SL_ISERROR(fd = get_the_fd(ticket)))
2358 {
2359 TPT(( 0, FIL__, __LINE__, _("msg=<ticket error> errno=<%d>"), fd));
2360 SL_IRETURN(fd, _("sl_read_timeout_prep"));
2361 }
2362
2363 /* set to non-blocking mode
2364 */
2365 sflags = retry_fcntl(FIL__, __LINE__, fd, F_GETFL, 0);
2366 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags | O_NONBLOCK);
2367
2368 SL_IRETURN(SL_ENONE, _("sl_read_timeout_prep"));
2369}
2370
2371
2372int sl_read_timeout_fd (int fd, void * buf_in, size_t count,
2373 int timeout, int is_nonblocking)
2374{
2375 int sflags = 0;
2376 fd_set readfds;
2377 struct timeval tv;
2378 /* int sflags; */
2379 int retval;
2380 int error;
2381
2382 int byteread = 0;
2383 int bytes = 0;
2384 char * buf;
2385
2386 time_t tnow;
2387 time_t tstart;
2388 time_t tdiff;
2389 extern volatile int sig_termfast;
2390
2391 if (is_nonblocking == SL_FALSE)
2392 {
2393 /* set to non-blocking mode
2394 */
2395 sflags = retry_fcntl(FIL__, __LINE__, fd, F_GETFL, 0);
2396 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags | O_NONBLOCK);
2397 }
2398
2399 buf = (char *) buf_in;
2400
2401 tstart = time(NULL);
2402 tdiff = 0;
2403
2404 while (count > 0)
2405 {
2406 FD_ZERO(&readfds);
2407 FD_SET(fd, &readfds);
2408
2409 tv.tv_sec = timeout - tdiff;
2410 tv.tv_usec = 0;
2411
2412 retval = select (fd+1, &readfds, NULL, NULL, &tv);
2413
2414 if (retval > 0)
2415 {
2416 byteread = read (fd, buf, count);
2417
2418 if (byteread > 0)
2419 {
2420 bytes += byteread; count -= byteread;
2421 buf += byteread;
2422 if (count == 0)
2423 break;
2424 }
2425 else if (byteread == 0)
2426 {
2427 break;
2428 }
2429 else
2430 {
2431 if (errno == EINTR || errno == EAGAIN)
2432 {
2433 retry_msleep(1, 0);
2434 tnow = time(NULL);
2435 tdiff = tnow - tstart;
2436 continue;
2437 }
2438 else
2439 {
2440 error = errno;
2441 if (is_nonblocking == SL_FALSE)
2442 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags);
2443 TPT(( 0, FIL__, __LINE__, _("msg=<read error>")));
2444 errno = error;
2445 return (SL_EREAD);
2446 }
2447 }
2448 }
2449 else if ((retval == -1) && (errno == EINTR || errno == EAGAIN))
2450 {
2451 retry_msleep(1, 0);
2452 tnow = time(NULL);
2453 tdiff = tnow - tstart;
2454 continue;
2455 }
2456 else if (retval == 0)
2457 {
2458 if (is_nonblocking == SL_FALSE)
2459 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags);
2460 TPT(( 0, FIL__, __LINE__, _("msg=<timeout>")));
2461 errno = 0;
2462 return (SL_TIMEOUT);
2463 }
2464 else
2465 {
2466 error = errno;
2467 if (is_nonblocking == SL_FALSE)
2468 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags);
2469 TPT(( 0, FIL__, __LINE__, _("msg=<timeout>")));
2470 errno = error;
2471 return (SL_EREAD);
2472 }
2473
2474 if (sig_termfast == 1)
2475 {
2476 if (is_nonblocking == SL_FALSE)
2477 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags);
2478 TPT(( 0, FIL__, __LINE__, _("msg=<terminated>")));
2479 errno = 0;
2480 return (SL_EREAD);
2481 }
2482
2483 tnow = time(NULL);
2484 tdiff = tnow - tstart;
2485
2486 if (tdiff > timeout)
2487 {
2488 if (is_nonblocking == SL_FALSE)
2489 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags);
2490 TPT(( 0, FIL__, __LINE__, _("msg=<timeout>")));
2491 errno = 0;
2492 return (SL_TIMEOUT);
2493 }
2494 }
2495
2496 if (is_nonblocking == SL_FALSE)
2497 retry_fcntl(FIL__, __LINE__, fd, F_SETFL, sflags);
2498 return ((int) bytes);
2499}
2500
2501int sl_read_timeout (SL_TICKET ticket, void * buf_in, size_t count,
2502 int timeout, int is_nonblocking)
2503{
2504 int fd, retval;
2505
2506 SL_ENTER(_("sl_read_timeout"));
2507
2508 if (buf_in == NULL || SL_ISERROR(fd = get_the_fd(ticket)))
2509 {
2510 if (buf_in == NULL)
2511 {
2512 TPT(( 0, FIL__, __LINE__, _("msg=<null buffer>")));
2513 SL_IRETURN((SL_ENULL), _("sl_read_timeout"));
2514 }
2515 if (SL_ISERROR(fd = get_the_fd(ticket)))
2516 {
2517 TPT(( 0, FIL__, __LINE__, _("msg=<ticket error> errno=<%d>"), fd));
2518 SL_IRETURN((fd), _("sl_read_timeout"));
2519 }
2520 }
2521
2522 retval = sl_read_timeout_fd (fd, buf_in, count, timeout, is_nonblocking);
2523 SL_IRETURN((retval), _("sl_read_timeout"));
2524}
2525
2526
2527int sl_read (SL_TICKET ticket, void * buf_in, size_t count)
2528{
2529 int fd;
2530 int byteread = 0;
2531 int bytes = 0;
2532
2533 char * buf;
2534
2535 SL_ENTER(_("sl_read"));
2536
2537 if (count < 1)
2538 {
2539 TPT(( 0, FIL__, __LINE__, _("msg=<range error>")));
2540 SL_IRETURN((SL_ERANGE), _("sl_read"));
2541 }
2542 if (buf_in == NULL)
2543 {
2544 TPT(( 0, FIL__, __LINE__, _("msg=<null buffer>")));
2545 SL_IRETURN((SL_ENULL), _("sl_read"));
2546 }
2547
2548 if (SL_ISERROR(fd = get_the_fd(ticket)))
2549 {
2550 TPT(( 0, FIL__, __LINE__, _("msg=<ticket error> errno=<%d>"), fd));
2551 SL_IRETURN((fd), _("sl_read"));
2552 }
2553
2554 buf = (char *) buf_in;
2555
2556 do
2557 {
2558 byteread = read (fd, buf, count);
2559 if (byteread > 0)
2560 {
2561 bytes += byteread; count -= byteread;
2562 buf += byteread;
2563 }
2564 } while ( byteread > 0 ||
2565 ( byteread == -1 && (errno == EINTR || errno == EAGAIN))
2566 );
2567
2568
2569 if (byteread == (-1))
2570 {
2571 TPT(( 0, FIL__, __LINE__, _("msg=<read error> errno=<%d>\n"), errno));
2572 SL_IRETURN((SL_EREAD), _("sl_read"));
2573 }
2574 SL_IRETURN((bytes), _("sl_read"));
2575}
2576
2577int sl_read_fast (SL_TICKET ticket, void * buf_in, size_t count)
2578{
2579 int fd;
2580 int byteread = 0;
2581
2582 char * buf;
2583
2584 SL_ENTER(_("sl_read_fast"));
2585
2586 if (count < 1)
2587 {
2588 TPT(( 0, FIL__, __LINE__, _("msg=<range error>")));
2589 SL_IRETURN((SL_ERANGE), _("sl_read_fast"));
2590 }
2591 if (buf_in == NULL)
2592 {
2593 TPT(( 0, FIL__, __LINE__, _("msg=<null buffer>")));
2594 SL_IRETURN((SL_ENULL), _("sl_read_fast"));
2595 }
2596
2597 if (SL_ISERROR(fd = get_the_fd(ticket)))
2598 {
2599 TPT(( 0, FIL__, __LINE__, _("msg=<ticket error> errno=<%d>"), fd));
2600 SL_IRETURN((fd), _("sl_read_fast"));
2601 }
2602
2603 buf = (char *) buf_in;
2604
2605 do
2606 {
2607 byteread = read (fd, buf, count);
2608 if (byteread >= 0)
2609 {
2610 SL_IRETURN((byteread), _("sl_read_fast"));
2611 }
2612 } while ( byteread == -1 && (errno == EINTR || errno == EAGAIN));
2613
2614
2615 if (byteread == (-1))
2616 {
2617 TPT(( 0, FIL__, __LINE__, _("msg=<read error> errno=<%d>\n"), errno));
2618 SL_IRETURN((SL_EREAD), _("sl_read_fast"));
2619 }
2620 SL_IRETURN((0), _("sl_read_fast"));
2621}
2622
2623
2624int sl_write (SL_TICKET ticket, const void * msg_in, long nbytes)
2625{
2626 long bytewritten;
2627 long bytecount;
2628 int fd;
2629
2630 const char * msg;
2631
2632 SL_ENTER(_("sl_write"));
2633
2634 if (nbytes < 1)
2635 SL_IRETURN(SL_ERANGE, _("sl_write"));
2636 if (msg_in == NULL)
2637 SL_IRETURN(SL_ENULL, _("sl_write"));
2638 if (SL_ISERROR(fd = get_the_fd(ticket)))
2639 SL_IRETURN(fd, _("sl_write"));
2640
2641 msg = (const char *) msg_in;
2642
2643 /* write
2644 */
2645 bytecount = 0;
2646 bytewritten = 0;
2647 while (bytecount < nbytes)
2648 {
2649 if ((bytewritten = write (fd, msg, nbytes-bytecount)) > 0)
2650 {
2651 bytecount += bytewritten;
2652 msg += bytewritten; /* move buffer pointer forward */
2653 }
2654 else if (bytewritten <= 0)
2655 {
2656 if ( errno == EINTR || errno == EAGAIN) /* try again */
2657 continue;
2658 else
2659 SL_IRETURN(SL_EWRITE, _("sl_write"));
2660 }
2661 }
2662 SL_IRETURN(SL_ENONE, _("sl_write"));
2663}
2664
2665int sl_write_line (SL_TICKET ticket, const void * msg, long nbytes)
2666{
2667 int status;
2668
2669 SL_ENTER(_("sl_write_line"));
2670
2671 status = sl_write(ticket, msg, nbytes);
2672 if (!SL_ISERROR(status))
2673 status = sl_write(ticket, "\n", 1);
2674
2675 SL_IRETURN(status, _("sl_write_line"));
2676}
2677
2678int sl_write_line_fast (SL_TICKET ticket, void * msg, long nbytes)
2679{
2680 int status;
2681 char * p = (char *) msg;
2682
2683 SL_ENTER(_("sl_write_line_fast"));
2684
2685 /* Here nbytes is strlen(msg), so p[nbytes] is the terminating '\0'
2686 * Overwrite the terminator, write out, then write back the terminator.
2687 */
2688 p[nbytes] = '\n';
2689 status = sl_write(ticket, msg, nbytes+1);
2690 p[nbytes] = '\0';
2691
2692 SL_IRETURN(status, _("sl_write_line_fast"));
2693}
2694
2695
2696/* ----------------------------------------------------------------
2697 *
2698 * Trustfile interface
2699 *
2700 * ---------------------------------------------------------------- */
2701
2702extern uid_t rootonly[];
2703extern int EUIDSLOT;
2704extern int ORIG_EUIDSLOT;
2705
2706extern char tf_path[MAXFILENAME]; /* Error path for trust function. */
2707extern uid_t tf_euid; /* Space for EUID of process. */
2708
2709char * sl_error_string(int errorcode)
2710{
2711
2712 switch (errorcode)
2713 {
2714 case SL_EBOGUS:
2715 return _("Bogus file, modified during access");
2716 case SL_EWRITE:
2717 return _("Write error");
2718 case SL_EREAD:
2719 return _("Read error");
2720 case SL_ESYNC:
2721 return _("Error in fsync()");
2722 case SL_EFORWARD:
2723 return _("Error in lseek()");
2724 case SL_EREWIND:
2725 return _("Error in lseek()");
2726 case SL_EUNLINK:
2727 return _("Error in unlink()");
2728 case SL_EMEM:
2729 return _("Out of memory");
2730 case SL_EINTERNAL:
2731 return _("Internal error");
2732 case SL_EINTERNAL01:
2733 return _("Internal error 01");
2734 case SL_EINTERNAL02:
2735 return _("Internal error 02");
2736 case SL_EINTERNAL03:
2737 return _("Internal error 03");
2738 case SL_EINTERNAL04:
2739 return _("Internal error 04");
2740 case SL_EINTERNAL05:
2741 return _("Internal error 05");
2742 case SL_EINTERNAL06:
2743 return _("Internal error 06");
2744 case SL_EINTERNAL07:
2745 return _("Internal error 07");
2746 case SL_EINTERNAL08:
2747 return _("Internal error 08");
2748 case SL_EINTERNAL09:
2749 return _("Internal error 09");
2750 case SL_EINTERNAL10:
2751 return _("Internal error 10");
2752 case SL_EINTERNAL11:
2753 return _("Internal error 11");
2754 case SL_EINTERNAL12:
2755 return _("Internal error 12");
2756 case SL_ETICKET:
2757 return _("Bad ticket");
2758 case SL_EREPEAT:
2759 return _("Illegal repeated use of function");
2760 case SL_ERANGE:
2761 return _("Argument out of range");
2762 case SL_ENULL:
2763 return _("Dereferenced NULL pointer");
2764
2765 case SL_EBADUID:
2766 return _("Owner not trustworthy");
2767 case SL_EBADGID:
2768 return _("Group writeable and member not trustworthy");
2769 case SL_EBADOTH:
2770 return _("World writeable");
2771 case SL_EISDIR:
2772 return _("Is a directory");
2773 case SL_EBADFILE:
2774 return _("File access error");
2775 case SL_EBADNAME:
2776 return _("Invalid filename (prob. too long or null)");
2777
2778 case SL_ETRUNC:
2779 return _("Truncation occured");
2780 case SL_ESTAT:
2781 return _("stat() failed");
2782 case SL_EFSTAT:
2783 return _("fstat() failed");
2784 default:
2785 return _("Unknown error");
2786 }
2787}
2788
2789
2790
2791char * sl_trust_errfile(void)
2792{
2793 return &tf_path[0];
2794}
2795
2796extern uid_t tf_baduid;
2797uid_t sl_trust_baduid(void)
2798{
2799 return tf_baduid;
2800}
2801
2802extern gid_t tf_badgid;
2803gid_t sl_trust_badgid(void)
2804{
2805 return tf_badgid;
2806}
2807
2808
2809static int trust_count = 0;
2810
2811int sl_trust_purge_user (void)
2812{
2813 int i;
2814
2815 EUIDSLOT = ORIG_EUIDSLOT;
2816 trust_count = 0;
2817
2818 for (i = EUIDSLOT; i < (EUIDSLOT + 15); ++i)
2819 rootonly[i] = sh_uid_neg;
2820 return 0;
2821}
2822
2823int sl_trust_add_user (uid_t pwid)
2824{
2825 SL_ENTER(_("sl_trust_add_user"));
2826
2827 if (trust_count == 15)
2828 SL_IRETURN(SL_ERANGE, _("sl_trust_add_user"));
2829
2830 rootonly[EUIDSLOT] = pwid;
2831 ++EUIDSLOT;
2832 ++trust_count;
2833
2834 SL_IRETURN(SL_ENONE, _("sl_trust_add_user"));
2835}
2836
2837#include "sh_mem.h"
2838extern char * sh_util_strdup (const char * str);
2839
2840struct sl_trustfile_store {
2841 char * filename;
2842 uid_t teuid;
2843 struct sl_trustfile_store * next;
2844};
2845
2846static struct sl_trustfile_store * sl_trusted_files = NULL;
2847
2848static void sl_add_trusted_file(const char * filename, uid_t teuid)
2849{
2850 struct sl_trustfile_store *new = SH_ALLOC(sizeof(struct sl_trustfile_store));
2851
2852 new->filename = sh_util_strdup (filename);
2853 new->teuid = teuid;
2854 new->next = sl_trusted_files;
2855
2856 sl_trusted_files = new;
2857 return;
2858}
2859
2860static const char * sl_check_trusted_file(const char * filename, uid_t teuid)
2861{
2862 struct sl_trustfile_store *new = sl_trusted_files;
2863
2864 while (new)
2865 {
2866 if ((new->teuid == teuid) && (0 == strcmp(new->filename, filename)))
2867 return filename;
2868 new = new->next;
2869 }
2870
2871 return NULL;
2872}
2873
2874static void sl_clear_trusted_file(struct sl_trustfile_store * file)
2875{
2876 if (file)
2877 {
2878 if (file->next != NULL)
2879 sl_clear_trusted_file(file->next);
2880 SH_FREE(file->filename);
2881 SH_FREE(file);
2882 }
2883 return;
2884}
2885
2886int sl_trustfile_euid(const char * filename, uid_t teuid)
2887{
2888 long status;
2889 static time_t old = 0;
2890 static time_t now;
2891
2892 SL_ENTER(_("sl_trustfile_euid"));
2893
2894 tf_path[0] = '\0';
2895 if (filename == NULL || filename[0] == '\0')
2896 SL_IRETURN(SL_EBADNAME, _("sl_trustfile_euid"));
2897
2898 now = time(NULL);
2899 if (now < (old + 300))
2900 {
2901 if (NULL != sl_check_trusted_file(filename, teuid))
2902 {
2903 sl_strlcpy(tf_path, filename, sizeof(tf_path));
2904 SL_IRETURN(SL_ENONE, _("sl_trustfile_euid"));
2905 }
2906 }
2907 else
2908 {
2909 sl_clear_trusted_file(sl_trusted_files);
2910 sl_trusted_files = NULL;
2911 old = now;
2912 }
2913
2914 tf_euid = teuid;
2915 status = sl_trustfile(filename, NULL, NULL);
2916 if (status == SL_ENONE)
2917 sl_add_trusted_file(filename, teuid);
2918 SL_IRETURN(status, _("sl_trustfile_euid"));
2919}
2920
2921/* ----------------------------------------------------------------
2922 *
2923 * Overflow tests
2924 *
2925 * ---------------------------------------------------------------- */
2926
2927#ifndef SIZE_MAX
2928#define SIZE_MAX (4294967295U)
2929#endif
2930
2931int sl_ok_muli (int a, int b) /* a*b */
2932{
2933 if ((b == 0) || (a >= (INT_MIN / b) && a <= (INT_MAX / b)))
2934 return SL_TRUE; /* no overflow */
2935 return SL_FALSE;
2936}
2937
2938int sl_ok_muls (size_t a, size_t b) /* a*b */
2939{
2940 if ((b == 0) || (a <= (SIZE_MAX / b)))
2941 return SL_TRUE; /* no overflow */
2942 return SL_FALSE;
2943}
2944
2945int sl_ok_divi (int a, int b) /* a/b */
2946{
2947 (void) a;
2948 if (b != 0)
2949 return SL_TRUE; /* no overflow */
2950 return SL_FALSE;
2951}
2952
2953int sl_ok_addi (int a, int b) /* a+b */
2954{
2955 if (a >= 0 && b >= 0)
2956 {
2957 if (a <= (INT_MAX - b))
2958 return SL_TRUE; /* no overflow */
2959 else
2960 return SL_FALSE;
2961 }
2962 else if (a < 0 && b < 0)
2963 {
2964 if (a >= (INT_MIN - b))
2965 return SL_TRUE; /* no overflow */
2966 else
2967 return SL_FALSE;
2968 }
2969 return SL_TRUE;
2970}
2971
2972int sl_ok_adds (size_t a, size_t b) /* a+b */
2973{
2974 if (a <= (SIZE_MAX - b))
2975 return SL_TRUE; /* no overflow */
2976 else
2977 return SL_FALSE;
2978}
2979
2980int sl_ok_subi (int a, int b) /* a-b */
2981{
2982 if (a >= 0 && b < 0)
2983 {
2984 if (a <= (INT_MAX + b))
2985 return SL_TRUE; /* no overflow */
2986 else
2987 return SL_FALSE;
2988 }
2989 else if (a < 0 && b >= 0)
2990 {
2991 if (a >= (INT_MIN + b))
2992 return SL_TRUE; /* no overflow */
2993 else
2994 return SL_FALSE;
2995 }
2996 return SL_TRUE;
2997}
Note: See TracBrowser for help on using the repository browser.