[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL v2 15/23] linux-user: Detect Negative Message Sizes i
From: |
riku . voipio |
Subject: |
[Qemu-devel] [PULL v2 15/23] linux-user: Detect Negative Message Sizes in msgsnd System Call |
Date: |
Tue, 19 Aug 2014 11:32:50 +0300 |
From: Tom Musta <address@hidden>
The msgsnd system call takes an argument that describes the message
size (msgsz) and is of type size_t. The system call should set
errno to EINVAL in the event that a negative message size is passed.
Signed-off-by: Tom Musta <address@hidden>
Reviewed-by: Peter Maydell <address@hidden>
Signed-off-by: Riku Voipio <address@hidden>
---
linux-user/syscall.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index c9a9d3d..d223cff 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -2879,12 +2879,16 @@ struct target_msgbuf {
};
static inline abi_long do_msgsnd(int msqid, abi_long msgp,
- unsigned int msgsz, int msgflg)
+ ssize_t msgsz, int msgflg)
{
struct target_msgbuf *target_mb;
struct msgbuf *host_mb;
abi_long ret = 0;
+ if (msgsz < 0) {
+ return -TARGET_EINVAL;
+ }
+
if (!lock_user_struct(VERIFY_READ, target_mb, msgp, 0))
return -TARGET_EFAULT;
host_mb = malloc(msgsz+sizeof(long));
--
2.0.1
- [Qemu-devel] [PULL v2 09/23] linux-user: add setns and unshare, (continued)
- [Qemu-devel] [PULL v2 09/23] linux-user: add setns and unshare, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 02/23] linux-user: redirect openat calls, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 12/23] linux-user: Properly Handle semun Structure In Cross-Endian Situations, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 06/23] linux-user: support timerfd_{create, gettime, settime} syscalls, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 10/23] linux-user: PPC64 semid_ds Doesnt Include _unused1 and _unused2, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 04/23] linux-user: Fix conversion of sigevent argument to timer_create, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 01/23] linux-user: /proc/self/maps content, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 16/23] linux-user: Handle NULL sched_param argument to sched_*, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 13/23] linux-user: Make ipc syscall's third argument an abi_long, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 17/23] linux-user: Detect fault in sched_rr_get_interval, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 15/23] linux-user: Detect Negative Message Sizes in msgsnd System Call,
riku . voipio <=
- [Qemu-devel] [PULL v2 20/23] linux-user: clock_nanosleep errno Handling on PPC, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 23/23] linux-user: check return value of malloc(), riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 14/23] linux-user: Conditionally Pass Attribute Pointer to mq_open(), riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 18/23] linux-user: Move get_ppc64_abi, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 22/23] linux-user: writev Partial Writes, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 21/23] linux-user: Support target-to-host translation of mlockall argument, riku . voipio, 2014/08/19
- [Qemu-devel] [PULL v2 19/23] linux-user: Minimum Sig Handler Stack Size for PPC64 ELF V2, riku . voipio, 2014/08/19
- Re: [Qemu-devel] [PULL v2 00/23] linux-user updates, Peter Maydell, 2014/08/19