2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-29 13:28:10 +00:00

Use TIME_T_MAX as the upper limit when parsing timeouts.

This commit is contained in:
Todd C. Miller 2022-02-01 13:07:27 -07:00
parent 46ca288216
commit 2df2276d56

View File

@ -579,11 +579,11 @@ cb_server_listen_address(struct logsrvd_config *config, const char *str, size_t
static bool
cb_server_timeout(struct logsrvd_config *config, const char *str, size_t offset)
{
int timeout;
const char* errstr;
time_t timeout;
const char *errstr;
debug_decl(cb_server_timeout, SUDO_DEBUG_UTIL);
timeout = sudo_strtonum(str, 0, UINT_MAX, &errstr);
timeout = sudo_strtonum(str, 0, TIME_T_MAX, &errstr);
if (errstr != NULL)
debug_return_bool(false);
@ -784,11 +784,11 @@ cb_relay_host(struct logsrvd_config *config, const char *str, size_t offset)
static bool
cb_relay_timeout(struct logsrvd_config *config, const char *str, size_t offset)
{
int timeout;
const char* errstr;
time_t timeout;
const char *errstr;
debug_decl(cb_relay_timeout, SUDO_DEBUG_UTIL);
timeout = sudo_strtonum(str, 0, UINT_MAX, &errstr);
timeout = sudo_strtonum(str, 0, TIME_T_MAX, &errstr);
if (errstr != NULL)
debug_return_bool(false);
@ -800,11 +800,11 @@ cb_relay_timeout(struct logsrvd_config *config, const char *str, size_t offset)
static bool
cb_relay_connect_timeout(struct logsrvd_config *config, const char *str, size_t offset)
{
int timeout;
const char* errstr;
time_t timeout;
const char *errstr;
debug_decl(cb_relay_connect_timeout, SUDO_DEBUG_UTIL);
timeout = sudo_strtonum(str, 0, UINT_MAX, &errstr);
timeout = sudo_strtonum(str, 0, TIME_T_MAX, &errstr);
if (errstr != NULL)
debug_return_bool(false);