summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2018-02-16 19:24:16 +0000
committerchristos <christos@NetBSD.org>2018-02-16 19:24:16 +0000
commitd21af84265f97e1b9e008cc105feafadcc287c33 (patch)
tree9254086f9fc58452ccd5c0f461d753b68c8fc6d3
parent354314ef8906f84a5cf49c2c179faf75ef41649b (diff)
ensure that getpeereid does not succeed on tcp sockets.
-rw-r--r--tests/net/net/t_tcp.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/tests/net/net/t_tcp.c b/tests/net/net/t_tcp.c
index b8d7a5f4044..c6c2a759697 100644
--- a/tests/net/net/t_tcp.c
+++ b/tests/net/net/t_tcp.c
@@ -1,4 +1,4 @@
-/* $NetBSD: t_tcp.c,v 1.8 2018/02/16 16:30:20 christos Exp $ */
+/* $NetBSD: t_tcp.c,v 1.9 2018/02/16 19:24:16 christos Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
#include <sys/cdefs.h>
#ifdef __RCSID
-__RCSID("$Id: t_tcp.c,v 1.8 2018/02/16 16:30:20 christos Exp $");
+__RCSID("$Id: t_tcp.c,v 1.9 2018/02/16 19:24:16 christos Exp $");
#endif
/* Example code. Should block; does with accept not paccept. */
@@ -183,17 +183,11 @@ again:
#endif
/* This is supposed to only work on Unix sockets but returns garbage */
- if (getpeereid(clnt, &euid, &egid) == -1)
+ if (getpeereid(clnt, &euid, &egid) != -1)
FAIL("getpeereid(clnt)");
- CHECK_EQUAL(euid, geteuid(), "client");
- CHECK_EQUAL(egid, getegid(), "client");
-
/* This is supposed to only work on Unix sockets but returns garbage */
- if (getpeereid(srvr, &euid, &egid) == -1)
+ if (getpeereid(srvr, &euid, &egid) != -1)
FAIL("getpeereid(srvr)");
- CHECK_EQUAL(euid, geteuid(), "server");
- CHECK_EQUAL(egid, getegid(), "server");
-
if (as == -1) { /* not true under NetBSD */
as = paccept(srvr, NULL, NULL, NULL, pacceptblock ? 0 : SOCK_NONBLOCK);