From: Ryan McCabe Date: Thu, 7 Nov 2019 18:58:37 +0000 (-0500) Subject: turbostat: Fix parsing warnings X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=fe7335d14c0d8d7b2a279bfc0c05fd3587a11b18 turbostat: Fix parsing warnings Fix warnings generated by the turbostat plugin due to trailing characters while picking out the first number in a range. ChangeLog: turbostat plugin: Fix parsing warnings. PR: #2365 Signed-off-by: Ryan McCabe Signed-off-by: Florian Forster --- diff --git a/src/turbostat.c b/src/turbostat.c index f3885158..9db9cef9 100644 --- a/src/turbostat.c +++ b/src/turbostat.c @@ -1042,7 +1042,11 @@ static int __attribute__((format(printf, 1, 2))) parse_int_file(const char *fmt, ...) { va_list args; char path[PATH_MAX]; + char buf[256]; int len; + value_t v; + char *c; + FILE *fp; va_start(args, fmt); len = vsnprintf(path, sizeof(path), fmt, args); @@ -1052,8 +1056,29 @@ parse_int_file(const char *fmt, ...) { return -1; } - value_t v; - if (parse_value_file(path, &v, DS_TYPE_DERIVE) != 0) { + fp = fopen(path, "r"); + if (fp == NULL) { + ERROR("turbostat plugin: unable to open: '%s': %s", path, strerror(errno)); + return -1; + } + + if (fgets(buf, sizeof(buf), fp) == NULL) { + ERROR("turbostat plugin: unable to read: '%s': %s", path, strerror(errno)); + fclose(fp); + return -1; + } + fclose(fp); + + /* We only care about the first integer in the range */ + c = strchr(buf, '-'); + if (c != NULL) + *c = '\0'; + c = strchr(buf, ','); + if (c != NULL) + *c = '\0'; + strstripnewline(buf); + + if (parse_value(buf, &v, DS_TYPE_DERIVE) != 0) { ERROR("turbostat plugin: Parsing \"%s\" failed.", path); return -1; }