linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, "David S. Miller" <davem@davemloft.net>,
	Jens Axboe <axboe@kernel.dk>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.3 002/135] net: separate out the msghdr copy from ___sys_{send,recv}msg()
Date: Tue,  3 Dec 2019 23:34:02 +0100	[thread overview]
Message-ID: <20191203213006.151586635@linuxfoundation.org> (raw)
In-Reply-To: <20191203213005.828543156@linuxfoundation.org>

From: Jens Axboe <axboe@kernel.dk>

[ Upstream commit 4257c8ca13b084550574b8c9a667d9c90ff746eb ]

This is in preparation for enabling the io_uring helpers for sendmsg
and recvmsg to first copy the header for validation before continuing
with the operation.

There should be no functional changes in this patch.

Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/socket.c | 141 ++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 95 insertions(+), 46 deletions(-)

diff --git a/net/socket.c b/net/socket.c
index 6a9ab7a8b1d2c..fbe08d7df7732 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -2232,15 +2232,10 @@ static int copy_msghdr_from_user(struct msghdr *kmsg,
 	return err < 0 ? err : 0;
 }
 
-static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
-			 struct msghdr *msg_sys, unsigned int flags,
-			 struct used_address *used_address,
-			 unsigned int allowed_msghdr_flags)
+static int ____sys_sendmsg(struct socket *sock, struct msghdr *msg_sys,
+			   unsigned int flags, struct used_address *used_address,
+			   unsigned int allowed_msghdr_flags)
 {
-	struct compat_msghdr __user *msg_compat =
-	    (struct compat_msghdr __user *)msg;
-	struct sockaddr_storage address;
-	struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
 	unsigned char ctl[sizeof(struct cmsghdr) + 20]
 				__aligned(sizeof(__kernel_size_t));
 	/* 20 is size of ipv6_pktinfo */
@@ -2248,19 +2243,10 @@ static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
 	int ctl_len;
 	ssize_t err;
 
-	msg_sys->msg_name = &address;
-
-	if (MSG_CMSG_COMPAT & flags)
-		err = get_compat_msghdr(msg_sys, msg_compat, NULL, &iov);
-	else
-		err = copy_msghdr_from_user(msg_sys, msg, NULL, &iov);
-	if (err < 0)
-		return err;
-
 	err = -ENOBUFS;
 
 	if (msg_sys->msg_controllen > INT_MAX)
-		goto out_freeiov;
+		goto out;
 	flags |= (msg_sys->msg_flags & allowed_msghdr_flags);
 	ctl_len = msg_sys->msg_controllen;
 	if ((MSG_CMSG_COMPAT & flags) && ctl_len) {
@@ -2268,7 +2254,7 @@ static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
 		    cmsghdr_from_user_compat_to_kern(msg_sys, sock->sk, ctl,
 						     sizeof(ctl));
 		if (err)
-			goto out_freeiov;
+			goto out;
 		ctl_buf = msg_sys->msg_control;
 		ctl_len = msg_sys->msg_controllen;
 	} else if (ctl_len) {
@@ -2277,7 +2263,7 @@ static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
 		if (ctl_len > sizeof(ctl)) {
 			ctl_buf = sock_kmalloc(sock->sk, ctl_len, GFP_KERNEL);
 			if (ctl_buf == NULL)
-				goto out_freeiov;
+				goto out;
 		}
 		err = -EFAULT;
 		/*
@@ -2323,7 +2309,47 @@ static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
 out_freectl:
 	if (ctl_buf != ctl)
 		sock_kfree_s(sock->sk, ctl_buf, ctl_len);
-out_freeiov:
+out:
+	return err;
+}
+
+static int sendmsg_copy_msghdr(struct msghdr *msg,
+			       struct user_msghdr __user *umsg, unsigned flags,
+			       struct iovec **iov)
+{
+	int err;
+
+	if (flags & MSG_CMSG_COMPAT) {
+		struct compat_msghdr __user *msg_compat;
+
+		msg_compat = (struct compat_msghdr __user *) umsg;
+		err = get_compat_msghdr(msg, msg_compat, NULL, iov);
+	} else {
+		err = copy_msghdr_from_user(msg, umsg, NULL, iov);
+	}
+	if (err < 0)
+		return err;
+
+	return 0;
+}
+
+static int ___sys_sendmsg(struct socket *sock, struct user_msghdr __user *msg,
+			 struct msghdr *msg_sys, unsigned int flags,
+			 struct used_address *used_address,
+			 unsigned int allowed_msghdr_flags)
+{
+	struct sockaddr_storage address;
+	struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
+	ssize_t err;
+
+	msg_sys->msg_name = &address;
+
+	err = sendmsg_copy_msghdr(msg_sys, msg, flags, &iov);
+	if (err < 0)
+		return err;
+
+	err = ____sys_sendmsg(sock, msg_sys, flags, used_address,
+				allowed_msghdr_flags);
 	kfree(iov);
 	return err;
 }
@@ -2442,33 +2468,41 @@ SYSCALL_DEFINE4(sendmmsg, int, fd, struct mmsghdr __user *, mmsg,
 	return __sys_sendmmsg(fd, mmsg, vlen, flags, true);
 }
 
-static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
-			 struct msghdr *msg_sys, unsigned int flags, int nosec)
+static int recvmsg_copy_msghdr(struct msghdr *msg,
+			       struct user_msghdr __user *umsg, unsigned flags,
+			       struct sockaddr __user **uaddr,
+			       struct iovec **iov)
 {
-	struct compat_msghdr __user *msg_compat =
-	    (struct compat_msghdr __user *)msg;
-	struct iovec iovstack[UIO_FASTIOV];
-	struct iovec *iov = iovstack;
-	unsigned long cmsg_ptr;
-	int len;
 	ssize_t err;
 
-	/* kernel mode address */
-	struct sockaddr_storage addr;
-
-	/* user mode address pointers */
-	struct sockaddr __user *uaddr;
-	int __user *uaddr_len = COMPAT_NAMELEN(msg);
-
-	msg_sys->msg_name = &addr;
+	if (MSG_CMSG_COMPAT & flags) {
+		struct compat_msghdr __user *msg_compat;
 
-	if (MSG_CMSG_COMPAT & flags)
-		err = get_compat_msghdr(msg_sys, msg_compat, &uaddr, &iov);
-	else
-		err = copy_msghdr_from_user(msg_sys, msg, &uaddr, &iov);
+		msg_compat = (struct compat_msghdr __user *) umsg;
+		err = get_compat_msghdr(msg, msg_compat, uaddr, iov);
+	} else {
+		err = copy_msghdr_from_user(msg, umsg, uaddr, iov);
+	}
 	if (err < 0)
 		return err;
 
+	return 0;
+}
+
+static int ____sys_recvmsg(struct socket *sock, struct msghdr *msg_sys,
+			   struct user_msghdr __user *msg,
+			   struct sockaddr __user *uaddr,
+			   unsigned int flags, int nosec)
+{
+	struct compat_msghdr __user *msg_compat =
+					(struct compat_msghdr __user *) msg;
+	int __user *uaddr_len = COMPAT_NAMELEN(msg);
+	struct sockaddr_storage addr;
+	unsigned long cmsg_ptr;
+	int len;
+	ssize_t err;
+
+	msg_sys->msg_name = &addr;
 	cmsg_ptr = (unsigned long)msg_sys->msg_control;
 	msg_sys->msg_flags = flags & (MSG_CMSG_CLOEXEC|MSG_CMSG_COMPAT);
 
@@ -2479,7 +2513,7 @@ static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
 		flags |= MSG_DONTWAIT;
 	err = (nosec ? sock_recvmsg_nosec : sock_recvmsg)(sock, msg_sys, flags);
 	if (err < 0)
-		goto out_freeiov;
+		goto out;
 	len = err;
 
 	if (uaddr != NULL) {
@@ -2487,12 +2521,12 @@ static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
 					msg_sys->msg_namelen, uaddr,
 					uaddr_len);
 		if (err < 0)
-			goto out_freeiov;
+			goto out;
 	}
 	err = __put_user((msg_sys->msg_flags & ~MSG_CMSG_COMPAT),
 			 COMPAT_FLAGS(msg));
 	if (err)
-		goto out_freeiov;
+		goto out;
 	if (MSG_CMSG_COMPAT & flags)
 		err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
 				 &msg_compat->msg_controllen);
