diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2018-03-16 11:48:34 -0400 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2018-04-02 14:15:17 -0400 |
commit | fd4e82f5b8612ce90bf85f062f2b7954044a1db7 (patch) | |
tree | 44d555647e22b7c7a344e6559dcb69a7f9447a68 /net/compat.c | |
parent | d27e9afc64206b5a2fe02561716cee5be9aacf01 (diff) |
net: socket: add __compat_sys_recvfrom() helper; remove in-kernel call to compat syscall
Using the net-internal helper __compat_sys_recvfrom() allows us to avoid
the internal calls to the compat_sys_recvfrom() syscall.
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>
Diffstat (limited to 'net/compat.c')
-rw-r--r-- | net/compat.c | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/net/compat.c b/net/compat.c index 9e0d030063ad..513adc8d0e0f 100644 --- a/net/compat.c +++ b/net/compat.c | |||
@@ -753,18 +753,25 @@ COMPAT_SYSCALL_DEFINE3(recvmsg, int, fd, struct compat_msghdr __user *, msg, uns | |||
753 | flags | MSG_CMSG_COMPAT, false); | 753 | flags | MSG_CMSG_COMPAT, false); |
754 | } | 754 | } |
755 | 755 | ||
756 | static inline long __compat_sys_recvfrom(int fd, void __user *buf, | ||
757 | compat_size_t len, unsigned int flags, | ||
758 | struct sockaddr __user *addr, | ||
759 | int __user *addrlen) | ||
760 | { | ||
761 | return __sys_recvfrom(fd, buf, len, flags | MSG_CMSG_COMPAT, addr, | ||
762 | addrlen); | ||
763 | } | ||
764 | |||
756 | COMPAT_SYSCALL_DEFINE4(recv, int, fd, void __user *, buf, compat_size_t, len, unsigned int, flags) | 765 | COMPAT_SYSCALL_DEFINE4(recv, int, fd, void __user *, buf, compat_size_t, len, unsigned int, flags) |
757 | { | 766 | { |
758 | return __sys_recvfrom(fd, buf, len, flags | MSG_CMSG_COMPAT, NULL, | 767 | return __compat_sys_recvfrom(fd, buf, len, flags, NULL, NULL); |
759 | NULL); | ||
760 | } | 768 | } |
761 | 769 | ||
762 | COMPAT_SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, buf, compat_size_t, len, | 770 | COMPAT_SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, buf, compat_size_t, len, |
763 | unsigned int, flags, struct sockaddr __user *, addr, | 771 | unsigned int, flags, struct sockaddr __user *, addr, |
764 | int __user *, addrlen) | 772 | int __user *, addrlen) |
765 | { | 773 | { |
766 | return __sys_recvfrom(fd, buf, len, flags | MSG_CMSG_COMPAT, addr, | 774 | return __compat_sys_recvfrom(fd, buf, len, flags, addr, addrlen); |
767 | addrlen); | ||
768 | } | 775 | } |
769 | 776 | ||
770 | COMPAT_SYSCALL_DEFINE5(recvmmsg, int, fd, struct compat_mmsghdr __user *, mmsg, | 777 | COMPAT_SYSCALL_DEFINE5(recvmmsg, int, fd, struct compat_mmsghdr __user *, mmsg, |
@@ -845,11 +852,13 @@ COMPAT_SYSCALL_DEFINE2(socketcall, int, call, u32 __user *, args) | |||
845 | compat_ptr(a[4]), a[5]); | 852 | compat_ptr(a[4]), a[5]); |
846 | break; | 853 | break; |
847 | case SYS_RECV: | 854 | case SYS_RECV: |
848 | ret = compat_sys_recv(a0, compat_ptr(a1), a[2], a[3]); | 855 | ret = __compat_sys_recvfrom(a0, compat_ptr(a1), a[2], a[3], |
856 | NULL, NULL); | ||
849 | break; | 857 | break; |
850 | case SYS_RECVFROM: | 858 | case SYS_RECVFROM: |
851 | ret = compat_sys_recvfrom(a0, compat_ptr(a1), a[2], a[3], | 859 | ret = __compat_sys_recvfrom(a0, compat_ptr(a1), a[2], a[3], |
852 | compat_ptr(a[4]), compat_ptr(a[5])); | 860 | compat_ptr(a[4]), |
861 | compat_ptr(a[5])); | ||
853 | break; | 862 | break; |
854 | case SYS_SHUTDOWN: | 863 | case SYS_SHUTDOWN: |
855 | ret = __sys_shutdown(a0, a1); | 864 | ret = __sys_shutdown(a0, a1); |