3 /* Header file for Monitoring Plugins utils_base.c */
9 /* This file holds header information for thresholds - use this in preference to
10 individual plugin logic */
12 /* This has not been merged with utils.h because of problems with
13 timeout_interval when other utils_*.h files use utils.h */
15 /* Long term, add new functions to utils_base.h for common routines
16 and utils_*.h for specific to plugin routines. If routines are
17 placed in utils_*.h, then these can be tested with libtap */
22 typedef struct range_struct
{
27 int alert_on
; /* OUTSIDE (default) or INSIDE */
28 char *text
; /* original unparsed text input */
31 typedef struct thresholds_struct
{
36 #define NP_STATE_FORMAT_VERSION 1
38 typedef struct state_data_struct
{
41 int length
; /* Of binary data */
44 typedef struct state_key_struct
{
49 state_data
*state_data
;
52 typedef struct np_struct
{
59 range
*parse_range_string(char *);
60 int _set_thresholds(thresholds
**, char *, char *);
61 void set_thresholds(thresholds
**, char *, char *);
62 void print_thresholds(const char *, thresholds
*);
63 bool check_range(double, range
*);
64 int get_status(double, thresholds
*);
67 extern int timeout_state
;
68 extern unsigned int timeout_interval
;
70 /* All possible characters in a threshold range */
71 #define NP_THRESHOLDS_CHARS "-0123456789.:@~"
73 char *np_escaped_string(const char *);
75 void die(int, const char *, ...) __attribute__((noreturn
, format(printf
, 2, 3)));
77 /* Return codes for _set_thresholds */
78 #define NP_RANGE_UNPARSEABLE 1
79 #define NP_WARN_WITHIN_CRIT 2
81 /* a simple check to see if we're running as root.
82 * returns zero on failure, nonzero on success */
83 int np_check_if_root(void);
85 /* mp_suid() returns true if the real and effective uids differs, such as when
86 * running a suid plugin */
87 #define mp_suid() (getuid() != geteuid())
90 * Extract the value from key/value pairs, or return NULL. The value returned
92 * This function can be used to parse NTP control packet data and performance
95 char *np_extract_value(const char *, const char *, char);
98 * Same as np_extract_value with separator suitable for NTP control packet
101 #define np_extract_ntpvar(l, n) np_extract_value(l, n, ',')
104 * Read a string representing a state (ok, warning... or numeric: 0, 1) and
105 * return the corresponding NP_STATE or ERROR)
107 int mp_translate_state(char *);
109 void np_enable_state(char *, int);
110 state_data
*np_state_read();
111 void np_state_write_string(time_t, char *);
113 void np_init(char *, int argc
, char **argv
);
114 void np_set_args(int argc
, char **argv
);
116 const char *state_text(int);
118 #endif /* _UTILS_BASE_ */