X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fredis.c;h=919a8312b226d37649f7ad6e598b91788ca9c787;hb=d50dc31ae667dc7881a6e9e1da79452fd8e044f7;hp=5bcc70350620d864badc2c67ad215c12e9f329ca;hpb=b76f88c5bafa82e3c939eb65c13acd431e07cc01;p=collectd.git diff --git a/src/redis.c b/src/redis.c index 5bcc7035..919a8312 100644 --- a/src/redis.c +++ b/src/redis.c @@ -130,7 +130,7 @@ static redis_query_t *redis_config_query (oconfig_item_t *ci) /* {{{ */ rq = calloc(1, sizeof(*rq)); if (rq == NULL) { - ERROR("redis plugin: calloca failed adding redis_query."); + ERROR("redis plugin: calloc failed adding redis_query."); return NULL; } status = cf_util_get_string_buffer(ci, rq->query, sizeof(rq->query)); @@ -399,25 +399,27 @@ static int redis_read (void) /* {{{ */ if (strlen (rn->passwd) > 0) { - DEBUG ("redis plugin: authenticanting node `%s' passwd(%s).", rn->name, rn->passwd); - rr = redisCommand (rh, "AUTH %s", rn->passwd); + DEBUG ("redis plugin: authenticating node `%s' passwd(%s).", rn->name, rn->passwd); - if (rr == NULL || rr->type != REDIS_REPLY_STATUS) + if ((rr = redisCommand (rh, "AUTH %s", rn->passwd)) == NULL) { WARNING ("redis plugin: unable to authenticate on node `%s'.", rn->name); - if (rr != NULL) - freeReplyObject (rr); + goto redis_fail; + } - redisFree (rh); - continue; + if (rr->type != REDIS_REPLY_STATUS) + { + WARNING ("redis plugin: invalid authentication on node `%s'.", rn->name); + goto redis_fail; } + + freeReplyObject (rr); } if ((rr = redisCommand(rh, "INFO")) == NULL) { - WARNING ("redis plugin: unable to connect to node `%s'.", rn->name); - redisFree (rh); - continue; + WARNING ("redis plugin: unable to get info from node `%s'.", rn->name); + goto redis_fail; } redis_handle_info (rn->name, rr->str, "uptime", NULL, "uptime_in_seconds", DS_TYPE_GAUGE); @@ -439,11 +441,12 @@ static int redis_read (void) /* {{{ */ redis_handle_info (rn->name, rr->str, "total_bytes", "input", "total_net_input_bytes", DS_TYPE_DERIVE); redis_handle_info (rn->name, rr->str, "total_bytes", "output", "total_net_output_bytes", DS_TYPE_DERIVE); - freeReplyObject (rr); - for (rq = rn->queries; rq != NULL; rq = rq->next) redis_handle_query(rh, rn, rq); +redis_fail: + if (rr != NULL) + freeReplyObject (rr); redisFree (rh); }