From: tb Date: Tue, 25 Apr 2017 17:33:16 +0000 (+0000) Subject: Use strtonum instead of strto{,u}ll for simpler and better overflow X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=ebe44704a9fc446ab78ac11f65e786166ba1cc4e;p=openbsd Use strtonum instead of strto{,u}ll for simpler and better overflow checking, make somaxconn and sominconn unsigned. Issue reported by orge on freenode, thanks! Input, patient explanations and ok deraadt, millert. --- diff --git a/sbin/sysctl/sysctl.c b/sbin/sysctl/sysctl.c index fd8e766cd9e..94f78c0d673 100644 --- a/sbin/sysctl/sysctl.c +++ b/sbin/sysctl/sysctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sysctl.c,v 1.225 2017/03/16 10:05:47 mpi Exp $ */ +/* $OpenBSD: sysctl.c,v 1.226 2017/04/25 17:33:16 tb Exp $ */ /* $NetBSD: sysctl.c,v 1.9 1995/09/30 07:12:50 thorpej Exp $ */ /* @@ -441,6 +441,8 @@ parse(char *string, int flags) special |= CHRDEV; break; case KERN_NETLIVELOCKS: + case KERN_SOMAXCONN: + case KERN_SOMINCONN: special |= UNSIGNED; break; } @@ -692,20 +694,17 @@ parse(char *string, int flags) return; } if (newsize > 0) { + const char *errstr; + switch (type) { case CTLTYPE_INT: - errno = 0; if (special & UNSIGNED) - intval = strtoul(newval, &cp, 10); + intval = strtonum(newval, 0, UINT_MAX, &errstr); else - intval = strtol(newval, &cp, 10); - if (*cp != '\0') { - warnx("%s: illegal value: %s", string, - (char *)newval); - return; - } - if (errno == ERANGE) { - warnx("%s: value %s out of range", string, + intval = strtonum(newval, INT_MIN, INT_MAX, + &errstr); + if (errstr != NULL) { + warnx("%s: value is %s: %s", string, errstr, (char *)newval); return; }