The kernel doesn't actually care what a sockaddr's sa_len is on input,
authorguenther <guenther@openbsd.org>
Mon, 19 Jan 2015 00:22:30 +0000 (00:22 +0000)
committerguenther <guenther@openbsd.org>
Mon, 19 Jan 2015 00:22:30 +0000 (00:22 +0000)
so don't waste code setting it

regress/sys/kern/accept/accept.c
regress/sys/kern/getpeereid/getpeereid_test.c
regress/sys/kern/unfdpass/unfdpass.c

index b59c349..2601fbb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: accept.c,v 1.4 2004/02/28 03:29:15 deraadt Exp $      */
+/*     $OpenBSD: accept.c,v 1.5 2015/01/19 00:22:30 guenther Exp $     */
 /*
  *     Written by Artur Grabowski <art@openbsd.org>, 2002 Public Domain.
  */
@@ -40,7 +40,6 @@ main(int argc, char *argv[])
        memset(&sun, 0, sizeof(sun));
        sun.sun_family = AF_LOCAL;
        strlcpy(sun.sun_path, SOCK_NAME, sizeof sun.sun_path);
-       sun.sun_len = SUN_LEN(&sun);
 
 
        if (bind(listensock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
@@ -96,7 +95,6 @@ child()
        (void) memset(&sun, 0, sizeof(sun));
        sun.sun_family = AF_LOCAL;
        (void) strlcpy(sun.sun_path, SOCK_NAME, sizeof sun.sun_path);
-       sun.sun_len = SUN_LEN(&sun);
 
        if (connect(sock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
                err(1, "child connect");
index 70abbac..820ff2b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: getpeereid_test.c,v 1.2 2014/07/20 01:38:40 guenther Exp $ */
+/* $OpenBSD: getpeereid_test.c,v 1.3 2015/01/19 00:22:30 guenther Exp $ */
 /* Written by Marc Espie in 2006 */
 /* Public domain */
 #include <sys/types.h>
@@ -125,7 +125,6 @@ main()
        if (strlcpy(sun.sun_path, path, sizeof(sun.sun_path)) >=
            sizeof(sun.sun_path))
                errx(1, "Memory error");
-       sun.sun_len = sizeof(sun);
        sun.sun_family = AF_UNIX;
 
        /* let's make those two rendez-vous, a bit artificial */
index fc0b13c..22e909c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: unfdpass.c,v 1.17 2011/07/06 19:48:10 matthew Exp $   */
+/*     $OpenBSD: unfdpass.c,v 1.18 2015/01/19 00:22:30 guenther Exp $  */
 /*     $NetBSD: unfdpass.c,v 1.3 1998/06/24 23:51:30 thorpej Exp $     */
 
 /*-
@@ -120,7 +120,6 @@ main(int argc, char *argv[])
                (void) memset(&sun, 0, sizeof(sun));
                sun.sun_family = AF_LOCAL;
                (void) strlcpy(sun.sun_path, SOCK_NAME, sizeof sun.sun_path);
-               sun.sun_len = SUN_LEN(&sun);
 
                if (bind(listensock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
                        err(1, "bind");
@@ -259,7 +258,6 @@ child(int sock, int type)
                (void) memset(&sun, 0, sizeof(sun));
                sun.sun_family = AF_LOCAL;
                (void) strlcpy(sun.sun_path, SOCK_NAME, sizeof sun.sun_path);
-               sun.sun_len = SUN_LEN(&sun);
 
                if (connect(sock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
                        err(1, "child connect");