source: trunk/include/slib.h@ 169

Last change on this file since 169 was 169, checked in by katerina, 17 years ago

Fixes for tickes #93 to #104 (yes, big commit, bad, bad,...).

File size: 14.4 KB
Line 
1/* --------------------------------------------------------------
2 *
3 * The developement of this library has been stimulated by reading
4 * a paper on 'Robust Programming' by Matt Bishop, although
5 * not all of his ideas might be implemented in the same
6 * strictness as discussed in the paper.
7 *
8 * --------------------------------------------------------------
9 */
10
11#ifndef SL_SLIB_H
12#define SL_SLIB_H
13
14#include <errno.h>
15#include <stdio.h>
16#include <stdlib.h>
17#include <stdarg.h>
18#include <sys/types.h>
19
20#include "config_xor.h"
21
22#ifdef HAVE_UNISTD_H
23#include <unistd.h>
24#endif
25
26#include "sh_string.h"
27
28/****************
29
30 -- Defined in config.h. --
31
32 #ifndef _(string)
33 #define _(string) string
34 #endif
35
36 #ifndef N_(string)
37 #define N_(string) string
38 #endif
39
40*****************/
41
42/* --------------------------------------------------------------
43 *
44 * Typedefs, global variables, macros.
45 *
46 * --------------------------------------------------------------
47 */
48
49extern long int sl_errno; /* Global error variable. */
50
51
52/* The ticketing system; used to hide internals from the
53 * programmer.
54 */
55typedef long int SL_TICKET; /* Unique ID for opened files. */
56
57
58/*
59 * TRUE, FALSE
60 */
61#define SL_TRUE 1
62#define SL_FALSE 0
63
64#define SH_GRBUF_SIZE 4096
65#define SH_PWBUF_SIZE 4096
66
67
68#if defined(__GNUC__) && (__GNUC__ >= 3)
69#undef SL_GNUC_CONST
70#define SL_GNUC_CONST __attribute__((const))
71#else
72#undef SL_GNUC_CONST
73#define SL_GNUC_CONST
74#endif
75
76/*
77 * The following macros are provided:
78 *
79 * SL_ISERROR(x) TRUE if return status of 'x' is an error code.
80 * SL_REQUIRE(x, xstr) Abort if 'x' is false.
81 * SL_ENTER(s) Trace entry in function 's'.
82 * SL_RETURN(x, s) Trace return from function 's'.
83 */
84
85
86/*
87 * The error codes.
88 */
89#define SL_ENONE 0
90
91#define SL_ENULL -1024 /* Invalid use of NULL pointer. */
92#define SL_ERANGE -1025 /* Argument out of range. */
93#define SL_ETRUNC -1026 /* Result truncated. */
94#define SL_EREPEAT -1027 /* Illegal repeated use of function. */
95
96#define SL_EINTERNAL -1028 /* Internal error. */
97#define SL_ETICKET -1029 /* Bad ticket. */
98#define SL_EBADFILE -1030 /* File access error. Check errno. */
99#define SL_EBOGUS -1031 /* Bogus file. */
100#define SL_EMEM -1032 /* Out of memory. */
101#define SL_EUNLINK -1033 /* Unlink error. Check errno. */
102#define SL_EREWIND -1034 /* Rewind error. Check errno. */
103#define SL_EFORWARD -1035 /* Forward error. Check errno. */
104#define SL_EREAD -1036 /* Read error. Check errno. */
105#define SL_EWRITE -1037 /* Write error. Check errno. */
106#define SL_ESYNC -1038 /* Write error. Check errno. */
107
108#define SL_EBADNAME -1040 /* Invalid name. */
109#define SL_ESTAT -1041 /* stat of file failed. Check errno. */
110
111#define SL_EBADUID -1050 /* Owner not trustworthy. */
112#define SL_EBADGID -1051 /* Group writeable and not trustworthy.*/
113#define SL_EBADOTH -1052 /* World writeable. */
114
115#define SL_TOOMANY -1053 /* Too many open files */
116#define SL_TIMEOUT -1054 /* Timeout in read */
117/*
118 * All int functions return SL_NONE on success.
119 */
120
121#ifdef __cplusplus
122extern "C" {
123#endif
124
125 int dlog (int flag, char * file, int line, const char *fmt, ...);
126
127 char * sl_get_errmsg();
128
129 /* ----------------------------------------------------------------
130 *
131 * Heap consistency routines
132 *
133 * ---------------------------------------------------------------- */
134
135 int sl_test_heap();
136
137 /* ----------------------------------------------------------------
138 *
139 * Capability routines
140 *
141 * ---------------------------------------------------------------- */
142
143 extern int sl_useCaps;
144
145 int sl_drop_cap ();
146 int sl_drop_cap_sub();
147 int sl_get_cap_sub();
148 int sl_drop_cap_qdel();
149 int sl_get_cap_qdel();
150
151 /* ----------------------------------------------------------------
152 *
153 * String handling routines
154 *
155 * ---------------------------------------------------------------- */
156
157 /*
158 * A memset that does not get optimized away
159 */
160 void *sl_memset(void *s, int c, size_t n);
161#if !defined(SH_REAL_SET)
162#undef memset
163#define memset sl_memset
164#endif
165
166 /*
167 * Copy src to dst. siz is the length of dst.
168 */
169 int sl_strlcpy(char * dst, /*@null@*/const char * src, size_t siz);
170
171 /*
172 * Append src to dst. siz is the length of dst.
173 */
174 int sl_strlcat(char * dst, /*@null@*/const char *src, size_t siz);
175
176 /*
177 * An implementation of vsnprintf. va_start/va_end are in the caller
178 * function.
179 */
180 int sl_vsnprintf(char *str, size_t n,
181 const char *format, va_list vl );
182
183 /*
184 * An implementation of snprintf.
185 */
186 int sl_snprintf(char *str, size_t n,
187 const char *format, ... );
188
189 /*
190 * A robust drop-in replacement of strncpy. strlcpy is preferable.
191 */
192 char * sl_strncpy(/*@out@*/char *dst, const char *src, size_t size);
193
194 /*
195 * Robust strncat.
196 */
197 char * sl_strncat(char *dst, const char *src, size_t n);
198
199 /*
200 * strstr
201 */
202 char * sl_strstr (const char * haystack, const char * needle);
203
204 /*
205 * robust strncmp replacement
206 */
207 int sl_strncmp(const char * a, const char * b, size_t n);
208
209 /*
210 * robust strcmp replacement
211 */
212 int sl_strcmp(const char * a, const char * b);
213
214 /*
215 * robust strcasecmp replacement
216 */
217 int sl_strcasecmp(const char * one, const char * two);
218
219 /*
220 * robust strlen replacement
221 */
222#define sl_strlen(arg) ((arg == NULL) ? 0 : (strlen(arg)))
223
224 /* ----------------------------------------------------------------
225 *
226 * Privilege handling routines
227 *
228 * ---------------------------------------------------------------- */
229
230 /*
231 * ONE OF THE FOLLOWING THREE FUNCTIONS
232 * SHOULD BE CALLED BEFORE ANY OTHER OF THE
233 * UID HANDLING FUNCTIONS.
234 */
235 int sl_policy_get_user(char *username); /* drop SUID to <username> */
236 int sl_policy_get_real(char *username); /* drop privs to <username> */
237 int sl_policy_get_root(void); /* drop SUID to root */
238
239 /*
240 * If not using one of the above, use this function,
241 * and then call sh_unset_suid().
242 * This function saves the uid's.
243 * It calls abort() on error.
244 */
245 int sl_save_uids(void);
246
247 /*
248 * This function returns the saved euid.
249 * It calls abort() if the uid's are not saved already.
250 */
251 int sl_get_euid(/*@out@*/uid_t * ret);
252 uid_t sl_ret_euid();
253
254 /*
255 * This function returns the saved egid.
256 * It calls abort() if the uid's are not saved already.
257 */
258 int sl_get_egid(/*@out@*/gid_t * ret);
259
260 /*
261 * This function returns the saved current ruid.
262 * It calls abort() if the uid's are not saved already.
263 */
264 int sl_get_ruid(/*@out@*/uid_t * ret);
265
266 /*
267 * This function returns the saved current rgid.
268 * It calls abort() if the uid's are not saved already.
269 */
270 int sl_get_rgid(gid_t * ret);
271
272 /*
273 * This function returns the saved original ruid.
274 * It calls abort() if the uid's are not saved already.
275 */
276 int sl_get_ruid_orig(uid_t * ret);
277
278 /*
279 * This function returns the saved original rgid.
280 * It calls abort() if the uid's are not saved already.
281 */
282 int sl_get_rgid_orig(gid_t * ret);
283
284 /*
285 * This function returns true if the program is SUID.
286 * It calls abort() if the uid's are not saved already.
287 */
288 int sl_is_suid(void);
289
290 /*
291 * This function sets the effective uid
292 * to the saved effective uid.
293 */
294 int sl_set_suid (void);
295
296 /*
297 * This function sets the effective uid to the real uid.
298 */
299 int sl_unset_suid (void);
300
301 /*
302 * This function drops SUID privileges irrevocably.
303 */
304 int sl_drop_privileges(void);
305
306 /* ----------------------------------------------------------------
307 *
308 * File handling routines
309 *
310 * ---------------------------------------------------------------- */
311
312 SL_TICKET sl_make_ticket (int fd, const char * path);
313
314 /* Open for writing.
315 */
316 SL_TICKET sl_open_write (const char * fname, int priviledge_mode);
317
318 /* Open for reading.
319 */
320 SL_TICKET sl_open_read (const char * fname, int priviledge_mode);
321
322 /* Open for reading w/minimum checking.
323 */
324 SL_TICKET sl_open_fastread (const char * fname, int priviledge_mode);
325
326 /* Open for read and write.
327 */
328 SL_TICKET sl_open_rdwr (const char * fname, int priviledge_mode);
329
330 /* Open for read and write, fail if file exists.
331 */
332 SL_TICKET sl_open_safe_rdwr (const char * fname, int priv);
333
334 /* Open for write, truncate.
335 */
336 SL_TICKET sl_open_write_trunc (const char * fname, int priviledge_mode);
337
338 /* Open for read and write, truncate.
339 */
340 SL_TICKET sl_open_rdwr_trunc (const char * fname, int priviledge_mode);
341
342 /* Initialize the content sh_string.
343 */
344 int sl_init_content (SL_TICKET ticket, size_t size);
345
346 /* Get the (pointer to) the content sh_string.
347 */
348 sh_string * sl_get_content (SL_TICKET ticket);
349
350 /* Close file.
351 */
352 int sl_close (SL_TICKET ticket);
353
354 /* Unlink file.
355 */
356 int sl_unlink (SL_TICKET ticket);
357
358 /* Rewind file.
359 */
360 int sl_rewind (SL_TICKET ticket);
361
362 /* Seek file.
363 */
364 int sl_seek (SL_TICKET ticket, off_t off_data);
365
366 /* Forward file.
367 */
368 int sl_forward (SL_TICKET ticket);
369
370 /* Sync file.
371 */
372 int sl_sync (SL_TICKET ticket);
373
374 /* Read file.
375 */
376 int sl_read (SL_TICKET ticket, void * buf, size_t count);
377
378 int sl_read_timeout_prep (SL_TICKET ticket);
379
380 int sl_read_timeout_fd (int fd, void * buf,
381 size_t count, int timeout, int is_nonblocking);
382
383 int sl_read_timeout (SL_TICKET ticket, void * buf,
384 size_t count, int timeout, int is_nonblocking);
385
386 int sl_read_fast (SL_TICKET ticket, void * buf_in, size_t count);
387
388 /* Write file.
389 */
390 int sl_write (SL_TICKET ticket, void * msg, long nbytes);
391
392 /* Write file, terminate with newline.
393 */
394 int sl_write_line (SL_TICKET ticket, void * msg, long nbytes);
395
396 /* As above, but only for non-constant strings.
397 */
398 int sl_write_line_fast (SL_TICKET ticket, void * msg, long nbytes);
399
400 /* Drop all metadata for file descriptors >= fd.
401 */
402 int sl_dropall(int fd, int except);
403
404 /* Check whether file is trustworthy.
405 */
406 int sl_trustfile(char * path, uid_t * ok, uid_t * bad);
407
408 /* Check whether file is trustworthy.
409 */
410 int sl_trustfile_euid(char * filename, uid_t euid);
411
412 /* purge list of trusted users
413 */
414 int sl_trust_purge_user ();
415
416 /* Add a trusted user.
417 */
418 int sl_trust_add_user (uid_t pwid);
419
420 /* Get error string.
421 */
422 char * sl_error_string(int errorcode);
423
424 /* Get error file.
425 */
426 char * sl_trust_errfile(void);
427
428 /* Overflow tests
429 */
430 int sl_ok_muli (int a, int b) SL_GNUC_CONST;
431 int sl_ok_divi (int a, int b) SL_GNUC_CONST;
432 int sl_ok_addi (int a, int b) SL_GNUC_CONST;
433 int sl_ok_subi (int a, int b) SL_GNUC_CONST;
434
435 int sl_ok_muls (size_t a, size_t b) SL_GNUC_CONST;
436 int sl_ok_adds (size_t a, size_t b) SL_GNUC_CONST;
437
438
439#ifdef __cplusplus
440}
441#endif
442
443/* Privilege modes for file access.
444 */
445#define SL_YESPRIV 0x33
446#define SL_NOPRIV 0x34
447
448/* Suitable for Linux
449 */
450#define MAXFILENAME 4096
451
452
453/*
454 * This macro is TRUE if (x) < 0.
455 */
456#define SL_ISERROR(x) ((long)(x) < 0)
457
458#if defined(WITH_TPT)
459#define TPT(arg) dlog arg ;
460#else
461#define TPT(arg)
462#endif
463
464
465/*
466 * The 'require' macro.
467 */
468#define SL_REQUIRE(assertion, astext) \
469do { \
470 /*@i@*/ if (assertion) ; \
471 else { \
472 dlog(0, FIL__, __LINE__, SDG_AFAIL, \
473 FIL__, __LINE__, astext); \
474 _exit(EXIT_FAILURE); \
475 } \
476} while (0)
477
478
479/*
480 * The enter macro. Prints the trace if TRACE is on.
481 */
482extern int slib_do_trace;
483extern int slib_trace_fd;
484
485#if defined(SL_DEBUG)
486#define SL_ENTER(s) sl_stack_push(s, FIL__, __LINE__);
487#else
488#define SL_ENTER(s) if (slib_do_trace != 0) sl_trace_in(s, FIL__, __LINE__);
489#endif
490
491/*
492 * The return macro.
493 */
494#if defined(SL_DEBUG)
495#ifndef S_SPLINT_S
496#define SL_RETURN(x, s) \
497do { \
498 sl_stack_pop(s, FIL__, __LINE__); \
499 return(x); \
500} while(0)
501#else
502/*@notfunction@*/
503#define SL_RETURN(x, s) return(x);
504#endif /* S_SPLINT_S */
505#else
506#ifndef S_SPLINT_S
507#define SL_RETURN(x, s) \
508do { \
509 if (slib_do_trace != 0) \
510 sl_trace_out(s, FIL__, __LINE__); \
511 return(x); \
512} while(0)
513#else
514/*@notfunction@*/
515#define SL_RETURN(x, s) return(x);
516#endif /* S_SPLINT_S */
517#endif /* SL_RETURN macro */
518
519#if defined(SL_DEBUG)
520#define SL_RET0(s) \
521do { \
522 sl_stack_pop(s, FIL__, __LINE__); \
523 return; \
524} while(0)
525#else
526#ifndef S_SPLINT_S
527#define SL_RET0(s) \
528do { \
529 if (slib_do_trace != 0) \
530 sl_trace_out(s, FIL__, __LINE__); \
531 return; \
532} while(0)
533#else
534/*@notfunction@*/
535#define SL_RET0(s) return;
536#endif /* S_SPLINT_S */
537#endif /* SL_RETURN macro */
538
539#if defined(SL_DEBUG)
540void sl_stack_push(char * c, char * file, int line);
541void sl_stack_pop(char * c, char * file, int line);
542void sl_stack_print();
543#endif
544void sl_trace_in (char * str, char * file, int line);
545void sl_trace_out (char * str, char * file, int line);
546int sl_trace_file (const char * str);
547int sl_trace_use (const char * str);
548
549
550
551
552/*
553 * The internal return macro. Sets sl_errno to the return value.
554 */
555
556#if defined(SL_DEBUG)
557#define SL_IRETURN(x, s) \
558do { \
559 if((long)(x) < 0) { \
560 TPT((0, FIL__, __LINE__, SDG_ERROR, (long)(x))) \
561 sl_errno=(x); \
562 } \
563 sl_stack_pop(s, FIL__, __LINE__); \
564 if (1) return(x); \
565} while(0)
566#else
567#define SL_IRETURN(x, s) \
568do { \
569 if ((long)(x) < 0) sl_errno=(x); \
570 if (slib_do_trace) \
571 sl_trace_out(s, FIL__, __LINE__); \
572 if (1) return(x); \
573} while(0)
574
575#endif /* SL_IRETURN macro */
576
577
578
579/* slib.h */
580#endif
581
582
583
584
Note: See TracBrowser for help on using the repository browser.