X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Futils_cmd_getval.c;h=ce3e28e003eafc8f671dde5acab5462a5c57847f;hb=d189964960c406ddaff60e47b4ae01fcc38bec45;hp=33b40e09af7532a951d2611f83fe9fe2493360ee;hpb=aec20e4438a754fe2df160e01adea9f1285fe8af;p=collectd.git diff --git a/src/utils_cmd_getval.c b/src/utils_cmd_getval.c index 33b40e09..ce3e28e0 100644 --- a/src/utils_cmd_getval.c +++ b/src/utils_cmd_getval.c @@ -51,7 +51,7 @@ int handle_getval (FILE *fh, char *buffer) const data_set_t *ds; int status; - int i; + size_t i; if ((fh == NULL) || (buffer == NULL)) return (-1); @@ -83,6 +83,12 @@ int handle_getval (FILE *fh, char *buffer) } assert (identifier != NULL); + if (*buffer != 0) + { + print_to_socket (fh, "-1 Garbage after end of command: %s\n", buffer); + return (-1); + } + /* parse_identifier() modifies its first argument, * returning pointers into it */ identifier_copy = sstrdup (identifier); @@ -92,7 +98,7 @@ int handle_getval (FILE *fh, char *buffer) &type, &type_instance); if (status != 0) { - DEBUG ("unixsock plugin: Cannot parse identifier `%s'.", identifier); + DEBUG ("handle_getval: Cannot parse identifier `%s'.", identifier); print_to_socket (fh, "-1 Cannot parse identifier `%s'.\n", identifier); sfree (identifier_copy); return (-1); @@ -101,7 +107,7 @@ int handle_getval (FILE *fh, char *buffer) ds = plugin_get_ds (type); if (ds == NULL) { - DEBUG ("unixsock plugin: plugin_get_ds (%s) == NULL;", type); + DEBUG ("handle_getval: plugin_get_ds (%s) == NULL;", type); print_to_socket (fh, "-1 Type `%s' is unknown.\n", type); sfree (identifier_copy); return (-1); @@ -117,7 +123,7 @@ int handle_getval (FILE *fh, char *buffer) return (-1); } - if (ds->ds_num != values_num) + if ((size_t) ds->ds_num != values_num) { ERROR ("ds[%s]->ds_num = %i, " "but uc_get_rate_by_name returned %u values.",