first batch of cleanup to programs based upon the namespace cleanups
authorderaadt <deraadt@openbsd.org>
Fri, 16 Jan 2015 00:05:12 +0000 (00:05 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 16 Jan 2015 00:05:12 +0000 (00:05 +0000)
in net/pfvar.h sys/proc.h sys/ucred.h arpa/nameser.h
change to PATH_MAX, reduce use of MIN() and MAX(), HOST_NAME_MAX+1,
LOGIN_NAME_MAX, etc etc
ok millert guenther, some review by doug

24 files changed:
usr.sbin/installboot/bootstrap.c
usr.sbin/installboot/i386_installboot.c
usr.sbin/installboot/i386_nlist.c
usr.sbin/installboot/i386_softraid.c
usr.sbin/installboot/softraid.c
usr.sbin/installboot/sparc64_installboot.c
usr.sbin/installboot/sparc64_softraid.c
usr.sbin/installboot/util.c
usr.sbin/snmpd/ber.c
usr.sbin/snmpd/control.c
usr.sbin/snmpd/kroute.c
usr.sbin/snmpd/log.c
usr.sbin/snmpd/mib.c
usr.sbin/snmpd/mps.c
usr.sbin/snmpd/pf.c
usr.sbin/snmpd/smi.c
usr.sbin/snmpd/snmpd.c
usr.sbin/snmpd/snmpd.h
usr.sbin/snmpd/snmpe.c
usr.sbin/snmpd/timer.c
usr.sbin/snmpd/trap.c
usr.sbin/snmpd/traphandler.c
usr.sbin/snmpd/usm.c
usr.sbin/snmpd/util.c

index 5ad473e..c2c6ec3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bootstrap.c,v 1.5 2014/06/25 18:23:02 tobias Exp $    */
+/*     $OpenBSD: bootstrap.c,v 1.6 2015/01/16 00:05:12 deraadt Exp $   */
 
 /*
  * Copyright (c) 2013 Joel Sing <jsing@openbsd.org>
@@ -16,7 +16,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
+#include <sys/param.h> /* DEV_BSIZE */
 #include <sys/disklabel.h>
 #include <sys/dkio.h>
 #include <sys/ioctl.h>
index 3512f9a..c612f54 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: i386_installboot.c,v 1.6 2014/10/08 04:26:54 deraadt Exp $    */
+/*     $OpenBSD: i386_installboot.c,v 1.7 2015/01/16 00:05:12 deraadt Exp $    */
 /*     $NetBSD: installboot.c,v 1.5 1995/11/17 23:23:50 gwr Exp $ */
 
 /*
@@ -37,7 +37,8 @@
 
 #define ELFSIZE 32
 
-#include <sys/param.h>
+#include <sys/param.h> /* DEV_BSIZE MAXFRAG */
+#include <sys/types.h>
 #include <sys/disklabel.h>
 #include <sys/dkio.h>
 #include <sys/ioctl.h>
index 92a5e67..23d19cc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: i386_nlist.c,v 1.1 2014/01/19 02:58:50 jsing Exp $    */
+/*     $OpenBSD: i386_nlist.c,v 1.2 2015/01/16 00:05:12 deraadt Exp $  */
 /*
  * Copyright (c) 1989, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -30,7 +30,6 @@
 
 #define ELFSIZE 32
 
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/mman.h>
 #include <sys/stat.h>
@@ -42,6 +41,8 @@
 #include <string.h>
 #include <unistd.h>
 
+#define MINIMUM(a, b)  (((a) < (b)) ? (a) : (b))
+
 static int     __elf_fdnlist(int, struct nlist *);
 static int     __elf_is_okay__(Elf_Ehdr *ehdr);
 
@@ -193,7 +194,7 @@ __elf_fdnlist(int fd, struct nlist *list)
                goto elf_done;
 
        while (symsize > 0) {
-               cc = MIN(symsize, sizeof(sbuf));
+               cc = MINIMUM(symsize, sizeof(sbuf));
                if (pread(fd, sbuf, cc, (off_t)symoff) != cc)
                        break;
                symsize -= cc;
index a5a0580..1be4a7a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: i386_softraid.c,v 1.2 2014/06/09 13:13:48 jsing Exp $ */
+/*     $OpenBSD: i386_softraid.c,v 1.3 2015/01/16 00:05:12 deraadt Exp $       */
 /*
  * Copyright (c) 2012 Joel Sing <jsing@openbsd.org>
  *
@@ -15,7 +15,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
+#include <sys/param.h> /* DEV_BSIZE */
+#include <sys/types.h>
 #include <sys/disklabel.h>
 #include <sys/dkio.h>
 #include <sys/ioctl.h>
index 41e755e..fecf425 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: softraid.c,v 1.2 2013/12/28 11:26:57 jsing Exp $      */
+/*     $OpenBSD: softraid.c,v 1.3 2015/01/16 00:05:12 deraadt Exp $    */
 /*
  * Copyright (c) 2012 Joel Sing <jsing@openbsd.org>
  *
@@ -15,7 +15,6 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
 #include <sys/dkio.h>
 #include <sys/ioctl.h>
 
index cc2f48d..2c831fe 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sparc64_installboot.c,v 1.2 2014/06/09 13:13:48 jsing Exp $   */
+/*     $OpenBSD: sparc64_installboot.c,v 1.3 2015/01/16 00:05:12 deraadt Exp $ */
 
 /*
  * Copyright (c) 2012, 2013 Joel Sing <jsing@openbsd.org>
@@ -16,7 +16,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
+#include <sys/param.h> /* DEV_BSIZE */
 #include <sys/stat.h>
 
 #include <err.h>
index 659d82f..7691398 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sparc64_softraid.c,v 1.1 2014/01/19 02:58:50 jsing Exp $      */
+/*     $OpenBSD: sparc64_softraid.c,v 1.2 2015/01/16 00:05:12 deraadt Exp $    */
 /*
  * Copyright (c) 2012 Joel Sing <jsing@openbsd.org>
  *
@@ -15,7 +15,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
+#include <sys/types.h>
 #include <sys/disklabel.h>
 #include <sys/ioctl.h>
 #include <sys/stat.h>
index a8fa8fa..05c63e3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: util.c,v 1.4 2014/06/09 15:50:08 jsing Exp $  */
+/*     $OpenBSD: util.c,v 1.5 2015/01/16 00:05:12 deraadt Exp $        */
 
 /*
  * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
@@ -16,7 +16,6 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
 #include <sys/stat.h>
 #include <err.h>
 #include <fcntl.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
+#include <limits.h>
 
 #include "installboot.h"
 
+#define MINIMUM(a, b)  (((a) < (b)) ? (a) : (b))
+
 #define BUFSIZE 512
 
 void
@@ -56,7 +58,7 @@ filecopy(const char *srcfile, const char *dstfile)
                err(1, "chmod");
 
        while (sz > 0) {
-               n = MIN(sz, BUFSIZE);
+               n = MINIMUM(sz, BUFSIZE);
                if ((n = read(sfd, buf, n)) == -1)
                        err(1, "read");
                sz -= n;
index 53e801a..9bfaa9a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ber.c,v 1.27 2014/04/25 06:57:11 blambert Exp $ */
+/*     $OpenBSD: ber.c,v 1.28 2015/01/16 00:05:13 deraadt Exp $ */
 
 /*
  * Copyright (c) 2007, 2012 Reyk Floeter <reyk@openbsd.org>
@@ -19,7 +19,6 @@
  */
 
 #include <sys/types.h>
-#include <sys/param.h>
 
 #include <errno.h>
 #include <limits.h>
@@ -32,6 +31,7 @@
 
 #include "ber.h"
 
+#define MINIMUM(a, b)  (((a) < (b)) ? (a) : (b))
 
 #define BER_TYPE_CONSTRUCTED   0x20    /* otherwise primitive */
 #define BER_TYPE_SINGLE_MAX    30
@@ -1193,7 +1193,7 @@ ber_readbuf(struct ber *b, void *buf, size_t nbytes)
                return -1;
 
        sz = b->br_rend - b->br_rptr;
-       len = MIN(nbytes, sz);
+       len = MINIMUM(nbytes, sz);
        if (len == 0) {
                errno = ECANCELED;
                return (-1);    /* end of buffer and parser wants more data */
index 323a95d..ca47f5e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: control.c,v 1.27 2014/11/19 10:19:00 blambert Exp $   */
+/*     $OpenBSD: control.c,v 1.28 2015/01/16 00:05:13 deraadt Exp $    */
 
 /*
  * Copyright (c) 2010-2013 Reyk Floeter <reyk@openbsd.org>
@@ -18,7 +18,6 @@
  */
 
 #include <sys/queue.h>
-#include <sys/param.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
 #include <sys/un.h>
index a106445..c73be50 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kroute.c,v 1.29 2014/10/16 04:05:02 deraadt Exp $     */
+/*     $OpenBSD: kroute.c,v 1.30 2015/01/16 00:05:13 deraadt Exp $     */
 
 /*
  * Copyright (c) 2007, 2008 Reyk Floeter <reyk@openbsd.org>
@@ -18,7 +18,6 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/sysctl.h>
index a5ff138..4e82066 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: log.c,v 1.5 2014/10/25 03:23:49 lteo Exp $    */
+/*     $OpenBSD: log.c,v 1.6 2015/01/16 00:05:13 deraadt Exp $ */
 
 /*
  * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -17,7 +17,6 @@
  */
 
 #include <sys/types.h>
-#include <sys/param.h>
 #include <sys/queue.h>
 #include <sys/socket.h>
 #include <sys/tree.h>
index 73e823e..8276dfc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mib.c,v 1.73 2014/11/18 20:54:29 krw Exp $    */
+/*     $OpenBSD: mib.c,v 1.74 2015/01/16 00:05:13 deraadt Exp $        */
 
 /*
  * Copyright (c) 2012 Joel Knight <joel@openbsd.org>
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <sys/param.h> /* MAXCOMLEN */
 #include <sys/queue.h>
-#include <sys/param.h>
 #include <sys/proc.h>
-#include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
 #include <sys/un.h>
index e52f624..b122bd5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mps.c,v 1.19 2014/11/19 10:19:00 blambert Exp $       */
+/*     $OpenBSD: mps.c,v 1.20 2015/01/16 00:05:13 deraadt Exp $        */
 
 /*
  * Copyright (c) 2007, 2008, 2012 Reyk Floeter <reyk@openbsd.org>
@@ -17,7 +17,6 @@
  */
 
 #include <sys/queue.h>
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
index b4d162c..4cdc82e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pf.c,v 1.7 2014/10/08 05:24:42 deraadt Exp $  */
+/*     $OpenBSD: pf.c,v 1.8 2015/01/16 00:05:13 deraadt Exp $  */
 
 /*
  * Copyright (c) 2012 Joel Knight <joel@openbsd.org>
@@ -31,7 +31,6 @@
  *
  */
 
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/ioctl.h>
@@ -47,6 +46,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
+#include <limits.h>
 #include <event.h>
 
 #include "snmpd.h"
index 2eeb802..e41dd37 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: smi.c,v 1.16 2014/11/19 10:19:00 blambert Exp $       */
+
 
 /*
  * Copyright (c) 2007, 2008 Reyk Floeter <reyk@openbsd.org>
@@ -17,7 +17,6 @@
  */
 
 #include <sys/queue.h>
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
 #include <fcntl.h>
 #include <string.h>
 #include <unistd.h>
+#include <limits.h>
 #include <pwd.h>
 #include <vis.h>
 
 #include "snmpd.h"
 #include "mib.h"
 
+#define MINIMUM(a, b)  (((a) < (b)) ? (a) : (b))
+
 extern struct snmpd *env;
 
 RB_HEAD(oidtree, oid);
@@ -565,7 +567,7 @@ smi_oid_cmp(struct oid *a, struct oid *b)
 {
        size_t   i;
 
-       for (i = 0; i < MIN(a->o_oidlen, b->o_oidlen); i++)
+       for (i = 0; i < MINIMUM(a->o_oidlen, b->o_oidlen); i++)
                if (a->o_oid[i] != b->o_oid[i])
                        return (a->o_oid[i] - b->o_oid[i]);
 
index 96044b4..4c16ec4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: snmpd.c,v 1.24 2014/08/18 13:13:42 reyk Exp $ */
+/*     $OpenBSD: snmpd.c,v 1.25 2015/01/16 00:05:13 deraadt Exp $      */
 
 /*
  * Copyright (c) 2007, 2008, 2012 Reyk Floeter <reyk@openbsd.org>
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <sys/param.h> /* nitems */ 
 #include <sys/types.h>
 #include <sys/queue.h>
 #include <sys/socket.h>
-#include <sys/param.h>
 #include <sys/wait.h>
 #include <sys/tree.h>
 
index 726911a..759a313 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: snmpd.h,v 1.58 2014/11/19 10:19:00 blambert Exp $     */
+/*     $OpenBSD: snmpd.h,v 1.59 2015/01/16 00:05:13 deraadt Exp $      */
 
 /*
  * Copyright (c) 2007, 2008, 2012 Reyk Floeter <reyk@openbsd.org>
@@ -384,7 +384,7 @@ struct pfr_buffer {
 struct snmp_message {
        struct sockaddr_storage  sm_ss;
        socklen_t                sm_slen;
-       char                     sm_host[MAXHOSTNAMELEN];
+       char                     sm_host[HOST_NAME_MAX+1];
 
        struct ber               sm_ber;
        struct ber_element      *sm_req;
index 79f2436..0096b24 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: snmpe.c,v 1.39 2014/11/19 10:19:00 blambert Exp $     */
+/*     $OpenBSD: snmpe.c,v 1.40 2015/01/16 00:05:13 deraadt Exp $      */
 
 /*
  * Copyright (c) 2007, 2008, 2012 Reyk Floeter <reyk@openbsd.org>
@@ -16,8 +16,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <sys/param.h> /* nitems */
 #include <sys/queue.h>
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
index 6f4091a..6d9778c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: timer.c,v 1.3 2014/10/25 03:23:49 lteo Exp $  */
+/*     $OpenBSD: timer.c,v 1.4 2015/01/16 00:05:13 deraadt Exp $       */
 
 /*
  * Copyright (c) 2008 Reyk Floeter <reyk@openbsd.org>
@@ -17,7 +17,6 @@
  */
 
 #include <sys/queue.h>
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/sched.h>
 #include <sys/socket.h>
index 1420658..2a70c32 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: trap.c,v 1.23 2014/11/19 10:19:00 blambert Exp $      */
+/*     $OpenBSD: trap.c,v 1.24 2015/01/16 00:05:13 deraadt Exp $       */
 
 /*
  * Copyright (c) 2008 Reyk Floeter <reyk@openbsd.org>
@@ -17,7 +17,6 @@
  */
 
 #include <sys/queue.h>
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
index 08be754..2a2f2c9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: traphandler.c,v 1.1 2014/04/25 06:57:11 blambert Exp $        */
+/*     $OpenBSD: traphandler.c,v 1.2 2015/01/16 00:05:13 deraadt Exp $ */
 /*
  * Copyright (c) 2014 Bret Stephen Lambert <blambert@openbsd.org>
  *
@@ -16,7 +16,7 @@
  */
 
 #include <sys/queue.h>
-#include <sys/param.h>
+#include <sys/param.h> /* nitems */
 #include <sys/socket.h>
 #include <sys/socketvar.h>
 #include <sys/stat.h>
index 1f440f7..b334358 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: usm.c,v 1.8 2014/11/19 11:14:06 blambert Exp $        */
+/*     $OpenBSD: usm.c,v 1.9 2015/01/16 00:05:13 deraadt Exp $ */
 
 /*
  * Copyright (c) 2012 GeNUA mbH
@@ -17,7 +17,6 @@
  */
 
 #include <sys/queue.h>
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/socket.h>
index e744be4..cc17295 100644 (file)
@@ -15,7 +15,6 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/queue.h>
 #include <sys/socket.h>