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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
|
/*
** ZABBIX
** Copyright (C) 2000-2005 SIA Zabbix
**
** 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.
**/
#ifndef ZABBIX_COMMON_H
#define ZABBIX_COMMON_H
#include "sysinc.h"
#define ZABBIX_REVDATE "14 November 2006"
#define ZABBIX_VERSION "1.1.4"
#if defined(WIN32)
# pragma warning (disable: 4100)
# define zbx_uint64_t __int64
# define ZBX_FS_UI64 "%llu"
//#undef _DEBUG
# ifdef _DEBUG
# define LOG_DEBUG_INFO(type, msg) \
WriteLog(MSG_DEBUG_INFO,EVENTLOG_ERROR_TYPE, "d"type , GetCurrentThreadId(), msg)
//# define ENABLE_CHECK_MEMOTY
//# define ENABLE_FUNC_CALL
# else
# define LOG_DEBUG_INFO(a, b) ((void)0)
# endif
# if defined(ENABLE_FUNC_CALL)
# define LOG_FUNC_CALL(msg) \
WriteLog(MSG_DEBUG_INFO,EVENTLOG_ERROR_TYPE, "ds" , GetCurrentThreadId(), msg)
# else
# define LOG_FUNC_CALL(a) ((void)0)
# endif
# if defined(ENABLE_CHECK_MEMOTY)
# include "crtdbg.h"
# define REINIT_CHECK_MEMORY(a) \
_CrtMemCheckpoint(& ## a ## oldMemState)
# define INIT_CHECK_MEMORY(a) \
char a ## DumpMessage[0xFFFF]; \
_CrtMemState a ## oldMemState, a ## newMemState, a ## diffMemState; \
REINIT_CHECK_MEMORY(a)
# define CHECK_MEMORY(a, fncname, msg) \
_CrtMemCheckpoint(& ## a ## newMemState); \
if(_CrtMemDifference(& ## a ## diffMemState, & ## a ## oldMemState, & ## a ## newMemState)) \
{ \
sprintf(a ## DumpMessage, \
"%s\n" \
"free: %10li bytes in %10li blocks\n" \
"normal:%10li bytes in %10li blocks\n" \
"CRT: %10li bytes in %10li blocks\n" \
"ignore:%10li bytes in %10li blocks\n" \
"client:%10li bytes in %10li blocks\n" \
"max: %10li bytes in %10li blocks", \
\
fncname ": (" #a ") Memory changed! (" msg ")\n", \
\
(long) a ## diffMemState.lSizes[_FREE_BLOCK], \
(long) a ## diffMemState.lCounts[_FREE_BLOCK], \
\
(long) a ## diffMemState.lSizes[_NORMAL_BLOCK], \
(long) a ## diffMemState.lCounts[_NORMAL_BLOCK], \
\
(long) a ## diffMemState.lSizes[_CRT_BLOCK], \
(long) a ## diffMemState.lCounts[_CRT_BLOCK], \
\
(long) a ## diffMemState.lSizes[_IGNORE_BLOCK], \
(long) a ## diffMemState.lCounts[_IGNORE_BLOCK], \
\
(long) a ## diffMemState.lSizes[_CLIENT_BLOCK], \
(long) a ## diffMemState.lCounts[_CLIENT_BLOCK], \
\
(long) a ## diffMemState.lSizes[_MAX_BLOCKS], \
(long) a ## diffMemState.lCounts[_MAX_BLOCKS]); \
LOG_DEBUG_INFO("s", a ## DumpMessage); \
}
# else
# define INIT_CHECK_MEMORY(a) ((void)0)
# define CHECK_MEMORY(a, fncname, msg) ((void)0)
# endif
#else
# define zbx_uint64_t uint64_t
# if __WORDSIZE == 64
# define ZBX_FS_UI64 "%lu"
# else
# define ZBX_FS_UI64 "%llu"
# endif
#endif
#ifndef HAVE_GETOPT_LONG
struct option {
const char *name;
int has_arg;
int *flag;
int val;
};
# define getopt_long(argc, argv, optstring, longopts, longindex) getopt(argc, argv, optstring)
#endif
#define ZBX_UNUSED(a) ((void)0)(a)
#define ZBX_FS_DBL "%f"
#define MAX_LOG_FILE_LEN (1024*1024)
#define SUCCEED 0
#define FAIL (-1)
#define NOTSUPPORTED (-2)
#define NETWORK_ERROR (-3)
#define TIMEOUT_ERROR (-4)
#define AGENT_ERROR (-5)
#define MAXFD 64
/* show debug info to stderr */
#define FDI(f, m) fprintf(stderr, "DEBUG INFO: " f "\n" , m)
#define SDI(m) FDI("%s", m)
#define IDI(i) FDI("%i", i)
/*
#define ZBX_POLLER
*/
#ifdef ZBX_POLLER
#define MAX_STRING_LEN 800
#else
#define MAX_STRING_LEN 2048
#endif
#define MAX_BUF_LEN 65000
/* Item types */
#define ITEM_TYPE_ZABBIX 0
#define ITEM_TYPE_SNMPv1 1
#define ITEM_TYPE_TRAPPER 2
#define ITEM_TYPE_SIMPLE 3
#define ITEM_TYPE_SNMPv2c 4
#define ITEM_TYPE_INTERNAL 5
#define ITEM_TYPE_SNMPv3 6
#define ITEM_TYPE_ZABBIX_ACTIVE 7
#define ITEM_TYPE_AGGREGATE 8
/* Item value types */
#define ITEM_VALUE_TYPE_FLOAT 0
#define ITEM_VALUE_TYPE_STR 1
#define ITEM_VALUE_TYPE_LOG 2
#define ITEM_VALUE_TYPE_UINT64 3
#define ITEM_VALUE_TYPE_TEXT 4
/* Item snmpv3 security levels */
#define ITEM_SNMPV3_SECURITYLEVEL_NOAUTHNOPRIV 0
#define ITEM_SNMPV3_SECURITYLEVEL_AUTHNOPRIV 1
#define ITEM_SNMPV3_SECURITYLEVEL_AUTHPRIV 2
/* Item multiplier types */
#define ITEM_MULTIPLIER_DO_NOT_USE 0
#define ITEM_MULTIPLIER_USE 1
/* Item delta types */
#define ITEM_STORE_AS_IS 0
#define ITEM_STORE_SPEED_PER_SECOND 1
#define ITEM_STORE_SIMPLE_CHANGE 2
/* Recipient types for actions */
#define RECIPIENT_TYPE_USER 0
#define RECIPIENT_TYPE_GROUP 1
/* Condition types */
#define CONDITION_TYPE_HOST_GROUP 0
#define CONDITION_TYPE_HOST 1
#define CONDITION_TYPE_TRIGGER 2
#define CONDITION_TYPE_TRIGGER_NAME 3
#define CONDITION_TYPE_TRIGGER_SEVERITY 4
#define CONDITION_TYPE_TRIGGER_VALUE 5
#define CONDITION_TYPE_TIME_PERIOD 6
/* Condition operators */
#define CONDITION_OPERATOR_EQUAL 0
#define CONDITION_OPERATOR_NOT_EQUAL 1
#define CONDITION_OPERATOR_LIKE 2
#define CONDITION_OPERATOR_NOT_LIKE 3
#define CONDITION_OPERATOR_IN 4
#define CONDITION_OPERATOR_MORE_EQUAL 5
#define CONDITION_OPERATOR_LESS_EQUAL 6
/* Special item key used for storing server status */
#define SERVER_STATUS_KEY "status"
/* Special item key used for ICMP pings */
#define SERVER_ICMPPING_KEY "icmpping"
/* Special item key used for ICMP ping latency */
#define SERVER_ICMPPINGSEC_KEY "icmppingsec"
/* Special item key used for internal ZABBIX log */
#define SERVER_ZABBIXLOG_KEY "zabbix[log]"
/* Alert types */
#define ALERT_TYPE_EMAIL 0
#define ALERT_TYPE_EXEC 1
#define ALERT_TYPE_SMS 2
/* Alert statuses */
#define ALERT_STATUS_NOT_SENT 0
#define ALERT_STATUS_SENT 1
/* Item statuses */
#define ITEM_STATUS_ACTIVE 0
#define ITEM_STATUS_DISABLED 1
/*#define ITEM_STATUS_TRAPPED 2*/
#define ITEM_STATUS_NOTSUPPORTED 3
#define ITEM_STATUS_DELETED 4
#define ITEM_STATUS_NOTAVAILABLE 5
/* Host statuses */
#define HOST_STATUS_MONITORED 0
#define HOST_STATUS_NOT_MONITORED 1
/*#define HOST_STATUS_UNREACHABLE 2*/
#define HOST_STATUS_TEMPLATE 3
#define HOST_STATUS_DELETED 4
/* Host availability */
#define HOST_AVAILABLE_UNKNOWN 0
#define HOST_AVAILABLE_TRUE 1
#define HOST_AVAILABLE_FALSE 2
/* Use host IP or host name */
#define HOST_USE_HOSTNAME 0
#define HOST_USE_IP 1
/* Trigger statuses */
/*#define TRIGGER_STATUS_FALSE 0
#define TRIGGER_STATUS_TRUE 1
#define TRIGGER_STATUS_DISABLED 2
#define TRIGGER_STATUS_UNKNOWN 3
#define TRIGGER_STATUS_NOTSUPPORTED 4*/
/* Trigger statuses */
#define TRIGGER_STATUS_ENABLED 0
#define TRIGGER_STATUS_DISABLED 1
/* Trigger values */
#define TRIGGER_VALUE_FALSE 0
#define TRIGGER_VALUE_TRUE 1
#define TRIGGER_VALUE_UNKNOWN 2
/* Media statuses */
#define MEDIA_STATUS_ACTIVE 0
#define MEDIA_STATUS_DISABLED 1
/* Action statuses */
#define ACTION_STATUS_ACTIVE 0
#define ACTION_STATUS_DISABLED 1
/* Action type */
#define ACTION_TYPE_MESSAGE 0
#define ACTION_TYPE_COMMAND 1
/* Algorithms for service status calculation */
#define SERVICE_ALGORITHM_NONE 0
#define SERVICE_ALGORITHM_MAX 1
#define SERVICE_ALGORITHM_MIN 2
#define AGENTD_FORKS 5
#define TRAPPERD_FORKS 5
#define POLLER_FORKS 11
#define POLLER_DELAY 5
#define POLLER_TIMEOUT 5
/* Do not perform more than this number of checks during unavailability period */
/*#define SLEEP_ON_UNREACHABLE 60*/
/*#define CHECKS_PER_UNAVAILABLE_PERIOD 4*/
#define AGENT_TIMEOUT 3
#define SENDER_TIMEOUT 5
#define TRAPPER_TIMEOUT 5
#define SNMPTRAPPER_TIMEOUT 5
#ifndef MAX
# define MAX(a, b) ((a)>(b) ? (a) : (b))
#endif
#ifndef MIN
# define MIN(a, b) ((a)<(b) ? (a) : (b))
#endif
/* Secure string copy */
#define strscpy(x,y) { strncpy(x,y,sizeof(x)); x[sizeof(x)-1]=0; }
/* list structure as item of agent return vaile */
#define ZBX_LIST_ITEM struct zbx_list_item_s
ZBX_LIST_ITEM {
char text[MAX_STRING_LEN];
};
#define ZBX_LIST struct zbx_list_s
ZBX_LIST {
int cnt;
ZBX_LIST_ITEM *item;
};
/* agent return value */
#define AGENT_RESULT struct zbx_result_s
AGENT_RESULT {
int type;
zbx_uint64_t ui64;
double dbl;
char *str;
char *text;
char *msg;
ZBX_LIST list;
};
/* agent result types */
#define AR_UINT64 1
#define AR_DOUBLE 2
#define AR_STRING 4
#define AR_MESSAGE 8
#define AR_LIST 16
#define AR_TEXT 32
#define SET_DBL_RESULT(res, val) \
{ \
(res)->type |= AR_DOUBLE; \
(res)->dbl = (double)(val); \
}
#define SET_UI64_RESULT(res, val) \
{ \
(res)->type |= AR_UINT64; \
(res)->ui64 = (zbx_uint64_t)(val); \
}
#define SET_STR_RESULT(res, val) \
{ \
(res)->type |= AR_STRING; \
(res)->str = (char*)(val); \
}
#define SET_TEXT_RESULT(res, val) \
{ \
(res)->type |= AR_TEXT; \
(res)->text = (char*)(val); \
}
#define SET_MSG_RESULT(res, val) \
{ \
(res)->type |= AR_MESSAGE; \
(res)->msg = (char*)(val); \
}
#define UNSET_DBL_RESULT(res) \
{ \
(res)->type &= ~AR_DOUBLE; \
}
#define UNSET_UI64_RESULT(res) \
{ \
(res)->type &= ~AR_UINT64; \
}
#define UNSET_STR_RESULT(res) \
{ \
(res)->type &= ~AR_STRING; \
}
#define UNSET_TEXT_RESULT(res) \
{ \
(res)->type &= ~AR_TEXT; \
}
#define UNSET_MSG_RESULT(res) \
{ \
(res)->type &= ~AR_MESSAGE; \
}
extern char *progname;
extern char title_message[];
extern char usage_message[];
extern char *help_message[];
void help();
void usage();
void version();
#define ZBX_TASK_START 0
#define ZBX_TASK_SHOW_HELP 1
#define ZBX_TASK_SHOW_VERSION 2
#define ZBX_TASK_PRINT_SUPPORTED 3
#define ZBX_TASK_TEST_METRIC 4
#define ZBX_TASK_SHOW_USAGE 5
/* MAX Length of base64 data */
#define ZBX_MAX_B64_LEN 16*1024
void init_result(AGENT_RESULT *result);
int copy_result(AGENT_RESULT *src, AGENT_RESULT *dist);
void free_result(AGENT_RESULT *result);
char *string_replace(char *str, const char *sub_str1, const char *sub_str2);
void del_zeroes(char *s);
int find_char(char *str,char c);
int is_double_prefix(char *str);
int is_double(char *c);
int is_uint(char *c);
void lrtrim_spaces(char *c);
void ltrim_spaces(char *c);
void rtrim_spaces(char *c);
void delete_reol(char *c);
int get_param(const char *param, int num, char *buf, int maxlen);
int num_param(const char *param);
int calculate_item_nextcheck(int itemid, int item_type, int delay, int now);
int set_result_type(AGENT_RESULT *result, int value_type, char *c);
size_t zbx_strlcpy(char *dst, const char *src, size_t siz);
size_t zbx_strlcat(char *dst, const char *src, size_t siz);
int replace_param(const char *cmd, const char *param, char *out, int outlen);
void signal_handler( int sig );
int xml_get_data(char *xml,char *tag, char *data, int maxlen);
int comms_create_request(char *host, char *key, char *data, char *lastlogsize, char *request,int maxlen);
int comms_parse_response(char *xml,char *host,char *key, char *data, char *lastlogsize, char *timestamp,
char *source, char *severity, int maxlen);
int parse_command(const char *command, char *cmd, int cmd_max_len, char *param, int param_max_len);
/* Base64 functions */
void str_base64_encode(char *p_str, char *p_b64str, int in_size);
void str_base64_decode(char *p_b64str, char *p_str, int *p_out_size);
/* Regular expressions */
char *zbx_regexp_match(const char *string, const char *pattern, int *len);
/* Misc functions */
int cmp_double(double a,double b);
int SYSTEM_LOCALTIME(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result);
#endif
|