192 lines
5.0 KiB
Diff
192 lines
5.0 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Date: Mon, 4 Oct 2021 15:27:36 -0500
|
|
Subject: [PATCH] libmultipath: split set_int to enable reuse
|
|
|
|
Split the code that does the actual value parsing out of set_int(), into
|
|
a helper function, do_set_int(), so that it can be used by other
|
|
handlers. These functions no longer set the config value at all, when
|
|
they have invalid input.
|
|
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
---
|
|
libmultipath/dict.c | 82 +++++++++++++++++++++++++--------------------
|
|
1 file changed, 46 insertions(+), 36 deletions(-)
|
|
|
|
diff --git a/libmultipath/dict.c b/libmultipath/dict.c
|
|
index d547d898..6330836a 100644
|
|
--- a/libmultipath/dict.c
|
|
+++ b/libmultipath/dict.c
|
|
@@ -30,17 +30,12 @@
|
|
#include "dict.h"
|
|
|
|
static int
|
|
-set_int(vector strvec, void *ptr, int min, int max, const char *file,
|
|
- int line_nr)
|
|
+do_set_int(vector strvec, void *ptr, int min, int max, const char *file,
|
|
+ int line_nr, char *buff)
|
|
{
|
|
int *int_ptr = (int *)ptr;
|
|
- char *buff, *eptr;
|
|
+ char *eptr;
|
|
long res;
|
|
- int rc;
|
|
-
|
|
- buff = set_value(strvec);
|
|
- if (!buff)
|
|
- return 1;
|
|
|
|
res = strtol(buff, &eptr, 10);
|
|
if (eptr > buff)
|
|
@@ -49,17 +44,30 @@ set_int(vector strvec, void *ptr, int min, int max, const char *file,
|
|
if (*buff == '\0' || *eptr != '\0') {
|
|
condlog(1, "%s line %d, invalid value for %s: \"%s\"",
|
|
file, line_nr, (char*)VECTOR_SLOT(strvec, 0), buff);
|
|
- rc = 1;
|
|
- } else {
|
|
- if (res > max || res < min) {
|
|
- res = (res > max) ? max : min;
|
|
- condlog(1, "%s line %d, value for %s too %s, capping at %ld",
|
|
+ return 1;
|
|
+ }
|
|
+ if (res > max || res < min) {
|
|
+ res = (res > max) ? max : min;
|
|
+ condlog(1, "%s line %d, value for %s too %s, capping at %ld",
|
|
file, line_nr, (char*)VECTOR_SLOT(strvec, 0),
|
|
- (res == max)? "large" : "small", res);
|
|
- }
|
|
- rc = 0;
|
|
- *int_ptr = res;
|
|
+ (res == max)? "large" : "small", res);
|
|
}
|
|
+ *int_ptr = res;
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+static int
|
|
+set_int(vector strvec, void *ptr, int min, int max, const char *file,
|
|
+ int line_nr)
|
|
+{
|
|
+ char *buff;
|
|
+ int rc;
|
|
+
|
|
+ buff = set_value(strvec);
|
|
+ if (!buff)
|
|
+ return 1;
|
|
+
|
|
+ rc = do_set_int(strvec, ptr, min, max, file, line_nr, buff);
|
|
|
|
FREE(buff);
|
|
return rc;
|
|
@@ -965,6 +973,7 @@ declare_mp_attr_snprint(gid, print_gid)
|
|
static int
|
|
set_undef_off_zero(vector strvec, void *ptr, const char *file, int line_nr)
|
|
{
|
|
+ int rc = 0;
|
|
char * buff;
|
|
int *int_ptr = (int *)ptr;
|
|
|
|
@@ -974,10 +983,10 @@ set_undef_off_zero(vector strvec, void *ptr, const char *file, int line_nr)
|
|
|
|
if (strcmp(buff, "off") == 0)
|
|
*int_ptr = UOZ_OFF;
|
|
- else if (sscanf(buff, "%d", int_ptr) != 1 ||
|
|
- *int_ptr < UOZ_ZERO)
|
|
- *int_ptr = UOZ_UNDEF;
|
|
- else if (*int_ptr == 0)
|
|
+ else
|
|
+ rc = do_set_int(strvec, int_ptr, 0, INT_MAX, file, line_nr,
|
|
+ buff);
|
|
+ if (rc == 0 && *int_ptr == 0)
|
|
*int_ptr = UOZ_ZERO;
|
|
|
|
FREE(buff);
|
|
@@ -1130,14 +1139,12 @@ max_fds_handler(struct config *conf, vector strvec, const char *file,
|
|
/* Assume safe limit */
|
|
max_fds = 4096;
|
|
}
|
|
- if (strlen(buff) == 3 &&
|
|
- !strcmp(buff, "max"))
|
|
- conf->max_fds = max_fds;
|
|
- else
|
|
- conf->max_fds = atoi(buff);
|
|
-
|
|
- if (conf->max_fds > max_fds)
|
|
+ if (!strcmp(buff, "max")) {
|
|
conf->max_fds = max_fds;
|
|
+ r = 0;
|
|
+ } else
|
|
+ r = do_set_int(strvec, &conf->max_fds, 0, max_fds, file,
|
|
+ line_nr, buff);
|
|
|
|
FREE(buff);
|
|
|
|
@@ -1206,6 +1213,7 @@ declare_mp_snprint(rr_weight, print_rr_weight)
|
|
static int
|
|
set_pgfailback(vector strvec, void *ptr, const char *file, int line_nr)
|
|
{
|
|
+ int rc = 0;
|
|
int *int_ptr = (int *)ptr;
|
|
char * buff;
|
|
|
|
@@ -1220,11 +1228,11 @@ set_pgfailback(vector strvec, void *ptr, const char *file, int line_nr)
|
|
else if (strlen(buff) == 10 && !strcmp(buff, "followover"))
|
|
*int_ptr = -FAILBACK_FOLLOWOVER;
|
|
else
|
|
- *int_ptr = atoi(buff);
|
|
+ rc = do_set_int(strvec, ptr, 0, INT_MAX, file, line_nr, buff);
|
|
|
|
FREE(buff);
|
|
|
|
- return 0;
|
|
+ return rc;
|
|
}
|
|
|
|
int
|
|
@@ -1256,6 +1264,7 @@ declare_mp_snprint(pgfailback, print_pgfailback)
|
|
static int
|
|
no_path_retry_helper(vector strvec, void *ptr, const char *file, int line_nr)
|
|
{
|
|
+ int rc = 0;
|
|
int *int_ptr = (int *)ptr;
|
|
char * buff;
|
|
|
|
@@ -1267,11 +1276,11 @@ no_path_retry_helper(vector strvec, void *ptr, const char *file, int line_nr)
|
|
*int_ptr = NO_PATH_RETRY_FAIL;
|
|
else if (!strcmp(buff, "queue"))
|
|
*int_ptr = NO_PATH_RETRY_QUEUE;
|
|
- else if ((*int_ptr = atoi(buff)) < 1)
|
|
- *int_ptr = NO_PATH_RETRY_UNDEF;
|
|
+ else
|
|
+ rc = do_set_int(strvec, ptr, 1, INT_MAX, file, line_nr, buff);
|
|
|
|
FREE(buff);
|
|
- return 0;
|
|
+ return rc;
|
|
}
|
|
|
|
int
|
|
@@ -1416,6 +1425,7 @@ snprint_mp_reservation_key (struct config *conf, char * buff, int len,
|
|
static int
|
|
set_off_int_undef(vector strvec, void *ptr, const char *file, int line_nr)
|
|
{
|
|
+ int rc =0;
|
|
int *int_ptr = (int *)ptr;
|
|
char * buff;
|
|
|
|
@@ -1425,11 +1435,11 @@ set_off_int_undef(vector strvec, void *ptr, const char *file, int line_nr)
|
|
|
|
if (!strcmp(buff, "no") || !strcmp(buff, "0"))
|
|
*int_ptr = NU_NO;
|
|
- else if ((*int_ptr = atoi(buff)) < 1)
|
|
- *int_ptr = NU_UNDEF;
|
|
+ else
|
|
+ rc = do_set_int(strvec, ptr, 1, INT_MAX, file, line_nr, buff);
|
|
|
|
FREE(buff);
|
|
- return 0;
|
|
+ return rc;
|
|
}
|
|
|
|
int
|