]> git.baikalelectronics.ru Git - kernel.git/commit
net: socket: move check for forbid_cmsg_compat to __sys_...msg()
authorDominik Brodowski <linux@dominikbrodowski.net>
Tue, 13 Mar 2018 19:35:57 +0000 (20:35 +0100)
committerDominik Brodowski <linux@dominikbrodowski.net>
Mon, 2 Apr 2018 18:15:15 +0000 (20:15 +0200)
commit981c35875256c46f7173ccf3d8597937a8f6f169
treed47326548c1db4840cefb1d4e5341df49dabdef6
parent9fd2b5dd3c9600807912839b98d9b4bd98b909fc
net: socket: move check for forbid_cmsg_compat to __sys_...msg()

The non-compat codepaths for sys_...msg() verify that MSG_CMSG_COMPAT
is not set. By moving this check to the __sys_...msg() functions
(and making it dependent on a static flag passed to this function), we
can call the __sys...msg() functions instead of the syscall functions
in all cases. __sys_recvmmsg() does not need this trickery, as the
check is handled within the do_sys_recvmmsg() function internal to
net/socket.c.

This patch is part of a series which removes in-kernel calls to syscalls.
On this basis, the syscall entry path can be streamlined. For details, see
http://lkml.kernel.org/r/20180325162527.GA17492@light.dominikbrodowski.net

Cc: David S. Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
include/linux/socket.h
net/compat.c
net/socket.c