summaryrefslogtreecommitdiffstats
path: root/lib/utils_base.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/utils_base.c')
-rw-r--r--lib/utils_base.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/lib/utils_base.c b/lib/utils_base.c
index 1f705d9..8685e6f 100644
--- a/lib/utils_base.c
+++ b/lib/utils_base.c
@@ -28,6 +28,7 @@
28#include <stdarg.h> 28#include <stdarg.h>
29#include "utils_base.h" 29#include "utils_base.h"
30#include <fcntl.h> 30#include <fcntl.h>
31#include <sys/stat.h>
31 32
32#define np_free(ptr) { if(ptr) { free(ptr); ptr = NULL; } } 33#define np_free(ptr) { if(ptr) { free(ptr); ptr = NULL; } }
33 34
@@ -35,7 +36,7 @@ nagios_plugin *this_nagios_plugin=NULL;
35 36
36void np_init( char *plugin_name, int argc, char **argv ) { 37void np_init( char *plugin_name, int argc, char **argv ) {
37 if (this_nagios_plugin==NULL) { 38 if (this_nagios_plugin==NULL) {
38 this_nagios_plugin = malloc(sizeof(nagios_plugin)); 39 this_nagios_plugin = calloc(1, sizeof(nagios_plugin));
39 if (this_nagios_plugin==NULL) { 40 if (this_nagios_plugin==NULL) {
40 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"), 41 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"),
41 strerror(errno)); 42 strerror(errno));
@@ -108,7 +109,7 @@ range
108 double end; 109 double end;
109 char *end_str; 110 char *end_str;
110 111
111 temp_range = (range *) malloc(sizeof(range)); 112 temp_range = (range *) calloc(1, sizeof(range));
112 113
113 /* Set defaults */ 114 /* Set defaults */
114 temp_range->start = 0; 115 temp_range->start = 0;
@@ -154,7 +155,7 @@ _set_thresholds(thresholds **my_thresholds, char *warn_string, char *critical_st
154{ 155{
155 thresholds *temp_thresholds = NULL; 156 thresholds *temp_thresholds = NULL;
156 157
157 if ((temp_thresholds = malloc(sizeof(thresholds))) == NULL) 158 if ((temp_thresholds = calloc(1, sizeof(thresholds))) == NULL)
158 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"), 159 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"),
159 strerror(errno)); 160 strerror(errno));
160 161
@@ -335,13 +336,13 @@ char *np_extract_value(const char *varlist, const char *name, char sep) {
335 if (tmp = index(varlist, sep)) { 336 if (tmp = index(varlist, sep)) {
336 /* Value is delimited by a comma */ 337 /* Value is delimited by a comma */
337 if (tmp-varlist == 0) continue; 338 if (tmp-varlist == 0) continue;
338 value = (char *)malloc(tmp-varlist+1); 339 value = (char *)calloc(1, tmp-varlist+1);
339 strncpy(value, varlist, tmp-varlist); 340 strncpy(value, varlist, tmp-varlist);
340 value[tmp-varlist] = '\0'; 341 value[tmp-varlist] = '\0';
341 } else { 342 } else {
342 /* Value is delimited by a \0 */ 343 /* Value is delimited by a \0 */
343 if (strlen(varlist) == 0) continue; 344 if (strlen(varlist) == 0) continue;
344 value = (char *)malloc(strlen(varlist) + 1); 345 value = (char *)calloc(1, strlen(varlist) + 1);
345 strncpy(value, varlist, strlen(varlist)); 346 strncpy(value, varlist, strlen(varlist));
346 value[strlen(varlist)] = '\0'; 347 value[strlen(varlist)] = '\0';
347 } 348 }
@@ -431,7 +432,7 @@ void np_enable_state(char *keyname, int expected_data_version) {
431 if(this_nagios_plugin==NULL) 432 if(this_nagios_plugin==NULL)
432 die(STATE_UNKNOWN, _("This requires np_init to be called")); 433 die(STATE_UNKNOWN, _("This requires np_init to be called"));
433 434
434 this_state = (state_key *) malloc(sizeof(state_key)); 435 this_state = (state_key *) calloc(1, sizeof(state_key));
435 if(this_state==NULL) 436 if(this_state==NULL)
436 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"), 437 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"),
437 strerror(errno)); 438 strerror(errno));
@@ -482,7 +483,7 @@ state_data *np_state_read() {
482 statefile = fopen( this_nagios_plugin->state->_filename, "r" ); 483 statefile = fopen( this_nagios_plugin->state->_filename, "r" );
483 if(statefile!=NULL) { 484 if(statefile!=NULL) {
484 485
485 this_state_data = (state_data *) malloc(sizeof(state_data)); 486 this_state_data = (state_data *) calloc(1, sizeof(state_data));
486 if(this_state_data==NULL) 487 if(this_state_data==NULL)
487 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"), 488 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"),
488 strerror(errno)); 489 strerror(errno));
@@ -517,7 +518,7 @@ int _np_state_read_file(FILE *f) {
517 time(&current_time); 518 time(&current_time);
518 519
519 /* Note: This introduces a limit of 1024 bytes in the string data */ 520 /* Note: This introduces a limit of 1024 bytes in the string data */
520 line = (char *) malloc(1024); 521 line = (char *) calloc(1, 1024);
521 if(line==NULL) 522 if(line==NULL)
522 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"), 523 die(STATE_UNKNOWN, _("Cannot allocate memory: %s"),
523 strerror(errno)); 524 strerror(errno));