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, Guenter Roeck <linux@roeck-us.net>,
	Al Viro <viro@zeniv.linux.org.uk>,
	Max Filippov <jcmvbkbc@gmail.com>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Sasha Levin <sashal@kernel.org>, Tony Luck <tony.luck@intel.com>
Subject: [PATCH 5.3 060/197] uaccess: implement a proper unsafe_copy_to_user() and switch filldir over to it
Date: Sun, 27 Oct 2019 21:59:38 +0100	[thread overview]
Message-ID: <20191027203354.909493306@linuxfoundation.org> (raw)
In-Reply-To: <20191027203351.684916567@linuxfoundation.org>

From: Linus Torvalds <torvalds@linux-foundation.org>

[ Upstream commit c512c69187197fe08026cb5bbe7b9709f4f89b73 ]

In commit 9f79b78ef744 ("Convert filldir[64]() from __put_user() to
unsafe_put_user()") I made filldir() use unsafe_put_user(), which
improves code generation on x86 enormously.

But because we didn't have a "unsafe_copy_to_user()", the dirent name
copy was also done by hand with unsafe_put_user() in a loop, and it
turns out that a lot of other architectures didn't like that, because
unlike x86, they have various alignment issues.

Most non-x86 architectures trap and fix it up, and some (like xtensa)
will just fail unaligned put_user() accesses unconditionally.  Which
makes that "copy using put_user() in a loop" not work for them at all.

I could make that code do explicit alignment etc, but the architectures
that don't like unaligned accesses also don't really use the fancy
"user_access_begin/end()" model, so they might just use the regular old
__copy_to_user() interface.

So this commit takes that looping implementation, turns it into the x86
version of "unsafe_copy_to_user()", and makes other architectures
implement the unsafe copy version as __copy_to_user() (the same way they
do for the other unsafe_xyz() accessor functions).

Note that it only does this for the copying _to_ user space, and we
still don't have a unsafe version of copy_from_user().

That's partly because we have no current users of it, but also partly
because the copy_from_user() case is slightly different and cannot
efficiently be implemented in terms of a unsafe_get_user() loop (because
gcc can't do asm goto with outputs).

It would be trivial to do this using "rep movsb", which would work
really nicely on newer x86 cores, but really badly on some older ones.

Al Viro is looking at cleaning up all our user copy routines to make
this all a non-issue, but for now we have this simple-but-stupid version
for x86 that works fine for the dirent name copy case because those
names are short strings and we simply don't need anything fancier.

Fixes: 9f79b78ef744 ("Convert filldir[64]() from __put_user() to unsafe_put_user()")
Reported-by: Guenter Roeck <linux@roeck-us.net>
Reported-and-tested-by: Tony Luck <tony.luck@intel.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/x86/include/asm/uaccess.h | 23 ++++++++++++++++++
 fs/readdir.c                   | 44 ++--------------------------------
 include/linux/uaccess.h        |  6 +++--
 3 files changed, 29 insertions(+), 44 deletions(-)

diff --git a/arch/x86/include/asm/uaccess.h b/arch/x86/include/asm/uaccess.h
index 35c225ede0e4f..61d93f062a36e 100644
--- a/arch/x86/include/asm/uaccess.h
+++ b/arch/x86/include/asm/uaccess.h
@@ -734,5 +734,28 @@ do {										\
 	if (unlikely(__gu_err)) goto err_label;					\
 } while (0)
 
+/*
+ * We want the unsafe accessors to always be inlined and use
+ * the error labels - thus the macro games.
+ */
+#define unsafe_copy_loop(dst, src, len, type, label)			\
+	while (len >= sizeof(type)) {					\
+		unsafe_put_user(*(type *)src,(type __user *)dst,label);	\
+		dst += sizeof(type);					\
+		src += sizeof(type);					\
+		len -= sizeof(type);					\
+	}
+
+#define unsafe_copy_to_user(_dst,_src,_len,label)			\
+do {									\
+	char __user *__ucu_dst = (_dst);				\
+	const char *__ucu_src = (_src);					\
+	size_t __ucu_len = (_len);					\
+	unsafe_copy_loop(__ucu_dst, __ucu_src, __ucu_len, u64, label);	\
+	unsafe_copy_loop(__ucu_dst, __ucu_src, __ucu_len, u32, label);	\
+	unsafe_copy_loop(__ucu_dst, __ucu_src, __ucu_len, u16, label);	\
+	unsafe_copy_loop(__ucu_dst, __ucu_src, __ucu_len, u8, label);	\
+} while (0)
+
 #endif /* _ASM_X86_UACCESS_H */
 
diff --git a/fs/readdir.c b/fs/readdir.c
index 19bea591c3f1d..6e2623e57b2e8 100644
--- a/fs/readdir.c
+++ b/fs/readdir.c
@@ -27,53 +27,13 @@
 /*
  * Note the "unsafe_put_user() semantics: we goto a
  * label for errors.
- *
- * Also note how we use a "while()" loop here, even though
- * only the biggest size needs to loop. The compiler (well,
- * at least gcc) is smart enough to turn the smaller sizes
- * into just if-statements, and this way we don't need to
- * care whether 'u64' or 'u32' is the biggest size.
- */
-#define unsafe_copy_loop(dst, src, len, type, label) 		\
-	while (len >= sizeof(type)) {				\
-		unsafe_put_user(get_unaligned((type *)src),	\
-			(type __user *)dst, label);		\
-		dst += sizeof(type);				\
-		src += sizeof(type);				\
-		len -= sizeof(type);				\
-	}
-
-/*
- * We avoid doing 64-bit copies on 32-bit architectures. They
- * might be better, but the component names are mostly small,
- * and the 64-bit cases can end up being much more complex and
- * put much more register pressure on the code, so it's likely
- * not worth the pain of unaligned accesses etc.
- *
- * So limit the copies to "unsigned long" size. I did verify
- * that at least the x86-32 case is ok without this limiting,
- * but I worry about random other legacy 32-bit cases that
- * might not do as well.
- */
-#define unsafe_copy_type(dst, src, len, type, label) do {	\
-	if (sizeof(type) <= sizeof(unsigned long))		\
-		unsafe_copy_loop(dst, src, len, type, label);	\
-} while (0)
-
-/*
- * Copy the dirent name to user space, and NUL-terminate
- * it. This should not be a function call, since we're doing
- * the copy inside a "user_access_begin/end()" section.
  */
 #define unsafe_copy_dirent_name(_dst, _src, _len, label) do {	\
 	char __user *dst = (_dst);				\
 	const char *src = (_src);				\
 	size_t len = (_len);					\
-	unsafe_copy_type(dst, src, len, u64, label);	 	\
-	unsafe_copy_type(dst, src, len, u32, label);		\
-	unsafe_copy_type(dst, src, len, u16, label);		\
-	unsafe_copy_type(dst, src, len, u8,  label);		\
-	unsafe_put_user(0, dst, label);				\
+	unsafe_put_user(0, dst+len, label);			\
+	unsafe_copy_to_user(dst, src, len, label);		\
 } while (0)
 
 
