1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
/* SAMHAIN file system integrity testing */
/* Copyright (C) 1999 Rainer Wichmann */
/* */
/* This program is free software; you can redistribute it */
/* and/or modify */
/* it under the terms of the GNU General Public License as */
/* published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* (at your option) any later version. */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Public interface for error routines
*/
#ifndef SH_ERROR_H
#define SH_ERROR_H
#include "sh_error_min.h"
enum {
SH_ERR_T_START = 0,
/* 1-13 = SH_LEVEL_XXX */
SH_ERR_T_RO = SH_LEVEL_READONLY,
SH_ERR_T_LOGS = SH_LEVEL_LOGFILES,
SH_ERR_T_GLOG = SH_LEVEL_LOGGROW,
SH_ERR_T_NOIG = SH_LEVEL_NOIGNORE,
SH_ERR_T_ALLIG = SH_LEVEL_ALLIGNORE,
SH_ERR_T_ATTR = SH_LEVEL_ATTRIBUTES,
SH_ERR_T_USER0 = SH_LEVEL_USER0,
SH_ERR_T_USER1 = SH_LEVEL_USER1,
SH_ERR_T_USER2 = SH_LEVEL_USER2,
SH_ERR_T_USER3 = SH_LEVEL_USER3,
SH_ERR_T_USER4 = SH_LEVEL_USER4,
SH_ERR_T_PRELINK = SH_LEVEL_PRELINK,
SH_ERR_T_DIR = 13,
SH_ERR_T_FILE = 14,
SH_ERR_T_NAME = 15,
SH_ERR_T_END = 16
};
typedef struct _errFlags {
int debug;
int HaveLog;
int loglevel;
int loglevel_temp;
int printlevel;
int maillevel;
int exportlevel;
int sysloglevel;
int externallevel;
int databaselevel;
int log_class;
int print_class;
int mail_class;
int export_class;
int syslog_class;
int external_class;
int database_class;
/* HAVE_LIBPRELUDE */
int preludelevel;
int prelude_class;
} blurb_errFlags;
extern int ShDFLevel[SH_ERR_T_END];
/* set mask for message class
*/
int sh_error_log_mask (const char * c);
int sh_error_print_mask (const char * c);
int sh_error_mail_mask (const char * c);
int sh_error_export_mask (const char * c);
int sh_error_syslog_mask (const char * c);
int sh_error_external_mask (const char * c);
int sh_error_database_mask (const char * c);
int sh_error_prelude_mask (const char * c);
int sh_error_verify (const char * s);
int sh_error_logverify_mod (const char * s); /* just list, don't verify */
int sh_error_logverify (const char * s);
void sh_error_dbg_switch(void);
#ifdef SH_WITH_SERVER
void sh_error_set_peer(const char * str);
int set_flag_sep_log (const char * str);
#endif
/* init or re-init log facilities that need it
*/
void sh_error_fixup();
/* convert a string to a numeric priority
*/
int sh_error_convert_level (const char * str_s);
/* only to stderr (GOOD/BAD)
*/
void sh_error_only_stderr (int flag);
/* set syslog facility
*/
int sh_log_set_facility (const char * c);
/* define message header
*/
int sh_error_ehead (/*@null@*/const char * s);
/* set level for error logging
*/
int sh_error_setlog(const char * str_s);
/* set severity levels
*/
int sh_error_set_iv (int iv, const char * severity_s);
/* set priorities
*/
int sh_error_set_level(const char * str_s, int *facility);
/* set level for TCP export
*/
int sh_error_setexport(const char * str_s);
/* set level for syslog
*/
int sh_error_set_syslog (const char * flag_s);
/* set level for printing
*/
int sh_error_setprint(const char * flag_s);
/* set severity for external
*/
int sh_error_set_external (const char * str_s);
/* set severity for external
*/
int sh_error_set_database (const char * str_s);
/* set severity for external
*/
int sh_error_set_prelude (const char * str_s);
/* set level for mailing
*/
int sh_error_setseverity (const char * flag);
/* set debug level
*/
int sh_error_setdebug (char * debug_s);
/* error messages
*/
/*@owned@*/char * sh_error_message (int tellme);
/* switch on/off log to file temporarily
*/
void sh_error_logoff(void);
void sh_error_logrestore(void);
/* (re)set the console device(s)
*/
int sh_log_set_console (const char * address);
void reset_count_dev_console(void);
#ifdef WITH_MESSAGE_QUEUE
/* close the message queue
*/
void close_ipc (void);
/* enable message queue
*/
int enable_msgq(const char * foo);
#endif
#endif
|