source: trunk/include/sh_files.h@ 255

Last change on this file since 255 was 254, checked in by katerina, 15 years ago

Fix for ticket #171 (..namedfork/rsrc deprecated on Mac OS X).

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