]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net/compat: Add missing sock updates for SCM_RIGHTS
authorKees Cook <keescook@chromium.org>
Tue, 9 Jun 2020 23:11:29 +0000 (16:11 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Aug 2020 08:27:07 +0000 (10:27 +0200)
[ Upstream commit d9539752d23283db4692384a634034f451261e29 ]

Add missed sock updates to compat path via a new helper, which will be
used more in coming patches. (The net/core/scm.c code is left as-is here
to assist with -stable backports for the compat path.)

Cc: Christoph Hellwig <hch@lst.de>
Cc: Sargun Dhillon <sargun@sargun.me>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: stable@vger.kernel.org
Fixes: 48a87cc26c13 ("net: netprio: fd passed in SCM_RIGHTS datagram not set correctly")
Fixes: d84295067fc7 ("net: net_cls: fd passed in SCM_RIGHTS datagram not set correctly")
Acked-by: Christian Brauner <christian.brauner@ubuntu.com>
Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/net/sock.h
net/compat.c
net/core/sock.c

index 426a57874964c820cf1825c741a360932c8f8277..31198b32d9122b8ff533e2322a3ccd9b13775732 100644 (file)
@@ -779,6 +779,8 @@ static inline int sk_memalloc_socks(void)
 {
        return static_key_false(&memalloc_socks);
 }
+
+void __receive_sock(struct file *file);
 #else
 
 static inline int sk_memalloc_socks(void)
@@ -786,6 +788,8 @@ static inline int sk_memalloc_socks(void)
        return 0;
 }
 
+static inline void __receive_sock(struct file *file)
+{ }
 #endif
 
 static inline gfp_t sk_gfp_atomic(const struct sock *sk, gfp_t gfp_mask)
index d676840104556d59b2ec5cdf14523b810e9d377d..20c5e5f215f2326801abc420bfecfadb67b09bad 100644 (file)
@@ -284,6 +284,7 @@ void scm_detach_fds_compat(struct msghdr *kmsg, struct scm_cookie *scm)
                        break;
                }
                /* Bump the usage count and install the file. */
+               __receive_sock(fp[i]);
                fd_install(new_fd, get_file(fp[i]));
        }
 
index 120d5058d81ae96863b4662f4df20268af387d14..82f9a7dbea6fe9f557d7328b9b61dd4a6ead4d23 100644 (file)
@@ -2275,6 +2275,27 @@ int sock_no_mmap(struct file *file, struct socket *sock, struct vm_area_struct *
 }
 EXPORT_SYMBOL(sock_no_mmap);
 
+/*
+ * When a file is received (via SCM_RIGHTS, etc), we must bump the
+ * various sock-based usage counts.
+ */
+void __receive_sock(struct file *file)
+{
+       struct socket *sock;
+       int error;
+
+       /*
+        * The resulting value of "error" is ignored here since we only
+        * need to take action when the file is a socket and testing
+        * "sock" for NULL is sufficient.
+        */
+       sock = sock_from_file(file, &error);
+       if (sock) {
+               sock_update_netprioidx(sock->sk);
+               sock_update_classid(sock->sk);
+       }
+}
+
 ssize_t sock_no_sendpage(struct socket *sock, struct page *page, int offset, size_t size, int flags)
 {
        ssize_t res;