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,
	syzbot+91e6f9932ff122fa4410@syzkaller.appspotmail.com,
	Paolo Abeni <pabeni@redhat.com>,
	Eric Dumazet <edumazet@google.com>,
	"David S. Miller" <davem@davemloft.net>
Subject: [PATCH 4.15 122/168] ipv6: the entire IPv6 header chain must fit the first fragment
Date: Wed, 11 Apr 2018 00:24:24 +0200	[thread overview]
Message-ID: <20180410212805.753698588@linuxfoundation.org> (raw)
In-Reply-To: <20180410212800.144079021@linuxfoundation.org>

4.15-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Paolo Abeni <pabeni@redhat.com>


[ Upstream commit 10b8a3de603df7b96004179b1b33b1708c76d144 ]

While building ipv6 datagram we currently allow arbitrary large
extheaders, even beyond pmtu size. The syzbot has found a way
to exploit the above to trigger the following splat:

kernel BUG at ./include/linux/skbuff.h:2073!
invalid opcode: 0000 [#1] SMP KASAN
Dumping ftrace buffer:
    (ftrace buffer empty)
Modules linked in:
CPU: 1 PID: 4230 Comm: syzkaller672661 Not tainted 4.16.0-rc2+ #326
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS
Google 01/01/2011
RIP: 0010:__skb_pull include/linux/skbuff.h:2073 [inline]
RIP: 0010:__ip6_make_skb+0x1ac8/0x2190 net/ipv6/ip6_output.c:1636
RSP: 0018:ffff8801bc18f0f0 EFLAGS: 00010293
RAX: ffff8801b17400c0 RBX: 0000000000000738 RCX: ffffffff84f01828
RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffff8801b415ac18
RBP: ffff8801bc18f360 R08: ffff8801b4576844 R09: 0000000000000000
R10: ffff8801bc18f380 R11: ffffed00367aee4e R12: 00000000000000d6
R13: ffff8801b415a740 R14: dffffc0000000000 R15: ffff8801b45767c0
FS:  0000000001535880(0000) GS:ffff8801db300000(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 000000002000b000 CR3: 00000001b4123001 CR4: 00000000001606e0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
Call Trace:
  ip6_finish_skb include/net/ipv6.h:969 [inline]
  udp_v6_push_pending_frames+0x269/0x3b0 net/ipv6/udp.c:1073
  udpv6_sendmsg+0x2a96/0x3400 net/ipv6/udp.c:1343
  inet_sendmsg+0x11f/0x5e0 net/ipv4/af_inet.c:764
  sock_sendmsg_nosec net/socket.c:630 [inline]
  sock_sendmsg+0xca/0x110 net/socket.c:640
  ___sys_sendmsg+0x320/0x8b0 net/socket.c:2046
  __sys_sendmmsg+0x1ee/0x620 net/socket.c:2136
  SYSC_sendmmsg net/socket.c:2167 [inline]
  SyS_sendmmsg+0x35/0x60 net/socket.c:2162
  do_syscall_64+0x280/0x940 arch/x86/entry/common.c:287
  entry_SYSCALL_64_after_hwframe+0x42/0xb7
RIP: 0033:0x4404c9
RSP: 002b:00007ffdce35f948 EFLAGS: 00000217 ORIG_RAX: 0000000000000133
RAX: ffffffffffffffda RBX: 00000000004002c8 RCX: 00000000004404c9
RDX: 0000000000000003 RSI: 0000000020001f00 RDI: 0000000000000003
RBP: 00000000006cb018 R08: 00000000004002c8 R09: 00000000004002c8
R10: 0000000020000080 R11: 0000000000000217 R12: 0000000000401df0
R13: 0000000000401e80 R14: 0000000000000000 R15: 0000000000000000
Code: ff e8 1d 5e b9 fc e9 15 e9 ff ff e8 13 5e b9 fc e9 44 e8 ff ff e8 29
5e b9 fc e9 c0 e6 ff ff e8 3f f3 80 fc 0f 0b e8 38 f3 80 fc <0f> 0b 49 8d
87 80 00 00 00 4d 8d 87 84 00 00 00 48 89 85 20 fe
RIP: __skb_pull include/linux/skbuff.h:2073 [inline] RSP: ffff8801bc18f0f0
RIP: __ip6_make_skb+0x1ac8/0x2190 net/ipv6/ip6_output.c:1636 RSP:
ffff8801bc18f0f0

As stated by RFC 7112 section 5:

   When a host fragments an IPv6 datagram, it MUST include the entire
   IPv6 Header Chain in the First Fragment.

So this patch addresses the issue dropping datagrams with excessive
extheader length. It also updates the error path to report to the
calling socket nonnegative pmtu values.

The issue apparently predates git history.

v1 -> v2: cleanup error path, as per Eric's suggestion

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Reported-by: syzbot+91e6f9932ff122fa4410@syzkaller.appspotmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/ipv6/ip6_output.c |   13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

--- a/net/ipv6/ip6_output.c
+++ b/net/ipv6/ip6_output.c
@@ -1245,7 +1245,7 @@ static int __ip6_append_data(struct sock
 			     const struct sockcm_cookie *sockc)
 {
 	struct sk_buff *skb, *skb_prev = NULL;
-	unsigned int maxfraglen, fragheaderlen, mtu, orig_mtu;
+	unsigned int maxfraglen, fragheaderlen, mtu, orig_mtu, pmtu;
 	int exthdrlen = 0;
 	int dst_exthdrlen = 0;
 	int hh_len;
@@ -1281,6 +1281,12 @@ static int __ip6_append_data(struct sock
 		      sizeof(struct frag_hdr) : 0) +
 		     rt->rt6i_nfheader_len;
 
+	/* as per RFC 7112 section 5, the entire IPv6 Header Chain must fit
+	 * the first fragment
+	 */
+	if (headersize + transhdrlen > mtu)
+		goto emsgsize;
+
 	if (cork->length + length > mtu - headersize && ipc6->dontfrag &&
 	    (sk->sk_protocol == IPPROTO_UDP ||
 	     sk->sk_protocol == IPPROTO_RAW)) {
@@ -1296,9 +1302,8 @@ static int __ip6_append_data(struct sock
 
 	if (cork->length + length > maxnonfragsize - headersize) {
 emsgsize:
-		ipv6_local_error(sk, EMSGSIZE, fl6,
-				 mtu - headersize +
-				 sizeof(struct ipv6hdr));
+		pmtu = max_t(int, mtu - headersize + sizeof(struct ipv6hdr), 0);
+		ipv6_local_error(sk, EMSGSIZE, fl6, pmtu);
 		return -EMSGSIZE;
 	}
 

  parent reply	other threads:[~2018-04-10 22:24 UTC|newest]

Thread overview: 174+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-10 22:22 [PATCH 4.15 000/168] 4.15.17-stable review Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 001/168] i40iw: Fix sequence number for the first partial FPDU Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 002/168] i40iw: Correct Q1/XF object count equation Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 003/168] i40iw: Validate correct IRD/ORD connection parameters Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 004/168] clk: meson: mpll: use 64-bit maths in params_from_rate Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 005/168] ARM: dts: ls1021a: add "fsl,ls1021a-esdhc" compatible string to esdhc node Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 006/168] Bluetooth: Add a new 04ca:3015 QCA_ROME device Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 007/168] ipv6: Reinject IPv6 packets if IPsec policy matches after SNAT Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 008/168] thermal: power_allocator: fix one race condition issue for thermal_instances list Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 009/168] perf probe: Find versioned symbols from map Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 010/168] perf probe: Add warning message if there is unexpected event name Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 011/168] perf evsel: Fix swap for samples with raw data Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 012/168] perf evsel: Enable ignore_missing_thread for pid option Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 013/168] net: hns3: free the ring_data structrue when change tqps Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 014/168] net: hns3: fix for getting auto-negotiation state in hclge_get_autoneg Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 015/168] net: hns3: add Asym Pause support to phy default features Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 016/168] l2tp: fix missing print session offset info Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 017/168] rds; Reset rs->rs_bound_addr in rds_add_bound() failure path Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 018/168] ACPI / video: Default lcd_only to true on Win8-ready and newer machines Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 019/168] net/mlx4_en: Change default QoS settings Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 020/168] IB/mlx5: Report inner RSS capability Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 021/168] VFS: close race between getcwd() and d_move() Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 022/168] watchdog: dw_wdt: add stop watchdog operation Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 023/168] clk: divider: fix incorrect usage of container_of Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 024/168] PM / devfreq: Fix potential NULL pointer dereference in governor_store Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 025/168] gpiolib: dont dereference a desc before validation Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 026/168] net_sch: red: Fix the new offload indication Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 027/168] selftests/net: fix bugs in address and port initialization Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 028/168] thermal/drivers/hisi: Remove bogus const from function return type Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 029/168] RDMA/cma: Mark end of CMA ID messages Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 030/168] hwmon: (ina2xx) Make calibration register value fixed Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 031/168] f2fs: fix lock dependency in between dio_rwsem & i_mmap_sem Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 032/168] clk: sunxi-ng: a83t: Add M divider to TCON1 clock Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 033/168] media: videobuf2-core: dont go out of the buffer range Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 034/168] ASoC: Intel: Skylake: Disable clock gating during firmware and library download Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 035/168] ASoC: Intel: cht_bsw_rt5645: Analog Mic support Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 036/168] drm/msm: Fix NULL deref in adreno_load_gpu Greg Kroah-Hartman
2018-04-10 22:22 ` [PATCH 4.15 037/168] IB/ipoib: Fix for notify send CQ failure messages Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 038/168] spi: sh-msiof: Fix timeout failures for TX-only DMA transfers Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 039/168] RDMA/hns: Update the usage of sr_max and rr_max field Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 040/168] scsi: libiscsi: Allow sd_shutdown on bad transport Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 041/168] scsi: mpt3sas: Proper handling of set/clear of "ATA command pending" flag Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 042/168] irqchip/ompic: fix return value check in ompic_of_init() Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 043/168] irqchip/gic-v3: Fix the driver probe() fail due to disabled GICC entry Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 044/168] ACPI: EC: Fix debugfs_create_*() usage Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 045/168] mac80211: Fix setting TX power on monitor interfaces Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 046/168] vfb: fix video mode and line_length being set when loaded Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 047/168] crypto: crypto4xx - perform aead icv check in the driver Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 048/168] gpio: label descriptors using the device name Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 049/168] arm64: asid: Do not replace active_asids if already 0 Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 050/168] powernv-cpufreq: Add helper to extract pstate from PMSR Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 051/168] IB/rdmavt: Allocate CQ memory on the correct node Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 052/168] blk-mq: avoid to map CPU into stale hw queue Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 053/168] blk-mq: fix race between updating nr_hw_queues and switching io sched Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 054/168] backlight: tdo24m: Fix the SPI CS between transfers Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 055/168] nvme-fabrics: protect against module unload during create_ctrl Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 056/168] nvme-fabrics: dont check for non-NULL module in nvmf_register_transport Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 057/168] pinctrl: baytrail: Enable glitch filter for GPIOs used as interrupts Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 058/168] nvme_fcloop: disassocate local port structs Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 059/168] nvme_fcloop: fix abort race condition Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 060/168] tpm: return a TPM_RC_COMMAND_CODE response if command is not implemented Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 061/168] perf report: Fix a no annotate browser displayed issue Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 062/168] staging: lustre: disable preempt while sampling processor id Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 063/168] ASoC: Intel: sst: Fix the return value of sst_send_byte_stream_mrfld() Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 064/168] power: supply: axp288_charger: Properly stop work on probe-error / remove Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 065/168] rt2x00: do not pause queue unconditionally on error path Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 066/168] wl1251: check return from call to wl1251_acx_arp_ip_filter Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 067/168] net/mlx5: Fix race for multiple RoCE enable Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 068/168] net: hns3: Fix an error of total drop packet statistics Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 069/168] net: hns3: Fix a loop index error of tqp statistics query Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 070/168] net: hns3: Fix an error macro definition of HNS3_TQP_STAT Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 071/168] net: hns3: fix for changing MTU Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 072/168] bcache: ret IOERR when read meets metadata error Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 073/168] bcache: stop writeback thread after detaching Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 074/168] bcache: segregate flash only volume write streams Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 075/168] scsi: libsas: Use dynamic alloced work to avoid sas event lost Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 076/168] net: Fix netdev_WARN_ONCE macro Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 077/168] scsi: libsas: fix memory leak in sas_smp_get_phy_events() Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 078/168] scsi: libsas: fix error when getting phy events Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 079/168] scsi: libsas: initialize sas_phy status according to response of DISCOVER Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 080/168] net/mlx5e: IPoIB, Use correct timestamp in child receive flow Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 081/168] blk-mq: fix kernel oops in blk_mq_tag_idle() Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 082/168] tty: n_gsm: Allow ADM response in addition to UA for control dlci Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 083/168] block, bfq: put async queues for root bfq groups too Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 084/168] serdev: Fix serdev_uevent failure on ACPI enumerated serdev-controllers Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 085/168] EDAC, mv64x60: Fix an error handling path Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 086/168] uio_hv_generic: check that host supports monitor page Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 087/168] Bluetooth: hci_bcm: Mandate presence of shutdown and device wake GPIO Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 088/168] Bluetooth: hci_bcm: Validate IRQ before using it Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 089/168] Bluetooth: hci_bcm: Make shutdown and device wake GPIO optional Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 090/168] i40evf: dont rely on netif_running() outside rtnl_lock() Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 091/168] drm/amd/powerplay: fix memory leakage when reload (v2) Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 092/168] cxgb4vf: Fix SGE FL buffer initialization logic for 64K pages Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 093/168] PM / domains: Dont skip drivers ->suspend|resume_noirq() callbacks Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 094/168] scsi: megaraid_sas: Error handling for invalid ldcount provided by firmware in RAID map Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 095/168] scsi: megaraid_sas: unload flag should be set after scsi_remove_host is called Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 096/168] RDMA/cma: Fix rdma_cm path querying for RoCE Greg Kroah-Hartman
2018-04-10 22:23 ` [PATCH 4.15 097/168] gpio: thunderx: fix error return code in thunderx_gpio_probe() Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 098/168] x86/gart: Exclude GART aperture from vmcore Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 099/168] sdhci: Advertise 2.0v supply on SDIO host controller Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 100/168] ibmvnic: Dont handle RX interrupts when not up Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 101/168] Input: goodix - disable IRQs while suspended Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 102/168] mtd: mtd_oobtest: Handle bitflips during reads Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 103/168] crypto: aes-generic - build with -Os on gcc-7+ Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 104/168] perf tools: Fix copyfile_offset update of output offset Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 105/168] tcmu: release blocks for partially setup cmds Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 106/168] thermal: int3400_thermal: fix error handling in int3400_thermal_probe() Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 107/168] drm/i915/cnp: Ignore VBT request for know invalid DDC pin Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 108/168] drm/i915/cnp: Properly handle VBT ddc pin out of bounds Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 109/168] x86/microcode: Propagate return value from updating functions Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 110/168] x86/CPU: Add a microcode loader callback Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 111/168] x86/CPU: Check CPU feature bits after microcode upgrade Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 112/168] x86/microcode: Get rid of struct apply_microcode_ctx Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 113/168] x86/microcode/intel: Check microcode revision before updating sibling threads Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 114/168] x86/microcode/intel: Writeback and invalidate caches before updating microcode Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 115/168] x86/microcode: Do not upload microcode if CPUs are offline Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 116/168] x86/microcode/intel: Look into the patch cache first Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 117/168] x86/microcode: Request microcode on the BSP Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 118/168] x86/microcode: Synchronize late microcode loading Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 119/168] x86/microcode: Attempt late loading only when new microcode is present Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 120/168] x86/microcode: Fix CPU synchronization routine Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 121/168] arp: fix arp_filter on l3slave devices Greg Kroah-Hartman
2018-04-10 22:24 ` Greg Kroah-Hartman [this message]
2018-04-10 22:24 ` [PATCH 4.15 123/168] lan78xx: Crash in lan78xx_writ_reg (Workqueue: events lan78xx_deferred_multicast_write) Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 124/168] net: dsa: Discard frames from unused ports Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 125/168] net: fix possible out-of-bound read in skb_network_protocol() Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 126/168] net/ipv6: Fix route leaking between VRFs Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 127/168] net/ipv6: Increment OUTxxx counters after netfilter hook Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 128/168] netlink: make sure nladdr has correct size in netlink_connect() Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 129/168] net/mlx5e: Verify coalescing parameters in range Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 130/168] net sched actions: fix dumping which requires several messages to user space Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 131/168] net/sched: fix NULL dereference in the error path of tcf_bpf_init() Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 132/168] pptp: remove a buggy dst release in pptp_connect() Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 133/168] r8169: fix setting driver_data after register_netdev Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 134/168] sctp: do not leak kernel memory to user space Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 135/168] sctp: sctp_sockaddr_af must check minimal addr length for AF_INET6 Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 136/168] sky2: Increase D3 delay to sky2 stops working after suspend Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 137/168] vhost: correctly remove wait queue during poll failure Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 138/168] vlan: also check phy_driver ts_info for vlans real device Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 139/168] vrf: Fix use after free and double free in vrf_finish_output Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 140/168] bonding: fix the err path for dev hwaddr sync in bond_enslave Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 141/168] bonding: move dev_mc_sync after master_upper_dev_link " Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 142/168] bonding: process the err returned by dev_set_allmulti properly " Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 143/168] net: fool proof dev_valid_name() Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 144/168] ip_tunnel: better validate user provided tunnel names Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 145/168] ipv6: sit: " Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 146/168] ip6_gre: " Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 147/168] ip6_tunnel: " Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 148/168] vti6: " Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 149/168] net/mlx5e: Set EQE based as default TX interrupt moderation mode Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 150/168] net_sched: fix a missing idr_remove() in u32_delete_key() Greg Kroah-Hartman
2018-04-11 10:33   ` [PATCH 4.15/4.16 " admin
2018-04-10 22:24 ` [PATCH 4.15 151/168] net/sched: fix NULL dereference in the error path of tcf_vlan_init() Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 152/168] net/mlx5e: Avoid using the ipv6 stub in the TC offload neigh update path Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 153/168] net/mlx5e: Fix memory usage issues in offloading TC flows Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 154/168] net/sched: fix NULL dereference in the error path of tcf_sample_init() Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 155/168] nfp: use full 40 bits of the NSP buffer address Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 156/168] ipv6: sr: fix seg6 encap performances with TSO enabled Greg Kroah-Hartman
2018-04-10 22:24 ` [PATCH 4.15 157/168] net/mlx5e: Dont override vport admin link state in switchdev mode Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 158/168] net/mlx5e: Sync netdev vxlan ports at open Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 159/168] net/sched: fix NULL dereference in the error path of tunnel_key_init() Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 160/168] net/sched: fix NULL dereference on the error path of tcf_skbmod_init() Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 161/168] strparser: Fix sign of err codes Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 162/168] net/mlx4_en: Fix mixed PFC and Global pause user control requests Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 163/168] net/mlx5e: Fix traffic being dropped on VF representor Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 164/168] vhost: validate log when IOTLB is enabled Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 165/168] route: check sysctl_fib_multipath_use_neigh earlier than hash Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 166/168] team: move dev_mc_sync after master_upper_dev_link in team_port_add Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 167/168] vhost_net: add missing lock nesting notation Greg Kroah-Hartman
2018-04-10 22:25 ` [PATCH 4.15 168/168] net/mlx4_core: Fix memory leak while delete slaves resources Greg Kroah-Hartman
2018-04-11  2:42 ` [PATCH 4.15 000/168] 4.15.17-stable review kernelci.org bot
2018-04-11 17:13 ` Shuah Khan
2018-04-11 17:26 ` Guenter Roeck
2018-04-11 19:33 ` Dan Rue

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=20180410212805.753698588@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=stable@vger.kernel.org \
    --cc=syzbot+91e6f9932ff122fa4410@syzkaller.appspotmail.com \
    /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).