diff --git a/include/linux/uaccess.h b/include/linux/uaccess.h
index 34a038563d979..d38051dd414fd 100644
--- a/include/linux/uaccess.h
+++ b/include/linux/uaccess.h
@@ -284,8 +284,10 @@ extern long strnlen_unsafe_user(const void __user *unsafe_addr, long count);
 #ifndef user_access_begin
 #define user_access_begin(ptr,len) access_ok(ptr, len)
 #define user_access_end() do { } while (0)
-#define unsafe_get_user(x, ptr, err) do { if (unlikely(__get_user(x, ptr))) goto err; } while (0)
-#define unsafe_put_user(x, ptr, err) do { if (unlikely(__put_user(x, ptr))) goto err; } while (0)
+#define unsafe_op_wrap(op, err) do { if (unlikely(op)) goto err; } while (0)
+#define unsafe_get_user(x,p,e) unsafe_op_wrap(__get_user(x,p),e)
+#define unsafe_put_user(x,p,e) unsafe_op_wrap(__put_user(x,p),e)
+#define unsafe_copy_to_user(d,s,l,e) unsafe_op_wrap(__copy_to_user(d,s,l),e)
 static inline unsigned long user_access_save(void) { return 0UL; }
 static inline void user_access_restore(unsigned long flags) { }
 #endif
