Browse Source

AUDIT: Fix user pointer deref thinko in sys_socketcall().

I cunningly put the audit call immediately after the 
copy_from_user().... but used the _userspace_ copy of the args still. 
Let's not do that.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
David Woodhouse 20 năm trước cách đây
mục cha
commit
4bcff1b37e
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      net/socket.c

+ 1 - 1
net/socket.c

@@ -1908,7 +1908,7 @@ asmlinkage long sys_socketcall(int call, unsigned long __user *args)
 	if (copy_from_user(a, args, nargs[call]))
 		return -EFAULT;
 
-	err = audit_socketcall(nargs[call]/sizeof(unsigned long), args);
+	err = audit_socketcall(nargs[call]/sizeof(unsigned long), a);
 	if (err)
 		return err;