@@ -2500,10 +2534,25 @@ static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
 		err = __put_user((unsigned long)msg_sys->msg_control - cmsg_ptr,
 				 &msg->msg_controllen);
 	if (err)
-		goto out_freeiov;
+		goto out;
 	err = len;
+out:
+	return err;
+}
+
+static int ___sys_recvmsg(struct socket *sock, struct user_msghdr __user *msg,
+			 struct msghdr *msg_sys, unsigned int flags, int nosec)
+{
+	struct iovec iovstack[UIO_FASTIOV], *iov = iovstack;
+	/* user mode address pointers */
+	struct sockaddr __user *uaddr;
+	ssize_t err;
+
+	err = recvmsg_copy_msghdr(msg_sys, msg, flags, &uaddr, &iov);
+	if (err < 0)
+		return err;
 
-out_freeiov:
+	err = ____sys_recvmsg(sock, msg_sys, msg, uaddr, flags, nosec);
 	kfree(iov);
 	return err;
 }
-- 
2.20.1




  parent reply	other threads:[~2019-12-03 22:39 UTC|newest]

Thread overview: 140+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-03 22:34 [PATCH 5.3 000/135] 5.3.15-stable review Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 001/135] io_uring: async workers should inherit the user creds Greg Kroah-Hartman
2019-12-03 22:34 ` Greg Kroah-Hartman [this message]
2019-12-03 22:34 ` [PATCH 5.3 003/135] net: disallow ancillary data for __sys_{send,recv}msg_file() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 004/135] XArray: Fix xas_next() with a single entry at 0 Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 005/135] clk: meson: gxbb: let sar_adc_clk_div set the parent clock rate Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 006/135] clk: at91: sam9x60: fix programmable clock Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 007/135] thunderbolt: Read DP IN adapter first two dwords in one go Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 008/135] thunderbolt: Fix lockdep circular locking depedency warning Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 009/135] clocksource/drivers/mediatek: Fix error handling Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 010/135] soundwire: intel: fix intel_register_dai PDI offsets and numbers Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 011/135] ASoC: msm8916-wcd-analog: Fix RX1 selection in RDAC2 MUX Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 012/135] ASoC: compress: fix unsigned integer overflow check Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 013/135] reset: Fix memory leak in reset_control_array_put() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 014/135] clk: samsung: exynos5433: Fix error paths Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 015/135] clk: samsung: exynos542x: Move G3D subsystem clocks to its sub-CMU Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 016/135] ASoC: kirkwood: fix external clock probe defer Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 017/135] ASoC: kirkwood: fix device remove ordering Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 018/135] arm64: dts: ls1028a: fix a compatible issue Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 019/135] clk: samsung: exynos5420: Preserve PLL configuration during suspend/resume Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 020/135] pinctrl: cherryview: Allocate IRQ chip dynamic Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 021/135] ARM: dts: imx6qdl-sabreauto: Fix storm of accelerometer interrupts Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 022/135] soc: imx: gpc: fix initialiser format Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 023/135] reset: fix reset_control_ops kerneldoc comment Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 024/135] arm64: dts: imx8mm: fix compatible string for sdma Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 025/135] ASoC: SOF: ipc: Fix memory leak in sof_set_get_large_ctrl_data Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 026/135] ASoC: ti: sdma-pcm: Add back the flags parameter for non standard dma names Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 027/135] ASoC: rockchip: rockchip_max98090: Enable SHDN to fix headset detection Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 028/135] clk: at91: avoid sleeping early Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 029/135] clk: sunxi: Fix operator precedence in sunxi_divs_clk_setup Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 030/135] clk: sunxi-ng: a80: fix the zeroing of bits 16 and 18 Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 031/135] ARM: dts: sun8i-a83t-tbs-a711: Fix WiFi resume from suspend Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 032/135] bpf: Allow narrow loads of bpf_sysctl fields with offset > 0 Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 033/135] samples/bpf: fix build by setting HAVE_ATTR_TEST to zero Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 034/135] bpf: Change size to u64 for bpf_map_{area_alloc, charge_init}() Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 035/135] powerpc/bpf: Fix tail call implementation Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 036/135] idr: Fix idr_get_next_ul race with idr_remove Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 037/135] idr: Fix integer overflow in idr_for_each_entry Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 038/135] idr: Fix idr_alloc_u32 on 32-bit systems Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 039/135] x86/resctrl: Prevent NULL pointer dereference when reading mondata Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 040/135] arm64: dts: zii-ultra: fix ARM regulator GPIO handle Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 041/135] fbdev: c2p: Fix link failure on non-inlining Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 042/135] ASoC: hdac_hda: fix race in device removal Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 043/135] clk: ti: dra7-atl-clock: Remove ti_clk_add_alias call Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 044/135] clk: ti: clkctrl: Fix failed to enable error with double udelay timeout Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 045/135] net: fec: add missed clk_disable_unprepare in remove Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 046/135] netfilter: ipset: Fix nla_policies to fully support NL_VALIDATE_STRICT Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 047/135] bridge: ebtables: dont crash when using dnat target in output chains Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 048/135] netfilter: nf_tables: bogus EOPNOTSUPP on basechain update Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 049/135] netfilter: nf_tables_offload: skip EBUSY on chain update Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 050/135] stacktrace: Dont skip first entry on noncurrent tasks Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 051/135] can: peak_usb: report bus recovery as well Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 052/135] can: c_can: D_CAN: c_can_chip_config(): perform a sofware reset on open Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 053/135] can: rx-offload: can_rx_offload_queue_tail(): fix error handling, avoid skb mem leak Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 054/135] can: rx-offload: can_rx_offload_offload_one(): do not increase the skb_queue beyond skb_queue_len_max Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 055/135] can: rx-offload: can_rx_offload_offload_one(): increment rx_fifo_errors on queue overflow or OOM Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 056/135] can: rx-offload: can_rx_offload_offload_one(): use ERR_PTR() to propagate error value in case of errors Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 057/135] can: rx-offload: can_rx_offload_irq_offload_timestamp(): continue on error Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 058/135] can: rx-offload: can_rx_offload_irq_offload_fifo(): " Greg Kroah-Hartman
2019-12-03 22:34 ` [PATCH 5.3 059/135] can: flexcan: increase error counters if skb enqueueing via can_rx_offload_queue_sorted() fails Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 060/135] x86/tsc: Respect tsc command line paraemeter for clocksource_tsc_early Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 061/135] perf scripting engines: Iterate on tep event arrays directly Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 062/135] can: mcp251x: mcp251x_restart_work_handler(): Fix potential force_quit race condition Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 063/135] nvme-rdma: fix a segmentation fault during module unload Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 064/135] nvme-multipath: fix crash in nvme_mpath_clear_ctrl_paths Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 065/135] watchdog: pm8916_wdt: fix pretimeout registration flow Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 066/135] watchdog: meson: Fix the wrong value of left time Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 067/135] watchdog: imx_sc_wdt: Pretimeout should follow SCU firmware format Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 068/135] watchdog: bd70528: Add MODULE_ALIAS to allow module auto loading Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 069/135] ASoC: stm32: sai: add restriction on mmap support Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 070/135] ALSA: hda: hdmi - add Tigerlake support Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 071/135] ARM: dts: stm32: Fix CAN RAM mapping on stm32mp157c Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 072/135] ASoC: SOF: topology: Fix bytes control size checks Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 073/135] mm/gup_benchmark: fix MAP_HUGETLB case Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 074/135] scripts/gdb: fix debugging modules compiled with hot/cold partitioning Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 075/135] net: bcmgenet: use RGMII loopback for MAC reset Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 076/135] net: bcmgenet: reapply manual settings to the PHY Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 077/135] drm/amdgpu: dont schedule jobs while in reset Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 078/135] net/mlx5e: Fix eswitch debug print of max fdb flow Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 079/135] net/mlx5e: Use correct enum to determine uplink port Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 080/135] net: mscc: ocelot: fix __ocelot_rmw_ix prototype Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 081/135] drm/amd/swSMU: fix smu workload bit map error Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 082/135] drm/amdgpu: register gpu instance before fan boost feature enablment Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 083/135] drm/amdgpu: add warning for GRBM 1-cycle delay issue in gfx9 Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 084/135] net: stmmac: gmac4: bitrev32 returns u32 Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 085/135] net: stmmac: xgmac: " Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 086/135] net: stmmac: xgmac: Fix TSA selection Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 087/135] net: stmmac: xgmac: Disable Flow Control when 1 or more queues are in AV Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 088/135] ceph: return -EINVAL if given fsc mount option on kernel w/o support Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 089/135] mac80211: fix ieee80211_txq_setup_flows() failure path Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 090/135] net/fq_impl: Switch to kvmalloc() for memory allocation Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 091/135] mac80211: fix station inactive_time shortly after boot Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 092/135] block: drbd: remove a stray unlock in __drbd_send_protocol() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 093/135] pwm: bcm-iproc: Prevent unloading the driver module while in use Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 094/135] ice: fix potential infinite loop because loop counter being too small Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 095/135] iavf: initialize ITRN registers with correct values Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 096/135] i40e: Fix for ethtool -m issue on X722 NIC Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 097/135] clk: at91: fix update bit maps on CFG_MOR write Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 098/135] usb: dwc2: use a longer core rest timeout in dwc2_core_reset() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 099/135] staging: wilc1000: fix illegal memory access in wilc_parse_join_bss_param() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 100/135] staging: rtl8192e: fix potential use after free Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 101/135] staging: rtl8723bs: Drop ACPI device ids Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 102/135] staging: rtl8723bs: Add 024c:0525 to the list of SDIO device-ids Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 103/135] USB: serial: ftdi_sio: add device IDs for U-Blox C099-F9P Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 104/135] mei: bus: prefix device names on bus with the bus name Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 105/135] mei: me: add comet point V device id Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 106/135] thunderbolt: Power cycle the router if NVM authentication fails Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 107/135] xfrm: Fix memleak on xfrm state destroy Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 108/135] x86/fpu: Dont cache access to fpu_fpregs_owner_ctx Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 109/135] gve: Fix the queue page list allocated pages count Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 110/135] macvlan: schedule bc_work even if error Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 111/135] mdio_bus: dont use managed reset-controller Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 112/135] net: dsa: sja1105: fix sja1105_parse_rgmii_delays() Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 113/135] net: macb: add missed tasklet_kill Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 114/135] net: psample: fix skb_over_panic Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 115/135] net: sched: fix `tc -s class show` no bstats on class with nolock subqueues Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 116/135] openvswitch: fix flow command message size Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 117/135] sctp: Fix memory leak in sctp_sf_do_5_2_4_dupcook Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 118/135] slip: Fix use-after-free Read in slip_open Greg Kroah-Hartman
2019-12-03 22:35 ` [PATCH 5.3 119/135] sctp: cache netns in sctp_ep_common Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 120/135] openvswitch: drop unneeded BUG_ON() in ovs_flow_cmd_build_info() Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 121/135] openvswitch: remove another BUG_ON() Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 122/135] net/tls: take into account that bpf_exec_tx_verdict() may free the record Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 123/135] net/tls: free the record on encryption error Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 124/135] net: skmsg: fix TLS 1.3 crash with full sk_msg Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 125/135] selftests/tls: add a test for fragmented messages Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 126/135] net/tls: remove the dead inplace_crypto code Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 127/135] net/tls: use sg_next() to walk sg entries Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 128/135] selftests: bpf: test_sockmap: handle file creation failures gracefully Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 129/135] selftests: bpf: correct perror strings Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 130/135] tipc: fix link name length check Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 131/135] selftests: pmtu: use -oneline for ip route list cache Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 132/135] ext4: add more paranoia checking in ext4_expand_extra_isize handling Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 133/135] HID: core: check whether Usage Page item is after Usage ID items Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 134/135] platform/x86: hp-wmi: Fix ACPI errors caused by too small buffer Greg Kroah-Hartman
2019-12-03 22:36 ` [PATCH 5.3 135/135] platform/x86: hp-wmi: Fix ACPI errors caused by passing 0 as input size Greg Kroah-Hartman
2019-12-04 10:06 ` [PATCH 5.3 000/135] 5.3.15-stable review Jon Hunter
2019-12-04 17:53 ` shuah
2019-12-04 19:05 ` Guenter Roeck
2019-12-04 19:13 ` Naresh Kamboju

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191203213006.151586635@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=axboe@kernel.dk \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).