source: trunk/include/sh_files.h@ 400

Last change on this file since 400 was 373, checked in by katerina, 13 years ago

Patch for ticket #265 (inotify). Handling of added subdirectories and file list rescan.

File size: 6.6 KB
Line 
1/* SAMHAIN file system integrity testing */
2/* Copyright (C) 1999, 2000 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#ifndef SH_FILES_H
21#define SH_FILES_H
22
23void sh_audit_mark (const char * file);
24void sh_audit_delete_all ();
25char * sh_audit_fetch (char * file, time_t time, char * result, size_t rsize);
26
27struct sh_dirent {
28 char * sh_d_name;
29 struct sh_dirent * next;
30};
31
32
33/* free a directory listing
34 */
35void kill_sh_dirlist (struct sh_dirent * dirlist);
36
37#ifdef NEED_ADD_DIRENT
38/* add an entry to a directory listing
39 */
40struct sh_dirent * addto_sh_dirlist (struct dirent * thisEntry,
41 struct sh_dirent * dirlist);
42#endif
43
44/* register exceptions to hardlink check
45 */
46int sh_files_hle_reg (const char * str);
47
48/* Check for new files/dirs matching configured glob patterns.
49 */
50void sh_files_check_globPatterns();
51
52/* Check for new files (only) matching configured glob patterns.
53 */
54void sh_files_check_globFilePatterns();
55
56/* check the setup
57 */
58int sh_files_test_setup (void);
59
60/* check if allignore
61 */
62int sh_files_is_allignore (char * str);
63
64/* activate hardlink check
65 */
66int sh_files_check_hardlinks (const char * opt);
67
68/* check rsrc fork (Mac OS X)
69 */
70int sh_files_use_rsrc(const char * str);
71
72/* set recursion depth
73 */
74int sh_files_setrec (void);
75
76/* report only once
77 */
78int sh_files_reportonce(const char * c);
79
80/* report full details
81 */
82int sh_files_fulldetail(const char * c);
83
84/* reset the 'checked' flag
85 */
86void sh_dirs_reset(void);
87
88/* reset the 'checked' flag
89 */
90void sh_files_reset(void);
91
92/* set maximum recursion level
93 */
94int sh_files_setrecursion (const char * flag_s);
95
96/* select a directory stack 2=Two, else One (standard)
97 */
98int set_dirList (int which);
99
100/* push a directory on the stack USER0
101 */
102int sh_files_pushdir_user0 (const char * dirName);
103
104/* push a directory on the stack USER1
105 */
106int sh_files_pushdir_user1 (const char * dirName);
107
108/* push a directory on the stack USER2
109 */
110int sh_files_pushdir_user2 (const char * dirName);
111
112/* push a directory on the stack USER3
113 */
114int sh_files_pushdir_user3 (const char * dirName);
115
116/* push a directory on the stack USER4
117 */
118int sh_files_pushdir_user4 (const char * dirName);
119
120/* push a directory on the stack PRELINK
121 */
122int sh_files_pushdir_prelink (const char * dirName);
123
124/* push a directory on the stack ATTR
125 */
126int sh_files_pushdir_attr (const char * dirName);
127
128/* push a directory on the stack READONLY
129 */
130int sh_files_pushdir_ro (const char * dirName);
131
132/* push a directory on the stack LOGFILE
133 */
134int sh_files_pushdir_log (const char * dirName);
135
136/* push a directory on the stack GROWING LOGFILE
137 */
138int sh_files_pushdir_glog (const char * dirName);
139
140/* push a directory on the stack IGNORE NONE
141 */
142int sh_files_pushdir_noig (const char * dirName);
143
144/* push a directory on the stack IGNORE ALL
145 */
146int sh_files_pushdir_allig (const char * dirName);
147
148
149/* push a file on the stack USER0
150 */
151int sh_files_pushfile_user0 (const char * dirName);
152
153/* push a file on the stack USER1
154 */
155int sh_files_pushfile_user1 (const char * dirName);
156
157/* push a file on the stack USER2
158 */
159int sh_files_pushfile_user2 (const char * dirName);
160
161/* push a file on the stack USER3
162 */
163int sh_files_pushfile_user3 (const char * dirName);
164
165/* push a file on the stack USER4
166 */
167int sh_files_pushfile_user4 (const char * dirName);
168
169/* push a file on the stack PRELINK
170 */
171int sh_files_pushfile_prelink (const char * dirName);
172
173/* push a file on the stack ATTR
174 */
175int sh_files_pushfile_attr (const char * dirName);
176
177/* push a file on the stack READONLY
178 */
179int sh_files_pushfile_ro (const char * dirName);
180
181/* push a file on the stack LOGFILE
182 */
183int sh_files_pushfile_log (const char * dirName);
184
185/* push a file on the stack GROWING LOGFILE
186 */
187int sh_files_pushfile_glog (const char * dirName);
188
189/* push a file on the stack IGNORE NONE
190 */
191int sh_files_pushfile_noig (const char * dirName);
192
193/* push a file on the stack IGNORE ALL
194 */
195int sh_files_pushfile_allig (const char * dirName);
196
197
198/* check directories on the stack
199 */
200unsigned long sh_dirs_chk (int which);
201
202/* check files on the stack
203 */
204unsigned long sh_files_chk (void);
205
206int sh_files_delglobstack (void);
207
208int sh_files_deldirstack (void);
209
210int sh_files_delfilestack (void);
211
212/* redefine policies
213 */
214int sh_files_redef_user0(const char * str);
215int sh_files_redef_user1(const char * str);
216int sh_files_redef_user2(const char * str);
217int sh_files_redef_user3(const char * str);
218int sh_files_redef_user4(const char * str);
219int sh_files_redef_prelink(const char * str);
220int sh_files_redef_readonly(const char * str);
221int sh_files_redef_loggrow(const char * str);
222int sh_files_redef_logfiles(const char * str);
223int sh_files_redef_attributes(const char * str);
224int sh_files_redef_noignore(const char * str);
225int sh_files_redef_allignore(const char * str);
226
227ShFileType sh_files_filecheck (int class, unsigned long check_mask,
228 const char * dirName,
229 const char * infileName,
230 int * reported,
231 int rsrcflag);
232
233int sh_files_checkdir (int iclass, unsigned long check_mask,
234 int idepth, char * iname,
235 char * relativeName);
236
237int sh_files_search_file(char * name, int * class,
238 unsigned long *check_mask, int * reported);
239int sh_files_search_dir(char * name, int * class,
240 unsigned long *check_mask, int *reported,
241 int * rdepth);
242void sh_files_set_file_reported(const char * name);
243void sh_files_clear_file_reported(const char * name);
244
245#endif
246
247
248
249
Note: See TracBrowser for help on using the repository browser.