From 900cecae9677696b334f99a746df92ba5f5a146d Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 31 Oct 2003 09:22:25 +0000 Subject: Added a new parse-numeric-parameters function so that options that take a numeric argument can better bail out if given a weird parameter. This catches situations such as "-y -Y 2000" or "-O -C [URL]" etc. --- src/main.c | 47 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 8 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 21ebd40f9..f8893c169 100644 --- a/src/main.c +++ b/src/main.c @@ -1034,7 +1034,7 @@ typedef enum { PARAM_BAD_USE, PARAM_HELP_REQUESTED, PARAM_GOT_EXTRA_PARAMETER, - + PARAM_BAD_NUMERIC, PARAM_LAST } ParameterError; @@ -1053,6 +1053,23 @@ static void cleanarg(char *str) #endif } +/* + * Parse the string and write the integer in the given address. Return + * non-zero on failure, zero on success. + * + * The string must start with a digit to be valid. + */ + +static int str2num(int *val, char *str) +{ + int retcode = 0; + if(isdigit((int)*str)) + *val = atoi(str); + else + retcode = 1; /* badness */ + return retcode; +} + static void checkpasswd(const char *kind, /* for what purpose */ char **userpwd) /* pointer to allocated string */ { @@ -1296,7 +1313,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ GetStr(&config->egd_file, nextarg); break; case 'c': /* connect-timeout */ - config->connecttimeout=atoi(nextarg); + if(str2num(&config->connecttimeout, nextarg)) + return PARAM_BAD_NUMERIC; break; case 'd': /* ciphers */ GetStr(&config->cipher_list, nextarg); @@ -1379,7 +1397,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ case 's': /* --max-redirs */ /* specified max no of redirects (http(s)) */ - config->maxredirs = atoi(nextarg); + if(str2num(&config->maxredirs, nextarg)) + return PARAM_BAD_NUMERIC; break; case 't': /* --proxy-ntlm */ @@ -1408,7 +1427,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ GetStr(&config->krb4level, nextarg); break; case 'y': /* --max-filesize */ - config->max_filesize = atoi(nextarg); + if(str2num(&config->max_filesize, nextarg)) + return PARAM_BAD_NUMERIC; break; case 'z': /* --disable-eprt */ config->disable_eprt ^= TRUE; @@ -1499,7 +1519,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ case 'C': /* This makes us continue an ftp transfer at given position */ if(!curl_strequal(nextarg, "-")) { - config->resume_from= atoi(nextarg); + if(str2num(&config->resume_from, nextarg)) + return PARAM_BAD_NUMERIC; config->resume_from_current = FALSE; } else { @@ -1706,7 +1727,8 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ break; case 'm': /* specified max time */ - config->timeout = atoi(nextarg); + if(str2num(&config->timeout, nextarg)) + return PARAM_BAD_NUMERIC; break; case 'M': /* M for manual, huge help */ hugehelp(); @@ -1928,13 +1950,15 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */ break; case 'y': /* low speed time */ - config->low_speed_time = atoi(nextarg); + if(str2num(&config->low_speed_time, nextarg)) + return PARAM_BAD_NUMERIC; if(!config->low_speed_limit) config->low_speed_limit = 1; break; case 'Y': /* low speed limit */ - config->low_speed_limit = atoi(nextarg); + if(str2num(&config->low_speed_limit, nextarg)) + return PARAM_BAD_NUMERIC; if(!config->low_speed_time) config->low_speed_time=30; break; @@ -2141,6 +2165,9 @@ static int parseconfig(const char *filename, case PARAM_BAD_USE: reason = "is badly used here"; break; + case PARAM_BAD_NUMERIC: + reason = "expected a proper numerical parameter"; + break; } fprintf(stderr, "%s:%d: warning: '%s' %s\n", filename, lineno, option, reason); @@ -2670,6 +2697,10 @@ operate(struct Configurable *config, int argc, char *argv[]) case PARAM_BAD_USE: helpf("option %s was wrongly used!\n", origopt); break; + case PARAM_BAD_NUMERIC: + helpf("option %s expected a proper numerical parameter\n", + origopt); + break; case PARAM_HELP_REQUESTED: /* no text */ break; -- cgit v1.2.3