Module Name: src
Committed By: mlelstv
Date: Sat Dec 29 18:51:40 UTC 2012
Modified Files:
src/sys/kern: uipc_syscalls.c
Log Message:
The sanity check prevented messages that carry only ancillary data.
To generate a diff of this commit:
cvs rdiff -u -r1.157 -r1.158 src/sys/kern/uipc_syscalls.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/uipc_syscalls.c
diff -u src/sys/kern/uipc_syscalls.c:1.157 src/sys/kern/uipc_syscalls.c:1.158
--- src/sys/kern/uipc_syscalls.c:1.157 Sat Dec 29 10:22:40 2012
+++ src/sys/kern/uipc_syscalls.c Sat Dec 29 18:51:39 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: uipc_syscalls.c,v 1.157 2012/12/29 10:22:40 mlelstv Exp $ */
+/* $NetBSD: uipc_syscalls.c,v 1.158 2012/12/29 18:51:39 mlelstv Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -61,7 +61,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.157 2012/12/29 10:22:40 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uipc_syscalls.c,v 1.158 2012/12/29 18:51:39 mlelstv Exp $");
#include "opt_pipe.h"
@@ -547,11 +547,6 @@ do_sys_sendmsg_so(struct lwp *l, int s,
control = (mp->msg_flags & MSG_CONTROLMBUF) ? mp->msg_control : NULL;
iovsz = mp->msg_iovlen * sizeof(struct iovec);
- if (iovsz <= 0) {
- error = EMSGSIZE;
- goto bad;
- }
-
if (mp->msg_flags & MSG_IOVUSRSPACE) {
if ((unsigned int)mp->msg_iovlen > UIO_SMALLIOV) {
if ((unsigned int)mp->msg_iovlen > IOV_MAX) {
@@ -609,7 +604,7 @@ do_sys_sendmsg_so(struct lwp *l, int s,
}
}
- if (ktrpoint(KTR_GENIO)) {
+ if (ktrpoint(KTR_GENIO) && iovsz > 0) {
ktriov = kmem_alloc(iovsz, KM_SLEEP);
memcpy(ktriov, auio.uio_iov, iovsz);
}
@@ -915,11 +910,6 @@ do_sys_recvmsg_so(struct lwp *l, int s,
iovsz = mp->msg_iovlen * sizeof(struct iovec);
- if (iovsz <= 0) {
- error = EMSGSIZE;
- goto out;
- }
-
if (mp->msg_flags & MSG_IOVUSRSPACE) {
if ((unsigned int)mp->msg_iovlen > UIO_SMALLIOV) {
if ((unsigned int)mp->msg_iovlen > IOV_MAX) {
@@ -957,7 +947,7 @@ do_sys_recvmsg_so(struct lwp *l, int s,
}
}
- if (ktrpoint(KTR_GENIO)) {
+ if (ktrpoint(KTR_GENIO) && iovsz > 0) {
ktriov = kmem_alloc(iovsz, KM_SLEEP);
memcpy(ktriov, auio.uio_iov, iovsz);
}