| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /* header file for nagios plugins utils.c */
- /* this file should be included in all plugins */
- /* The purpose of this package is to provide safer alternantives to C
- functions that might otherwise be vulnerable to hacking. This
- currently includes a standard suite of validation routines to be sure
- that an string argument acually converts to its intended type and a
- suite of string handling routine that do their own memory management
- in order to resist overflow attacks. In addition, a few functions are
- provided to standardize version and error reporting accross the entire
- suite of plugins. */
- /* Standardize version information, termination */
- char *my_basename (char *);
- void support (void);
- char *clean_revstring (const char *revstring);
- void print_revision (const char *, const char *);
- void die (int result, const char *fmt, ...);
- void terminate (int result, char *msg, ...);
- extern RETSIGTYPE timeout_alarm_handler (int);
- /* Handle timeouts */
- time_t start_time, end_time;
- int timeout_interval = DEFAULT_SOCKET_TIMEOUT;
- /* Test input types */
- int is_integer (char *);
- int is_intpos (char *);
- int is_intneg (char *);
- int is_intnonneg (char *);
- int is_intpercent (char *);
- int is_numeric (char *);
- int is_positive (char *);
- int is_negative (char *);
- int is_nonnegative (char *);
- int is_percentage (char *);
- int is_option (char *);
- /* generalized timer that will do milliseconds if available */
- #ifndef HAVE_STRUCT_TIMEVAL
- struct timeval {
- long tv_sec; /* seconds */
- long tv_usec; /* microseconds */
- };
- #endif
- #ifndef HAVE_GETTIMEOFDAY
- int gettimeofday(struct timeval *tv, struct timezone *tz);
- #endif
- double delta_time (struct timeval tv);
- /* Handle strings safely */
- void strip (char *buffer);
- char *strscpy (char *dest, char *src);
- char *strscat (char *dest, char *src);
- char *strnl (char *str);
- char *ssprintf (char *str, const char *fmt, ...); /* deprecate for asprintf */
- char *strpcpy (char *dest, const char *src, const char *str);
- char *strpcat (char *dest, const char *src, const char *str);
- int max_state (int a, int b);
- void usage (char *msg);
- void usage2(char *msg, char *arg);
- void usage3(char *msg, char arg);
- char *state_text (int result);
- #define max(a,b) (((a)>(b))?(a):(b))
- /* The idea here is that, although not every plugin will use all of these,
- most will or should. Therefore, for consistency, these very common
- options should have only these meanings throughout the overall suite */
- #define STD_LONG_OPTS \
- {"version",no_argument,0,'V'},\
- {"verbose",no_argument,0,'v'},\
- {"help",no_argument,0,'h'},\
- {"timeout",required_argument,0,'t'},\
- {"critical",required_argument,0,'c'},\
- {"warning",required_argument,0,'w'},\
- {"hostname",required_argument,0,'H'}
|