/* ** Zabbix ** Copyright (C) 2001-2023 Zabbix SIA ** ** 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. **/ #ifndef ZABBIX_ZBXSYSINFO_H #define ZABBIX_ZBXSYSINFO_H #include "zbxcommon.h" #include "module.h" /* CHECK RESULT */ #define ZBX_ISSET_UI64(res) ((res)->type & AR_UINT64) #define ZBX_ISSET_DBL(res) ((res)->type & AR_DOUBLE) #define ZBX_ISSET_STR(res) ((res)->type & AR_STRING) #define ZBX_ISSET_TEXT(res) ((res)->type & AR_TEXT) #define ZBX_ISSET_LOG(res) ((res)->type & AR_LOG) #define ZBX_ISSET_MSG(res) ((res)->type & AR_MESSAGE) #define ZBX_ISSET_META(res) ((res)->type & AR_META) #define ZBX_ISSET_VALUE(res) ((res)->type & (AR_UINT64 | AR_DOUBLE | AR_STRING | AR_TEXT | AR_LOG)) /* UNSET RESULT */ #define ZBX_UNSET_UI64_RESULT(res) \ \ do \ { \ (res)->type &= ~AR_UINT64; \ (res)->ui64 = (zbx_uint64_t)0; \ } \ while (0) #define ZBX_UNSET_DBL_RESULT(res) \ \ do \ { \ (res)->type &= ~AR_DOUBLE; \ (res)->dbl = (double)0; \ } \ while (0) #define ZBX_UNSET_STR_RESULT(res) \ \ do \ { \ if ((res)->type & AR_STRING) \ { \ zbx_free((res)->str); \ (res)->type &= ~AR_STRING; \ } \ } \ while (0) #define ZBX_UNSET_TEXT_RESULT(res) \ \ do \ { \ if ((res)->type & AR_TEXT) \ { \ zbx_free((res)->text); \ (res)->type &= ~AR_TEXT; \ } \ } \ while (0) #define ZBX_UNSET_LOG_RESULT(res) \ \ do \ { \ if ((res)->type & AR_LOG) \ { \ zbx_log_free((res)->log); \ (res)->log = NULL; \ (res)->type &= ~AR_LOG; \ } \ } \ while (0) #define ZBX_UNSET_MSG_RESULT(res) \ \ do \ { \ if ((res)->type & AR_MESSAGE) \ { \ zbx_free((res)->msg); \ (res)->type &= ~AR_MESSAGE; \ } \ } \ while (0) /* AR_META is always excluded */ #define ZBX_UNSET_RESULT_EXCLUDING(res, exc_type) \ \ do \ { \ if (!(exc_type & AR_UINT64)) ZBX_UNSET_UI64_RESULT(res); \ if (!(exc_type & AR_DOUBLE)) ZBX_UNSET_DBL_RESULT(res); \ if (!(exc_type & AR_STRING)) ZBX_UNSET_STR_RESULT(res); \ if (!(exc_type & AR_TEXT)) ZBX_UNSET_TEXT_RESULT(res); \ if (!(exc_type & AR_LOG)) ZBX_UNSET_LOG_RESULT(res); \ if (!(exc_type & AR_MESSAGE)) ZBX_UNSET_MSG_RESULT(res); \ } \ while (0) /* RETRIEVE RESULT VALUE */ #define ZBX_GET_UI64_RESULT(res) ((zbx_uint64_t *)get_result_value_by_type(res, AR_UINT64)) #define ZBX_GET_DBL_RESULT(res) ((double *)get_result_value_by_type(res, AR_DOUBLE)) #define ZBX_GET_STR_RESULT(res) ((char **)get_result_value_by_type(res, AR_STRING)) #define ZBX_GET_TEXT_RESULT(res) ((char **)get_result_value_by_type(res, AR_TEXT)) #define ZBX_GET_LOG_RESULT(res) ((zbx_log_t *)get_result_value_by_type(res, AR_LOG)) #define ZBX_GET_MSG_RESULT(res) ((char **)get_result_value_by_type(res, AR_MESSAGE)) void *get_result_value_by_type(AGENT_RESULT *result, int require_type); extern int CONFIG_ENABLE_REMOTE_COMMANDS; extern int CONFIG_LOG_REMOTE_COMMANDS; extern int CONFIG_UNSAFE_USER_PARAMETERS; /* collector */ #define ZBX_MAX_COLLECTOR_HISTORY (15 * SEC_PER_MIN + 1) #define ZBX_AVG1 0 #define ZBX_AVG5 1 #define ZBX_AVG15 2 #define ZBX_AVG_COUNT 3 #if defined(_WINDOWS) # define ZBX_MAX_COLLECTOR_PERIOD (15 * SEC_PER_MIN) #endif #define ZBX_CPU_STATE_USER 0 #define ZBX_CPU_STATE_SYSTEM 1 #define ZBX_CPU_STATE_NICE 2 #define ZBX_CPU_STATE_IDLE 3 #define ZBX_CPU_STATE_INTERRUPT 4 #define ZBX_CPU_STATE_IOWAIT 5 #define ZBX_CPU_STATE_SOFTIRQ 6 #define ZBX_CPU_STATE_STEAL 7 #define ZBX_CPU_STATE_GCPU 8 #define ZBX_CPU_STATE_GNICE 9 #define ZBX_CPU_STATE_COUNT 10 #define ZBX_DSTAT_TYPE_SECT 0 #define ZBX_DSTAT_TYPE_OPER 1 #define ZBX_DSTAT_TYPE_BYTE 2 #define ZBX_DSTAT_TYPE_SPS 3 #define ZBX_DSTAT_TYPE_OPS 4 #define ZBX_DSTAT_TYPE_BPS 5 /* disk statistics */ #define ZBX_DSTAT_R_SECT 0 #define ZBX_DSTAT_R_OPER 1 #define ZBX_DSTAT_R_BYTE 2 #define ZBX_DSTAT_W_SECT 3 #define ZBX_DSTAT_W_OPER 4 #define ZBX_DSTAT_W_BYTE 5 #define ZBX_DSTAT_MAX 6 int zbx_get_diskstat(const char *devname, zbx_uint64_t *dstat); /* flags for process */ #define ZBX_PROCESS_LOCAL_COMMAND 0x1 #define ZBX_PROCESS_MODULE_COMMAND 0x2 #define ZBX_PROCESS_WITH_ALIAS 0x4 typedef enum { ZBX_KEY_ACCESS_ALLOW, ZBX_KEY_ACCESS_DENY } zbx_key_access_rule_type_t; void zbx_init_library_sysinfo(zbx_get_config_int_f get_config_timeout_f); void zbx_init_metrics(void); int zbx_add_metric(ZBX_METRIC *metric, char *error, size_t max_error_len); void zbx_free_metrics_ext(ZBX_METRIC **metrics); void zbx_free_metrics(void); void zbx_init_key_access_rules(void); void zbx_finalize_key_access_rules_configuration(void); int zbx_add_key_access_rule(const char *parameter, char *pattern, zbx_key_access_rule_type_t type); int zbx_check_key_access_rules(const char *metric); int zbx_check_request_access_rules(AGENT_REQUEST *request); void zbx_free_key_access_rules(void); int zbx_execute_agent_check(const char *in_command, unsigned flags, AGENT_RESULT *result); void zbx_set_user_parameter_dir(const char *path); int zbx_add_user_parameter(const char *itemkey, char *command, char *error, size_t max_error_len); void zbx_remove_user_parameters(void); void zbx_get_metrics_copy(ZBX_METRIC **metrics); void zbx_set_metrics(ZBX_METRIC *metrics); void zbx_test_parameters(void); void zbx_test_parameter(const char *key); void zbx_init_agent_result(AGENT_RESULT *result); void zbx_log_free(zbx_log_t *log); void zbx_free_agent_result(AGENT_RESULT *result); void zbx_init_agent_request(AGENT_REQUEST *request); void zbx_free_agent_request(AGENT_REQUEST *request); int zbx_parse_item_key(const char *itemkey, AGENT_REQUEST *request); void zbx_unquote_key_param(char *param); int zbx_quote_key_param(char **param, int forced); int zbx_set_agent_result_type(AGENT_RESULT *result, int value_type, char *c); void zbx_set_agent_result_meta(AGENT_RESULT *result, zbx_uint64_t lastlogsize, int mtime); int zbx_check_service_default_addr(AGENT_REQUEST *request, const char *default_addr, AGENT_RESULT *result, int perf); /* the fields used by proc queries */ #define ZBX_SYSINFO_PROC_NONE 0x0000 #define ZBX_SYSINFO_PROC_PID 0x0001 #define ZBX_SYSINFO_PROC_NAME 0x0002 #define ZBX_SYSINFO_PROC_CMDLINE 0x0004 #define ZBX_SYSINFO_PROC_USER 0x0008 #if defined(_WINDOWS) || defined(__MINGW32__) #define ZBX_MUTEX_ALL_ALLOW 0 #define ZBX_MUTEX_THREAD_DENIED 1 #define ZBX_MUTEX_LOGGING_DENIED 2 zbx_uint32_t zbx_get_thread_global_mutex_flag(void); #endif void zbx_add_alias(const char *name, const char *value); void zbx_alias_list_free(void); const char *zbx_alias_get(const char *orig); #endif /* ZABBIX_ZBXSYSINFO_H */