source: branches/samhain-2_2-branch/include/sh_error.h@ 66

Last change on this file since 66 was 27, checked in by rainer, 18 years ago

Support for server-to-server relay and more user policies

File size: 5.1 KB
Line 
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/* Public interface for error routines
22 */
23#ifndef SH_ERROR_H
24#define SH_ERROR_H
25
26#include "sh_error_min.h"
27
28
29enum {
30 SH_ERR_T_START = 0,
31
32 /* 1-13 = SH_LEVEL_XXX */
33
34 SH_ERR_T_RO = SH_LEVEL_READONLY,
35 SH_ERR_T_LOGS = SH_LEVEL_LOGFILES,
36 SH_ERR_T_GLOG = SH_LEVEL_LOGGROW,
37 SH_ERR_T_NOIG = SH_LEVEL_NOIGNORE,
38 SH_ERR_T_ALLIG = SH_LEVEL_ALLIGNORE,
39 SH_ERR_T_ATTR = SH_LEVEL_ATTRIBUTES,
40 SH_ERR_T_USER0 = SH_LEVEL_USER0,
41 SH_ERR_T_USER1 = SH_LEVEL_USER1,
42 SH_ERR_T_USER2 = SH_LEVEL_USER2,
43 SH_ERR_T_USER3 = SH_LEVEL_USER3,
44 SH_ERR_T_USER4 = SH_LEVEL_USER4,
45 SH_ERR_T_PRELINK = SH_LEVEL_PRELINK,
46
47 SH_ERR_T_DIR = 13,
48 SH_ERR_T_FILE = 14,
49 SH_ERR_T_NAME = 15,
50
51 SH_ERR_T_END = 16
52};
53
54
55typedef struct _errFlags {
56 int debug;
57 int HaveLog;
58
59 int loglevel;
60 int loglevel_temp;
61 int printlevel;
62 int maillevel;
63 int exportlevel;
64 int sysloglevel;
65 int externallevel;
66 int databaselevel;
67
68 int log_class;
69 int print_class;
70 int mail_class;
71 int export_class;
72 int syslog_class;
73 int external_class;
74 int database_class;
75
76 /* HAVE_LIBPRELUDE */
77 int preludelevel;
78 int prelude_class;
79
80} blurb_errFlags;
81
82extern int ShDFLevel[SH_ERR_T_END];
83
84/* set mask for message class
85 */
86int sh_error_log_mask (const char * c);
87int sh_error_print_mask (const char * c);
88int sh_error_mail_mask (const char * c);
89int sh_error_export_mask (const char * c);
90int sh_error_syslog_mask (const char * c);
91int sh_error_external_mask (const char * c);
92int sh_error_database_mask (const char * c);
93int sh_error_prelude_mask (const char * c);
94
95
96int sh_error_verify (const char * s);
97int sh_error_logverify_mod (const char * s); /* just list, don't verify */
98int sh_error_logverify (const char * s);
99
100void sh_error_dbg_switch(void);
101
102#ifdef SH_WITH_SERVER
103void sh_error_set_peer(const char * str);
104int set_flag_sep_log (const char * str);
105#endif
106
107/* init or re-init log facilities that need it
108 */
109void sh_error_fixup();
110
111/* convert a string to a numeric priority
112 */
113int sh_error_convert_level (const char * str_s);
114
115/* only to stderr (GOOD/BAD)
116 */
117void sh_error_only_stderr (int flag);
118
119/* set syslog facility
120 */
121int sh_log_set_facility (const char * c);
122
123/* define message header
124 */
125int sh_error_ehead (/*@null@*/const char * s);
126
127/* set level for error logging
128 */
129int sh_error_setlog(const char * str_s);
130
131/* set severity levels
132 */
133int sh_error_set_iv (int iv, const char * severity_s);
134
135/* set priorities
136 */
137int sh_error_set_level(const char * str_s, int *facility);
138
139/* set level for TCP export
140 */
141int sh_error_setexport(const char * str_s);
142
143/* set level for syslog
144 */
145int sh_error_set_syslog (const char * flag_s);
146
147/* set level for printing
148 */
149int sh_error_setprint(const char * flag_s);
150
151/* set severity for external
152 */
153int sh_error_set_external (const char * str_s);
154
155/* set severity for external
156 */
157int sh_error_set_database (const char * str_s);
158
159/* set severity for external
160 */
161int sh_error_set_prelude (const char * str_s);
162
163
164/* set level for mailing
165 */
166int sh_error_setseverity (const char * flag);
167
168/* set debug level
169 */
170int sh_error_setdebug (char * debug_s);
171
172/* error messages
173 */
174/*@owned@*/char * sh_error_message (int tellme);
175
176/* switch on/off log to file temporarily
177 */
178void sh_error_logoff(void);
179void sh_error_logrestore(void);
180
181/* (re)set the console device(s)
182 */
183int sh_log_set_console (const char * address);
184void reset_count_dev_console(void);
185
186#ifdef WITH_MESSAGE_QUEUE
187/* close the message queue
188 */
189void close_ipc (void);
190
191/* enable message queue
192 */
193int enable_msgq(const char * foo);
194#endif
195
196#endif
Note: See TracBrowser for help on using the repository browser.