X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_rrdcreate.c;h=5add32373cd3d91f861265df88dc459d4bb57c99;hb=22651d8d4dc49e24bbac2cd34e0642dcf3639c97;hp=da4a944afc60f3c0870aa04b0b1e11bc01df2a02;hpb=84f5f5923d8109366b2c3caf66ad7c2d89be38bd;p=collectd.git diff --git a/src/utils_rrdcreate.c b/src/utils_rrdcreate.c index da4a944a..5add3237 100644 --- a/src/utils_rrdcreate.c +++ b/src/utils_rrdcreate.c @@ -2,18 +2,23 @@ * collectd - src/utils_rrdcreate.c * Copyright (C) 2006-2013 Florian octo Forster * - * 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; only version 2 of the License is applicable. + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: * - * 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. + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. * - * 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 St, Fifth Floor, Boston, MA 02110-1301 USA + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. * * Authors: * Florian octo Forster @@ -166,14 +171,10 @@ static int rra_get (char ***ret, const value_list_t *vl, /* {{{ */ int rra_max; - int span; - int cdp_num; int cdp_len; int i, j; - char buffer[128]; - /* The stepsize we use here: If it is user-set, use it. If not, use the * interval of the value-list. */ int ss; @@ -213,16 +214,17 @@ static int rra_get (char ***ret, const value_list_t *vl, /* {{{ */ } rra_max = rts_num * rra_types_num; + assert (rra_max > 0); - if ((rra_def = (char **) malloc ((rra_max + 1) * sizeof (char *))) == NULL) + if ((rra_def = malloc ((rra_max + 1) * sizeof (*rra_def))) == NULL) return (-1); - memset (rra_def, '\0', (rra_max + 1) * sizeof (char *)); + memset (rra_def, 0, (rra_max + 1) * sizeof (*rra_def)); rra_num = 0; cdp_len = 0; for (i = 0; i < rts_num; i++) { - span = rts[i]; + int span = rts[i]; if ((span / ss) < cfg->rrarows) span = ss * cfg->rrarows; @@ -238,6 +240,7 @@ static int rra_get (char ***ret, const value_list_t *vl, /* {{{ */ for (j = 0; j < rra_types_num; j++) { + char buffer[128]; int status; if (rra_num >= rra_max) @@ -256,6 +259,12 @@ static int rra_get (char ***ret, const value_list_t *vl, /* {{{ */ } } + if (rra_num <= 0) + { + sfree (rra_def); + return (0); + } + *ret = rra_def; return (rra_num); } /* }}} int rra_get */ @@ -281,7 +290,9 @@ static int ds_get (char ***ret, /* {{{ */ char max[32]; char buffer[128]; - ds_def = (char **) malloc (ds->ds_num * sizeof (char *)); + assert (ds->ds_num > 0); + + ds_def = malloc (ds->ds_num * sizeof (*ds_def)); if (ds_def == NULL) { char errbuf[1024]; @@ -289,7 +300,7 @@ static int ds_get (char ***ret, /* {{{ */ sstrerror (errno, errbuf, sizeof (errbuf))); return (-1); } - memset (ds_def, '\0', ds->ds_num * sizeof (char *)); + memset (ds_def, 0, ds->ds_num * sizeof (*ds_def)); for (ds_num = 0; ds_num < ds->ds_num; ds_num++) { @@ -347,6 +358,12 @@ static int ds_get (char ***ret, /* {{{ */ return (-1); } + if (ds_num <= 0) + { + sfree (ds_def); + return (0); + } + *ret = ds_def; return (ds_num); } /* }}} int ds_get */ @@ -646,9 +663,9 @@ int cu_rrd_create_file (const char *filename, /* {{{ */ { char **argv; int argc; - char **rra_def; + char **rra_def = NULL; int rra_num; - char **ds_def; + char **ds_def = NULL; int ds_num; int status = 0; time_t last_up; @@ -666,6 +683,7 @@ int cu_rrd_create_file (const char *filename, /* {{{ */ if ((ds_num = ds_get (&ds_def, ds, vl, cfg)) < 1) { ERROR ("cu_rrd_create_file failed: Could not calculate DSes"); + rra_free (rra_num, rra_def); return (-1); } @@ -676,6 +694,8 @@ int cu_rrd_create_file (const char *filename, /* {{{ */ char errbuf[1024]; ERROR ("cu_rrd_create_file failed: %s", sstrerror (errno, errbuf, sizeof (errbuf))); + rra_free (rra_num, rra_def); + ds_free (ds_num, ds_def); return (-1); }