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 |
|
---|
21 |
|
---|
22 | #ifndef SH_UNIX_H
|
---|
23 | #define SH_UNIX_H
|
---|
24 |
|
---|
25 | /* For PATH_MAX */
|
---|
26 | #include <limits.h>
|
---|
27 | #if !defined(PATH_MAX)
|
---|
28 | #define PATH_MAX 1024
|
---|
29 | #endif
|
---|
30 |
|
---|
31 | #include <unistd.h>
|
---|
32 | #include "samhain.h"
|
---|
33 | #include "sh_error.h"
|
---|
34 |
|
---|
35 |
|
---|
36 | typedef enum {
|
---|
37 | SH_ISLOG,
|
---|
38 | SH_ISFILE,
|
---|
39 | SH_ISDIR,
|
---|
40 | SH_ISDATA
|
---|
41 | } ShOpenType;
|
---|
42 |
|
---|
43 | typedef enum {
|
---|
44 | SH_DATA_RAW,
|
---|
45 | SH_DATA_LINE
|
---|
46 | } ShDataType;
|
---|
47 |
|
---|
48 | typedef enum {
|
---|
49 | SH_FILE_REGULAR,
|
---|
50 | SH_FILE_SYMLINK,
|
---|
51 | SH_FILE_DIRECTORY,
|
---|
52 | SH_FILE_CDEV,
|
---|
53 | SH_FILE_BDEV,
|
---|
54 | SH_FILE_FIFO,
|
---|
55 | SH_FILE_SOCKET,
|
---|
56 | SH_FILE_DOOR,
|
---|
57 | SH_FILE_PORT,
|
---|
58 | SH_FILE_UNKNOWN
|
---|
59 | } ShFileType;
|
---|
60 |
|
---|
61 | /* -- Attributes to check. --
|
---|
62 | */
|
---|
63 |
|
---|
64 | /* checksum */
|
---|
65 | #define MODI_CHK (1 << 0)
|
---|
66 | /* link */
|
---|
67 | #define MODI_LNK (1 << 1)
|
---|
68 | /* inode */
|
---|
69 | #define MODI_INO (1 << 2)
|
---|
70 | /* user */
|
---|
71 | #define MODI_USR (1 << 3)
|
---|
72 | /* group */
|
---|
73 | #define MODI_GRP (1 << 4)
|
---|
74 | /* mtime */
|
---|
75 | #define MODI_MTM (1 << 5)
|
---|
76 | /* ctime */
|
---|
77 | #define MODI_CTM (1 << 6)
|
---|
78 | /* atime */
|
---|
79 | #define MODI_ATM (1 << 7)
|
---|
80 | /* size */
|
---|
81 | #define MODI_SIZ (1 << 8)
|
---|
82 | /* file mode */
|
---|
83 | #define MODI_MOD (1 << 9)
|
---|
84 | /* hardlinks */
|
---|
85 | #define MODI_HLN (1 << 10)
|
---|
86 | /* device type */
|
---|
87 | #define MODI_RDEV (1 << 11)
|
---|
88 | /* size may grow */
|
---|
89 | #define MODI_SGROW (1 << 12)
|
---|
90 | /* use prelink */
|
---|
91 | #define MODI_PREL (1 << 13)
|
---|
92 | /* get content */
|
---|
93 | #define MODI_TXT ((1 << 14)|MODI_CHK)
|
---|
94 |
|
---|
95 | #define MODI_TXT_ENABLED(a) (((a)&(1 << 14))!=0)
|
---|
96 |
|
---|
97 | #define SH_TXT_MAX 9200
|
---|
98 |
|
---|
99 | #define MASK_ALLIGNORE_ 0
|
---|
100 | extern unsigned long mask_ALLIGNORE;
|
---|
101 | #define MASK_ATTRIBUTES_ (MODI_MOD|MODI_USR|MODI_GRP|MODI_RDEV)
|
---|
102 | extern unsigned long mask_ATTRIBUTES;
|
---|
103 | #define MASK_LOGFILES_ (MASK_ATTRIBUTES_|MODI_HLN|MODI_LNK|MODI_INO)
|
---|
104 | extern unsigned long mask_LOGFILES;
|
---|
105 | #define MASK_LOGGROW_ (MASK_LOGFILES_|MODI_SIZ|MODI_SGROW|MODI_CHK)
|
---|
106 | extern unsigned long mask_LOGGROW;
|
---|
107 | #define MASK_READONLY_ (MASK_LOGFILES_|MODI_CHK|MODI_SIZ|MODI_MTM|MODI_CTM)
|
---|
108 | extern unsigned long mask_READONLY;
|
---|
109 | #define MASK_NOIGNORE_ (MASK_LOGFILES_|MODI_CHK|MODI_SIZ|MODI_ATM|MODI_MTM)
|
---|
110 | extern unsigned long mask_NOIGNORE;
|
---|
111 | #define MASK_USER_ (MASK_READONLY_|MODI_ATM)
|
---|
112 | extern unsigned long mask_USER0;
|
---|
113 | extern unsigned long mask_USER1;
|
---|
114 | extern unsigned long mask_USER2;
|
---|
115 | extern unsigned long mask_USER3;
|
---|
116 | extern unsigned long mask_USER4;
|
---|
117 | /* like READONLY, but without MTM,CTM,SIZ,INO, abd with PREL)
|
---|
118 | */
|
---|
119 | #define MASK_PRELINK_ (MASK_ATTRIBUTES_|MODI_HLN|MODI_LNK|MODI_CHK|MODI_PREL)
|
---|
120 | extern unsigned long mask_PRELINK;
|
---|
121 |
|
---|
122 | typedef struct file_struct {
|
---|
123 | unsigned long check_mask;
|
---|
124 | int file_reported;
|
---|
125 | char fullpath[PATH_MAX];
|
---|
126 | ShFileType type;
|
---|
127 | dev_t dev;
|
---|
128 | ino_t ino;
|
---|
129 | mode_t mode;
|
---|
130 | nlink_t hardlinks;
|
---|
131 | #if defined(__linux__) || defined(HAVE_STAT_FLAGS)
|
---|
132 | unsigned long attributes;
|
---|
133 | char c_attributes[ATTRBUF_SIZE];
|
---|
134 | #endif
|
---|
135 | char c_mode[CMODE_SIZE];
|
---|
136 | uid_t owner;
|
---|
137 | char c_owner[USER_MAX+2];
|
---|
138 | gid_t group;
|
---|
139 | char c_group[GROUP_MAX+2];
|
---|
140 | dev_t rdev;
|
---|
141 | off_t size;
|
---|
142 | unsigned long blksize;
|
---|
143 | unsigned long blocks;
|
---|
144 | time_t atime;
|
---|
145 | time_t mtime;
|
---|
146 | time_t ctime;
|
---|
147 |
|
---|
148 | char * link_path;
|
---|
149 | mode_t linkmode;
|
---|
150 | char link_c_mode[11];
|
---|
151 | int linkisok;
|
---|
152 | char * attr_string;
|
---|
153 | } file_type;
|
---|
154 |
|
---|
155 | extern int sh_unix_check_selinux;
|
---|
156 | extern int sh_unix_check_acl;
|
---|
157 |
|
---|
158 | /* destroy userid cache
|
---|
159 | */
|
---|
160 | void sh_userid_destroy ();
|
---|
161 |
|
---|
162 | /* --- run a command, securely ---
|
---|
163 | */
|
---|
164 | int sh_unix_run_command (const char * str);
|
---|
165 |
|
---|
166 | /* mlock utilities
|
---|
167 | */
|
---|
168 | int sh_unix_mlock(const char * file, int line, void * addr, size_t len);
|
---|
169 | int sh_unix_munlock(void * addr, size_t len);
|
---|
170 | int sh_unix_count_mlock(void);
|
---|
171 | /* public for unit tests */
|
---|
172 | int sh_unix_pagesize(void);
|
---|
173 | unsigned long sh_unix_lookup_page(void * in_addr, size_t len, int * num_pages);
|
---|
174 |
|
---|
175 | /* chroot directory
|
---|
176 | */
|
---|
177 | int sh_unix_set_chroot(const char * str);
|
---|
178 |
|
---|
179 | /* whether to use localtime for file timesatams in logs
|
---|
180 | */
|
---|
181 | int sh_unix_uselocaltime (const char * c);
|
---|
182 |
|
---|
183 | /* whether to perform selinux/acl checks
|
---|
184 | */
|
---|
185 | #ifdef USE_XATTR
|
---|
186 | int sh_unix_setcheckselinux (const char * c);
|
---|
187 | #endif
|
---|
188 | #ifdef USE_ACL
|
---|
189 | int sh_unix_setcheckacl (const char * c);
|
---|
190 | #endif
|
---|
191 |
|
---|
192 | /* set I/O limit
|
---|
193 | */
|
---|
194 | int sh_unix_set_io_limit (const char * c);
|
---|
195 | void sh_unix_io_pause (void);
|
---|
196 |
|
---|
197 | /* get file type
|
---|
198 | */
|
---|
199 | int sh_unix_get_ftype(char * fullpath);
|
---|
200 |
|
---|
201 | /* reset masks for policies
|
---|
202 | */
|
---|
203 | int sh_unix_maskreset(void);
|
---|
204 |
|
---|
205 | /* return true if database is remote
|
---|
206 | */
|
---|
207 | int file_is_remote (void);
|
---|
208 |
|
---|
209 | /* return the path to the configuration/database file
|
---|
210 | */
|
---|
211 | char * file_path(char what, char flag);
|
---|
212 |
|
---|
213 | /* return current time as unsigned long
|
---|
214 | */
|
---|
215 | unsigned long sh_unix_longtime (void);
|
---|
216 |
|
---|
217 | /* close all files >= fd, except possibly one
|
---|
218 | */
|
---|
219 | void sh_unix_closeall (int fd, int except, int inchild);
|
---|
220 |
|
---|
221 | /* Check whether directory for pid file exists
|
---|
222 | */
|
---|
223 | int sh_unix_check_piddir (char * pidpath);
|
---|
224 |
|
---|
225 | /* write lock for filename
|
---|
226 | */
|
---|
227 | int sh_unix_write_lock_file(char * filename);
|
---|
228 |
|
---|
229 | /* rm lock(s) for log file(s)
|
---|
230 | */
|
---|
231 | int sh_unix_rm_lock_file(char * filename);
|
---|
232 |
|
---|
233 | /* write the PID file
|
---|
234 | */
|
---|
235 | int sh_unix_write_pid_file(void);
|
---|
236 |
|
---|
237 | /* rm the PID file
|
---|
238 | */
|
---|
239 | int sh_unix_rm_pid_file(void);
|
---|
240 |
|
---|
241 |
|
---|
242 | /* checksum of own binary
|
---|
243 | */
|
---|
244 | int sh_unix_self_hash (const char * c);
|
---|
245 |
|
---|
246 | /* return BAD on failure
|
---|
247 | */
|
---|
248 | int sh_unix_self_check (void);
|
---|
249 |
|
---|
250 | /* add a trusted user to the list
|
---|
251 | */
|
---|
252 | int tf_add_trusted_user(const char *);
|
---|
253 |
|
---|
254 | /* check a file
|
---|
255 | */
|
---|
256 | int tf_trust_check (const char * file, int mode);
|
---|
257 |
|
---|
258 | /* initialize group vector
|
---|
259 | */
|
---|
260 | #ifdef HOST_IS_OSF
|
---|
261 | int sh_unix_initgroups ( char * in_user, gid_t in_gid);
|
---|
262 | #else
|
---|
263 | int sh_unix_initgroups (const char * in_user, gid_t in_gid);
|
---|
264 | #endif
|
---|
265 | int sh_unix_initgroups2 (uid_t in_pid, gid_t in_gid);
|
---|
266 |
|
---|
267 | /* set the timeserver address
|
---|
268 | */
|
---|
269 | int sh_unix_settimeserver (const char * address);
|
---|
270 | void reset_count_dev_time(void);
|
---|
271 |
|
---|
272 | /* lock the key
|
---|
273 | */
|
---|
274 | void sh_unix_memlock(void);
|
---|
275 |
|
---|
276 | /* deamon mode
|
---|
277 | */
|
---|
278 | int sh_unix_setdeamon (const char * dummy);
|
---|
279 | int sh_unix_setnodeamon(const char * dummy);
|
---|
280 |
|
---|
281 | /* Test whether file exists
|
---|
282 | */
|
---|
283 | int sh_unix_file_exists(char * path);
|
---|
284 |
|
---|
285 | /* test whether file exists with proper attributes
|
---|
286 | */
|
---|
287 | int sh_unix_device_readable(int fd);
|
---|
288 |
|
---|
289 | /* local host
|
---|
290 | */
|
---|
291 | void sh_unix_localhost(void);
|
---|
292 |
|
---|
293 | /* check whether /proc exists and is a proc filesystem
|
---|
294 | */
|
---|
295 | int sh_unix_test_proc(void);
|
---|
296 |
|
---|
297 | /* check whether a directory is secure
|
---|
298 | * (no symlink in path, not world-writeable)
|
---|
299 | */
|
---|
300 | /* int sh_unix_is_secure_dir (ShErrLevel level, char * tmp); */
|
---|
301 |
|
---|
302 | /* obtain file info
|
---|
303 | */
|
---|
304 | int sh_unix_getinfo (int level, char * filename, file_type * theFile,
|
---|
305 | char * fileHash, int flagrel);
|
---|
306 |
|
---|
307 | /* read file, return length read
|
---|
308 | */
|
---|
309 | int sh_unix_getline (SL_TICKET fd, char * line, int sizeofline);
|
---|
310 |
|
---|
311 | /* call with goDaemon == 1 to make daemon process
|
---|
312 | */
|
---|
313 | int sh_unix_init(int goDaemon);
|
---|
314 |
|
---|
315 | /* for local time use thetime = 0, returns pointer to buffer
|
---|
316 | */
|
---|
317 | char * sh_unix_time (time_t thetime, char * buffer, size_t len);
|
---|
318 |
|
---|
319 | /* convert to GMT time, returns pointer to buffer
|
---|
320 | */
|
---|
321 | char * sh_unix_gmttime (time_t thetime, char * buffer, size_t len);
|
---|
322 |
|
---|
323 | /* effective user info
|
---|
324 | */
|
---|
325 | int sh_unix_getUser (void);
|
---|
326 |
|
---|
327 | /* get home directory, , returns pointer to out
|
---|
328 | */
|
---|
329 | char * sh_unix_getUIDdir (int level, uid_t uid, char * out, size_t len);
|
---|
330 |
|
---|
331 |
|
---|
332 | #ifdef HAVE_GETTIMEOFDAY
|
---|
333 | unsigned long sh_unix_notime (void);
|
---|
334 | #endif
|
---|
335 |
|
---|
336 | /* check whether a directory
|
---|
337 | */
|
---|
338 | int sh_unix_isdir (char * dirName, int level);
|
---|
339 |
|
---|
340 | #ifdef SH_STEALTH
|
---|
341 | int sh_unix_getline_stealth (SL_TICKET fd, char * str, int len);
|
---|
342 | void sh_unix_xor_code (char * str, int len);
|
---|
343 | #endif
|
---|
344 |
|
---|
345 | #if defined(SCREW_IT_UP)
|
---|
346 | /* for raise()
|
---|
347 | */
|
---|
348 | #include <signal.h>
|
---|
349 | #include <errno.h>
|
---|
350 |
|
---|
351 | void sh_sigtrap_handler (int signum);
|
---|
352 | extern volatile int sh_not_traced;
|
---|
353 |
|
---|
354 | #ifdef HAVE_GETTIMEOFDAY
|
---|
355 | #if TIME_WITH_SYS_TIME
|
---|
356 | #include <sys/time.h>
|
---|
357 | #include <time.h>
|
---|
358 | #else
|
---|
359 | #if HAVE_SYS_TIME_H
|
---|
360 | #include <sys/time.h>
|
---|
361 | #else
|
---|
362 | #include <time.h>
|
---|
363 | #endif
|
---|
364 | #endif
|
---|
365 | extern struct timeval save_tv;
|
---|
366 | #endif
|
---|
367 |
|
---|
368 | static inline
|
---|
369 | int sh_sigtrap_prepare()
|
---|
370 | {
|
---|
371 | struct sigaction act_trap;
|
---|
372 | int val_retry;
|
---|
373 | act_trap.sa_handler = &sh_sigtrap_handler; /* signal action */
|
---|
374 | act_trap.sa_flags = 0; /* init sa_flags */
|
---|
375 | sigemptyset ( &act_trap.sa_mask ); /* set an empty mask */
|
---|
376 | do {
|
---|
377 | val_retry = sigaction(SIGTRAP, &act_trap, NULL);
|
---|
378 | } while (val_retry < 0 && errno == EINTR);
|
---|
379 | return 0;
|
---|
380 | }
|
---|
381 |
|
---|
382 | /*@unused@*/ static inline
|
---|
383 | int sh_derr(void)
|
---|
384 | {
|
---|
385 | sh_not_traced = 0;
|
---|
386 |
|
---|
387 | #ifdef HAVE_GETTIMEOFDAY
|
---|
388 | gettimeofday(&save_tv, NULL);
|
---|
389 | #endif
|
---|
390 |
|
---|
391 | #if defined(__linux__) && defined(__GNUC__) && defined(__i386__)
|
---|
392 | __asm__ __volatile__ (".byte 0xf1");
|
---|
393 | #else
|
---|
394 | raise(SIGTRAP);
|
---|
395 | #endif
|
---|
396 |
|
---|
397 | if (sh_not_traced == 0)
|
---|
398 | _exit(5);
|
---|
399 | sh_not_traced = 0;
|
---|
400 | return (0);
|
---|
401 | }
|
---|
402 |
|
---|
403 | #else
|
---|
404 |
|
---|
405 | /*@unused@*/ static inline
|
---|
406 | int sh_derr(void)
|
---|
407 | {
|
---|
408 | return 0;
|
---|
409 | }
|
---|
410 | /* #if defined(SCREW_IT_UP) */
|
---|
411 | #endif
|
---|
412 |
|
---|
413 | #endif
|
---|
414 |
|
---|
415 |
|
---|