-- 
2.20.1




  parent reply	other threads:[~2019-10-27 21:19 UTC|newest]

Thread overview: 203+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-27 20:58 [PATCH 5.3 000/197] 5.3.8-stable review Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 001/197] drm: Free the writeback_job when it with an empty fb Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 002/197] drm: Clear the fence pointer when writeback job signaled Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 003/197] clk: ti: dra7: Fix mcasp8 clock bits Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 004/197] ARM: dts: Fix wrong clocks for dra7 mcasp Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 005/197] nvme-pci: Fix a race in controller removal Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 006/197] scsi: ufs: skip shutdown if hba is not powered Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 007/197] scsi: megaraid: disable device when probe failed after enabled device Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 008/197] scsi: qla2xxx: Silence fwdump template message Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 009/197] scsi: qla2xxx: Fix unbound sleep in fcport delete path Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 010/197] scsi: qla2xxx: Fix stale mem access on driver unload Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 011/197] scsi: qla2xxx: Fix N2N link reset Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 012/197] scsi: qla2xxx: Fix N2N link up fail Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 013/197] ARM: dts: Fix gpio0 flags for am335x-icev2 Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 014/197] ARM: OMAP2+: Fix missing reset done flag for am3 and am43 Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 015/197] ARM: OMAP2+: Add missing LCDC midlemode for am335x Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 016/197] ARM: OMAP2+: Fix warnings with broken omap2_set_init_voltage() Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 017/197] nvme-tcp: fix wrong stop condition in io_work Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 018/197] nvme-pci: Save PCI state before putting drive into deepest state Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 019/197] nvme: fix an error code in nvme_init_subsystem() Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 020/197] nvme-rdma: Fix max_hw_sectors calculation Greg Kroah-Hartman
2019-10-27 20:58 ` [PATCH 5.3 021/197] Added QUIRKs for ADATA XPG SX8200 Pro 512GB Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 022/197] nvme: Add quirk for Kingston NVME SSD running FW E8FK11.T Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 023/197] nvme: allow 64-bit results in passthru commands Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 024/197] drm/komeda: prevent memory leak in komeda_wb_connector_add Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 025/197] nvme-rdma: fix possible use-after-free in connect timeout Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 026/197] blk-mq: honor IO scheduler for multiqueue devices Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 027/197] ieee802154: ca8210: prevent memory leak Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 028/197] ARM: dts: am4372: Set memory bandwidth limit for DISPC Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 029/197] net: dsa: qca8k: Use up to 7 ports for all operations Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 030/197] MIPS: dts: ar9331: fix interrupt-controller size Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 031/197] xen/efi: Set nonblocking callbacks Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 032/197] loop: change queue block size to match when using DIO Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 033/197] nl80211: fix null pointer dereference Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 034/197] mac80211: fix txq " Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 035/197] netfilter: nft_connlimit: disable bh on garbage collection Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 036/197] net: mscc: ocelot: add missing of_node_put after calling of_get_child_by_name Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 037/197] net: dsa: rtl8366rb: " Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 038/197] net: stmmac: xgmac: Not all Unicast addresses may be available Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 039/197] net: stmmac: dwmac4: Always update the MAC Hash Filter Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 040/197] net: stmmac: Correctly take timestamp for PTPv2 Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 041/197] net: stmmac: Do not stop PHY if WoL is enabled Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 042/197] net: ag71xx: fix mdio subnode support Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 043/197] RISC-V: Clear load reservations while restoring hart contexts Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 044/197] riscv: Fix memblock reservation for device tree blob Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 045/197] drm/amdgpu: fix multiple memory leaks in acp_hw_init Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 046/197] drm/amd/display: memory leak Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 047/197] mips: Loongson: Fix the link time qualifier of serial_exit() Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 048/197] net: hisilicon: Fix usage of uninitialized variable in function mdio_sc_cfg_reg_write() Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 049/197] net: stmmac: Avoid deadlock on suspend/resume Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 050/197] selftests: kvm: Fix libkvm build error Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 051/197] lib: textsearch: fix escapes in example code Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 052/197] s390/mm: fix -Wunused-but-set-variable warnings Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 053/197] r8152: Set macpassthru in reset_resume callback Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 054/197] net: phy: allow for reset line to be tied to a sleepy GPIO controller Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 055/197] net: phy: fix write to mii-ctrl1000 register Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 056/197] namespace: fix namespace.pl script to support relative paths Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 057/197] Convert filldir[64]() from __put_user() to unsafe_put_user() Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 058/197] elf: dont use MAP_FIXED_NOREPLACE for elf executable mappings Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 059/197] Make filldir[64]() verify the directory entry filename is valid Greg Kroah-Hartman
2019-10-27 20:59 ` Greg Kroah-Hartman [this message]
2019-10-27 20:59 ` [PATCH 5.3 061/197] filldir[64]: remove WARN_ON_ONCE() for bad directory entries Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 062/197] net_sched: fix backward compatibility for TCA_KIND Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 063/197] net_sched: fix backward compatibility for TCA_ACT_KIND Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 064/197] libata/ahci: Fix PCS quirk application Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 065/197] md/raid0: fix warning message for parameter default_layout Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 066/197] Revert "drm/radeon: Fix EEH during kexec" Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 067/197] ocfs2: fix panic due to ocfs2_wq is null Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 068/197] nvme-pci: Set the prp2 correctly when using more than 4k page Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 069/197] ipv4: fix race condition between route lookup and invalidation Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 070/197] ipv4: Return -ENETUNREACH if we cant create route but saddr is valid Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 071/197] net: avoid potential infinite loop in tc_ctl_action() Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 072/197] net: bcmgenet: Fix RGMII_MODE_EN value for GENET v1/2/3 Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 073/197] net: bcmgenet: Set phydev->dev_flags only for internal PHYs Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 074/197] net: i82596: fix dma_alloc_attr for sni_82596 Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 075/197] net/ibmvnic: Fix EOI when running in XIVE mode Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 076/197] net: ipv6: fix listify ip6_rcv_finish in case of forwarding Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 077/197] net: stmmac: disable/enable ptp_ref_clk in suspend/resume flow Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 078/197] rxrpc: Fix possible NULL pointer access in ICMP handling Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 079/197] sched: etf: Fix ordering of packets with same txtime Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 080/197] sctp: change sctp_prot .no_autobind with true Greg Kroah-Hartman
2019-10-27 20:59 ` [PATCH 5.3 081/197] net: aquantia: temperature retrieval fix Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 082/197] net: aquantia: when cleaning hw cache it should be toggled Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 083/197] net: aquantia: do not pass lro session with invalid tcp checksum Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 084/197] net: aquantia: correctly handle macvlan and multicast coexistence Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 085/197] net: phy: micrel: Discern KSZ8051 and KSZ8795 PHYs Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 086/197] net: phy: micrel: Update KSZ87xx PHY name Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 087/197] net: avoid errors when trying to pop MLPS header on non-MPLS packets Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 088/197] net/sched: fix corrupted L2 header with MPLS push and pop actions Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 089/197] netdevsim: Fix error handling in nsim_fib_init and nsim_fib_exit Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 090/197] net: ethernet: broadcom: have drivers select DIMLIB as needed Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 091/197] net: phy: Fix "link partner" information disappear issue Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 092/197] LSM: SafeSetID: Stop releasing uninitialized ruleset Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 093/197] rxrpc: use rcu protection while reading sk->sk_user_data Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 094/197] io_uring: fix bad inflight accounting for SETUP_IOPOLL|SETUP_SQTHREAD Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 095/197] io_uring: Fix corrupted user_data Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 096/197] USB: legousbtower: fix memleak on disconnect Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 097/197] ALSA: hda/realtek - Add support for ALC711 Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 098/197] ALSA: hda/realtek - Enable headset mic on Asus MJ401TA Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 099/197] ALSA: usb-audio: Disable quirks for BOSS Katana amplifiers Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 100/197] ALSA: hda - Force runtime PM on Nvidia HDMI codecs Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 101/197] usb: udc: lpc32xx: fix bad bit shift operation Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 102/197] USB: serial: ti_usb_3410_5052: fix port-close races Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 103/197] USB: ldusb: fix memleak on disconnect Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 104/197] USB: usblp: fix use-after-free " Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 105/197] USB: ldusb: fix read info leaks Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 106/197] binder: Dont modify VMA bounds in ->mmap handler Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 107/197] MIPS: tlbex: Fix build_restore_pagemask KScratch restore Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 108/197] staging: wlan-ng: fix exit return when sme->key_idx >= NUM_WEPKEYS Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 109/197] scsi: zfcp: fix reaction on bit error threshold notification Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 110/197] scsi: sd: Ignore a failure to sync cache due to lack of authorization Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 111/197] scsi: core: save/restore command resid for error handling Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 112/197] scsi: core: try to get module before removing device Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 113/197] scsi: ch: Make it possible to open a ch device multiple times again Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 114/197] Revert "Input: elantech - enable SMBus on new (2018+) systems" Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 115/197] Input: da9063 - fix capability and drop KEY_SLEEP Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 116/197] Input: synaptics-rmi4 - avoid processing unknown IRQs Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 117/197] Input: st1232 - fix reporting multitouch coordinates Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 118/197] ASoC: rsnd: Reinitialize bit clock inversion flag for every format setting Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 119/197] ACPI: CPPC: Set pcc_data[pcc_ss_id] to NULL in acpi_cppc_processor_exit() Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 120/197] ACPI: NFIT: Fix unlock on error in scrub_show() Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 121/197] iwlwifi: pcie: change qu with jf devices to use qu configuration Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 122/197] cfg80211: wext: avoid copying malformed SSIDs Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 123/197] mac80211: Reject malformed SSID elements Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 124/197] drm/edid: Add 6 bpc quirk for SDC panel in Lenovo G50 Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 125/197] drm/ttm: Restore ttm prefaulting Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 126/197] drm/panfrost: Handle resetting on timeout better Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 127/197] drm/amdgpu: Bail earlier when amdgpu.cik_/si_support is not set to 1 Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 128/197] drm/amdgpu/sdma5: fix mask value of POLL_REGMEM packet for pipe sync Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 129/197] drm/i915/userptr: Never allow userptr into the mappable GGTT Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 130/197] drm/i915: Favor last VBT child device with conflicting AUX ch/DDC pin Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 131/197] drm/amdgpu/vce: fix allocation size in enc ring test Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 132/197] drm/amdgpu/vcn: " Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 133/197] drm/amdgpu/uvd6: fix allocation size in enc ring test (v2) Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 134/197] drm/amdgpu/uvd7: " Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 135/197] drm/amdgpu: user pages array memory leak fix Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 136/197] drivers/base/memory.c: dont access uninitialized memmaps in soft_offline_page_store() Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 137/197] fs/proc/page.c: dont access uninitialized memmaps in fs/proc/page.c Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 138/197] io_uring: Fix broken links with offloading Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 139/197] io_uring: Fix race for sqes with userspace Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 140/197] io_uring: used cached copies of sq->dropped and cq->overflow Greg Kroah-Hartman
2019-10-27 21:00 ` [PATCH 5.3 141/197] mmc: mxs: fix flags passed to dmaengine_prep_slave_sg Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 142/197] mmc: cqhci: Commit descriptors before setting the doorbell Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 143/197] mmc: sdhci-omap: Fix Tuning procedure for temperatures < -20C Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 144/197] mm/memory-failure.c: dont access uninitialized memmaps in memory_failure() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 145/197] mm/slub: fix a deadlock in show_slab_objects() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 146/197] mm/page_owner: dont access uninitialized memmaps when reading /proc/pagetypeinfo Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 149/197] mm: memcg/slab: fix panic in __free_slab() caused by premature memcg pointer release Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 150/197] mm, compaction: fix wrong pfn handling in __reset_isolation_pfn() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 151/197] mm: memcg: get number of pages on the LRU list in memcgroup base on lru_zone_size Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 152/197] mm: memblock: do not enforce current limit for memblock_phys* family Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 153/197] hugetlbfs: dont access uninitialized memmaps in pfn_range_valid_gigantic() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 154/197] mm/memory-failure: poison read receives SIGKILL instead of SIGBUS if mmaped more than once Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 155/197] zram: fix race between backing_dev_show and backing_dev_store Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 156/197] xtensa: drop EXPORT_SYMBOL for outs*/ins* Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 157/197] xtensa: fix change_bit in exclusive access option Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 158/197] s390/zcrypt: fix memleak at release Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 159/197] s390/kaslr: add support for R_390_GLOB_DAT relocation type Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 160/197] lib/vdso: Make clock_getres() POSIX compliant again Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 161/197] parisc: Fix vmap memory leak in ioremap()/iounmap() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 162/197] EDAC/ghes: Fix Use after free in ghes_edac remove path Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 163/197] arm64: KVM: Trap VM ops when ARM64_WORKAROUND_CAVIUM_TX2_219_TVM is set Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 164/197] arm64: Avoid Cavium TX2 erratum 219 when switching TTBR Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 165/197] arm64: Enable workaround for Cavium TX2 erratum 219 when running SMT Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 166/197] arm64: Allow CAVIUM_TX2_ERRATUM_219 to be selected Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 167/197] CIFS: avoid using MID 0xFFFF Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 168/197] cifs: Fix missed free operations Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 169/197] CIFS: Fix use after free of file info structures Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 170/197] perf/aux: Fix AUX output stopping Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 171/197] tracing: Fix race in perf_trace_buf initialization Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 172/197] fs/dax: Fix pmd vs pte conflict detection Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 173/197] dm cache: fix bugs when a GFP_NOWAIT allocation fails Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 174/197] irqchip/sifive-plic: Switch to fasteoi flow Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 175/197] x86/boot/64: Make level2_kernel_pgt pages invalid outside kernel area Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 176/197] x86/apic/x2apic: Fix a NULL pointer deref when handling a dying cpu Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 177/197] x86/hyperv: Make vapic support x2apic mode Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 178/197] pinctrl: cherryview: restore Strago DMI workaround for all versions Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 179/197] pinctrl: armada-37xx: fix control of pins 32 and up Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 180/197] pinctrl: armada-37xx: swap polarity on LED group Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 181/197] btrfs: block-group: Fix a memory leak due to missing btrfs_put_block_group() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 182/197] Btrfs: add missing extents release on file extent cluster relocation error Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 183/197] btrfs: dont needlessly create extent-refs kernel thread Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 184/197] Btrfs: fix qgroup double free after failure to reserve metadata for delalloc Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 185/197] Btrfs: check for the full sync flag while holding the inode lock during fsync Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 186/197] btrfs: tracepoints: Fix wrong parameter order for qgroup events Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 187/197] btrfs: tracepoints: Fix bad entry members of " Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 188/197] KVM: PPC: Book3S HV: XIVE: Ensure VP isnt already in use Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 189/197] memstick: jmb38x_ms: Fix an error handling path in jmb38x_ms_probe() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 190/197] cpufreq: Avoid cpufreq_suspend() deadlock on system shutdown Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 191/197] ceph: just skip unrecognized info in ceph_reply_info_extra Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 192/197] xen/netback: fix error path of xenvif_connect_data() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 193/197] PCI: PM: Fix pci_power_up() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 194/197] opp: of: drop incorrect lockdep_assert_held() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 195/197] of: reserved_mem: add missing of_node_put() for proper ref-counting Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 196/197] blk-rq-qos: fix first node deletion of rq_qos_del() Greg Kroah-Hartman
2019-10-27 21:01 ` [PATCH 5.3 197/197] RDMA/cxgb4: Do not dma memory off of the stack Greg Kroah-Hartman
2019-10-28  2:15 ` [PATCH 5.3 000/197] 5.3.8-stable review kernelci.org bot
2019-10-28  4:38 ` Didik Setiawan
2019-10-28 14:00   ` Greg Kroah-Hartman
2019-10-28 13:39 ` Guenter Roeck
2019-10-28 21:48 ` Jon Hunter
2019-10-29  8:11   ` Greg Kroah-Hartman
2019-10-29 13:03 ` 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=20191027203354.909493306@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jcmvbkbc@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tony.luck@intel.com \
    --cc=torvalds@linux-foundation.org \
    --cc=viro@zeniv.linux.org.uk \
    /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).