public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH] sendmsg01: use invalid but positive msg_namelen value
@ 2013-12-05 11:23 Jan Stancek
  2013-12-06  0:43 ` Wanlong Gao
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Stancek @ 2013-12-05 11:23 UTC (permalink / raw)
  To: ltp-list

After following 2 kernel commits:
  commit 1661bf364ae9c506bc8795fef70d1532931be1e8
  Author: Dan Carpenter <dan.carpenter@oracle.com>
  Date:   Thu Oct 3 00:27:20 2013 +0300
    net: heap overflow in __audit_sockaddr()

  commit db31c55a6fb245fdbb752a2ca4aefec89afabb06
  Author: Dan Carpenter <dan.carpenter@oracle.com>
  Date:   Wed Nov 27 15:40:21 2013 +0300
    net: clamp ->msg_namelen instead of returning an error

msg_namelen is treated as an unsigned value because of this
condition, which compares signed and unsigned arguments:
net/socket.c copy_msghdr_from_user()
  if (kmsg->msg_namelen > sizeof(struct sockaddr_storage))

User-space (accordding to POSIX spec) defines it as
"unsigned opaque integral type of length of at least 32 bits".

Passing -1 now has the effect as passing very large number
and syscall completes successfully.

Change the test to use invalid, but positive value for
"invalid to buffer length" testcase.

Signed-off-by: Jan Stancek <jstancek@redhat.com>
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Tested-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
---
 testcases/kernel/syscalls/sendmsg/sendmsg01.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/testcases/kernel/syscalls/sendmsg/sendmsg01.c b/testcases/kernel/syscalls/sendmsg/sendmsg01.c
index 5c79a45..81d5770 100644
--- a/testcases/kernel/syscalls/sendmsg/sendmsg01.c
+++ b/testcases/kernel/syscalls/sendmsg/sendmsg01.c
@@ -211,7 +211,7 @@ struct test_case_t tdat[] = {
 	 .msg = &msgdat,
 	 .flags = 0,
 	 .to = (struct sockaddr *)&sin1,
-	 .tolen = -1,
+	 .tolen = 1,
 	 .retval = -1,
 	 .experrno = EINVAL,
 	 .setup = setup1,
-- 
1.7.1


------------------------------------------------------------------------------
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631&iu=/4140/ostg.clktrk
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-12-06  1:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-05 11:23 [LTP] [PATCH] sendmsg01: use invalid but positive msg_namelen value Jan Stancek
2013-12-06  0:43 ` Wanlong Gao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox