* [PATCH net-next 00/17] add some features and fix some bugs for HNS3 driver
From: Lipeng @ 2017-12-18 9:31 UTC (permalink / raw)
To: davem; +Cc: netdev, linux-kernel, linuxarm, salil.mehta, lipeng321
This patchset adds some new feature support and fixes some bugs:
[Patch 1/17 - 5/17] add the support to modify/query the tqp number
through ethtool -L/l command, and also fix some related bugs for
change tqp number.
[Patch 6/17 - 9-17] add support vlan tag offload on tx&&rx direction
for pf, and fix some related bugs.
[patch 10/17 - 11/17] fix bugs for auto negotiation.
[patch 12/17] adds support for ethtool command set_pauseparam.
[patch 13/17 - 14/17] add support to update flow control settings after
autoneg.
[patch 15/17 - 17/17] fix some other bugs in net-next.
Fuyun Liang (3):
net: hns3: cleanup mac auto-negotiation state query
net: hns3: fix for getting auto-negotiation state in hclge_get_autoneg
net: hns3: add Asym Pause support to phy default features
Lipeng (13):
net: hns3: add support to query tqps number
net: hns3: add support to modify tqps number
net: hns3: change the returned tqp number by ethtool -x
net: hns3: Free the ring_data structrue when change tqps
net: hns3: Add a mask initialization for mac_vlan table
net: hns3: Add vlan offload config command
net: hns3: Add ethtool related offload command
net: hns3: Add handling vlan tag offload in bd
net: hns3: add support for set_pauseparam
net: hns3: add support to update flow control settings after autoneg
net: hns3: add support for querying advertised pause frame by ethtool
ethx
net: hns3: Increase the default depth of bucket for TM shaper
net: hns3: change TM sched mode to TC-based mode when SRIOV enabled
qumingguang (1):
net: hns3: Get rss_size_max from configuration but not hardcode
drivers/net/ethernet/hisilicon/hns3/hnae3.h | 10 +
drivers/net/ethernet/hisilicon/hns3/hns3_enet.c | 225 ++++++++-
drivers/net/ethernet/hisilicon/hns3/hns3_enet.h | 2 +
drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c | 41 +-
.../net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h | 57 +++
.../ethernet/hisilicon/hns3/hns3pf/hclge_main.c | 513 +++++++++++++++++++--
.../ethernet/hisilicon/hns3/hns3pf/hclge_main.h | 38 ++
.../ethernet/hisilicon/hns3/hns3pf/hclge_mdio.c | 5 +
.../net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c | 6 +-
.../net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h | 1 +
10 files changed, 854 insertions(+), 44 deletions(-)
--
1.9.1
^ permalink raw reply
* Re: [PATCH bpf 3/3] bpf: fix broken BPF selftest build
From: Hendrik Brueckner @ 2017-12-18 9:28 UTC (permalink / raw)
To: Daniel Borkmann
Cc: ast, netdev, Hendrik Brueckner, Arnaldo Carvalho de Melo,
linux-s390
In-Reply-To: <20171212012532.30268-4-daniel@iogearbox.net>
Hi Daniel,
On Tue, Dec 12, 2017 at 02:25:32AM +0100, Daniel Borkmann wrote:
> At least on x86_64, the kernel's BPF selftests seemed to have stopped
> to build due to 618e165b2a8e ("selftests/bpf: sync kernel headers and
> introduce arch support in Makefile"):
>
> [...]
> In file included from test_verifier.c:29:0:
> ../../../include/uapi/linux/bpf_perf_event.h:11:32:
> fatal error: asm/bpf_perf_event.h: No such file or directory
> #include <asm/bpf_perf_event.h>
> ^
> compilation terminated.
> [...]
>
> While pulling in tools/arch/*/include/uapi/asm/bpf_perf_event.h seems
> to work fine, there's no automated fall-back logic right now that would
> do the same out of tools/include/uapi/asm-generic/bpf_perf_event.h. The
> usual convention today is to add a include/[uapi/]asm/ equivalent that
> would pull in the correct arch header or generic one as fall-back, all
> ifdef'ed based on compiler target definition. It's similarly done also
> in other cases such as tools/include/asm/barrier.h, thus adapt the same
> here.
>
> Fixes: 618e165b2a8e ("selftests/bpf: sync kernel headers and introduce arch support in Makefile")
> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
> Cc: Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
> Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
> Acked-by: Alexei Starovoitov <ast@kernel.org>
> ---
> tools/include/uapi/asm/bpf_perf_event.h | 7 +++++++
> tools/testing/selftests/bpf/Makefile | 13 +------------
> 2 files changed, 8 insertions(+), 12 deletions(-)
> create mode 100644 tools/include/uapi/asm/bpf_perf_event.h
>
> diff --git a/tools/include/uapi/asm/bpf_perf_event.h b/tools/include/uapi/asm/bpf_perf_event.h
> new file mode 100644
> index 0000000..13a5853
> --- /dev/null
> +++ b/tools/include/uapi/asm/bpf_perf_event.h
> @@ -0,0 +1,7 @@
> +#if defined(__aarch64__)
> +#include "../../arch/arm64/include/uapi/asm/bpf_perf_event.h"
> +#elif defined(__s390__)
> +#include "../../arch/s390/include/uapi/asm/bpf_perf_event.h"
> +#else
> +#include <uapi/asm-generic/bpf_perf_event.h>
> +#endif
> diff --git a/tools/testing/selftests/bpf/Makefile b/tools/testing/selftests/bpf/Makefile
> index 21a2d76..792af7c 100644
> --- a/tools/testing/selftests/bpf/Makefile
> +++ b/tools/testing/selftests/bpf/Makefile
> @@ -1,19 +1,8 @@
> # SPDX-License-Identifier: GPL-2.0
>
> -ifeq ($(srctree),)
> -srctree := $(patsubst %/,%,$(dir $(CURDIR)))
> -srctree := $(patsubst %/,%,$(dir $(srctree)))
> -srctree := $(patsubst %/,%,$(dir $(srctree)))
> -srctree := $(patsubst %/,%,$(dir $(srctree)))
> -endif
> -include $(srctree)/tools/scripts/Makefile.arch
> -
> -$(call detected_var,SRCARCH)
> -
> LIBDIR := ../../../lib
> BPFDIR := $(LIBDIR)/bpf
> APIDIR := ../../../include/uapi
> -ASMDIR:= ../../../arch/$(ARCH)/include/uapi
This is actually necessary on s390:
cc -Wall -O2 -I../../../include/uapi -I../../../lib -I../../../../include/generated -I../../../include test_verifier.c /root/git/linux/tools/testing/selftests/bpf/libbpf.a /root/git/linux/tools/testing/selftests/bpf/cgroup_helpers.c -lcap -lelf -o /root/git/linux/tools/testing/selftests/bpf/test_verifier
In file included from ../../../include/uapi/asm/bpf_perf_event.h:4:0,
from ../../../include/uapi/linux/bpf_perf_event.h:11,
from test_verifier.c:29:
../../../include/uapi/../../arch/s390/include/uapi/asm/bpf_perf_event.h:7:9: error: unknown type name 'user_pt_regs'
typedef user_pt_regs bpf_user_pt_regs_t;
^~~~~~~~~~~~
make: *** [../lib.mk:109: /root/git/linux/tools/testing/selftests/bpf/test_verifier] Error 1
The s390 bpf_perf_event.h header file contains an #include for asm/ptrace.h
that defines the user_pt_regs (introduce with my patch set). For building,
the ptrace.h header file from the tooling must be used, not the local
installed version.
Including the ptrace.h header file directly solves the issue. Feel free to
merge below snippet into your patch.
Thanks and kind regards,
Hendrik
---
diff --git a/tools/arch/s390/include/uapi/asm/bpf_perf_event.h b/tools/arch/s390/include/uapi/asm/bpf_perf_event.h
index cefe7c7cd4f6..0a8e37a519f2 100644
--- a/tools/arch/s390/include/uapi/asm/bpf_perf_event.h
+++ b/tools/arch/s390/include/uapi/asm/bpf_perf_event.h
@@ -2,7 +2,7 @@
#ifndef _UAPI__ASM_BPF_PERF_EVENT_H__
#define _UAPI__ASM_BPF_PERF_EVENT_H__
-#include <asm/ptrace.h>
+#include "ptrace.h"
typedef user_pt_regs bpf_user_pt_regs_t;
^ permalink raw reply related
* [net-next: PATCH 6/8] net: mvpp2: use device_*/fwnode_* APIs instead of of_*
From: Marcin Wojtas @ 2017-12-18 9:18 UTC (permalink / raw)
To: linux-kernel, linux-arm-kernel, netdev
Cc: davem, linux, rafael.j.wysocki, andrew, f.fainelli,
antoine.tenart, thomas.petazzoni, gregory.clement,
ezequiel.garcia, nadavh, neta, ard.biesheuvel, mw, jaz, tn
In-Reply-To: <1513588684-15647-1-git-send-email-mw@semihalf.com>
OF functions can be used only for the driver using DT.
As a preparation for introducing ACPI support in mvpp2
driver, use struct fwnode_handle in order to obtain
properties from the hardware description.
Because there is no equivalent for for_each_available_child_of_node(),
use device_for_each_child_node() and check the port availability
inside the mvpp2_port_probe() routine.
This patch replaces of_* function with device_*/fwnode_*
where possible in the mvpp2.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
---
drivers/net/ethernet/marvell/mvpp2.c | 47 +++++++++++---------
1 file changed, 26 insertions(+), 21 deletions(-)
diff --git a/drivers/net/ethernet/marvell/mvpp2.c b/drivers/net/ethernet/marvell/mvpp2.c
index 7f42d90..537474f 100644
--- a/drivers/net/ethernet/marvell/mvpp2.c
+++ b/drivers/net/ethernet/marvell/mvpp2.c
@@ -932,6 +932,9 @@ struct mvpp2_port {
struct mvpp2 *priv;
+ /* Firmware node associated to the port */
+ struct fwnode_handle *fwnode;
+
/* Per-port registers' base address */
void __iomem *base;
void __iomem *stats_base;
@@ -7711,17 +7714,16 @@ static bool mvpp2_port_has_tx_irqs(struct mvpp2 *priv,
}
static void mvpp2_port_copy_mac_addr(struct net_device *dev, struct mvpp2 *priv,
- struct device_node *port_node,
+ struct fwnode_handle *fwnode,
char **mac_from)
{
struct mvpp2_port *port = netdev_priv(dev);
char hw_mac_addr[ETH_ALEN] = {0};
- const char *dt_mac_addr;
+ char fw_mac_addr[ETH_ALEN];
- dt_mac_addr = of_get_mac_address(port_node);
- if (dt_mac_addr && is_valid_ether_addr(dt_mac_addr)) {
- *mac_from = "device tree";
- ether_addr_copy(dev->dev_addr, dt_mac_addr);
+ if (fwnode_get_mac_address(fwnode, fw_mac_addr, ETH_ALEN)) {
+ *mac_from = "firmware node";
+ ether_addr_copy(dev->dev_addr, fw_mac_addr);
return;
}
@@ -7740,13 +7742,14 @@ static void mvpp2_port_copy_mac_addr(struct net_device *dev, struct mvpp2 *priv,
/* Ports initialization */
static int mvpp2_port_probe(struct platform_device *pdev,
- struct device_node *port_node,
+ struct fwnode_handle *port_fwnode,
struct mvpp2 *priv)
{
struct device_node *phy_node;
struct phy *comphy;
struct mvpp2_port *port;
struct mvpp2_port_pcpu *port_pcpu;
+ struct device_node *port_node = to_of_node(port_fwnode);
struct net_device *dev;
struct resource *res;
char *mac_from = "";
@@ -7757,6 +7760,10 @@ static int mvpp2_port_probe(struct platform_device *pdev,
int phy_mode;
int err, i, cpu;
+ /* Silently exit, if the port node turns out to be disabled. */
+ if (!fwnode_device_is_available(port_fwnode))
+ return 0;
+
has_tx_irqs = mvpp2_port_has_tx_irqs(priv, port_node);
if (!has_tx_irqs)
@@ -7773,7 +7780,7 @@ static int mvpp2_port_probe(struct platform_device *pdev,
return -ENOMEM;
phy_node = of_parse_phandle(port_node, "phy", 0);
- phy_mode = of_get_phy_mode(port_node);
+ phy_mode = fwnode_get_phy_mode(port_fwnode);
if (phy_mode < 0) {
dev_err(&pdev->dev, "incorrect phy mode\n");
err = phy_mode;
@@ -7789,7 +7796,7 @@ static int mvpp2_port_probe(struct platform_device *pdev,
comphy = NULL;
}
- if (of_property_read_u32(port_node, "port-id", &id)) {
+ if (fwnode_property_read_u32(port_fwnode, "port-id", &id)) {
err = -EINVAL;
dev_err(&pdev->dev, "missing port-id value\n");
goto err_free_netdev;
@@ -7820,7 +7827,7 @@ static int mvpp2_port_probe(struct platform_device *pdev,
/* the link irq is optional */
port->link_irq = 0;
- if (of_property_read_bool(port_node, "marvell,loopback"))
+ if (fwnode_property_read_bool(port_fwnode, "marvell,loopback"))
port->flags |= MVPP2_F_LOOPBACK;
port->id = id;
@@ -7845,8 +7852,8 @@ static int mvpp2_port_probe(struct platform_device *pdev,
MVPP21_MIB_COUNTERS_OFFSET +
port->gop_id * MVPP21_MIB_COUNTERS_PORT_SZ;
} else {
- if (of_property_read_u32(port_node, "gop-port-id",
- &port->gop_id)) {
+ if (fwnode_property_read_u32(port_fwnode, "gop-port-id",
+ &port->gop_id)) {
err = -EINVAL;
dev_err(&pdev->dev, "missing gop-port-id value\n");
goto err_deinit_qvecs;
@@ -7876,7 +7883,7 @@ static int mvpp2_port_probe(struct platform_device *pdev,
mutex_init(&port->gather_stats_lock);
INIT_DELAYED_WORK(&port->stats_work, mvpp2_gather_hw_statistics);
- mvpp2_port_copy_mac_addr(dev, priv, port_node, &mac_from);
+ mvpp2_port_copy_mac_addr(dev, priv, port_fwnode, &mac_from);
port->tx_ring_size = MVPP2_MAX_TXD_DFLT;
port->rx_ring_size = MVPP2_MAX_RXD_DFLT;
@@ -8194,8 +8201,7 @@ static int mvpp2_init(struct platform_device *pdev, struct mvpp2 *priv)
static int mvpp2_probe(struct platform_device *pdev)
{
- struct device_node *dn = pdev->dev.of_node;
- struct device_node *port_node;
+ struct fwnode_handle *port_fwnode;
struct mvpp2 *priv;
struct resource *res;
void __iomem *base;
@@ -8315,8 +8321,8 @@ static int mvpp2_probe(struct platform_device *pdev)
}
/* Initialize ports */
- for_each_available_child_of_node(dn, port_node) {
- err = mvpp2_port_probe(pdev, port_node, priv);
+ device_for_each_child_node(&pdev->dev, port_fwnode) {
+ err = mvpp2_port_probe(pdev, port_fwnode, priv);
if (err < 0)
goto err_port_probe;
}
@@ -8347,7 +8353,7 @@ static int mvpp2_probe(struct platform_device *pdev)
err_port_probe:
i = 0;
- for_each_available_child_of_node(dn, port_node) {
+ device_for_each_child_node(&pdev->dev, port_fwnode) {
if (priv->port_list[i])
mvpp2_port_remove(priv->port_list[i]);
i++;
@@ -8366,14 +8372,13 @@ static int mvpp2_probe(struct platform_device *pdev)
static int mvpp2_remove(struct platform_device *pdev)
{
struct mvpp2 *priv = platform_get_drvdata(pdev);
- struct device_node *dn = pdev->dev.of_node;
- struct device_node *port_node;
+ struct fwnode_handle *port_fwnode;
int i = 0;
flush_workqueue(priv->stats_queue);
destroy_workqueue(priv->stats_queue);
- for_each_available_child_of_node(dn, port_node) {
+ device_for_each_child_node(&pdev->dev, port_fwnode) {
if (priv->port_list[i]) {
mutex_destroy(&priv->port_list[i]->gather_stats_lock);
mvpp2_port_remove(priv->port_list[i]);
--
2.7.4
^ permalink raw reply related
* [net-next: PATCH 8/8] net: mvpp2: enable ACPI support in the driver
From: Marcin Wojtas @ 2017-12-18 9:18 UTC (permalink / raw)
To: linux-kernel, linux-arm-kernel, netdev
Cc: davem, linux, rafael.j.wysocki, andrew, f.fainelli,
antoine.tenart, thomas.petazzoni, gregory.clement,
ezequiel.garcia, nadavh, neta, ard.biesheuvel, mw, jaz, tn
In-Reply-To: <1513588684-15647-1-git-send-email-mw@semihalf.com>
This patch introduces an alternative way of obtaining resources - via
ACPI tables provided by firmware. Enabling coexistence with the DT
support, in addition to the OF_*->device_*/fwnode_* API replacement,
required following steps to be taken:
* Add mvpp2_acpi_match table
* Omit clock configuration and obtain tclk from the property - in ACPI
world, the firmware is responsible for clock maintenance.
* Disable comphy and syscon handling as they are not available for ACPI.
* Modify way of obtaining interrupts - with ACPI they are resources
bound to struct platform_device and it's not possible to obtain
them directly from the child node. Hence a formula is used, depending
on the port_id and number of possible CPUs.
Moreover when booting with ACPI MVPP2_QDIST_MULTI_MODE is picked by
default, as there is no need to keep any kind of the backward
compatibility.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
---
drivers/net/ethernet/marvell/mvpp2.c | 130 +++++++++++++-------
1 file changed, 87 insertions(+), 43 deletions(-)
diff --git a/drivers/net/ethernet/marvell/mvpp2.c b/drivers/net/ethernet/marvell/mvpp2.c
index 4e61ce7..762a44e 100644
--- a/drivers/net/ethernet/marvell/mvpp2.c
+++ b/drivers/net/ethernet/marvell/mvpp2.c
@@ -10,6 +10,7 @@
* warranty of any kind, whether express or implied.
*/
+#include <linux/acpi.h>
#include <linux/kernel.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
@@ -7477,7 +7478,8 @@ static int mvpp2_simple_queue_vectors_init(struct mvpp2_port *port,
return 0;
}
-static int mvpp2_multi_queue_vectors_init(struct mvpp2_port *port,
+static int mvpp2_multi_queue_vectors_init(struct platform_device *pdev,
+ struct mvpp2_port *port,
struct device_node *port_node)
{
struct mvpp2_queue_vector *v;
@@ -7510,7 +7512,11 @@ static int mvpp2_multi_queue_vectors_init(struct mvpp2_port *port,
strncpy(irqname, "rx-shared", sizeof(irqname));
}
- v->irq = of_irq_get_byname(port_node, irqname);
+ if (port_node)
+ v->irq = of_irq_get_byname(port_node, irqname);
+ else
+ v->irq = platform_get_irq(pdev, port->id *
+ (port->nqvecs + 2) + i);
if (v->irq <= 0) {
ret = -EINVAL;
goto err;
@@ -7528,11 +7534,12 @@ static int mvpp2_multi_queue_vectors_init(struct mvpp2_port *port,
return ret;
}
-static int mvpp2_queue_vectors_init(struct mvpp2_port *port,
+static int mvpp2_queue_vectors_init(struct platform_device *pdev,
+ struct mvpp2_port *port,
struct device_node *port_node)
{
if (port->has_tx_irqs)
- return mvpp2_multi_queue_vectors_init(port, port_node);
+ return mvpp2_multi_queue_vectors_init(pdev, port, port_node);
else
return mvpp2_simple_queue_vectors_init(port, port_node);
}
@@ -7753,7 +7760,7 @@ static int mvpp2_port_probe(struct platform_device *pdev,
struct fwnode_handle *port_fwnode,
struct mvpp2 *priv)
{
- struct phy *comphy;
+ struct phy *comphy = NULL;
struct mvpp2_port *port;
struct mvpp2_port_pcpu *port_pcpu;
struct device_node *port_node = to_of_node(port_fwnode);
@@ -7772,7 +7779,12 @@ static int mvpp2_port_probe(struct platform_device *pdev,
if (!fwnode_device_is_available(port_fwnode))
return 0;
- has_tx_irqs = mvpp2_port_has_tx_irqs(priv, port_node);
+ if (port_node) {
+ has_tx_irqs = mvpp2_port_has_tx_irqs(priv, port_node);
+ } else {
+ has_tx_irqs = true;
+ queue_mode = MVPP2_QDIST_MULTI_MODE;
+ }
if (!has_tx_irqs)
queue_mode = MVPP2_QDIST_SINGLE_MODE;
@@ -7794,13 +7806,15 @@ static int mvpp2_port_probe(struct platform_device *pdev,
goto err_free_netdev;
}
- comphy = devm_of_phy_get(&pdev->dev, port_node, NULL);
- if (IS_ERR(comphy)) {
- if (PTR_ERR(comphy) == -EPROBE_DEFER) {
- err = -EPROBE_DEFER;
- goto err_free_netdev;
+ if (port_node) {
+ comphy = devm_of_phy_get(&pdev->dev, port_node, NULL);
+ if (IS_ERR(comphy)) {
+ if (PTR_ERR(comphy) == -EPROBE_DEFER) {
+ err = -EPROBE_DEFER;
+ goto err_free_netdev;
+ }
+ comphy = NULL;
}
- comphy = NULL;
}
if (fwnode_property_read_u32(port_fwnode, "port-id", &id)) {
@@ -7820,6 +7834,7 @@ static int mvpp2_port_probe(struct platform_device *pdev,
port->nrxqs = nrxqs;
port->priv = priv;
port->has_tx_irqs = has_tx_irqs;
+ port->id = id;
err = fwnode_property_get_reference_args(port_fwnode, "phy", NULL,
0, 0, &args);
@@ -7832,11 +7847,16 @@ static int mvpp2_port_probe(struct platform_device *pdev,
goto err_free_netdev;
}
- err = mvpp2_queue_vectors_init(port, port_node);
+ err = mvpp2_queue_vectors_init(pdev, port, port_node);
if (err)
goto err_free_netdev;
- port->link_irq = of_irq_get_byname(port_node, "link");
+ if (port_node)
+ port->link_irq = of_irq_get_byname(port_node, "link");
+ else
+ port->link_irq = platform_get_irq(pdev, port->id *
+ (port->nqvecs + 2) +
+ port->nqvecs + 1);
if (port->link_irq == -EPROBE_DEFER) {
err = -EPROBE_DEFER;
goto err_deinit_qvecs;
@@ -7848,7 +7868,6 @@ static int mvpp2_port_probe(struct platform_device *pdev,
if (fwnode_property_read_bool(port_fwnode, "marvell,loopback"))
port->flags |= MVPP2_F_LOOPBACK;
- port->id = id;
if (priv->hw_version == MVPP21)
port->first_rxq = port->id * port->nrxqs;
else
@@ -8218,6 +8237,7 @@ static int mvpp2_init(struct platform_device *pdev, struct mvpp2 *priv)
static int mvpp2_probe(struct platform_device *pdev)
{
+ const struct acpi_device_id *acpi_id;
struct fwnode_handle *port_fwnode;
struct mvpp2 *priv;
struct resource *res;
@@ -8229,8 +8249,14 @@ static int mvpp2_probe(struct platform_device *pdev)
if (!priv)
return -ENOMEM;
- priv->hw_version =
- (unsigned long)of_device_get_match_data(&pdev->dev);
+ if (has_acpi_companion(&pdev->dev)) {
+ acpi_id = acpi_match_device(pdev->dev.driver->acpi_match_table,
+ &pdev->dev);
+ priv->hw_version = (unsigned long)acpi_id->driver_data;
+ } else {
+ priv->hw_version =
+ (unsigned long)of_device_get_match_data(&pdev->dev);
+ }
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
base = devm_ioremap_resource(&pdev->dev, res);
@@ -8247,7 +8273,9 @@ static int mvpp2_probe(struct platform_device *pdev)
priv->iface_base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(priv->iface_base))
return PTR_ERR(priv->iface_base);
+ }
+ if (priv->hw_version == MVPP22 && dev_of_node(&pdev->dev)) {
priv->sysctrl_base =
syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
"marvell,system-controller");
@@ -8273,32 +8301,34 @@ static int mvpp2_probe(struct platform_device *pdev)
else
priv->max_port_rxqs = 32;
- priv->pp_clk = devm_clk_get(&pdev->dev, "pp_clk");
- if (IS_ERR(priv->pp_clk))
- return PTR_ERR(priv->pp_clk);
- err = clk_prepare_enable(priv->pp_clk);
- if (err < 0)
- return err;
-
- priv->gop_clk = devm_clk_get(&pdev->dev, "gop_clk");
- if (IS_ERR(priv->gop_clk)) {
- err = PTR_ERR(priv->gop_clk);
- goto err_pp_clk;
- }
- err = clk_prepare_enable(priv->gop_clk);
- if (err < 0)
- goto err_pp_clk;
+ if (dev_of_node(&pdev->dev)) {
+ priv->pp_clk = devm_clk_get(&pdev->dev, "pp_clk");
+ if (IS_ERR(priv->pp_clk))
+ return PTR_ERR(priv->pp_clk);
+ err = clk_prepare_enable(priv->pp_clk);
+ if (err < 0)
+ return err;
- if (priv->hw_version == MVPP22) {
- priv->mg_clk = devm_clk_get(&pdev->dev, "mg_clk");
- if (IS_ERR(priv->mg_clk)) {
- err = PTR_ERR(priv->mg_clk);
- goto err_gop_clk;
+ priv->gop_clk = devm_clk_get(&pdev->dev, "gop_clk");
+ if (IS_ERR(priv->gop_clk)) {
+ err = PTR_ERR(priv->gop_clk);
+ goto err_pp_clk;
}
-
- err = clk_prepare_enable(priv->mg_clk);
+ err = clk_prepare_enable(priv->gop_clk);
if (err < 0)
- goto err_gop_clk;
+ goto err_pp_clk;
+
+ if (priv->hw_version == MVPP22) {
+ priv->mg_clk = devm_clk_get(&pdev->dev, "mg_clk");
+ if (IS_ERR(priv->mg_clk)) {
+ err = PTR_ERR(priv->mg_clk);
+ goto err_gop_clk;
+ }
+
+ err = clk_prepare_enable(priv->mg_clk);
+ if (err < 0)
+ goto err_gop_clk;
+ }
priv->axi_clk = devm_clk_get(&pdev->dev, "axi_clk");
if (IS_ERR(priv->axi_clk)) {
@@ -8311,10 +8341,14 @@ static int mvpp2_probe(struct platform_device *pdev)
if (err < 0)
goto err_gop_clk;
}
- }
- /* Get system's tclk rate */
- priv->tclk = clk_get_rate(priv->pp_clk);
+ /* Get system's tclk rate */
+ priv->tclk = clk_get_rate(priv->pp_clk);
+ } else if (device_property_read_u32(&pdev->dev, "clock-frequency",
+ &priv->tclk)) {
+ dev_err(&pdev->dev, "missing clock-frequency value\n");
+ return -EINVAL;
+ }
if (priv->hw_version == MVPP22) {
err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(40));
@@ -8418,6 +8452,9 @@ static int mvpp2_remove(struct platform_device *pdev)
aggr_txq->descs_dma);
}
+ if (is_acpi_node(port_fwnode))
+ return 0;
+
clk_disable_unprepare(priv->axi_clk);
clk_disable_unprepare(priv->mg_clk);
clk_disable_unprepare(priv->pp_clk);
@@ -8439,12 +8476,19 @@ static const struct of_device_id mvpp2_match[] = {
};
MODULE_DEVICE_TABLE(of, mvpp2_match);
+static const struct acpi_device_id mvpp2_acpi_match[] = {
+ { "MRVL0110", MVPP22 },
+ { },
+};
+MODULE_DEVICE_TABLE(acpi, mvpp2_acpi_match);
+
static struct platform_driver mvpp2_driver = {
.probe = mvpp2_probe,
.remove = mvpp2_remove,
.driver = {
.name = MVPP2_DRIVER_NAME,
.of_match_table = mvpp2_match,
+ .acpi_match_table = ACPI_PTR(mvpp2_acpi_match),
},
};
--
2.7.4
^ permalink raw reply related
* [net-next: PATCH 7/8] net: mvpp2: handle PHY with its fwnode
From: Marcin Wojtas @ 2017-12-18 9:18 UTC (permalink / raw)
To: linux-kernel, linux-arm-kernel, netdev
Cc: davem, linux, rafael.j.wysocki, andrew, f.fainelli,
antoine.tenart, thomas.petazzoni, gregory.clement,
ezequiel.garcia, nadavh, neta, ard.biesheuvel, mw, jaz, tn
In-Reply-To: <1513588684-15647-1-git-send-email-mw@semihalf.com>
Newly introduced mvmdio driver ACPI support and also fwnode
MDIO helpers allow for switching to PHY handling with its fwnode.
This patch replaces of_* related PHY handling function with
the fwnode_* equivalent and updates mvpp2_port structure
accordingly.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
---
drivers/net/ethernet/marvell/mvpp2.c | 41 ++++++++++++++------
1 file changed, 29 insertions(+), 12 deletions(-)
diff --git a/drivers/net/ethernet/marvell/mvpp2.c b/drivers/net/ethernet/marvell/mvpp2.c
index 537474f..4e61ce7 100644
--- a/drivers/net/ethernet/marvell/mvpp2.c
+++ b/drivers/net/ethernet/marvell/mvpp2.c
@@ -963,7 +963,7 @@ struct mvpp2_port {
struct delayed_work stats_work;
phy_interface_t phy_interface;
- struct device_node *phy_node;
+ struct fwnode_handle *phy_fwnode;
struct phy *comphy;
unsigned int link;
unsigned int duplex;
@@ -6890,14 +6890,22 @@ static void mvpp21_get_mac_address(struct mvpp2_port *port, unsigned char *addr)
static int mvpp2_phy_connect(struct mvpp2_port *port)
{
struct phy_device *phy_dev;
+ int ret;
/* No PHY is attached */
- if (!port->phy_node)
+ if (!port->phy_fwnode)
return 0;
- phy_dev = of_phy_connect(port->dev, port->phy_node, mvpp2_link_event, 0,
+ phy_dev = fwnode_phy_find_device(port->phy_fwnode);
+ phy_dev->dev_flags = 0;
+
+ ret = phy_connect_direct(port->dev, phy_dev, mvpp2_link_event,
port->phy_interface);
- if (!phy_dev) {
+
+ /* Refcount is held by phy_connect_direct() on success */
+ put_device(&phy_dev->mdio.dev);
+
+ if (ret) {
netdev_err(port->dev, "cannot connect to phy\n");
return -ENODEV;
}
@@ -7047,7 +7055,7 @@ static int mvpp2_open(struct net_device *dev)
goto err_cleanup_txqs;
}
- if (priv->hw_version == MVPP22 && !port->phy_node && port->link_irq) {
+ if (priv->hw_version == MVPP22 && !port->phy_fwnode && port->link_irq) {
err = request_irq(port->link_irq, mvpp2_link_status_isr, 0,
dev->name, port);
if (err) {
@@ -7082,7 +7090,7 @@ static int mvpp2_open(struct net_device *dev)
return 0;
err_free_link_irq:
- if (priv->hw_version == MVPP22 && !port->phy_node && port->link_irq)
+ if (priv->hw_version == MVPP22 && !port->phy_fwnode && port->link_irq)
free_irq(port->link_irq, port);
err_free_irq:
mvpp2_irqs_deinit(port);
@@ -7107,7 +7115,7 @@ static int mvpp2_stop(struct net_device *dev)
on_each_cpu(mvpp2_interrupts_mask, port, 1);
mvpp2_shared_interrupt_mask_unmask(port, true);
- if (priv->hw_version == MVPP22 && !port->phy_node && port->link_irq)
+ if (priv->hw_version == MVPP22 && !port->phy_fwnode && port->link_irq)
free_irq(port->link_irq, port);
mvpp2_irqs_deinit(port);
@@ -7745,11 +7753,11 @@ static int mvpp2_port_probe(struct platform_device *pdev,
struct fwnode_handle *port_fwnode,
struct mvpp2 *priv)
{
- struct device_node *phy_node;
struct phy *comphy;
struct mvpp2_port *port;
struct mvpp2_port_pcpu *port_pcpu;
struct device_node *port_node = to_of_node(port_fwnode);
+ struct fwnode_reference_args args;
struct net_device *dev;
struct resource *res;
char *mac_from = "";
@@ -7779,7 +7787,6 @@ static int mvpp2_port_probe(struct platform_device *pdev,
if (!dev)
return -ENOMEM;
- phy_node = of_parse_phandle(port_node, "phy", 0);
phy_mode = fwnode_get_phy_mode(port_fwnode);
if (phy_mode < 0) {
dev_err(&pdev->dev, "incorrect phy mode\n");
@@ -7814,6 +7821,17 @@ static int mvpp2_port_probe(struct platform_device *pdev,
port->priv = priv;
port->has_tx_irqs = has_tx_irqs;
+ err = fwnode_property_get_reference_args(port_fwnode, "phy", NULL,
+ 0, 0, &args);
+ if (!err) {
+ port->phy_fwnode = args.fwnode;
+ } else if (err == -ENOENT) {
+ port->phy_fwnode = NULL;
+ } else {
+ dev_err(&pdev->dev, "unable to parse \"phy\" node\n");
+ goto err_free_netdev;
+ }
+
err = mvpp2_queue_vectors_init(port, port_node);
if (err)
goto err_free_netdev;
@@ -7836,7 +7854,6 @@ static int mvpp2_port_probe(struct platform_device *pdev,
else
port->first_rxq = port->id * priv->max_port_rxqs;
- port->phy_node = phy_node;
port->phy_interface = phy_mode;
port->comphy = comphy;
@@ -7958,7 +7975,7 @@ static int mvpp2_port_probe(struct platform_device *pdev,
err_deinit_qvecs:
mvpp2_queue_vectors_deinit(port);
err_free_netdev:
- of_node_put(phy_node);
+ fwnode_handle_put(args.fwnode);
free_netdev(dev);
return err;
}
@@ -7969,7 +7986,7 @@ static void mvpp2_port_remove(struct mvpp2_port *port)
int i;
unregister_netdev(port->dev);
- of_node_put(port->phy_node);
+ fwnode_handle_put(port->phy_fwnode);
free_percpu(port->pcpu);
free_percpu(port->stats);
for (i = 0; i < port->ntxqs; i++)
--
2.7.4
^ permalink raw reply related
* [net-next: PATCH 5/8] net: mvpp2: simplify maintaining enabled ports' list
From: Marcin Wojtas @ 2017-12-18 9:18 UTC (permalink / raw)
To: linux-kernel, linux-arm-kernel, netdev
Cc: thomas.petazzoni, andrew, f.fainelli, linux, ard.biesheuvel, jaz,
antoine.tenart, rafael.j.wysocki, nadavh, neta, ezequiel.garcia,
tn, gregory.clement, mw, davem
In-Reply-To: <1513588684-15647-1-git-send-email-mw@semihalf.com>
'port_count' field of the mvpp2 structure holds an overall amount
of available ports, based on DT nodes status. In order to be prepared
to support other HW description, obtain the value by incrementing it
upon each successful port initialization. This allowed for simplifying
port indexing in the controller's private array, whose size is now not
dynamically allocated, but fixed to MVPP2_MAX_PORTS.
This patch simplifies creating and filling list of enabled ports and
is a part of the preparation for adding ACPI support in the mvpp2 driver.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
---
drivers/net/ethernet/marvell/mvpp2.c | 32 +++++++-------------
1 file changed, 11 insertions(+), 21 deletions(-)
diff --git a/drivers/net/ethernet/marvell/mvpp2.c b/drivers/net/ethernet/marvell/mvpp2.c
index a197607..7f42d90 100644
--- a/drivers/net/ethernet/marvell/mvpp2.c
+++ b/drivers/net/ethernet/marvell/mvpp2.c
@@ -865,7 +865,7 @@ struct mvpp2 {
/* List of pointers to port structures */
int port_count;
- struct mvpp2_port **port_list;
+ struct mvpp2_port *port_list[MVPP2_MAX_PORTS];
/* Aggregated TXQs */
struct mvpp2_tx_queue *aggr_txqs;
@@ -7741,7 +7741,7 @@ static void mvpp2_port_copy_mac_addr(struct net_device *dev, struct mvpp2 *priv,
/* Ports initialization */
static int mvpp2_port_probe(struct platform_device *pdev,
struct device_node *port_node,
- struct mvpp2 *priv, int index)
+ struct mvpp2 *priv)
{
struct device_node *phy_node;
struct phy *comphy;
@@ -7934,7 +7934,8 @@ static int mvpp2_port_probe(struct platform_device *pdev,
}
netdev_info(dev, "Using %s mac address %pM\n", mac_from, dev->dev_addr);
- priv->port_list[index] = port;
+ priv->port_list[priv->port_count++] = port;
+
return 0;
err_free_port_pcpu:
@@ -8313,28 +8314,17 @@ static int mvpp2_probe(struct platform_device *pdev)
goto err_mg_clk;
}
- priv->port_count = of_get_available_child_count(dn);
- if (priv->port_count == 0) {
- dev_err(&pdev->dev, "no ports enabled\n");
- err = -ENODEV;
- goto err_mg_clk;
- }
-
- priv->port_list = devm_kcalloc(&pdev->dev, priv->port_count,
- sizeof(*priv->port_list),
- GFP_KERNEL);
- if (!priv->port_list) {
- err = -ENOMEM;
- goto err_mg_clk;
- }
-
/* Initialize ports */
- i = 0;
for_each_available_child_of_node(dn, port_node) {
- err = mvpp2_port_probe(pdev, port_node, priv, i);
+ err = mvpp2_port_probe(pdev, port_node, priv);
if (err < 0)
goto err_port_probe;
- i++;
+ }
+
+ if (priv->port_count == 0) {
+ dev_err(&pdev->dev, "no ports enabled\n");
+ err = -ENODEV;
+ goto err_mg_clk;
}
/* Statistics must be gathered regularly because some of them (like
--
2.7.4
^ permalink raw reply related
* [net-next: PATCH 4/8] net: mvmdio: add ACPI support
From: Marcin Wojtas @ 2017-12-18 9:18 UTC (permalink / raw)
To: linux-kernel, linux-arm-kernel, netdev
Cc: davem, linux, rafael.j.wysocki, andrew, f.fainelli,
antoine.tenart, thomas.petazzoni, gregory.clement,
ezequiel.garcia, nadavh, neta, ard.biesheuvel, mw, jaz, tn
In-Reply-To: <1513588684-15647-1-git-send-email-mw@semihalf.com>
This patch introducing ACPI support for the mvmdio driver by adding
acpi_match_table with two entries:
* "MRVL0100" for the SMI operation
* "MRVL0101" for the XSMI mode
Also clk enabling is skipped, because the tables do not contain
such data and clock maintenance relies on the firmware. The
MDIO bus is registered using newly introduced
fwnode_mdiobus_register().
Memory region used by mvmdio driver is usually placed in the middle
of the address space of the network controller (e.g. NETA or PP2).
The MDIO base address is obtained without requesting memory region
(by devm_ioremap() call), later overlapping resources are
requested by the network driver, where care is taken to avoid
concurrent access.
This way of solving problem occurred to be not sufficient with ACPI,
because resources declared in the table and used once, appear as
'in-use' in the OS. This patch also ensures releasing resources by
mvmdio driver prior to initializing the network controller driver.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
---
drivers/net/ethernet/marvell/mvmdio.c | 42 +++++++++++++++++++-
1 file changed, 40 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/marvell/mvmdio.c b/drivers/net/ethernet/marvell/mvmdio.c
index 0495487..31d758a 100644
--- a/drivers/net/ethernet/marvell/mvmdio.c
+++ b/drivers/net/ethernet/marvell/mvmdio.c
@@ -17,6 +17,7 @@
* warranty of any kind, whether express or implied.
*/
+#include <linux/acpi.h>
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
@@ -279,9 +280,19 @@ static int orion_mdio_probe(struct platform_device *pdev)
struct resource *r;
struct mii_bus *bus;
struct orion_mdio_dev *dev;
+ const struct acpi_device_id *acpi_id;
+ bool use_acpi = false;
int i, ret;
- type = (enum orion_mdio_bus_type)of_device_get_match_data(&pdev->dev);
+ if (has_acpi_companion(&pdev->dev)) {
+ acpi_id = acpi_match_device(pdev->dev.driver->acpi_match_table,
+ &pdev->dev);
+ type = (enum orion_mdio_bus_type)acpi_id->driver_data;
+ use_acpi = true;
+ } else {
+ type =
+ (enum orion_mdio_bus_type)of_device_get_match_data(&pdev->dev);
+ }
r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!r) {
@@ -319,7 +330,7 @@ static int orion_mdio_probe(struct platform_device *pdev)
init_waitqueue_head(&dev->smi_busy_wait);
- for (i = 0; i < ARRAY_SIZE(dev->clk); i++) {
+ for (i = 0; !use_acpi && i < ARRAY_SIZE(dev->clk); i++) {
dev->clk[i] = of_clk_get(pdev->dev.of_node, i);
if (IS_ERR(dev->clk[i]))
break;
@@ -350,6 +361,8 @@ static int orion_mdio_probe(struct platform_device *pdev)
if (pdev->dev.of_node)
ret = of_mdiobus_register(bus, pdev->dev.of_node);
+ else if (use_acpi)
+ ret = fwnode_mdiobus_register(bus, pdev->dev.fwnode);
else
ret = mdiobus_register(bus);
if (ret < 0) {
@@ -357,6 +370,15 @@ static int orion_mdio_probe(struct platform_device *pdev)
goto out_mdio;
}
+ /* In case of ACPI resources declared in the tables and used
+ * once, appear as 'in-use' in the OS. Make sure they are released,
+ * before the network driver possibly requests it again during
+ * its initialization. The care is taken there to avoid
+ * concurrent access to this memory region.
+ */
+ if (use_acpi)
+ release_resource(r);
+
platform_set_drvdata(pdev, bus);
return 0;
@@ -365,6 +387,11 @@ static int orion_mdio_probe(struct platform_device *pdev)
if (dev->err_interrupt > 0)
writel(0, dev->regs + MVMDIO_ERR_INT_MASK);
+ if (use_acpi) {
+ release_resource(r);
+ return ret;
+ }
+
for (i = 0; i < ARRAY_SIZE(dev->clk); i++) {
if (IS_ERR(dev->clk[i]))
break;
@@ -385,6 +412,9 @@ static int orion_mdio_remove(struct platform_device *pdev)
writel(0, dev->regs + MVMDIO_ERR_INT_MASK);
mdiobus_unregister(bus);
+ if (has_acpi_companion(&pdev->dev))
+ return 0;
+
for (i = 0; i < ARRAY_SIZE(dev->clk); i++) {
if (IS_ERR(dev->clk[i]))
break;
@@ -402,12 +432,20 @@ static const struct of_device_id orion_mdio_match[] = {
};
MODULE_DEVICE_TABLE(of, orion_mdio_match);
+static const struct acpi_device_id orion_mdio_acpi_match[] = {
+ { "MRVL0100", BUS_TYPE_SMI },
+ { "MRVL0101", BUS_TYPE_XSMI },
+ { },
+};
+MODULE_DEVICE_TABLE(acpi, orion_mdio_acpi_match);
+
static struct platform_driver orion_mdio_driver = {
.probe = orion_mdio_probe,
.remove = orion_mdio_remove,
.driver = {
.name = "orion-mdio",
.of_match_table = orion_mdio_match,
+ .acpi_match_table = ACPI_PTR(orion_mdio_acpi_match),
},
};
--
2.7.4
^ permalink raw reply related
* [net-next: PATCH 3/8] mdio_bus: Introduce fwnode MDIO helpers
From: Marcin Wojtas @ 2017-12-18 9:17 UTC (permalink / raw)
To: linux-kernel, linux-arm-kernel, netdev
Cc: thomas.petazzoni, andrew, f.fainelli, linux, ard.biesheuvel, jaz,
antoine.tenart, rafael.j.wysocki, nadavh, neta, ezequiel.garcia,
tn, gregory.clement, mw, davem
In-Reply-To: <1513588684-15647-1-git-send-email-mw@semihalf.com>
This patch introduces fwnode helper for registering MDIO
bus, as well as one for finding the PHY, basing on its
firmware node pointer. Comparing to existing OF equivalent,
fwnode_mdiobus_register() does not support:
* deprecated bindings (device whitelist, nor the PHY ID embedded
in the compatible string)
* MDIO bus auto scanning
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
---
drivers/net/phy/mdio_bus.c | 218 ++++++++++++++++++++
include/linux/mdio.h | 3 +
2 files changed, 221 insertions(+)
diff --git a/drivers/net/phy/mdio_bus.c b/drivers/net/phy/mdio_bus.c
index a0f34c3..f2b2a94 100644
--- a/drivers/net/phy/mdio_bus.c
+++ b/drivers/net/phy/mdio_bus.c
@@ -27,6 +27,7 @@
#include <linux/of_device.h>
#include <linux/of_mdio.h>
#include <linux/of_gpio.h>
+#include <linux/of_irq.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
@@ -662,6 +663,223 @@ static int mdio_uevent(struct device *dev, struct kobj_uevent_env *env)
return 0;
}
+static int fwnode_mdiobus_register_phy(struct mii_bus *bus,
+ struct fwnode_handle *child, u32 addr)
+{
+ struct phy_device *phy;
+ bool is_c45 = false;
+ int rc;
+
+ rc = fwnode_property_match_string(child, "compatible",
+ "ethernet-phy-ieee802.3-c45");
+ if (!rc)
+ is_c45 = true;
+
+ phy = get_phy_device(bus, addr, is_c45);
+ if (IS_ERR(phy))
+ return PTR_ERR(phy);
+
+ phy->irq = bus->irq[addr];
+
+ if (to_of_node(child)) {
+ rc = of_irq_get(to_of_node(child), 0);
+ if (rc == -EPROBE_DEFER) {
+ phy_device_free(phy);
+ return rc;
+ } else if (rc > 0) {
+ phy->irq = rc;
+ bus->irq[addr] = rc;
+ }
+ }
+
+ if (fwnode_property_read_bool(child, "broken-turn-around"))
+ bus->phy_ignore_ta_mask |= 1 << addr;
+
+ /* Associate the fwnode with the device structure so it
+ * can be looked up later.
+ */
+ phy->mdio.dev.fwnode = child;
+
+ /* All data is now stored in the phy struct, so register it */
+ rc = phy_device_register(phy);
+ if (rc) {
+ phy_device_free(phy);
+ fwnode_handle_put(child);
+ return rc;
+ }
+
+ dev_dbg(&bus->dev, "registered phy at address %i\n", addr);
+
+ return 0;
+}
+
+static int fwnode_mdiobus_register_device(struct mii_bus *bus,
+ struct fwnode_handle *child, u32 addr)
+{
+ struct mdio_device *mdiodev;
+ int rc;
+
+ mdiodev = mdio_device_create(bus, addr);
+ if (IS_ERR(mdiodev))
+ return PTR_ERR(mdiodev);
+
+ /* Associate the fwnode with the device structure so it
+ * can be looked up later.
+ */
+ mdiodev->dev.fwnode = child;
+
+ /* All data is now stored in the mdiodev struct; register it. */
+ rc = mdio_device_register(mdiodev);
+ if (rc) {
+ mdio_device_free(mdiodev);
+ fwnode_handle_put(child);
+ return rc;
+ }
+
+ dev_dbg(&bus->dev, "registered mdio device at address %i\n", addr);
+
+ return 0;
+}
+
+static int fwnode_mdio_parse_addr(struct device *dev,
+ const struct fwnode_handle *fwnode)
+{
+ u32 addr;
+ int ret;
+
+ ret = fwnode_property_read_u32(fwnode, "reg", &addr);
+ if (ret < 0) {
+ dev_err(dev, "PHY node has no 'reg' property\n");
+ return ret;
+ }
+
+ /* A PHY must have a reg property in the range [0-31] */
+ if (addr < 0 || addr >= PHY_MAX_ADDR) {
+ dev_err(dev, "PHY address %i is invalid\n", addr);
+ return -EINVAL;
+ }
+
+ return addr;
+}
+
+/**
+ * fwnode_mdiobus_child_is_phy - Return true if the child is a PHY node.
+ * It must either:
+ * o Compatible string of "ethernet-phy-ieee802.3-c45"
+ * o Compatible string of "ethernet-phy-ieee802.3-c22"
+ * Checking "compatible" property is done, in order to follow the DT binding.
+ */
+static bool fwnode_mdiobus_child_is_phy(struct fwnode_handle *child)
+{
+ int ret;
+
+ ret = fwnode_property_match_string(child, "compatible",
+ "ethernet-phy-ieee802.3-c45");
+ if (!ret)
+ return true;
+
+ ret = fwnode_property_match_string(child, "compatible",
+ "ethernet-phy-ieee802.3-c22");
+ if (!ret)
+ return true;
+
+ if (!fwnode_property_present(child, "compatible"))
+ return true;
+
+ return false;
+}
+
+/**
+ * fwnode_mdiobus_register - Register mii_bus and create PHYs from the fwnode
+ * @bus: pointer to mii_bus structure
+ * @fwnode: pointer to fwnode_handle of MDIO bus.
+ *
+ * This function registers the mii_bus structure and registers a phy_device
+ * for each child node of @fwnode.
+ */
+int fwnode_mdiobus_register(struct mii_bus *bus, struct fwnode_handle *fwnode)
+{
+ struct fwnode_handle *child;
+ int addr, rc;
+ int default_gpio_reset_delay_ms = 10;
+
+ /* Do not continue if the node is disabled */
+ if (!fwnode_device_is_available(fwnode))
+ return -ENODEV;
+
+ /* Mask out all PHYs from auto probing. Instead the PHYs listed in
+ * the firmware nodes are populated after the bus has been registered.
+ */
+ bus->phy_mask = ~0;
+
+ bus->dev.fwnode = fwnode;
+
+ /* Get bus level PHY reset GPIO details */
+ bus->reset_delay_us = default_gpio_reset_delay_ms;
+ fwnode_property_read_u32(fwnode, "reset-delay-us",
+ &bus->reset_delay_us);
+
+ /* Register the MDIO bus */
+ rc = mdiobus_register(bus);
+ if (rc)
+ return rc;
+
+ /* Loop over the child nodes and register a phy_device for each PHY */
+ fwnode_for_each_child_node(fwnode, child) {
+ addr = fwnode_mdio_parse_addr(&bus->dev, child);
+ if (addr < 0)
+ continue;
+
+ if (fwnode_mdiobus_child_is_phy(child))
+ rc = fwnode_mdiobus_register_phy(bus, child, addr);
+ else
+ rc = fwnode_mdiobus_register_device(bus, child, addr);
+ if (rc)
+ goto unregister;
+ }
+
+ return 0;
+
+unregister:
+ mdiobus_unregister(bus);
+
+ return rc;
+}
+EXPORT_SYMBOL(fwnode_mdiobus_register);
+
+/* Helper function for fwnode_phy_find_device */
+static int fwnode_phy_match(struct device *dev, void *phy_fwnode)
+{
+ return dev->fwnode == phy_fwnode;
+}
+
+/**
+ * fwnode_phy_find_device - find the phy_device associated to fwnode
+ * @phy_fwnode: Pointer to the PHY's fwnode
+ *
+ * If successful, returns a pointer to the phy_device with the embedded
+ * struct device refcount incremented by one, or NULL on failure.
+ */
+struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode)
+{
+ struct device *d;
+ struct mdio_device *mdiodev;
+
+ if (!phy_fwnode)
+ return NULL;
+
+ d = bus_find_device(&mdio_bus_type, NULL, phy_fwnode, fwnode_phy_match);
+ if (d) {
+ mdiodev = to_mdio_device(d);
+ if (mdiodev->flags & MDIO_DEVICE_FLAG_PHY)
+ return to_phy_device(d);
+ put_device(d);
+ }
+
+ return NULL;
+}
+EXPORT_SYMBOL(fwnode_phy_find_device);
+
#ifdef CONFIG_PM
static int mdio_bus_suspend(struct device *dev)
{
diff --git a/include/linux/mdio.h b/include/linux/mdio.h
index e37c21d..286ec12 100644
--- a/include/linux/mdio.h
+++ b/include/linux/mdio.h
@@ -272,6 +272,9 @@ int mdiobus_unregister_device(struct mdio_device *mdiodev);
bool mdiobus_is_registered_device(struct mii_bus *bus, int addr);
struct phy_device *mdiobus_get_phy(struct mii_bus *bus, int addr);
+int fwnode_mdiobus_register(struct mii_bus *bus, struct fwnode_handle *fwnode);
+struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode);
+
/**
* mdio_module_driver() - Helper macro for registering mdio drivers
*
--
2.7.4
^ permalink raw reply related
* [net-next: PATCH 2/8] device property: Introduce fwnode_get_phy_mode()
From: Marcin Wojtas @ 2017-12-18 9:17 UTC (permalink / raw)
To: linux-kernel, linux-arm-kernel, netdev
Cc: davem, linux, rafael.j.wysocki, andrew, f.fainelli,
antoine.tenart, thomas.petazzoni, gregory.clement,
ezequiel.garcia, nadavh, neta, ard.biesheuvel, mw, jaz, tn
In-Reply-To: <1513588684-15647-1-git-send-email-mw@semihalf.com>
Until now there were two almost identical functions for
obtaining network PHY mode - of_get_phy_mode() and,
more generic, device_get_phy_mode(). However it is not uncommon,
that the network interface is represented as a child
of the actual controller, hence it is not associated
directly to any struct device, required by the latter
routine.
This commit allows for getting the PHY mode for
children nodes in the ACPI world by introducing a new function -
fwnode_get_phy_mode(). This commit also changes
device_get_phy_mode() routine to be its wrapper, in order
to prevent unnecessary duplication.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
---
drivers/base/property.c | 24 ++++++++++++++++----
include/linux/property.h | 1 +
2 files changed, 20 insertions(+), 5 deletions(-)
diff --git a/drivers/base/property.c b/drivers/base/property.c
index f261d1a..7c4a53d 100644
--- a/drivers/base/property.c
+++ b/drivers/base/property.c
@@ -1126,21 +1126,21 @@ enum dev_dma_attr device_get_dma_attr(struct device *dev)
EXPORT_SYMBOL_GPL(device_get_dma_attr);
/**
- * device_get_phy_mode - Get phy mode for given device
- * @dev: Pointer to the given device
+ * fwnode_get_phy_mode - Get phy mode for given firmware node
+ * @fwnode: Pointer to the given node
*
* The function gets phy interface string from property 'phy-mode' or
* 'phy-connection-type', and return its index in phy_modes table, or errno in
* error case.
*/
-int device_get_phy_mode(struct device *dev)
+int fwnode_get_phy_mode(struct fwnode_handle *fwnode)
{
const char *pm;
int err, i;
- err = device_property_read_string(dev, "phy-mode", &pm);
+ err = fwnode_property_read_string(fwnode, "phy-mode", &pm);
if (err < 0)
- err = device_property_read_string(dev,
+ err = fwnode_property_read_string(fwnode,
"phy-connection-type", &pm);
if (err < 0)
return err;
@@ -1151,6 +1151,20 @@ int device_get_phy_mode(struct device *dev)
return -ENODEV;
}
+EXPORT_SYMBOL_GPL(fwnode_get_phy_mode);
+
+/**
+ * device_get_phy_mode - Get phy mode for given device
+ * @dev: Pointer to the given device
+ *
+ * The function gets phy interface string from property 'phy-mode' or
+ * 'phy-connection-type', and return its index in phy_modes table, or errno in
+ * error case.
+ */
+int device_get_phy_mode(struct device *dev)
+{
+ return fwnode_get_phy_mode(dev_fwnode(dev));
+}
EXPORT_SYMBOL_GPL(device_get_phy_mode);
static void *fwnode_get_mac_addr(struct fwnode_handle *fwnode,
diff --git a/include/linux/property.h b/include/linux/property.h
index 35620e0..9b13332 100644
--- a/include/linux/property.h
+++ b/include/linux/property.h
@@ -279,6 +279,7 @@ int device_get_phy_mode(struct device *dev);
void *device_get_mac_address(struct device *dev, char *addr, int alen);
+int fwnode_get_phy_mode(struct fwnode_handle *fwnode);
void *fwnode_get_mac_address(struct fwnode_handle *fwnode,
char *addr, int alen);
struct fwnode_handle *fwnode_graph_get_next_endpoint(
--
2.7.4
^ permalink raw reply related
* [net-next: PATCH 1/8] device property: Introduce fwnode_get_mac_address()
From: Marcin Wojtas @ 2017-12-18 9:17 UTC (permalink / raw)
To: linux-kernel, linux-arm-kernel, netdev
Cc: thomas.petazzoni, andrew, f.fainelli, linux, ard.biesheuvel, jaz,
antoine.tenart, rafael.j.wysocki, nadavh, neta, ezequiel.garcia,
tn, gregory.clement, mw, davem
In-Reply-To: <1513588684-15647-1-git-send-email-mw@semihalf.com>
Until now there were two almost identical functions for
obtaining MAC address - of_get_mac_address() and, more generic,
device_get_mac_address(). However it is not uncommon,
that the network interface is represented as a child
of the actual controller, hence it is not associated
directly to any struct device, required by the latter
routine.
This commit allows for getting the MAC address for
children nodes in the ACPI world by introducing a new function -
fwnode_get_mac_address(). This commit also changes
device_get_mac_address() routine to be its wrapper, in order
to prevent unnecessary duplication.
Signed-off-by: Marcin Wojtas <mw@semihalf.com>
---
drivers/base/property.c | 28 ++++++++++++++------
include/linux/property.h | 2 ++
2 files changed, 22 insertions(+), 8 deletions(-)
diff --git a/drivers/base/property.c b/drivers/base/property.c
index 851b1b6..f261d1a 100644
--- a/drivers/base/property.c
+++ b/drivers/base/property.c
@@ -1153,11 +1153,11 @@ int device_get_phy_mode(struct device *dev)
}
EXPORT_SYMBOL_GPL(device_get_phy_mode);
-static void *device_get_mac_addr(struct device *dev,
+static void *fwnode_get_mac_addr(struct fwnode_handle *fwnode,
const char *name, char *addr,
int alen)
{
- int ret = device_property_read_u8_array(dev, name, addr, alen);
+ int ret = fwnode_property_read_u8_array(fwnode, name, addr, alen);
if (ret == 0 && alen == ETH_ALEN && is_valid_ether_addr(addr))
return addr;
@@ -1165,8 +1165,8 @@ static void *device_get_mac_addr(struct device *dev,
}
/**
- * device_get_mac_address - Get the MAC for a given device
- * @dev: Pointer to the device
+ * fwnode_get_mac_address - Get the MAC from the firmware node
+ * @fwnode: Pointer to the firmware node
* @addr: Address of buffer to store the MAC in
* @alen: Length of the buffer pointed to by addr, should be ETH_ALEN
*
@@ -1187,19 +1187,31 @@ static void *device_get_mac_addr(struct device *dev,
* In this case, the real MAC is in 'local-mac-address', and 'mac-address'
* exists but is all zeros.
*/
-void *device_get_mac_address(struct device *dev, char *addr, int alen)
+void *fwnode_get_mac_address(struct fwnode_handle *fwnode, char *addr, int alen)
{
char *res;
- res = device_get_mac_addr(dev, "mac-address", addr, alen);
+ res = fwnode_get_mac_addr(fwnode, "mac-address", addr, alen);
if (res)
return res;
- res = device_get_mac_addr(dev, "local-mac-address", addr, alen);
+ res = fwnode_get_mac_addr(fwnode, "local-mac-address", addr, alen);
if (res)
return res;
- return device_get_mac_addr(dev, "address", addr, alen);
+ return fwnode_get_mac_addr(fwnode, "address", addr, alen);
+}
+EXPORT_SYMBOL(fwnode_get_mac_address);
+
+/**
+ * device_get_mac_address - Get the MAC for a given device
+ * @dev: Pointer to the device
+ * @addr: Address of buffer to store the MAC in
+ * @alen: Length of the buffer pointed to by addr, should be ETH_ALEN
+ */
+void *device_get_mac_address(struct device *dev, char *addr, int alen)
+{
+ return fwnode_get_mac_address(dev_fwnode(dev), addr, alen);
}
EXPORT_SYMBOL(device_get_mac_address);
diff --git a/include/linux/property.h b/include/linux/property.h
index f6189a3..35620e0 100644
--- a/include/linux/property.h
+++ b/include/linux/property.h
@@ -279,6 +279,8 @@ int device_get_phy_mode(struct device *dev);
void *device_get_mac_address(struct device *dev, char *addr, int alen);
+void *fwnode_get_mac_address(struct fwnode_handle *fwnode,
+ char *addr, int alen);
struct fwnode_handle *fwnode_graph_get_next_endpoint(
const struct fwnode_handle *fwnode, struct fwnode_handle *prev);
struct fwnode_handle *
--
2.7.4
^ permalink raw reply related
* [net-next: PATCH 0/8] Armada 7k/8k PP2 ACPI support
From: Marcin Wojtas @ 2017-12-18 9:17 UTC (permalink / raw)
To: linux-kernel, linux-arm-kernel, netdev
Cc: thomas.petazzoni, andrew, f.fainelli, linux, ard.biesheuvel, jaz,
antoine.tenart, rafael.j.wysocki, nadavh, neta, ezequiel.garcia,
tn, gregory.clement, mw, davem
Hi,
This patchset introduces ACPI support in mvpp2 and mvmdio drivers.
First three patches introduce fwnode helpers for obtaining PHY
information from nodes and also MDIO fwnode API for registering
the bus with its PHY/devices.
Following patches update code of the mvmdio and mvpp2 drivers
to support ACPI tables handling. The latter is done in 4 steps,
as can be seen in the commits. For the details, please
refer to the commit messages.
Drivers operation was tested on top of the net-next branch
with both DT and ACPI. Although for compatibility reasons
with older platforms, the mvmdio driver keeps using
of_ MDIO registering, new fwnode_ one proved to fully work
with DT as well (tested on MacchiatoBin board).
mvpp2/mvmdio driver can work with the ACPI representation, as exposed
on a public branch:
https://github.com/MarvellEmbeddedProcessors/edk2-open-platform/commits/marvell-armada-wip
It was compiled together with the most recent Tianocore EDK2 revision.
Please refer to the firmware build instruction on MacchiatoBin board:
http://wiki.macchiatobin.net/tiki-index.php?page=Build+from+source+-+UEFI+EDK+II
Above support configures 1G to use its PHY normally. 10G can work now
only with the link interrupt mode. Somehow reading of the
string property in fwnode_mdiobus_child_is_phy works only with
DT and cannot cope with 10G PHY nodes as in:
https://pastebin.com/3JnYpU0A
Above root cause will be further checked. In the meantime I will
appreciate any comments or remarks for the kernel patches.
Best regards,
Marcin
Marcin Wojtas (8):
device property: Introduce fwnode_get_mac_address()
device property: Introduce fwnode_get_phy_mode()
mdio_bus: Introduce fwnode MDIO helpers
net: mvmdio: add ACPI support
net: mvpp2: simplify maintaining enabled ports' list
net: mvpp2: use device_*/fwnode_* APIs instead of of_*
net: mvpp2: handle PHY with its fwnode
net: mvpp2: enable ACPI support in the driver
drivers/base/property.c | 52 +++--
drivers/net/ethernet/marvell/mvmdio.c | 42 +++-
drivers/net/ethernet/marvell/mvpp2.c | 246 ++++++++++++--------
drivers/net/phy/mdio_bus.c | 218 +++++++++++++++++
include/linux/mdio.h | 3 +
include/linux/property.h | 3 +
6 files changed, 454 insertions(+), 110 deletions(-)
--
2.7.4
^ permalink raw reply
* Re: [kernel-hardening] [PATCH 0/3] kallsyms: don't leak address
From: Tobin C. Harding @ 2017-12-18 9:17 UTC (permalink / raw)
To: Michael Ellerman
Cc: kernel-hardening, Steven Rostedt, Tycho Andersen, Linus Torvalds,
Kees Cook, Andrew Morton, Daniel Borkmann, Masahiro Yamada,
Alexei Starovoitov, linux-kernel, Network Development
In-Reply-To: <20171218060048.GD4627@eros>
On Mon, Dec 18, 2017 at 05:00:48PM +1100, Tobin C. Harding wrote:
> On Mon, Dec 18, 2017 at 04:31:25PM +1100, Michael Ellerman wrote:
> > "Tobin C. Harding" <me@tobin.cc> writes:
> >
> > > This set plugs a kernel address leak that occurs if kallsyms symbol
> > > look up fails. This set was prompted by a leaking address found using
> > > scripts/leaking_addresses.pl on a PowerPC machine in the wild.
> >
> > Any details on that? I haven't heard about it.
>
> I have an account on a server in USA. I'm not sure how much detail I
> should give on the mailing list in case it is sensitive information. I
> will email you off list. Responding here for the benefit of the list.
Geez I'm a goose. Here is the details with a sanitized address.
/proc/8025/task/8025/stack: [<0000000000000000>] 0xc0000001XXXXXXXX
$ uname -r
4.4.0-79-powerpc64-smp
thanks,
Tobin.
^ permalink raw reply
* Re: [PATCH v10 1/5] add infrastructure for tagging functions as error injectable
From: Masami Hiramatsu @ 2017-12-18 9:11 UTC (permalink / raw)
To: Josef Bacik
Cc: rostedt, mingo, davem, netdev, linux-kernel, ast, kernel-team,
daniel, linux-btrfs, darrick.wong, Josef Bacik
In-Reply-To: <1513365176-6744-2-git-send-email-josef@toxicpanda.com>
On Fri, 15 Dec 2017 14:12:52 -0500
Josef Bacik <josef@toxicpanda.com> wrote:
> From: Josef Bacik <jbacik@fb.com>
>
> Using BPF we can override kprob'ed functions and return arbitrary
> values. Obviously this can be a bit unsafe, so make this feature opt-in
> for functions. Simply tag a function with KPROBE_ERROR_INJECT_SYMBOL in
> order to give BPF access to that function for error injection purposes.
>
NAK. I'm very confused. What the reason to add this feature is implemented
in kernel/kprobes.c? It is seemed within an usual "usage" of kprobes.
I recommend you to implement this somewhere else... like
kernel/error_injection.c, or kernel/module.c.
More precisely list up the reasons why,
- This is just for providing an API to check the address within an
address-range list inside kmodule (not related to kprobes).
- There is no check in kprobes to modified address by using the API.
(yes, that will cause a big overhead...)
- This can mislead user NOT to change the instruction pointer from
the kprobes except for that list.
- If user intends to insert a piece of code (like livepatch) in a
function, they do NOT think it is an "error injection".
- Or if they find this API, and "what?? I can not change instruction
pointer by kprobes? but I can." and report it a bug on lkml...
So, I don't like to see this in kprobes.c. It is better to make another
layer to do this.
Thank you,
> Signed-off-by: Josef Bacik <jbacik@fb.com>
> Acked-by: Ingo Molnar <mingo@kernel.org>
> ---
> include/asm-generic/vmlinux.lds.h | 10 +++
> include/linux/bpf.h | 11 +++
> include/linux/kprobes.h | 1 +
> include/linux/module.h | 5 ++
> kernel/kprobes.c | 163 ++++++++++++++++++++++++++++++++++++++
> kernel/module.c | 6 +-
> 6 files changed, 195 insertions(+), 1 deletion(-)
>
> diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
> index ee8b707d9fa9..a2e8582d094a 100644
> --- a/include/asm-generic/vmlinux.lds.h
> +++ b/include/asm-generic/vmlinux.lds.h
> @@ -136,6 +136,15 @@
> #define KPROBE_BLACKLIST()
> #endif
>
> +#ifdef CONFIG_BPF_KPROBE_OVERRIDE
> +#define ERROR_INJECT_LIST() . = ALIGN(8); \
> + VMLINUX_SYMBOL(__start_kprobe_error_inject_list) = .; \
> + KEEP(*(_kprobe_error_inject_list)) \
> + VMLINUX_SYMBOL(__stop_kprobe_error_inject_list) = .;
> +#else
> +#define ERROR_INJECT_LIST()
> +#endif
> +
> #ifdef CONFIG_EVENT_TRACING
> #define FTRACE_EVENTS() . = ALIGN(8); \
> VMLINUX_SYMBOL(__start_ftrace_events) = .; \
> @@ -564,6 +573,7 @@
> FTRACE_EVENTS() \
> TRACE_SYSCALLS() \
> KPROBE_BLACKLIST() \
> + ERROR_INJECT_LIST() \
> MEM_DISCARD(init.rodata) \
> CLK_OF_TABLES() \
> RESERVEDMEM_OF_TABLES() \
> diff --git a/include/linux/bpf.h b/include/linux/bpf.h
> index e55e4255a210..7f4d2a953173 100644
> --- a/include/linux/bpf.h
> +++ b/include/linux/bpf.h
> @@ -576,4 +576,15 @@ extern const struct bpf_func_proto bpf_sock_map_update_proto;
> void bpf_user_rnd_init_once(void);
> u64 bpf_user_rnd_u32(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
>
> +#if defined(__KERNEL__) && !defined(__ASSEMBLY__)
> +#ifdef CONFIG_BPF_KPROBE_OVERRIDE
> +#define BPF_ALLOW_ERROR_INJECTION(fname) \
> +static unsigned long __used \
> + __attribute__((__section__("_kprobe_error_inject_list"))) \
> + _eil_addr_##fname = (unsigned long)fname;
> +#else
> +#define BPF_ALLOW_ERROR_INJECTION(fname)
> +#endif
> +#endif
> +
> #endif /* _LINUX_BPF_H */
> diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h
> index 9440a2fc8893..963fd364f3d6 100644
> --- a/include/linux/kprobes.h
> +++ b/include/linux/kprobes.h
> @@ -271,6 +271,7 @@ extern bool arch_kprobe_on_func_entry(unsigned long offset);
> extern bool kprobe_on_func_entry(kprobe_opcode_t *addr, const char *sym, unsigned long offset);
>
> extern bool within_kprobe_blacklist(unsigned long addr);
> +extern bool within_kprobe_error_injection_list(unsigned long addr);
>
> struct kprobe_insn_cache {
> struct mutex mutex;
> diff --git a/include/linux/module.h b/include/linux/module.h
> index c69b49abe877..548fa09fa806 100644
> --- a/include/linux/module.h
> +++ b/include/linux/module.h
> @@ -475,6 +475,11 @@ struct module {
> ctor_fn_t *ctors;
> unsigned int num_ctors;
> #endif
> +
> +#ifdef CONFIG_BPF_KPROBE_OVERRIDE
> + unsigned int num_kprobe_ei_funcs;
> + unsigned long *kprobe_ei_funcs;
> +#endif
> } ____cacheline_aligned __randomize_layout;
> #ifndef MODULE_ARCH_INIT
> #define MODULE_ARCH_INIT {}
> diff --git a/kernel/kprobes.c b/kernel/kprobes.c
> index da2ccf142358..b4aab48ad258 100644
> --- a/kernel/kprobes.c
> +++ b/kernel/kprobes.c
> @@ -83,6 +83,16 @@ static raw_spinlock_t *kretprobe_table_lock_ptr(unsigned long hash)
> return &(kretprobe_table_locks[hash].lock);
> }
>
> +/* List of symbols that can be overriden for error injection. */
> +static LIST_HEAD(kprobe_error_injection_list);
> +static DEFINE_MUTEX(kprobe_ei_mutex);
> +struct kprobe_ei_entry {
> + struct list_head list;
> + unsigned long start_addr;
> + unsigned long end_addr;
> + void *priv;
> +};
> +
> /* Blacklist -- list of struct kprobe_blacklist_entry */
> static LIST_HEAD(kprobe_blacklist);
>
> @@ -1394,6 +1404,17 @@ bool within_kprobe_blacklist(unsigned long addr)
> return false;
> }
>
> +bool within_kprobe_error_injection_list(unsigned long addr)
> +{
> + struct kprobe_ei_entry *ent;
> +
> + list_for_each_entry(ent, &kprobe_error_injection_list, list) {
> + if (addr >= ent->start_addr && addr < ent->end_addr)
> + return true;
> + }
> + return false;
> +}
> +
> /*
> * If we have a symbol_name argument, look it up and add the offset field
> * to it. This way, we can specify a relative address to a symbol.
> @@ -2168,6 +2189,86 @@ static int __init populate_kprobe_blacklist(unsigned long *start,
> return 0;
> }
>
> +#ifdef CONFIG_BPF_KPROBE_OVERRIDE
> +/* Markers of the _kprobe_error_inject_list section */
> +extern unsigned long __start_kprobe_error_inject_list[];
> +extern unsigned long __stop_kprobe_error_inject_list[];
> +
> +/*
> + * Lookup and populate the kprobe_error_injection_list.
> + *
> + * For safety reasons we only allow certain functions to be overriden with
> + * bpf_error_injection, so we need to populate the list of the symbols that have
> + * been marked as safe for overriding.
> + */
> +static void populate_kprobe_error_injection_list(unsigned long *start,
> + unsigned long *end,
> + void *priv)
> +{
> + unsigned long *iter;
> + struct kprobe_ei_entry *ent;
> + unsigned long entry, offset = 0, size = 0;
> +
> + mutex_lock(&kprobe_ei_mutex);
> + for (iter = start; iter < end; iter++) {
> + entry = arch_deref_entry_point((void *)*iter);
> +
> + if (!kernel_text_address(entry) ||
> + !kallsyms_lookup_size_offset(entry, &size, &offset)) {
> + pr_err("Failed to find error inject entry at %p\n",
> + (void *)entry);
> + continue;
> + }
> +
> + ent = kmalloc(sizeof(*ent), GFP_KERNEL);
> + if (!ent)
> + break;
> + ent->start_addr = entry;
> + ent->end_addr = entry + size;
> + ent->priv = priv;
> + INIT_LIST_HEAD(&ent->list);
> + list_add_tail(&ent->list, &kprobe_error_injection_list);
> + }
> + mutex_unlock(&kprobe_ei_mutex);
> +}
> +
> +static void __init populate_kernel_kprobe_ei_list(void)
> +{
> + populate_kprobe_error_injection_list(__start_kprobe_error_inject_list,
> + __stop_kprobe_error_inject_list,
> + NULL);
> +}
> +
> +static void module_load_kprobe_ei_list(struct module *mod)
> +{
> + if (!mod->num_kprobe_ei_funcs)
> + return;
> + populate_kprobe_error_injection_list(mod->kprobe_ei_funcs,
> + mod->kprobe_ei_funcs +
> + mod->num_kprobe_ei_funcs, mod);
> +}
> +
> +static void module_unload_kprobe_ei_list(struct module *mod)
> +{
> + struct kprobe_ei_entry *ent, *n;
> + if (!mod->num_kprobe_ei_funcs)
> + return;
> +
> + mutex_lock(&kprobe_ei_mutex);
> + list_for_each_entry_safe(ent, n, &kprobe_error_injection_list, list) {
> + if (ent->priv == mod) {
> + list_del_init(&ent->list);
> + kfree(ent);
> + }
> + }
> + mutex_unlock(&kprobe_ei_mutex);
> +}
> +#else
> +static inline void __init populate_kernel_kprobe_ei_list(void) {}
> +static inline void module_load_kprobe_ei_list(struct module *m) {}
> +static inline void module_unload_kprobe_ei_list(struct module *m) {}
> +#endif
> +
> /* Module notifier call back, checking kprobes on the module */
> static int kprobes_module_callback(struct notifier_block *nb,
> unsigned long val, void *data)
> @@ -2178,6 +2279,11 @@ static int kprobes_module_callback(struct notifier_block *nb,
> unsigned int i;
> int checkcore = (val == MODULE_STATE_GOING);
>
> + if (val == MODULE_STATE_COMING)
> + module_load_kprobe_ei_list(mod);
> + else if (val == MODULE_STATE_GOING)
> + module_unload_kprobe_ei_list(mod);
> +
> if (val != MODULE_STATE_GOING && val != MODULE_STATE_LIVE)
> return NOTIFY_DONE;
>
> @@ -2240,6 +2346,8 @@ static int __init init_kprobes(void)
> pr_err("Please take care of using kprobes.\n");
> }
>
> + populate_kernel_kprobe_ei_list();
> +
> if (kretprobe_blacklist_size) {
> /* lookup the function address from its name */
> for (i = 0; kretprobe_blacklist[i].name != NULL; i++) {
> @@ -2407,6 +2515,56 @@ static const struct file_operations debugfs_kprobe_blacklist_ops = {
> .release = seq_release,
> };
>
> +/*
> + * kprobes/error_injection_list -- shows which functions can be overriden for
> + * error injection.
> + * */
> +static void *kprobe_ei_seq_start(struct seq_file *m, loff_t *pos)
> +{
> + mutex_lock(&kprobe_ei_mutex);
> + return seq_list_start(&kprobe_error_injection_list, *pos);
> +}
> +
> +static void kprobe_ei_seq_stop(struct seq_file *m, void *v)
> +{
> + mutex_unlock(&kprobe_ei_mutex);
> +}
> +
> +static void *kprobe_ei_seq_next(struct seq_file *m, void *v, loff_t *pos)
> +{
> + return seq_list_next(v, &kprobe_error_injection_list, pos);
> +}
> +
> +static int kprobe_ei_seq_show(struct seq_file *m, void *v)
> +{
> + char buffer[KSYM_SYMBOL_LEN];
> + struct kprobe_ei_entry *ent =
> + list_entry(v, struct kprobe_ei_entry, list);
> +
> + sprint_symbol(buffer, ent->start_addr);
> + seq_printf(m, "%s\n", buffer);
> + return 0;
> +}
> +
> +static const struct seq_operations kprobe_ei_seq_ops = {
> + .start = kprobe_ei_seq_start,
> + .next = kprobe_ei_seq_next,
> + .stop = kprobe_ei_seq_stop,
> + .show = kprobe_ei_seq_show,
> +};
> +
> +static int kprobe_ei_open(struct inode *inode, struct file *filp)
> +{
> + return seq_open(filp, &kprobe_ei_seq_ops);
> +}
> +
> +static const struct file_operations debugfs_kprobe_ei_ops = {
> + .open = kprobe_ei_open,
> + .read = seq_read,
> + .llseek = seq_lseek,
> + .release = seq_release,
> +};
> +
> static void arm_all_kprobes(void)
> {
> struct hlist_head *head;
> @@ -2548,6 +2706,11 @@ static int __init debugfs_kprobe_init(void)
> if (!file)
> goto error;
>
> + file = debugfs_create_file("error_injection_list", 0444, dir, NULL,
> + &debugfs_kprobe_ei_ops);
> + if (!file)
> + goto error;
> +
> return 0;
>
> error:
> diff --git a/kernel/module.c b/kernel/module.c
> index dea01ac9cb74..bd695bfdc5c4 100644
> --- a/kernel/module.c
> +++ b/kernel/module.c
> @@ -3118,7 +3118,11 @@ static int find_module_sections(struct module *mod, struct load_info *info)
> sizeof(*mod->ftrace_callsites),
> &mod->num_ftrace_callsites);
> #endif
> -
> +#ifdef CONFIG_BPF_KPROBE_OVERRIDE
> + mod->kprobe_ei_funcs = section_objs(info, "_kprobe_error_inject_list",
> + sizeof(*mod->kprobe_ei_funcs),
> + &mod->num_kprobe_ei_funcs);
> +#endif
> mod->extable = section_objs(info, "__ex_table",
> sizeof(*mod->extable), &mod->num_exentries);
>
> --
> 2.7.5
>
--
Masami Hiramatsu <mhiramat@kernel.org>
^ permalink raw reply
* Re: [PATCH v3 07/33] nds32: MMU initialization
From: Guo Ren @ 2017-12-18 9:08 UTC (permalink / raw)
To: Greentime Hu
Cc: greentime, linux-kernel, arnd, linux-arch, tglx, jason,
marc.zyngier, robh+dt, netdev, deanbo422, devicetree, viro,
dhowells, will.deacon, daniel.lezcano, linux-serial,
geert.uytterhoeven, linus.walleij, mark.rutland, greg,
Vincent Chen
In-Reply-To: <0964714c3dcac46ac700085717b0f414b7978112.1512723245.git.green.hu@gmail.com>
Hi Greentime,
On Fri, Dec 08, 2017 at 05:11:50PM +0800, Greentime Hu wrote:
[...]
>
> diff --git a/arch/nds32/mm/highmem.c b/arch/nds32/mm/highmem.c
[...]
> +void *kmap(struct page *page)
> +{
> + unsigned long vaddr;
> + might_sleep();
> + if (!PageHighMem(page))
> + return page_address(page);
> + vaddr = (unsigned long)kmap_high(page);
Here should invalid the cpu_mmu_tlb's entry, Or invalid it in the
set_pte().
eg:
vaddr0 = kmap(page0)
*vaddr0 = val0 //It will cause tlb-miss, and hard-refill to MMU-tlb
kunmap(page0)
vaddr1 = kmap(page1) // Mostly vaddr1 = vaddr0
val = vaddr1; //No tlb-miss and it will get page0's val not page1, because
last expired vaddr0's entry is left in CPU-MMU-tlb.
Best Regards
Guo Ren
^ permalink raw reply
* Re: [PATCH net-next 17/17] net: hns3: change TM sched mode to TC-based mode when SRIOV enabled
From: Sergei Shtylyov @ 2017-12-18 9:08 UTC (permalink / raw)
To: Lipeng, davem; +Cc: netdev, linux-kernel, linuxarm, salil.mehta
In-Reply-To: <1513589500-121623-18-git-send-email-lipeng321@huawei.com>
On 12/18/2017 12:31 PM, Lipeng wrote:
> TC-based sched mode supports SRIOV enabled and SRIOV disabled. This
> patch change the TM sched mode to TC-based mode in initialization
> process.
>
> Fixes: cc9bb43 (net: hns3: Add tc-based TM support for sriov enabled port)
Need at least 12 hex digits.
> Signed-off-by: Lipeng <lipeng321@huawei.com>
[...]
MBR, Sergei
^ permalink raw reply
* Re: [PATCH net-next 14/17] net: hns3: add Asym Pause support to phy default features
From: Sergei Shtylyov @ 2017-12-18 9:07 UTC (permalink / raw)
To: Lipeng, davem; +Cc: netdev, linux-kernel, linuxarm, salil.mehta
In-Reply-To: <1513589500-121623-15-git-send-email-lipeng321@huawei.com>
Hello!
On 12/18/2017 12:31 PM, Lipeng wrote:
> From: Fuyun Liang <liangfuyun1@huawei.com>
>
> commit c4fb2cdf575d (net: hns3: fix a bug for phy supported feature
> initialization) adds default supported features for phy, but our hardware
Ten cited commit's summary needs to be enclosed in (""), not just ()...
> also supports Asym Pause. This patch adds Asym Pause support to phy
> default features to prevent Asym Pause can not be advertised when the phy
> negotiates flow control.
>
> Fixes: c4fb2cdf575d (net: hns3: fix a bug for phy supported feature initialization)
Here as well...
> Signed-off-by: Fuyun Liang <liangfuyun1@huawei.com>
> Signed-off-by: Lipeng <lipeng321@huawei.com>
[...]
MBR, Sergei
^ permalink raw reply
* [PATCH net] net: mediatek: setup proper state for disabled GMAC on the default
From: sean.wang @ 2017-12-18 9:00 UTC (permalink / raw)
To: john, davem; +Cc: nbd, netdev, linux-kernel, linux-mediatek, Sean Wang
From: Sean Wang <sean.wang@mediatek.com>
The current solution would setup fixed and force link of 1Gbps to the both
GMAC on the default. However, The GMAC should always be put to link down
state when the GMAC is disabled on certain target boards. Otherwise,
the driver possibly receives unexpected data from the floating hardware
connection through the unused GMAC. Although the driver had been added
certain protection in RX path to get rid of such kind of unexpected data
sent to the upper stack.
Signed-off-by: Sean Wang <sean.wang@mediatek.com>
---
drivers/net/ethernet/mediatek/mtk_eth_soc.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/drivers/net/ethernet/mediatek/mtk_eth_soc.c b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
index 54adfd9..fc67e35 100644
--- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c
+++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
@@ -1961,11 +1961,12 @@ static int mtk_hw_init(struct mtk_eth *eth)
/* set GE2 TUNE */
regmap_write(eth->pctl, GPIO_BIAS_CTRL, 0x0);
- /* GE1, Force 1000M/FD, FC ON */
- mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(0));
-
- /* GE2, Force 1000M/FD, FC ON */
- mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(1));
+ /* Set linkdown as the default for each GMAC. Its own MCR would be set
+ * up with the more appropriate value when mtk_phy_link_adjust call is
+ * being invoked.
+ */
+ for (i = 0; i < MTK_MAC_COUNT; i++)
+ mtk_w32(eth, 0, MTK_MAC_MCR(i));
/* Indicates CDM to parse the MTK special tag from CPU
* which also is working out for untag packets.
--
2.7.4
^ permalink raw reply related
* Re: [PATCH] net: ibm: emac: support RGMII-[RX|TX]ID phymode
From: Andrew Lunn @ 2017-12-18 8:46 UTC (permalink / raw)
To: Christian Lamparter; +Cc: netdev, David S . Miller, Christophe Jaillet
In-Reply-To: <20171217215122.24045-1-chunkeey@gmail.com>
> @@ -201,6 +201,9 @@ static inline int emac_phy_supports_gige(int phy_mode)
> {
> return phy_mode == PHY_MODE_GMII ||
> phy_mode == PHY_MODE_RGMII ||
> + phy_mode == PHY_MODE_RGMII_ID ||
> + phy_mode == PHY_MODE_RGMII_RXID ||
> + phy_mode == PHY_MODE_RGMII_TXID ||
phy_interface_mode_is_rgmii()
Andrew
^ permalink raw reply
* BUG: unable to handle kernel NULL pointer dereference in rds_send_xmit
From: syzbot @ 2017-12-18 8:43 UTC (permalink / raw)
To: davem, linux-kernel, linux-rdma, netdev, rds-devel,
santosh.shilimkar, syzkaller-bugs
[-- Attachment #1: Type: text/plain, Size: 3079 bytes --]
Hello,
syzkaller hit the following crash on
6084b576dca2e898f5c101baef151f7bfdbb606d
git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/master
compiler: gcc (GCC) 7.1.1 20170620
.config is attached
Raw console output is attached.
Unfortunately, I don't have any reproducer for this bug yet.
BUG: unable to handle kernel NULL pointer dereference at 0000000000000028
program syz-executor6 is using a deprecated SCSI ioctl, please convert it
to SG_IO
IP: rds_send_xmit+0x80/0x930 net/rds/send.c:186
PGD 20e367067 P4D 20e367067 PUD 2118c1067 PMD 0
Oops: 0000 [#1] SMP
Dumping ftrace buffer:
(ftrace buffer empty)
Modules linked in:
CPU: 0 PID: 4514 Comm: kworker/u4:4 Not tainted 4.15.0-rc3-next-20171214+
#67
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS
Google 01/01/2011
Workqueue: krdsd rds_send_worker
RIP: 0010:rds_send_xmit+0x80/0x930 net/rds/send.c:186
RSP: 0018:ffffc90000f6fdc0 EFLAGS: 00010293
RAX: 0000000000000000 RBX: ffff88020e3234c0 RCX: ffffffff8241b25c
RDX: 0000000000000000 RSI: ffffffff83080700 RDI: ffff88020e323400
RBP: ffffc90000f6fe28 R08: 0000000000000001 R09: 0000000000000004
R10: ffffc90000f6fde0 R11: 0000000000000004 R12: ffff88020e3234c0
R13: ffff88020e323400 R14: ffff88021780d800 R15: ffff8802150fc600
FS: 0000000000000000(0000) GS:ffff88021fc00000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 0000000000000028 CR3: 00000002119da000 CR4: 00000000001406f0
DR0: 0000000020000000 DR1: 0000000020001008 DR2: 0000000020001010
DR3: 0000000020000000 DR6: 00000000fffe0ff0 DR7: 0000000000000600
Call Trace:
rds_send_worker+0x37/0x100 net/rds/threads.c:189
process_one_work+0x288/0x7a0 kernel/workqueue.c:2112
worker_thread+0x43/0x4d0 kernel/workqueue.c:2246
kthread+0x149/0x170 kernel/kthread.c:238
ret_from_fork+0x24/0x30 arch/x86/entry/entry_64.S:524
Code: 00 00 00 48 83 c0 01 48 89 45 a0 49 89 85 a8 00 00 00 41 8b 85 a0 00
00 00 83 f8 03 0f 85 4f 08 00 00 e8 e4 f0 e9 fe 48 8b 45 b8 <48> 8b 40 28
48 8b 58 58 48 85 db 74 0a e8 ce f0 e9 fe 4c 89 ef
RIP: rds_send_xmit+0x80/0x930 net/rds/send.c:186 RSP: ffffc90000f6fdc0
CR2: 0000000000000028
---[ end trace 1bd85784f8eb115b ]---
Kernel panic - not syncing: Fatal exception
Dumping ftrace buffer:
(ftrace buffer empty)
Kernel Offset: disabled
Rebooting in 86400 seconds..
---
This bug is generated by a dumb bot. It may contain errors.
See https://goo.gl/tpsmEJ for details.
Direct all questions to syzkaller@googlegroups.com.
Please credit me with: Reported-by: syzbot <syzkaller@googlegroups.com>
syzbot will keep track of this bug report.
Once a fix for this bug is merged into any tree, reply to this email with:
#syz fix: exact-commit-title
To mark this as a duplicate of another syzbot report, please reply with:
#syz dup: exact-subject-of-another-report
If it's a one-off invalid bug report, please reply with:
#syz invalid
Note: if the crash happens again, it will cause creation of a new bug
report.
Note: all commands must start from beginning of the line in the email body.
[-- Attachment #2: config.txt --]
[-- Type: text/plain, Size: 126475 bytes --]
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 4.15.0-rc2 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_MMU=y
CONFIG_ARCH_MMAP_RND_BITS_MIN=28
CONFIG_ARCH_MMAP_RND_BITS_MAX=32
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_KASAN_SHADOW_OFFSET=0xdffffc0000000000
CONFIG_HAVE_INTEL_TXT=y
CONFIG_X86_64_SMP=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_PGTABLE_LEVELS=4
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_CONSTRUCTORS=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y
CONFIG_THREAD_INFO_IN_TASK=y
#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_CROSS_COMPILE=""
# CONFIG_COMPILE_TEST is not set
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
CONFIG_KERNEL_GZIP=y
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_CROSS_MEMORY_ATTACH=y
CONFIG_USELIB=y
CONFIG_AUDIT=y
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_WATCH=y
CONFIG_AUDIT_TREE=y
#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_GENERIC_IRQ_MIGRATION=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_MSI_IRQ=y
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
# CONFIG_IRQ_DOMAIN_DEBUG is not set
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y
#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
#
# CPU/Task time and stats accounting
#
CONFIG_TICK_CPU_ACCOUNTING=y
# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
# CONFIG_CPU_ISOLATION is not set
#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_RCU_EXPERT is not set
CONFIG_SRCU=y
CONFIG_TREE_SRCU=y
# CONFIG_TASKS_RCU is not set
CONFIG_RCU_STALL_COMMON=y
CONFIG_RCU_NEED_SEGCBLIST=y
# CONFIG_BUILD_BIN2C is not set
# CONFIG_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=18
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_NUMA_BALANCING=y
CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
CONFIG_MEMCG_SWAP_ENABLED=y
CONFIG_BLK_CGROUP=y
# CONFIG_DEBUG_BLK_CGROUP is not set
CONFIG_CGROUP_WRITEBACK=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
# CONFIG_CFS_BANDWIDTH is not set
# CONFIG_RT_GROUP_SCHED is not set
CONFIG_CGROUP_PIDS=y
CONFIG_CGROUP_RDMA=y
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_HUGETLB=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_BPF=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_SOCK_CGROUP_DATA=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
CONFIG_USER_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
# CONFIG_SCHED_AUTOGROUP is not set
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_BPF=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_MULTIUSER=y
CONFIG_SGETMASK_SYSCALL=y
CONFIG_SYSFS_SYSCALL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_FHANDLE=y
CONFIG_POSIX_TIMERS=y
CONFIG_PRINTK=y
CONFIG_PRINTK_NMI=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_FUTEX_PI=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_ADVISE_SYSCALLS=y
CONFIG_MEMBARRIER=y
CONFIG_CHECKPOINT_RESTORE=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
CONFIG_BPF_SYSCALL=y
CONFIG_USERFAULTFD=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y
# CONFIG_PC104 is not set
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
CONFIG_VM_EVENT_COUNTERS=y
# CONFIG_COMPAT_BRK is not set
CONFIG_SLAB=y
# CONFIG_SLUB is not set
# CONFIG_SLOB is not set
CONFIG_SLAB_MERGE_DEFAULT=y
# CONFIG_SLAB_FREELIST_RANDOM is not set
CONFIG_SYSTEM_DATA_VERIFICATION=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
CONFIG_CRASH_CORE=y
CONFIG_KEXEC_CORE=y
# CONFIG_OPROFILE is not set
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
CONFIG_KPROBES=y
CONFIG_JUMP_LABEL=y
# CONFIG_STATIC_KEYS_SELFTEST is not set
CONFIG_OPTPROBES=y
CONFIG_UPROBES=y
# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_KRETPROBES=y
CONFIG_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_HAVE_NMI=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
CONFIG_ARCH_HAS_SET_MEMORY=y
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_CLK=y
CONFIG_HAVE_DMA_API_DEBUG=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_HAVE_RCU_TABLE_FREE=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_GCC_PLUGINS=y
CONFIG_GCC_PLUGINS=y
# CONFIG_GCC_PLUGIN_CYC_COMPLEXITY is not set
CONFIG_GCC_PLUGIN_SANCOV=y
# CONFIG_GCC_PLUGIN_LATENT_ENTROPY is not set
# CONFIG_GCC_PLUGIN_STRUCTLEAK is not set
# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set
CONFIG_HAVE_CC_STACKPROTECTOR=y
# CONFIG_CC_STACKPROTECTOR is not set
CONFIG_CC_STACKPROTECTOR_NONE=y
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
# CONFIG_CC_STACKPROTECTOR_STRONG is not set
CONFIG_THIN_ARCHIVES=y
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
CONFIG_HAVE_ARCH_HUGE_VMAP=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
CONFIG_HAVE_EXIT_THREAD=y
CONFIG_ARCH_MMAP_RND_BITS=28
CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y
CONFIG_HAVE_COPY_THREAD_TLS=y
CONFIG_HAVE_STACK_VALIDATION=y
# CONFIG_HAVE_ARCH_HASH is not set
# CONFIG_ISA_BUS_API is not set
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
# CONFIG_CPU_NO_EFFICIENT_FFS is not set
CONFIG_HAVE_ARCH_VMAP_STACK=y
# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set
# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
CONFIG_STRICT_KERNEL_RWX=y
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
CONFIG_STRICT_MODULE_RWX=y
CONFIG_ARCH_HAS_REFCOUNT=y
CONFIG_REFCOUNT_FULL=y
#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
# CONFIG_MODULE_SIG is not set
# CONFIG_MODULE_COMPRESS is not set
# CONFIG_TRIM_UNUSED_KSYMS is not set
CONFIG_MODULES_TREE_LOOKUP=y
CONFIG_BLOCK=y
CONFIG_BLK_SCSI_REQUEST=y
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_ZONED=y
CONFIG_BLK_DEV_THROTTLING=y
# CONFIG_BLK_DEV_THROTTLING_LOW is not set
# CONFIG_BLK_CMDLINE_PARSER is not set
CONFIG_BLK_WBT=y
# CONFIG_BLK_WBT_SQ is not set
CONFIG_BLK_WBT_MQ=y
# CONFIG_BLK_DEBUG_FS is not set
# CONFIG_BLK_SED_OPAL is not set
#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_AIX_PARTITION is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
# CONFIG_ATARI_PARTITION is not set
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
# CONFIG_LDM_PARTITION is not set
CONFIG_SGI_PARTITION=y
# CONFIG_ULTRIX_PARTITION is not set
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
# CONFIG_SYSV68_PARTITION is not set
# CONFIG_CMDLINE_PARTITION is not set
CONFIG_BLOCK_COMPAT=y
CONFIG_BLK_MQ_PCI=y
CONFIG_BLK_MQ_VIRTIO=y
#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_CFQ_GROUP_IOSCHED=y
# CONFIG_DEFAULT_DEADLINE is not set
CONFIG_DEFAULT_CFQ=y
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="cfq"
CONFIG_MQ_IOSCHED_DEADLINE=y
CONFIG_MQ_IOSCHED_KYBER=y
CONFIG_IOSCHED_BFQ=y
CONFIG_BFQ_GROUP_IOSCHED=y
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_PADATA=y
CONFIG_ASN1=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_LOCK_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
CONFIG_QUEUED_SPINLOCKS=y
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
CONFIG_QUEUED_RWLOCKS=y
CONFIG_FREEZER=y
#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
CONFIG_X86_FEATURE_NAMES=y
CONFIG_X86_FAST_FEATURE_TESTS=y
CONFIG_X86_X2APIC=y
CONFIG_X86_MPPARSE=y
# CONFIG_GOLDFISH is not set
# CONFIG_INTEL_RDT is not set
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_NUMACHIP is not set
# CONFIG_X86_VSMP is not set
# CONFIG_X86_UV is not set
# CONFIG_X86_GOLDFISH is not set
# CONFIG_X86_INTEL_MID is not set
# CONFIG_X86_INTEL_LPSS is not set
# CONFIG_X86_AMD_PLATFORM_DEVICE is not set
CONFIG_IOSF_MBI=y
# CONFIG_IOSF_MBI_DEBUG is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
CONFIG_PARAVIRT_DEBUG=y
CONFIG_PARAVIRT_SPINLOCKS=y
# CONFIG_QUEUED_LOCK_STAT is not set
CONFIG_XEN=y
CONFIG_XEN_PV=y
CONFIG_XEN_PV_SMP=y
CONFIG_XEN_DOM0=y
CONFIG_XEN_PVHVM=y
CONFIG_XEN_PVHVM_SMP=y
CONFIG_XEN_512GB=y
CONFIG_XEN_SAVE_RESTORE=y
# CONFIG_XEN_DEBUG_FS is not set
CONFIG_XEN_PVH=y
CONFIG_KVM_GUEST=y
# CONFIG_KVM_DEBUG_FS is not set
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
CONFIG_PARAVIRT_CLOCK=y
CONFIG_NO_BOOTMEM=y
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
# CONFIG_PROCESSOR_SELECT is not set
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
# CONFIG_GART_IOMMU is not set
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS=64
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
CONFIG_SCHED_MC_PRIO=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_COUNT=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
# CONFIG_X86_MCELOG_LEGACY is not set
CONFIG_X86_MCE_INTEL=y
CONFIG_X86_MCE_AMD=y
CONFIG_X86_MCE_THRESHOLD=y
CONFIG_X86_MCE_INJECT=y
CONFIG_X86_THERMAL_VECTOR=y
#
# Performance monitoring
#
CONFIG_PERF_EVENTS_INTEL_UNCORE=y
CONFIG_PERF_EVENTS_INTEL_RAPL=y
CONFIG_PERF_EVENTS_INTEL_CSTATE=y
# CONFIG_PERF_EVENTS_AMD_POWER is not set
# CONFIG_VM86 is not set
CONFIG_X86_16BIT=y
CONFIG_X86_ESPFIX64=y
CONFIG_X86_VSYSCALL_EMULATION=y
# CONFIG_I8K is not set
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
# CONFIG_X86_5LEVEL is not set
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_X86_DIRECT_GBPAGES=y
CONFIG_ARCH_HAS_MEM_ENCRYPT=y
# CONFIG_AMD_MEM_ENCRYPT is not set
CONFIG_NUMA=y
CONFIG_AMD_NUMA=y
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NODES_SPAN_OTHER_NODES=y
# CONFIG_NUMA_EMU is not set
CONFIG_NODES_SHIFT=6
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_HAVE_GENERIC_GUP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
CONFIG_ARCH_ENABLE_THP_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
# CONFIG_MEMORY_FAILURE is not set
CONFIG_TRANSPARENT_HUGEPAGE=y
CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
CONFIG_ARCH_WANTS_THP_SWAP=y
CONFIG_THP_SWAP=y
CONFIG_TRANSPARENT_HUGE_PAGECACHE=y
# CONFIG_CLEANCACHE is not set
# CONFIG_FRONTSWAP is not set
# CONFIG_CMA is not set
# CONFIG_MEM_SOFT_DIRTY is not set
# CONFIG_ZPOOL is not set
# CONFIG_ZBUD is not set
# CONFIG_ZSMALLOC is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y
# CONFIG_IDLE_PAGE_TRACKING is not set
CONFIG_ARCH_HAS_ZONE_DEVICE=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
CONFIG_ARCH_HAS_PKEYS=y
# CONFIG_PERCPU_STATS is not set
# CONFIG_GUP_BENCHMARK is not set
# CONFIG_X86_PMEM_LEGACY is not set
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
# CONFIG_X86_INTEL_UMIP is not set
CONFIG_X86_INTEL_MPX=y
CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
CONFIG_EFI=y
# CONFIG_EFI_STUB is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
# CONFIG_KEXEC_FILE is not set
CONFIG_CRASH_DUMP=y
# CONFIG_KEXEC_JUMP is not set
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
# CONFIG_RANDOMIZE_BASE is not set
CONFIG_PHYSICAL_ALIGN=0x200000
CONFIG_HOTPLUG_CPU=y
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
# CONFIG_COMPAT_VDSO is not set
# CONFIG_LEGACY_VSYSCALL_NATIVE is not set
CONFIG_LEGACY_VSYSCALL_EMULATE=y
# CONFIG_LEGACY_VSYSCALL_NONE is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_MODIFY_LDT_SYSCALL=y
CONFIG_HAVE_LIVEPATCH=y
CONFIG_ARCH_HAS_ADD_PAGES=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y
#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
# CONFIG_SUSPEND_SKIP_SYNC is not set
CONFIG_HIBERNATE_CALLBACKS=y
CONFIG_HIBERNATION=y
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_ADVANCED_DEBUG is not set
# CONFIG_PM_TEST_SUSPEND is not set
CONFIG_PM_SLEEP_DEBUG=y
CONFIG_PM_TRACE=y
CONFIG_PM_TRACE_RTC=y
CONFIG_PM_CLK=y
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
CONFIG_ACPI=y
CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
# CONFIG_ACPI_DEBUGGER is not set
CONFIG_ACPI_LPIT=y
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_PROCFS_POWER is not set
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
# CONFIG_ACPI_EC_DEBUGFS is not set
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_CPU_FREQ_PSS=y
CONFIG_ACPI_PROCESSOR_CSTATE=y
CONFIG_ACPI_PROCESSOR_IDLE=y
CONFIG_ACPI_CPPC_LIB=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_NUMA=y
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
CONFIG_ACPI_TABLE_UPGRADE=y
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
CONFIG_ACPI_HOTPLUG_IOAPIC=y
# CONFIG_ACPI_SBS is not set
# CONFIG_ACPI_HED is not set
# CONFIG_ACPI_CUSTOM_METHOD is not set
# CONFIG_ACPI_BGRT is not set
# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
# CONFIG_ACPI_NFIT is not set
CONFIG_HAVE_ACPI_APEI=y
CONFIG_HAVE_ACPI_APEI_NMI=y
# CONFIG_ACPI_APEI is not set
# CONFIG_DPTF_POWER is not set
# CONFIG_ACPI_EXTLOG is not set
# CONFIG_PMIC_OPREGION is not set
# CONFIG_ACPI_CONFIGFS is not set
# CONFIG_SFI is not set
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_ATTR_SET=y
CONFIG_CPU_FREQ_GOV_COMMON=y
# CONFIG_CPU_FREQ_STAT is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set
#
# CPU frequency scaling drivers
#
CONFIG_X86_INTEL_PSTATE=y
# CONFIG_X86_PCC_CPUFREQ is not set
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ_CPB=y
# CONFIG_X86_POWERNOW_K8 is not set
# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
# CONFIG_X86_P4_CLOCKMOD is not set
#
# shared options
#
# CONFIG_X86_SPEEDSTEP_LIB is not set
#
# CPU Idle
#
CONFIG_CPU_IDLE=y
# CONFIG_CPU_IDLE_GOV_LADDER is not set
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
# CONFIG_INTEL_IDLE is not set
#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_XEN=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
CONFIG_PCIEPORTBUS=y
# CONFIG_HOTPLUG_PCI_PCIE is not set
CONFIG_PCIEAER=y
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEAER_INJECT is not set
CONFIG_PCIEASPM=y
# CONFIG_PCIEASPM_DEBUG is not set
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
# CONFIG_PCIE_DPC is not set
# CONFIG_PCIE_PTM is not set
CONFIG_PCI_BUS_ADDR_T_64BIT=y
CONFIG_PCI_MSI=y
CONFIG_PCI_MSI_IRQ_DOMAIN=y
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
# CONFIG_PCI_STUB is not set
CONFIG_XEN_PCIDEV_FRONTEND=y
CONFIG_PCI_ATS=y
CONFIG_PCI_LOCKLESS_CONFIG=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
CONFIG_PCI_PASID=y
CONFIG_PCI_LABEL=y
CONFIG_HOTPLUG_PCI=y
# CONFIG_HOTPLUG_PCI_ACPI is not set
# CONFIG_HOTPLUG_PCI_CPCI is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set
#
# DesignWare PCI Core Support
#
# CONFIG_PCIE_DW_PLAT is not set
#
# PCI host controller drivers
#
# CONFIG_VMD is not set
#
# PCI Endpoint
#
CONFIG_PCI_ENDPOINT=y
# CONFIG_PCI_ENDPOINT_CONFIGFS is not set
# CONFIG_PCI_EPF_TEST is not set
#
# PCI switch controller drivers
#
# CONFIG_PCI_SW_SWITCHTEC is not set
# CONFIG_ISA_BUS is not set
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
CONFIG_PCCARD=y
CONFIG_PCMCIA=y
CONFIG_PCMCIA_LOAD_CIS=y
CONFIG_CARDBUS=y
#
# PC-card bridges
#
CONFIG_YENTA=y
CONFIG_YENTA_O2=y
CONFIG_YENTA_RICOH=y
CONFIG_YENTA_TI=y
CONFIG_YENTA_ENE_TUNE=y
CONFIG_YENTA_TOSHIBA=y
# CONFIG_PD6729 is not set
# CONFIG_I82092 is not set
CONFIG_PCCARD_NONSTATIC=y
# CONFIG_RAPIDIO is not set
# CONFIG_X86_SYSFB is not set
#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ELFCORE=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
CONFIG_BINFMT_SCRIPT=y
# CONFIG_HAVE_AOUT is not set
CONFIG_BINFMT_MISC=y
CONFIG_COREDUMP=y
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
# CONFIG_X86_X32 is not set
CONFIG_COMPAT_32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_NET=y
CONFIG_NET_INGRESS=y
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
# CONFIG_UNIX_DIAG is not set
CONFIG_TLS=y
CONFIG_XFRM=y
CONFIG_XFRM_OFFLOAD=y
CONFIG_XFRM_ALGO=y
CONFIG_XFRM_USER=y
# CONFIG_XFRM_SUB_POLICY is not set
CONFIG_XFRM_MIGRATE=y
# CONFIG_XFRM_STATISTICS is not set
CONFIG_XFRM_IPCOMP=y
CONFIG_NET_KEY=y
CONFIG_NET_KEY_MIGRATE=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
# CONFIG_IP_FIB_TRIE_STATS is not set
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
CONFIG_IP_PNP_BOOTP=y
CONFIG_IP_PNP_RARP=y
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
CONFIG_NET_IP_TUNNEL=y
CONFIG_IP_MROUTE=y
# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
CONFIG_SYN_COOKIES=y
# CONFIG_NET_IPVTI is not set
CONFIG_NET_UDP_TUNNEL=y
# CONFIG_NET_FOU is not set
# CONFIG_NET_FOU_IP_TUNNELS is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
CONFIG_INET_IPCOMP=y
CONFIG_INET_XFRM_TUNNEL=y
CONFIG_INET_TUNNEL=y
CONFIG_INET_XFRM_MODE_TRANSPORT=y
CONFIG_INET_XFRM_MODE_TUNNEL=y
CONFIG_INET_XFRM_MODE_BEET=y
# CONFIG_INET_DIAG is not set
CONFIG_TCP_CONG_ADVANCED=y
# CONFIG_TCP_CONG_BIC is not set
CONFIG_TCP_CONG_CUBIC=y
# CONFIG_TCP_CONG_WESTWOOD is not set
# CONFIG_TCP_CONG_HTCP is not set
# CONFIG_TCP_CONG_HSTCP is not set
# CONFIG_TCP_CONG_HYBLA is not set
# CONFIG_TCP_CONG_VEGAS is not set
# CONFIG_TCP_CONG_NV is not set
# CONFIG_TCP_CONG_SCALABLE is not set
# CONFIG_TCP_CONG_LP is not set
# CONFIG_TCP_CONG_VENO is not set
# CONFIG_TCP_CONG_YEAH is not set
# CONFIG_TCP_CONG_ILLINOIS is not set
# CONFIG_TCP_CONG_DCTCP is not set
# CONFIG_TCP_CONG_CDG is not set
# CONFIG_TCP_CONG_BBR is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
CONFIG_TCP_MD5SIG=y
CONFIG_IPV6=y
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
CONFIG_INET6_AH=y
CONFIG_INET6_ESP=y
CONFIG_INET6_ESP_OFFLOAD=y
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_IPV6_ILA is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
CONFIG_INET6_TUNNEL=y
CONFIG_INET6_XFRM_MODE_TRANSPORT=y
CONFIG_INET6_XFRM_MODE_TUNNEL=y
CONFIG_INET6_XFRM_MODE_BEET=y
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
# CONFIG_IPV6_VTI is not set
CONFIG_IPV6_SIT=y
# CONFIG_IPV6_SIT_6RD is not set
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=y
# CONFIG_IPV6_FOU is not set
# CONFIG_IPV6_FOU_TUNNEL is not set
# CONFIG_IPV6_MULTIPLE_TABLES is not set
CONFIG_IPV6_MROUTE=y
# CONFIG_IPV6_MROUTE_MULTIPLE_TABLES is not set
# CONFIG_IPV6_PIMSM_V2 is not set
# CONFIG_IPV6_SEG6_LWTUNNEL is not set
# CONFIG_IPV6_SEG6_HMAC is not set
CONFIG_NETLABEL=y
CONFIG_NETWORK_SECMARK=y
CONFIG_NET_PTP_CLASSIFY=y
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_ADVANCED is not set
#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_INGRESS=y
CONFIG_NETFILTER_NETLINK=y
CONFIG_NETFILTER_NETLINK_LOG=y
CONFIG_NF_CONNTRACK=y
CONFIG_NF_LOG_COMMON=y
# CONFIG_NF_LOG_NETDEV is not set
CONFIG_NF_CONNTRACK_SECMARK=y
CONFIG_NF_CONNTRACK_PROCFS=y
CONFIG_NF_CONNTRACK_FTP=y
CONFIG_NF_CONNTRACK_IRC=y
# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
CONFIG_NF_CONNTRACK_SIP=y
CONFIG_NF_CT_NETLINK=y
# CONFIG_NETFILTER_NETLINK_GLUE_CT is not set
CONFIG_NF_NAT=y
CONFIG_NF_NAT_NEEDED=y
# CONFIG_NF_NAT_AMANDA is not set
CONFIG_NF_NAT_FTP=y
CONFIG_NF_NAT_IRC=y
CONFIG_NF_NAT_SIP=y
# CONFIG_NF_NAT_TFTP is not set
# CONFIG_NF_NAT_REDIRECT is not set
# CONFIG_NF_TABLES is not set
CONFIG_NETFILTER_XTABLES=y
#
# Xtables combined modules
#
CONFIG_NETFILTER_XT_MARK=y
#
# Xtables targets
#
CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y
CONFIG_NETFILTER_XT_TARGET_LOG=y
CONFIG_NETFILTER_XT_NAT=y
# CONFIG_NETFILTER_XT_TARGET_NETMAP is not set
CONFIG_NETFILTER_XT_TARGET_NFLOG=y
# CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set
CONFIG_NETFILTER_XT_TARGET_SECMARK=y
CONFIG_NETFILTER_XT_TARGET_TCPMSS=y
#
# Xtables matches
#
CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=y
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y
CONFIG_NETFILTER_XT_MATCH_POLICY=y
CONFIG_NETFILTER_XT_MATCH_STATE=y
# CONFIG_IP_SET is not set
# CONFIG_IP_VS is not set
#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=y
CONFIG_NF_CONNTRACK_IPV4=y
# CONFIG_NF_SOCKET_IPV4 is not set
# CONFIG_NF_DUP_IPV4 is not set
CONFIG_NF_LOG_ARP=y
CONFIG_NF_LOG_IPV4=y
CONFIG_NF_REJECT_IPV4=y
CONFIG_NF_NAT_IPV4=y
CONFIG_NF_NAT_MASQUERADE_IPV4=y
# CONFIG_NF_NAT_PPTP is not set
# CONFIG_NF_NAT_H323 is not set
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_NAT=y
CONFIG_IP_NF_TARGET_MASQUERADE=y
CONFIG_IP_NF_MANGLE=y
# CONFIG_IP_NF_RAW is not set
#
# IPv6: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV6=y
CONFIG_NF_CONNTRACK_IPV6=y
# CONFIG_NF_SOCKET_IPV6 is not set
# CONFIG_NF_DUP_IPV6 is not set
CONFIG_NF_REJECT_IPV6=y
CONFIG_NF_LOG_IPV6=y
CONFIG_IP6_NF_IPTABLES=y
CONFIG_IP6_NF_MATCH_IPV6HEADER=y
CONFIG_IP6_NF_FILTER=y
CONFIG_IP6_NF_TARGET_REJECT=y
CONFIG_IP6_NF_MANGLE=y
# CONFIG_IP6_NF_RAW is not set
# CONFIG_BRIDGE_NF_EBTABLES is not set
CONFIG_IP_DCCP=y
#
# DCCP CCIDs Configuration
#
# CONFIG_IP_DCCP_CCID2_DEBUG is not set
CONFIG_IP_DCCP_CCID3=y
# CONFIG_IP_DCCP_CCID3_DEBUG is not set
CONFIG_IP_DCCP_TFRC_LIB=y
#
# DCCP Kernel Hacking
#
# CONFIG_IP_DCCP_DEBUG is not set
# CONFIG_NET_DCCPPROBE is not set
CONFIG_IP_SCTP=y
# CONFIG_NET_SCTPPROBE is not set
# CONFIG_SCTP_DBG_OBJCNT is not set
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
CONFIG_SCTP_COOKIE_HMAC_MD5=y
CONFIG_SCTP_COOKIE_HMAC_SHA1=y
CONFIG_RDS=y
CONFIG_RDS_TCP=y
# CONFIG_RDS_DEBUG is not set
CONFIG_TIPC=y
CONFIG_TIPC_MEDIA_UDP=y
CONFIG_ATM=y
CONFIG_ATM_CLIP=y
# CONFIG_ATM_CLIP_NO_ICMP is not set
CONFIG_ATM_LANE=y
CONFIG_ATM_MPOA=y
CONFIG_ATM_BR2684=y
# CONFIG_ATM_BR2684_IPFILTER is not set
CONFIG_L2TP=y
# CONFIG_L2TP_DEBUGFS is not set
# CONFIG_L2TP_V3 is not set
CONFIG_STP=y
CONFIG_BRIDGE=y
CONFIG_BRIDGE_IGMP_SNOOPING=y
# CONFIG_BRIDGE_VLAN_FILTERING is not set
CONFIG_HAVE_NET_DSA=y
CONFIG_NET_DSA=y
CONFIG_VLAN_8021Q=y
# CONFIG_VLAN_8021Q_GVRP is not set
# CONFIG_VLAN_8021Q_MVRP is not set
# CONFIG_DECNET is not set
CONFIG_LLC=y
CONFIG_LLC2=y
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_6LOWPAN is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y
#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
# CONFIG_NET_SCH_HTB is not set
# CONFIG_NET_SCH_HFSC is not set
# CONFIG_NET_SCH_ATM is not set
# CONFIG_NET_SCH_PRIO is not set
# CONFIG_NET_SCH_MULTIQ is not set
# CONFIG_NET_SCH_RED is not set
# CONFIG_NET_SCH_SFB is not set
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
# CONFIG_NET_SCH_CBS is not set
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_NETEM is not set
# CONFIG_NET_SCH_DRR is not set
# CONFIG_NET_SCH_MQPRIO is not set
# CONFIG_NET_SCH_CHOKE is not set
# CONFIG_NET_SCH_QFQ is not set
# CONFIG_NET_SCH_CODEL is not set
# CONFIG_NET_SCH_FQ_CODEL is not set
# CONFIG_NET_SCH_FQ is not set
# CONFIG_NET_SCH_HHF is not set
# CONFIG_NET_SCH_PIE is not set
# CONFIG_NET_SCH_INGRESS is not set
# CONFIG_NET_SCH_PLUG is not set
# CONFIG_NET_SCH_DEFAULT is not set
#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=y
# CONFIG_NET_CLS_TCINDEX is not set
# CONFIG_NET_CLS_ROUTE4 is not set
# CONFIG_NET_CLS_FW is not set
# CONFIG_NET_CLS_U32 is not set
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
# CONFIG_NET_CLS_CGROUP is not set
CONFIG_NET_CLS_BPF=y
# CONFIG_NET_CLS_FLOWER is not set
# CONFIG_NET_CLS_MATCHALL is not set
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
# CONFIG_NET_EMATCH_META is not set
# CONFIG_NET_EMATCH_TEXT is not set
CONFIG_NET_CLS_ACT=y
# CONFIG_NET_ACT_POLICE is not set
# CONFIG_NET_ACT_GACT is not set
# CONFIG_NET_ACT_MIRRED is not set
CONFIG_NET_ACT_SAMPLE=y
# CONFIG_NET_ACT_IPT is not set
# CONFIG_NET_ACT_NAT is not set
# CONFIG_NET_ACT_PEDIT is not set
# CONFIG_NET_ACT_SIMP is not set
# CONFIG_NET_ACT_SKBEDIT is not set
# CONFIG_NET_ACT_CSUM is not set
# CONFIG_NET_ACT_VLAN is not set
CONFIG_NET_ACT_BPF=y
# CONFIG_NET_ACT_SKBMOD is not set
# CONFIG_NET_ACT_IFE is not set
# CONFIG_NET_ACT_TUNNEL_KEY is not set
CONFIG_NET_SCH_FIFO=y
# CONFIG_DCB is not set
CONFIG_DNS_RESOLVER=y
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
CONFIG_VSOCKETS=y
CONFIG_VSOCKETS_DIAG=y
CONFIG_VIRTIO_VSOCKETS=y
CONFIG_VIRTIO_VSOCKETS_COMMON=y
# CONFIG_NETLINK_DIAG is not set
# CONFIG_MPLS is not set
# CONFIG_NET_NSH is not set
# CONFIG_HSR is not set
CONFIG_NET_SWITCHDEV=y
# CONFIG_NET_L3_MASTER_DEV is not set
# CONFIG_NET_NCSI is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_CGROUP_NET_PRIO is not set
# CONFIG_CGROUP_NET_CLASSID is not set
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
CONFIG_BPF_JIT=y
CONFIG_BPF_STREAM_PARSER=y
CONFIG_NET_FLOW_LIMIT=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_TCPPROBE is not set
# CONFIG_NET_DROP_MONITOR is not set
CONFIG_HAMRADIO=y
#
# Packet Radio protocols
#
# CONFIG_AX25 is not set
# CONFIG_CAN is not set
CONFIG_BT=y
CONFIG_BT_BREDR=y
CONFIG_BT_RFCOMM=y
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=y
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
CONFIG_BT_HIDP=y
CONFIG_BT_HS=y
CONFIG_BT_LE=y
CONFIG_BT_LEDS=y
# CONFIG_BT_SELFTEST is not set
# CONFIG_BT_DEBUGFS is not set
#
# Bluetooth device drivers
#
CONFIG_BT_INTEL=y
CONFIG_BT_RTL=y
CONFIG_BT_HCIBTUSB=y
# CONFIG_BT_HCIBTUSB_BCM is not set
CONFIG_BT_HCIBTUSB_RTL=y
# CONFIG_BT_HCIUART is not set
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBFUSB is not set
# CONFIG_BT_HCIDTL1 is not set
# CONFIG_BT_HCIBT3C is not set
# CONFIG_BT_HCIBLUECARD is not set
# CONFIG_BT_HCIBTUART is not set
# CONFIG_BT_HCIVHCI is not set
# CONFIG_BT_MRVL is not set
# CONFIG_BT_ATH3K is not set
# CONFIG_AF_RXRPC is not set
CONFIG_AF_KCM=y
CONFIG_STREAM_PARSER=y
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_CFG80211=y
# CONFIG_NL80211_TESTMODE is not set
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y
CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y
CONFIG_CFG80211_DEFAULT_PS=y
# CONFIG_CFG80211_DEBUGFS is not set
CONFIG_CFG80211_CRDA_SUPPORT=y
# CONFIG_CFG80211_WEXT is not set
# CONFIG_LIB80211 is not set
CONFIG_MAC80211=y
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_MINSTREL_HT=y
# CONFIG_MAC80211_RC_MINSTREL_VHT is not set
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
# CONFIG_MAC80211_MESH is not set
CONFIG_MAC80211_LEDS=y
# CONFIG_MAC80211_DEBUGFS is not set
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
CONFIG_WIMAX=y
CONFIG_WIMAX_DEBUG_LEVEL=8
CONFIG_RFKILL=y
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
CONFIG_NET_9P=y
CONFIG_NET_9P_VIRTIO=y
CONFIG_NET_9P_XEN=y
# CONFIG_NET_9P_DEBUG is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
CONFIG_NFC=y
CONFIG_NFC_DIGITAL=y
CONFIG_NFC_NCI=y
CONFIG_NFC_NCI_UART=y
CONFIG_NFC_HCI=y
CONFIG_NFC_SHDLC=y
#
# Near Field Communication (NFC) devices
#
CONFIG_NFC_SIM=y
# CONFIG_NFC_PORT100 is not set
CONFIG_NFC_FDP=y
# CONFIG_NFC_FDP_I2C is not set
# CONFIG_NFC_PN544_I2C is not set
# CONFIG_NFC_PN533_USB is not set
# CONFIG_NFC_PN533_I2C is not set
# CONFIG_NFC_MICROREAD_I2C is not set
# CONFIG_NFC_MRVL_USB is not set
# CONFIG_NFC_MRVL_UART is not set
# CONFIG_NFC_ST21NFCA_I2C is not set
# CONFIG_NFC_ST_NCI_I2C is not set
# CONFIG_NFC_NXP_NCI is not set
# CONFIG_NFC_S3FWRN5_I2C is not set
CONFIG_PSAMPLE=y
# CONFIG_NET_IFE is not set
# CONFIG_LWTUNNEL is not set
CONFIG_DST_CACHE=y
CONFIG_GRO_CELLS=y
# CONFIG_NET_DEVLINK is not set
CONFIG_MAY_USE_DEVLINK=y
CONFIG_HAVE_EBPF_JIT=y
#
# Device Drivers
#
#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER=y
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
CONFIG_DEBUG_DEVRES=y
# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
CONFIG_SYS_HYPERVISOR=y
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=y
CONFIG_DMA_SHARED_BUFFER=y
# CONFIG_DMA_FENCE_TRACE is not set
#
# Bus devices
#
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
# CONFIG_OF is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
# CONFIG_PARPORT is not set
CONFIG_PNP=y
CONFIG_PNP_DEBUG_MESSAGES=y
#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
CONFIG_BLK_DEV_NULL_BLK=y
# CONFIG_BLK_DEV_FD is not set
CONFIG_CDROM=y
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SKD is not set
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_XEN_BLKDEV_FRONTEND=y
# CONFIG_XEN_BLKDEV_BACKEND is not set
CONFIG_VIRTIO_BLK=y
CONFIG_VIRTIO_BLK_SCSI=y
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_RSXX is not set
#
# NVME Support
#
# CONFIG_BLK_DEV_NVME is not set
# CONFIG_NVME_FC is not set
# CONFIG_NVME_TARGET is not set
#
# Misc devices
#
# CONFIG_SENSORS_LIS3LV02D is not set
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_USB_SWITCH_FSA9480 is not set
# CONFIG_SRAM is not set
# CONFIG_PCI_ENDPOINT_TEST is not set
# CONFIG_C2PORT is not set
#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_EEPROM_IDT_89HPESX is not set
# CONFIG_CB710_CORE is not set
#
# Texas Instruments shared transport line discipline
#
# CONFIG_SENSORS_LIS3_I2C is not set
# CONFIG_ALTERA_STAPL is not set
# CONFIG_INTEL_MEI is not set
# CONFIG_INTEL_MEI_ME is not set
# CONFIG_INTEL_MEI_TXE is not set
# CONFIG_VMWARE_VMCI is not set
#
# Intel MIC & related support
#
#
# Intel MIC Bus Driver
#
# CONFIG_INTEL_MIC_BUS is not set
#
# SCIF Bus Driver
#
# CONFIG_SCIF_BUS is not set
#
# VOP Bus Driver
#
# CONFIG_VOP_BUS is not set
#
# Intel MIC Host Driver
#
#
# Intel MIC Card Driver
#
#
# SCIF Driver
#
#
# Intel MIC Coprocessor State Management (COSM) Drivers
#
#
# VOP Driver
#
# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
# CONFIG_CXL_BASE is not set
# CONFIG_CXL_AFU_DRIVER_OPS is not set
# CONFIG_CXL_LIB is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_NETLINK is not set
# CONFIG_SCSI_MQ_DEFAULT is not set
CONFIG_SCSI_PROC_FS=y
#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_CONSTANTS=y
# CONFIG_SCSI_LOGGING is not set
# CONFIG_SCSI_SCAN_ASYNC is not set
#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_ISCSI_BOOT_SYSFS is not set
# CONFIG_SCSI_CXGB3_ISCSI is not set
# CONFIG_SCSI_CXGB4_ISCSI is not set
# CONFIG_SCSI_BNX2_ISCSI is not set
# CONFIG_BE2ISCSI is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_SCSI_ESAS2R is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
# CONFIG_SCSI_MPT3SAS is not set
# CONFIG_SCSI_MPT2SAS is not set
# CONFIG_SCSI_SMARTPQI is not set
# CONFIG_SCSI_UFSHCD is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_VMWARE_PVSCSI is not set
# CONFIG_XEN_SCSI_FRONTEND is not set
# CONFIG_SCSI_SNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_ISCI is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_WD719X is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
CONFIG_SCSI_VIRTIO=y
# CONFIG_SCSI_LOWLEVEL_PCMCIA is not set
# CONFIG_SCSI_DH is not set
# CONFIG_SCSI_OSD_INITIATOR is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_VERBOSE_ERROR=y
CONFIG_ATA_ACPI=y
# CONFIG_SATA_ZPODD is not set
CONFIG_SATA_PMP=y
#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=y
# CONFIG_SATA_AHCI_PLATFORM is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y
#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y
#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=y
# CONFIG_SATA_DWC is not set
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
CONFIG_PATA_AMD=y
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
CONFIG_PATA_OLDPIIX=y
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
CONFIG_PATA_SCH=y
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set
#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PCMCIA is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_RZ1000 is not set
#
# Generic fallback / legacy drivers
#
# CONFIG_PATA_ACPI is not set
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID456 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_MD_FAULTY is not set
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_MQ_DEFAULT is not set
# CONFIG_DM_DEBUG is not set
# CONFIG_DM_CRYPT is not set
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_THIN_PROVISIONING is not set
# CONFIG_DM_CACHE is not set
# CONFIG_DM_ERA is not set
CONFIG_DM_MIRROR=y
# CONFIG_DM_LOG_USERSPACE is not set
# CONFIG_DM_RAID is not set
CONFIG_DM_ZERO=y
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
# CONFIG_DM_UEVENT is not set
# CONFIG_DM_FLAKEY is not set
# CONFIG_DM_VERITY is not set
# CONFIG_DM_SWITCH is not set
# CONFIG_DM_LOG_WRITES is not set
# CONFIG_DM_INTEGRITY is not set
# CONFIG_DM_ZONED is not set
# CONFIG_TARGET_CORE is not set
# CONFIG_FUSION is not set
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
CONFIG_MACINTOSH_DRIVERS=y
CONFIG_MAC_EMUMOUSEBTN=y
CONFIG_NETDEVICES=y
CONFIG_MII=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
# CONFIG_DUMMY is not set
# CONFIG_EQUALIZER is not set
# CONFIG_NET_FC is not set
# CONFIG_IFB is not set
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_VXLAN is not set
# CONFIG_GENEVE is not set
# CONFIG_GTP is not set
# CONFIG_MACSEC is not set
CONFIG_NETCONSOLE=y
# CONFIG_NETCONSOLE_DYNAMIC is not set
CONFIG_NETPOLL=y
CONFIG_NET_POLL_CONTROLLER=y
CONFIG_TUN=y
# CONFIG_TUN_VNET_CROSS_LE is not set
CONFIG_VETH=y
CONFIG_VIRTIO_NET=y
# CONFIG_NLMON is not set
# CONFIG_ARCNET is not set
CONFIG_ATM_DRIVERS=y
# CONFIG_ATM_DUMMY is not set
CONFIG_ATM_TCP=y
# CONFIG_ATM_LANAI is not set
# CONFIG_ATM_ENI is not set
# CONFIG_ATM_FIRESTREAM is not set
# CONFIG_ATM_ZATM is not set
# CONFIG_ATM_NICSTAR is not set
# CONFIG_ATM_IDT77252 is not set
# CONFIG_ATM_AMBASSADOR is not set
# CONFIG_ATM_HORIZON is not set
# CONFIG_ATM_IA is not set
# CONFIG_ATM_FORE200E is not set
# CONFIG_ATM_HE is not set
# CONFIG_ATM_SOLOS is not set
#
# CAIF transport drivers
#
#
# Distributed Switch Architecture drivers
#
# CONFIG_B53 is not set
# CONFIG_NET_DSA_LOOP is not set
# CONFIG_NET_DSA_MT7530 is not set
# CONFIG_NET_DSA_MV88E6060 is not set
# CONFIG_MICROCHIP_KSZ is not set
# CONFIG_NET_DSA_MV88E6XXX is not set
# CONFIG_NET_DSA_QCA8K is not set
# CONFIG_NET_DSA_SMSC_LAN9303_I2C is not set
# CONFIG_NET_DSA_SMSC_LAN9303_MDIO is not set
CONFIG_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_PCMCIA_3C574 is not set
# CONFIG_PCMCIA_3C589 is not set
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_AGERE=y
# CONFIG_ET131X is not set
CONFIG_NET_VENDOR_ALACRITECH=y
# CONFIG_SLICOSS is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMAZON=y
# CONFIG_ENA_ETHERNET is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
# CONFIG_PCMCIA_NMCLAN is not set
# CONFIG_AMD_XGBE is not set
# CONFIG_AMD_XGBE_HAVE_ECC is not set
# CONFIG_NET_VENDOR_AQUANTIA is not set
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
# CONFIG_NET_VENDOR_AURORA is not set
CONFIG_NET_CADENCE=y
# CONFIG_MACB is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
CONFIG_TIGON3=y
CONFIG_TIGON3_HWMON=y
# CONFIG_BNX2X is not set
# CONFIG_BNXT is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
CONFIG_NET_VENDOR_CAVIUM=y
# CONFIG_THUNDER_NIC_PF is not set
# CONFIG_THUNDER_NIC_VF is not set
# CONFIG_THUNDER_NIC_BGX is not set
# CONFIG_THUNDER_NIC_RGX is not set
# CONFIG_LIQUIDIO is not set
# CONFIG_LIQUIDIO_VF is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
# CONFIG_CX_ECAT is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
# CONFIG_TULIP is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_ULI526X is not set
# CONFIG_PCMCIA_XIRCOM is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_EZCHIP=y
CONFIG_NET_VENDOR_EXAR=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
CONFIG_NET_VENDOR_FUJITSU=y
# CONFIG_PCMCIA_FMVJ18X is not set
CONFIG_NET_VENDOR_HP=y
# CONFIG_HP100 is not set
# CONFIG_NET_VENDOR_HUAWEI is not set
CONFIG_NET_VENDOR_INTEL=y
CONFIG_E100=y
CONFIG_E1000=y
CONFIG_E1000E=y
CONFIG_E1000E_HWTS=y
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGB is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGBEVF is not set
# CONFIG_I40E is not set
# CONFIG_I40EVF is not set
# CONFIG_FM10K is not set
CONFIG_NET_VENDOR_I825XX=y
# CONFIG_JME is not set
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
CONFIG_SKY2=y
# CONFIG_SKY2_DEBUG is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX4_CORE is not set
# CONFIG_MLX5_CORE is not set
# CONFIG_MLXSW_CORE is not set
# CONFIG_MLXFW is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8842 is not set
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_NETRONOME=y
# CONFIG_NFP is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_PCMCIA_AXNET is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_PCMCIA_PCNET is not set
CONFIG_NET_VENDOR_NVIDIA=y
CONFIG_FORCEDETH=y
CONFIG_NET_VENDOR_OKI=y
# CONFIG_ETHOC is not set
CONFIG_NET_PACKET_ENGINE=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_QLGE is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_QED is not set
CONFIG_NET_VENDOR_QUALCOMM=y
# CONFIG_QCOM_EMAC is not set
# CONFIG_RMNET is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_8139CP is not set
CONFIG_8139TOO=y
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
# CONFIG_R8169 is not set
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_ROCKER=y
# CONFIG_ROCKER is not set
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
# CONFIG_NET_VENDOR_SOLARFLARE is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_PCMCIA_SMC91C92 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TI_CPSW_ALE is not set
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_NET_VENDOR_XIRCOM=y
# CONFIG_PCMCIA_XIRC2PS is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
# CONFIG_DWC_XLGMAC is not set
CONFIG_FDDI=y
# CONFIG_DEFXX is not set
# CONFIG_SKFP is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_MDIO_DEVICE=y
CONFIG_MDIO_BUS=y
# CONFIG_MDIO_BITBANG is not set
# CONFIG_MDIO_THUNDER is not set
CONFIG_PHYLIB=y
# CONFIG_LED_TRIGGER_PHY is not set
#
# MII PHY device drivers
#
# CONFIG_AMD_PHY is not set
# CONFIG_AQUANTIA_PHY is not set
# CONFIG_AT803X_PHY is not set
# CONFIG_BCM7XXX_PHY is not set
# CONFIG_BCM87XX_PHY is not set
# CONFIG_BROADCOM_PHY is not set
# CONFIG_CICADA_PHY is not set
# CONFIG_CORTINA_PHY is not set
# CONFIG_DAVICOM_PHY is not set
# CONFIG_DP83822_PHY is not set
# CONFIG_DP83848_PHY is not set
# CONFIG_DP83867_PHY is not set
# CONFIG_FIXED_PHY is not set
# CONFIG_ICPLUS_PHY is not set
# CONFIG_INTEL_XWAY_PHY is not set
# CONFIG_LSI_ET1011C_PHY is not set
# CONFIG_LXT_PHY is not set
# CONFIG_MARVELL_PHY is not set
# CONFIG_MARVELL_10G_PHY is not set
# CONFIG_MICREL_PHY is not set
# CONFIG_MICROCHIP_PHY is not set
# CONFIG_MICROSEMI_PHY is not set
# CONFIG_NATIONAL_PHY is not set
# CONFIG_QSEMI_PHY is not set
# CONFIG_REALTEK_PHY is not set
# CONFIG_RENESAS_PHY is not set
# CONFIG_ROCKCHIP_PHY is not set
# CONFIG_SMSC_PHY is not set
# CONFIG_STE10XP is not set
# CONFIG_TERANETICS_PHY is not set
# CONFIG_VITESSE_PHY is not set
# CONFIG_XILINX_GMII2RGMII is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
CONFIG_USB_NET_DRIVERS=y
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_RTL8152 is not set
# CONFIG_USB_LAN78XX is not set
# CONFIG_USB_USBNET is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_IPHETH is not set
CONFIG_WLAN=y
# CONFIG_WIRELESS_WDS is not set
CONFIG_WLAN_VENDOR_ADMTEK=y
# CONFIG_ADM8211 is not set
CONFIG_WLAN_VENDOR_ATH=y
# CONFIG_ATH_DEBUG is not set
# CONFIG_ATH5K is not set
# CONFIG_ATH5K_PCI is not set
# CONFIG_ATH9K is not set
# CONFIG_ATH9K_HTC is not set
# CONFIG_CARL9170 is not set
# CONFIG_ATH6KL is not set
# CONFIG_AR5523 is not set
# CONFIG_WIL6210 is not set
# CONFIG_ATH10K is not set
# CONFIG_WCN36XX is not set
CONFIG_WLAN_VENDOR_ATMEL=y
# CONFIG_ATMEL is not set
# CONFIG_AT76C50X_USB is not set
CONFIG_WLAN_VENDOR_BROADCOM=y
# CONFIG_B43 is not set
# CONFIG_B43LEGACY is not set
# CONFIG_BRCMSMAC is not set
# CONFIG_BRCMFMAC is not set
CONFIG_WLAN_VENDOR_CISCO=y
# CONFIG_AIRO is not set
# CONFIG_AIRO_CS is not set
CONFIG_WLAN_VENDOR_INTEL=y
# CONFIG_IPW2100 is not set
# CONFIG_IPW2200 is not set
# CONFIG_IWL4965 is not set
# CONFIG_IWL3945 is not set
# CONFIG_IWLWIFI is not set
CONFIG_WLAN_VENDOR_INTERSIL=y
# CONFIG_HOSTAP is not set
# CONFIG_HERMES is not set
# CONFIG_P54_COMMON is not set
# CONFIG_PRISM54 is not set
CONFIG_WLAN_VENDOR_MARVELL=y
# CONFIG_LIBERTAS is not set
# CONFIG_LIBERTAS_THINFIRM is not set
# CONFIG_MWIFIEX is not set
# CONFIG_MWL8K is not set
CONFIG_WLAN_VENDOR_MEDIATEK=y
# CONFIG_MT7601U is not set
CONFIG_WLAN_VENDOR_RALINK=y
# CONFIG_RT2X00 is not set
CONFIG_WLAN_VENDOR_REALTEK=y
# CONFIG_RTL8180 is not set
# CONFIG_RTL8187 is not set
CONFIG_RTL_CARDS=y
# CONFIG_RTL8192CE is not set
# CONFIG_RTL8192SE is not set
# CONFIG_RTL8192DE is not set
# CONFIG_RTL8723AE is not set
# CONFIG_RTL8723BE is not set
# CONFIG_RTL8188EE is not set
# CONFIG_RTL8192EE is not set
# CONFIG_RTL8821AE is not set
# CONFIG_RTL8192CU is not set
# CONFIG_RTL8XXXU is not set
CONFIG_WLAN_VENDOR_RSI=y
# CONFIG_RSI_91X is not set
CONFIG_WLAN_VENDOR_ST=y
# CONFIG_CW1200 is not set
CONFIG_WLAN_VENDOR_TI=y
# CONFIG_WL1251 is not set
# CONFIG_WL12XX is not set
# CONFIG_WL18XX is not set
# CONFIG_WLCORE is not set
CONFIG_WLAN_VENDOR_ZYDAS=y
# CONFIG_USB_ZD1201 is not set
# CONFIG_ZD1211RW is not set
# CONFIG_WLAN_VENDOR_QUANTENNA is not set
# CONFIG_PCMCIA_RAYCS is not set
# CONFIG_PCMCIA_WL3501 is not set
# CONFIG_MAC80211_HWSIM is not set
# CONFIG_USB_NET_RNDIS_WLAN is not set
#
# WiMAX Wireless Broadband devices
#
# CONFIG_WIMAX_I2400M_USB is not set
# CONFIG_WAN is not set
CONFIG_XEN_NETDEV_FRONTEND=y
# CONFIG_XEN_NETDEV_BACKEND is not set
# CONFIG_VMXNET3 is not set
# CONFIG_FUJITSU_ES is not set
# CONFIG_ISDN is not set
# CONFIG_NVM is not set
#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_LEDS=y
CONFIG_INPUT_FF_MEMLESS=y
CONFIG_INPUT_POLLDEV=y
CONFIG_INPUT_SPARSEKMAP=y
# CONFIG_INPUT_MATRIXKMAP is not set
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_DLINK_DIR685 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_SAMSUNG is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
# CONFIG_KEYBOARD_XTKBD is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_BYD=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
# CONFIG_MOUSE_PS2_ELANTECH is not set
# CONFIG_MOUSE_PS2_SENTELIC is not set
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
CONFIG_MOUSE_PS2_FOCALTECH=y
# CONFIG_MOUSE_PS2_VMMOUSE is not set
CONFIG_MOUSE_PS2_SMBUS=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_CYAPA is not set
# CONFIG_MOUSE_ELAN_I2C is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_ANALOG is not set
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_AS5011 is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_JOYSTICK_XPAD is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_GTCO is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_USB_PEGASUS is not set
# CONFIG_TABLET_SERIAL_WACOM4 is not set
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_PROPERTIES=y
# CONFIG_TOUCHSCREEN_AD7879 is not set
# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
# CONFIG_TOUCHSCREEN_BU21013 is not set
# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
# CONFIG_TOUCHSCREEN_DYNAPRO is not set
# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
# CONFIG_TOUCHSCREEN_EETI is not set
# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
# CONFIG_TOUCHSCREEN_EXC3000 is not set
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_HIDEEP is not set
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_S6SY761 is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_EKTF2127 is not set
# CONFIG_TOUCHSCREEN_ELAN is not set
# CONFIG_TOUCHSCREEN_ELO is not set
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_WACOM_I2C is not set
# CONFIG_TOUCHSCREEN_MAX11801 is not set
# CONFIG_TOUCHSCREEN_MCS5000 is not set
# CONFIG_TOUCHSCREEN_MMS114 is not set
# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_MK712 is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_PIXCIR is not set
# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
# CONFIG_TOUCHSCREEN_TSC2004 is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
# CONFIG_TOUCHSCREEN_SILEAD is not set
# CONFIG_TOUCHSCREEN_ST1232 is not set
# CONFIG_TOUCHSCREEN_STMFTS is not set
# CONFIG_TOUCHSCREEN_SX8654 is not set
# CONFIG_TOUCHSCREEN_TPS6507X is not set
# CONFIG_TOUCHSCREEN_ZET6223 is not set
# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_E3X0_BUTTON is not set
# CONFIG_INPUT_PCSPKR is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_APANEL is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_KXTJ9 is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
# CONFIG_INPUT_UINPUT is not set
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IMS_PCU is not set
# CONFIG_INPUT_CMA3000 is not set
CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y
# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
# CONFIG_INPUT_DRV2665_HAPTICS is not set
# CONFIG_INPUT_DRV2667_HAPTICS is not set
# CONFIG_RMI4_CORE is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_USERIO is not set
# CONFIG_GAMEPORT is not set
#
# Character devices
#
CONFIG_TTY=y
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_ROCKETPORT is not set
# CONFIG_CYCLADES is not set
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
# CONFIG_SYNCLINK is not set
# CONFIG_SYNCLINKMP is not set
# CONFIG_SYNCLINK_GT is not set
# CONFIG_NOZOMI is not set
# CONFIG_ISI is not set
# CONFIG_N_HDLC is not set
# CONFIG_N_GSM is not set
# CONFIG_TRACE_SINK is not set
CONFIG_DEVMEM=y
# CONFIG_DEVKMEM is not set
#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
# CONFIG_SERIAL_8250_FINTEK is not set
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_DMA=y
CONFIG_SERIAL_8250_PCI=y
# CONFIG_SERIAL_8250_EXAR is not set
# CONFIG_SERIAL_8250_CS is not set
CONFIG_SERIAL_8250_NR_UARTS=32
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
CONFIG_SERIAL_8250_DETECT_IRQ=y
CONFIG_SERIAL_8250_RSA=y
# CONFIG_SERIAL_8250_FSL is not set
# CONFIG_SERIAL_8250_DW is not set
# CONFIG_SERIAL_8250_RT288X is not set
CONFIG_SERIAL_8250_LPSS=y
CONFIG_SERIAL_8250_MID=y
# CONFIG_SERIAL_8250_MOXA is not set
#
# Non-8250 serial port support
#
# CONFIG_SERIAL_UARTLITE is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
CONFIG_SERIAL_DEV_BUS=y
CONFIG_SERIAL_DEV_CTRL_TTYPORT=y
# CONFIG_TTY_PRINTK is not set
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
CONFIG_HVC_XEN_FRONTEND=y
CONFIG_VIRTIO_CONSOLE=y
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
CONFIG_HW_RANDOM_VIA=y
# CONFIG_HW_RANDOM_VIRTIO is not set
CONFIG_NVRAM=y
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
# CONFIG_CARDMAN_4000 is not set
# CONFIG_CARDMAN_4040 is not set
# CONFIG_SCR24X is not set
# CONFIG_IPWIRELESS is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
CONFIG_HPET=y
# CONFIG_HPET_MMAP is not set
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
# CONFIG_XILLYBUS is not set
#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_SMBUS=y
CONFIG_I2C_ALGOBIT=y
#
# I2C Hardware Bus support
#
#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
CONFIG_I2C_I801=y
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_ISMT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_EMEV2 is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_PXA_PCI is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_XILINX is not set
#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_DIOLAN_U2C is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set
#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_MLXCPLD is not set
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_SLAVE is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_SPI is not set
# CONFIG_SPMI is not set
# CONFIG_HSI is not set
CONFIG_PPS=y
# CONFIG_PPS_DEBUG is not set
#
# PPS clients support
#
# CONFIG_PPS_CLIENT_KTIMER is not set
# CONFIG_PPS_CLIENT_LDISC is not set
# CONFIG_PPS_CLIENT_GPIO is not set
#
# PPS generators support
#
#
# PTP clock support
#
CONFIG_PTP_1588_CLOCK=y
#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
CONFIG_PTP_1588_CLOCK_KVM=y
# CONFIG_PINCTRL is not set
# CONFIG_GPIOLIB is not set
# CONFIG_W1 is not set
# CONFIG_POWER_AVS is not set
# CONFIG_POWER_RESET is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_CHARGER_SBS is not set
# CONFIG_BATTERY_BQ27XXX is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_HWMON_DEBUG_CHIP is not set
#
# Native drivers
#
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
# CONFIG_SENSORS_APPLESMC is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ASPEED is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS620 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_DELL_SMM is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_FTSTEUTATES is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_HIH6130 is not set
# CONFIG_SENSORS_I5500 is not set
# CONFIG_SENSORS_CORETEMP is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_POWR1220 is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LTC2945 is not set
# CONFIG_SENSORS_LTC2990 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4222 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4260 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX6621 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MAX6697 is not set
# CONFIG_SENSORS_MAX31790 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_TC654 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LM95234 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_NTC_THERMISTOR is not set
# CONFIG_SENSORS_NCT6683 is not set
# CONFIG_SENSORS_NCT6775 is not set
# CONFIG_SENSORS_NCT7802 is not set
# CONFIG_SENSORS_NCT7904 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SHT3x is not set
# CONFIG_SENSORS_SHTC1 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH56XX_COMMON is not set
# CONFIG_SENSORS_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 is not set
# CONFIG_SENSORS_STTS751 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_ADC128D818 is not set
# CONFIG_SENSORS_ADS1015 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA209 is not set
# CONFIG_SENSORS_INA2XX is not set
# CONFIG_SENSORS_INA3221 is not set
# CONFIG_SENSORS_TC74 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP103 is not set
# CONFIG_SENSORS_TMP108 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_XGENE is not set
#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
CONFIG_THERMAL=y
CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
CONFIG_THERMAL_HWMON=y
CONFIG_THERMAL_WRITABLE_TRIPS=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
# CONFIG_THERMAL_GOV_FAIR_SHARE is not set
CONFIG_THERMAL_GOV_STEP_WISE=y
# CONFIG_THERMAL_GOV_BANG_BANG is not set
CONFIG_THERMAL_GOV_USER_SPACE=y
# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
# CONFIG_THERMAL_EMULATION is not set
# CONFIG_INTEL_POWERCLAMP is not set
CONFIG_X86_PKG_TEMP_THERMAL=y
# CONFIG_INTEL_SOC_DTS_THERMAL is not set
#
# ACPI INT340X thermal drivers
#
# CONFIG_INT340X_THERMAL is not set
# CONFIG_INTEL_PCH_THERMAL is not set
CONFIG_WATCHDOG=y
# CONFIG_WATCHDOG_CORE is not set
# CONFIG_WATCHDOG_NOWAYOUT is not set
CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
# CONFIG_WATCHDOG_SYSFS is not set
#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_WDAT_WDT is not set
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_ZIIRAVE_WATCHDOG is not set
# CONFIG_CADENCE_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
# CONFIG_MAX63XX_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_F71808E_WDT is not set
# CONFIG_SP5100_TCO is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_IBMASR is not set
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
# CONFIG_ITCO_WDT is not set
# CONFIG_IT8712F_WDT is not set
# CONFIG_IT87_WDT is not set
# CONFIG_HP_WATCHDOG is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
# CONFIG_NV_TCO is not set
# CONFIG_60XX_WDT is not set
# CONFIG_CPU5_WDT is not set
# CONFIG_SMSC_SCH311X_WDT is not set
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_VIA_WDT is not set
# CONFIG_W83627HF_WDT is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_SBC_EPX_C3_WATCHDOG is not set
# CONFIG_NI903X_WDT is not set
# CONFIG_NIC7018_WDT is not set
# CONFIG_XEN_WDT is not set
#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set
#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
#
# Watchdog Pretimeout Governors
#
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
CONFIG_SSB_POSSIBLE=y
#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
# CONFIG_BCMA is not set
#
# Multifunction device drivers
#
# CONFIG_MFD_CORE is not set
# CONFIG_MFD_AS3711 is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_BD9571MWV is not set
# CONFIG_MFD_AXP20X_I2C is not set
# CONFIG_MFD_CROS_EC is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_MFD_DA9062 is not set
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_DA9150 is not set
# CONFIG_MFD_DLN2 is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_HTC_PASIC3 is not set
# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
# CONFIG_LPC_ICH is not set
# CONFIG_LPC_SCH is not set
# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
# CONFIG_MFD_INTEL_LPSS_ACPI is not set
# CONFIG_MFD_INTEL_LPSS_PCI is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_KEMPLD is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
# CONFIG_MFD_88PM860X is not set
# CONFIG_MFD_MAX14577 is not set
# CONFIG_MFD_MAX77693 is not set
# CONFIG_MFD_MAX77843 is not set
# CONFIG_MFD_MAX8907 is not set
# CONFIG_MFD_MAX8925 is not set
# CONFIG_MFD_MAX8997 is not set
# CONFIG_MFD_MAX8998 is not set
# CONFIG_MFD_MT6397 is not set
# CONFIG_MFD_MENF21BMC is not set
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RTSX_PCI is not set
# CONFIG_MFD_RT5033 is not set
# CONFIG_MFD_RTSX_USB is not set
# CONFIG_MFD_RC5T583 is not set
# CONFIG_MFD_SEC_CORE is not set
# CONFIG_MFD_SI476X_CORE is not set
# CONFIG_MFD_SM501 is not set
# CONFIG_MFD_SKY81452 is not set
# CONFIG_MFD_SMSC is not set
# CONFIG_ABX500_CORE is not set
# CONFIG_MFD_SYSCON is not set
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_MFD_LP3943 is not set
# CONFIG_MFD_LP8788 is not set
# CONFIG_MFD_TI_LMU is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65086 is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_TPS68470 is not set
# CONFIG_MFD_TI_LP873X is not set
# CONFIG_MFD_TPS6586X is not set
# CONFIG_MFD_TPS65912_I2C is not set
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_TWL6040_CORE is not set
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TMIO is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_WM831X_I2C is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
# CONFIG_REGULATOR is not set
# CONFIG_RC_CORE is not set
# CONFIG_MEDIA_SUPPORT is not set
#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_VIA is not set
CONFIG_INTEL_GTT=y
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
# CONFIG_VGA_SWITCHEROO is not set
CONFIG_DRM=y
CONFIG_DRM_MIPI_DSI=y
# CONFIG_DRM_DP_AUX_CHARDEV is not set
# CONFIG_DRM_DEBUG_MM is not set
# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
CONFIG_DRM_KMS_HELPER=y
CONFIG_DRM_KMS_FB_HELPER=y
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
CONFIG_DRM_TTM=y
CONFIG_DRM_GEM_CMA_HELPER=y
CONFIG_DRM_KMS_CMA_HELPER=y
#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_I2C_NXP_TDA998X is not set
CONFIG_DRM_RADEON=y
CONFIG_DRM_RADEON_USERPTR=y
CONFIG_DRM_AMDGPU=y
CONFIG_DRM_AMDGPU_SI=y
CONFIG_DRM_AMDGPU_CIK=y
CONFIG_DRM_AMDGPU_USERPTR=y
# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set
#
# ACP (Audio CoProcessor) Configuration
#
# CONFIG_DRM_AMD_ACP is not set
#
# Display Engine Configuration
#
CONFIG_DRM_AMD_DC=y
# CONFIG_DRM_AMD_DC_PRE_VEGA is not set
# CONFIG_DRM_AMD_DC_FBC is not set
# CONFIG_DRM_AMD_DC_DCN1_0 is not set
# CONFIG_DEBUG_KERNEL_DC is not set
#
# AMD Library routines
#
CONFIG_CHASH=y
# CONFIG_CHASH_STATS is not set
# CONFIG_CHASH_SELFTEST is not set
# CONFIG_DRM_NOUVEAU is not set
CONFIG_DRM_I915=y
CONFIG_DRM_I915_ALPHA_SUPPORT=y
CONFIG_DRM_I915_CAPTURE_ERROR=y
CONFIG_DRM_I915_COMPRESS_ERROR=y
CONFIG_DRM_I915_USERPTR=y
CONFIG_DRM_I915_GVT=y
#
# drm/i915 Debugging
#
# CONFIG_DRM_I915_WERROR is not set
# CONFIG_DRM_I915_DEBUG is not set
# CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS is not set
# CONFIG_DRM_I915_SW_FENCE_CHECK_DAG is not set
# CONFIG_DRM_I915_SELFTEST is not set
# CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set
# CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set
# CONFIG_DRM_VGEM is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
CONFIG_DRM_CIRRUS_QEMU=y
CONFIG_DRM_QXL=y
# CONFIG_DRM_BOCHS is not set
CONFIG_DRM_VIRTIO_GPU=y
CONFIG_DRM_PANEL=y
#
# Display Panels
#
# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y
#
# Display Interface Bridges
#
# CONFIG_DRM_ANALOGIX_ANX78XX is not set
# CONFIG_DRM_HISI_HIBMC is not set
CONFIG_DRM_TINYDRM=y
# CONFIG_DRM_LEGACY is not set
# CONFIG_DRM_LIB_RANDOM is not set
#
# Frame buffer Devices
#
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
# CONFIG_FB_DDC is not set
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA is not set
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
# CONFIG_FB_VESA is not set
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
CONFIG_XEN_FBDEV_FRONTEND=y
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_BROADSHEET is not set
# CONFIG_FB_AUO_K190X is not set
# CONFIG_FB_SIMPLE is not set
# CONFIG_FB_SM712 is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
CONFIG_BACKLIGHT_GENERIC=y
# CONFIG_BACKLIGHT_APPLE is not set
# CONFIG_BACKLIGHT_PM8941_WLED is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
# CONFIG_BACKLIGHT_ARCXCNN is not set
# CONFIG_VGASTATE is not set
CONFIG_HDMI=y
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
# CONFIG_VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_DUMMY_CONSOLE_COLUMNS=80
CONFIG_DUMMY_CONSOLE_ROWS=25
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y
CONFIG_SOUND=y
CONFIG_SOUND_OSS_CORE=y
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_HWDEP=y
CONFIG_SND_SEQ_DEVICE=y
CONFIG_SND_JACK=y
CONFIG_SND_JACK_INPUT_DEV=y
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_PCM_TIMER=y
CONFIG_SND_HRTIMER=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_MAX_CARDS=32
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_PROC_FS=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
CONFIG_SND_DEBUG=y
# CONFIG_SND_DEBUG_VERBOSE is not set
CONFIG_SND_PCM_XRUN_DEBUG=y
CONFIG_SND_VMASTER=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_SEQ_DUMMY=y
CONFIG_SND_SEQUENCER_OSS=y
CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
CONFIG_SND_SEQ_MIDI_EVENT=y
# CONFIG_SND_SEQ_MIDI is not set
# CONFIG_SND_OPL3_LIB_SEQ is not set
# CONFIG_SND_OPL4_LIB_SEQ is not set
CONFIG_SND_DRIVERS=y
# CONFIG_SND_PCSP is not set
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_ALOOP is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ASIHPI is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1_SEQ is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SE6X is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
#
# HD-Audio
#
CONFIG_SND_HDA=y
CONFIG_SND_HDA_INTEL=y
CONFIG_SND_HDA_HWDEP=y
# CONFIG_SND_HDA_RECONFIG is not set
# CONFIG_SND_HDA_INPUT_BEEP is not set
# CONFIG_SND_HDA_PATCH_LOADER is not set
# CONFIG_SND_HDA_CODEC_REALTEK is not set
# CONFIG_SND_HDA_CODEC_ANALOG is not set
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
# CONFIG_SND_HDA_CODEC_VIA is not set
# CONFIG_SND_HDA_CODEC_HDMI is not set
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
# CONFIG_SND_HDA_CODEC_CONEXANT is not set
# CONFIG_SND_HDA_CODEC_CA0110 is not set
# CONFIG_SND_HDA_CODEC_CA0132 is not set
# CONFIG_SND_HDA_CODEC_CMEDIA is not set
# CONFIG_SND_HDA_CODEC_SI3054 is not set
# CONFIG_SND_HDA_GENERIC is not set
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
CONFIG_SND_HDA_CORE=y
CONFIG_SND_HDA_I915=y
CONFIG_SND_HDA_PREALLOC_SIZE=64
CONFIG_SND_USB=y
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_UA101 is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set
# CONFIG_SND_USB_US122L is not set
# CONFIG_SND_USB_6FIRE is not set
# CONFIG_SND_USB_HIFACE is not set
# CONFIG_SND_BCD2000 is not set
# CONFIG_SND_USB_POD is not set
# CONFIG_SND_USB_PODHD is not set
# CONFIG_SND_USB_TONEPORT is not set
# CONFIG_SND_USB_VARIAX is not set
CONFIG_SND_PCMCIA=y
# CONFIG_SND_VXPOCKET is not set
# CONFIG_SND_PDAUDIOCF is not set
# CONFIG_SND_SOC is not set
CONFIG_SND_X86=y
CONFIG_HDMI_LPE_AUDIO=y
#
# HID support
#
CONFIG_HID=y
# CONFIG_HID_BATTERY_STRENGTH is not set
CONFIG_HIDRAW=y
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=y
#
# Special HID drivers
#
CONFIG_HID_A4TECH=y
# CONFIG_HID_ACCUTOUCH is not set
# CONFIG_HID_ACRUX is not set
CONFIG_HID_APPLE=y
# CONFIG_HID_APPLEIR is not set
# CONFIG_HID_ASUS is not set
# CONFIG_HID_AUREAL is not set
CONFIG_HID_BELKIN=y
# CONFIG_HID_BETOP_FF is not set
CONFIG_HID_CHERRY=y
CONFIG_HID_CHICONY=y
# CONFIG_HID_CORSAIR is not set
# CONFIG_HID_PRODIKEYS is not set
# CONFIG_HID_CMEDIA is not set
CONFIG_HID_CYPRESS=y
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
# CONFIG_HID_ELO is not set
CONFIG_HID_EZKEY=y
# CONFIG_HID_GEMBIRD is not set
# CONFIG_HID_GFRM is not set
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_GT683R is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_UCLOGIC is not set
# CONFIG_HID_WALTOP is not set
CONFIG_HID_GYRATION=y
# CONFIG_HID_ICADE is not set
CONFIG_HID_ITE=y
# CONFIG_HID_TWINHAN is not set
CONFIG_HID_KENSINGTON=y
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LED is not set
# CONFIG_HID_LENOVO is not set
CONFIG_HID_LOGITECH=y
# CONFIG_HID_LOGITECH_DJ is not set
# CONFIG_HID_LOGITECH_HIDPP is not set
CONFIG_LOGITECH_FF=y
# CONFIG_LOGIRUMBLEPAD2_FF is not set
# CONFIG_LOGIG940_FF is not set
CONFIG_LOGIWHEELS_FF=y
# CONFIG_HID_MAGICMOUSE is not set
# CONFIG_HID_MAYFLASH is not set
CONFIG_HID_MICROSOFT=y
CONFIG_HID_MONTEREY=y
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NTI is not set
CONFIG_HID_NTRIG=y
# CONFIG_HID_ORTEK is not set
CONFIG_HID_PANTHERLORD=y
CONFIG_PANTHERLORD_FF=y
# CONFIG_HID_PENMOUNT is not set
CONFIG_HID_PETALYNX=y
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PLANTRONICS is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_RETRODE is not set
# CONFIG_HID_ROCCAT is not set
# CONFIG_HID_SAITEK is not set
CONFIG_HID_SAMSUNG=y
CONFIG_HID_SONY=y
# CONFIG_SONY_FF is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEELSERIES is not set
CONFIG_HID_SUNPLUS=y
# CONFIG_HID_RMI is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
CONFIG_HID_TOPSEED=y
# CONFIG_HID_THINGM is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_UDRAW_PS3 is not set
# CONFIG_HID_WACOM is not set
# CONFIG_HID_WIIMOTE is not set
# CONFIG_HID_XINMO is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set
# CONFIG_HID_ALPS is not set
#
# USB HID support
#
CONFIG_USB_HID=y
CONFIG_HID_PID=y
CONFIG_USB_HIDDEV=y
#
# I2C HID support
#
# CONFIG_I2C_HID is not set
#
# Intel ISH HID support
#
# CONFIG_INTEL_ISH_HID is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_PCI=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_WHITELIST is not set
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
CONFIG_USB_MON=y
# CONFIG_USB_WUSB_CBAF is not set
#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
# CONFIG_USB_XHCI_HCD is not set
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_EHCI_PCI=y
# CONFIG_USB_EHCI_HCD_PLATFORM is not set
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1362_HCD is not set
# CONFIG_USB_FOTG210_HCD is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_OHCI_HCD_PCI=y
# CONFIG_USB_OHCI_HCD_PLATFORM is not set
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_TEST_MODE is not set
#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=y
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set
#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#
#
# also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=y
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_REALTEK is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
# CONFIG_USB_STORAGE_ENE_UB6250 is not set
# CONFIG_USB_UAS is not set
#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USBIP_CORE is not set
# CONFIG_USB_MUSB_HDRC is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_DWC2 is not set
# CONFIG_USB_CHIPIDEA is not set
# CONFIG_USB_ISP1760 is not set
#
# USB port drivers
#
# CONFIG_USB_SERIAL is not set
#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_EHSET_TEST_FIXTURE is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
# CONFIG_USB_EZUSB_FX2 is not set
# CONFIG_USB_HUB_USB251XB is not set
# CONFIG_USB_HSIC_USB3503 is not set
# CONFIG_USB_HSIC_USB4604 is not set
# CONFIG_USB_LINK_LAYER_TEST is not set
# CONFIG_USB_CHAOSKEY is not set
CONFIG_USB_ATM=y
# CONFIG_USB_SPEEDTOUCH is not set
# CONFIG_USB_CXACRU is not set
# CONFIG_USB_UEAGLEATM is not set
# CONFIG_USB_XUSBATM is not set
#
# USB Physical Layer drivers
#
# CONFIG_USB_PHY is not set
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_ISP1301 is not set
# CONFIG_USB_GADGET is not set
CONFIG_TYPEC=y
CONFIG_TYPEC_TCPM=y
# CONFIG_TYPEC_FUSB302 is not set
CONFIG_TYPEC_UCSI=y
CONFIG_UCSI_ACPI=y
# CONFIG_TYPEC_TPS6598X is not set
# CONFIG_USB_LED_TRIG is not set
# CONFIG_USB_ULPI_BUS is not set
# CONFIG_UWB is not set
# CONFIG_MMC is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
# CONFIG_LEDS_CLASS_FLASH is not set
# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set
#
# LED drivers
#
# CONFIG_LEDS_APU is not set
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_LP3944 is not set
# CONFIG_LEDS_LP5521 is not set
# CONFIG_LEDS_LP5523 is not set
# CONFIG_LEDS_LP5562 is not set
# CONFIG_LEDS_LP8501 is not set
# CONFIG_LEDS_LP8860 is not set
# CONFIG_LEDS_CLEVO_MAIL is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA963X is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_TLC591XX is not set
# CONFIG_LEDS_LM355x is not set
#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
# CONFIG_LEDS_BLINKM is not set
# CONFIG_LEDS_MLXCPLD is not set
# CONFIG_LEDS_USER is not set
# CONFIG_LEDS_NIC78BX is not set
#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_DISK is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
# CONFIG_LEDS_TRIGGER_CPU is not set
# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
# CONFIG_LEDS_TRIGGER_CAMERA is not set
# CONFIG_LEDS_TRIGGER_PANIC is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC_ATOMIC_SCRUB=y
CONFIG_EDAC_SUPPORT=y
CONFIG_EDAC=y
CONFIG_EDAC_LEGACY_SYSFS=y
# CONFIG_EDAC_DEBUG is not set
CONFIG_EDAC_DECODE_MCE=y
# CONFIG_EDAC_AMD64 is not set
# CONFIG_EDAC_E752X is not set
# CONFIG_EDAC_I82975X is not set
# CONFIG_EDAC_I3000 is not set
# CONFIG_EDAC_I3200 is not set
# CONFIG_EDAC_IE31200 is not set
# CONFIG_EDAC_X38 is not set
# CONFIG_EDAC_I5400 is not set
# CONFIG_EDAC_I7CORE is not set
# CONFIG_EDAC_I5000 is not set
# CONFIG_EDAC_I5100 is not set
# CONFIG_EDAC_I7300 is not set
# CONFIG_EDAC_SBRIDGE is not set
# CONFIG_EDAC_SKX is not set
# CONFIG_EDAC_PND2 is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_MC146818_LIB=y
CONFIG_RTC_CLASS=y
# CONFIG_RTC_HCTOSYS is not set
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set
# CONFIG_RTC_NVMEM is not set
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set
#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_ABB5ZES3 is not set
# CONFIG_RTC_DRV_ABX80X is not set
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_PCF85363 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8010 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV8803 is not set
#
# SPI RTC drivers
#
CONFIG_RTC_I2C_AND_SPI=y
#
# SPI and I2C RTC drivers
#
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_PCF2127 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set
#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1685_FAMILY is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_DS2404 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_FTRTC010 is not set
#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set
#
# DMA Devices
#
CONFIG_DMA_ENGINE=y
CONFIG_DMA_VIRTUAL_CHANNELS=y
CONFIG_DMA_ACPI=y
# CONFIG_ALTERA_MSGDMA is not set
# CONFIG_INTEL_IDMA64 is not set
# CONFIG_INTEL_IOATDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
# CONFIG_QCOM_HIDMA is not set
CONFIG_DW_DMAC_CORE=y
# CONFIG_DW_DMAC is not set
# CONFIG_DW_DMAC_PCI is not set
CONFIG_HSU_DMA=y
#
# DMA Clients
#
# CONFIG_ASYNC_TX_DMA is not set
# CONFIG_DMATEST is not set
#
# DMABUF options
#
CONFIG_SYNC_FILE=y
# CONFIG_SW_SYNC is not set
# CONFIG_AUXDISPLAY is not set
# CONFIG_UIO is not set
# CONFIG_VFIO is not set
CONFIG_IRQ_BYPASS_MANAGER=y
# CONFIG_VIRT_DRIVERS is not set
CONFIG_VIRTIO=y
#
# Virtio drivers
#
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_PCI_LEGACY=y
# CONFIG_VIRTIO_BALLOON is not set
CONFIG_VIRTIO_INPUT=y
# CONFIG_VIRTIO_MMIO is not set
#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
# CONFIG_HYPERV_TSCPAGE is not set
#
# Xen driver support
#
CONFIG_XEN_BALLOON=y
CONFIG_XEN_SCRUB_PAGES=y
CONFIG_XEN_DEV_EVTCHN=y
CONFIG_XEN_BACKEND=y
CONFIG_XENFS=y
CONFIG_XEN_COMPAT_XENFS=y
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
CONFIG_XEN_GNTDEV=y
CONFIG_XEN_GRANT_DEV_ALLOC=y
CONFIG_SWIOTLB_XEN=y
CONFIG_XEN_PCIDEV_BACKEND=y
CONFIG_XEN_PVCALLS_FRONTEND=y
CONFIG_XEN_PVCALLS_BACKEND=y
CONFIG_XEN_PRIVCMD=y
CONFIG_XEN_ACPI_PROCESSOR=y
CONFIG_XEN_MCE_LOG=y
CONFIG_XEN_HAVE_PVMMU=y
CONFIG_XEN_EFI=y
CONFIG_XEN_AUTO_XLATE=y
CONFIG_XEN_ACPI=y
CONFIG_XEN_SYMS=y
CONFIG_XEN_HAVE_VPMU=y
# CONFIG_STAGING is not set
CONFIG_X86_PLATFORM_DEVICES=y
# CONFIG_ACERHDF is not set
# CONFIG_ASUS_LAPTOP is not set
# CONFIG_DELL_LAPTOP is not set
# CONFIG_DELL_SMO8800 is not set
# CONFIG_DELL_RBTN is not set
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_FUJITSU_TABLET is not set
# CONFIG_AMILO_RFKILL is not set
# CONFIG_HP_ACCEL is not set
# CONFIG_HP_WIRELESS is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_PANASONIC_LAPTOP is not set
# CONFIG_COMPAL_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_IDEAPAD_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_INTEL_MENLOW is not set
CONFIG_EEEPC_LAPTOP=y
# CONFIG_ASUS_WIRELESS is not set
# CONFIG_ACPI_WMI is not set
# CONFIG_TOPSTAR_LAPTOP is not set
# CONFIG_TOSHIBA_BT_RFKILL is not set
# CONFIG_TOSHIBA_HAPS is not set
# CONFIG_ACPI_CMPC is not set
# CONFIG_INTEL_HID_EVENT is not set
# CONFIG_INTEL_VBTN is not set
# CONFIG_INTEL_IPS is not set
# CONFIG_INTEL_PMC_CORE is not set
# CONFIG_IBM_RTL is not set
# CONFIG_SAMSUNG_LAPTOP is not set
# CONFIG_INTEL_OAKTRAIL is not set
# CONFIG_SAMSUNG_Q10 is not set
# CONFIG_APPLE_GMUX is not set
# CONFIG_INTEL_RST is not set
# CONFIG_INTEL_SMARTCONNECT is not set
# CONFIG_PVPANIC is not set
# CONFIG_INTEL_PMC_IPC is not set
# CONFIG_SURFACE_PRO3_BUTTON is not set
# CONFIG_INTEL_PUNIT_IPC is not set
# CONFIG_MLX_PLATFORM is not set
# CONFIG_MLX_CPLD_PLATFORM is not set
# CONFIG_INTEL_TURBO_MAX_3 is not set
CONFIG_PMC_ATOM=y
# CONFIG_CHROME_PLATFORMS is not set
CONFIG_CLKDEV_LOOKUP=y
CONFIG_HAVE_CLK_PREPARE=y
CONFIG_COMMON_CLK=y
#
# Common Clock Framework
#
# CONFIG_COMMON_CLK_SI5351 is not set
# CONFIG_COMMON_CLK_CDCE706 is not set
# CONFIG_COMMON_CLK_CS2000_CP is not set
# CONFIG_COMMON_CLK_NXP is not set
# CONFIG_COMMON_CLK_PXA is not set
# CONFIG_COMMON_CLK_PIC32 is not set
# CONFIG_HWSPINLOCK is not set
#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# CONFIG_ATMEL_PIT is not set
# CONFIG_SH_TIMER_CMT is not set
# CONFIG_SH_TIMER_MTU2 is not set
# CONFIG_SH_TIMER_TMU is not set
# CONFIG_EM_TIMER_STI is not set
CONFIG_MAILBOX=y
CONFIG_PCC=y
# CONFIG_ALTERA_MBOX is not set
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y
#
# Generic IOMMU Pagetable Support
#
CONFIG_IOMMU_IOVA=y
CONFIG_AMD_IOMMU=y
# CONFIG_AMD_IOMMU_V2 is not set
CONFIG_DMAR_TABLE=y
CONFIG_INTEL_IOMMU=y
# CONFIG_INTEL_IOMMU_SVM is not set
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
CONFIG_INTEL_IOMMU_FLOPPY_WA=y
# CONFIG_IRQ_REMAP is not set
#
# Remoteproc drivers
#
# CONFIG_REMOTEPROC is not set
#
# Rpmsg drivers
#
# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
# CONFIG_RPMSG_VIRTIO is not set
#
# SOC (System On Chip) specific Drivers
#
#
# Amlogic SoC drivers
#
#
# Broadcom SoC drivers
#
#
# i.MX SoC drivers
#
#
# Qualcomm SoC drivers
#
# CONFIG_SUNXI_SRAM is not set
# CONFIG_SOC_TI is not set
# CONFIG_PM_DEVFREQ is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
# CONFIG_IIO is not set
# CONFIG_NTB is not set
# CONFIG_VME_BUS is not set
# CONFIG_PWM is not set
#
# IRQ chip support
#
CONFIG_ARM_GIC_MAX_NR=1
# CONFIG_ARM_GIC_V3_ITS is not set
# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set
# CONFIG_FMC is not set
#
# PHY Subsystem
#
# CONFIG_GENERIC_PHY is not set
# CONFIG_BCM_KONA_USB2_PHY is not set
# CONFIG_PHY_PXA_28NM_HSIC is not set
# CONFIG_PHY_PXA_28NM_USB2 is not set
# CONFIG_POWERCAP is not set
# CONFIG_MCB is not set
#
# Performance monitor support
#
CONFIG_RAS=y
# CONFIG_THUNDERBOLT is not set
#
# Android
#
CONFIG_ANDROID=y
CONFIG_ANDROID_BINDER_IPC=y
CONFIG_ANDROID_BINDER_DEVICES="binder0,binder1,binder2,binder3,binder4,binder5,binder6,binder7,binder8,binder9,binder10,binder11,binder12,binder13,binder14,binder15,binder16,binder17,binder18,binder19,binder20,binder21,binder22,binder23,binder24,binder25,binder26,binder27,binder28,binder29,binder30,binder31"
# CONFIG_ANDROID_BINDER_IPC_SELFTEST is not set
# CONFIG_LIBNVDIMM is not set
CONFIG_DAX=y
# CONFIG_DEV_DAX is not set
# CONFIG_NVMEM is not set
# CONFIG_STM is not set
# CONFIG_INTEL_TH is not set
# CONFIG_FPGA is not set
#
# FSI support
#
# CONFIG_FSI is not set
#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_FIRMWARE_MEMMAP=y
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
# CONFIG_DMI_SYSFS is not set
CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
# CONFIG_ISCSI_IBFT_FIND is not set
# CONFIG_FW_CFG_SYSFS is not set
# CONFIG_GOOGLE_FIRMWARE is not set
#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_VARS=y
CONFIG_EFI_ESRT=y
CONFIG_EFI_RUNTIME_MAP=y
# CONFIG_EFI_FAKE_MEMMAP is not set
CONFIG_EFI_RUNTIME_WRAPPERS=y
# CONFIG_EFI_BOOTLOADER_CONTROL is not set
# CONFIG_EFI_CAPSULE_LOADER is not set
# CONFIG_EFI_TEST is not set
# CONFIG_EFI_DEV_PATH_PARSER is not set
#
# Tegra firmware driver
#
#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
CONFIG_FS_IOMAP=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT2=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
CONFIG_EXT4_ENCRYPTION=y
CONFIG_EXT4_FS_ENCRYPTION=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_BTRFS_FS is not set
# CONFIG_NILFS2_FS is not set
# CONFIG_F2FS_FS is not set
# CONFIG_FS_DAX is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
# CONFIG_EXPORTFS_BLOCK_OPS is not set
CONFIG_FILE_LOCKING=y
CONFIG_MANDATORY_FILE_LOCKING=y
CONFIG_FS_ENCRYPTION=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_PRINT_QUOTA_WARNING is not set
# CONFIG_QUOTA_DEBUG is not set
CONFIG_QUOTA_TREE=y
# CONFIG_QFMT_V1 is not set
CONFIG_QFMT_V2=y
CONFIG_QUOTACTL=y
CONFIG_QUOTACTL_COMPAT=y
CONFIG_AUTOFS4_FS=y
CONFIG_FUSE_FS=y
CONFIG_CUSE=y
CONFIG_OVERLAY_FS=y
CONFIG_OVERLAY_FS_REDIRECT_DIR=y
CONFIG_OVERLAY_FS_INDEX=y
#
# Caches
#
CONFIG_FSCACHE=y
# CONFIG_FSCACHE_STATS is not set
# CONFIG_FSCACHE_HISTOGRAM is not set
# CONFIG_FSCACHE_DEBUG is not set
# CONFIG_FSCACHE_OBJECT_LIST is not set
# CONFIG_CACHEFILES is not set
#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
# CONFIG_UDF_FS is not set
#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_FAT_DEFAULT_UTF8 is not set
# CONFIG_NTFS_FS is not set
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_PROC_CHILDREN=y
CONFIG_KERNFS=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_CONFIGFS_FS=y
CONFIG_EFIVAR_FS=y
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ORANGEFS_FS is not set
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_ECRYPT_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_PSTORE is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V2=y
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
# CONFIG_NFS_SWAP is not set
# CONFIG_NFS_V4_1 is not set
CONFIG_ROOT_NFS=y
# CONFIG_NFS_FSCACHE is not set
# CONFIG_NFS_USE_LEGACY_DNS is not set
CONFIG_NFS_USE_KERNEL_DNS=y
# CONFIG_NFSD is not set
CONFIG_GRACE_PERIOD=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_RPCSEC_GSS_KRB5=y
# CONFIG_SUNRPC_DEBUG is not set
# CONFIG_CEPH_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_9P_FS=y
# CONFIG_9P_FSCACHE is not set
# CONFIG_9P_FS_POSIX_ACL is not set
# CONFIG_9P_FS_SECURITY is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
CONFIG_NLS_UTF8=y
# CONFIG_DLM is not set
#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_DYNAMIC_DEBUG is not set
#
# Compile-time checks and compiler options
#
CONFIG_DEBUG_INFO=y
# CONFIG_DEBUG_INFO_REDUCED is not set
# CONFIG_DEBUG_INFO_SPLIT is not set
# CONFIG_DEBUG_INFO_DWARF4 is not set
# CONFIG_GDB_SCRIPTS is not set
# CONFIG_ENABLE_WARN_DEPRECATED is not set
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=2048
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_READABLE_ASM is not set
# CONFIG_UNUSED_SYMBOLS is not set
# CONFIG_PAGE_OWNER is not set
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_SECTION_MISMATCH_WARN_ONLY=y
CONFIG_FRAME_POINTER=y
# CONFIG_STACK_VALIDATION is not set
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_MAGIC_SYSRQ_SERIAL=y
CONFIG_DEBUG_KERNEL=y
#
# Memory Debugging
#
CONFIG_PAGE_EXTENSION=y
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_PAGE_POISONING=y
CONFIG_PAGE_POISONING_NO_SANITY=y
# CONFIG_PAGE_POISONING_ZERO is not set
# CONFIG_DEBUG_PAGE_REF is not set
# CONFIG_DEBUG_RODATA_TEST is not set
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_DEBUG_SLAB is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
CONFIG_DEBUG_STACK_USAGE=y
CONFIG_DEBUG_VM=y
CONFIG_DEBUG_VM_VMACACHE=y
# CONFIG_DEBUG_VM_RB is not set
# CONFIG_DEBUG_VM_PGFLAGS is not set
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
# CONFIG_DEBUG_VIRTUAL is not set
CONFIG_DEBUG_MEMORY_INIT=y
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
CONFIG_DEBUG_STACKOVERFLOW=y
CONFIG_HAVE_ARCH_KASAN=y
CONFIG_KASAN=y
# CONFIG_KASAN_OUTLINE is not set
CONFIG_KASAN_INLINE=y
# CONFIG_TEST_KASAN is not set
CONFIG_ARCH_HAS_KCOV=y
CONFIG_KCOV=y
CONFIG_KCOV_ENABLE_COMPARISONS=y
CONFIG_KCOV_INSTRUMENT_ALL=y
# CONFIG_DEBUG_SHIRQ is not set
#
# Debug Lockups and Hangs
#
CONFIG_LOCKUP_DETECTOR=y
CONFIG_SOFTLOCKUP_DETECTOR=y
CONFIG_HARDLOCKUP_DETECTOR_PERF=y
CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y
CONFIG_HARDLOCKUP_DETECTOR=y
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC=y
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=1
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=1
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
CONFIG_BOOTPARAM_HUNG_TASK_PANIC=y
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=1
CONFIG_WQ_WATCHDOG=y
CONFIG_PANIC_ON_OOPS=y
CONFIG_PANIC_ON_OOPS_VALUE=1
CONFIG_PANIC_TIMEOUT=86400
# CONFIG_SCHED_DEBUG is not set
CONFIG_SCHED_INFO=y
CONFIG_SCHEDSTATS=y
CONFIG_SCHED_STACK_END_CHECK=y
# CONFIG_DEBUG_TIMEKEEPING is not set
#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
# CONFIG_LOCK_STAT is not set
CONFIG_LOCKDEP_CROSSRELEASE=y
CONFIG_LOCKDEP_COMPLETIONS=y
CONFIG_BOOTPARAM_LOCKDEP_CROSSRELEASE_FULLSTACK=y
# CONFIG_DEBUG_LOCKDEP is not set
CONFIG_DEBUG_ATOMIC_SLEEP=y
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
# CONFIG_LOCK_TORTURE_TEST is not set
# CONFIG_WW_MUTEX_SELFTEST is not set
CONFIG_TRACE_IRQFLAGS=y
CONFIG_STACKTRACE=y
# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_LIST=y
CONFIG_DEBUG_PI_LIST=y
# CONFIG_DEBUG_SG is not set
CONFIG_DEBUG_NOTIFIERS=y
# CONFIG_DEBUG_CREDENTIALS is not set
#
# RCU Debugging
#
CONFIG_PROVE_RCU=y
# CONFIG_TORTURE_TEST is not set
# CONFIG_RCU_PERF_TEST is not set
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=120
# CONFIG_RCU_TRACE is not set
# CONFIG_RCU_EQS_DEBUG is not set
# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
CONFIG_FAULT_INJECTION=y
CONFIG_FAILSLAB=y
CONFIG_FAIL_PAGE_ALLOC=y
CONFIG_FAIL_MAKE_REQUEST=y
CONFIG_FAIL_IO_TIMEOUT=y
CONFIG_FAIL_FUTEX=y
CONFIG_FAULT_INJECTION_DEBUG_FS=y
# CONFIG_LATENCYTOP is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
# CONFIG_FUNCTION_TRACER is not set
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_SCHED_TRACER is not set
# CONFIG_HWLAT_TRACER is not set
# CONFIG_FTRACE_SYSCALLS is not set
# CONFIG_TRACER_SNAPSHOT is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
# CONFIG_STACK_TRACER is not set
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_KPROBE_EVENTS=y
CONFIG_UPROBE_EVENTS=y
CONFIG_BPF_EVENTS=y
CONFIG_PROBE_EVENTS=y
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_MMIOTRACE is not set
# CONFIG_HIST_TRIGGERS is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_TRACE_EVAL_MAP_FILE is not set
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
# CONFIG_DMA_API_DEBUG is not set
#
# Runtime Testing
#
# CONFIG_LKDTM is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_TEST_SORT is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PERCPU_TEST is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_TEST_HEXDUMP is not set
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_TEST_PRINTF is not set
# CONFIG_TEST_BITMAP is not set
# CONFIG_TEST_UUID is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_TEST_HASH is not set
# CONFIG_TEST_LKM is not set
# CONFIG_TEST_USER_COPY is not set
# CONFIG_TEST_BPF is not set
# CONFIG_TEST_FIND_BIT is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_SYSCTL is not set
# CONFIG_TEST_UDELAY is not set
# CONFIG_TEST_STATIC_KEYS is not set
# CONFIG_TEST_KMOD is not set
# CONFIG_MEMTEST is not set
CONFIG_BUG_ON_DATA_CORRUPTION=y
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set
# CONFIG_UBSAN is not set
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
# CONFIG_STRICT_DEVMEM is not set
CONFIG_EARLY_PRINTK_USB=y
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
# CONFIG_EARLY_PRINTK_EFI is not set
# CONFIG_EARLY_PRINTK_USB_XDBC is not set
# CONFIG_X86_PTDUMP_CORE is not set
# CONFIG_X86_PTDUMP is not set
# CONFIG_EFI_PGT_DUMP is not set
# CONFIG_DEBUG_WX is not set
CONFIG_DOUBLEFAULT=y
# CONFIG_DEBUG_TLBFLUSH is not set
# CONFIG_IOMMU_STRESS is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
# CONFIG_X86_DECODER_SELFTEST is not set
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
CONFIG_IO_DELAY_0X80=y
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=0
CONFIG_DEBUG_BOOT_PARAMS=y
# CONFIG_CPA_DEBUG is not set
CONFIG_OPTIMIZE_INLINING=y
# CONFIG_DEBUG_ENTRY is not set
# CONFIG_DEBUG_NMI_SELFTEST is not set
CONFIG_X86_DEBUG_FPU=y
# CONFIG_PUNIT_ATOM_DEBUG is not set
# CONFIG_UNWINDER_ORC is not set
CONFIG_UNWINDER_FRAME_POINTER=y
# CONFIG_UNWINDER_GUESS is not set
#
# Security options
#
CONFIG_KEYS=y
CONFIG_KEYS_COMPAT=y
CONFIG_PERSISTENT_KEYRINGS=y
CONFIG_BIG_KEYS=y
CONFIG_ENCRYPTED_KEYS=y
CONFIG_KEY_DH_OPERATIONS=y
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
CONFIG_SECURITY_WRITABLE_HOOKS=y
# CONFIG_SECURITYFS is not set
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_NETWORK_XFRM=y
CONFIG_SECURITY_PATH=y
# CONFIG_INTEL_TXT is not set
CONFIG_LSM_MMAP_MIN_ADDR=65536
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
CONFIG_HARDENED_USERCOPY=y
# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
CONFIG_FORTIFY_SOURCE=y
# CONFIG_STATIC_USERMODEHELPER is not set
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
CONFIG_SECURITY_SELINUX_DISABLE=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0
# CONFIG_SECURITY_SMACK is not set
# CONFIG_SECURITY_TOMOYO is not set
# CONFIG_SECURITY_APPARMOR is not set
# CONFIG_SECURITY_LOADPIN is not set
# CONFIG_SECURITY_YAMA is not set
CONFIG_INTEGRITY=y
# CONFIG_INTEGRITY_SIGNATURE is not set
CONFIG_INTEGRITY_AUDIT=y
# CONFIG_IMA is not set
# CONFIG_EVM is not set
CONFIG_DEFAULT_SECURITY_SELINUX=y
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_DEFAULT_SECURITY="selinux"
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_RNG_DEFAULT=y
CONFIG_CRYPTO_AKCIPHER2=y
CONFIG_CRYPTO_AKCIPHER=y
CONFIG_CRYPTO_KPP2=y
CONFIG_CRYPTO_KPP=y
CONFIG_CRYPTO_ACOMP2=y
CONFIG_CRYPTO_RSA=y
CONFIG_CRYPTO_DH=y
CONFIG_CRYPTO_ECDH=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
CONFIG_CRYPTO_USER=y
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_NULL2=y
CONFIG_CRYPTO_PCRYPT=y
CONFIG_CRYPTO_WORKQUEUE=y
CONFIG_CRYPTO_CRYPTD=y
CONFIG_CRYPTO_MCRYPTD=y
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_TEST is not set
CONFIG_CRYPTO_ABLK_HELPER=y
CONFIG_CRYPTO_SIMD=y
CONFIG_CRYPTO_GLUE_HELPER_X86=y
CONFIG_CRYPTO_ENGINE=y
#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=y
CONFIG_CRYPTO_GCM=y
CONFIG_CRYPTO_CHACHA20POLY1305=y
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=y
#
# Block modes
#
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CTR=y
CONFIG_CRYPTO_CTS=y
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=y
CONFIG_CRYPTO_PCBC=y
CONFIG_CRYPTO_XTS=y
CONFIG_CRYPTO_KEYWRAP=y
#
# Hash modes
#
CONFIG_CRYPTO_CMAC=y
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_XCBC=y
CONFIG_CRYPTO_VMAC=y
#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_INTEL=y
CONFIG_CRYPTO_CRC32=y
CONFIG_CRYPTO_CRC32_PCLMUL=y
CONFIG_CRYPTO_CRCT10DIF=y
CONFIG_CRYPTO_CRCT10DIF_PCLMUL=y
CONFIG_CRYPTO_GHASH=y
CONFIG_CRYPTO_POLY1305=y
CONFIG_CRYPTO_POLY1305_X86_64=y
CONFIG_CRYPTO_MD4=y
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=y
CONFIG_CRYPTO_RMD128=y
CONFIG_CRYPTO_RMD160=y
CONFIG_CRYPTO_RMD256=y
CONFIG_CRYPTO_RMD320=y
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA1_SSSE3=y
CONFIG_CRYPTO_SHA256_SSSE3=y
CONFIG_CRYPTO_SHA512_SSSE3=y
CONFIG_CRYPTO_SHA1_MB=y
CONFIG_CRYPTO_SHA256_MB=y
CONFIG_CRYPTO_SHA512_MB=y
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
CONFIG_CRYPTO_SHA3=y
CONFIG_CRYPTO_SM3=y
CONFIG_CRYPTO_TGR192=y
CONFIG_CRYPTO_WP512=y
CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=y
#
# Ciphers
#
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_TI=y
CONFIG_CRYPTO_AES_X86_64=y
CONFIG_CRYPTO_AES_NI_INTEL=y
CONFIG_CRYPTO_ANUBIS=y
CONFIG_CRYPTO_ARC4=y
CONFIG_CRYPTO_BLOWFISH=y
CONFIG_CRYPTO_BLOWFISH_COMMON=y
CONFIG_CRYPTO_BLOWFISH_X86_64=y
CONFIG_CRYPTO_CAMELLIA=y
CONFIG_CRYPTO_CAMELLIA_X86_64=y
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=y
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=y
CONFIG_CRYPTO_CAST_COMMON=y
CONFIG_CRYPTO_CAST5=y
CONFIG_CRYPTO_CAST5_AVX_X86_64=y
CONFIG_CRYPTO_CAST6=y
CONFIG_CRYPTO_CAST6_AVX_X86_64=y
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_DES3_EDE_X86_64=y
CONFIG_CRYPTO_FCRYPT=y
CONFIG_CRYPTO_KHAZAD=y
CONFIG_CRYPTO_SALSA20=y
CONFIG_CRYPTO_SALSA20_X86_64=y
CONFIG_CRYPTO_CHACHA20=y
CONFIG_CRYPTO_CHACHA20_X86_64=y
CONFIG_CRYPTO_SEED=y
CONFIG_CRYPTO_SERPENT=y
CONFIG_CRYPTO_SERPENT_SSE2_X86_64=y
CONFIG_CRYPTO_SERPENT_AVX_X86_64=y
CONFIG_CRYPTO_SERPENT_AVX2_X86_64=y
CONFIG_CRYPTO_TEA=y
CONFIG_CRYPTO_TWOFISH=y
CONFIG_CRYPTO_TWOFISH_COMMON=y
CONFIG_CRYPTO_TWOFISH_X86_64=y
CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=y
CONFIG_CRYPTO_TWOFISH_AVX_X86_64=y
#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_LZO=y
CONFIG_CRYPTO_842=y
CONFIG_CRYPTO_LZ4=y
CONFIG_CRYPTO_LZ4HC=y
#
# Random Number Generation
#
CONFIG_CRYPTO_ANSI_CPRNG=y
CONFIG_CRYPTO_DRBG_MENU=y
CONFIG_CRYPTO_DRBG_HMAC=y
CONFIG_CRYPTO_DRBG_HASH=y
CONFIG_CRYPTO_DRBG_CTR=y
CONFIG_CRYPTO_DRBG=y
CONFIG_CRYPTO_JITTERENTROPY=y
CONFIG_CRYPTO_USER_API=y
CONFIG_CRYPTO_USER_API_HASH=y
CONFIG_CRYPTO_USER_API_SKCIPHER=y
CONFIG_CRYPTO_USER_API_RNG=y
CONFIG_CRYPTO_USER_API_AEAD=y
CONFIG_CRYPTO_HASH_INFO=y
CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=y
CONFIG_CRYPTO_DEV_PADLOCK_AES=y
CONFIG_CRYPTO_DEV_PADLOCK_SHA=y
# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set
CONFIG_CRYPTO_DEV_CCP=y
CONFIG_CRYPTO_DEV_CCP_DD=y
# CONFIG_CRYPTO_DEV_SP_CCP is not set
CONFIG_CRYPTO_DEV_QAT=y
CONFIG_CRYPTO_DEV_QAT_DH895xCC=y
CONFIG_CRYPTO_DEV_QAT_C3XXX=y
CONFIG_CRYPTO_DEV_QAT_C62X=y
CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=y
CONFIG_CRYPTO_DEV_QAT_C3XXXVF=y
CONFIG_CRYPTO_DEV_QAT_C62XVF=y
# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set
CONFIG_CRYPTO_DEV_VIRTIO=y
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_X509_CERTIFICATE_PARSER=y
CONFIG_PKCS7_MESSAGE_PARSER=y
CONFIG_PKCS7_TEST_KEY=y
CONFIG_SIGNED_PE_FILE_VERIFICATION=y
#
# Certificates for signature checking
#
CONFIG_SYSTEM_TRUSTED_KEYRING=y
CONFIG_SYSTEM_TRUSTED_KEYS=""
# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
CONFIG_SECONDARY_TRUSTED_KEYRING=y
# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_IRQFD=y
CONFIG_HAVE_KVM_IRQ_ROUTING=y
CONFIG_HAVE_KVM_EVENTFD=y
CONFIG_KVM_MMIO=y
CONFIG_KVM_ASYNC_PF=y
CONFIG_HAVE_KVM_MSI=y
CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
CONFIG_KVM_VFIO=y
CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
CONFIG_KVM_COMPAT=y
CONFIG_HAVE_KVM_IRQ_BYPASS=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=y
CONFIG_KVM_INTEL=y
CONFIG_KVM_AMD=y
# CONFIG_KVM_MMU_AUDIT is not set
CONFIG_VHOST_NET=y
# CONFIG_VHOST_VSOCK is not set
CONFIG_VHOST=y
# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
CONFIG_BINARY_PRINTF=y
#
# Library routines
#
CONFIG_BITREVERSE=y
# CONFIG_HAVE_ARCH_BITREVERSE is not set
CONFIG_RATIONAL=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_CRC_CCITT=y
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=y
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
CONFIG_CRC4=y
# CONFIG_CRC7 is not set
CONFIG_LIBCRC32C=y
# CONFIG_CRC8 is not set
# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_842_COMPRESS=y
CONFIG_842_DECOMPRESS=y
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_COMPRESS=y
CONFIG_LZ4HC_COMPRESS=y
CONFIG_LZ4_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_SPARC=y
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_INTERVAL_TREE=y
CONFIG_RADIX_TREE_MULTIORDER=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
# CONFIG_DMA_NOOP_OPS is not set
# CONFIG_DMA_VIRT_OPS is not set
CONFIG_CHECK_SIGNATURE=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
CONFIG_CLZ_TAB=y
# CONFIG_CORDIC is not set
# CONFIG_DDR is not set
# CONFIG_IRQ_POLL is not set
CONFIG_MPILIB=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_FONT_SUPPORT=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
# CONFIG_SG_SPLIT is not set
CONFIG_SG_POOL=y
CONFIG_ARCH_HAS_SG_CHAIN=y
CONFIG_ARCH_HAS_PMEM_API=y
CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y
CONFIG_STACKDEPOT=y
CONFIG_SBITMAP=y
# CONFIG_STRING_SELFTEST is not set
[-- Attachment #3: raw.log --]
[-- Type: application/octet-stream, Size: 1048576 bytes --]
e4106dee054746cf0ec9460a82a9233b99fe790f3363601ce05c905cb3bae171b0695b363be8a3d5906d6a94c853005f94a9390e94d2385e9b239fd1691d207b6e0d0fa638f48f5cc22c001719a18a4e9c4b334e30ef6c1b84b400ad203d788d5929857fc6e2e0bf2a398c48168568cad82de272a359a10155f1e9b5f2178e08e7091a94ec4ddc177772befb157e8ac98ed7003531ff5e097db50994a749b4c3cb2aa92f8ac9135c496824df9442a471c8466a6a16562f62689b926b36e3843fdc6972cd2da31d310d8b36ab8dcd748f745e143afb5e499c10fe43ab238450c3592def5003c0673e18c8c139372685bdf5facd77480711c3cdeb991a4389dc11ee501fbdce2fa287de836ec81855b5259220441828c8fd5f5da6a72668c60b9c588d15085d51c3d9fcdca66a9dd19ed8f7a1308985ce1d405fcb9449ea5c8eb807447394fc10b25c8f59653bacaab1dae15ccf87f14d93d2bfb28292d05e810baf455afc142967cf65f51098d3bf6ccdb90a3c0f90b9a90aed2324ca2c2bc01c64a2886468f3a34d80ec29497954096ce2b1d1813cc0354ed013e95cf315f92e34c6bf483a9d534a1104fb52b692658d4cf6366419c8631936aa5d22a8c98c14448d722a61286a598395e1f5ac475465b8f0abf2211169d4", 0x1000}, {&(0x7f0000000000)="", 0x0}, {&(0x7f0000001000)="b5f0abc18f50b7", 0x7}, {&(0x7f0000001000-0xbf)="3402d0225a1ad3f542f79c210df6f17f0eaf87adcc198f7f446ddbc64c2956981542bd3515f726b68006a49de2afd74a4b9610ebb5c97302ae7e9a7f83206f4ba595d99f078c5f1530311af977d23e6ce7a34fa734858c7abd10b06e9eff07512019bf10fb405f972ea3ac79e1b513d6579395eb4f4bd5ce381ca19b05bd053cf49a1b0a29548d607545472cf651c352b5301c37154178f8348e397858b7ed1e2d8a55c69db11d37a1513f701fbe936799cf787af1580a75cb1df77bd02b03", 0xbf}, {&(0x7f0000000000)="15ef37a6b9d7ff11b11b902f1fbfb6d176fc47fa878e52c3f374a71094644126ff15830329c04b6d4bd40d3a4f3b6ed3859840fe29e147fac4eab1e3e59af3333ce6ef0acb0c06c1644b3e74f7cefacb89a59d099f400446ed8a34248078cd17362fe6afa6d676", 0x67}, {&(0x7f0000001000-0x1c)="541f26a7e324cad3b1132fd48d3ca4bfdb0b6e00efc5d24c4b8e99c3", 0x1c}, {&(0x7f0000001000-0xef)="068f5890207d6f4ae3bab10a64f2a4994a75abce948b81de9c08b843912d3108102fb90f8e3ab5822fe8a9cd688c7d26b52f68739ecb987a48432c26cb4791f2a81f31b1df234f4224d261ef94f18e28be679ec6461675ed050ca1a249ace592993a32ad2deafde098d65b6a3d1874b1d54a794958089ddcaafe63fc627f8913dad46329189e761ecc0faa85dbfcfdd9caf3e106b5f00475b1778e1f9f682df806ca8b67092651aaac75b7c42817a731ed4054c158754df9f43057b8ffaa121961b27b77844254dc1001141adea30144c43130a26d0022d6eb62689553c038c4053f4198575009296c584e63a68e81", 0xef}, {&(0x7f0000001000)="33a8eddc0408e658b1db0e1224f09b86619d035e3eb8ee77f66c8a4921634ed317199058d9ac30191479526563042b120266482ac55e", 0x36}, {&(0x7f0000000000)="661d0755708f95de5364dfc0f419ff9d68dc7ea36b221c6617fd68b277cb612031fa357f47e2113e48baf710ced63841355d44f4188457c7e48b0414f3c2626bf58ed999cadbd09677c24ee932c2d1ae60002020478275aa39e26803a0f0fc9a933c2f62c39f5ee5a2151ed3fc3a0c1934ee0b6bda3b432a7dcd6864ac4d2abdf496b7e7c3085a66c2c96b081e5ef78f2223464ac98c756dc9ca2034553663408c8076a2b21e3d1a53edc21da44afe63b8153a2d779cf58e7599ded60fa6e8247aeb0555c59b81115496b72c5b9ef6caf0e0956ad9026014f0e7a0eeb9ca3d4bcf424f0be0a5516da4c4c2", 0xeb}], 0x9, &(0x7f0000478000)=[{0x1010, 0x104, 0x81, "e055998c47699c92eadab8d9dda0e224986dadf3120d002c1f4341a90e28f21c65b4f50a0b69cb4375b86dab00db2caca613345027c152c59fc4515b22036b0175c07bd18baa091289a4063563ec4447a520f46a7c2548e828049153c65f6b1b52be3ff7638f6994be131aeff27c0e8ecfe782ef43b26ee142e7eea10974760e67edc934d89c8dd1b1f1b0312f8a6f0bae5833bd572ec86515ad063bfe9825d64637d3a9646c9c90a3d22a5217c72e1c97d5bf761b60e4a0bb51945ce7629848f8a147d72dabf741e368a16b3fec27fe7678d4e02a45776d5eeced2bbec94d7c55724628b7303456c34e505a09203f59ee64dc57ad82bdc68f23f92d7ea5d9dd689a63b38998867534007a4843803edab8a08d5e9287aa34ea3be3e24536ee46ca27efb903e4a7056353ec2e851330d974168f041c305966cad755710a3e931a239d80be994824a198b7dee1b3fbb09c1a8a39cd37eeaf35248c0b4e5f284b95a0790c5b88837bb878bde3e5b8a5206035515ba8d3e232d4b6da7a32ed5b2e855a3008b3e97831b5c35326365b008544e4a02efe921c90a65508b994bc339e62cd10c4294b31c89241e6437dfd4c82579817e533a9858ce412187d633480cbce0d936f53b34ac3a83f193636710635948304ba7cc63816d27d26921f39a851d44ba136c876e22d3a76b952aff429d16cda4c02684bfe7bfee339bc19242955948f51a568d7232570e4cd3d4c1b41c27d2867fd1cc9c4c6fe112a8fefe222574e81a0c5084997dc6fd06b4c3879fd634ae5c1f1df9a984f8007c367dc162602e9a3b2625f466c3b390c1b45f935ccc8897c9362e7156c0f24f80b0ffcb8f95f90f1b3168037d3819a0fdd65e9ee424de4024d6d1e6889b09bfcb966f20daac185142b5c67129f25a88c24867a0d1907d5998e8130743b3dd17a14af483ac601fb046071baa99b2e194a5c3e1c81007b4483c27b404e941af097d2390add6968d515d80f49c313194bf82d0770df420f9ab58f82b305212b05902dba40abe7149d824c3992185409c8c42e57c1a9a8b4ff2d7f5e8df73f4842e77cf4504819ff17a3aef667d4e88e1fd10e8bd3e05245ec694fc8c0c9bcc4e0c2792925afb389bb1f6f3e2ac8c105a966b396cedc0a20cec75580f04dc0043b5bbd960b01c679b8bc2be9a910ceef12cf571d71fd557ff04e80090fe20433cb5d0549c39f0faa3123e046eb809be144247353537df7d317317f11a808e1076bd5f3c0ab1fdd89180bf2077002108e13eee8e7ec053d84369ba42f79976b06f07fe29590b9a1342b72194d1b7898ddd68858f66344ea631c853e2ea8a858d153a656aa9e45cd951cbe901d04c4c94c92ae7bb7f1affdc99d277181e32bf6e7d0257260f5cb0ec869cbbe426b2b37d7ef59b7641641312cf93db14acbafa8fa5fd17dc214f5470b8210f1a8aabfbfd189282bfaf29cca70982f89e1a0ec61cda0374e71bf53ac205280d9a27b0b8d6404faf8af9b2be5480cbfdaeb0562de9383d0f8d2cf772dde6c6ffd1df7d27afa7bf4ad6d8a34d3335405bf9335a78ccdd24b8b71429a53ea0f41f3e9e133077518989a526405628dd29821fd0fb0469af36fb3623676d54554b7f7875b3fe551d8d6222b39a983276ed9fdd1a109519196d756c5fe12072728e9fd0376e5d2a5120bc5dccb5d812ab1bed500628788bdd6e19854ae5ca47b54cf9bbf657c2af2e0310c3f98e092b298692bae868d7564484b146dc59c7183ddc983d89383519e74f4acec6e0ed2e461f84ceeb7a76908510408ff9edd432c3159af6bf467dec245bb0f994415718c8f448c32f63ed9b0695c6235d75b04a086713fd2a4b306acc5ce3fbe51016346d6e2038ca79d3692f532b5395b833f83cb58f86d03596ca758b128ba7b782b2d0bebcd8a15361bbde2f7e9feb5a434ebd602fb26681d35ab9ee0d65f5195e03f545e09b3b39ef7e83791c2bf01188e1dac42d64bc5d1b5f000a605823f4097a30caa38e7d51c4420ad956d2e2d00223be499c2a6e270f86461eef5c7c35492f875a8f30de67a189d021854897bda07b24e9204c081fe69cde14935ecd2a530bcadd4e144c7468395c8d4f1b85f766aaabe8a719cb1961c8953313301730220a81f81f8fc70ff8a411e568a3ca50f43fe567b45676750854091a9fa6c4489405fb26f8758144d3832699b65addf12ab8d4a1f6190f7c08a6b5ee41453e5d524a2c7f7f323fe9a9bd6d2372e348a60cacc1295256fb8df7425ecac96cb7b8caf38c17ca3c41cac53cb79d5733cb0c383ad3dfd93784ad407a4e60df1db9a8015cd1a60e49b13c9ead6e2ed5295b3fdb633c02d0085be4003fce230415debe7609add862edcada46538c0f979d5fa6c1f03120ac72fba5017bf155b03f76200337741a32df74e6e3dcbafec5f3862163ea1396992d540eeef31369d6ab98ede67da4a6f8f1471c7985c3d95ab6c63a7eb8574a45c3d84ac985c6cebff2b61e39dd883bb5c12a60327b361a9f731147b2a48921d856ee243a59d4ce3335599273af4bc2b7ca8eff00d5b212afea9c8e804952f4d2eecd43e40196375dbfe8e71c443f776cde71e6c25d3b77351d9f05759026c4bd087a750390fcb7e249c435d442cc45f84dc1621e7c529f4ac35a9beb8e09270e8972bfa6f9887896fb852214f13f1ca2f8ab6238470004843c9379f209b3f5a33884e1976afa422aba49716448d15c3baa822f5d3f82e97699ce12a6a2bf3d6f33235194bbdeae9b3f44d259a2befe095dd65d50df9b7ff59b89c97eb0a793cca9515831adbac864cb1cd425692ff431d457338d626c2f85d6cd11cfb141d21bb54e526b898034218eaacfa4af82fac8b3159c8cd45f2d9192c2b841f817246623f829e6788a15670ba85a673a0f1862a6be9fbe1a8b5a16dae30a1da8886c1ecfda658bdefa45716d04ff9a5b16a1192f63358d408ed552d3b74f81c82ce68127f7e3af67804eb74c4dc11ff7883654840863191586655bbcaab865b9ba70ac7ec2c9b62796e2460f0bfe91e6a5019c9fce5642cd834ed374ecbfdaf9a32535a274a418fe354149c289f5c42e893327d3123e9f048e7d356360462e357233a327387961bbfa5c562e42891632ba8969a0fdf89e5c5925e2563b8d1d3d8288358dfb16d79f307a9dbf438b165066a5ed8dd5f0059fdc9ff1b00af847516c0ffc9dc867734b8570356485331b7d99a4bfe68f84b5f79927c181257ccfe5d02f7dc45827188e3a0f5d17c2c5efb60259f3db0aec06a1775018ed2d1c447ad09845b6b5ad82c1745205afb8c987c24f816d55dc53fb5fa8450c37a783a7e1956c64e16a2cbb440f4ed818e1e12d1a03e2b7bb882a6ed5721fc1d883f065a929509d32a832ccfde3c99ab54f1e67b17c723b2b6dc39f783a36cce29d9c37f4db87f069e3a257d904d10ecc5c08f41a710003b799470144756a6ee8c7ff85eae3363ba24815df9bcc70b6f9993488ea7b6a71749956e5c45b451fb0ba3e172f59b902ec60a4e226c4e0216788508e4c5a2580e0e0236de7a3c4a721294584ca5609ee726f7d5b0fe1f75a3b316f3128bd97ba8ecd15a70634fc09f3773bd5dabaf8e7e348244084a6245706538f1f7ed3d97d4421b8f6a40e2faad6e141869759cef345333c89c179dc2b25c15275747f027cacfa330ffee0fa38c2b1888ac9a46b36abb847dd8b83d9d3a7074c333aec5e1f7a8df7011a61a0e19ac133d9443e6a06afe57ea2f8fae91b7a32eb2a64b18bf75bd2564d48580a948dcf6cb6e02d8b421590f9a289bdbba3d1d227e75e95f4a753af60e2e6be67b4b61bedc1210102380b9b38ae81932ca6bca9d7f71e2147ba3415613b5601282d61b20eee335b17d9343e5f7e7ca6a1542baf5c14cc20f658c132b3727575a8550e17535a21718fc7f59509219338fd872126ed640dfd8decf0a10e81d97d175aba715fa4b35c60bee2f82ed1a1528b2a5c8c9d7e805414a9e5dbd68099ba888a929370bca1f71967786af948372e9bdeee51f791ed4d375cc94538dc66516b9c262e18a3e1747ba035047d8e956f266ece05dcf6147e5441c6306e4f66a3455af923c722036a6a22779196753b29cec8a460b0e9db9e3245018bec201a5903d6488677660b0cf742acf96527b1aa5daa4d47573f06718ae11e698c495adeb9e34b558a197ccafae611805ab4f225867096a738f7c513b8bdc0260a1e209154f52aad0f71106ebe7a5276d25f1f2f9bed7c8019b06ab596434707ddc7a8b37383e1b7e750f05411503c638a8c87467464b1071b6dcb318547513c964d970da7d65f10acd8573439203516809a4e4a3410f3ef0a3a101dcdd55839ddf33cf6623be49aa3bcd84967011a8abe0d5579dbe002f311bd16c777fa479bd8e0fbfbc5cd0823e6c1f7e72ba9bc469038ce5dab96cd955f3161893efa6d5abb73b3817929d5f9dbb7a11d563789fa70f2e58b0a5bbe88433605dce7ae4420984a836ac495a9f5e74843aa8187784e15ad99e67439a79b0bebe50d79944ce0095408bbd3206bd5d210d371b826a9664717dd34a260fa8788b4f5dada756408817526a3071141ca707d362f1a68934ec8f31909bccf3815d77432ac661a5cb8c41ab719b429ace94709dde5f7bbd440aa67756457555619af45f6e4fb64ffad56613afefb3a709ed84c7ecd7980e299eb17e0c3a454703717baf99efe7d35a641e69b667795c302dd4d9537f70203a7a85a99de4a9ddb40af6fddce922843ce0d2372fddeda07564d333ea69f7d8f50cd7c29e982f6e3e597e4cf75d41c5acac879a5d5b866182d3a128dc24811e29c2c6cc64ebbd5a673785c0bc5c73c13607b1aad6e159cef2f44e53d1f3450194d78df691f49b2f7a187d4958af75accb12a7bff0572aa57b04eed6050bdaea8ba6e9ec33f1a912638cbf68f37b37e6717b5bdcb229fab94c1b99c2f500d52170a8dcc9ee56bbb81f2b45c1b68742be47f6ed34c2cd00555af8bd28139ef1303b1e085c504c40160f4184d8b68d71625608a05363f57a2bae0332c00f1cb0cf55a525896b16f91d1b9969d50278b39b6ecb80ba945c8df018fb82829b81950e417f561063753e415ecb337f33b7b3e09e16f511e1d523c55c2a19fb3ff2ece9bde5a9479f7528fe122c41874c3edf0ba259e5479c1cfd21790cdff28f8960932db6516b3e9e6bc4522675a205b97905bc08f6953387aa0605a20409562d6d1c6c16dc094795e188000ec5bacb5198bfbf23e74db3edc41e6de637fcbb134b3915ce9e8c9aaac304fb6e1b0669f5b1b09642e22204c58f09b01e07d03e57f4d68e81aab48c58e4e23d807bf79070e4172bf450137637b15a1794b08069ceffc69fa1d08c9c0567790519b60e00ade3bf31d15f94198352fd74314fbcf339f808c6c886739e8a0422a43a52906db673f1586df78fbadd2a16c5226cccc6a801e888fefc1156604f0f4e903eac48fc27609a832bc8aca50f0cd5cf6912deae75f7eb448d4b56562b855f5089884bf642e6bf23f95837521d32eb96f32d5ee54c09a953d7f182e1640092f5bb79e1765dbbf74c2008d2b7fb9bf126ffc92175dab38042b2937adc655e11fba0e1f379b1aafd3f4e0be6353656ecd442af24c22a8dcb96e585e5e25b0377ec332f59fcd8f8e69c69fbe8200c46d89c97f72aeb13da725c0f460dc220f64035dfc42cb2182add402b8195e527d7d68cd34debd57279efb8ebe10711662c7394dd0830df7acad94761c0e3c7abe37ef4f0bc1ada"}, {0xa8, 0x10e, 0x8, "b68a339a42372b1f6a8322a4389c9843503e3dfc489043d8e3993437e6e675964a420be42353096749df7633bfdf56b6aa070bb8524b392d627ea3df7b14ecbc1f4e5aa71f9f5010cc008b97f140d082d988911098a4fcc5988ce4ad656e306f38cb556cf6a61280bbd42a0e6c4d0fd17cfb147757fb76859e3a4e5c837d11f9596625a63381d55678c9755394699da1c1882bf7dfd4"}, {0x60, 0x6, 0x21, "832e5b8eed03cecce7b1de81a2e204d50f57dec2b8ba9006ae3808a79a53e45e6c4e3f9db1a3f1d0e368f142ceb7c92599453f36f19ace8441b9497317766e27e59b479f9f8495319c"}], 0x1118, 0x0}, 0x10)
pwritev(r0, &(0x7f0000001000-0x50)=[{&(0x7f0000000000)="cfa879b3106660bd7b47c81dbc5dce7955b1c53c59f81e7513c3a299914776123a4bd390ce056e51b7bce978a5d21eb5de3b16580e5ca3f8c6c5da6a6365", 0x3e}, {&(0x7f0000094000)="8b8a821fe1658d88f7caad0230a0a93dc5a319f63ca831e7e4b616a22b74b2c498c87850cfafb306fbcfc6f455e5d0eaf085d485c02ac7cd3b74a02c589cfba1a47e901028d4880608b7e9a644c2cd8c2154b0936f084f6e6793b278faf96e7b54a0d07080f605c55f1e28c5c988786f9f4d935e9d0b9a2bdcfd71e53d9777046b862f707ee49ebe04ac89b667d529c5f87de1e80d89e25d1d469dd4ac4d69384799f8b6250cc6ea97a3e934ae7400d3000ac904dd6154efc3f6d9f8591988bef3dd8cadca10019f49644af84603ceb64ebb783640e25bf1724439455b70b1abbfe06066", 0xe4}, {&(0x7f0000fea000-0xa6)="528a8624d89ae818e29cb503b22954353fbefe655de027eb7940e3544e33463f62c9aa7e487f6e44a5962034eb8dfb5546c4c481e02cc74785c1f1cbce6730128cca3e0fc0ba36fe2020129ff7709e7dc3be83dca3c2ab98bbb305f24c742f2ab4f7cf9e81812d390f8d115cc60e1247eb4e537ad32a5197f9e3a711f3b329bba7f6053658e0040effed22c02849e9ec3121ddd0fe05ed05f2a5d96b4a36bb53b92b820b3508", 0xa6}, {&(0x7f0000000000)="07e4ff780ab46d1de6e29faff1b2e9b2fcf6ef9f4f19bf0d5d8a8a3866590ed6932ddfd6bcdd2b0b20beff012a2c80e5930a55cb0a9dfd013ca95a1b66fc8e8d175e16c3c0edd9ae991b7b959cb32ac6961daabbe01bd7e2b4d2d304fdf3d3878acdacc5cb4b28a792548490808229cb604c17d6ffd165ab838fadd9470b6f4b7a6a9c", 0x83}, {&(0x7f0000001000-0x79)="e84ef0f821550cf6ddaf33551811a4923ed691f204a07edf67df910ac9a3d34150490c8ec6cd258f6456b459172295dd38badfd804a71857fdb9124f998d1a26d4e2660db7bb2f6e77e94f05ddf4ed7ff42411f0f4b1ef204f42da97e0d1492279e81c79cc8650bcd2732e45b8b32576c3a0e9f573d9786504", 0x79}], 0x5, 0x0)
ioctl$sock_SIOCBRADDBR(r0, 0x89a0, &(0x7f0000000000)=@syzn={0x73, 0x79, 0x7a, 0x0, 0x0})
r2 = socket$inet6_sctp(0xa, 0x1, 0x84)
setsockopt$inet6_int(r2, 0x29, 0x38, &(0x7f0000f6e000-0x4)=0x101, 0x4)
sendto$inet6(r2, &(0x7f0000ab8000-0x1000)="97", 0x1, 0x0, &(0x7f0000ab8000)={0xa, 0x0, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x1}, 0x1c)
ioctl$sock_inet6_tcp_SIOCINQ(r1, 0x541b, &(0x7f00007c3000)=0x0)
sendto$inet6(r2, &(0x7f0000ab0000-0xf7)="b8", 0x1, 0x0, &(0x7f0000abf000)={0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0x8}, 0x1c)
shutdown(r2, 0x1)
getsockopt$inet_sctp_SCTP_PR_ASSOC_STATUS(0xffffffffffffff9c, 0x84, 0x73, &(0x7f000050b000)={<r3=>0x0, 0x0, 0x30, 0x4, 0x80}, &(0x7f000083a000-0x4)=0x18)
setsockopt$inet_sctp6_SCTP_RESET_STREAMS(r2, 0x84, 0x77, &(0x7f00006c2000)={0x0, 0x0}, 0x8)
getsockopt$inet_sctp_SCTP_ASSOCINFO(r1, 0x84, 0x1, &(0x7f00003d7000)={<r4=>r3, 0xa40000000000000, 0x8, 0x387, 0x0, 0x1}, &(0x7f0000a2b000)=0x14)
getsockopt$inet_sctp6_SCTP_MAX_BURST(0xffffffffffffffff, 0x84, 0x14, &(0x7f0000172000)=@assoc_value={0x0, 0x0}, &(0x7f0000408000)=0x8)
socketpair$inet_icmp_raw(0x2, 0x3, 0x1, &(0x7f0000591000)={0x0, 0x0})
memfd_create(&(0x7f00007e5000-0x1)="00", 0x0)
setsockopt$inet_sctp6_SCTP_DELAYED_SACK(r2, 0x84, 0x10, &(0x7f0000a2b000-0x8)=@assoc_value={r4, 0x40000000000000}, 0x8)
ioctl$sock_bt_hidp_HIDPGETCONNLIST(r0, 0x800448d2, &(0x7f0000ccb000-0x10)={0x4, &(0x7f0000cc2000)=[{{0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, {{0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, {{0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, {{0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}]})
socket$key(0xf, 0x3, 0x2)
getsockopt$inet_sctp6_SCTP_DELAYED_SACK(r2, 0x84, 0x10, &(0x7f0000a55000-0x8)=@assoc_value={0x0, 0x0}, &(0x7f00008c0000)=0x8)
fcntl$getownex(r2, 0x10, &(0x7f00008d0000-0x8)={0x0, <r5=>0x0})
getsockopt$inet6_IPV6_IPSEC_POLICY(r2, 0x29, 0x22, &(0x7f0000847000)={{{@in=@local={0x0, 0x0, 0x0, 0x0}, @in=@broadcast=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r6=>0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0}, 0x0, @in=@multicast1=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f00001a8000-0x4)=0xe8)
getresgid(&(0x7f00002b5000)=0x0, &(0x7f0000d2c000-0x4)=0x0, &(0x7f0000c5d000)=<r7=>0x0)
sendmsg$unix(r1, &(0x7f0000c33000)={&(0x7f00009f5000)=@abs={0x1, 0x0, 0x1}, 0x8, &(0x7f000015f000)=[{&(0x7f0000234000)="8ff156a37e4137c200170adffd4b3140a15493c03a2d2a3ab7c55673558696bc092430c9fb4c8e154f29f56734be1b1c2643d49cf71e3c1d8f97b45f33943524ee69c4a3c377617ffc00407391af4bb46d7e678078b1d3fc4490c84660789660a038911e364c4c9fe89253169cffc992812fe42fa10a71441f47fcbd3a7c0aa269db6e36091cb9536b2f1ded8a494c30499849145af71fe326df732e53066c10378362ef314a061b817022fe769762113283bfd2e57683be86a000fd6e1cfe5e1c2318482f", 0xc5}, {&(0x7f0000479000)="d485d91c08f5b0744dc1cc5556fe18abb0298e50bd11a9df71b91f530375b58812df5ee32271a980aa7dea6c5c6ac0097aed818e96c2e4bd469c19d7cb1c8e932ece296502e215cb3c0e894ccc7dafbfbe7156c7ef241469bfbe86cd7f73bca94c2de108ab80ade75929ed5cdce985943e068e5f70c0e9fd7cf62eb2ecc12a486a90efa0254f59d7e66a7efd069a09f49b8119bbca92583858a79733153377dc2a8aac787d4a57c0027423358341c30dbb3848fdf051ba9466494e3803ae3efd12a832388b60a2fb5df7cc71f315e555dc4d7d04431e42fc6f23e14f6c", 0xdd}, {&(0x7f000001a000-0x4e)="18b023e830dc79d176908fde1c6e98cc3999db949d1772b22f230cb46e28e3af4beba398338a97bb519a8a8c404804266b866c45cea4e1aa687b30b257bf60746d463c315b3187df9c336c18ac4e", 0x4e}], 0x3, &(0x7f0000453000)=[@rights={0x18, 0x1, 0x1, [r2, r1]}, @cred={0x20, 0x1, 0x2, r5, r6, r7}], 0x38, 0x20000040}, 0x40)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r2, 0x84, 0x9, &(0x7f0000931000)={r3, @in6={{0xa, 0x2, 0xffffffff, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x80, 0xb7, 0x8, 0x1ff, 0x11}, &(0x7f0000561000)=0xa0)
2017/12/15 23:28:15 executing program 5:
r0 = socket$netlink(0x10, 0x3, 0x10)
r1 = syz_open_dev$mice(&(0x7f000065b000-0x10)="2f6465762f696e7075742f6d69636500", 0x0, 0x80400)
setsockopt$netlink_NETLINK_LISTEN_ALL_NSID(r0, 0x10e, 0x8, &(0x7f0000d25000-0x4)=0x100000000, 0x4)
ioctl$sock_ipx_SIOCGIFADDR(r1, 0x8915, &(0x7f0000cd4000-0x20)={"04afbe362eacb7e8690627725d173caf", {0x4, 0x7, 0x0, "0015735199c8", 0x81, 0x0}})
r2 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000b35000)="2f6465762f72666b696c6c00", 0x0, 0x0)
getsockopt$inet_sctp_SCTP_MAXSEG(r2, 0x84, 0xd, &(0x7f00004c6000-0x4)=@assoc_id=<r3=>0x0, &(0x7f000024e000)=0x4)
setsockopt$inet_sctp_SCTP_RESET_STREAMS(r2, 0x84, 0x77, &(0x7f0000851000-0x8)={r3, 0x6}, 0x8)
pipe(&(0x7f0000e9f000-0x8)={<r4=>0x0, <r5=>0x0})
ioctl$EVIOCRMFF(r1, 0x40044581, &(0x7f0000630000)=0x8001)
getsockopt$inet_sctp_SCTP_GET_LOCAL_ADDRS(r2, 0x84, 0x6d, &(0x7f0000395000-0x68)={<r6=>0x0, 0x60, "6504e5a263513da0ff0204a8fb1325b979f352cecaad8afb7512cdf3d10514cf8c3d1955cabbfb67445d9907005bf8a85be7298cf5cf3c298be4f3666a22c8993f6d3e304fa352e5cb37c4b1df3ca27f65f3d2c3c781c3fc6a4628c41486bd9b"}, &(0x7f0000033000-0x4)=0x68)
accept4$inet(r4, &(0x7f0000ae9000)={0x0, 0x0, @remote={0x0, 0x0, 0x0, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000a48000)=0x10, 0x80800)
ioctl$sock_bt_hci(r2, 0xc00448ff, &(0x7f0000979000-0x34)="e2bf0c1442580617e99cab12d7f25315754849afc8832d567b7a429c5d1b5678648b07f8eccfc0fa89376f3071e1000000be7f17")
getsockopt$inet_sctp6_SCTP_PRIMARY_ADDR(r2, 0x84, 0x6, &(0x7f0000af8000)={r6, @in={{0x2, 0x1, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, &(0x7f000079e000)=0x8c)
splice(r2, 0x0, r5, 0x0, 0x101, 0xa)
ioctl$PERF_EVENT_IOC_REFRESH(r2, 0x2402, 0x100000000000fd9)
r7 = syz_open_dev$sg(&(0x7f0000229000-0x9)="2f6465762f73672300", 0x7, 0xfffffffffffffffc)
close(r7)
socket$inet6(0xa, 0x2, 0x0)
socket$inet6_tcp(0xa, 0x1, 0x0)
mq_timedreceive(r0, &(0x7f0000d74000-0x49)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x49, 0x1, 0x0)
bind$inet6(r7, &(0x7f0000b00000-0x1c)={0xa, 0x2, 0x100000000000003, @loopback={0x0, 0x1}, 0x8}, 0x1c)
ioctl$DRM_IOCTL_ADD_CTX(r1, 0xc0086420, &(0x7f000020d000-0x8)={0x0, 0x0})
ioctl$KVM_GET_PIT2(r7, 0x8070ae9f, &(0x7f000009a000)={[{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}], 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
connect$inet(r7, &(0x7f0000e83000)={0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mq_open(&(0x7f0000659000-0x10)="2f6465762f696e7075742f6d69636500", 0x1, 0x40, &(0x7f0000715000-0x40)={0x81, 0xffff, 0x7f, 0x3, 0x9, 0x80000000, 0x2, 0x9})
setsockopt$SO_BINDTODEVICE(r4, 0x1, 0x19, &(0x7f0000b3b000)=@common="6c6f0000000000000000000000000000", 0x10)
syz_emit_ethernet(0x2a, &(0x7f0000a7c000)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [], {{0x800, @ipv4={{0x5, 0x4, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x411, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, @local={0xac, 0x14, 0x0, 0xaa}, {[]}}, @udp={0x0, 0x2, 0x8, 0x0, ""}}}}}, 0x0)
socket$inet_dccp(0x2, 0x6, 0x0)
sendmsg$netlink(r0, &(0x7f0000012000+0x808)={0x0, 0x0, &(0x7f0000bb4000-0x10)=[{&(0x7f000011c000-0x14)=[{0x14, 0x1d, 0x200000000301, 0x0, 0xfffffffffffffffe, "08ec6e2b"}], 0x14}], 0x1, &(0x7f0000b8f000)=[], 0x0, 0x4}, 0x0)
[ 50.703762] audit: type=1400 audit(1513380495.611:3696): avc: denied { read } for pid=11523 comm="syz-executor7" scontext=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 tcontext=system_u:object_r:unlabeled_t:s0 tclass=socket permissive=1
[ 50.741535] binder: 11536:11549 IncRefs 0 refcount change on invalid ref 3 ret -22
[ 50.749529] binder: 11536:11549 Acquire 1 refcount change on invalid ref 2 ret -22
2017/12/15 23:28:15 executing program 5:
mmap(&(0x7f0000000000/0x939000)=nil, 0x939000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000939000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000939000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_icmp(0x2, 0x2, 0x1)
mmap(&(0x7f000093a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093a000/0x1000)=nil, 0x1000, 0x0, 0x32, r0, 0x0)
mmap(&(0x7f000093a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f00008c5000/0x4000)=nil, 0x4000, 0x3, 0x32, r0, 0x0)
mmap(&(0x7f000093b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_IP_IPSEC_POLICY(r0, 0x0, 0x10, &(0x7f000006a000-0xe8)={{{@in6=@loopback={0x0, 0x0}, @in6=@loopback={0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r1=>0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@multicast1=0x0, 0x0, 0x0}, 0x0, @in=@local={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000831000-0x4)=0xe8)
r2 = socket$inet6_udp(0xa, 0x2, 0x0)
mmap(&(0x7f000093b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = accept$inet6(r2, 0x0, &(0x7f00002d5000)=0x0)
r4 = accept4$inet6(r3, &(0x7f000000a000-0x1c)={0x0, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, &(0x7f000000f000-0x4)=0x1c, 0x800)
mmap(&(0x7f000093d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$inet6(r4, &(0x7f000093d000)={0xa, 0x3, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x3}, 0x1c)
getgid()
mmap(&(0x7f000093c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$inet(0xffffffffffffffff, &(0x7f000093d000-0x10)={0x2, 0x1, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000939000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_buf(0xffffffffffffffff, 0x0, 0x0, &(0x7f000041e000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f000093a000)=0xcf)
sendto$inet(0xffffffffffffffff, &(0x7f000000d000-0x1000)="9b5d8b1476632b4bb25499eaf72bd1d2880024ffc182a9552251a2eccd90dee2a382542c8b174d267c3f98723b5aaa8d9ec292ba2562f91c2becd1dec2663f07556a4c325782a079209962cceb3196778173eb04d2e381e7e1bcc3eac9857e45cf5f1a7bf9301ce266e7ff33336fd37024a424329598b51b9b84f03d2be78613f2ba3ed89574aea2a2aa11aa8426342c409e35ca8713cc59c5846c8d52a5480289f8d8a8c59276e5186bcf6bf72d3eae96b4e27312be696cc3d1417d3b6f9748d84f39e81c017abda808d78e132afa89ac8b5c6699ffb907f063a0102d634a483eb7102c204a1e39c1247189114deec6077f7bcd8cc7deadbdf970185cb6a9c071b2e12d2961d40acd0169f430aad583511bc1d7c47d2fcc674399d486dae4681462e1694cd31f6e9ad4cd49d2c3ce32fa4a62a950ce40352f193f90060fff648aeaa215fb7fa3ffdb28bf6c202dcca2cebc46199f2e1707a4ff5bb60f18f37065cace9050d6bc6768e30afb6d2f36988e7df0f3888b176178307aed17aa3c27211b06164cf996430091e7d9b7882507dd4c566be509837733379c6291773671e410c2cd502e2058d562277e28abe5fb9553ad05b2396cb481a7f67436efb8364da139b2f16097665ef745449c1db69a31b6e6d1fd4a2570ad3d87595a1c94a373c2af46555bd8d66749341b99e10074c7edc510dfea9ea60bc3c3106496a99ed3a993986327d7c7f450f599de39d7d0a414efb74d14422cbb2c7e0a813fdd8ef4183db83ac6ea6a09e0e5a66404a1a2f3bf1e560438d9cd98e3f202ddbd91c8ce394a6dc76abd8faf2389d266624e3d26b6b1b5bce9cc0741c75f8b57eeae68ff5ad0bc7dcb7ac95c3de952e2e0eb7c718aca8f12f92bdeb80bd0d88b4b11d91be3aa7b0bd6b294a011a3b647c237dbeab4d52c784616c22fd170aa3ff6907b712a7faeed8583a3109604879328eeb8e5cf1594b0d2160215984cf104a7f0b55ab0cea735cf1bd39c81da29e40a5fddda72d3ce4ba67c33ea4e34702c2231a955708e7c45acedc71bbee70b7f8f48d541a88d375a22b59e5bd4d686c1e1e38a6c9f968aa356d0b711db2fba3da3444053b51da656cd949a9836ce31087682b020defd0bb9c7d2eb3492ba89357cc98a1a507ed7b8f4cedacdaaf01309ae4cdf5904ec3ea122719af20a6d0350cb8398474906d734a5187b89203be6891022bff007e3da1690f49a08abbb8f352d71ff84c132953aac97e20cf512702cc649ffdf52f316633168c6b28654a39c5a7d0c237d8cfa494b0ce2aee0a1a9c64726c2c58cc9d1ab1b45f1eaee3e90d70c985f37b8441fdd048c27a26c4d149f87985483b35f656b6d397ee51f94b9203a3f7f324aa457324d309304176ef2d3213181f8e18820c7e1e97cc5d227ebf9512a0ef5abdb7486c82320ffb7207983b6002ce60375dd657b7b8a008253fe32a6dc79dd1aa448c3100b515e075065a9f6d992e18d670e06ee33f292dd7a6a4ebf10b36607b0fb56de387f28bbec15a5ca203c4cc997d43291ca412302c68af40a2314cd1f15cc293fc97d5eb51ad299fa695642dbe16afe0b6c0dcc7eba1a2060e0c7d4dfbf30ef59bcafc787b63dcf12bb6518c27a6c5b2417a1c3f29c7774ce693cbffda9f74f3cfe01aaa58931602d224b456eeb546407dbbb0537b2070c14844c78774285ba782287b84979967e857498ba0775c1ea57cee9658bbf2ff58b040adf4d43725f974bf289b6f81f0432135b62dcc6af2de5e2d0a4a7ceb5b40bfd1b35ce0d0166dea3184e357c67e28acc9b397559c9f9096c34b7043eb4a1726ee5fcfb9826af7c7d90234c7457a5225b372aacc1da17dfe3a7d23831346f09d3b305b55bb2b582211e41c64ea68d7f686623f584f5a743a6533d10c76ca4ee9f62e4da00f2f7e82f250afa88886cd89490b363a9b822f9f7da588d705876de3abd0c6081383892a604439ab0c391a21001a5d1eb78f7c144f1428211ebba989cd5b69799326129ffe44cb406a526c1aec240ac3c4b1ac0d7f10b18a8d9fce4c66a954c451ff97c8265dc411d3b182ed475545b525816ae122b3274d9aec3f085f959ec9caf6e823adbdf77fcecf63e8be35dd264a6a3c75dfe78dd59947a823f37d8eed610fb39c790b0465094fcdbcdc3a8fe9fb81cacd08e078cc554747be903537d9436ce86300ea00418de3c39c7f1985c600393e9fa63afb7069492e5a28e82ce03f4274772e7be412a0455a18acb948ed623949effe6f068b248f7b78e5e12ff690abeca64a60a5d894a22a41b85665ab7666e727230a85ef9bb2e485271aa57ac6dc92d4a55e2a8f31a4e50701c4a736e88276b8538e2bd04ff82a155770855cd415730406dac2e97b7b5dad5e99f4e6bccc32b5f23e6133efbaf49d57be15678658be33e36a626ea42d3663b094576b7442b668a4fe4965c3d9cf8f6a955148b42b1d35ed9b2e8b2a9c17f559dbbd459f8d48523fdce7bee70ba5f7b4ae106cab3e3a2c907a3010fbac29ccd84a5c4433b18d6f5cdc8634d5da98128453aea845a313f3389d8802343dae913a30bc93f7f8e9c6f959a5f340d6a4044a63fdccebf9bdfdb841aa8d70ac7a641046a497e31da0a18178f8cf6df1053bcbf9aa18f3c0137b74d1c6cd095d2c453c8d46bc863132aff1baa49112abd918a1780fe8167e2ec02967d1cb69fde8a807c1d6c31c44cadd51d8e13dd6324210375d2a626240b4889c6ff3064927eeb08796c8c4b7485fd837e7d739b3ca5553cbac3a04163b4f3516a1d6f9baad344da88df8b0f9b5e82be96c4177e61200e244769c7afefd7d26bcde99459eddfacf99b7b408c8304f6c5a05bc4d46c425d550c345506ba22d36a70b1d42114326821bcf61d52e574bb93d41f4cdb0b9f880663d1ebe43cb89a3cd20fe69f658c7df77da18c429b08436b65fdb12fe6345fe26d90a778ae01c9784e0d964c2a4c3200a179a3827187f8dd5362743d518c06dd1af34159796ba19ac95de021f3badd1664be3a5aace9d2c6bfdae1c14410bcc7a74569a296ea44399f20c2284e6384832273e1021451dd4fb24d83b148848018034b2161590cbf95935fb9183304aeed9803a8c9bac20a2f7a2eb2795c490d4a1a78d6960a3fe9a38edc06bebde1c0daa2157b07afd52724f9c9162bcaf325b585e08bf8d8c8a9d8a03fb731ccb1912a6ebad850d65b5c0b4d8bee93dc8f352402f14881e4b3456371cef37b89471747f55ba021cae581f75183f0d0d05e07e403126f83ddc9b2f13afa0a8fae71da924cd9882f0fa342ea20696b233b5e82274c912dcef46f671d1e4eb05bf1658afc9d41e9a04d3325c747cafb070689c83f05a84356651450008155712effed5a8b83de367d7150616f632dab3dca75e223504f43948ceb1c5b9e40fd259b2d2460d27085e831335adad3ff55d0928ea82bc2fe42a19df42c61695a248e78efc684834cc9533b6324d6242056982886c06e873a93e5cbf27a584ce7ff484b209dd51e864039aa343e054ed7ee307c4f6bd85ba196e3ea9bd8bda1167fb6095474a2d3f2115045869dc766b41c1b56eeb507fc15e1fc5b1fe5220b7eef8012c797ae908f3dbc06e237c3e0e5692f21df83d20a969c04d5be36ec15c11f9aa3153890c38f210ae2608749b651796cb0bd9621fb14897807e10e0fd3b4c25903e8581ea28c1eb1d2ea340779e2231c9d4fbb9631f248a3c2219e96791beb10396fab853622fa29ca20a82520ce307dcd88f4bd5d6ec273360c8c347e49cc11c9486d5fc4dd91df9dcf568259506fe459fa0f92f07ae933eafbaca9e7694b051d87b249a46581b42996d17fc4dd98751a7fcde078c5a643beddfeee3304414a52059c252dc1953fce9eb839322da8435907e8441b8829d723ee6dde2511ff3c9401d28e4c3ca3aa34c7eb8a0a25c7c83b896c77edf4536b5c041b312620cc4f1f04dc4e0ba5df9bbf654f5f51bdf74bca1f12b126672547fcf086c59fe6a42710e1b926e7859d4cd9fde230b52cece98ec9cabd704f87fad38b3828886e83461d41e704dcd3645fd363ed5c9ac1489fe8390d5a10ea0e0264174da6d56c5dad63b596b0f1d21413884418f01a69ebbc6f4153af97a5a6d8f27c12e2202b5ddfefa81a4197e59ed11678f6ac9de96d086f4b6fb9f1f1ac864e04ed74d009ab614ae3f7add3d91b366710c2f373e3705209e5c7b7f1e8bce7c87a9653d5350c9763750a50beae421893204c611bde420bbf3528ec747056212beaf95679305243717d68bbb4a0705b0b7ec941de7ae191ca3c2c948d8edd419e602955e52fb340b7010eefc4b7478fce81db40517db8f4d5e07363889e8aab8e39bd9b465006436c67f5303867a0d07c3af5d49d8d1620767cba14c87d6987e8b2ba844635e2f63d026c9daf829fcd8071539fdca589d934d348e41abdd0bf7fb886f8da8a425a6680e79de94da714e49cdb2e8b3f9c7e8ce787a0468ed6ead2bf302db239048fd1a7d2163eb9b088387ac6c93499970d9c85c91655205ea5b32588ca61604271f1c86a12450fa27f70830b6657f32548b0057a29a01c7cdd5706a73b0f5ef4aac1b46afddaec118608719fb72105b3da20583267bf802279242054cbabe8ef0b542d95ecca064ff3f1826c52a6e914ac3e810f58369dd45b56b827b1aa2afaff197d85d0fa0e4206d770e0ed337da4cec085e186b56bfa066dcd6f0e4593c70bf97106a0251ede59494673f0c8ef945f4b54ab10b8613fc4bfe9181be59dc9aa21480a06506b289d4ed33dc5a90efe1d80aa7a599203edfcd29ca27abfa8f4a8de10215489f9598f15ce17d8b6d2d60d7978310e040f95a3056a627a143067ad60450e6e26e3dbb0e7b4efe6599f2392599b654365c6b4831471a34e37b8dfb54f838aa6eaba803109a181238ba9ff2baafe227afd53120797be29e1d3b4a089fe46b56cfbb530052170f6c1a5fb1a63eb146402a380c404031a54bfe27fe4a2823a9aca4d5e5238f11bccf1b418f05f57c4e686de768c9ef7dff63d5b524b5e90362ee33151d43b6c19ab9a941b7c04e4e03477b8b6f50a806ec4b52340150843cbd59f35f8838d26ba2f8bed879f8740225e7a117b3f0943439ded201b4405dcb30f60b129bc4b42882bf696c72e94e64ddd97942eadc7fe782922f45d4fb51e8e993e10d993bc7daddcf4f7789dc9895274aaf214a4e7c9e36a5e29bc1642746fa96a76a5e011defa3fff082b50dd291b5ad6ec906bc362a139361c3c956094c53915c5059335f4671180f4c09213889868a463ba7900e98f995cadce0366ab919c0cc8a468f6a372edb5216f332c7186e7fcfad19f02c4529da9fba98beb0bbe2aa2bc5308fc7fcae389597a8d80274c51f0ebab03065d7ae52e52f789e227c2d62c9580f5fd2103454e31819bfb640a5fcf00ae2e2b421355baf889c63db94fde0f63ca3dfd7c2025e6bbd61a3561763295205871a7ad7b85da73dd93f3b4d60f2881616f318bb09544d634c87186ec0c45fe868513036a39d52090c648116c1dd7a6d7358537df655ca0992b0f3b00154fa90ae00189edbc2288be83963b8ff399c8d06dee2e3cd3334dbd1b6297207f62cbb66a9ffbf615249cd1d671263321ab42142dba979f66e3451a59150a0e1fcb19b30165d197e2d029e8697124a9ecf19ebd499fcf01674f2f83db7ddfdda0a11c5d486e6106ed01e5881c947280f40edfd58286b7b439f7481e3ce4877001906870d71d6e23181b41382fdd04b1f23baa", 0x1000, 0x4000, &(0x7f0000094000-0x10)={0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r5 = socket$inet_udp(0x2, 0x2, 0x0)
getsockopt$inet_pktinfo(0xffffffffffffffff, 0x0, 0x8, &(0x7f0000014000-0xc)={0x0, @rand_addr=0x0, @multicast1=0x0}, &(0x7f0000781000-0x4)=0xc)
mmap(&(0x7f000093c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockname$inet6(r4, &(0x7f000093f000)={0x0, 0x0, 0x0, @loopback={0x0, 0x0}, 0x0}, &(0x7f00000aa000-0x1)=0x1c)
mmap(&(0x7f000093a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093a000/0x1000)=nil, 0x1000, 0x1, 0x850, r5, 0x0)
mmap(&(0x7f000093a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_udp_int(0xffffffffffffffff, 0x11, 0xa, &(0x7f000093a000)=0x0, &(0x7f000093e000)=0x4)
mmap(&(0x7f000093b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093b000/0x1000)=nil, 0x1000, 0x7, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000093e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000940000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
read(r0, &(0x7f0000941000-0xcc)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xcc)
setsockopt$inet_pktinfo(0xffffffffffffffff, 0x0, 0x8, &(0x7f000067a000-0xc)={r1, @rand_addr=0xabd, @multicast2=0xe0000002}, 0xc)
mmap(&(0x7f000093b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_ifreq(r2, 0x89f0, &(0x7f00007d9000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_names=@common="726f7365300000000000000000000000"})
[ 50.771444] binder: 11536:11570 got reply transaction with no transaction stack
[ 50.771452] binder: 11536:11570 transaction failed 29201/-71, size 0-0 line 2747
[ 50.774183] audit: type=1400 audit(1513380495.682:3697): avc: denied { ioctl } for pid=11523 comm="syz-executor7" path="socket:[40553]" dev="sockfs" ino=40553 ioctlcmd=0x89e2 scontext=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 tcontext=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 tclass=sock_file permissive=1
2017/12/15 23:28:15 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0x0, 0x0, 0x0)
setsockopt$inet_sctp_SCTP_PEER_ADDR_PARAMS(0xffffffffffffffff, 0x84, 0x9, &(0x7f00002cb000)={0x0, @in6={{0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x6, 0x0, 0x6, 0x0}, 0xa0)
setsockopt$inet_int(r0, 0x0, 0x16, &(0x7f00005c8000-0x4)=0x3, 0x4)
r1 = syz_open_dev$sndtimer(&(0x7f0000fa6000)="2f6465762f736e642f74696d657200", 0x0, 0x0)
get_mempolicy(&(0x7f00008cb000-0x4)=0x0, &(0x7f0000050000)=0x0, 0x200000000000, &(0x7f000078b000/0x3000)=nil, 0x0)
ioctl$SNDRV_TIMER_IOCTL_SELECT(r1, 0x40345410, &(0x7f0000001000)={{0x100000007, 0x0, 0x1, 0x0, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r2 = dup3(r1, r1, 0x80000)
ioctl$VT_OPENQRY(r2, 0x5600, &(0x7f0000866000)=0x0)
r3 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r4 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000f8, 0x0, 0x4000800000000, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0xffffffffffffffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
timer_create(0x0, &(0x7f0000044000)={0x0, 0x16, 0x1, @tid=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000044000)=0x0)
r5 = socket$inet(0x2, 0x805, 0x0)
ioctl$VT_DISALLOCATE(r2, 0x5608)
syz_open_pts(r5, 0x210000)
ioctl$KVM_SET_TSC_KHZ(0xffffffffffffffff, 0xaea2, 0x40)
r6 = syz_open_dev$tun(&(0x7f0000344000)="2f6465762f6e65742f74756e00", 0x0, 0x0)
fcntl$getflags(r6, 0xffffffffffffffff)
ioctl$TUNSETIFF(r6, 0x400454ca, &(0x7f00004c9000-0x28)={@generic="30609402000000000000067d08cebd5c", @ifru_names=@generic="8e11f1052996e56f7ff6b6d55cee091d"})
ioctl$TUNSETQUEUE(r6, 0x400454d9, &(0x7f000053d000)={@generic="176dc170000000000000ff00095f38b7", @ifru_names=@common="626f6e81300000000000000000000000"})
r7 = syz_open_dev$tun(&(0x7f0000125000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0x0)
ioctl$DRM_IOCTL_GET_CAP(r2, 0xc010640c, &(0x7f0000855000)={0x9, 0x6})
ioctl$TUNSETIFF(r7, 0x400454ca, &(0x7f0000198000)={@generic="30609402000000000000067d08cebd5c", @ifru_names=@generic="8e11f1052996e56f5ff6b6d564ee091d"})
poll(&(0x7f00000a2000)=[{r7, 0x2000, 0x0}, {r6, 0x312, 0x0}, {r5, 0x0, 0x0}, {r6, 0x2020, 0x0}, {r4, 0x422, 0x0}, {r7, 0x2008, 0x0}, {r5, 0x1, 0x0}, {r6, 0x120, 0x0}, {r5, 0x100, 0x0}, {r7, 0x5000, 0x0}], 0xa, 0x3f)
ioctl$TUNSETQUEUE(r7, 0x400454d9, &(0x7f000053d000)={@generic="176dc170000000000000ff00095f38b7", @ifru_map={0xd6c, 0x0, 0x0, 0x0, 0xffffffbffffffffd, 0x100}})
setsockopt$netlink_NETLINK_DROP_MEMBERSHIP(0xffffffffffffffff, 0x10e, 0x2, &(0x7f0000a27000)=0x4, 0x4)
close(r6)
clock_gettime(0x4, &(0x7f0000365000-0x10)={<r8=>0x0, 0x0})
connect$ipx(r3, &(0x7f0000a1a000)={0x4, 0x401, 0x3d20, "65ac29adfd11", 0x7, 0x0}, 0x10)
timer_settime(0x0, 0x0, &(0x7f00008f0000)={{0x77359400, 0x0}, {r8, 0x9}}, &(0x7f0000040000)={{0x0, 0x0}, {0x0, 0x0}})
[ 50.827328] binder: BINDER_SET_CONTEXT_MGR already set
[ 50.827338] binder: 11536:11540 ioctl 40046207 0 returned -16
[ 50.829915] binder: 11536:11570 unknown command 0
[ 50.829923] binder: 11536:11570 ioctl c0306201 20008fd0 returned -22
2017/12/15 23:28:15 executing program 5:
r0 = socket$inet6_sctp(0xa, 0x800003, 0x84)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_PEER_AUTH_CHUNKS(0xffffffffffffff9c, 0x84, 0x1a, &(0x7f0000cb1000)={<r1=>0x0, 0xa4, "592d170ba3671899254fad333c39b11ddae7d0f893aa9fd47b06b6438732abe1bd108f4ce64878d24073dd417df0ea30ceb18c63b8eca8918fd2c27b21942a0550f24a81be65e35afc9d2b1ca24300048e35bf90a4174975dc072145707899c0c816d26564710332cda2bc5189b04e6aeee4a1beb95f7eaebbdeb603e757b3b30f9257f55af46cf528a17d23dc6929e1372be1e5a679cd031835e6a1d3a7359e5340e4a0"}, &(0x7f0000000000)=0xac)
getsockopt$inet_sctp6_SCTP_RESET_STREAMS(r0, 0x84, 0x77, &(0x7f00002a6000)={r1, 0x401}, &(0x7f000051d000-0x4)=0x8)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_SOCKOPT_PEELOFF(0xffffffffffffffff, 0x84, 0x66, &(0x7f0000002000-0x8)={0x0, 0x0}, &(0x7f00006fb000)=0x8)
setsockopt(r0, 0x7, 0x3, &(0x7f0000b18000)="44adbd7611c73f1731005691f9224f880b23d8a894439e7ce28959b7d4dd1fdd700af60e967175f3b5d0870a18a2d2cc1b5b7b47ad660c2a3f1ae19ada365db21dae8446e840cba44ad9e7d7874f4f5f7886f5e115203935660432984cfc5bd4652969c8e9a21ed72e4b24cf75fcc32410198e99e4d24b0d9470443855532d802b7b4f8b12cd3c6e5420ff14ced929835a11b3ee66adb2559297d64312692e4e949a9cea4e7e4de608000bbe268f5d804e5c0040d77466ce8c19568ccee7317ed4fba7aa", 0xc4)
setsockopt$inet_sctp_SCTP_ADD_STREAMS(0xffffffffffffffff, 0x84, 0x79, &(0x7f0000e54000-0x4)=0x4, 0x4)
r2 = dup2(r0, r0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_DEASSIGN_PCI_DEVICE(r2, 0x4040ae72, &(0x7f0000000000)={0xffffffff7fffffff, 0x2, 0x4, 0x1, 0x1})
ioctl$DRM_IOCTL_AGP_RELEASE(r2, 0x6431)
r3 = syz_open_dev$mouse(&(0x7f0000fa3000)="2f6465762f696e7075742f6d6f7573652300", 0x3f, 0x80)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_GET_CLOCK(r2, 0x8030ae7c, &(0x7f0000001000)={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = openat$kvm(0xffffffffffffff9c, &(0x7f0000002000)="2f6465762f6b766d00", 0x135, 0x0)
r5 = ioctl$KVM_CREATE_VM(r4, 0xae01, 0x0)
ioctl$KVM_SET_IDENTITY_MAP_ADDR(r5, 0x4008ae48, &(0x7f00005be000-0x8)=0x3000)
signalfd4(r5, &(0x7f0000998000)={0x9}, 0x8, 0x80800)
ioctl$TIOCGPTPEER(r3, 0x5441, 0x7ffffff9)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r6 = gettid()
ioctl$sock_SIOCGPGRP(r0, 0x8904, &(0x7f0000612000)=0x0)
ptrace$setregs(0xf, r6, 0xfffffffffffffffd, &(0x7f00000d1000-0x67)="5e089d1c0608a3d54a2c93525dabf134ef30b87f4d68ae222a696e6f07fb27f1a31de35dbceee99c9ac36b926068f7b604044b4b94f52473dd8544ab2db4afd418c1d99356df9db9e908def97ffecc68355909b3dd4c12692e44ea3de533b1860363784bd758d4")
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x6b3, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100000001, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r7 = syz_open_dev$mice(&(0x7f0000e56000-0x10)="2f6465762f696e7075742f6d69636500", 0x0, 0x100000000000085)
ioctl$SNDRV_TIMER_IOCTL_GINFO(r7, 0xc0f85403, &(0x7f0000aa5000)={{0xffffffffffffffff, 0x1, 0x1, 0x2, 0x2}, 0x1, 0x0, "69643000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "74696d6572310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, 0x80000000, 0x1, 0x3a, 0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
getrandom(&(0x7f0000558000-0xf)="000000000000000000000000000000", 0xf, 0x3)
chdir(&(0x7f0000f51000)="2e2f66696c653000")
ioctl$KVM_CREATE_VCPU(r5, 0xae41, 0x0)
ioctl$KVM_SET_MSRS(r7, 0xc008ae88, &(0x7f000090f000-0x8)={0x0, 0x0, []})
ioctl$sock_inet6_tcp_SIOCINQ(r2, 0x541b, &(0x7f0000e71000)=0x0)
ioctl$SNDRV_TIMER_IOCTL_STATUS(r2, 0x80585414, &(0x7f00006dc000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
2017/12/15 23:28:15 executing program 1:
mmap(&(0x7f0000000000/0xfd5000)=nil, 0xfd5000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$vga_arbiter(0xffffffffffffff9c, &(0x7f0000fcb000-0x11)="2f6465762f7667615f6172626974657200", 0x400, 0x0)
socketpair$llc(0x1a, 0x4, 0x0, &(0x7f00003d9000)={0xffffffffffffffff, <r1=>0xffffffffffffffff})
ioctl$TIOCGPGRP(r0, 0x540f, &(0x7f0000ac9000)=0x0)
getsockopt$inet_IP_IPSEC_POLICY(r0, 0x0, 0x10, &(0x7f0000fd1000)={{{@in=@loopback=0x0, @in=@multicast2=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0}, 0x0, @in=@broadcast=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000fd1000)=0xe8)
getsockopt$inet_sctp_SCTP_GET_ASSOC_STATS(r0, 0x84, 0x70, &(0x7f000049d000-0x108)={<r2=>0x0, @in={{0x2, 0x2, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x7a, 0x8, 0x8, 0xeda6, 0xd93c, 0x4, 0x4f, 0x0, 0x5, 0x403, 0x2, 0x7, 0x6, 0x43, 0xfffffffffffffffb]}, &(0x7f000025f000)=0x108)
getsockopt$inet_sctp_SCTP_DEFAULT_PRINFO(r0, 0x84, 0x72, &(0x7f000096a000-0xc)={r2, 0x3, 0x20}, &(0x7f00008dc000)=0xc)
getgroups(0x1, &(0x7f0000fd2000-0x4)=[0xffffffffffffffff])
getuid()
getsockopt$sock_cred(r1, 0x1, 0x11, &(0x7f0000fd2000-0xc)={0x0, 0x0, 0x0}, &(0x7f0000fd1000)=0xc)
mmap(&(0x7f0000fd5000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet6_IPV6_IPSEC_POLICY(r0, 0x29, 0x22, &(0x7f0000fcb000)={{{@in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0}, 0x0, @in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000f84000-0x4)=0xe8)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = syz_open_dev$binder(&(0x7f0000009000)="2f6465762f62696e6465722300", 0x0, 0x0)
r5 = socket$inet_udp(0x2, 0x2, 0x0)
sendto(r5, &(0x7f00003b1000)="1ae45db5f5a910a0233cfde2803b3f72fce717d602c0aeb57b22bf866641becb540b6171f342aa43fc462902419080fde4dc4cce6497f291ad8b3806c398019f5ddc3e5701ce4128aa8e17ffcae19ac3d3e64c83edfd870413675d96399e80c64db8ef66a15a3f50c5a8e9bb01ff743b3c48b7136b7e30a164ef5a4ec46fcd15912ba7518b96890e4a3dd0546922cc04eab79a637e478766ca0ab4f76729a08d82542e1a293be285d3550a863302d3a2023e71e9c81f30c3cd288ba8921ba147a892f608d06c71385d242ed626776ec8f0af523a43692430ceab7e", 0xdb, 0x4000, &(0x7f000075c000)=@rc={0x1f, {0x800, 0x5344795e, 0xbb, 0x20, 0x10001, 0x8}, 0x401}, 0x9)
ioctl$BINDER_SET_CONTEXT_MGR(r4, 0x40046207, 0x0)
getsockopt$inet_sctp6_SCTP_RECVRCVINFO(r0, 0x84, 0x20, &(0x7f0000265000-0x4)=0x0, &(0x7f00002f0000-0x4)=0x4)
fgetxattr(0xffffffffffffffff, &(0x7f00003ec000)=@random={"757365722e00", "3a242826212b706f7369785f61636c5f61636365737376626f786e65743000"}, &(0x7f0000c0f000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6c)
syz_open_dev$binder(&(0x7f0000a55000)="2f6465762f62696e6465722300", 0x0, 0x6)
r6 = openat$cuse(0xffffffffffffff9c, &(0x7f0000cf5000-0xa)="2f6465762f6375736500", 0x2, 0x0)
ioctl$sock_inet_SIOCADDRT(r5, 0x890b, &(0x7f00005c0000)={0x401, {0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x2, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x4, 0x100000000, 0x1, 0x8, 0xd7, &(0x7f0000859000)=@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x3, 0x10000, 0x41})
r7 = syz_open_procfs(0x0, &(0x7f0000011000)="6e65742f75647000")
getsockopt$inet_sctp_SCTP_GET_PEER_ADDRS(r6, 0x84, 0x6c, &(0x7f000085e000-0x46)={<r8=>0x0, 0x3e, "9e89d534393aded2c4f63b09376c50f8b60ff17c5ff7ad71c000000000000000ed6d6f3530705dbcff8b1775fae0a7abe3d8597770d9f8115007f5b75e2e"}, &(0x7f0000fe5000)=0x46)
getsockopt$inet_sctp6_SCTP_PR_SUPPORTED(r7, 0x84, 0x71, &(0x7f0000bf2000-0x8)={r8, 0x1}, &(0x7f00009b1000-0x4)=0x8)
mbind(&(0x7f0000014000/0x1000)=nil, 0x1000, 0x2, &(0x7f000000f000)=0x1, 0x2, 0x7)
fsync(r3)
ioctl$TCSETA(r7, 0x5402, &(0x7f00002ba000)={0x0, 0x2, 0x45, 0x8000000000000, 0x0, 0x3, 0x100, 0x3, 0xfffffffffffff000, 0x4dcb})
inotify_init()
2017/12/15 23:28:15 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000aca000)="2f6465762f7161745f6164665f63746c00", 0x0, 0x0)
getsockopt$inet_IP_XFRM_POLICY(0xffffffffffffff9c, 0x0, 0x11, &(0x7f000031d000)={{{@in=@local={0x0, 0x0, 0x0, 0x0}, @in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@remote={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, 0x0, @in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000c7d000)=0xe8)
r1 = accept4$llc(r0, &(0x7f0000ca0000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @remote={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f00007e7000)=0x10, 0x800)
clock_getres(0x6, &(0x7f0000e0d000-0x10)={<r2=>0x0, 0x0})
setsockopt$sock_timeval(r1, 0x1, 0x15, &(0x7f000031c000)={r2, 0x0}, 0x10)
r3 = socket$inet(0x2, 0x1, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = socket$inet_tcp(0x2, 0x1, 0x0)
getsockopt$inet_opts(r4, 0x0, 0x20000000050, &(0x7f0000583000)="", &(0x7f0000002000-0x4)=0x0)
r5 = socket$inet_tcp(0x2, 0x1, 0x0)
ioctl$TIOCSETD(r0, 0x5423, &(0x7f0000742000-0x4)=0x8)
bind$inet(r3, &(0x7f000088d000)={0x2, 0x3, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
setsockopt$SO_ATTACH_FILTER(r3, 0x1, 0x1a, &(0x7f0000f05000-0x10)={0x1, &(0x7f0000115000)=[{0x6, 0x8, 0x0, 0x113}]}, 0x10)
connect$inet(r3, &(0x7f0000019000)={0x2, 0x3, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp_SCTP_PARTIAL_DELIVERY_POINT(0xffffffffffffffff, 0x84, 0x13, &(0x7f0000d58000)=0x0, 0x4)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$loop(&(0x7f00006ba000-0xb)="2f6465762f6c6f6f702300", 0x0, 0x0)
ioctl$SNDRV_SEQ_IOCTL_SUBSCRIBE_PORT(r0, 0x40505330, &(0x7f00002ee000)={{0x2, 0xfffffffffffffff7}, {0x1bef, 0x3}, 0x201, 0x3, 0x0, [0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl(r4, 0x1263, &(0x7f000066a000)="")
setsockopt$inet_sctp6_SCTP_EVENTS(r3, 0x84, 0xb, &(0x7f00007ef000)={0x5, 0x9, 0xffffffffffffffff, 0x0, 0x3, 0xcb, 0x3dfc, 0x1, 0x1, 0x81, 0xff}, 0xb)
accept$llc(0xffffffffffffffff, &(0x7f00006a8000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @remote={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f00005e1000)=0x10)
setsockopt$inet_int(r5, 0x0, 0x12, &(0x7f0000206000-0x4)=0x9, 0x4)
acct(&(0x7f00008bb000)="2e2f66696c653000")
sendmmsg(r3, &(0x7f00003cb000)=[{{&(0x7f00001cb000-0x9)=@rc={0x1f, {0x7fff, 0xa14, 0x9, 0x1, 0x3, 0x9}, 0x8001}, 0x9, &(0x7f000037c000+0xb3)=[{&(0x7f0000684000-0xeb)="9702648b156754784f586a69bbaa17397239cbca65da3086d82c72167cdbb5cc7d466860287cd36dc7d1cbb752455d19593bd29e4749822d1cd43b7cb2a7d1beaa49ab31a88ce21c4d7cd7e8827e263d8afd2b163ad24111921dc0eb7b8dd0744fa0f0a8b74db182b92b4f81bd2c13150d51553a0f8ba4ddcdf12191733719c58ca0368b9ff9b87d24c7659fdb025989e6b63799f6c616fdeab5a842bb71fbf0f2491cec556466e69e42c86477f58111ad641e338ba367243cfab881e05d86dc745de265e0164313ed3cf1063ecae2cf62f18d4b7705ff6525443bb8600b103bd67d42e861f16d2d0a5b0f", 0xeb}, {&(0x7f00001bf000)="b53a2da046cb45b86b0217c7fe063b00ecf3676a897c7138b742e2cc689b9a2833878d392d7db84310d810a616aac94d34dabaf1f0aaafce4019352bef23e9997727ac1aa27daf2043768ae462ceac35ef05555d0c65d35a592f6d7813f75b74dca91ba683aededc7fd8aa729f43eddfb8e180071bac6eeb22ebaf7fb1b134290890e160dcb1ce606974cadda58246ef4676", 0x92}, {&(0x7f00004fb000)="5e777afaf4941244c77d67d112db818a88706674b40d3ff65d5b8385686da74f6f5949a13f5c6f7ee0939307d8a97370413ad2f5e5ed94072c28b5d2a17f596487e2f7b9f89ddc95571a87170d598941939ce5eedfe98bf04255bc0fd0292bab4939e97815dfd286a5517f3827bda3003249c82c333dffa4bb8752863712f66a5a", 0x81}, {&(0x7f0000304000)="9f09a413873fe1a197b5a477b685b31c0a1e9454227b1457f66d8a330439a777234fb4f8f265565636bad2a73c338739e526e5a1c16910e20dc75fa7d7274ff642491d1884d27551f6b0df5c2c359c72fe8e5dd867bf82fafbfe3647e994548ad9b626aa82465a37a1849b5e38678b357e2f7b9169b85e3349789f2c21c70f3abfdb81c1e4be5420d07c5599f42ca2c653bd8d73ae105ef5f7cf075f58e8f2da4bcaf38972be57aa7f396d3044c42e0fd1be1fd03c4b54892c2c9b90bc8f21", 0xbf}, {&(0x7f00007fe000)="63c45d455d2655a9746af0116268368ea52611c5d6ae08f83cc0f0397272a679eeb2d5e6261561f17ba4ea10d0c5d0c13ed49c8da34142fbae4022b44fac08d9bbdd299e37326412bbef808f9b14678679685525b584f1967df54f96ec6c0f22a0998114bc1cb1c5ec6445b7b3f9cdf6e05457c4834116e2736c9af6e277dc20ce", 0x81}, {&(0x7f00004a8000)="3262bf9e2655314335117fef5cf2c32f67223ef99e370c27c2e566a0ed00b23f0f0f578faafe5326ea0165733705e66fc5b4936357ae1e18a6a33d845bdbe36abc15b7052adee6f5cb871642cab9f32bd685076c409921c799378e54930cd3d44edf09cb8836c72b82d40979da04186a5b58dfc476e044fbc7afb19c2705578d96105a9935a43ef3e7cf8d0168bec7bb9ed0a368fe03562ae59d5fb802924f5e1f6e6cf0ce2f2fd0cd2aff57207c36966fab93ba01598fb05864c8167e0ffee47c14f0932eb6", 0xc6}, {&(0x7f00002e7000)="5c5d8302be155ccbb48d5c25f32eee9e86c2df674821d7845cdedb862ec1cb3170c2acbf05559a3e0244173e584b4c2f0811fac4b68adf0fa7a9999a9dfe2ea60674a64682004285c85dc55ed556bd516191f3a767a61ea7f116a855a07be4617af8e36d3c731349ff06cd4d071fdd67bcc96ec0b81701e71a9c3cd504ba670c4e6668a34211933d06fc6c27040d505a8c94c16ad38703bba3df3f287fa001f6114e8f0b0a1b37735d5561ec", 0xac}], 0x7, &(0x7f00004ca000-0x78)=[{0x78, 0x3a, 0x80, "10cf717ef7bab8d86ad3f480c0b5cc8de121383a1d5492fc462e51c0e39d94aebdadf96157be78575fca19f922593fe957019fb6a3c6b370c2cad218af8194af1d9fab3c9a7538a4128c315814fd38820aa2baaa586889c6bcc6f0c55c81d415af4c988d6f415d97"}], 0x78, 0x8000}, 0x6}, {{&(0x7f000045a000)=@ethernet={0x306, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f00008fc000)=[{&(0x7f0000b98000-0xcb)="96b53c07b2391f315bf846a377b90bcfa4abd8ab94bc320558f9dac55cd026a787467899fd2413f788021465c21b7ee28eb4ff1f025f778fb6b9c71afeff32be804dafd79b8b6d82117fb4b22489c9bc2a8e2ed5a4d032635c2daf5c168d3fb77f57f1d2f5c5fc59dbeb67eb6506a2e31101cf1a1a73c61d5ba988d6ef3c78536a97ea4e685cf71819180db662cab5c3ebb3dc3a0c72bd0248bae94b48cc0f579b156310a25cff3de050195a1a2ce842ca81ceb036c743df9592457bf762b8c35b190a12fca578e7a30ece", 0xcb}, {&(0x7f00002b1000)="23f738d3aacfd1d9b6cb2540e48a39eac8697548280cf2c5bf1c1aabfae18c17419cf7acdead4d66a3c4211b58a7079e828d7f31cc8a8b3f82a2c53573e3a0a0da9499b81ca2cc4de717741c6024166952a76aed076070bf627eec09b3fa56e887ee8f99708281f2d20f31d631f48c418f4eba54b941000000000000954d0844b8450439b6aa32171cab1db3e0ca8f3e6271102f182a998f29ba03061967efd0aa27bf97f09db71201318be2d0c6819ac67f3e422e6372cdeba9b0a7b456f842c12b50024f4f779455ef1cc71e6f191b2c8ef6eecd4a79", 0xd7}, {&(0x7f00006a0000-0x1000)="9ba259a31905e9ea145e00de7c08d0b95c113d36d1d58be9e8a924994181801b8012c7693ee4cdd3a6bd1071dcb3cd5b10c6430148a1eef38b833aa5ce378cdb0c716c5b230386cada2552211780ffb83fa89f3910a3f3b524350d187f9de67a5b41fe083e393146e53c4d55129a5147ca22003f4b172f0ef1c0b5597f402c7154e32eb823fd00d277ce1c36b027da6eddc8aaa280155dd0f708f61643203cd986affae32b516fb225f86a74d084042c9c88f99ef9f44cb673d5db8d0f624e946dec9a33e93b1ca5eb4a2ff289037f60d63f0f761723c1bdbc03943f1516964efe4fa9104fc59e41a1a6f22986b2c4afa7e615798f7002eb8dbcd2891309a14150e82b44aa5a649abfffadd5e71eccd584da59d8fa0ad7deb010b7dbc9e3f336c0fef44e38a1f0a65dafc78042c9587057f8663200293236309ed52a89e96a3026c58a2eb425dbfb6549858360b882d4a71bc9077186142926da62327230db1ae427ea69bbde54297d6815a2aac519dedd14055922494b2dec5d23f063e17ab07afcf9233784eadadec39a6c24a48010fb8ecef722994529de6993dc53cbd2d4506adfeb3f78c13c7e456e9adb643c94808d4d7d70ab823b3cb138ed1796ba770f3c28d43392ad68593f23c3a5847eafb98355edda542824065c0a9170750c335b2d279664a6bd323f3df6674e47ecc7428b90385e091a58820262991f99c42bddaf2acdbe94aab895bfd3ee3530bc820bdf268eb5ba897cc5588fd78feb25e63d74ab0400baa2c87b6823b90c55c6c4fc4199bbcd76e31e09d07cb229f3710cc7503a275d502b8185a8322a19a6b089a03fe0b6bdaa13a945de02f4f31faf1d7701bfe20d5a71288726b8df3b42ea372c225ebc3f46c83cd3a20157242ae09af1a57d433df01df1eafcceffa3313c8a77bdfd42c42677755d196868a3b07f8c8267eaf1faa963204e308aaa5c5383117cefa4f08f322ee6718b5dee37c2de97d67f958cb6a1f1677789074b8868dd849a0f7c73eb62a19e290e98a203d2f5d393e83c79eadb26a0f22393bab94be4eafb05d0a8abc277b43a355439878b2072773d6ebb89cebb4050ed76331d23c561b3d64d23c20b4a1d8e704de35183c5296ea61310c9d26075c7f54b18db0f4cfc254ceac328c1775ecc0fa739cfa3a4c513a552e8816bb785c4fcfa0364eda218f3dcc9ca98603bb83e57314634bbe70171cb848b112145d2a9f3b3ea13c0f534f8d1d9baece53822393f0282c32f78aa362170965d2fed25eb9a2243217c9b389257d77e6d70264d8fc02758e90d62624f01ecb167a021dcbee29cc921258427a84b6f5b780fd28afab163fcda376d683966595fcfe35cab4f872d08b351a0bcabdbd8b8d601cfddc59a796b2c021958819433b4f7d53c8062c37bbd4783e3f16162df5e123004050985ffe6868b1f3555dbf10f216dfef5f9a9cf2f9ec420a100c5badf670c09f8f189da8dc9d79bd49ddcaa80b67074a45db134f367cf337fadc494ed65f2f766d1d287bc8ee742a7294de34f69e6f4b69cc276f680bb6be750a3ddb1f29bc33a882795199c29197fc71daa885e4218d17812466677f13df3e0985a3a469a9e0a2b38ca43d539a632a8a4d6da748fadb48a5cf80fd789f375eccfdc3e0d414ef6f6684c4c3692896288cd7f34ce99f2acf6c2ea41ff9a9702a230b8a95c7b4966bac1d790e8d043fc28682d7cb5ea375ab1b3919e3fc46f9a8a972298a6981f2f4d50de513394eb9161291f16a8f3f3bada939a1d9c698c90157ed7f8da6e4b9999cb2c1e6dc71065594c54da077650523694305c39099d9c24f9cb80424f547081579707f27d5bf6209651708158748182f8d562f6a75c36e41a5095e3580f9db2f55437c65da3c767e93e7ec98b92e98a658d400773d23dacf9f58e12e09a2eecf0fcfe81a12ee224bf5f677faedb1427ff5ab33c628acd5615416d93a960a742c5f597ea3d1bac9af3a9230ca61065ff7650a5522135cc7f9367ff9bebed79c43296c8b27c4e061b3eb75eaac5c613f2f06cb13ad9aa7c3e529817950a51300427091ffce79b09cd26bbc9caa24ef25a6eaceb50dd053ccd02221a61ee0c7099b33554cdb86fa5bbfb2e80c893be0bca7094ffcececc7ee938a78d86ce41837a01ec832bfecbdc9202303f98fb4b0a7c36944d44f2efb9b1c8a7ccead9004a0499910b94a772d6037d589b639efba3f7ae604b58923907d2f94e27725136391bfc63016510ffddca18ce486b1fd871612db29cbba94e0429474851aecd919b6f894b13cc27a827189e0917fb11d694d8bb1f9ac3a2422ea7de9fc77388a7cd9e028d238bd83628a90096f8dd084dbd5976b85d661ebcc8712ee10e15040de2388632df8d94c95e1962e2d1e590a2893c3b2816831e639faaf8efa9f96e004e3a880908da5359729ae8daf759aedcca434a8e801039da7ca12860016469ad792b25b18125f710ade0a4dc97a90fa396cd91c30dddc02d5b7498393bc1168ab47317bcca915730554b686d7626797b37456542eb1dc2006e0d4aab8dbae26206cc54c67d1e87ee1721de455db62133b2fd9638d0cf0341fc6d2616ff3383ce48f3d60093df43249a31f20ff61b660b11cdb61a006bf2a0155ca110a8b7b7b8713c8e4c2064cb0fa7517d224fc7fe20c7309fe5841d69c3cc20e41e4b664f8157ec70c311171f9962c5f94f201fe70929c5736584cbe70e1b42f9967950eda600b3adae7fba0ae524b2afadaa9aa7ee9747c6c73a5260d276580ff0f5b280be8e7a383aaab7b200875e0a606e58d582284e943c466a6420af87dc556ea0ba551e8f39e179be2be6756f4a4b6da875ceacf07ccb04a35ac48f4047a37883978968c9635976892cc748992cf6e30187297ca4dfc8f6a43cd46fa7e47f028178a97f5f4e843fd2b9cbce95c814762f08d5bc747840175a23c3bc1a44f9a74cc392cd6633ea05883fa8fcf89ba6de92f18f99b988d5cf62acc10dd3d87f96c55ce98513b93a45ff37ce33178ce0a9a402c135a8d1dc90125385c070f84a0c29c8492460c1aa7a2c8f3fc74a797f82ea61f379064cbb1ba450266b5b1321c171562125262975ca94cac5d93411420298295e082e664a6928090f0f6cfa005b772b435d2193d99361fa87ea146126ec068815974a99d3fd4cfae1a865fed1d3f7ffa3212adbb8c71fa18cc9b01dd43376ed77ae94489648977af357a351596171b6570733235b59986db9def1231888082521c5a3f17add94eccc714188d6f05101d66405ade8a349fdae6f5782dbd9b05d42ecc9eecf9479ad356df6f6ca79dfdc8200e126fa650f6ad1a460f7dba3b6f05a5f5e2940c8c6b69a1d9431d767f51ca503b07553672792010d75414fa60f40942eea55a55708ffa5db7ec3199b8c06088e896e4efa18016ba69fb556012e5d7a47ba98917a7d6d8caded6078b206b9aae64f07e09b5fc9eb585e6b0a3c277d67eedc4029e0bc34df217b44baf9b9519b9b967a86ae3538b1608d8e49c85a98f273fd0717f7fc25c6a8cf33ac8d3b88e001070dabea1ce55ca6a1b41ef1bb012869948f5f83af2dbdcfc3479625201cee2a5c43c751527d9fa60750fcf3095f4d9ecdfa5dadb96ae312ede119cb08c7b49bfedd9c329095742a7ba1f72ec5d42924f941f453076aac364badf07b93067cd125aa678dc05f22a4b8426373eeae89727dad2a9ec0d3f912eb04705f3b405823c3b89fcaf58efe344a8b15d8ef1e9949e3796cf7a3fb02a9f1f444d01eb9bff47d6f957711d3ce3aa4923949a361c37d06ca86a81edcbd85eb985da3c4c02ae17aa59e1ab9266a8449933f0ba39552636f25d6424821d6bf30dd02d09910027ba7168528178b68f7ae5bee5efb7b86436c720b9901baf82159d79b7291a4bc5235a88144863cec11224eb597ef2e01e64ec328503b4351b8b9c3769047dc264f920a5af34e7407f1e005492f4e7f251c90a7acf05a618d0ba008ac741e4dbd6f31a78ebfa84055f87314cd1f531e5ffe35d1dbe92c713eda294c75ee2d69f653ffb20813f594335d541fe167690ab5111abcf2fe08b4b7c6f611a4d52945b6bd96d806c30b79b1eb36048c78845c06fc153e9634b6c1ff3fbc207b67d9c6839ff7cb1cb6f4526a5a2bcdcef52e60a689e34d040e254641c5306f0b19252562a4a3012f9513ef801e7dc73c13941f20890abb6d65d05444ffb621fb3428499803d9c28cfdd44a2e4c01808312112e3fedd14c6e8d28bd66e6bac8f67a64030910b1bb6d239a6d6197d7b0d9c9cf0cec77ebc622feb213ead9729b00bc50991550ed2e5f8819279baf24c4009d0eafca038fbcea16282e9682369bfe0380e91abb961755e2280bc11a9ae9d1070c10c0ba76499e8ae46ee9242b20a209a7331f660be1bcf8cf8917e08f483e30ef56d28be35f36b741b264f7a4ea44018457351254e20e447ca85abf17f204ad3577e483b8f386bf2eef8c9fcc4fcf954038f804dab27126c92bec7be1b44f413c03eb7ce0ec1f2420a189b5071b4961fbaa32cc334adbc46e48ebf90794e2f9c8ae98df51ce9ff0680d016c23ed267754ec42e441aa8562f3cf888e8accf9ea53c2937b7d46b930f8d7f320414550a2cbd123bd5d66c47f61f7f70b78f4119adb28810fda37648b0058f34d3034539e8afaed671d8ae1dc251c98336db1a6a452a2fd8476c470a7a9f0e6cc8d269499ae102a721914e502a1902544de24f9fa7e072c872ea2b0579d202d1af2355c62abc863f562f88e24c7d0800b73e1b79138a91a6d2a3432f73b2042d1a305d8860c16a665953d52842c48a445fdee1a9381a974c6b901d268a609b3fac7c46622fbf3e6162a46b32e0084e7ffb49a6e23b39f372ed6b59b9d98080515c856a27daa3356eb2ee9ff14b954feddd5e982b26cb1bc4d882649e478250ee10aac6a0b3f7e6b2eb85891ab6a19f83770b066aad35ae85823d8df3c23f30e45ae0634d3b1d6618a479afcad8363311eee0f3b7f02715a060a6174e9c5a3bc287b840e36bf3ecc24110acc777b807770146c48e7bdaa83f8228aefb131691c4f5468e5cfedeaa5d74702c145f1d83de74c1138a5c8eefefbbf88a20ebf0876e00cd59e5efe8718de429cc64bc4ffb804cacbfe2c6e98404fbc85f74038b1aaf2a6749d072b4ef9079c89bc4c1ed7d06696a3a3e635d719352280547bb3c3cbdae0fbf19b7c9b640bde0fe3fb7467244de499cb7233bbad5d60c8d1979de9a9131f56a41657d306430f92ad6a27afe8945d068692d47cbe3a4a64a140c71d4ca3c81aeb070aa2c3102f976ac58cd2e426d40f5a9f83240223223f17bf9af6b8c5864045a7e3cc5ec20a94fea8670f6ef0f9fe4771d69c53417767be1c4f0c19383a3771372a353e8d50e625e231b19cc4bd5d7ed6e5581e1ef2b0fa35857cec9a5d3ae39cd4ff8ec4a3a8ede381b9f7a71c4e5338918066221d0033ba1ce5f97e2d9db30477ecab5b6284070405b714efd51d6f7a867f97f215a627c6a4b74ce8391e6988265cff5dd99e621c5cd0e417a34d18efa928d370cb0c31663d05a35d8d2a3d51f76049334a0782f50bd908a9ffd9f670a2a92393ad8e66811ba282168340fb773b97b11055eeed98681ef51cf4d7e8ddbf71413077428ae98a69818b9a368c93a97ae153779de9cd896b624992e2ad6cb07f687d1102ff11cf40ccacea3b325592693a2c6ad56e174482f56c60f564f9461bfa3578a53296b16d2537469c7bf1a42d87812a767b78714de9ef", 0x1000}, {&(0x7f000045f000)="82c6b49aca9d084092a7702769bd555186d676845b644e7eb45d4ac4e5b7f6bd58b19c82e411d690ffa6ad5022040ff20baebd19adb61e4d03e78d681cb676d1f2b6bcd66dcda7c1e08f74e3542fb953a3a8fde21ea3461b28605582062733aa5422e8c9509486791f397f891d06da4f001a728d51223e7aedf06ec6d00640f65c09bbed1642fe82b9157f9e37f4f8ba87662f73da2b80d4a64de2816d6a0f7ce66e964d2e264912109c9092de132bb979ddba348ea8c15ad0172f3d1dc26bc3af03d4cc189c9154464345847d2a08148a468cf5fd7478f38eb146b5ae651140c79bf53b6c0c", 0xe6}, {&(0x7f0000408000)="040cbbcd4d5e0ac8261059469902823ecd2f4f6e6267d1e6ccb74396bdf1b1090dc4f57facf6b25d1f605770ed6667b7cac7ece15775a8168e43f65a06433b9e906bc883557f62469b2b4c214580f8a4f5c1f9a1623482157c36fdc337863e1ffe9f47ecb45f439ce2b99f7e44869dedf2ba3987d7729659f817a32033b5869b381eda27c26ef7cad6acd14d7e203c88d3c2ae8741721d1aa6486e0738f81a8d22ca47f2eb51be8dc3f11bfa12728f33ee18be7390ad9c0d57397ee3cdbde06b4c0a94c60edac00cf9698bf62e29b4eaa982883cff2945e9eb9bcbad65b85e426d8f1423b5f7f90b57c1247599fe451c3bf41fd32ba837d5f3761916fb0a11f2412ce9fdc2511d89e3d3d42af6098aecabe1cc2d0e7dd54c52109ac3c8249cb8cb61d8c950b6df6ecf9a40aef9068494b7797474e82908b45d3030973d9a51a2e91f5a561c84df7d84a588785073a331028ab2e37d8bf8077831dcba467dc69520e6662628e45ff991f4a84bac26a8fb09dc872d6e7b13de6780c1e011ecf6c557b0108a0eaee91ab45c6522d491004a80ef15977f740b79aee783614d24ce8caad7d1a192f02f36c85d66bb0b208582aad84119e4a20e95fb9199dddaa2e672871ed2111739aa7f2bfa80990b2e126271733e3e1b30c2895c8df0051667a93d07b05dd83c1a9cd23b0ed9459a5527241373cf0b7fbeb3e62299c0a62faf7de35430ecda5a92d7aab01ff7edbd48ed935fac3c66e331e86ab8091ce73a929a1ccbbe0d85a6eb370adbfad1f594e054dad58dcc9c78548aab876c2b95f43c4b0811e28189fe2fb6feb2d2a82325eee006504f309a1eb77a1ae990a6750e6536a83dbe57ff4188531e17d17875bcc8bb94c56f55c88efaca2bb0d48a653c5e30b5c0ff5c342421d9323ebef0ae4678a3c18c449267ffb6c4775eabb76c650f2f91b548736a17e1baa7a4fb08c8e146c9c34ea37934d51505ab6dc5209d424a3f8422f2c4f578283ff04f9b0fde64788fd92dc1a6a984ae92a296cf1ab34f91c94a804b9a00ad12fa98362edb6e2652ef7c00b5379e4b5935431aa916123eb5e349ef5b65bb5d3e4c76d83d94d219bee26cfc13a37c87f79f2ee42e02c4aa9db3399ef3724a40a43ee1d444004a10ef7c449e54fa0dafebd523a5a6a836aef222c169eab181937260e16dabe2c5943a5987fc31b6ad313604aa74cbe9a32e37e022333a4cf3ec3b415eeebebb9d7f9852e18a09eb657d17d4a52fb295409a588186f59e38a67e6e699ac5f182846cc0f2e82f3573445e2dd637626e562d49981a8ce1e69bafecdf33491de62307e00941321b672cf1f610e932d980b54e45a8dbe9aab4caa118340e96a01511ccc4ea454960aa1f33708c06a670107b21ca5b3de7893d4cb4576dc847fffcf1ef4450dc493a96e31974b98ca980b98f2892f4df9a54d156c98e7b90fea081652132c4388e2230754a5d6bd44708721b6e7500316a8ace24bbb53277cb2964c80df2bd0025addc328e7b032d9b6fc44a17b2ba2d84f4fb2d37274cbe11317fec428bd517363438f5313f4659827b2e521174111eadb7e90b113f09e0b4c96cb9a6ec1bca40ce70a03025d4a6fa680aa5f63019b41e9f978f9251b522b09f00a82920ee325614c23ab1fa091af007f08777c0b8c903cab0be7273142b88090b927c1c299e6bdc1281b96667f91dd9c45c316d16b17ef172676e79492e010451f67217013da059007d589be35fbf6b2b7b4d2af5a00648bcde445549bf446561bfc2996d1cca2b1ca54c6a1be526f2b76957ff74e19192ad01fafb2f6031a58882706e5cb82d3dcd062cde9427fec3c01ea76b72485a80e726ee729c5c23e217507fe705d95e2b3177a96948d50e9a4318189fbc07807148dcdfa0769c64c94b327069a1362d392b9a78905c8fd9bb47912bf86f1e07929af352708bbd31c00f016bd0567e1ac05b659308de37c5e3cb3063449f55683441bae1d463b67a3f6855b6e5ac5e53739aa43f7e27d8c7564736561c43b09c40c643cd235bea889be9b61bb2193fc535805df0a878be9f53f3afc1b3fd4bd2a528056ef4a8c5e8dc9561dbc9c0f83b88dcd8e4864eee5eb4999290cb9888323e92a6fcc7047e25b0eeafe70e1dddcf3bbb013c712b8121b3bb8f085ab4fafdb1c6cb912b9e64020d16be4a6040a6fcf9bf9ef70ae4613ab15bd7c8194a4662e2076f1e60ed2bc713d58de392b1bba905a01b967a7943cc345e391adb25ec639c77e5cf16328fd50b8c335d687b064217546151992d1f1d1d5874c565493b8bfe90f429f4215a305a2069c4ef30fd403707e551bd44d3c5a3dc7e766c01c109e9e5171bc580a9602aabd9232044c4024466cf36e502ff263f897f07701231524fa0d1cb8b3d380947438ac22b337ae4d536f783147ddd65b6eefb2a2dd0c7f7ae40919dfa892d880c0c999bdc7e3d1a4245592b429ba32df2818b91f57ede98d3186f2a99a8fe8d5e5cc3b37ffeef9df47943a105e1f585163766709fd720a780fa2e74519cb38a2d4637ab32f91fd610327f32f825bc3ec669472c6012bf986f612d174039e5668ca7cdefca56eb9f635f600b02c0ac96f38e22b8d832b80366e3e570e039bea82ef320d388f7ef177f41c450eafb59818c74e332d1490d98f0184f5d80fa5ec5a5a0c9e2221d76795904bcd3bd1b1f1ef079c7d536378a7e285df558ee1a67b6ddf35c657b4560ec3a618e80639b8e44a442c479e028c5364b214670ac8166c87171f9e9a9a73f6a7de91962281b16f351d96e82324a3a0c7fc988670fd1ae9e75b75acb81aceb885214d49a7b314e10533c70de3b32e6715bfd272d8ff915e3964838713e53d152327857ed52717055d594b3dff72f9a3063384767fcf069916fcc531889df9d5528deebd6ec103c077ddd07eba87dcbc4ff15a174dabe0d98d4284411ec594e48754845b4662e9799001e38988852892a31095b271081e55d84a27631d5b502f3bf6720569b615b7164bdfc7b8783f5a1de4ad3efef4ffd66974bbe4473784607578e0f5a41e23410207d68e32d68805981c8231dc1e8e233f37e5d5987f1e18f1f43f470d131e79c14160e378b67a8fd642030a5b2f27099d1d79f2cf5e66bdc8aad72df9ecc9e8421e5375f33e5323efb72120d84824b7114bb9d5eb3308b7214641a46ace296527af32dc6cd42b5d46d692f991a259279bc2d60912300352bd72b330c2f8e1f546c1650a8846fa520f30444e32a8a7bb7986057df1371136f665bbb5be4da55207f6af781e950d64c96ba7be5601a9849141778e469e5980e0a5841e3107eeb001a5fba3a90cbf12160e473de5d64bcf6f6c3d2b79677f07da375aa61080507fb95ea121509f65d82eeeddc71f34fec89b79c682f74a75a05d45d7ccc15ab8dc4d0df771f573210b66885a64f942748c0b8ed6c33391808e3b9e1d326dd6d7fd5c21637358c3ff5477304b3d5a98fda159035e9972f7b7f273f28711ba10b74fc0eb50a7176027f5bf5da0af3d9fc914424ebc85a7caa5f8b43b846cf28a3a03cebdc90d4953eaeb3d009bc086013987446d759a90b2e2ff035fcea9335a86a37bb80a740bae836804d1e9cdf8d955790c66600f94fc3da230a0c676cfe417ecd9007e389294e7e9338efc2ca2d9379cbd7da36782dd4d828606a54f717af2bec8584f6b4165057f30c3186d0dd2561824852d1f88d611e2499b7d2c550cdb9918ba9a3c9e631a753b6eadca751729776c8e8039cf4a64c8660d9c4c98230576a66bf8711ad406c591b75d2578a224462ec15f16479a57a85ffad3a0c7e2cc148def086f485c24339ed1408e3a7c3cb037838470deb8e33b5af945b4f3705013ed28db0711a241c5d711218606a9f720c47cdf97deabd0ad7e904344bd50e0cb2c28dcef5c2fd03e05467d507b80bd793bb483617c677cdcef6c4798d3948b0ad8a550ee411b42b941066a29d86a5423b0f5bad9c2725c5c12dc0fe3aab2c1a7876fec533df8202d6951c1aebee49b392882e6596b9b5c193f753356eadc4e5f4be05a003bbe2a9469290046f1ca928e719e61619b44b7c2f1f3f3db55efc7ace9898fb556833821128dd9bfc50cc8552f2e288b73bfaa00eae7146c182a79216e1bf69ececcaf2e340dbbe24e31a796b82dfa3f1f7454f77b25c58e2d576235fc1a74f81306ac6da6a728c97703a22b70cb1a81d6c7540e6ae987610e9aebf60ee8a4d5003491121a28b064f9f248eb9db3bbc2519752af0bbeedf2d0cf86342ecbfed50b0fb74725d9054c9731dcec5a02ec0070ecae1bcc1288db37538e199a9f27ec257bbbf41d2aa9a231d145d40e274ec3d6090db6abd818143a8fba250f019cd249ea680ba9b37b3d7373d713f643e5842dd3e0e458edcec438e8f869e6f1802fbd46868919cb35b968246382bcb18afac32ead2df437c233a1887e1e368c027d001ebccc94dbb1fcb4bb58d413498924a1943568c1e8f4a993ecf99165ad56cb206ba8dd9fd713c7354fb726af1173796c0c5f3534e95d3d5d40e06fff07893b9414e395ba9392c360837f86cb1939fdce34e8e60923c38dd652accae60b07a8e4e14c9f6d08b3fc78380258748f12642f750cf71fa67558880f68ef578634c696585cf45658e456950505a5057de2366f62a807320979dd3f53466adb5262346ca5104ced1c90b3477403c5ad1f1ff69518a706fd52ef9d1291e5330cd93e607627ced4d7dd5e1ece21b08e91eea97b7e1a97d6abfd08388e544ef33cc32341b40e11e62ac64e4a54f662341e7a530c873a2365f56164195de32f4c380d9fdc0605d7ee345e519aadf5ac2f03f165d4ef5c7acf9894bf6cbf8652e033ffacb71cc1b1aeca9387a38e3f1622144bf6c2667c74d852c33e0ea373aef316f911bf279690c85e35204f07ffcf620e606924805bd7d589ae7ee8b3283059004ade80810665fb73e2e3988a9eb7cbe91e968b689ef227868174cc26e15970647b2dd130dea330f4db98c38a2fa6211d41b5444aeb4fd81a2be711ae074b01cf7a65f54d1bc05ebe6ad2f0e0d18eb735e5d4390bc0b38b36747daf5e336a02ae51f4203b362ab13fbdc7d98f5b8d82e6b89b8ff7c8c6ca83b5d03eee4465df4a90b3b47b2551bdafa1499f7a6b4098f628d3a43e6229ddf8a3a1859dd31ffcd336567878432e40909f03a5ea93c73d6376d175d503cc83b64c629c2a581abb30a0c3afbf4758248313c232d0869a49342983da9b0da61a8c8967c09c76990d13947bb418ed058ea3888ca62317065ba4a1e3e4edd4c484f02078c1c7760e05fe10dd79433d187cb14b9b23a41c0c43a2997f7024c66f37e4788c777584201d694fd9b6e7017c91feaa58aa1bde17f881e7e499dd9003e81a5208f6047a9fa528a68d59692e710a6bacef47952d8e061af978343a25f1c98271e8a9538dac64c24d8ec92a48602093fa70f5d7508bee91c0c613a5382d4a67a5064fe8f84ad5092b8f21e854bd1d23781c6543f3f96b5d2cd72317233c93c7198e78f2b0c61bfb685d40594eaf16fa9966f8f9a198bd0be32cfb911f5a1ba3703c2647dfd6c406a1d7579da3e8a461146b20bddad6bc99da1c31ca571e04118b5c50971f89c71c576b37d8ace3d0e0dad3bcb6febab77766a102fe4c42fae017a1ea9952533e69447df9fab5c2f8d351bb16c7739511f753e5ccc5bdfcb10160a85aba070c40434f509c41d66539cb6c2c0ab69ba63469601230335be9cf653ca90c2dbad12ef1a3a71c307e58622", 0x1000}, {&(0x7f0000312000)="3ec9e0591cb0da54103faa8da95a27fc5768e40e98a093aa02175ac660a73380b59957358c8f7581c6fe6a208c697e730d0f059cf91f6e2586922260078907f8f195826ce7fca0d382cd7390a89ca6c8ef5b8e5c322143ee771eafe9", 0x5c}], 0x6, &(0x7f0000c63000-0x3e0)=[{0xa0, 0x101, 0xb13, "52c63b4470ef0135821cbd089c96b59bb71c552bd8ca221cf10546e7c6a3153497513ba214d5d9e97571c04cdb56b2ac6bbd7a88ffff00b9999f28aec748250618fd6fb8dedddef19461c8cd399f3bd8c8e508fc6b54aba52fdc749893545ede57ee23ec5b2baf3a5042dd27fd4d3a388d154503069c719eb99f7f0f1b3233cb8815f98c9d8e5243b2d38d"}, {0x20, 0x103, 0x3f, "59884e0f4f00882961c688703c9d"}, {0xf8, 0x107, 0xe0, "9be7c191917c069aecfa9d805ee28ed8ff75828c2e55d1faff8d4ae6e810ab2d275ff2952e84e697f96f63083743ef67d0b0f3441fea417d8f88e32888428521ee7fa8510a25e076c4a20b1046cd7436dfd06f63a498098cba1612d6ddffc6e1015b8424607c513b8905f06383edfbb32b3bcaa6be91bc40a23dd7181e476a6a73d6e8f174e2470a5ca83afdbe733e42d8781f393e85d3054e849097575eb7b4a13288407611ac97038a0383053c61a056c552496689c9257f6e66bba9da0769bc0459ed8afdefcbdfc2221f40b21244a986b1b7c97c4fef2987dc8e1cc86eff3b73c070"}, {0xc0, 0x0, 0x4, "4f9dc6c2e66628fca4edf834ab3edd6aa4dbcd3dc1c15b12e94afd0bc378ecf25feaec850babc5c68785cbb8534d3a3720a33941bad9c9223079d42fbd294039b2a06d09d471e1b069f5a99fdef585dce154ffc30f7ad39e3c9b1cd19fc88eb6329dac1e45e88d5fa3c67320c6ba65d6a775a8b7946ac79931277f0e80157df6696844540e6b8ac15a9cbf600f9813c48a7602ac1cd14c12a58e5d13240a4ba9c6e311336231764da7"}, {0xb0, 0x11f, 0x8000, "63161b23e94edbea0a7adc76f83078472fb3c193a01abad719bcabf12b1388a6bb2ac6552d5fbf0e9fbbf7a66ec263e7643da00ffd76f25f7d02240eb0b6c936e98f5136a4d641cf87fcaa2b9f4de1f933e3f0443bdce52765accae3d27da8491dd4a943d232c88332bb60ae1d87c2239b3fe9eb75392d977701ca0fb26137253e6a3762696d6bec2c4e3a46765775732ba8bd65febf57df61a14a"}, {0xb8, 0x114, 0x3f4f, "dc6f00ac25c2ceec7fc9ad7b1cf3f6163994dfd7790a663db26ebd471848657f751d3a20981c6a2b270c5967fe8da1978fa347a49a0ea7f2952ec417cf56b3f247b39f61f13754221de5f74d938e2ee7d290dcb33c9c2d1dc72d04e40db75c95f90459529d7760c5557a28f100e815bdec66ff01d77581b3d034a425178d156d03548751afbcd0c948f802df7374c92a8275a3e81b500a6e430d789dcd71b43537f5215d4d3689"}], 0x3e0, 0x800}, 0x9}], 0x2, 0x40044)
sendto$inet(r3, &(0x7f0000ca9000)="25de", 0x2, 0x803ffff, &(0x7f0000524000)={0x2, 0x2, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r6 = dup(r3)
setsockopt$sock_int(r3, 0x1, 0x2f, &(0x7f0000b48000-0x4)=0xfffffffffffffffe, 0x4)
sendto$ipx(r6, &(0x7f0000543000-0x1c)="dd20e6c9a85a1103904aa574358e6ffa12640eedc47a864acc9645", 0x1b, 0x4000, 0x0, 0x0)
[ 50.856161] binder: 11536:11570 IncRefs 0 refcount change on invalid ref 3 ret -22
[ 50.856169] binder: 11536:11570 Acquire 1 refcount change on invalid ref 2 ret -22
[ 50.856176] binder: 11536:11570 BC_CLEAR_DEATH_NOTIFICATION invalid ref 3
[ 50.856184] binder: 11536:11570 BC_FREE_BUFFER u0000000000000000 no match
2017/12/15 23:28:15 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000002f000-0x78)={0x1, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0xd34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffff, 0xffffffffffffffff, 0x0)
r1 = eventfd2(0x0, 0x80801)
r2 = epoll_create1(0x80000)
r3 = epoll_create1(0x80000)
readahead(r2, 0x3, 0xfffffffffffffff7)
r4 = dup2(r0, r2)
epoll_ctl$EPOLL_CTL_ADD(r2, 0x1, r4, &(0x7f0000cbb000)={0xffffffff80000002, 0x0})
epoll_wait(r3, &(0x7f0000979000)=[{0x0, 0x0}], 0x1, 0x8004)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r4, 0x84, 0x9, &(0x7f000015c000-0xa0)={<r5=>0x0, @in={{0x2, 0x0, @rand_addr=0x5, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xffffffffffff7fff, 0x8, 0x4, 0xe50, 0x4d}, &(0x7f0000c60000-0x4)=0xa0)
r6 = ioctl$KVM_CREATE_VM(r1, 0xae01, 0x0)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r4, 0x84, 0x9, &(0x7f0000f3d000)={<r7=>r5, @in6={{0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xb7}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x80000001, 0x0, 0x8, 0x9, 0x1e}, &(0x7f0000aae000)=0xa0)
ioctl$KVM_GET_SUPPORTED_CPUID(r4, 0xc008ae05, &(0x7f0000f59000-0x1e)="000000000000000000000000000000000000000000000000000000000000")
unshare(0x82000)
epoll_ctl$EPOLL_CTL_ADD(r3, 0x1, r2, &(0x7f0000fe1000-0xc)={0x0, 0x0})
ioctl$KVM_SET_NR_MMU_PAGES(r0, 0xae44, 0x80000004)
r8 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000183000-0xc)="2f6465762f72666b696c6c00", 0x2100, 0x0)
ioctl$SNDRV_TIMER_IOCTL_TREAD(r0, 0x40045402, &(0x7f0000cca000)=0xfffffffffffffffe)
poll(&(0x7f0000d35000)=[{r0, 0x8200, 0x0}, {r6, 0x40, 0x0}, {r2, 0x102, 0x0}], 0x3, 0x6)
r9 = msgget$private(0x0, 0x100)
ioctl$VT_OPENQRY(r4, 0x5600, &(0x7f00005fd000)=0x0)
msgctl$IPC_STAT(r9, 0x2, &(0x7f0000911000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r10 = epoll_create1(0x0)
setsockopt$netlink_NETLINK_LISTEN_ALL_NSID(r8, 0x10e, 0x8, &(0x7f0000495000-0x4)=0x2, 0x4)
setsockopt$inet_sctp6_SCTP_PR_SUPPORTED(r4, 0x84, 0x71, &(0x7f0000847000-0x8)={r7, 0x6}, 0x8)
epoll_ctl$EPOLL_CTL_MOD(r10, 0x3, r3, &(0x7f0000527000)={0x10000000, 0x0})
ioctl$UFFDIO_REGISTER(r4, 0xc020aa00, &(0x7f0000b6d000)={{&(0x7f0000b0f000/0x3000)=nil, 0x3000}, 0x2, 0x0})
epoll_ctl$EPOLL_CTL_MOD(r3, 0x3, r1, &(0x7f0000e99000-0xc)={0x4, 0x0})
setsockopt(r4, 0x0, 0x6, &(0x7f0000b07000)="040200000da3ef", 0x7)
epoll_ctl$EPOLL_CTL_ADD(r10, 0x1, r3, &(0x7f0000fe6000-0xc)={0x10000004, 0x0})
fcntl$getownex(r0, 0x10, &(0x7f0000f5f000-0x8)={0x0, 0x0})
2017/12/15 23:28:15 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_tcp(0x2, 0x1, 0x0)
setsockopt$inet_tcp_int(r0, 0x6, 0x1f, &(0x7f0000089000-0x4)=0x1, 0x4)
keyctl$join(0x1, &(0x7f0000e28000)={0x73, 0x79, 0x7a, 0x1, 0x0})
getsockopt$inet_sctp_SCTP_STATUS(0xffffffffffffffff, 0x84, 0xe, &(0x7f00006ac000-0xb8)={<r1=>0x0, 0x3, 0xffffffff, 0x68a7, 0x5, 0x6, 0x7, 0x0, {0x0, @in6={{0xa, 0x1, 0x9, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x7a, 0x2, 0x2, 0x7fffffff, 0xffffffff}}, &(0x7f0000453000)=0xb8)
getsockopt$inet_sctp_SCTP_GET_PEER_ADDRS(0xffffffffffffffff, 0x84, 0x6c, &(0x7f00004a8000)={r1, 0xa6, "3715eb20414088109c88bb08e4583b7ce6020fb9adf0290124923a55e6e46f392e9be0bb442637dde3880c40cb4597b974bee3eb835b2255e57efb92c624c7645506767236cc8ff4a6c34f2dfe2f600af18da147b3f5f3b4f704485167d5f528ae0d7e5f523e3babe417b8736d7b8bb192b6c75b8119c916dc20e697576337aa2fccebde301dc841e9b08a43c936d1eb7f26a4eba449402ef38b6ac16d6ca7952ea78a791250"}, &(0x7f0000bf4000-0x4)=0xae)
clock_gettime(0x1fffffffff8, &(0x7f000029b000-0x10)={0x0, 0x0})
clock_gettime(0x0, &(0x7f000021d000)={0x0, 0x0})
ioctl$sock_SIOCDELDLCI(0xffffffffffffffff, 0x8981, &(0x7f00002b0000)={@generic="ac1e0800bd3300000100000000000000", 0xaa})
r2 = socket(0x11, 0x10000000803, 0x10000000000014)
getsockopt$SO_PEERCRED(r0, 0x1, 0x11, &(0x7f0000245000-0xc)={<r3=>0x0, 0x0, 0x0}, 0xc)
ptrace$setregset(0x4205, r3, 0x202, &(0x7f0000439000-0x10)={&(0x7f0000d90000)="8e8c14e236d021e8e0711fdb955f2a018ced3b7af05c4b9ca04ad816834bb8e20f3569ae76a0f2c4f42b1a0c03cafb60295325c621247b62aea3fb90b34efc85041f97fd7bebf9d81d4334c4ac568d088fabdee5a29b5067e6e1356f052507de9a158eef2e0f115417917262b6", 0x6d})
setsockopt(r2, 0x107, 0xf, &(0x7f0000e48000-0x5)="2000016f93", 0x5)
r4 = open(&(0x7f0000b5e000-0x8)="2e2f66696c653000", 0x800, 0x40)
ioctl$KVM_SET_PIT2(r4, 0x4070aea0, &(0x7f00006d9000)={[{0x0, 0x7, 0x4, 0x6, 0x1000, 0x100, 0xffffffff, 0x1ff, 0x4, 0x4, 0x4, 0x8, 0x34}, {0x7, 0xffffffff, 0x7ff, 0x20, 0x9, 0x1400, 0x8, 0x7, 0x4, 0x80000000, 0x86c, 0x81, 0x7}, {0x9, 0xe38c, 0x9, 0x9, 0x4, 0x20, 0x8391, 0x3f, 0x0, 0x101, 0x10000, 0x0, 0x100000}], 0x7fff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r5 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r5, &(0x7f0000417000)={0x26, "736b636970686572000000000000", 0x0, 0x0, "6c72772873657270656e742900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r5, 0x117, 0x1, &(0x7f0000052000)="e513b5bf91aa785dfbcdfe09000000fc", 0x10)
r6 = accept$alg(r5, 0x0, 0x0)
ioctl$int_in(r6, 0x5452, &(0x7f000059d000-0x8)=0x5)
sendmsg$alg(r6, &(0x7f0000251000-0x38)={0x0, 0x0, &(0x7f00004ce000)=[{&(0x7f0000f0f000-0x1000)="11b981c3293d1e6ad1542a5f601cee8a78a5b3dcdd974d49dde5e1221ddbf06cc93b795b81c963620871a71c695f6781c813dbedae661bf4027a80cf16dd7efcedf805fb599a3341668df2f825de709d389d74548c8adeb2de70463ab0909480cbe9105ef026a9391bf42d96580ea918818be39e671b51c135c9bcaeeb65eabc6bab4a8578495941708a81ce630bd00a135da1cf62b4357369154530c8a3ef02eb24edbf705a5ced4f2bb01d49e21ea5b3e5515b506383fe8502c28578d967341a403066ddee1c99e321c45130cd3a216dc9c84d175eced8de282007c411717d7e7818e761578bac47d2f09a4a89e7d3ba92dc47181857e9ae2714774540fcf79039210bfdc0a15bcf4f91c85a7d97995488017dc4c4802aee4257b65e3ef0f5ed11702a09d33c7aa44ab08867c8dd260c93c5082a4b21a3111783d9371f8b2f1231ae543e9ca77e10fdcbc24c76ab11e72937b3e3866d08008592061b3eb799bafd9635615de8a1077e8cfcdb95766721f0691693abfee445219959e972c6cb950bd8124c736f4df6572171719ed0fbd5b7cf5c7849a4abf622f2ec91594e3603ff9d4378f301517f9b42fcd95da35de020ee9a2cc1ca706a9c4356dd96464aea82371b8c620e30c1e4637e6394528dd7b47fd65ef9466c2677afc0be61f971568c6dd0d849288681f7ba8a68794ee910db6daf318491dcd63f2e76f3a78d9017ebc5bf554d21d24fd875de1d3bbd0fa12082cb0950222f1ebba49ae0e46d848d91be7eac6ae77bcdd7de332ab1d0eac5474cfebf307738eb18f3dd5ceb82a286d735003146eb2fcd9b96bb896617267b22383083278bbedcbb9b2bb3ea3ebdcb69ec61f101f13e5c2be4f32209c8303e6dd974ccaea6c686e8a0aad8cb013fa29b4bebe0f60e0756ed3d03b851f38ede71f88678676771c77727384fef9abef4dab228f6ab8a0a39e91a18cb01f687d4775429cd56a6dfc2c6d5f38d6ddd6e46f07fdfc1d5fbe56597329b6487afc7d5cd209e36dd2343fa7d934fe34d50be392239f81fb83ab6f7a84512cc8e6b0dcff75cd0850dbc919bc628822e587b3a0efe9ade098e72e007875c7858124d417668471523d94ca7d5115dedb78470d850d28660b925e90551e20dd5681b05db4d55ded5dd7b43c6a4eedea3449c2e4f63dd2fad564bddbf0adcb33e6643be3c35621f4d1889309a56e112dbfb865ea75f9c2d36f125825a0e6e83f6a84b839346cde7b125712cdf81b3e1433213feb542af98e34708284b1036710873b5f20dd368a3763701991f1fd9c77522448005c08dc5372320e5786f923973aefb0182e72c8e95af63b38b8fccef3656829bb1846bacb586b6f7ad5d4ec3b18803d5ff5fb007128bc0ba4106fff01c0d2b5245d3ade06c12a62a1a9b1cef04edb4492575087eb241c36431d9e995d76c1bc56f0d6c3ad4c3865f3c2cdec301dfd1b55b5afc99c7a0d3ffdc7d4add3a0f9e5c37c3ad84d377310a0e8c398fc1820a12488ccfa8e55900910f7d00a3cc36618d5c67ba26b71e0502c4be5e78471c93853f2ad18c6032e827b3ff3852a7e6f4d4d628fa22749b3a5b8072ccc03017b99500c7e16736861454a016b20863da16cf1124044b941b0dedf9b75fe70cf403fec3fd8ead5714bf4113630414cdf3f55879e50869d5bd233166bbb69550db396afc28f9bd495eaedec2330abdec5eedb8ccebd38d7f97a0a210b674bf123f1fb2da1f5ddf78642c7c7e96fef99c7d8a42789aaa9ce70899c8102e4402a96d00b931b6cc3458d37917f291c3543ff488723d002831745dcccd9d1af40160d963a29ae66195072a6965210202d1506fbd40fc4cd9dc5a9d9bb96473afe642c2be663205e44cbbb19b75048b2088730ed3c84b6ac6c7c89d93b689b7c2136f5ba26e5c53c38aacc4da969e8be6e0a69f97ce933dc5af96eea4c82e3b5bb1aab933364a3e6f10454ee8e23192d0b977b48892e5d24d41215c7019a5832388717fe0f11c6703d9290f5ed391e796022ca8235262a12c3b04a3f17f4bf017427b11b2328ddb0455815eedbd8748ce9190d73ae0ca98562faf6ee108ec30b6006638e280ff99d285b3f1c38023c498b7f1263ed4f489b74126818d778db508066c52709716e03d21d3e9a2b9e7eaf5ba24edee067abe7c035778b9f18685cb37023af50a596a8fbee1d811575d690a2a58e37415270592161bbe2217c370c6b4595345bc9fad53eb681b57dcc06464cbf46e140439e0e5505e61dcb510217b24762858f93e54e978098b02c490724c997f8b21117bc88d984e322416c37c4ee8c07854f32890d78c4f69ed8145791896c049166af9f8c343887658f66f6a22913c82c6d01eb57b339b21ee7f97a626efbed20c3c59d68ebaf72e112392f05fdd1ec02e627d332e8d6eeccaa57e8442be2870e5885a88fd79f1bcba6e2f5309fea94a6d3aa8ab008db6c3c3821e9f391ada7c07f3a403e567a0c0debd3782aba5acf52401d282370f55e6c2a1db91cad5fa62aae97d1e4913def71a08749d7f46965e58ea2f737cc56105577b249143b895f0f3c2f62df70e55817a220ed2291d6a77954e3485e40a7b483ba1adc1696232e396bd564a493bf401e3680b05660e39f42745ba05143d24d879ce47d375ba19ff9b95fa66855ed6d559a0df8474ad72e32dbbf8dd5d95c3b7984519c64e9e577db8513f026d3129eb2352f5f55f5b587faf496fdd457ef424eb5d818ff395a00f4a113be47d43d12ed8773659b9964a6141688f1c613a7fd2c5b0ae78d0067cb68ec2a042e2c47b12b5f9e0d935ed785ca630c7ca9942c7d99feb00000d80b231dc530cf6ed22e926dd68054227aa99bb6d235ba8dd0e76ff9470a4cd84d84dcf4787a3febe3bb247650e91f2d345e7ad9438c58274cb71ccb4a251432f101dd03f228385a22c33430e44acdb92a9f07770f25cc8b2ab0019029de6a68a1b43a84c8ad7ebc60b8c08c0c857b5c8d6b4a27bac9e946c1d2496bbcb5200bf8bfc27fba10437096bb6ddcaff53130b78f40f09f4ff89246636e72cb709e9aecd90e7f854c08af47954e6cf5bb5df7ba8f29c3a58fe93eed54d81c8e4b759c153c96d83e929552ea4dfd0dafc7efdb36abef8098865255d86cfd3f368ea83f339216b73bd301db5af6ca3e9892cfd61917ed1a9b75377ce322e6993fb73f970f5368ec79f288a0d21b920cf0e5622914a037902fb0888298843d8a5740f2c32e67da6f7c7fae963d43d8822276004aba3987c32c4bad18b2c277dece392d3b1fcb5cc36efc1c2fc65882c3be4f65a41d95b8a0ae7ce831259eff7c52de3e5f56d25f76b15f64130536cdfd73a20924b361068a91f0d0efb1bf14eaa9b59218bc2385f8cf9cbe8a74a143f9f2f69d24655e954112a1580fc6a710e59ef9196cba068e7d1ff22f7977ae8b0093a893306184525352cd9a5956fc18f877c1d1f41ad8b895a90a347cee2d731e9d3e91d68fa48f1b23eef3d92527c589f21cff3b7cc69598e03efeb83335b2973d3ec5e30661c4f276b9b8eb3786705e9034f7a9cb80f3722e9bac0a9f81d51bc88f0d255c875e6d8377d6d090245a47d519d49b8325a4d8b3edf86cbfab71c50dccec8c27c47bf0e87e35c24e2a70238d19f310b275a273ed3079d96073fdc77ccbdc7c029595bfcfeba5a05c33e28173be404dbf30a37dd17ddbba5fc7fcd5fcb6f0b908f28931bc6bed350a653004f7b08a56a990558ef4d1ecc4aad62575c3b8e2d66726fcd97517b3fb41917c8e2f17299e36426297795b0b7ac30ae7f5205ca2340bc17d9da2dc8d5a29894eb4ef0e1144e4ac092b00d189fb121788158df32e5f5f6500736f9240f64f37892fc3cd4a9a864214393b675f8a949304658f335da6babdc724e8d8c1352b91a88e07dbc9b2cc04d15a3e8f58f07075e36619ee2cb228e554990207ca896f779e63573e2b1261f35f8d0018cab12e8d21fa0fb4e51b4762a63d6f1633c0c9bceab843a60c202e4e8bb7d3fa4990b9086908b65ce00c28af904df914bd6cfc471d3d7eac62dbdf7b820fb2589c87cbfe40d366e5e764edf6d0d32e69f0744e9d525426ef7a1f10d351f5a15b021a78d2f7527b080b3480315381caa1fa9f8712b4f3bef0f402a1c3fa6bd591477a43d4552add84cb4723eee30104518c3119c2773ac36ebc09165b382efd06ff8280f776b256e822d4a5fb26ab1bd1c13bba370221db200bea82e55dd0101e2cc59793217c2650f1bfe92b9336ea83772631a578935e98a007bd493ad727085248d3b6a24c36ab1c3b471e683427d8d8bfec897e6b37ebe2479ae18b0da33684b8a6d2863b91f914aac6e10e836bf3f1efe8e41724170ef051e1dcfb867c5dce67068c4417e719990281e33102618cd571173966f93dbe06ab9d1c11bed9952f5ceed152e5bc8bc1bf632de9057799392cac263615fd4b816a8a92df84b126c6b02fc0525021037ba1e39cd44a63e71d4034f8f6847c7e18cdba32b540b2447b5b1384ea21cf8b7d06984783ca477b31a3be3655d8e91dc27a87d75cc48ee01bebf9169873e1c417b4fb9f9ce49ada3bf9f7c0fc6e72e13edc650b7a2b8cf8967c11efacd5eace0673018fbed2e7c4096e57141140834fff27f25bb30c81e60e3a31199aa8f000dcabc93ad6ddb3a4628bc2226b814a47eff0d750396915a1d3ead774aefc5e664b31ac9b64ea9fe42cd3e03ff249f8dc83aafcdb2a49facb8e8682fd59965764b5bb1fa901e46f4d92f9f8af0a5bf3b0cc5517634d6f81ca7d55f6faaf70e76a603f90f1b513c6a41e8ec48d34ba13e7ae33a2c2bae92e325a57a9de2045dad256c8dd30c03e9ae4f7806d0a78a5f63d2399e07f44a834bd77d658adf1bce15c8a416d4a70ae657fa1679220b268ce22674c821a474612d402fd91ff09ccbec082b07158aa8b2e8f546a895b7acf636be328985d953e4f9ce4a4ccff2377768e15cf1dc88d44cd77982d8ed6d35bc6eec0b8370beb94643f4e5d42ac4eeed54e971306e56cc76e1e17180cb8546e07ac09e2f70169c3d4a336f37348d4c2697d2c95fc0dfb454ae6ed9e11e9a68a2c5a40de16fa6b74f8bcb9c46711bc18aafa9c7cc6901214cd71e1b02c0b80b83ef77c72f45a7028fcc19676a09afb40f70fec03638fa765486a8a69df7555d76cc9a1fb211bff585a5b6cc5614ab8c6a328926524b15626ed1022333bb0f23754db344895d8c74c9c695bfe0ca1226fbf8f4fb58d1171b6250a3e8f0fbf973f6ae808276d8ef95a4384cc9038f5067ef49fe1da7a6b2fcedf4bf0af13d814f708303b1d4340ed6bb1e53f742aebab9bd2df1dd6c56c97f9256cdd29adc3839ff59f4bcff1c3094f8938d2aba278f8a2e743f568ffcac6231f95d30c839875380ca7c91eea63a9eba779fa103ea52c46321f51058293f5f49e10ad3eb47fa747a3a85991916639884dd1530f7dcebf915822dd525dd5cd5349022b00e888624f689a128ec8899c93fadbbc12d9c6a470b90b9345addb3833dd5f4d68990c2c4598e700c363ace8bd171c4551de8e61b43da7fb5e9686068f4c773f5d055394b1a326c38f405efb40e26b9", 0xf80}, {&(0x7f0000c5c000)="88f684a6794fec86b0bd4836ba9649fa22537e95317d2359182c56a2dd7f72dc5c977675a1eaaf6ffd60ee1d6511a867018db045e497a2182975f6dad27774", 0x3f}, {&(0x7f0000f41000-0x96)="42540faa211e3b8cb2e34ac2cc2fe9a47079f1ce71442c0a17dde95c2b57cfcc16ef223a404ba673b85188e1e7e861259020aff4bf63b967eb17c3fac3f939a2f5263c8c2c42bc2b0b14d8641288d7aae61c0a9f820b5f3ffa857f415fc9f47d6c03fd96e0b1c3f9aef868d485bd648b5087afd1b6b2784dbd6345252f907f845e35c315e236cdf6b8f7b82cb0db79ed105602be1aca", 0x96}], 0x3, 0x0, 0x0, 0x10}, 0x10)
sendmsg$alg(r6, &(0x7f0000a1a000)={0x0, 0x0, &(0x7f0000393000-0x17)=[{&(0x7f0000816000-0xbd)="faf6a1093fef9d5dd3122751027c81632650ee8a79aab0acf715a07deb3de350f0b24d1d43c367d3f9a2d952f24ac10626c1be4f19bf9ce5c3c403d5646ff9efb6d1b720ec2f6cf317ee6c5dd4930b2f5de6bc7cbce405ff90f58df844f4aef0d20d68b47e5dace2a4e69d9a87c40fe596a4a79d6e581644e10bd0898c134b7b3210a50c513acabae7110466b3d392bac061d860945ac1a042804dc47027689810e8fd7508b7b0d4568a8563271b9c7939aa209cb0250fe4a702f0195d", 0xbd}, {&(0x7f0000658000)="afb47b77e483c7a521af48684609304a36bc5e1ba05ec580c273c871a31f00006bfb085e3688865f9dd778bc3d21fb99ffd9c8946e2344a9cffc5f088014afbea91ebcf328a2b7df7a507d4c", 0x4c}, {&(0x7f00009dc000)="f919edee0f078f61f83f7a1b26aa952ef0839762dd86da91d95f744a18b182749b78d29713761292fae3ae74022e177f8a4ee36d53cd8f14cf75adceb424bfbadf71493fcab3a6488c04e54939f9e82e6d232987d82ca2bd27dd888ef7040998c99a46589d7d1423098f99f04ac7e477c73ca91607192a5518ceec61e726edb773504c131895be64734a91a076bb8875450ecfdf2217226e0ff30711e47ff5cdcff1cef3a8e317c31ebc2440296c74e15253625cffe1c378194ea8e11758ad5dceeeaaa7a0d51c47ca7444003fcb62613fad9b0e0db8ddd0b0087eea6eaec592de4357996e8e", 0xe6}, {&(0x7f00001f4000)="f2b030b1198c200a53e294fae0b3bc834730276d0870cef460223e50f8e601a317ace79a373d315b08e9d2db604f31b8d235577cf32ffaef1d01ff2376554a9fc66d23ba35f9003d494f3c6ea0d85bb7b0d5d5a29398c408382f1d29b9e93732a8c5562dffa97dce1d52f205a9c40d680b99288361d91dd0219d79aa8efa0b2e784145224c5b316d40fa77cf066dca95bfb10817fe3764226dda0aef8fc412bea3329e47dae7df43630284f392f77e79ef873338445a4b0d60d5af106662bee4da1e4c33732b7bd473d9467d9e872ea1bae4d009e23a68984467d06b4f8b64cadbf1bd64ff9799a891b9a43bd01b5d2e0562172bf6bc004ede8e5b7d4df818", 0xff}], 0x4, &(0x7f0000f17000)=[@iv={0x108, 0x117, 0x2, 0xf2, "20741a01389dd0cc623f9c05b255d2ae57122b5256877dd62283e7b27827c75f00414e48ad47f61d569558d1b9cd69944f28c0d5d7d335c278fc8e3078a4619dfbee1187c1c1072394fe8e6e618df90c6bffe0dbcb60947fc1508becabf00f977a36352c449c403d2619976cde24e153fee83e298eb52e5673e47080ada8770a83ed6f564629c3b9bdc52dc881b60d09cae91b3e98edc988a24c1bd1763a6a1fbe0472e073c7f259264c311f0e17a8cd7f97dcc7b3e86f62a56884d3e68c776d3743ea4ddbde28e4fc0d71d372f1ed69862e211eeb81c948d11fe37ea05d9125831e77c6b101df74d84fe4adc1277808af1a"}, @op={0x18, 0x117, 0x3, 0x0}, @op={0x18, 0x117, 0x3, 0x1}, @op={0x18, 0x117, 0x3, 0x1}, @assoc={0x18, 0x117, 0x4, 0xa9}, @op={0x18, 0x117, 0x3, 0x1}, @iv={0x98, 0x117, 0x2, 0x82, "bf913ab811dc985b2aa511b11eb6a2f80594194bc7a6ba0c69ae35dba5102e8f524d430e2a74854f8778aa575c043166df72aa3a4457a7ab438598c8a1bb53279f069dbb1a83ee0437f17321b0b408e250f688d9bf2883280cf2cd9def8f45ec0fe941087e7bda4cd92b37777a58749f55b0ff42a230a1105ee63122866dd48e81ad"}], 0x218, 0x0}, 0x20000800)
recvmsg(r6, &(0x7f0000ce2000-0x38)={0x0, 0x0, &(0x7f00000e0000-0x30)=[{&(0x7f0000a49000)="00000000000000000000000000000000", 0x10}, {&(0x7f0000435000-0xbb)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xbb}, {&(0x7f000004c000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}], 0x3, &(0x7f000050d000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x39, 0x80000000}, 0x61)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r7 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f00004ce000-0x11)="2f6465762f7161745f6164665f63746c00", 0x0, 0x0)
r8 = getpgrp(0x0)
ptrace$getsig(0x4202, r8, 0x80004, &(0x7f0000073000)={0x0, 0x0, 0x0, 0x0})
epoll_wait(r7, &(0x7f000092a000-0x2d)=[{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}], 0x5, 0x10001)
[ 50.856189] binder: 11536:11570 got transaction to invalid handle
[ 50.856197] binder: 11536:11570 transaction failed 29201/-22, size 56-8 line 2832
[ 50.857941] binder: 11536:11540 got reply transaction with no transaction stack
[ 50.857948] binder: 11536:11540 transaction failed 29201/-71, size 0-0 line 2747
2017/12/15 23:28:15 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = fcntl$dupfd(0xffffffffffffffff, 0x0, 0xffffffffffffffff)
ioctl$KVM_GET_MP_STATE(r0, 0x8004ae98, &(0x7f0000ce0000)=0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = getpgrp(0x0)
setpriority(0x0, r1, 0x85)
r2 = openat$pfkey(0xffffffffffffff9c, &(0x7f0000ed5000-0x15)="2f70726f632f73656c662f6e65742f70666b657900", 0x1, 0x0)
getsockopt$inet_sctp_SCTP_DEFAULT_SNDINFO(0xffffffffffffff9c, 0x84, 0x22, &(0x7f0000257000)={0x2, 0x4, 0xf9, 0x5, <r3=>0x0}, &(0x7f0000fa5000)=0x10)
setsockopt$inet_sctp_SCTP_DEFAULT_SNDINFO(r2, 0x84, 0x22, &(0x7f0000915000-0x10)={0x5, 0x7, 0x1, 0x7, r3}, 0x10)
r4 = openat$kvm(0xffffffffffffff9c, &(0x7f00004a9000)="2f6465762f6b766d00", 0x0, 0x0)
r5 = ioctl$KVM_CREATE_VM(r4, 0xae01, 0x0)
r6 = ioctl$KVM_CREATE_VCPU(r5, 0xae41, 0x0)
syz_kvm_setup_cpu$x86(r5, r6, &(0x7f000090d000/0x18000)=nil, &(0x7f0000669000-0x18)=[@text32={0x20, &(0x7f0000df3000)="f2afc4e17e6f450f388117c74424000b0000000f20c035000000400f22c0c7442406000000000f011c248fe99098c736640fc72966ba42806698f0ff66ef0f01cbc4c3fd006700d70f35660f1be0", 0x4e}], 0x1, 0x0, &(0x7f0000c34000-0x10)=[], 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x0, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_RUN(r6, 0xae80, 0x0)
ioctl$EVIOCGBITSW(r6, 0x80404525, &(0x7f0000af2000-0xb4)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioctl$KVM_CREATE_DEVICE(r2, 0xc00caee0, &(0x7f0000f5c000)={0x7, r4, 0x1})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r7 = accept(r2, 0x0, &(0x7f0000c33000-0x4)=0x0)
r8 = socket$key(0xf, 0x3, 0x2)
r9 = openat$selinux_user(0xffffffffffffff9c, &(0x7f00006ff000-0xe)="2f73656c696e75782f7573657200", 0x2, 0x0)
ioctl$sock_kcm_SIOCKCMATTACH(r7, 0x89e0, &(0x7f0000b18000)={r8, r9})
perf_event_open(&(0x7f0000223000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r10 = socket$key(0xf, 0x3, 0x2)
r11 = openat$selinux_avc_hash_stats(0xffffffffffffff9c, &(0x7f00000e8000-0x18)="2f73656c696e75782f6176632f686173685f737461747300", 0x0, 0x0)
ioctl$DRM_IOCTL_GET_UNIQUE(r11, 0xc0106401, &(0x7f0000a6b000-0x10)={0xe7, &(0x7f0000935000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"})
sendmsg$key(r10, &(0x7f000057f000)={0x0, 0x0, &(0x7f0000093000-0x10)={&(0x7f00006e0000-0x80)={0x2, 0xd, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, [@sadb_x_policy={0x4, 0x12, 0x0, 0x400000000002, 0x0, 0x0, 0x0, {0x0, 0x0, 0x3, 0x1, 0x0, 0x0, 0x0}}, @sadb_address={0x3, 0x5, 0x0, 0x0, 0x0, @in={0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, @sadb_address={0x3, 0x6, 0x0, 0x0, 0x0, @in={0x2, 0x0, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}]}, 0x60}, 0x1, 0x0, 0x0, 0x0}, 0x0)
bpf$OBJ_PIN_MAP(0x6, &(0x7f000024b000-0xc)={&(0x7f00004a4000-0x8)="2e2f66696c653000", r11}, 0xc)
setsockopt$SO_TIMESTAMPING(r11, 0x1, 0x25, &(0x7f0000123000-0x4)=0x10, 0x4)
sendmsg$key(r10, &(0x7f0000c27000)={0x0, 0x0, &(0x7f0000f57000)={&(0x7f0000f58000-0x50)={0x2, 0x13, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, [@sadb_x_sec_ctx={0x1, 0x18, 0x0, 0x0, 0x0, ""}]}, 0x18}, 0x1, 0x0, 0x0, 0x0}, 0x0)
[ 50.893405] sctp: [Deprecated]: syz-executor6 (pid 11572) Use of struct sctp_assoc_value in delayed_ack socket option.
[ 50.893405] Use struct sctp_sack_info instead
[ 50.897582] sctp: [Deprecated]: syz-executor6 (pid 11572) Use of struct sctp_assoc_value in delayed_ack socket option.
[ 50.897582] Use struct sctp_sack_info instead
[ 50.953764] QAT: Invalid ioctl
[ 51.021627] binder: 11536:11549 BC_CLEAR_DEATH_NOTIFICATION invalid ref 3
[ 51.021955] binder: BINDER_SET_CONTEXT_MGR already set
[ 51.021962] binder: 11604:11608 ioctl 40046207 0 returned -16
[ 51.040566] binder: 11536:11549 BC_FREE_BUFFER u0000000000000000 no match
[ 51.043104] QAT: Invalid ioctl
[ 51.051786] sctp: [Deprecated]: syz-executor6 (pid 11593) Use of struct sctp_assoc_value in delayed_ack socket option.
[ 51.051786] Use struct sctp_sack_info instead
[ 51.067455] binder: 11536:11549 got transaction to invalid handle
2017/12/15 23:28:16 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$autofs(0xffffffffffffff9c, &(0x7f0000032000-0xc)="2f6465762f6175746f667300", 0x102, 0x0)
setsockopt$inet_sctp_SCTP_INITMSG(r0, 0x84, 0x2, &(0x7f0000d14000-0x8)={0x1f, 0x80000000, 0x4007d9b, 0x7}, 0x8)
setsockopt$inet_sctp_SCTP_RECVNXTINFO(r0, 0x84, 0x21, &(0x7f000061c000)=0x1f, 0x4)
getsockopt$inet_sctp_SCTP_PRIMARY_ADDR(r0, 0x84, 0x6, &(0x7f000073f000-0x8c)={<r1=>0x0, @in6={{0xa, 0x3, 0xff, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x6}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, &(0x7f00005bf000-0x4)=0x8c)
syncfs(r0)
setsockopt$inet_sctp6_SCTP_DEFAULT_SEND_PARAM(r0, 0x84, 0xa, &(0x7f0000d36000)={0x9, 0x8008, 0x0, 0x8000, 0x9, 0x3, 0x100, 0x9, r1}, 0x20)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_cred(r0, 0x1, 0x11, &(0x7f00002cf000-0xc)={0x0, 0x0, 0x0}, &(0x7f0000508000)=0xc)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0x202e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0x11, &(0x7f000022b000)={@remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x0, @x25={0x800, 0x0, 0x0, ""}}}}, 0x0)
getsockopt$SO_PEERCRED(r0, 0x1, 0x11, &(0x7f0000cdf000)={<r2=>0x0, 0x0, 0x0}, 0xc)
ioctl$sock_SIOCSPGRP(r0, 0x8902, &(0x7f0000574000-0x4)=r2)
ftruncate(0xffffffffffffffff, 0x0)
r3 = openat$ptmx(0xffffffffffffff9c, &(0x7f0000017000)="2f6465762f70746d7800", 0x0, 0x0)
ioctl$TCFLSH(r3, 0x40045436, 0x2)
r4 = socket(0x2, 0x2, 0x0)
connect$inet6(r4, &(0x7f00005ec000)={0xa, 0x2, 0xac1, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0xfffffffffffffffd}, 0x1c)
ioctl$SNDRV_TIMER_IOCTL_PAUSE(r0, 0x54a3)
setsockopt$inet_sctp_SCTP_CONTEXT(r0, 0x84, 0x11, &(0x7f0000427000)={r1, 0x58}, 0x8)
openat$ptmx(0xffffffffffffff9c, &(0x7f0000ed9000-0xa)="2f6465762f70746d7800", 0x400, 0x0)
r5 = syz_open_procfs(0x0, &(0x7f00001c2000-0x9)="6e65742f7564703600")
sendfile(r5, r5, &(0x7f000030d000)=0x0, 0xf1ba)
2017/12/15 23:28:16 executing program 1:
mmap(&(0x7f0000000000/0x57000)=nil, 0x57000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000057000/0x1000)=nil, 0x1000, 0xb, 0x1c, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_icmp_raw(0x2, 0x3, 0x1)
r1 = accept4(r0, &(0x7f0000058000-0xe)=@l2={0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, &(0x7f0000000000)=0xe, 0x80000)
listen$netrom(r1, 0x1)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x10, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xb2f000)=nil, 0xb2f000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket(0x2, 0x2, 0x0)
setsockopt$sock_str(r2, 0x1, 0x19, &(0x7f0000b2d000-0x3)="6c6f00", 0x3)
mmap(&(0x7f0000000000/0x237000)=nil, 0x237000, 0x0, 0x10, 0xffffffffffffffff, 0x0)
r3 = shmget$private(0x0, 0x2000, 0x78000c92, &(0x7f0000355000/0x2000)=nil)
mmap(&(0x7f0000b2f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000b30000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
shmctl$IPC_INFO(r3, 0x3, &(0x7f0000b31000-0xb2)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
mmap(&(0x7f0000238000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_buf(r2, 0x1, 0x19, &(0x7f00000f1000-0x23)="00000000000000000000000000000000", &(0x7f0000b2f000-0x4)=0x10)
mmap(&(0x7f0000b2f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f00002f7000/0x4000)=nil, 0x4000, 0x5, 0x3011, 0xffffffffffffffff, 0x0)
futex(&(0x7f00000d4000-0x4)=0x4, 0x84, 0x3, &(0x7f0000fad000)={0x0, 0x1c9c380}, &(0x7f00002f8000-0x4)=0x7, 0x3)
connect$netrom(r2, &(0x7f0000b30000-0x48)=@full={{0x6, {"c073077a3b1106"}, 0x3}, [{"fc34cb5d2bd65f"}, {"08e29feb01a84f"}, {"7eac91f964bd89"}, {"e6135051960bfe"}, {"6ae6270a6a0695"}, {"8556acad95fd3e"}, {"284b58e1e833fa"}, {"186330f1d70623"}]}, 0x48)
mmap(&(0x7f0000057000/0x1000)=nil, 0x1000, 0x0, 0x1d, r2, 0xfffffffffffffffe)
sched_yield()
mmap(&(0x7f000000c000/0x3000)=nil, 0x3000, 0x3, 0x32, r1, 0x0)
getsockopt$sock_buf(r2, 0x1, 0x19, &(0x7f0000b2f000+0x9c4)="00000000000000", &(0x7f00004a5000-0x4)=0x7)
mmap(&(0x7f0000b30000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000b30000/0x1000)=nil, 0x1000, 0x3, 0x30, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000b31000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000b31000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mount(&(0x7f0000000000)="2e2f66696c653000", &(0x7f0000480000-0x8)="2e2f66696c653000", &(0x7f0000844000-0x5)="6365706800", 0x8000, &(0x7f000069b000)="ebc0ff3ba0e978028cac1402fc7f36bfc1ba20e07945bf35daeb71c913eb4f84ddc4512ca1a683f341a26bee6778864d784617e1ee57619c1d2062")
mmap(&(0x7f0000b30000/0x1000)=nil, 0x1000, 0x3, 0x32, r2, 0x0)
mmap(&(0x7f0000b30000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
recvmsg(r2, &(0x7f0000001000-0x38)={&(0x7f0000001000-0x9)=@rc={0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0}, 0x9, &(0x7f0000000000)=[], 0x0, &(0x7f00004ae000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000, 0x1}, 0x20)
2017/12/15 23:28:16 executing program 7:
mmap(&(0x7f0000000000/0x279000)=nil, 0x279000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
unshare(0x8000000)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$unix(0x1, 0x2, 0x0)
socketpair$unix(0x1, 0x5, 0x0, &(0x7f000076a000)={<r2=>0xffffffffffffffff, <r3=>0xffffffffffffffff})
r4 = perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
sendmsg$unix(r2, &(0x7f0000001000-0x38)={&(0x7f0000239000-0x8)=@abs={0x0, 0x0, 0x0}, 0x8, &(0x7f0000008000)=[], 0x0, &(0x7f0000001000-0x10)=[@rights={0x200, 0x1, 0x1, [r1]}], 0x1, 0x0}, 0x0)
mmap(&(0x7f0000ecb000/0x2000)=nil, 0x2000, 0x1000008, 0x30, r3, 0x0)
r5 = dup3(r4, r1, 0x0)
setsockopt$inet6_tcp_TCP_CONGESTION(r5, 0x6, 0xd, &(0x7f00002b2000)="6e7600", 0x3)
r6 = dup3(r3, r2, 0x80000)
ioctl$KVM_SET_PIT(r6, 0x8048ae66, &(0x7f0000500000)={[{0x2, 0x8, 0x6, 0xe5, 0xad3d, 0x3ff, 0xffffffff00000001, 0x4, 0x8, 0x7b, 0xa3e, 0x81, 0x9}, {0x0, 0x2, 0x10000, 0x481daaa6, 0xff, 0x1000, 0x1000, 0x5, 0x8, 0x998, 0x0, 0x90a, 0x3}, {0x40, 0x0, 0xfa, 0x8, 0x401, 0x6, 0x1000000100000001, 0x3, 0x20, 0x8, 0x6, 0x3e714cc4, 0x100000000}], 0x7ff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r7 = dup3(r0, r0, 0x80400)
ioctl$KDDELIO(r7, 0x4b35, 0x4)
getsockopt$inet_sctp6_SCTP_INITMSG(r5, 0x84, 0x2, &(0x7f0000357000-0x8)={0x0, 0x0, 0x0, 0x0}, &(0x7f00007d3000-0x4)=0x8)
setsockopt$inet_sctp_SCTP_PEER_ADDR_PARAMS(r6, 0x84, 0x9, &(0x7f0000279000-0xa0)={0x0, @in={{0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x3f, 0x400, 0x3, 0x18, 0x34}, 0xa0)
ioctl$KDENABIO(r7, 0x4b36)
getsockopt$inet_sctp_SCTP_GET_PEER_ADDRS(r6, 0x84, 0x6c, &(0x7f0000445000-0x7d)={<r8=>0x0, 0x75, "c12f218d50f9b718f106fb1e1c6417af48bbb3f8ee89017796c3afdfac89ddd25ff7b305fbd920c82cdf2271aca52592ebc82e039f0a9ba7610d4bb5b52690d7ef30133429cd77a248937ddeb483e2f73f2803f764a4007385d8e9ab2a439fc4ef03556ebaffef61a79b0b22831107c08ad04603bb"}, &(0x7f00001c7000-0x4)=0x7d)
getresgid(&(0x7f0000db4000-0x4)=0x0, &(0x7f0000616000-0x4)=0x0, &(0x7f000051d000-0x4)=0x0)
ioctl$sock_kcm_SIOCKCMATTACH(r6, 0x89e0, &(0x7f0000528000)={r3, r7})
r9 = msgget$private(0x0, 0x60)
msgsnd(r9, &(0x7f0000224000)={0x3, "226d6b27368639a498504e7df7b652401ccf51ae64bcb565a277825abb1197e34e2721ded498e8e6459c8ffa2d65ca4c98cdcd88e97f2eb1a243b9be679b7d635b922bee00c5a5714a0f96f94b88f7a244fc6281b41c9832ca20940c9340f5af440bf4f749f3687b00de6d63100353855abc01a647f6b86415c6c36171ab166a74e7e74857391cf3507879ad3ad6891275ef48ecbc7cfe83d10472038b9a27ae8ef8e1ae20dd41925aeb21e022507d783f64bafcc6d73ee8bdd0cb127a8f1004dfa445816647a267fe819aaeaa4aefce5b0e7b683cffcadea517eccd777c604410782516b8a99c65d045979422cb739b31f6b23f762a60f2fc0a06241dabb5"}, 0x107, 0x800)
r10 = getpgid(0xffffffffffffffff)
fcntl$lock(r1, 0x40000000b, &(0x7f0000b77000-0x20)={0x3, 0x3, 0x400, 0x5, r10})
getsockopt$inet_sctp_SCTP_PARTIAL_DELIVERY_POINT(r7, 0x84, 0x13, &(0x7f0000f20000)={r8, 0x2}, &(0x7f0000ab5000-0x4)=0x8)
msgget(0x2, 0x211)
semop(0x0, &(0x7f0000000000)=[{0x0, 0x12e, 0x1000}], 0x1)
getsockopt$inet_sctp_SCTP_PEER_ADDR_THLDS(r7, 0x84, 0x1f, &(0x7f0000418000)={0x0, @in6={{0xa, 0x0, 0x6, @loopback={0x0, 0x1}, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x6, 0xc9}, &(0x7f0000f2c000)=0x98)
unshare(0x8000000)
2017/12/15 23:28:16 executing program 6:
mmap(&(0x7f0000000000/0xfae000)=nil, 0xfae000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$kvm(0xffffffffffffff9c, &(0x7f000009a000-0x9)="2f6465762f6b766d00", 0x2000000800, 0x0)
r1 = ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
ioctl$KVM_CREATE_IRQCHIP(r1, 0xae60)
ioctl$KVM_SET_PIT(r1, 0x8048ae66, &(0x7f00009db000)={[{0x81, 0x5, 0x9, 0x80, 0x20000000, 0x5, 0x9, 0xffffffff, 0x1000, 0x1, 0x10001, 0x8, 0x265a14fd}, {0x5, 0x2, 0xa2, 0x100, 0x400, 0x6, 0x3, 0x7fff, 0x4, 0x800, 0x8000, 0x200, 0xfff}, {0x3ff, 0x3, 0x0, 0x1, 0x8000, 0x3, 0x0, 0x3, 0x6, 0x1ff, 0x7f, 0x401, 0x9}], 0x8, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
memfd_create(&(0x7f00009b6000-0x9)="2f6465762f6b766d00", 0x0)
r2 = ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x0)
ioctl$KVM_RUN(r0, 0xae80, 0x0)
r3 = ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x0)
ioctl$KVM_NMI(r2, 0xae9a)
syz_kvm_setup_cpu$x86(r1, r2, &(0x7f000054b000/0x18000)=nil, &(0x7f00005fe000-0xc)=[@textreal={0x8, &(0x7f0000aef000-0x3b)="baf80c66b861692e8466efbafc0cb0feee660f01df0f006a01bad004b000ee660f61260600340066b9ef0800000f320f01f2ba6100b000ee0f20e5", 0x3b}], 0x1, 0x2, &(0x7f0000aed000)=[], 0x0)
fchdir(r3)
ioctl$KVM_SET_VAPIC_ADDR(r3, 0x4008ae93, &(0x7f0000405000)=0x0)
ioctl$KVM_GET_TSC_KHZ(r2, 0xaea3)
ioctl$KVM_SET_IDENTITY_MAP_ADDR(r1, 0x4008ae48, &(0x7f0000aee000)=0x3)
r4 = socket$netlink(0x10, 0x3, 0x0)
r5 = memfd_create(&(0x7f0000c47000)="736563757269747900", 0x3)
writev(r4, &(0x7f0000af1000-0x10)=[{&(0x7f0000637000-0x29)="290000001800310900000001000000070a0000000000ff06800000000c00080004000c000100000001", 0x29}], 0x1)
mmap(&(0x7f0000fae000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r6 = syz_open_dev$vcsn(&(0x7f0000fae000)="2f6465762f7663732300", 0x9, 0x400)
setsockopt$inet_sctp_SCTP_HMAC_IDENT(r6, 0x84, 0x16, &(0x7f0000e94000)={0x8, [0xef, 0x1f, 0x401, 0x8001, 0x7f, 0x400, 0x8001, 0x4]}, 0x14)
ioctl$KVM_RUN(r2, 0xae80, 0x0)
getsockopt$inet_sctp_SCTP_DELAYED_SACK(0xffffffffffffffff, 0x84, 0x10, &(0x7f00001af000-0xc)=@sack_info={<r7=>0x0, 0xfd, 0x400}, &(0x7f0000923000-0x1)=0xc)
ioctl$KVM_GET_REGS(r2, 0x8090ae81, &(0x7f000050d000-0x90)={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0})
mmap(&(0x7f0000faf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_PEER_ADDR_THLDS(r5, 0x84, 0x1f, &(0x7f0000b8c000)={r7, @in6={{0xa, 0x3, 0x7f2, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x5}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x7, 0x8}, &(0x7f0000faf000)=0x98)
mremap(&(0x7f0000549000/0x4000)=nil, 0x4000, 0x4000, 0x3, &(0x7f00009c8000/0x4000)=nil)
getsockopt$inet6_mreq(r1, 0x29, 0x15, &(0x7f0000af0000)={@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0}, &(0x7f0000af1000)=0x14)
ioctl$VT_DISALLOCATE(r1, 0x5608)
mmap(&(0x7f0000fb0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_SET_MSRS(r3, 0x4008ae89, &(0x7f0000fb0000)={0x3, 0x0, [{0xc0000103, 0x0, 0x3c}, {0x268, 0x0, 0x20000000100}, {0x9f7, 0x0, 0x773}]})
ioctl$KVM_RUN(r3, 0xae80, 0x0)
[ 51.068653] sctp: [Deprecated]: syz-executor6 (pid 11572) Use of struct sctp_assoc_value in delayed_ack socket option.
[ 51.068653] Use struct sctp_sack_info instead
[ 51.088887] binder: 11536:11549 transaction failed 29201/-22, size 56-8 line 2832
[ 51.118880] QAT: Invalid ioctl
[ 51.121096] netlink: 1 bytes leftover after parsing attributes in process `syz-executor6'.
2017/12/15 23:28:16 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$alg(0x26, 0x5, 0x0)
ioctl$sock_SIOCBRDELBR(r0, 0x89a1, &(0x7f0000d4b000-0x10)=@generic="1f4002000000000000009a7814c20ed4")
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8000000000000, 0x0, 0xb8, 0x0, 0x80000000000000, 0x0, 0x0, 0x6, 0x1, 0xfffffffffffffffd, 0x0, 0x0, 0xfffffffffffffffe, 0x95b, 0x3, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
unshare(0x40120800)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$unix(0x1, 0x7, 0x0)
socketpair$unix(0x1, 0x5, 0x0, &(0x7f000000b000-0x8)={<r2=>0xffffffffffffffff, <r3=>0xffffffffffffffff})
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xfeffffffffffffff, 0xffffffffffffffff, 0x2)
sendmsg$unix(r2, &(0x7f000065a000)={&(0x7f0000239000-0x8)=@abs={0x0, 0x0, 0x0}, 0x8, &(0x7f0000008000)=[], 0x0, &(0x7f0000001000-0x10)=[@rights={0x10, 0x1, 0x1, [r1]}], 0x10, 0x0}, 0x0)
mmap(&(0x7f0000ecb000/0x2000)=nil, 0x2000, 0x1000008, 0x30, r3, 0x0)
r4 = dup3(r2, r1, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000001000-0x10)="2f6465762f73657175656e6365723200", 0x20000, 0x0)
ioctl$TCSETSF(r5, 0xc074510c, &(0x7f0000124000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
setsockopt$inet6_tcp_TCP_CONGESTION(r4, 0x6, 0xd, &(0x7f0000105000-0x9)="7363616c61796c6500", 0x9)
dup3(r3, r2, 0x80000)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xdec000)=nil, 0xdec000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0xb87, &(0x7f0000dea000)={@remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @random="a00082b281b3", [], {{0x86dd, @ipv6={0x0, 0x6, "03f087", 0xb51, 0x3a, 0x0, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, {[], @icmpv6=@echo_request={0x80, 0x0, 0x0, 0x4, 0x0, "f6c2b29644ed632d323765261f5402f3c39705bbce221b244334305d929f8b04f29f31407fa075502f1b01b23e291e5d7427b52768c463cb067e8749a555039dd873439a178345bad2a2b244c4df0edf9f76ca2361613ee61c61a92669855eed2259ec0a92aee2f0082d18ace8d76e449cb09721cd91313607ce67583f53bf078f462be05dc04d78b1435a005352ccac872704617145b19768bb0bd6bee1da0e473d8638c201cf119a99a41f86aace49ae1dc7c97abb0b4dfd02b95c7421b872ed68673cce4ca4c77188beb7b92d501e5dadb0deda622fba60af811a0767d8952e42533f363f2a5cf63a5707bec8f572d101793d5d3dfa2e678c6c27b74a278d48884b2e6c2bcf999b9ec6a7a1d0cd6f11c86de4bbf33617c2a519370ff569fbfb5b926f0799efcf45109c6121b177f0131cad62c38fdce74a341d7ac1b31cd0b4d6adb8b06d80cbf2287e5ad622deab2cd2c40ae044e481f53b79adf0f4131506462ab9b3490bc42f7d49d3231e38fe3a14137964e936f9ecda4808aa445179729a194315cd7d77c87b35a2f0f5a071bcbad443d091bab12e3770c43c05ae80ebd898e86b9dc9d6f603c1044f33b467f939d68f551d26b414edb1d4c9df82c17c24dad812b3919a5f13d85048c0b968debc1ed5eb6c50850802129e7cf613fd7b00e035e4ffc5271e183b2e2a6c0f73d21c3dcf576ae19a28dfe08bdbfed0cb0f71d270b6b5d9bd3d42070ef42551e2db5585951681b002c0f46bd7fb5f2d487e39376e2d451133f47b8eaffe0285358cc7e5a7907ad317ab47eef0646e46fcc130c34cd52583269e34c7d29d3c0e81fadc297f840ef72d5f87f3c898c1b1d46dde6908f7447217b95b619802f2e7d6ac0b01f8dbcf6e4ff95fdadc73ae232a9e6b549219da3a6515ee8c8632c9a1c6a127c28108799984f550c4dbf8f39379e40054ebc6164b8c54e07b34a34be44df6b5fcf949a983e6379f2a2b8aad20d7c0e543683d370d2ee12d9a9aab38231e711346a76943e99968c66b17a407c849ae099d7b9638e501c9630366f149a39b248062517a96972de229effa10047a57b0595400d0267b7b34ccff6636a9487ee9d63a4c2cc203d6c0f79f7b2fac983e4a429153e1bb49218a7eac25054c7d8bf52e1712d15c0071e276959617d698b377e0071ce7bbd6c952034fadb95ae118fd3b6e2089cf53eab30b5c7e1dc5c95709450a96ab54a892cc252e95996531c39ddbc225fc2e5b34bcd392718e6beee3323f7a0992ca9eb36095c1fb8dea9f36474bcd1721f5c2849a32684d3a4f99569d4ee072ee88448bac73ab9afed69fbf4ca90a3530ab9841c7cd8e6c29b760eb94206eb043556db36381734d4ac2ac5aebd45ea8517431fa092a3545defdb195b98b565c75e7bbb2149e695c0c45798403834d6d0d50ea133839273f6ba0c98e74bd68cdef446c8e30a42d3e2dc56b739186e8aa1df7da9069e6a1c946b86bc4a3c4af4c00bd5c62e99847e83be91577fb68177cc0314151249c1d281b1949f98bd564fb1196841e891ea5bf0226496bd0b5af5e86c855ffa9328f2aac8a26f089d0ab25d6628d912dba1a50a46ea7a4ac8eda21185b56688637fc29f4c7aeaffcd449ef6b0e6150b04b82917313a17baa17e60b8366e14afb4e86256ad3e660670a97a33da51b61b96105068a49d09333c6ce6580e5b6a413a03c435cafaa0d9db6b20279a2c2519c2965905f118d0cf695194a7fb1a466123e5de7fc6dec4ac63f6678828cd946e896b1680e80c452bd7b0c5ed50e6bb103d87961509fbe5e85586f148359dc3ef3b36ecb8b50eec04370b7b176732ba32d5bcfb7ec4d9c2c59d4ee26e12b25bcbd03804d0169d7ddd7e96c1990ea56c52955afebf00333c48098e4adb5a5320ab527030f71beb46e79ed27df91a9c366477918b5c47d7efac425b6808501448acca899c5d4f4090fc6c41cd7e8da394d88cd3649fd3cacf2e73ee1bcdd617ce0e7325c01767252a3de13e61a4c6b7f44c645e199670bc7185bb133cec65a2f334e4bfc3f804bece49bd62b2173908fce6c15e022cb53a0d9d93d5d79b9287783c94135d6a98d7248e860dbae30d5d77f242f9af3fc4ef4bf4b719eac141e6505fcd33aead19ba433969457886d4510737951e4ecb7a7d661a19eeefae71a9a1825ae737837ef5f0a078f8d9fc01b9ba40c82209782ec3b82e1b220fb07e4268e24a1a8197998a88701b87d409a13252fe7f3495e4ab3ff90682e45e1004c9d6b6392b2bb3069883647ce06f1fea0b96b43dc666eaf3a4c282ce1bb1723fe37f40a74b8457a30f00f81accfd4776091ae706d71df7e40b9acd475101d95453c22e5d0b5713312b3a85bfebaa1ee1eb3a07d045a781bbf6bde79420ff8b0d08909626b05e4c0b17698ce0b10ba971c5ad966dd76a8c9a63c75b447fc01840122bc898766849073f84d68b45f75d40f91febac56b299d573d6f1d314f47bc922587cba7c00e079dc99ed7327c2212f668615382f9a4beb8fc0b3d2d38942d89a6cad57e576e35873b092870036ee09ebeadb961f2d028e2fcfcc1b9920642826d37cd72127fa910f83217fafca0acac4b39cc8188a58666e36fc7673000cd73590ec5995b57de0f06bd0b748d1bf06cfda043ddf4035befc80e8eb6e2894bdadfad1fb1a8f2be9dfb9099e393328a4ea16550da2ca493175d4ae470d2b1ff9d1d4fb2f0bb7349551d9196408ea107ec0a657895bba57566d6344140ac7047212868c78014cc36cf2ee4cca021a1a17437d0827a21ca613eab3bbd858b95bbdba62681ffa34a9dd2b6023ad11fe4dbbd4faa89bfd164c13d66df8b4a703cd751f0783017c7e19bf0fb1c82044c9cb23cd6eccdac402819ceb625500b01437c412ab7ac50c17af0aa9d98e2684fab25bd5813e0b5a123c1d661144785e9bd97572188efee389c5e9b2be55d9d68c3dc1902916767650ece9dd044a3b6a611be12b1470d066c5a412a9979031ef09e45dde7d25fa98513feb570a75bf96f74368a85224fb7552cf2bafacf9d1c56a2a5e67eeb2f3f492adefa1fdc43bade9a17b0ddc607f9f4a63d3c9f5e0361b06cc425cc0442fb4f062649e585bfdb228feda5576ef82a51ec0ffe9d1e024732aa10008c6c452eeec30683f85ac587b7459fd96941453ac09cfa524e2de78d5902f64d8a1794f3df218a567f8b784aeeb52a18df347a3f31047674e5c1de46ec5f5b8af16d7c8b90e3a107ce745e91fcfd6c3b453957d39100d99067843060c5985fd71b909422f88b212c2051dfde6ad3ad477ae19a463a3296ba23c9c8a7fbbecd2855dc4e5a18d5f39c0a4817ace4245501a1cd3928756dac983ca77720d9b807277305ca07ab2a133d36d6a73bb31d27eba8bc51b717ba9b3abf99175f685012f4383e8442877d0fefb7bb892f239825131e4c5d42bff33ad72c37d6405a8b4762eaa9488f9e7a0c21ab66c634617ee01d34919e9d522e152c06f1fa4cf712fbeb469b4bed2dacdbd70c2cd5e5d17d85efadab1eed20ad610113913e59ba4293403eb91c72df54b3579d329db93e599f139d3c084f672977a8e715cb07ecf6a1347e58c936e5a76a4da927028ab6338083f3b9ee9157c6b2cfeb9b1480329e71a30bc8b4789df33f85cc240abbf6817406fd9d90386d955dd82f5a23ffc34690fcf103a16babfb70fc99ae1339e4d210bda086f3153cb4c5eeb88c4d634996602ced6f7a79508f3c62bd8cb3796356fa32df20558b819cd4b0d5183ff6e7d8db80fe8872f2dbd990fc4e061e011c00a8337c282cbcdee5183ad51458f1f3ffb228a585b3c3508d900a1cd0ee7d51199df8aaf7b0b4eadfa5a69aaf85b6d2a75bc7f0943b23b051e386d462ea6ac12d9d810d9552a0192067d5a7aa482b88766304dbddea6818fea780dd574c1df4d1f2710745b210181d9052b6a0944e26027f6c18df3757558d725c2da7f1ed96da9bf9a276831b22f4a5086cab6e3435c7340cf038e7dd545e4aab2ab123ccc5d177dbe55103741498458db2b3b164beeccffe1d92906f59f8ecdd63a7a511b4ed5e70306c43"}}}}}}, 0x0)
r6 = syz_open_procfs(0x0, &(0x7f00006e8000-0xd)="6e65742f736f636b7374617400")
mmap(&(0x7f0000dec000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_GET_IRQCHIP(r6, 0xc208ae62, &(0x7f0000ded000-0xd8)=@pic={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
lseek(r6, 0x2, 0x80000000000)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f000002a000-0xa)="2e2f636f6e74726f6c00", 0x0)
r7 = inotify_init1(0x0)
syz_open_dev$sg(&(0x7f0000943000-0x9)="2f6465762f73672300", 0x10001, 0x0)
r8 = inotify_add_watch(r7, &(0x7f00002fa000)="2e2f636f6e74726f6c00", 0x2000000)
inotify_rm_watch(r7, r8)
2017/12/15 23:28:16 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6(0xa, 0x1, 0x8010000400000084)
setsockopt$sock_int(r0, 0x1, 0x8, &(0x7f0000659000)=0xac8, 0x4)
bind$inet6(r0, &(0x7f00001c1000)={0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
getsockopt$inet_sctp6_SCTP_MAX_BURST(r0, 0x84, 0x14, &(0x7f0000dd3000+0x8e3)=@assoc_value={<r1=>0x0, 0x0}, &(0x7f0000b4f000)=0x8)
r2 = accept4(r0, &(0x7f0000928000)=@nfc_llcp={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0}, &(0x7f00009f9000)=0x60, 0x800)
setsockopt$inet_sctp_SCTP_CONTEXT(r2, 0x84, 0x11, &(0x7f00005f4000)={r1, 0xdffffffffffffffd}, 0x8)
getsockopt$inet_sctp6_SCTP_SOCKOPT_PEELOFF(r2, 0x84, 0x66, &(0x7f00005d1000-0x8)={r1, 0x2}, &(0x7f0000c50000)=0x8)
setsockopt$inet_sctp6_SCTP_FRAGMENT_INTERLEAVE(r0, 0x84, 0x12, &(0x7f0000554000)=0x1, 0x4)
getsockopt$inet_sctp6_SCTP_GET_ASSOC_ID_LIST(r0, 0x84, 0x1d, &(0x7f0000447000)={0x1, [<r3=>0x0]}, &(0x7f0000462000)=0x8)
sendto$inet6(r0, &(0x7f0000925000)="81", 0x1, 0x0, &(0x7f0000109000-0x1c)={0xa, 0x0, 0x56a, @loopback={0x0, 0x1}, 0xffffffffffffffff}, 0x1c)
setsockopt$sock_int(r0, 0x1, 0x8, &(0x7f0000965000)=0x4, 0x4)
ioctl$sock_SIOCGPGRP(r2, 0x8904, &(0x7f0000653000-0x4)=0x0)
ioctl$sock_SIOCGPGRP(r0, 0x8904, &(0x7f00000ab000-0x4)=0x0)
getsockopt$inet_IP_IPSEC_POLICY(r2, 0x0, 0x10, &(0x7f0000a9f000)={{{@in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@remote={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, 0x0, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000bdc000-0x4)=0xe8)
sysfs$1(0x1, &(0x7f0000ae7000-0x5)="7070703000")
sendmmsg$unix(r2, &(0x7f00006c7000)=[{&(0x7f0000bd0000)=@abs={0x1, 0x0, 0x0}, 0x8, &(0x7f0000662000)=[{&(0x7f0000b2f000)="66a0b53df438c7254e2408b06ec825e7bdeed3de1ed60e37", 0x18}, {&(0x7f0000bc5000-0x1000)="af2d8e95b4120bf67abc2f7d81f6e8056d3a319c13846c7df860d13f999010b871c8a6f6cfb30194817b0b9789a0ab5605f71b0b1e815689fe71cd5d4901d3b6955acd18ca3b1097fab19c77c7b5a9034065f80cf17a0465f8c797d5cc48110b0c0b883015025ccb29bd5c33b69ebd27053cfc92be07360177f71e7724d8c67b36b9e5b6b711dcea8da707a44355060e9f3a9f6a73822269c95d2910ce8dd0eae2bf4cdb7f736aaeae10e2653382af41aff2ade912435a7a53886135b32078cd4ffc5d1f2e7f205e9e0c98ccb5d34d97ea2eee3cea3a3af6d53245de312bd809398fd74b22e47afaa92406fc971cf5abd035e2b88db7e545164d663dc446a7fc770dd93a3cc6b830e60fceaf1dc42d7b242e04cf88fb52b9b9cc6398f73283cfbc965de535d8c1785c649b311db354a2c3c5d12c083d6da43d7f35e492e137f2579311edf810be0d03718dd1de22047e7206c9f5f502d4226e39765690458a78468bd7033af14649fd75250650ff75b3157cd71ef0ea6896acdc269022eee0a9af102404b659090e73dd3a0d9782a253d54edfd7916c2e881968d82dace57e730cd9e5eab50dd996eb6ea7ae1e8c5a51198c5881574887d515fa5965e13a8c795ff12d5446572fa6e520925f6c0959a733a714ad29313d8f34ff100cee407e66ee7c0449951df5a6209db709d84b06a97c1f8a004448566adbc0e953f3f72b18dcb14ab11c2eff8dba3fb24c39a42eae50b6c49e27de55f3d673e2894b76f96640b2381269c6c9c97ed81aa6bbb455ea818d1467aab197548e7c2b7049eaec701bdb2b71e14631a56b63ce5aed424fff183f50ffc0d62f941c3ac5d9a3e5a6b4ac019c7e0801f84fde9db7f84d794af8b27728eb87a66f3fa9ceb5be9660b8e77bbc73a6d1f27eea12b874af30ce45e5a0ca1c43860de2087f413b830f6a3937ada367aa12a1032939b5e0a0e255e8bed804e5d764b972d25e834373f62f98665ca1bd6e84b314b192722d0f049e6192b65b84eb5b7d58a79d0498b63832849061195ecbbe061cca373ba45361f54f1ea18ee678cbb787be0349ad8596a835e969c8fb0973aef6047bbd251dd5a339da0b8a9b5df476a952161b74656db1727dabaed6f31d483df4ff6f40985d980ee3952fef224ca4bd9efcc3b64bd193be8f7a59d8374c25ac41799578c38d3f95bca6fe94b928c78c47f2d2a093a0943fc70df1798cc6790615a4ebeae39ed061cbe2b0d024795bbab21b4236ae2ad049078e0f5d5dc3481ecba44500d372eb037cac4ce87ce43e96bc69479c069168c09c79b2b71453441be57a0d131aa513e9ac3e77985dade7c47263b00c70e56dcd2e4ab0071fc9ab026f47848994736ce2ade334bfad58ec49c08db90250fee54710a3db603a45658bcc84d7123039da865adf41f0ef37ed8e353210695038e0685bf887789b85a54d722cabf7cc12f0f94e75c24a5252fb840cfed4230757621c98cc38dee1b4241d8f73a87ae16fc658a624bf5bff245bd872f30f7b2ed9dbfffc5f9a798440414add3cb3cc8e96d83d3aaf04591d7fa38f870163e86cbbb858716ef1afb0e827544687a51fda37ce43907dd190a06b1b6cdd898775365a9837a27e1bc33aeb4224398a36e8f26380baca94a277070f5b9cac47cfb549bd5e5c1f57d8bdc9c216e4021f38a18949e168d8dcc9b178eb83d937203fe7b6004cc796addaf5a05ea536a3101aa859ea30657fa6729b8ec638ebab3efd4220f42c535d6956db91a0d7d75c790168331e43cbe8dbbf1ee647286d0b0ec05b219a721234fd46ec03913b16c8eb12b04ba5209e4160dd5edd55f777acf56f1eeefbaa5756ef3331cf0566ac177e2ce427a6b9f4d3f350243a5f0dcbba930b5eb314f357babf828b1a05412510ad9863dd2429faa08a4612443cc7004d27ea396337ccc1a603aa0ecdcc76a80a442780bd0ff49363fb094ea427927a6a61fb0a8c8baa4cee3e54c5ade8a9106c4cc91fd2cf687bccd16d3e10dfa8e120fc4082ba85211034246ddac32cbb9c1641c0934289521b021deb92e5914e5ed7d4c0cb421e88a875ca555678f1f2997e220a2386876117aa477eff6ffb195752e547c8d3293338f48e03d05ed6e4048ff03ed0b50bf8a800a951d2bfd0369340a31508fa9cdfe0449a93d4722b620ee81921da0035841e51ab95a399ea55ae7a78f78396b9734fe9f167fd27895767bf307f04925ade573a8bafe189bc4f273ad0817ce20deec997ae538a6a9fead95092a53b988d9a4e36fbb072c2079476572017e89bbe8c85f22703e297e9893a2cf81fb64b53311a37694efc60c85182a6df682fd8202b8c5f9cdaeb02c84421ed12dcdc7a53e35070ae9a53ea08c01b037cc8f8f8adce64db664af27f5129861ed4c9cf1893c35cbf397d8b5967bc429e792a2c4efae1c489f3cd9c7b0de594e57cf39a0311611926475af6c2945ecf220597407d1ebe0395c60ab8eab22052e288ce392c54e3fecd97060bdfba73914b5fa6878e136817ffd9671b94d5b439b378459f51db04b8bd0d4c0bc0f5059a2e2700d8da4cfc1bcc2ba136023f20f8be9420516ec71ef2f65c8df6c4607403a5bd739ff9bead3bc1916640816193aba03c39b59b26d8d7a457cc3ad2920df6e710edc6d60ba0ce4b7ce7b303fe1e5c626ad1628ebc5ccee5d086e0378f61362f9c170db1f5ab880a6a9a1d02c6756801d3c390d59114ff80afc1144a0f94ffb4f9718ff06daa9d10f33ab4592b2ed0c99bdfa61c22a86fef21798f2e465277ae080d2c07e454695f6a474b57d00fc787c5f9e83b428e45c0934271c40d8750f5e0878026ad5d50577a0c08de6ba4ca1cec25690fe5998bd503051a979393414f230a89bf4e6418233a71ca389a5789d30cf2e810e02e6a34eb6c4cace3338b0e744488bed9847a821263c5fcb28e83bc384a865f3b64a7624a2a10321c9672de065df47aa1ff1381fa2ceccda86403f4e38d28abf166aee512632610b8f4d34fb64433517a071c72372b3f6534a0f50f09eaeefb5b2af17ae120809d59ac98d45aed681c010c46c04ccead698ef62066afa0aa678f4de614b94b24d951edaf39824fa69dc45bacadd4392bb435e9e49159350a1d8bbce099c065fdbceda286f1e0847b64a9a79b96f2041179b8807e70cebe587f39ff8bd3ad66a713a853b6a6f0f5d10867cfede29a7f443a092e7562d2bd01d309fecefff2cef6119f87a746e5e41e17de4975f220f6846cc119b11518f3231c82aa2452a1c6cb31f5dcf503fd3840e3f2a5b85e0188e75a92781908020f479920f3aac2dd0825595b82b1885479c7a41e3ffa6e6c0214c2526e79faac3f89485ea0ccaa88060ba6403aaf629a6b1b3b130866884c2ef8fcc5f1a84c9556950f5632c429bf43eb356acecf1d0fe1c53bf876f61c1c1823bfbe526b2df5ab5b2f3bf403a24d43920dde929bddda4e996815cb0e777afacd856cfd8eeb7337ebcd759b00047a0e0bbdc22bd0f47f200b15bd5a085d807369fbda4a04f0c2431338c1778c6c1dd33ba0daeeb01b88db6f4e2bc109f66dcb696e881154896a80ca631d664f9ca3afca54ce09e26fd461ae6f7ea70ec139a628223f705043268b0140c04d39976baf25cbbe39c8ba2244fa0870eb0a8e99ec1d9b40bc64bbfce674837137654ba0734df4e2e26ef9908235f5f7714b25cfe6e791fd269f9daebe89ad3ea914fe73879aa75694be9c0536fed7ad77c4071c523ea5fdca0ebc55827bfc697e3d52f499dbdb3051ff1d911d146f93d1b5d78d84409ec3ee8b07689641019f9fd840472c4a3f563131718ae925fd2f4e76fdce39103b71e2867e6b02fa8bcfc4b121daa10b857a404d442fa68965d4920d3830b973405eb73adadf6d1b673fafd4ea7e0111c2a8731f5ede2a5f15440737d93bca3dca96fb555fbc3243ff9c11d6c24191a4bb5c384ad7d9101e8ebeca1423d6ce64ff3db39b3ca4de7e3a2c5e40cf27366215c4c66131c8a1efabe75be42b9b7c29dd4c3da996787bc43407fcbfb7f54100c6eef66354b0ceeedb525e1900cbe5ae5722584540b791553ff3c5703df4c6f88618a46d8482ccd567f6b49b35f4f7f45cc108a9d68f28528081d1c965cde7833382f3cd0cf495656ea121dd3fdbdbf46e534959012dd8b634623e9393e0b3dd9b207577df81303b6040990e45435cef9daecf2cdeb11332849efbf9fe03d9df5176214520ea873e0e93364cfe50d29ed077238de29ac4b6df9799bccc7b1befde0f2dd54abca4a813dd36cbf002a2c0cf1513a0140a3a5a9a0948a9851cced81b5c32d92fae569b59cbaa8850bd0e1711b8ea23bd0fc4de932abece8e31e28c262b0ea81a5cb0f33c9434bcc14290323d60c8b62474dbdab12373c801fed61d04ccfc593171e8caeff610f22c835eaf89d74380ced57b310c42a1fbbdb095397c6005c719a16601d3e70286aae31ce838f769e8930f840c96b5304b07e419c3b39589c2cc1a8a30c36c8b606251eb83c3f0e7aecaf26918d7a5076d7db229cfd651c143e98462ceada5ad646379c845dac1bf12259d0bdd7a09559881cdde0446316c6c3114b0ebdffb62031550417fdd1c84dd9aa36584a78cd08940982caecf2177401effae3449b14d714a50bbbab2cc9a353ee1fda548b3b676131d4ce1170146852afe2f3889e9804578be2d094afde2b14532a8e16b1e7ccc62f2c8949151052e52649829b22638f6fe48a523eade66e98788771733eb691e3bc25453dab17f27954fd4f01fb85b4d03cc3ba1b3ff225c1563b5e76600ccd334be28190bc1221a59dff30af0d656c5d28b14947730fb416bf820a02d3228d1ade14632adfe589ab135ff2ff3f2995be7840ef70ff03f1f3b48dfbe37c02c4356a351b172ba533b5f99e0446b36bf0838636080f22e9601fb7bd9a2c27316ea5829724f5e7f2e4495f17373d42ea58a8c79c13bc64eda43fb5967316cb1c4c7d0fcd47501d0ea90d23008d426c96910651c8c9a01187b786df7b5e3968844e052fe2d57db27437ab66e1d5de6e2c1fbba700dea90e72d24373e30b3d685e27e48529d7e806c42039bcd70b775a16a7b1d3591980bb4dfe7c9171b78c14ce204721a37833217b3b1a52c308bf569b75a20dd832468ee519332cfa96ffa6762e069d2a556fde6d9520a6cfe0fb311891d9042d539d2f6e5e0291ebd8734aea5e5f7b5173ac086d8159d1cec5c3462efe9143e13849275b47c0f8d0fb05266ba9b5abea112c40b4a70912312ceb448b258c6b553db89b53a2210dacaed870d327cb8ce9ddde0f7f6b0a3617dad89c4fac1ce7412aa46c767c25319fd0928047aad6fa63c74d04f11a75d85892a9ef8122719bb809866e87fb4823b48e0792e37e7c38eeb63ebc35c65fcd0c5638944eca85a1a4308199a3a6918c24c97673b7a43c99874531bfc535e38e7290faf3988f7cf8ad17b9a044adca601511843462bab1349e360ba82f4fde6784b64290ebd2c552ed4ea50cd4df192a2d2793fabe0ca776dbe9b25af737c92610733587aacda9e96dbef54e0971e84b34e692d2fdeeb0f58d7678bd8253845c24770ad6ca5a42e9dd90218266f609e14341f479d802aac6991ee35119d4acbe47d2f69adb3be67955f5512e7685fd4470b78cf801ce717efcf5f9cabd0940103e4bbc4ddd20508cc63140ddb3862a8c401abe0b296a8a315a6bfa89e6219f75348f0fbc26061317d9e4c65106f4cef3d44c1eaca3c68ca6b6df252ba24de4d6380b4163936704a", 0x1000}, {&(0x7f000029a000+0x820)="57e1d67287d6a02f45d2cc69a18748dfcf5a8c3520c60dc606bd8ad33aa2f6404fb79f1996c1730159f4a300d34b85951d0cafd577e2ad5690c7a0e3e57935fb62f59c5be2ed6eef0f2a8385af1294470460af00b85b01a79a3a85574f8252d3abbac215deb83af9f52c3c155c5c97e433ebf56ac30b97abfb21a1f1e21b6ac0ee4f603a09bc8f7118be66210b1accd7148ccfa02989fef8a107308dfadc86a5cf1975537896cb8e1d900cec5c3beb3973ccd356be8a589eac2aed28a155828cfab2be8a19", 0xc5}, {&(0x7f0000407000)="9be6f1d57e9420360dcf9baae6b79938355d1b71a607049b57b65dba1fd28f6257af81", 0x23}, {&(0x7f00008c6000)="099d23031d1e46f6a88ddc35b9185007c148b5ee3ee701eed5883269b85e84fc4cd061fdb9e477af68ef0a33e858955e2540ba35adf9fea48ab39d9dd441cab78ed39a1a15743b66bbcb391759558f4fa51994191fb303cfa8d59af832ba00e527da164a2a6e8b9f4a4dfd60c6ac4768f4d5447032afd8724cd5b10c92e4d2c5174132c97ffeb7b061a6738a343d0dae093743bf440401ab641068a7669bc564187abbc646935071d967be69b75e48dfd569c9700ec6cbb2aa5003373120a8acf343a62cb46cfc413dd30abe261a3d83ee6844ae050154b47a7abad1bcfa2e38860f0df16793221f490a468feab2b468d48dfa481378a5ce", 0xf8}, {&(0x7f0000499000)="24366d490b74c44f7e27a14ac00f55487b7adb7926853af2ed7de3a27921dd399dd314e5934dbdbaa1fc0fca0deadb2dba0a64aee278041360a41f4dca0802863148912085a1ecb34b4564b4f9008cdb1803b582ca", 0x55}, {&(0x7f000056d000-0x67)="8e20e0a9877bd90aa688dc89df3d2d9196516e2d7ccea442d785561fe816930f12e72a1c58ecfbcd0d76badc02fb06e97a698c2469acac7a9338189b266c80d10235f6c480390ab5ef5c60c80a5f28ea7ae15f725d44c27eb2d2078ae64acc436306206b1e19b8", 0x67}, {&(0x7f0000f77000-0x4)="f566154d", 0x4}], 0x8, &(0x7f0000651000)=[], 0x0, 0x40}], 0x1, 0x44081)
setsockopt$inet_sctp6_SCTP_DEFAULT_SNDINFO(r0, 0x84, 0x22, &(0x7f0000460000-0x10)={0x4, 0x1, 0x376, 0x10000, r1}, 0x10)
ioctl$DRM_IOCTL_PRIME_HANDLE_TO_FD(r0, 0xc00c642d, &(0x7f00009ec000-0xc)={0x0, 0x0, <r4=>0xffffffffffffffff})
ioctl$DRM_IOCTL_CONTROL(r4, 0x40086414, &(0x7f00003ed000-0x8)={0x3, 0x4})
getsockopt$inet_sctp6_SCTP_STATUS(r0, 0x84, 0xe, &(0x7f000018b000)={0x0, 0x1, 0x202, 0xffffffff, 0x100000001, 0xfff, 0x2000007f, 0xffffffffffffffff, {0x0, @in={{0x2, 0x2, @rand_addr=0x6, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x1ff, 0x3, 0xff7}}, &(0x7f00002f9000)=0xb8)
getsockopt$inet6_dccp_buf(r0, 0x21, 0xcf, &(0x7f00001b3000-0xa8)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000ec6000)=0xa8)
ioctl$DRM_IOCTL_RES_CTX(r4, 0xc0106426, &(0x7f0000276000-0x10)={0x3, &(0x7f0000e92000-0x18)=[{0x0, 0x0}, {<r5=>0x0, 0x0}, {0x0, 0x0}]})
ioctl$DRM_IOCTL_SWITCH_CTX(r4, 0x40086424, &(0x7f0000494000-0x2)={r5, 0x2})
sendmmsg(r0, &(0x7f0000acf000-0x78)=[{{0x0, 0x0, &(0x7f0000c01000-0x10)=[{&(0x7f000098d000-0x1000)="648c2c4f412db5c04c8285dae9d7e975bd52b0c438f9f0a70e45868b5323a968dd20861f02fbf41bfc151e89d4702f07a4517251d5c11e5e7b445050fe4b0603d53b78b661c5f24c4fbe3e227129420eab0ca55322eae260c7836d979a81b345cf327a306d2f66d011ee5fca718f9f045aa2b0417a45e26078c73016e17321151b5f6d2895aaa398220295158cdda4537a63d1d8ede0b2d2669acac15f15e337f12aae15e1d531b3ed6c8f1d758bec1342b4d047b7b2442b64a5513150d1ae82c391a7ad78c59a6b23620caaa3bf6d46a3e3aecc100a9417c92fb710be446cc5c82d50d2de5b0717f2aecb496c86c1cdb80b472a9f92a093232559b936434fe16003a3ca22497b47fcad6d2b3c6f6e30790f6952b4131ffa00109b6814c2e89fc35b4c763b7351670ae58598991b4349b3cc80c0bf8ec6ab20e67d155aa407a99c241563175912638d319095dad14ddef2c2250495c7d23b19643efbd47370ed1d85ffec893f99191ecff47319c59d3e9665078afed8cd158a4d8c8ee1913f60ae72fd9584da9d3251f19c00547f2e85e8f8cb770bace3dc5eb0a07f2aba13fe7db20fcdae1500505e17a4d4979be8bf427ce6caee0d20be2fd84874b825252a73a078403e795e5160485fb74f4c984c8502e1d2fbe9f77ba9c4e891f1aad56d1dba249b2be0f2a5f1a607a402daf2fbcfe23191b2f81608e6444fa0153e4a07ed1a2966082bf5dcbd6e8fd40484af6fe656db236f73b851d1dff0ac9cd360e6c70185746c288292fd816f42967d81c2db0463232197d9e926599534c6679f5ce3d35fb0e90f15d47c71de385d69ff9d5004d8929988041ba91245a6e2a7d2b26a1f1266314b871ebe9e3e28d3bde92d3fcd4a37e67ae6a75ea55b4797c32d7a5e1c840a86f2f3c92aa8d761fe1198e3b220c3d357a2391876a2429a4c5a8203c161af2c3cfdf9329b9dd312a86dc8bf0b230631b79075c8d3cbaf3f564ae1b8f2bdac53fa55dd31ac8fa3b904572980cc24e1f38621d9d719915f412a7162b3acf22b777c9f811a7e3fda746e95fd50d0ef93117bdeb3583fbc6766b9e611e3267df81266e3ab04747662c52c01528dbbbe62e1184c5759810ea0dfa6b20772008d0354e909dedcb4de8a936b091a04ca76ce957e01404bc1b4922d86024349ef2bd7417e29aecb97f1a301ba873557672afeff428aa238f9d52a147bad4b60a1f4cffbdb14d001c9163d821551d84bc1d371c7795145882f590653ebbb5dad898b4485ab38e1f18ce33ef463db0de147dfdd43984c9d14b0a8bd310606bb3408c784db2d6a06c64a07371c6c993975c5e66544f30f381396da99a786195ae5440a0f8f7150a99497c83fc904f388771df947aa2cc76a677f391d854a44b8d7f3caba65ce23532bc8b691b3c058f74aac776a36245f7ce0ca1fbe042e81947a02e0bc41267c2e1170e391ff02a2a5535f0d47e62086a2dbdcbceb1aea512cc52d34fea05b779eb7a2e1c6ef2c3eff8d74e25fff3de18588a19d6f7b3e417737beee11f97571a632f2c859940878fe122c21bc8a3a9531940fe792b840058f23729191062a37665fa689aa2e992a1c31b67d183e6f9466a1e0b9c2da5675389f4d4648def0fbe4420a9e9c9cd16d7d38b1ecaf661c8521084b2217045c0237f0b5a78fc752ae211a858ee01b9b06a30b39e05a1d643285afd98fad1ac43e4ba394d84d97907b2df6b1d5036c6570479ab38e42f60a57f8083af210d68c326de794a104cd9d1f909510579b1c96e2286af8b69e1208083ccacd0a50de0e435cb8ac5ba3a7331e92177e9d316772f740a09d081274d29c4402dd1f23e74ae35a98100c61413bfdb84e6b8076ef7213d2f9ea0f2885c2344eb8480122f0608ef2ac80a059dc9fbffb04c87b12de113b91482652008cd729c9e6ee5a2f137a195b258f2433236ee599a60a71acbeba92924be1d473aa538191e86e466851e1a09d1dbebad102484e711b7f6b4d2ee3717a02151bdbc6e03047a5f79ccc229f14b66d64892e2e8fca50b8faee23d28b925a9f1bb3a6d251f5e61aefb0a35cc9e666450008db353234334ec51612c26c9c8a0d77069fc6e8d5045d50b729ee27c21dd025f713ee2eec4985ec78e774b29a13b5c771e49c1a3a34403ecd88a122511730327c92cb7c0ecf86d10527bc7747b8229f11a097b66c3128f21744b881ccdd85aaad9883c57c31dccb1ce827dad35a779258b78d09a56538888805c1332aeac5c3a575f7a81560176ed9b4e34958d99f23ead67e3c1b9fc52387804160a6b59328e3932609063a39ca805931b5206dbb33d70b53aa10c17563f58c9610e658c080df75ce21f23833c934369490e12d12001eba0fe3ced712b8efe78b6f5ba938f1271551388762396e5131d49b9e27e38e211369c3c15f609f8da663d71ab5cd31acb9d00ab8548da39ade3c87e5171dc218474bca99d6140888f16938a43cd854bfe590c2cc180efcec54fa5ba5fbcfbdd55e30734ff594a7047c4377e98ac85c5738374a3b55bacf1fe923a7c65d51108c9af6fd02bda8167f20ebfbc3ea4dfaeda83012e463e2fef583aa28c8669114eda3a2dbbd846ccedcf3755948baee19962554ad993a758f23a59ca45b95e27c61b77dffe4e02e22bfb8c226a51085fbc7910a9cce331e6355eff238a146539b3a5765c34d091758ed67a31510b87ec894194651635e2cf5d9e5feaae2df42cfa864370370aa8035ec249723838dadb25afa59cedfd29f8ecacdf8c600a3d08af1b4ed7a016d51949e64aceef7c4b607c244824e5c686ad24c4c61f66a6596a2a4570c519ba0c2d40cecc0dd2403d6d7941b8f993bb4557f56b6d4dab2a752f42f86c5c00a7210abc80ff40e12135f58ec03edfac308f083cad708d5d189a67b03298a2c3156456a727bb20a0e0b5e5aecc2cc2a305183bf28418c8786d062539ab491061641b39a27e4ab6c46988c8928dbd28e244271e4b550a50f6dfd8260fd33408fe2da794318c5c7edbb8bc85f0e2c348cce6bb133497c2f0adfc7b0969b5e4776cdf62535a80d70bf1626f00134bd1ce1f529d534411541776f884bd67f2222ecb69be7b5fb9b182894a8a2e745a00d4d6387195ae9d06eeffc23b19889d836746ea5f5270e0b2d9e7c93ccb31e18bdf4b53b38d1eed01acc5bb3f78e1315ef920fd1cb605ee25c474e2ae576187378ff8acf6af70ba07ca10a3603f491a3fe5d704e6d4566e1252f83eb98790981be4d2343e061dd9daa9235f6a1806c55c6af5a24a87d2a2eaf228a9fba5335d3334281bffadf49ae0298212bcd77a1378c6500445a0bb0917a31c35e2421392a765d1e253ea0ee213f5068155661e7584e2183b9e97661f9c78f99365ad999357e7be49ca9982c3c6d8d4b0d9c54f9042a374a768131533478f3f42dc29d3fcb712bd9b0f51bb852363925a73bdea4d698da6661f8b127b66f8a325ea1e1fcd4d0bc272b2b0a5a973f74be7724049fc29ff22d91aad912acf71300821e7829937405a88c084a170144cee4d02f060b84dc0afdcc94263992e52a85d97b8ca8596652f03cc7a5455c8c3f2691fa8edb4f76e9a90a04561ba2c4002eb8e85defea71dd2f0fdc38125fa825d353768a2df6fcc0bb75d87fc5898ba156ecfe63c5eea42217c4f6f4c98b24198821425eaa4225cfe2449306cc0a8b269bf702629231d0c81956c4b0c2846c2dd9155254a7ffeb80d02ed106afe2305263c76e4264d553122a733db44d69cf991840b25e032361afd129071b13df467b99a9678916c52f5a89cd35aa72dfbcfec356815c51d0d2876d8d4a1cff64bf7cd1b23064ba7665bd1cd846ae01cdc5dc87b4bf9f143d63b296a06f43d02184fb0086d73331d34f6e5ddfc5f35542b6d6dbb119b9d7700942fccdc1b05887c05af5d5d163c42866d134d301d53b7b0955b2d0b0fbafca461dedd8f1c2405e8521e8c9793f2ee89dda70c365ee268a92c123df507135255fdf822437eb433ffe25b99f0795a2eaeab1fbf347c64fe055e7544e7b1179b480b4f4e32554d726d373446e975ad22341af9f4c3b9ea748ab965c9eeb9405908e4116879b2a92e8b4ef18718f5cd6664c0ec4b090aea4597566480548db972a84ad37d2f167e3fc8c5a38d293e7323666e36ecc0951ca167767a6672009c1a32b2f9fe3d9e53ced117f5ce878ba86c82ef0adab2d393d3eb42792271317bc0998e976064ea7a7c95c5f13e28e58d492b8484f40389b7f3dafd0089cdad0375b0a99e5de101828ce35ab049d4f5885489ce3f2f1e87a028ec0e60230b4763a5c02cc322d84298cab053bb354b2adcf7f876d4818e24b5a7fd243990cce1802cedbca6c1a9c779b1d9e924341587a04a92b076c8b6f4eec880de2f5e9a612197ef5e87e90198058350bdac0d0db236ae00771f0bc896ab16466f9043efd72aa480cebbaa4a357416b49da4f45fbda7f766ebe51f3bfae8a3b0d88438ffcbc53d22607839d3056372ffbcc5346690eca3b4d9c722dc7baf30816157b7b313d2a5706492702d2d55b553c125fa9c9b23a926c458663949c6aa81aea95af3d20b97249fe1f7eb2dc1c6e9118ef006a78ec101bc25cb3bb9c117762759fc540917c36428a72575b4c7bc5b849797026f19666b694671b8983f8e4ccf90285faa12957d00a703c0de7dec10b929832946eec9f191fa478db86f652878def72f3c6ea32321d0db75cb36dde7bd2ca703fffec523d38aa310ef2b952f479435dfb2feb0eec27d52d3bc7d6ade303b8c64c6a3b7f5029bb7f6555fb618abdab71cb8aedb0fdf449e17ec9c936854ec37e7e2c5b47237dae1f92cae1d32c6cbaa0b73000df56f1e288de03ed8860c7274a249fa73d8322fbcb637f368c16501bce57e2c24bef417f98819ee1c67b5a8412d603606c07a59662a1791e07ec99b04b3ece43c9d382cc228e26841f98335c250b148606800eafaf2c563691d5da1e37db01a271be52954d1b9e989dd19b4832ac72c8e219b1567ba82562f22d5fb09a7ae795c19655774101c571096429e27a40816957487db59e764b2693e89ebaac4a517785889026f320834f53b19a6f7ecbc759a37b815e4653dbf01daf836fa541775af7eb2217bb4a36c0effdf91793b6817787f2de18bea83e569793e5336c3c87c73d4c825740a8f200009c3e125d1f9a09751e460d2c2cd8499c7a1f5a919681fa36128f984b962ee87f6570ae121abcda2ce7c27c52d7ca8bfb6b56b0cd5d3d1e9c2601b2154bbbb44167d720f6f1c2c3c9bcdffd0903320247c080998185804c6d57c14939b9e2e568e13bdfac26bd45b28724768bd0186192a7dbc258e15ee6ad0e04abdf066386315e28208745a63df00d31805c080ea6afb34c167970d7cace2c41b32951047b9f058d09794db47901061db90cdd6c6d8bf4fad8209afaf3b35568fb687a92bab8acd89e242437619348e544e18f31fab1c85160b00f48fe9c2eedd8b992cea1a96629f49596d7de118b533ea03e431a8ce8ff7e1134dfd94891631b25a687ff62292c17c8db2926e15df0fb32c69e44888d8cb105240acd3b922bfe6adf99b7c56f448f9a9183d3386fbdc1a63d5080dcf9a9cda94105cac653bcf0b719ad786efe231cfd3798bc6ec6e280186a471d3fff1349eb80df73c1be06c07cd3cc69889583fe18ade1c86fea06e0dc039bb512d49bdb96dd279d9ca36aac548ebea1c259cf25e7f7889c6acf09cf0f5f3cf09d8179f6786a08f12c318dc902fae9d52209", 0xffc}], 0x1, &(0x7f0000783000)=[{0x68, 0x0, 0x0, "cd1ae800e4d9621a52afaf7183e41bb515f2f523fd0a7ccd7ead48bdf1725146d0b66748dee9d012ec7abf5b86780bddfe3f7dd5103c832bb98dbda56b7b99f670440b5432905984fed608f11d22290a6b48ba7d11"}], 0x1, 0x0}, 0x8001}, {{0x0, 0x0, &(0x7f0000f4b000-0x10)=[], 0x0, &(0x7f0000028000-0x278)=[{0x68, 0x0, 0xfffffffffffff50d, "6fe83b2dd2ae0c2e96cc35fd3195a2a3b8e56dca3d9a93bdfb5d3788d8eda31862ff058d430471f95e0f6195f433e182a900421ace0f786ee41e8b45e282b7b352552063b7b65166393c6e26d7c3000000000100005759"}, {0x18, 0x0, 0x0, "69a089de849d"}, {0x10, 0x10f, 0x4, ""}], 0x3, 0x41}, 0xd21}], 0x2, 0x11)
sendmmsg(r0, &(0x7f000050f000-0x78)=[{{0x0, 0x0, &(0x7f0000e8b000-0x40)=[{&(0x7f0000654000)="63f2b0d09b21bfbed09d681d78931d63d473f263ab1b0000000000000009f8dea75ef15c01176e6583bf66d56cbd776958752e0ae719c20388a9fcb1621d02a28ff669e2d8c2ad6f1b044915868dc8b89695230222e29c8e7d8c8d42d4f9eb5c0e20c93f0a8c02954be22745ffaf4e62efdf0e5652547722260492676a4ce91ff1f06947fc1f063d3c49ed244ffc68bec9bd13296f67ee85aab84ac32a77468be0d9dae03624fa119adc3fb0ab89cdf6b42412c3cda0c937a85fb27e60ee9094a296020737a7253dca9ee4aa77d43d9071f47b745167546818b4e16dbde1fa6bf88afdd21e07172a9179f8d490c98c41a45855ec08c0c5862e07579ec918923bbee5f16e25344c389966b2edf0a78ef78ff055fecf3ca58162f010d47dde665fa60ca0e76dcfebef863f768a4048f4f6cab367497691ccba9646b949199137335f4807595ef5c55cd8f8c74313b3ce2c3b78a4bdc147097e39d23f4c34f365392dbb1d7ab9571c4c5cc8cedeb21dd871e594f5f6221b82f3c14da69eb7b7af6e688eac5de66de08b509ff41b667a003f4197d34ab188cc00d3be31fcfe8be70b3fad598c5d0982f2d498316127a9c5ee03c4a49f37619b9bf2f32f01cbd2f02bc55481a042733ddc97f24e8705738a59ef04f8e097fa3d97f8555d1435672b8c16c4b745426e01e69dbd1aa6ad3a20a6aaa2dc8d227ca220317f2003024086ba1a19a76578b0354d8273d37e625aa5977637fa96d8b5adbfc474e780a00482aface6a8907cae1e7b684e372591a8f20843034691fa65779070cba1c018bb66978062e5633f7df5a5549200b3ea9bad1cefe738500bd32658aa30f38ce9716f311fec4840df8105da1ca2efb7df51563aac1f1fc9958382641548e23c89abfb7fd0d6f0f60d908106b32822125b2f2008e497999476a97068344d515738681d8f35aa7aab0c5ef8e7051dd3b88ac6437ea162b07c6ff998007f62db065b1205d30fcd04ae2b3af7e67d1a392fb11934e00bd3abd3f4ba9564e1295ab8d3ee937b49594cf5ff9d3779e0e679ac119e26f54a2aee26ad31f3ac9ee780451df3c5017f848312b21d8e3cfc7130cb8dcf373bdf2ddd750642e7ddad34f1336cf3ee482d783e313dfef3775da81f5e55dd94f3a4275afaf8d017363049bbf4078c14ea9240d56599118f0809689f3289a5fc0befd64fed24050423acab30cacb7dd76c02e1555e84580cbfbe5d1de3347869ff2174eb177c850268cb2c766d9546b1fc474c078c99807208a48cd222847ea1c53337206688d94b174c6c713ba492627f51ecf0f78a3b054960fc906403ff955907d9683bf216dd31ba446912abf0ff7139bfdd69d48c46f4c84e418d233484ea6804c326caae2db83423b8f0e660889c6fb8309141d445e603d645c033d32dd4131ca4fd7ecc9d0b3712e37737f8aa65a2a3b74b2f2f23c845cf49a8eee3e2c9c52424ba744eb8812f2c72fb9e7efbfc9060cd20e8441f7fcffcbbf7a7f74cde4c2658d52c7a95ebccbabd54c6806aabb75b6d9d68fab7b4f44af0682e2732be8d6fcef8e13b31c1882a6ca173105f1724973cc89d595386967f29932471154da3fc772e143117d034a5debde7b72816e5ca0468c69a016bb602520816874ef4008ede01f11011e3d3464debdeeb152128189b60e47d7f9fa94c205cd751af5167893cfccbb094b079548879d67a37b445501947bcf8f0f9d4aafb4959022aab91598973ec56f05c3caa8aca381eb454c158fbd1b74cb4e1e15636132007696d33084ca63bb23d7a33552d7d295063627f8ec7b05c76b4a2280bca6d3e7b774bc852202645c730a32a20d5a5bbf3b7f196c9d350f56b35369b685c2315d25e06d03c34c1da7da801a92ab58fe63a739638981c577363f475d24667cff3ec75b4d5a6811ace5ca6559c758f0e5cf428b2431081811670772e32b8f6f970aa4c3e44020c420a853600bb88b2968613ba43c5e22eb52c07a974795304339b7caacc3e40c4fd39ddd131b472f759952a72e135d6f3771381181b4c7378d690daf605f87705bf65e8a12b4bda17ecdaaebdb233bce8c154d770520e9638bdf23f795929316796ccbf60bc254a17908f0aff72f899e522f45f5f94e90fcd0f48d9e4e78ce2bf83ab0363014e5292daa68286ba592400d6e240fb9e76c3ba3c83bfa96b3ce8c9bac73aa86ee79212765e3eedb10aa6bcf4b28bbcf8f16cadf9da3fde1ff65af09efe22246959535943849e6fcebe00cd75962064acd7eeebe863130f87b2dc969a23116e2c87b5be9fc79d5218588cf1b14af224eb25e61d7df13ebdeed668cbf6cfcff1a75ba4b394776ba7dc9e1122f5862a0406fc7780598dd2f1076a1eb85a30c1f3762f37a8cab305286228abdd2df7f092c57ba5da2681c7e9ff5003ced5b34442a045b814ebe7eff21b9c3440a318b86f38ab756d3b5ef0fc61afaaebfcf26ba8a4f8ec5420741a555f232e992e30cd2a16be78532e18ddffff00d69bd733054233db36faabfa5efb0c002742a3002aa20d4e6eaf692b56d4ee449520cb8776f174f2fe3d90b2bb74efbb562f86b2b8337c18e2db6b7889e97e0a9419a94ba3e8f9a37b37e6188e94a077f12ba8eab20405bf8f67794aed0ba3d60ba70927d39a9701056b1539c6768e157a8cf211d7b497375123fc1a3fe81b6a78b337797a954f0cfb8bd971a83054b8aab8c06204058c10b7c8c966d6727718d3d2fd732f2bad30b106669401682a9f86762cbe2537c5bc96069bb729bafe08a9c5ac899d462e3b0ab3371aaa7a2d10d184e5452a7375583cb18496332d361da9764a284fb92bc15e0bf34f1833c144dd6018049be022f7fc1fef9d1fe693a0e82bd20b02fedf89b5d2e8", 0x7fc}], 0x1, &(0x7f0000baa000-0x618)=[], 0x0, 0x0}, 0x0}], 0x1, 0x0)
getsockopt$inet_sctp_SCTP_PRIMARY_ADDR(r2, 0x84, 0x6, &(0x7f0000e03000)={r3, @in={{0x2, 0x1, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, &(0x7f0000a95000-0x4)=0x8c)
socketpair$inet_icmp_raw(0x2, 0x3, 0x1, &(0x7f0000bca000)={<r6=>0x0, 0x0})
setsockopt$sock_linger(r6, 0x1, 0xd, &(0x7f000099d000-0x8)={0x1, 0x200}, 0x8)
close(r0)
2017/12/15 23:28:16 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_tcp(0x2, 0x1, 0x0)
r1 = accept4$unix(0xffffffffffffffff, &(0x7f00000fc000)=@file={0x0, "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f0000000000)=0x6e, 0x80000)
fcntl$getown(r1, 0x9)
r2 = openat$rtc(0xffffffffffffff9c, &(0x7f000064c000-0x9)="2f6465762f72746300", 0x4100, 0x0)
getsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX3(r0, 0x84, 0x6f, &(0x7f0000d37000)={<r3=>0x0, 0x2, &(0x7f0000b23000)=[@in={0x2, 0x3, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0x3, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x3}]}, &(0x7f0000c71000-0x4)=0x10)
setsockopt$inet_sctp6_SCTP_SET_PEER_PRIMARY_ADDR(r2, 0x84, 0x5, &(0x7f0000ee2000-0x8c)={r3, @in={{0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, 0x8c)
r4 = gettid()
fcntl$F_GET_RW_HINT(r1, 0x40d, &(0x7f0000b68000)=0x0)
r5 = perf_event_open(&(0x7f0000940000)={0x2, 0x78, 0xfffffffffffffff9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40000, 0x0, 0x0}, r4, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r6 = dup2(0xffffffffffffffff, 0xffffffffffffff9c)
openat$rtc(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f72746300", 0x80, 0x0)
fsync(r5)
ioctl$sock_inet_SIOCGIFNETMASK(r6, 0x891b, &(0x7f00004c3000-0x20)={@common="65716c00000000000000000000000000", @ifru_addrs={0x2, 0x2, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
r7 = socket$netlink(0x10, 0x3, 0x0)
getsockopt$netlink(r7, 0x10e, 0xf, &(0x7f0000ee3000)="00000000000000000000000000", &(0x7f0000c86000)=0xd)
r8 = ioctl$LOOP_CTL_GET_FREE(r6, 0x4c82)
setsockopt$inet_mtu(r0, 0x0, 0xa, &(0x7f0000dc4000)=0x1, 0x4)
ioctl$LOOP_CTL_REMOVE(r2, 0x4c80, r8)
writev(r7, &(0x7f0000fd4000-0x10)=[{&(0x7f000032b000)="390000001300194700bb61e1c3050300230002f8010000000000000080000900130003008300ffffffffff000000000000000207000d0001a2", 0x39}], 0x1)
ioctl$sock_ipx_SIOCIPXNCPCONN(r6, 0x89e3, &(0x7f0000e0b000)=0x1)
perf_event_open(&(0x7f0000940000)={0x2, 0x78, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
socketpair$inet6_icmp(0xa, 0x2, 0x3a, &(0x7f00009cb000)={0x0, 0x0})
clone(0x200, &(0x7f0000fbf000)="", &(0x7f0000744000)=0x0, &(0x7f0000f8b000)=0x0, &(0x7f0000804000)="")
getuid()
2017/12/15 23:28:16 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
set_mempolicy(0xc003, &(0x7f0000b80000)=0x8, 0x801)
r0 = openat(0xffffffffffffff9c, &(0x7f0000e05000-0x8)="2e2f66696c653000", 0x8001, 0x3f)
r1 = msgget$private(0x0, 0x0)
msgrcv(r1, &(0x7f00006e6000-0x1d)={0x0, "000000000000000000000000000000000000000000"}, 0x1d, 0x3ebf83d110868d76, 0x1000)
ioctl$EVIOCGABS20(r0, 0x80184560, &(0x7f0000d0f000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
setsockopt$inet_sctp_SCTP_DISABLE_FRAGMENTS(r0, 0x84, 0x8, &(0x7f00009bc000)=0xe8, 0x4)
ioctl$VT_RESIZE(r0, 0x5609, &(0x7f0000892000-0x6)={0xca5, 0x3, 0xffffffffffffff5e})
ioctl$KVM_SET_USER_MEMORY_REGION(r0, 0x4020ae46, &(0x7f0000e58000)={0x10201, 0x2, 0x1000, 0x1000, &(0x7f0000960000/0x1000)=nil})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getpeername$packet(r0, &(0x7f0000220000)={0x0, 0x0, <r2=>0x0, 0x0, 0x0, 0x0, @random="000000000000", [0x0, 0x0]}, &(0x7f0000390000)=0x14)
bind$packet(r0, &(0x7f000025b000)={0x11, 0xc, r2, 0x1, 0x84b6, 0x6, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [0x0, 0x0]}, 0x14)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mq_open(&(0x7f000057d000)="2f246367726f75706c6f00", 0xffffffffffffffff, 0x2, &(0x7f000075a000)={0x4, 0x0, 0x0, 0x0, 0x1, 0x0, 0x800000003, 0x0})
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
symlink(&(0x7f0000a6b000-0x8)="2e2f66696c653000", &(0x7f0000a66000-0x8)="2e2f66696c653000")
r3 = getpid()
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffffffffffffff, 0x0, 0x0, 0x0, 0xffff, 0x0}, r3, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$KVM_SET_XSAVE(r0, 0x5000aea5, &(0x7f0000a1b000-0x400)={"1b2019f1d2ab6a4beeae6d62d2e70ffb546aabf1ce032b8362e25d413bf21629ba5180956f6b6965c80ef391c8c90251216502ea9c1a120b99227b86aa2dff8ce5b4a363878ee2fea06ece4a9ae24a34153515789b3b18d2cd649b5093c52454859c4d39e2ac6d252d4f9a35c65e01a9c02269215b7b65be6c52fb792fa2a2a5155ef659457ce00f84bd17a043f1c15bbf78ec9f3dc9d24fde229c23da523115f59ac62c14886cf6d3c5821c3a0eb5393a0d382f63ccbb59b7bd2f8722b9fa685eaa693ecea28473a3b98ed9752b30f316797ab6f51689f7d0885d5f0bd908193af73d6a535ccafc4b3157251c72da30ed2a7600f64870632cb51d8d322e65cd3e9de77da83befc443bcd8f1615e40cd8781b61be79359ed2849900db8103ae38ca232ecfc886961ad2e409703c544c6dd3cca7d50bd93e9bf415e17856668113a8b9e8c25a3bbb1386295cfb3734f0488b77955bbab79c719879e98079ed9d519957f68b1dea72e1ad3857db4152e517664b8678f78020a5ce2ba2df6ae99344cee025a7dae1fe73c43815e8ea8c67b8b8288acd7f05fe9a1c0bbc4d30da948ff936d7ffbbb6142c4b713a5d2987c173cc2c1e0fa7a9c83cdea4164034b8adf88d7c251f56075b3fc8edb758aefc527039759038c971f5f827eb3690e96eec1fcd2e19951fa5a760aa43e07d4f0a29fd36a791f6f1825fbfc917c187270ad8c8deb6a6728cce45843f3b008b3e3a27d41abc505112e1b803bdeee232b0180f5641d5c5dac5d8b53bd41bef3093eca180c8b549ed2bcca5c0497e61195693e51feb0a1b2172a3a3c91faa5cd99c83a8e58454bdda8761791ef8122c88fb2476a24a2a94b0026f6687587e97080169a2d40c5864e6bfe610a117715c170cb3ee9a3f6fa27d3f9ddca18507382f7f8ffba9a4fd99f748fbab809b7ca2b8c8e35ab302ee5103abaee0058700a56a61e41bf7e140b08ba148e2fa66007a66bf7ec01b38afca48c689fcad2681f08c305f54b01f2f91dcc5a1ee206f8070a182c94da86faf09f7f6da7a31c991ff65ad0f1ae39e8721f62244a3899a7c719590605983a9a978ea7dc0ff8c17eaeb62727a9e799c61ace34e3269c16727bd2c2ad4b0127abea93a795a1be39c9b7644e5cf5966edfd4527335555bdc1ba1cacd1257041049f5a7fa9cb8158e5bbd03836f9a2c7b74b097fb888e66f1ae87d7fcfe95782b3fc2f318973b5b4ec7738426d080cfecdbbd91df5a141fb20695a180bbf927d072b282d6d55f0e39520f1886b4911c256d734ae466e29d0c7768f9e95f0a394539dbfe433041f31b9e877d9fdb92bd63a984a0bcb4810888f60912f480f35b54fd7ddee76243a8032cdebcbb9a4962666cf18c1c8f72fbac8d9515b65c3a4239044c76ccec415b26875695b3dea81f5d0fa6c78fdf574964d85ef2040419f1"})
getsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(0xffffffffffffffff, 0x84, 0xa, &(0x7f0000098000)={0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0x0}, &(0x7f0000d2e000)=0x20)
bind$inet(0xffffffffffffffff, &(0x7f0000a50000-0x10)={0x2, 0x3, @rand_addr=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000011000/0x3000)=nil, 0x3000, 0x1, 0x4031, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x0, 0x10, 0xffffffffffffffff, 0x0)
r4 = userfaultfd(0x0)
ioctl$UFFDIO_API(r4, 0xc018aa3f, &(0x7f0000005000-0x18)={0xaa, 0x0, 0x0})
ioctl$KVM_SET_NR_MMU_PAGES(r4, 0xae44, 0x7)
ioctl$UFFDIO_REGISTER(r4, 0xc020aa00, &(0x7f0000019000)={{&(0x7f0000012000/0x2000)=nil, 0x2000}, 0x1, 0x0})
futex(&(0x7f0000013000-0x4)=0x7, 0x0, 0x0, &(0x7f0000061000-0x10)={0x0, 0x3}, &(0x7f0000061000)=0x0, 0x0)
mlock(&(0x7f0000012000/0x1000)=nil, 0x1000)
ioctl$UFFDIO_UNREGISTER(r4, 0x8010aa01, &(0x7f0000004000-0x10)={&(0x7f0000012000/0x2000)=nil, 0x2000})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
msgsnd(0x0, &(0x7f0000057000-0x1008)={0x3, "152e874d853d856003db9fa22bed0e2fece8ee5cb1874c5724acaeb45ca65f0e335171a6007fe7f9b79adf28d8b7f408634e448de724b521a2807e828caf7c308ef0744aeac4e6d3d729e9814c5a062166947c293fc8c46d579ccadef4dc9de53ccbb007a8fa4276c78ba667efbd12c93d9616451abd9901e7a7511254a5fd417d51c65f918663173ef89c9f95f02404b59cf051e5cde5390d145eb5732316bab31d5fd723e6a3e5a41fd8703d3eb0b532cd6a837731fcd9f1e0991ba6ae2d43ec4b375e663c3e998c04f5588fd459fe4e315794b26f084290374720cbdd7c7b0fbfc1959cf61bf6a676ea43f4dbc057f471ca7732325c3ffca21df2b9f2d3975858adc2043a0ec4d9bdbc5c0f21d77e16bea62e1dd5dcbef737f9d506a76669ba15532f87c5cb4f9d09b04592b8168d7856a4c368fbc1b8695dde6a21cb551ac7324ff1e0f01b33b48253cd1e47e8de7d52b814b428c9ec7266cedcd7ff508cdebdb6d1c7771fb940ecade395cd28566cb9d2243dcc9b929e935ad22c35bf03adfdc3e5585a8e1e6e62eacf1fe70bbc477a47c4acca320f99ca7d69618a2db0c49b59edceeed6c7d3c39045684c2f2080c2e47b91428e62bf382b95952a43024ebb87e628636494b45932371bb7ee2bb9504feb3d00a8d8ea8b934954869267d41ae1ec17234274608b6d4a028645e5d4c8523429fc83c0d0f04cf4b3c04dc7674c9d902a349c3f00af6e0ea5976f63563f79502e6cb7671a0429224f346a52136c6be5b3244ecc0414ab22d091e98c862c10b4b818b71c0a6ce64325c70ad61c6647c266dba40f03c287ffafd7cd802f86d33e89612622d8080c55333c5ffe0c05a03e523a89cdc71209facae62e3c74cd19685914ce4366eea10a8af5dc5ca7dd60d2a424c6522d7dbc3289213d2252f18aaa090e7c319eede5767e9b189aadbcc53288929e0a38834bc9c467ac934441c599b6935b2d639ea1852105326bec30c98d75d3b855ed659f1a53a7f481996401a2a4c2644c3c056c86dd19f96b7d80b0e171a017e6d1872b2839788b4703c46cc7bafd5d4f89be40e16d1841f80234a0761bcde128dfa9608a3364757f94d2d014c2260e8e2099cb15bcd2da5bae8e9de08c6c05436c105db8f7a833b8836a011d54bc67df044c3476004c0cf84c47c2acabd40e5d92f5b0db1ee51fff48e7de79f4c385a1b221b441f1836e26d8dc48d8799725ffdf95641c760aba76bdb233bd132ef88004c1e710a2314fe951c7fca12e24636b4d163433c2a08255b34ba1c8ce65dd2faf0be8ddfede3b0555a2e36b9b254131b3f1bb03be677995ec66d0795b527f1071076023c814f38a51fb138d10d54c9b1a118137524a5b9e25be55065a116657e84837cc5012aba17e5d4959fd32e0d3af26d58b6de9d640e6c4445caca4b0b1b14ef18cb3662850e35db13ab590c530121904a82e9c39c1bbe7af31b8a92fa0600a3ef6b47667c33b1cb9f97826bbc2e752d1e6cdaafd94acfe79dbe03545f0cf0059b13f890f07d3655719419731c76a719636fd4532e1c09e7ceba92e94df4ddfea649b6bad874ce67709ad90028550212f59d961e6c565522d774431ff3f0409b8b350e15dcde32897e7e262fafd94b0e3b7a18bbed515627cb5b9e5406ed8345959fbcd779fbcfa0e08a47375e0f2370b97b5cb5f6b8b29e06cccc1481a39c047ef401e66869a8ca422b4e42047237b012a09f75168576a636ca1df19b28abb1b0c2d2fa7037c8591f92b206393d4a47ac1ed8e35fd930907536879637ec0949d5327868384fcabf6cdef4aaee834fc18b5f45ffa6d91a8f668cd10bd28ceb49e25ad600825f28475250571ff1d050025929ea8f801283cbf5dbcdc72f8c854d8af00c6167a155de0ea7cf81b1677fa28932acad113cb3f2c11169ee6ba85aa53044e3e3e3516611597b88a577488ae691dc811eb415a1cfb392fbc1e221f1b36eb2cb3bc95530332bae34a746c5061c2af5c839ae138e446eca34a41fe49c926e304ae830a1dd70e278ac842d364890f773e1bccbf879a7302cb29142802a778fd1a24f13747d4025903f1c028af9edcbdfafa942338ce4ab850ad6525080a8ba45b58e1a22f540c9290054b67c9beefdeacb0845a4f1e4e5f5f0850139fbc8279a029938a9f7675a278aaab17707b975bbba11b6feacd2551206f5b20ef9420e0cae8ea4b69a436073d1aacd83a50ecf17009ff2de4478bcf366bc8e7653dcd75a4494a765e7196bc8f9cb0211f9de04698d707fc3e5aba8c8f2ca9cc646987dcfa531bb4707d7ae1a2dccff9d3895281a087fff91dc592cd41e82bb77fc7a41e942fd5265e13167360eb7e0675f002049529486993cdde13ef283a446ca91301396b8a6d4690fd8784d511ab70e0ff2429379044a99ac3b7561fa890b24eeeabe3eca219a5fea32193ceaf64493100515e01e95789754b468a0331c43168512d9f57c8774cd0b62d1a4baafad5ecc12d2f1a2ef605ac09c577d074239b2318eaab244f41555d26f2d2d5e9434aaa543744ff951fb480e34263c0c4e5d7b76ad77a2127b6fb8ff0d93540b67e9bf1bf29d81b5041b6cd10d7e657cd3693555c1920180d7cb37641b6f099ff9c8ce0febb03da47dd8065c5ff36f31b70b5bcf107cc1b5b03a83528a9d73d15dec97c1e7c3bf4c1ac5d66e547f25f059eae72af00e2a8adf27e92eb973e400631b8a45943c78c30fd631d70d250d3e3475b4d9f03cbaca45ec674b85b0b0a3fb23f953d3ecc0a7f56ad72a214266b8f9756c4e44e62686da6a5be317c42ae93313e1c6cb6bcce2efc36a138d3deb2f1ce80801c2c051b963d5bbb2f2f90ff6f8126f417aeb03938015c92bd5a775c4af3c3fccfc6dbb3244cce13d4948ebaa4d8adab9b570678e3d6dbc960f11ce7fdebeac3a86e5b3636ddf3b6d9e73324e87483b37564d20e446085454741869a66bf8827951b82b9be8096c25fa1dd32be97f4833309c9a5735c9a01d5a1bf40ad9e590f599fe49765e754f6083da9e10a8bec4d18aca9e88b46d1cd864819325e0473e95de96425402a51946e22629e373fee9b63200ae2d6913a0a61210306286c6f851afe8d11038f6ff9da006f00f403e43b9438dad2a8e2b880004787b5d7a31bc7713792e8bfefd3275444f0f5646320a94684d562628a6c388c73646e6612f8e33a00e692f48c104c1499bf5cb966be8385b2564e852a0a3acf1e58cb44db2b39f5501a3ba77f915919412f8807bbd3c220f9fd6cf8cee692cb2bb3374a56279b567e43a89189397febf4c0cb4c471ceb150770458ec0523ffc64ea65e91adcd5e014bc9b8690313b72618c31943bab4a54c535b1b0c32ca088d672515659ba0d6ddf2d19e6c8b9c1f4a876a984f849ad469e9e79b6196737386cfe6dc7e142572592cdd19e86d5c1a7bc89cfb0f9f632123504b467f7f8626c55792fd4cb944bb48438175e8a077cc151bb02a3b54c6e401dd9d4ee84f534f810f38a71aac0d543605436d65117e02ad8859d94a0203a43ad2b53941d56b86f46a4f59313d5d0a9282d8354e11c58d0cab46ba01eb75227018d178f58aa811f656ca2a314b35e87505efaac4b9fc295da29977d83706878c25b999254f1346d40acbe1f5e7fb71082616a139e8d180e0ed9466889729352134c71a5c82a0e53c9a7b199ccc839181b220782e97b816e8d6459e60f0ef483914ef59ce223ef95eabdd72558387a1030795afd7ed700341790162903055564745711f0c2911ab3109074946ebcf11ca2d5d556aacf411f6c91e7e14b95b8bcf7a1123224cc1c022e57ef8f39218c4d95efc334fdb95703498738c6c94ec7557e2aab73f98bdd1d809268a1fdc4a60d25b53ebb427afd72a2f2fe165df8d881ec49df7da71e9e28430ae3a107897e23a7d36c7ee6b1c4dbd1e4dc3482ae39f1b30a04158feb7e79d4d1dcd70fa3d150b41290a6fe5284828e6561a6884f4897612206dd64cc9f0a1d90013b994ae2a00aaa1a88657b46785e3611224007c53ce6e5c3f480d6198b737d3f59606cad9439a541feb6143fa71225601757504deb6e69a7328d234ba0c659a835124904459dcdf5742e3c3d31c472c592f91a58740e9d7129e310a32be74edb6c519e5cd3a71ce99bf7427d0e73dbdcbcb159d1f88de86395a9e9cca509d17a01be2076cc789228a2635fa97e8f5fec2a3a83755183469f86609e422e759add9181d6bca6839711742dba8086932a1661eaaa0a45ab9f6b57237ab36a700fb9e059b41d6b4fbde8665369c65ab113badd983a9cb3285c3a6376481d1a5501b9a7c8ce63be29cb698e1d0badd035d67491237ee4ef298901149b334a957619d70c665d92a9eb98f858f545f7788fba24a15bd38d8fcc5e3f38df1eeb8c1d53ca25f711b1ee6a6939a511d8a7e33fde1d5d10b293af2150359aa83733a514b5c974cbb6d79d496916f3d150b925ca5ed72ba67bc2c7a0375f496662aa7dde83922311b02bdbd678b00fb6fc1fb1042eb664dfe4f16f2019c2b1c6d49646b52474a884ea71ed1b946a4d112b585a0a63b88a10b2a4081b6d2e0bc553f5293c66844463b594a6cadd431d5e61d259bf8bc4e097d63b30fe9587d406476e901608be851ddbc7ad1a80f6162764991ffb58f104751170140d61f00c326f6cf4b1a1a2f3fe248831a2eb90381dce4c66a18dc882f69024e1e8d53e631afa282e639e777255ca8b09a46844448f99a5ed87742f34043edf7ff2ca15a076936e3b82725c2c2bd9f7356238dc26e9a4fabc71f9884cd4310265f96e7fc99090517bb51cb52d01e10348c2b2f734ec2dbac20b755b51c4134d39c050467bc0715ad6b6cb997076881bcc72bbc0c5c5acdb08b3f0a5d22bd7ed12c0996d30e6cf87922e448716d18d792a15621779c6057ba86c153bccf9d1d5df56c3c6f8715ccc1fb4b298cad414c542d510e25d470284ba9c02f87d5fbc29a2433c06272e018cb9a89af8157ff3a9e34de7304d178355e16bf2c470deefd454957e159f00f409a3f0765aaf25ecdee9a73504536b72eefb549eccdd7774760b784272f1d65ffdc2017e1f4959b337a779fa496b1d9a81bc587aff611c600f37a810bf67bf420416fc405489e921aa2f3dda30690a3dee204f3d4ff466c88d1f919c9b536e07be4fbe2aa1511b37ef2c3063fd9cd43d6086522aaed9abe6d12cd1c3c6936737c230dbe281c1af57bc39d1b9a83bc0b8e9e991da6df5440417e72ab1f39fe3b039f85c7d159de3dcc6587cfa3f7f088eb3c7704ca298c9653c9a7b4bfcc0b0faaa8f5e368a0683d06f1f496db798482a81977d8bde3e4697dc9779355a49bff280633d2e250a2e8a97ff1af44cbd244db291e75effd8fa7163cafc1099f621adc90a05e09b485b4fdcefe800cc27ca584f1406a9016a61c9f4f957d641caa7609c2a62d9e22f920b1a41e9bc60d053a8b9bc4ec65fb61f95e3363d00ce50b28b2b97c416ff1c3de30e2ab89e26e7cc5861006eed44ca9b5a36b8902de663d876329fc1f2314d19eefa300b22d5b822ba6e60dd86ad98e13f18d8026ec61796fc6bc325c99c04a337f075941607562d0c2449a40b1785008fd6ae03e75a1fcf2ef36b5ced0699ce3c39792007d7dc43dd6daaf1e4cae9cfe641bfc6fbc4cf0f5a0969e4267aa37accadfe4c727fe8ed6bbcb505b9884f1ad1"}, 0xfd1, 0x800)
2017/12/15 23:28:16 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$kvm(0xffffffffffffff9c, &(0x7f0000c91000)="2f6465762f6b766d00", 0x0, 0x0)
r1 = ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
setsockopt$netlink_NETLINK_NO_ENOBUFS(0xffffffffffffffff, 0x10e, 0x5, &(0x7f00000e0000)=0x800, 0x4)
r2 = syz_open_dev$usbmon(&(0x7f00001dd000)="2f6465762f7573626d6f6e2300", 0x2, 0x800)
ioctl$TUNSETNOCSUM(r2, 0x400454c8, &(0x7f0000549000-0x4)=0x800)
r3 = socket(0x1b, 0x3, 0x8)
ioctl$KVM_CREATE_IRQCHIP(r1, 0xae60)
r4 = ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x0)
r5 = ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x2)
syz_kvm_setup_cpu$x86(r1, r4, &(0x7f00000d4000/0x18000)=nil, &(0x7f0000912000)=[@textreal={0x8, &(0x7f00009ea000-0x27)="2e0f201e66b9630300000f32baa000b8be03ef0f35f610660f15e50f01cb0f300f01cb660ff2e3", 0x27}], 0x1, 0x5, &(0x7f00003e6000)=[], 0x0)
close(r3)
bpf$BPF_GET_PROG_INFO(0xf, &(0x7f000071f000)={r0, 0x28, &(0x7f0000e0e000-0x28)={0x0, <r6=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, 0x10)
bpf$BPF_PROG_GET_FD_BY_ID(0xd, &(0x7f0000752000)=r6, 0x4)
ioctl$int_out(r0, 0x2, &(0x7f0000a84000)=0x0)
r7 = dup3(r0, r5, 0x0)
ioctl$KVM_SET_SREGS(r4, 0x4138ae84, &(0x7f00006f3000-0x138)={{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x101000000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x101, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4df993ce, 0x0, 0x1ff, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, [0x0, 0x0, 0x0]}, {0x0, 0x0, [0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3000, [0x0, 0x0, 0x0, 0xdfee]})
ioctl$KVM_GET_VCPU_EVENTS(0xffffffffffffffff, 0x8040ae9f, &(0x7f00008af000-0x1c)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
bind$bt_l2cap(r3, &(0x7f0000799000-0xe)={0x1f, 0x0, {0x1, 0x5, 0x7, 0x1, 0x3, 0xcbd}, 0x3, 0x7}, 0xe)
inotify_init()
ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x2)
close(r7)
clone(0x0, &(0x7f0000f42000-0xf5)="", &(0x7f0000ec4000-0x4)=0x0, &(0x7f0000200000)=0x0, &(0x7f0000f42000-0x6c)="")
getrlimit(0xf, &(0x7f0000763000)={0x0, 0x0})
connect$netrom(r2, &(0x7f0000b68000-0x48)=@full={{0x3, {"be4a64e5141086"}, 0x4}, [{"47c40a23ba0b25"}, {"bb820245b93a6e"}, {"bbdec0d42f23a4"}, {"fda406068b5476"}, {"242f678c7b04b1"}, {"1081502356bcc0"}, {"ad67993ce80776"}, {"54b727de3e09bb"}]}, 0x48)
vmsplice(r7, &(0x7f0000c93000-0x30)=[{&(0x7f0000648000)="4a135a32b1b010d944a8162c14d52f34ad32d1f82c6c3e026a64cd7e08b5f2202481afd1a6cc4fbd4555ab05515c2d969f64629e7109f3f24df3635b7e8b6e9b15b626dfa1aab34fd736aec43c9fd435c4e33447a69f10f1e4b4f23afa4a3d8f8d4cd26146a0ce5c07e6d5544f96b5b568428a5255155b0e068f76", 0x7b}, {&(0x7f00006e9000-0xb4)="25fea991791366a76018432243e5302dd3b78b28097b985e986efdf46697fe5ab35eae98523493a084c4fd3768333078349eef830ab1b94fb7a455a31583592d649e1dcdc84d35667b80ec6000b6e5db766bebbd073f90ec623427c57c7de291194c632b57e5e500a8fe5e1981743a71bcaac2de39bac3edea6f3ce4c00476c768e4395c728021d9c8f240d43a1d59f470c14c43cf0d0445282005289acd11cf43f5ffe0fdb500da76d28dd925d701bd9665684a", 0xb4}, {&(0x7f0000983000-0x38)="fa56099ed14fd0cb48e755d13a621266ac5eb795a588435c16ed2bcf00d05ee18bb23c36f77846e3bf16afcd14ea5e7ccaf8ae2d033009ff", 0x38}], 0x3, 0xa)
setsockopt$inet_int(r3, 0x0, 0x15, &(0x7f0000beb000)=0x28, 0x4)
ioctl$sock_FIOGETOWN(r3, 0x8903, &(0x7f0000cf6000-0x4)=0x0)
[ 51.121112] IPv6: NLM_F_REPLACE set, but no existing node found!
[ 51.143947] QAT: Invalid ioctl
[ 51.162221] netlink: 1 bytes leftover after parsing attributes in process `syz-executor6'.
[ 51.175146] IPv6: NLM_F_REPLACE set, but no existing node found!
2017/12/15 23:28:16 executing program 6:
openat$loop_ctrl(0xffffffffffffff9c, &(0x7f0000153000)="2f6465762f6c6f6f702d636f6e74726f6c00", 0x420c00, 0x0)
sendmsg(0xffffffffffffffff, &(0x7f0000e86000)={&(0x7f0000fdc000-0x80)=@generic={0x10000000001e, "02ff01000000010000000000000007e77f5bf86c48020002000000f1ffffff009a480075e6a50000de010300000000e4ff064b3f013a000000080000008f00000000ac50d5fe32c4000000007fffffff6a008356edb9a6341c11d45624281e00070ecddd02ebc39750c40000fd00000900000000000b0000db000004da36"}, 0x80, &(0x7f0000d24000)=[{&(0x7f0000046000)="361a33806848c73ea556b39384d4bf90a5c645d9a1c54d01994ff2b48a6623f539a30ce7a3c6252587fff7c0edd1c34695954847e603a0983eca7dad412b9c2ff5c0f42c15acad953192e9d80f8eba41fb6b733252a0506bfe9f", 0x5a}], 0x1, &(0x7f000012e000)=[], 0x0, 0xfffffffffffffffe}, 0x4)
close(0xffffffffffffffff)
r0 = socket(0x1e, 0x2, 0x0)
bind(r0, &(0x7f0000f00000-0x80)=@generic={0x1e, "0103000000000000000004000007000009a979f321b30c7bc8790405c7bad62e0a43a632ed4938d36d73fb8f84019eff59829a2b0afe7ce43a4b2470a0c5216669ca021f6f65dcf160e7e58f358c0002f0000158d19bcb53f1314a8ef151622c0005f9c8ea0be50077aeb81c9000226d7c980ee590c8b9f70dc136cb184a"}, 0x80)
bind(r0, &(0x7f00008ff000)=@nfc_llcp={0x27, 0x100000001, 0x4, 0x7, 0x84, 0x4, "4fe6871872daac79c23776eaa11647a4b5f84658b6563b2531ffe1a9a095c335dd00097f34129efa12c69b38c55e400527808f4d60ba3fb53a694840b8086b", 0x7ff}, 0x58)
r1 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000e04000)="2f6465762f6877726e6700", 0x2100, 0x0)
ioctl$DRM_IOCTL_ADD_MAP(r1, 0xc0286415, &(0x7f0000bac000)={&(0x7f000000d000/0x2000)=nil, 0xfffffffffffffffa, 0x1, 0x41, &(0x7f0000e38000/0x3000)=nil, 0x40})
getsockname$packet(r0, &(0x7f0000f88000)={0x0, 0x0, <r2=>0x0, 0x0, 0x0, 0x0, @remote={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f0000b3c000)=0x14)
sendto$packet(r0, &(0x7f0000833000)="3868a096b74680c47b8e696f6d9f253152def2eaf06d6a3837ab77cca9c5f3faf628cd784255ca6beff5e6efe8f5c87a6e28e5d61278d24f449990a837712d31f0fa35de6b8d44ac006b695390d7bed9b586c77ecaf4ef690905c204e4a0f0f18dc012e150562e4ae119effdf429403206665d1482f78538347dfc2c9cdf61ee0a7f62cbe62272634d36afd7864a3418", 0x90, 0x4000000, &(0x7f0000049000-0x14)={0x11, 0x1f, r2, 0x1, 0x2, 0x6, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [0x0, 0x0]}, 0x14)
r3 = openat$vga_arbiter(0xffffffffffffff9c, &(0x7f0000364000)="2f6465762f7667615f6172626974657200", 0x4400, 0x0)
getsockopt$inet_sctp_SCTP_DISABLE_FRAGMENTS(r3, 0x84, 0x8, &(0x7f0000d25000)=0x0, &(0x7f0000000000)=0x4)
ioctl$sock_inet_SIOCRTMSG(0xffffffffffffffff, 0x890d, &(0x7f00008ff000-0x78)={0x200, {0x2, 0x3, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x2, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, 0x100000001, 0x101, 0x9, 0x3, &(0x7f0000fa7000-0x10)=@generic="f99a3fc7dcf4c9fac4a3258e27ba344d", 0x7, 0x6, 0x2000000000000002})
timerfd_create(0x0, 0x0)
ioctl$LOOP_SET_STATUS64(0xffffffffffffffff, 0x4c04, &(0x7f000089b000)={0x0, 0x0, 0x0, 0x8000, 0xfff, 0x0, 0x7, 0x15, 0x5, "4d5de8b173b9b4f1a880e11c4c3dd2eecdf74631f58b09947d8a7ff2547f149a35c624cf48c3e97a2768415e85b94c5e03381eb3d3b465a663d0fc88984e3001", "48bf21f62fc266b944d59adda6e892c60ad4735a104d417fabce4c338bf5653da544e4f217fb65c61abbe3bad5262d173a50d6c3b58bbc37c7917aa3f0905c51", "7a47f79c46c428d20bcae0c844f518a9df3dbc4ddb8d5e79e5b3bb68376394ee", [0x2, 0x7]})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet_icmp(0x2, 0x2, 0x1, &(0x7f0000000000)={0x0, 0x0})
socketpair(0x0, 0x0, 0x4896fff6, &(0x7f0000001000-0x8)={<r4=>0x0, 0x0})
getsockopt$sock_cred(0xffffffffffffffff, 0x1, 0x11, &(0x7f0000000000)={0x0, 0x0, 0x0}, &(0x7f0000001000)=0xc)
clone(0x0, &(0x7f0000001000-0x1)="", &(0x7f0000001000-0x4)=0x0, &(0x7f00004a9000)=0x0, &(0x7f00001e5000)="")
openat$hwrng(0xffffffffffffff9c, &(0x7f0000423000)="2f6465762f6877726e6700", 0x3ffff, 0x0)
sendto$inet(0xffffffffffffffff, &(0x7f0000af9000)="62ffb6b8d88636200040ad02d49913e152a357d81739a7e8bb065f6300005b75af44009a91a93b9c2a422b5101fd513ccd7453cf86ef8d92c60666f97c06f316e8f81d", 0x43, 0x800, &(0x7f0000bda000-0x10)={0x2, 0x3, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
chmod(&(0x7f0000cda000-0x8)="2e2f66696c653000", 0x20)
syz_open_dev$loop(&(0x7f00007ca000-0xb)="2f6465762f6c6f6f702300", 0x6a, 0x802)
getsockopt$bt_BT_VOICE(r4, 0x112, 0xb, &(0x7f0000e04000)=0x1f7c, &(0x7f0000462000)=0x2)
ioctl$TCSETA(0xffffffffffffffff, 0x5402, &(0x7f0000407000-0x14)={0x4, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
r5 = memfd_create(&(0x7f0000a83000-0xb)="2f6465762f6777726800bc", 0x0)
sendmsg$alg(r5, &(0x7f0000dc3000-0xc)={0x0, 0x0, &(0x7f0000be5000)=[{&(0x7f0000b60000-0x1000)="5d8337b5926623a2dbaf5cc765e57f71f59c658079bac3c27c485bcdbee492abb8e5f44b479800a1b81d53b0cfa142f03095f42f3f10add53de8a1fc9d64bb9c8c371893204d5107e823cfeaba49fed8ef1a51f467dc68060c75415faf55a8005706ec5887c00c3c23b7ec07ed16dea755bff6bd265d2715fe9cde4431726f4625553fa6323460e0b078b34fc797c3260fc7fb58d44b5479d4ab81e77e1a3c4a1af5044f7b1f02f0a937f8f978a18c029a55ca00f2fbaf797b9882334f265ad7dbb086a92a5305d2716ccc592f22a8a46e05ed63d388778b7ca9bde1145a081b3bcdb6f0a347a15e3df3df8591826e93e1a5f1d40f2acd8dbb0fc6f4cd969c7622ce28ee3f6cba64d52543cd3109136179730b193b12e5d782c015df997cb3e884721020f3fea01f09562df28f4fb18613a99eb6eb55329b85c8d847e35cfe2ce269115958a8541d600151853c36d10d1677f0eceab901500433b418da57e6af26dba6c42f512d998a9cafcc88efe2022ca5da462e0b89fc55c49d935f4523bc01524b28dd408c79f02d36100eade21588d494e0c4eea1d45dc7213738016129e290d9e0ba603c33b708a063e90fc5b612797f7e87851152e12de21ff3f50cd125c65de6a94877c1543169955a7af328dcaabe9199d920da75e319475a4b51a6134a03c6f36651ac8f47a665f350f11224e646c7ade1dc233335ff98b9c4d28656f8ed5bb2bbd1d58bdf7030e4a9d826ec7708bbb7bf5acee338b02bde6d8ce82cfa4f6c19a3bdf5690a671cc6449b696c6dae4f6f34431fa76f97c3b3be77fd44f56d41735a5b6a8a1b1f05132e072d908192e060490fdf30d24282bd936d2e904d2c83530e5bddff61fa19fe59c9dc4c8b5c207ef214aae2e56a6eb01b9a9ae721f021df2eac4119a8746d35a1365452f6818a388b16c961922ad374ca4a6e4ca067b42d15f68af72db1db8037da5143348441bc226649a8f86850b9910f1dbdffd1073f93c23409cd34cf36d19c62911b848343d05d755e33769b07cac0197e1b51f1c5fabad1532932e1de1d71606e0fa2d71247df2658112e2580309b0c082836c2e6afd2855a2c2e773945c66ddc20f8df5661344d6e0e12c0573e81b3d67221330ebc92cc3ab092e04e8612fbed195d22f4912f399f26ec7c77ce60d736235d51971092811387f42946225159a236ca7d6c41e7167a5110ed9bafa529fbb96fd14c1baee505749f748bd1f5e6a19b67689638e5de9d15419496b2424d4f5cab4f1e1e121d000fd8f9bd61a1ad4386d7dc7611ca320af2ef58c933ce18bd634fda338da976cbb218660a45d761e63d8d526d2e65fabdab468c3367e6002de9f8b392eabcf0e558c4f03f9b933cc39745ff12c88f17f9a6619315598e9eb5dc4462c4cf4a4ea395438548e9df49ed12fb15df67ce179974606be3404653f048ef5c384e7b962ff974183445e6ad8587a7bd47f801b3b23d4c216c4616eb333907a127ce23897fd8a36d3a4b675d5e9503ba0d2f9707af53f7ec2b9f2d2645f0e05088463ebe81458be0cc69e084bd7deb0a337334c6b6121faded18a8a8518f927c383d1773f5eb81f49774d591a104742691a7e9911eb69f7ee118b921e1f108810b532e4ee8053207d8311bafbafdac1a84613eba8c98d38bb8355fe6a3b1c84b37d27c554e29f80386d0615f995044b023426dda490d34d5f9777467ae13c0e060c90b655bb8c544e6fc43338c890977a6a6949ed64fc6750bda367a5db4b8252ebf0aa9c06e1496354baee09437677deedb99abe0cd69b84f93582bea54c7292ad6f2c6454b50e1a2bd9189887589ab7f9f97248f97492ea94463a3ac578ee651092c0a81e70d82f309a8a806b8bc4a72854381bcf673ab37fb64e679af87c9b4c801ea30e235d6099c009c35e7c7f298686d96cfb06a0b106775e8acf33fd2b905f98ff2e58959f3b38684c9496fe9dd6d8b858108abd9331827ac03c23883e323732341b096ee05f313a63b3e14fd123b8dcd75d581a9d6390951d3174f442b17e2514281c119ad098e011d6d2e348d1ee9f6a65f1794b32bfa5c18092290cbd227724ee981c0a6ef5e1503167b571946a7a97a9c4c5cf62949928f37d92796b9c495aeae4984d7ad887a0135902f36f9f2149cb0c6ddca04646b44e3119a0a9752645ef93373fd27f43e6877a7355790d0af728bd7834889bebe7380281b953b907d7c548889ca3d81263bf256a1aee12026b1e37b22db81a75d844b1a811abdd3e617007bbc95164552f974c5673182e09a5f904d181750f0f1e42444004113fe9c8f44c89f51f615fa7053b086cabbb8accc3e06f69f099fbabed0eb96b700f60a5e2575e6249b768642077c46b27a2b2277399cc28e331958971c8e9d4351fa0e1300b54d12b6bdc6cebe2182b85fdd9964612fae3256b2df91afea6671a492dfe12854ae0888bc9c608d2fb337b5634629ee6763d860103f070b9787aa489590aeaca3258d12d904903b525e89d473512d813a01b936942c2bc980c701b24e403e94b34cae2b63febc889435dd77729b7293ce2deb718fa351295807fe63f52b6837d0be7f8cbc4a487cf8cfc229da66cc42c9946300b8dedaf3178561b88ae194c57ab06d89623b95ecc8085cb369b4b381b8cb4fed422fa7c19eef3d234825e5af72f0d6a8da78666dd0c39fd9378e33d87372e4b49ac152ff3a018ff7c63a93d9c0faff48b2a6727b1a5e1cfa82b300d1d1ade28981ef35c9d1310eb3655b04ac10a65f8ecf4e405f0e2705b1e7cabf7d0bc5b5879f69ba0e91db88b1efcf7eeebb2262b8db7b290098c7d4fc2a14e78d0187c63035c05e991013d7abd9a5f6c0dc6d57eb074b7d1b08aac237150a652f55795e9663ac1bdf807d756c26b5d3ee9ae80b4837b29a5afd0ee6eba9f59f55286678a9887c07de19600705eac084f353751c498792b9cd80714ea60c70c8b493c6e8c91f4c8222a48e8887be881416c7a042ec7ab9146b224d7e53cd27915aa344b5d1f5a61fa687d2a0ae18c7ade7f4b6f2442caba64ef6f5800dd3bbb1bd32ba7994674df98f8965ff2f56b4e2bc623daf65dbd5b4a9a0e8e2b01d771d0efb9c7ba6a637f18cfc341befe099b47c8e66c427db7b64fa3002b3ee4dc4ec52c527f74f80b373845f503a044d760e871d5dbcca8210bd6b945b96405ebb0d85e45b2c0172994b14974fc7ca07883a5d7426233db677c7dbdfc28e02cd51df93826ba170449e670cb84cfcbd46280b1a7d68301b5d326b3d6238dd52058a17029dcc3ebd27c96184c06fb279ca8a1df30330ef3445e909379251156b4b13afec572bd52c898f9e51542bb9e336ba1d6bda21d8c1cdaf87d4802e63fcd9ec094e1780d6d618a58295332400cd930bbb44a6527018cfb22eb3db644912498a5a7c14e02882e77ed4ff55f55976393bf2817bb24735dfafcaf25e4c8fd99623f7ab50c53d6844b6c9cb2e01a16d91b13d97bf6926dde23b23b99559e884a4941a6c48de540657833c02ea6d26fc1433735e429bd0d1c8e7214348ff297292814f81fa0111578cd40ff76d24525c7bf194cd7fe4a3dea8e4146572b34a497e085a0b0a57b0a52cec40980ced76f35ed2fef039e1fa70bf85fd7633bdfde38705a616e032efd0851740fc18eaeacc218379d3240085193850c9fa4b946bdd8db2181f7bca6125f4a4821a4a69fcee1041d38c59ae17dc7807aaa7fc1763cfee9be973e538b83c6ee98f0852f69a8ab1acdba43722c80e88b2007fa31a0fa9c23360e4ab1ffbf995d7904713e26933d3ce7eadf2302ab014a14b5570a49b65e601f08647647b668261d26f80e7d34e62ab39be4c93b2b7215821ec19ad556e94230be1dc743a1c8401e1aa8b3508004b527b0f223a2280b1fed133f86b7bf9b7c5f0a619bb2f371ec277aba9472e8027753db1bfaa66ed2c407db0e050d570d49800906afb8a49159971109a8da32ae23285e871ce7f8c2090e6719bc0dcc4b84b24c31830317a24320a5dc76ec24b5a968dc3739dfd72e14383d558af2b48872f085d2e5002f7b28465614a125f7365c70f8d469e07179cbc7f61ddd86cc93ff0d455f7fa1e5c7be01362f4f8d4a9f8f9b666db1554156fd926f1402f489f15c9ae787175dff0d7ea36c0ee5693da34e02664159a5341e29f0e2298294eb54682bad5d9c85db33fb3f39f802a88d220046ccaa7202549160a35539de4e3ac3b6cfa513f236aca5da3ee5410197ae87a5067b2334d8d0aceb2b5bd0fd547518aa6cf8fef4bbd0afe86fd262951e1b434aa466c5860f10fe7e9b4d5f73821c5a41e208e77fc12aba3f60bacb282bd66211230bff990d96d843953066a831247bffd9fcdc6c6d5d60f5d92d1dec1bdf0f72ba9675ee801f9624676525cf0e154cca91788c585f48947f03bf0f9ab0ca63a1cfd8842d12faadbc7ead714945cde7cbfd21ae5f7433403dd548b4f54cccb9b3ee00e37f16bdee179574720f2dc5baf9f109799cbe6d92db0d63fdc2afc6a238e9cd379f68f1841a1e482555a33208c4d00a22e76bf48e564b9598c94185ef61a0e1483f0a5d6bae95af0b6e3f9766d0a7752025f5d9332a5128849376e9558161131730831f27d5d23916e20c23d1cda3413d12f4622e15efac99f79091a200853c1c019fbd1ac4adb6ecbc4b7c8b525308ed0d4c77470ba5835bdcb878370dddd6c2129b43303c5e2245907f1528a2df40c3434ac5d6e66e4df3b72835d9a3a0dc208e84787d5e0908a3d59ba74b5e7d1c3238e2020bbd9f11f9a8b7108c90a5ad6322c7321c9c5a11c40ce1be13f3aac6783cc1b45444cd88465b8be3f1101a844e9648464c4ea4eef4c2b188416c001f83f686c9011ecd61eb5e23d36f13d638434963dc71db0852eee077284992cecca247bee419ca6032f95b5ce99e89bda4740368d5c0465c69731f95e584fcb70050ea24d20b6ce4c4fe98b8df270247152675775cc6d589652b791d7835e078f82a653f909ddb41e12e702faf71d423e49ae257129c2f08192f3ed2e509ddadd2d891ecd3a85a0e95c985396d8cc22efd8aef51ddd7ea60df519a077c2f06a2e1c8f8bf412d7f21af33ed4f06ba3f1df285ac23e7a0f2423f3b482c40e0469cafc0dc5f3460ed207b9dc1f0def1ffb542a24149d08096fafe858bc501527ea98d2d345d71617d571539efe353cf46ffaa6f85c39a07e9753420877ff7e3cb0ce6e0bbf3b93c156bc2cb1091b10afc0275fe14162ced6873e330f963709df09c5280a281f85b858a17fdafbaeaca096b42e9c5325ca09867e17c3f1944a58bbb6bf3e846a913959f015ebfdc4fa9630daa7f77a802f990e156c41c5e63d9180bc0a1d4e31a37c4498737db4fcfb11fbda0879356c3aabc236746c1b2386441ee56dc06e6e578e7c490e270b4c256aabee611e2ef48824df90a04092c904e24474f2380b895082902e562d8735d0d9019ba225c17e7270fb83881401110c46d705b157a1e520d909eec36dbe9de417582a8b1609979f90e940d27e93e7c214508924feeb890ec261a46cb3df3fc0f30457bafc8879dbdcfafaca5b9051bf69e87c2fdaa4b9a80662768eb48cd59ab84972d7575246107452e1f9866c7dd0f881844aee02611da7c7a7d9be809f01143ae0f8547d49e94a5974e24ef5ddede74dfe38fbb7986917e10be4d08230a54c01009f24c2e92f7b87493c400481dbba9729190f630a921b702dcb4e7efbd87bf405f0a15b164e540273877aef389528fec6fe83677709e1ae", 0x1000}], 0x1, &(0x7f000080e000)=[@assoc={0x18, 0x117, 0x4, 0x8}, @iv={0x68, 0x117, 0x2, 0x54, "137b0785639cf0dab1fd036b4fab57702e792bce843a295496dc49aed8f7a919e2e6e8050b94d8688341f51ecb5c268f0d6b8b0ff82f4f8521b3d7c9caa7115b9ce1b19b0e3abef585b4a9e4431c3f7a46d92515"}, @op={0x18, 0x117, 0x3, 0x1}, @op={0x18, 0x117, 0x3, 0x0}, @assoc={0x18, 0x117, 0x4, 0x9524}, @op={0x18, 0x117, 0x3, 0x1}, @iv={0x68, 0x117, 0x2, 0x51, "cdf6ed389e4cfcf4b14910d7f1191fc9cd2a562b11799ad9038346809c4a9954e37c0bbe18935b9dcb4caca85f8b0a6b8d56b0ff950f96c6ecac0cb43d2c9461bfbbad13e18332d15de2f3f69534581601"}, @iv={0x28, 0x117, 0x2, 0x14, "5cd0006c561b6f0b5e6056aa8538b4fa455b1431"}], 0x170, 0x10}, 0x4000000)
mmap(&(0x7f0000000000/0xe59000)=nil, 0xe59000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000e59000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:16 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$binder(&(0x7f0000970000)="2f6465762f62696e6465722300", 0x0, 0x2)
fcntl$setsig(r0, 0xa, 0x29)
r1 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000d29000-0x11)="2f6465762f7161745f6164665f63746c00", 0x42a000, 0x0)
ptrace$getsig(0x4202, 0x0, 0xfff, &(0x7f0000592000)={0x0, 0x0, 0x0, 0x0})
getsockopt$inet_sctp6_SCTP_GET_ASSOC_NUMBER(r1, 0x84, 0x1c, &(0x7f0000617000-0x4)=0x0, &(0x7f0000ce8000-0x4)=0x4)
ioctl$TIOCMBIC(r1, 0x5417, &(0x7f0000d1a000-0x4)=0x101)
perf_event_open(&(0x7f000014c000)={0x4000000002, 0x78, 0xa2, 0x1, 0x0, 0x0, 0x0, 0xc1, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x1, 0xffffffffffffffff, 0x3ffffffffffffd, 0x4, 0xd8, 0x0, 0xffffffffffffffff, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r2 = open(&(0x7f0000b0c000-0x8)="2e2f66696c653000", 0x80040, 0x2)
ioctl$KVM_SET_TSS_ADDR(r2, 0xae47, 0xd000)
fcntl$setlease(r2, 0x400, 0x0)
openat$selinux_checkreqprot(0xffffffffffffff9c, &(0x7f000097c000-0x16)="2f73656c696e75782f636865636b72657170726f7400", 0x400, 0x0)
rt_sigprocmask(0x0, &(0x7f0000033000-0x8)={0xfffffffffffffffe}, 0x0, 0x8)
ioctl$sock_inet_udp_SIOCOUTQ(r2, 0x5411, &(0x7f0000fdc000-0x4)=0x0)
ioctl$DRM_IOCTL_MAP_BUFS(r1, 0xc0186419, &(0x7f0000c08000-0x18)={0x6, &(0x7f0000226000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000c45000-0x90)=[{0x3f, 0x0, 0x1, &(0x7f000070e000)=""}, {0x8000, 0xdb, 0x2, &(0x7f00004f2000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, {0x20, 0xd3, 0x7f7, &(0x7f00004d5000-0xd3)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, {0x1, 0x81, 0x200000000000002, &(0x7f0000585000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, {0x5, 0xa4, 0x4, &(0x7f0000800000-0xa4)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, {0x1000, 0x84, 0x8001, &(0x7f0000cb3000-0x84)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}]})
rt_sigtimedwait(&(0x7f00005a1000)={0xfffffffffffffffd}, &(0x7f0000dd8000-0x10)={0x0, 0x0, 0x0, 0x0}, &(0x7f000003a000-0x10)={0x0, 0x8000000}, 0x8)
ioctl$SNDRV_SEQ_IOCTL_GET_SUBSCRIPTION(r1, 0xc0505350, &(0x7f0000e82000)={{0x2, 0x400}, {0xff, 0x7fffffff}, 0x3, 0x1, 0x2, [0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
truncate(&(0x7f000037f000-0x8)="2e2f66696c653000", 0x5)
bpf$BPF_PROG_ATTACH(0x8, &(0x7f0000472000-0x14)={r2, r2, 0xf611f4c14cac18af, 0x1, r1}, 0x14)
fcntl$setlease(r2, 0x400, 0x2)
2017/12/15 23:28:16 executing program 1:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f73657175656e6365723200", 0x8000, 0x0)
ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_timeval(r0, 0x1, 0x14, &(0x7f0000001000-0x10)={0x0, 0x0}, &(0x7f0000001000-0x4)=0x10)
r1 = socket$inet6_sctp(0xa, 0x20004, 0x84)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = openat$selinux_commit_pending_bools(0xffffffffffffff9c, &(0x7f0000000000)="2f73656c696e75782f636f6d6d69745f70656e64696e675f626f6f6c7300", 0x1, 0x0)
mq_timedreceive(r2, &(0x7f0000434000)="0000000000000000000000000000000000", 0x11, 0x2, 0x0)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r1, 0x84, 0x9, &(0x7f0000dc6000)={0x0, @in6={{0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0x20}, &(0x7f0000420000)=0xa0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
timerfd_gettime(r0, &(0x7f0000001000)={{0x0, 0x0}, {0x0, 0x0}})
r3 = add_key$keyring(&(0x7f0000495000)="6b657972696e6700", &(0x7f000057f000)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, 0xfffffffffffffffb)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_ADD_CTX(0xffffffffffffff9c, 0xc0086420, &(0x7f0000001000-0x8)={0x0, 0x0})
socket$inet6_udp(0xa, 0x2, 0x0)
r4 = request_key(&(0x7f0000e96000-0xc)="636966732e73705465676f00", &(0x7f0000001000-0x5)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000002000)="00", 0xfffffffffffffffb)
keyctl$set_timeout(0xf, r3, 0xff)
keyctl$search(0xa, r3, &(0x7f0000a3f000)="6c6f676f6e00", &(0x7f00005c6000)={0x73, 0x79, 0x7a, 0x2, 0x0}, r4)
2017/12/15 23:28:16 executing program 0:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$autofs(0xffffffffffffff9c, &(0x7f0000001000-0xc)="2f6465762f6175746f667300", 0x105040, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$bt_hci(r0, &(0x7f0000002000-0x6)={0x1f, 0x4, 0x3}, 0x6)
r1 = perf_event_open(&(0x7f0000001000-0x78)={0x1, 0x78, 0x100000002, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1e002, 0x0, 0xac, 0x0, 0x0, 0x0, 0x0, 0x8001, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0}, 0x0, 0xffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_GET_PEER_ADDR_INFO(r0, 0x84, 0xf, &(0x7f0000003000-0xa0)={<r2=>0x0, @in={{0x2, 0x1, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1ff, 0xffffffff, 0x10001, 0x10001, 0x0}, &(0x7f0000002000)=0xa0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_MAXSEG(r0, 0x84, 0xd, &(0x7f0000002000-0x8)=@assoc_value={r2, 0xf1f}, &(0x7f0000002000)=0x8)
ioctl$TIOCLINUX5(r0, 0x541c, &(0x7f0000000000)={0x5, 0x9cd, 0xfffffffffffffffd, 0xf02, 0x1f})
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_INITMSG(r0, 0x84, 0x2, &(0x7f0000002000-0x8)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000004000)=0x8)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
rt_sigpending(&(0x7f0000004000)={0x0}, 0x8)
ioctl$DRM_IOCTL_CONTROL(r0, 0x40086414, &(0x7f0000001000)={0x0, 0x80000001})
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x0, 0x10, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfb2000)=nil, 0xfb2000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = perf_event_open(&(0x7f0000015000-0x78)={0x1, 0x78, 0x5, 0x0, 0x0, 0x0, 0x0, 0x3, 0x3fe, 0xc, 0xffffffffffffff20, 0x0, 0xfffffffffffffdfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffff, r1, 0x0)
mmap(&(0x7f0000fb2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fb2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fb2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fb2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
readv(r3, &(0x7f0000fb2000)=[{&(0x7f0000fb2000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd6}, {&(0x7f0000fb3000-0x6a)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6a}, {&(0x7f000050a000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x96}, {&(0x7f0000fb2000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa4}, {&(0x7f0000e6f000-0xec)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xec}], 0x5)
mmap(&(0x7f00002c3000/0x3000)=nil, 0x3000, 0x0, 0x11, r3, 0x0)
mmap(&(0x7f0000fb3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fb3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_kvm_setup_cpu$x86(0xffffffffffffffff, 0xffffffffffffffff, &(0x7f0000059000/0x18000)=nil, &(0x7f0000fb3000)=[@textreal={0x8, &(0x7f00003fc000)="6564360f2188dca4cfb866b9c90900000f3266b89c5998290f23c00f21f86635000000000f23f806263e65660f01f5baf80c66b894922a8d66efbafc0cb8e100ef0fe15e98ba6100b0ffee2e0fc76bc1", 0x50}], 0x1, 0x0, &(0x7f0000fb4000-0x10)=[@dstype3={0x7, 0x6}], 0x1)
r4 = syz_open_dev$vcsa(&(0x7f0000e80000)="2f6465762f766373612300", 0x9f97, 0x8000)
setsockopt$inet6_MRT6_ADD_MIF(r0, 0x29, 0xca, &(0x7f0000070000)={0x4, 0x1, 0x7, 0x7f, 0x3}, 0xc)
epoll_ctl$EPOLL_CTL_MOD(r4, 0x3, r3, &(0x7f0000eb2000)={0xb0000001, 0x0})
ioctl$FIONREAD(r3, 0x541b, &(0x7f0000f31000)=0x0)
2017/12/15 23:28:16 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$bt_sco(0x1f, 0x5, 0x2)
mmap(&(0x7f0000000000/0x2000)=nil, 0x2000, 0x3, 0x32, 0xffffffffffffffff, 0x4000000000)
r0 = socket$inet_udp(0x2, 0x2, 0x0)
ioctl$sock_ifreq(r0, 0x89a2, &(0x7f0000c9b000-0x28)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_flags=0x5})
pipe(&(0x7f0000d2a000)={<r1=>0x0, <r2=>0x0})
setsockopt$bt_hci_HCI_FILTER(r1, 0x0, 0x2, &(0x7f0000fa8000)={0x200, 0x6, 0x8, 0x4}, 0x10)
socketpair$inet(0x2, 0x4, 0x373, &(0x7f0000ef4000)={<r3=>0xffffffffffffffff, <r4=>0xffffffffffffffff})
getsockopt$inet_sctp6_SCTP_SOCKOPT_PEELOFF(r2, 0x84, 0x66, &(0x7f00006d1000)={0x0, 0x1ff}, &(0x7f0000973000-0x4)=0x8)
getsockopt$inet_sctp6_SCTP_GET_PEER_ADDRS(0xffffffffffffffff, 0x84, 0x6c, &(0x7f0000495000)={<r5=>0x0, 0xad, "eade151b9e9cd8ead616c60f64632184da6231028d0d2b7e206336a24a188b043feae13948d354b6c9ceb3aa26d4d743d0a26adb1fd03a000000000000003f1f31c94a2d5d9a6f3405a32205081aa3c0387d5c8423655eafe41b5cde218c0411a7b6e4bc0a9fbd758d7cb22d6b044cecbbcfbb960d50f403ddb223a5c38fe47d7516ddd11c8f9d7e9659359c9e7d1dc8822a64f872a47ee3046bf59c8494763fbe01622d21735961d1b800d5db"}, &(0x7f0000731000)=0xb5)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_inet_SIOCSIFFLAGS(r3, 0x8914, &(0x7f0000725000)={@common="69666230000000000000000000000000", @ifru_addrs={0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
getsockopt$inet_sctp_SCTP_AUTH_ACTIVE_KEY(r4, 0x84, 0x18, &(0x7f0000b9a000)={<r6=>r5, 0x2}, &(0x7f0000b68000)=0x6)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_SIOCGIFCONF(r3, 0x8910, &(0x7f0000d7e000-0x10)=@buf={0x1, &(0x7f0000a30000-0x1)="b7"})
mmap(&(0x7f0000000000/0xf50000)=nil, 0xf50000, 0x1, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f51000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$bt_hci(r3, 0x0, 0x3, &(0x7f0000f98000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000289000)=0x1000)
r7 = socket$inet6(0xa, 0x3, 0x4)
socket$inet(0x2, 0xf, 0x200000000004)
mmap(&(0x7f00006a9000/0x2000)=nil, 0x2000, 0x200000d, 0x20010, r0, 0x0)
mmap(&(0x7f000066c000/0x1000)=nil, 0x1000, 0x1000008, 0x32, r0, 0x401)
sendmsg$inet_sctp(r4, &(0x7f0000f52000)={&(0x7f0000545000-0x10)=@in={0x2, 0x0, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f0000f52000)=[{&(0x7f0000cf6000)="b10461d0025280a2760a4b52cf1ef5ad159d8bb2cdd429cb49c1b5cfa02901895a3a1a8c05e424c8b9b2d79ea3abc912cc40481768a41ce9bc494be31ea088625a1d004986533305dd009a98c289194fb8b81f9a7fde7046818652b55c2f925500e6cd14c7cc56a8f8601c043d3576b1e353c3fe149f18c3fc55f7fe482519032cfc0c5da89fcdde9c5dffc8eef635efab", 0x91}, {&(0x7f0000152000)="f4135b2874df4c2a1f27c3cf7ec9e733d229979ce319a96ea12eb951fd33b6c802830f37879c3e390155b55256cc6dd4af13f6a850df7e3c9adfa5967532cefd1883ee03b378e004df5d3074d6e69cda50cd34e937aed83398b1a153c6b8060e19e8eececa993d0c84a9a3e0beebca71cdf9a3888e45a49762d3700ea5a2b0a539eef767de11d122acd9e42f0e52b62d639e6b", 0x93}], 0x2, &(0x7f00004e0000)=[@init={0x18, 0x84, 0x0, {0x0, 0x5be, 0x3ff, 0x0}}, @sndinfo={0x20, 0x84, 0x2, {0x100, 0x8004, 0x9, 0x9, r5}}, @sndrcv={0x30, 0x84, 0x1, {0x4, 0x4, 0x8002, 0x7fff, 0x6f74, 0x7, 0x101, 0x10001, r6}}, @init={0x18, 0x84, 0x0, {0xa7aa65e, 0xfffffffffffffff9, 0xdce7, 0x0}}, @sndrcv={0x30, 0x84, 0x1, {0xffffffffffff351c, 0x7, 0x8000, 0x7, 0x401, 0x81, 0x1, 0x4, r5}}, @init={0x18, 0x84, 0x0, {0x6, 0x0, 0x4, 0x0}}, @init={0x18, 0x84, 0x0, {0x4, 0x9, 0x81, 0xcc08}}], 0x7, 0x800}, 0x33a1623edd4255d9)
ioctl$sock_inet_SIOCGIFBRDADDR(r7, 0x8919, &(0x7f0000189000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_flags=0x202})
mmap(&(0x7f0000f56000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f53000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bpf$MAP_CREATE(0x0, &(0x7f0000f53000)={0xb, 0x17b4, 0x9, 0x800000000006, 0x1, r2, 0x3}, 0x1c)
mmap(&(0x7f0000e91000/0x1000)=nil, 0x1000, 0x3, 0x20000032, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp_SCTP_PARTIAL_DELIVERY_POINT(r0, 0x84, 0x13, &(0x7f000065a000)=0x10000000000004, 0x4)
sendmsg(r7, &(0x7f0000f50000)={&(0x7f0000f54000-0xc)=@nl={0x0, 0x0, 0x8000, 0x20000000004}, 0xc, &(0x7f0000f50000)=[{&(0x7f00001b5000-0x1000)="e761c3dbf430a281a2938e89965812eff059805597343e58", 0x18}, {&(0x7f00004f8000-0xd8)="44ff8f8596159dcd87f93934b1ba161c11665960b19209000000f24a20d380cd51beb33ef93a69a80b319ac545c2062a35c27f522f58f1a6c66c27a4b32cf4fc8e49e11ee0f08ca9dae0ee54f371f4ce9c432ef4c0710fee1ed3cf9dc9b3c62eff6afbdb4c556f22016d199985904c0122e5e0aaac58fe54fe867db88940de1fd4fad86dff32f571f8acc8768e49c6ca44f3352fa77dee306de20df33f04ceec439de2e622ca00000000000000096c25f6ad7bfa6cb22948bde2d0cac574dba4c78e0e3a452e6e3c15dd2e4ad7a56c9490512aaeb86fee7c", 0xd8}, {&(0x7f0000f56000)="df18199d8886dd818f31e9cf9290951af259614dc7549babfdae411fb8e59e7d3545ffb31c25557ab751b0977832b6b88d5745eaa6eb456093804a7a6282867b2b7e46ca349f814e73273db2b533c503ffdded0be58b9e95bb38d6c78f050f1543904791de039bba1a6635c3c89d438b5a0406071b6c64581dece46d972c2b1f236d996384e5ea31e5844fa7ffe4fa5c07c6412e9306e66cdb9fdc915f4c4d01cb11a7", 0xa3}], 0x3, &(0x7f0000f56000)=[{0x88, 0x29, 0x4, "000000001d548cb82e3b1aa6c7223e9c5a4dcecaf0dd89de0de117797407327cc16ff88508df6aef3c7163c37604654511814704d068f7ffc83fc9d6ea3fa4c7655822a09ba906273954c37509d04b8a5c2f207ad0605158b3e2c17581cfc03639890280698b6238cdb05a9d7ec49c86b7977ac51c"}, {0x70, 0x0, 0x5ea5faf3, "612ef8cb8669b8f46f5139924072d02157009ee22d696146389e989b70706ec8054c931a3bbbec10ce272e69c3a257ce7618e03e6925426ce9d7a4d5c021feddae37d620fb1438b2f49394e693621a24f868291a168ce3b92ca240ced5c12a"}, {0x20, 0x102, 0x2000002, "9bf2d18d40cdfcb6759849"}], 0x3, 0x10}, 0x400)
mmap(&(0x7f0000a15000/0x1000)=nil, 0x1000, 0x0, 0x32, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:16 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000500000-0x78)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x237000)=nil, 0x237000, 0xfffffffffffffffd, 0x32, 0xffffffffffffffff, 0x0)
socket$kcm(0x29, 0x0, 0x0)
ioctl$DRM_IOCTL_GEM_FLINK(0xffffffffffffffff, 0xc008640a, &(0x7f0000af7000)={0x0, 0x0})
ioctl$DRM_IOCTL_GET_CAP(0xffffffffffffffff, 0xc010640c, &(0x7f0000148000)={0x0, 0x0})
r0 = socket(0xa, 0x3, 0x4)
ioctl$EVIOCGBITSND(0xffffffffffffffff, 0x80404532, &(0x7f0000dff000)="")
setsockopt$netlink_NETLINK_CAP_ACK(r0, 0x10e, 0xa, &(0x7f00009fc000-0x4)=0x4, 0x4)
setsockopt$inet6_int(r0, 0x29, 0x4b, &(0x7f0000f87000-0x4)=0x8, 0x4)
getsockopt$inet_sctp6_SCTP_MAX_BURST(r0, 0x84, 0x14, &(0x7f0000e8a000-0x8)=@assoc_value={<r1=>0x0, 0x0}, &(0x7f0000a08000-0x4)=0x8)
getsockopt$inet_sctp_SCTP_DEFAULT_SNDINFO(r0, 0x84, 0x22, &(0x7f0000389000)={0x4, 0x4, 0x5, 0x0, r1}, &(0x7f0000d22000-0x4)=0x10)
setsockopt$netlink_NETLINK_LISTEN_ALL_NSID(r0, 0x10e, 0x8, &(0x7f0000585000-0x4)=0x4, 0x4)
r2 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000002000)="2f6465762f72666b696c6c00", 0x40002, 0x0)
ioctl$TIOCGPGRP(r2, 0x540f, &(0x7f00008e2000-0x4)=0x0)
sendmmsg$nfc_llcp(r0, &(0x7f0000237000)=[{&(0x7f0000003000-0x60)={0x27, 0x0, 0x0, 0x0, 0x0, 0x0, "0fcca4bb22f2892559edddba1a892f216c6adb6dac3291add84e7dd1b9b1e1043844071c4d783ef83c7baa707bef6850ccd339c111743913f1b7601256cf03", 0x0}, 0x60, &(0x7f0000006000)=[], 0x0, &(0x7f0000239000-0x1010)={0x28, 0x29, 0x2, "f1eb437ee62fa89f7006e4a66e02000000"}, 0x28, 0x0}], 0x1, 0x0)
ioctl$SNDRV_SEQ_IOCTL_SET_QUEUE_CLIENT(0xffffffffffffffff, 0x404c534a, &(0x7f00007cc000-0x4c)={0x8, 0x5, 0xfffffffffffffffd, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
accept4$ax25(r0, &(0x7f00001a2000)={0x0, {"00000000000000"}, 0x0}, &(0x7f0000df4000)=0x10, 0x800)
[ 51.203849] netlink: 5 bytes leftover after parsing attributes in process `syz-executor4'.
2017/12/15 23:28:16 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r0, &(0x7f00007ae000-0x58)={0x26, "6861736800000000000000000000", 0x0, 0x0, "7368613235362d67656e657269630000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
r1 = accept$alg(r0, 0x0, 0x0)
sendmsg$alg(r1, &(0x7f0000bf4000)={0x0, 0x0, &(0x7f0000cbd000-0x10)=[{&(0x7f0000747000-0x1000)="20a5c1d76b57492e826f14ea378185cdac519621b876f9073695e8b2bf748e586c958fa3121c027bc806926646c37a05a5f1c8ae126d0454", 0x38}], 0x1, 0x0, 0x0, 0x0}, 0x0)
keyctl$join(0x1, 0x0)
ioctl$sock_bt_bnep_BNEPCONNDEL(r0, 0x400442c9, &(0x7f0000e5b000-0xa)={0xffffffff, "7628c61db491"})
2017/12/15 23:28:16 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$sg(&(0x7f000084c000-0x9)="2f6465762f73672300", 0x2, 0x1)
ioctl$TIOCGSID(r0, 0x540f, &(0x7f0000bc1000)=<r1=>0x0)
perf_event_open(&(0x7f000001d000)={0x3, 0x78, 0xdb, 0x0, 0x1ffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x2000000000000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f24cda2, 0x0, 0x0}, r1, 0x100000000, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_kcm_SIOCKCMCLONE(r0, 0x89e2, &(0x7f00009a1000)={<r2=>r0})
getpeername$netlink(r2, &(0x7f0000e6b000)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000809000-0x4)=0xc)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r3 = socket$netlink(0x10, 0x3, 0x6)
bind$netlink(r3, &(0x7f00009a9000)={0x10, 0x0, 0x0, 0x5}, 0xc)
r4 = socket$inet(0x2, 0x3, 0x9)
setsockopt$inet_IP_XFRM_POLICY(r4, 0x0, 0x11, &(0x7f0000000000)={{{@in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0}, {0x8, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x1, 0x0, 0x6, 0x0}, {{@in6=@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0, 0xffffffffffffffff}, 0x0, @in6=@loopback={0x0, 0x1}, 0x4000000000, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0}}, 0xe8)
sendto$inet(r0, &(0x7f00006ee000-0x1)="dd", 0x1, 0x24004010, &(0x7f0000f1a000-0x10)={0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getpeername(r3, &(0x7f00005cc000)=@alg={0x0, "0000000000000000000000000000", 0x0, 0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f0000ee4000)=0x58)
openat$kvm(0xffffffffffffff9c, &(0x7f0000693000)="2f6465762f6b766d00", 0x10002, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = syz_open_dev$vcsa(&(0x7f0000a62000-0xb)="2f6465762f766373612300", 0x0, 0x240000)
perf_event_open(&(0x7f00009e1000-0x78)={0x2, 0x78, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2082f, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2800, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r5, 0x0)
mmap(&(0x7f0000000000/0x1b000)=nil, 0x1b000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x9)
clone(0x20408000005, &(0x7f0000b3d000)="b4fa", &(0x7f0000748000)=0x0, &(0x7f00008be000)=0x0, &(0x7f0000793000)="")
getgid()
perf_event_open(&(0x7f000000a000)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800000000003, 0x20001010, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
timerfd_settime(r5, 0x1, &(0x7f00008ba000)={{0x0, 0x0}, {0x0, 0x1c9c380}}, &(0x7f00009f4000-0x19)={{0x0, <r6=>0x0}, {<r7=>0x0, 0x0}})
pselect6(0x40, &(0x7f000098f000-0x40)={0x401, 0x20, 0x34e2, 0x7, 0x68d, 0x9, 0x4, 0x2}, &(0x7f0000887000)={0x400000, 0xfffffffffffff801, 0x8, 0x7, 0x20, 0x200, 0x3f, 0x0}, &(0x7f0000aca000-0x40)={0x1, 0x52, 0x0, 0x1, 0x7, 0x501, 0x6, 0x401}, &(0x7f0000727000)={0x77359400, 0x0}, &(0x7f00008d3000-0x10)={&(0x7f00003a9000)={0x100000001}, 0x8})
clock_gettime(0x4, &(0x7f0000f59000)={0x0, 0x0})
nanosleep(&(0x7f0000c62000-0x10)={r7, r6}, &(0x7f0000c7c000)={0x0, 0x0})
rt_sigtimedwait(&(0x7f000081e000)={0x4003ffff}, &(0x7f0000000000)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000fbd000-0x10)={r7, 0x0}, 0x8)
io_setup(0x2272, &(0x7f0000829000)=0x0)
gettid()
ioctl$sock_inet_SIOCDARP(r4, 0x8953, &(0x7f0000775000)={{0x2, 0x0, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x0, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x4, {0x2, 0x2, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @common="67726574617030000000000000000000"})
getrandom(&(0x7f0000f4f000)="000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x27, 0x0)
mmap(&(0x7f0000016000/0x4000)=nil, 0x4000, 0x5, 0x32, 0xffffffffffffffff, 0x0)
[ 51.268041] netlink: 5 bytes leftover after parsing attributes in process `syz-executor4'.
[ 51.278331] print_req_error: 153 callbacks suppressed
[ 51.278336] print_req_error: I/O error, dev loop6, sector 0
[ 51.289555] print_req_error: I/O error, dev loop6, sector 0
[ 51.295376] buffer_io_error: 148 callbacks suppressed
[ 51.295379] Buffer I/O error on dev loop6, logical block 0, async page read
[ 51.307821] print_req_error: I/O error, dev loop6, sector 0
2017/12/15 23:28:16 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
semop(0x0, &(0x7f000002f000-0x1e)=[{0x4, 0x6, 0x0}], 0x1)
r0 = socket$llc(0x1a, 0x2, 0x0)
getsockopt$SO_PEERCRED(r0, 0x1, 0x11, &(0x7f00009bd000-0xc)={<r1=>0x0, <r2=>0x0, 0x0}, 0xc)
lstat(&(0x7f000007c000-0x8)="2e2f66696c653000", &(0x7f00001d4000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, <r3=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = socket$alg(0x26, 0x5, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000883000)="2e2f66696c653000", 0x0)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000027000-0x8)="2e2f66696c653000", &(0x7f000000c000)="72616d667300", 0x0, &(0x7f000000a000)="")
mount(&(0x7f0000037000)="2e2f66696c653000", &(0x7f0000c50000-0x8)="2e2f66696c653000", &(0x7f000002f000-0x6)="72616d667300", 0x100000, &(0x7f0000ce3000)="")
mount(&(0x7f000052f000)="2e2f66696c653000", &(0x7f00008fd000-0x1)="2e", &(0x7f00003a3000-0x6)="0700cc667300", 0x1000, 0x0)
mount(&(0x7f0000c6c000-0x8)="2e2f66696c653000", &(0x7f000092f000)="2e2f66696c653000", &(0x7f0000dcd000)="72616d667300", 0x8ff8c, &(0x7f000002f000)="")
mknodat(r4, &(0x7f0000abe000)="2e", 0x8108, 0x1)
tgkill(r1, r1, 0x1c)
mmap(&(0x7f0000000000/0xdf5000)=nil, 0xdf5000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mount(&(0x7f000000a000)="2e", &(0x7f0000852000)="2e", &(0x7f0000a60000)="72616d667300", 0xff8c, &(0x7f00008a7000)="")
umount2(&(0x7f0000d5c000-0x1)="2e", 0x0)
rmdir(&(0x7f000081f000-0x1)="2e")
close(r4)
r5 = syz_open_dev$usbmon(&(0x7f0000d3f000)="2f6465762f7573626d6f6e2300", 0x9, 0x400000)
getsockopt$inet6_mtu(r5, 0x29, 0x17, &(0x7f0000ab7000-0x4)=0x0, &(0x7f00003fb000-0x4)=0x4)
r6 = accept4(r0, &(0x7f0000fd9000)=@alg={0x0, "0000000000000000000000000000", 0x0, 0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f00001c5000-0x4)=0x58, 0x0)
ioctl$sock_bt_bnep_BNEPCONNADD(r6, 0x400442c8, &(0x7f00008db000-0x29)={r4, 0x5, 0x0, "75a2b1350b864f7231e148e5e06363e064744d2b7bf1235bc7352979fd1272"})
r7 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r4, &(0x7f0000050000-0x58)={0x26, "736b636970686572000000000000", 0x0, 0x0, "63747228616e756269732d67656e6572696329000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r7, 0x117, 0x1, &(0x7f0000002000-0xc6)="ad56b6c5820faeb995298992ea54c7beef", 0x11)
lchown(&(0x7f0000718000)="2e2f66696c653000", r2, r3)
removexattr(&(0x7f00008a6000)="2e2f66696c653000", &(0x7f0000020000)=@random={"757365722e00", "5e70726f633a6d643573756d2b2d706f7369785f61636c5f61636365737300"})
semop(0x0, &(0x7f000001a000)=[{0x0, 0x0, 0x0}], 0x1)
semctl$IPC_RMID(0x0, 0x0, 0x10)
2017/12/15 23:28:16 executing program 1:
clone(0x0, &(0x7f0000001000)="", &(0x7f0000001000-0x4)=0x0, &(0x7f000032c000-0x4)=0x0, &(0x7f0000ab3000)="50")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x38, 0x0, 0x0, 0x0, 0x1, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = socket$inet6(0xa, 0x2, 0x0)
splice(r0, 0x80000000000000, r0, 0x0, 0x2f, 0x9)
ioctl$sock_inet_SIOCSIFBRDADDR(r1, 0x891a, &(0x7f0000f97000-0x20)={@common="69703667726530000000000000000000", @ifru_flags=0xb000})
tee(r1, r1, 0x20, 0x0)
getsockopt$inet6_buf(r1, 0x29, 0x45, &(0x7f0000c9a000-0x20)="", &(0x7f00000de000)=0x0)
r2 = fcntl$dupfd(r0, 0xfffffffffffffffc, r0)
ioctl$LOOP_CTL_GET_FREE(r2, 0x4c82)
r3 = socket$inet_tcp(0x2, 0x1, 0x0)
setsockopt$inet_int(r3, 0x0, 0x13, &(0x7f00006bb000-0x4)=0x1, 0x4)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = socket$netlink(0x10, 0x3, 0xb)
writev(r4, &(0x7f000037d000)=[{&(0x7f000052e000-0x1f)="1f00000002031900000007000000068100ed3b8509000100010100ff3ffe58", 0x1f}], 0x1)
socket$netlink(0x10, 0x3, 0xd)
writev(r1, &(0x7f0000fb6000-0x10)=[], 0x0)
writev(r4, &(0x7f0000f7a000)=[{&(0x7f0000bc6000)="1f00000000010100003707000000068100ed3b850900020000060007005892bc", 0x20}], 0x1)
mmap(&(0x7f0000000000/0x940000)=nil, 0x940000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = socket$inet_tcp(0x2, 0x1, 0x0)
mmap(&(0x7f0000940000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000941000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000942000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000943000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
fcntl$setpipe(r0, 0x407, 0x6)
ioctl$KVM_GET_PIT2(r2, 0x8070ae9f, &(0x7f0000a2e000)={[{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}], 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
setsockopt$inet_tcp_int(r5, 0x6, 0x7, &(0x7f0000944000-0x4)=0x7, 0x4)
socket$inet6_icmp_raw(0xa, 0x3, 0x3a)
openat$rfkill(0xffffffffffffff9c, &(0x7f0000f7e000)="2f6465762f72666b696c6c00", 0x800, 0x0)
2017/12/15 23:28:16 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
fchdir(r0)
mkdir(&(0x7f000053c000-0x8)="2e2f66696c653000", 0x0)
r1 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000221000)="2f6465762f72666b696c6c00", 0x111000, 0x0)
mkdirat(r1, &(0x7f0000c3b000)="2e2f66696c653000", 0x118)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000db1000-0x8)="2e2f66696c653000", &(0x7f000038f000)="70726f6300", 0x0, &(0x7f0000cde000)="")
r2 = open(&(0x7f000019a000)="2e2f66696c65302f62757300", 0x0, 0x0)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f000070a000)="2e2f66696c653000", &(0x7f0000014000)="72616d667300", 0x0, &(0x7f000002d000)="")
ioctl$KVM_IOEVENTFD(r1, 0x4040ae79, &(0x7f0000f6d000)={0x6, &(0x7f0000c84000)=0x0, 0x0, r2, 0x9})
ioctl$DRM_IOCTL_DROP_MASTER(r2, 0x641f)
getdents(r2, &(0x7f0000394000-0xd5)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x44)
r3 = perf_event_open(&(0x7f0000225000)={0x2, 0x78, 0x968, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r0, 0x0)
r4 = creat(&(0x7f0000045000)="2e2f66696c653000", 0x20000000010)
r5 = socket$netlink(0x10, 0x3, 0x0)
pipe(&(0x7f00006bf000)={<r6=>0x0, <r7=>0x0})
recvfrom$ipx(r1, &(0x7f000034d000-0x33)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x33, 0x40, &(0x7f0000c55000)={0x4, 0x4, 0x7ff, "d1de2ff7a9c2", 0x1, 0x0}, 0x10)
writev(r5, &(0x7f0000120000)=[{&(0x7f000078d000)="29000000180033dde5ff2100006500050a00000000000307800000000c000f00000000000000000005bc", 0x2a}], 0x1)
stat(&(0x7f0000eca000)="2e2f66696c653000", &(0x7f00009a9000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
delete_module(&(0x7f0000d2a000-0xa)="5e6264657625876f2300", 0x0)
setsockopt$inet_msfilter(r7, 0x0, 0x29, &(0x7f0000a3b000)={@remote={0xac, 0x14, 0x0, 0xbb}, @rand_addr=0x5, 0x1, 0x9, [@rand_addr=0xf52, @loopback=0x7f000001, @loopback=0x7f000001, @rand_addr=0x6, @rand_addr=0x232e628c, @rand_addr=0x2, @broadcast=0xffffffff, @empty=0x0, @loopback=0x7f000001]}, 0x34)
ioctl$PERF_EVENT_IOC_REFRESH(r4, 0x2402, 0x5)
getresuid(&(0x7f00007fd000)=<r8=>0x0, &(0x7f0000793000-0x4)=0x0, &(0x7f0000412000)=<r9=>0x0)
vmsplice(r3, &(0x7f00004bf000-0x50)=[{&(0x7f0000ae0000-0x36)="b611363eddaf2e062c5acea3313ccd0027f5cc412833c46d19db19842e81f48d42c606ab4d15e9e41ab9610d782a016f76999f4b6d73", 0x36}, {&(0x7f00007a5000-0x4f)="c95da0929359fbab3730eec84e7b242aee44e533700f7732a4dba0675ff34a5d16c610bb3b42f83911abc83fa1f8e776df20af75925a9361326842f41507643470443d54b0ec2efceecc5fcc6c4c8c", 0x4f}, {&(0x7f0000e9a000)="defb0d58395b990e5edb94742908bf835c1fdc2464296a9b7186aeac4b9934ff6b67d44bfed1583673279ae195adfd7f7efe69bd7bef599b9b0ae5ca19cc64b0009211026ccb19d6", 0x48}, {&(0x7f0000283000-0x33)="daef4484bbca05ad28f388046ece95d262111fe07fac125ce19905e4b2ee4566ef421c0018c33d5d8c482e5567b4e4160940b4", 0x33}, {&(0x7f0000fb9000-0x6b)="90a6081e7d0b85ec17575615343e4ab58cab10b12735c0eb0b4fce23068f001483578a34a38f12fa48df56b3ba1092c957c3ff505a9c6e93b23e252cd0c81a603cb576f84ad0185e9d47f131432c4b72faf2f967ebd961a1144173593460a2a99567b76994361ba8ad9a43", 0x6b}], 0x5, 0x1)
fstat(r5, &(0x7f000084b000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
clone(0x0, &(0x7f00009f4000)="", &(0x7f0000a26000-0x4)=0x0, &(0x7f000039f000)=0x0, &(0x7f0000544000-0x1c)="")
ioctl$SNDRV_TIMER_IOCTL_GSTATUS(r2, 0xc0405405, &(0x7f0000e02000-0x40)={{0x2, 0x1, 0x2, 0x0, 0x1}, 0x1, 0x7000000000, 0xc19, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
setresuid(r9, r8, r8)
socket$inet_tcp(0x2, 0x1, 0x0)
ioctl$sock_inet_SIOCSARP(r6, 0x8955, &(0x7f0000a74000-0x44)={{0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x0, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, {0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @common="69705f76746930000000000000000000"})
[ 51.307828] Buffer I/O error on dev loop6, logical block 0, async page read
[ 51.314225] print_req_error: I/O error, dev loop6, sector 0
[ 51.314245] Buffer I/O error on dev loop6, logical block 0, async page read
[ 51.314295] print_req_error: I/O error, dev loop6, sector 0
[ 51.314299] Buffer I/O error on dev loop6, logical block 0, async page read
[ 51.314352] print_req_error: I/O error, dev loop6, sector 0
2017/12/15 23:28:16 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = fcntl$dupfd(0xffffffffffffffff, 0x0, 0xffffffffffffffff)
ioctl$KVM_GET_MP_STATE(r0, 0x8004ae98, &(0x7f0000a38000)=0x0)
r1 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r2 = getpgrp(0x0)
setpriority(0x0, r2, 0x85)
openat$pfkey(0xffffffffffffff9c, &(0x7f0000ed5000-0x15)="2f70726f632f73656c662f6e65742f70666b657900", 0x1, 0x0)
getsockopt$inet_sctp_SCTP_DEFAULT_SNDINFO(0xffffffffffffff9c, 0x84, 0x22, &(0x7f0000257000)={0x2, 0x4, 0xf9, 0x5, <r3=>0x0}, &(0x7f0000fa5000)=0x10)
setsockopt$inet_sctp_SCTP_DEFAULT_SNDINFO(r0, 0x84, 0x22, &(0x7f00004c3000)={0x9, 0x7, 0x2, 0x1, r3}, 0x10)
r4 = openat$kvm(0xffffffffffffff9c, &(0x7f00004a9000)="2f6465762f6b766d00", 0x0, 0x0)
r5 = ioctl$KVM_CREATE_VM(r4, 0xae01, 0x0)
r6 = ioctl$KVM_CREATE_VCPU(r5, 0xae41, 0x0)
syz_kvm_setup_cpu$x86(r5, r6, &(0x7f0000385000/0x18000)=nil, &(0x7f0000ae2000-0x18)=[@text32={0x20, &(0x7f0000c9e000)="f2af26ca660f388117c74424000b0000000f20c035000000400f22c0c7442406000000000f011c248fe99098c736640fc72966ba42806698f0ff66ef0f01cbc4c3fd006700d70f35660f1be0", 0x4c}], 0x1, 0xfffffffffffffffe, &(0x7f0000c34000-0x10)=[], 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x0, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_RUN(r6, 0xae80, 0x0)
ioctl$EVIOCGBITSW(r6, 0x80404525, &(0x7f0000af2000-0xb4)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioctl$KVM_CREATE_DEVICE(r5, 0xc00caee0, &(0x7f000043e000)={0x4, r1, 0x0})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r7 = accept(0xffffffffffffffff, 0x0, &(0x7f0000906000-0x4)=0x0)
r8 = socket$key(0xf, 0x3, 0x2)
r9 = openat$selinux_user(0xffffffffffffff9c, &(0x7f00006ff000-0xe)="2f73656c696e75782f7573657200", 0x2, 0x0)
ioctl$sock_kcm_SIOCKCMATTACH(r7, 0x89e0, &(0x7f0000b18000)={r8, r9})
perf_event_open(&(0x7f0000223000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r10 = socket$key(0xf, 0x3, 0x2)
r11 = openat$selinux_avc_hash_stats(0xffffffffffffff9c, &(0x7f00000e8000-0x18)="2f73656c696e75782f6176632f686173685f737461747300", 0x0, 0x0)
ioctl$DRM_IOCTL_GET_UNIQUE(r9, 0xc0106401, &(0x7f0000280000-0x10)={0xe7, &(0x7f00004e8000-0xe7)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"})
sendmsg$key(r10, &(0x7f000057f000)={0x0, 0x0, &(0x7f0000c12000)={&(0x7f00006e0000-0x80)={0x2, 0xd, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, [@sadb_x_policy={0x4, 0x12, 0x0, 0x400000000002, 0x0, 0x0, 0x0, {0x0, 0x0, 0x3, 0x1, 0x0, 0x0, 0x0}}, @sadb_address={0x3, 0x5, 0x0, 0x0, 0x0, @in={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, @sadb_address={0x3, 0x6, 0x0, 0x0, 0x0, @in={0x2, 0x0, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}]}, 0x60}, 0x1, 0x0, 0x0, 0x0}, 0x0)
bpf$OBJ_PIN_MAP(0x6, &(0x7f000024b000-0xc)={&(0x7f00004a4000-0x8)="2e2f66696c653000", r11}, 0xc)
setsockopt$SO_TIMESTAMPING(r11, 0x1, 0x25, &(0x7f0000123000-0x4)=0x10, 0x4)
sendmsg$key(r10, &(0x7f0000c27000)={0x0, 0x0, &(0x7f0000f57000)={&(0x7f0000f58000-0x50)={0x2, 0x13, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, [@sadb_x_sec_ctx={0x1, 0x18, 0x0, 0x0, 0x0, ""}]}, 0x18}, 0x1, 0x0, 0x0, 0x0}, 0x0)
2017/12/15 23:28:16 executing program 7:
mmap(&(0x7f0000000000/0xfcd000)=nil, 0xfcd000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = inotify_init1(0x0)
mmap(&(0x7f0000fcd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe2(&(0x7f000060d000)={0x0, <r1=>0x0}, 0x800)
connect$bt_sco(r1, &(0x7f0000fcd000)={0x1f, {0x620, 0x6, 0x40400000000df2b, 0x0, 0x2, 0x7}}, 0x8)
getsockopt$sock_cred(0xffffffffffffffff, 0x1, 0x11, &(0x7f0000fcb000)={<r2=>0x0, 0x0, 0x0}, &(0x7f0000c91000)=0xc)
fcntl$setown(r0, 0x8, r2)
mmap(&(0x7f0000fce000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fce000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fce000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fce000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
fcntl$getownex(r1, 0x10, &(0x7f0000fce000)={0x0, <r3=>0x0})
mmap(&(0x7f0000fce000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$packet(0x11, 0x3, 0x300, &(0x7f0000fce000)={0x0, <r4=>0x0})
mmap(&(0x7f0000fce000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$SO_BINDTODEVICE(r4, 0x1, 0x19, &(0x7f0000fd0000-0x10)=@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x10)
mmap(&(0x7f0000fcf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$mouse(&(0x7f0000fd0000-0x12)="2f6465762f696e7075742f6d6f7573652300", 0x7bc0, 0x20000000000003)
mmap(&(0x7f0000fcf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$usbmon(&(0x7f0000fcf000)="2f6465762f7573626d6f6e2300", 0xfff, 0x2)
ptrace$setopts(0x4206, r3, 0x0, 0x0)
ptrace(0x4207, r3)
mmap(&(0x7f0000fcf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = syz_open_dev$mouse(&(0x7f0000fcf000)="2f6465762f696e7075742f6d6f7573652300", 0x3, 0x200001)
mmap(&(0x7f0000fd0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl(r5, 0x0, &(0x7f0000fd0000)="ea84688d7047a825c8fb02152d3a19dcfbd24bb5e2098ebba23e24680a02cedb37ac565ce3091b47d958f3cead2812c183da3523d96bbf8e8706cc36989578e32130c8d284734e7690dab811348e9fa702848a4f3122c302d7401e0e92c51be8f5c86f835831d08eb34d4fad2d379520b57d2cf1a488c04fb62d2fc1e89b18e965326452130b3da46c28aba7a4bb87962c1b2053f16e49881d06578bfe099020666513091856f4b5a542e1651df5ef9cb604d45a")
mmap(&(0x7f0000fd0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$EVIOCGREP(r5, 0x80084503, &(0x7f0000fd1000-0x1)="00")
mmap(&(0x7f0000fcf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
vmsplice(r4, &(0x7f0000fd1000-0x30)=[{&(0x7f000083d000-0x99)="9e6e5d12faac1e40103434810db0a21a0cedc2e13ba50d1c2d93d7eb415c15c2ee10f8b38329a7af633a74065b1e05c197e2aa8c7f19f1d0c8df8d0eb3837c33c27d2ca84fb604a928d5c50d0505b9ae5cf3a65222c023ee5b86ce06340cb24252c14aee1941345f0822746c7c91f12913d21f9ea2535e8decc690d435f3e3379d9e453b6b7a095da07aa9d885a30c1dfcb19c5f32bbee0743", 0x99}, {&(0x7f0000fd0000)="75ee0c96d256103d73a41d1c21f156360f3f09c156591546db33429879fff8266ed43f0018f0e3d1b45112fbf8345540206732920b73a663685cb4586c595582718d830d4dd625d0da0024c5b84ccfa0896e26ce91b86f6caf774c8c6fada75d32074f5cb6ad07efb8a4c8871322820c68b873a619aeaf28a30c97b1c2bfff36a415517ceb50a2bc20f4be808aec242f80175a4cc380292f43ee690de58ec557a5a236855c9e1e7f3285e86a49d9312be62ce4587a91948067190ed89875525c395c95900e7f7d39e463892819262a0ebd69d32687", 0xd5}, {&(0x7f000070b000-0x5d)="df57e81b9d73e2776a259fe903a2a511ac4c04f5a77fdc155e6b841f153e8764b5772f935ced307d64a4d7655a35d01b425cd3c7186d90b87e7cc738107b79477573f954cd47b219195a519aae4ce4f40445041b53351c00da93cd871f", 0x5d}], 0x3, 0x1)
ptrace$setsig(0x4203, r3, 0x0, &(0x7f0000fd0000-0x10)={0xb, 0x2000, 0x3, 0x1000})
ioctl$DRM_IOCTL_PRIME_FD_TO_HANDLE(0xffffffffffffffff, 0xc00c642e, &(0x7f0000fc5000-0xc)={0x0, 0x0, 0xffffffffffffffff})
mmap(&(0x7f0000fcf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
clock_gettime(0x0, &(0x7f0000d34000-0x10)={<r6=>0x0, <r7=>0x0})
futex(&(0x7f0000a5a000)=0x7, 0x5, 0x45, &(0x7f0000abf000+0xb4b)={r6, r7+30000000}, &(0x7f00002e4000)=0x8, 0x81f7)
mmap(&(0x7f0000fd1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ptrace$getsig(0x4202, r3, 0x5, &(0x7f0000fd4000-0x10)={0x0, 0x0, 0x0, 0x0})
request_key(&(0x7f0000bc3000)="636966732e73706e65676f00", &(0x7f0000455000-0x5)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f0000e29000-0x1)="00", 0xfffffffffffffffa)
add_key$user(&(0x7f00006c6000)="7573657200", &(0x7f0000ea9000)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f0000479000-0x17)="700825d12a78916d7d77ab322afb0504c460e9b84b87cd", 0x17, 0xfffffffffffffffc)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
add_key(&(0x7f000071a000-0xb)="706b6373375f7465737400", &(0x7f0000fd4000)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f0000fd4000)="", 0x0, 0xfffffffffffffffe)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
request_key(&(0x7f0000fd4000)="6173796d6d657472696300", &(0x7f0000fd4000)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000f62000-0x12)="2f6465762f696e7075742f6d6f7573652300", 0xfffffffffffffffe)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r8 = add_key(&(0x7f0000fd5000-0x8)="72787270635f7300", &(0x7f00004e3000)={0x73, 0x79, 0x7a, 0x3, 0x0}, 0x0, 0x0, 0xfffffffffffffffa)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
add_key$user(&(0x7f0000c28000-0x5)="7573657200", &(0x7f0000aa9000)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000fd4000)="fde9cff3e8017f905cda18d2a739ef57da0e820009fe0517fd84f11590d0b377c2fcb3c3", 0x24, 0xffffffffffffffff)
add_key$user(&(0x7f00002e3000-0x5)="7573657200", &(0x7f0000fb0000-0x5)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f0000537000-0x1000)="0496519a9772dd3d37fc76f41b1c2bd344bfd95229991487ffd68cc035da2fd2416ed5571729e3cb4372d36824760d78f6f65293475d97393884ffe27788d9fb0c928b50b1e527c217eacc3a55bf1c4fa22e0e62b3ebda193c24cf17262eaa08127e294d714ec0b3cee7428ffc1253c2614c22ee048f118bcffac7a97300d0e18817dc19d1584bacbd78c967d900e73bc44f436533b8e686bcd3a6e24183b2b25979dd4b314c8073a270a593d33b22169eb9ec11b6e6b2e79c997b8fb1822b955d0ec189aca201add1e0ced70676ef7c3244a545d6c6ebe9c637b4c13177d318cd1d2de93d1538ee29477c76fbdc89b46f20316b955fcd013e87ebe4ecfe2146b057783fd972bfc833c03c53d750da95480f6449151df3a069f7e707a7fe7e62d5d9ae497975616ab42731c53aa94296b92ef8a2f7d3b9fb0c0705fb7fa9fbc0434c79be5ff5631546303f4c25113b78c48d4b7f26f3500478c9978a2f7783766713373433dd636c86b99c7b49512aaf0cd7de1305bcd68e607793cffc3fe8d55b1eb093a4d890ae77519fdeb7f11f0cf2edd3b28055b2b776de4edd6f8c7cb89dcfa4bac119c6c6b36af0a7a7128c810e7674b7b2f04c82d30e8e66af1d1f4d362d355a2dd08d0b208aa00d430fcc7acf8cefba062034d0a4fad8d3908082467ec305e9db3c04ea63a30043f0ac7eb5e493e49971c34d0fc4d2f8b79d089e01032f348281af5352d4b1ddd4600d2db36aad414832c2743e59909b54267e89caed231de6491e1cf9b7667cd91d38ce32d998d6620da9809f2dc50e415617eca232264723c5cad53c5a62ed2675f30e413ff293e81c12ff9c5fd907f9c70870400e1528e2f203318700efbeb2a65b4ac836406560ce486563421279d25578236c1ee22ef63de987190034e0b74609b8dfccadb1f8f13b11c9327634166791ec2b9e7e3d8597a818caa14218a49c8cdc1fe7ab3258a59b3203ea828116d6521a9fff38c3e50672a31a69159d8a7802e08099591c39ea3e5c5d06e734140d13f05592aba6c01251ccf2496e62b2d477bc4695c12838a1c1c3c0bd098542c7a25fd72fc1df16e6f137ef7f6965cbf3bf1e3d872f40eb683397efec50408e568ca38ac12b36edea346f461f2767a1cb15fbbc0e9268f4ad3407e3316c28ad50f0509c50068113774598aae6a93b091edfcb5cc26492dd8293cb13c34546da249639be98b7326c5bdbdb325c9c2cdf49a29db94f725f3d00e6a49b7ee7f766b125bd20a2e589dfd52fb31a8a74d8b47b970fdd9b168425c9f6e49320052f5f6141cafc2b456b11ee545058fa72c35928a209b1b9e9fe6479e7ac919439cc481b200343321ee066350908b8bd87feca6701022776dd4bc9a1dd000491fce599ca61d83b9e4aedc0127becd3aea5c6ec052d20e342665d2616c50942d0974cd13f512f5916397ce9516887762aadb12d5453236d4ea379910632740afd0dcf14e8120d556abc8a6ebbf63fb87a8c5d839e22067217b1e63c0e1e051440f8fbf7214d5b797f147b4330b11f6b8632af1859cea6343034a0f2d7c4545c7cdf61d812bcad0e8cf6e7138dd6e5a0c4a019a7e8524aa36cdaff652fcf1a34c3f8f1525ed36c8adc6d59a85c1ce05c02fbc0149e805797b97948968856cfe0df99b62ecb673a4104e3394af09f333ef60e2ba552708209efbe2e8823edf0b031026b8b6298e318c7e1ccf067ab6fac8152eb73a365e93a83977eaeae9b6c4acb375954438b6d2009a5d388b229f7003972b42ba38340a5e95042defb24441f4ae2bc2e7df158be6180ebf5cf2fab84e93be85e1b70160548912285846c72f9acc3877f6ff323a511898004aa4ddd209b984816c892a6ae87f674ad175445a0aea06b978f78991dbd72f98eda114f83a2abcf6fde94f03aa84d1c05f471dc750c7476bbb8a6d5f6104b87e40eb4d4c6e1aa549831f9353dcde1504624c5d1f1042f70338bdc0bcea3c7e99a9f153a5b2a9abc680900000000000000630012c82aa81105ef1da89d3b8cc0dc2000b68a1ba3d40e97c4fca596c0bcddbbb2f7843de8503b8b2f1bc0222b8964fe204d4c5de1b52dff52328b261fcdd70c46ee9478b89d9961868b1f0d7654de62b5f7bfa3ebd4ec526908368dcb9d7f97bc180669d1166d6d7f6bea556130324c7c3e920e3ce4d187a211a85fe464dd7bc024e451315709615ea234e5aec72b8d3c29f9f8772b8981966900f1db2a5d05aededa053562aaef0431f19c4709f099eb02eb679aa698b772baff7be488be971ce1e6cf74ea209f37ab2ab7929e858c6a9c892639c8cadf25f47970a151b95919b2e296f59367a58664f2c73b9d4686dd405e4e88cd933afdf4bdb4e0d5089fb455325622bc0ac4d30f8f988792b7fccf8644784301e0ab234ddc3e2e6484317d7c95ebf3b591bca550f38ca94d92c35c77979de5d0a2852f9bf5c0875b587e33e3453db040889a8a2ea0e5cf7be9b86848e9558c561df1f83f0468a4ffaaad42949075d2b73c26946dec70d7bb3db3d5b326310e2386f0766e2a18dd851e22fcad40fd999e7db4a069f374504c104c284176cfc4d5bdf29be23ab3935d6298d80860534cbab6f6a1a00ed47a8d535406e7518f31d8e6ea94ee82337a432d34b936e5a7951898f175d43beb70b3b84e42a1ca22b8d20590b63cf4bcd91722f1ff64484daeb937bd02cb0602f0a6fb07373a4d7ade0c5cfa4c34ebe83ce8b59acc7defffba1f5c0bd31ab12fae6eb019ee37f7dd26919a9fb40db7dcb58d8729d94493b8effeb986811a5e27c513733905435e40408ce68bf1e31dd5dcf07258954d7bc60e195b7f91fd3fbdaa22fa6eb98f0edffa189a1816a77202ebaddfe9ca3073916691463b99967a9128811faa64ccaf334ae14e01233903ac2cb577f0aa59f00f8149afb50b379056a241833e70490b22b3c79ecfe62b9012422858563bbdb92f6c5d36437dbbf0b10771bf179097ac4c27380d20ffd82dd972f924106c0c5022a59f4665567f43e464ad8fa9734b44228b669f3b021e341f504e2f787226f2fc7ac1336333eb21a38304a55f1af85cbf78373bce2703bce22d4dabaae6114083dd89fc612b3ed033f22c82a09db7e48aa552d7cfc6d39595b86c06cdfbd5076cc74630d24adfc5497b3a19f1c6626bcc81b9dddf7bfb8a00797f6c8debe7d954d3a7326cefe3ab597223764f99f39c0494a25359734eb21f93b2c1aec3ebe5319b04dd6d27a53ffa95a3a9af700fa8b693463d698875d4a9f6adb29c27f9b8a3e9db9df45116c6adf9bf78d36742f7d5e024cfde5101f818b1fac0b722b586bb633c6129fd87105f8e2be1c09f251246868a4f2e83822394b0b11f02ac200c7e03645fa28deb480595b0adfac3933e5f462c8fbdd48098216983d08c56b449ddc0081a40a5f693856c609b58bae8f6b7d137b3cf466d9eb501e69d7d677b4ca87a2f2edd6e35d7366f81a2b29237a1725b00000000000000c61f613cd7835e79a33e434da401be064970ba496ec6f8bf3eccd7e60e3f9b9e619e2c18550eaf1a86b877dfaa81fd7ba67587a3c73962b8612fa17fa1dbcce74128bd42cd88f25623f0ad2773257d608e43ccb0e6bbc90cc236a4917bde82f4871ccc82f303c798b54ccdbf84e79d9abc53e6b7e08539f930cf668ed76feca29d6c170d20e20906ee3ca460dc90bea23aac687946309580d4fd5477d0708afc0c6e15acf112b679d7ccc5e8c5fd144b15d05c83ce5c54565f526582db919875bb0ca05754b4a2c0a9f5e29af565d73a62edc240d661d7fca55fd8016b3508d5aec4b6d61674176315087a308a361fa627c0fe2d1414c774e1884f2eb59b0f4a3094910ebfe3594611a229c90f9292d6f806c8d5871ba5eae04379466bd8210e5578e92c7061c2728072300ad130e21fa306fe4611b2ce2851c2869ee366642bc852206db508bd3f415d90cdbd720ebe14c4c95bfab11398a9fbbf74fa09ba35cd9510c886ed279052f308ee714028fd2fa10e93e55fd04852932b48ba0fe7161a28f7d29fbad90da0623c567282c85fc614bbb101bde69da8429517af8fb05155fc5b2c642b613085b16b7b1d106b1f9fb61d86bb9ac949c015364e5e99a70af8c76d837d87003d32fd47b799a23e923433df07994c8a83e478d4339bed7e883523a4e4f55c1d3a390788d5887c9497018f8555fc28ba9eee6436fdb3aecacf5847c3aa4e2192cbd8402add19fea1a5fadd8f55a1fd429f72a05ffd4aa7b4fb5ac8931f89d1f966f3fa831e3cff5e8d6ff0d1a315661894aa3341767870e5e305418366c25d5a4957809ff5d4ba9cd3ac6a04b2a4567a1903b5ede07b2fbd85dd7600a0df592bb6d6ed486475b91004a688de7f8e7fac665d2ada162d0cde899b5bba63a194795701c973d5cab88a8d8ca1ccbe0c01723a3d42e1de313e6a0a878357893af4130a8d5669093d2df03f9522ad41e82e3824672943e65a9f05f33b6c39108a82327e968dd4ba35fb346374df7f4d09b780300d988c1e278545dcfe4c4100eaa25279bf89d9b1c45a8fb9359e9cea158addf1388d7f59451278a005173b7668b2a2926ab44cfbfbc7fae0a0b4ca9106a377f21e3ec2066fb1735cb19b34e40a44bdeb95543a546322e216e81c08698160ce9ec5cbfbee5345d40d5126c7e7172dca2d9c2464ccac98160da4036e987a89d13cd1a7ae5591e405cc683d79c496fd9d8bbb2c7ffd730e06b68ba64b87bc84430bf95033b43d96c8657d8fb44ee050f22dd88d35ac47102c829099a2cb1670bdca198868563c2ee353e0ac0e81c7c941b497ce109e5040fd7fce50df513a4d8dbc064dca6412f863bdd4a5ea332f10be8b186f18b426839d359449ff1e705acb8411c1d68fca1d124f8c6bb11e07e2c4209249eefea1f0e40bf1bafd42bed13ffbbb55a0884074ace4b590ca011676bb63a3a3099c69b1321857229df71131fc62a7a002ab95a2d1f2a80d38481806e0a9f065f65ba8ae43a89091a2ce3094c7a2646988d641e1aa17398c00fec69e9b07a64da0846be8dcd59cd77cc310d2cbb892d222187b77676e5467aebdb90d55aa7cfc85c854328900aaf8931bc1d99d102b1a2acaa52709607f1ec5d458b5eb36067c6e70b49b2437564e32cab5f9e49c601a03ae1d2df332c31400642970b9154bb87d3d11d8028fbee55eb3d841e2456985ae8cce0ec5daf5cff0beaa660363aa4fb1401d23fc0946b22478b3db761bb5f38546c1050c39904fada1b3e9b1cc4e8497a04754aa9ff1582abd207a1c01637427203d0bfa6b8f48433736d1dccd51255edeb631b3410662d1b32f4e9b228de689643c6fa46d859033287943b093f07c5b38a7ca0645d1275b41ff9836ee427c831de1ed8a42f5d1928c70830e872b3e1b4d30d19adfb5d6761589a490d39525a6e697e489e2edd84ee476b264366cdfce1edf755707231ff9b56031ff73e93f02f57ac78f3b9bdedc9d5f7fc53265666f8eec873ef27c888846352654b002016bc2b588a8755d1d354af87f2780c1c5e6b046333a973532ac7aeefbad8bbdf90e0e2216a56bcd37a9f5b175cd9d72e982219ad4c551814057ac43ee72fdb4de04eed6e5897998fa0105c9a5084ea9ea9fcd57ed879dd3331bc31270b4ca55b6dad3cf2aa78b4b00daf186612fb4cf731378603a8ac9bb6e9a7e85c38ee21b1c8971d619ef88e7f19600c3eed9b491a69bb0e7d9a439b785aea38245c8c155c60b2555ba1992b083466323c4b9c937307a250ec55f", 0x1000, 0xfffffffffffffffb)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
add_key(&(0x7f0000cd9000-0xa)="69645f6c656761637900", &(0x7f0000fd4000)={0x73, 0x79, 0x7a, 0x3, 0x0}, 0x0, 0x0, 0xfffffffffffffff9)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
add_key$user(&(0x7f0000fd5000-0x5)="7573657200", &(0x7f0000fd4000)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f0000e58000-0x3c)="b070979f777f7d864ee5d02efafda386d6aa925e454dd9e1451dc338b953e3dd6127aea28effe4ef668743a6298742c16241ac174f6361526bce4e86", 0x3c, 0xfffffffffffffffb)
add_key$keyring(&(0x7f00004e6000-0x8)="6b657972696e6700", &(0x7f0000674000-0x5)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, 0xfffffffffffffff9)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
add_key$user(&(0x7f0000304000)="7573657200", &(0x7f00003e2000)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f0000fd4000)="3832cc5ca695d222353a0b6a49dc39098ea717ed5cb6f41335886526628c34121646ec66527900", 0x27, r8)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r9 = add_key$keyring(&(0x7f0000fd4000)="6b657972696e6700", &(0x7f0000fd4000)={0x73, 0x79, 0x7a, 0x1, 0x0}, 0x0, 0x0, 0xfffffffffffffffc)
keyctl$revoke(0x3, r9)
mmap(&(0x7f0000fd1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd5000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd5000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_cred(r5, 0x1, 0x11, &(0x7f000078b000-0xc)={0x0, 0x0, 0x0}, &(0x7f0000fd5000)=0xc)
mmap(&(0x7f0000fd1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0x356, &(0x7f0000fd2000-0x356)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x86dd, @ipv6={0x0, 0x6, "000000", 0x320, 0x21, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, {[], @icmpv6=@dest_unreach={0x1, 0x5, 0x0, 0x9, [0x0, 0x0, 0x0], {0x8001, 0x6, "92c7c2", 0x7fff, 0x3f, 0x649619f2, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, [@hopopts={0x4, 0x40, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [{0xfe, 0x4e, "6d08b470f67bb4a9b454aa0d0c8ce3f4ac255ae9bd38c271f8afd4260cadfefbab6f584802623d5b65844d58a8bab2caa5b66fb6f95209141e2701aefb58f227866e234f93026e555a5a3773b71f"}, {0xff, 0xaf, "bd14004d0c01d11bafcf1c3d3eff654367019639df0ca9a4835a7572a5fdf747b0c3c0ccd2bfa660304b6bf8c07bd29f05eecd929a7ebf4e721d52162dc3487449a8d285130a2bb275bfd8f5e06007edd51a4478c2914b6e2f2df943069c56a0f5c4d23384ea68eccdb247eac4a6b9dedbe78e9d6a91b9264def31955c08f1b278619800143da17800ee76a31c3820e6fd1ef26752255d8192bec6f8fd1b8233ecd3bfc7654134d973be363987e349"}, {0x0, 0x0, ""}, {0xc9, 0x98, "9a4e908dfee4f90440b9a55391b790a3d56cbc1ad7d714fc3c6bb67230375fb42d6a4a6f48e4b73e8e860698afd9c3603db7ee68517c72f3527d36cb3939e4f76ec67cd04f42fc12218ca5b890540625d898632d909ea91950d5781ab104207a8eec58df9b308682c06f55a9b704b8c9f9a68770b3568d51ce48b1273f3432498d66cb05fc9f839193bca0a714c4a98121e807ca70a31ae2"}, {0xcf, 0x64, "4c49866cddeec6ffec429209ad55c0ead25a3e9fb0eebc66c385b8c34ccfb95f17de58dea4173b7aa6151e6af6fc1aa86fb6d60c50b5a9266524b4395a622bc1aedc025bac47aeaa3d34f760cd67cfbdb835d53fee0549dba7a27c3a7da7b76a48b1799b"}]}, @routing={0x16, 0x4, 0x3, 0x4, 0x1, [@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}]}, @fragment={0x2f, 0x8, 0x8, 0x10001, 0x4, 0x8001, 0x0}, @fragment={0x0, 0x5, 0x6, 0xac22, 0x5, 0x6, 0x0}, @routing={0x2f, 0x2, 0x3, 0x8, 0x3, [@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}], "4e963a01b4d4db682a07745cba277ff2f89185d27d8f00caa0a44ec6a2569820683a5b5770ba044bdc556426aa6fa5d504e0741f602fe325efc32e1dcf346886c56b43312e01827b711557fa444447cce39da8356d2a83518b82f330eaab83d6195a77b7416974a8b8e8b54a8dc5c1cc04d09929f3ce38a9c7448514a08087d2e3bbb33584c482acb9f119d5feebb279"}}}}}}}, 0x0)
2017/12/15 23:28:16 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x22, 0x78, 0x968, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000f2f000-0x10)="2f6465762f73657175656e6365723200", 0x200001, 0x0)
ioctl$LOOP_SET_DIRECT_IO(r0, 0x4c08, 0xaa9)
socket$inet(0x2, 0x80005, 0x0)
ioctl$DRM_IOCTL_AGP_ALLOC(0xffffffffffffffff, 0xc0106434, &(0x7f00006ea000-0x10)={0x1f, <r1=>0x0, 0x2, 0x80000000})
ioctl$SNDRV_SEQ_IOCTL_UNSUBSCRIBE_PORT(0xffffffffffffffff, 0x40505331, &(0x7f0000c35000-0x50)={{0x100, 0x10000}, {0xa8f, 0xfffffffffffffffd}, 0x440, 0x2, 0x6263, [0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r2 = openat$selinux_load(0xffffffffffffff9c, &(0x7f0000e54000-0xe)="2f73656c696e75782f6c6f616400", 0x2, 0x0)
ioctl$DRM_IOCTL_SG_ALLOC(r2, 0xc0086438, &(0x7f00002bd000-0x8)={0x401, r1})
openat$selinux_create(0xffffffffffffff9c, &(0x7f0000f2b000-0x10)="2f73656c696e75782f63726561746500", 0x2, 0x0)
r3 = add_key$keyring(&(0x7f0000267000-0x8)="6b657972696e6700", &(0x7f0000229000)={0x73, 0x79, 0x7a, 0x3, 0x0}, 0x0, 0x0, 0xfffffffffffffffe)
keyctl$revoke(0x3, r3)
socket$inet(0x2, 0x80807, 0x200)
getsockopt$inet_dccp_int(r2, 0x21, 0x10, &(0x7f0000450000-0x4)=0x0, &(0x7f0000887000)=0x4)
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3df, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r0, 0x0)
ioctl$KDGKBENT(r2, 0x4b46, &(0x7f0000010000-0x4)={0x0, 0xbd7, 0x6})
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x401, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r2, 0x0)
set_mempolicy(0x8003, &(0x7f000085f000-0x8)=0x3f, 0x7)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0xe2, 0x80000001, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x4a27, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000476000-0x78)={0x2, 0x78, 0xd9, 0x0, 0x2000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0xe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
socket$inet6_tcp(0xa, 0x1, 0x0)
syz_open_dev$sg(&(0x7f0000f72000)="2f6465762f73672300", 0x0, 0x80000)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = socket(0x40000000018, 0x805, 0x0)
setsockopt$sock_int(r4, 0x1, 0x23, &(0x7f0000d38000-0x4)=0xfffffffffffff000, 0x4)
bind$inet(r4, &(0x7f00000a9000)={0x2, 0x2, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
sendto$inet(r4, &(0x7f0000905000-0x1)="79", 0x1, 0x0, &(0x7f00002a8000)={0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
[ 51.314356] Buffer I/O error on dev loop6, logical block 0, async page read
[ 51.314419] print_req_error: I/O error, dev loop6, sector 0
[ 51.314422] Buffer I/O error on dev loop6, logical block 0, async page read
[ 51.314533] print_req_error: I/O error, dev loop6, sector 0
[ 51.314536] Buffer I/O error on dev loop6, logical block 0, async page read
[ 51.314583] print_req_error: I/O error, dev loop6, sector 0
[ 51.314586] Buffer I/O error on dev loop6, logical block 0, async page read
[ 51.321827] print_req_error: I/O error, dev loop6, sector 0
[ 51.321832] Buffer I/O error on dev loop6, logical block 0, async page read
[ 51.322245] Buffer I/O error on dev loop6, logical block 0, async page read
2017/12/15 23:28:16 executing program 1:
mmap(&(0x7f0000000000/0xaed000)=nil, 0xaed000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aed000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aed000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aed000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aed000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$kvm(0xffffffffffffff9c, &(0x7f0000aee000-0x9)="2f6465762f6b766d00", 0x28000007fe, 0x0)
ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f00005c3000)="2e2f66696c653000", 0x0)
r1 = perf_event_open(&(0x7f0000768000)={0x10000000002, 0x78, 0x3e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x100000000, 0x7fffffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
socketpair$inet(0x2, 0x0, 0x6bcb993c, &(0x7f000021a000)={0x0, <r2=>0x0})
sendmsg(r2, &(0x7f00000d1000)={&(0x7f0000fdc000-0x80)=@ethernet={0x6, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f0000b6a000)=[], 0x0, &(0x7f00001b6000-0x14c0)=[{0x68, 0x105, 0x100000000, "f03da35d196f4d5beb6ec2b2ad8028e09159b617888d805e81c5fe674b731c5d51eb41ef7bec0e47a3da09c0cda6c9737b1a87d975955e38aa4505a73aa9df4e1ca8121302da93e76c55fa2d9f447b9cc5100623"}, {0x110, 0x1, 0x2, "30d1cae7ace889713d0c1a7744dff226dde0dc9d51227c4a1c87381156691ab438fd2513a8bce55b432f00d4d13ee5fe5b4affe141597f57b4d026c655ef677499420b039a5a98cef71ed95ce8c6265cda7a92cd9f24210686e2c4e1151303c6b3ae437930a83ae7df23879e37aac36ea4263e1f9b4a8cd1421f68ae522d5f828b48be949578f4192f50a3e7ba92bbf6db6400e2a4ebe7f5a9be4dfd4fc6d21f2a9bb4f73053b3045006f9e085634ec474f32a0c79d53beaf7a62cbc667fcfba6299ba2e59c6789edc026a37f3d6280dacd17233a73da2f8261df1ead01f43acb6a6eefa91609824e8da85b4aa8d3a165721df571418d3fbda99"}, {0xf8, 0x10f, 0x54, "8e6133223bbed1b492807f8a79c280bea67b4d470de891b9af364d9e556b4c1bd06eb43ead7e500afe6fe2c63b9a8ef745987e678a6ee36e803f68e39dcc55b32f93e5ba28f98b5c720228840b45094f5657c7567a26bd1e7981c965cd3168eea4df0114a7e6fd3f37e4ab25f965bb38aa4899e10ae1105028bf19b7c4466a27719c1731bf300bfa2070756e84af53252e4399dc0c1bb8b9439cdec7d172162c45fe49f911b90923bc76afb27fd3a7e082d4c2f3aefa6a47fddebc713449b02e9b851b4ace2fd11be85a826a9951c2816e237ef1e915c44143e5d655c2834d8ea4"}, {0x68, 0x118, 0x293, "8eb680201568845e1f2797ab121cfa7131434936859aebb741390007b53d3a9c10f81b400f2731898631ee11e36cc07af4ae8f0649555708da8f5b2c2b50d578cb01ab547ab3b9e5e82730581b17f5d93d"}, {0x60, 0x201, 0x1000, "6f07621fd563c46ad95522295d2659af100d7c82156ace9ca749a0049efa16d2ece2184eef27b6356a2e5b1ffb644b8d680b55a8ea397e19d8c7083c5b500a0072361bfa3a4e38f1069933ca4d0623"}, {0x1010, 0x29, 0x0, "5f0268f6324c113c03e9d7f9f8f027145dfcd76cb86636a658ed67b3ca68210c6cb71c9e90861c7906fd058ccf9649d749a950bb19da7ceffa5eb280132556de10acdff12941268ac13db72d0bdca23d11d7f31f71ec0361136b56debd79019bccd223931bc1b78bf2365c29e975f2eb19bb71a4d3bb350e04b33becfb857803fd5997320261458baa63731bcb81f11a749ab591364927bcb16d9cb3db31092541f4fc3f490faf2f2fc8d4170e4d07b782326d50d6438fcad7daa144ad3796e6a69726d6bbdda5e428d38e3b2890b715a98fda5ab4d447b528582f341e5edbf4e3e87f651e6a4711c802994cee83b7e5a446aa77bd9bb9ed9e3f8cce2ace34f21a00248f3c4f2ea816140fa2fdc9c6e1a786c0866fb31576093551c69ed7f13bbb44fa16a49c125ca0bda89f5d130102164ec86dc7509fd43e4d682cfd6cad7b9679b54bdb8a50ea74a9b2d8af56be33ea2b659835c620ed5b3453e4720a269b4ecbe016dce79cb6e1e7133661913cf449c63c6a91f97e29bf3be78ac46f903dba498c8d8c2d3da0a85575bc5b1e0469ec131ed876e7379b4d2db002bfb9ccf5ee6a71ed9d6709df0e3f231dd4f19a8e84601c93eb5b2baaa1610c1d4d93e7f36fc46c6d588c81ca67e7d2bc84bd5ec8702cc815e89f49665f1c811e4172e50f1d841e3586df241d2df359da88991295d9cb10afbd39813ceb0577bb2ba071307acef9098203ea28f5015e6132ee390d483c2a81b596fe3fb69397240dcc666d2b488a5e8185850258228341ed540c5c691663f67bef297b67f56693d8dc2dd9c91f8a23bdd251120b5a48a37a365eb414ca440252ff961ff1c75124d83a831d35532197e4460224d6332d4bd49a1e84982537987d128ef4a3489bdd9f829ea8ac6565cdf0ae738526c5c8b7210e47d9e70b05a668091d37fe5ad588e1b1fc1416cc05481a9c72f9d8055abcde61f6ddcce18ae3daa1c81c4b641ee196d68c6660a7f43855a3e71ee1fd8af593407f01afe0693f288d9a857da2d4ce42fdc05b22075fcb762d2af3cad2384d9f328c5aaad216547fae9cd68acaa7340b91be548ad60b59be6d68b105bf1d86083357f463e71fd04c12cdc20396450b99c9d4dfa56f13e55f5b7a271245cec0b5c5e10ffd05a23e32c93aad5a8756a29fc949f045e97b8160c201f17d0141541790c1d120749748bf77c0ef5297297271ae2978b5395a805280a8ad34016a4fee9f1c2ba4f6d9904bfabc0c5928f9cb22c6d6dac8933cdc35906e2eb24be8f8f1a185b4f774d22d1d9083b2d38ff1c523cf89de539c56e031b8f491e1b13385dfa0e4e7407c653a0e3b89ce2d2be9cdc704fd44a9adf866cb7657aa045e9b7f73d2cad52d9d118632d4cca65ac8874f65237e3a4b3b6ef66d662e42daf35f2fec4667ad6f41e0d6b3adc878217ad5f8066b277bc51bc0b4bb888eaa15aee77c26a51f42b4a669f6b4ea170a1311dd6a19f027c6b9cf55775ccddc34aad553cac9f792450c6d84fc85a8c2da44946310329bd4ff941b3b291e57e668a1b362df3bb15f23bb559839bae2ffecf7f5bd6df488c13ca01a7d1a4ba9a0b5f0b0f95b61aabc71b4dfbb0f1651c05e41cc26771b540c47732f545b16d1fc152edd69e7202f233ff02b89b7cc5f0bd62318dfc0d51e7b4ed3829890ff6fa38f0c1b326cfb81849ea8979fa8e0c7d7e55932d60bc063bd1a3a62144a80115f60025b76be68e689956ae1457679596bfbf29f3c3a01117b763b936b0234a559f36c227fa95dacfd664550e1d6ff8a9d2c9db07b41e1e95b7e7a7489fb7225a6a07e7c37b359fd49f45c4fff9b5584a5d90f33907e52b20c80e9a9dfbe999c08f9079e0771ab99f2d6a7220f7e05f7535ad77ea396c78953b44d6c39fa29b09c8cad7ce10342bff57ed2ab70bad8ba2d713349e86d71f906e9f9c6af56a7239405ac147bc5a04c7d2423bfeaca2c196ca34c36bc9225368a61e0c8c51a6b9178d3a40f8cdb3cfd640a4d166e8624507f579d857f09b1691f68296cacea7acd5189d7656cf65196f09bc36aca5708c05ef527358ea31b24f939d70218f12988750ce7c381c4aadd8e621014f25f443d1db989fb2799853ec05129a6bd7b06e7871d47db982edb86c573eb0ec08993b8582c825ee8a278e78a51029b31128ef31b7eded0365be1c6d19bfadfae9836fcf4d4cb6849ffb85742f3a155b6ca12ad2ea938abb303511d88391efb301192654363c18fed6c942ad33e1115187ce4333a2d4d37ae90dd2e37c2f62d42eca7f229be078274e86f6a3aba9a935f2b42666542201ac50e13913bbb9062bd6441bf2da716897f94b6c71236f479364697094e16799f00858ab77b96cf64c44bc32d6bbc67071fbe7611fcf92688408cde0bb9200bff64babb108ddbbec1a667cc7ab9487e94d3617f12d390b540841501a8754fa52091f04ed796ae1993122f43eae7b6d80d3b9c19b7240291646f083041524c97f2e348c9a87db17cb35e89db11beab36269c6d4d57d599f5839fc0f836476448b4cae424fc8532e9a24411da66d974b0b4dbf6be9fe00bfe0e292fa9965df62f4226b1e541ecacd4e7cb2f237da8214975e6b514cd94c4cd8afd65b7ec58af8540394b199290198ef3ec1806815fd8ddc878907a38adb1377f28b4124e93a73a3e35cee5b95e970a992eb4afe8407576b09918c11f1225646f21570049b835451efa2a2ea89eba5903f73b3eeb6325951c36c70fdd6cc802085feefb60b91838490b627e6c8fcfa4964218470b7cec6af36dd5b4c1fa86a26d184d8a617f655cf95a73adfc36f74f9f0ab12f6d4bc18562b3b626d8397677dfad7dc0bbbd8bc664e978997ec17218ffeb9359b099f0d116fb94b2e811a61d299dd9572d9b9511a31ded043df29904bfdaa780572b6e9ad758e6091e365d3501946e995072c038327886d34c01f11ff06d6e6cc650e6f257dbacefa69316539163d116ab9bf0fce1a3c23cd9407fd38d14911d0f19db0d6de3b132a3e493b4c0057a0b22ff3ea814245a564bd4a790e6175fb106225f0f833dee2528ac00ecc0634062de9278202ab3eb364a5930209481b4bd43ad79c5338b8f5502e7afd0727fdb6e7818b05c44ad13f646a062f645f407e1241ec09aad317accb9272a6203c1857ead4e9d0730028066f07c8be95fd1590cb80896efdb8d113bc0332a7086e6a2ba7d84c46186e73d6ea16f08db3b2a71aa2c782593e5235f899677e7fa598cc99e12d1a4f036d1b6a53fc4cf68c3916a531175192ae4049cffd7cea8d989d5db4ff6a7d18f2bc7a6be9fcc4ff04730d75881064bcd74ce923df84e93568ef99eafbf13e7d8d59fa4556d570fc9b21b3ee3d457d116984ef11912733502724e0dc76473628fd85107adb7d6cd35f9d1e0e1e497b0f2840ae2f93757d2b5ba15c0f60efc52a13635233012d480e8b7ef86bd0bffdbee06dfc8b9ca0f26bb1ef938a115f232b9fe7ea422e51b75a2bc8a855dce50f679d5d5284ca3f8d7e11ef9065574cc58ffd07b17332b5031c390b8716ebe23c54ea048c4a07815e0fa0bb7d2a3c4ed4eb4ea06bcb9d97a8d2d67c1258d1da31ae1984df71bda6a72103a2a25d16445b16e9e48a2cc18661c7d3d71d4d51bfe3b985d0c8577a0c5663c80111bcbd376d2128558b29936ce1e48e43a04499ab72d3442e2ee7ff716432e9dc5f193160cccb0b7ec6810fe6a67934222534f48afe5fed46a518d66147439668b736b7e6a68743386532f0bab77f5dd19cf64f3d30e39e7be5a25e4140ccec9686b3054a4cfe26b0ade2ffb2976c32328818746f4efa97de225c9c32828124b88063259fbfcbc92c81ba1f949e2b4cfaf1747baf100a09dafb0480678d035a83795a85d0cf90a9d302b73214a89bdf97eaa0d77d4dcdc3dbfa13fdf2c3df127d01a50003743ef028c7f0ffaa936757bbf7415503db2813f7a5bbea1894bffad432f9ea6ce005f8eab443ebb3c60b705420b4aef25e05ea018145bf342c81f3fc2f08123b9056b9ade7275f42baec60eda1dd4d46966aea0969372cd613fa42e87f581ce5f19b31c805090eefff17f580e701e0b3b9fb2d31675ff88e664c01f0cc16520ed9f1bcf8b109051357d38cad0df84e197954d79d0852bfdb38400cab869c50cc56239018e7dfaf2330553ffa1c0ec379f7244b1fd48d67e8e7f05bdc2d8419a2ecdc54922379320d3f2db2e8a6cdb892b11940b83e22d152f4c5402dd777bbb1c80d8f2a45d681fd3adc90789187a3f0efe7e15802a63caf40043d3ba74b90aca76121260efb3146014f4e1ae8e264fdb254aceca45491e2065546fb4618a0882f7b000e49d41d9162c078a33a0feef9d47d534b7f8e836931e7fb10c9780164824b0dab74b40ac240658d8b130afa4e807a6b45f7feb8bd425b97de07de1c1221e51b45c506ded5a8fa66654141325e840b201139b2afa61102ca97ee0d463bcaa3efa75e28e65a464a132f3e1dd645b85fd275503b056b871fd49e69cb2fab3a91ba52b69bcf91cfb693bcf02047d3af9a51cef0d74103662a319f034d6f9034f2a301a0e4740e621c228111121f0802ca22f9bb09ea8950d5867a1f5ea46f2a0451b5fb2edd88c24296ed1426b4fc95668974dca417d2ba2773173ba6c1f0ff16988f3af258c41b8236c5541baaef974f3f53729b3dc3d72607de7e0e7214b98b713e96c3e9300d4350486fc1b7b08239560b12ca3b9a94cd53f20dbfe0ae8a8e406602a1a32c05017fd5c1a0f54f22461707bf62b6ce9162e29f30131e6e8d70932336e7995c14aa179f1f5cd1f74a35ecb101bf1f7385a3cea96f2bbe12548cf5e465157675a18166fb5c8cffa431b4a560fd1d5d12dc3a464227505966ac71fdb9acaf7db057f7fd867ba701c61614ab2399d361d39c12af03150d06397ee15256c7ffb7402b5bbb2890e401298b62340a51a962da5a741ceea76310e909bfc2d402c02d325cdd8294625d782dc3f1915a18ab0a15d8deee2d7974e30b10357f61447bc75837fa118f260f10c9253a267d1c92eb40c4775e64496dce97cbebd162dcb4a87ce18a0eaeac36a1233e0a43bf517816edf55d7127c02b738fbe01539bd194b776773545e589a1a0c0966bd6430c3f50e330423d1711524d9ca0536c2602f0a8b81def7dcb719510c0c33a6d3777d8d99fb16ba56db7bfd501725a4426951f4082340e4708b94e15828fb7c86562e88ea85d9c9220635df171ef4f501a2507dfad7869b5595d21aed9e107c7f5b8656cc01bffc5f55497c923ab216a603a78b91addf277f054475b8a449ef28c197795d852f5f39925e72fcbcd6b19823337f3a9246d935afc7db8d938dc35131f082ba442317bec6f9208a2cf7e5457e5d84cc9dc6c9bde4db148829561f46038957f2d72698924dc959f55bbc83bd76180a14d6ce7086f765875c161eee58c6cb73df94277f42e0d4095cb378fb03ede3f00d9209c3a954e751818e63786203ff97771adfa5c719c4b92afd73efb114555037c6567078132cc31e4ebdfb6eec130b47fde15cdfbc9f3a9ca5c446903fb6108e6e301b4052f6f60673ac85556f0c0a9e55f97f044b899fca010d01ddb17061493b9dd7253d1689d23c806471f7cdbd671005af8e57c6b902c5a743afedd41c1716a339ee552369f036997e26c1f49ec3ebe9cabd71c0259b0074a7357a19fed4759b9e15026258b518072dc06af904adfe36abfcaab45e4654b3695e1c28cc8839c4fb7f79361681ec76aa1fe3b57bbd8dc7"}, {0x90, 0x113, 0x8, "8cc6fffd5aa892d822a18ddcf2ab7efd29d70c45afbb189c5afd297317f8124c2e84c89f98ad6c51c667b757e59ccc8e9c8d9d844d9b81eb9a40a3170384e55a8ca9c0741af6bcf897280ad14c7da0dbc07a430a5c7f3c3cb50ff01540dd0bd42839369ada609ecb46a227b26d7d4aff3ca7c124f0e346439742092e"}, {0x10, 0x19f, 0x1d0, ""}, {0xa8, 0x100, 0x3, "4d5f6f483b61f053d77342c5a002593e4508e267a8a8d3c5356c7bbb2c7a6e172ed0f9146952748015dadbe778b6fdc204d05a555253194e967dfbfd64030384ae3fbea54ae17977a90d08cf11e8f3dc339a8b40cec4a2fc56d032c4e472f4cd47362451c8f6c95134031dadc66e46289cb547bb3e846de3f466683e24405c838a07cb6a80138a99c95c17205c5747d8f6954d4c"}, {0x30, 0x2000001ff, 0x5, "0783e4bcc52b17c0874283dd81120cfa116a2114643fd076542c415aa42c5e"}], 0x14c0, 0x0}, 0x4000000)
inotify_add_watch(0xffffffffffffffff, &(0x7f0000f26000-0xa)="2e2f66696c653000", 0x80000000)
rmdir(&(0x7f0000532000)="2e2f66696c653000")
r3 = syz_open_dev$sg(&(0x7f00007e1000)="2f6465762f73672300", 0xe5, 0x121002)
gettid()
ioctl$RNDADDENTROPY(r1, 0x40085203, &(0x7f0000000000)={0x2, 0x1000, "cfdeee26b7ee2970eaf74f7979dd36c49cbc00b5810567c4c76f2d0aa1901089ca927271ee21317d37c303279ba229ba6316ed44c05f69fe08d77f89051fc5c4dc9eb8e4e167e42fc8383cc679f5b893bd1ed9abe3186bfe3ba73887bd3525c118385fa320540c3d4db4cfa59320f2d6a2934c9bbf99633b2ebd7775d716d35fce859748d349776b8e2a01097056f5afb9ee9dd1306fb67b7468cbd3e48cc0e5e1deb37b41fa265b2f9c23ef71c469c8fa470a76110104c952ac693b9d3ceacc4028328af08fc0dc2dd9e7b358905e22cf2be21fa165183b954339ba42eb629e040ea8e25b1a45992235c3d7130cf0a840fd016c612b5d8d134d60d3aaa9549effc08b795a99ea34291660ab843d1c3d8e80accff8c3e87515062877c9b79b2b0eb857d5a1a397f18990af87bd999a0151df0c0b8584456ed0dfc5a2b4ebba1d735a4a42c2edd99c2705ce228839d2ec7c1f0dd98a811f463dcd3a8b7cf93f731c60dc62e599288f9c94ef67bcc527912605068db349c91baf5fff332423c12949b1e737b490fa3df48389dccc670d5f6ff166d0564763d6e078c73dd64c622358eeb78a0054283082ea9bbed50a407e46b61266ebba120b78d1cf84067c9c05d20fae3b25545dcb2ca56288fc31a5e8a28ac988a6b6a7f5ea37652d6122b698509046d7555758dca35fc5212de899885e5f8e4103b853e4796eaae26661af4bbdcd7b8773f1526c7e7ae02840af990bfbaaefba85abec9212b6b46c1508324125868ab0a1a7988c59701db6435e8a66f5166dbc5400ee5be43ea05560109011bb85ebaee1745c60f3b04caed13dfe8ec6ee247fefba40abcf62cac7a9a67ba1ca6a46c4c8b4f10a3e8c46b368b2bedb301c155d684c5defffca9f91f8cd4ff2239977f4afe5c700deb3879bd54ede244037f6a8961e8f0214730d8ffb922ceafd28d647373b772c0f1d3f41338fe02042329a9aa26c5363d8bb7158f3facc59b6a65a32baf8f760c0487763a4f9523f991faa6ed588908c89a31a399fd091746e3ad29dd11d22351feb40d68357d26f86ed6276460bd3cc446f33a9aeeecd7b6711dacf3b291483819d5e1ca7d029aa93c8438c8877bba518e7b57d652b7bda342e35df4946871a6cf9690cfd742a026d08a52b15b9e22ecf922a60a2a6fd8f759ef9c8d699991090a815b46251b9d10fbcf24dda3f016fad5384f75826dcfe4f51677f19d9ef69c2300e4f04c6e30a2177393e87b02a07106603106a04decc9487f2b701003ee77faf515c2a92cfa0d22fa5fc78f45497e0a4553b86906c527e8a7ab8966fbbb608e29695c8cd7ea90a0a0261c90400b5f94aa8bb3b7203fc801e947f33cafbf0f8c8232e1e1b8bf35fbc340d7c8413a6bfc07b9c8665229cf081565ffecfc68410127fe7a1ac2f0166d40a29e535f402aee7291723e67a2a5e3e7862cb6e3c55b7df2e08b3ee6c14317977c5894d358c555121649844d6fcb9410469e1e642e74a7b70b2af0a131e64feb6db96f13b7151d126cb2fb30c7b92080000006d95868d95b458483b2f5cef03dffc812a7e137f3b8b7c15129d769f8a44653f2cac7fea8e7cc5a6f132d7a83f0cec2a066b011f769c245737080990ab27dae6203d84772e1d476ef56bd4e3014446b7ef5b23252004b26dbaa48a26bdde8670d55547482c532778851f3240a3096972d61b8a19d3a9403b436e491350cfca16bb62c14240fd116ef94e3319967cfdcc90bafaba97591bfb6d0eaf8cd6b1e3f34485f259475b51ea658962d4e729ec7e8ed2daf81da27b79ce972d293c1c42645d61041fed285ca60306bd5df8d81acf1ed115111d382103804723ba8bac32bd81aef5d4ccb4c55eeb836f1b64afd9f27272cb8a65b40f83407e8258379b88f9b8265b5c92a8aa2201229368f52a2605553adaf6c13e624615b7966dc9d31b2696adffb0dd57334c3ebd303fe317cddcfad2c567a00ce1f022cc6706dd1f5633b120d7fb8983999881397511d73d94c84e0d16a28ebfee6c85e073dcca1ae05100eccc3ad46704268cb347180ab8c67244039bcd23aa4e54836e84a7222342623fddba2722ae061f4e90c04c8e567b40c27228465068154dc5e2bb0b4d7dfd0a7739aa0bf383aeca0ee0de31d329d847dc6596af82e2e156b708ed4e9fc05c3944dabd8fb36a49f777a1372c9ee59ae7125b4ec8a963cea90086dcf2780be5ca0fc9dd3457573d8f73a6e0ef9928b7d1276eb550683b2a818773f072c4aea8b8f783de0a4c56bcb341e456636081bdedbad54286a9cb909d2c81d1e057f69442abf1ba24caf151b32ae910e58e5c695c220351d142f077233b7672434cf8b31fe21c40d752bbec04403065bdb9b5476e2372a92255b24ca4fdcc29f1305aab294fdca2cbfbd6fb1dc874e352d94b455f657f2757b7e97aa19d2b3e8c7e4ae572f22f911792ca9d812c2cad90944d29ae645f54574b79e60e28de3ce8277576b8c439a1458ebf5e8022a9e4ff52046d582d9d59aebe603e5355359ebcb744fe2e8e2592e9d7fb670089f7abf7b7129777c45dad67cfeeaeb7408af106f6b4a0fca8559c4bd9175c1cdd1a1c58ef459c9fc5c961374f53c44c3eff7d91d28d6d3cc381b511a153a0b4e45b5b1a5e423d7b92efa08086c62454e06b2173a6c5de1ef1dac26be250ce965b897aa9fb26156657bc1af346ce7298d7e474bc184cdd1751f7cf0597a0dbfa9256db221c3f6b26eb6c82f5e7d6fc6b8699680045b26d6dca800451cc77b36f3765c1541736afe504459de02d42ecb3b4363eb66d00e2f35f155d7e8b042837d2dc0f55595a44b73759cf9df982ec69e8330acce6c7ff49865fe9d7f1e4fb1f843a141326bb3dc5c6dbdc2f057c2ce4609585ae1a32566d44fad72e16c287cb069d4ea8757eb6433129f2b6952650eb6f0d9ece1afa75d7557f85cf15d60dfc4801d7805d72f4636fd09becb4ee6522ff98266ad6ec4f14d86fd554bafe1ed32c1d3050bbabd449a25a3137f383aa57bcd1aafadabb7c81554f7f54ebcfbe9bf61898bf5940acf1793fa36bceb0f9cf1d377bf2b5e0f1243035f1724a845de53fb7d30ee5cf1d058507483841c122636e83c89fd1c5f762aac977cf4ba4893e50ddfdc882029f27420c06ae1d5d15dff10846194bac785bd6be6a67d27ef5169cc41bcd13d65c05f6b0e79f6e022763ad45205b4e0d7926d478312259e5872d9a4df0c3812d3622bb30813e8a3e88f8ecae2b446dd1e58da168a6d706019af45844e85ffa6091bbed6c528f18906425f64429ccf35af0a972c341848032a77d171c9d331b44a9d936aad7d149fbe536db84eafef5d42bb99d10162aac126f88cbe398786f43457db2321e93b5f9517408cad9e894bad9636f344408325b83334f67c8620d713341de02b74e429987ff26e71e8f73fa3d5546158b7c832bcdd7e93a906a375280b7ee916c40c50fd09ce5bd49a69b520be1873a19e98be17506bec99d27e20e408a524b4afd956ff969aa7151a38e602191020577e8feecf370696bb242406112d018f0b2b0354417ccfb11803319f1eeaefdc6b57e404afcbaba89683c9bb9346593566d19f855500ec7024e3675ee9b00a2c0814eb63dadc05ead02437a1db6ead33e49d41af3b44f2b96fa565fdc53f1d14aeadd9341c73701059a82263712280341603a076d9b90b021e984fb1a8d2f382082c8b5441b6970ef9810ba3399f19579401ca6d8f7d0007f92b3abc5b08a78896035563dc4571156734f664bfe0a8d61ead92f8347f340ee36e35c824888c163d2cc255096cf00fd687c01685dac25e202406be84dcc7010a4665787675827c3e6273fe4e2fcb9150d0451709cae3cb8720c6d363932d869c478e25f8f96dad19f35cd530bef814231aae43a529bd1a5704699f8bb11a7e45d6823318543050962fc34932a5784cf20650337f673b645fef74062ad6b3d82293a02921cde2e0b25b8be8194a1ebc4cbd0391516de0da86e9fabcb1d9ec9a5c64eeff27981a93da61c520f0a511346630d2dbbe149a1b9e959dfbaa4757d2261e990a05ee6a03463b9208e9a36dea1e56ab1323c495fba5f0c063d3d07179c3406e2a0c13a5a3c51461d41cd4f1406b08c133d819ef6ca1979c6bb62bb9c3a2266a957f470cecfe56b0bd7005f0fde215127065b7f3398351bc80a867154ebfc5e502c22fabc3c0caf53db7119af088813a99c05198b46579b219058ebc693fea2bf2bd40be280c1a468f169899aa1cbd1ea15a06e999120e2cf545232d7a0d1a5a4218f99b15c22f37166cfa54b374f95baa3e974d4724a280c052f0f14cd76bbb80f197daecf2f8ad9b6686c34dbaa0b48421c6e297909ba28b7eb3e133c6759315aa619e385916d8b9f3b870a7be706af02c3917d5beedc606adc0562947a7dfe1b6adf10573829a4dc755fffe65efca2c406f23c0d4e5c0f719c61382cd85a594d33df09e108154ab4fd9bb51ae0ae23988a9479a4106b3ad290f8e60f5c1069662e52e8e1a7acba8df364c137bd499ebb7ff7b22e0aedd8a767b080f8621c6cb53593a0b560ea60e474f761edfcb792ea1eb774fc58b3874aab8f6a42bb34d85a277da3ec7caed8e5e869413ae265edbd36616dcd5af028afe4aa77d0842853339e62d26b5e45326524532f3f1cd30d01cdb57cb39d8ddcbf3340b5f09ea71d22fc1137bb9a890cee01e82522d2c72c54bd553620dc9cc013e840d5f8538d6bd8d8f740c9aed60e34a66d8044e74c9383f677be54cb2a6546b0e36b68e30a383545c89bdf57236f8bc161d582fa7eb4f58f20240e4e788b5147b2e22820618fbfa335fd62c60ddea312882503fd11706f2b40887880b3e16853c7407c69d0a19d2533d120c0637b4423a43f4a1d8acc4bb0cf0bd23b86675f03718623204deafca2202c16e82a7c73dd45526563144fa8fe954dffc167289dec8c9495f3de57532579f4c54375f4549ac0961bcecf715af81d48bc65426a3ba185a364a08bbde22e0430533866c7280ef3889821ac2eafb3d1fa07872750b9d6783f2c9e6d0030fc8af18862f0684ed8e3483e034744233b87588f57bb1a64d9c87c24c592f300609fd6f8c5448d2a9c83e1a0ca3ea30c47718860ab7e2b60667d0e52e98b6d231da7d4e0483d9135ecfc1bbbfe9eae22a91a3ae60863289f9ad62f4b3eb38dce733def5399272ff4bd7c8e8c3368a3ac2dccae061deec4c9e125c58d5c2e6c16880fc619e50b531cef5d42298318d2642ea28ebffc21cd584a8638b9c81ca5362ac02643fcdf63dcbe0257e520c311f0eedf2e7a72f89c19d415722ac0bc618288087656140c1b2639a1a774431776e2e79f1d04317e47854c80cff22c38359face1fe07691fd05d9f62bc60ad3e473dd9e1333a40110d2fd98fecebb58d61644253875bf2e80bc5b137653be430581fe87087493cea3a14dd43250472dca16ba1df74d43d30a002ce1b025e89b34f2962cd6d31e9edf471d4135366c91d71416e19dde6a6dde34fb496bd2b25f78d3bd9995b716e24fdc475a1ecb9621bc1aa33e1d5d46f14522987c0f901136b084a24aa5dcbf0593a18349274e2199f417ca36d965ddd2b236b37626aacdaf0b2628e476392444b5204005bc52633bb4d182dca82e6e36cac8fba1f0933387d1134564fcf74bc8830aa8fa02a7746af82b425ec41f488519baea1fa196f3c302c8dc31081f70af5746eed7a1e1044e5b49b15b9bfde68adc26b298bcbec7df884e66fb8b43976d07fd3cf2585dca9"})
r4 = gettid()
r5 = gettid()
perf_event_open(&(0x7f0000188000)={0x0, 0x78, 0x40, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0xbffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800, 0x80000000001, 0x0}, r5, 0x0, 0xffffffffffffffff, 0x5)
getsockopt$inet_mreq(r2, 0x0, 0x24, &(0x7f0000eef000-0x8)={@local={0x0, 0x0, 0x0, 0x0}, @multicast2=0x0}, &(0x7f00002bd000-0x4)=0x8)
sched_setaffinity(r4, 0x8, &(0x7f00000e8000)=0x77)
bpf$MAP_CREATE(0x0, &(0x7f0000962000-0x14)={0x20000000007, 0xb8b, 0x40000000004, 0x7f4f, 0x3, r3, 0xffff}, 0x1c)
ioctl$KVM_SET_REGS(r3, 0x4090ae82, &(0x7f0000090000)={[0x2, 0xfffffffffffffffe, 0x6, 0x7, 0x5, 0x6, 0x4, 0xff, 0x6, 0x8, 0x5, 0x101, 0x8, 0x7f, 0x3f, 0x8], 0xf001, 0x5c05})
r6 = getegid()
getresgid(&(0x7f0000ab4000)=<r7=>0x0, &(0x7f0000b2a000)=0x0, &(0x7f0000dee000-0x4)=0x0)
setresgid(r6, r7, r6)
r8 = socket$inet6(0xa, 0x3, 0x6)
setsockopt$inet6_buf(r8, 0x29, 0x14, &(0x7f000022a000+0xf9b)="ff55d36cffba04365d0000000000000101000000", 0x14)
r9 = socket$inet6(0xa, 0x200800080004, 0xfffffffffffffff9)
setsockopt$inet6_buf(r8, 0x29, 0x14, &(0x7f0000e68000-0x14)="ff55d36cffba04365d0000000000000101000000", 0x14)
setsockopt$inet6_buf(r9, 0x29, 0x15, &(0x7f000064e000-0x15)="ff55d36cffba04365d0000000000000101000000", 0x14)
2017/12/15 23:28:16 executing program 0:
r0 = socket(0x10, 0x800, 0xe)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x0, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp_SCTP_RECVNXTINFO(r0, 0x84, 0x21, &(0x7f0000003000-0x4)=0x1, 0x4)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$ax25(r0, &(0x7f0000001000-0x10)={0x3, {"052b110000e208"}, 0x3}, 0x10)
r1 = socket$inet_udp(0x2, 0x2, 0x0)
r2 = socket$inet_sctp(0x2, 0x5, 0x84)
mmap(&(0x7f0000030000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_PR_SUPPORTED(r2, 0x84, 0x71, &(0x7f0000002000-0x8)={0x0, 0x7}, &(0x7f0000000000)=0x8)
mmap(&(0x7f0000032000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet6_MRT6_DEL_MFC_PROXY(r0, 0x29, 0xd3, &(0x7f0000033000)={{0xa, 0x0, 0xfffffffffffffffe, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1}, {0xa, 0x3, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x800000010001}, 0x8, [0xfffffffffffff7fe, 0xffd, 0x2, 0x100000000, 0x1f56, 0xa7, 0x8000, 0x1]}, 0x5c)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_buf(r1, 0x0, 0x30, &(0x7f0000031000-0x90)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000030000)=0x90)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000032000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000034000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000035000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000035000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000036000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000034000/0x3000)=nil, 0x3000, 0x3, 0x32, r2, 0x4)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000007000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000007000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
write(r0, &(0x7f0000004000)="24000000190025f0011c1fecfffffc0e0200000000980000000013050800fc0f811890b3e0907c01", 0x28)
2017/12/15 23:28:16 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x8dc000)=nil, 0x8dc000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = dup2(0xffffffffffffffff, 0xffffffffffffffff)
socketpair$inet6_dccp(0xa, 0x6, 0x0, &(0x7f0000814000)={0x0, 0x0})
getsockopt$sock_cred(r0, 0x1, 0x11, &(0x7f0000163000)={<r1=>0x0, 0x0, 0x0}, &(0x7f0000936000)=0xc)
prlimit64(r1, 0xd, 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0x86, &(0x7f000093a000-0x86)={@remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @random="7c4de8074ff5", [], {{0x806, @ipv6={0x1f, 0x6, "14ba50", 0x50, 0x11, 0x4, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {[@routing={0x2c, 0x6, 0x0, 0x1, 0x65, [@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @loopback={0x0, 0x1}, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}], @icmpv6=@mld={0x83, 0x0, 0x0, 0x3ff, 0x7e, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}}}}}}, 0x0)
dup3(0xffffffffffffffff, 0xffffffffffffffff, 0x80000)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
keyctl$join(0x1, &(0x7f0000202000)={0x73, 0x79, 0x7a, 0x0, 0x0})
clock_gettime(0x1fffffdfffb, &(0x7f0000a25000-0x10)={0x0, 0x0})
ioctl$SNDRV_TIMER_IOCTL_CONTINUE(0xffffffffffffffff, 0x54a2)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
dup(0xffffffffffffff9c)
r2 = syz_open_procfs(0xffffffffffffffff, &(0x7f0000811000-0xa)="6e732f6367726f757000")
setsockopt$inet6_dccp_int(r2, 0x21, 0xb, &(0x7f00007a2000-0x4)=0x9, 0x4)
r3 = syz_open_dev$evdev(&(0x7f0000073000-0x12)="2f6465762f696e7075742f6576656e742300", 0x0, 0x2)
rt_sigaction(0x1e, &(0x7f0000af3000-0x20)={0x1, {0x4}, 0x2, 0x8}, &(0x7f0000e65000-0x20)={0x0, {0x0}, 0x0, 0x0}, 0x8, &(0x7f000086e000-0x8)={0x0})
read(r3, &(0x7f0000571000)="000000000000000000000000000000000000000000000000", 0x18)
syz_open_procfs(0xffffffffffffffff, &(0x7f0000224000)="6e65742f6669625f7472696500")
symlinkat(&(0x7f0000ebf000-0x8)="2e2f66696c653000", r0, &(0x7f00000ab000)="2e2f66696c653000")
write$evdev(r3, &(0x7f0000058000-0x60)=[{{0x0, 0x0}, 0x0, 0x100000001, 0x0}, {{0x0, 0x0}, 0x0, 0x0, 0x0}], 0x30)
openat$autofs(0xffffffffffffff9c, &(0x7f000030b000-0xc)="2f6465762f6175746f667300", 0x80400, 0x0)
mmap(&(0x7f0000000000/0xb36000)=nil, 0xb36000, 0x3, 0x8031, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:16 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
write(0xffffffffffffffff, &(0x7f0000739000)="", 0x0)
r0 = semget$private(0x0, 0x9, 0x1000000448)
semop(r0, &(0x7f000002f000-0x1e)=[{0x3, 0x6, 0x0}, {0x3, 0x0, 0x0}, {0x6, 0xfffffffffffffffc, 0x1800}], 0x3)
unshare(0x40000)
semtimedop(r0, &(0x7f000001e000-0x2a)=[{0x2, 0xfffffffffffffff9, 0x1000}, {0x4, 0x7fffffff, 0x800}], 0x2, &(0x7f000001f000)={0x0, 0x989680})
ioctl$SNDRV_SEQ_IOCTL_REMOVE_EVENTS(0xffffffffffffffff, 0x4040534e, &(0x7f0000d9d000)={0xf20baec62e5066ff, @time={0x0, 0x0}, 0x8001, {0x6, 0x1000}, 0x1, 0x0, 0x9, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
clock_gettime(0x3, &(0x7f00002bc000-0x10)={0x0, 0x0})
time(&(0x7f0000f8f000-0x8)=0x0)
semctl$SETALL(r0, 0x0, 0x11, &(0x7f0000546000)=[0xfcc, 0x400000000009, 0xff, 0x1, 0x800000010000])
r1 = dup(0xffffffffffffffff)
ioctl$PERF_EVENT_IOC_PERIOD(r1, 0x40082404, &(0x7f000077b000-0x8)=0x112e)
r2 = perf_event_open(&(0x7f00001c6000-0x78)={0x400003, 0x78, 0x20, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x2000000007, 0x0, 0x0, 0x3, 0x0, 0x8000000000002, 0x10001, 0x0, 0xc8c1, 0x0, 0x40000000000, 0x0, 0x0, 0x401, 0x0}, 0x0, 0x4, 0xffffffffffffffff, 0x4)
r3 = semget$private(0x0, 0x20000000102, 0x0)
getsockopt$inet_sctp6_SCTP_ADAPTATION_LAYER(r1, 0x84, 0x7, &(0x7f0000864000-0x4)={0x0}, &(0x7f000060d000)=0x4)
ioctl$KVM_S390_VCPU_FAULT(r1, 0x4008ae52, &(0x7f00003f6000)=0x2)
setsockopt$inet_sctp6_SCTP_AUTH_ACTIVE_KEY(r1, 0x84, 0x18, &(0x7f0000755000)={0x0, 0x6}, 0x6)
openat$ptmx(0xffffffffffffff9c, &(0x7f0000666000)="2f6465762f70746d7800", 0x643ff, 0x0)
ioctl$TIOCGWINSZ(r1, 0x5413, &(0x7f0000000000)={0x0, 0x0, 0x0, 0x0})
semtimedop(r3, &(0x7f0000033000+0x816)=[{0x4, 0x7ffb, 0x0}, {0x0, 0x8000, 0x1000}], 0x2, &(0x7f0000935000)={0x0, 0x989680})
open_by_handle_at(r2, &(0x7f0000a60000-0x11)={0x11, 0x8, "4c94b91da610d6a8b9"}, 0x10202)
r4 = dup2(r2, r2)
unshare(0x8000000)
ioctl$sock_SIOCGPGRP(r4, 0x8904, &(0x7f0000945000-0x4)=0x0)
getsockopt$inet_sctp6_SCTP_STATUS(0xffffffffffffffff, 0x84, 0xe, &(0x7f0000049000-0xb8)={0x0, 0x5, 0x0, 0x80, 0x100000001, 0x9, 0xce4, 0x7d, {0x0, @in6={{0xa, 0x2, 0x7f, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x3, 0x8, 0xc499, 0x2, 0x2}}, &(0x7f0000598000-0x4)=0xb8)
2017/12/15 23:28:16 executing program 6:
r0 = openat$pfkey(0xffffffffffffff9c, &(0x7f0000b75000)="2f70726f632f73656c662f6e65742f70666b657900", 0x0, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_timeval(r0, 0x1, 0x14, &(0x7f0000000000)={0x0, 0x0}, &(0x7f0000000000)=0x10)
fallocate(r0, 0x2, 0x1, 0x30df)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmsg$kcm(r0, &(0x7f0000001000-0x38)={0x0, 0x0, &(0x7f0000001000)=[{&(0x7f0000002000-0x1000)="61b7b651b0d21d1e75c8fae4b1a7e129c75a10e8f550141aeae8c38e8b520dcc44fa698423361ee5a103f3842ba8cd32bc53e6f129ca954cbf4ea62a0e131855b8b63007d1998d12cb20d34b98acb393b3d7f9b24c3a9a8b0e5a5d72861806649ec287502e8f9749b9826c5c229b86f54ac81f900693bc2f3aee93b745e524f02509bf0730229d4b698562209f614bc9d2826979fe1be75a052fed516b120b30f4af2e26932e293ebf4a2fc14dfb016857849df8a066ce7262fa793a38b453c9a047ebf63494fe6bc3341806fad1964ed4ec713891fbe49c29d921e222d646ebace84ce4c0a5d88e1e32467a0f734d3c1cb7c87c8fb68f50f83771c38159fadd5d5b1d8a15ec31f42c50a6145afac6b84c16f865cc147ed3de7c7a0eb84a742b253341fce28925d688b7e191de0b635000cb69f20e21f7d031746facf91c9f304dd3e97523873221a252949987544f81b2328098a6f307bc02bc36f91406aa7c4b6474a32f340f4fd8c0bb24d3dadfb67662e34a4bdfad597831f2dce157688821a78ba0d71a4f5d9666eafe9c62117a7e317d61c8d1faa7385f40c1562fd20480886081323abd6fb85cc0b73f1f8de5876863ec474c58cd8daed4fe0eaa6a35eacf177e85ac940898f15caf133c37c3551de15141e573f78d9bcf53e63d37d3e9a809e2b670d06131bbe4be810c8ec4bea0f49c71caf80a1190996aaa0784c1b9593178959a11c89456dac1a51d99cc7a500e5ead309fa8a4d8e22f7603aa0b07c8977524d1c5f8084c42ea94e3ab319a3608e7a662eb780bb22d268d10932013e33a31a4867b956d01db186cfb6b065451e7fafb8296856e232d441dd33bb1396883306ac3117d85fda1e7a1f63072d75b4d6af4434ff9379b4e4777e1a723b0e0e7068169c44f5d6cb61e85ae8a24dc0799b56b6d670fab3d90f811b5b8ca30af394ffa56e3c6c70caad96d0ac286dc7a3badbbcdc6ccc916ce46d046832ca80fb9927cde95124ffa0af69a94a0b5fd0a601d1142dccef62ca8a295372d5ccc14251173df30dc7cefbc6fb432070a55532208fd9dcad6901e0c50d18d3d8273edc788cb9b08b8554051e766ab6fdb455652d2df640d74c30d901376f8e73913654642f3ab9b63ddbcdedd000d527ef779002971096defd1292f65c1dace571ae71bc88c7ff009ab522d3d99da4dafd7dc5fc9e833d673cddfc55d7266d9c96272dcfce72c76c3d61537883ee48c88c831ce5045e897f0f9ff0b5932152255a518582ff4191ad8b0192d2c52da32a8ef1ad2f627793af6c4cc18af3a24dfd7f7c57dbc3d9d8f096140d6184d61366afcb147df420212e682fe05bfdf18860dea501d6be1cb1d9e8c853aa221b0fcf98e8b5904712a370e4342d6ec4d021cc15d88ab3838609f7335e02a4404a6b1ab8e4a76eee36d86683bbdb1139e87378892b5d45542bb0d833251d64b6f5e72c4ebd7da0ed524699666293f5f91d1e05aab5dd5d77f736ca56520bca350adbb3c56f4b6882766a229ffac10c51b38e03b27015bb799416b9faab6e7b0714f9f8df80f848d92858a019a45bcd7441e9c06080954f563fafb6acaa7a06a7b0b32531970d1892c87d51b9cb844ae8be9ef93515fa7f2210ae19f3c3be99f3ddd47bc8cadfffe91df92258bde40bb3ce6fb458b294b767ca30ea7f7a0e585aba62a3429dec0783fd423fd2d8f84f4ec881270d280e2b1a3547f97e423e5a6b50f8a5d6937bb12af31c4543adbcdb184c8d3add97692da6e3679957bf9605b9bd827f8c9f73e16a59f6f4bb0c6d93cfabd71e25bc7997144c7334e74e6961f1d610d1302ce6290220988d7990198a692f28a1bd3a46956ec6b36b8907020d9f33186dd650b7be61a5b4263d10dc251da7d0a88517b062a6757421f18bb1cc5f72242368f490959556418fcbeb606b83daed2127bbf974f299b3ddf42eb2c2283b4f9e25d5bdb3359706fbf785abb1662624446b860b2c435c8eab2d87b9645bbdd67e70d518818fc8ffab2c86ca0ab7a0c3461a3a7768c7d81e83d77b81bda968995d221ebf233aa5316dc87bdfd57eb846f8ca706dba7a5b697fa126417c3d87811dba2a0d0289a3a447897ef7d17bcd7653076c167af2bc909756e6707208cb771c3c7ac6cb953a82c3d6193a99a807aaf1ebd47b37bb434a9d18b86de269e31276d93a2a7dc7357aeb64d7aa67537a46ff7642039445b3fa7155cd4a4ba568eec19a62da9db80247a7afb675d6ddc10f3e4661043b446b9ce7844fc52c7f88c2899d2c76aea98eec07edccacfbb4c2eaad4eb649e4c1562e74a4d94027517b073bdea55cd6d749231a409824bbef3630fa54032335aa7c616d4df34fe0bc41e9f9b3b6fe8da2bd8f1e95fe840b17d9c198ee86809225a672ea468b01c12fa1a9a2c702735091108838282349060f832909edb76e0562ea5bde083272879631ed889fd798f082e7bd234b35612a3acc80c623a4993f2337bda81b4818fbaf50493f2dd76c0f88fbdef9453ae22440687fdfcec1322e95d625024dd46195440aaafd9fd7dc0f34fd831d6610f7bcaafb0a1faee76544a30f3ef92d932215b85c202d92f1f32e8751f94e1f02a8628832a3cc69038081711f9b9f5735bc3f8450308bddba527e953b6047e3e1d394d84696e84616b39aeb2cb3d356572e9ed1c5942aca24ef4c1559d39804be63b9468a2cb476154abbad8aa4bc215295c3ff07a4174b1bb184db5e929e7e2a286d988cea6f017419a50316ef70aa57cae38d3bfd2a9d7f2c25e867263ec5a6e695ac1cc2d15eb08775ea44fe7c66eaf571415f215eef9b6aa39c69d65353b3e3e8bdca86590e9af3ec5d0192eabaf499bce8113af19b4c3628f812d2ea3ed552c0ac72965379954033e7a77fb674d6f88b8ce9b5a1ee7df46cc3c733ed7e2db9e05d9b03757dfd82565aae7d2443b79d25443c18c449bbe9eef85756c8782574add32ebf2789b96cf5db17f940349f84a12e0f4ee0372fcf25bbf3e371b891df64373f522c6048f20db1dfd8890051d44d77eacd702260848ac0660818aaf0be820918b51a6cddc924f00fdb39654f0a0922354bc72740a2f2bde522546297297384fe45ea884f46f5f0684616de435697f65b16879b8812c323ff2edd4d47437fa677e94bd0d763ed7c06dbdb1805de4810b3589176ab975ebf0d6f3f148ba6d4b77249755202c115100dc72456a3a4a02a97b43a000d28a699dc1028d93effa196a9ba19782bde5bcf6afd196540a6826246156d65fcf5d1446fefa7d9bdecf81eb5f393595c8357572fa54c2fe0a550123b13934d06fe054e17c1b859b4e1d7f1c5023c68d2eb0d16a60f7210811123fe1c6ddd0ef5b8e5e1ba014e8b16c3c509addf0db1695e64fbe0f621562a27237ee23cf1f44c48270b44fd4e99f80e8f48820a7c5797b5378a0f6f35bbdd0676ee2936480c5ffc4086f95dfa3c0da1824bd5f1a4cab7c214025984799a2ec6add3c58a1394dacdec3160b02a08b1e82eee8d435c9e5f130defe7c275247bd615354a92b370c02379475faed0897bcf14c23d77ceb6b15744d963b98081aa4f95ec5b99948113979c63b29c455e7f113d2d1506c5be29a23bcd795cca8094228cdd83d45798a441b6c2f599b2c05be6529f3527642ded62d01642ec4692df2f2e573004d33ec3f02fc12d82f90013d9531aa884223e40e35b16d0f27cbcf361c9e92cb69d78aefbe32fe9903e476351cd96947fe7724f29a09d6160762573a250bebf4fcd8ba5d6222c3fde745f100a74ce7267aaef8692a2c588694106272d52bb514644284176ad8ee0d7d75b207ae9959d50cff17955c76870498299c0bedf918ab638d499dd8e17f5db3d0b69830ddd25e1ea5c96e87fcc19f9b07bdcff6009bc0d75cd12d9e373f8007d75e30def3dea550f8139e513891289142f8384e15a1e049f1f69a4153a0bb82c27ab1dd494224611e3d8099804b9c97a98a5170798439ca25dc0ecd62aec469a01d403c8f4c6cfb53f0c81cdcd9ec0a1c89ea3f705e7d69e0fb53c21ed8571f0c239b3e6a090b566e5ffd9102d8851d9aca4b3f3fadee2943f66e78d273709dbbbac94f873a3463ec956facb4e1d02f58efdf5b403abf1d5d468107e007d094a34127bc116a252a91a0f0d3d41c18c0e64f4602cafd215a4b1ed9be0ba9740c2f5e7ff1f17cd9dbf27134e9d538e52e8686c447906036a5fc5ba6f377179cec4a95d85b87d609867a222fed97f1e273157228d01e00a27e626a4bdf3b4b96893b88a6c37f21428550d824a63f2d32dbc4a7c59ec187432616f7d8a7c1cd70cc521c115c0c75bc2cf46d18db67ebe75424afe58e19a1e35eaeca1b44b08b4d3d22c70c3f584eba02af170dedcbdfd617b15e7e94913977a40755275d91d7c7f5a2d97b376347db68d5f670a15959716039b11df90323a35367a8d9c4cc2b9cda048bde1e118f19490bde192b4f683f18a7fde29728c480aeed31b1dbdc0e7dfc351654094f92b101fc3473836b0fcb3ac196340c2f12b75816d1a2ece5ad4ca8c123e578ad5340443f59538b2b1bd03fdb657b1e84bce6b165e22f67e86e3ccaa5bba39eb0d75eadc9eef5afc98e1ffe4485bbe3467bd2e141d88451b194d82764161974b8447b5076cc947837c2dfa6ecae5dd279938585096842fd954caaa78ecc565ef89694423eab544e2fc66699685d090b75b7d949769246f95bc49fb70bbddfc36177c089271d5217064f2755fbf1bd0dda182517d4dcb6442c4ce6ad75e13c727336896fb7a6a75feeb96809eedb2890d84390cc5f7038c34114dc33dbeb8e663b2885c190e841590f69c3456455fb58a24a593f261aab7bd914d2df35e83a72e395bfd39eb64d8db5c8199a861f55c567ccfc91fd4ff7915cc32ed85d5cd49e163b6825b71462a5c46bcae6730c6324259b7d833badd126fe9bb88bfaa5b50259b820d246d58ee448b89e94ba8417e3d86ff5bcf34bf6d5b69a22c2406b41cc4d6ca5638231ac596ec954be77ab19e472d99fc66f508aa021abce0f046b9f4f4e526f77f63e5118367a7b302e5313e6bf2e3b909de49ecc65cbb2b02f40b890e17e3e546ca67fddea3d37b52a338dfec303f523f373fc8e639cd862dea1b53c2f1d9e75eff983f5725e27aa553a80fdf9b65d9f678f4d682d5f85ba26003734059570853a774c9faf286900e3c07aa7081f86348bac2cf2e55da6e50d719554a65d4d09563307775bb02b833db47ccbab5b39c728c513de647dbdbc730156b90c4335d1886df150ebcd2468897a56d8c2b98ed0cd90d92ed06145cf72512b74b33fe4886154d9218e3db46089dd3ddec7da670e03f7b16af3c6b5d3ab0e8d66768971f1f167cf61e582d4e359747771df05c4bc34251e9206ba7215e25c23c638b31ede20c3dbb6bcf2ebaa74808a230c3403d55926a53986734520ecd1f1c3be1edc057f9393685a84caf635ea24ff0cb3607f2cf0f83172c3659ccc44a846433f546cef88ec33504342c5103c732ed0b4a2a7dd31f618421d06b676ab9978948df99b4abbde7c2e93f9ed18300bacebdedee6178070a7644ee074bec383db1fc8a9ae51dec432420cb2a1d7ca7f706dcc7422e50d7834c3415da1657a27ef0234caf16dcf250297cd86ac979c922ffc9d0f9441c0303364c801ff5417e19200487a1fb80feae89794a7a9246daacdbf0d7e0aa30dd0b336611cea48c34f207387ad05c4518566330c613bf301d4f533731b6e41e8f92b25135a32402d128dac472a7cd0", 0x1000}, {&(0x7f0000002000-0x72)="a1e52245804861b536598cf2e9d951757de5502a83e4dc2c0749aae80aeef22507ffa503b5ca33b4dad05075694a037c470a6276b7726bb117e3b1d94966fac682dc47e5281b1fe305c4bd7a290ddf1f524731b08bc2803f2c99e52f492c93bd4e340a899258a7cf1e9780e9874348e144282ed0c0ec2b2a324b8d975e5be59c040ba84cc247df14eb9c214d6c27cf1b6f91428c07ae8d0b42631b6903ea92ebecb3dbe57820a65fd33180ba3853621d87adacced098c46d22490b8e60e05ccec8e4bfcebfe9b1877c06cbe501cf463d", 0xd0}], 0x2, &(0x7f0000001000-0xf8)=[{0xf8, 0x108, 0x4, "5a9fc58efa7cad4ed6cbd82fe9e4f1c9d53c4abae0386844a4db3338e5f8497ce4ad9606d5463a18f80da9c59b44429f13374db93488463e98ae6514781706d506c28d094abe433a0b415b53fdb5a7f8b30e32692c53a4a5cb371fd74ecdd860a07ed9e89677306d4c08cf6b50206cdc64386bac61ce3ec126879830e600cbcac7c7bbd497f6841586c08b69d0a0d8de3a06fb4d517783d59d2a1451e1c812d87a1353d0cd9f8baa5f3b85c8d01e4a38d04f519205863381da250d80bc6b11e080cdb6bad76330b220951281450899a1625e745d0dae9ffb1ded5f3667e75b0ba0ddb77bbc"}], 0xf8, 0x800}, 0x20000000)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = syz_open_dev$vcsa(&(0x7f0000002000)="2f6465762f766373612300", 0x4, 0x400000)
ioctl$KVM_CREATE_VM(r1, 0xae01, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = geteuid()
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_cred(r1, 0x1, 0x11, &(0x7f0000003000-0x1)={0x0, 0x0, <r3=>0x0}, &(0x7f0000004000-0x4)=0xc)
syz_fuseblk_mount(&(0x7f0000003000)="2e2f66696c653000", &(0x7f0000001000)="2e2f66696c653000", 0xc000, r2, r3, 0x1d, 0x800, 0x2000000)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet6_int(r0, 0x29, 0x0, &(0x7f0000004000)=0x1ff, 0x4)
bpf$MAP_CREATE(0x0, &(0x7f0000002000-0x1c)={0x7, 0x6, 0x80, 0x400, 0x4, 0x0, 0x97d}, 0x1c)
r4 = openat$selinux_validatetrans(0xffffffffffffff9c, &(0x7f0000002000-0x17)="2f73656c696e75782f76616c69646174657472616e7300", 0x1, 0x0)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet6_IPV6_IPSEC_POLICY(r0, 0x29, 0x22, &(0x7f0000005000)={{{@in=@local={0x0, 0x0, 0x0, 0x0}, @in=@multicast2=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@loopback={0x0, 0x0}, 0x0, 0x0}, 0x0, @in=@remote={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000006000-0x4)=0xe8)
mmap(&(0x7f0000006000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$netrom_NETROM_T2(r0, 0x103, 0x2, &(0x7f0000006000)=0x9, 0x4)
ioctl$UFFDIO_REGISTER(r4, 0xc020aa00, &(0x7f0000007000-0x20)={{&(0x7f0000000000/0x2000)=nil, 0x2000}, 0x3, 0x0})
accept$packet(r0, &(0x7f0000002000-0x14)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @random="000000000000", [0x0, 0x0]}, &(0x7f0000007000-0x4)=0x14)
mmap(&(0x7f0000007000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$nfc_raw(r4, &(0x7f0000008000-0x10)={0x27, 0x8000, 0xffff, 0x7}, 0x10)
[ 51.378867] audit: type=1400 audit(1513380496.287:3698): avc: denied { write } for pid=11699 comm="syz-executor1" path="socket:[40819]" dev="sockfs" ino=40819 scontext=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 tcontext=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 tclass=netlink_connector_socket permissive=1
[ 51.497136] dccp_v6_rcv: dropped packet with invalid checksum
2017/12/15 23:28:16 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000940000)={0x2, 0x78, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1000fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
syz_open_dev$tun(&(0x7f0000380000)="2f6465762f6e65742f74756e00", 0x0, 0x0)
r0 = socket$inet6(0xa, 0x3, 0x4000000000000087)
r1 = eventfd2(0x0, 0x0)
r2 = epoll_create1(0x0)
ioctl$KDGKBLED(0xffffffffffffffff, 0x4b64, &(0x7f0000c86000-0x1)=0x0)
io_setup(0x9d70, &(0x7f0000ae4000)=<r3=>0x0)
io_submit(r3, 0x2, &(0x7f0000357000-0x10)=[&(0x7f0000929000-0x40)={0x0, 0x0, 0x0, 0x0, 0x80000001, r0, &(0x7f00001b0000)="6c2b59e3fd0006f93a769bb1e0c17e5a05d8875f6e76230dbadc41e8239b567076806e6c393dd96b5f89d430b7956881b4f0a520ddc97dc42a7c979e873a25d71c524dcece", 0x45, 0x0, 0x0, 0x1, r1}, &(0x7f0000d3d000)={0x0, 0x0, 0x0, 0xa, 0x2, r2, &(0x7f0000548000)="06acf7b1a071d61fe4c8ae4d7febb2c6ef78b77bc346ee1151b2ebed3023ee79e3fa04f224b5f35712af4e9c1a4e6818e00ef1acf72351ffc4240a9cfd4b3d42ac3d3cae254565295e2bcf3fbe414a7c22", 0x51, 0x90, 0x0, 0x4000000000000, r1}])
clone(0x80008000, &(0x7f0000401000-0x1000)="cc6c5e52cb3836cdf5d2e438e1bff984a2353ecc653022b9eea9c70ced9c8cbd58274c1207b178f937f23e56b8823c5e323dc049773383c64a724097996e5c085d7988ef008bd9ac92dc5862fe5ee1363a5d60d85159e2cb8dc57e88227fc18178b4fff65078cfffa3f9e82da327d84b405c2b753314e5741aa9cf0452af1e66e411cb84cbe07ee326160bce01ebb1b9191b1ba072255393250c0ee807af585b0774826690259640858bc5462e0fd1fd9ebae9d47db0d15fbe7393450cbca3012496840afaec82528dd2556e95ea9aac5bb008eaf443cd94e4b078e3653eb61e9ae21ee949ff999e013b2c1f0cbd5ef5d21d849027ee6466a8d655fc75c557c4657135da8f6d6664d8965655f36deb48fa49b49f35c948ab84f6c7037b993fe47c202b1e0eef71a474040cdcc7897f5cbae56e66b012a3d363e4c300e2bf327b030753d000f87007faa2cee016a53cdf10f3eca4c1ccaef0932d2911188a3ad01cd4eb258298dc3bbc732172ba83da33ca37dae0656e5e6865c701494978d0e093a93f953c8aab30c624afe2842f54c286aaf6db05eb5505f652dd4884f0ecadd1bd7b6d9a1f62039d1ac63d4d841005bf2486ba073d9f45bb6fece2ae68fc9c642cb34ca61942675e312f96487eef18006803942c5a74614736622bb58d1b260ddd5deac60e677db71464073822e978345c7397a98b0a14cc1322b131c76b5411a40f26d78796a9416cec76cd9408d9336a767621aa5fb36846d1ecfa33d2894ab42ac6decd14d8a53d6783c7adb1294400d731ae7afe1a2303a6b58250df06b6b4562890bf185e8d364b13cd77771dafadf7236d78fa829417bbc25af0cb094c6f46b7dcf79aa4c378650bd1120fdd065aa15156a551cae584800f0e4741335b174ae291dd68955ba31eb9cb86d7021d53f3b6c9bf50f6a307bc4950e137b13b0e9af766de97e8e14eb4dba66526270b3296ccc77cebefc91ba3e9bd0f0689babf1bd633d73c423fa39d900a86b43df890a2e6618b8e5d112e35814567e5d429ccedcf74aa3e9b785304641767473441297dd00f19a28d8ac6fd6cb6907df0edb7c204bc40cc909f915951c103c5090efb788cd6a9e7551dd5b2f83371952c70b8747062a3fced86bdb567d795df2d39539e1e09ac62f8881e20cdc17ecb4c0c62ea21304718ff555023b373e046b2243b457e17f525c135e233c1d9243cdc8fe4878790d3dcd219ea6caf2f4639c652000e7b8125a31e9a8a7be1a411f68cfd3279af40c749c6cff16048988da4fb18c97efaf534b1cc7a1ea40079fe01da0a7024f4af39c74a9971e8d2ef8dc048a428b35bc414cf2b150a60cd66e13542fbf6581865a4b8a763ea8d5e6c9843d0c0949f80449140a10940ede609da6747e73825de700cbc5581c111bab099296b7f20a7f2bacaaf34ed559b8854031419f1bc9717ef721c3fa751044bf0c7963d157372c9415b8688ff8c7408babd9f2936c2471ea6181046864d6bfa7722899695744ca1cbd7054423e8e86bf5f2bbed0a973d652c712a1a0dec2558efaaf600a880fa93ac3b5ce4137802547ade35575633611c06ae9f672e21580055e1fe7047055aa931f0874419ead767e301cf837a7dc6ec4995fd485b020d438e563b3b8cd56328293fe26dca76a7e29878945ab06ff20eb90d933e02c6327178f11cb0870194916ca9bb5b61553342c3ba970cb7ebe08f535eb892a37b1531e076be3c9d9d47aebdb66f9d2be4f99ca5adcb9ee80a77315dad279b4527fab96ce0dd849bdaefee9ec1035f5c3d0a629be84b657a19170dd152b29182a23142ee7a2a204b87895e94da61e55a4a3ac15bf65050fc3149a5a07e9ec52c9c1d7e8f6efa98b9d8a8a9a934752174bccfb0625cf7b2638243c04b09727e97284dffd23c27fd1687674d7ecffeb4e00a58dce96d9be4b76a84b6d378cbfc766dc9c3583fe84452cfbf37c5ed03bc3de0198c72eb0e6e28bb76bc4d2edd0d01cf51affcc32f09d6199bcf99ac8e86667bcfcfc25aa2489d76f6946f423e37beed291ac3de2bb895f5ed0904dfcec92035870c96b5ceac940f892465497cd546ce046388fc80ea0dc56761b5f67c531c1f5cba42d702bb6e174c8776077d3f8f8b2c922949a9e36767056c660f79a2bae92874b76ebae7f5c0cf9e28650c9cd0440ff9f05c30f08d2d74dc22a07dc79ce270982324bd2616a3a0ee034c81c5d0e8a8a7599ec711e59cb18e37e01fa80519832659f7b5e1d0dfb719b56589f7e28677804a8bc876d20a74fd8bfb3e60d333b1a103e75618baae9f57bf9b0ea606e45549a380abb0572a34c6125900cb89eb758381f8691f069aed6650d6348a0aa8db91affb82a3e2745c4194537201f6ea3a46a2b8b039a0147ec840c3c69b728cd4bf7ab95a4bc8980aa2d0cc2752b0c041a4f9f83681ecf712f3b7a347fdea7936dded942515b1eeb8bb15ed8e95bf1e35e865587ffb67d3b2b0f7b23fd7552a63eb117e128f91d23f75c6587447b5376ec50abea45a525a76bf79f94d7c68ed5aa165d31e42e989513c47e4c06ef10487d3b48769e8db6dbdc83adb322143b214500ee1605bc35d525da572eaadaaca844e55253db01c5dcd0f3b5f7c65d000d3f006377b51bcc0ce55dab9c4e635ede8126895f0438fea18454f3d8dc0030575a01c2e07a1a0430d3331218169f140a5b13ff3d0a7e1a1d0d444b01f2d68a66a05f27c9022f7af43979ac6f7a947d9593deda6aee5252635a84b06d10a2943ea0d83c9b5c7c10861fd973e78a6a6cb68be2c159d12b54d4ede1b9bc89dbf7a849ae4e23d8951ac2ed7e1bb6084dd0405a8c9fc024dd028ab06eaf2fb8f6411cd32ab9461561503a34b5c8538a55324fa2545b3c6b0068766afb805903234df5231a435773a4f40637a9f48c26eb1f0f9f1563380b35272aeb785c4b9073cf66810cf357276ad42cf72beb72e4f409f6c5727109dce7210e5c86423b17a38d65cae98ff08a51721c9331eb502364ff8748a5ec11e71118c5ef6bae756952a45e7d86f99857e7104c63be5cd0529a3739d99c4da541e454132107fb3e6515199e7ff500704b643932f08b564592446ebccc4fca85d6101aec8f9fc23bdda2fbe59a3c9b61c80f09923c0a48967a53ddbe5edf5d9e26f75605f2198a6e57e8afb150b3ed7c6f53ce91360381c67518834fe05924d0144243e127ead15466a2cb995b4a44b9fe5c12d693f595cf3f27a9f586fea5bce026a94cbe30f2321ab3228e474dea0ff8e48102a367bdf5840f376834c2adab7633161331b1de645ade8e8cde7857b4831a10b2ec3a51359782571dfce684f31da4a60f3c725fe8f847aa38b7ed5399f2ea0b185ac20d96a67b1a69c676c3d595bff8de1432d6c316b24aa99d95e7c0408fb63c8a6da7b554799b2189b60d88161ec2fcd011618ee48dbb8c4ab7a2435187c979ed7836961901bd5e83d248db7201311a36b6832c929241adbd2fb78f91a21d003a3b3c109f2c818d1c239b9faac6b09df73fe314a6aaab37b021bfc7b83b2839391431a0fd6bf30ad54ff0f7fa8960dbe58115749cff7f33af0812370f8f367d5ac44a5be8d4386f6835b5231c40bf7d5b5462a671d3564addc399f238f0acc91632287c9c7779ae6118a7bb2b4db97ef46d2437c17bb7710682e6763080f603915d77d6a23b2ee9196e388c9195a4d1118b6a0a3be8af2a48a62caa546ddedac504d5da4e3a874c9d1319beaa5b607603eb2b00c9f4604d8409de378a99b6308808cf0dae35b1d9bf00dde30567baa1b4d6a9382913e02c2e7d1d24e2fa3bba18cb845672fe8480febbc18f3a728615f03fa34e499677883813c2d33ce42dd45c1216a69182198a53a931ae90ba680c6be8a09563437aff0405bbf386bb13144c540035beede474c3fdc701bc1c4e5931345296b6070a630fd5b03c6c33cc61574bc6a7c90bac3b73698df8572a7bc61d2d00280ee4b9d2abf3a77d3225e2fb7793fadcfa4f81b52a2b51b0e99ef69ee2a09070654c38ca525e85070ee9eeff827633994054cb97da3b52fab874721dfe72a1de797dc47a335e2826e8b46c48d6a75a9921d5ee2628ee630cc10daa9d0bb736e09d60b8de9a771302a32b6e13edb1d0af10016ca50021a5547aa0acf7f2566d29ec2cc2804206c5510d262a96dc061c40ca7031dd02b3602ac98909682c78a47c9e2d273c6e5255b479359ae0e80dd659c954003e0f0be9589335c2321732d53d58dc2bb7203b79722e56f6f26a039df51f0e74f4a5118dd20249a7e335add2f4c37a6a2f3c7641189975863bc177da6ba873658e4558b1324dad5df327da68694a0aa9696b2af92f9a742ab601494daf548061c5f637934243e2b3ea2b5ab89187957741d6e9f319ec11c83fa314418ddc58570e1a43468f907fb5d47097eac088cf886aafec625289fef1dce248ce9ab2b1ed3cbfe8813467a821c79d395dcc6c8820bbe9b2d0ac0d6dd6c0cf3423d358070f29e732323e506c9a528101f9a22ad7827327e6a7e5d560a44e456a2d1f550b15dbfe7a8356f6a1f73c124600482969aa7a832f6dc488a863ce6cf252e2a72569c45f8800f01fe9bbaecc131ea05e39918447dd3363e249664a3ae63083731aa5dac7fe2e7ee9d8f8abc9134bb718ff2aa371c24670dc3df3c0aeba0455e3480b58dafdf57b9b1f8b867b74c613f2200bad92082bee167b71aa053e80f9fb6394fd029cc999da0270869eb1eea0f2cf7f75cbb22b1a0d5706f03e3b90677f7c1a4b4fadebaf262a6b0963f5bb0794d6cb66d3da8fa2b35cd10d10474fa3dc34fb0bd43de4b97cf5b51f09f270dd8f6c8489205765b35a5a93a95b8816581bfe3d4ad74b63ca3af40cb9716fb4992f90d161787c4941184f6c1cc8b4ab3a06e66f5cae8ad1606a578ea2b0f738a69d2975493a16916c0b52eacde37cdf322e179fc358f63c3ec233357f7593e2e0436ff4043b629ab42b7dfd99609cb23ea1baee91b5fd21ae049f315890a8001cb035aaf7e18d5f3b95047fd4b1e55406374adc2d66d1ed0009d5962039533692831a8479ab30a27eb13600739441de8f78026e0aa98b50bf23e8ad98ecea7bd9d6171ac5387c1ef7e0d0f4ea9a2ca6fdaf67c4249759943d53a54a3cae112053e1d99b46b180c68514bc563c713e61638afa6500bf950cdd50014ff8e788a089be859e6626cd5d7f3d97bbb6684791c55df1328ab0c3a9a9a60e34cef41429aded93401424ca655fdbf323bfddb2fd80e1769eebb4cefbd9b0de13dcb4b38533f99f511f3910ed6b5f6c2470eb8f91eb687a563531bb5b09043d1a880731394bba4ec38986399239ac9903f4a3a9774af75289db367d90fb10c5d08eab5a4eed06242e16885dd3071eb8ed76c2cdb75527c611996264e445ed8c30921ac22d8d6fd1c56f5cc4a675a86da403228c35ddb7fcded3f1bc30c2586cd4dc86a2f22cb91996a5d7ecff43089a22e87f2d6deee48bf1e2b366eb08c0d97ccdfdd5e3cffcda1b45e6ddda606b5775e8f6a277139bed327634b70c51a4a032c1b13752539386980708eb832348c1bb453768829bed5372a0f2f0573781ae2e4a6846e89494dd770e3cebeda700ad0e730a948b991a07de8fc210698b8a470c97b598ca8267acdd72b63471bf2691eb342404675178f49b354d1dda5a51147b2e635c5d1157ecf3869c976ea563a7d676001d894549f7899ad4f9f3cd3da9527564583296dbd8b402477fbeb93a7ce2a933569445d37570dc9169ce4d5ea", &(0x7f0000e6e000)=0x0, &(0x7f00000e7000-0x4)=0x0, &(0x7f000036f000)="0ffa8d85a240ef9f45b950fa52e5598f368b8dddd29a7057c894dabf10a369c605c305606357948e193e7a7bb4c93099af3d239e2c3807f4a1e248f73d")
dup2(0xffffffffffffffff, r1)
shutdown(r0, 0x0)
2017/12/15 23:28:16 executing program 1:
r0 = open(&(0x7f0000236000-0x8)="2e2f66696c653000", 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_WAIT_VBLANK(r0, 0xc010643a, &(0x7f0000795000)={0x0, 0x0, 0x29})
perf_event_open(&(0x7f0000271000)={0x2, 0x78, 0x46, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f0000833000-0x8)=0x0)
r1 = openat$kvm(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f6b766d00", 0x0, 0x0)
r2 = ioctl$KVM_CREATE_VM(r1, 0xae01, 0x0)
ioctl$KVM_CREATE_IRQCHIP(r2, 0xae60)
ioctl$KVM_SET_IRQCHIP(r2, 0x8208ae63, &(0x7f00002e5000)=@ioapic={0x0, 0x1ff, 0x0, 0xfffffffffffffffc, 0x0, [{0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}]})
ioctl$KVM_CREATE_PIT2(r2, 0x4040ae77, &(0x7f0000021000-0x40)={0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$KVM_CREATE_VCPU(r2, 0xae41, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xfffbffffffffffff, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000271000)={0x2, 0x78, 0x45, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f00008ab000-0x8)=0x8000000075)
r3 = syz_open_dev$mice(&(0x7f00000a4000-0x10)="2f6465762f696e7075742f6d69636500", 0x0, 0x80000)
r4 = syz_open_dev$vcsn(&(0x7f0000a68000)="2f6465762f7663732300", 0x1000000000000000, 0x0)
io_setup(0x3, &(0x7f0000807000)=<r5=>0x0)
fcntl$getownex(r4, 0x10, &(0x7f000078c000)={0x0, 0x0})
timerfd_settime(r3, 0x1, &(0x7f0000194000)={{0x0, 0x0}, {0x0, 0x0}}, &(0x7f0000bff000-0x20)={{<r6=>0x0, 0x0}, {0x0, 0x0}})
io_getevents(r5, 0x8, 0x2, &(0x7f00002e4000)=[{0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}], &(0x7f00005d0000-0x10)={r6, 0x0})
io_destroy(r5)
mlock(&(0x7f00007c5000/0x3000)=nil, 0x3000)
mbind(&(0x7f0000004000/0x4000)=nil, 0x4000, 0x8003, &(0x7f0000002000)=0x9, 0x800, 0x2)
syz_open_dev$sg(&(0x7f0000c78000-0x9)="2f6465762f73672300", 0xffffffff, 0x0)
pipe(&(0x7f0000003000-0x8)={0x0, 0x0})
mq_timedsend(r4, &(0x7f000000b000-0xf9)="942c322b212ff1cffe90ad7ce564a2e8f8cbc7b52946cbd0723067a39783889069303fd613e5e31ae47429f25e3cfdf06332874d5394bd2b3787758611b2ed83e25e0824559efbfa13d7489d1610f8ebc297bf4fd766b560198879522e3c635a662c898dcd56989fc27359cbcf8854ba8a479ca756cc1a0c71275b05e150e671aa9920c2784a1ea59f6160f8bf9e2cbd4f154b3b6161c50edc61223123d3d77f491f8314c03f14131d1f81b325e06282164691bfd670f67661a36a2c5d6f000088ff6515504e0a898852c53550c0c03d1e9cf15d0f5f8a884e75675b183191587467a721b4c4339d9d47d87d4b2c2f49eaee944cef6fd0434c", 0xf9, 0xffffffffffffffff, &(0x7f0000005000-0x10)={0x77359400, 0x0})
mremap(&(0x7f0000006000/0x1000)=nil, 0x1000, 0x4000, 0x2, &(0x7f0000002000/0x4000)=nil)
setsockopt$inet_sctp6_SCTP_DISABLE_FRAGMENTS(r4, 0x84, 0x8, &(0x7f0000f45000)=0x1, 0x4)
mbind(&(0x7f0000004000/0x4000)=nil, 0x4000, 0x0, &(0x7f000000c000-0x8)=0x100000000, 0x1, 0x0)
clone(0x40010000, &(0x7f0000000000)="", &(0x7f0000cad000)=0x0, &(0x7f0000a26000-0x4)=0x0, &(0x7f00000e2000)="4b1a5458304373928d77baf85e07d1152e3495e6095fe447847a974df09f81bb7b9ba31702cb9eedd4085438c5eb47d7")
2017/12/15 23:28:16 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$sg(&(0x7f000084c000-0x9)="2f6465762f73672300", 0x2, 0x1)
ioctl$TIOCGSID(r0, 0x540f, &(0x7f0000bc1000)=<r1=>0x0)
perf_event_open(&(0x7f000001d000)={0x3, 0x78, 0xdb, 0x0, 0x1ffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x2000000000000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f24cda2, 0x0, 0x0}, r1, 0x100000000, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_kcm_SIOCKCMCLONE(r0, 0x89e2, &(0x7f00009a1000)={<r2=>r0})
getpeername$netlink(r2, &(0x7f0000e6b000)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000809000-0x4)=0xc)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r3 = socket$netlink(0x10, 0x3, 0x6)
bind$netlink(r3, &(0x7f00009a9000)={0x10, 0x0, 0x0, 0x5}, 0xc)
r4 = socket$inet(0x2, 0x3, 0x9)
setsockopt$inet_IP_XFRM_POLICY(r4, 0x0, 0x11, &(0x7f0000000000)={{{@in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0}, {0x8, 0x0, 0x0, 0x0}, 0x1, 0x0, 0x1, 0x0, 0x6, 0x0}, {{@in6=@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0, 0x4}, 0x0, @in6=@loopback={0x0, 0x1}, 0x4000000000, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0}}, 0xe8)
sendto$inet(r4, &(0x7f00006ee000-0x1)="dd", 0x1, 0x0, &(0x7f0000f07000)={0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getpeername(r3, &(0x7f00005cc000)=@alg={0x0, "0000000000000000000000000000", 0x0, 0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f0000ee4000)=0x58)
openat$kvm(0xffffffffffffff9c, &(0x7f0000693000)="2f6465762f6b766d00", 0x10002, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = syz_open_dev$vcsa(&(0x7f0000a62000-0xb)="2f6465762f766373612300", 0x0, 0x240000)
perf_event_open(&(0x7f00009e1000-0x78)={0x2, 0x78, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2082f, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2800, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r5, 0x0)
mmap(&(0x7f0000000000/0x1b000)=nil, 0x1b000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x9)
clone(0x20408000005, &(0x7f0000b3d000)="b4fa", &(0x7f0000748000)=0x0, &(0x7f00008be000)=0x0, &(0x7f0000793000)="")
getgid()
perf_event_open(&(0x7f000000a000)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800000000003, 0x20001010, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
timerfd_settime(r5, 0x1, &(0x7f00008ba000)={{0x0, 0x0}, {0x0, 0x1c9c380}}, &(0x7f00009f4000-0x19)={{0x0, <r6=>0x0}, {<r7=>0x0, 0x0}})
pselect6(0x40, &(0x7f000098f000-0x40)={0x401, 0x20, 0x34e2, 0x7, 0x68d, 0x9, 0x4, 0x2}, &(0x7f0000887000)={0x400000, 0xfffffffffffff801, 0x8, 0x7, 0x20, 0x200, 0x3f, 0x0}, &(0x7f0000aca000-0x40)={0x1, 0x52, 0x0, 0x1, 0x7, 0x501, 0x6, 0x401}, &(0x7f0000727000)={0x77359400, 0x0}, &(0x7f00008d3000-0x10)={&(0x7f00003a9000)={0x100000001}, 0x8})
clock_gettime(0x4, &(0x7f0000f59000)={0x0, 0x0})
nanosleep(&(0x7f0000c62000-0x10)={r7, r6}, &(0x7f0000c7c000)={0x0, 0x0})
rt_sigtimedwait(&(0x7f000081e000)={0x4003ffff}, &(0x7f0000000000)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000fbd000-0x10)={r7, 0x0}, 0x8)
io_setup(0x2272, &(0x7f0000829000)=0x0)
gettid()
ioctl$sock_inet_SIOCDARP(r4, 0x8953, &(0x7f0000775000)={{0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x0, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x4, {0x2, 0x2, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @common="67726574617030000000000000000000"})
getrandom(&(0x7f0000f4f000)="000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x27, 0x0)
mmap(&(0x7f0000016000/0x4000)=nil, 0x4000, 0x5, 0x32, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:16 executing program 6:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f6877726e6700", 0x7fc, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000002000-0xb)="2f6465762f6877726e6700", 0x80000006284c2, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = openat(r0, &(0x7f0000004000-0x8)="2e2f66696c653000", 0xfd, 0x200000b7)
ioctl$KVM_SET_IRQCHIP(r2, 0x8208ae63, &(0x7f000044b000-0x52)=@ioapic={0x100000, 0x2, 0x800, 0x9, 0x0, [{0x3, 0x9, 0x8caf, [0x0, 0x0, 0x0, 0x0], 0x8001}, {0x3, 0x19, 0xfffffffffffffffd, [0x0, 0x0, 0x0, 0x0], 0x20}, {0x8, 0x3, 0x100000001, [0x0, 0x0, 0x0, 0x0], 0x175}, {0xd54, 0x4, 0x4, [0x0, 0x0, 0x0, 0x0], 0x6}, {0x1, 0x4, 0x80, [0x0, 0x0, 0x0, 0x0], 0x2}, {0x40, 0xfff, 0x2, [0x0, 0x0, 0x0, 0x0], 0x5}, {0x7f, 0x2, 0xffffffffffffffff, [0x0, 0x0, 0x0, 0x0], 0x10000000}, {0x40, 0x9, 0x8, [0x0, 0x0, 0x0, 0x0], 0x3}, {0x200, 0xffffffff, 0x8, [0x0, 0x0, 0x0, 0x0], 0x1ff}, {0x8, 0x3, 0x3, [0x0, 0x0, 0x0, 0x0], 0x7}, {0x2, 0xef0, 0x81, [0x0, 0x0, 0x0, 0x0], 0x3bccfdb3}, {0x800, 0x101, 0x45c, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x6, 0x9, 0x5, [0x0, 0x0, 0x0, 0x0], 0x8000}, {0x7f, 0x200, 0x1ff, [0x0, 0x0, 0x0, 0x0], 0x4}, {0x3, 0x4000, 0x6, [0x0, 0x0, 0x0, 0x0], 0x6}, {0xfffffffdfffffd, 0x3, 0x70, [0x0, 0x0, 0x0, 0x0], 0x1f}, {0x7f, 0x1e, 0x6, [0x0, 0x0, 0x0, 0x0], 0x797e0cae}, {0x9, 0x3, 0x20, [0x0, 0x0, 0x0, 0x0], 0x3}, {0x7ff, 0x101, 0x8, [0x0, 0x0, 0x0, 0x0], 0xb04}, {0x6, 0x1, 0x8, [0x0, 0x0, 0x0, 0x0], 0x3a9d}, {0x3, 0xe88b, 0x8, [0x0, 0x0, 0x0, 0x0], 0x41c}, {0x3b, 0x3ff, 0x10001, [0x0, 0x0, 0x0, 0x0], 0x7}, {0x1, 0x1000, 0x0, [0x0, 0x0, 0x0, 0x0], 0x2}, {0x2cc, 0x3, 0x5, [0x0, 0x0, 0x0, 0x0], 0x0}]})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_MAXSEG(0xffffffffffffffff, 0x84, 0xd, &(0x7f0000d38000)=@assoc_value={<r3=>0x0, 0x101}, &(0x7f0000323000)=0x8)
getsockopt$inet_sctp_SCTP_STATUS(r2, 0x84, 0xe, &(0x7f00004bb000-0xb8)={<r4=>0x0, 0x2a, 0x8, 0x81, 0x1, 0x7f, 0x6ae, 0x9, {r3, @in6={{0xa, 0x0, 0xbe, @loopback={0x0, 0x1}, 0x4}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x53, 0x100, 0xffffffffffffffff, 0x20, 0x81}}, &(0x7f0000131000-0x4)=0xb8)
getsockopt$inet_sctp6_SCTP_AUTH_ACTIVE_KEY(r2, 0x84, 0x18, &(0x7f00003ef000)={r4, 0x10000}, &(0x7f000089d000)=0x6)
rmdir(&(0x7f0000e34000)="2e2f66696c653000")
socket$inet_dccp(0x2, 0x6, 0x0)
sendmsg$unix(0xffffffffffffffff, &(0x7f000051b000-0x38)={&(0x7f0000704000+0xdbc)=@abs={0x1, 0x0, 0x0}, 0x8, &(0x7f0000dfc000)=[{&(0x7f00002b7000)="e1c9d81e5fcff54e133bfa0b611e7d5575147ebd3a1e6fd517a0c1647f9920b51aad1f05f37af0c7edd4798d5657de785654ba9ff51871f8b021d2ad388fc388c3e7ff4c69b61dcfd2a33e90d72654bf40a23c773bcfd57b310a4634fef53d7fee36772c80df5d5f0fc06a05ad0cbce69c457d669c68b3f41a2b8af77f5aa844a204f9dfc588d30e1648a20c450108851886764480898cdc6df5b85c5ddc96b0", 0xa0}, {&(0x7f0000816000)="", 0x0}, {&(0x7f0000ffb000)="76124c66c271bdb14d2917822b92f82d17dbb137f96125e9a3ce90cd6636ea1e3b0250d195d06001473e3c7612461b46ee895cf8f7", 0x35}, {&(0x7f00006e2000)="510a0dde468869d974712736a8cb237494a7f4c160016dbe6e50b91aacfdc25fab7137cc3c921ffec473e8af3be99d7c3bbf5f823280f958ffca9dd64b19bc09670a4ed82e970a57038f688fa98e117bf96cde30060bc4ca8bc7bf62d80d5f27bc0b", 0x62}, {&(0x7f0000431000)="429eea46086bb83c3919f9a1267686932bbab897cc17ddf3d2c4b67c2b9764a48adabc36630688b9ad7e485d8f05ddbe979a802edb891a868c7b88a5cbede817d2ff89c8fe88b261a3f262e219a783f8075d2af0c66b003e7da40ce6a12cc028236f96b322ddf29e06a6b5c45ca688d48c7152bc1d32dd25337727c8ab5d31f286bd51111543ed402a4cac7fa9d3e8c89c1da58969e899587ee30848362e0f5217cf3d66b67e399a8fd58f67fb18f6a11357fde89e45f0306b808dd9ed10c87f933c924564d15118c31a862c9c1e340f1e2ba5a1b6795faee432562ef32a6ce0cd103b08a92dbc1d10bc73587c0d3d7898a8a7f9cbb7a8eab3f9559fd9e8794aaf34e6d1de8697a38a48f4d0598cc34090ae4f8b28d243d79c080e48b4617092f549380e0de1969a2ef0338c94cb59c92423fb725110268dac286f104a647f6a14ee78f9853044ba7ca4ed8155edbf954f62c2128be688ffcb591031b4bde514cf2eb1ea3169a8787a4d7a8817ac73f52719ac15a159541f1ee50414d31d108d81992d395862b043c19b2b1ce2d6e82872e16596b41a3dcc06b21fbb95f176f40e9d262aa1ef5eded90870e5b62ce76cb0f365ed6b19ed59562cb4343f308e08ed7a1a6fa650921948edab1fd21a27a330cb35f46a4d751fa89181bd17ba593660efc17601b8c19dea5a459c493918f53cc507c648649c1e6e1ac9529e057716ec09cfdea296da1d7f5bed1600db5538b900ee017edc49f74ffb7fc00cecabc2040396ffc61270c0125c68907a355bc991bfe70e59279da002383e0cba2cd5b0ccb38c8a1be022a2871907a01656294af5dcaedbd1928f6b7788a21326bdae02343aa9cb7d4423c218c4fb36a73b5010ce88c67e020e5c7a3d30caa5207c51fdcfe4500f1c2a13029e6742931ab0dba72802c709c373e93cbf4a40f60acaeebb27fbaa641f667ce1be6894396219e97e52388eed96a12edb83e6ee111177550bdb47a688ca5eb7f3ff0bf110dac8051a793f3637a28475c59170b5577d030cae6181dd4b38578e9f6c55102a91ff83f65405792b5e9b114081f3a37bcb598c2fc47a2cbd4481fe2cf4fe81c46a95a68a6ee9f26e2392c7459d0d34da26c85ae9744b4552d3d0f40c11d6281cde41fccaeeaaa44d7925c054f3698a5bbbe61628d9cdc8903c1644ad5c7590bb19f8a46e5973ad5742c4cbd59cdcb9e08890a0d87fdcae8d62683519b46b58fca0eafe3eb184c5d19dc11bc0cb270cb09818cd455a0696d45f98a98b6b71bd5e7179457521ca56a12043b8c02a0e778df89a1af096a0fb4c39072e65e1accb96e3c9603e1dea0d364ba866473bcf9a49f6482db9ac0422bf563e19a929fd6f06be856c7c24875d48e11f7ed5d80420c42eeb5686b4a7798f9a52c73660bc8d972d652c7f90c7189165752494528b10a61b07f491947a2f1a1bbc79ea48f1d95aa8b2c53c222a6797d731db5458a833c1f5f99d9305885999beb5ac0f33492d06f44e6c8bb5aa3fb0a048f09d9d93933fd738775cbaaf20a6063ac3abaf3805d495d4db53eee19310f5d834b3c826c72fc0900e907828514fee1ce14a308af2b9bbdec85ad96ddd2d69ab608515342b65e84cad024148838be30d812e1c33b787e6f3e15e054115f0fbfc38abc3aa7d788a472a1128ad55718242e63fd931ae8ee321e410cc447ccddec873a5ee83bff25491cc9478c6b58b7a6e6a7e0c370542844759fc41728224cdb3b956daf3a28f830f833c6074977972f4211c3d1b983a740a937e897bb13c03848e8780a1b397621c20547a3a2b37f8e257e2fde7c573bf058647ca2267c6bc4998fcd03703ebd1fdbda083c9b232f58e25db6049b90d8afb1417d33cc0fb1d337b3e7fe8a0aa0a01fdcd0d92f677082ee85cf2aebd243e5a2fcb6233da7e41177a449e52b4d02d2103a0cd1a9fd892f30429b14aea32c4661b7c7a6b9775e2b6627e586564198216c73da51fbfb0fd5eb7715b3e500aa6e5179bade696fcb1a3627497a68f736efd1cbb2bcdd2520640aa9521546596702fb58385d50597354d18821c9312371e84f963ec7bd1de3514e22710467f5fdc52d07e193d97534c962f35a519e89d5b528cb303d846e2bd773e24c797521409c884a407b616b8bd2ab44b2ab4a890d48ffa2a1f85c8ea4331ea70334b389661c25a3d3e887077df5e2993b29830bbbbedbf324bede1be04d5f3c1fa3f3ec1703e79e228e01194517364fddf800ee7f9e181c8bf4ccc5a4de569dbfa0d7fce1036808d9425235ced2cc23ae80355d92c33ecc345924ef53bbb01c33678ad5c83f35d26ca35b2760a6d485dd1e40ce02c62fa2105d304552b8fc595c7856c5968eea27ce8e5cf60f9edfb5505ef7d27431d42d14acd8c9c37744f11ad9d7b24474a500a9dbfdec72b3bf372bbe98326277ec02eacd725f3b41798490c0e4cce15e7ded3d0caa83b89959af85b3cac68ac895512c69cc87b61cdc54b695da1cf913cb092f519c842def62302ce450fdd5b34daad525d2899fba36a8e7dd8438bb1b99fc76e9b52a7b3b6d7d8f4f23e8c282d57d203f413ebe649dd36cab7dab50214ea00a5ce12af71bd2ccdb59dcfc1d1f37ad956c05a83887290a11877ba82f28c600b447088cfdfdc6cea7cada4e1ea318afbc8c05c1c3e440fc021ad7615dfb27ab7e5ad580a3fd3b8d2fb39637e594094e1ef7d67a8052f48a8a78af296db407ace5dc5cf2289a6cd457e6830765b65bbb00fde5dd78ee14aed04c213bc8272e9a405254cceb4b2b9ee64626ea9454bea1e253c9871bb3064a4bda61c488d43fb3b99434c07a91796f0ae7128cee4dd2584f2907ba5994107f536ac46534ec32502f95c997a1fc4425df2f8d10fccadf8dc60c86bce82898b455634db7f0c11b85f8357f45de6132586218f0f620fab1c8c43407988bb95dde71f73521bdff9ac700f9b485f82157f8350b35536078fc8edd8ecb0cf26b0e2f46508b1d98a5698828f6d7917ae3dbebb56c1078f12ecb67f900c5bcc01c94c9f36b54405a4446fc98339373b7a68d8c158526932039ee5c5a4c76b5de03395b31139fbd3bdd222bdc10011b81b692d2728b572eb775d093a1a2a201c07f381c752fe3640acdcf350d5323a4a04511b32f05a9c40ef6e362f36531b878ab576ef6612bef19ca271b553d7b3a3de038e3589c98648ab8765000f9d9977966fad5d751acb90bd875a0d69c2f0749394970ce4b3d38971909470d086f9d0ee6ed6f0fa6d1c18591cb7959c3f90970a75fc462eda5a03fecd3f6436a84ba9757e5d32956e5d254aed7eed57eb7b031d568d3924ccdcffa5340b720dd816a92d4760e8e0f182e772b822be06a12e8fc54ab2b03974e50c0d6404eadfb70674bb19cc3b949a4cb848b2b4251be2b30e82d8a1409274416d33fc1772bd97241e85589ea27933086c46ed9f8a94b676dc1a0d004b50e1faccc738ac797e1c849a2bac0b469fe2386478d8694daaa3f9fff874ddfe75f7df207237d7bb11324f788f13123de0676f7bf369251cdc8e5e5b5b43887128c991183230846132ba7fb8d327ab36c07c5f62892555c3c6dec0221d63b52bc6a59126f5793769ebc69a7f55dd819ccff87056fc5a349a951d54ad83a85c3a5269176163443addd235b04bc76e1ab9ec4b23e747f908d8a883b0f5c00b6f0ca3be3d42026f72707dd2911545254bc3e66a1f2ac2ca3704cfa653356d70a453e1b2004e946b9583867270b019508f09e415f4f21ec5c48742d415ed88e1a0edcba4fc5c63643ef766956a6fa360c0c1b4e58f2067df6c270e06f6a63304dbef55cf690ffc0fda787745869d8dfd02655301ba84235fba3ce7f73433d8e9676107a7724b512e57f95a066ffbc8451413b3bafc8465e1005bf4496ec9e067d46a8f4999731ad82fcae347eb3e8ef0f699ab249d4eeb54ed466144739b21014fd3eb3267d7c0936070ede6fac8159f2b0829fce63d02e9c90d9c26119ed0711072f66b395fc532896beeb1a4df63f997c24d115ab304d5f98eb485d88f4f56a4a4827393ce6facfa177642fa46656d69e4276f4efac95d7ddb336e4624a9dc323077baf490ba573a088ac97741a443609fc1fdca5a6b4c0132c217097a261597bee33f19f2c05d2afb308e7d8b6ce613355c28c9464ae25196e3e19888c5319ae48d91e434557352790024af24ee94edbce0d8b6dcc81ecde119a5d54be73fad3cda390ec7e9274a9af3ee6cef4da425fbfb545fbafd065472dc0d14f1d46a86a788f52830807c53bef21967f4227f0a4e9e97b6e060b963c4805a24064b8e3b467ba6f0648697ce6b62e6df9f472c47eeb62497dfaf29e00a13e7e5f33cf39da1ff091d5875daa4db40eb9fa1b2e2aef0d966e72cc9eb4e65fa4c0cff22eb6bc08cde298ce388362c48343dacb6fa8c6420e2d51df4c46fc1f5376417aa1a992f8ab895447301c669a2cded9b022b790129e710f1ebeff1d025df76faea007eb208d85f2e9ea629d3677262d1e840cf8309072660ecc836d37ee0833d96dbf2b7f4996bccb6bc53cf6874f7ddae11f5804fadbca6ff8d78221f535a1d9492e7ce6ee1264b475ea254538956ee9c77489251ce2c2c8daeaf8d6e09dbf5d1ed92f09ff8b0c31f3cfeba07477db852952b3b8c18168f0feda462c4e9bf9bf9fd6e601d08a7b2ef3a31da0907f8b1034df48f48352b14c441d4b563961ab788af8e4f952870e90e07233b1183e2ad385106515cfc8e833975359824afb57f08864d3e3a73d90104f9b532ace58a9af0198516e42a2c15e1d1ce9871bcd05fad06ce789787ba96b054355da7f0ff7ab7d623c22b71f6982d3d0f628fb46cbe0c129d706d6247d523745adf81c9bfdaf382c3cbc4638b64039734de584002b1278ce452f79dd5960de7e0ac167927e9abffc01926429335293398863dae99a0bae0416c3a443d76fe399502eb9795fe61f432a8cc393c92974990646b5d037c0434352cd16bc1ec8ab8a9df1beb9448dbe423ee19693ffaa671d2e19ca0d042e9ec7ab9cc714d6b026266a486740dae2fe6b94f38d3e470d1bd1b4a80df53e0f1b189cec957fd153b0edbc7a4cf86685baeaa8aa3f5e36def627aff482575b717bff88f46842c0eff8d3428b28ca3d7ff12d4ecd5f05339bb68bd368cd0ecd6292c6000bdd58fb2adb03d317f505b178cf4f5849c2f676abf915f48448ce33b6d547723cc49c96b73d2184f4d2e551ea1bb0277d7558e11c072da542c8dc9e2c65e4250a9edf06fed3ac47d1396ecb9acb3f00434cdbaca5b7da8d6e37a91d104452f4ad2bc870736ef9c3b542b4a9bcb34e26a544b352866ef0abae262917fffe0a73a802b68da38c11cf8d7ce2eebbdd3b83e33f8cbadb5c08c28c09f292b23cd9c17878435f5b7f9403a55937e7e53df6dc96788184cf87a8586f7e191a14117b428315f1e2cce73126fd4d6cdf0573a44db9df5848bc3eb9b49d180c45755ed9f4a8354b902a9ed1c8246c6ddc74c43fa85a75c143cfba4eff81172279cd56e73f2f47da24274ec42c73d8482f0241dbba836e8e953f48165a1c89907e4c71a448bad0c187571e2cc70cb273a1c8d74a6d31f5acc03e0a96b3cfe03ae5ea5eef93deab057930a76a4863ab728bafb4b75277ad602d141bcd23539e3f599bf7a2b888cef636b1f90da4fc7e3f548a727085abbc855b54445522cefc0e957ae69a450cd9c21589dc1cf8b84a23d8401c3ab6b9e0c8f6c726ca07538d9805678a225afdb098ed994966da2", 0x1000}], 0x5, &(0x7f00007b2000)=[], 0x0, 0x0}, 0x0)
r5 = syz_open_dev$sg(&(0x7f0000005000)="2f6465762f73672300", 0x0, 0x0)
ioctl$EVIOCSABS0(0xffffffffffffffff, 0x401845c0, &(0x7f0000007000)={0xe9, 0x35c, 0x1, 0x3, 0x1, 0x4})
getsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(0xffffffffffffffff, 0x84, 0xa, &(0x7f00004a1000-0x20)={0x8fb, 0x1, 0x200, 0x7ffe, 0xed, 0x9, 0x4, 0x7, <r6=>0x0}, &(0x7f0000e9d000)=0x20)
r7 = add_key(&(0x7f0000689000-0x8)="7472757374656400", &(0x7f00004c5000-0x5)={0x73, 0x79, 0x7a, 0x1, 0x0}, 0x0, 0x0, 0xfffffffffffffff8)
r8 = add_key(&(0x7f00008d7000)="6b657972696e6700", &(0x7f0000fa4000)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f000022a000)="c0da15e9f185b7b56ba454a9a6cd89efb1a763a559854dca7453187f9f4106a87b012d8ee92f11f801b861c45ef3d8c59ea9756ea9bb2c65f1b09e772368f3281abeda33dc097d93b7524e74e6db99cf8303726362bd504409982e936562aa7568839c2c739407297e9a84f7cb027b797830efce1af6cb4be48e2474faf48bb3e09ff1c031bffbcbb08b7eadfe984871f480524bd447f3b6887afa5da6c53bc1c6bac8cc461993bebf908a6ab9db318d8af4c7ea78fad8de19a8b839ecddcbd1193ac329938ce9dcfc125090396c2f93fab3855d0cb223f6844979e260ad31a6836b52941732c81b3011b7c59fe204099aaef6a6fdeaffcf57d58dd31a42", 0xfe, 0xfffffffffffffffa)
keyctl$instantiate_iov(0x14, r7, &(0x7f0000f59000-0x50)=[{&(0x7f0000ef6000-0x86)="703699399ea26c3a2578ffa8243bbcf16747ec9ad1b33ec83dd024a9c50c612595f9ede2ccb7465ab716e3ede36974ea77357e083a5f07732c967b8c50e03730b1d75b4568f3df54df67da2f5f562b841047139963dc53f0e010c8d67dd78f0ab80025d67a2563950606ab3685b91be75252c1f42ddccaf1d4e260a109227982e1994d126acd", 0x86}, {&(0x7f0000e39000)="dfc76419bacfe9de77fea13512983ee204ff6804e13dd5f339a466c98eaf90fa7ddac37069465345d5d60f0e8e37ba6096ef1bb98001396eb0408c58a188fe8b23a882b9e8a5bca310cb6ecabcc6d7d710e5f200d2436f66631566bd772f07a1448fec046fdbf6cc766cc3a9847ae65203fee62dcd6d6261033f39e0e8b1d3aaf5d35865a7df", 0x86}, {&(0x7f00000c1000)="1f27fef00004f5d95549581c8400000004c3786239d8898eac5b0e", 0x1b}, {&(0x7f000036a000-0x1a)="936f298c6b8b75f5fe24dd438a4d281a26d0c25693fe9cc47358", 0x1a}, {&(0x7f0000e56000)="bb27f2180c843fda484492132de509a9b7af2ea20e3a9190f2800c7ad90ef5660ea3e5de63af1fd4485a0c627f7c2a195e5e4c5e2819a1ae67d15df383eaec7d39d2e9f93335be58eccb3cf6d58fdca31aa2bd878eda94ebcb48540be587ce107d64a75d9278ac33ddbef5d071053918c5cb9505f4c7864d", 0x78}], 0x5, r8)
getsockopt$inet_sctp6_SCTP_AUTH_ACTIVE_KEY(r2, 0x84, 0x18, &(0x7f0000cf8000)={r6, 0x6}, &(0x7f0000584000)=0x6)
ioctl$KVM_NMI(r5, 0xae9a)
ioctl$PERF_EVENT_IOC_SET_FILTER(r1, 0x40042406, &(0x7f000014e000-0x3d)="2c73797974654f0c1300786e657431ff0f0000000000006f638b7365637275696e7329e9076d6e657431766d6effff000000000000365e257761743000")
ioctl$sock_SIOCBRADDBR(r0, 0x89a0, &(0x7f0000af2000)=@common="69706464703000000000000000000000")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r9 = socket(0x10, 0x3, 0x0)
write(r9, &(0x7f000055f000-0x26)="260000005e0009fff10000f83a0000000000000001fffffffffffffffd00085b1ee9fb4b35ea", 0x26)
syz_open_dev$mouse(&(0x7f00005c9000)="2f6465762f696e7075742f6d6f7573652300", 0xe75c, 0x20002)
socketpair$inet6_udp(0xa, 0x2, 0x0, &(0x7f00000ff000)={0x0, 0x0})
r10 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r2, &(0x7f000004a000)={0x26, "726e670000000000000000000000", 0xf, 0x0, "647262675f6e6f70725f736861333834000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r10, 0x117, 0x1, &(0x7f000019d000-0x11)="21ca59e8225a19ffe800000000001f97ee", 0x11)
bind$alg(r10, &(0x7f0000845000)={0x26, "6861736800000000000000000000", 0x2, 0x100, "726d6431363000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
ioctl(r5, 0x2287, &(0x7f0000306000)="9a077e4333468658dd908c29aa7bacbf8f90e3580c0a2a20000000000000000deb1f366fc36105e3131aec164346df0cd136d467adcff79ab9e7986ef7aac0d4896164ec3c549d69b32ce98988318473a7fb955ff5fe090f1bc2c82e02a65be7b6a6e81926ab1d8a46036f41")
2017/12/15 23:28:16 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet(0x2, 0x1, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$alg(0x26, 0x5, 0x0)
r2 = openat$vga_arbiter(0xffffffffffffff9c, &(0x7f00003da000-0x11)="2f6465762f7667615f6172626974657200", 0x40000, 0x0)
getsockopt$inet_sctp_SCTP_SOCKOPT_PEELOFF(0xffffffffffffffff, 0x84, 0x66, &(0x7f00007b7000-0x8)={<r3=>0x0, 0x1d}, &(0x7f00008d8000-0x4)=0x8)
setsockopt$inet_sctp_SCTP_CONTEXT(r2, 0x84, 0x11, &(0x7f0000221000-0x8)={r3, 0x4}, 0x8)
bind$alg(r1, &(0x7f0000d8b000-0x58)={0x26, "6861736800000000000000000000", 0xd, 0x800000000000000, "736861332d3338342d67656e65726963000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
accept4$ipx(r2, &(0x7f0000e46000)={0x0, 0x0, 0x0, "000000000000", 0x0, 0x0}, &(0x7f0000d07000)=0x10, 0x80000)
ioctl$EVIOCGKEYCODE(r2, 0x80084504, &(0x7f00003a0000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
pipe(&(0x7f0000f3e000)={<r4=>0x0, <r5=>0x0})
vmsplice(r5, &(0x7f00007a0000)=[{&(0x7f0000649000-0x78)="24", 0x1}], 0x1, 0x0)
r6 = accept$alg(r1, 0x0, 0x0)
write$eventfd(r5, &(0x7f0000165000-0x8)=0x793, 0x8)
splice(r4, 0x0, r6, 0x0, 0x8, 0x0)
r7 = getegid()
getsockopt$sock_cred(r2, 0x1, 0x11, &(0x7f00005fc000)={0x0, 0x0, <r8=>0x0}, &(0x7f000095c000)=0xc)
r9 = getgid()
setresgid(r7, r8, r9)
close(r6)
ioctl$EVIOCGEFFECTS(r4, 0x80044584, &(0x7f00008cb000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioctl$sock_inet_SIOCSIFFLAGS(r0, 0x8914, &(0x7f0000630000-0x20)={@common="67726530000000000000000000000000", @ifru_flags=0x0})
2017/12/15 23:28:16 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_udp(0x2, 0x2, 0x0)
r1 = syz_open_dev$tun(&(0x7f0000520000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0x0)
ioctl$TUNSETIFF(r1, 0x400454ca, &(0x7f00006b0000-0x28)={@common="67726530000000000000000000000000", @ifru_map={0x2, 0x0, 0x0, 0x0, 0x0, 0x0}})
rt_sigaction(0x3b, &(0x7f0000f58000)={0x2, {0x0}, 0x80000000, 0x3}, 0x0, 0x8, &(0x7f0000970000-0x8)={0x0})
ioctl$sock_inet_SIOCSIFADDR(r0, 0x8916, &(0x7f00007ff000)={@common="67726530000000000000000000000000", @ifru_addrs={0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
open(&(0x7f0000213000)="2e2f66696c653000", 0x2, 0x80)
r2 = open(&(0x7f0000f6d000-0x8)="2e2f66696c653000", 0x2, 0x4)
getsockopt$inet6_IPV6_FLOWLABEL_MGR(r2, 0x29, 0x20, &(0x7f0000ea2000)={@loopback={0x0, 0x1}, 0x2, 0x0, 0x2, 0x1, 0x202, 0xffffffffffff46fc, 0xff}, &(0x7f0000a15000-0x4)=0x20)
r3 = socket$inet(0x2, 0x8000000000000003, 0x2)
setsockopt$inet_mreqn(r3, 0x0, 0x23, &(0x7f000035d000-0xc)={@multicast2=0xe0000002, @local={0xac, 0x14, 0x0, 0xaa}, 0x0}, 0xc)
ioctl$TUNSETLINK(r1, 0x400454cd, &(0x7f00005aa000-0x4)=0x3)
r4 = dup2(r3, r3)
ioctl$sock_inet_SIOCADDRT(r0, 0x890b, &(0x7f000097b000-0x70)={0x1, {0x2, 0x3, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x40, 0xffffffff, 0x1000, 0x1, 0x5, &(0x7f0000818000)=@common="74756e6c300000000000000000000000", 0x4, 0x8000, 0x21f0})
dup2(r0, r1)
setsockopt$inet6_tcp_TCP_REPAIR_OPTIONS(r2, 0x6, 0x16, &(0x7f0000969000-0x10)=[{0x3, 0xfff}, {0x3, 0x40}], 0x2)
ioctl$DRM_IOCTL_CONTROL(r4, 0x40086414, &(0x7f0000872000)={0x0, 0x4})
getsockopt$inet_sctp6_SCTP_GET_ASSOC_ID_LIST(r2, 0x84, 0x1d, &(0x7f0000c49000)={0x1, [<r5=>0x0]}, &(0x7f0000d84000)=0x8)
setsockopt$inet_sctp6_SCTP_PRIMARY_ADDR(r2, 0x84, 0x6, &(0x7f0000f1f000)={r5, @in={{0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, 0x8c)
dup3(r1, r3, 0x80000)
2017/12/15 23:28:16 executing program 0:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
lsetxattr(&(0x7f0000ae5000)="2e2f66696c653000", &(0x7f0000001000-0xe)=@known="73797374656d2e61647669736500", &(0x7f00001f7000)="00", 0x1, 0x2)
pipe(&(0x7f0000000000)={<r0=>0x0, <r1=>0x0})
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_AGP_ALLOC(0xffffffffffffffff, 0xc0206434, &(0x7f0000001000)={0x84, <r2=>0x0, 0x10001, 0x9})
ioctl$DRM_IOCTL_SG_FREE(r1, 0x40106439, &(0x7f0000000000)={0x3, r2})
getsockopt$inet6_IPV6_IPSEC_POLICY(r1, 0x29, 0x22, &(0x7f0000001000)={{{@in=@multicast2=0x0, @in=@multicast1=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r3=>0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0}, 0x0, @in=@broadcast=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000001000)=0xe8)
ioctl$sock_SIOCGIFINDEX(r0, 0x8933, &(0x7f0000001000-0x28)={@generic="5a06970032329d9151d721544fc5df4c", r3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$VT_GETMODE(r0, 0x5601, &(0x7f0000003000-0x8)={0x0, 0x0, 0x0, 0x0, 0x0})
setsockopt$inet6_tcp_int(r1, 0x6, 0xa, &(0x7f0000002000)=0xfffffffffffffff9, 0x4)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmmsg(r0, &(0x7f0000000000)=[{{&(0x7f0000003000)=@llc={0x1a, 0xf6, 0x4, 0x1000, 0x9, 0xba8, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [0x0, 0x0]}, 0x10, &(0x7f0000003000)=[{&(0x7f0000002000-0x11)="35b63502509b7cd7a7079ac344d3b7c47a", 0x11}, {&(0x7f0000003000-0x2d)="e63d0ca66d70f8e7b97a762c6919be2fb8f8addc38b2d4cd04025be23b25aa0fcef73fdb758f9460f2073d2ef6", 0x2d}], 0x2, &(0x7f0000002000-0x13b0)=[{0x28, 0x104, 0x1, "c4c0f004bd912b5ab8eb0288ac37b3fbc32ba8"}, {0xa0, 0x11f, 0x8, "3e4740a2a159ace2a9b17c4ac249891b6db2125053d67016009ef80f38d576f585e2326a20563f7a61f810888adfe1d26d67c71f81b238da1fd3867aa739b2b002ddf30a71b14d246aace4a735454342cb2d731afd357a884223ceae13f254d9d8550744e7a8adeb53a349214a3e8dc744ecdda33a1ba1148ac5b943dd34dac03471997846d1bea5db01d99e2b"}, {0x1010, 0x119, 0x401, "7d7f31c2246608a046828a59e132d442f984cfb488183843524de666b23bffc8508dfbbed27a3e348577015a3f754c4ad7e5b4c8ac45b24435ac81e045656c0915629fbf667b35cc8541c63594135031443d5dd271bf705ac4a67ef134bdec4c9dc43f88921a8d42e39b1517fa3b3cbef140de18303477dc7e9e1a13f13dca2f8800679d20571332277fcb9ac7783f7478fcc634affef9867d444f3e2d8484abcb9cd3db605f1ff46942d14b1115c22078a9446c5b9ad0fc4210ee0d80e2b68d43277ce90452ed9156346eacfeb06b7c26525a363df5a2af92ece9b1076d02b48253d67cbfdc9064e8993ba28386f2cc2c55f90071fa60a7e4b1fa46c9510887c7fe8e4195de725f9341d632c61a8330dcea2ae898c004025b27f315ac51d459188b112716fb21df5fcef48d9fdb28c613d24fcef1034ad227e80edc60d78d731abcebd458aa5ff7c15c5be3e5d05795260ec608d09b316aced5dc430d3c1aeaf588111496ebc39f9acd0aabd872c993ba0ebd27420c91baacfd5a45cff3e918f7a315ac1c338f5917a34829e1e97ca5a41794c88f289442280a0bcf6b0f6a20a775411e85c96c3e9941053f43ea15af068487d5630c97d3f02d6e7a32b5abea1cc76cf3094a280f4382b290662cc45f3fc0713e328e6e5a446885c1826ec76c1b1f62930bb3eb2791c556090847e864ac93dc605ca0aefeccb0b9bd54bb6111a0b2cfa03a24ab6385d8bb6cf716757333aba5c387d9213d8d075cd36840a3c654aa983edbec9add57636bdabe593c27fd62ad5c66a4c266cb3d712fa841efb28bcc162c02ccc37e44c16054ad1f7d6974f45a1795d0d193263a904e832291d51458d0eb6ed83c77ed592ebd75e17e146fc53d9a2dce2f16ed8033bde6d83b1a20b6cc8fa181411631ad579aba1c3dc0feab6cc2f1cf78c50698848e8e4ef2910844d6fb43c4f41a83ef3f9fe3bb41ae5e0447b3ddf62330e5173339fc3037b374450c1af0f04f7a6f064569b56f749c2bfbdf9d278026a6ad5e95a4cd315c4c60a75d929646c096da0f024c3ac2e34069e25311910539686ce103848e8cf2b300806e3dc07b9518419dfccad216dcd9bbe41f2b3b0b20ed7474e63c4eada3b99ab094aa16746b7871fcb45a84d3bdca19aee1d6337d9c2cc940157348c10ebe7bd3df6c38f708ab0007e0f4b59b0e1c0885cd87266374a82f3f0729a5b6a644680236eff5073065d4fd6c576907526dbf3f4169ab73da989fe06edb0e4a3a97a081ec54954ead8fe4e10ed3980e9e4eec7084be93ec5468fe3f8ab871488f577ce980c46c51c73922617c695ee6e319a0cf4ca797752fc3f060324cdcfea636376f19de9ea195bdfeefc30cacc6c3f1c1326d4f2681abfb77c94b145c9f876b4041a7fcd0b7da3e49f587778d49d60064f46fecba2b89e9a0e5df6e5ba4e28ab5aa00d9dbfe43d3aa7120476ea33cf9378856d149574f8546af172f807d01f9a128d82875631a636f26044d68130de3790befc73884ceafe0f6be36c94b40d8e97b42ed891ea52ef1204a1dba3025bb5258343b0de7f5d55cb9c434b017adaeced82507abd1c6f980ebabfe3f1b29daf00dc5bdc91744bd6d31d0d4970ccda717587d1c56455032fb0bbb2d354b7238fa4ddd53f858b479cc5511b61488c12a1b029d868a576b98295f9338d8eeb2044cd60116953ee4ed74b3b0ff8cefbcf87271babb7fd4ed1d1c1f1ea82d5a1316fb740946acceb7823e31acaae4e7e0e4a78ec20ed16898dca9cf6305319a5f8617ac0399cc487ce0d7ce8416c680dbdf453bf0b3b1ae450dd8df85c2299d53408ffd5dddd0fe2f28eadeab1d77a656b03e44a246c298d2be8b8b19cd9ef41a2df481c5ffa99c0ac7c105cad17ec4606d8ad69e850df81ba9bee342f8f9ac8ba9ba3d8dd4f2c387110ff5a4d9aaade3253bc095f4b7a20037735883974b8cf16893ee036113cbbf3a6d6727faace3d4c38a84b7dc31348fb6ba218b54a855d7e655f92eb199f2721a73117f04ee430aee0bd9b9164a0104b480ac4ac65122a4c9afe88ac4e9fe009bd7318839ee7e331a0682c6f61dc5a4b9ebe00a1906de5d7b38b3da662f5a6c8dfd8afa2df267f2b397e8c99e955a5d9c644c0445b98336cd542b4c55fa25d0961b3388d54dc0f1dc6f977170ea93829e415338e2fda99a7bae92e28728e171356d0b2b61c1d0d38bb0a9dcfc7f66bc2d17aeea58e43a9718e2ab93c9c76d944a87d7a0766c25605a6e9c7e96b683da53bd497c571b55c5c562fac358b097e2bb8e9d519e9ddc374154ba1768d235973183303d137ce7a61aae9192df4c062846e78a8704144d8692906b1778c42d2f2e6171b4900ebac64dcf7a4cf06100e470ac785855a0e92dc06298e6b8d03f21643abe2e3a3413fe5c463f15c6fe40d6606d45e1fadefed073a2d5f03696b0f88186832fc75418592327cc40900e628211eabbb5a126d48575d3b6d031ac808d6898b9b72f7864a0ec01753bc1f749d32af2750319cd7aad51d0f1b2d7ad66befaf5af6c60c4ffc43eb270ad06aece81f651f252c4d2b9a20ced694e625b16fe8d558cb358bcd4e6cf00baef89cb37e9fa5fc458cf3fc51f3ea7a4ba65315f4a3d19ebdcd110ccac770772354ade3363b122416042d8f6340b0152ad7507f6a4bb9a14607b3bf11dc63fb298e767025e81102f4eb5b9d397e55e50d855771fc4b3d1005825f92e7a7b14566bc015cef5f1332c4332556f2851246dff59e97caaa254ef7151012c92e8feef6cd87b5750305ade97d9e717393a1ddc34cc69fe7749b8f1dc2d87cf676461a537030255eb66e8ae7edcab29dbe4a7dfa971c49e183d3276105df7fdbadb6e016769241f9a007918bda5738252abc6ba8b86c3fbfe54d63c3c553b71445d3a5ab59bd6ad01952b7ee95bdff71acbc07967cbcc52886cd75b0b59a33034dac0c8cf7dbdc8a3fc184fb9a6c0ae887db7c95984e328d34e47640911527592736af3fab58b02f66671a1c02a9202a81b0f78e21fde61d1a5055a245eec7272e39de4d9d656792c12c6c675214b0f7ccd6f1caf184e24307530fa8732f050eb7a91f21aa0c30b694b8a7176c54b5989e91793ec2144f022b33bb0845e871b348a4be7c6b0f0cb373940a58e0e2e386ee7a316583f0d1389d36198f113c08e32e7cbb0bb81d391445fd43ff6f17a0e62f8cf781efb3131834dd79c3f8c977177ab5ef3cf0a72a80ec4b58acbb04724be1d7454b937a84583d4bfa852f1b971de99ebdc8189c69a5b6c99b8371a540ce5e6332b904b4cce2e87195b463e73381a41980009762d4f6373278cfd312d29a5089190f97bfe4b303cb5d07f310a609b89f2f28b50ceb753c5c34a7dd68b00c762651ccba71b49fcec15de02842a57405b8cbd7f91ee5f582398581ef7188f7f5f4ceb4635ed5506819e7a1e31f632de7c885fa57a50371f8f3a88c9c6f70f8f921f4b574b000d49823767428691f7d1905b4ddecb54a8a244f59bf35c54bb2636ddf95ccda69587d24da121caff4bffae9a3cfec0416b949902af4daae758749138a40533a09744165f2d64ef20f589764f3b3933ca2723b7791bce94fbbfc29b195e4db9861d4b62b426dccdddda0dbc0de12c358ff976deb356813a09f2abfc7520a8ea873ee3135e75e5bfe9bb70478c6a2e92a0383416369738f1674f1dc2214172ce14468c96ea37eaf42ee8051309f9fa1d9b984baa547376f2b45d0c62447e784e4bcd0c2a02009fb948d05d01bd1bb8a1541cdf286aff39e17b442201d4f4884be477cb2f7ea3b1c2274d693f271c6904fd90511fd15720dfe07eb09546e1e489a3238566f343991c3c8983f9861901e24ef773bb24f792d5883a13e1093d6cbc2c264ea79f19f9e0cec79fc41ab6cfb246d2a74d98c2c36dd97c196fca49554ce571e1c49489e13dfad2d205845344c93f09e3cf87d6f3af49a9dea1093b5c7d23edda5e68fd7956b030490d82df0e3e84be568c0842350a054bc1b0d265203a4818cdd777a46a42c93cda77ac31a27b7bcc9db85254665fcd4bb440c0aa6660c424850cb37523cf62defa7cb6f14be577220a4120b5e83119ec057968c331a3631f6d0b52a7642f6492f7f83ec5083fe9a63aa5e2391bf3c52db7912c4d67047083a4f883b13dac1a9686bb02de6bb69a48eaf3bb7bd5dfebcc55fbd02097684f2ecd07f050892b407c08a388d131b341f6e949b1711a251c03ece81551c01c2c4be38999277cbd2cc995a09e88cf5b1b8449e6ffbe10126f4d26ebb060ecbd084d5345c8b7f4b99fb8f9a1ce70c4a58404011b4d5d50d84d8a65f151db9f45d6898c1a37ca5d84a71a393aeee707b126c532cffa5b5ace12d6662606dfacb4d30c91a32e290c345505f95bedd02662a6ddb1d086c44f519a3dcd131cb1654213c0e2fde5b743875557c2037bf9dd3087e7dcff28820a1f8e257a13da03aad202c385bf67fc83c50b26a9125a94f9c09cd9fd2061d4e16e22108e6c18e7b0907dccba981bc7f805af367443fb5be0083ca49ada90bca2a5fb3758a8fd75ac7ffc27ded42ba67004c7f0e05ef4cb3e33019bd8227a66433d894cde4c2101207d804d20ec4a512a62f67a04a904cdf315380b734e88d208f7024eca6a9526d4b3d2e7b4c889b180375fd98d4d071965e94e596d249de997d5384f4e3f83b3f967c9096bf55fe6798c62d083ec0b52beed3c4a44b112ca9fe6bfbafb42785ba434d8746dd1e9f43c2995b19a80ddd692f3867a592966f197e5b16e74c4a5421d0bd487a2465a68024a246d425166607aa44cf6906ad4d8678d3033f8cc3ed877011e624644fda1d8ba4fd832fdf2e8422f90594f8d019c068811cdd77c787bcf42d96ab074c5cc17aaabfd873b9eba632c5c1b850ded8227c651637734ed62bca42cc2b14d50b38b0584f5b30e99495a23a20768fe8a14d789f0cd694822256ea1526ea62ac9df96a7d080451d1229400924baf303256544f090ad0b31f76bd26399dd04f7ffc67f238d880acc4900dd6ffbbddb70435e906b04b4d45d6e9f82b4171b605d752615d75140f2d610b5663a5eb2531d66790c968f4fb9983dcc6feb381fd4ded88e87cbaf555a9acb47b6c0b9215a6d90f906ab77bc9c4be1ca939a40dac022e15baa379daa10433469e7a110d6a3efa3aa404fd48a5f942d05a5512dd811c834315d0ea86a6de7b4458a9dc7503240a05770ea91b6ff39dc9f9d163b21fc7db70dd15c8e0b29c54c9fde751f8b3a3739141eb1e87910a3ec03fd76ed3f196bc431097c1d1367f32ecb93438c09c1d9d05bd31a2afe098e12441b5de627c6d0fb0dd9e3b09ae0c4dc1be60b7b4f8f08ffab4eb9b75fed5d04c3b9bed6df520fca1e6af42705f0078cd8730e0733b894b3a26b7a5ae6310741f680d996d9920616b463585ce413c929acd28350f03edbc3b9649e242f8d14d83132e6887f9e9d6e91dc021094f9bd6630e1a7f6ac6e5cb1e086891a7ac0efc19ffa89a86de9e31e103165850409a46546b3e2f4adff5e0b7830e286ebe993f62dd1b0aa7bcb03d61d37a32057766ae6ecf2e19b72892392d4181dc9a4ade5425879631135221b34dc80069b2c37dc106e922491954b636e4ff383cb02cfce076aaab2fdc2d1949f3c5e431f2acb770467a7496d7ea9ed442cbe3ab016e0a6cca6cdb1a6d24dbe7ba81623f25cfbfc765473acb636b5c76d0296ebb08816593fab5ebf752cc455d51656f9b63f9a8c1868ef16da5bec3f91f2e5bb589e3ade"}, {0x58, 0x102, 0x0, "3fa7ef700ef4ca519c1922e0fed81c1bee3d5326c52d35ef974e24f1f61b07ba5a61341f694c9f3d193b57a17c82c402b2826caf1bc5f02938937b85faa46e2330031312254609f0"}, {0xf8, 0x113, 0x3, "fbcbfd540a75842050822279c2fa485c682f63fe99327ce2b4c7f2daf0b43655d72b016f5061b119a0c772243e782df91833846ba2b2143a87f8c2387718a7a409d3fe51b72dbf1986902ddb460338ef0bbb89a1b2753fe08b32cd7ebef97daab9d5217f46de1fa23b66a41efd94ec56439401d812ed16ec93a7d9f196d89c146bafceb3b46dd43f5e24f6d94d63f81e217d4ab063fe69f3c83e72c7e3878f15dfdd55f3c7b1719b6f02cfbf9268a9fd8c09a9929252641b59d1ee799d060f6dfa004aa7cfd42af5d1eeee068a0a51d6a3c97481ff1ab3081319930cc75162f7d71136f38b4de3"}, {0xb0, 0x0, 0x9f, "af3d8f58108faa5ef9432d88ff7077a5cfd98af3e1a508d81b2c238b24166a4bbb3b30ce2ee8bf75b1af8d9a2c7b43f1af029b07c359e5c45beb9856e518fdced86fcc014237a3ba423314ff182783c1a06e4fc0c2469f0cfcccdddc5f5a86fd80feafc3a6effb0c7c176f3d31099fb63754a488937683ac8a44e8a5e5708c5547aba2d9b238bf040a510440ed66b955c924f346c997f22fd310ce"}, {0xd8, 0x114, 0x100000000, "c22a27c5a854cda3d01e401b44023ac836e7693d3fe8ee375f4c5bffe10bdd2fd51f18af655e0e76ae33dcf6500efa7a3e4c2eea76135b8219b137006e3cd6c1e082760560cab6af9519f639d6d4310902ca582d98e0b9520db26d22331c3fc829ff48ac7e8d9b453d18553146d797b77e1a6dee0e7e25199358a4a8f6a5e11ff92e9d48621323733b5c42d643ea28901ddedffe4fcbb367d2e46d31c69eba45c694e021dcc18e799382c97cdef031464bb6e0883d049d281dca447d9c92703e7db9665f4420c35b"}], 0x13b0, 0x1}, 0x0}, {{&(0x7f0000004000-0x10)=@ax25={0x3, {"3903b4d086216b"}, 0xaef}, 0x10, &(0x7f0000003000)=[{&(0x7f0000004000-0xc5)="980d54f35300322948ca313a05993ec16cd60881518fb5674b29754b5002364efc48d63c4259ef066ec9e044d95e59bff29083e2c6fb04662836bc92a70d81cba1dd01ad18957a3d164351b5520bb00beee466fa8d22183dc4c21228c632e865ec6d437b35e6d65cc36958e8d72de0c9593740c8f94875913cb428f6982f63a634d3a4b8aecaf8bfda15278a284fe7aae783abf2f1896d940af51deb1f1addff737c219ab30ee8352852b4e9c63dafdd42f1f7f33ca9b0eba650b2c38b7808d8f97eaa0c61", 0xc5}, {&(0x7f0000001000-0x1000)="a55ed61442c058d4ee7fdca545f90d113c7515cdeda4ce707e38781698e58aeb68372da7e1bf825aa21da36c23ce13da3d33dd8ce80550d74a7a500b98611ed1dd37f88c73fe919a4f8b960e42663d48e358bdc739ad112c994f205e8c82442788d0d14d8335fdc0eec6384fd50775abfbe9e38f95ae637b24fa667285484ecd1c2c1ffc552c6e7a90396d1da0cb415730b76fa8d5d4fe35adfdedbcf6290c6b094160c376037c0f290b3e5f0e9c041837fcb9f56efc0e5c7108fee1b1b2d024a36055e58b62873fb0d48dcee3a82439249e395b2bdefbf57d26313db7570a1e51a005d152de6eb052e27a3584ed95f208647edf33e8b3162201f50602de84860904d03ee52b0c16be72356137e4b39110ea9cee6974062f6ca6fef71234088b3656086e71959b74529e32a7b4e0489d0edb728aeab8036c83323a824b221ddf8ea505c2fa1accee919040e5ecba3ee05f56ca7b55f0dc82cc95d74ceecba342e50b76880bb649a39dd8ccd9c4ebc665ebe4f655a00ea832a4e53857d515192d459623e643653585e66b37dcf9ff416dc8dac7adc2ed39c26de339a046e89673913651ae6941ab07b7ff8da224415281b65a439711734b534c6c642e657c66e55c105a13b5608d913f37030347d9e98cb74b6dd6b12c4088edc969070cfaec76ef76a9e9671ac261f00b48497b7c1a1c4618d2ed363e4bb22c88c851914857eedadf925fa88c1ff4de1b496a983e92ad7da23434e41afeb1ce6d3d2e2012fada1c3839849851f7b1225d2f6b8b1d2925765671e56de511bc0e05ac1bdcdd32fc86d51821672ca9fa60bfdbeb6df272cfa21a1d0e9af39876faf27f7919f02fe33f366b0d3baec4ca01a83a1d46fbdce0b7fbd9632dda27c8dc15ef64bf4fd72f9c198bd81522694b4f48525c25e9ef566022220bec933d7fff3777d03e18d01ea4c1663bab5388894e04f17b0683307acc4ffd8a5c7a6e4456d75d19246969db5188a8c6cc0e333a1985bb3a35db2761cf409ff0c119dbb18ba5a9884b96a706b9d648c20320a7d0c25ae609d34e511d2e5f1e7ebe654f705fddc83e7287e8235da6db49f1b24e75bd6ae7d6ed96618eea93d5005bb6e991fcddfdfa1d6862360dd287bf966c5aaf855c3b21d6444b1e7955946562934775d8549ae7c3953b7ac57c27c3c4dc95649f893a300872cf3b6105b44c0a1b43ccfb55c5ddc9f2787bd473580339a70957e93054b65ecd823fcedc24d58142de3071ff9f4d514e871336bf694af9c84e7a660fbca44507ece50a0ea37590188fec7d8aca9d7e43c87dfc66e51c25b882ce0f401c638a7cf830756f3dbc2b87d6541f2651e047a9c5168542d70941a51e0b1d22b12204ebcf54bf48dd48d57441d81f51dc91504e086cf7f227e356f69ec21cc382a3888d046fe180830ab03de215b4fcfb2cf26ac1e2547f0d88c0696c0770ec80ed80c5089f7ea13decbc3c059be222984d53537bbe9e45a68a60e84828c8ffe044d407f519817aa939ecd7f54778ef63481cc3bb3b95233efb7f25f53780209d1664ddb28293976a5d010f8ec1ec68dacc796060aa1bf3645dd82a0f21e844c05d1c5c9ff61e09a73c1e3858d7c4265e74c958a89e780760bc2678f4018ea16a2a6a7a73fe69a7a5d7300a855d7f122a9981780473bb23300aa23a13efab5975388ff1136a9719747f10be2f7dc18fba3654ba5f3866e07c786af052d7fc5a4397db23897c125ea605e3696efb210c877171dc1a6c6d4b20f26a3ebf912072ae017a3fa5698f1afd147693769ef99393c0bb59aba83148bc2f5e38c6311aa67801b023e48d31520a69032eaec3decd06a456e9a05a27266709fbf0761f209d5dce287ab54aff3e3668a33c99d4ce72882cdb7b0eaef0c93dac5994a7b7a25ff937966de0ea9ab4a2fc61ce965515485f109d4d0110286ee05b1050854c2cd43ec862daee4b3df0f3c014c2bb0bffe53fdec67e92acc8a5c93ea878e7de33004835b9157621f30c6cc3506eedcc5528892dc0a6f5397a916b69b3c66e24e6ba43330b50b3657870703b26e5060f4471373e2a086de7def01dae27191518ad15451803d6f92d148bb6febb4920c4d69ca794e56237c03b7ba99fcd32e3d40addb0cc795ec2257b11c1b10af92a3d1beb0f2c4543bda1cf743723ccf96186df15f71e3db48921186e04e8b7348ce5576b86bfaa753a6ad0095b4b0f213acbe690f00b8f253d60a2046f3c7e3cc89671fc2fad1c31e7ad3c26218c5f42ffb697501510b9dfeaef2f73d3ede93ba95bb39d8beca258503569a73c6266ced506429536dfd5a5ec7fb1665a9d9816eb676ec422921cdd988c90e47a54a85dea830be02a13e5bc98132672dfb5159dbf60cd974964f974500c443208ebe846a66eedf33fee0a732888d1e4ef6c7841875b8cc086bc936cfbce58ddcd48653506ee5405ce539ac9fe8bf1862d3be67ff1da3f0c890f71ab7571357548dc76b04aae6541c7120f5960a167e152d9aa528f63e6347732447dd17d49ab1b63eb1ee8d69791239f1e58ae55bb44f447e1fb762215994b4cd89decf00195e66fd80a0b89409b0261e234f24cc8760e3fb47d1c5bd86d0162e7aa92ababc2f6d97b3ecee9081ffeaaedc19a77c73a3a981fd5e0f84a2b10d06965881b37eca33125af6dc3012b9e3b1086e5828773113f911491b4d3483a8cc876ff14a61970558d0e350b05cc924b0cd12897cac74d1e904231b8f5930d058ef46b88dd631e3849bd5562bfc7cfdfd1da5eeac0e62f69ba7e9cbbb74c03dc3b0c8451f6b23fffbdfe8db330cb89e99781b739be4c9de20a204106d493e395d22c75c731bac4d5b4ce5d24da87424224e8cc687ea238984b647c9fd7ef6f88b90592da32d24a069f1976751d29688283f8e34aedb9e64248f22d2d47ced04ea78b408c45d9f21b60f71424385bb24e22d2cb017bb793a2b8f9cee225e830e8c419f42ec87216dc719851273988397bc0a9cf0dbc6c7301d3a57cead5184c43edaa636aecfe5d0791815cbf0e42494d84f386a0893cd55a66b295c52f87ea49b14af0b58ce3bf2161cbe07745c453cab206d7a2191556ef9256a5a7083479af7cf37e64beeb53ac618ff8c9080ba4c7e579e49bfcb0510874f31808ff4bb37138220fc892fd4895389084de51ed2cd981288b36b8514fd716a865fc78525da5c7300e481e39a0463ff5a44de6fea7c9516b409c391070da73742e2bbc23eb3cb774f4109b878e20dff2d36a9216dd7afbe18e63bf213fc34827740336a4e6fbee7ec73c28bb014c784fe1813315226a18a61631127214d89b51d25331c16a23f997440076c3940a5203a83423ecfa3f4125bb5c0f1b4bc02f00fb385cb0bb7ef9922618b8d8d05f1fbc7b137bf9b76a9b9bff1eaee0453f0308a47159598e22eb71e4883570abae64713bd56031e9cd7ea497b92c9b22749e7e27b8e547263a7444b182640fefd12d6040aec607de6770176b469ef9847282418843f419db0e2c6d951b889fe276b8e1b71a349e87c3f81ea4973ca43cdaaac94558278b7af450813c315028a6dde64cb46ac80b9d6976efc8d90f6b58308871ad9ae0f30436bdbdf41d005748b997c9d6eef28b03bd16165fb4f7caf0499f7bad8ab696f3198680338516ff21fdc1d5dba4cebf8d7d7da6b78688c69d0c6cb955b51516abf4978d6e47ecd748c9a7f976adda74048e0bc600c2a3af5ce06ecfa280249374b345d400ed2f5921ebd9a6761961c4333e77dcdd14d19f1a18524deac3e24b475ff5dc2845f7a1fca637172ddccc0ba8b1f4b6735f40c91364a8335360bd901aade772d25f2b4277940cf0a560411fc2e6e443526eefd811c377aa4a15c6134bcc11d4825744fc0115f4de0196853e676001b30e1f585dfa48284da7e6a21fe8390ee8d3307afcc59da58a418b1c7a552cfb27235547a61839348bf3bd9f42ba1a5df55386c56218b9c0813ab6a585bae9afa158f0ce5160bcadb0d2d639a6fd3cdf26def1b1405f28da245afe77e270754112b6ebd665d637a627d254f72b6554ad8beed5bf280cdd0210063bb3bce0fd60d82aa7585cb2bc3dd52532d1c6b0bc03ffd79b4a32d03bd241393597010d7095d338bf0f6f1c69134ea9acbd48c021bc3e1905d0d3eb926733ce1dd904b65f060c0d3bb70c7a98f7096a5e9e372ea24838b6ea23d5d366685068774db8d05cd3a2cfe27b7702a79507280211fc9dbb780b5b0a46c038317ff3bdc60f7d7ee76811f23138893c041d98505af0136152d2e53b4490040b5fba642308188cec67dda5a200cb9d70631bcc4226d242b5c971acaa8865377845997539bac57ea92b32c83bf28049d59bfb49c42fd08193e75745bde090b1c8189e65cb0675c06af55a84bd1b95ee1a09f2207c818af1d7c0f77e4406147d43bd835a919a5f9595db447565fe411859954eb0abe72fb8f29dba54f52bffa0154a8513c318bed483c7d262b4ce663b7c6fb780ccf0cb8a1b93f0c9584ebe316cde3feef3776c4bc53dc774c4a1cb6ee0584cbde8e33484f94eed7454f91300d521926eb644d3a3c53a6849fb5a9980b541350ad18c0ac16c1531d390fe3b9d62db4d0b208ac6443a1598551f2daa61d88a7e6ab69f1256dd74c39056ead2342f731b4b741c6699c4550845457c0da369b3920dc4e199333ad3d9b005cd4243327c53c12d83459529990cc31a9a6177faeff0e48b00cd104abbffb5207fef815ec97afde04a6d38e1949a6564163e8af9f166454b6e255df978de2eb438175a8cbf9433ab99fcdf1ed2e81ad48bad2cb67749771831dd19aff3d197fc2a605ad21a168967506de9a1a23f1345c47d5f5dc3fb57e9fdbebb1063edb054660ec5645694117f43d33bff5ca6a6b52eb4956912051243eaa3d1a073c9b64a84cad74be26953f99ca014815926181bac55c5bc12f7b7a1870b835fc8393fe5458d69bc87836f40688e173202e869929f6d5807762af6b8ded28766f753b15bf00096f440bd4c888fa4c8b6e380d1cc0ef74dcd277d86a91353943b0d8ebf2f6951e009d104fb85129a698f0d76a992804445eac7847cc33e7fe351a2a468ce615a99a87ae3adaa9a7e4bf7b2cdf2e658092b867c62ca57d05ece8bb47ad6a9f41a49e9b455894e64fa12c5d71e802e80d587bea88cd65a7edbb1a8907f92a33ac2257250ec8331ddaf8745e2bc0c8a7d7336f5ce63dbb837d100d0f8e7fdf3d5754677fc28c65e5ebd29b16be7aacce95528cf567710930935aafcf6dbeaadcaacf752ed6d97ada27f38ade4e92eb48b9c236d9a92143b285492b23bad1c431b4d6b104126bacf5f5c8f4a312bee0e4b8109d973084f5f0cf3a9ab22cb41b850d1da3746651d6e252a98c42e6c1753265ee0ee40fea630bd139d17a458d4cadf0ecc6e5f9534cb7db619cea4578a1ac8e906223fdcd5888fd3077fc0e006a7ce1ea72137d3a5068a82baf8eaf7c49579c2332326e4994dbcf15bbfbb4324ddb98d399fa2c7d6e7be69222494f9c052b79784fd7cc21a6be79734e69f87234d71c408041269b9599f14044bb5539a2d04b1bc1563347783feeef9434497dc8c79ffd2006fcb43262670b3956b5e4c14315f6f37de42743484bcb7a18f999ce3e344e1e8638a22a98fe8547de411b0755af7626f9b6485c88abc2f2b7e7ce65815e66f3d8423f964a811f535f24ef2e1c17aaa2f0b990fb78e1b6df238e27f551c10e55f6d8587933347f30651c981706de53aec3c59a80711f7ca0c8ee4b69b1d", 0x1000}, {&(0x7f0000001000)="", 0x0}, {&(0x7f0000003000)="bc738120a5cadf651737bbd60015e208e33cd0a732a58ea5ae1c3e16a70609682a72a61527251d4b2e8c83d911e9b24b9c53b5960fb774e1736d29f285a7", 0x3e}, {&(0x7f0000004000-0x8)="32d4065a611c2871e93b52a530b353", 0xf}, {&(0x7f0000003000)="77", 0x1}, {&(0x7f0000004000-0x50)="27415c481aa492b6aed0888e2df7d98266a6ef1e22fb879d5a37f811df12014ae5ab10377d3496a5854f623a231484f5fb67104108402e7b49238d6890d92e96828ebf10c71db96b0389743ae4a18540", 0x50}, {&(0x7f0000003000)="ea387f69b25c1f956378110111e78b0663cc4bdb3da160dc3136a8e2ee1df042c85607f2a657d2f86e75b7cdd8dae3ae69aa45e03bd67e1890c9dd44eae23c764b1c65382759d3064a8749a4aef5bc994238416b44556cd01f976384d1a45a008fce8cb50c0520e79618654b460df7f18751b00c1996f50e2832c05328d5a9e2c377ef5e6c82689cb2ad72d5171f63f07a1377fef87287a32a3d8f9c4c971556ef41a175baf750f3ee9f542149873d6ef214aab9e0", 0xb5}, {&(0x7f0000000000)="010dd0e72163f0e9c239d8e6a32e95b77a947a509eb4b49bbebbc1811c925e9b035d0aa1ee341437c1d04427173921e17da71a8f61d094bfd8b279c5e5a8d37771637c2116e35d39e1c16f15f32e9484b68a8b473897a3ba9cf595cde7d4a29451715445a8c31880639e4c4b09e48602a1e93e4d4c69047428c63fd0e8cc067c2b2d595d7177c692ae8c2d44c6f928a7791e5b28fc92b1d1427ed4d48bdf9c9006b675232adc15ae28a87fef684fd178318d987720973cc10978bbc0a615d876b2855884288d4d0e9836107a9e1d89427025c7a5f15619", 0xd7}], 0x9, &(0x7f0000001000-0xf8)=[{0x10, 0x105, 0x100000001, ""}, {0xe8, 0x10f, 0x0, "86da080b9677940c80dbd12e0ccaefb5362a2dc30d1525ba385f8f4e16167f0717381293090510e857241430b26fc86347c6edf2694aab752fa2f489bb5021ab9c4a2dfe67e83d1c32614f89225c3423d7cde38afb38577a087a3d2dd6dac898a4d9693088f0f08f91f8a420266e071c317b655b922b58f62c8ddec6e6a4de371d657c26f7af25e8edae852cf80af89d514e8f54aa33f071eacd3879a53512adbb186d39947ffdb116a27eab9bade70b03579fb17cea51ac3131f3214214a208c75cae3140e1fa04e6204f44800721137bb6"}], 0xf8, 0x40}, 0x9}], 0x2, 0x4040)
ioctl$TUNSETTXFILTER(r0, 0x400454d1, &(0x7f0000000000)={0x1, 0xa, [@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @random="74209418374f", @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @random="9a64044a1886"]})
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_EVENTS(r1, 0x84, 0xb, &(0x7f0000005000-0xb)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f0000004000-0x4)=0xb)
getsockopt$SO_PEERCRED(r1, 0x1, 0x11, &(0x7f0000001000)={0x0, 0x0, <r4=>0x0}, 0xc)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getresgid(&(0x7f0000004000)=<r5=>0x0, &(0x7f0000002000)=0x0, &(0x7f0000006000-0x4)=0x0)
lstat(&(0x7f0000002000-0x8)="2e2f66696c653000", &(0x7f0000003000-0x20)={0x0, 0x0, 0x0, 0x0, 0x0, <r6=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
setresgid(r4, r5, r6)
2017/12/15 23:28:16 executing program 2:
mmap(&(0x7f0000000000/0x5dc000)=nil, 0x5dc000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = openat$ptmx(0xffffffffffffff9c, &(0x7f00002c2000-0xa)="2f6465762f70746d7800", 0x0, 0x0)
mmap(&(0x7f0000000000/0x1f000)=nil, 0x1f000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe2(&(0x7f00009b1000)={<r2=>0x0, <r3=>0x0}, 0x800)
ioctl$KVM_GET_EMULATED_CPUID(r3, 0xc008ae09, &(0x7f0000e2e000)="00000000")
ioctl$KVM_X86_SETUP_MCE(r2, 0x4008ae9c, &(0x7f0000069000)={0x1e, 0x1, 0x81, 0x0})
modify_ldt$read_default(0x2, &(0x7f000083f000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x4d)
r4 = getpgrp(0x0)
getsockopt$inet_sctp_SCTP_AUTOCLOSE(r3, 0x84, 0x4, &(0x7f0000358000-0x4)=0x0, &(0x7f00005ed000)=0x4)
ioctl$DRM_IOCTL_RES_CTX(r2, 0xc0086426, &(0x7f0000d8f000)={0x4, &(0x7f0000405000-0x20)=[{0x0, 0x0}, {0x0, 0x0}, {<r5=>0x0, 0x0}, {0x0, 0x0}]})
ioctl$DRM_IOCTL_GET_CTX(r3, 0xc0086423, &(0x7f0000582000)={r5, 0x3})
process_vm_readv(r4, &(0x7f000001e000-0x80)=[{&(0x7f000001d000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6d}], 0x1, &(0x7f000001e000-0x60)=[{&(0x7f000001e000-0x6d)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6e}], 0x1, 0x0)
ioctl$TIOCSWINSZ(0xffffffffffffffff, 0x5414, &(0x7f000064c000)={0x0, 0x0, 0x0, 0x0})
ioctl$TIOCGWINSZ(r1, 0x5413, &(0x7f00000fa000-0x8)={0x0, 0x0, 0x0, 0x0})
ioctl$TUNGETIFF(r2, 0x800454d2, &(0x7f0000522000-0x4)=0xffffffffffff0001)
r6 = syz_open_dev$sg(&(0x7f0000ba1000-0x9)="2f6465762f73672300", 0x8000, 0x40000000000)
process_vm_readv(0x0, &(0x7f00000e6000)=[], 0x0, &(0x7f000093d000)=[{&(0x7f0000816000-0x9b)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x9b}], 0x1, 0x0)
ioctl$sock_ipx_SIOCIPXNCPCONN(r6, 0x89e3, &(0x7f000085a000-0x2)=0x1)
inotify_add_watch(r0, &(0x7f0000915000)="2e2f66696c653000", 0x4)
gettid()
getsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX3(r6, 0x84, 0x6f, &(0x7f0000063000-0x10)={<r7=>0x0, 0x8, &(0x7f00004dd000)=[@in={0x2, 0x2, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x2, 0x9e2, @loopback={0x0, 0x1}, 0x1}, @in6={0xa, 0x3, 0xffffffffffff8001, @loopback={0x0, 0x1}, 0x0}, @in6={0xa, 0x1, 0xb17e, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x7fffffff}, @in6={0xa, 0x0, 0x5, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x1000}, @in6={0xa, 0x2, 0x81, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x488}, @in6={0xa, 0x1, 0x7000000000000000, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x1}, @in6={0xa, 0x0, 0xb42, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0xffff}]}, &(0x7f00002e2000-0x4)=0x10)
getsockopt$inet_sctp6_SCTP_RESET_STREAMS(r2, 0x84, 0x77, &(0x7f0000604000-0x8)={r7, 0x2000000000000000}, &(0x7f0000fb7000-0x4)=0x8)
perf_event_open(&(0x7f0000075000-0x44)={0x4, 0x78, 0x0, 0x0, 0x3, 0x1, 0x0, 0x0, 0x20080, 0x0, 0xfe, 0xfffffffffffffffc, 0xfffffffffffffffb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x3, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, r6, 0x4)
r8 = syz_open_dev$sndseq(&(0x7f0000142000-0xd)="2f6465762f736e642f73657100", 0x0, 0x4)
ioctl$SNDRV_SEQ_IOCTL_CREATE_QUEUE(r8, 0xc08c5332, &(0x7f0000cb2000-0x8c)={0x0, 0x0, 0x0, "71756575653100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfffffffffffffffc, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$sock_inet_SIOCGIFBRDADDR(r6, 0x8919, &(0x7f0000d44000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_flags=0x400})
openat$autofs(0xffffffffffffff9c, &(0x7f00000f1000)="2f6465762f6175746f667300", 0x2000, 0x0)
2017/12/15 23:28:16 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0xa, 0x2, 0x0)
shutdown(r0, 0x1)
connect$inet(r0, &(0x7f000005a000)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getsockopt$inet_sctp_SCTP_RESET_STREAMS(r0, 0x84, 0x77, &(0x7f0000246000-0x8)={<r1=>0x0, 0x5}, &(0x7f000069f000)=0x8)
getsockopt$inet_sctp6_SCTP_SOCKOPT_PEELOFF(r0, 0x84, 0x66, &(0x7f000025b000)={r1, 0x8}, &(0x7f00006fb000)=0x8)
getsockopt$inet_sctp6_SCTP_GET_PEER_ADDRS(r0, 0x84, 0x6c, &(0x7f0000475000-0x1008)={<r2=>0x0, 0x1000, "ca1df5cad2c6402d6705376738b44c245d9ad602cb2ecb44450e1ebd0d1fd2566fbba4478ce8a0dc9637f39e45b0b37e489dad6dc65b705549fc36fcee53e296b9b2f5e5ee73bdfbd0ec6361ca531a4289d843b26f8e642652b6ad4665f143b3707688c8888fbe0f713aef42c59bdb64c0c93f1f83cd1cc19529798332e962be4ce5f02d083e20a7f6b601076c6da2f09456d188427c3f070da22bfb7ebad1211c07fa7a238c2ed87d65c6ca5309dc6ea9adaa22a6d09428bd92a0cd2581c33102ecd4037a9e6b7728d6e3e63a31eebf2345a7c6d983de95058bbb5b259ea54ec9ba31df9c51c58372eaa6694d81ae79b7e3f3a0702c5bb3a8073aa66a076c16beff58d4ce12dac4990ee3d8b26f95096de3596bd9af842cdb65046e548d0eaebc346e567fef4e234165446189343da5ddc047bc75c54ba2dedabf9282fe9e94565fc5a6e24e6a5b4b968deda48e659e8dc1263faad7d637458b99892129793cfd0eeda4720a82ff88a05f7053101f75967786d6c61b340fcdbe4728a7b02e06c357e2979f484029f2b4d851fb6d1bb77b7b4601cd3c58af25c965eadaa69f701fdf558889e5d365e32c2ab886c66ff53d774bccd0ace75feb6715b0d342f228d83d96208d9325df5cf0d73a13d280a9ee5e609c47f02543501830bfb203ab74eaffefb97ea1f556c7d7e568fdaaea83ee50148e36ad780ff3022ac1cd8be589b384ab140d92faff7596fb3403cdc37e490fdd046ebf0c1fdc8012d9106e8a401ca5112d5640db460c26c1aa86b3327f60b581390b267660a4c09c044251d2d437c4dcc4ba28bb7b0eeecd056e1d3395cc860cd5819edaa6f8bca6d8e34be82fbb828bf905ea053e3c7cf2d13d6e4dd6d7d411b9d33d4ec70da65d6d8f25678f303bbf12bf66f8cb46c15d8dd95b2e76a370c5a8f30f9d892628b1c7a5dd03d569716135758b37289c882b303ef5e828496291c417ee0b261c907290aac979e06bc540d45c8ebc5999daa9db4cafa7b3f1185c19eda954bb09d57309237591cd8fdf8c69db67981cf952209d2c54f440cabc883136bda803f8f2d36422cecc068be9ca381b6585f674b9cc7dcbaaf98e375ea652e5a2bab892156421b5c7ffc66a1d1357a3d93635f5c0674d0bff2eae85c36ceab035d6e0d1c782e7492c01fb3a92941e8ad1a9e84b4b2aea85f0cb8ab82a644cf116db63824995380cda33f194255bdbe75c6273b5db9459477855551315ee65a88916e0a440ea475f4c1c0a0b452a91a922618f2d5108e7a1cdca444f77f735d70a09d6a50554df8b78ef84d66917a7f75d6ae91fb31656550b7b919690b00b0c4bc27cb335124d59b732e637360704ce99ed94c67c00c5a0ca3f0f58f19c06ef909e8918e103518b7ab56a0bd4affb612ed34770e2276e773f2d0c49d6e059a53317bde65f3dfb43cbc51320204512160a238b2f22aa5a2a92c4097ed6b59be502c5705d896aa0c0bdd2d2cccd7e34e50a8116a9695077f43670ed25cbb95b48c91c874d267f1950b67319ad747dea8ba68b9db8b7307f9134afef4c4e20cbcb03e09deb750df8766b7a7f0e633f71dfec1651fa7e7e9806d0587c017229c99af47b3ff4c7b5a4c8d2b872fa244245a683d0230766eb71fa91cb7dbf8c7e36b71f820550ca564a3974a202082b3cb15d938518c4730ac2fcbe0dbc0be23e9946d10363a5c68cf9a23d3b37132289b6f6118afff9a6074fbba78e09ba49efda411c61fb3a24e990eb08596f4a17045b6ce75be54a756eddacb9f158dad07da20affb7f97021a9cd4c7a15967eaa0b56e5dd5cb345128f7bf02bf40e76b1e55d002230401ca2b25523a47230cfbeab122aa15b5e4b0765b64f6770c4eb28e66cdd3ac68bec1d7274ed8504ffccb13494c2e0e516da6dc3ac6e45f73ed536a6b4a834a983908c1c534d5e3a3ad917873b3051f95556b8f3d8a26ffab1ddb5b524149aa4a8675e9f33600597c39a15cacda3d02971005b15c0a4f6803d36660ef37a7d64a1eb894d349dfc8d050f54ab09076108cd517ab5db3b04ff5a2d6c782ec739f6086159ac179d2fafa2e166bd26f5a945b93f3920d371f8924e4c028731400cf22e40e3ed669bd8b1994fe5da98fca3ac8f4d420b8a5eb54ca9e7424ddc6575bd01ea9e54fa569c3ec7c2f178740075e8d7ad8678fed8c80bac272eb617a2a85a10e8575fe93322112c447db6b3f7eeb6f7bc1d68531f62b3ca216bc49aa2c82a73404f59f03104d17b989a24489ab081376d148beab41a924dd6ac0bdac8da9dcb75176806773358175f1b48bdbecbc0d9a63ae647e61267b9118eb26c3ef6c256dec058b3967442c67e5be99b2f96b04e11b7d6936ad0f2bc8e54701296bf5777978075667718102eb1b4519a99051a1c591b08df684cecd9542f1f770ce8fef3435e722b47b5830dbe6cde571ade8af086dff2b2e8f6acb1140b30581a71e93980f5dee8a6296a8d728f472eb5102ff9942b55e7f867557126ce1b92b87fa8fd59a38d44ff01b755d424f3aa6feb8e8275f56151b8635849aa008abe4504d98e9e397f1a3b13ff1fceb1e5ac292ca753b6f0a71a90c22ccb753458f8d058eaf11ba5ae535c78d2fee226c63182fead75e9ae2d06a9225dac4c153d2f4852aaf15916e1d865c9b110f7e102f0b8258de3de059359316c41cec9447849dfee0cdc7b59900aeb59423777bca1dc0d99540d5e4377a81b07392eef65c7c6d5f6219d6b842bc4186ed0be6ec3e933f37bd631e55b2ce4ab6f56e5645768f9cf4388aba8756f563da387c5f0db6b50c8063d55ac3637159b426760c37491f2f1bf86f14f261352b87fb946c6dfd8d32844e2e99595b583df2666a1f48182c1ab19b21b83e160f2e4866d64c5d2d823f3c04dfa780e7fc848fe5be4c24d52bbe466f3efdb220dfe80680639b0682680678abd18c7be0df012cd614c2256e325b91b68e837a35743f3425b7cb050cd559b7de7373426300c09a821ba4130032ca73f0098143da883a2e8ea1f9dc4893ea531295777d114b9a07075d93fadf8a4981235763b3defc77c4398864c7ff86f3796e5c8fae4acaf6c9f2364a23c5744a5380d955db734a8acec83d2c814ae6177572d8eb2f76edfdfabbba66b799db10d90474b494d61a3170386b601ac1426c58f1c2ee58fbc5568a45c9854a347a9468a5d1c1604eacd8add08e6bcac0fc188a20d97a925ba7e23aa3c489a36f16e9380bc7a690bfb2d9bef541855451b1cc6c6360b368bc0c83fd05fc194e549e50cf2b49059eb39c77ecc0c1a51a0a56c996f567acfced4f5f42d191b44e0c041f150c43e0da6a6b31a7d5ad3db69849836e915ee138c8b4faa48b3824bcce285d4447b41dbc26a2f0dc058f6df35da721735c1768d768f61e6fa3195202883cf427ebfc791f7eb4fcc9f90438a245922d14066eb66e3587f89a90f0dbba477c8c82188016da83709273f9e068a696dd94252aef7438abddeca0a98cfe80644f6b4214986a593cfd3a890bbb3886e6a55d69a742651dda7931059d250fa7af5f415d16c98877599a7aeabdbd455f57f55439b98bb608dac05d4c30bf84c8373e5b7aa40781cd4e9d3ecf469ab0b8369e4e969b2a1d595efa79cf2d5b870bd3eea5f4f71de80a5e2fd6cc795509dff3612eb494760c79000d409e62cd08ee393972b2060a5a1e2208d75ae73dffa1cb4e986d43a59d3c32986da811e4e545e2a30b2e80498d0747f6fd518ac795423efd645223ef34f5b8ab32e69a5c04431f0bfd90b249d989b740fcaed34e2fd46a8ea5aff9687869ee8fe1d2eebb29a6d4a123d2b289e8fbe264bc2e525bf5d88f91346b059bd279db540b149fadf368d95151843ebc334ec0d60c6b52a36947244e927dd79c157b94d6f441e6afa61811302680b11b06440a423d7a8df1ecff2e92d8bfb99667c34250647d20f7e11ac39248e5130f673943559f15796d40dfae5eb3de438f2708bb4c87ea89bd525a835777531b5fbef373906ab23a8d66585e4037a7b7e576e3dfa4aa2c95fe9f3e4a97d9c48665d64b15e8ab212cce97c9ea41c3939b809cb5b604437b2f60e16eb8b4769424ea365cff1c4752e997393707af1f6e8f33a24913cbe3f35d9415f9d09fcc8fab397de8822097f3b84f761e99e8a2e2f86f46b6d91693ce40879c2be889a3b1e3da42d2d52027b7802c71c1f0680fc521a3c2b1b0ed1947667718c3f0ecd57c1f1347f92cdc301b040d9141100ad4adaba7939c44ef45af84a4b5f18418668e7a50bb843091a0fd562f41ebba3e443cff77893bcc02ecce6b59bc347bbb24f14fc060fb33d4c45e5d999e87f857c773c487481317200648a277edb51f1990d866add863f5e5d59395c23438ffe0c11ea5706d896ca495f7d73a2505b7af9d4e61405cd07e5a9f67e9db5df733aed193504c6eb11b6334ebe0b186cf0845be77ab2d4deb42e4d38a15e019280d074b01be3243954768db64ae70a31d25bd94167c774e0068fa985d586764195aff445105a7a28df5d2befac0b13daf480caaa8fd527d68cfa0618b0c4029577a70e6e7578116757b32c839ac75625474fb86800ebebb0aa8ae4e941efbc947c1554f095b4408f0a45fc2da770840b05d1d9b96f785214aed319e28fda489208039b86fe6e2ca9a0412748fb88fc6268cee1106b6e8736ba088213f2a61323bc5a0162a8d123a4c4f4ef9640c40f277e949ec062ff7d618f9138b58fc1bcf01f3b19778647c297d4afa37bc333bda457926718239abb467dbaa1f23f9c43943a8805f56d4d903af20d2c7b05fdae611898c83e4a2c775b206ba88ae493181352dbc13fff6d225f937dacf6d37683aac7f746a66617d25c735b21b05f214d8f16d5d554bfbf35b1db513172e5bf7a5bea134c3dab6ebf2b86690f3ebc9588b17e10ba036299a08337d132b90ebfdaee21be1150bd19dde1581c285b1d0e5bc79f3846a05b3a0f7ced69ca19c3824e5a9d78de4ea32d93c9b213c438b19ed16da98fff094063e4bfa51810fdea089d061aa23ebac4a39c59fca3bd9f4ac2a41b68e8ca332aa899a2448c9df87b633253318ab1c253dd50b67288f59fd619d921282bde787adb3941b083ec3100da21d431a6a3001d910005a1eebe79ddb85278483bd5370f9b2e7807ab8788a8da5f8a50ecd819f1745c44783f5312549fe52de795100586bfada8cd21cf33b2626e6a04ece847aaddf362bef0d7e652f7ba12a9d40930fd6cf06926bdbb9f240172a80910a9bb69c48c3c978447b00f9a9eed95d72c82417259d0e2b9b8ce49d5027836d9d734b6377755b2850ad31710515abf966f2d34e25331fee6d3734328402d227879ae68d01b150c96efa0a03ac3e40a92bdeea81d557226de037044c478c5ee743a8ede683a70baac30c1c2ed9e14ae2811b432d60bf30c29275867a1e7eb6b2051ca1e1659432d2876dee837f8ae69857a4777946d5bfb6fb59c0f5b24def202e54ef0ccf0e715c9657b0b486c2ad7cd2da26f493ba047c937b901da1abb46294c41a597d1e88189bf792ebbfe1ce5514e80eb1519213867d593d764c663c28555720504203c3a06d75ff56e528ea51e646f8f6c74c811626c9b19109c12a510ec2ccbb9b36d23c8affa3c6796ac310f051608f9ff7e4ac3004cadbefcb7865e16762eb9cd7a3c8a449c6162e85454f719d6a1d8960bd35f7bde4a9bba1952053cd544073ec68c7a97329490b85602f7cd386d9d82f6673e09d45f1a95adf757cf695d6749dcdc361cbf06cc76"}, &(0x7f00006be000)=0x1008)
setsockopt$inet_sctp_SCTP_ADD_STREAMS(r0, 0x84, 0x79, &(0x7f00002a5000-0x4)=0x800, 0x4)
getsockopt$inet_sctp_SCTP_PR_SUPPORTED(r0, 0x84, 0x71, &(0x7f0000ddb000-0x8)={<r3=>0x0, 0x7}, &(0x7f00003ca000)=0x8)
sendmmsg$inet_sctp(r0, &(0x7f0000397000-0xa8)=[{&(0x7f0000a5f000-0x1c)=@in6={0xa, 0x3, 0xf3, @loopback={0x0, 0x1}, 0x8}, 0x1c, &(0x7f00006e2000-0x40)=[{&(0x7f0000718000-0x44)="058bedac8b8e8dc636781a7db6cd0ba95274bc70645dc5aa4188c1407c9ba24af1e6355138774d94b5724ed6ae04f08fd6ee05dd3f7b695a865e38b68c631dc7b65de58e", 0x44}, {&(0x7f00007c1000)="146870d76484fb90d128", 0xa}, {&(0x7f0000084000-0xbb)="526c6c44bd68851609dd5715b1d276d77dd58b9957b1d440de4650ed4f1c114dff33d19476dc316fde28171291d6281ad1a6ad9869883f9b2af929240d2f9dcf2a5bf2c92fd7c8561c563a14ee773045d17055deaf2705efeededf318766ce47daa0b29cf1d1862d90cbff373ab6030899948eabaff42ed9c8db0fc9f88def244a80e74f8610dcecd825e916c1cdb1194c61b954ae5d01b2d7ce9678c1907a89091fa52103ff080dd34567a1249f6213193b760fdcbdebadfefe37", 0xbb}, {&(0x7f00005f3000)="d3807c242058fd1f3543cc271ed286508b172d3862020144879fe3b8ede0d81728f974870eebf64c91b6a89f12bcf708744ac4e9627949baad25bf5e2622bb851461bf9bf39a614da8c20cab2e32e3070f4dfd92a550be4c0d3965ea922a5e9718577fc5720d301fafd7783b3254bd2e6110a033198f7dd3afe9d33931cd2e4affb700a25725db1e888d8a47b5231b5b43d156895a3012eaafea09eee94b6a93e9756aed554a3332449a45acffe6bc5b74c7437687d8d9ef5adbcbc87a852bdbaa12b7c8727731d25aaca1844cdd9f87595c571027496f", 0xd7}], 0x4, &(0x7f0000768000)=[@sndrcv={0x30, 0x84, 0x1, {0x5, 0x1, 0x8000, 0x5, 0x9, 0xff, 0x40, 0x20, r1}}, @sndinfo={0x20, 0x84, 0x2, {0x8, 0x200, 0x401, 0xa15, r2}}], 0x60, 0x8000}, {&(0x7f0000983000-0x10)=@in={0x2, 0x3, @rand_addr=0xffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f0000126000-0x90)=[{&(0x7f0000f55000-0x1000)="c2698723b1c1ad052e9346acf74239603692962747d41d740b5d206ec0a7663be1c8ce6ef20b25b1d48c95ff26c75083a94f86cc1687f2450ba338430568827ca5f582a3105d77e93e3916751e813add600e30a69714a25e3ccb8ba92e07acadb085ef8fa1fecf4e3e45d0c02637d73916438435481e81008f7216b6cfdb49536c89e44e7b48fcc7f931ba19aa5057d59bf2e6990929f68b643e77be9dd654eb93ece34c96639d355c619b9b0bbef7fecfcced413c3fc3b3953a55fbaa45ced505ad63ed5b353a42347064834719bb330639c266abb336fdf9da197baeee186ffe072b8523d910dcb6382b96940566950845acd1aedc2ed49fd59ef74cbf7d4ed2f79a5542edadb02142104ae3a7c76da6ef8b009d5f297d20439fdd9b97e273231b9c28e5367c3bca7d84fe7231eb2bb4a7b643a980ea8deb45464130e7893d22bdfeafddcabac850ffaf616b5dd024649061a3f5da7c8d4281663eebfc6972d60f78b621de8b36cc97c7fb5ecb1707d28f78f174efef9b3e265a9a26a14320a5401a5162eb8dcb3c30b9dfee89dc236e27d00d9abced9399e1b344d8247f13d4b7d737e78a140ca48676de9431adb9b2f6ae68a10969a156989ca2726ab366515e710ba5acce30285e4cb767465fdf71175374da8700f3f5a2932d33425523cab36ad16bc2bb30fc7824dd7bfb9cd76cb58e899b9a88c9a93074b6da3066c87d5d99a4eb847e076baaa8fd732a0a1809eb49a0911831b4eee7ce8ae1153c5825fcf183cdd6cdc7ff16aadde670f7fc09d112f3f84e93e485a759bb1a3237b8a2ab7e5fbb46a86a795d8832a76e682519e191be28ac98ca81b40ee4e5b0c3928debb41365a2e0aa20892e5e81245da0046c36c08a3f539694ec0687a3c506f8d0a1fd6afc99a1c328d42681617625ec6f2c0d30d95530996e7474bf4870058219f1cbe06a11a62bccb057d1c61301e022045e6e4c8ae950d8302fa5e640df5d3fa18550677058a7e72758c2d94aa4c9a9d593ba2a27ac5ea23e141b92b199cb685565cebcd64ffa25b0bb3d7e8a18f115b04c74fb624d206e7337c2b3d0e62fc44f0225ed39cfe42b45cc8074d12f36946b9fd6e3ae371442c0a6534242ff0fc66dd9a4d5cc5a6624536b16a49d494291e7629d3604d3c7a1189259ccffe0f504345636cd092b4a1cb03deec080c740fd4e7d2c3bea1b483f1754d4f225bd3a1db436d4acd55cb90c91fff18cad1d6a8118eb52728f1f00eec066c9f5639880bba1951bf6077a1e1418ea78b88ff1ba9f87e4a6ebe7278c096e155669eab447aa6edbebfb931e81981ed5df1c189469137b94c0bbe79ee8ad33ee42ce3085d8ef9aba7f4dd8c1b5e79f2b8e70fd48b1ecb792fa3f560c97ce41c17e641d6a4a0ac427f6a5b8f3e98f5b1e03a56fd508f33963ff8aaa69e9dbd9f49462fd9deca9ece834fe0f6ff2a7e552cbf46089992673b8a32f56da257dc7e73feb2838819405774582b2de60728e770e99a221712619e1b32cd6c05008b8819e59fac013f6fcb9ce60f234d040c5f60d5469d74cab92bef2d056d3d57b9167171e2749449d97f268b0baf187f3e714c7fefc3dc7266654c8ecde894ba1db1ce107c8064366739cb92940561f17989d4d3aed5fa151ce948e6a8aebffc56ed405aaef4793651de6a0ed9451a0ea91a0bdc5d110cd293b2d0397935d9f36a702bb8fe0aa2155c88efa629b91bf72db9170672bd08a45265a45bea16f55a2ee26ce5376f51852ea228f94e01a346bf4c323f58a09da7617f4004bd551625d031b6673abf1eff9be19ce1130d6369933aabba763ddc0f1075b35bee8604722d68a380bd3bec83aacc31f1487fec14dd58ac1898ff1e15628bfa16c2f11809e87aa0ac0336e8ac78ce89e8a7bd0e601c4f6ff2872ecd5c44270b431ae13a2447787aadd3a989b9cadb8ac2ca03aff1a4711dce94e5eddb03d6dd617e8cf3347993b5709fe0b0434000b2a954744ae9f0cf2c17e500b982ac911d2bdfd07f738a9f16a4c1ae264d6a804629795d508b0025c9586713045e2e349228a09dd91b73f6692e2830c2e815f10d9d9f44d6a3035998e69ad4a2c3a401a0189829c7f7fd9a587d3ffab8c2bdb42514c39bf836e8d66df5d4430959f37910e77bb6d23a2814a2c0ea9d1b4495203ef936957ea8033e2377e0814046a8e7ed5b5b019836a887579eb2d3ccd5aab87a80d7f9e48e64e64fa355484ab80cda60275201ecc030e54efdef4d9fca57e1e645a6018a0dcbc8a4f79953b61c32b8b7249f465acbff65858fdc65f95c2ad766fc4a0a0ba8797427b0a67d4bf0e5451e70306c6b8c60187fc0422cff2e22782f089f54841c2bfa8d4f92b70321e16b4380055984c6620aa4cbb3f640194e49871c5f1cd47bd2eb746d323678ef6959bd5b86b6a509a171a7bbccfb6cddcd54bfadc7c90d079cb06658f204a3395d628fcb7633fee454d16a05670f0b19fd6f94441e0a1b3181d26e07433a1fd5bc069addc373885f2429311cea5d896b386d77ea3c95b57b5433e10fe1f77faf076569a83f1088d9182ef721829296accf888e171476f8c5ffbf8dca4bcb881f3b5f045497cd540360d1cb8712b6cd795a35d3ae38f5489c0c6324979e7cf50149a7e693aacc276a3f823fefa6a85341fddf99ca31f2afedf6ab100bcda87509d1de2355725e7c29112cf4e4fc9300f6bd174656e01c8138d51c2118cf603261ba2c9ef1f9a76e7c96cca680767b637be06b43eb3d13b99115c1fd3bea81528440599c91fd89412be45d895816cbf033caf41c775f36a8598abf404ca1bad660b4aab62e3acb0d86ab42310639a247e34a000bd44fb11defb370e95f162081b7bb0a9b74148d8d95d0a8873fa579778a660220143b140e9874fd81a82ffeaba79fca86188805a13961cd621930b4df95a0050308ed15b39c22b11591f635564aae7fa12630ec6ef650583cbdc5048e45c36073d7e09ff43ce9dec7afda2c00c0e26b1d5f650b3f70b0bf340f34b9c18a3178a12d2929643aa862fa1060f6fefc29eb3af4cbda2958654e39c2ef8a7e1fb24c5efb5f66dce11f50c05a2d474b1dc11d4ea868dcecc21e140a00565f2a9a43907234f383a53a454bb43fd43c879624979fd32197efb8f69b41c9a1d3ed7d6ba745d69c0931ca901c1e3fc552ccd588d9644ce3bab31861fa8f8269a0d908e8d3a34582cee729812881c3cd3cc4294e8d80112dc4878ffa584cad455639cff14226ea80e8f950814505c9761e58e0d4235db6cae02da01a2cb95ea39cdc68fc5f785dd1850d4df9d816541dd3ee2cf83fd0793cec0a186d8cc68c90f14f53aa42b3bf305c2de0c8ce5f7ff7e4ea4a4c5e3e375b78ef28661aebb1fd5387393e5a5549e52a8693a491bf15f6a468c8ff9b20e04da1f28c69af948ca30793ce84b7f25f6bc4a02917f318758e6799b97ec6a0f6b8a36a4db2dad7e300fab09543a4cb77ada178f92542bb988d5b6074423a242d012afdd4bc752b6ae8377e8575ce61d1d5d175d65406a70f7216ddbf4b8f0cc825182242e784f10ac2d64979fccf30546974e3882493034ee2ac02932577c5acecf13b7de627a9084f20b8a4849278cd24e755ad41f794272ea7ea7a199de41473d204edae0a9d1c85665223d4e0aaaced6339b86f5a795b097a0d8113b27db318df1bb8802aee500665b7383d0404103a5adbbd9956ebdcad12b90a6e45b6d83cbde1fe894ffe04f96f6f404c7c72695b5a016415e7b31ba0a8fb2703b472dd5f9653f85116baefcac63a08ddf2a40df6014e253d7f318ab20942424e25ee333bdabaf07144b0dd8a1cbd5d19e2ae8186bcd0541c8a8ab20f11cba30060f42082dd2229a86941e0424ee591ece3675d4675559647b6959c51d723a860b0b33dbbff29eb248dc98689f036900baa8a6c2f020931a3b7ef2e421de41a974b779921463701ac3ea369ae1d465623a7bcb930922b80b9aa578d34c6c6dd4c24759a5504905c4893c1360b1c1556216f74801da59c94f9bc4a626f424bdafd393d8e67907babb2fedce2fbe272e654c707f071fff89ce111eebb9cca9f05b5cd1531e4c1dac615d5f42132e6d2aa5c852047b1360e73439f197413525033639a333d49890a1b80cf3666a87d11f7768c1254626cd44dd0776ad8c3b8f33238ae7bd0f9f029aba2040bc28c016cfc9501e51e9f69cb83cec0c4a8c26456f9bb5819f9fa75d5466ef84c7805864afa0d55bae95b1970d6cb677f4884bb17d53d0dc3a50f48f1cf35dc334893f5a5b85063002f025c2841de4d0357fe23a9a566aca1330f994fcc1c8b9af02902a337bf62c3153a9a4f6c4467c720c50e81889047c4bde42e76e7f5e5054fb4b35c4cabbdf64b7bdaeaf452efa3335cd8cb60d53e37a9984ff87429eab71d38b8cc48aa2d9d96f34b28a03ec64dbf8f0e75a86e1a63f4e1bd7deeb49a2a2ddc457f23983e8a4a293a6f2cbdaa0d22c91d60fc4830a9a429c613bc8de0ab9eda757635240e471090833169660a2a3fd0a5fe25b9f43f3b237e156468bed7613e8ae120364ccea62bc5adb2f29dd0a8e5351bcb425bda11cc715854d3ccc5ce1821b4a3763db175440bd9fb2e2203ed1100bd5ebe70330a8faf01d1ed76474a0eceb3e5d7d11bc9b64d6e3f3e7766f541e637e3ee4ea64c09bd5c99868f2a9d64ab80c388052e27ffefed5c46973d9a01e4a5b398b39355f26cc3e7c59648197faaa07e7bf7a51b2339c4beae9b716726e85bbcfd6eeba24aa5b61f822c763d238378d70b6f9a56ab91819c2c1919092b1cc3638421b6beed2a5cd4dee23febdcd55499401ad3a4871d3e37891c175ef4a322bb480dc8ef5ec996b7c07ee0083eee73826bbcb0c759b66b1d78c8431ae12640637e619cbeb11c2ef45842ed2612539c52ecb1f4a13b2c1af676576a643bdd80a6ed4b8ea378069bc398f6bf038fc7ef685062a39b57daf4abe3ed30e9106865284da96b0afe4e276aca6488bc6a22f823dad0c4a57763fcd259584f0b0301f0fc9443b215c9dff910333a39f2f6bee2ccf5d35d35a5c5411b6a5b37ecf1cba54c1ba1ff289dd5265c54831f33205ceea31953acee6f73338f5f44deccc4978fdd8c4faca45424f90a9ae1d4055ccca0bc200d8dfdfe62e7945c85746450dd28df73aca299fffb5dae27b709320bde5472c65736f1592c86a13ca602f4fa5e5df4e104d8b7c2fe05342c9e5bdc1250ffde693e5944ca39bde99763b23cd10a4f58c093564917423a95082fd58bc3bd6efa910bf89009e9bc6dba96027c2487fbfa6d50a6d65ea91adf80908546b9aaf128d57785a7ede723496d96298820e0b42798fa16cd517b97728c9f8c1b5e869d993684ca0b8e3fb78d64e49469525858b2180a0bf8238cc8659120c98d95f422274952e9dddb7782fbae13e31f28027a2528cff529b70e1a14d82019400eb66f2b79dd17433477c0548e68703033ddabad234c6e2c8d614510f5969eed9b888d57bea80952e1b264377201d725fb94b09efac65997bb4afc7e237722e91fe190a0e4a1d49289dd57a44555510b16a181fd3659ad395e1d145c3774bf82afaaccc9ec86100bf187bca3cf9df572c47e0ded3d54d093fa805930161da0d5b059d15ab85af9f1eaa8ee66ae113900a88710f31c57bae5ca56be8b4fea81df4189213c1540f53df38ce093fba7ff89f9ec663926ae66d461749ef3c85d9e587694731fd449c16083cc89003adfaa7d31aefa1bfac3338b17bd241fd0421ab6bcfeab4", 0x1000}, {&(0x7f0000ce1000-0x43)="e834ebd0b84f55b16ab1f72c7f661e4673b2be26d2772d7177aca97cc5b4d04abba0e02091939b873deacd4d4e805915bd28ab91714da633c01867de7e1d5807a339e7", 0x43}, {&(0x7f0000d9b000)="5119b60bdc332eac2a771bbf4ddd4de61a66257fc0f5cfc5656d95b5414b4b52dbc42e3da7267b039ac276488716805549b40d3380cac919c63911641842a2f785919893a6430fa825785a3a3524f652a3dfacb52def6d214a5c59a8201a2d93955075af4e9ed4847062db74334eefd09e74a5349041250f7fb3152ef8c2d9f7e1240ee08c83bf8c10d32478411dae9badf778ff3211e2f6e36577a8a7f62c5ed43b3300008b2be518130106b6e2a90a99b17f3634d64d41adeb5d2be3f4ea8e918a61ae309e03f0", 0xc8}, {&(0x7f00000e7000-0x24)="ea04c3f7087087fd44917b0a8b20bf548639b4f03c4ae89bcb89c1e469d8e1477b0560d1", 0x24}, {&(0x7f0000daf000)="8e9377f4d707732cbfe299089d0056258efd4bf32c2378611b3ce64854e893ac5d660bb64db2ce05ef38a765771b31d77113e86e2ab62db23e097996a370eea3804b80497a4cc5f13a277e7bf0fc56df1b2820a2ff", 0x55}, {&(0x7f00009ca000)="6f112ec2c26952204595cc99ef6f00424f454530e19f350482ce87391e3438a1e06dbfd8ec734ec9c5b7eb269e660ea3030e78ca72126ad3f7fe0e58f26fa696a9860f9fa5ff89c809b27ca488fe8d6e8345813eda1676f7443f8503ac94410a5aead2c7d819114ff92692103f54b93c5e2c", 0x72}, {&(0x7f0000fb5000)="f5ab937a20fc87fe4fe699b48e696c0c2f9cbeedc4c3b1685662eedece148d80b78f640646bece6bb234d960f1d79319c5916380b562", 0x36}, {&(0x7f0000f47000)="51a08135968b9898a043d65ee0152364bb10443f5979cd044381d5e312136965ae722f075e1b8ddd2d7b2345b199b46c194865ec7751347901c63d6a9d0b57c717fd86accb2bdcf29721808609a206fd994904fa1802bc6bbc1d37991b91297aee61f06e94ca3b04e2aae7d58a6667cf053affa704a2993710d2857110fdd01d15e653ef0e1140", 0x87}, {&(0x7f0000e19000)="b0c3b1378e42938bd9a4e45b1750faeaf4372f3d2d52af4e24022344e8a19bdaa16c1a387270acfc61d350ed609f31402a917f0939719b5d8a732a6e59e0ff0ff22de193bd6eb7e9c0e90ad98b3cf9f468225ec626384ef57de05414ff0a725e5e60ce6120f0b00a71e62f370cfc721da2a6e5dd07eb1cbcab2cc6971a625f6c05579fb4bb28edc2e381e8c47c942d64ef6a77d2955a133520976ef1292e8699da1a84f063f303ab11e93c4c32b3b4d835eee39d07e5d127d0e12a15c07dcb9d3bf02546cd7a5214404320b4f90a4d3f68a2aaa4feef6e92f764f5e98f357f52d602da7d63820d4dd59f8088b6b1afd70e31ccdf", 0xf4}], 0x9, &(0x7f0000a30000)=[@sndinfo={0x20, 0x84, 0x2, {0x6, 0x8202, 0x6, 0x2, r3}}, @init={0x18, 0x84, 0x0, {0x4447fc66, 0x3ff, 0x6, 0x1}}, @init={0x18, 0x84, 0x0, {0x3, 0xc83, 0x9, 0x2}}], 0x90, 0x14}, {&(0x7f0000a26000)=@in6={0xa, 0x2, 0x3, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x8}, 0x1c, &(0x7f000097c000-0x10)=[{&(0x7f0000c88000)="37d7be8692d1b98708ffcde2a550a0fb072702b526b43bb991b327fc91b8a4df052e0ca45358a85ab718a86384cc46956924b88f1562e4781b2cb4d6042b61fec62065bd555bb5ecdfefef3d0962be78818462a04e4292f081208a69c8448edf78ebec6244aacb23e972bdb97877e64fb0e89fd8dbc1f7cf682e558c0766b4422ec70cc469396a64189166406888ef92896c69637dad03daf66170c29de62750238ac3ef67128a2ba822cfd250aa7114b055ff1881f2dbdc8bfc84212cd8eb38df3ab071650201d182360486de37c0ef5e50cca96e7a9ac5ad9b0384c1b79b69fc15849a1bb2abacefe467b22814253515f4fb675f6a193becf7d1652eca9df1bb5bc5a01300692c68a1d8ba4ed6c015195bd9e1cb7b735562aa6ce81a17c04cf768fa52a286546df9bb45a606ca29403d8fa23713ad39a86aa9458af7423bfe7e2a0dc369a19fde6d834f129c2a63aff44300bad15466284b3d4fbe9f2a536f82f26a92d85b3f050d24c76f47cf2fab9b2417b3fa5f0d2a8feeca5c6e349fd312946a889d575625335898cc5f9cc0c7784f5e7bb69267f1fdf2abea31cb7cf33e9a55a5afaf61b8b22b505360a5cbf877f36bee05279056c9e413f4181e25c329f09820cc7afc291cf39f2fc52ac759cbd79fa65af53880245939de0341bacd3d34f04c32252b4a9cbbcccf64acedaddab702955e09ef30706a6dfa26b618ae0951835621ba6f0c1d0827100762b0bfa070550c84ade8849fc50421184ec57c1787c571d1a95384f2809c1d48846cd12df84c9b2ac90428d6dbc545e5e8f00f2b64e0cd4ea7a580b61da081e45572bd203be2f6db9b1f4c7ef895f88003f59a87b2ca938c8bdc6f271820f40e3f255a9685a790461314d0b935205827ecaf35d9a8c96b0ca2b9c44238524f29b4ca09f8cb237feb81d07251e82e9df8c09b87e7dd0cb4d66c7f46e0ed30b44def43fd77a03ba4e842a0e3d83d951897ef8544e46456b098d04a7ac8879d8b6bff6dd6acc8c974e1c44965577280a696796df620d79b09e0c55a50118a99a167f3d4433aa6976dfa360022ac0d7e6ab58bfc10379da769a7e93598523f3dbda597cbc80309690549fd97fa09a22953e8f29b8ff950e1bb0f867f6bbba44be259d83d24cce33134ec6b6f001ff5045dd4e3ed68e6b192684ed576f40d3e8eed590a1e050326cb3f3867e392778882ce4c81462e19e6dcf6f645c887ed57b2e4cf40180ff66193960effe13f1993003b0ccf8b1dc390d74a169a800d8bfedc2723512cecc57cdfdc18454a236e88c34a9165b34833068e8d208b603ef5a1facbc75c6f8fcbe797de093c94ca842faccfdea05fc6efe13313ff2747ae079faddce7c79a2068fc17500fa6fada6893e30bc00bd3806a165166cb37e97dbdef3fdf435741e5467f52529c47b65743bd75ca6ce4e612de904c461d5ceeb34dfc61df1081847404a28cac913840fe7c653356dccb5bf4b99c2a367f4626b4eea8d2ef7eb04b666699f73cb04707a3c5f4834e2414a67b58bd30645a18b60cbbecc46909c290c720e846f1723e05e65e7b39b5a472b92756877decfaa773019a9f988a30fc41e69f6ef360a4dfc9684cf279cb3394bd3096bcd2653f6283d3bfb6b149bf78a0b8150f2c02141ac357e95043c20f13605750a5492d84bdc500410e09a79f0422d38316fc6a283fd7df368b997bcebdf7f641967b246ae5acbce3a424ba0e04fbf54b9772792613f700e328f8d5c897fd74c9326723f2c96a3d13bbe20dc08a14cb4b8e963de89ca93b65ec8d379fdedf28c2523329be1b8e97457372c2baafe15eb319343488bd3fc7f0e315f8ce95c568d85a53247cdcb208861af09f5549a107bd82100bfac9ab7d266e4f6869eba66c3e02a2d8010a97192d5e95eb42f857e021ef2a2b9a5b3a62193a567af406d3c865c752eedaa7d658259b39de4d703bbd31c08cc6e991a17da4c4f2807ccc8c3b37812a02e7234b840c97d5d3a471b98a14c8f1bfd1af62a3c8c413862cace1866aa7787ad88a0ed095783e9dcc2e19647e1ce48195674f3d88c4dc5529e6333bba600df3aff0c7c536e97068bce7cced57d52c89234b25c550e4df308a9921be8622e28813a72183ffbf4f1b26f583c2f0a80e7f683dedd8c5d606747274d348d1d91bb7c848da9fdc60b754930f6daa105a313c6653e613c7f14250631976d040e62c335bd06c46679dbffcc068b62e64efab63cb77b71b9c6a26b1aa28ca0c1e0fe9dc43e347686d654e92bfaad0eceb91543e20b862dad6a22901cf280a36706e364787890e875e7a1967fb797ad86bf174e3271aa652bd59f215a9a865f4595bf60b0c0f45902676b37031c833f2d42fbddb4aeec6107890e6f9e74aec1147452c4bd787bb1e8f8d2d1d48bd73026fb198eab8de716d4bcf2de30f86566febfb08de290869eadc214e0d526accd3aaadc0b2d2785913b7afb5a3fd791863a92a3b6ceba71fe47b012d9fa92a5236ceb225f6a3d7ff0bd443815f2e874dd4673ad6933c2d3e2fe7ce7da5799547575ece4343f7a028112b76db86128a05af418b7e9b22120fc9b7ebac51555f0fc167b25f534753d04f6f5f728894bddd7f61cb129d2c35b4cad77e77e73cbef3169ab44cd278ed1ead54fa9cee719ed2933f1fbb135aae50a84e4965e4b1b087bd4fa5a2bf05c750ff6a7373e7fcc1e15232be16f1c0d9232c6daef9475f4bb022766a67f0d5b88d6cff75de1c5cd73571f57607bfe5e207f46f0e7b28f13f2b0e017170c7a611e9d558e60722231c86d9cac1a073928f36970984ad7b544a43873077c2f270ca860eaecea2cbd9dea50454d4afa7d51efd66ab8c825914b7032c2b9be90c1c4e4ae8a98f875a4b8ab1bdde462dfd81b2a7958412e04e8d47ecccf04cbc6bfb8c6ac7f4c324a78badd102b76cc1f334be655efa9cdf976edf785d856e15a1e747d85fae971c37ea761d95e4493b73fb69d6d00fbf7b997e1780cd286f4b7bdb1a0e79a0ddf3ea5b0f06c5efb66c141a538dfb0d0c4f30fdde49e3ed705b216640c1179a9199c9fe2781c7a37cd9fe8f710eb79c2a703450b3ef4642dd21e16877f5c096935fa46f2958ce316046aad41c20fad14d089ec62cc421034ab5287848bdde9799104b51fc759c7c38b9f850b5994850724d029b9ef4f1ca3ea4c78e39e2f3f1fb9a5723b93f9de32683cf02b65bac84613fd3940dd07a3312aff9969c2e76f6928569a401c94a7158e6c193d76dda75d7acd017bf8d206e7731e5dbf320f364b1f6f0d5e3b7d7c8f92be574647646e843d1761258807baf781e946c8ed21d0eaf40dc1186422287c0db0149062c5461db36c5613dacec470940df4afa75aa13911eaa21cbece808fe0387a8194af6481e826c7fa367659333fa63b44264b871e99361bb038e8a6e6c0b7e33760a790247e2ef280de9e87a03d0205260c17d170fb304f22d325012557b4e171d41cc3e0e7a9c63633ff3837d32bf98f3ca75f56e3b793c99c00340be5d0fd6c8f10b27fc7dc1fbd8b9c5411ff8bec0a1b404bbc3594ac37df126afe12f65a1b2654fa1ea42f9a3d4dbb6074a17598790225a21637e9babc97fc6f13bd295dc9e909d8472bb77a9cf0fcbbce2208dd27cadc5c07cf9cfec9d9857e20eeac375118a2978122d4a3b196be74f8aeb9cb0fa7224158a0eab54b75cd5505e20f3b269f47ea99009549414b36ebd71ccf74f93efd6e3e935825013fa8b337407c292f18ff9bdf4e0acf10d97dc34c46afe1412e03eb96cc50e1950a51ed154272f211aa15e5450810140336114f9840ef3c50bd6b8111f7ecd6546a2cd32b676cb8a2830d13c92a9311c72fb5ac05dd057692696e2a932f8d5ab6a292fa9ef924d1225eed781449f3958867dad749cdfc45098df8b9cc1c67be97ca05d421a1d8730ce59512f2cf8aafdb3c43304d1c298dc9672fce2018fb223fba30d164ef5eb76a88af4a72a0145c86fea8210a6634ade997c273795bd0c731e6c8b0376db70436cc4fd380e7f946ee08f639587d679fc57057c25126a50037bb64e0ed35aee520ba6f786545ea3b8253290e80058b690e0e0eb102ffaad565d5f24c7a43260cfbc6d64ad90ba4d41dd346902645ae2b6b2e5f3abb4e5b590a9e55fd660a9de628b59c8818be2d7669acc5497f0e993bdf337af0e942d92888356e9d4d48557faf260379348e4df0b1232e9d77395c0c5ffd344625b3ccafd095a0359c3e57870b31cdf002c9e787913cfbc63a353479076dd60c114a65b3de711ec1a801a133a5a12e2d27fb0ef88d3651b60123b6fe8f24c7161e231ead72f04d688801fdab51e63b10b5d9df21662ee268a480e8ddf401d8063e3a43edf88732b416eb63a12cfa4a324b457b9e52de4adabfb359b12f77180c1925842125f073e44c5ec782b62a6a667680c0d25df31be99252ce27e7565c85a04f0096d37ec23ccba963454217e655dcba7a47d65281c06e73105dc7c822ee1a660a6ebda341677ed27cff440db5d05d8ff21cffc9134eac2fc59d9d5af6e539036378fc3701db3b7e49bfdb171e14017e9c1a73bf1135aa1ccd5ebe9c84321c9ca35f3059d665ede3627b255f9913843072ed895e68fc7c3c1f98b51f1d64bc63bb8c81e31a1118ad3746131d532b04216e68f9efb0a702873e01f10122301504d16352ba198d1d6dec69819c388030a134e5dd38ac43459d788014c000de30332495c3f9298161d9620b2cd179fc4031dfcc45c36e7c8203206d3f25a4165eb304035868b26c8c88365696b49a0adb93c56f6d6920b0f075ec80e9d5f89a8f61a2f09c8ec470d8e11a28a096a0df25c4ab87958bafcc9300574cdd049b5fa1ad81bc2e9f12b92e1587471a179bb3c603bce877a3dca9d4e662427f9bd00706f29029c854b9f0845b04e6580cc36c3b133ee5cc253581e0c6d747bdd9d82103bc43f1f065fb8b88d019b92584e75d3db170b12276e9fcab9c1ecd99748a4451ef998d8bdf5bcef71a22484e51a73612e9ea2539572c892fa1d906899e1e4c7ded59e6ae587d0dff6806dd37f48a66be63058286814780b6697a4c66c5e26e440d51057b8d6e38819d2483b1d2b003a817bab5c2cfcf63c6a6426978f2ed8b46a5e5ae3d5485067e2346c60e5d52dc016dab9149ba1eb3904386c57b5dcab82dea41385faac1b8c2fe214e6724f6ae645e83191f7ef77901b1bf0e2a889cef1969a2941ec83fb6b806a184472746e6a51d4be48a7979c27c77d6a6ce2223a4d95a34d2d8eb9829089c69187cda024687c7d4ee2cd44e4c534272fc4ca48273bb3bba12648e52012b441c295fa43fa4eb8df41a5472366a0e993de1815872f1c348103e5473de68cf289b62db5f54e7c443fc89469f2df7eebcb7bfa34536d0397652e65c3b3257f76951a42da7a22fbb1a07cd95bf9e271abcb6b579bc3696f351b235dc6ce7357428e49f9bffd9669eb6faea63e479ea64a135d992df477c6753a44ca8dce0d800fdec5586dc2de1bcb51edf9dfe0b879dbc3537d7208d67d0e2c10e4b53372c217cbd0861a3ee0b6962d01e710bfe07463b7e361e67f326e188e4471248f0594263ccebefa484ed10e935e8577d44b1c9d863e0a9eb3da599a920944d4cd5f65ab2ce6d5b683cff489eb9923bf9ac98aee52d52fe656481a83ab8616ce155173d6d7b2382ed83b83856c34f9e045af5018290e93dfb03d1527d3a22b9773b548f85e058091d0c38f5702097d2312db35f317b0afeab666bea547db4edf09fb", 0x1000}], 0x1, 0x0, 0x0, 0x10}], 0x3, 0x810)
mmap(&(0x7f0000000000/0x5b3000)=nil, 0x5b3000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x70000)=nil, 0x70000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f00005b3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = openat$kvm(0xffffffffffffff9c, &(0x7f00005b4000-0x9)="2f6465762f6b766d00", 0x0, 0x0)
r5 = ioctl$KVM_CREATE_VM(r4, 0xae01, 0x0)
r6 = ioctl$KVM_CREATE_VCPU(r5, 0xae41, 0x0)
ioctl$KVM_X86_SETUP_MCE(r6, 0x4008ae9c, &(0x7f0000070000-0x4)={0xa, 0x1, 0x0, 0x0})
ioctl$KVM_IRQ_LINE(r5, 0x4008ae61, &(0x7f0000013000-0x8)={0x8000, 0x4})
ioctl$KVM_SET_MSRS(r6, 0xc008ae88, &(0x7f0000018000)={0x1, 0x0, [{0x17b, 0x0, 0xffff8000}]})
setsockopt$inet6_buf(0xffffffffffffffff, 0x29, 0x0, &(0x7f0000003000-0x1000)="24b38b20d0ef3254115223ef6cf758327575c041e002a8089496079b1b45009349041eca724fdec73fab9b04e4a4a5af1d03000000000000007faa62b9c0d263274f4a010c4f93ef85516b042511f32764171ba9bd278cbe360c22f184073fe215dee02fe37161246323ee9c82c790add905b90a64adab9fef855d72abb637d460fc6fb5a9eec5535b119c9dfbde3f76323a5af634e4235a33d57e226460104ca0dedf1f0e8365cd43d106c41d009976034d6557bf8917cad630598f6e58fd1770012d78aabb64ffffffed0000464caeedf840d001fe92b08c3f7b8e1596417d7dcd645413be450000000000000001c122283846253398a04d99ca8680deb20632834bc027c44d4cf3fd102724d6748de61eebb06801048dea7636f3a248a9bf3123882ca9fc66b4e70b06d43045", 0x12e)
setsockopt$inet6_MRT6_DEL_MFC_PROXY(0xffffffffffffffff, 0x29, 0xd3, &(0x7f0000002000)={{0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, {0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1}, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x5c)
setsockopt$inet6_tcp_TCP_REPAIR_WINDOW(0xffffffffffffffff, 0x6, 0x1d, &(0x7f0000002000)={0x0, 0x0, 0x4, 0x0, 0xfffffffffffffffc}, 0x14)
r7 = socket$inet6_tcp(0xa, 0x1, 0x0)
sendmmsg(0xffffffffffffffff, &(0x7f000027b000-0x3c)=[{{&(0x7f000033a000-0x10)=@in={0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f0000280000)=[{&(0x7f0000131000)="f93676f361c0f1a281ab5a322128dee57edbd523ce92dc8c7c71eb0f1f06952aabd69dc61108ec4670cff4f257429ac337a978fc07270f000da9d99c1fd4af4513c8c1fe328826eec5e8bef58ea82703079c37d754f6dec676a4140feb8036e58df1c8ac97b85e82b5571105ebc337c3078ad09bf461c2c9aed021a727a4f7b5858fd59127105734c56b40102ae8714d5e29df699b1f47b4fcfb", 0x9a}, {&(0x7f000025c000-0xd9)="d236412b3e6b51d54eee03ada394a84dd6fcf2a5c30a2d26b9817b6c8df688eb143a5cefc0876577fd15a72c734a25e17e63f0c5ba1a379588d9dff8d9630812f64812d0543c2178b8e50098dc41fa9a8e37dcf1437c8d1e0fda7bcc4e891eefb2b2d2f656ac655129cf76598928753c1d431380e8e1aa613a744c650e25886e51d94f3dd39830963a2f09fd409d24e4ea072e9295216b646f0ae946859fedb545af49f3ba189c02dd975873011999d1b216f39c700fa1b33755804fd83e62528dd535ab64de2768bcfd27f9485d3cefa818de8640fc34f80c", 0xd9}, {&(0x7f000013a000)="", 0x0}, {&(0x7f00005b3000-0x1000)="f38cd25978379414d7f7da10dfa53d39d05aa2f94bf605d707e2cdd76bb8bac8919c71d679b8a7323585ce6587d569d20031bf7cd8687ed791da31022de2c2745d32e9a063ef5761acaf63faaffea40bce6dc44b9fa9d305d8d20f99f41728c4e6de3878470c42f0baae255aff7ffbb87003ba637a974dd9b479262eb6973abaafbd180919041575c4bd95fb769eb1f7dddb5fcba5b511a39fbedcc264b789a4086293c42db43441b13033b582bca37d2b4cc1a1725041b17fabdd043293ef51386f5211b42e02887ff43143adec4ba21e5083b2fe1e01d3cd39f734cbe98ce7fd31014334e2b0b271001c48d169ab597af7bbb3e52ee837194ef3679a7fb5a59748e87b69dc5f411b287a5a798a66980c1b9cd36721113134aba71f24a8663b6b598091bf34b5fa65b00ad0df08f0921d887a384c1dccb61db6bbb3f2799e156ab88f42322f7a84c35511f40ab7b25d68bef4b34e3410ff8950a719803fd33532dfc5f9100aeae330c1435df71ef7915f0625ec7542ebb81c3b87f79040ab3a24c2d909517e44f06d5cc6fc2aa93cfdc5dde4d18a9570a36c4da9aa36d38e717f43525de04de284edc59f5b26557c43bf3ff81c9e0dad0da5b9432afe948cf8b94dc47a8773e81ef279466c3b0f8532cec68e61ec2ffb51129de3e3f580e2a24e84a2ac8174788afb42761477df6a75c8a7923cb88148bed8f96e6e2120a67ef1aa8df5e3ee2b28d43d33dd6ec9114bc602ad58855322e4e108ddbf0ac37d21b1a91d7a6ac095124bce7d5a361844d74b0c0cb7e640848e38c70297a614b3547144f137357417151459a664ccd1ffde129eb19cad82f460645a97f2e3a6bca6ea3b186debe349e8f6646187bebd78a48fd4d811ef15e1f1c6fd99af15b1e7892dd0dd9fa41c74213deaa00fcdfa13ab6be43eb172d056d6cb9e5ef4deed1e9930af7d47c1e2f61c53d04858a8dade5cdf448ef206b452bb56fd5e94734e196322f8b84029e1fd67bcca1442a9f94dfcfb74b03f11d44d9c9718a7fd0375c934f0e7cfa76502a5bf0ea8995a82a778c07dae50486292181749d805dacb008472d75c6cc0f1ecc3faef0caff12ac59dd2cab34c004524a0aad4b24165715d1a4aba1914628788dca1d9124c8bac55659c71345b1c986c94624c42024943c20041084c4f419a96f3f58e550fd300526e2e4b2cf8d6651dab306407c141e382769627fb191a780cc31088deb5117d4a3fc8c2860f808ffc147e949d84862f25f9e3fd10669845a50f47a2d0ce78b705430412a80929bd71d391d7f99e93886b0f7d64fb2671e1ed541a2bdc9369ac914a87582462cc7bd2e1806dfae9c8977c10113ca53d9efdf098827d9a5a55b36be0786947e52d82149a19a343c1a483543372bed57e01be56c5bbf85e15d2a640738f12d4b85a3cd6a5120cb852cf2d1019f803d00c3195451706dce8342b30484443b1d0780acd9efa68b43236ad85b6bd561f8f2ed3742e4393241a1e7d75f690e911487a019183d9ee3fbdf5420b8ff7b42013e1dd9111f690a4c2567a29ad37c8e89b8908c2e355cceffdc331f3a7d15fd9d922dbc59046806d97e52f0af5cd3d99d5549f6e9af1a419669ebfd4fb6bf171e0017a40240f5f4c12f7ba9f73fc44f009c84cd8c933480ea468758d6b5ab44803df3f9ed486e7eb7e5d6a64874a211b1597d3f3d64eb975c3cf7710683835c370914dafc5bad7e4cf81a8850f20a0e614b62db3dee25e80174970079af40e4946e78a4af735d70443528e9e96009f56fd87f0d1142c90595752f4bfc5d9a33e8f1c793c33f3f8e35410fbaa0c6df83c92c212e5e8006d033a7da77a49ab663c6910a1eccb06b632c874e0a6d3b3b9cbcfcf3fa8c1cadbaccc1722f33e2b80d0e0f0e0033743e896d81777e984507563705c4470aa284068aa9d227aad200f25545b7af486de44d89fefeef691799c1325d96800653b1a32affd568c25408856ae37dc274a3ccab765f14b153a97dd26cdfd9ae6d4865ca14f5c3b7d9fb50491404b63e3ccbfc29d1e7868c8fc99a6e141da455d4a04eaefacbf41eddb1e721d353010e0b7e7d7982ad44dc25031fbbcd2f0204ac4434f756856b1cd7ff31eb14cadfcd2c326842f4f8f00764b9f06b65270a4fb1d890dd1a2d7dafaae13649a7d6e68de262e586dedc1ff860a4c32c8a15c974c1eb461f3cd1da878bb1da99d7a30c0037d6b7d075e9030125ac115ae219793b686e4a9faf46df834da46718e49d18d966d7cc339c19ebe6266ce3e54883b2db6a84a4fa0e9a74488027c54456fa1f18987b004289cd5cd6abff1d1e09e5f2819efee92760e4c75a4b3e8982c41f94e9643f85f34512d724d1c0e51d1d1afc95f01387c87aca8fddb0ceeb8f108aa8eabdd642b1ef7c985e9b4689e9f1a480d473998aec0614f6c109a5c727f031c9fd5a3ca7282d4dcca36ba18b74771d49eaad15b003d36eaa9482d41a2dbbd4d314559238f626d23f524cac3e3287a9886c5060b342997c51d6bd1ffe80a96910f798204758b2f0d3c6245d02f7a3151623f2cdfa31b3c65d167be400fa35aee0c5c07f698307575a2b8995b03be54a8e39fe6dceb9450ce97cb07680b5b95abe18beb5ee8ed4c830c8e35799c6f153aa2a2c3fdd61a8cb65d833c0a0ccd71027860a9a12ea4b1e55151f5fbb8e6088287d98af4b33fa6444f1716252d3bf1404bf31fa6215bebeef348586db368fc81a10f601ea42b4b7320b1789dde31c1b1b201a2eacf549e2491812b8151284d4c1b38d31dcdd5bc1a443309c48ef3fb953d93257d714daf4f46fd89366f98596b1c0510bdfd22802a68ef76426f657e4dfce8e79c13662f82ffe3e00a6870d8573305cbb5c5dfbea9a095dacf552373dd7c5284c8a853a1008d190577e129e4dbee597e6df4224b70fa1780b7ed64aa413119260377cef08a272298b9fce2947b39d0a0566b0186264321abb70d4f6b507ba7c56a0c3b245145e26a0e1e5dcc3aa7fe14f92f8bc4277ebaa2991319de7e18c9d11c6ac4dc8b3c68cf6ed3ad2a084f96140a94fbc1595d0d6e9f993316c886054408fc11cfd656aad92bd44fd384f6d2d8c8a016c8e323ce8ec9fbfd398a180e8b245866ca09d6867fb7f2676dee675b4cf28ab8fce3ad94fe7fc7c1ca3ed6a2e8d84669ab8a850324dba52c5223ae2d82b8f4809a24f4f9e62263b091a70260fd70f24e4ff27885fdc713401548acfe216323bf0e2c5d0cd298fc701a6703116af6d4bda9449255fe786f706c8125b5eb338809a20e10277577f7e44584b09223f1efc8fe15a6b53038fe5e3949ec02752740aeb899d255643b95ba2fc5c092f430b8d9257c4b0de58fe087e8f21681b2f994a30042bd16e25218b5efdbb4290389845e99008ac38bd113456a40bd45a87437a729adf3faa8df112d9c3665568cad3b09706411f668715deddbfa676ce1309d4de067a15e12e48769fab40fe230c1b5ed99d47258472b391037dc2cdb0c613fe41c278d12918c84636ae54f11fc7a973b9d4e34a390b765d043521860979c18ecadfba19b285217966c9e17cdd3a313df6e8d6d4c67998a5f3232b6627ea29b3ec26fa4f022dcf9d5f1c7494fe8f0b8c2e4a0ae888e24c149bc369fd62e37cc91d7ed779b1a8c6b6a05a9154b335c803759e80c9a5ee51050506189c15020146ff366041df89f9e7dac3632d49e888e7030b87db260ccac6d1263cb8b48b90f7782c51125dc3bb3536564449b495a4c36a48e5cc28ec37bfc90de343296f8acd0cf93170b7a7836be879c59e3482043273150d08cb4a4c1a5a9d60606adf8afc230b386bdae75c1c93e56a12dd7ed6cc29e26490c6c314253a4a1b324db604d7a15188f15f25b44178e50a5fdf776251b70588f5d81643aaf6cb97c641c90755995fb5ba34229ea7c98c9575d6893aee8c304a57bc7fca1ea1a6271f09674badbc3925bfb166296c4ea4a414287d709654898f624a7144466c35922954172a9b4a69134ac0855e58c8892d888af74a0771b5cf09c77bfb8be8eb4d6970327dc1a5c4de2f2bcc196a1f852c18731426f63626beb02e40bdfb3c658345338c2489c9d8dc5504b5c3cc6d5157435821d76b8bb151b109e4cac1fd58a1a2fced264ef44b5b5d13985a7c1814170582486c0aae57548474379d77008749ece0b89cefcc104a634c8495ff16a6968fb3665d2d43e7cc16c4c8efda9bb54d853276b916c045b3d2b5f84e6312f58cab7ae5fbee67aa0db1ae706a0af574b954d722f1e4fc96453383c9292d7e5d2100811579ae5bea6f1c315a017c6760035388e05e18f4f6562b75f4e669b9f2a44a1b24c6154b035eba3274f72cea016264da4c6bc258dd5ab88b02c77ae4c126a1e0fd8ae4602db34c4646d2529dea0f37025c7614e72bdf819ee8e55255da582aa3b17074ba8c999498c4621c8d4afb5402acd8031d3075c0ededee1d17a10a71c44f0842c3d4b1653740da5f9fd75eca26c4fae4da532b1359c0ab6b2c9ead64e8c4e0abdd8514f13b649d6f8220a03c07838f6b410ea9340e7e1f783a63a483d5699f9ffb53fb7060074b7715436f5b1b445dd549a50a29ea700e1620e00ef21ae74a136fb601dcbefda81770f638b61af5a308e7991ab56921dc4284bb02fdd6eb5574fa099f007ddfe383badecd8bd00c11acb9944649f39d66a561d172d0d26fac77fb69871cee9a1a20b3d524f2001ffc6776c3f4bdefe6c66011e45141ec4cae12c7d1d322ceceadce468c87786af853244425e7e77ee4ee9bef235fd5b04d3af24531838bf168f797088ce96181ef6f2cade04c4b0ab230a0b1216f23c173333c8c9ca2b04222244a42a9da5e98feda52bbe71f81ea95a992d8cd5fd9b170dc6caaa96ce28f555c94466a082d9766869660bba430bd54cebce4ae4913503e79c581ffcec774cc794bedbda8e80ff9f36968c7a8f02623c3b8d87c86b78cf2afe9869b66040ea541fb6ed282fbef41363e6ebb0325750969c02b880bbafe770041504c2d9eed0698ecd9cea7f3b673db2195346cdb8513cefa3a516e70e23d39659475ab1b02d367f25aaf56b5578b867ccdbf3c4d053cfd2d263080afe80c0e54017475a32e49f1bbe4db393874de219aa90d0556fbf7fc2c1b678d089de4a6af0ea33219317061560bf286e8c61e563fe89b5cf970e7d2b189acd7048657f4aa300c9a7ecff1ef1ab2239639602d358c19e7552db319ad191b794bbb5c23e34a706f3365c8ccf8377ce7f462363785c3988a2b0bdb74a7a26eae84abef17db4112fa504d052f615c07eff25bb0283186f5f7b0acb552d980fce83f7d27184cb73e2a3ce040f08363802736ad7c77d78a4cb1becfd4aa006e9a1c377bb0cfed13b373ac4e9a1268fbf0dbb4134e7de2415ff9703c1d0c8ec3407e528d6d4613c67580a4ccd2c09ae43d99bc79b54002731aae9f959b10f998e269a171ac91aef622cf9beb3abd446e235ef69ba58b04e5fd2c29eed50a9c7676e7c91013da531b94381d8326df7bb6fae8e35d14af81504344fd35b69815c3278ed35958629641997fb84b939b188686beaed71472cf7b6e34ba7a658661f0ff036572860e300d6dfd1a13fc60d7e39592e1b6b3af4827605846a25ab758e76adccdb4af6129daf51c061c64c30ba02f5800168b4e3489215f455b0f35d0228d6703c3dee364ce23a8b802dee9ad2c3ac736d86c016af8ae5dbc1785fa935c20dff0f81e58e48233a9a43e15214e56c89249ded247664dcf67b4699368df5", 0x1000}, {&(0x7f0000589000-0x44)="1c83374311ec0e50886586c80e966528750af8c9e1e80daf0a6796350b441396c6529891e70b2ae3add0c686b756580b2e2c00da125e500f4a47d7ff63f19e512a5dc552", 0x44}, {&(0x7f0000006000)="766451eeb8f83eefbe85001039296f5c9b6085969d58a4e1525d5fe6000192e9a70727e442ae4dedf5400c5ccbd7880c83ec7176e86d322d6d0efe3d7d8c4673246dc383bda50a798e91a7354060bf88cf35b12ab8f9b5a5e46da92718822bc0d54e9f1b583c2f5a11266421586f44774955cf65c967e8fe87485cbde054cee40824613a073e1047f8eb578c66b1c8bf2b8a5767292fc5f4beb57d1c384d47e3200342542272fa41c7d0c5ea57fa2bcd3acf55d4e28e6ad8879382fa4b98904b4d74d9c95bf3c834f397bf1cb7647e2174544c0569d7ac417eda6cafed1db740a098a9761cdb143ff664acd3087584b3ba684a2e126509ff683715d747f236d906e5bba426862f4e72c5e9256d813744127e497ac48c5a7b5617904cde66321d9f74fc4d32f158cc12fc46583fb1102b77cda13efe0bc83c4f2239cb1077accfefb9dbda30411d808c3fd19d2bcd350edb92e95485fa4a3c33d1127f68ad587af87dc3e6fc02f2cba919bc7d83820387f34e3bd4b0de669373a922e8da9120cce0b43fbdd71193dfb56a94046338baeef4f85ab9626722111dd7bcf9cc2dbe47f985b973d36424476bc43ae841e3c3d659cdd01d9e198597f0199027b1a32be6d03050563d9672b36a9d87d7ab3ef6927323e515064a2a15172d223f4aa6fe50e420c8ba8c29ed5ccb63b62d284cc6ed03ae98b8f801695c6231fef0b45b896a20438ce71b36db6ddc5fb25b707d7f2cb3aa84ace9420a669284b1f875f6e6be0d2114afa23997524437009dfce8cec953abb90fe4f843f15efa07713cec82d7b22e23fa4a2d38c817628089da5bbf84cf52ab7a2c5a9ee3d3aeec820c82abab722d80a24dc4e909c233e24ba9d70af4db7d13603fa1e3442808ffbc7e166bab8e1b327e83fecc5bd38006eec0639ea4b9512a282a093e00eeb3a81290a9acdf5bb77c185e6de1b0a2c40dfc5a8bb68d7caaaf716d880909b415eb526a6ca49924f8e9285acd7496be553be997f61b743ca0961abd2595f9fbc75b672c7a23feb6d55dec54179122006fba88f013662adb3c88f2ea511eab12497fee7b6f2fe7f14602bb2af243302c281c55ebe029c43a75186e76860f63015e5afef401c9cca08c73dfa0b177fdfd51a1695cf4185b1359267d864e7a152db0e7edbab3296e61fc21d6eaf8383a550bcd10e6c19f3c3ffc5d355f532da1002c3ac87c1035c6698af7d1015ca811a8bdd45a0443c6be2abca7452ea73f40205280c0b1dcf5aa69d7ca4552976ef6416f613e6d8f42e378305931894b3b1c7d0d4b16656c338d5d952c5a69478aca40bf50d3dfc5b78771450c0113a9a91582b44475aab306ae0b4091ac745f53b22371926fd46ef498e760cd9906c061e840e03d167bb8c2fc297c5d6d2b51054a6490cbbfa0e76918f7118ec0537628affabc6887b6af5a5fb094af5b560e99896f4d32c0d23e4689b5c163a0d4af8a334abd4fcef916c7f9f48bcc5505e8397a018936053cea933cef85a27929cac68e2b1f90ec0f5b44fc7bdc14b3a774ab4678e3de0f3a81a02d1cf9b519d854559b6b54fb826b6f2bbf80cbe4786c3bc10900b388aa46fb3ce870ed37e0130bc33b965ab54950eb02d3df3e6b497ec6fa837720ef7ca980a5495522e7af3e9689ccf048e09d2aef66f4129c2aa45ec214527efe96267124f002df081059b5082a5e792c425c558b712ab4f2e75ac5fdb26c486500ee4db4a7e12b1fa1d04d58a47cbb232d1085401a83b319de5198d31c356846cefd7a195c7c4e54a487776951f4fd0ca25b694cc6c5d07329ed2d3527ca7407b9c2126c3dd70a5f061ce35f184d9e5b9f9d2d77d76a829ee9be6d4946488886a7e7c4158b03998aa58a7b9be235415cf1627f60e94a114d71f690baecc7fee5a881ff7586203903cefe05c520be90f8d2597f6a6892731eb4e00c1b8582c388aae76395336535983a5aff7b9fc3685ab17dac0fc8dd75e4ccd7928a09c08c37c3123e6846152d06bcf298f9db27335f0eaa30d2ee074677f8d2a776d0ded7be59c65fca2ca6f16fd28af88b63147fb8c71337a6ea5a8dd7d911b55e19d31b4d8746a01c499be65c381602043dd3bec926b2cb435e10b8f664f368bb4ee5eb1c619ba0c72493b30d4a689cd3ef9942b35c346aada7b9117baf0dcf023492b34ee0822021d4380adc753d96d74aaa7fb87d6376181a48179b0c7a7c37123bbf30cb740c220fbecb5038f07ece318728c69c229f8712b57ff6f8d0db81e546c50c1b9149e878e05ba00dc56db96ae784666d5e305ad536b4e95f250c9e4e900bc2b9a497c6f41d53d7be8990964fcf3f1356a4fd2a8e28f002ed404238f5a04c9e5fee683f4cb762175ef6a1591934e01d24d36d8365c2f141b963664340540b126f482cd1ff0a00fb91d126fc113c33d341c5358a8aac72d5e83ec6b99463c808630d0e738f5b47c5b7ed1d7899af2dd097d731a2ef28da52a5b6dcfc88b5f3ae46cf32708cb433a0a5a389f1883e2ecbba8c8b07bc362fdeb1a82ab1256e98d9dace585bb086c222d46415f960adbff5aa360d924b882bf2373a3a4943930f7fa7cb181dfa4667b96c5ad221b3ce5eed4150b526a5c3d8a9a1d0c39b0399cdf7c4163cfc036009237e70392d75e353676784de10ad4854858d3afa9484deef3d297fcb6e32df96bb06438524ecedebab60e71b6f3176bb3c952cd2d7ded756e7fa1aba892d28b2958c68db256d36fd3e01df4e51895e05d40eefb18e20171a899f2349f4a39ec6c03fbf298702d04cdd6befb294637329b4db9decab7fd5c4ddbaa45a69f0c044ad30e7b9657dfdbe79850f1dd651053f149c4a78263925e7f0e2d54078b81c2e96443db0b824bc15025977a22077d22c2c724d195ad060fd88921957b8adaea60168a9348ec5a4265fec117543b53d5e9b338ac22fcc7bfa463c4b52572e32e46309393f781c015c3631720e772eb33cccacd41520079feac088e118d9b958d022113ea3b234464d2a2b2fc4e3b615dcb9314d726dc0293234ea88a5b248b825c9c22312453e03976ca09f98e5b64a7ba235837a9760ab1db71f6c092b2dfcc7f42d14fa045e079ef2099aa1cc3eac1eab6668e9c16c334218cf4ac8c632e4fe12997ba81b76a47e87e8d07e1e2a588825e54c5d78170d93058103b5a6b2b64ae73e6c333b7bbee81b81b8cee891e1c232ed7320af05c99c1e68ed4f6a8eb31d9e0a3ea3925b1a430bc35058a63aaa5ee8faab81f00c2fce844a8548a22b78cebdfd994a2b9603343e4dc8a4e16420838e3f2f63c9f18ead8a6cfb85049ffd03158951035bdef94b911e6eee418008848a1ae536c72d10afa30664e39a2b6153e26f35c69e5f356ba54c14e8d410e93681cb3cefc920cc1f27f9848a746a7837b01e4747d21a7f1fdd6af71bf13a74ab5c03fd6d55d84e823e37b9bd932b1e03e7fc07a42e65be985f07d592aeee06a569c4f0affe9d2cfe62094696a42d48d09c1ba0965fa5bf9baa9dad5b760f866a8c4d940f2cf965e2a807b33eb0fdc1138e686a71496503b8f3ec9d72e61d6ef3e01310431213d1a6e2353b42fc1144774f9ac8988ee502079dfdb73fd8c893882b8dbbccc4a976a3e22e0d45fb45006a9ea7243283c1580d3974fd19ac15542daa5ae944c9005be1eee2a73194a2a9cdb476f994e0c6b008329a8ad2d60adf119f6001783c81c5ea2e665ee6a65eaf9fc8c7ca9e5b844212081aa8845b6d588dc62f898f96fe5cbdfdbfa4cc9682b6ea9f2b00cab56e472c0b386ec740b2c8146b3be076134d15c65b28bc4f49231fd7b495437589573585b4b04530eb4668eaafbc1228abce507e214120ae4b07be29b7a767a3e445eb572991cd294cba090201ea8d0e5688d7f38533435fa32f344f2cb05fd94e3090d18348a098f4fa79644811e302d1f583bad85ff5c9a0e3e46220f50e14a11ab1c4af7cd70881a92ff0ddb7848a04c1281bd7e8c67e71bdc7a621a636d7426928fe8cb2ad2b7053cd2550ea049c4991545e8f3c2aa4cb63603c6b168e25bf88e97663a7b190c27564dbba2796a89aaa62ce7020e9f46089277d1cdd0393d357c4d1ae7fbe042150bd979a7449bbaa8a52c75d8e634ab0d33b158a5f7ab4269a329b0bc5638631b606452ace8ec9bc431bd29906bd73673db5de9dbc3e3c550d99a6e4c916fecf51a7a9f19acc0ba39a07d88b1894e05c4c9a4a59e583b087e139f6cb3629f5bf343e40f4f49730c3b1641250ad1c4293c4f1ba2048316029d5a7b45d7d4e359a17da9053291db5b19db2cf093c0533c412fe60614fb51268908ee2c2aef1a4b8a6884e2611a40db2ce1814cdf5137b36ca79cc0b7d4ee32fc45dd3b985433d8df82753f3b6b662d0a84bd0053ff05d2931665c8ebb5c4e024d4a474a2daf10c23a5740507c59a038912ecbac9eeaaea107ecb37583c0258e9db2ffcc275fc2bdf411520bd7aac83d4afba600bbc4b94922bb5b3fbfa6cc7c03988c3c5aa70f600400e66f73a443b5827b217eb2f6f828da84bbbc24636e8f6d4b4d6c23d8947d464e543e9e357bbd1bf8c80c43b0bc5c7ef17071bc39278fe5ac10f2339def4eb4d9607ae3751aafe49f36b56f03c077761fdd6cf4bf4c9f0bdd704bbf755cf55bd85cf601bf45ad3e9c02dc1acd9758baef8f26969fa70ce62367804f6cf07a2cfdad1d737861e0b80eaf23e25d3dab77cf40f68eb489529d2542a59b1f5f3640cc7ab7998ba46b06b8e206fde5e66cc1475404538f05936179ce18a6d8e558a295af6d71be2e44850723a740f64ff3a69c78355e91fbbbe955de4883a76b57d1f7ca6bfa0dc4e6b7b989e793a5d180849b33f941afec3165488759ade7340d17480c46435bf05ed06127c966ff7373c1416cfcfe9964cb9ef9dec93043b96e8cb53fe253ccfd19f23bbc6d5618391ea4c36a32423109d382eca747ca48d20d19168be4bb77e3b2e1ad0a9e567e4dc38ac964bff4989cb4e180aafb19f634777ebc4aacfabe7c90badd76760933dc99aa3a7619353d145346e480ccf3189ce90064e12af2a1424113bfae7f1430c93d14765793a024004219afdae64dd71c72eab7c4358dbf783bb7b076f0c2deb22427faedc3e8f9b47a13ba1660543280fe47529a7e210841a34530830a1dda9cf85603f6ff238326bed268c9d199e5aef57cf5c289da6c44c9d3fd23d35cffdd36d09e0347b9dd3c89448a720f2ad032c9a8d88fe9b0a47f957d364ec6490b10667473d6c8a2925e3da818ac547877c1adca0191e9559fd1f5fa6aa57db3dee4c15b402bc2a2785b9bcbf208e3cd19d52e30f7ce42dc0a6f53ce29ec620c8492f4c875554a8b87f4e64a6de9644566df52c37039d864374d1e3002fe5cf2111e0efb39786e0f694de9dc074a9a4f9eb122e8ff78144eb0fb304b0ef0c37db0751bda71d69d631a3028ee23b2e21d037e7d1675f13a08bad3e4e14f644ae90d4f9292c723b9f4da5e841827fc36661ed30efd84f1ee832da7f2161697302dec8b3beed778311dc81428c6adb1d2770e54c8f504206a778563dfcd828cac2ed69025c5bdeb503e64bfe2ef16a3bff3bc351d024b559cd35d49434127916ff4113cf411fcdce279b537e10e4c4ef49e2e63b2fb23e14786d1d7e445cbbfec4bc76a684a4237f07a515abb4ad8b329251f35b6b825ab25d0675f135454d99b899f9959c963f00ff1c93cd49b55829a4a4092a93cd5bb99a67be5c54872375064b9d9a093306d3871c803ec170fcb2ea0ac7fabc43a", 0x1000}, {&(0x7f00005b2000)="40249875a1b289bc56e65332ba4658837e1df356bb0c4fbd8f326556911547cc11d5f8c108606ac609477b35e5d2a56fb4658b4b7d401e84ce4edc741e77706a18628f9e066a42b87e48739e262c9880edd696e38a48cad58b9fcf016bd25f0a28e7742dc503404b693e4c97c18f77c77c8ea868da844a497bdd89f37810b79f7792", 0x82}, {&(0x7f00005b2000)="a5e05d18f00e3d9688d85dfd5787e6a174108346ac7afdebba597d1292566ccf3a26bab6f22205cbad8fa94d0f9c59d1fabde75d0ccc125cbe1a2eb86eac0f2903550554bc6d65030df0a39dc663046bbc694232584da1b4715eba0ae91bcba55aa6061d129d5e2c05b98eddf4c6afc72567a4a22419c3d742bdfd57bd8d7f0c846ddbebeffdbf4497a84d322c7c43bb87b7ec4db5960ec5b5ab51a709", 0x9d}], 0x8, &(0x7f00005b3000-0x390)=[{0xd0, 0x10f, 0xba0, "8a798153991d20c3a0b763e83d8f5f2d8008c74a8487c55a4620ad29eda41b65a17ec188edd627c8ccfcc75a603bbee6affd766d65860387f84b99564ac981be62de2f86a07c625ca9ccf3f252e8d3dddb420143e7526e3bb89e8f9c6d8470b4dee10ade916b3d7aee739587b5d22caffe5bbfdd98c6ffe31f2ac365ce7b24021cbed65d998a2f8d5d2bd9bbca2f621f82a5485d0a771ca009445c2d9fcb5e215850aa5840c34d5031ca2f355816a7b07b3e0e3bc757eb536d0659deba"}, {0x110, 0x105, 0xffffffffffff8000, "599de11277328db1e6da14941431fd08d50ae7b29e423b26009715cd26a4aafca20cc705e355e181503ec487d8018947a729a4a0a3d248805bc021565dffcf7689b60fc1c148e050bbe6b9c461200cdbaf839288ea0f0af1ba249386920a057fdf964edc7660714cf4b07bce455aa5e5bf538267b0f84d1815530783ac52155df00da2b7b48f8a06dd13155846ec17c134177133706ca22bb7b71fba58bd869d473c9606b03ceffd527f300a29ec2b51855620d07fa8b84fce5d2ab0f7d028ca945788680fc78d41685698ec1152ac1b0594b33f1579defd0c98c16dc11693336f4bc2ca44acbc3a485fe8eec89baa4e895215d7cd272bf727b90c2681b0"}, {0x18, 0x10b, 0x101, "26d1bf"}, {0x28, 0x0, 0x5, "ebbeb3ec71522eb176811a10b5f44890e225fc18da1747c3"}, {0x90, 0x102, 0x101, "f937bb9431c3f44afa49d96593f91e4d5c178dad6b5066d6e629ec8275d4a990071e1e63993d029e0d57eaf6e1b7e3d81d3a5838ab5bd909642e4cbe018abf4083f0ac4cef15b5c305f47f52a0c535208ddb6a951d4d1510f7711a048731ac3278098ccf251d5500929eedaaf3023ba780b304a74a712a3a21"}, {0x38, 0x11f, 0x6, "19e0b75b8f6557b6c53bc2b1b37fc87464eba152eacd296c71eff7144f6dfb780ef7e69b13f25420"}, {0x50, 0x0, 0xfffffffffffff7bc, "f98a9d4426f1532b43891de31107e8047d2586b60551d22665d09329652b41d2f83d839af2e68e555e1cd810c9c026162cb7bf331bbd638ef338a4"}, {0x50, 0x3a, 0x3, "3baebf652a491277f95f27da73c7d621156436644ca4c1ee0f7def5308ec0364ee1e4d504515e64b4d63de0974dad35c8a69bec20427f36e80ef"}], 0x388, 0x5}, 0x1}], 0x1, 0xc0)
setsockopt$inet6_mtu(r7, 0x29, 0x17, &(0x7f0000194000)=0x4, 0x4)
ioctl$sock_kcm_SIOCKCMCLONE(0xffffffffffffffff, 0x89e2, &(0x7f00001dc000-0x4)={<r8=>r7})
connect$bt_rfcomm(r8, &(0x7f0000084000+0x702)={0x1f, {0x4, 0x1000, 0xfe00000000000000, 0xfffffffffffffffa, 0x6, 0x2}, 0x180000000}, 0x9)
setsockopt$inet6_int(r7, 0x29, 0x40, &(0x7f00008bf000)=0x2, 0x4)
mmap(&(0x7f00005b4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$bt_sco(r0, &(0x7f00005b5000-0x8)={0x1f, {0x0, 0x200, 0x3, 0x8, 0x7983, 0x1}}, 0x8)
2017/12/15 23:28:16 executing program 6:
mmap(&(0x7f0000011000/0x3000)=nil, 0x3000, 0x1, 0x32, 0xffffffffffffffff, 0x0)
r0 = userfaultfd(0x80800)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$UFFDIO_API(r0, 0xc018aa3f, &(0x7f0000002000)={0xaa, 0x0, 0x0})
mmap(&(0x7f0000011000/0x3000)=nil, 0x3000, 0x8, 0x10, r0, 0x0)
ioctl$UFFDIO_REGISTER(r0, 0xc020aa00, &(0x7f0000001000)={{&(0x7f0000011000/0x3000)=nil, 0x3000}, 0x1, 0x0})
r1 = getpgid(0xffffffffffffffff)
sched_setscheduler(r1, 0x2, &(0x7f0000011000)=0x81)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
llistxattr(&(0x7f0000012000-0x8)="2e2f66696c653000", &(0x7f0000001000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x59)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
symlink(&(0x7f0000000000)="2e2f66696c653000", &(0x7f0000001000-0x8)="2e2f66696c653000")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x2, 0x32, 0xffffffffffffffff, 0x0)
clone(0x0, &(0x7f0000b26000)="", &(0x7f0000eaa000-0x4)=0x0, &(0x7f000039b000)=0x0, &(0x7f0000bda000)="")
ioctl$UFFDIO_ZEROPAGE(r0, 0x8010aa02, &(0x7f000046a000)={&(0x7f0000011000/0x3000)=nil, 0x3000})
r2 = openat$selinux_enforce(0xffffffffffffff9c, &(0x7f0000a8a000)="2f73656c696e75782f656e666f72636500", 0xd43a90978047e91c, 0x0)
ioctl$KDSIGACCEPT(r2, 0x4b4e, 0x1b)
r3 = syz_open_dev$usbmon(&(0x7f0000705000-0xd)="2f6465762f7573626d6f6e2300", 0x6, 0x141002)
perf_event_open(&(0x7f0000b71000-0x30)={0x3, 0x78, 0x7ff, 0x4, 0x100000001, 0x9, 0x0, 0x1, 0x8, 0xb, 0x4, 0x1, 0x6, 0x1b, 0x0, 0x31f, 0x5, 0x0, 0xffff, 0x80, 0xe3, 0x6822, 0x7, 0x0, 0x9, 0x10001, 0x0}, r1, 0x8c, r3, 0x5)
ioctl$TIOCLINUX7(r3, 0x541c, &(0x7f000069d000)={0x7, 0x1})
2017/12/15 23:28:16 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = dup2(0xffffffffffffffff, 0xffffffffffffffff)
getsockopt$inet_sctp6_SCTP_RECVRCVINFO(r0, 0x84, 0x20, &(0x7f0000b48000)=0x0, &(0x7f0000647000-0x4)=0x4)
r1 = perf_event_open(&(0x7f0000e52000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r2 = dup2(r1, r1)
sendmmsg(r2, &(0x7f0000a04000-0x20)=[{{&(0x7f0000332000)=@rc={0x1f, {0x8, 0x1, 0x4, 0x8, 0xf4, 0x400}, 0x7}, 0x9, &(0x7f0000f98000)=[{&(0x7f0000ec3000-0xcb)="8ab886df1d1ff56b206311fc7d04dc2b5c11deb6a8de812ac8485bfad949931d4a59ac36a2ce693010fcc4e430ddbced68d19d25d19ee159a1952870526b325964b782dabe7c0c2154a4041b542a5eabfba02127b869f12e3ea3c946c8cf276eb8e2c84a345a7fb78e189077cb9c90e0908e60d12b814753ec61880b5c13d13bcf08dc0688573ec1cc8a575736d98286788c0f27e340afad9566bbcc8c91216eb8ab748463fc15bd60fcb37dd8c6056a4e9f26f336a1f5666e25d3ad4ad83cae977731d11bc8552940559b", 0xcb}, {&(0x7f0000d91000-0x48)="175fbaf2dc614d08a36576710a29f063a37880ee54fae3e7060c9c659aa1acc05378f142033e0db449cf3c484410d71c8eee6f815fd38115fc36d5e599eec153154e02856e56c5dd", 0x48}, {&(0x7f0000fec000-0x85)="1398248fef3e7e015a41e8e57c5dd4d23c5dc2090512d494b98ebc7e3e34ac17eff34f5716d164f0a96944d94ff8a3366f4d0c2006b9913a706df7a101a7a41b09d5495dd8483afe51d4a09be88e4354234515e82dfba1d25be085bf8716b5d7fbad4f8ec4794bab66e3e29f92c986d4b96a044dd379736d07e57d98466afaae78e6a5d7d0", 0x85}, {&(0x7f0000d97000)="1432e95e558ae2553658f50646674b6306b5821e288cda3d7412c8fac760e11782bd17549ea10f497d6446d2a5efce4ad77025cba09f59d797c90ed28291fa86e41df7115dcf18910ca07bce20610c2060da7fc19a9c1b137d825fb0934b59fbb4a3d4c2ef1278acc62e8acbfa17ba7ba34513412fe6e84587acbe0f9d2bdead3aa9926133907a07fa5296c7b98e82ea857e9011c391ba26fb7ef6e26c5db9eb05cc06cbaf160312e04eaa430334ea80b87bc0e56ec028d4ec3e25", 0xbb}, {&(0x7f0000913000)="f41f0683cf771bb4ff05b6ca65c7992f9b743122609f7cf14c8afb65d1e357a569ef64d2a340cc4a745f635aa54cfc0c53f1fdfbdf3970ecdf0c508694c1acea98ec70c8a5aa1808cc903a0121459dab01dc0111cc0d6daaa06ab274bed47fdbdbd15112ffb91b3a0fa094104eb4c16a23dfd0e8906da9eb4f05bb8493727926a20e49a852192c69ff7b0abd7f17f8b65270af197f167b8d166f9c918c815ebf9d39a1852be93c4106b424551702702da9ff7b1170868aaa7ee2f7dff53a6c55b3b9ceec2277fe47007a881f5ca5ce4324acb4bc529634f287e9a791aba1948e87eb1831bd84e532183d8134ef21a789284e1117a2cca4f28262ae7dc5193020569e15aea6c2d576d672ac7c74d9d8967572438b96689caaa33d83b725a7af7fabf949045ebe6186f75e5f901e60a0d6e39e9b7cc2968f246046c354040e91d55c4b94336b2d4690f3989d8bf602b94eec3f908cd17bf375e015ca3953f6e5389390205634112355d79b0c85d09e593e63f187290dad08a9ff88eb3f76329660fced65a5a1fb72f7bfc978288c79ef116c0c08f82038bf04390f6e10b762d20ce83bcf04a4616bb2e50b75e2f8d7e564752058c9110627b053cfaeebb5f819f2eac0541ab280d0070ec5b49ccfc48544c6d8846f8c7b4f95110e4c0ab1572cb2611bbd118c6a28409203b8c8f3b7c1f56806acb3ced99862b578ee157f481c5c2cfd10002a1a796b200c2ea8947f94d46669df44948e085d2394814aa75386134008d4771c116f96fc3a053d46a79134fd3c0a0d9519e55d04ed41cbeed84ca5a3ea694b93c5a970720b89c788ee8e4a511c3002f4930132ce194799e6ca81ad6ef2c36003ed30f37b96e02f00ed2580adc5b280f5b1036fe0d300dd682843c32ec8c32a69d9f87d0962e3908b733ee952fae945df12e851030f4f0dea396388feddd5ada339408c9474119056540ed4e9e94d9b12110b0c1c978034b778b3c035c63257822d403750e8e0fd9f77633dd1bba9e5875c6c1f0dc94a480e48ea27521081d688b8e44e111ccbcb21a90d7e2310353c2708f73eb02f94444951775f2e098bd89c0a1a9f17d9cd0517f076c55ba80e8187b4c5f84d17ec23e201d5478d355602bb92d608d7abb3def07596abbff4c5260e5003f680a3ccb0dedb351920166ec7927a4cfd9b862230ec956174f4b4010b1837b82bd320894fe0b90fe5e866cad6c4ca0ad8a57b95bc72be60f61fb17d5ac89f97d331fe4e05d7af6dd17af7c9113f5637face3f631f3e09fe2761ca4485c1f9fd59c3cdb6e79f1d489b34e62e547325a2dbeaa19a4610a4874fc88e69a72996ae20a15ead64863b8da165093f82ad3666e3a7291c51d311b716b2bdf03f058bd73fbf3c27572f35d85f2b37614ae0fa532be986f2d7c1fe5a57345a08a20e48bc1e5e7f2c832df4b5f6baf215d99d93badc4a25118d1c2fb5ec7f86d39ddec4bb6e6fc6c483fe31e26186b0c2c00157bcd3bd01b4bbe768459b2011a4e27e0b28e71623b565351c27f8c77d065190369196fa386bbf68a0d09e20cdc93ca02add02758a9ba27909f18e7204b52b2691a3d83802c91dce748d764ec8aa5f65cc272d6c26c53c0ff9d2a0fff4299a6b3736940e363c94ad68e46b0e84045e2b24b33ce80f0a51f78aaea112cb16d74b6a6a70644d943fd62e6799b765e922e7755871f4323a80109152f5428bef6d94598a29b7828ead51acbc3b67188a3533b0a546b6a806857916d4e6de76e75919fd08e0a2a2cdb3ca6d1e2a5a147d405dc84c573a3994dc10258658350a08abdb4fd451936f0f83d73bc99fe0078d27eaa99fd774cb5ac906cfefebb3b1de55ca1ffb0c564fc364fb626fb41c2f954a1c6d77c99c084ac204d28f97aba1e72d9b635a3903e2eed70f439b4b08fcb92e59887541c68f7cb510e0ffffa8aca56546bbc9f4db438fb292efcf4c3780853ce0eb8af1f02525ab1fa4bc1aaba4cb66f23bd5fed82004b5b2a6a49295c41a37ea6e2eb638dae71a6fe38205817c4c96d977224ec30a3ff7e758ffa35613d62e0f04963d91ed9c74f8e6134f00823caeecf14dfdec8aefad3f718872a7c0e5b80d2c2dbc280588655dbe7e36323029c98b6bab74851ac8458e773e36b123fca9521656cbad588a6cd0130953118868f16500a437f9d47fa48197744ee79fb13142896f76af40d495be65dd2ea820893b5d518d4700901c2ddabde5a2a8a3f1e3e0a25eba487ea6f299d4c29aec7e7a7545709960508edf0bc05e2ac4f2b443f6755882b8b930651cccc53a553d1dd557c11364c067d81c99e4c5cd7f867b498429012939bba0c78ee4755055fdf94087939cbe48f3a4e00d14653fdd2c508749711b23eb218e853ad2da9e6b0f9b16aa6d7b0529eea39950ba4081a2d24ab8edc1b77998d85eacb900d8e771a70b3ffdc0b2ddcf3f5a0b6be9865c6218aae2a17b131fb924b2c6ffa611128766d05a50ef44c03cf2649935ce41298cba378f54ee3fa89383906cbfd03d195001c7fb4814bc87ba194298609a37adc0b8fbaa5066be71996a33559035d38db6d9d60d468bcdb326f83eed25427ba044463355bdeb039844f007169544afa3c31890fd0ae1e982005d16317160b8ff1cae6abed73e92c8d399e46bef3047b65fcffa601e454aa91528c9b33d5895641a5dca45c00161ebd88bc1a12268d4b1803064d014a3250e80887e05c3f1532a6d8492445df50b665b503d67e4e0a3fdeb7e147e22accb5527ce1066947e6d25a768c8c97032e3bcccb86b59aa30ba3f294e78b0fea88bac55db68113fa8cf251ef22d4720e84ba4cdf465062b0fa6a00806e310d5dd5012f7da296879a64ba3a74c800744bf1efaf817da7f09185046ab0807ce68cc118e6b9ec3875418cfe06f64d8f60a4cabfa19a8b5b69046ae87ad43f4a99742b4bb5e2359e09502bd453576be8e1a73b889dc2c80a44be4c0b1d3756ffce12997771d5fb84ca50d82e555e71439502137b43059e7830184690b11a5175b24d7e2cac1a81988ed87a5959dfe802ca3a8b5c05955fc5f72a336c30c3ae706a3118ea9eb69a8ee7be04d7759242248b1b602df57fe2f709e97b3ed16ebfe0789cd8e6bb6ea2f4828430a68ef9fc20af47b2f840f58332d3259b8c362c43d208b8397a323a4d5043e70fd39c5a497fcda00d2c467f6a3f7f5b4f925221833b5dbbca7939772d5731a904f83cc588e2c82f0013c34865f643b5344b6b343622b75c0c548e99cb02a3a499af219f5c0f4902046a967ca4b7c872cff41887aa4d5b7bd297a3a73b320a016a3109f57259525ab616de011ea5987a61445ab05d10f7e5f33f57c40c6b6728d0e4c6c0b04c4eb20d12bfbaecb781ce326d3e71ce25c4d0da9f2cd73f1481e39322ac30c5068c1e2497b34f4feaabec0145c6f740bc7b8705cdcb8984322a1ed447b09408fa5f2a6a9d29af2803e332b84118fea222d299a39033d6d30a1d15797cf9c80aad5461c9662059b561e796ff96a37eaffe1503e2444acd80c7186c7bed3212d09fd21ec6f702fe545f86c13217e6a2a75aca0ff0e524de5fb66e848de67a9b45c90abe62303e3d4daba53be8e3a02e0d6b0d94e46280a45ecf4e2a878ec1e7c0cd25e587d910054f65b5bf489c44091a6bf9c1bcc9b85d0db8a2557521e33b6c1c4be0261f76fa07ade3046b7ab178268fa7375bd5948097a63ffd24abc912b0d15ce9d592c0c56c0cfcfc3d3b95473d96d90fcaf3dc9bf351f90ecc49538bf13eda9f907c29a8329828fccc0df6db8b6e7aa759ea79f8ed593ac7c0549d32d03263a71f93809393c8e06619f17f0793c71ce891ec731533e254bb510d9f8a423724e614f6a5d25f032263b62a874b4dbcead28e6570b1f2443a51e059769b817a28a06fe7e99a8377f14bc8bcb0d0833ac0eb0965adad8d3c1d8ba8a7ba38d732763a2df66517d569afe9b36f552a8bce65e3a52daed121c03fd5e277ed9c4ebcb2b08d255813e731f4e9b6cdab05c9c9756f5fca035d65934cb592e4f68d88e81c06fe0349228c8d13f1e7c7436666c9d816695f86a4513946f7fca8404a5afebeb74b1f2e0a86db5b64489fefff45782d693e543c9bd81fa196ab6edaf1568698dd7a61607143cbd4c902d4d0fdc95caaad27342354ea4ca9932dd5f37924edb920ce37eb989e75c3ac1c2b14fa43d82856e667679cff0af1b15ae0c22f43d2892a0b41a75fdcb5b087189f7f6db01717ff8531ddd4e6d0f6b586526b4c41c9db1f6a41a4c0ac9e203ba7b740c7580cf13e6e2b716ddcad86d5838940b9dae2553b882304c5a1606ec5dcc1965c5ba9dc29ca61cd3811e28f1956bd276fd7e0203f49d587543319572f7c85e69d9a63c09504d7f2d8eaff9e60c6e8d07ba5abe84c5662c867bcec647edd89979de852f80cec22d198d8fb01a1e85262993f71784a46979cd44ff6653feb9cc65da568939319dbc37cc9c505d2f30a87a0cc7b5db5324e698bf18ddefa22ef77e56d404855a732be7e39f61159eae6103d1a053cd0ccae3e2af2dd41150def4e2a08dc15050662c8733ede62f857e54dd5cba0b20df9a72cd399fbf72efcf0380fc62ce2541dd7ed9ab1d5b47cd07c1b709c8aa6a87baeda107d1fddb2c38d2de6aacc7134f9e44a9229d765f09044ea20f9bbb410d1febf0526bd13a0d70280e480e7dae727fb4838b8061bcfd36c5be893809fe11070341c4b34463533de08752cc2b2be94ca9779987d7b4788e3117807c304207cee627640dc4b672d87c963b67696e1b1f4004593ca781d2687b26ed05e8d25f3413ab70278d4c5013d8cee57a5652d67e568bea47fdc57a7c939050a682910c861efbaaebebecca09e10417a41dabd7f45abcf1f4e3371df197cf0dd79474658e0554afb5df809213e5c8706f21ba62053428f5449c53dbd4e299918b7835024246d4f5e8a32bb8837e4834df909f0523642f4e33b82a28dc7f18e866f0a6cb58e59215696aec751a179d4cd4737ddec9f03b45d16a30b98b6f652c463fd3f7cd57cd917ed83721ba54f3df922129a78398bbe10187e7e91a931d4c70a01d638cf5b14fe689d346f42da0bffab801512fe452afd31e9dc87af2a5a3ef7d22d00498b3407c8b922fec9aa698508f1625bfe4c4f23d7b1cee06e3194460bb21f14b6c9b1a6029044decce41e08ac785787c0894c9981822b82389d64ce87d4aef2ef39abd80baf48dd9e56c368dafd2de8bb3adaaa4d2f85a57119b5ed528e312047ad58ab73cd10fb66b75553c58633693a892e360cffd06b83c79bf88f3c523dbd278275c979a0da739bdef1ac5a9d2bf7912704646d25b60fd8a0feabae4c4ecbb23482c235b581f5bd5ecedeb4a19f63fc832777f089ad71ee93ea0a17f47c1aba06819e2ba0fad6e10f3ee968f3923558bbb77ae5db57597b0adebb201c41a50d25aa17376b7ec9a90801b95e2fbe165a1cfaa2e56da07ab36686a6540bc3fd0eb23acaf4ad59b595d526a03ccc014adbb51b7dc94967e8eaa4253919d3611af3730c477888d17152b28c10f2da1a5cff71b7c1d263b12aa577ae989d98c7bbdcd480efb6c5f99aadba27813669798a58d2194343282bff065e966cfb7a1c5b318ba6f5b44d0d7ed4c03c74443035208d41232380e398add597b3d0eb898493e18ba70ad2010de8622f315dac9447967bdc024211117a0388a6372acd12ff1ba24fe5c3210dc3c65142e2d9592d91ea8ac172c63404defef68ad816151d91e4aef7d11f7111c809f8e", 0x1000}, {&(0x7f0000138000)="7be9a1e4056dbe8ff146009c6b2499d17ff74a735fa266e033becb8f3e8ab824284a9f0613cb9c53360483f670c1613ae0747b0b3996a470f2a5f80adbe74409ac7b16bd8ddd68d6440186a3913efb9918e23e3929eefe4fea716e3c647c3920cecc9138b7ab60a22035619cc9df72b997561edea44f631b68b36a5232ebdb0970cd6ca167", 0x85}, {&(0x7f000033a000)="4ecb1f9ae46b304be609ad26641e1d6589b6797df576868aa555368c4a4bb4f032acbee9358f6fed22343b3686fa08ccbde343c28634a0de07b1d3926644", 0x3e}, {&(0x7f0000719000-0x70)="60c9f83714243d7a18afebfc0d6e1712448b5ce39e65c9d1558d67edd8c4ea5710a79653f3336453fd72f7b96545a405e498e482b12d504d0efdc958f95f164b257ddf58f411fe7ca07a65c9ae361a6114f7584b926891ba31fec7debeceb64a234ea4df4c92cc296f23bcae0cf171e2", 0x70}], 0x8, 0x0, 0x0, 0x4000}, 0x0}], 0x1, 0x800)
r3 = add_key(&(0x7f00007b7000-0x5)="7573657200", &(0x7f0000965000-0x5)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f0000f2c000-0xdc)="267d67af6dec8e94a987f428a764a8a9f2d1d9ee5cd4fcbf0b08e0a455c660504cc82e8204ccc76185f9652836a254fefc8d3372442cc0541887e50acbc0bc613f56172b5d19bd67fbb0098f414cefc63d881f9e26d985a884d9775dc1d7bcb906affbf743ea7a7b48065b80ec0fea4cc0a18877649e11ba914b8a30ef01ebe9dded6ef93a7977adb40ba95542b921fa36add4f2d6d5fb4bf47ddd12ecb15118013afdf74670d9f2569be42f9cad7a27839178fab1ad5577f07b8eca9a8a4539865852ba04c976343719f3c97c50828e6395a8c42d62b388d9017dab", 0xdc, 0xfffffffffffffffe)
r4 = request_key(&(0x7f000009e000)="646e735f7265736f6c76657200", &(0x7f000078e000)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000943000-0x1)="00", r3)
keyctl$get_security(0x11, r4, &(0x7f0000825000)="", 0x0)
ioctl$VT_RESIZEX(0xffffffffffffffff, 0x560a, &(0x7f00007b6000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
clone(0x2000fffc, &(0x7f0000087000)="", &(0x7f000065e000+0x528)=0x0, &(0x7f0000533000-0x4)=0x0, &(0x7f0000f2f000)="")
r5 = getpgrp(0x0)
socketpair$unix(0x1, 0x3, 0x0, &(0x7f0000c9b000-0x8)={<r6=>0xffffffffffffffff, <r7=>0xffffffffffffffff})
r8 = open(&(0x7f000016f000)="2e2f66696c653100", 0x0, 0x0)
sendmmsg$unix(r7, &(0x7f00000bd000)=[], 0x80, 0x0)
socketpair$unix(0x1, 0x3, 0x0, &(0x7f0000b82000)={0x0, 0x0})
ioctl$SNDRV_SEQ_IOCTL_REMOVE_EVENTS(r8, 0x4040534e, &(0x7f0000dbc000)={0x141, @tick=0x800, 0x4, {0x3, 0x8100000000}, 0x8, 0x2, 0x6, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
perf_event_open(&(0x7f0000b90000-0x78)={0x0, 0x78, 0xe3, 0x0, 0x533, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
getgid()
setsockopt$sock_int(r7, 0x1, 0x7, &(0x7f0000b07000-0x4)=0x0, 0x4)
sendto$unix(r7, &(0x7f00004b9000)="", 0x0, 0x0, 0x0, 0x0)
setsockopt$kcm_KCM_RECV_DISABLE(r2, 0x119, 0x1, &(0x7f00006cb000-0x4)=0x8, 0x4)
connect$unix(r7, &(0x7f000022d000)=@abs={0x0, 0x0, 0x0}, 0x8)
close(r6)
perf_event_open(&(0x7f00001b8000-0x78)={0x3, 0x78, 0x2, 0x3, 0xfffffffffffff800, 0x4, 0x0, 0x246, 0x10000, 0xa, 0x84, 0xfffffffffffff801, 0x3, 0x0, 0x0, 0x0, 0x0, 0x8, 0x72, 0x0, 0x7f, 0xfffffffffffffffa, 0x3, 0x5, 0x8a65, 0x3ff, 0x0}, r5, 0x8, r1, 0x5)
getgid()
ioctl$KVM_PPC_GET_PVINFO(r2, 0x4080aea1, &(0x7f00002c7000-0x6)="000000000000")
connect$unix(r7, &(0x7f0000bba000)=@abs={0x1, 0x0, 0x3}, 0x8)
2017/12/15 23:28:16 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6(0xa, 0x2, 0xffffffffffffff00)
r1 = syz_open_dev$vcsn(&(0x7f00009ed000-0xa)="2f6465762f7663732300", 0x8a0, 0x100)
r2 = openat$selinux_status(0xffffffffffffff9c, &(0x7f0000afe000-0x10)="2f73656c696e75782f73746174757300", 0x0, 0x0)
bpf$BPF_PROG_ATTACH(0x8, &(0x7f0000bc7000-0x14)={r0, r1, 0x1, 0x1, r2}, 0x14)
pipe2(&(0x7f0000000000)={<r3=>0x0, <r4=>0x0}, 0x80000)
symlinkat(&(0x7f000063c000)="2e2f66696c653000", r3, &(0x7f0000048000-0x8)="2e2f66696c653000")
ioctl$DRM_IOCTL_RES_CTX(r4, 0xc0106426, &(0x7f0000072000-0x10)={0x7, &(0x7f00000ab000-0x38)=[{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {<r5=>0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}]})
ioctl$DRM_IOCTL_RM_CTX(r3, 0xc0086421, &(0x7f0000156000)={r5, 0x1})
r6 = socket$inet_icmp(0x2, 0x2, 0x1)
r7 = add_key(&(0x7f0000596000-0xa)="656e6372797074656400", &(0x7f0000bdb000-0x5)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f0000cb5000-0x94)="1fdebceeadf86fa24831dc0c9fc1974279f4faae3a032a031f1211eb3469f58598a12b2cbad5bc9703ec0d335927994b140dec107ac76249cc5f054fb4028bb947eb7d3918ec1c771f6068bed81cae4b650977290c0645ef276b175af5294cf74b3dcfd9d05cc60776a6e97898f29333578c6de7296bce992f77f6fdcb99e2db5a5dacc1f18539f95138da0d1a07bf820e0c2d55", 0x94, 0xfffffffffffffffa)
keyctl$read(0xb, r7, &(0x7f000010e000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf5)
syslog(0x0, 0x0, 0x0)
ioctl$sock_inet_SIOCSIFADDR(r6, 0x8916, &(0x7f0000090000-0x20)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_flags=0x1001})
r8 = socket$inet_tcp(0x2, 0x1, 0x0)
getsockopt$inet_sctp6_SCTP_FRAGMENT_INTERLEAVE(r3, 0x84, 0x12, &(0x7f00003b1000-0x4)=0x0, &(0x7f0000e9f000)=0x4)
perf_event_open(&(0x7f0000940000)={0x2, 0x78, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r9 = socket$inet6(0xa, 0x200000000000006, 0x8010000000000082)
getsockopt$inet_sctp6_SCTP_MAXSEG(r9, 0x84, 0xd, &(0x7f0000655000)=@assoc_id=<r10=>0x0, &(0x7f00008a5000)=0x4)
setsockopt$inet_sctp6_SCTP_DELAYED_SACK(r9, 0x84, 0x10, &(0x7f0000bc0000)=@assoc_value={r10, 0x0}, 0x8)
bind$inet6(r9, &(0x7f000067f000-0x1c)={0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
sendto$inet6(r9, &(0x7f0000352000)="38", 0x1, 0x0, &(0x7f00001ab000-0x1c)={0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0x0}, 0x1c)
getsockopt$inet_sctp6_SCTP_ASSOCINFO(r9, 0x84, 0x1, &(0x7f0000cdd000-0x14)={0x0, 0xfffffffffffffe6d, 0x4, 0x0, 0x0, 0xffffffffffffffff}, &(0x7f00005e4000-0x4)=0x14)
setsockopt$inet_sctp6_SCTP_DEFAULT_PRINFO(0xffffffffffffffff, 0x84, 0x72, &(0x7f000004f000)={0x0, 0x200, 0x0}, 0xc)
setsockopt$inet6_MRT6_ADD_MFC_PROXY(r9, 0x29, 0xd2, &(0x7f000047b000)={{0xa, 0x0, 0x80000001, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x0}, {0xa, 0x0, 0x9, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x9}, 0x7fffffff, [0x1, 0x2d3, 0x8, 0x35, 0x71e, 0x8, 0x2, 0xfffffffffffffffc]}, 0x5c)
r11 = openat(0xffffffffffffffff, &(0x7f0000476000)="2e2f66696c653000", 0x400, 0x40)
getsockname$packet(r4, &(0x7f00000d0000)={0x0, 0x0, <r12=>0x0, 0x0, 0x0, 0x0, @random="000000000000", [0x0, 0x0]}, &(0x7f0000905000)=0x14)
ioctl$sock_SIOCGIFINDEX(r8, 0x8933, &(0x7f0000c2d000-0x28)={@common="62707130000000000000000000000000", r12, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$RNDZAPENTCNT(r11, 0x5204, &(0x7f0000662000)=0x401)
perf_event_open(&(0x7f0000b68000)={0x2, 0x78, 0xfffffffffffffffb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
add_key$keyring(&(0x7f0000a1f000-0x8)="6b657972696e6700", &(0x7f0000001000)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, 0xfffffffffffffff9)
2017/12/15 23:28:16 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
restart_syscall()
r0 = openat$selinux_avc_hash_stats(0xffffffffffffff9c, &(0x7f000022c000-0x18)="2f73656c696e75782f6176632f686173685f737461747300", 0x0, 0x0)
getsockopt$inet_sctp6_SCTP_PARTIAL_DELIVERY_POINT(0xffffffffffffffff, 0x84, 0x13, &(0x7f0000ec1000-0x8)={<r1=>0x0, 0x2}, &(0x7f0000a1e000)=0x8)
getsockopt$inet_sctp_SCTP_SOCKOPT_CONNECTX3(r0, 0x84, 0x6f, &(0x7f0000557000-0x10)={r1, 0xd8, &(0x7f0000b78000)=[@in={0x2, 0x3, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x2, 0xc76c, @loopback={0x0, 0x1}, 0x35c}, @in={0x2, 0x3, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0x100000001, @loopback={0x0, 0x1}, 0xc000000000}, @in6={0xa, 0x1, 0x200, @loopback={0x0, 0x1}, 0x3}, @in6={0xa, 0x3, 0x1, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x8}, @in={0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x2, 0x9, @loopback={0x0, 0x1}, 0x0}, @in6={0xa, 0x0, 0xd42b, @loopback={0x0, 0x1}, 0x4}]}, &(0x7f0000080000-0x4)=0x10)
r2 = bpf$MAP_CREATE(0x0, &(0x7f0000000000)={0x3, 0x4, 0x4, 0x9, 0x0, 0xffffffffffffffff, 0x0}, 0x1c)
bpf$MAP_LOOKUP_ELEM(0x1, &(0x7f0000fe9000-0x18)={r2, &(0x7f00000c4000)="", &(0x7f0000717000)=""}, 0x18)
clone(0x8000, &(0x7f00007db000-0x58)="189c865b30225488cbf293f5d60ec164ea17a7e843bf4f0a48120e7a4df80d2ed60fc32897e82a16b50765fbd6cf544a75b23bfbf61d42ce024411f1c7d494e99812afa1a3fff0e70f9b76eba1bc091ecd622f1c4649ea2c", &(0x7f00007ad000)=0x0, &(0x7f0000ed8000-0x4)=0x0, &(0x7f00006af000-0xfe)="33eeebdca0535e95a11126a922679fbaba261a2694a91ad8c8e3820491f6aff74cc7d5cf2af796e7e13ca7feb1ee86b0e5ad97c8ca7b84bdbcbaebe1fda413b09ccbf0803d4c12f05ad0a11eb91421d39b29052503b68381945174def159be5153a7b9bf92847f9e2870ffac64a978edae8ae812d8af50f125339c20f85301e84af2ca142c839ae01c58c51b3aa6eab67bcb613cedc11e605e9bd738cc76a59f5dd7645642c95057d33826407b18b8f52fb8592c3bfa7f57fb08167bdd3f42a401e13e73930f13ae7dbfe3f2add11c5081aea68b99e173e02a66f72aed4cc222308cd537ca021e2c98af8eb3fd1169deee507f2302cb8a70a724d4058791")
bpf$BPF_GET_MAP_INFO(0xf, &(0x7f0000424000)={r2, 0x18, &(0x7f000033c000-0x18)={0x0, <r3=>0x0, 0x0, 0x0, 0x0, 0x0}}, 0x10)
bpf$BPF_MAP_GET_FD_BY_ID(0xe, &(0x7f0000d4f000-0x4)=r3, 0x4)
sched_yield()
getpid()
r4 = socket$inet_tcp(0x2, 0x1, 0x0)
ioctl$int_out(r4, 0x2, &(0x7f0000eea000)=0x0)
mlock(&(0x7f0000a0b000/0x2000)=nil, 0x2000)
2017/12/15 23:28:16 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000682000-0x78)={0x2, 0x78, 0x45, 0x2, 0x0, 0x200000000000, 0x0, 0xcffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f00008ab000-0x8)=0x8000000075)
ioctl$DRM_IOCTL_AGP_ALLOC(0xffffffffffffffff, 0xc0106434, &(0x7f0000fe5000-0x10)={0x0, 0x0, 0x0, 0x80000000})
r0 = syz_open_dev$sg(&(0x7f0000719000)="2f6465762f73672300", 0x1, 0x0)
getsockopt$inet_sctp_SCTP_SOCKOPT_CONNECTX3(0xffffffffffffff9c, 0x84, 0x6f, &(0x7f0000b51000-0x10)={<r1=>0x0, 0x0, &(0x7f0000755000)=[]}, &(0x7f0000756000-0x4)=0x10)
getsockopt$inet_sctp_SCTP_PR_ASSOC_STATUS(r0, 0x84, 0x73, &(0x7f0000c44000-0x18)={r1, 0x2, 0x1, 0x8f1c, 0xfffe}, &(0x7f000076b000-0x4)=0x18)
r2 = bpf$PROG_LOAD(0x5, &(0x7f0000094000)={0x1, 0x2, &(0x7f000000c000-0x18)=[@generic={0xd885, 0x0, 0x0, 0x7}, @generic={0xd395, 0x0, 0x0, 0x0}], &(0x7f0000000000)="73797374656d00", 0x1, 0x80, &(0x7f000069e000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, 0x0}, 0x30)
r3 = socket$inet_udp(0x2, 0x2, 0x0)
setsockopt$sock_int(r3, 0x1, 0x2d, &(0x7f0000928000)=0x163d, 0x4)
accept4(r3, 0x0, &(0x7f000059e000-0x4)=0x0, 0x80800)
setsockopt$sock_attach_bpf(r3, 0x1, 0x34, &(0x7f00002c9000-0x4)=r2, 0x4)
write$tun(0xffffffffffffffff, &(0x7f0000970000-0x1b6)=@pi={0x0, 0x0, @ipv6={0x0, 0x6, "337654", 0x18, 0x0, 0x1, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, {[@fragment={0xd18dfcf00073cf10, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0}, @fragment={0x0, 0x0, 0x0, 0x3, 0x9, 0x0, 0x1}], @udp={0x0, 0x0, 0x8, 0x0, ""}}}}, 0x44)
dup3(r3, r2, 0x80000)
setsockopt$SO_ATTACH_FILTER(r3, 0x1, 0x33, &(0x7f0000299000)={0x1, &(0x7f0000f18000)=[{0x6, 0x0, 0x0, 0x0}]}, 0x10)
ioctl$TIOCGSOFTCAR(r0, 0x5419, &(0x7f0000f9b000-0x4)=0x0)
2017/12/15 23:28:16 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair(0x1, 0x3, 0x6, &(0x7f0000bb6000-0x8)={<r0=>0x0, <r1=>0x0})
ioctl$KVM_GET_SUPPORTED_CPUID(r1, 0xc008ae05, &(0x7f0000b87000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x4000000000000000, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
setsockopt$packet_int(r0, 0x107, 0x4, &(0x7f0000efa000-0x4)=0x1, 0x4)
ioctl$TCSETA(r0, 0x5402, &(0x7f000006e000)={0x84fe28ec00000000, 0x400, 0x7, 0x9, 0xcb, 0x5703, 0x7f, 0x0, 0x80000000, 0x58})
r2 = socket$inet(0x2, 0x240000000003, 0xb)
r3 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000130000-0x10)="2f6465762f73657175656e6365723200", 0x200000, 0x0)
ioctl$sock_SIOCOUTQNSD(r0, 0x894b, &(0x7f0000424000-0x4)=0x0)
accept$packet(r1, &(0x7f0000d0a000)={0x0, 0x0, <r4=>0x0, 0x0, 0x0, 0x0, @remote={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f0000af3000)=0x14)
setsockopt$inet6_mreq(r1, 0x29, 0x1b, &(0x7f0000096000)={@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, r4}, 0x14)
setsockopt$SO_BINDTODEVICE(r1, 0x1, 0x19, &(0x7f0000aba000)=@common="7465716c300000000000000000000000", 0x10)
setsockopt$bt_hci_HCI_TIME_STAMP(r2, 0x0, 0x3, &(0x7f0000185000)=0x85a4, 0x4)
r5 = syz_open_dev$sg(&(0x7f0000fa6000)="2f6465762f73672300", 0x0, 0x1)
setsockopt$inet_tcp_TCP_REPAIR_OPTIONS(r3, 0x6, 0x16, &(0x7f0000abc000-0x30)=[{0x3, 0x7e6}, {0x3, 0x3}, {0x3, 0x4}, {0x3, 0x8000}, {0xa, 0x3}, {0x8, 0x1}], 0x6)
personality(0x800000)
r6 = fcntl$dupfd(r3, 0x406, r3)
setsockopt$inet_udp_int(r6, 0x11, 0x64, &(0x7f0000747000)=0x5, 0x4)
ioctl$KVM_SET_CPUID(r6, 0x4008ae8a, &(0x7f000033d000)={0x7, 0x0, [{0x80000000, 0x2, 0x4, 0x9, 0x65, 0x0}, {0x80000019, 0xb78, 0xfca, 0x1, 0x9e, 0x0}, {0xb, 0xfffffffffffffffd, 0x3, 0x3ff, 0x7, 0x0}, {0xb, 0x4000100000000, 0x8, 0xffffffff, 0x80, 0x0}, {0x1, 0x7, 0x0, 0x6, 0x7, 0x0}, {0x7, 0x100000000, 0x6, 0x5, 0x1, 0x0}, {0x4, 0x100000001, 0x4, 0x0, 0x5, 0x0}]})
ioctl$KVM_SET_PIT(r5, 0xc0481273, &(0x7f0000d3e000)={[{0x0, 0x0, 0x0, 0x0, 0x0, 0x100000001, 0x0, 0x0, 0x0, 0x0, 0x400000000, 0x0, 0x0}, {0x2, 0x0, 0x0, 0x0, 0x0, 0x1c7d, 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x4}, {0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x3, 0x95de, 0x2, 0x946, 0x40}], 0x7, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
getsockopt$inet_sctp_SCTP_PR_ASSOC_STATUS(r0, 0x84, 0x73, &(0x7f00006a3000-0x18)={<r7=>0x0, 0x8, 0x10, 0x1c2, 0x6a6c}, &(0x7f00002ec000-0x4)=0x18)
getsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(r5, 0x84, 0xa, &(0x7f0000567000)={0x2029, 0x7, 0x4, 0x42, 0x4, 0xaca, 0x7, 0x9, <r8=>r7}, &(0x7f00004d6000)=0x20)
getsockopt$bt_sco_SCO_OPTIONS(r5, 0x11, 0x1, &(0x7f0000d41000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000e52000)=0x1000)
getsockopt$inet_sctp_SCTP_STATUS(r6, 0x84, 0xe, &(0x7f0000b9f000)={r7, 0x49e8, 0xb48f, 0x7, 0x100, 0x7, 0xfffffffffffffff6, 0x3, {r8, @in={{0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xa2c5, 0x8001, 0x2, 0x0, 0x8}}, &(0x7f000031a000)=0xb8)
ioctl$TUNGETSNDBUF(r3, 0x800454d3, &(0x7f0000218000-0x4)=0x0)
ioctl$EVIOCGABS2F(r0, 0x8018456f, &(0x7f00004ca000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
io_setup(0x3, &(0x7f00008c8000)=0x0)
io_setup(0x9, &(0x7f000009d000)=0x0)
io_setup(0x7, &(0x7f00004bd000)=0x0)
io_setup(0x8, &(0x7f00001df000)=0x0)
io_setup(0x2, &(0x7f00002c2000)=<r9=>0x0)
io_destroy(r9)
ioctl$KVM_SET_CLOCK(r5, 0x4030ae7b, &(0x7f00009a0000-0x30)={0x1, 0x8, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$EVIOCGBITSND(r3, 0x80404532, &(0x7f00009bc000-0xff)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
sendto$inet(r2, &(0x7f000013d000-0x5b6)="9b411fe87308bda68cf69b00fc456354c7329f7c247c5ae03e1974135e8db80e3a8ad4c76c4f7bd9611378c3b492084207feb8cd52e4aab2e576ffb0dafcf1c7579fcccd74875824b762d27e483eb885e18579131a87c4309c05830e357f575c0a7f7f346d0d61b5459ada9ca0d895d6279639c67a49b5763273aeb5f2a9a47d128b01a19caefd5e8de29ef02bc69f88e990313a5c6ca4d7553293ff5db0766407e37e5746f7a94d3a1ed3f1d9efc93ba833a7ae86b08fec0f30236f17d5ecf9bf6459b385c3079c62aa19450926de608f13b8493004baa0ea070257347a686123aa5e37ea428ab6d90aa0a5aaa0178237d8e1e8e31f920ba1c328085b98598721dec8437363864f82c9594f77be5c44effc3bcbc548045eb63044f435aea680eb14f53fa6156a06068b4ef0eb113753f6b0ba538e9ef2aabb9c92b8ab68304bd61a1330bdfde693aa838cbda772f976db33d1a7f1481af25358350c1513113389a6dc66d074c98d60eb6b70a207004596fa666813eb4af421ea906022f10bd0b4683312a5d46ef3d746ee68e67b923c7e663316f74ada47485e0df9d3bb20b0e5a6296fb95f8e787146115709bc8c913d953cf33a6066cb52507627e2cd95be580b756a40ec7f7b5875c41ad1941737c7ff0127c7ecac001c3679105cbf2ea81ed4685194e5d19d46b8fb1add32d3fe0717a555ac5c12aed602a406c9acd2be01b8cf5b180e4da32a34c1b624316da27bd16797fb28665e3b8af33189494bae59477d92d936babbe9f6697bfa9e22bebcc139683c2a00fd59d91034e6ac258b9de2ffb1268815754c1e4faebbf0dd5f30319dbcc077e29ae756744f19e4f495b7fb1c45b0aeefa6e8ef5932527967d965282300e32b5507a7d4ffc9fd5bb583cf6bc1d3b88ec5ac079aad45f32a3412cf6d3685f74f865369d6f7c965d842e9dc4a34a89e4f6e92aa1add55388c4101355fb944f67d902b7ef45547d761199710bcc9a9019b15ab652ced16ff77a4bc5592d1efb3f562b1ef062bb7c4761129c3c9a09ed6c54a3ae3bb26a5d7fc481738500ec5bd38bc27d0d9b758ca5397dbe1856eeb4d55a94cccaaf47df693e87bf2a966550ba7fb5cd44da3d88c112a2d07d584ec5b02c5c90955cffc5767aadac21291ad9693d6a5c2ec4e9ef6630045681bf824aac7e1d908fa7ebbd5fd2f5d637ecae2d1b993b6387527aa471478fe3df974e52046c6656341a5eb0d7629e491f2c7e28db50ca5d72de48fe1f9f953ee5a68c9164e325b93f5c5ebdb35aeac338abe5072aa398048995359ae23760a2ce29df382dde331d6f6949e3b5e4e1e1dadf225f0b841c2eadf27f2694abfcaa811c68ab8c00bf017e965f8ee20a6af917725dc944b8f379504010f080a48582588a577c321e939f8de6e113257b38f8ff6df98e9b00d9299f0b4fa60f7ac2dbe", 0x401, 0xfffffffffffffffe, &(0x7f0000729000-0x10)={0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
2017/12/15 23:28:16 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = getpgrp(0x0)
setpriority(0x1, r0, 0x1)
r1 = openat$kvm(0xffffffffffffff9c, &(0x7f00009aa000)="2f6465762f6b766d00", 0x1000000000000801, 0x0)
r2 = openat$sequencer2(0xffffffffffffff9c, &(0x7f00004aa000-0x10)="2f6465762f73657175656e6365723200", 0x2040, 0x0)
r3 = ioctl$KVM_CREATE_VM(r1, 0xae01, 0x0)
mlock(&(0x7f0000019000/0x1000)=nil, 0x1000)
ioctl$KVM_CREATE_IRQCHIP(r3, 0xae60)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = syz_open_dev$sg(&(0x7f0000572000-0x9)="2f6465762f73672300", 0x0, 0x0)
fremovexattr(0xffffffffffffffff, &(0x7f00008a5000-0x13)=@random={"73656375726974792e00", "2f6465762f73672300"})
ioctl$KVM_CREATE_DEVICE(0xffffffffffffffff, 0xc00caee0, &(0x7f000097c000)={0x0, <r5=>0xffffffffffffffff, 0x0})
r6 = openat$rtc(0xffffffffffffff9c, &(0x7f000075c000-0x9)="2f6465762f72746300", 0x0, 0x0)
ioctl$LOOP_CLR_FD(r6, 0x7003)
dup3(r4, r6, 0x0)
ioctl$SNDRV_SEQ_IOCTL_GET_QUEUE_INFO(r5, 0xc08c5334, &(0x7f00009b1000)={0x2, 0x8, 0xff, "71756575653000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r7 = socket(0x15, 0x80005, 0x0)
r8 = request_key(&(0x7f0000ce4000-0x6)="2e6465616400", &(0x7f0000ba5000-0x5)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f0000ada000)="637075736574212c2400", 0xfffffffffffffffe)
add_key(&(0x7f0000b9b000)="0000001ffe", &(0x7f000025c000-0x5)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, r8)
request_key(&(0x7f0000960000-0xa)="73797a6b616c6c657200", &(0x7f0000449000)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f0000fe2000-0x10)="2f6465762f73657175656e6365723200", 0xfffffffffffffffe)
request_key(&(0x7f00008a7000-0xa)="69645f6c656761637900", &(0x7f0000741000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f000094a000-0x10)="2f6465762f73657175656e6365723200", 0xfffffffffffffffe)
r9 = add_key$keyring(&(0x7f0000198000-0x8)="6b657972696e6700", &(0x7f00007f8000-0x5)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, 0xfffffffffffffffb)
add_key(&(0x7f0000f48000-0xc)="00025f7265736f6c76657200", &(0x7f000017d000-0x5)={0x73, 0x79, 0x7a, 0x1, 0x0}, 0x0, 0x0, r9)
getsockopt(r7, 0x200000000114, 0x2717, &(0x7f0000c36000-0x1)="00", &(0x7f0000000000)=0x1)
getsockopt$inet_sctp_SCTP_PARTIAL_DELIVERY_POINT(r2, 0x84, 0x13, &(0x7f0000eb6000-0x8)={0x0, 0x4}, &(0x7f00008c5000)=0x8)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$bt_rfcomm(0x1f, 0x0, 0x3)
openat$cuse(0xffffffffffffff9c, &(0x7f0000001000)="2f6465762f6375736500", 0x382, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:16 executing program 4:
mmap(&(0x7f0000000000/0x26f000)=nil, 0x26f000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000026f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000270000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$vcs(0xffffffffffffff9c, &(0x7f00001fb000)="2f6465762f76637300", 0xc0, 0x0)
mmap(&(0x7f0000270000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000270000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000271000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
accept(r0, &(0x7f0000015000)=@rc={0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0}, &(0x7f0000272000-0x4)=0x9)
getpeername$packet(r0, &(0x7f000007f000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @local={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f0000270000)=0x14)
mmap(&(0x7f0000000000/0x276000)=nil, 0x276000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000000000)="2e2f66696c653000", 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f0000976000)=0x75)
r1 = perf_event_open(&(0x7f000002f000-0x78)={0x2, 0x78, 0x46, 0x2, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
mlock(&(0x7f0000005000/0x4000)=nil, 0x4000)
socketpair$inet(0x2, 0x8081a, 0x2, &(0x7f0000f04000-0x8)={<r2=>0x0, 0x0})
ioctl$sock_inet_sctp_SIOCINQ(r2, 0x541b, &(0x7f0000a31000)=0x0)
r3 = socket(0x80000008, 0x2000000000000a, 0x400)
getsockopt$inet_sctp_SCTP_DELAYED_SACK(r2, 0x84, 0x10, &(0x7f000011b000-0x8)=@assoc_value={<r4=>0x0, 0x400}, &(0x7f0000050000)=0x8)
setsockopt$inet_sctp_SCTP_RTOINFO(r3, 0x84, 0x0, &(0x7f0000c4f000-0x10)={r4, 0x1, 0x240, 0x93}, 0x10)
r5 = socket(0x11, 0x80002, 0x300)
setsockopt(r5, 0xfffffffffefffffe, 0x9, &(0x7f0000a43000-0x1)="f7", 0x1)
r6 = dup(r1)
ioctl$TUNSETIFINDEX(r6, 0x400454da, &(0x7f000057b000)=0x10)
syz_emit_ethernet(0x42, &(0x7f0000ef7000-0xee)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [], {{0x20000006558, @arp=@ether_ipv6={0x1, 0x86dd, 0x6, 0x10, 0x5, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @loopback={0x0, 0x1}, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}}}}}, 0x0)
ioctl$sock_inet_SIOCSIFPFLAGS(r5, 0x8934, &(0x7f00004b9000)={@common="697036746e6c30000000000000000000", @ifru_addrs={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bpf$MAP_CREATE(0x0, &(0x7f00005ae000)={0x5, 0x7, 0x20, 0x2, 0x1, 0x0, 0x10000}, 0x1c)
2017/12/15 23:28:16 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
seccomp(0x1, 0x0, &(0x7f00007f8000-0x10)={0x1, &(0x7f0000ed2000)=[{0x6, 0x0, 0x0, 0x407ffc0003}]})
socketpair$inet(0x2, 0x803, 0x2d, &(0x7f00007e4000)={0x0, 0x0})
r0 = semget$private(0x0, 0x1, 0x80)
madvise(&(0x7f0000ce1000/0x1000)=nil, 0x1000, 0x4)
semctl$GETZCNT(r0, 0x0, 0xf, &(0x7f0000466000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
rt_sigaction(0x1f, &(0x7f0000743000)={0x1, {0x3}, 0x4, 0x94}, &(0x7f00003f8000)={0x0, {0x0}, 0x0, 0x0}, 0x8, &(0x7f0000707000)={0x0})
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r1 = syz_open_dev$mice(&(0x7f000078e000-0x10)="2f6465762f696e7075742f6d69636500", 0x0, 0x40000)
mkdir(&(0x7f0000025000-0xa)="2e2f636f6e74726f6c00", 0x0)
r2 = open(&(0x7f0000268000-0xa)="2e2f636f6e74726f6c00", 0x100, 0x0)
mkdirat(r2, &(0x7f000000b000)="2e2f636f6e74726f6c00", 0x0)
removexattr(&(0x7f00000ba000-0xa)="2e2f636f6e74726f6c00", &(0x7f0000dff000-0x15)=@known="73797374656d2e736f636b70726f746f6e616d6500")
mkdirat(r2, &(0x7f0000018000+0x9a2)="2e2f66696c653000", 0x0)
r3 = openat(r2, &(0x7f000001b000-0x8)="2e2f66696c653000", 0x0, 0x0)
faccessat(r2, &(0x7f00000e2000-0xa)="2e2f636f6e74726f6c00", 0x1, 0x400)
r4 = socket$key(0xf, 0x3, 0x2)
ioctl$KVM_CREATE_DEVICE(r3, 0xc00caee0, &(0x7f00009a6000)={0x2, r4, 0x1})
mkdirat(r3, &(0x7f0000017000)="2e2f66696c653000", 0x0)
r5 = openat(r3, &(0x7f0000fb0000-0xe)="2e2f66696c65302f66696c653000", 0x10240, 0xffffffffffffffff)
getdents(r3, &(0x7f000062d000-0xd1)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd1)
dup2(r2, r5)
renameat2(r2, &(0x7f0000027000-0xa)="2e2f636f6e74726f6c00", r5, &(0x7f000085d000-0x8)="2e2f66696c653000", 0x0)
setsockopt$inet_sctp_SCTP_INITMSG(r5, 0x84, 0x2, &(0x7f0000f67000)={0x7, 0xfffffffffffffffe, 0x852, 0x1}, 0x8)
getsockopt$inet_sctp6_SCTP_GET_PEER_ADDRS(r2, 0x84, 0x6c, &(0x7f00005ef000+0x4dd)={<r6=>0x0, 0x1000, "8a71aa97baff2e08b9da1deea3f2afc14f616569d7810965e3df06a3dd96fcdfe438606d07c0a80a5c8360f253864b33cb8114297ffbcfed8a991ed9b220922b5f63209b99798b090ef88f3b6c7c9c04673ceb2f238b43809365ff7f3c3f0ba01b6143501d74772704b91abccb92549d4785f4dd635b449a5427a4e732dbcfd5e1411ca1726520d18697af370837f9169f9eb206a191c11d920106a1a59d0a3216df90979f58e4e588e073263a73907a49c3704be4bb2027dfda2eab4736919dfefb88c4f494ca05362f7b24a921b33358cb8d92bd34b5fb6937f228d3e48624353c83139ad02e2370299c865f33f5d74ba302255ef86276566957c5161382bbc74d02ae69c58555270d41fef977c4a89aff4feeed3f233f2d38f401da14f3beeedf48cc94d571f3e020a20eebf533e2281535cdf549346fea9573489e270a342260e0f7f2b77fd4135dd4967a68667289c034560b83540a6ac427d0f09b49f7306ce81ba651a750b89afa3948a632468122f2206ca5fb555397fea27beddfaf7d023b593de941af92cdf6501f84c17fd568e60a5e5641f452efacb704df525bc0facb68ffe79f93595efbdb6167c9069f4a626c6e5f7f26ef2900879235e847a6a350b48357d213fad083176000f6e7eddae23ff5d9b9bf009780bf9543e1a9ce55f8b142ebfcd9e58222479d76a6458d5c08fc386523c09ef4c91faf623af126c823b360e1a41e275f55592c3e41404cf1206fea7d2baa0ac1706699bfb28cce493b460a3ba102de60495edf3c55b180d78a181345c26ee4f4b2ebd09cb364cb4b6e6a0394186af1678086b8bc06cb3cfe49f3de792c7f9ed2253084e7f1f1e43357ee563a8b0ee588b3cac3a05c995995d6bf9cafb68a30bf3ed7d04486167fe18ff9e115af57d8b48a5228c621ab30912cba540dd7cc49b1a7a971b1af20e3f6038084e96050ede12a1833a1e4b998ac2aeef3436833f959de381b6c07e467e39a7fe1e58683df0ae6cb19e6d32fcd9b81b40fc8f1273a9eb8b6f22fd6d828097c54a516aa4057afcf88f78f598148805c9a4204088fdaec24c7e5a7a8bd241ef4a7541c4baca0121a049240dd83b59613076e800884f8560b9c90bedb403cd4b51403b58362da86e519874cf30b585bdbf87bc0370b3ad0891d4266618aed04ea25e941683397807b121ec673ff07ce70cd63650a6ed3482d979a3a77cd193facb3b963ce538ce0d11ea8498f8cf13322442e7979b946d9898ddeb65f4b78a1626a950da396abd3cd2acd0327ae2cb4ae844215849aed4cfc287933fa440c10891f72d3e1ea291e472111d82438e0174c0f03d8f4ca1414b21bb47d98142680c7d0409b9421cef49326de4db389075a040725dc3ada1bddad61b9f896503108f4be9d517883f431efd73ab3afac400f14daabe70afc2f0366d36849eb1a7b13e85b82e29862edd6c7852faead4807878a6206d3433ad5a099ad3a7a888427064a975f409303547c6d6b9d87a5c81b1e14abeebd7483f95a467b5c69f6c161510c1ee477991c8d5c172693e9abeee7f501238a0c01072860a02b7559b89ac72b81d1ae078332ce29a259d5db7bc4bf39ae9731e50ed915fd466ade5ad55dd52c7a2d80cf7c58198f3869ca3468e02203ba75b0587b878b5dbe9dc68067f3fa9b1fb2195b7f76026ed2b4e480ff3742550467989e5380bd4f4ecb0903ca096c3706a2498fe6d952c7df75bb1116f1aafc3f6480f726c4e00dcc636b6464326b9753e51cd434138fa52fd628daa3c6e25ec348cc741dc1349cda6089e9d392a2448f98c40b37f8de591c9a744c0383c6a502dc9eeb1692bccc0ee3f23693152ba2076c488d572245bb6cb2940da9551fa8ba5a605167cea10c325f9b735fced29773bac198fdcb33c9e23d0ab6ea3f41bdeb4f22ed067409b124fdcd3ca6d00cdc9c553fd5b9a2194365326b52dc6d30db33ef51b68c7c88dac63318b11bb799754eb14cb447e860fa16ceb7d2662db9b125f5edb7dab628a2ac7bcf2bbe55e40d28a3b7188b12070670dd633a7f6fc16b68821724ca53bf2f056cef5c4e1877ef08becb66f2e0608f6df615998fbb3c8f7c341cc3482db3dc55be2c1b5c8f930d67d471238dd197ad379967931390e71a1b96faa16f225f8bcea90a231eb0d76b7d361bad5f47df7cbdec38ae22b4aaee539370b9d64b0c9074d0170d6129038e754277330ce5864ff3ec30a5c09a702faa2c4883687200f21d26aa2a5edb5e136658abd8d55c0090e46d134a1fa0dde6711fa1cc942ccf9a9d4a86f5d066522a196e32bb4ff44ad03653ab7b84ae58973fa32982108f43b2f09fadf3d603747b729230e5b9e1f9f64663babd7a36d6ad203c6fc1374143a6767337ae94c77ec6cf096d87d4681340c840647b19a64be530b2b0b920b473a831e5361bd5469b423c168a9b56997d6189db476a200d51258739a3d94007dda7fa4c50eaf665e8b7bdfc04981b62bceb451ff295fb7e924d82182cedaa192e564bfe19cf860e2c06cc35f2791871913140b229095b6105dcd215d46f2d1c962d48c6ef03b78fecb1909d2257922913ec0630e22efe0c2642f2f6399df8ecf252b35e5195d82b31c314c7017d96f71830c846004ef1403a225b33cdc99a0af8daf16e56e7ddc2e46d7e362bd8c47386eb3512978a79970c5406b859494d0cc159b3298a3f91b0515f03873180a5564bb06484ac5749f6ab2fd6d3e497b35bee2b56e1d71a8b4ccd4a67e1d56c8c6b0a25e3812922edd6846a16f2f673fcdd19383d967c0b4b2582e83b6f88695b3af7d9da9d3812890521cf328dcd1618de734394a18c6322ba82a0d7d3edeac2a002f475b11fb618b0160eacabb4df4f43056966154ab1ebdf8cbaf03930b800b21f9f33af38993e47799488e359bccdd7a0969e2f0f7721d2510d9a9d7cc64f8dac04245d5f7fbef41f68e5ac606a84450569aa334b3ebd91198e176419c76e8f9a29ec1af26526bf454d5a0f6970a0f683e6d9d26a1fffc9abb75877e02c117986b6c62a1d799b88b03800efef0124d104fabc4c1ff8b47c2681977eeb652ed35bb446e4cf4ad901e0fb8c4c0b9af3a54969d60faf0b32a709128782acb9f4b3ebd398692cf7ba69323f6a09ae6a985c06a7706a77fa8940009ed849ad466847ae508ce91201baa3bcc18b64f298f99fede77888900e16fd819461627386f811d5baa74f5e0699f967a2dd4694252c05477867ad60b37e9676e617193388476383ceaacb90645736c5bc6ca1f2516c745a518469ca0ee0da8ab5aa137faf554a392972e59a308572f8d8473d77bdcd2d35a651744856e5a7abdc65ea457bcd41314b889dc846bd4fdf9ba64452c4e19de5e52705e9787352c611834c8981e13128c49903dbc58104a57ecd2ce70e49a8a7ce7cb62dd409873941d52246822a38bd0a2b9e7a1d04dabf1978d11be35221260e139879a7760bc5f5c28dc9a2910bd511afd75ea14b6cc96546544b46c3ed8edc41ef500aba9fd7b17595e172dd1e473bb908f4f092959407563292fa522aa062791728a4b20b03c049bde597ef4450526c25dfd905c22c576846fa26e2e63d2b9c7f6aea536744cf84b2b32191372b2af991d04d8903018dd80e8d2f65619cc16526d6db89da1e002bf40a4e8b644d35eebc7c541301a9bc437829978ec98dcecafe49bdea0713d0ac3528395ecf21aa58702b6007fcb558881ac995bed2ab9760d34eb3264909d0d5d7fc5276003d1994609f28c0ece64ff5dc08565882c8c6f4a87bfd98d3123f1b4af2369cf5accb2cdc36ebc928f01fee358dcbc830a1683e76dc37af1d69d77e91998a73ed4a122905fd9f67bb5920042cfe6a9815f1afe419f75d6af72422dd27815dc04aa355075e69ec936ad7d8a165960643e1190388d900a86cb8172c854197c1ceaedee646486202a592078f0c5457d83d38ad26621c3012810ed5b4d914ffefdacdb9d695c977245486a6aed8331c4c7d97df9b95718c598d89a1d9d68555f67614b228ab7728917f469baa651e8d03ed784cc5be7fcb935295960b1fb6fe22a96383351d2905e3b652aaf016415a553ea5488858b823aaf77ee2cd71bba311f842a05562f037a6eaec057571c72869c7d152c1825f6e7f024aa29162758b5ea091ac3aac8ed9006f90ac597d9307c064d19bfe4074331b937505560934b05a0cf97b2a0507bd9a878eb90f1bd0557a2859d27218127e71f22ecddc6c8eade09bc0da8bb2c0df79621075f14ec435ca0567181f0b34337274ccacadfbe8e8c13e01ec45a103f705832cd18ffda125eae2f4bdf17ec0f0d80e6b88ca1dd6f6e9e3124a5cfec0bd7b7f4a741b08255ac3dc68aafbc5e6d331c42b371c43baa5fa6bc5d399a489611eee2290f80c697fa72017762b40d41cda9d8206e5684ab57c483ecab9ea9d59d1557fecff511adde008e68f20b48713584afa212fa3ca63eb8c6acf42192806acadf80bbadcffea08739504057b39cbc18009ed316a7b16b4ce1506417efeb48281ac07e6098c0d1a272e607639f54bc3088360588ea6cc6590857cf36e6cd43a1748cd8d71d3c96f2db790dbfd54bbe4e4905f8ee71823cb7a657267d2b73a3e5dd87dc3b975e405626387ce332ebe774c7450913b41fbd2bfb23345fc4120fd9b65ec9be288b3b0f1df692bbb7e3ba623ec034f20962b98d72d07e6f77c605894678b8cf61b408fffd5c12f76f61e2873a36c514289821b0d7fbdb15a2fd3669c9c04d982dac0e9db84c95b72a432cdd7054f163aa42a4e56fffdbd74a2d6c16ca4111339bf22f2b4f5642cd51bafdadf2b33c6135109b8aec2bc24e92bac68def1a8fa62c016e1836b0664b3a58294364fd2e14031f5611c25bdaf7da3ca4b081cb35250f87f042d1adac4c04a91061717b7279c08aeb67eab637d9f3fd80215b3747799e9fb0b0ad90ed4ac9216cbb8f9163f4814e5c2b1cd0cf3cb35fba5d1ea06d0561082ea9dcd27f4c741363d89006ae03945d485970e9e335d0c2e2d08f8cecd2443025fa45bb174b9305cb372a1bcf6cf93e3c0a96c096f327919c235ddfc1e20751053f2aa9f1ff875ed52866244f81ba3fbdb50d96074ef566f8138e895bb1578548883269fc9e68ea147334849ffc26a9bfeeac8c96a5e69aab6f9a8944db75f8e0d4213f17c7d657ae42df46f2ee930a90605ff5263ed93972f2454473beb6e14e52059bd820bbc5c7194160eecb508ba81a65704aaee14c470b6c747de4ac0d916789351fd83997d67cd0f011b9d0575c842f8d3c562191ce785041709417ae9b79d0dcb1805b39722fc37e31742fcd58775da1b28fdb23ec4c3c3b4f23f331d5857b5d3882c97f77baebf1b704c6cc55000a30fa6f37cc3b7e991e6746c465ffbb4f785d728a9d037b169515d74f1a992e5204f1fe08d6a73fc402e2dca990210783a4807c4ee5efd52946be43643418bb9641271d733b44b2b0325fd6dffa95e3fd7a794a2adcdbcf5897ad1fc114b143bb66b9b0b068b3dad1fe42c87761b8dde54f385e99a0fcea3fcf8b4e3e2f8663a4af9e8f8debd0e4cb881654a29c0a8dbc72ec9590cbc0ad291a589c56e892264de0b18b1de23f80d98f090c675f296066fb2764f21e29b7506dd8182750e2f157650c6a05a5bea0bdf223bdbc0f82abda725a9e112f4fc13b8ca2a5a4a3298795932b443b21c7614a53146d858dd59f37b3fcfce7f46751395a5f5243594397e1565502cf6e2ff9862116b69cb70f26ada68cff18582dacfa0"}, &(0x7f0000365000)=0x1008)
setsockopt$inet_sctp6_SCTP_DEFAULT_SEND_PARAM(r5, 0x84, 0xa, &(0x7f0000336000)={0x9a0, 0x4, 0x8000, 0xd25b, 0x3, 0x7ff, 0x3040, 0x401, r6}, 0x20)
ioctl$sock_netrom_SIOCGSTAMP(r2, 0x8906, &(0x7f00003bb000)=0x0)
getsockopt$inet_sctp6_SCTP_RECVRCVINFO(r1, 0x84, 0x20, &(0x7f0000308000)=0x0, &(0x7f0000c3b000-0x4)=0x4)
set_tid_address(&(0x7f00009dc000)=0x0)
2017/12/15 23:28:16 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0xa, 0x3, 0x3c)
sendmsg$unix(r0, &(0x7f000020e000)={&(0x7f0000b36000-0x1e)=@file={0x0, "0000007f0022ff02200c000000bcbb5b340100000000"}, 0x18, &(0x7f000013d000-0x20)=[{&(0x7f0000d38000)="2ce4c9", 0x3}], 0x1, &(0x7f000053e000)=[], 0x0, 0x4004084}, 0x8000)
sendto$unix(r0, &(0x7f00006dc000)="24b706151ff14cfbe1826af510342c9aa739e6aa7fe3a2f9830930666dd463b7179733b7cacea1d03ae32b66f3eabff2c016848577aa19e2c87b8bfd3c32d8d1470a47bc84cf3dfaf9fa8cd585b6cedbbf62ba3f73b222e5bb4e12c8389fb489c608e0a31d7503b3d583ecb7d277038052c10fb44d5a11cb8ae6822f5962826544b42519233552045d58d61a2f66d58581b288c41761826b1805f814927f541fd75c32a516d11ba9271f92b589070401c6d5ab9e8f34b3664f2ba1896f169ef4b82e9c58b2d03ea8ba0a4bc7ed54ae206084ce3801b2e5c26437b7db6f0436de8ae41b655c07e3d7c5d7c9974fd93b00b8dd952621288d7494160f92953e87dd12a42534983811f4f4840244cdee811e964d9c45e316c067f60b1009e9caa536d5f345bb44ff20b906000000063336a6b26caabe66a5a62afb253bd0107fc32c1db527037e6bd3485783197954d636803a233f809de2e934aa3208dc3fdfe6c75e5a29a187f0738021e58250a2539cd5edb84db12ac2442940e5128c61592959e10671f372904bba26fb669551bf43bba19799d250fdb60bea95fdf02d5352db0c1e26c9adc23fdc5d53e453849631527d89e0a40b8103f74e2eb475f989e33deddb43f4dfc07520d7ba1c51b3c09d8c355e52a75a45627a12a3cdceb473d48e7a115e5ec186d0742729142faeaa6b74c1c0217088aae808eeb58de05a7689e08ce22d40d488c8660c9c72d36feed76cc7658c0da9bffde76d431df63e4f135ca194c55f2c58e3a45d0ae451ca6fd8a5e56586954d408cfed1ad522e3a7c32f753bdd40b0e34b8e5de77f89a024a1c94206389a85e8837269434f352c61a405b3840395f71e9ddcbb6142719106b7a8e004505a88429e9f68a514cef25050ab36d2170177fcb927f0d6c4b0676204ce96f668be99d8b721336b1f9a2c729918ac5e8531ea28ef8af05776b82a6fb2e113dc75d997cd0a8fb2a6f1c1df2391ff75a5e2dfe190f35d97a3ae686edfc0a36fffd90904ef18b000759ea76b43526e1405b7776ddac4ac0d2e8befc3589f9564003d675bf43f1e97a1f3da6ae03c942d0f4653741a3531028816b17e75e7750b53781bc7587ef1892ad26e2ea0e0f8f9b64bd3fdde868b8f2b80b0a4bec7073e06fcdc611111a48dc15e65356004e628900cae29d311751d59a45a207767dead4e8e3f5349ba94dfcee0a8ed889272f38469721e06f7d2baa9778c1414738d7a8d5861d753250d3d7c61e11e3b5a2508145014aa8a4e30c989d6a52225babbc2017dfd7bc26f68ea5483c5b85394d699e976a095571d4c9974f2b4d78feaacbae0469f0008cc2a2e20e54aa618dc38d6c6668e589f050c9e0acc0be708e0f0db0a80f57c15e3875be8cc747e01656eb3c71f002209aacb1fc6def3b35f7f1c778da2dc87393b83455cfd9eb508764057467cc8338fe204f3d5e72c23ce05646ccb19871b9459ba23fdcf664a0cb9c652bf92b607deaa8c7d2afffd9a3879a45eeee0b17853f627a5bbf87bf7d207aea853ecd8e4de2854271f04494fdc1740f23aa71538d85390507637b9f19905709cd0229b77efc02b5ea6ec179a9aff6ef94c55441e1de57ea6ec88eb71154a3da6c6e34b27559d7aedebb18e881bc5b87b507db4e8a35a3b4baebcca5ce5452ff7af523ee0b750bd5059ee33fa5a2cd6ecd273fc8928c9769fe8ba2f167b959e30be763dbdadd5779b70a276415dc1bc3d3710fed0e73e6da1b2c9ce5c37b427c2e21bf8f2354dd45e209923e682c00c652c85a8e8d93aee263f510b765c682b7b0ccf8d0566c43bdacc15180e77f98a2ccd2004853e0fa4bbe597b65fc5bd8b1a4f9afb281ee1e15dd2562e460aa019b62bb897a5208ebaf21bd25b30fc969dba06665e9c4cfff34631abcbc487676bbed5bb48dd23fccff61af96f398c704450489e2b3f7e1966187727a63fe91e00c404ebe9e3f6e1494631051ab87b83f925352043129499649a379d3daa381c88449393446c390a1b3c4c40f6ee8d0", 0x59e, 0x8800, &(0x7f0000e09000)=@abs={0x1, 0x0, 0x1}, 0x8)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = dup(r0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x0, 0x32, 0xffffffffffffffff, 0x0)
sendto$unix(r0, &(0x7f0000732000-0x1)="77", 0x1, 0x8800, &(0x7f00002b3000-0x1e)=@abs={0x0, 0x0, 0x0}, 0x8)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = openat$kvm(0xffffffffffffff9c, &(0x7f0000832000)="2f6465762f6b766d00", 0x101000, 0x0)
getsockopt$inet_sctp_SCTP_AUTO_ASCONF(r0, 0x84, 0x1e, &(0x7f0000b44000-0x4)=0x0, &(0x7f0000f42000)=0x4)
r3 = ioctl$KVM_CREATE_VM(r2, 0xae01, 0x0)
r4 = ioctl$KVM_CREATE_VCPU(r3, 0xae41, 0x2)
sendto$inet6(0xffffffffffffffff, &(0x7f0000e48000-0xf7)="", 0x0, 0x0, &(0x7f0000cdd000-0x1c)={0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0x0}, 0x1c)
getsockopt$inet_sctp6_SCTP_MAXSEG(r1, 0x84, 0xd, &(0x7f0000b4c000-0x4)=@assoc_id=<r5=>0x0, &(0x7f0000f4f000)=0x4)
getsockopt$inet_sctp6_SCTP_DEFAULT_SEND_PARAM(r1, 0x84, 0xa, &(0x7f0000d75000)={0x80000001, 0x6, 0x0, 0x2c10, 0x6, 0x3ff, 0x100, 0xff, <r6=>r5}, &(0x7f00000eb000-0x4)=0x20)
getsockopt$inet_sctp_SCTP_CONTEXT(r0, 0x84, 0x11, &(0x7f0000b80000-0x8)={<r7=>r6, 0xec}, &(0x7f00008e9000)=0x8)
getsockopt$inet_sctp_SCTP_MAXSEG(0xffffffffffffffff, 0x84, 0xd, &(0x7f0000c89000-0x8)=@assoc_id=r7, &(0x7f0000f84000)=0x4)
syslog(0x3, &(0x7f00000f8000)="", 0x0)
accept4$ax25(r0, &(0x7f00006bb000)={0x0, {"00000000000000"}, 0x0}, &(0x7f0000584000-0x4)=0x10, 0x80000)
sync()
mmap(&(0x7f0000000000/0xec4000)=nil, 0xec4000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r8 = socket$netlink(0x10, 0x3, 0x0)
writev(r8, &(0x7f0000000000)=[{&(0x7f0000741000-0x39)="390000001300090000000000810000000900004003000000450001070000001419001a000100021a07000000020000080001010c00f41ede00", 0x39}], 0x1)
mmap(&(0x7f0000ec5000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ec6000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TIOCGSID(r4, 0x540f, &(0x7f0000682000-0x4)=0x0)
mmap(&(0x7f0000ec5000/0x1000)=nil, 0x1000, 0x3, 0x30, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_I_WANT_MAPPED_V4_ADDR(r2, 0x84, 0xc, &(0x7f0000d57000-0x4)=0x0, &(0x7f000068f000)=0x4)
2017/12/15 23:28:16 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = open(&(0x7f000013e000)="2e2f66696c653000", 0x141046, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
socketpair$unix(0x1, 0x2, 0x0, &(0x7f00003f9000-0x8)={0xffffffffffffffff, 0xffffffffffffffff})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$inet6(0xa, 0x3, 0x2)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = perf_event_open(&(0x7f0000940000)={0x2, 0x78, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x200, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r3 = eventfd2(0x0, 0x0)
r4 = epoll_create1(0xc000000000000)
r5 = epoll_create1(0x80000)
r6 = socket$inet(0x2, 0x5, 0x6)
sendto$inet(r6, &(0x7f00002e3000)="3c774b2b5b9e5db7ea9dad1a23ec5dcfb7215fc316ac8c84c51c0e114d754b39314840f6aabd8a3b2b3cb6f68f699f3feb03ece8039dbfe544583c6e26092bdf0a20723f8942afd734cec3fc486ef5f1c119469abfa4c1f5", 0x58, 0x8d0, &(0x7f0000023000)={0x2, 0x0, @rand_addr=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
io_setup(0x20, &(0x7f0000c6b000)=<r7=>0x0)
io_submit(r7, 0x2, &(0x7f0000357000-0x10)=[&(0x7f0000929000-0x40)={0x0, 0x0, 0x0, 0x2, 0x80000001, r6, &(0x7f0000226000)="6c2b59e3fd0006f93a769bb1e0c17e5a05d8875f6e76230dbadc41e8239b567076806e6c393dd96b5f89d430b7956881b4f0a520ddc97dc42a7c979e873a25d71c524dcece", 0x45, 0x565c, 0x0, 0x1, r3}, &(0x7f0000d3d000)={0x0, 0x0, 0x0, 0x1, 0x2, r5, &(0x7f0000548000)="06acf7b1a071d61fe4c8ae304d7febb2c6ef78b77bc346ee1151b2ebed3023ee79e3fa04f224b5f35712af4e9c1a4e6818e00ef1acf7235133c4240a9cfd4b3d42ac3d3cae254565295e2bcf3fbe414a7c22", 0x52, 0x90, 0x0, 0x0, r3}])
syz_open_dev$sg(&(0x7f0000dbd000)="2f6465762f73672300", 0x10001, 0x331200)
dup2(r1, r2)
r8 = syz_open_pts(r0, 0x402003)
setsockopt$inet_dccp_int(r6, 0x21, 0x6, &(0x7f000025e000)=0x3, 0x4)
syz_open_dev$random(&(0x7f000025c000)="2f6465762f72616e646f6d00", 0x0, 0x400000)
epoll_ctl$EPOLL_CTL_ADD(r5, 0x1, r4, &(0x7f0000972000-0xc)={0x8020000003, 0x0})
epoll_ctl$EPOLL_CTL_MOD(r4, 0x3, r3, &(0x7f0000aae000-0xc)={0x4, 0x0})
ioctl$TIOCMGET(r8, 0x5415, &(0x7f00007f8000-0x4)=0x0)
getsockopt$inet6_mreq(r1, 0x29, 0x18, &(0x7f0000a18000)={@loopback={0x0, 0x0}, 0x0}, &(0x7f0000111000-0x4)=0x14)
renameat2(0xffffffffffffffff, &(0x7f000064e000)="2e2f66696c653000", 0xffffffffffffffff, &(0x7f0000a5a000-0x8)="2e2f66696c653000", 0x1)
[ 51.790132] audit: type=1326 audit(1513380496.698:3699): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 pid=11816 comm="syz-executor0" exe="/root/syz-executor0" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452a39 code=0x7ffc0000
[ 51.838380] audit: type=1326 audit(1513380496.699:3700): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 pid=11816 comm="syz-executor0" exe="/root/syz-executor0" sig=0 arch=c000003e syscall=53 compat=0 ip=0x452a39 code=0x7ffc0000
[ 51.865081] audit: type=1326 audit(1513380496.699:3701): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 pid=11816 comm="syz-executor0" exe="/root/syz-executor0" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452a39 code=0x7ffc0000
[ 51.890666] audit: type=1326 audit(1513380496.699:3702): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 pid=11816 comm="syz-executor0" exe="/root/syz-executor0" sig=0 arch=c000003e syscall=64 compat=0 ip=0x452a39 code=0x7ffc0000
2017/12/15 23:28:16 executing program 5:
r0 = getgid()
setfsgid(r0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$ipx(0x4, 0x2, 0x0, &(0x7f0000004000)={<r1=>0x0, 0x0})
r2 = socket(0xa, 0x3, 0xff)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_ipx_SIOCSIFADDR(r2, 0x8916, &(0x7f0000006000-0x20)={"3800ffeb00fffdffff06000000e24000", {0x4, 0x800, 0x10000004, "020000003d42", 0x1000, 0x0}})
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$llc(0x1a, 0x2, 0x0, &(0x7f0000004000-0x8)={0x0, 0x0})
mmap(&(0x7f0000000000/0xf64000)=nil, 0xf64000, 0x1, 0x31, 0xffffffffffffffff, 0x0)
r3 = socket$inet6(0xa, 0x3, 0x3a)
mmap(&(0x7f0000f64000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000c2f000/0x1000)=nil, 0x1000, 0x3, 0x32, r1, 0x0)
mmap(&(0x7f0000f66000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet6_buf(r3, 0x29, 0xce, &(0x7f00000f6000)="", &(0x7f0000534000-0x4)=0x0)
mmap(&(0x7f0000f66000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f67000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe(&(0x7f0000f68000-0x8)={<r4=>0x0, <r5=>0x0})
mmap(&(0x7f0000f65000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f67000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f68000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r6 = openat$selinux_enforce(0xffffffffffffff9c, &(0x7f0000f69000-0x11)="2f73656c696e75782f656e666f72636500", 0x1000000000000080, 0x0)
mmap(&(0x7f0000f68000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f68000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_GEM_FLINK(r5, 0xc008640a, &(0x7f0000f68000)={<r7=>0x0, 0x0})
ioctl$DRM_IOCTL_GEM_OPEN(r4, 0xc010640b, &(0x7f0000804000)={<r8=>0x0, 0x0, 0x6})
ioctl$DRM_IOCTL_GEM_FLINK(r6, 0xc008640a, &(0x7f0000f69000-0x8)={<r9=>r7, <r10=>r8})
mmap(&(0x7f0000f67000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f69000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_GEM_OPEN(r4, 0xc010640b, &(0x7f0000f69000)={0x0, <r11=>r9, 0x6})
ioctl$DRM_IOCTL_GEM_FLINK(r4, 0xc008640a, &(0x7f0000ea7000)={<r12=>r11, r10})
mmap(&(0x7f0000f65000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f68000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r13 = syz_open_dev$usbmon(&(0x7f000018f000)="2f6465762f7573626d6f6e2300", 0x2000001, 0x581100)
mmap(&(0x7f0000f66000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_PRIME_HANDLE_TO_FD(r13, 0xc00c642d, &(0x7f0000db6000-0xc)={r12, 0x10007fffa, <r14=>r4})
mmap(&(0x7f0000f64000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f69000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_PR_SUPPORTED(0xffffffffffffff9c, 0x84, 0x71, &(0x7f0000f6a000-0x8)={0x0, 0x4}, &(0x7f0000f64000)=0x8)
ioctl$DRM_IOCTL_DROP_MASTER(0xffffffffffffffff, 0x641f)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f65000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$kcm_KCM_RECV_DISABLE(r14, 0x119, 0x1, &(0x7f0000884000-0x4)=0x0, 0x4)
sendto$unix(r2, &(0x7f0000ef4000)="e390517a0d69000000cd0940000026705fb30a0002b3724c7d655f885c5bc9d8c342a601d9119677", 0x28, 0x0, &(0x7f0000001000)=@file={0x0, "0000007f0022ff02200c000000bcbb5b340100000000"}, 0x18)
mmap(&(0x7f0000f65000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:16 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$tun(&(0x7f0000bec000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0x400000000000000)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = openat$autofs(0xffffffffffffff9c, &(0x7f0000cac000)="2f6465762f6175746f667300", 0x8001, 0x0)
r2 = syz_open_dev$evdev(&(0x7f0000fda000)="2f6465762f696e7075742f6576656e742300", 0x2000000000000002, 0x2)
read(r2, &(0x7f000011a000-0x18)="000000000000000000000000000000000000000000000000", 0x18)
r3 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000860000-0xc)="2f6465762f72666b696c6c00", 0x101102, 0x0)
getsockopt$inet_sctp6_SCTP_RTOINFO(r3, 0x84, 0x0, &(0x7f0000182000)={<r4=>0x0, 0x2, 0x7, 0x400000000002}, &(0x7f0000d0b000)=0x10)
getsockopt$inet_sctp_SCTP_MAXSEG(r3, 0x84, 0xd, &(0x7f0000590000-0x8)=@assoc_id=r4, &(0x7f00001d0000)=0x4)
r5 = fcntl$getown(r3, 0x9)
mq_notify(r3, &(0x7f0000496000-0x60)={0x0, 0x200000000000013, 0x0, @thr={&(0x7f0000e6a000-0xc1)="9b76daed451c9c5936b3e1e10f2f91c907ab3ec2b3de2e86033341340ebc3bfc6fa6ebd39dbcc4eb6c4a41829e3caf6f5f6e682a736f147aff8715e24b1ef1fd60f23e616f3180b430e993ae32f5534a93599876dfed022a95305721292caa45a723f7962d16d637051763ff346a6b03610ea771492009892299acb3114f3b27316b7f16427e77831d170570eff6a79f1f17c317ed45e816e4f0bcc5f6090c1ee1fec8504cf25d9fe8202bad6f5b46ea071240496634a56a533b44d07dac30cc3d", &(0x7f00001c2000-0x3b)="6116b037c07b1c0d5939882093c4c56aadb7dee3f482601bef4d0529d00ceb751c3af2416452f75174a9d262ea562c5f058e749f73fd98bfd49d5b"}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
write$evdev(r2, &(0x7f0000058000-0x60)=[{{0x0, 0x0}, 0x0, 0x100000001, 0x0}, {{0x0, 0x0}, 0x0, 0x0, 0x0}], 0x30)
r6 = getpgrp(r5)
sched_setaffinity(r6, 0x8, &(0x7f0000b87000)=0x6)
mmap(&(0x7f0000000000/0xb36000)=nil, 0xb36000, 0x3, 0x8031, 0xffffffffffffffff, 0x0)
ioctl$sock_netrom_SIOCGSTAMP(r3, 0x8906, &(0x7f00008cf000)=0x0)
mlockall(0x2)
getsockopt$inet6_dccp_int(r2, 0x21, 0x11, &(0x7f000092f000-0x4)=0x0, &(0x7f0000e63000-0x4)=0x4)
mlock(&(0x7f00001d7000/0x1000)=nil, 0x1000)
unlinkat(r3, &(0x7f0000ce6000-0x8)="2e2f66696c653000", 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
eventfd2(0x0, 0x0)
pipe2(&(0x7f0000bbc000-0x8)={<r7=>0xffffffffffffffff, 0xffffffffffffffff}, 0x0)
sendmsg$nfc_llcp(r1, &(0x7f0000841000-0x38)={&(0x7f00009ab000-0x60)={0x27, 0x1, 0x7ff, 0x1, 0x10000, 0x0, "f5a871500e69b5437d49a36b26d46a37aeed4b871368c703caab0dc8dda46fc49e47503fcca01e84248e00addf389f6f0b21a55b824bc2b84e48a2947ccc05", 0x0}, 0x60, &(0x7f0000535000-0x50)=[{&(0x7f0000bb1000-0xea)="c8ada9e621ef34e870461634d013956e21aab865b409f7eeee80c4228dbb794f0c08a144e64719c929ab111e6e6b1526d0c1234f4e298f4cec1d41cd0ba753754ae4bc31415680b206f1d184f0811175fb769744832f7e0917ca9d57c176017bf847bcded1dd406ee758f5147cc8c876dd65c1753288f063ae4b15c2e6b81be4c625c8729328267d7fc218ae55522038401366ed00ddad41151f2e6aefc537562a6620cda492d666d5347ea098d6baa172edfe7af2484920abb5a787876c9b4d7228f4c75cba4984fec2abd0e501cf8daf9b163149fea8a27d2f987b43e2b08733da7489781a49b1e363", 0xea}, {&(0x7f00007b9000-0x66)="34be9276e6e4de31bf00d4e1857f04ec5c05de90ec73f13fd4db089859d0852488045c194590575e5bdf5a9134572877ba3f9bb5c5a748585e20007952774e2782015bebd740df90a917ad3bb49ec33750fd6c68f67121267903f479d3230a52aab550bf9350", 0x66}, {&(0x7f0000911000-0x5a)="a68a2dc5874ab1bf76efaf954c95412175d97b716aeeef5cfde9a0585b2c400cf86c858d6de771e056315041afa0a8b4ab06e4c853216bb27aa66970e3b36882029097f0b6ed44322b95eaed6bce5a8f809ffdf7d2477479072d", 0x5a}, {&(0x7f0000a20000-0x2b)="5777baae23d239eec8f871192d962bc3c279adff9f6a7969712e1c34da2b21b05f59a0428b485aebcfa5ac", 0x2b}, {&(0x7f0000a24000)="8eece2", 0x3}], 0x5, 0x0, 0x0, 0x44000}, 0x8040)
ioctl$TIOCTTYGSTRUCT(r7, 0x541a, &(0x7f0000577000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioctl$TIOCOUTQ(r7, 0x5411, &(0x7f0000b5b000)=0x0)
readv(r7, &(0x7f0000156000-0x40)=[{&(0x7f000025e000-0xb)="0000000000000000000000", 0xb}, {&(0x7f00003ae000-0xca)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xca}, {&(0x7f0000e9c000-0xe)="0000000000000000000000000000", 0xe}, {&(0x7f0000d19000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}], 0x4)
ioctl$SIOCSIFHWADDR(r0, 0x8924, &(0x7f000027c000)={@generic="b06a4fa8a7d15a56bf77e453e2206b44", @ifru_flags=0x1200})
ioctl$TIOCNXCL(r1, 0x540d)
[ 51.918870] audit: type=1326 audit(1513380496.699:3703): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=unconfined_u:system_r:insmod_t:s0-s0:c0.c1023 pid=11816 comm="syz-executor0" exe="/root/syz-executor0" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452a39 code=0x7ffc0000
2017/12/15 23:28:16 executing program 4:
mmap(&(0x7f0000000000/0x2b000)=nil, 0x2b000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = gettid()
prctl$setptracer(0x59616d61, r0)
r1 = syz_open_dev$sndtimer(&(0x7f000001a000-0xf)="2f6465762f736e642f74696d657200", 0x0, 0x40000)
ioctl$SNDRV_TIMER_IOCTL_SELECT(r1, 0x40345410, &(0x7f0000001000)={{0x100000001, 0x0, 0xfffffffffffffffc, 0x20000000000, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
socket$bt_cmtp(0x1f, 0x3, 0x5)
mmap(&(0x7f000002b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000002b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000002b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = syz_open_dev$sndtimer(&(0x7f000002c000-0xf)="2f6465762f736e642f74696d657200", 0x0, 0x80200)
r3 = openat$autofs(0xffffffffffffff9c, &(0x7f0000028000)="2f6465762f6175746f667300", 0x4000, 0x0)
ioctl$SNDRV_TIMER_IOCTL_SELECT(r2, 0x40345410, &(0x7f0000001000)={{0x100000001, 0x0, 0x0, 0x0, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
getsockopt$inet_sctp_SCTP_STATUS(r3, 0x84, 0xe, &(0x7f000000d000-0xb8)={<r4=>0x0, 0x7, 0x1000, 0xfff, 0x6, 0x100000001, 0x56, 0x0, {0x0, @in6={{0xa, 0x0, 0x574, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x6}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x5, 0x1, 0xffff, 0x8001, 0x8}}, &(0x7f0000013000)=0xb8)
mmap(&(0x7f000002b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp6_SCTP_DEFAULT_SNDINFO(r3, 0x84, 0x22, &(0x7f000002b000)={0x22, 0x8000, 0x1, 0x6, r4}, 0x10)
ioctl$SNDRV_TIMER_IOCTL_START(r1, 0x54a0)
ioctl$SNDRV_TIMER_IOCTL_PAUSE(r3, 0x54a3)
ioctl$SNDRV_TIMER_IOCTL_CONTINUE(r2, 0x54a2)
mmap(&(0x7f000002c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
clock_getres(0x8000000004, &(0x7f0000001000)={<r5=>0x0, 0x0})
ioctl$SNDRV_TIMER_IOCTL_CONTINUE(r2, 0x54a2)
fcntl$setlease(r2, 0x400, 0x3)
syz_open_dev$sndtimer(&(0x7f0000026000)="2f6465762f736e642f74696d657200", 0x0, 0x200303)
mmap(&(0x7f000002d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000002d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
waitid(0x0, r0, &(0x7f000002d000)={0x0, 0x0, 0x0, 0x0}, 0x8, &(0x7f000002e000-0x90)={{0x0, 0x0}, {0x0, <r6=>0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
setsockopt$sock_timeval(r3, 0x1, 0x20000000000015, &(0x7f0000004000)={r5, r6}, 0x10)
ioctl$SNDRV_TIMER_IOCTL_START(r1, 0x54a0)
ioctl$SNDRV_TIMER_IOCTL_PAUSE(r1, 0x54a3)
ioctl$SNDRV_TIMER_IOCTL_CONTINUE(r1, 0x54a2)
clock_getres(0x10000000004, &(0x7f000001e000)={0x0, 0x0})
mmap(&(0x7f000002c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$SNDRV_TIMER_IOCTL_CONTINUE(r1, 0x54a2)
mmap(&(0x7f000002d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$sndtimer(&(0x7f000002d000)="2f6465762f736e642f74696d657200", 0x0, 0x2000000000109000)
mmap(&(0x7f000002e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
waitid(0x0, r0, &(0x7f0000010000)={0x0, 0x0, 0x0, 0x0}, 0x0, &(0x7f0000028000-0x90)={{0x0, 0x0}, {<r7=>0x0, <r8=>0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
setsockopt$sock_timeval(r3, 0x1, 0xf0dd90cf513d04e5, &(0x7f0000028000-0x10)={r7, r8}, 0x10)
2017/12/15 23:28:16 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
unshare(0x280603fe)
r0 = socket$unix(0x1, 0x1, 0x0)
r1 = add_key(&(0x7f0000d55000)="72787270635f7300", &(0x7f0000c95000)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f000027f000-0xfa)="97911927523f7d6d0891226088f0ab3eae386350168a24ce8799489c800af50ea70dbd4b66cc849c004aefe55f5cf30574ec1624dd53929421ef40c8b72e21ad8e2cec7208318008b3a18d36701f291147941893ad83d418ab4b89105e8d2a17b4d62e025ee2d71df7e256a930b16f086c34ca16e845020eaa1b3ecdf2675a8a98ae38d697f98eca6dc431f3eb043dff66c7fd97d8eafbde8e1a54ef4033b1c694c7cd36bf37f562fc52f4f7715021c064aadaf4bb450c3b45fbbf994c7c75b1bfc4a88b91471a3c3785b9b743cc0e3470f3a466d5c6ee2e07ee014cf9f91a51a00482a2cab6b40c737ee43e7cde04a211e5e5555782d3fe501f", 0xfa, 0xfffffffffffffffe)
r2 = add_key$keyring(&(0x7f0000905000-0x8)="6b657972696e6700", &(0x7f00004a7000)={0x73, 0x79, 0x7a, 0x3, 0x0}, 0x0, 0x0, 0xfffffffffffffffb)
keyctl$negate(0xd, r1, 0x100, r2)
ioctl$TIOCGPGRP(0xffffffffffffff9c, 0x540f, &(0x7f0000618000-0x4)=<r3=>0x0)
sched_setattr(r3, &(0x7f00001da000)={0x30, 0x0, 0x0, 0x3, 0x1, 0x101, 0x44ae, 0x0}, 0x0)
ioctl$sock_SIOCGPGRP(r0, 0x8904, &(0x7f00000e0000-0x4)=<r4=>0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x1000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x200000000000000, 0x0, 0x0, 0x0, 0xffffffffffffffff, 0x0, 0x0, 0x0, 0x0, 0xffffffffffffc061, 0x0, 0x0, 0x400, 0x0, 0x0, 0x0}, r4, 0x0, 0xffffffffffffffff, 0x0)
timerfd_create(0x0, 0x800)
mount(&(0x7f0000622000)="2e2f66696c653000", &(0x7f0000f55000-0x7)="2e2f66696c653000", &(0x7f00004ec000-0x7)="73ff73ff731044", 0x0, &(0x7f00006b2000)="")
socketpair$unix(0x1, 0x1, 0x0, &(0x7f000031e000-0x8)={0xffffffffffffffff, 0xffffffffffffffff})
perf_event_open(&(0x7f0000940000)={0x2, 0x78, 0xfffffffffffffffc, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
socketpair$inet(0x2, 0xb, 0xb8, &(0x7f0000808000-0x8)={0x0, 0x0})
pipe(&(0x7f0000571000)={0x0, 0x0})
r5 = openat$ptmx(0xffffffffffffff9c, &(0x7f00003e0000)="2f6465762f70746d7800", 0x0, 0x0)
ioctl$TCSETS(r5, 0x40045431, &(0x7f00003ba000-0x24)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
syz_open_pts(r5, 0x283fc)
read(0xffffffffffffffff, &(0x7f0000fd6000-0xf1)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf1)
syz_open_procfs(r4, &(0x7f0000ca1000-0x7)="6d6f756e747300")
socketpair$unix(0x1, 0x5, 0x0, &(0x7f000000b000-0x8)={<r6=>0xffffffffffffffff, <r7=>0xffffffffffffffff})
sendmsg$unix(r6, &(0x7f0000001000-0x38)={&(0x7f0000239000-0x8)=@abs={0x0, 0x0, 0x0}, 0x8, &(0x7f0000008000)=[], 0x0, &(0x7f0000001000-0x10)=[@rights={0x200, 0x1, 0x1, [r0]}], 0x1, 0x0}, 0x0)
recvmsg(r7, &(0x7f000000e000)={0x0, 0x0, &(0x7f000008b000)=[], 0x0, &(0x7f000000c000)="", 0xfc13, 0x0}, 0x0)
pselect6(0x40, &(0x7f0000cc9000-0x40)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f0000cc9000-0x40)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f00000de000-0x40)={0xffffffffffffffe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f00008e6000-0x10)={0x0, 0x989680}, &(0x7f0000205000-0x10)={&(0x7f0000cc9000-0x8)={0x0}, 0x8})
2017/12/15 23:28:16 executing program 6:
mmap(&(0x7f0000000000/0xf3e000)=nil, 0xf3e000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$alg(0x26, 0x5, 0x0)
setsockopt$ALG_SET_AEAD_AUTHSIZE(r0, 0x117, 0x5, 0x0, 0xfffffffffd)
bind$alg(r0, &(0x7f0000f37000)={0x26, "6165616400000000000000000000", 0x0, 0x0, "67636d28616573290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
bind$alg(r0, &(0x7f0000408000)={0x26, "6165616400000000000000000000", 0x0, 0x20000, "7063727970742867636d286165732929000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r0, 0x117, 0x1, &(0x7f0000f3c000-0xb9)="0023ffc12784f84aedf06718314f2361cd6b6dcf23e77481bc88800e56ba80d1e5836b74ca163f81fcdaa021a676a7ecd349c60203fc5ed8a32d3e6dc8b24f0dd94d0df400ae32d170d38a99b262406189208ddd4a29c62268919053e74e51e850c002940e325e5fb3c239340fba4f56cea53f8bb68473a54793704497d1b6362724c2a43c3489115d0775d7b31be2b6c1a4b7b7231fcb7171db5f1cc36650fc5d53fa58299d24e02dbe309a71bb67e8b40643f71ccc102108", 0xb9)
setsockopt$ALG_SET_AEAD_AUTHSIZE(r0, 0x117, 0x5, 0x0, 0x8)
setsockopt$ALG_SET_KEY(r0, 0x117, 0x1, &(0x7f00004f7000)="649c47ad46390dc86dae79fa409d4d54", 0x10)
mmap(&(0x7f0000f3e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$alg(r0, &(0x7f0000f3e000)={0x26, "736b636970686572000000000000", 0x0, 0x84, "65636228636173743529000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
splice(r0, 0xfffffffffffffffc, r0, 0x0, 0x80000001, 0x4)
r1 = accept$alg(r0, 0x0, 0x0)
setsockopt$ALG_SET_KEY(r0, 0x117, 0x1, &(0x7f0000c8e000-0xe)="8c777635850d02e48d673c1aab9f", 0xe)
r2 = accept$alg(r0, 0x0, 0x0)
sendmsg$alg(r1, &(0x7f00005d8000)={0x0, 0x0, &(0x7f0000b5d000)=[{&(0x7f0000a95000-0x3d)="0cda5e1b78ab4cd5040d369241d55b3b0c15c2d769486935741fc701a6b9d0be38576a64", 0x24}], 0x1, &(0x7f0000f3a000)=[@op={0x18, 0x117, 0x3, 0x1}], 0x18, 0x4080}, 0x4)
write(r2, &(0x7f0000f3d000-0x8b)="3595c917d671b6b5535f0042a083a6d26b71aa9a6deaf4cedeed63f6ad0a14cfab6e65f4bcd740829a3a50c61f000000b3749b244abcf0b5a28c60f6d0430ace54baa4156ebbfaa2ffdff4bbffffff7f000000008787d9fc26ac60201440ff9583cc2d5439168dd623e5cbbec85d30db1ab164174fe40b999889f02988369be757037178ac1e7489492fc2", 0x8b)
mmap(&(0x7f0000f3e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f3f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair(0x15, 0x5, 0x6, &(0x7f0000f40000-0x8)={<r3=>0x0, <r4=>0x0})
mmap(&(0x7f0000f3e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f3f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f40000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f41000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
readv(r1, &(0x7f0000f41000)=[{&(0x7f0000f41000-0x12)="000000000000000000000000000000000000", 0x12}], 0x1)
mmap(&(0x7f0000f3e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_DEFAULT_SNDINFO(0xffffffffffffffff, 0x84, 0x22, &(0x7f0000f3e000)={0xffff, 0x1, 0x8, 0xf90, <r5=>0x0}, &(0x7f0000f3f000-0x4)=0x10)
mmap(&(0x7f0000f40000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_SOCKOPT_PEELOFF(r4, 0x84, 0x66, &(0x7f0000762000)={r5, 0x3}, &(0x7f00004cd000)=0x8)
recvmsg(r4, &(0x7f000011d000-0x38)={&(0x7f0000f39000-0x9)=@rc={0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0}, 0x9, &(0x7f0000f39000-0x20)=[{&(0x7f0000f39000-0x13)="00000000000000000000000000000000000000", 0x13}, {&(0x7f00007c0000)="0000000000000000000000000000000000000000000000000000000000000000000000000000", 0x26}], 0x2, &(0x7f0000e33000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xcf, 0x3}, 0x40000000)
accept$alg(r0, 0x0, 0x0)
vmsplice(r0, &(0x7f0000f3d000-0x50)=[{&(0x7f0000e6a000-0x63)="e13226cea27a8fae84484c225489edcfe97134a233bcd535502b7fa8447592e31e17f9fb5626efb027a8ce05c5c46d5e65e5ed879f21797105f658135fedd0538fcc601a112824cf2af9e9b42b141458e20853b443e41117f842e5cdbc1a9591e5a37f", 0x63}, {&(0x7f0000887000)="dc41c6e56e3bafb4f05f78de03147e989f7595dfd0cb8b7f4783b23d145b", 0x1e}, {&(0x7f0000c79000-0x4d)="0a9cc35564f98d66af2bda6b1ae09921c1bf036aa07f3d6b8b89bf461c56e440c4ff1c2281b76a7abefd7f5801d92c4bd9f4f0a31e6c1a20372e1f1e654816faf97d3f0c154cbd22b839f13b56961233ddcb6ea5224e2fa82138f5830db271e9c7", 0x61}, {&(0x7f0000f3c000)="", 0x0}, {&(0x7f0000d56000-0xb)="47b7cf5cac5abc6b90cc06", 0xb}], 0x5, 0xf)
recvmsg(r2, &(0x7f0000aed000-0x38)={&(0x7f0000f3d000)=@ipx={0x0, 0x0, 0x0, "000000000000", 0x0, 0x0}, 0x10, &(0x7f0000f3d000)=[{&(0x7f0000f3e000-0x7c)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7c}, {&(0x7f0000f3e000-0x51)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x51}], 0x2, &(0x7f0000f3d000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc3, 0xfd6}, 0x10002)
bind$alg(r0, &(0x7f0000166000)={0x26, "736b636970686572000000000000", 0x0, 0x0, "5f5f6362632861657329000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
close(r1)
mmap(&(0x7f0000f40000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_bt_bnep_BNEPCONNDEL(r3, 0x400442c9, &(0x7f0000f41000-0xa)={0xbf, "7a19be3e9e7d"})
2017/12/15 23:28:16 executing program 1:
mmap(&(0x7f0000000000/0x40000)=nil, 0x40000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
statfs(&(0x7f0000041000-0x8)="2e2f66696c653000", &(0x7f00000ef000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
mkdir(&(0x7f000000e000-0xa)="2e2f636f6e74726f6c00", 0x0)
r0 = open(&(0x7f0000028000)="2e2f636f6e74726f6c00", 0x0, 0x0)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000041000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000041000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
symlinkat(&(0x7f0000040000)="2e2f66696c653000", r0, &(0x7f0000042000-0xa)="2e2f636f6e74726f6c00")
llistxattr(&(0x7f0000038000-0xa)="2e2f636f6e74726f6c00", &(0x7f0000038000-0xb6)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb6)
iopl(0x200)
mmap(&(0x7f0000042000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
select(0x40, &(0x7f000000f000)={0x1, 0x20, 0x0, 0x401, 0x4, 0x5, 0x800, 0x0}, &(0x7f0000037000-0x40)={0x10001, 0x80, 0x0, 0x7fffffff, 0x9, 0xffffffff, 0x35a5fb60, 0xffffffff}, &(0x7f0000013000-0x40)={0x7, 0x2, 0x7, 0x400, 0xd2, 0x80000000, 0x7f, 0x5c}, &(0x7f0000043000-0x10)={0x77359400, <r1=>0x0})
mmap(&(0x7f0000043000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
clock_getres(0x0, &(0x7f0000043000)={<r2=>0x0, 0x0})
utimensat(r0, &(0x7f0000022000)="2e2f66696c653000", &(0x7f0000035000)={{0x0, 0x0}, {r2, r1}}, 0x100)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mknod$loop(&(0x7f0000041000)="2e2f636f6e74726f6c00", 0x80, 0x0)
mkdirat(r0, &(0x7f0000000000)="2e2f66696c653000", 0xffffffffffffffff)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
name_to_handle_at(r0, &(0x7f000000a000)="2e2f66696c653000", &(0x7f0000036000)={0x77, 0x6, "58074ad1033f73a11568bb7a73385c09a67099a1c01025e5cd3827b00f2e30912dd60229a50baf0bc1822d86288241ab40f1df8ae7b0f292c45cecda8283c645c383cb7035faa68c1012c25dab56ca3661e4a35e9a5720ef7fded3cd27f1f75cbf729f64b2a0b2d8f04f7597d88cd8"}, &(0x7f0000040000)=0x0, 0x1000)
mmap(&(0x7f0000041000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
name_to_handle_at(r0, &(0x7f000003c000-0xa)="2e2f636f6e74726f6c00", &(0x7f0000042000-0xe0)={0xdd, 0x40000000000000, "0352931ac464048d1290b280fae4ad967afce5f5a3d446848184c39cb8ce2f10b824ad4cb36dfb6f8332811af41066621463ab46905805b6af105235480cffe4333e49a1d04c18720833b4224e6efc3bbde5432e9d983e3ff5e55be3c0e32138a4a99328296b186e8d507a032eab9ba8e70f17b8ec63dd6f8d357779f0ebd4e5112622822abcd895fa433d547f45e286ae825972786d1a629d805151b22c6a9dba96ae9206c0aeaeeaad006c32fb94b79e5b2e3b5edcbb5034737b4edb027c9d724ac08075f60e3f521afe268d8ca5692698661b82"}, &(0x7f0000042000-0x4)=0x0, 0x1000)
mmap(&(0x7f0000042000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000042000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000043000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000043000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
renameat(r0, &(0x7f0000044000-0x8)="2e2f66696c653100", r0, &(0x7f0000028000)="2e2f636f6e74726f6c00")
ioctl$sock_SIOCOUTQ(r0, 0x5411, &(0x7f000001b000)=0x0)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x12010, 0xffffffffffffffff, 0x0)
setrlimit(0xc, &(0x7f000003e000-0x10)={0x2, 0xa33})
readlinkat(r0, &(0x7f000001c000-0x8)="2e2f66696c653000", &(0x7f0000002000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd5)
mmap(&(0x7f0000041000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
unlinkat(r0, &(0x7f0000024000)="2e2f66696c653000", 0x1fffc)
mmap(&(0x7f000000a000/0x4000)=nil, 0x4000, 0x3, 0x32, r0, 0x4000000000)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$VT_OPENQRY(r0, 0x5600, &(0x7f000000e000)=0x0)
mmap(&(0x7f0000041000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
symlink(&(0x7f0000021000-0xa)="2e2f66696c653000", &(0x7f0000002000)="2e2f66696c653000")
name_to_handle_at(r0, &(0x7f0000022000-0xa)="2e2f66696c653000", &(0x7f000003d000-0x20)={0x1f, 0x4fff, "f899fdc5a7c11e67bed193e4a4d0ddbb1576bf3c6f1952"}, &(0x7f000000f000-0x4)=0x0, 0x1000)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000040000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000042000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
utimensat(r0, &(0x7f0000043000-0xa)="2e2f636f6e74726f6c00", &(0x7f000002c000)={{0x77359400, 0x0}, {0x0, 0x2710}}, 0x100)
mmap(&(0x7f0000044000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000044000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000044000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
renameat2(r0, &(0x7f0000045000-0xa)="2e2f66696c653000", r0, &(0x7f0000044000)="2e2f636f6e74726f6c00", 0x2)
2017/12/15 23:28:16 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x400000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x2001000000000fa, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r0, 0x0)
add_key(&(0x7f000013b000-0x5)="6465616400", &(0x7f00009f2000)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f000032c000-0xe9)="", 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = getpgrp(0x0)
perf_event_open(&(0x7f00006a4000)={0x2, 0x78, 0x80, 0x6, 0x0, 0x0, 0x0, 0x5, 0x109, 0x0, 0x54d, 0x3, 0x0, 0x2000000000000000, 0x0, 0x0, 0xffffffffffffffff, 0x0, 0x0, 0x0, 0x6, 0x0, 0x3, 0x0, 0x80000001, 0x0, 0x0}, r1, 0x0, 0xffffffffffffffff, 0x0)
r2 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000091000)="2f6465762f73657175656e6365723200", 0x40, 0x0)
ioctl$DRM_IOCTL_AGP_ALLOC(r2, 0xc0206434, &(0x7f0000a01000)={0x4, <r3=>0x0, 0x10007, 0x4})
ioctl$DRM_IOCTL_AGP_ALLOC(r2, 0xc0206434, &(0x7f00007f8000-0x20)={0xea2a, r3, 0x10003, 0x0})
socketpair$inet6_udp(0xa, 0x2, 0x0, &(0x7f0000ec7000)={0x0, 0x0})
mmap(&(0x7f0000000000/0x7f2000)=nil, 0x7f2000, 0x3, 0x31, 0xffffffffffffffff, 0x0)
pipe2(&(0x7f0000300000-0x8)={<r4=>0xffffffffffffffff, <r5=>0xffffffffffffffff}, 0x80800)
vmsplice(r5, &(0x7f0000227000-0x60)=[{&(0x7f00007f5000-0x1000)="", 0x0}, {&(0x7f00007c9000-0x39)="d7486fe7b389d8f332b6382d804b49ccc1a57115d03d492690229b365d229f4f332aaca3102e9f2cc6d11db237aba558cd523fb7e415db93606ea9be6a027472cd61a4b3977a7033629d6c2f27ab18b8ba802256ab69e2286af1a191b04c9e5f4a279ac5c6d2af85153feefa4d7ef19a4db51c7d20b5bdfc1841151f49456a20f4bfb9c50244d62005122e", 0x8b}], 0x2, 0x4)
epoll_ctl$EPOLL_CTL_MOD(r4, 0x3, r0, &(0x7f000061c000)={0x4, 0x0})
mbind(&(0x7f00003b5000/0x800000)=nil, 0x800000, 0x0, &(0x7f0000002000-0x8)=0x2, 0x1, 0x2)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r6 = syz_open_dev$vcsa(&(0x7f0000000000)="2f6465762f766373612300", 0x200000000, 0x80000)
ioctl$SNDRV_SEQ_IOCTL_CREATE_PORT(r4, 0xc0a85320, &(0x7f0000255000-0xb0)={{0x62a, 0x6}, "706f7274300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x8, 0x20400, 0x5, 0x0, 0xc6df, 0x8, 0x3, 0x0, 0x2, 0x1, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
bind$bt_rfcomm(r6, &(0x7f0000257000-0x9)={0x1f, {0x80000001, 0x1, 0xb8, 0x4, 0x10000, 0x8c1}, 0x80000000}, 0x9)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet6_tcp_TCP_REPAIR_WINDOW(r6, 0x6, 0x1d, &(0x7f0000001000-0x14)={0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f0000001000-0x4)=0x14)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
epoll_pwait(0xffffffffffffffff, &(0x7f0000bf7000)=[{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}], 0x3, 0x1, &(0x7f0000f86000)={0x800001ff}, 0x8)
r7 = socket$inet_tcp(0x2, 0x1, 0x0)
ioctl$sock_ifreq(r7, 0x893d, &(0x7f0000511000)={@common="697036746e6c30000000000000000000", @ifru_data=&(0x7f00008cf000-0x20)="1200000000000000db0001ee000874000000007fff000000207fe6000d77aa32"})
2017/12/15 23:28:16 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f0000f61000)=0x9)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$sndseq(&(0x7f00009d8000)="2f6465762f736e642f73657100", 0x0, 0x1ffd)
ioctl$SNDRV_SEQ_IOCTL_QUERY_NEXT_PORT(r0, 0xc0a45352, &(0x7f000029c000-0xa8)={{0x3, 0xfffffffffffffffb}, "706f7274300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6, 0x40, 0x2000000000002, 0x1, 0x5, 0x9, 0x9, 0x0, 0x2, 0x401, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r1 = bpf$MAP_CREATE(0x0, &(0x7f0000998000)={0xf, 0x9, 0x7, 0x8, 0x6, 0x1, 0xfdb}, 0x1c)
r2 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000785000)="2f6465762f7161745f6164665f63746c00", 0x20100, 0x0)
setsockopt$bt_BT_VOICE(r2, 0x112, 0xb, &(0x7f0000190000+0x20a)=0x1f, 0x2)
ioctl(r0, 0x7fff, &(0x7f0000bf3000-0xf4)="ee564a478c6338a3dc2bc2e37be696ddd04f0a86eb55e2be8d2b4df51e0351b49afe99dd14b3b5f7d37f086fedac7d49b6e0ca3809e86ffc02972d70b2a249e4ca47316f9c6b4b3ce7803e78b02ecf000c7bbfe319fa9d8dbc6fe96532f79d33cde0ffab504c34a4fcaaff08bd2dab322cba75fbd34c148c76e6e07ed88ffae3e46d86feb35a088b4dd88911f3e7991b5b2c9970fa8ec7b5b33918b4b3fe00b22ddffb6a7e1de0571f320ff9c1b952dae563a5db04d1a201fddef2749b265340bba136d8847947c23759e785644335fb39150ed604befcf8e6c58ca73d00000081d2f99701c062534c7f8a46327e2201a0a2e4ea")
r3 = dup(r1)
setsockopt$inet6_MRT6_ADD_MFC_PROXY(r3, 0x29, 0xd2, &(0x7f00002d5000-0x5c)={{0xa, 0x1, 0x9, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x1}, {0xa, 0x1, 0x33, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x5}, 0x8, [0x4, 0x3, 0xffffffffffffff6a, 0x7, 0x1, 0x40, 0x800, 0x2]}, 0x5c)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f00001f0000-0x78)={0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
socket$inet_udp(0x2, 0x2, 0x0)
r4 = socket(0x10, 0x3, 0x0)
write(r4, &(0x7f0000bcc000-0x1f)="1f0000004a0007000000f40a000008ff0a3f800a0200000000000004441951", 0x1f)
r5 = openat$sequencer(0xffffffffffffff9c, &(0x7f0000412000-0xf)="2f6465762f73657175656e63657200", 0x0, 0x0)
setsockopt$inet6_tcp_buf(r4, 0x6, 0x1f, &(0x7f00008a5000)="728de9cd6dd299ab02e7ad90d5c193f2796a45288c1e1d1d72e33f81ae0215d3313b9035fb110ebb4b886965b304b76bc1c12dc640c4ca22119fc7dd2f96e5a2015cacfbbdcf6817c7f4952f16460ca8a72df4cedc0b83ed95d81a988a401fd543aa58284db3aaf2735596d7ce2ac97610ce4736697ee7c6aa75f49373ac17e50575f47b6f22ac09000000000000006f8df754c6bc18ea70a4c6df9d90868b4f05d431f302b736e37480f3ff02ce049af6a21490e5fb9ec8e936fc7f645690f2246050c6cea48478ef", 0xc9)
setsockopt$netlink_NETLINK_ADD_MEMBERSHIP(r5, 0x10e, 0x1, &(0x7f0000fe3000-0x4)=0x94, 0x4)
getsockopt$SO_PEERCRED(r2, 0x1, 0x11, &(0x7f00006b2000-0xc)={0x0, 0x0, 0x0}, 0xc)
r6 = socket$inet6(0xa, 0x5, 0x0)
setsockopt$inet_int(r6, 0x0, 0xf, &(0x7f0000d11000-0x4)=0xfffffffffffffff9, 0x4)
setsockopt$inet_sctp6_SCTP_SOCKOPT_BINDX_ADD(r6, 0x84, 0x64, &(0x7f0000d24000)=[@in6={0xa, 0x3, 0x0, @loopback={0x0, 0x1}, 0x612}, @in={0x2, 0x3, @rand_addr=0xd5, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x3, 0x1ff, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x3}, @in6={0xa, 0x2, 0xfffffffffffffff7, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x3ff}, @in={0x2, 0x3, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x3, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}], 0x84)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0x0, 0x0, 0x101, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xb39000)=nil, 0xb39000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
openat$kvm(0xffffffffffffff9c, &(0x7f000099f000-0x9)="2f6465762f6b766d00", 0x0, 0x0)
openat$rtc(0xffffffffffffff9c, &(0x7f000042c000)="2f6465762f72746300", 0x400000, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x2, 0x0, 0x1, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0}, 0x0, 0x6, 0xffffffffffffffff, 0x0)
mlock(&(0x7f00003fe000/0x4000)=nil, 0x4000)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x0, 0x10, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:16 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
unshare(0x8000000)
pipe(&(0x7f0000c81000+0x2f2)={<r0=>0x0, <r1=>0x0})
getsockname$netrom(r1, &(0x7f0000be7000)=@ax25={0x0, {"00000000000000"}, 0x0}, &(0x7f0000559000-0x4)=0x10)
r2 = socket$inet6_icmp_raw(0xa, 0x3, 0x3a)
read(r2, &(0x7f00005c2000-0x1)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x83)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = openat$autofs(0xffffffffffffff9c, &(0x7f00002b9000)="2f6465762f6175746f667300", 0x101005, 0x0)
getsockopt$inet_mreqn(r3, 0x0, 0x24, &(0x7f0000207000-0xc)={@broadcast=0x0, @rand_addr=0x0, <r4=>0x0}, &(0x7f0000e42000)=0xc)
ioctl$sock_SIOCGIFINDEX(0xffffffffffffff9c, 0x8933, &(0x7f0000ecc000)={@generic="8de04b9acc879b2365183fd3f5f1b98b", <r5=>r4, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
sendmmsg(r3, &(0x7f000066d000-0xb4)=[{{&(0x7f000003f000-0x8)=@un=@abs={0x1, 0x0, 0x3}, 0x8, &(0x7f0000ba9000-0x40)=[{&(0x7f0000961000)="9a845fa6348ffe614c6bfb19df4a63ce907758ebccc1b6ffac30b0623eeaae8e8696e9505f85921aebd04a81428a68c64dadd248cc47fe3c689000e9a037e69c968c66f678a043955d029acbe83a8400bac6e82d1ccc6e046a6d7a9edd16c246e9de7dfa1072671d65de2e0194e6e4906fe28f566b0affb029438348173005c3e55d13d4", 0x84}, {&(0x7f0000922000)="c8965ac86ff328548e87cd09ee2a0386", 0x10}, {&(0x7f0000e39000-0x6)="960eedba1b9b", 0x6}, {&(0x7f0000c5b000-0x6a)="5b7e7de69a6898e46bcb627a0d0f4993dce2d9da295a6536b01fa30773e6a4e88c2853424df412e0da0ba9846a88174ba6b740be323a9efd13e2f41544e8ef997387b278f7bf567e7d9a24cf60091e60dce7c3668878649de8b458e4b9edf68d0a77e34652f152881be4", 0x6a}], 0x4, &(0x7f000048c000)=[{0x108, 0x113, 0x1000, "302cb542f125a4480fc3400968a5e6253218188eeac5712a2d3834ba9764421b52dfa126cbc910c004b0c969bd557955b52717a93b8d2d085fd7d8b741e02b320f3c8e8ae90ef944277fba7a03ee5d869987e04e80569f09aafa8cb93fad3fab8602b71cb613bcc7b21cb3466271579727a9607da29044078d985586496c62eca49717efcfe6ac9f3dba8df138932210e568a407404b5e7aae01f57f96d6c1b6f5908acbe496aa82ba648f5c12a7cc7448ea2a827618bb1e802b5974b405692ec426220789585927ff98ca5d37a020a91f99d9c45c613f01eed254c25418721534cfeb935aa33f6f15e1138a93c4fab43cd657"}, {0xf8, 0x117, 0x10000, "ea519fa71aa9531fd6f6d40e0c2c34cf2b8172b6c13fdad06a318085d7995f4b8326e8867d3c48056c0124995c2135cb5715c05563bf4eab446356fdf8bbb6c5c1b141f7f49f5cbd80b8c2a479f8dfd763c09ecd74989c80da11cf1aff96084857e40923d9e91dedb77d4259013ee9a73b86eb57549caf525318132be6a607b49ac17549b72691fece75c57152b771cd5a1e36f406912c957ebbb49e639fb188ee136939ed24dcce5d3d5860899586eafa79d9a1fcea5a90e0ce38bc07624edd3ddf44f3f16a4110ad07f96262de09f0a8db58f9c48fef6715b9b4651d1a4fa65b8af5574242fb"}, {0xd8, 0x119, 0x0, "accd6d35cc99d54c92322d9b38e05825627ff03911f8556c92e10046a1e7fe35f756e7d8db8ebed409b70322701cbec4f4fa6839379a26e8af1baaa7fa6869e303cf49e3c5c0690aead8f241db22c1e41f3839aa123ffdcd7f3b8b8e0c95647d6bcb23dff3491a1ff012d6aceb100419038ff219e0ac431b1a38bfe6bc3b617072f3e94a144a25ec38dabe445a3c86ddadb721655cb3031d81d0805ffbbcdcb16bb1d6e52ff0d6a62d07517eea8109e8a81f02ffd654143835b88cc0264a0fcf62ea8f8d2d86c9"}, {0xc8, 0x10b, 0x3, "968fb4b8b20cad93149a2e5efa76879e5de6843572cea8028e42cfc5caad87bfcb28e0702f2d22a3aaecf9402a350e009135a3a0bdaaa98e52d4f6e7861b12e892916318b886fd64a8a4dafa1081ca83a7d998ac589124aee046e66975660d213d81af4100db268832415723cb90b69789505ba73a256d7aaa04331cbd2e3854765e728853daa27c947d9decf518f9198116fc3ded9df7d3234172ea76f7e60425867577fec93fee2efc3e0b7b169176cf"}, {0x48, 0x10d, 0xfffffffffffffffc, "3f6249f6ef303150804b4a8695fbf30fb152473310777010a1175a1b7a8c3625bc6e1ea95f5032a3afa9994ba6ff31564e"}, {0x60, 0x103, 0xe2c2, "95087e2f19f23bd4ac7be5030b43f9d6f66f7c93d809eb2b640b0624c0befa4035139437fce7140d153440446e73e1fa419324ccbdb4d1b90d05ade8d7420e8caac8184978397f597f6f1be701eedc"}, {0x68, 0x11b, 0x2, "3520af0729d74d610f769944dabc05991d114324ef591d41661b01119fa81695dbee4f5ba7c9271aabefcb935750d4f8ab9bcfd3599e1cf6e422e4943f21282634afc119d5cd4d3e5b9972500d36420a89b42388"}], 0x4b0, 0x40010}, 0x2}, {{&(0x7f0000993000)=@ll={0x11, 0xf, r5, 0x1, 0x2, 0x6, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [0x0, 0x0]}, 0x14, &(0x7f0000094000)=[{&(0x7f00005f4000-0x1000)="99cc8a3ad9eacc3e447cbecf9aab2253ea425a684437a835984bc3cc811c131c0bd06aeea10ddc86e8f6a1d13be6013d3033f65940902b5088170f23a6903f5a3cf2f046a2adbefa3c060ae67175c55fe5c29c0d75ddb7d190611ae51e8fcfceb3f5d8e8ab62c80d87063805df9afba5ab89be322c7a3e472eca552d69d04f0e019f5febbef6fbceb6a964072760e108ee9de0dd0d8efb7140cccab93fc8e79085ddd827ace0936c5101f9634b7f92b65975b005897686fc4cc61f8ccfd98abc295698d1e635311ea89f5af0ead09b8dfd7adf96695f0b4e5f2c2c45d08afe55ea3fded264d7ccdf382bd58add91146857fabff09ac38bc826d094361fb3c065ccef0fea17887caaa727a7e292d809907e90b38e5f5f5f443d0ebbadfd97ea2dcf01d3d1370807761fe329886d74ee324e4b33b3e5913e0dd66942eb57d0e1f44ce2853d8d50079b60292e6a3e201c757ff9600eef02fef19eebafa3311875f6b6330445c39295565140c8fe3953de64d73124f1dbe73775886c094448d870f214271d973b17a6a25335ee15ec6411842195d75bd3d3031003f6edd27b095b239b136a9e91df480876edb4a1fc4e5492599e2650602b3a13db6ce9fb5127ea0f88da0b9b8f18f244a4e61b55ad7ee0b39477b8a7487f790cdaad3978022df48be61bbc45b26a71aaf675c1073320e5a51f115a8ac22f6b242f0c248025ad646d0773f1a4127e57cae94ff7c8e6e1cd96321a2d6b838ad98ae0e9313197b6611d62f3bc91ea6dbeb049faac055330b699550add5a426f060dde2e17b668b90ebabae96e98cb256433ff90f4780ecfa7b90b1e78f7bdf90b904b6f98c500e528b54209333af9bc41426d5cba4a4f536b5f38119b487d6cc82ea1150c491b4c70ea354120c6ffb76e1f6b2a3d452a4916a1260b815d2766672eba625895a62bbe4e7611dc7a0991cd3f170edd5f47406940e53820df7b48b1d86a91d3d231cb1d08873186d2b32938c2191371c9954dcd9599470d3716cd5f200efa138425fc8ce153f363769d434e30b53fb560d8e336e328c7f8cad3addcb176c12f01d01bb06b83f838066b559cbc25296f7000b864bee3b7787a1a987aa49009dbc6a1709df6eccaeb13a0b5a8812a3ada1b0132435f98418a26f1f5bb1ddd76407c8f5186a0d934dc42310e4f3f39b4b9f5477c2165b579da085c57ed8a0493c7132bcf3473a81a088f8039a3b2b8f2512b9d0a75a746f598939a59007e502909b8e139813b610ce2d35184e2e711cb9d79bd097fbe3568f505583dc44589ae1595160c3e6383ac480eae2f02c858e9cc97b5c3a13e47d620cc7c08826c2bc7b20f77bc371f74ea7de372109f0218328f0c261030f539ac2361b9ea9fc12f2357baa20640e2bcb6de494fbc70b255fd1000e83780ae772a4f3649a1545126a31130693407d1f693668aa91bb6529e2b632b4f25ad0909a9489932a56877290f25c198eac7ed99ee5307920ddc1f8bab5e89458224326ea47233921ac1832e63b2dc49f6bd2a7a54873c91629fb2939e7e749d75f7a5b234be9e719c337f4c5e35dfa3acea29d9a61eec86b421d7d9fb5cadf5f865678dd5868c1a59c4839ce924e8e1ff28d79a03878300580a4a79fd2e5de898d3d7453e6724425892c11629810633ccc439a7a301c12abc71c4d57d262464bdc54981fba40608bac04d37f0aecd7cde79e4487b111988bd4bf0c8e6110163e31c70300f32fa4f3a3e4118257cab5997fa653759732219270a0beb6d688204b8a767ed3e1406afb6eb2a15ae92b62ba685f7bf53a558c717e16b6004025971d374ed0a1773e1d25af321e371fe94f76c2d353b907bfcc36b68828b9bd8bb0f657f6035a62669d5f12eeb199f308486d2637725d11b1077e04a76c2e4c38bc080d9e6f2721e5ae96d131673c29f4e8f4de07a9eeb3a29f30e5958a8bcce3597076bcde0522039850059b2e0b5c2fe1e93ef523279e92641c2daeebe7605261b255ec01924297978bc76e7c1b97abdae6e38ac0b218098339297cb75cf1ec982553179b381ab5d18184775579c9152f499316d64898b243fac6c783f891c4cd8f285bfd9e00fab73893c9c19d29ef33be41e7e7d13e3847e3222500cb69f39b5d8552fce2c5fcb5fdd6c93b901027e8e421b2b13354dc336b17f4413e2464779cde5cccee02021604a830c3312137a16a9f2e8d787fbe5f2715d0c54737d24a4276266e25ff235e7622c97a5e3557ac150473c1614ef752645a483e8299f18bb0780dba2740764b1cb32711ad3152dbfc752cf7958fcc876a0bfb241d7eeef733d57ea24e6856ccf5c858267ce7d66205ef505bc3359b246621fe45e3e3f088042c55df7a4ac7b410246095170534f1cd850d815a060badb186e0986402d1733a614eae0c9bff2356611e32aaaaec1766d7e0b20d16e31123aef2171b34a874b5901bf43ea15a57e043009626471fd4b00ca20c2616410037dd4b5994730878b0ebb63bde43726dc10f338798dbcd2057911fcd2cfed8a88d0a24211df26673c538c9c26b73b557df6ffb735c2b0c225f3b12d48dffaa8dfab3a4cf24414765d331922f80a824b1f30b37531d01fd7bb9f8d99c056810b5cf26e18050d655a3269b7347b2b1a9f2c1270ba327adfcbbf40fe402f47cdcf7b923792751c2d860034b55ce7ec3acf2269c1a3233f6ce55ca073937b9fe348d837de101d40898dcca0be2aabe29d2fa4744d39848ec2c6dae3baeb2f12b4245c8b7908ee15fc14cff5bf424b33fb4a27ef2fe2cc258ebd651420b2d61bf3b3008ebfba9ff9e046c9e13a5e5d400bf4326beccfd733b1691a3aab33382c11576859f2ee7f678a8c23a9c0e344ebdaddcc7a65956f1305dff6c4bbc6843d7d6bb873dc690897573f2737f3c47e7d2d05a2d046f9dfa3311a016dc1f126b2dc7b01e96e3e40510e88b5aab28b0e578a6d311c47531f91374f5a7bb19735dc8e017d4281bf2cd10ad4af11ce5bc52022e1e9c986271a078cf49c4d95cb6ac8ee5051ab56839c78c15999a40dcc214f692e19ff9f6aa48897432ff31d8ce4e2d22c4180761517a164110cbe0756f26dd5caab05cf83f473ba4bdd13dcd53e9b57c47449f8366223a67ecd5bbe5c5f367665ef8efc93dc0343bcdc21c5399b48fc71ebe7a170b9bb1502fbbdff45995b88c210861127881d5f01a4bee6f792b7f3525752504a0e173b32abdf98a2d7e5a85359ae63435fd3b6a6657381d584a5a6b5f53a84ebd59d2b39850aaf9c904430b3d2c9560714b659cdaca5431396edaf3f4091f1b7ad292a7d74022c05db3c585b7f32f2d0a3b24e59887fca75ec72678eeb06d1e19b4f18c25e15de6e7b6d026a12717afa4de9a3104ec10ea12ab3abaab18b0c9707416fc84829eabc82a51e6b4750628b454c3be74c4ad155ac1bf748da534b92afb9fef47749161696662df15df4f5a7e6377820b09a57c8ac737832bc191ed49159cdedb595485800593a84d7e5032bb042ef66becc9ceea32d05f2f8272072b0098a44f1917dac26d6171edbac8bc4b025a071a36e507ae47ca360faef972f6712ab2ca163e992d930e697c6a58bd4d9d1dd161565cac8b58c0905ded3b751585ce7859b25b6cc097ff0cda5251d5111645b904da6bd85b784f831419284f600f5fd22afe704a054a2e1e2aa2c61c9ea5f9344b81f356432ed93c1b4722072382d3e710348620f61c64f3308509b41f5a02e0e861adc63acf9d9bbdeeedb8292a428cb4842858c1f58b84d7bf785eb3b395c7036091a116e5f212055b68fa2dc54d4f092ffd5e0ad3689296522a76a23e609596f28e04cf22468aa34deb42279f00b28317ef51de8cf5561fb424138dc1d4d6a3b4b60b220eeaa8c2f2d689fa4729c880acc99bd3d0c5b1ff29791c5fa474dba370e1d618ef802599e51c2a2661436ad2faac543e7b9474f65ca728ba3225e883f7e39282d31f55be1bfdbeef8804fab71d4c22afe2cf2f894db6793559c18c3a6615e521405f1dbb54695d60c2666564e4ceb56e03f4608b853b90c1460f6a1e196de975747f43934fb776fe026913e2450c20d4ada40ed6f18b58045eed3a4e5841ee7b5077c456e8d3b71de20d9b31935b66da7dcacac8535f5ef39ec71d5718b551c7ace97f9df6caf321566b6d072630ff64dc7baa152488732542bad5c705d74c25214c4742f370342ba3ca9676f4e975cb9f58f7a1caed9010b1d015ae93f2020d0947907ed07da487a4be695942507e3583e5af1dd92b9aeece059e9d3dc2245d9355535733d2a407ef93cc4034d25b4c8bcea5f4e94f9a9dadf35e747877372b75fec0469839f04e5700f141e88d6398268b5cc40e4ea8c31e7e60e780ec36557041fea20b44e189cdfe00954240d84282c24cc88400b46fcad980ac59ec6d0d384a041f74f82211fbf8c9705cb28b8c73ddfbbdec0cf5141bd3ca7a4ee19789953e01fc027690edc2d746fca9b512767a6d5216a8bde4dd53ab12759d6bb6df1a00eee3e092bf6e4360e21bd752baabf5cb0422641359992a8ab6eefa8c841e4e1886e1372bbbf5f939db0a5d26cd588a148cdc5cb78f8e3e84b30814cb1435693b06d69f7316ca534e8499c6ecc3f7888e1f4ff72f31681d6bc1d9fae3776427a5fafa76c359502c0d1ebe9a9bdcf7c625eba571aa84d278753abece49917d830671e3e02b77299e50766653da45c410cc1e747aabc7c2232db4a5f7e3af7282cf5e5f9a9848ffecd70f1da11cb0072b3231182b17a4960ea99171872869c7c2a86c31d4be3715b335ac8b58ae2ae8a1bd3060c6adb26437d48cc153ef456e9bd98c07ab9aec7d19069ae7c661917a48c4c74fb28babeaaf4f11bd028ed662c58818a670062ea733c90ff73452d9bad38a9c641f8153f56dbd8f0b79c0d82f1b395e53d9db116bf24e7cfbfb2b6121c24cef886c9f200ae33388235c3ba22dd04e7b75b013c5719bd9b656638b95920024035a35fe76a58170959d4f28b460e1082c161aea5087c38a62e80aea5843efc1bb1f72e9e8ac0b01d41485d6b0fe441d78ef15b5d628ad1efc3f98441530d68aa83cc1804c28f9a40f0a6865d74f0bb13afef22f337c709c86f7067619336821ed277b257706f58b743cefd57a535c8e9974eadf2f9429cae9d653d264f58668ad55816f4bd50901aa24f28fc990e761f3d8aab6ec09653926654ec7876bf9f89d9a46545dfafb79fe1bc3fcc711cc3776c294940579d8bfe453fdeac169351240aca73465f980b46569e3a15011f4e7aa016c41a35fee272debbdf54d4c0d06e73a50ceff2d4fccc8bbed82a4f65fc448f1ff0d7cf2e22a2021e87ea21c8b2255143394e1291cbe4f53b21a5aaf92ef07e3ece55cca16738c7cfff9c4aa3bf52a802974738b128a696d749ef8966c66b2f24b2eefe1e5d61c313b533f3b12d0e9d5a6a54404bd501710fabc797e7bdd6147bfd84aaf677e3dc5f73c5d6fdd2af1221e238750d8426681ea7dea30d9531c63eac485a314044a0ec8bccd308948241b1f7fa1a8196489b81ff55ff7fbf84c9d80f898ea357f780dff3843ea5d05d67e8472791f3729df2e48ee3a0a3b484838229f444ad1fa87af3883f3f2440d4f91ea392a04137a316b8c67a294019144155aee5a293f2d3fbe080e99f1cf355860bf1ea5eb346ae881caf363e915990e82c54d4c0833daa48f2d7f0cfdcb1703fb7d9af82c31f3e732b0ced17794a3d8d52a524c14e21cb583a69bd53e3a2f53277540eaba77957f063dc828e", 0x1000}, {&(0x7f00007ac000-0xb4)="ad075c98f765488d5b0bae35bef2f817b39c3156e09786ced811f798e4699e96c16dfde63b68a9c804e79a27f379736368ddc100d1b8cfeab9d3e67f9311c0c7ebb5adb3b2a716c32c1ca0284629f5dd36090b4f818dfe589ab115e022749c0e5a85eb7059411fc35362672a4351e1dcd21829e3489e063d6875f9b97f4d89db7eef9abce10d5946211923c286fc36da99639c646377774a2e75070dd723a7109dd53cf0d40854de15d390cbef6c584a6b3633ae", 0xb4}], 0x2, &(0x7f0000c0b000+0xb35)=[{0x18, 0x113, 0x2, "7495"}], 0x18, 0x80}, 0xfffffffffffffffa}, {{&(0x7f0000586000)=@nfc={0x27, 0x6, 0x1, 0x7}, 0x10, &(0x7f0000d6e000-0x10)=[{&(0x7f0000b6e000)="019805bccd9478", 0x7}], 0x1, &(0x7f00001f7000-0x100)=[{0xc0, 0x0, 0x1800000000, "4a9d35a681042823b63e73ddc008f2c4dde3d0e6e2bfd459fe1e71efa1c41dea27a3eca85239e2dc768a4f73fd168ba63248c8300a44fac7a1b76c355d93392796a808ff9cdd544a8af0064c92e30b576adce3dc54666d129542324b4cde247d7cdef04fa55bede268ede75b3b203e3ebf4f6686c8900dc0a711cc136547a8cba130c2518b73c02400b538ea2eae5588c5a97e35cba4e0055002441e36098a4f891ba12b1e6b848b5608a9"}, {0x40, 0x10f, 0x1, "7517a81bbfc773a31826590ba5f34f3791915736c9aa639eb45e42b6e1a3209c11f0c8ff6d4d674d3b3e1b987284b0"}], 0x100, 0x80}, 0x9}], 0x3, 0x40080)
r6 = socket(0x0, 0x80005, 0x80000008)
write(r6, &(0x7f0000326000-0x1)="40", 0x1)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xfffffffffffff423, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x440, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r0, 0x400000000000000)
r7 = dup2(r6, r6)
ioctl$RNDGETENTCNT(r6, 0x80045200, &(0x7f0000dd0000-0x4)=0x0)
ioctl$sock_SIOCGPGRP(r3, 0x8904, &(0x7f00001de000)=<r8=>0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x1, 0x0, 0x0, 0x0, 0x0, 0x80000000000064, 0x0, 0xfe, 0x0, 0x0, 0x19, 0x0, 0x5, 0x0, 0x55, 0x200, 0x800a, 0x1, 0x0, 0x0, 0xe7, 0x100, 0x0, 0x0}, r8, 0x0, 0xffffffffffffffff, 0x0)
shmctl$SHM_INFO(0x0, 0xe, &(0x7f0000731000-0x36)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xfbffffffffffffff, 0xffffffffffffffff, 0x0)
r9 = socket(0x10, 0x2, 0x5739)
write(r9, &(0x7f00003a9000-0x1f)="1d0000000104ff00fd4345c0051100000700000008000100030400dcff", 0x1d)
read(r9, &(0x7f0000411000-0xb0)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb0)
semget$private(0x0, 0x0, 0xfffffffffffffffa)
msgctl$IPC_STAT(0x0, 0x2, &(0x7f000050f000-0x44)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
msgget(0x0, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x200000000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2000000000000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r8, 0x0, 0xffffffffffffffff, 0x0)
r10 = socket$netlink(0x10, 0x3, 0x0)
sendmsg$netlink(r10, &(0x7f000001d000-0x38)={0x0, 0x0, &(0x7f0000009000-0x10)=[{&(0x7f0000014000-0x1c)=[], 0x0}], 0x1, &(0x7f0000013000)=[], 0x0, 0x0}, 0x10)
ioctl$sock_SIOCOUTQ(r7, 0x5411, &(0x7f0000189000)=0x0)
2017/12/15 23:28:16 executing program 5:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$autofs(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f6175746f667300", 0x100, 0x0)
ioctl$TIOCNOTTY(r0, 0x5422)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$netlink(0x10, 0x3, 0x0)
sendmsg$netlink(r1, &(0x7f0000529000)={0x0, 0x0, &(0x7f0000008000)=[{&(0x7f0000c36000-0x10)=[{0x10, 0x1a, 0x203, 0x0, 0x0, ""}], 0x10}], 0x1, &(0x7f000001e000-0x48)=[], 0x0, 0x0}, 0x40000000000)
syz_emit_ethernet(0x3a, &(0x7f0000f84000-0x3a)={@remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [{[], {0x8100, 0x0, 0xf464, 0x0}}], {{0x806, @arp=@generic={0x6, 0x896f, 0x6, 0x4, 0x3, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], "e9782baf", @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, "fd5867a25bbf936d09a44b2ed021ff03"}}}}, 0x0)
ioctl$KVM_CREATE_IRQCHIP(r0, 0xae60)
2017/12/15 23:28:16 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
sync_file_range(0xffffffffffffffff, 0x0, 0x0, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f0000bd4000)=0x0)
r0 = fcntl$dupfd(0xffffffffffffffff, 0x0, 0xffffffffffffffff)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100000000000, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x7fffffff, 0x0, 0x0, 0x3, 0x0, 0x2, 0x4, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
pipe(&(0x7f0000858000-0x8)={0x0, 0x0})
r1 = getpgrp(0x0)
setpriority(0x0, r1, 0x85)
openat$hwrng(0xffffffffffffff9c, &(0x7f0000211000-0xb)="2f6465762f6877726e6700", 0x400004, 0x0)
ioctl$KVM_CREATE_VM(0xffffffffffffffff, 0xae01, 0x0)
r2 = openat$kvm(0xffffffffffffff9c, &(0x7f00001db000)="2f6465762f6b766d00", 0x400, 0x0)
r3 = ioctl$KVM_CREATE_VM(r2, 0xae01, 0x0)
r4 = ioctl$KVM_CREATE_VCPU(r3, 0xae41, 0x0)
ioctl$KVM_CREATE_PIT2(r3, 0x4040ae77, &(0x7f0000a62000-0x40)={0x3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$KVM_SET_PIT2(r3, 0x4070aea0, &(0x7f000004f000-0x70)={[{0x6, 0x1000, 0x101, 0x7, 0x2, 0x3, 0x2, 0x1f, 0x79527745, 0xff, 0xff, 0x80, 0x1ff0}, {0x6cb2, 0x5, 0x100000001, 0x4, 0x7, 0x94d, 0x6, 0x8001, 0x6bf, 0x401, 0x6, 0x4, 0x5}, {0x7, 0xa0, 0x3f, 0x7fffffff, 0xfffffffffffff000, 0xfff, 0x600a, 0x2, 0x81, 0x5, 0x93bf69f, 0x1, 0x100000001}], 0x1f, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$TIOCMSET(r0, 0x5418, &(0x7f0000f9b000-0x4)=0x4)
syz_kvm_setup_cpu$x86(r3, r4, &(0x7f0000168000/0x18000)=nil, &(0x7f0000141000+0x8f4)=[@text16={0x10, &(0x7f00003cf000)="ba4100edbaf80c66b82c6cd08f66efbafc0c66b8cd82000066ef0f01c90f08dabd00000f01c9baf80c66b8248f778366efbafc0c66b80000000066ef0f213566b8e1b100000f23c80f21f86635080080000f23f8f30f01c3", 0x58}], 0x1, 0x40, &(0x7f000070b000)=[@cstype0={0x4, 0xf}], 0x1)
ioctl$KVM_RUN(r4, 0xae80, 0x0)
setitimer(0x1, &(0x7f00000e9000-0x20)={{0x0, 0x7530}, {0x0, 0x2710}}, &(0x7f000048c000-0x20)={{0x0, 0x0}, {0x0, 0x0}})
2017/12/15 23:28:16 executing program 5:
r0 = open(&(0x7f0000968000-0x8)="2e2f66696c653000", 0x180, 0x4000)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = gettid()
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x1e2, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0xea8, 0x0, 0x0, 0x2, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r1, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_PR_SUPPORTED(r0, 0x84, 0x71, &(0x7f0000cc8000)={<r2=>0x0, 0x251980000000}, &(0x7f0000d89000)=0x8)
getsockopt$inet_sctp_SCTP_SOCKOPT_CONNECTX3(r0, 0x84, 0x6f, &(0x7f00002ae000-0x10)={0x0, 0x4c, &(0x7f0000c1d000)=[@in={0x2, 0x1, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x0, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x3, @rand_addr=0x7771, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x2, 0x1ff, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x3}]}, &(0x7f00000ae000-0x4)=0x10)
getsockopt$inet_sctp_SCTP_PEER_AUTH_CHUNKS(r0, 0x84, 0x1a, &(0x7f0000989000-0xbe)={0x0, 0xb6, "2ed97009340886dc420a6b11f3a74ea514e203e34208d33e3fde82f57ada8b50b579df79628d67309e12782b9f25b6a196fc80d61168ebd9a1943e39428a6c04a5f0f3f59cb9a139b56959cc3cf082db32bab38d01a114b56a6d3f13aa5a264559022793469daaf911362671efd8e94c3d9c218a24d7d9b667bad9456aa5e0cbc60d55ee1f5f67a4659bd2c5687a7c7afd7756843d058c7c7db07a926e2bf9bc05895fb14dc06425fd14408248f7531b3e6b83202d12"}, &(0x7f0000b18000-0x4)=0xbe)
getsockopt$inet_sctp_SCTP_SOCKOPT_PEELOFF(r0, 0x84, 0x66, &(0x7f0000f45000)={r2, 0x61e25731}, &(0x7f0000051000)=0x8)
getitimer(0x0, &(0x7f00007fe000)={{<r3=>0x0, 0x0}, {0x0, 0x0}})
select(0xffffffffffffff83, &(0x7f00007db000-0x40)={0x1, 0x2, 0x9, 0xffffffffffffff7f, 0x65f24af9, 0x819b, 0x3f, 0x4}, &(0x7f00007e1000)={0x4, 0xcd6e, 0x100000001, 0x0, 0x7c, 0x9, 0xd13, 0x7}, &(0x7f00006c8000-0x40)={0x100000000, 0xe1, 0x4, 0x6, 0xffffffff7fffffff, 0xffffffffffff8001, 0x100000000, 0x8}, &(0x7f00008da000-0x10)={0x77359400, <r4=>0x0})
utimes(&(0x7f0000cbd000)="2e2f66696c653000", &(0x7f0000bf7000-0x20)={{r3, 0x0}, {0x0, r4}})
mmap(&(0x7f0000000000/0xdc5000)=nil, 0xdc5000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x400000000000, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
unshare(0x42007fd)
dup2(r0, r5)
perf_event_open(&(0x7f0000474000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r6 = syz_open_dev$binder(&(0x7f00008e6000-0xd)="2f6465762f62696e6465722300", 0x0, 0x0)
r7 = creat(&(0x7f0000794000-0x8)="2e2f66696c653000", 0xc0)
execveat(r7, &(0x7f00004e9000-0x8)="2e2f66696c653000", &(0x7f00000d6000-0x8)=[&(0x7f000052a000-0x18)="6b657972696e67706f7369785f61636c5f61636365737300", &(0x7f00005b1000)="00"], &(0x7f0000dee000-0x8)=[], 0x100)
ioctl$BINDER_SET_CONTEXT_MGR(r6, 0x40046207, 0x0)
r8 = syz_open_dev$binder(&(0x7f0000010000-0xd)="2f6465762f62696e6465722300", 0x0, 0x0)
ioctl$BINDER_WRITE_READ(r8, 0xc0306201, &(0x7f0000007000)={0x8, 0x0, &(0x7f0000006000-0x2c)=[@acquire={0x40046305, 0x0}], 0x0, 0x0, &(0x7f0000002000)=""})
r9 = openat(0xffffffffffffffff, &(0x7f00009e5000-0x8)="2e2f66696c653000", 0x0, 0x12a)
ioctl$DRM_IOCTL_GEM_OPEN(r7, 0xc010640b, &(0x7f00004e7000)={0x0, 0x0, 0x400000})
socket$packet(0x11, 0x2, 0x300)
close(r6)
ioctl$BINDER_WRITE_READ(r9, 0xc0306201, &(0x7f000000e000-0x30)={0x10, 0x0, &(0x7f0000b95000)=[@clear_death={0x400c630f, 0x3, 0x4}], 0x2, 0x0, &(0x7f0000237000-0x2)="02ba"})
ioctl$BINDER_SET_CONTEXT_MGR(r8, 0x40046207, 0x0)
setsockopt$bt_BT_CHANNEL_POLICY(r9, 0x112, 0xa, &(0x7f0000f03000-0x4)=0x2, 0x4)
ioctl$BINDER_WRITE_READ(r8, 0xc0306201, &(0x7f0000004000-0x30)={0x10, 0x0, &(0x7f000000f000)=[@request_death={0x400c630e, 0x0, 0x0}], 0x0, 0x0, &(0x7f000000c000-0xe1)=""})
ioctl$BINDER_WRITE_READ(r8, 0xc0306201, &(0x7f000000c000-0x30)={0x10, 0x0, &(0x7f0000007000)=[@acquire={0x40046305, 0x0}, @increfs={0x40046304, 0x3}], 0x0, 0x0, &(0x7f00002e9000)=""})
2017/12/15 23:28:17 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0x11, 0x100000802, 0x300)
sendto$inet6(r0, &(0x7f0000a96000)="01", 0x1, 0x0, &(0x7f0000999000)={0xa, 0x0, 0x1, @loopback={0x0, 0x1}, 0x0}, 0x1c)
mmap(&(0x7f0000000000/0x237000)=nil, 0x237000, 0x1, 0x32, 0xffffffffffffffff, 0x0)
clock_gettime(0x0, &(0x7f0000791000)={<r1=>0x0, <r2=>0x0})
r3 = socket(0x4, 0x7, 0x2)
recvmmsg(r0, &(0x7f000088c000-0x1e0)=[{{&(0x7f0000ed0000)=@l2={0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, 0xe, &(0x7f00005be000)=[{&(0x7f0000231000-0xed)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xed}, {&(0x7f0000f2d000-0x99)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x99}], 0x2, &(0x7f00002da000)="", 0x0, 0x0}, 0x0}], 0x1, 0x0, &(0x7f0000013000-0x10)={r1, r2+30000000})
r4 = open(&(0x7f00006e8000-0x8)="2e2f66696c653000", 0x2000, 0x2f)
ioctl$EVIOCGSW(r4, 0x8040451b, &(0x7f0000cd7000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
recvfrom$unix(r0, &(0x7f0000496000-0x51)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x51, 0x40, &(0x7f00003b2000)=@file={0x0, "2e2f66696c653000"}, 0xa)
r5 = fcntl$getown(r3, 0x9)
r6 = gettid()
preadv(r0, &(0x7f000044e000-0x50)=[{&(0x7f0000cb6000-0x3b)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x3b}, {&(0x7f000084d000-0x37)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x37}, {&(0x7f0000950000-0xdc)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xdc}, {&(0x7f00005c3000-0x6c)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd2}, {&(0x7f000017b000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd4}], 0x5, 0x0)
bpf$OBJ_GET_PROG(0x7, &(0x7f0000326000-0xc)={&(0x7f00007f3000-0x8)="2e2f66696c653000", 0x0}, 0xc)
kcmp(r5, r6, 0x5, r0, r0)
getsockopt$inet_opts(r0, 0x0, 0xd, &(0x7f0000622000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f00006e2000)=0x1000)
ioctl$sock_kcm_SIOCKCMUNATTACH(r4, 0x89e1, &(0x7f000047c000-0x4)={r4})
2017/12/15 23:28:17 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet(0x2, 0x2, 0x0)
ioctl$sock_inet_SIOCRTMSG(r0, 0x890d, &(0x7f0000188000-0x78)={0x8, {0x2, 0x3, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x2, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x1, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x8, 0x7, 0x3, 0x4, 0x5, 0x0, 0xfffffffffffffff7, 0x3ff, 0x2})
r1 = open(&(0x7f000012a000)="2e2f66696c653000", 0x88000, 0x4)
getsockopt$inet_sctp6_SCTP_AUTO_ASCONF(r1, 0x84, 0x1e, &(0x7f0000c0e000)=0x0, &(0x7f0000139000-0x4)=0x4)
r2 = socket$inet_udp(0x2, 0x2, 0x0)
bind$inet(r0, &(0x7f0000616000)={0x2, 0x2, @rand_addr=0x7f, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r3 = socket$inet(0x2, 0x2, 0x0)
accept4$packet(0xffffffffffffffff, &(0x7f0000f2f000-0x14)={0x0, 0x0, <r4=>0x0, 0x0, 0x0, 0x0, @local={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f0000d94000)=0x14, 0x80800)
setsockopt$inet_pktinfo(r2, 0x0, 0x8, &(0x7f0000869000)={r4, @broadcast=0xffffffff, @multicast2=0xe0000002}, 0xc)
getsockopt$sock_timeval(r2, 0x1, 0x14, &(0x7f0000096000-0x8)={0x0, 0x0}, &(0x7f00001c5000-0x4)=0x10)
setsockopt$sock_int(r3, 0x1, 0xf, &(0x7f0000596000)=0x9, 0x4)
setsockopt$SO_BINDTODEVICE(r0, 0x1, 0x19, &(0x7f0000fec000)=@common="6c6f0000000000000000000000000000", 0x10)
r5 = bpf$BPF_PROG_GET_FD_BY_ID(0xd, &(0x7f0000407000)=0x0, 0x4)
r6 = bpf$OBJ_GET_PROG(0x7, &(0x7f0000ca6000-0xc)={&(0x7f0000463000)="2e2f66696c653000", 0x0}, 0xc)
setsockopt$inet_tcp_int(r0, 0x6, 0xa, &(0x7f0000a9d000-0x4)=0x7, 0x4)
bpf$BPF_PROG_ATTACH(0x8, &(0x7f0000c04000)={r3, r5, 0x7, 0x1, r6}, 0x14)
bind$inet(r3, &(0x7f0000afc000-0x10)={0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
2017/12/15 23:28:17 executing program 4:
r0 = socket(0x11, 0x4, 0x9)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = accept$packet(r0, &(0x7f0000000000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @remote={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f0000f5e000-0x4)=0x14)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f00001a6000-0x78)={0x1, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xdfffffffffffffff, 0xffffffffffffffff, 0x0)
write$sndseq(0xffffffffffffffff, &(0x7f00001d7000-0x120)=[], 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10000, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x8)
r3 = getpid()
pread64(r2, &(0x7f0000006000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe1, 0x0)
getpgid(r3)
ioctl$sock_kcm_SIOCKCMCLONE(0xffffffffffffff9c, 0x89e2, &(0x7f0000618000-0x4)={<r4=>r1})
r5 = socket$inet_sctp(0x2, 0x5, 0x84)
getsockopt$inet_sctp_SCTP_PEER_ADDR_PARAMS(r4, 0x84, 0x9, &(0x7f0000f1a000)={<r6=>0x0, @in6={{0xa, 0x2, 0x7, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x6}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x7fffffff, 0xffffffff, 0x1ff, 0xac, 0x2}, &(0x7f000068b000)=0xa0)
setsockopt$inet_sctp_SCTP_RESET_STREAMS(r4, 0x84, 0x77, &(0x7f0000201000)={r6, 0x7}, 0x8)
getsockopt$inet_sctp6_SCTP_ENABLE_STREAM_RESET(0xffffffffffffffff, 0x84, 0x76, &(0x7f0000084000)={<r7=>0x0, 0xfff}, &(0x7f000020b000)=0x8)
setsockopt(r5, 0x5, 0x1, &(0x7f0000025000)="34c55919cf16a6d14c3ae32a46bc6160bc9c3573090658522544aab2e5dfb0413d79b36113dd", 0x26)
getsockopt$inet_sctp_SCTP_PRIMARY_ADDR(r4, 0x84, 0x6, &(0x7f0000060000-0x8c)={r7, @in={{0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, &(0x7f0000548000)=0x8c)
clone(0x200, &(0x7f00007e5000-0x2)="", &(0x7f0000744000)=0x0, &(0x7f0000f8b000)=0x0, &(0x7f0000a11000)="")
statfs(&(0x7f0000367000)="2e2f66696c653000", &(0x7f0000b08000-0x4)="00000000")
r8 = openat$vcs(0xffffffffffffff9c, &(0x7f000078f000)="2f6465762f76637300", 0x200002, 0x0)
ioctl$EVIOCSABS0(r8, 0x401845c0, &(0x7f000019b000)={0x95, 0x1ff8000000000000, 0xfffffffffffffffd, 0x4, 0x0, 0x8})
mknod(&(0x7f00001c2000)="2e2f66696c653000", 0x1040, 0x0)
flistxattr(r2, &(0x7f0000c1c000-0x64)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x64)
execve(&(0x7f0000f8b000-0x8)="2e2f66696c653000", &(0x7f000089d000)=[], &(0x7f0000030000)=[&(0x7f000085c000-0x5a)="757365725d2a6d696d655f747970656d643573756d7b5d7472757374656473656c696e757816267573657273656375726974792c2476626f786e657431262b5b47504c76626f786e6574316d643573756dcf6574683047504c00", &(0x7f000015f000-0x6)="6c6f676f6e00", &(0x7f000021a000-0xc)="656d31736563757269747900", &(0x7f00004ea000)="6370757365747d252500", &(0x7f0000e0b000-0x10)="2f6465762f73657175656e6365723200", &(0x7f000019f000)="217b00", &(0x7f0000d8c000)="656d315b2c00", &(0x7f000072c000)="4073656375726974792d00", &(0x7f0000ffe000)="00"])
ioctl$DRM_IOCTL_GEM_FLINK(0xffffffffffffffff, 0xc008640a, &(0x7f0000f84000-0x8)={0x0, 0x0})
r9 = syz_open_dev$vcsa(&(0x7f00004d5000)="2f6465762f766373612300", 0x6, 0x40000)
ioctl$EVIOCSMASK(r9, 0x40104593, &(0x7f0000aff000-0x10)={0x0, 0x4c, &(0x7f0000778000-0x4c)="46e2df37b16fa03300eb9ef11ae00190405c8403e441907ad75275120868a08aaf94e4a002f652ca439c9370e87a37c5573e65e3fdc2db5e33699beb152ff726832a420a7e1ad4260ea8f355"})
kcmp(r3, r3, 0xb, r2, 0xffffffffffffffff)
process_vm_readv(r3, &(0x7f0000862000)=[{&(0x7f0000c73000-0xd7)="00", 0x1}], 0x1, &(0x7f0000dda000-0x50)=[{&(0x7f0000292000)="", 0x0}, {&(0x7f0000c45000)="00", 0x1}], 0x2, 0x0)
2017/12/15 23:28:17 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$mouse(&(0x7f0000eff000-0x12)="2f6465762f696e7075742f6d6f7573652300", 0xffffffffaf45fa4e, 0x20100)
getsockopt$inet_sctp_SCTP_RECVNXTINFO(r0, 0x84, 0x21, &(0x7f0000530000)=0x0, &(0x7f0000a7e000)=0x4)
r1 = socket$unix(0x1, 0x1, 0x0)
r2 = socket$unix(0x1, 0x1, 0x0)
bind$unix(r2, &(0x7f0000003000)=@file={0x1, "e91f7189591e9233614b"}, 0xc)
listen(r2, 0x0)
r3 = accept4(r2, &(0x7f00003c3000)=@alg={0x0, "0000000000000000000000000000", 0x0, 0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f0000bac000-0x4)=0x58, 0x0)
utime(&(0x7f0000fde000-0xa)="e91f7189591e9233614b", &(0x7f0000013000)={0x3, 0x4})
getsockopt$inet_sctp_SCTP_RECVNXTINFO(r3, 0x84, 0x21, &(0x7f0000417000)=0x0, &(0x7f0000b21000-0x4)=0x4)
io_setup(0x5, &(0x7f000026c000-0x4)=0x0)
connect$unix(r1, &(0x7f0000932000)=@file={0x1, "e91f7189591e9233614b"}, 0xc)
2017/12/15 23:28:17 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$ptmx(0xffffffffffffff9c, &(0x7f00006c2000-0xa)="2f6465762f70746d7800", 0x107800, 0x0)
fdatasync(r0)
perf_event_open(&(0x7f0000271000)={0x2, 0x78, 0x46, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f0000bd4000)=0x75)
r1 = creat(&(0x7f0000f84000)="2e2f66696c653000", 0x2)
timerfd_gettime(r1, &(0x7f000055f000-0x10)={{0x0, 0x0}, {0x0, 0x0}})
r2 = open(&(0x7f000008e000)="2e2f66696c653000", 0x10000000080040, 0x0)
perf_event_open(&(0x7f0000271000)={0x2, 0x78, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f00008ab000-0x8)=0x8000000075)
accept4$inet(0xffffffffffffff9c, &(0x7f00009d6000-0x10)={0x0, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000e78000)=0x10, 0x80000)
r3 = openat$ptmx(0xffffffffffffff9c, &(0x7f0000613000)="2f6465762f70746d7800", 0x802, 0x0)
r4 = epoll_create1(0x80000)
epoll_wait(r4, &(0x7f0000866000-0x30)=[{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}], 0x4, 0x93)
getsockopt$ipx_IPX_TYPE(r2, 0x100, 0x1, &(0x7f0000728000-0x4)=0x0, &(0x7f0000a7f000+0x3a)=0x4)
epoll_ctl$EPOLL_CTL_ADD(r4, 0x1, r3, &(0x7f0000825000-0xc)={0x80000001, 0x0})
2017/12/15 23:28:17 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
capset(&(0x7f00000fc000)={0x19980330, 0x0}, &(0x7f0000244000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_procfs(0x0, &(0x7f0000f87000-0x7)="6e732f70696400")
setns(r0, 0x40000000)
r1 = socket(0xa, 0x802, 0x0)
syz_open_dev$sndtimer(&(0x7f0000bda000-0xf)="2f6465762f736e642f74696d657200", 0x0, 0x1c90c2)
connect$inet6(r1, &(0x7f0000453000-0x1c)={0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
timer_create(0x0, &(0x7f0000b5e000)={0x0, 0x36, 0x0, @tid=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000676000)=0x0)
clone(0x100603, &(0x7f00005a9000-0xfc)="a097fe05e63d2a6ef7539a4742914190071640ea46fa5a2c7a12514cbe28e4620e901b374acca36c3f27986af949d094d44372ec3b92c94097c0145f3c6d213f83c45b338530b6387ef4ffac7602b3464b41cfca4cf1baa6dd835cb4e27116d2f0ed5f23b9630dffb2bb17602519ddb53cc60953c2ad5bf746935d692949cb8e1dd13babfa4164515c6a627fa532ba31ba11add34932f7b527877e352bd9f618c1fee8eae445d61eb6859de887d9df2c7cb23adf8214bfd86efb6172e8d6b49f73a824c3e0412dfc6f5d2151d6fc448a946b9f3be12120c1f3d424b32926512ef28a49fc00d056efeaf8ca9dc25ce3612a91f2bcd22fba36d1bc53d8", &(0x7f00009f9000)=0x0, &(0x7f0000dee000)=0x0, &(0x7f0000c1a000-0x57)="f913eccd867b7ac4636351f3e2e587be8da9871ca490d0803374514ed567fc761beb6efdae2bab87fcac456ec5a51cb2651a444a8404d02df8ade493a7e96278959891f39ad0940004dd86e58574ccb01aeb6b7f318c50")
umount2(&(0x7f0000591000-0x8)="2e2f66696c653000", 0x2)
sendmsg$nfc_llcp(r1, &(0x7f0000442000)={&(0x7f0000921000-0x60)={0x27, 0x0, 0x0, 0x0, 0x0, 0x0, "1814145680ffffffffffff7891000076e43108f579bd95054d6b050000bebc48e8d8cda3d681fc482e6e0409000000000000da0303cc208a6e4bf82eff4d04", 0x0}, 0x60, &(0x7f000092b000)=[], 0x0, &(0x7f0000921000-0x64)={0x18, 0x29, 0x3, "00"}, 0x18, 0x0}, 0x0)
ioctl$sock_inet_udp_SIOCOUTQ(r1, 0x5411, &(0x7f0000946000)=0x0)
setns(r1, 0x8000000)
ioctl$DRM_IOCTL_DROP_MASTER(r0, 0x641f)
epoll_create1(0x80000)
ioctl$TIOCGPGRP(r0, 0x540f, &(0x7f0000493000)=<r2=>0x0)
ioctl$SNDRV_TIMER_IOCTL_TREAD(r0, 0x40045402, &(0x7f00001a7000-0x4)=0x1)
ioctl$sock_FIOSETOWN(r0, 0x8901, &(0x7f0000c81000)=r2)
[ 52.121052] binder: 11884:11886 tried to acquire reference to desc 0, got 1 instead
[ 52.130803] binder: 11884:11886 IncRefs 0 refcount change on invalid ref 3 ret -22
2017/12/15 23:28:17 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = msgget(0x1, 0x4)
msgctl$IPC_STAT(r1, 0x2, &(0x7f00007e1000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r2 = fcntl$getown(r0, 0x9)
r3 = perf_event_open(&(0x7f000000a000)={0x5, 0x78, 0x9, 0x0, 0x0, 0x1f, 0x0, 0x0, 0x0, 0x1, 0x400, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20001000, 0x5, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0}, r2, 0x2, r0, 0x0)
r4 = add_key(&(0x7f00007fa000)="7573657200", &(0x7f0000b89000)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f000064c000)="7d504370627ca7d09ca092c6c4d04ba8c218c04f76ca4cbecd7dc00d71d9a9ed727a68b652f41f29db58da8341de3c662f994bf4bed6c3c8899e61e2607e1c0b3c5fa1c20b5ee78fc32b862f6f5eac70a732f78ec4e40a8b08e27d162ddcc7baf60d6c4f93307d275a8797558f8af6b744b19d7df3f0a02afe1d82e5badd2d9858c5233b732c6cd3bc123bd8fab221c73eb5551c0b084ca3b191a501b46a26aa372ebc4158b084267d3db9feb836cea6c3efbe54aab40df26a8b81b1be2b53b741565d0ace5bf5b5416161abba2006d597566bf567f8dbf043678fdfd43b8da44a2259c5dede1a07e91841f2044824084d949a9673bbc4bfd085fbeaf729532eb1dda0439ae02e561384c5343e1737aa70e5e02d9670039748e0c4d203e074928e30e1ecfbe57f30839d88fe1fbf465c710c2c9b0c8a24d3744f12d269c352cd653ebd4d6b7556a9ed2d236382a8aeda184149f87d8248913d51e5830e7d41247048d773c3dc7246d845e0a586e7b290c668f846dc367a43c126644df3d20745ab2541e0a8ce4d04b558ea56953f9128f5c76bd906d512c625ba9ff925531bcae3544dc15ef3c29f6a69af0e357e33389461f5fe8ef396f7c8a7236aab76014033f69bc6fd7fa1ac26b021702381cd358eb99088a939ea57fa52b5b35999792d3597f0b269fe2525f1849ffdbce1dbe558038f4aa9575a9e910e2302c899262ae391c9d0ef484a99af36058b927b206a51cc7220d24e7ad3895d5904e459ea9f635e5d63523a96a526abd40b9c8fc075732210406f78dd19ecd533906dffc58ebcf845201f0230dce5052c93f76bb6fa4ae21964f0f3cd2204b04808e181322b2a5cb1ab752452e431cf18a9535a25043c30974d3d109b40c49953527f30d5250a2f1f4a3bfb60569c9caaa52c2f3836dff619ffb66b96d6a3173a4bd4b24bcd8896897738ed65d5f2abe90e58d2c4c2fddae212a5687ecb82e87fdcebfd38294501b0882e0b1bf17e5ffdb2f5a22d46f2d0738fb79eaa9fc9a896dc4e501a25fbb2f404b5150da66a352baf667b61b7e38ab4fbbbb6a2d7b797865367e28c12131545e7fa2d7dd8db4b0cdb38963fe91aa1e67385fc3ab42531e7c3b6e53362c1afd7417cc804bb34ea091325ea2e81f6cf53c45b2e2bd90db58ba84729330b98cde8ee1e897fc6322dc738d9920813225696b8dbe4c20062e1ef23bd4b9968d7ea25b4451f49e1a6c9e5871f182ca2100b8a481c79bc9bc5f6a21b8ac7edb3341e1c9333bd401edd4c987211c68c463137cb2bd45fced5a6af6f13687efc9e749c4484750d158303c67abcf4828c640ed18f07f9807ea226d72ef88c99f6340bd44ea6ef18af5710628e06c49d8dff923d478cbfa84fdd18e2adf085fce8d96b33b01b5d04a260f7b4ff2c1cdf790fed668bfbd9c7db3260092e51038245440c314b12ef7d560c4167a6bcd29b1b20740914d3db91244680ffb6b8513ad773dfb568e3f326a9616547a20b45841bc11b5237807a6620fe0eea9e62ac9e186418e682bcc381541c5eacb3478a220f8c0f28179146792811d455308fd100bceba4eb277e00257d7136686d819fdeb6eb354a0bf802bff2d23e00cdc9e009b890006d6edd83b31fe34799023faa4a3d60d6455e8c0b10d62df411dd0571d754493e7657ea2e043cb4dad242677e1f7846808e013578433019344ccf5b3e26aeb7c0c07d042c4c65b0723e818253b29e3364a3228bb68a5873f064b50d3799c2982fb18883881fffec7ac287d91fbd33c7cf84336787f4da45773200d4de67ac01a577dec3e83f9ccdde4a188623c744421fef44f17b6e49d8f5c14491b90ac56022249142dff782a2a67db2ab5a7f80c94353441f819dc6730afc23f05c5faa16731056ec95870c8a343a9a05dd0d56fcefcce23d7365580bb4e4001b2a163523a2541012bec352035ce130692611e9d68d8b5fad7a3bdaa3a31e2b2467d240789b0c8b87c0067b27bd4714f3b40f8baf5f5332ca0bae8c2c99d2424969de56d62dbe347c158bd7095bbb49b7987aea77a0ce2f33cef0059f95c9f6ffb218884f31a6424654c224d7e31ad3ee736ac9bfc34a099a7ee9e72aa715590b4a4065d25181365548f6a936c089d6c6d3c4e0f4cffadd5de256f4a59be9d5f0581c5ba8641409a8759c78de0cf1eff4576bccbbd3357fd84467e1c3a50d43a52019fc50176d9533092ac65a3a83c7082f470a579e69b150eb2fd49a85536e37a84258ecfcf36ea22324fdbe280a293fcfd66f977dff0b30b471ba6d94628b9e872352622e3bdfd2bbc97299735ba0d2b74637a92cb627eba3e309d303139982a4fd84c98cf56e52d4249c40ea452a71a883945ccad28c05ede00589115caac191cc74a495e110f54b5fcbead94d1acd6b786b65fe45507af63e9cac5f8c4b1bb754658f63c84c2f594c623b07024b95de6904bd993c9e4506469563d7b1e3b4f82cfbc92d31278c4d9dcc2ec4a954045687a13c18af0d41651f249d479e8f489e280d1f6b27e40b621f0ace77de505310d062dc36654982eba5b6ac2adb4c2d1b05238c7c5139ab24aa185401268f9657be4c60f339f84bbe629eb6bef090fea2f2df390827ec3970ea1b4e5d0d2d8df4db0a28712f5bf597fe6a74f028de08a77cd8150e5cc2f46f503f98b7ade9ae66cc667151722d5a4104a1675ab7ec59dd7ca659cebef807e32686af51b5bef40224c6c81cd115f0f09a97a73d0d3687d1529a076d20bf228dfa6b39c3ab6288cfe8c96471781f835aa46b80ceda6945e4a19b0db90e580f3d4842f98d90f5712da12bf21bc275c76a34ef05593326b3681fe19fc924c35e4c816d52aaeba497c484db5b1d5ffc333bd9c9660007f2bde3ac5dcfab0d00000000000059915527c2899faded9a5bb3fb67bf9f986edd036c981f938279ac9d44107c99c6feca4098e4c5e6d785ebb8940bd5bf695b31d9d7bd919ee1298f414267985e4094b664c282e6af33e584cf906590b63832fe85a950836e3c7ad8d0920fdc7665df1d35747338ac4a8d34075b5113e4a5fb5309c8621c7ddee7a53685075edcea22c01ca1e8d345c3800ee436b7c10b03bfec66365a10c3bc8b733914ed58bfb1664d055d40e91806795173934767009c4e4ae9ab214bf79f514bda4dcd3ededb6fac208b1c4bc7c3e1fafcf2471b450c26129a6eb26ab7e8891549eb0775d94b84a4ce36fc7cab72552ab03f520a7faf55ac36643929713d2e55489207c4a3b31bd45e364e125c154bc7226169e9880ba4ad0d7b2818037539c9b4005ea2c7a2e403bc6d7055b9cf20beb2e4d973544aaab2c3ed93aef218ff123855613a9969be60876179f9a94def6bf5616605e0fccfdd548cd0a152d618f1e6ef9b34089488860e560c2cb9d485fdc37548bb0752b20d393b9700b4fd843958b174a5150b3592aac815c20fb7d732639823be1ccc7b21620e8021dc6cb0b97fcf52061e18304de142418282f317800a377e6149e88f6ef4823555f874c96ec0c4d3df1fae85fdb0b512929d69ccab8cdeee349996c8c98a9c32761985bce9dd2278f66dfacb1a15be357a8788fd7a05e383afb2e7810b7621d004e9cc3178b7aaab8bce2b11dd7b1f2d9d9bea5cb2b0ecfe87937d1c60b800d15ccb6a6d5a046ba36276180116daaea61b34c6eb0134e9f064fcfac8976cdb4e0f1fde937f0b33522c1e40ee417747c8eecc5215324d121fc83ba05c7b4334be49f5f6791238328be65e7252f69fde2c7e8fec32cced4daf3acc76728cf2a7759faf33802341d4f2e182051d73a51d007ed73ae83cce6487340e713d0e6a6759b3a438471975cb3181feb183dfe4e5f53055c2f0804ae45f093e5116b6f632c5afbffccbe7131914f5c72805c5e267bae19f86a8d0c912d8b89e1a018fc512d29071850f0330933dcb1ebb57e46a727077399994a02094e483f92ce732516fcff93612fc368ef33c426018348768b60be80b631da50cfe12ab281c75fb889d6a243cec3536ff7d2bdd62022a3decd44b991fad646a4d4c87e96f9d2b9b858c185e03bddb34ec3c5ecaaf809f97ce6957fa81740843be5d3dd1dc73ec25a6b0713a2cfaa85dc554d6c27c5675bbb292461a5e40bd9c74a11b14f1031f5f72c7f630f4c8b6e6cd4bf076ddb17a2ef963fd2f6fcff232071b47472c2cb8e06039ccf397d64c2191309e209dcdd1c56fe461030194a43c7bdcd1127ecd8ed86cb48747076eb3d770e519679ec7d7250c025f7e8445fa8f5d5bd51b487a363e007a686fdf23c001823eb7edc3baadab58dad5e14748b8739c535159979addb9f3eb944ce4ea531470729b029c2a79c97492f251ed4d93076e0d55852af08728099e0b045dd5d1de6adfde3159ae1a25b19b30088e0997c115eeb1c4732bcbb4d91e4a651edc96418dc542f4e43ab8405aba079fe60137e1186feb10b1318b15b89e6d40c7b3edbfee69e90bfcee506844d34d0c2488ac584ac3dc694099b72dbb83ee1285cc9bc2071804922df319fa0d18e22bf6dfc9eacfbdafec70a548e60947721c0d024efd65594765871b6e2f2829289845ac089a34b1f8dac1f94915f92e2d56fa7ba7dc6e06c23084d1c32db699321633393ba0241f20e6de1053cacd82a20eb204683c63503d582165eddb5c01f83fa9c85f8e660972c65f00c91713b28d7a1a8e622d3fced54f0a1b79c19fe81bea0fd56a9ef9d07bd954b3e170fb3942b14eb935a62083021cae30b66990c480ab8a05a69bf04297634c5b3edf38832ba18d9e0dc85552b9d080ca0f35274a9684feb37db7d671493c20cb6d09b02ab43db2e238c6d455b24c28e6b8f4cbc48779a4e459f9be0115112872e9d906aef88af859beabd675a03f6b6ad6a302061c0dbfe936e80f8f01732f588f9e862677e6e9d214b6262d885e6d0f3d164f6142f49115460d5ba32b24d8744014e099635493ed0acdef0a74743037b4fba73f498c97b8171b7e8a1ab433a33035f5adc926dfea1f09eb1495fd97583f4c2dcab112dea4367057ab976a84d9454e1529f49016f5eaf1be052a0f9330c539fb75b68e0ebecbdd0a10e0541c98f3e67626302259c2acda83123819a12bd9ee735ab8c6f649499202f69f4a97e46fb6e3f9345fce4b0728d9a7305b1df90696ba0d6473ea4512a91ca6ab516a5d840221bc977a6e52c7ed297274e6679a94e19ca27ca18b45e9a7d329dadd3daf0fc292d7c8e44e75c3c3d89d336fc043979b7436b78794901bd39a8839146a371fb0c24d6b3bea562bc4ae5183e5aee799e9598dc65de720b32d26123e3a90f825f6b5bda209a77ed5347744af271228dd84e82ea687dc40465591cb73b40de764707e9552cf59337b1f34821d47a74d9d3e4ed8d8bf06a8d5efc69b0105a3df3f4994a0e6bf142da19cca9f101e85f2096e773ec2393d1e901ea3b7dfec09dc46bf6829ccb009b69b3ae3b7406425e0c6a97fa93c635c9563d1faa3f8162af4f6a67015696acb5f85ade2404ec1af85c0cbb8dc38dd282ed96d324c6e8f5be7111a4847887f024c735177f2f6b66ce41e23eb3ca7a64fd9f0c0bda54cc89a480a8f1bdf54cb5bc0ec0a2ad546890df319a087128253eaf411b30570007fcafe22cf1ea0d74426a15970255358bade796d46fa58d16aef670d0235f78ea4b11bf14a130ecb78401fe78882d85e662048edf1ba3d3646ee007794368d56d899fc02e333e1b89fe19bec1cca310bdf1ee38b67769ba312b9901c8aae35f64ca036ec2465c5bfc191", 0x1000, 0xffffffffffffffff)
r5 = socket$bt_sco(0x1f, 0x5, 0x2)
setsockopt$bt_BT_FLUSHABLE(r5, 0x112, 0x8, &(0x7f0000887000)=0x7f, 0x4)
r6 = add_key(&(0x7f0000483000-0xa)="6269675f6b657900", &(0x7f0000260000-0x5)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000fd6000)="72320253e6f859286ed8e8b69de4c60ba1259f3b13718d5b9493042152088c8a05540cf36f090fd022477cfa1062ed00fff3f9fab8f4828edb46a2d090e0ba3ca980c8304d2bbf23b6b50000c4113a76079af9d2f3914531ba0f4aa6fabf9dc5aafbe12994dd5078bafaa2bfe3c3821dcc636c6921d3883a638c995b87c7b8266c386c53ccd5f9f7605a6f66d113aae902f73222ee946e56ffa650a18e4308bcf95804b60625af80bf96fd4c94ca8204a7cbf976e4f8", 0xb6, r4)
r7 = add_key(&(0x7f0000e12000-0xc)="636966732e73706e65676f00", &(0x7f0000c49000)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f00007f0000)="aec06c16cdebffd2999c1f9f60a919018b2f72c2d1c388a66835ca2a17c0e88f26d35731e2ba124942af3c6ecfdbfedfed599fabc1c6bab50a6f85d385ca2955f5e32f96f8d4f4f0de28f3f4f665009f3bcec4443120cb8fec1f3666f85b783a4f0236b4ee4520f3fad3fefc5a66e2dbe88cb51f32b0e0b16be4c3937e5c59d94f82dfb756eb6136e4edc84250dd3c32bd1caa2e88bc10af04fcebfccba57b5d883216737dc823aa748b67d10ac2fc516d8536e67546aa3cefbe54f56597774cf762afb56551ce241d43a30a723433a18bb74fd5556093c547009097c0a1184e5c9b1feab130b61d0d88c968659924d89ba54b593f53fe59e18cddf48556cb92bb075f06aed22a90b9ddb84634ebc9a62bf9001fe617e6d4c58c5f2835fad6e620925f3318005ecd75b9f8d3cbc231975e982b2c084fef1cfea16f04da2bf80e049a83a945b79d1189182b8eda02c4bb9e4ce7ba8e9e418a82201891d14424fb44de732bbf0649f47ec184abb11d314b6c6f6bffb0f3fc053c4b5b4dd878d7bdfb15eb680253987d4b1e3d5b603dd2324ccd09d25883d5b4b40164a8d16022d879a6a41d3dbcd4e8e5397c519fa698e0bdddc51016dfac8b3e7acdcadd58910d98ae4e2d94e1bf28fb1635ba94e2437b24d488d5d3fd8c8efe1a09be5b47c45afc570ea392a45783b9bfeec34927925d7b5f9a73f765d0ff99338f25909758367db32cfa108674e2e0ffbd166fb10a5129f0c8a2cf889c19d338900bbb1f94da07cdc3759aaa284386bf0c550c75d782c1f627f909aa6191120f9138c236d835dd954050cb27f5139d519f4bc46984d92f37ca683f977167a6ddc4163a22e4737c0a62b5a58e71db27a2c0793beb46b02bb7a044ef48adb22a49ec9b6b9aac581fc3a04ebac23d3eb578ba2b28d757c4179ac0ac2ebc09a2ecd1f1c2268a92c8167b6401a64d73b3dca8f55a0ed1005ea63eead53d084cc1081b9f74ac18e1e8e3f392b35537d2a65f3d762831c03479994dce81dd75932a0cbeaab416eebb93fe048bdec03433717cc75d599c987a8277a7869660a3535c80a5bcb969c4841a8f92d2173c1b10458b01059ae78de8c5bbb49aa141bbc363a134f522ade6fe02b3d9a62df49dacb95c77430340efc0209256a319d62d6f70441756ccf725c4331ee1e0d929c0c76f19dc78f6d1e70e74da28ef7fa4c981d69f7a4624a290fc3fe08f3e793b69272a455e23f90203c80f6d7d2a49cd8c63366887caf67411d166438beab9454d15226b221cb75e9d320bf04bf0a89da9df3bdf247c955721e65b5f9a440564cccd92ba1860ccc5eb463014fd36f2a0e8d8f6d3f439c79f32cd443c1a6aa9dc87fcca828cc75191de634e574ff342a7513c0ff2bb8a4fa0097d2f8e85b6d0d575f2df494a1a0af1e920076007d6e46296e8e872e0702fbabf70f3281cc4c353358c3995fcf65c6002a541f855a2e9f7e8a64fbf58cbe3f2789a81740ae12e8200e4be7ad6ef8a05f06223d63baf7a2b802cabd465369e4a0549bd77a1fa35bd2db1292f32dba0f489823f92b855d73efabf61a2a801098d2a1d8c270723000618ac61d65d90b5d6ade12530a8320e01d782fb63d56adf1897decfdd31f3c4f4f5cfe9f574dcd76b4b93925d6b84f363a7de2832fc5bdfee36d20fa1319cbcd093bd7c8d7f7041fedbfb16932a02839dd533746f7e2f9aeea95fc23b77b3db8111c40098936e74b2e6e3f9fbdc5f5af18a3927146e2832ec3e378311f79ead05e490f187ace6b326f8ce95c94f32e48cde17dfb03a0d409584b13683c4087d32d649c490683b7e01ba1d173212f202cc9ff694553571a37442ea89358a09f821ca8f068c3681fda326f234cf438cbfa4162bf17c248b0679c1836027611a70ae5ff1a87332bfd336c487c164fd375ad9118931ceeceb446578a412d165d091f24f3f4a62a843e99676f0d940c2a864bcc97b4d96cc803e9cd5af94ffd6d626abae90de73a6d9abced8b77125804ac9f2636613014c41d4fd2f7eb2743d44aeb42a17f805abf32cc6fcaaad3890b14085516a5cf6d4a313d1fa1bdba5d2a33eecc40078d39377319eb6b9cd4065c08067e4482c876389e285844d2684e695a5a807ada449312686cf1e4a27ce02a03c57e420701604413dd50c542e300d5596b05a70d1f71107d22cdbb4c634b9b6a9650acc1cb9c92fdbb1cefe5a319cbbce89c96a79211c870382d89042d929cdb04a5ed981c117852207215581b98513613496f5743b962f7df099c8e367fd467c0697476388e3617992a7b8afdd29c18a90664a1e2ec5484b470bb99c68734ec87a999fffa32e8b356130f864e322f02b64a087f6248657852ffef886d0ae5001a7d85a6544a94523b018952f121fb608f6a38d9545dcec355e7f6e116ac91582a9738cbaa107b48056e488d2b45b90b75831b241ba87897ac0b3204b84d8e0a5156fc0644e3d728fc97c8596fe332ab47637ce3da1643bf42e1916aa9109daf94c8730dfa1a51015bca12eeb596abe70cf1560aeef87454018d022e8583391f26be4cee04f27acf57c8b9ef03de79538bb2a0a65b0283ee2c194c7fa3690f6ad58c3f07ee8494e7342b95ba23a77d7d395da50612da8cbab1ad5b61fd1eb69a0404c75a6af49d7c401a2d04ca8707a78524f5cd7cbc3616233b0beeac1cf2c8d2a87fb9f54a069bd8d3195ef27716c709309a02b35252b2f5c5465c7a76fe194418f91041bb08dd046b25f20e7ea1fff619880cd97037c7ce837d9fa2d497a901a80d55c82312151ad029240763b5b08d2e9beee62e4f04bf746bdc9945cbf4c81d47f490d3ac6255070481f225aff8c54a64d330a27e8416780edab1649fc1c18dc4bcf89e3383824adcc8be7d5b78e24637f358b94d1d711674e667b0aaa44c239725782939a173b33acc8bafc717db76c5ca173c6594aac3558de56fe68fc1c035792c9390ac3660ebb4ce0cc359eb4066739af0fd01d928ce129a4dab32fb7b64a66656fe5a1b86e03e62d26811afab11d6db7b61b04a0b66805065f19e0821f6c16a1fb9e1330320bf0877d9db55694011cbbdba3eb951d746e19f522b6ce6c8a6243ba473250b1d51e4cbbd1152b3604cd9b4b2d7d690f96c61d2e662597a8fc09b0f87c0f23a0e6b624eed40af6649f0422cb7c685d679ffab4c503d5a271e8621ced1a527bf0aba1eb858824ed09caa3cf64c0f52449f618ce725ca664ae0b92dd4f4b9859fdafffcacc52f3c0a67290ab761996b792be3754fd586001b01e203c3f1528bb9a3902c20cc20375747a2cdf0c0e5bcb5b7f30a19aa286ec77d0aadee55622c732cb571280b2df34ea41f8f6042e39dd7db94d55bac58225e4e609debf248dbec1783a94634b8344186539eeabb0fe71db575c19be19edfec8916d9464ab98903ea7a6ec9b97d50a8d851c3edfdd60a8f82d41817e2af6794612e9660a4ee5a5f1bfaee6f0c8b7901eceb80a0e66610807d1a60ab65b1262a0ddb316730f2f203a5c3f3697a6b975f480c8cc125ab0c0e28ba885507bff92f104f3a48b880a9af257c76c203596df429d1d87481c76a6e1b75310cc1ac9b37e0ee6535d3406a88369de03ed72bd3fe47ba2955acb33d033f7dc49445c6c739502f4c2cdc8c7994ad33572af052b49c09e80052d8b0c6f7963ce5f815844d8f4be8867a5325ecc137ba18ba026f62c3aabdbd2c726bda2b5dde2a10e9dcbbb7fbacbdc2f3c53e6a908a0220d48eae6a51a719db09735f40d28f4453fa70dbdb670e8cd88c3eb321ea311588a3cd1595b6a0434edae58cde91cfda45598b3d9611f4e5649a3436f63450d0eb71ddefce180c2f83727e172871b64899a20806edb853328f0af1fd00beefecd8cd156c3800e94693277afe5893f629e507729d8e20a21c36b258be3cbd213262306d293930dc0ce47771d280e6170bc8ed604036aa4e0d8ce7b6d287c00040ee2e24500b74ca93181da9e163f4a860c69130a663bed2c9a1269efd4b7ea1ccb1e4f53d0139924bf3e35252e384587fb7685a79c3222ba6e1f7f07fd1b1a4e53e7a5454da3988eed279a56a8c32c4a14e7478ba437cc882b1d6080bb52b4a7aff3025d712e106641f5c5f4e6a5e05c9e7b6e4a9a04c656b1b2d952cf2e10ea0007421d8237e34ff4dbe48e47b14e44abfa1129492a0648ea8a10768a99402e7e5734cc9e1a5a1552858280c028b09ac8d43a43c3e2ea5f821dc4e6a2eac1afc7d41d6498d31573dfd8ee21fa276708bde679d01f54eda2f815cb08ee8c2f2cfd352682b65efe4800a1cccd84100d5491511a7f19a67c74ca1d2d1d0ee7bc476184466723d123afef3f308374f9220aba6af444e6dd6a631c41b0fbd9727e811eb32389fee604ba3ef5c22ad16060706c471de244d5063eb04849cf178600b1a7310d65ea3950aa038b9625e8b46e2b1a6eb159c45b89eceb222e43da12a12f3886a5867020d962e2f75130b3b32ffeec0c5f76f27423d23309bc5f3fb9da530ca3a6b80a3885cc843cbf48cb33fc6f6b594b1a1241c04af5263ab0a2c253d9e5d2f13d63f405d8101148b32b677be13d1b23f04b59e536448fd8692ac8c8d3a710be20e8dd5487101953b8f4cade07ee6fe2da1b09bbe2fca2c4213f9e39c092f9b8d32b89592190a76d98f10a8ad48196e9ffe3d5ac5592a4e43b31c91d1c0baf2f1760996875abf1ff9fa4294c45e28104b443a8054b9f9f5f018f62f7f0968bc0b8c4f472d39694f1958418d51cd196dcfc6b0807c8266480a6f5a47386937219b1755295d585286671dd78f6bc407e3510cf8f1a28787ef8bea1e8b87c0dfcb3b1101105ba6dc5c144822499ae994c900bc25e4c74744ce626e79ecffa1d3c5f30898c99e211682eeb988440d5ca924b43ea2df3f3ec0343bc63e6814f57119f99bdaacfad71907de274ce0d67c12c5e9675307c30f670910305e00f2ad53f78951e5cbf262b0a83be0e0b25674f165b5825af34053ae96c23e604b5df0e318c6512fe59b0bde1310bd38ee3e5bba42201fd32d243aca01df7313139092cb66288193eebffda1525a563e163e6f045f2f3fa4af9ea936fd8a28a66d9141affe59d88591ce4248ec05928f76ab4d70f5ce00cb2976be9619cdf22b444d352f818925a69510869f23204b602f904d7aef23257f2c65ff3b34574599ac0574186e558e2f33e0968a9026db7c4f273e602419a8f7b7422fc1dc19ab701a5b762bcd58ef1c6198b693776b886470e3b413b1fa30590ca492b5a3846719836e806d7f7367d3ad7f67e82292b71d1119bbd086a64f54796bad09fd358f416fd45ee66b3ceb64e925f2748a145b635defc3734b66b09422ef32fe76ac277e95f320bf5ce6691aa7bb842f9323856e37320385a4c9ea6d3484ed6f892d3ce2667c8b7ace186f5020be254f453485fad1376244fa7aee2ff74308fb37e4f6e2cb50bf6af66dbd04ed20903e628cc6d686dc884fdda01a6433b1987e8af00f861b7fdae8fe3876965d4271256f98deaad88c6693cf7fc6807bfe3ad4e2e63cdd41e04b307c553ccc0687250f253e99ea5dfa2d9463b2901e83fdea8c7aa91d0afb489ffa7ba068f014f0bb6edb245b28d1d774d3eb84097f98e3ff0eadd6c5dfacea1ae5bec95f59a65507191cc15bf685576663ce8c7c5976350747740cb14294e1f9871b97b75fa02038091e4567c8dc496917f72752c03c307ab0d6f88e3862ffc3996643ff7a2243f5c5ed20247b8bf29c55739b893849e67bc85b6961ed732cb", 0x1000, r6)
openat$sequencer2(0xffffffffffffff9c, &(0x7f0000960000)="2f6465762f73657175656e6365723200", 0x2, 0x0)
mmap(&(0x7f0000000000/0x1a000)=nil, 0x1a000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
keyctl$set_reqkey_keyring(0xe, 0x0)
r8 = request_key(&(0x7f00003b9000-0x6)="6c6f676f6e00", &(0x7f0000f8e000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000ee9000)="636966732e73706e65676f00", 0x0)
syz_open_dev$vcsa(&(0x7f00005f5000)="2f6465762f766373612300", 0x724d, 0x0)
mmap(&(0x7f000001a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$nfc_llcp(0x27, 0x7, 0x1)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
keyctl$link(0x8, r8, r7)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
read(r3, &(0x7f0000889000)="", 0x0)
r9 = gettid()
socketpair$unix(0x1, 0x1, 0x0, &(0x7f0000174000-0x8)={0xffffffffffffffff, 0xffffffffffffffff})
timer_create(0xfffffffffffffffc, &(0x7f0000044000)={0x0, 0x12, 0x2, @tid=r9, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000318000)=<r10=>0x0)
timer_settime(r10, 0x0, &(0x7f0000384000)={{0x0, 0x0}, {0x0, 0x989680}}, &(0x7f00005d4000-0x20)={{0x0, 0x0}, {<r11=>0x0, 0x0}})
clock_getres(0x0, &(0x7f000090e000)={0x0, <r12=>0x0})
timer_settime(0x0, 0x1, &(0x7f000006b000)={{0x0, 0x8}, {r11, r12}}, &(0x7f0000040000)={{0x0, 0x0}, {0x0, 0x0}})
fcntl$lock(0xffffffffffffffff, 0x0, &(0x7f0000010000)={0x0, 0x0, 0x0, 0xf5, r9})
getpgid(0x0)
setsockopt$sock_int(0xffffffffffffffff, 0x1, 0x0, &(0x7f0000a61000)=0x200, 0x4)
socket$inet_tcp(0x2, 0x1, 0x0)
2017/12/15 23:28:17 executing program 6:
r0 = fcntl$dupfd(0xffffffffffffff9c, 0x406, 0xffffffffffffff9c)
pipe(&(0x7f00004bc000-0x8)={<r1=>0x0, 0x0})
ioctl$PERF_EVENT_IOC_SET_OUTPUT(r0, 0x2405, r1)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = openat$kvm(0xffffffffffffff9c, &(0x7f0000e60000)="2f6465762f6b766d00", 0x0, 0x0)
r3 = ioctl$KVM_CREATE_VM(r2, 0xae01, 0x0)
r4 = ioctl$KVM_CREATE_VCPU(r3, 0xae41, 0x0)
ioctl$TIOCLINUX4(0xffffffffffffffff, 0x541c, &(0x7f0000fd6000)=0x4)
ioctl$KVM_SET_MSRS(r4, 0x4008ae89, &(0x7f00001b6000)={0x5, 0x0, [{0x20c, 0x0, 0x0}, {0xbe5, 0x0, 0x10005}, {0x10000000000009f3, 0x0, 0xffffffffffffffc0}, {0x0, 0x0, 0x2}, {0x8aa, 0x0, 0x2}]})
2017/12/15 23:28:17 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
seccomp(0x1, 0x0, &(0x7f00007f8000-0x10)={0x1, &(0x7f0000ed2000)=[{0x6, 0x0, 0x0, 0x407ffc0003}]})
socketpair$inet(0x2, 0x803, 0x2d, &(0x7f00007e4000)={0x0, 0x0})
r0 = semget$private(0x0, 0x1, 0x80)
madvise(&(0x7f0000ce1000/0x1000)=nil, 0x1000, 0x4)
semctl$GETZCNT(r0, 0x0, 0xf, &(0x7f0000466000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
rt_sigaction(0x1f, &(0x7f0000743000)={0x1, {0x3}, 0x4, 0x94}, &(0x7f00003f8000)={0x0, {0x0}, 0x0, 0x0}, 0x8, &(0x7f0000707000)={0x0})
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000025000-0xa)="2e2f636f6e74726f6c00", 0x0)
r1 = open(&(0x7f0000268000-0xa)="2e2f636f6e74726f6c00", 0x100, 0x0)
mkdirat(r1, &(0x7f000000b000)="2e2f636f6e74726f6c00", 0x0)
removexattr(&(0x7f00000ba000-0xa)="2e2f636f6e74726f6c00", &(0x7f0000dff000-0x15)=@known="73797374656d2e736f636b70726f746f6e616d6500")
mkdirat(r1, &(0x7f0000018000+0x9a2)="2e2f66696c653000", 0x0)
r2 = openat(r1, &(0x7f000001b000-0x8)="2e2f66696c653000", 0x0, 0x0)
faccessat(r1, &(0x7f00000e2000-0xa)="2e2f636f6e74726f6c00", 0x1, 0x400)
mkdirat(r2, &(0x7f0000017000)="2e2f66696c653000", 0x0)
r3 = openat(r2, &(0x7f0000fb0000-0xe)="2e2f66696c65302f66696c653000", 0x10240, 0xffffffffffffffff)
getdents(r2, &(0x7f000062d000-0xd1)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd1)
dup2(r1, r3)
renameat2(r1, &(0x7f0000027000-0xa)="2e2f636f6e74726f6c00", r3, &(0x7f000085d000-0x8)="2e2f66696c653000", 0x0)
write$sndseq(r1, &(0x7f0000d14000)=[{0x5, 0xffffffffffffffff, 0x1, 0x100, @tick=0x3021, {0xae53, 0xfffffffffffffffb}, {0xae6c, 0x6}, @result={0x7ff, 0xf4f}}], 0x30)
setsockopt$inet_sctp_SCTP_INITMSG(r3, 0x84, 0x2, &(0x7f0000f67000)={0x7, 0xfffffffffffffffe, 0x852, 0x1}, 0x8)
getsockopt$inet_sctp6_SCTP_GET_PEER_ADDRS(r1, 0x84, 0x6c, &(0x7f00005ef000+0x4dd)={<r4=>0x0, 0x1000, "8a71aa97baff2e08b9da1deea3f2afc14f616569d7810965e3df06a3dd96fcdfe438606d07c0a80a5c8360f253864b33cb8114297ffbcfed8a991ed9b220922b5f63209b99798b090ef88f3b6c7c9c04673ceb2f238b43809365ff7f3c3f0ba01b6143501d74772704b91abccb92549d4785f4dd635b449a5427a4e732dbcfd5e1411ca1726520d18697af370837f9169f9eb206a191c11d920106a1a59d0a3216df90979f58e4e588e073263a73907a49c3704be4bb2027dfda2eab4736919dfefb88c4f494ca05362f7b24a921b33358cb8d92bd34b5fb6937f228d3e48624353c83139ad02e2370299c865f33f5d74ba302255ef86276566957c5161382bbc74d02ae69c58555270d41fef977c4a89aff4feeed3f233f2d38f401da14f3beeedf48cc94d571f3e020a20eebf533e2281535cdf549346fea9573489e270a342260e0f7f2b77fd4135dd4967a68667289c034560b83540a6ac427d0f09b49f7306ce81ba651a750b89afa3948a632468122f2206ca5fb555397fea27beddfaf7d023b593de941af92cdf6501f84c17fd568e60a5e5641f452efacb704df525bc0facb68ffe79f93595efbdb6167c9069f4a626c6e5f7f26ef2900879235e847a6a350b48357d213fad083176000f6e7eddae23ff5d9b9bf009780bf9543e1a9ce55f8b142ebfcd9e58222479d76a6458d5c08fc386523c09ef4c91faf623af126c823b360e1a41e275f55592c3e41404cf1206fea7d2baa0ac1706699bfb28cce493b460a3ba102de60495edf3c55b180d78a181345c26ee4f4b2ebd09cb364cb4b6e6a0394186af1678086b8bc06cb3cfe49f3de792c7f9ed2253084e7f1f1e43357ee563a8b0ee588b3cac3a05c995995d6bf9cafb68a30bf3ed7d04486167fe18ff9e115af57d8b48a5228c621ab30912cba540dd7cc49b1a7a971b1af20e3f6038084e96050ede12a1833a1e4b998ac2aeef3436833f959de381b6c07e467e39a7fe1e58683df0ae6cb19e6d32fcd9b81b40fc8f1273a9eb8b6f22fd6d828097c54a516aa4057afcf88f78f598148805c9a4204088fdaec24c7e5a7a8bd241ef4a7541c4baca0121a049240dd83b59613076e800884f8560b9c90bedb403cd4b51403b58362da86e519874cf30b585bdbf87bc0370b3ad0891d4266618aed04ea25e941683397807b121ec673ff07ce70cd63650a6ed3482d979a3a77cd193facb3b963ce538ce0d11ea8498f8cf13322442e7979b946d9898ddeb65f4b78a1626a950da396abd3cd2acd0327ae2cb4ae844215849aed4cfc287933fa440c10891f72d3e1ea291e472111d82438e0174c0f03d8f4ca1414b21bb47d98142680c7d0409b9421cef49326de4db389075a040725dc3ada1bddad61b9f896503108f4be9d517883f431efd73ab3afac400f14daabe70afc2f0366d36849eb1a7b13e85b82e29862edd6c7852faead4807878a6206d3433ad5a099ad3a7a888427064a975f409303547c6d6b9d87a5c81b1e14abeebd7483f95a467b5c69f6c161510c1ee477991c8d5c172693e9abeee7f501238a0c01072860a02b7559b89ac72b81d1ae078332ce29a259d5db7bc4bf39ae9731e50ed915fd466ade5ad55dd52c7a2d80cf7c58198f3869ca3468e02203ba75b0587b878b5dbe9dc68067f3fa9b1fb2195b7f76026ed2b4e480ff3742550467989e5380bd4f4ecb0903ca096c3706a2498fe6d952c7df75bb1116f1aafc3f6480f726c4e00dcc636b6464326b9753e51cd434138fa52fd628daa3c6e25ec348cc741dc1349cda6089e9d392a2448f98c40b37f8de591c9a744c0383c6a502dc9eeb1692bccc0ee3f23693152ba2076c488d572245bb6cb2940da9551fa8ba5a605167cea10c325f9b735fced29773bac198fdcb33c9e23d0ab6ea3f41bdeb4f22ed067409b124fdcd3ca6d00cdc9c553fd5b9a2194365326b52dc6d30db33ef51b68c7c88dac63318b11bb799754eb14cb447e860fa16ceb7d2662db9b125f5edb7dab628a2ac7bcf2bbe55e40d28a3b7188b12070670dd633a7f6fc16b68821724ca53bf2f056cef5c4e1877ef08becb66f2e0608f6df615998fbb3c8f7c341cc3482db3dc55be2c1b5c8f930d67d471238dd197ad379967931390e71a1b96faa16f225f8bcea90a231eb0d76b7d361bad5f47df7cbdec38ae22b4aaee539370b9d64b0c9074d0170d6129038e754277330ce5864ff3ec30a5c09a702faa2c4883687200f21d26aa2a5edb5e136658abd8d55c0090e46d134a1fa0dde6711fa1cc942ccf9a9d4a86f5d066522a196e32bb4ff44ad03653ab7b84ae58973fa32982108f43b2f09fadf3d603747b729230e5b9e1f9f64663babd7a36d6ad203c6fc1374143a6767337ae94c77ec6cf096d87d4681340c840647b19a64be530b2b0b920b473a831e5361bd5469b423c168a9b56997d6189db476a200d51258739a3d94007dda7fa4c50eaf665e8b7bdfc04981b62bceb451ff295fb7e924d82182cedaa192e564bfe19cf860e2c06cc35f2791871913140b229095b6105dcd215d46f2d1c962d48c6ef03b78fecb1909d2257922913ec0630e22efe0c2642f2f6399df8ecf252b35e5195d82b31c314c7017d96f71830c846004ef1403a225b33cdc99a0af8daf16e56e7ddc2e46d7e362bd8c47386eb3512978a79970c5406b859494d0cc159b3298a3f91b0515f03873180a5564bb06484ac5749f6ab2fd6d3e497b35bee2b56e1d71a8b4ccd4a67e1d56c8c6b0a25e3812922edd6846a16f2f673fcdd19383d967c0b4b2582e83b6f88695b3af7d9da9d3812890521cf328dcd1618de734394a18c6322ba82a0d7d3edeac2a002f475b11fb618b0160eacabb4df4f43056966154ab1ebdf8cbaf03930b800b21f9f33af38993e47799488e359bccdd7a0969e2f0f7721d2510d9a9d7cc64f8dac04245d5f7fbef41f68e5ac606a84450569aa334b3ebd91198e176419c76e8f9a29ec1af26526bf454d5a0f6970a0f683e6d9d26a1fffc9abb75877e02c117986b6c62a1d799b88b03800efef0124d104fabc4c1ff8b47c2681977eeb652ed35bb446e4cf4ad901e0fb8c4c0b9af3a54969d60faf0b32a709128782acb9f4b3ebd398692cf7ba69323f6a09ae6a985c06a7706a77fa8940009ed849ad466847ae508ce91201baa3bcc18b64f298f99fede77888900e16fd819461627386f811d5baa74f5e0699f967a2dd4694252c05477867ad60b37e9676e617193388476383ceaacb90645736c5bc6ca1f2516c745a518469ca0ee0da8ab5aa137faf554a392972e59a308572f8d8473d77bdcd2d35a651744856e5a7abdc65ea457bcd41314b889dc846bd4fdf9ba64452c4e19de5e52705e9787352c611834c8981e13128c49903dbc58104a57ecd2ce70e49a8a7ce7cb62dd409873941d52246822a38bd0a2b9e7a1d04dabf1978d11be35221260e139879a7760bc5f5c28dc9a2910bd511afd75ea14b6cc96546544b46c3ed8edc41ef500aba9fd7b17595e172dd1e473bb908f4f092959407563292fa522aa062791728a4b20b03c049bde597ef4450526c25dfd905c22c576846fa26e2e63d2b9c7f6aea536744cf84b2b32191372b2af991d04d8903018dd80e8d2f65619cc16526d6db89da1e002bf40a4e8b644d35eebc7c541301a9bc437829978ec98dcecafe49bdea0713d0ac3528395ecf21aa58702b6007fcb558881ac995bed2ab9760d34eb3264909d0d5d7fc5276003d1994609f28c0ece64ff5dc08565882c8c6f4a87bfd98d3123f1b4af2369cf5accb2cdc36ebc928f01fee358dcbc830a1683e76dc37af1d69d77e91998a73ed4a122905fd9f67bb5920042cfe6a9815f1afe419f75d6af72422dd27815dc04aa355075e69ec936ad7d8a165960643e1190388d900a86cb8172c854197c1ceaedee646486202a592078f0c5457d83d38ad26621c3012810ed5b4d914ffefdacdb9d695c977245486a6aed8331c4c7d97df9b95718c598d89a1d9d68555f67614b228ab7728917f469baa651e8d03ed784cc5be7fcb935295960b1fb6fe22a96383351d2905e3b652aaf016415a553ea5488858b823aaf77ee2cd71bba311f842a05562f037a6eaec057571c72869c7d152c1825f6e7f024aa29162758b5ea091ac3aac8ed9006f90ac597d9307c064d19bfe4074331b937505560934b05a0cf97b2a0507bd9a878eb90f1bd0557a2859d27218127e71f22ecddc6c8eade09bc0da8bb2c0df79621075f14ec435ca0567181f0b34337274ccacadfbe8e8c13e01ec45a103f705832cd18ffda125eae2f4bdf17ec0f0d80e6b88ca1dd6f6e9e3124a5cfec0bd7b7f4a741b08255ac3dc68aafbc5e6d331c42b371c43baa5fa6bc5d399a489611eee2290f80c697fa72017762b40d41cda9d8206e5684ab57c483ecab9ea9d59d1557fecff511adde008e68f20b48713584afa212fa3ca63eb8c6acf42192806acadf80bbadcffea08739504057b39cbc18009ed316a7b16b4ce1506417efeb48281ac07e6098c0d1a272e607639f54bc3088360588ea6cc6590857cf36e6cd43a1748cd8d71d3c96f2db790dbfd54bbe4e4905f8ee71823cb7a657267d2b73a3e5dd87dc3b975e405626387ce332ebe774c7450913b41fbd2bfb23345fc4120fd9b65ec9be288b3b0f1df692bbb7e3ba623ec034f20962b98d72d07e6f77c605894678b8cf61b408fffd5c12f76f61e2873a36c514289821b0d7fbdb15a2fd3669c9c04d982dac0e9db84c95b72a432cdd7054f163aa42a4e56fffdbd74a2d6c16ca4111339bf22f2b4f5642cd51bafdadf2b33c6135109b8aec2bc24e92bac68def1a8fa62c016e1836b0664b3a58294364fd2e14031f5611c25bdaf7da3ca4b081cb35250f87f042d1adac4c04a91061717b7279c08aeb67eab637d9f3fd80215b3747799e9fb0b0ad90ed4ac9216cbb8f9163f4814e5c2b1cd0cf3cb35fba5d1ea06d0561082ea9dcd27f4c741363d89006ae03945d485970e9e335d0c2e2d08f8cecd2443025fa45bb174b9305cb372a1bcf6cf93e3c0a96c096f327919c235ddfc1e20751053f2aa9f1ff875ed52866244f81ba3fbdb50d96074ef566f8138e895bb1578548883269fc9e68ea147334849ffc26a9bfeeac8c96a5e69aab6f9a8944db75f8e0d4213f17c7d657ae42df46f2ee930a90605ff5263ed93972f2454473beb6e14e52059bd820bbc5c7194160eecb508ba81a65704aaee14c470b6c747de4ac0d916789351fd83997d67cd0f011b9d0575c842f8d3c562191ce785041709417ae9b79d0dcb1805b39722fc37e31742fcd58775da1b28fdb23ec4c3c3b4f23f331d5857b5d3882c97f77baebf1b704c6cc55000a30fa6f37cc3b7e991e6746c465ffbb4f785d728a9d037b169515d74f1a992e5204f1fe08d6a73fc402e2dca990210783a4807c4ee5efd52946be43643418bb9641271d733b44b2b0325fd6dffa95e3fd7a794a2adcdbcf5897ad1fc114b143bb66b9b0b068b3dad1fe42c87761b8dde54f385e99a0fcea3fcf8b4e3e2f8663a4af9e8f8debd0e4cb881654a29c0a8dbc72ec9590cbc0ad291a589c56e892264de0b18b1de23f80d98f090c675f296066fb2764f21e29b7506dd8182750e2f157650c6a05a5bea0bdf223bdbc0f82abda725a9e112f4fc13b8ca2a5a4a3298795932b443b21c7614a53146d858dd59f37b3fcfce7f46751395a5f5243594397e1565502cf6e2ff9862116b69cb70f26ada68cff18582dacfa0"}, &(0x7f0000365000)=0x1008)
setsockopt$inet_sctp6_SCTP_DEFAULT_SEND_PARAM(r3, 0x84, 0xa, &(0x7f0000336000)={0x9a0, 0x4, 0x8000, 0xd25b, 0x3, 0x7ff, 0x3040, 0x401, r4}, 0x20)
ioctl$sock_netrom_SIOCGSTAMP(r1, 0x8906, &(0x7f00003bb000)=0x0)
set_tid_address(&(0x7f00009dc000)=0x0)
2017/12/15 23:28:17 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$netlink(0x10, 0x3, 0x400000000e)
setsockopt$sock_int(r0, 0x1, 0x8, &(0x7f0000d5c000-0x4)=0x0, 0x4)
r1 = openat$sequencer2(0xffffffffffffff9c, &(0x7f00004b4000)="2f6465762f73657175656e6365723200", 0x0, 0x0)
r2 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000d7e000)="2f6465762f72666b696c6c00", 0x100, 0x0)
sendmsg$netlink(r0, &(0x7f0000f42000)={&(0x7f0000b53000+0xb98)={0x10, 0x0, 0x0, 0x0}, 0xc, &(0x7f0000ced000)=[{&(0x7f0000b66000-0x10b0)=[{0x6b0, 0x0, 0x0, 0x0, 0x0, "8d8e3bea5405d6ed73ff7d6a31f1d042f667a852b715151294881d8224a3a1f87efaf008a2b8e4f22b5a6b019f816a1cfdd67d63638c0dff12e5f42432fcf53f3e9bcffbb517febf55ff65425b881d16a31eef94714ec0a46cef07b4a4e65858d66cfead3ba74ae773eab834dc4054fea4f259bb35bd3bdd1e312a4fb4f76b1e98a89c4637c7a0e05e11de87da3add9384803968935133411f0ec25a6cc0db1c0e50e104201dd23211aaca39d929d46b8358d4430a3b8e75a86800aff29990f57e73504ac76e49fd957128f4abd998f3e85dc5b8b1ee305daaf75dae7f86332bad6e2f0a958e723c697d82b569051669c1d1a9a6e9c20dc465bfec0c27f11ab8f46a36a8eabc15cfb3de6ce939609202ebc1029617b9c5153f6ff7fe7eee4ad426089f704f0b1f37d402476f12f36b462bbecd5f35f2571236f57ef1a91e366164ee538108669e74d04947b5effdc0f14fafd3f1d671cf956b650cfcf7dab334b04f6e5b010b8846a92e0d2659eaf03b350959fd049b951011addee561d13103f72bff1a27c7c027241d2be1e6df27c6db497d8cc62a41ab2de209d33e84177aea93f69ca1792cff1ac063ce7cb38301ea6d46dfb7f112966307fc3026b456f9c5d9c273a0884eea93effcd666c99317500a2166d33236920340d4b126fb7a473ccad1323d9f703d5d643f2119bd0612fc33ba101ff48e08f180ec4583e8c2994ae8207855d921b01ae808e1a0459ff8eb93f03e08e72d2837b3a002a515119094a1e65381eaa15611b2a0d4b42a131c7f979519bd88cb5a3632b5ad17413989b5c78b577a9e3a629fd05b3b6ef577f0b076c0ebfe02ef47b421f9927352b44d808b9928f6ad5e4295e9cf3eeec81ca99b58a22671171e1ccec7b132cafbe26f352512fbb6e98ec16b7caf7d67ccee2fd9748f63a735c6d20c18415ddedc1e6562ab4432a4c4e997ab9325645c5c9aba99d92867eb611e98ee217407b5d40b5a6ee91a828602d886801b3bd8717bb2faec1f95f730db666d1bbd3eb0ced1e72bc0ec50582e731295a4e1c7aeec038ffec87632658371e1904b20beace2f4d91463de37da2ef227a0b2bcbac56f585346f21f2c2bb3e44eca181a97fa7b313b1e6c3cddb8ac51e4c29a5fa84bdb3d08faee5a5a9842b2484c4e6e61205be856c08aaea22ba730c435d7b8e81eb32eaafa5a5f6e751a8762a0218bdd822c88ad6b5be71eaaa713d2a226210b33f20654a00f8221b1e1bcc39eb18de74e2d389c43b23ac8f131904ff21f1636c32535410e2d038547ed0efcc4b6e96d589b9d2d531d2df698c945aa971b53ce315b9ece6e15359c1ba3735a54fcb88f1d3e0f904a0a0835297374a7c8c6fc48cef2a5104064c7e71f1e1b13ea335e019da9a27fa925ec39bdbff0038a8a479e258ff598c3743e7916836f1e4077adb50633047e7a92be13d4dfaf70fb50afee3b5f66f5c482a9bdefcb40898aa7aeede179c551191fb492cdb302cee2b915f0fec40e498b298da2b0eae3e4e7036e11ce46568445c4c08c9738b3efa5b08d8f7bdd61fb52f444bfc2203538b5b6c3fe6c0775c7f5e27bd7c44e3c377c88296d7ec8cc8099ff4c252791d53c0a56c623b0480496e942f6d6a39b8313d45152619c7940551bda48538579fdea8525d4c44e055ebef7d6b85bffe628719b951125db4d138edec9de18f49ab88d5eb915e541830fec4efaaf5d92c902b5ef3dccf67de55bb92ba2ac2ea6409190768f782e12c9d514456676c39d08acdd7e66e2db686a98d2581eb44fe0f286c20fa3cca47d02ae5bfa6eb9701edb6c06c9d39d121162cebe1753ba26fe36fe485f1cc5b7a30f6ac064ad9c2c44f2a4c609a6e3875e5d2cbf3d38b5acc2a9196feaa0f7c5becfac3a0a7879e6d124fd7888c9ca1dfdd2d6554cbbf7260f0919433bc66f3a726fb7765e312c1eedb447d6eb7270896dc45bbcb9140fa68ba99d0650972024e8af03eaecd6dc04d2797698d669fe12ffed51fe84439c8e1956e3cf6143b372bd84cf01dfca7d73fbb53d33c23e0df3777db0591957452d758649c8932772945263fb7fe9c5e788bf086d5bb37fc448d848d8affcd11c603f4e8ca0677d251a23b6829e6c666b9d5f369084b08cc63b53480ae34149ebbeb1ac04719368d33b770697ebef86144d19269d1ddd6371fd001cd01d712f0bd5149135c1038263ba5021f318c91f89e49a73dec60f5b6593a9491fab242c94bb4a60058efa68a7813101dcd5e52971736cb3aca3fa313f1d55b4686faf48f2906941433df0367ed150015050e70bcecb06bf791494eab5aa99d8657bf808ee1bea2e3dd27d995f5103321574db6ea7dc598e7780bf65871ee8f7f98e137a798defb55d5e9b447bcc58557296c3"}], 0x6b0}, {&(0x7f0000608000)=[{0x10, 0x0, 0x0, 0x0, 0x0, ""}], 0x10}], 0x2, 0x0, 0x0, 0x0}, 0x0)
pipe2(&(0x7f00006b7000)={0x0, <r3=>0x0}, 0x0)
setsockopt$sock_int(r0, 0x1, 0x8, &(0x7f00009f7000)=0x10003, 0x4)
openat$hwrng(0xffffffffffffff9c, &(0x7f00006f2000)="2f6465762f6877726e6700", 0x8000, 0x0)
ioctl$TCSETAW(r1, 0x5402, &(0x7f0000e15000)={0x6, 0x37, 0xef4b, 0xffff, 0x9, 0x101, 0x1, 0xffffffff80000001, 0xfffffffffffffffe, 0x100})
sendmsg$netlink(r0, &(0x7f000000f000)={0x0, 0x0, &(0x7f000000c000-0x10)=[{&(0x7f0000127000)=[{0xec, 0x6, 0x2, 0x6, 0x10000, "12f26dfbaad4251cf71fff0deeb298feac70d71192f4c0d439ea04012ad935ec0156a0dadfc2c0163d4a988c5b0d1a4d825a7b508db45a78f3951b7ec3c40028da06feb44276f1f25ef15cb1153df28f4834e5b1ef147363361a03b7562e3c2ee59870539000bbcde7fa55fab94fd27c70868313ba73655e39995c17b02e5100c15fd69a5179bc4701ce7321992b390548645f680154cb4b8fd742ba50b6ee69ba5e8982eca56daf4c1761c74e8dd1d9e07ee9eb54796ba065283823d7ae1d5d6a056cafefcb001e22d4c484450bf83747dec5f0f1e3c3bffbb6f111"}, {0x47, 0x2f, 0x400, 0xffffffff7fffffff, 0x20000000003f, "4dde38b1a7f962fb538fbe7a36f9a5c7d70082937907c1203c47228b26357700a271e8529a3ee3657c2411331c284615477deee5906a3a"}, {0xff, 0xfffffffffffffeff, 0x800, 0x179, 0x8, "96745de681bdb13d2b8667199c127392ae53b82c33688427493a0836050001bd46f4d08c5266f560ace65e71d8880089540fa5bcb557c9773fd00f189d41b4b42d8adb065ec6a5ab8c7efd654ad31c140348d0a587949f85707f57dfdf04c1698fffc41e1927d388fbdfc31c7ef8a579810baa4d7d8c2493f3a193697f39ba53c1e944ee9d22545e516818608d01d8ce7ebe8c5730164ba6839929a05285f7d55179d6495d3cac04aa6fd0bd3a5f529f37693860f367c9f073ce9b17b8927599c7fdc4fb0c650c94b09a0030de05433511a44aa4d11ead73138a925a8f30728ca116d7a34982275d606b69b7473a45"}, {0xc9, 0x0, 0x109, 0x3, 0x100000001, "dc9c874bd2728ef54c325282b63bc4796dd460c632792566ffaafe8c524f5fa3265728bbce04ac72955787c54c26a0e065ad1137a6c48956292eef677ccb95130fcb2c1d32ebc40f307e189061d6b93bc60a42c16572ad2312b88a46967af291e1219494d26e4df54e41eed9927c5ded8bb236f159acdd3eead49caa084b731fe8ed5be23bfba940d6d4a3b854fc5ceeba691946b28ec337a4180f061478171a1aa53354d957cd5c35b97a2b15a9cc844664c086aca319b128"}, {0x1011, 0x9f, 0x11, 0xbe, 0x28, "ccd472ae4e3c6f49a1c09415a5f040813897cf9d52c77851529208bb66087dde4e721ac6021ae028eeb4ee5bad54ab550f8eb80506c4f97ab855a1c9614c55c1b5302c46c5086c34bc2433d4152f42869aa91c825258af9d66a21ce7dfec8e4209a37c39eeea2cf387dcd475abdd90da6eb83b6e7f36b8380c052351d6e47502fbbd8d4d35e2da5a848e64994d1314e5c12d24ded4d9045c76cbe5bdaf1ba23ccbea589a94d32c93e91fcd413f88dd09d4ea230e795935324e8f915102d2c2b2eff806f824f0b0d7cab2db017ef9a7e96cb8ce631acea3c67f74be979ab3fd8899718512599ac05d5cf9d79352e931c7630a813e7f511d9bbdd207d46af337a682e6a49b62a2e534ddc6a1ef60bb0a1d9ee434ffb0260aee072e18c42cf196c41b61382122499cc9cb28dc65f8130d284e1e30542655b918922615e2c277451f23aaa571987c5ec1787c51ad2f6ee0065cb5610b4b093e7dd906c904f3c2a356102c03abb3c4e450b33e4565690749eeae725ac47434d6f47f08ec371d6bf97d6d9b87cf2f07b7c1fb9db5c8ad359d529e83085fc0c4d7278dd6101bd5128d81ba21f45757fa3f04067558370d0fbfc894f3a6279e4145c1ea70e51a67df6943b7e521cad203b05f613df60e1d97e6d27e1c1538e4e8ffe055e3423dd838356df4ae7a34d5c8f1b67f0abb55128d44dfaa2e065781a6900f9e4ad26a10b0d7bc7999fbdaeb5c8f0770597d1020dd121f94ddc8e0970be2bc09817ef5ebbdaac586b72be68e735eaf0716342c3d430bb06a4eb51179efa6d1824653f20ec497538c0ea5dcf84007e1d3e904e4857658985a40d38e040b70e075cabab859faa4addace64af47ba52e03d6d1c6ff43443dbeee0ca56722b1637e3bbf9ac6de7e59860c8395dde555dc4a96e639a8cc9c0080b26a18d94298270179d66161402f65382cbc9cd682cf9944bc1ab254a1898282bd7a446af0797a6a6225c38249b52c86c102c9411cb34cd9ebfe690f8f8bad7fbf354a1008b3bbc65848fcdf2939ae28f0b6a4b1bbe43836eba7d8f50ec1ef79b188d4e0eda25688164c76b70b4ca0fca02c99b2bae3a7a2f6c8c12f2eebaaba69da87433208fde9601ab7fe2e39002189ad6edd047e3ad6ee483fdef93a6167d551a46b53139de23c5aecfe03bcca422f0600fac3a4d02cb5adaa6db408bfb5e0d4d242d15dbc4b4dabd6fd7bc1ddb7effdc3630ea3f4ea717ba1a74641742920fce14d652a9590e553248608bf95e3c2602eca00ff4e15fc021f2c07a0f34b7901d60b2976defebbf512611d2e8e4b3b1983909f2eafaec684a9685f5095209e3d614d7a6aad29b15c69fe7ee6ea9552f82570b94574be5ec88c6406e89003bc6d4a1c9e8c0b4d58bf704fcf175287283c384a9b84d37591a4d3c0290e53865976b2a10f2e6d15a7fd552a2de6ed9188f70e5494ddf2bddda9cd57a307d5e03702a68dc707025eb1587f4f25c317291c8677b77e380f01b8d10c817c8b50e1e2ed3bad6d0273991b1225c3625009ac5f78af00fa7e7b9e8df1bc05d241a76d22848e2b63c49eb4d9ec4ea57b2fd059559e83881bd1d4c1e31ebde4ceadcb1b947df734113a648d0260da6d71f299ef9bef55c873401b0704382708c6b3c64adf2377bdc46e07627b3b230b758ce9c425c6d15a0b97841d9f0a3d79d696a4325873f9c457ad360c5a621a49129a2e4216d921dcf2986e740b784bbd32bc95c8a1f85f58221cb3b07df99f5ae2506eac87523b3f626ac6922392583cdbdfa814e141158ad2b2864d5c031613ff9e367042f65d3570986319306a4206a3a069ab0bdd61fece1f4854e3a13c070ccf9e96f30053b33103d0fe5d1a57fecad332d65e56a6806b3a0e574ab5a025cb1ab441a8879ee791a5496f30e407349541c9cb3524698cb340f691db04a8c752734e5799cc37391f0b67957d9b1b7d9115da3a33dce1b59109bb34dc9b0cec1ddecf54c8f34b0ba25c0152d5423fd397e35a6f41404ab8dc11224751f1262ab580f5e540e01fff72949abd0015a8d7142532caa90819b2b7c7e2d1c965f7b93ba45e84301bd708685c87b777fc19609a96b35f3ef81696f7883953d7200e446cd8a06828c0b250477032bfb28d15970be5abd7be6d5d64a6415972974603755b6a1ae33e74e1b4b982614cd1f57b657494cec4bda443c7901dc214759a58b0ed9e45bc93314e1b4442cd972d600532ffacc35b044d1ce24f3c5139adcd5a17162d5a6b1296a132053ebfa00c2e85d9341ea10dc85b389e15fecaf15c961e251b72d352c23388fe6aa60ed43ba85c4bcf2863855a3049fe30116a18edfcda3130b83ef6c0ab845ffda01b7415e92c89776eb0a23204a0b80e25e51c64fb05a223a18fb9e7f051452747afb0491df6f87c5cfe2869cf0b71fff14964a95ecb13f6e48e88692c9025849c99c5e0774ab65706cfe2f2275ff832dcd99a1842599b5324865f3e84b099e7028f4d8c0e28d4f823137f9b908e86ce5ed2bdfad5988b23f5a9d1ae8fc7690c3a5ee87cd4bfda1c0f9c735728393951ff8ebbbefc4e8e0fa2d6d5addf71366ffe91cd9cb1579b7d8356e7b4f2897037f7f33b80bccae7935e595aad4f7c7f4d05de84dc060a35e6ce424bac381173f48b8c0bb3123275777a8ee3f41580b9368917fb5bae9cc1d5851ddf202432470db30af27567bf691b5dcf6685bdf37b02110fb73345eba514639e9d5d773bff9a0bf75629b60ee7942bb06939c0ec325d578526007c2f9ae3ed6cc4ee417d14861de98ab4e1d5597bcab497e4a1081a8d6786c70fb4cc6c29d12ec2654ae2313f4fd16660fd536895265b98e64d32f244342fbedc5815f17ebd93c7af894d8cab1959e13ea228ee65fe18645fb9dbd11b591be2d393bcacb056c052d9b8327f30ef0c285e648dfb8e6a83dc8f3e30a185e9a706b7c86cd914c2f205cdb47678cea95278fdaaf5b4741dfb8fb87742d0e07ab7b5c8a653d6dd3f3607b80ab422c0a68865cadf7b659001a170c08decdb0655d85e012e87b71a363f3c8837dd10d6f8ad8d95b46f8a502b31b1007e3f7699db4a28528aaaaf05eeb8d3b3a29032b7534abd749d5d01d27edea123fea9313e59ac0384bf9f4306452978b4626f02211848e1bc1ea14b1dc7302ef8673fe7ca94e21523113d9471ef400ed82eaf383bf78074b3e9f5fd1468d7ef6de9aaefd14ac3e74f9d76cac755d89d9d96f54128395094ab91fa39930e778bc800ce64d44ac992ff35aaa53b642682336b3bdbd264cdb5319eb7a3814eef298f79edc71bcab4ec9fa92ae4f25e5d7603df26638e6f73cf491163c00d9b22309a8e4e5d8b5de6de87168ffde7879d872036fe112fc328a29b512177cc7700d4977f73b05d2f9f054a7ab987652c7508a909c74eca8501975a4fbc8759e11bed1c097e3d1f78b64a3eed4fdd1db702f6a399fe777e9d06dae52d723e0d6f3956232021ed4885e816c37ec343c014ca7ad94562adccba555f15b72506bd85292d8e352b958b3913a48058d086c02b9660532abe4d9ac587678ce27a48f24145d5cccba9a1593baeb3baaf9f0a60a2f62566a9e934ebd8a0fd9d5e851ae677bf025e89c94298bd5f5100d97cee270fc355cd35155472bdd58e84d48f266ffffc1b233b85b933693bdd6a0dfae184b001446471ab1d16ed3125e9f301c00b5de743b336d17aa7ae1e50176f02d27da162c1b9d80af966e54f2580aff4e5fbffebfd40fc18196a4ba5fc46480dd1ce9cd9da8cd9fea4af6947fd79c86647f1e9090436d9ab5d28618bc96fb728c14a4be6e9a192824ce661e1a3f53491b3fb0936bb6df67aeee22642cf7138f44f6d3376f160d742e293c0fba2f63ed4535561958b08c62068f3a518668d9d6e4f4cfcc1b1656b55f29e38b6a958efe320a201eca6de82a15818e4fdd9e237818037ab24f9785d0e510493f9235117a161793f542a140fdb178e97dc25ad3c918b501ff06374cd8bea6ae19f0b6fa2248aa5673ecbcd0d2cdfe964d3089fc2690115b00ed439c273b1a0c3ddffb7500b1f4a5caf6f3e0f517c67dac480b360cdd915e3fb74dab87809a3f832c82211a8a5d0f52d2ad2883cef4430883e5b3b45305a12721f587cc7ea8e37f0e79afdeb9f20bdb659446aa10a7f6455e796a4bd68965f6f0ce36d3d29bcac30d4dac377366c7c8c8167efe01d9acd4068ca7532894b989056e25c079aa20ad8de20a2a0c0c67e080e70d497a00222c6361dbfc6498fca6a3e84d004eafe053c62a63a24c82058d9edcae3a8756b4472f586a8ccf0e7a4f88040cd0a1fe52fcfe30754658eef710148299a4a46e6ecbabc92146b618633ba2d7f86ada7d1e3e6e1ecd2335f10894d7ea8905317237e862f644038e4b63bc781e68b5ab7a560dc6feb1a0b6b526b85cbafe373cced5f8788af466a6bb24072061917444d4508d861ef387ba450d4e649fe93fb00b6f35943a19effdfa5a44afa6fe7dcbf9d19bf1d12ea51b530562da55ade360b43ca056ae595df704f21f22acaff87b7f7b08a3fdaa864c8c67d932233c4d7e4d7dafc4843dda5f4d7cf3e465972e956f2d9f2c118cf6b2e893785d1530a7571e658071f163e847f5d905894e87f8937095a10300e83f7c82288dea108302d2d5c89ce9c19df0b7f1417327b704d208ed74cf8683a185cb80a1e605676bbabec3637ff311bfba3d2c25662621f7c8cde17e29fb0eb7677b0d31bcec2e39fefa14cfa4a748f5b11704be23aa2d9fe82f14fea17df1f4770daf692e2a61487d373aca34abe977caa43167764fe28ae447860d672d8a040b7d3ab067a9615e42ed2d5213e759e70c3cbc441386b177a8e65e2560ec8f5c6299536e46017f78cc7b62470225edf8beb77653f2a6767ce8fd6df21b9bccae0a529dcee81203a2c6bef92bc313d9098718aacb1e26ddaabce8bed1a932e59ec7386ea04fa10ce96522d878b184dfc6e0fb5410b56de4e2ae4f3a9e74f920d01cda53d13f9acff898a089b5f31b6e4cbec8e179185b20e4569e9d98d5e995f910567eb90989a6b606abb4c27b5c2ed6ca1a8409a7542b28e565df70f161fe3cccc6a40ca64e346a72c8f00ee28ad60b1b0078b4d4a4392e88aeda6895cf0aeb3c0900005cff5967273fe35c2df9e77dc38587fff2333731ea7c8936c864212fd0b89b417bf8e9862f52b651b8314fd0bb24e176533fa1cc39c00b6bc131b47d1dfd44511bfe0fb7a91a1e4787563092ebadfd10e66569342447d26f0d01d78eae74dd2eafaca5adb9b7d3656aa5903355c676a5ef49a378e69b0e86b2e10760c4cc25f930be101d5bc757f366e44bd49bc292b34ff59f89b45ff4746982b385e13400b7ea0a1bc742638bdaf523527dc821cc72f3eb49c874171b9259f0c5f4984a30baab3c976d63a41b4c5d59266f585ed3729d6f21d44b76d853ee8de92489b2adfd67bc85d27f03cb5fe1e2c5e684c1a0a995f4d62dfee35e9112e37216889e28059ee5283c015e767751576cfba3327590b914042b6f14b4b3e3b19b6d4943266d045a9ef2f0addf0829da24db6cfcde01689cf0b15411d1df4dc7e9b64bc8559d628279a0c64e8faf130a26669421bb68fb499ef8e6be19bfc4794ba89f9a162b3a48aee76b5e12061bf678a132dfdb537e913789f53fc53a92f4aa9cb09076de4e50a8e66513ed216e0bc9139d8110387fe135b803baecb8e0f541ad6eee30d9b4ce6d6c0517a6f69a567a723c5887f35d608703c5b055a776c1d15ccf65efb585f752"}, {0x108, 0x5, 0x20, 0x0, 0x10000, "eea8c6fe2213a95886f624ee8ad8ce53ca20ddc3626a4b9e3322b9a23f5802b3e1c0d792df4365ed6fcd889851ac802f31df69174160beca7fda9ef64c60e7507d5121ec7f1a5fca0bd724d72f1011886687ce4dcdc230828457cf1ed06a2817f0a2110884509d07627a441fb36a23d304b6c37c2a429cb1014ea1b6257f1ef5689ab1b3176855b0c537ca1a47b9abf70e2d279a095e72799863f594db6a3d26495acd21564c681866dcab917e6ce1c465c09206ca1def1ce2a7717faf532288e610e2d22c378e98dfd32101740f11882c5b6bff173e1e0392b4d787b4f771e429e61a87369f030e40bb9815c04c06f42722460bdeff296f"}], 0x1414}], 0x1, 0x0, 0x0, 0x0}, 0x0)
getsockopt$inet6_mreq(r2, 0x29, 0x15, &(0x7f00008a8000-0x14)={@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, <r4=>0x0}, &(0x7f0000ecb000-0x4)=0x14)
setsockopt$packet_drop_memb(r2, 0x107, 0x2, &(0x7f0000240000)={r4, 0x1, 0x6, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [0x0, 0x0]}, 0x10)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = accept4$inet(0xffffffffffffffff, &(0x7f0000c5c000-0x10)={0x0, 0x0, @remote={0x0, 0x0, 0x0, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000c05000)=0x10, 0x80800)
ioctl$sock_ipx_SIOCIPXCFGDATA(r3, 0x89e2, &(0x7f00005e0000-0x4)={0x0, 0x0})
close(r5)
r6 = syz_open_dev$usbmon(&(0x7f0000ae6000-0xd)="2f6465762f7573626d6f6e2300", 0x7, 0x100)
ioctl$sock_FIOGETOWN(r6, 0x8903, &(0x7f00001a0000)=<r7=>0x0)
r8 = syz_open_procfs(r7, &(0x7f0000244000-0xd)="6e65742f6669625f7472696500")
sendfile(r8, r8, &(0x7f0000014000)=0x0, 0x86)
openat$hwrng(0xffffffffffffff9c, &(0x7f00009ff000)="2f6465762f6877726e6700", 0x400000, 0x0)
2017/12/15 23:28:17 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
openat$kvm(0xffffffffffffff9c, &(0x7f0000cf8000-0x9)="2f6465762f6b766d00", 0x10442, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_tcp(0x2, 0x1, 0x0)
bind$inet(r0, &(0x7f0000bb6000)={0x2, 0x0, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
setsockopt$sock_int(r0, 0x1, 0x2f, &(0x7f00006f1000)=0xffffffffffff4e45, 0x4)
sendto$inet(r0, &(0x7f0000c29000-0x1)="08", 0x1, 0x20008045, &(0x7f000033d000)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getsockopt$inet_tcp_buf(r0, 0x6, 0xb, &(0x7f0000004000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000683000)=0x7b)
r1 = dup(r0)
setsockopt$inet_sctp6_SCTP_AUTH_CHUNK(r1, 0x84, 0x15, &(0x7f0000235000-0x1)={0x100000001}, 0x1)
pipe2(&(0x7f0000859000)={<r2=>0x0, <r3=>0x0}, 0x80000)
ioctl$SNDRV_SEQ_IOCTL_PVERSION(r2, 0x80045300, &(0x7f0000f7b000)=0x0)
sendmmsg(r0, &(0x7f0000d15000)=[{{0x0, 0x0, &(0x7f0000903000-0x20)=[{&(0x7f00000c2000-0xb02)="2c765c591ac534dcef735405a74ffc2dd4398ce74dc9d7f8eac59858cf34d835c425682757bf175779a2ce6682b3b7f391f0d12cc4da479042663b56dd45f7492a863e04cf23c40bbfea9731b69a276d7da880399a9dbda16b0e74c6788690b3ada2b8570278d83065d3ee7588842b09ac3144d061d28336d163a5b78dc1c49f4dfe63e0d7698fef33010f664952507426cb32e5655502c8eaa3aa1e88aca895f40ec26643a59845a1ffef8136734fbb83b13ff0618c337cd30cf160a190abf45894993fa12a3c5a676f24690877cd746cf4e4ae081df818bd694f1006c5446473cbc390052b52e20041beae64cf1f8c4713c689ff3e4bbb2a62a5731a5889c9d52e21a00f1fc7f7aba1499368405693f2b5eb46341fc72ae0b188cb391c635749edc43b020b95e81a33df86de1917a52a45365c748784aad39a6a589d314bd38b36fd00888d6245b0aa6f54ec097f0b9a83801b411ecc01b5957e94d51f7d926a3cd010c9d19459977e822c018d4efed46b77318abe23df741792766886633876c08b3f7d433fc2d0e09283139a61a8650628e5f55a466790be66e47147a79b8db343f64360ec124f97fea541b60fc73fc2ceec831be770bed6d027a1372fd11746e53b06acedba121a1c667bfff61c3d8f0886932bfb66e7856b10ec2c412c80df94ee099bc02a982f9fd1f400c915523a570fed2e0683ed365c9f0fc416ce9e3a116ad5b13648e3002d09b76c0c2267eca45f3d18dbb8bcb08bc5834ea3b4ee48839e41da2e7b9ee86c4bf560dffb05f434b14959e82ef417a810db8482a10f4d87b0bc3006dead6e151cdc6b668603c13ed6929f08d6459dbd19aad282ab82f7dd9ae176fabb74099a25e4d24c51ccf7231ddaa1ca7f1e30d65160d9c213233d92cff1a2159d81427e15292079f42848ec5019c4d481290c3670c80be48b2fa30af808ba66065127ef1c7f99b524440dedde9401025720c45e762bd26abd69f81ad1645c4c4d43ac4b58accd41dc035b17470e89e3bf1eb7d2a9273f9e431ba06fe0f0231a2f67f6ecb5633ca167f7b3c5fa430b64aace434d277e9c96be2415a09bb48674a783ddb892125f809a7fdd2a72f6082e0a54d561ce99636064b6002c468a7a724227e119933c50c210a9d3f68bbb39f2ece4eef8731139c553c7c88539dc9b3be970b2c60de0fa11c9b4d5d686ef08ec304153e22f7466353bb425614df55996b4788e302659016675616d3e11baa9a0da6cfdd5d3414729963f913226296f89e4b3feb7b56a787eed5859990656754ce937eb9b1b4775f4052a254874dd7b09842b9860237948167e0fb0bf4c16d4bb1b9bcfbcc53bfc2c1f61141eb6af295a99d6a2f15f037ad03e28e02aa590883bc064d623b4df0f05b79c8f9b948b4d4cb4a0b03ae54488e803494486653b378aaaedceda5efc0ad72e1b3baa085a301eb441cce88fde8d64d681f20124b69cf7337d53045aca413197e06518301fe4c34024703bddce90809ef4bf87bf7186e059c892f205c07d7c43ef3ec100277b648b1b84bfed74db4e178d1ed87368e21f291fcc52d6d2f7c8af03c63fac382650cf316f5c9a9b81889c2859859e66d01253650454b475fdb555bde40b7febe9243fc3d949ca3421422f8b73427b7f119e7efc5c0e9239ec198e3adf0a56375c54fa574c087787adfcf7c668fcdb14e6524e21e9b10bf6fbf39875ec4aa1c21190302436f5a097884ef9168532f95779a979caacf45139c68ed07cbab01b47a525bc03e2ec4dd458032dff88dfb4585fcf75c0d72002f1281418a7543c8e1fa13ddcd2ddea5af7b22f1c3c08193e095c883e789f421461484bcdcf9bc4668003e93adfc9acb0270b1e35f3f8ac27ba03a4e1f7f719631c6cd39b3f639f77e38bb54850b447554161e574f7b538050c8b2632ce69ab3e8a0b99722c2eba8cf9dc8aa306d75e64355391488c2d3936b56630a5a5923df6fdfce63f9d54a01019d91339347e979004380d5e28b470c7b9ddd5082dbc4c5a03fa7409f810ad1e17bbfa0e31c269ef8d4bb5ce631166f95e238d954d3a7c7ddebce8901d27b6f235ab9bcadd52100a0c5c715506b3fe054a63ecfc2df90a36e8c11e8d8a49ac5b68e15e5c7781625ecab7b4e64c15c10691938f5da89efe33c3c95d2e5348fdbd3062e4fb0d21fb994b08a724c867a05363dbbdd9ac8ea2255624d191305abec96864f65ee169ff468f318773aef94054efbbc34d11037e8bc02dc2bac48e8c387507b7459232dc5dec05701cdfc5c8daae6d36a3162a12445f199000b0a1be93352a3f68ffb7f889cceee21a652e537128f01008f60b3228a667ea71ada55e581b79a65515e06f0b867d9bdafe24141196f933dccc2684580e807cfd9ceab597423e68f18dedaac13551110228d083150136e41ada83993ce656fab994a3be9e1faff3bf04aad418fe6759110aa2c61cc347fe00ce31068507c2b12f3a9433e9ee6ea2afd576c33f582af0a901ccc42c6c07605bb885149c4be346eec6576cf863e58ee6a9b01685e0bfc024964f2312a382b105e4be2cf1953ea01c1012086365f30ce10fa12e3aada51de8166254164311ddc00bd5bb380d1d24032e5e1587fa1478c72ffd5053e4c45ac142a443e598447c771cb235ce86001d18711c54e87bec4a098100840af68f35cc09c9e0c8efbd69b70842cc5ad217bcb1b62995d374112bf0d2a3bc5933c49ddd6a59cc195bc05a9e4c2f448c785a18da3d9d9cf89d4c418390147cc5b9f4f573b2d5efc222694f375b382b34cccfc43e31e25c7df28bdaebf239e8cf8f779e87e7cdd973045055985142a1d215e5a6f666aab2dff5d780337e66c20abd1421dae396d9ecc7c477d06c22d1c739cd34e8baaeebdbe76716921e2274a1e700b2a9002c50ca1cf17bdc21262df542c970dd4c4c4258bd3e4c8e57f4c9394e0794a7d00f1853c651f03adb1ad816fbcc33a731c2bdbcf7a16e54426d3485f0c2047119ef65a61b897120662d31141c42f2ae09406173487c3f8a99174c80d62d24e67f1170b7c339c5f6972326db2ec8206527c793482ce61c4b2107895b8b598a6aabf67d848f375f3df3502e7c86f67f626cf69242211205edd1298d3092e977f89f06784b65d4f057aea259dbdf49f4a514716825ed61d24fee54c2f823afe92a6d8453856e0294d0f724628e3679e94b2c4626f5ecaba56b79c14e284fb0bfa41b7abc49d928b34d5a02bed08b3911bec599421c0930b604be16e407194bcf5db83ec4ec12cc81f016b75e5af7e2ba464dbeca707a0fb08086f53e2c5c9cda7a80126905a0bb3f1bc05e7ad0fb0036ceba04f806c26801c5b19f5a3041eb763474f6ef2ac458fc27da56097f6936b0cbc985e8c98ca9701bd17db311d3dc6689fe2d5205f5f9812448c609e2bf774a35f98874d5aad01ad597c65ed4814bb137c87bded65a0aa72721dd409779b05db8c9c07e789908ff8f3b44a31241e1b7c206afdc2a879d8a22a006f71331b002e814f3eef437b0dd715833ac506b1516fe6ff53958e35719da91bbae950fdf60a0530258c7979af26674b37d9653d45753a5f96082b54749f19abd4dc782688afd42b7725a961bab4361d6c878c481adc493b45b64865967113de94ab1d6dd89014015bbb678ecb7742afe86eed29669a1142731cfc0d0a802c328c853110292402533f25edc21efbd82836937e51cda1a7993f0c0cb39396de8826693fe76d431e35fd2d691daea1a494ff7f0801be0b1f8195004bb07869141ff72f6db43bab2d640860f444288d91912ff58e9531e1b4411dc3b269a0af6f070dd59a0b4f3e3fa8538d678c85fe912566330597e2276a82f679a010a2965bd6c58bf543490c102682224a6c727243aec86ce40569682fa85abb22dfda674957e0edb188b7b3dc6023d663effa23be21b163aef9a4a0b96d187e8fff7d7e6b6a230048cd236c44a41", 0xb02}], 0x1, &(0x7f00001fd000)=[{0x48, 0x88, 0x4, "7932c5f7590cb00d9dd1930ecb46f68a783f9894383a16d8d0ba43ce0c5d4e8bdb8cca3c96f5739ecc4714a0c9fa02b1ee7fa91a05cd"}, {0xb0, 0x119, 0x0, "ae5d81879bb4286b582056591ac61dc1d5197e3bd63640b511149b28fe6de99e9b74273d9f3c2cae299d636d01b1b4332e6b851c80f97e26eb474b090b07b5cf591c45a7b6d4853434affd5c53392d08162f49821b74d0d4684323e40ce4bef9410cc47a9999f701bfd2f57cfa18a3998f97ea03386d960cd3ea84f2b3e0013a3296b17ae0c6d741655a231d40cffbbc7a4d11d440e0edbacd3841"}, {0x1010, 0x13f, 0x100000001, "2c5aa532156acb523876833359bd06e6ff0184f118f092d8ab6936d01b0309961c7adcecc331e7a4b20b45d4873aaf223e8e1d5f4c1cd919e0fe8cf08415ac167daf3970540cabe75199361c2067677a57ef5c65a7c275161d68409daee7251646f2d29f3413dbb8fe3f01d1b6dc6aa7e6d93529b60b7390c4fa31f6b5da4a33d8abc98a4af3aba102695f039975eb97d73baf16a09c035848e8a01d7dd8a089cb2170f28275afc3b7f6aa81e914b4b3334eb46952ca3eb7ee9cfeef3fac8ed688882499636c52314d807af6b247e255f655a78ba711bf05340b60c3cb73cd73a1e8230be252d3c0fab6a78e3667b0c83aa4baa3ea9124fb794e10ea54c10657db63f5981c8f56e969fd066a039897d1a893a76e08a1c767a1e04ed5f0738cb863c3be3f64b0190f57077a77e70c6c7d9e9ed75f25791ef8764c2bf7f7c401e167ec35007aecded1b5b5ba9bf836c6472e9b45b633c2925a490c3b3ad9913b0d53dcedcdcd4011d4c42b6f826af44842351181f4c06a8c0d7ef6980d82c3793b3af5a47c1f4083b22959326b0c8daa0477a7b826d8d5ce376b3f005576374132ab7705aa18518a830263ed6d9bfada58a285bb248e31d3314a53aad2ec41350b0d4e15d12b27e3bdf3c5d33ea550c12aff87f50e37fee17a6fecbca6a4dbe545c2f7075bbfd57d4522b405dfeab7ba187dacefd9db3b6e1867b08b2cc36a17ae258edee7ab01c06d7e94c3e1bebc05293ce847b4925d9b1a630397fe6cc26b8d4da2ab4a079839b16bda4ee5e2c35e11aa16a4c0799746ca8938cd52b94c66909bde6dd31ca0c72fccb62c18b2c5fc42316f71beabbe260df6e97ea1bf7bccf2a1d4ce5b20fe15cad1cc4094f7df783b0ed7ce05be6018bd3dfafc8a86738a65bd12fd4525a80f3e19c3ca204831e6b8c95754f198f95963b0b54ab780b8a327b4b0170c3384bd20d0a25b20bcddb2992108ddac6c8e68a8ec42019b55c010204b7525ef3769ead1704c2460af56e81ce44277cbdc9eb8a8b824bb8819ef839ad6c8123f02e3a0e3e3cef0561c8f73bd81720da7f8c32ec62dc2d282b78b408539ed9f724e8aff260f12327441771d4bfcd9f830b1eab9af0a7d84028e4d928eb16081ab20e48fe99addf94a454e1861e3f52e535cc79e6dbdcb9d1958af36ffface2286124d58408131c604b96a15a13455815765409c417edda181dab81cd7a527088e4e02a7900bfd53823a574c74864942d7fce766b7ab1fa230088497dbffcd1732b5d76f70c4b872e396f3f02803957223be44a1858a44bbc1e449124ea4fe58cedd76ca0f196b5043ed4600d2c3f9664acfc6de062d0cdc34b1f8ea05760fd5aaed7e622cd35bc56b909e034631cc69e65ac37768c70959a6242891231189bf970b6050e102eb90c816c3f4fa418eefeb15d11a0c23e423668d5dc11f34861c26f98247312a1b2f6d7d92e3e20bf5122ea322bc4979b9e41eb677822a9911ab245795a7ac74ddbc295250789115a66fb9aa015efed657849d252b94db59eb51ee29da0cc022c2aa87d013c7b4aceaa7fdc28166c0f10c5d8a6ed1183a30123c2c5825ae1bd541be5f3de0e158bfeddb9aecea1c0a93a3fbc045a5e59a1731944a6f3699d191f90584f3669542f1a38d91cafca1f9a9920b2c2ffd838b0770698ec486736e3cb75d6d86e08b44bd16bd048d0484c1f8980c10bfba39a2a691548749e490afd26da1d4142933f9dc4414930b063ba027cfe64bde1b03c1592f118f8f6901912c9229a1d70be05b7b667a579065c401964ca21081b9eba8ab589b226fd2f1ebae7e04e04440f6e327113289b4612a33732bb7852e8eb22e5730e549978df32c969d1a93759e93676d11dd87c20f3d60d12f66d518d6ea4e5a28e6719c4be542cdc6ada02d98e8154e669249b158a03a82f5456212109901a24b5cf688c1a875d223819f028c1c15142943ed1711d5b99859444dadd06e93b94198fb7e7bd3b7e88ced410f5d06c9904585f0110ea4579c2e135e342a6690101329a0de223d222a6f96c496459fb8e089c7cece60c7f24bdd383725a3b8306bc5a50b06349490be4c1a46670b2ebfebe968516eaf9b3ccf749da959ab0432c6f377ca6a7a7700599ab37d3fcf440657cb53d0d330ef8cd6e7540debea59855ad33558ce5b74dd6ce78f9057818caea112a36ae84ed91ef78bb3b6d92f466df3fcbc2007168efe8f3896472332d4e4fac1163f0c0ff6bb36ef443ebc06c1a5f02ca9e8e813f13f4b61f77c990cd12bdc4913fc42b7570826f12d3bfeeeb71d9c6b8d8cccf889ca55b262c3f4f5f3a4f7b47aff18440b222eb742371684b7b626bf4d9a82bfbe49975483969d2562843928fa43fddc7aa90f6d2a126da3395fb4e133afca1ecfc71a47b5e471fbde127ab711ec2245e22e2e88fa0596ae80cfcb1cb61ff47d7b9c330a3d761707fc781e465f91f5233f2833ba0c5fec4ca645f17f34d88708812c36d5f99110efeef6d6548441c60b74209264c6e27ac25a4b76c0591756479e2b433355dbee762e169c17d7c25c531c6d7679f74e4a90233340f699ec4e79fdac8c9860c7e00c2822b10790c82643b7b5ce7684756226f32d140c50a6a90ea1224e5f911b4a9d623d0b6b84394eac15878ced72783684b57c84776c82ce34a206872bd2717cf5d2df2fcef441edf62cfdf60c379151a7234ad4dcfd128d0c71a1c0484ab7d6a9ec25c8044710aac01f8f79fd299c6c8773bcac209a978ee21e4770bd0e57ab55b987c6462be5076b5851bc60a9c8f40afd805ed6ae99adcbbab552b027fc91b2c494f80e0acd31c93614f67757eb46869ab6b9b642dd0cc9db28b420fc1bbdf216368b777045e62b601d5a49332dbb777ffe0a00f56364032e9e9029295c281a7a3bd43d8f28771d39ea097c6b7a7ea7a799dc4123def7f1e3dab991c05f5a79500f1da847089ce9b5cd212942b973e53fef1628d2fb429d43104f81f3c344a72c4bf967dc23d6989a780aa26d7c05a322bc1040c35395c28a826f1b7ec9fac233578e27e254d1a8539a923be1aba0c262c6dcebeffc587bf5bc368c535ac3268c1e0beb1c0a2183c8a791048707be984edd5171ed2f239c006af17079c2a93eb35006c01cdc4ee6ea45389df90c46637255f253d3f7de9136ad041f239ebee8aff435d9d6c7ddb8ede96c95e73e814969ea5446a98d8cef12ce687a0ef410a80ad4dfb4fa3fba8772ea96de3369bff652ca18bf263b64b5f27a65102da5299a89f9b61bec18a847325c268a2ebf0ba8ea46578a5d83a6f3ba6df447f283817b1fc5e03bd2190137191695c6f0acac01be418f5180ce111d16eca21aba53a862db16449b6a9807b6bdd57415646e869ef2a20c527f326b75c4deab5f7d5cf334babed4e80220a6b12f01fb666ac95a1ef5734d281430cece54df33f303c2b7c9e513cd6cb4153f0f31c332ba02b680b754a02a5c91c519c3a61607221fd1a420d55a48d6ab3bdc39238c5863e9b0475eba37c87242eb11f1ed72700a0e75011943a124e695c0ee0a8e2cba3bb07445e23283d132eb64d34f5aae32b74cbde76d6e31ef9b56544eab7f8ccb92167b7c8464b7f4794b8821d9cee3a7a436debf787d191143a42da7bd07aedb0fd922b0261be8cf65b599e363fc850d4e86c072cf3de35462578e4ddd07b1e54c3239091c32d97c2219dfe2dc5fce3691e2ae9fc23749b8ff9767f9713b7135d54776ca2761e61639ffce9c35554dfe9d728c8801d9c7e09b7bf750a55fcd5b17dafc049acd9600f8c7fa12898ce992bbc6c542ab2d121c9530b01a849c750975ac76a7f7b8fc3ca068f6b282208144257e465ead024d08067f675db33bb0b9759f2575c7dde59a0c2940fd67bb93a8d62de4727bb5495eaac71493658b80ad52b5af3863df1f8d13e2ee3ce3c7c4b90d96739bd1003e6fed3d0de79cf6ebb2b9be0b55364ac0a2dccb7af04e1571fd4555bfb92fd56b7711569a6f0c1e0780a1b17c4231ce706de43a82bedd6b0bcefead970a5f1b50c1a62c9252d14c681af48c0809dbba9129fdf0e47e60ab702bf44143e114f0118d7661d36655c7f6ad69faa1a4f18c4f09df3bfb1cececa082637b7111542117010252a815ce927cd82d5d7e34724731523d1f21ea0b1254154e9a5c782360aed2d211c8312c9f21af836772c600edbd649d6341cd31703e8fc4c955d9820efd97a6386fad70589596a89404e551500ea08839ebdd2192e71036d192592f86b2ce9d2dd0f12d68b6f9129f880268ef037172db95e2e744be73b0146d781d77ad8c412822fe6ea6f97fbbc4172aef722b9a00b356d08eb2fe0ed28b622c2b9093964d17a8b314da6dd5e6f59c1e74669dddbafc678b5c7e8f128e16b29585d3f25602a5288d4d0925477e73f2793de3ed83ad0affe1ad7f7e1f67b27476770caa2d7f523e8ffeec76024270bdc846cce48ad9fe82ac35386f9ae348b91a220a9d92ad0ce2b8249ac7af5b852b982c3df07db69c360b12549fca5eedcf4e71559b94aacc6cfef2bcf8a04787a478aafcdcd0ebb2f3a590fbd6b292310634fd4aa6bdfb045db209a2a514d73a937d3a6824379775d4a503bd573309341c06bf1830a91b7f8a903cefedfeea33d62d27c686aa95973f597e17fa72c0d8e133307b0c98a123f5197f5c4d342027bc653119b34df438dba41eefeb1ffe0222c42d3c7b321a68100a0b3f6c73adf8012a09112ba0c08e150f6fa7824402cb6818d4bec548a4ce90cc17dc2be2c83d4e1674a4610539f0e20c5412c333ddf20ec47a7c52dbc1baf29bd8983238dd7208abc137af86f8fa428ca56fe9bc570229ed9db144f6e0736d8fcb3db8104b608aebe8927782cd2fcbbf232f68c55df3908ab37dfe97a949ef07587a6e945767f6aa09037f99848e4bcdaa62e8ece18b69b968bb8a5331be19496d86a83fad34d5f8c14d5385f8f621499fa924098f484ce79e526a27893f8aa3377f96849087698f4df16a6dc93d6a95a390043b9946abf98dd59859bc5ec86cf99fc77dda329ee220eddfa9fce3f1268abeec11fd75003f732eb15a8564e64bfdb38693b303e773143bdd036b0646329df24fa245405130b0bcdfc8cd9080437825a195e48bcdd108d72f38233ab17811d650dbf635b66c8e2131a32e5bee50b34e917ef7f51cfd36a517538e188a804ed6a705c4409e333c54cefd9da1ae56661344d0b2f4209e543b8ffff348ffca0d5a4f4727fef510bfdbe97a27f6bd19c94877e738506cce6ea100aca1a92b9d87d799d646cbdd6eb7b330ffebc31d49b921652b5c9f53af864d456452b46b4e81dc218c88664ef8035fe00191daae45e46659808ebbe078248fcf21c4bf4b9df8d74af5725fd6dbe5e985153a353c5d529b314cc23ebe56f66aa6830baf045967cf5159afe1679c2dc6abdaae5996fac930d2c34c91f23aa7986548cf5a09e90954e78fc8d009a68c45e5f982f69682228af139d61b6d79f7366675600deafe5a7398616dc5befe4c1470d15c195331d55f0a7002b39be785416e26dc0a000d3f9e6e8f801aba493ab1d732bc9e2295bfba4a55fdc56aa84467f58f8bb3b01dfde957479b1a0cf55c198333cd831516a7383d178576156ab521e1226b0902122b8c7b55d94614e74bc17cc16693440435b91077484e779ea5673929f92e4fc3b9a3ddbc2d868cf161ca4326d8c043378b3aed6dec1352378a7be1ad315d9ad2754d2bb7731f4694f52326786bb4c7a417666ba15c690adfde6483"}, {0x98, 0x11d, 0x5527, "bdd74225f971e0100fff02000000e9810001d1cfa335a3ed39620c9878918c12bfefa14ffe41699fd9771731605697f7b2ae36ed8b39f726c68b837a15fb4e8f8f22be2879e49d21f072930ca8dfec00066c9c4d40deefc17108e502f20f16379cf48ac256fec0c6362293688ecf8517b5433802d1c0884e5d909a4ff61b642430de"}, {0x90, 0x11f, 0x4, "fc26ecf713334d3be2a38be6c4107e595ab561bd0b734af6444b8c62140ad9f01493dbddbed4b8e782b3f37464d7caa784b6d6fd738fb14e24e02cf0c9366ed78a5192db81146be223111373f509a3ee77641bec346407e0eeb435f6cfc72196514e7bb13db16d39d7c2920f636fcdc1cfbc072566e5b22bdb7e7457e50f8c"}], 0x1230, 0x0}, 0x10000}], 0x1, 0x4c080)
shutdown(r0, 0x1)
getsockopt$sock_buf(r3, 0x1, 0x1f, &(0x7f0000ee7000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000b7f000)=0x6e)
ioctl$KDDISABIO(r3, 0x4b37)
socket$inet(0x2, 0x2, 0x0)
r4 = memfd_create(&(0x7f0000cc7000)="2f6465762f6b766d00", 0x1)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = dup2(r1, r3)
getpeername$netrom(r4, &(0x7f0000944000-0x10)=@ax25={0x0, {"00000000000000"}, 0x0}, &(0x7f00000f8000-0x4)=0x10)
ioctl$sock_netrom_TIOCOUTQ(r4, 0x5411, &(0x7f0000257000)=0x0)
gettid()
ioctl$TIOCGSID(r4, 0x540f, &(0x7f0000a9f000)=0x0)
ioctl$TIOCGSID(r5, 0x540f, &(0x7f0000f81000)=0x0)
getpgrp(0x0)
2017/12/15 23:28:17 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
gettid()
r1 = creat(&(0x7f00009ee000)="2e2f66696c653000", 0x22)
set_mempolicy(0x3, &(0x7f0000e6b000-0x8)=0xfffffffffffffff9, 0x2)
getsockopt$inet_sctp_SCTP_I_WANT_MAPPED_V4_ADDR(r1, 0x84, 0xc, &(0x7f000084d000)=0x0, &(0x7f000076e000)=0x4)
perf_event_open(&(0x7f000001d000)={0x200000002, 0x78, 0xc568, 0x100000001, 0x0, 0xffff, 0x0, 0x0, 0x0, 0x2000000000000000, 0xfe, 0x0, 0x0, 0x8, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
openat$rfkill(0xffffffffffffff9c, &(0x7f0000b7b000-0xc)="2f6465762f72666b696c6c00", 0x40000040, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
gettid()
perf_event_open(&(0x7f0000001000)={0x2, 0x78, 0x0, 0x0, 0x10001, 0x0, 0x0, 0x0, 0x1200, 0x4, 0x666, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20000000, 0x8, 0xb, 0x0, 0x1, 0x7, 0x2, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r0, 0x8)
ioctl$KVM_TPR_ACCESS_REPORTING(r1, 0xc028ae92, &(0x7f00004ff000)={0x81, 0x2, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
socket$inet6_dccp(0xa, 0x6, 0x0)
r2 = socket$inet_tcp(0x2, 0x1, 0x0)
setsockopt$inet_buf(r2, 0x0, 0x800000010, &(0x7f00000ba000-0xc2)="02000000020001000000be8c5ee18c88010001000000000001da1e03a38a3cdcc3f7b933d898055bf74852bb6a8807567f59dba67e2147b35504006fcd67a1e20100672f2163e0209cee4a5acb3da483f0a4ae97e170b6c88ebbff060100000001000000b121ec1474d710f542506b00ec008bc5cfb7b3e7ec7ee87cccfff6ba000000024f0298e9e9f55406aa10ddfdff036a00000000d791a2ffe3c5732c1adb8afc5bd8c2d17fdea21b541068393d22b5affa00041ad0d2c03eef6795de42e384", 0xc2)
2017/12/15 23:28:17 executing program 7:
mmap(&(0x7f0000000000/0xf56000)=nil, 0xf56000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$key(0xf, 0x3, 0x2)
socket$key(0xf, 0x3, 0x2)
sendmsg$key(r0, &(0x7f000057f000)={0x0, 0x0, &(0x7f0000093000-0x10)={&(0x7f00006e0000-0x80)={0x2, 0xd, 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, [@sadb_x_policy={0x4, 0x12, 0x2, 0x2, 0x0, 0x0, 0x0, {0x10, 0x0, 0x3, 0x1, 0x0, 0x0, 0x0}}, @sadb_address={0x3, 0x5, 0x0, 0x0, 0x0, @in={0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, @sadb_address={0x3, 0x6, 0x0, 0x0, 0x0, @in={0x2, 0x0, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}]}, 0x60}, 0x1, 0x0, 0x0, 0x0}, 0x0)
mmap(&(0x7f0000f56000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f56000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f57000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f57000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmsg$key(r0, &(0x7f0000c27000)={0x0, 0x0, &(0x7f0000f57000)={&(0x7f0000f58000-0x50)={0x2, 0x13, 0xfffffffffffffffc, 0xd, 0xa, 0x0, 0x1000, 0xcdba, [@sadb_x_sec_ctx={0x3, 0x18, 0x5, 0x100, 0xc, "87dc0637947240d8bf3d702d"}, @sadb_lifetime={0x4, 0xd28094a21b2899e5, 0x5, 0x2, 0x8, 0x2}, @sadb_x_nat_t_port={0x1, 0x856ff64b789e19f5, 0x3, 0x0}]}, 0x50}, 0x1, 0x0, 0x0, 0x0}, 0x4000)
socket$key(0xf, 0x3, 0x2)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$inet_icmp(0x2, 0x2, 0x1)
socketpair$unix(0x1, 0x6, 0x0, &(0x7f0000b4c000)={<r2=>0xffffffffffffffff, 0xffffffffffffffff})
r3 = syz_open_dev$sg(&(0x7f0000c88000)="2f6465762f73672300", 0x7, 0x4000)
r4 = openat(r3, &(0x7f0000bfa000-0x8)="2e2f66696c653000", 0x0, 0x0)
r5 = syz_open_dev$sndseq(&(0x7f0000d3c000-0xd)="2f6465762f736e642f73657100", 0x0, 0x0)
ioctl$SNDRV_SEQ_IOCTL_CREATE_PORT(r5, 0xc0a85320, &(0x7f0000947000)={{0x100000008000080, 0xff000000004}, "00000000000060cd000000e8ffffffffffffff0000000000000000000000010000000000000000000000000000000000000000000000000000fa000000000000", 0x40000008c6, 0x80000000080003, 0x800000000000, 0x0, 0x80000002005, 0x3, 0x0, 0x0, 0x20006, 0x1, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$SNDRV_SEQ_IOCTL_CREATE_PORT(r5, 0xc0a85320, &(0x7f0000c03000)={{0x80, 0x0}, "0a4ceaa05dad126e00000002a1569b3fd4cec307e8ef3d13eb790ec9c65abaf90d229db692542e5b78f8b29e0a27800f0000000000000009fb42d576589701a4", 0x77, 0x10000a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r6 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000299000)="2f6465762f73657175656e6365723200", 0x100, 0x0)
setsockopt$inet6_MRT6_ADD_MFC_PROXY(r6, 0x29, 0xd2, &(0x7f00009fc000)={{0xa, 0x0, 0x7ff, @loopback={0x0, 0x1}, 0x10001}, {0xa, 0x3, 0xcee, @loopback={0x0, 0x1}, 0xffffffff}, 0x80000004, [0x8, 0x0, 0xbc2d, 0xffffffffffffffff, 0x0, 0x7ffffffe, 0x4f60, 0xfffffffffffffffd]}, 0x5c)
ioctl$TIOCSSOFTCAR(r4, 0x541a, &(0x7f000024a000-0x4)=0x800000007)
getpeername$inet(r6, &(0x7f0000cc2000)={0x0, 0x0, @rand_addr=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000315000)=0x10)
getsockopt$inet_sctp6_SCTP_HMAC_IDENT(r4, 0x84, 0x16, &(0x7f0000a2a000-0x16)={0x9, [0x2, 0xa63, 0x100000000, 0x45e, 0x9, 0x4, 0xf6, 0x3, 0x0]}, &(0x7f00004de000)=0x16)
socket$inet6(0xa, 0x20000000003, 0x1c)
perf_event_open(&(0x7f000002f000-0x78)={0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xffffffffffffffff, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffff, 0xffffffffffffffff, 0x9)
perf_event_open(&(0x7f000001d000)={0xfffffffffffffffc, 0x78, 0xd4e9, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x6, 0x100000001, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xfffffffffffffffe, 0xffffffffffffffff, 0x0)
openat$sequencer(0xffffffffffffff9c, &(0x7f0000147000-0xf)="2f6465762f73657175656e63657200", 0x20006, 0x0)
dup3(r2, r1, 0x0)
[ 52.185031] binder: BINDER_SET_CONTEXT_MGR already set
[ 52.191581] binder: 11884:11886 ioctl 40046207 0 returned -16
[ 52.195727] binder: BINDER_SET_CONTEXT_MGR already set
[ 52.195733] binder: 11884:11913 ioctl 40046207 0 returned -16
[ 52.197058] binder: 11884:11924 IncRefs 0 refcount change on invalid ref 3 ret -22
2017/12/15 23:28:17 executing program 5:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe(&(0x7f0000001000-0x8)={<r0=>0x0, <r1=>0x0})
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$netrom_NETROM_N2(r0, 0x103, 0x3, &(0x7f0000873000-0x4)=0x2, &(0x7f0000001000)=0x4)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket(0x2000000011, 0x2, 0x1000004000000008)
getsockopt$inet6_mreq(r2, 0x29, 0x20000001f, &(0x7f0000c29000)={@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, <r3=>0x0}, &(0x7f0000db0000-0x4)=0x14)
ioctl$sock_SIOCGIFINDEX(r2, 0x8933, &(0x7f0000831000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, <r4=>r3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
bind$packet(r2, &(0x7f0000ffa000-0x14)={0x11, 0x0, r4, 0x1, 0x0, 0x6, @random="f16b2aec4798", [0x0, 0x0]}, 0x14)
writev(r2, &(0x7f00000dd000-0x40)=[{&(0x7f000093b000-0xb5)="13fb2868e4b39f3f749b0c5e01dc42450f6c7924d70a338c313f91f78b000693f61dc091b145e76e8045a15f0834d5c901100b412e59c5fdd4b0d4a3b8fe939090977da4db65c543553409391e88d88e9892ebf9d7238387ec0fb02e8dd5f6ab0922f45a6c20b540b292f0eaf551ca045367ac868b3618d5b034e815517f1d72a167aefa880000000000000007f7854d621022546953789f5bb05397bdd665125915b04d2feada4f8d7ca4b81eac095519345a068b", 0xb5}, {&(0x7f0000502000-0x3f)="3208861633521066e5d939da66174b2e80ce39ba220a98a3efff98b97d1a45d66b01de4f8d52ea4482981cfdee513774eef5a7bb7ab07094e81f67b3182bc5", 0x3f}, {&(0x7f00006a3000-0xc4)="cd9e969c2c55e087d4f62c0ce873d854791af7bae3d6ff6a045773c9b84218a48dd4dd8e100a6cd68ef1dd46a0810657501df9894c6e8dd8f8a236f8511d5d8e14af7c4c3d938ff597c3700e495695b7fdedb4656bcd1c86da4103ae2809294802c19245175624df26e4059cedf142062533714bfda1f372d78301dcbd910e3f23ee5f4f05de4904c3f06fb634bd9837e6692726edbb20f69f8a8c0005504305000000000000002f7d996e7346379aa2f46d6ba98caf3c9ad3fd479deced04114843fedf", 0xc4}, {&(0x7f0000cca000)="d52a4c213ec05cab46689f3c9de455b1f87aff0b5d35c831dbb448f52bd117aa04d8696fd965038bb6d1b746c55b2d73e491181e31e14cef8d70ba7fdf5ba76de3f8000000052169b6cec945cf45fcc9340e", 0x52}], 0x4)
sendto$ax25(r2, &(0x7f0000f39000-0x4)="00c364", 0x3, 0x1, &(0x7f00008f5000-0x10)={0x3, {"910000fab86092"}, 0x42}, 0x10)
ioctl$sock_netrom_SIOCGSTAMP(r0, 0x8906, &(0x7f00006bf000-0x4)=0x0)
poll(&(0x7f00005ea000-0x40)=[{r0, 0x100, 0x0}, {r0, 0x800107c, 0x0}, {r1, 0x3, 0x0}, {r2, 0x5e, 0x0}, {r2, 0x46, 0x0}, {r2, 0x10, 0x0}, {r2, 0x522, 0x0}, {r2, 0x1140, 0x0}], 0x8, 0xff)
mmap(&(0x7f0000000000/0xffa000)=nil, 0xffa000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet_udp(0x2, 0x2, 0x0)
connect$inet(r0, &(0x7f00007c3000)={0x2, 0x2, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getsockopt$inet_sctp_SCTP_GET_LOCAL_ADDRS(r2, 0x84, 0x6d, &(0x7f0000000000)={0x0, 0x1, "28"}, &(0x7f00005ae000-0x4)=0x9)
mmap(&(0x7f0000ffa000/0x1000)=nil, 0x1000, 0x3, 0x32, r1, 0x0)
ioctl$KDENABIO(r0, 0x4b36)
accept4$ipx(r1, 0x0, &(0x7f0000465000)=0x0, 0x80000)
syz_extract_tcp_res$synack(&(0x7f0000ffa000)={0x0, 0x0}, 0x1, 0x0)
r5 = accept4(r1, &(0x7f0000e97000)=@ethernet={0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000769000)=0x10, 0x40802)
mmap(&(0x7f0000ffa000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendto$llc(r5, &(0x7f0000da6000-0x5)="a30530cdac", 0x5, 0x3, 0x0, 0x0)
pipe(&(0x7f00009cb000-0x8)={<r6=>0x0, 0x0})
ioctl$DRM_IOCTL_AGP_ENABLE(r6, 0x40086432, &(0x7f00009cf000-0x4)=0x1)
syz_emit_ethernet(0x430, &(0x7f0000e40000-0x430)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x800, @ipv4={{0x8, 0x4, 0x0, 0x0, 0x422, 0x0, 0x100000000, 0x0, 0x5c, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, @multicast2=0xe0000002, {[@lsrr={0x83, 0x3, 0x282, []}, @noop={0x1}, @noop={0x1}, @ra={0x94, 0x6, 0x5}]}}, @dccp={{0x0, 0x2, 0x4, 0x1, 0x0, 0x0, 0x0, 0x1, 0x1, "d7cc2d", 0x0, "f99113"}, "0e07405a92885dab91772c391b212e2d725ec2118751679cb77e825e65ee61cfa974c80b5c597c18fd7a1f6ec0bc4854088ee403d4555c7568ffb5a44c9c2ec198f0e0e1bba8dc88eb726e18770ea5283c58aaec4b019cb319a5467cb19414f069907963028363eee8c2e554e8f98f06a4627ec0565d11054bf097efb382daaa61972fce775c5dea219931534d906260a5ec6ce641b19765a0e9cf9e38ae1d027eef945676eff181c9252b59f533bab72c375579abbfd3c2b6bded524f8ee9ecdb5b4b9ef2c807a0cdde048d318677107306d2df2127fb72b452f2012646a96cf868b65d60ec2d2c0993bbe47dec0d96598691fe5b834ba74a2723272be323cd0e08abc2125759d4b49cd46b4afae9745a98fcb99df39fb1445cd95d5ccafcade6ae10e366608bceb246bf76e7011336ec81468b4f272e25bd292c48afa66412aa4ee4bc02e7a2affdd78bcdd4bf595a0cabd82e19eeffbbd8dc9f8bbd0ce0622696f0fa442f009c44c26446e9b875090a8245269aaee66eca855550a503b5271b7d76f9267923474df2954ffda27780c02f732255f75782083ac127f175808932b17544696d0ad1151ea93ff8eb17a95c6236ac3f31cdfe5da5b83497fcc41c94ee68067106d07f0a34199c58d855ef6ed6e6a1969f04da31211b75f6e1f1c7915cebd5fa13753e58cb3251a262a88addd7429bf9b35bc2c1e6fd85b19cd9cae864cc080cd88c2da7eadf6513236ac269e79235af41586c782e498a2c4de70aee02a62ed3fa7d2ca8f32c6f86c240ff6b4250357b358e3e56ed3b029feefbb03bfeb1eb8ca11ee5d4eea76c1f7bd460363d8a2f01931ef47043eb8bbf33ab67624d066ab6779a91320515baacec3952c0e8a7784babccb81ac620c9344b871f7ed38da27f16c7e3e8e9f4160dee57bdb600804a4f83ee8b460396e1ec2c630f71a0112fca318043f576533836969ebce2dd9dc045062024775b9a5bd40cdb813ad6c6382fa21fb5c043f9a12d2602697e13afbe63820c1c70a124cd1f3383b7869da55efdf489257362746906584197b4fd432d869179152827696b00c0642779722db88bea3425e8ec40f2b96b5305023dde78c8df9a42eb953d2ef4fc10451db48585fdb6e1264a7dbc7a10a45d5a10c1e1c756cf6c317e9bf452b5302f3868219fb121a96298d212d2b8eead855537cdfd0d6ed748680cf816d34f4348e269e2009d875b68d39045ae3686a8a705ff5e06a45e5629deed0b637284a9992001d0cc0dd8d7797effda3d08ca488274a0c45eddc9ae3b840c1532a3bc7200020b9bbd8332f133ec63d1d06ba0458770bb49ce2a1dc9ec591f9402114516f8c452d2d7e2f046a265e6dba284134a15e6047ffc60e71611ea3b16939fa5e34e1ee6f50cd53887c9590e05f0226f97b343e688"}}}}}, 0x0)
2017/12/15 23:28:17 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = add_key$keyring(&(0x7f0000531000)="6b657972696e6700", &(0x7f0000002000)={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x0, 0x0, 0x0)
r1 = syz_open_dev$usbmon(&(0x7f0000357000)="2f6465762f7573626d6f6e2300", 0x2, 0x101041)
faccessat(r1, &(0x7f0000797000)="2e2f66696c653000", 0x0, 0x100)
fstat(r1, &(0x7f0000a92000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
accept$packet(r1, &(0x7f00002be000-0x14)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0]}, &(0x7f0000fc7000-0x4)=0x14)
getsockopt$inet_sctp6_SCTP_MAX_BURST(r1, 0x84, 0x14, &(0x7f00006d8000-0x8)=@assoc_value={0x0, 0x0}, &(0x7f000060e000-0x4)=0x8)
ioctl$KDSKBMODE(r1, 0x4b45, &(0x7f00008ad000)=0x3)
r2 = add_key$user(&(0x7f0000176000)="7573657200", &(0x7f00000a8000)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f00000b0000-0x4)="cd", 0x1, r0)
r3 = add_key$user(&(0x7f0000893000)="7573657200", &(0x7f0000042000-0x5)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000f29000-0x1000)="b33ab76479ebe0d94f729cd653e520c19ad7d97fe21769e7c4db440000000000920005fb8bc6ed266ccf59ef70995bf2e8e0ecd300000000000000ffd2818d08ca27e0ec821620c465a0e6b9480300000093f62113e33e5f8c7eba67021ba9497f5b07e5849d2e875b066cd640b336616fe0f3c3002801b4447ee7597689525e8e81f750a86eb580fb4690ea52246bd3d32b1a91f944edb74b1f50ae08c5387ed8fd0598b600579fffffffffffffffff008f6672f98f7e149be31bd78b506e8b", 0xc0, r0)
keyctl$unlink(0x9, r0, r0)
keyctl$dh_compute(0x17, &(0x7f00004c9000-0xc)={r2, r3, r3}, &(0x7f0000d3d000+0x6b0)="", 0x0, &(0x7f000040c000-0x2c)={&(0x7f0000786000)={"736861312d7373736533"}, &(0x7f000076d000-0x10f)="b68cba520504f9336a7b30d43e608af67607ddff8587970cd2718df56c38d333d39f09b29c8a1a68436555aa2c8f874196871cba01c202c2e4bd9d5ea5eb30264de8a4f74111d95f09ae0f0801e619edd1801ccf3469eef8282d2c74621c49a83f4cd7f80c000000000000873851549d5eace880ade1e9bcc8961d41167eb5867849fd5729e1c38479f98f229ee5a74e453651d14ed900de6bf4d62cd90184e289e2c6dfb66afc2d61d59fa28daeb563c18727ce29b2b6140a87d575a1d8adbe6263584619cff0492fdea32704eb8417230eef7b1cf6b287dc5675aaff0c420b06512c8ea9a3d6c6acf3de4f9db79dbdaf66bed23f3da93d20ef2d748962b9b97d7e1c2a9c77ce100bae67601e7710", 0x10f, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
2017/12/15 23:28:17 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = dup(0xffffffffffffffff)
ioctl$TIOCLINUX6(r0, 0x541c, &(0x7f00008e4000-0x2)={0x6, 0x81})
ioctl$TUNSETOFFLOAD(r0, 0x400454d0, &(0x7f0000904000-0x4)=0x6)
r1 = syz_open_procfs(0x0, &(0x7f0000f8f000-0xe)="617474722f667363726561746500")
sendto$inet6(r0, &(0x7f0000a1e000)="c02a67ebff1abcfb8215ffc515c22b46d1e6ccc7cfaeea0cd7aca3cc9fe84d2f4f8832", 0x23, 0x0, &(0x7f0000861000-0x1c)={0xa, 0x3, 0x0, @loopback={0x0, 0x1}, 0x3ff}, 0x1c)
write$tun(r1, &(0x7f0000765000-0x18af)=@hdr={0x2, 0x0, 0x2, 0xffff, 0x5, 0x80, @ipv6={0x1df9, 0x6, "ec058a", 0x187d, 0xff, 0xfffffffffffffffe, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @loopback={0x0, 0x1}, {[@fragment={0x2, 0x1, 0x0, 0x480000000, 0x2, 0x1, 0x2}, @fragment={0x3f, 0x2, 0x8000, 0x81, 0x0, 0x8, 0x1}, @routing={0xbf, 0x4, 0x2, 0x7, 0x6, [@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}, @fragment={0xaf, 0x1000, 0x2, 0x100000001, 0x1000, 0x6, 0x0}, @dstopts={0x3f, 0x240, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [{0xc9, 0x1000, "36ba05548f85027ed6b4f79613f2650164bd3a01ea3633f34af4a75dc04d86c68e7358c085f9d9768e330698cb1d3f737207e07880d4ad8d913ed1290ba7d72f59077b438dbdfbe0cd95eabd94da08eb48b7e59e996e5044c1578adcd233080e4f11f1f7db7bb06f4405e8981f6c942d0a300123757e7cbc04b3a726a68a4e192023380a94ca08a34b6886882598071cdf3fb323a45cb94b04a85549ffcfa4db404fb58fb4beff9b6d027ecf58abbc9e7f62f21717f8d6e06a8da9d4b64af8cec02552823c8e77f9da633fc725ac799ec822d79c7ed2b239692e11750dbeff14187663b3e98a917f0aedc0be98a8e2abfc53e5c7663c4bb28c908ce823488ad602ac70bec828f5328fd6b04038cbfdb8bd35b98dd6b2ee483513940211769433e991da0a664f332ebe7fc76b1f595af3d25dc241bc7a1e6db994b5403d12f937d967872d97e7b1f46b9eb910edf53b4fb633e7a251fa2b7c5dfa6a94d6b9075c6f88f82d34f9ffd2975a9a19e856d4e822ab8a0875fa47b06092b7855f6de393077cca14265aed8ae0c73ac8fb0517deed474d1ca7dbc4b07430eee661326e82941e330817d68ddea97414e4918a3e5b112af49435f5a43288738c468c8b0765216a39e57adeca0278c11910b8eef673f106463600d93110ed113810d48512633bce6863fe8909fa99db955f9cca13e8dcd942b9ebe18bbb1bb5ea24774ec32646153feaf06da9bab79313d0597d487bcdb03b4470e1873d62a1a55535d77038014ce09a87f5f215b500e208713287c0b10325ff3bd12668a2a0b754ce29a489295a013429bbc94c1af04d7dac0cfbb55300c54e3bc175f5232c051fce388d7209bc8876285379023054917d873bbb6b19a989e26467ec4ac73fb75a676e1d635b7a6b10014e70d5e3662a82a29ee0559be8f44ae9d4e77ec9b1f1456fd23571e5698adbdaa3bb91455eed83c1691db63a7abdcc77671a4f353450e7189a998e6c0322cf0fe665e838700bacb221b91296238daf63f69acfb520e7bf9a060716972911da00097d7c7973995da9dca2f1a3eff20cbfb8d40ea2ef25952f41a554379168f778ea7cf9be9a8543d033ed4288382c57e3c74e13486167c91b524b09a11f3277d2e7db62a1a269cb01ae76385ad8e85f6c3a2f5b43c676efc671469f3714b70e8acd513156635e4ffdb1d4a0dc0f216871756e56dda6d870c636e2fe61c3be8d7631f405ccd36c3eeaccf14aa8c34a5e28169bae15c557a2f41b6fa5fcf3b3f0329896abc98faad7b3c162efc01ebc288b20bc296999a768959cd5babd23168b319bc9531c83c2de3bab22eca5cc0bdbd5061f198caff3c33dc8c68c3f32a8f2c57739b1a9cf4e383dec83bb39f70b97ca5796c67beff66a1996b5c08e6038b40950817a96f0e8e3c5b2e5f55ee446b8b6c5b9f1ac685afb8f175e3710d6f809e24d967e82b7d3b71f6e9cb77f2c259eed1c1d056c4ae011ced7990eacc21da635aec9c7d4617120b711c63d0fe756325103f8c873d9b23d501412b107c33be7e87635c937d92512b9da5a237879cea2ef16896ce74187d59ec1d71ab61cf912d51a3025e9f07732ee0eb1b0ae9d082e6ffe6f56a67128a2155a04f296895dd2531b2b50aff7cdc8d57bdc20a921f3efc25901394b81e47900584b8b4ac152e5e4556cd61ab6175375915229ba8271514ca790ec7f21a29117c81e2ca82d43332e4f08506e1d2d7afff833df36c9140c5ab2c101f0612ab6a75a50de36a4070ce63a2c7a2ca5729908faec50a982aa2188f1cf4b2c873658b6fa23ca5ee8bf205b7256fe509aeb1b65acce98b1cea36f70fd9cccb2d39eeb51b9fc08baa1fc35855205557578f7933388e92f323a71819dd07d7fe7bc210c27bf285d6720c2573bcf80713c0d365b19f305b6a1f9d0fba0bc84d7b85d6e55535f2e92b4e171478d6c1047066c8457098b046052e273ddda232e788651b99384391853d0e115da164b6010f8103c2a518b935fcb7fe8ca0d82776f1625e7943a1c1b133561307ebd138a579caad1e12ad4f9289a6c29c45b52ab4a7df227dd8a578fb4ed7910e78340ac5cbfec5f8c5d0813c6eff38b6c49cafd1e15c5bf21966f9e30d3eaba46a4f05d8b909b38de78094a10fdf2cd922da2649613d40e0735deb4a973bf0edcbc5244ebceee657104d8e7c89769c495267b8be2ad435e28e32b390dcb59c069e6aaaf469c010cdcd8d4743500c639c68c1b1881456ce21129e849778f6aee7bd21f4b146fcf9fe6be0cb48642add9781cf4c02cd99608c673782a168d9902b348363a078f8c148ec3ef16adbeda7f5e64aa727d92e77e532fa29ab0227089a98ca3ea03daf87171a44b77273a261366de0e13d4e9ab4d8d3e643d9b230666d040424cae483c38a06e943f948c04042094477f7199248070a202efaf44947fffde8b78943bf52415ec3c083e51f5a87fe6f29753cee88e75e761fbaa4f4dc6df87751aac16e38e959d738f4751c6d97ca0a629a80c75143836c39495d250d8b1e799797e4d2a27839888076f2be4115b834d3ec40d707f7d3a22048ff5da9df3e42fcbf9ffdbbe5e21170a6fd7e0661a1ba8aba0a8c6b7b33728b3abda07d32001b9964526b705eb0b1638f2fa398b776ca16a779ca62855e1e2d6126f02ce35ea73f311c7c4b16d734111dce4300873b0e503edda2e786647bff8d04eba1004b06a00e7f5897ab1dc18d1cceb94f227790923d2c0fb049930cca8de48fd7e4f355e804fe120076780441ade95f302068dc41a040bb7918bff9d26f475fe4b918da48e86de1e7b89fca6624292b77159230d04ffe6f588a94f048fd81f66cfbeca47038f630a13df017bc0c6293717d362ffe430d2fd78c9b1b886c5a88244978f2afdc552de563f0d2feb2e02fc14330493e4f7717508b1da283cf4e83bcc949c30aafeb16dfddc854de8f4838147e6bde24de1bfbffc55cdbf47dd5991270b0a78333c3be0a42fbc8239b19da79a00c26550aa1934bf3bc9c0bfacb2081648c9b18c386601172c2ec8ab6e7c3397f4b07555a05525ed9599ac4fdc36a499ef1d5f2c9feee70a503bbcf5f89788819c20c8eb4553d89aa49a258f6136d90fc446c41e92a260e2c3a5e553eb8c21759b44f68b59e6eae67ae0ab5aa77897a74b3dc7cca9912045557b164ae5cff55caf3cff21216d5c72ab2c965785b31b60fdfd0e10def858662df4c72ccaff33cdaecdde1bed3ab19851433e16e4cd90075715aead2c6d0a9ee65df04c13caada2d9de0f9b97e9d34ef942fcdf2fc281fbf3be7d281fed958bf4ede3678de990bbb387338378e73fe2e53e80f737414960cf5bd78f64c44d549ac85d0799a4330dc7b1342140b25019dbf251170b017659829a3ce49ed541b758c3d02feb91c3649996087699a8e67f524e3358a14819277c237b6f557c13840eaca31c27bd9cbfb497c9ffd466a59a4279ee68cf006aa88256b70e11fd59c3a6bad3188a9bc2507c66b03cba38cab5c4a57cf7c2ed5a565f0e3708521e975859bcf1883ed7810b583140b5a6d809868d1574e7999fdffa0c193ce617abe80e4ec3fd63431aa542da0720e0d0dafcf197fa9da675c77d82030c4d2efd0d411819955e1dabd8cf96941c2fb2b9e3ff969e8384e5c211163e2f7d6d957ab5655c4aa0a43f71e734db1f00c27d0e15753fdbf87dbb87f4b94f86fa8ac3e683fa1fe360ff46216f591dc2ce400861623c1605534e23b01be8cb9df1aff9741e0990270ade7f1a0815a95e157e345513ddf29281ffc518275e5700c940062706a6c304a03627dc229000e45e715c2e14796951cef38176b8e4a8c92dca063bb50ad557c4b2a006779a6a6be7a7612746bc948d677a7fca92b10b1a2df3e9a3bc50f6e48d50ea73f6844e07d563d85d780b2cf1060ccebee2717028b85de0a48ee359c1490a6d7e21207c1ad504813aef458da974535e9a1c296a899f25b38230bdbf967c4d8832973d18c6f998a714e7f4bcf9c4f00596437f1ad45ce9d943d9295411b4ce69b4b76dc67b2e9f8e03d7271088e1f82af28d4832d82d11a175667ba334a22547babac1671d641577fe981b4b632277e314b176b032717c6c766c002374f6a061ed5dbdc2a9ad8d46e3476c02d224e90e429b040968db3d9e21eb9ed1e075e88daea8e211df334db8ed67e98b0185986e6826835f5cbcedd5217c691332afd58d26a9c6ab59fd4e0ab88bcfe5c8a8dcbea17cd01c04a7cc453668fe15575e9765118ef64aa122a38d91893ba34417e6f1338d1d01728244b95471fc1ad99522338b5ba12608f2b732464a2825d3b0b2d96ee8c9a3d2d1e3167e94b3ec487c8dddf95d6da6d03adce0ec4de6826512740f758ded9d26fd01eac6ab404e78ea4d2edd174ed84b15128fb24d60b669869c680993b179e0b715b739ece576d386443b4497cf2339f90ee27c7257139dd1489a0f383cc4746b92138540b134e1c14023bbe3480bcd6224355075029fa7f8dc6273049bec40174307fc48a3b7a376635bf6767723092b594bb3972a7aca5e316f8168f8680b69f7343ce786cdeb00ccb9ddc143462d9cc54f385e936f6681d285a80f74649d09f7c229c11cf6f0a627f6c6b7252f3282dc2159135b91965723af8c6fe5f714e229cb94384c40437b3ec314c38d025fe4df73cecdda4ee8cc1798ec70046b53d3f8f3e7511f80ea8650b8510952358b7a330a5d3b284154c2fc5770ab6887d4c3237f9c3d43cb10b5fce806fadcf5728ad55f62d1d8325485b90b114f877790a8f5b61d95a6210074f41a892a0fcc4fe53950a67f798feb27e5de576e0159c25fad91123a32ed8feb5a7b314c5003be0c12a6fa7afcaaf9d1c7d6673bfd1c68b63c680f79ca14537562901ae0ca171bdfa546de24592c989ba155e83ea850511accceb12f3a5f1cefa5ec2a43d015cd21e1f5cc5733eaf063e4e06b547275b7a9083bbb3882076607e2c0e265d11e112a4fda0996c4ee1bdab56a92cac08d0b6f21fd0cf8e53c067ee4d2586f80c52b619b17327dc34ec6dbe9a7e99722eabe4db901ef37e10cfdbd5a3d42b21c5d69a2ddb07fb636e728c744f134222656dc57bf69735b507f9feb280ee567f50aaa7750b509d8e088e2f6a72f7523fb4e78b7442ad05eecb1c776b84567b3758f6948da3c0046ba7ad2b24d620253cde29e32fbb7e45a6cc20b7804df3bc514d1939e3f99def9bd970003fad0081fe97701c0f7d8523bc875954600a5edb51349327b46eeb56f30349af0de6b24cc5aaace3097df33c49a2db2dcd6e5ecb862e2495ffc49400942d831658ab424660744815f3467357d8c15ac30869fc4b36040d8dbdf59b0bdd82900426956c47e52113554324c23ad4d67657e35abe109eec9b864bad4943772af9a38ee663a50d78c2f2296d7ffb84aae4f9295c7692cdd5086839cf26082a6488dd043024cb616b966616407729bad278e50bd0ba8595158d9b878187dceece6d6c39ab47dcb5e0aedd342e4ed5518230321b9bbf303265b32572a12f7aaacd57ede0fa4b56b1fc962623bc28d20c6a500226a9f6b5588585cd13d59f30c9bc08408d0748aa44de895b61edcd622c4cd4dfceb01cbe5145c02d71f59aa2b6d1dfa4e5212f5752da3f2273164835c9130a88e0a67953398a98f07813d5fad53855497bb2e54ee112442f6f10f8373f6d1c38be1bb01756ac65193062fe2322786e77307eddac2d0c9f71443efd27bd12c9f62d384368e956ef1db9a11707cd9e60306d31dea"}, {0xc7, 0xce, "968f9f402418a90a66a5ad1118622f32a23a113373001bdba294fa8fbf572be28a0d4f709025681dd527e4b63b6e9d3689c80143ba50d669e75cc7fab68511620af365bb95f324fe91896c88ea7561b0a4deffedc8a35316ede4a8ec591a49d8b7aa93d81c5157d1c9896c4012ba79c408ef6c45149ec191ac65af1c3bb0b4438c3bacac16b5dc80aff860e56b27b4b6aaa7c4f42c6125c6348c134601efb897dd3594b393bac56b0597ebcd6332ab3ed663e3f6f10dbb621637dc8bbf6598cc6f5ffd5976f7f469c0a4c38290d0"}, {0x0, 0xd5, "be5ceadbeaed6b86486c596aaba7bccde719f4a3ee0b02443e02f85f02af6c1c7dcdf7509039639e88bbced50ba98cc3daecc0d54c6ca39fe1cf737546a6c8f529f5497fb04fe705e1784de0bc484f6b98d237b37b1c7b70dae86f14030b8b4fb9c655a4bb2e0a7b16025e1beb9eee4637ee9b59c433a0c082cf4abd8311a52c5421d043fc8ac0ac0260e92dac5ff37194b431cf3066736844dfb99cf020447ad6db68086d8b30ead048855626eb963f2a51bdf812e9851e2835b87fa12a63fe476194813a8a9ccba3c9597dcddaaec87db020644b"}, {0xfe, 0x59, "f99a656c5c14a3584926e53468f9278ff05372e3d6864d955c6244bb730919e4b272338df468cdcd009b4152555be25e66f2ce0e57f3c1bf27cff047ef42a5a21785d8c8a20b1ffa0e6ad191fd2976a38655f13357fb26e563"}]}], @icmpv6=@time_exceed={0x3, 0x1, 0x0, 0x0, [0x0, 0x0, 0x0], {0x6, 0x6, "52e66c", 0x2, 0x0, 0x6, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @loopback={0x0, 0x1}, [@hopopts={0x0, 0x2b, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [{0xcb, 0x0, ""}, {0xff, 0x27, "72dbf5d1a1f51a55d826b2041725f3eed3195412b0e5506ccadbaaa137d1c464901cd0e77126e4"}, {0xff, 0x9b, "0a9b27fd6fb50bfc4385dd956fe6263fe5bcdfeeedd9fa7a2726e06eb180d4ad461a8a958f1e943a859212c4f625b6182b0921abda9b90210336522fca543e58a2d1510fff3430f4af1bef6ea0a80ce208b45b61501c9aec56ed0ea96a8f44ca99f6fe6e39a17e83a9804b39b33ac609131d9d75d24c2023e4ee037c5a3644955aae620d5c569fdabf796f687dcb8da94ec42b54164eec33a0c541"}, {0xff, 0x0, ""}, {0xfe, 0x8e, "579a76fdaa6e8b34312a61fb93f163ee27b0c1c0e1ab55fde9e8657b0628c40f17dc67299c0485885292ac29be9a534b28bb198e8d1d9dc8a7a1e4fd7d8481957ce2db2a259256a3f9f467641ac01c08dada99ec7b2b91a6184a12444c641f5209f91c494b2aed353beb97b00da7b24d297c60a0feb4e81086e9845bd15bce3524c896d3ec59802f33501f6aca2c"}]}, @dstopts={0x0, 0x89, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [{0x1, 0x71, "f885a046d868151c6f50c2f0349cc5980e33f7f593f2968ad51098fd1ca6205871f191382fa0f1a07a6d57e569d794c892c5fc493b20626c80021205e40be80557041f87e0f84c3e50fd40882f106b61998f3d2fbf1abe21ffaee800a5aed761a55b7efcc1a802db64e34996e581b42930"}, {0xff, 0xf1, "5c249b123ffcc4e716909053c9a24857afe7d790b0289b98a28bffeb53cecad02f11ebd1fa2e02affff618011af1f24f720d1e4477c7e509e76dbc5f260e82a514852389129542ef34ea474ed0322970debfd058d6f2cb0db229a5924c8f93e2c58fa715cc903e7de904a682973c52a06f667944da28d4ce27ae5c6051a2fcc45079a1bc86f071a623212438bedddc1412510b40282354a4355d15bc17bfd93c010420cf63fafdc8c0aa3d931c91624b95d2531edab216077eb1d64e181e8ecb9bf4947ec5d888149d400b17d3d1b08101ba88a518a8010dbc703029a98cd2e8cf710176da5fdabf9ff1320f80cf1af352"}, {0xff, 0x87, "64335822f81e75513a36a58eeb436dfad2d4f600ae806fe0ce1c5d79b0fead20a3aef13f749578d3cbc5942d83d1dc38e5ae4d602b216f09d1654162abce3da844dd2d6f08403ba5aee48598de3a346dcba44aaf9dd9408a82cdf89eca731995e5db3f34205120a080b2042befb5f518a4acba119eabbf2db8431a5218910f962e641dea887a5b"}, {0xff, 0x77, "f07c700bacdae5d23879a62ba4c64fdc936a9b8a863ef8dae5b6eeac3d866bb9c96dee48a262213712e2351d4d6bfa503038b4575b4b3bcfde8bc8f57252d3c3c29df0030ca7a9e753b29431c881d74607bb65bcaad643029294c166380ac2eb19fa935cb60891bea9423891623513a0f7e9f297e7c501"}, {0x1, 0xea, "f17aaa106cc071fec093d449c3728ccd36a40e39577e096a430ef5586c2f8282e6b327457f0703cda784a73d7dc492b95bfad6ff8f1c601967a5c90c822bcf580a761419c35129bba40585304a6c24843c936539c10e7312645d1929a0fafedb9cc2cabc85e003aae8af7e888cd038f73131da9fc49240f403f77a85e2cebcabfeb3711d021787289848560f39fa887ace6cce4781d7ea2d6bd3e968784cfec9b5b75c91ccc754e3d85671224bc476bf04147937c77c9694daeff1b51ad872dd331afb38ce193d5adaf2888d6f4ef2413a4c7aa892ea4b4d645d4aa5aba42c35ee4f7148ed2add89f569"}, {0xc2, 0xa7, "612d16904f58a819cec86bfaaa465861c5301069b7942f2b03576362eec25709cc2cc017ea71484cd8b162155e67214bfc7c964ef4be148217dfa6d96ee90b27ff5c29523b7733f750107a254c36942f3559b1be2f0e9228e874e300d41f2d5bfa8a639931d88deffd287e4ebfbd5fbbe122517d2f0846e65a5dc7a910dacdf8fa3b7abb3301a759daeef21d04a304bdc65e5e70a0ca26a35158a6a652d88d1040151deb3fc0cc"}, {0xc9, 0x50, "75a0365f5304ac81b544b6d1b6828642b8d78097ad552605e65c3abf188b92746b64f672094069ecbc953b4095019060d9052a214d6c14caddb06bbff7dd1007cbd7e6489bc46a2402f5f8274930821e"}]}, @fragment={0x3b, 0x1, 0x8, 0x68, 0xeba, 0x2, 0x2}], "05db4e30c894c45b1660491d0fef7b66d336ef2ae434aadd8fef5d08ee7ef0f5bf0514aa902fa223438452b3b169eac519723b9bd42215e9ea76"}}}}}, 0x18af)
2017/12/15 23:28:17 executing program 3:
r0 = socket(0x40000000015, 0x5, 0x0)
mmap(&(0x7f0000000000/0xee7000)=nil, 0xee7000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$inet6(0xa, 0x80005, 0x0)
mmap(&(0x7f0000ee7000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ee8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_GET_ASSOC_ID_LIST(r0, 0x84, 0x1d, &(0x7f00003e5000-0x20)={0x7, [0x0, 0x0, 0x0, 0x0, 0x0, <r2=>0x0, 0x0]}, &(0x7f0000ee9000-0x4)=0x20)
mmap(&(0x7f0000ee8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet6_MRT6_DEL_MFC(r1, 0x29, 0xcd, &(0x7f0000ee8000)={{0xa, 0x0, 0x401, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0xf7}, {0xa, 0x0, 0x7fffffff, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x100}, 0x2, [0xfffffffffffffff7, 0x7fffffff, 0xfffffffffffffffb, 0x2, 0x0, 0x3f, 0x9, 0x8000000000ea4c]}, 0x5c)
mmap(&(0x7f0000ee8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ee8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ee8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ee8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ee9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000eea000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6(0xa, 0x80000, 0x200005, &(0x7f0000417000)={0x0, 0x0})
setsockopt$inet_sctp_SCTP_SOCKOPT_BINDX_REM(0xffffffffffffff9c, 0x84, 0x65, &(0x7f0000eea000-0x48)=[@in={0x2, 0x1, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x2, 0xb9e, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x5}, @in6={0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x2}], 0x3)
mmap(&(0x7f0000ee9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$inet6(r0, &(0x7f0000ee9000)={0xa, 0x0, 0x4, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x3f35}, 0x1c)
socket$inet_icmp(0x2, 0x2, 0x1)
mmap(&(0x7f0000eea000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000eea000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
vmsplice(r1, &(0x7f0000eea000)=[{&(0x7f0000eeb000-0x91)="d18289bb0bfcce15b9b532f94aaacab2cbde70be3489ca4423d47f57cfcbe06798af0d9cffe8c94afece1bdd0ee05408779b44a7352d918251df7a56e9368e96fe351e8627c0b9bc7504f2398de53308825abd0691eef63be1c1c8a58713d700e52ad46bd4502a02a2f5b98c354ed1608180e18723a0106fee21a5b85e91bb7083525ca4c71d9b6f8b4c387cdef77c5ccf", 0x91}, {&(0x7f0000136000-0xc3)="3013e9a6d063680d9986f68cfa5f757204ff832c60e1d466283d85dcffda0f3e298d4cc55000f676e8f2ecb9f2d071411edbeaed4ab21003fd082216582b22d54e6e4c1da8efce5e86839d0c0c6544c8249924976b897c61fff989caf76f515a2dac3fea31657503993fd5bffa62f7c0a47b6cac20644f9ef4f7d1cfa0ffc0c8800ace104fe3886c1217ccbbe1d23f0a79a4642e655b057bdd8378856c0268be368f6699c41e29223d02206d8c872a3d7f1a0d05cb957d48d196f58465cce49476f7f8", 0xc3}, {&(0x7f0000ee9000-0x1000)="99fb4e6601ab283faa4b9b57c773eed4a09146590697b3c18eb7a4ed019c113abfdd7d264233431beee355f383f9e4885fc091c3d59280957b4d1ff3a87f8ea980bc0e994126f51db4ba52906477f890beb61bf15aa7ecf441db092af1297cd4deaa2e55d16cc1e2c96b69683f6d6e658d85656444ab15270092b8dfef5a67ec9447266b4d23239b71fd9569f11504adde8ef00750d63161d03aaf32ac716491f84a3e7f3a6d22853ed477f2444e9f52782bcaadef4d4d1934aeb57466974c0544df4e13ad1c4f1d1ab9f19dd17408c159be85e04f9c6af0222faf62ffb076ea856f8f26aad7d085b55081c4590ece462817c4e13b2f0b97de2643f41082cddaa2187f3f70c9b2aa2fad2b5128e7c8f6d6776c0d9b8a766c627fcbf2279254556d509ee259ef60fdbf5cd382fce1f01ab25a22255b6fc4c56cce5dacddb9887b8695de18eb954b3d0b7f4058818eb2972bda7a142b2f1d30fe7682f717774ef875e98a86c6abd2ef97369596603ffadd555f8cb579727d30d0eb1122c6d128dee8e0e2092c614784b24dca35bde6d6c3bca3450a961054368418cef9d2ffae8aa36b894f7dc2db30e4fd9b9106139aa117d44a198e7896b0d1042577e9ba36913e321d9a1e316c290422f96884699554285b387a36836abe693862e06c2ffa8b5e65caea2517c10415ba9a39de61b070744f66fe7704057cc5a082e63a5da70d1ce71226d8fbd386038a47a743af76c4ab72b97f003949bd7840fc0fda94fadfc291593e4ca5041bd191e526f8a26fd7cef2bda14b1725ef635821f2ac1f1ef33b1fe7a94f98eedfd2719af329258b1f710afaabfc800b4335635d7d57c4994b927a407bc0536fc87b99ce496b054cef89bb43911d796c60a63c249633717ababbd385cee9bc8d6c1326df941cab59889e7aa4b89cacf6c2d2d24073b44c8f5680ca3d87318b2d08f0d7a83370ca8f6c40bf5ce3f769b71c0cee288cba83e7784c45291c85505a601c3b6d65e55720c417a397624633586dbcbd01e8c2ec56299b4ec6859d591fdbbcffa253f570ddd91a4f6d1ac15679913ec4ec47ab43f2a8bbb2cfa06b9a8a44513c92c635d9af2038e695027426150735b9fead3f8fb4bba3f986679b5057647669decd83e256549d4772a8dbb796274a81f3e4d76f8df5465d1967781b9dda40e51d7a007a65460bff0122d85a30cd061666ab76f6ff2e37f04a6b74af2a3bf060b585651fbb70c3ff87dc0536bfd148478cf5dcbf5bb940289e9c817e772bbc7abe2177248c2c14ddf8e03eae82fa3a71d2bc4ea526e01d7d928f4de8e90142122bc20267e3bb31fade69b74ebb2c7f73cec0abbfc30555cb46228fc9584e53a18588cbb5603cd8d9fba38e02802b4b2d5e33360d3509a4faadc3c48db80bba87f2bfce99af12cde1585c95f190a4f48bf87452a4fb8144a49eebdd9d875d8fda55f35a45e50a7d05cb5e19024b5c4877b47b816c6bed525680b434e150192a2e228317d4e4dc17db74bceb060ec09cd84a4afd7e6eb4ba683298c09cbbabe1e5bad24688df0244ac5c916c7e98627ac2cb58d7a888812e1d26d91eace134584ebdaa5aedbaaaa0f1704aa4be6ca37ced6f8f1a5fff7d021c3dd4810a5190632d6e84984b9629abfdc9e9b4a66ddb84dd6c6a409617c74cfb8747792c8e546cd565fce1d9c497eb17298f0f592c1f65a09082869cb2763672759fbc261737c64ebd3ac6f7af4dc0995d649cfb29ff8a7838b8fa456f1c105da7e4601c6e94522ac27bdf9095d48348b24970bb508adefbfaa60b5eef30dc0b688ae7c3fa807b9cbe693fe1113c40a188965495ba944cb766107641be314fa62251ae74626797b5dc99d3a2308291e9b9c7e88c4e0cd62b17e56f6dfe7f2bdd6111150ae2cbbf3e2c40bada5889042783f4ee392efa70ce2c651539319bb4144dc82bf7c2e99f0d89013287c8c167c4209b0033b317ee57fcfd3a0fa85ea426580b9afb23e20c5abbf37270b49dc575c5198c18319c12561245f32641dc87c56542055281adc0a2576ce5a5dd22c74d1d60a2a9fa946ad280dbf2e108fc8835829d3e39951d801a25f5a2420c7676bd4e7bd57cf85f7e524399f921b0ef765f35dee21327e6794999b0dc867283f9083ee593e216a90624e711200670b35216d700315abd939d09bdfd0def1a202abb741fd8a2f07af34a5d6a2803e6670787c31760ade40e36d24032c5d77e960b4b4ab1532ea0ad95f6e913a609abd57c3ead7d55a0980993c9eae57e1f7fcb61833af703a5afd656b7b37ee4b65b9d2da31360917697bdd4c6c187aafb43aea0807267cb76530a6153890b6d9d751b17e878547c504cdd4510da13d11eecc03a19e24312a9bcbfbb57a4b872e1256e05f80d85b547c41381cc2958cdd3288589e456d2c09db4fc708cfa2f156d270c40ed273c0c84de52e3287cdbc8ad8ca8edf880275caadd110af0aa3f55a1bf0e92b492d085270d5b8decd7dce58f4b5ced3f48ea854feeacc3e5b4d946f44ebe7f8050b7122136827e6b21c9ebe59e5bca7ba5e7595d7922332d8c4499c06650939f5a3046f0dab6c8b1842361d851a70065eb5f128aac6e866e8a3a7834f38ff3b22faacdc2c3f2d85871c8a33cdd2f1d2f871d39a52b77048e6ff6446e4f5cd7ca0e22bafe262a731521f360f5f29c3eb63967f54c0be4753bd637c9692d9355c3d120dc2ddeeac03ded5cad9e200604d1af60e1cb5c23095cf54980d09e179d9b2af84ef4757cfee7975f93cb6a299688ecfcbfe44234e1ae313f91ff6edd9ad7ac82c982875409fa8d2cb6dd2e8fd06088276fbf9bcca9df26b6ea710c31cf46041b237f8de96bc5e41caf093e858458cd1ee8b6c31fb29f32cb02266cd32253824d3c06fdaf4e1b52997f2416150c9de0f3610cb6a155ff4713aaf3e126904d19e320ef7afa3d59232e86a536dc0ee11a2fad3e4f58080c4a7d4512c8c7063544cd733a7025b81f1e67c1ebb8ec983198c28ce46bc917c06992ce14ef3045f52fb977f639c881c28b7de55f8e79174be9e6c5aa781a75d07f4af6475cfa2302cd9a14da5a41b6b56e9c0f48ff38de9f74254f7cdb74e1a951936559739d45b14f04017ad4f0ecf4427469009cff9bd8922e9efdcbcb34b2667c15ee6898cca9e97e7356a216faa336dc3ad5ad0f5d0c3f78f91c8ce8a79305fbca2cf8467749b50578bc9de1dd84f2f7d5d631464ab28917c5df3f4941107d56fed478447d91de8366acca44ebdbf7009e2bacf5b7782542ebf1036e3b494b6706a730570233d9ed773f5f99cad2db0fc1379ccf1f1174758efd0085eae79878d046b4c990a0b1a056ba99dc45dfe8300d906fb6074f20c91d61e6330b6cf9655c0faa386de8e9aae4c367ea35388955786c6fbaaceadc8917f1196df60d06243e4caf2119717c2fd79f6040cbf9f3e12248ef5d5f0e61e024c148e0b041f0e7d002d7f3ea0e4a41e8126fb4cc5272f5d0438890cccccf88aa2cf1d97e5cea87e2b85c73c9a9fa4d2cc5283ee155a5c671078aa64e0610deca7e3b1852d1dbff46676802d22f2c1ba5d7074d2695efb399ea32fd1727aa97d0d4e0a73ed3ce73c873edcfe275aad80c3a5b3d30d86f112168fe0ecc698e9d67a8e1abf21d1a89ff0d0846cd64faefc472450d68c8760244353601b88b5b49ad130c0979f089c581cd686b15242c97f51ce76c4ace0448820fcb38215ebf9a5719d94b7c77aaeb5679649209899d5cd01b10354f5d0579897224b6d54edc4bb79a65bcea7c4c34495a930007c5cefd7891eb56c6193c8cca7428bd0334a1296e26f8694c167738f4eb0ff592a3dcd41a94e701ffcea9b1d289ef6f2582d1d72654dc867436e54009c074cd86fb86477fe4f5729b0adad0e6713273beb390c0f8a4df9d0e609f9c0ece01aea81ca025b824c0f1cec16dea48459f46a146557b98804be8f67729550c0c8777af662bab11a4c5cc9b81473773647289a875a349d5d70690f0965484ff8a01cab7b5e801f40abedc4f28fa545fac1c66520cdcf30b515aeda06ec3412e3d7bad4b6d90d3054af5e98d6ce85e9cb313b21d9f3cf1773465287cc825021dfa5348caffe12546215ec52773774916026f1b0a2fcc884dd3894c7e9ac40c20bac927eaaf3b548b16332f8fc58c0d6be529b3117c3b5cfb7916d63d5f920dd27e3db95eb4d4f8e407033d49354685c964a11745b36df93601c7f26df83405c07cc15c580f2db59a8d3e11befe8c5dad787a20b762849d389851eb80a12f181c96934be53be2675f59e5ab970142c1e4fd2b61bc0afdc4e701047032bea83eec20398955ec883d8e0735183b686cf998949d53447eefd6d7037d442985082af0cfd73c32a3c2cf0efd15e7e5955dc68c8a3150d1c894b27f2f2211ad2a2840bbc7aeef967f2782cb139f808290225d2b603a92d4f50460a8e5f233bc5bdfb0d18a83f628c877482bd3729601ebd9466b1b0920b2589d49cd28cd51e341fd77561f493c80051e91fa93e0f214f59c094156bb81b246f8e868971fac20188b0edbd4513fd83d133179e3e561a441a7141d9eb75f171d4e2c12be537fb5f4209dff2df6aaa0e20f3d15473617507372bd77e53397aa355ae44f004a298d0a32d5b8417981e68660fd2f24ef1805bd2ef98c4554967f8665518d57c232c20f3a36adf4f3be0599df1758ce03043fdb707bc7dc905e0c26c3af916a8da94f20a975b90c62234fcbc56ebacd76184e0356ef9b224396efc263bb74ee9b234784326c948e38da6c71ee4dd63f21f0d21b1470865b0e5036ebfac00317fb95f8abe52e69b2d8e9f900a016056db28db40493531443132b6bcb124d1f3163622d5670d9d06ce6c0d59a5991538c041c79dd965c2373869b495cf92ae354808061d836ca46bc0307ef4319fd335d81ac18087628c1ef876fdf142f8a65de0c6229c943c50f70e6815ef943954d70837af32d3d379f6e4901da6d6a5d109e93b5b1147f9278410c1e46e58ae5fa8330d9ee1a189ebbe1f48afd22e35b7645fb2c7797cb0078cafeb24b547f495891950c670894049b4e0b39717293161920c170fd73e031f88838e86d3adc5e3dd07c4ca7db7e57ee342d1a86d368fe070bb8f6ba7d1b72852e6d28d1d229c214599933258a46176ac0eff5e46936d64fdbaf53ae7b590190bfe5633cbf2889c7382f36fe64a57ec306061d68e9d6781983b1db13bd2e8322ec8046ce2e9b214b341848f88a1cfd6302bcb7896a4dd9c1769eb247a21e5224d2631c1a71dec43d82d503118335622b814fd8fcf4a3c2e325903e08f8b947b245e5af38565c5a5ed8740d4d0310aee0189099d9fc4210bd1bc166bcf1a49457e9abc906f9fe65f0f091a8ab4d1ec0e834c3be643fcef27c1a3050f27928f3720c21ccc811535c3e5ca6a06e1face89e2f2916d09a809107ac104a0088a5943191f9ac1b81afa85e4f3711e36f3058162b1fe31ec71e2c5e88f90957dab0369867b513a0e6d09723f624beb4e876a8b8d9c5edaf3723b71ad78b5b4260c0f30b5d7ff48fc4818fa452dfee2f1ff621dd201ef18a006ebaf454e17e57a8da5f8b252a55e82d5891458f9b00df69acc9a666836f0831e90f0fe65860cd2af7b18b9cdc292978b72418e26670cd5c13a4ad332399081531e1db3918cdaef6b29f15046b49d99c0aa93095b245429c4bcd8bc671507a4aa47b8cc13aa263bedce11bc7d96634338d969dc2383b44524ec708dd84f525ff23e1b97171f281e118657dec3bb3", 0x1000}, {&(0x7f0000ee8000)="fec7495968a2eae2f97c00e0f79cb93b4bbed06ab2e4bc5885b0880f132fce028b2704773ec045037b93d31986debf47f104e9266301a89a224966c9a8ad19af8e61e7246f786b188cf2b336834147", 0x4f}, {&(0x7f0000216000-0x9b)="567fe9ee73b68c10422e807c48afe3f364d7645c421696f06722da9aaf66c2dd621050eea916098b2b665eac8a70a08959d6ffc893b840b029502c5f9dfe86567dfadc32f8148e554132f4fe69a9197eea134261717b91c0925f4e07ffc83515eb275ea36392976059309ff8190b6f1632547575a61b21d332b014242ce271c50271206eba0b0d3f7f156befb0a509332d80bb3fe3d77e62d0820c", 0x9b}, {&(0x7f0000ee8000)="62a5729a6bfa9f6604c461648f748275b74444e6cdc537a7a5402026df3ccf4112b0552fc8a8b4573c52fa91b0590bd37a61c5d4e91f8a845124ede9c4f2e3f51bd2172eae4499cc17ebcfb0d89aaf374423e9dc5ee1aea5979a2a33e0df53614c63ea783a58bac589e080a384bf91ba0267881e9dcd5daac2c0882859f9e47b0a6b96ed3bc2b27216ca38eae777a64c9369661ac9f928534a92bc34837af7630a0d973049cce096fae85056c1bc3b3ef4a3940cbd013d8c64e90ed5f5055cdeab074dbff070218514eef359dfb76534e2483cc481842160c8eb934dfb8a", 0xde}, {&(0x7f0000ee9000-0xb3)="009bd07109018a415ab4c8e2502faf3ac6d43d7b157168257bd60905d65e243147dcbf00a8db88a6243073ac42dbf10752a6bd0502b598e6a09a7c5c23792756594851169ed4b24e71b6d9247e6c8de03c1ba01823fefbb8debbcb52bccab05c7c8cad5054bd12e8c2b021ff363643e3dbf5b3a46a99f0f9a54122ca1c9150a9a1d61811e32ce298ea28fa2938bc033645e4f43a39b261421bcc615429439fbec00ecf26dc70da90c2134f5d70223b4f6e1180", 0xb3}], 0x7, 0x4)
mmap(&(0x7f0000ee7000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000eeb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TIOCGSID(r1, 0x540f, &(0x7f0000eec000-0x4)=<r3=>0x0)
fcntl$setown(r1, 0x8, r3)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r1, 0x84, 0x75, &(0x7f0000adf000)={r2, @in={{0x2, 0x1, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x80, 0x241, 0x80000001, 0x4f, 0x1c}, &(0x7f0000ee8000-0x4)=0xa0)
mmap(&(0x7f0000eeb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000eeb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_RECVRCVINFO(r1, 0x84, 0x20, &(0x7f0000eec000-0x4)=0x0, &(0x7f0000eeb000)=0x4)
sendto$inet6(r1, &(0x7f0000ee7000)="7e", 0x1, 0xffffffffffffffff, &(0x7f0000ee4000)={0xa, 0x0, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0}, 0x1c)
setsockopt(r0, 0x114, 0xa, &(0x7f000071f000)="2a8e339c", 0x4)
2017/12/15 23:28:17 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f00008a8000-0x78)={0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r0 = openat$kvm(0xffffffffffffff9c, &(0x7f0000505000-0x9)="2f6465762f6b766d00", 0x0, 0x0)
r1 = ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
r2 = ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x0)
ioctl$KVM_SET_USER_MEMORY_REGION(r1, 0x4020ae46, &(0x7f0000d52000)={0x0, 0x3, 0x0, 0x1000, &(0x7f0000005000/0x1000)=nil})
ioctl$DRM_IOCTL_MODE_GETCRTC(0xffffffffffffffff, 0xc06864a1, &(0x7f0000025000)={&(0x7f0000005000)=[0x5], 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x41e2, 0x0, 0x0, 0x0, 0x0, "5c398106405e3048688f9251517d632912a33d99975bad7b15a7a79e44e8d117"}})
r3 = socket$inet_icmp_raw(0x2, 0x3, 0x1)
getsockopt$inet_mtu(r3, 0x0, 0xa, &(0x7f0000e04000)=0x0, &(0x7f0000e86000)=0x4)
ioctl$KVM_SET_SREGS(r2, 0x4138ae84, &(0x7f0000271000)={{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0xd001, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, [0x0, 0x0, 0x0]}, {0x0, 0x0, [0x0, 0x0, 0x0]}, 0x80000015, 0x0, 0x0, 0x0, 0xc, 0x0, 0x0, [0x5, 0x0, 0x0, 0x0]})
ioctl$KVM_TRANSLATE(r2, 0xc018ae85, &(0x7f000001e000)={0x0, 0x4, 0x1, 0x0, 0xa806})
2017/12/15 23:28:17 executing program 4:
mmap(&(0x7f0000000000/0xded000)=nil, 0xded000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6(0xa, 0x3, 0x6)
mmap(&(0x7f0000dee000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendto$inet6(r0, &(0x7f0000def000-0x1)="75", 0x1, 0x4080, &(0x7f0000ded000)={0xa, 0x2, 0x2, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x8}, 0x1c)
mmap(&(0x7f0000ded000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet6_mreq(r0, 0x29, 0x1b, &(0x7f0000720000)={@loopback={0x0, 0x0}, <r1=>0x0}, &(0x7f0000dee000-0x4)=0x14)
ioctl$sock_SIOCGIFINDEX(r0, 0x8933, &(0x7f0000d0a000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, <r2=>r1, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
setsockopt$inet6_mreq(r0, 0x29, 0x1b, &(0x7f0000bb1000)={@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, r2}, 0x14)
setsockopt$inet6_mreq(r0, 0x29, 0x20000001b, &(0x7f0000de5000)={@loopback={0x0, 0x1}, r1}, 0x14)
mmap(&(0x7f0000dee000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000def000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000def000)="2f6465762f7161745f6164665f63746c00", 0x0, 0x0)
ioctl$sock_inet6_SIOCSIFADDR(r0, 0x8916, &(0x7f00000e7000-0x18)={@loopback={0x0, 0x1}, 0x10020000000000, r2})
mmap(&(0x7f0000dee000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000def000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000def000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000df0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000df1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000df1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000df1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
io_setup(0x8, &(0x7f0000df2000-0x8)=0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
openat$selinux_relabel(0xffffffffffffff9c, &(0x7f0000158000)="2f73656c696e75782f72656c6162656c00", 0x2, 0x0)
openat$ptmx(0xffffffffffffff9c, &(0x7f0000001000-0xa)="2f6465762f70746d7800", 0x30000, 0x0)
r4 = perf_event_open(&(0x7f000002f000-0x78)={0x2, 0x78, 0x45, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x1, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f000091e000-0x8)=0x75)
bind$ipx(0xffffffffffffffff, &(0x7f0000076000-0x10)={0x4, 0x0, 0x0, "ae5983000459", 0x0, 0x0}, 0x10)
r5 = dup2(r3, r4)
set_mempolicy(0x3, &(0x7f000095f000)=0xfffffffffffffff9, 0x7)
ioctl$PIO_FONTRESET(r5, 0x4b6d, 0x0)
2017/12/15 23:28:17 executing program 2:
mmap(&(0x7f0000011000/0x3000)=nil, 0x3000, 0x1, 0x32, 0xffffffffffffffff, 0x0)
r0 = userfaultfd(0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$UFFDIO_API(r0, 0xc018aa3f, &(0x7f0000002000)={0xaa, 0x0, 0x0})
ioctl$UFFDIO_REGISTER(r0, 0xc020aa00, &(0x7f0000001000)={{&(0x7f0000011000/0x3000)=nil, 0x3000}, 0x1, 0x0})
fcntl$getown(r0, 0x9)
r1 = socket$inet_tcp(0x2, 0x1, 0x0)
geteuid()
setsockopt$inet_IP_IPSEC_POLICY(r1, 0x0, 0x10, &(0x7f0000013000-0xe8)={{{@in6=@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, @in=@loopback=0x7f000001, 0x3, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0xaad, 0xfffffffffffffffa, 0x7fffffff, 0x8}, {0x400, 0x1, 0x81, 0x5}, 0xffffffffffffffce, 0x7, 0x5, 0x0, 0x90, 0x3}, {{@in=@multicast1=0xe0000001, 0x200, 0x7}, 0x9, @in6=@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x6, 0x0, 0x1, 0x6, 0xf150, 0x100000000, 0x8}}, 0xe8)
r2 = accept4$inet6(0xffffffffffffff9c, &(0x7f0000002000-0x1c)={0x0, 0x0, 0x0, @loopback={0x0, 0x0}, 0x0}, &(0x7f0000002000)=0x1c, 0x80000)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_SOCKOPT_CONNECTX3(0xffffffffffffff9c, 0x84, 0x6f, &(0x7f0000002000-0x10)={<r3=>0x0, 0xc0, &(0x7f0000012000-0xc0)=[@in={0x2, 0x3, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x0, 0x5, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x80}, @in={0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x2, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0x3, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0xda4d}, @in={0x2, 0x3, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x3, @rand_addr=0x4d, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0x6eb5, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x8}, @in6={0xa, 0x0, 0x20, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x2b9800000}]}, &(0x7f0000003000)=0x10)
setsockopt$inet_sctp6_SCTP_PEER_ADDR_THLDS(r2, 0x84, 0x1f, &(0x7f0000013000-0x98)={r3, @in={{0x2, 0x1, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x2b2, 0x6}, 0x98)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000011000)="2e2f66696c653000", 0x80)
setsockopt$inet_msfilter(r1, 0x0, 0x29, &(0x7f0000003000)={@multicast2=0xe0000002, @multicast1=0xe0000001, 0x1, 0x9, [@multicast1=0xe0000001, @rand_addr=0xa654, @multicast2=0xe0000002, @broadcast=0xffffffff, @rand_addr=0x8, @loopback=0x7f000001, @rand_addr=0x0, @loopback=0x7f000001, @multicast2=0xe0000002]}, 0x34)
ioctl$UFFDIO_ZEROPAGE(r0, 0x8010aa02, &(0x7f0000000000)={&(0x7f0000011000/0x3000)=nil, 0x3000})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x2, 0x32, 0xffffffffffffffff, 0x0)
unshare(0x2000)
clone(0x0, &(0x7f0000b26000)="", &(0x7f0000eaa000-0x4)=0x0, &(0x7f0000bf3000-0x4)=0x0, &(0x7f00003b9000-0xcd)="")
sigaltstack(&(0x7f000023d000/0x1000)=nil, &(0x7f0000cf2000)=0x0)
ioctl$UFFDIO_ZEROPAGE(r0, 0x8010aa02, &(0x7f000054c000-0x10)={&(0x7f0000011000/0x3000)=nil, 0x3000})
getsockopt$inet_buf(r1, 0x0, 0x2000000000000d, &(0x7f0000a9c000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f000004c000-0x4)=0x9a)
2017/12/15 23:28:17 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6(0xa, 0x0, 0x0)
bind$inet6(r0, &(0x7f0000710000-0x1d)={0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
setsockopt$sock_int(r0, 0x1, 0x2f, &(0x7f000058d000+0xf54)=0x81, 0x4)
connect$inet6(r0, &(0x7f0000e92000-0x1c)={0xa, 0x0, 0x7, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x80000000003}, 0x1c)
r1 = socket$inet6(0xa, 0x2, 0x0)
setsockopt$sock_int(r1, 0x1, 0x12, &(0x7f0000453000-0x4)=0x20, 0x4)
bind$inet6(r1, &(0x7f0000f5e000-0x1c)={0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0x0}, 0x1c)
r2 = socket$inet6(0xa, 0x2, 0x0)
bind$inet6(r2, &(0x7f0000839000-0x1c)={0xa, 0x0, 0x0, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0xffffffffffffffff}, 0x1c)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = socket$alg(0x26, 0x5, 0x0)
ioctl$sock_inet6_tcp_SIOCATMARK(0xffffffffffffffff, 0x8905, &(0x7f0000459000-0x4)=0x0)
bind$alg(r3, &(0x7f0000a97000-0x58)={0x26, "6165616400000000000000000000", 0x3, 0x0, "73657169762865636861696e697628726663343130362867636d2861657329292929000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r3, 0x117, 0x1, &(0x7f00003cc000-0x14)="72733976d8030a4ae9fffffff80000000184ce10", 0x14)
ioctl$sock_inet_SIOCSIFDSTADDR(0xffffffffffffffff, 0x8918, &(0x7f00003e8000-0x20)={@generic="4572e51a8fcf4b5fd0f0d86d55cf97a5", @ifru_flags=0x9600})
r4 = socket$bt_cmtp(0x1f, 0x3, 0x5)
setsockopt$bt_BT_RCVMTU(r4, 0x112, 0xd, &(0x7f0000817000-0x2)=0xfffffffffffffff8, 0x2)
r5 = accept$alg(r3, 0x0, 0x0)
sendmmsg$alg(r5, &(0x7f0000e5b000)=[{0x0, 0x0, &(0x7f0000bbe000)=[{&(0x7f000038f000)="e56b89762f03abd25ab9aa156c91f18dc3f42378a38d58a3", 0x18}], 0x1, &(0x7f00003aa000)=[@op={0x18, 0x117, 0x3, 0x1}], 0x18, 0x0}, {0x0, 0x0, &(0x7f0000523000)=[], 0x0, &(0x7f0000e43000)=[], 0x0, 0x0}, {0x0, 0x0, &(0x7f00003a3000-0x90)=[], 0x0, &(0x7f0000461000-0x10d8)=[], 0x0, 0x0}], 0x3, 0x0)
ioctl$sock_bt_cmtp_CMTPGETCONNINFO(r4, 0x800443d3, &(0x7f000035b000-0x14)={{0x4, 0x936, 0x555fe2a0, 0x10001, 0x100, 0x7fff}, 0x5, 0x3, 0x68})
syz_emit_ethernet(0x81, &(0x7f0000588000)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [], {{0x890d, @x25={0x1, 0x400, 0x27, "2e4f0b1312671a9fb0d54de868dda01e96b1b11b556f6409241c002df7368afeb8ac89ccaca830dd76c15b6b52eef1d325552bb1dcfe5c50539b74c94e2207e5a30936cf7e29060738f3ea56c34af230d178c3c4d70844196e2293aa7911654fd1dd15e99c629af92b475855b05cd490"}}}}, &(0x7f000026f000)={0x1, 0x2, [0x64a, 0x908]})
socketpair(0x2, 0x3, 0x8000000007, &(0x7f00000a1000-0x8)={0x0, <r6=>0x0})
ioctl$DRM_IOCTL_AGP_ALLOC(0xffffffffffffff9c, 0xc0206434, &(0x7f0000019000)={0x6, <r7=>0x0, 0x1, 0xfad})
ioctl$DRM_IOCTL_AGP_UNBIND(r6, 0x40106437, &(0x7f00003cb000-0x10)={r7, 0x400005a4})
setsockopt$bt_l2cap_L2CAP_LM(r6, 0x6, 0x3, &(0x7f0000076000-0x4)=0x40, 0x4)
recvmsg(r5, &(0x7f000053a000-0x38)={&(0x7f0000276000)=@sco={0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, 0x8, &(0x7f00007ba000)=[{&(0x7f0000ff9000)="00000000000000000000000000000000000000000000000000000000", 0x1c}, {&(0x7f0000715000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfc}, {&(0x7f0000a20000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa3}], 0x3, &(0x7f00007f2000)="", 0x0, 0x0}, 0x0)
setsockopt$bt_BT_FLUSHABLE(r4, 0x112, 0x8, &(0x7f00003ea000)=0x7ff, 0x4)
bind$inet6(r1, &(0x7f00005b7000)={0xa, 0x0, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x5}, 0x1c)
socket$inet_tcp(0x2, 0x1, 0x0)
2017/12/15 23:28:17 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xdc4000)=nil, 0xdc4000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = dup3(r0, r0, 0x80000)
openat$vcs(0xffffffffffffff9c, &(0x7f0000001000-0x9)="2f6465762f76637300", 0xa0080, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
pkey_alloc(0x0, 0x1)
mkdir(&(0x7f00007ac000-0x8)="2e2f66696c653000", 0x80)
mount(&(0x7f0000045000)="2e2f66696c653000", &(0x7f0000320000)="2e2f66696c653000", &(0x7f00007de000-0x5)="6264657600", 0x0, &(0x7f00008bf000-0x1)="13")
r2 = geteuid()
stat(&(0x7f0000221000-0x8)="2e2f66696c653000", &(0x7f0000c11000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
lchown(&(0x7f0000fbb000)="2e2f66696c653000", r2, 0x0)
mknod(&(0x7f0000fbd000-0xe)="2e2f66696c65302f66696c653000", 0x40001002, 0x4)
rename(&(0x7f0000652000-0xe)="2e2f66696c653000", &(0x7f0000000000)="2e2f66696c653100")
r3 = memfd_create(&(0x7f0000ee7000-0xc)="2d2d76626f786e6574302e00", 0x0)
r4 = syz_open_dev$sndseq(&(0x7f0000951000)="2f6465762f736e642f73657100", 0x0, 0x200008000020002)
r5 = dup2(r4, r3)
connect$unix(r1, &(0x7f0000d6c000)=@abs={0x0, 0x0, 0x0}, 0x8)
socket$nfc_raw(0x27, 0x3, 0x0)
ioctl$SNDRV_SEQ_IOCTL_CREATE_QUEUE(r4, 0xc08c5332, &(0x7f0000fbf000-0x8c)={0xfffffdfffffffffd, 0x6, 0x6, "71756575650000005d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f3ffffffffffffff0000", 0x3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl(r5, 0x8000, &(0x7f0000fc0000-0x6f)="4a46e8f7a007214021b05f299594c46b67f48a4fff25ac5627a44e1089b88cee750baa85f3710a1d9115dc01d36f53b303fcf6576d2de7f56e411cc43bddcae1a0aec2049240c02303dc26bb51bba405007530a3f82daaeab37a99e9eef84a6c1f797cfd125ca909672faad4286d8a")
clock_gettime(0x4, &(0x7f0000fbd000)={0x0, <r6=>0x0})
ioctl$sock_inet_SIOCSIFFLAGS(r3, 0x8914, &(0x7f00003d5000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_flags=0x902})
write$sndseq(r3, &(0x7f0000040000)=[{0x9, 0x100000001, 0x0, 0x0, @tick=0x5da36b38, {0x0, 0x0}, {0x0, 0x0}, @addr={0x0, 0xffffffffffffffff}}, {0xd, 0x0, 0x6, 0x3ff, @tick=0xa48b, {0xff, 0x0}, {0x0, 0x0}, @queue={0x95c, {0xc137, 0x0}}}, {0x101, 0x7fff, 0x81, 0x4, @time={0x0, 0x0}, {0xffffffffffffffff, 0xfffffffffffffff9}, {0xa55, 0x3}, @result={0xcdd7, 0x80000001}}, {0x4, 0x2, 0x0, 0x1, @tick=0xc8, {0x100, 0x4}, {0x0, 0x4}, @time=@tick=0x8}, {0x3, 0x6, 0x1, 0x100000000, @time={0x0, 0x989680}, {0xde58, 0x6}, {0xffc, 0x81}, @note={0x0, 0x3b, 0x5, 0x1, 0x7}}, {0x2, 0xffffffff80000000, 0x4, 0x9, @tick=0x100000001, {0xe68, 0x48a}, {0x8000, 0x19}, @time=@time={0x0, 0x0}}, {0xfffffffffffffffe, 0x5, 0x795, 0x9dc, @time={0x0, 0x0}, {0xb10, 0x100}, {0x4, 0x1ef7}, @result={0x80000000, 0x1}}, {0x10002, 0x3, 0x111ecf4c, 0x7fff, @time={0x0, r6}, {0x9896, 0x7f6}, {0x9, 0x9}, @queue={0x1, {0x0, 0x401}}}, {0xa5, 0x1bd7, 0x8, 0x7, @time={0x0, 0x989680}, {0x401, 0x9}, {0xff, 0x0}, @raw8={"1097030f0d49a70100f6bc0b"}}], 0x1b0)
connect(r5, &(0x7f00005ec000)=@generic={0x4, "5537381f551f99c10f623761899e18a77641c43d728f457631571f9424eaa62d1c6b7b2df190c74c386f964aad302201012888f6628ea07238c73094ae83be7e506cd9871fc021a007b308158a49e6a2a34a837d55ad040b2f4bf8f63566c1c692e72ddc5beffd80520cb89fcbddef421a78c8c804cbe96e79f4c3a317c1"}, 0x80)
ioctl$SNDRV_SEQ_IOCTL_REMOVE_EVENTS(r5, 0x4040534e, &(0x7f0000045000)={0x5f, @tick=0xffffffff, 0x80000001, {0x200000000a, 0x80000000001ff}, 0x12, 0xfffffffffffffffe, 0x4, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6_dccp(0xa, 0x6, 0x0, &(0x7f0000dd0000)={0x0, 0x0})
socket$inet6(0xa, 0x4, 0xe67)
2017/12/15 23:28:17 executing program 5:
mmap(&(0x7f0000000000/0xfb9000)=nil, 0xfb9000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_sctp(0x2, 0x5, 0x84)
pread64(r0, &(0x7f000029a000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000, 0x0)
setsockopt$inet_sctp_SCTP_SOCKOPT_CONNECTX(r0, 0x84, 0x6e, &(0x7f0000000000)=[@in={0x2, 0x3, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x3, 0x7fffffff, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x3}, @in={0x2, 0x0, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x3, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}], 0x4)
r1 = socket(0x4000000000000a, 0x803, 0x2)
mmap(&(0x7f0000fb9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$netlink_NETLINK_DROP_MEMBERSHIP(r1, 0x10e, 0x2, &(0x7f0000fb9000)=0x10000, 0x4)
sendmsg$netrom(r1, &(0x7f0000fb8000)={&(0x7f00000f2000-0x10)=@ax25={0x3, {"add3abd859383f"}, 0x9}, 0x10, &(0x7f0000fb9000-0x30)=[{&(0x7f0000fb8000)="f218ab6767b19bef598ca5267c70a5744f73cf26b9ffe4752caad6d2cf63a4e49095ac5dbfcfbaf9b53cef539f373132b5f7f17afb5e149af0ebd177fd1e92f6642265c6edf0a1a4d9491ce67cc9cce6dbe062901afb783b866e2abddcb99989794f30c3e255997d875fe6cec3104d6ddf2c8ab3e723d31e6d307b95b22636f3052559848c831b502f3205bcbea5e38fa5aca9dcac9d91f67f8967488d3709c7aa57e4425527cb", 0xa7}, {&(0x7f0000eb3000-0x84)="11e7ade2c81178c3a0bb28e978f39d8dbed2c0806fb397ea2bca15af6bdba479865c7cf068680a5388c3d6380245d17c4e9b5997a43c4d5d34410f0959a338d173eed99be3073a89a56a73b4e909b585cd703521bbec72fc20d4d32aafef2246cb0c3a84d14fdeac65b3a4f2a1135c7de34185b77a527d65cddb1e0035b8734e715768e6", 0x84}, {&(0x7f00005f9000-0x1000)="97984a65a71792a27afa808bca4f6bbc74f3c944d30d6b70e94a0829e14a8c0b1a62713ce283057493d2f95a342b679a4b0389377f1125f685903ac95ceceed5be79fbfd26631f85797c213432e54ea573a68ad553b6dc2103f65d65516e48e32ba9e01c34c39942b28a4bd7cfcda356dbb39897fc1a947ee6c780205afc5f94d8cdccfe139b10fe7394e3b54b9779f03402c76c51708afcd7a9568fda24b7808559b349b1acbce023446145c5a923972cf943e16ee52481f8d776689eaff7635c5f33fb7e4b3cc8f67c1d187a05f05baf5e955e0f3e67588ac1b77963a04f252c7d7180544f803792f3b4c0815500b23ce3e44cf41d621d01db9e9ffd7355bbb17a8fa1a74aeed4c265e72d889f6df37121e771285bfbdb6b27cd2b632387aa9b6190e957749642db913d21d549b13ea709bbfde208ff751908226d295ae5677fc02f340d52e1899b6920cf75b9acbd90b82f37ec790256b6ab321925ace0acb90d9775a7cbb4fbb4f95a7fca175b3885cf822a391b3f620f99662b395fe89fce173a06c2baf64e187041d0511ddfb52d56542ce4e15e204ce0730f3ffe7e9cc3536ff8e7e723b133caaf7ce95fb03b9cd688e64f6d6b62c4b2ea0eefa156c0282279cd48b7735b8bbf81ce4ce0041f2efa3c07809032e9abbf8e95dc1bc01845275233eccd1128d8fa744f648f6b64d4975815f9dbabfc27fa5cbe140a19d7eb3e29b6c942b9bcb4a618ecfc31b564c40a1dc8721b38c870a56d21b72d09e1a85b2b9cf7f5cb31fc2614402884f75bd54b51b3302281d1c6ace01bce3bfc5631491c177bc549852d935a9fd2f7360467b479a3837ea9496f8553404180ed4356db1ed64f7f1b7d513737fc69906955a082516a82133b9e45bc233cca5723759af60b65ad3e8fd33509f39a57a1f934a3584eba18e8b17bde53399dbd3ff39e2e29537a8f0467d79d6e14a6f58da3f2434e28c3afc40826a8902f00eb3142dbe47cf3bda9e9b01eed0f89b9dc93f83174c1ba76e7dd365a230ce0dccbac75ddecfaf950a2908fa57d8e74d92d550bf51b0c93a4a377c9e8d12f894f731c10f0be88e109c2b6bbcf418940216837a145d12e1f979bedc4b1942b0eb69cf49512c3f7069c13aee32f458ebde827a888b8403eba3ada5f4d56f2b3a078e177a924d846cba602b05913c47b6d6270ceed393916961135dee34b60cb32581327b2e87ef75621ed71536baf57b3dbe0ae735f643d4d46324a5a87a51e629a20f03b05b7306ca8df1955172f82def8857b96ca7e56f4ed6dadb4a8dc57771df53d0878f4d28c5c0cf9714ce5ff22af5769fd84565d6140f4925b1d82cf873953d53a5dffdac3d08f63bfbd1f0310fa184769c8aa67a72cd9e94cc0b7533bc318c433c748aec77c30de2b4eca64dc31faaa61a2334127dd3100b1db86f19db3d8acf1cf488a057b8bc628fdb281ac73ae2458acc7476e31772e197f822c982fc3bef8ca684bfc684e0f494f7115f95a97a013c30c00ff862d45988eeed3239903e8c0cde09271a608ec872550670205084cdc7ebb305bc582aeac810e2139816c89a6d87763cc5f54ee9a97f178b82f8ac88c77f39bbfc83c2539c4111d796a08ea901cba90da453bfd7c57aeb95f8a1f184c105108e39ccb61ea1cc4109eac3482d2c7149b6d6fb3b732e23b37f749142c41702d6e7510dbb643e1d13840642f45ac535f7434b0bf0f10ac54baccf0cabc2bdae0514446e3ca01057a433fda513cbd04bfb6cc556b68bd82caaaed936512f8d61f9769df64e25909a104029a71ed4890cc87bcb7e299d84e499b9792417c9e341d714eb43f94edd18ee28197a4f1ff3d29ba04181a284c068f0ce574c3bbf06d8b22c1e34584696d5b51f2c4070c7e00be0550a217bcea151d62ad50ee0fdddbda7436151dd2d45955dab67622183d9a069d3a1e7c3d7dee0b4e42a2b90ecf780797fa684d189f2ec3002f54241fda4f6ff938d27720557e52cf06a11391a3d05b74cbb5a488546e0b4e324002c93c24571cafe64c2575af9731730f7a21bb0cddaaada24d970393ae6e900a71c714bf67838f63812e22f33985142013a3a41191adbb66fb1997b5cbb754ede106c1e20b4cfa245f38e13088583cc456e7073b5ab4a43a02201199d941c7e3d06e8beda8acf375d9d52e3f09c4b35a036e729fee2dc7b0493eb65b1ed1d5ea687bd99d0ee141dd17ff510dd49fdc9ade0eb9aaa4d0e7de0166e80359cbcffe38f683391c529ef2c171d334d23882ec6f69afb142e5e382a2c8987107bb1686fde0de2666dff0c1dc46cf87da014d659a7ac404e175ceb14c95bdff1aa37e0660b2d838c30300497796681044bc5bc7f538e3e6506e8065170faf435275680a89d35f8362cd1bd3a12caea4d60e543a8dde47f855b3e23194f9a783d0d0b3e09921fa326fa9090191e82ff50c669e1ad3fd3e075b264ccc88bbf23311b2f01d0aa3c05fa26cf2f6647770456f2b4274062e1712eaeee9c5854a54a6412604704728af1bd7c82358f235034dd1d18bdc0f11deb85b1ebcce2b1db700784928e39fb0c2d21422dd86c05aea0b15ebc29fa69456baee532724a81805cb5013792ed79b12796170255347bee8b3ae475f351131cca3d0853203d41b7b7438d4d2f3dab8f97b39fe9cc51b7b17e10c9e4e57029b15fc98b5933055ca175d6a5c99f1569ab8edbfe68de9d9999c4d0b001841c2511f645a84e745cee103c462378162d47339a1eba11098220225cda600c6571967af39f898e238a57686037f8d847652ca784d958fd15f6f11e7b3d113726dee689902ca6a11571a3017f2f63cbbc33aad4dad0193f9c4edde394402175403aeae731bd46d21977fb8e67b94a26c443d43526e2f9ad436ebfaf9ebd7b4357f9202348dc5856b71eff5c9b1bc61dcfca323d0463ceb813efd4d10f0868c693b8743c1547fcf88d9a0570fb6c26ad9a4a668766106e878875d8a498d248cd8d016ded76d2d06aa28745858c2f4762b2fa39c1f754fc4fb0cd9035a8439eb2fd6624c57e7a900afe603d2d636b3e189b6d2dc3824ded993ab2fa7d7ebfc47f778ff10455cbea6c48e50c29cf618dbff5137458a3bb7f976a8b7a115d5fce524f0cb84257b86cf23b361ba732d88bc86c338f88e1619e85abf7f74fe6005ccf21ff117cf5ac264401ef52c1102564f1ad31fc7a05c05cab489ed83415caf5103b1fc1d939d1b82f910d39d218cba6b21ddd70d32d6e8ef41c3c32e5dbc89e8dcf923843ca82112cb6930927dcabc8b94cea08c35a436cf86fc5a1febd5185b7caffae12b2c6d89b80af9f08122a376a974de47a264c071c6ec50119d7fe105dedfd2bd7b614ff0aefdd2b2308ab428fc1ff8c6faaf35515e9c5d77a62a947f523a4182557b940c9327299004d3cd61cfce86251e6c0a86876f40eeddec217581304a2896277706fe3cc3357327ff7675ce14128aa6cde3fa0b4d39754b3e7810108204e85bc1e9fc4bc432164daacfd9fea8c4ff5e7a23943f2f789b80cbd613885e4df526ccad18b08996d268bd9ebe49b9a9048e404f4e1ab7917a1d036e90dc253f2bfbe0ed10826af147a49330b3d82535be7f3f2c1a1b13f96ac88c81c33b4486472a6fcb28e6394932dc4a0e5f2fc49cd2d237f2723a7b17454fde2ff88337398fff0e4826a12d7211e111d41eb65d478e2dc0664da6e833358439f7795822526376d1e20846a5368c31214d4a1b23252babfb242799f8cb9e083fe9a78f222d53bf35a1c34e922729628b717cf65e12c89266164b91743a818a5f369d561148799e3b925f27c750a5a056fa192799c18a9d10ef8d5cc60cc297b4d8468cacec7fb7ad780b6f64a6fc6ac169a7b3ada179381fbcf5d54f1fb64f39d9a53b4b00aca95f290a981105af4f62558de6659771d3ff5f5848586182cfafb416be5afe06c33504de9edd548892f802c0c821af7be2f55795c72480c74389b8217f5c4bb1454f62e07bd58726f2841344fc33d29d6013c98ba75b38aa37a93d2d504693f69436781167678c1a9c9ef803184ad89695c9c2d214246fcec13215851bd3f1e5aaafb97721430ac0f0ef5bd5506555284b6612a5cc7402f3161afe476da05fcd4cbec78e572c76965a93d4b8471c57d1898fbb9d1d6e7efc41be072176d78a3e351b1f214481f65c250009ab7c9eb4ac390f027fb03865cf87a534daece41422d98dbfed5f0ef79776bfb1f83f52a69bb5080b1569e60bd091ea14a4e935031d0e45b2e31f6653f283b108a82b606a6cb630e6994a87eff1d0c4e385d80ffbbfe9d9fe9b1b7dcb88814625832bd1e4a5d3a630102bd7539fc60b091342cd0a0a3cccf1a35afa3bcd721362b6ca435caa2b69e4a20ff47107f2c9989ba34928f8690e2b7a143e2ea068d66786e7f94b2236e48492c8f9e1aa1d0b2fd4285775d37682d9443c066b1362f1e6edab50927124d7c9d48a1badd34c71b39619d7ac7f97178ef9df15a6de3e24792d0b097231043f3001096f71c574898c57f081ab56dfd2b65dcb907f600e15ddbe7ebd66b7fe9c68c50a78b77a961d7a61cece022b7e1b174825e7c597f1d5ef50fe1110c01efeb459e62bacffd66066401a6ca566d056cc5aa890106e5b02660a03fbfe95832490435859e7dd51ba4e5fba74da08a849900e619a2c9047cbde0a1e999998cfd9675a622840623d5a8cb12f17509c524cb29f75d1d4bd6130b2bdc1e446432af8c2c7f279b08a064cb89e02cbf0050955737cb415a3c06947567f003bbbfcf8c86674d275c0fd4f1ced26e1e5000e583bc3236f1c8174a220cbf8f6d7d258c8ce18a169bdceaf9c1a136549f602d8c087b845aa1142a0575fb6afcaec740d9261a2365417c0de877b52ca749fff07687d50986996890e646c8da4a1c8174020a1a4cb823a5f4093249af8926fa21166b81389081438a76af1f2cbc623f74e9191c1e3bd27dadbb1ef1c5df05ddf5c7fe58c0c855cc20793aa19ae5c713e2ff68cf4eac9268d512c6323dce28e3934b0a345d5c54eb60dde5b66cafe6e211318aac94046c66ab4367ca6cbef32bc73268fc7c66959bfb622ee52cc03d6b306a45e611b8680a165a775d59bf3c4015488dcdce12e466b343c0ff4e4ff6d37a735f0eebe04a40774854dcd2e8ffcfaa5d5f76482f19efe4243749f18f7c58bd4b5884beefbc2bc487fac330ec501e20e24ba72729ba48a41c2ffd1dda9a6a02d41a429c7391b193469f0fb59f9f2e5dd1bbedcb77482b828b4ef0239c4bfc236eced1019924a40a7199341b5fc179c8ec2f9e6e1d2ed4dc2327911454825e0c7e8308c9da4b6e884191d880ca273a38f65208aa1f9630619002b1c2866638fe39cafe7957bf72236912001092f07c71d01adeac07a48879c660922a19a484538d018684f4d7cc94c2a58bc3499009a9f2f30f3ef270b5d5b8925cda4dcfff3da72dbe8adf215599617892e6c39a83d845d71b90aac96eefd670e7fd897f15985791920343b1523bdef8a6fae59d976e0f1c5fe505931344f3f6458ebc72894ca7e3c51c6ab31003c9cd026cf2f4861dd206727c0c0cf801e783269f5f30c440c07e78265eb4c2f918d7b9dd4a89aabaa83b521dedddddc837cbf70fc94b4efdea68232ae2d35800845a115e31fc4ce1a71af10803614bfe3c7e58c378dce6f655dda9b509ea09deadd46de5b3c4afda04ea07537afe6563fe4cfcc52f9178036f00856dfb8ba418d9453f590c7666af861ec48502c040586a31ec5a3d24748e7bf", 0x1000}], 0x3, 0x0, 0x0, 0x80}, 0x40000)
socketpair$inet_icmp(0x2, 0x2, 0x1, &(0x7f00002b0000-0x8)={<r2=>0x0, 0x0})
getsockopt$inet_sctp_SCTP_PEER_ADDR_THLDS(r0, 0x84, 0x1f, &(0x7f0000f65000)={<r3=>0x0, @in={{0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x5, 0x0}, &(0x7f0000ef1000)=0x98)
mmap(&(0x7f0000fb9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fb9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fba000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fbb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fbc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendto$inet6(r1, &(0x7f0000fbb000-0xfd)="4708421709a3e24e1ac8411ca2bad00382304f9c8e3e135fb9fc1381f48d3276eaff5304128ee22de4e8f99ab3986c19bd47267ba7b655b3aa510df11cea2f9036108142806d145878ce93dc7c890d71aef8de3e621de6cba5f1687581ebe7678e2a533884d2a0a5fe35fbcd8dbf8f26f9925fe5cc81c435b2cd66ca6f8a5d19bc3f7c4ce2682cec53c8d52f3393c247f8123b9f298eaffdcfd344970a21344208b2e7802b91b856780e65868528b985807f2634c92a5ef35e0b2ab81eb3af1e2309e251001b7493dbacb6a177df5cc439cea5a7063cb9f429c8572ae3aee03540dc8fc4cd05947d1f77666c2bfbf80aeedcd269bfb93604014a13aa5f", 0xfd, 0x805, &(0x7f0000fbd000-0x1c)={0xa, 0x2, 0x3, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x4000001}, 0x1c)
mmap(&(0x7f0000fb9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_LOCAL_AUTH_CHUNKS(r1, 0x84, 0x1b, &(0x7f00001c6000-0xc8)={r3, 0xbe, "68929a29eaa9556e155299032a4f1d630d9ce08c3fbcb3f448d8272788dc012d677f827e039510a265a47b333cc1e3eae523214375afd621d1e16f19e28e04a427d31ec8516f742e77d9533c23da6392c7270f43f1bc4da63692125de9e18d051e4be9988b37ab0b6d318ceda61dd5d06cc7ded22572089574b41db5ee1a39192ada87b7cd47e280dbc08a98b4f69cc181695a8f7715a971449419c8fb9b4564f043d5534d88a610a6dcad532be7d478001e5ad32c1edf5cc3fae758acd7"}, &(0x7f0000fb9000)=0xc8)
mmap(&(0x7f0000fb9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
write(r2, &(0x7f00008ce000-0x21)="4153df04406000c351455c4323cae111ae524b296b71401361d83aaf075510b16c", 0x21)
getsockopt$inet_sctp_SCTP_INITMSG(r0, 0x84, 0x2, &(0x7f0000936000-0x8)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000726000-0x4)=0x8)
mmap(&(0x7f0000fba000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fbb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fbb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendto$inet6(r1, &(0x7f00007dc000-0x5f)="5f4090fbea3814411363ea149b593079953d9ffe8f6933af324f731ca3b64330fdc4e2f06400077513f49feca7dda7846e9ba56a7c3729aca7081f297b0dbbaa9f9c8c02f6684d4af41d88d121c876ad19c1d31d4ab4ab9c305a4d70643750", 0x5f, 0x40003, 0x0, 0x0)
sendmsg$nfc_llcp(r1, &(0x7f0000129000-0x38)={&(0x7f0000fb8000)={0x27, 0x5, 0x0, 0x0, 0x8, 0x6, "c149e94408a35fb4524724a8b7e1ee3581e65062b5c09909286a8eab68757444e3825078415fd94d1b036e6855df7334d8e9ebbd3d08263c5325c03c75cd69", 0x5}, 0x60, &(0x7f0000fb9000-0x40)=[{&(0x7f0000fb8000)="4c30c8ba32f8ceb5564538fe08273a92f6282ca8aa9c66780bd137297a2d9c1fa77d72b0098a3f3f0788caf6eba83a8336f58aef498340050a35e79317adaeed9a157e106a7cb8763282fff4b7840f3671", 0x51}, {&(0x7f0000fb8000)="00000002a3e73ede06e4e1730000000000000000b82f906b27b3b5bd37f74ee1aea8ad", 0x23}, {&(0x7f0000d2e000-0x95)="f70e903ca8863e78c7c67619316d1b2246a8beb491d8b1ed88f96803a392f848c1731eaf4fa6fe3b7028602511e880fb5a458b6d5af5e20104934f2dd92b4a53557cd0eb98bfae61d026df683e3df4fba1e4b15992be268c267eb9d791655a7419634119d418050db89aa3595b3dba9b097f7935477ba571dc101b568b21551ecf9eface7ee919715848680456ad35dc84b61a2552", 0x95}, {&(0x7f0000631000)="a950a4e4b3dd9b3cbf9f1a80cbaef90f6f68840ff3d94879bfbd3fa9ded3dcb8b1e972b1e5bd3cda7c67e1193e17dc86c34d2d09cd95b30c83532046e5d865becc3cc4a39333b8c868f6f17391b9804769caf6cd62e374776261a23a6a629ed24980d2c786224e4125b51029e0c0a59da30aba6bba2075dbf0815a46605ef5cc8eed104029c445bd4ed012defa41cdd0d96cd4", 0x93}], 0x4, &(0x7f00002b4000-0xf0)={0xf0, 0x11f, 0x2b, "55e50dfb265a10135200f6dca7e2e4ca8382c833e09ef5bd477856a077754ae347c049ea9479e109f1e2b34b7cf331efb5bf7094f4686b9fc5f9908cd83effb99cd9c7dbef97371f9327d2733a59f2d1325b7a5f2a4e40f13d7fe36b6d6d77c00d06a0de148fa106997476a4652a2dc5e840223df3f2b9fd5052b29595c32ca7febd4711919ad52fefede3782ea2271e8e0c80bbfcbfa5710843e6ff3d4b0e533eb38dbb04043acccbcdc6aff1959e9b10f7328b18a1f371fbfe031bf5d412abc5aaa2a55b1376be6fc0a68536b0a55aac20c5afd28a9ed119690e10f06e92"}, 0xf0, 0x8000}, 0x20000040)
mmap(&(0x7f0000fbb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
accept4$inet(r0, 0x0, &(0x7f0000fbc000-0x4)=0x0, 0x800)
mmap(&(0x7f0000fba000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$inet(r0, &(0x7f0000fba000)={0x2, 0x3, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
shutdown(r0, 0x1)
2017/12/15 23:28:17 executing program 7:
mmap(&(0x7f0000000000/0xaed000)=nil, 0xaed000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aed000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aee000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$kvm(0xffffffffffffff9c, &(0x7f0000582000)="2f6465762f6b766d00", 0x0, 0x0)
r1 = ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
ioctl$KVM_SET_PIT(r1, 0x8048ae66, &(0x7f00009db000)={[{0x7f, 0x1, 0x9, 0x80, 0x20000000, 0x5, 0x9, 0xffffffff, 0x1000, 0x1, 0x10001, 0x8, 0x265a14fb}, {0x5, 0x2, 0xa2, 0x100, 0x400, 0x6, 0x3, 0x7fff, 0x4, 0x800, 0x8000, 0x203, 0x2}, {0x3ff, 0x1, 0x0, 0x6cf, 0x8000, 0x3, 0x3, 0x3, 0x7, 0x9, 0x7f, 0x401, 0x9}], 0x8, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r2 = ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x5)
ioctl$KVM_RUN(r2, 0xae80, 0x0)
syncfs(r2)
r3 = ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x1)
mmap(&(0x7f0000aed000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aef000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_SET_GSI_ROUTING(r1, 0x4008ae6a, &(0x7f0000af0000-0xc8)={0x4, 0x0, [{0x7ff, 0x5, 0x0, 0x0, @adapter={0x10001, 0x2000000000000200, 0x8, 0x3, 0x1}}, {0x3f, 0x7, 0x0, 0x0, @irqchip={0x100008, 0xffffffff}}, {0x9, 0x4, 0x0, 0x0, @adapter={0x7fffffff, 0x9, 0x8fab, 0x5, 0x10000}}, {0x100000001, 0xffffffffffffffff, 0x0, 0x0, @msi={0x7, 0xfff, 0x5}}]})
ioctl$KVM_NMI(r3, 0xae9a)
mmap(&(0x7f0000aed000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aee000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aee000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aef000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000a4b000/0x2000)=nil, 0x2000, 0x3, 0x40850, 0xffffffffffffffff, 0x0)
syz_kvm_setup_cpu$x86(r1, r3, &(0x7f00008c9000/0x18000)=nil, &(0x7f0000828000-0x18)=[@text16={0x10, &(0x7f00006c9000-0x4d)="2ef02810660ffae50fc72a0f20d86635080000000f22d866b9800000c00f326635002000000f300f0104baf80c66b860fd418b66efbafc0c66b80fdfad0366ef36dac4b809000f2fa1d8d85dee", 0x4d}], 0x1, 0x8000000000000000, &(0x7f00005b8000-0x10)=[@efer={0x2, 0x8c00}], 0x1)
mmap(&(0x7f0000aed000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aef000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$netlink(0x10, 0x3, 0x8000c)
mmap(&(0x7f0000fad000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fae000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000af0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000af1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000af2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000af3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
writev(r2, &(0x7f0000ab6000)=[{&(0x7f0000af4000-0x1e)="744676a40ac415851e815339729dbcfc7110857ca9bb8b07366686db4948", 0x1e}], 0x1)
2017/12/15 23:28:17 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$kvm(0xffffffffffffff9c, &(0x7f0000e8b000)="2f6465762f6b766d00", 0x0, 0x0)
r1 = ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
ioctl$KVM_CREATE_IRQCHIP(r1, 0xae60)
r2 = ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x0)
ioctl$KVM_SET_MP_STATE(r2, 0x4004ae99, &(0x7f00000ad000)=0x6000002)
ioctl$KVM_RUN(r2, 0xae80, 0x0)
ioctl$KVM_SET_IRQCHIP(r1, 0x8208ae63, &(0x7f0000cc1000-0xd8)=@ioapic={0x0, 0x0, 0x0, 0x0, 0x0, [{0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x100, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x2, 0x2, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0xfffffffffffffffe, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x80000000000, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0xfffffffffffffff9}]})
socket$inet6(0xa, 0x2000000000004, 0x2000000000)
mmap(&(0x7f000053b000/0x2000)=nil, 0x2000, 0x1000004, 0x40000002871, 0xffffffffffffffff, 0x0)
mremap(&(0x7f000053b000/0x1000)=nil, 0x1000, 0x4000, 0x3, &(0x7f00000cc000/0x4000)=nil)
mremap(&(0x7f000053c000/0x1000)=nil, 0x1000, 0x2000, 0x3, &(0x7f00000cd000/0x2000)=nil)
2017/12/15 23:28:17 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TIOCGSID(0xffffffffffffff9c, 0x540f, &(0x7f0000279000)=<r0=>0x0)
r1 = syz_open_procfs(r0, &(0x7f00003cd000-0x8)="6e65742f6c6c6300")
getsockopt$inet_sctp_SCTP_INITMSG(r1, 0x84, 0x2, &(0x7f00002df000)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000307000)=0x8)
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000, 0x0, 0xf74, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
unshare(0x8000000)
r2 = open(&(0x7f0000107000-0x8)="2e2f66696c653000", 0x20000, 0x148)
ioctl$KVM_SET_LAPIC(r1, 0x4400ae8f, &(0x7f0000cb0000)={"4c6b6bb3902c066d03de26db900bc653a080b38a268861d9414a4d7a9dc12a3e646cd2f2579735ab15da0e18bafd8abdcc3a5e6ee2e401da858eca77bef5da823207703a175b4f91878584bfbbfa4a6e14819e83bec6af962432c1cc74f4ce02b2c0991765086dbc20011dd41000322c0b2426a858e1b3b893e15913f3fd7f1c3660d0b46c24e63fc5998bf75e1688275bb0c96ad01e12efdd14eb243375a396c5c880b206b82776099bfd34be6011c2e00e7ab80d466e00e62996edf1c73b0709c53ad377cdf87fadcc4b662841df157b5ce54b300921e1253b5f56db5a1e8e7fa71f15ea8166d4d6a1710cc14af2866de740411d947c47bab031763799dc5b98a40a2399f221f7d9a51264573d7bc7cd91fc683a4cf4a578e07e4a27c0860835e98b2844c1570f1199db191005188bdf0a417d6744236a7291c4de730fb37f4c7e4eea7a31cf50d49695b63a20e5a2a596ce16741264607f3a87e9fc835a5bd4c211349b02cbd19fd9be695fe6d7d87aa1ae1d8cc41508463dfade51649799b86343d6a95c990bd79fb7047a10682c0db43fbbfe5bb39c22597148223f999ac8a61a25c69c7f793ffec9f50a730ddee67416fea31671444df7da6dded80c61cf301180e0cece82937fa7491f0694b268bcdb32d6bdc8e59abbfd8943efb75bae061b9961056219f5c0f0dc4f24b55d2d9b23272e6feb99e708e6e4bb75ef8a6a0555052c4eb9a7386bbf4f9e40cffc72447afe109db3dbe90c48e6ad94ccd548d8a973673eb61610021661dc9011d4ca9312c041bbec3b94f3ef7f736dd70df8106c86325e4da368f53467995085a62225c6660f7ae5358508d04d19ddbd310e10495f427a80683ea51517f4c2d7fadc874d37bcfddc0c1cec545c2b89243b444c9305b4c26f2ae25555b5dcdc2263d417d226baab361e9aa21776f954939a347eef56164dec3a22a7192c426cadae1b6729d8eb7633a3ac01ca3dead876c09e7f8c7b0710d292466bccea6e11051886f6d96a6294876164ed929a469f23ca1239704857bcfd8d7e26b35b9fcc17120b7870ecb773f4402ee1e52451f3bb7a25ad4e2ae056e6f535e53da444cc38cf98e5be624c9b4fa0d0cf59b117da48d9c2ac18f1cc081c60a8347270278daa47312e23d97c8820db526f59f2bbfa1f917be9a9fd42a88fc2dd05ffb0ca65f444f53852891bafa60853996c6c0176ab1e4b2d495f583172beda986c278b95a48ac30a7883ac3720f849bdf03cd87acb0ce468af91f9140deea6f80665624415044685cafa4ad82ce2bba733c8c4905c6ee122024d588afc0bb42f585197dff73831039463697bae6c74a99015b09dc882712d9cc5dbb748d27d6b6b2923c1b1f0614c9d18401c1918d041491d4f05aabe7bcacc83c6fba05f011bf10cabaecb307f52f46fa30a581fe7f06ed59a3967e0"})
ioctl$EVIOCGMASK(r2, 0x80104592, &(0x7f0000a32000-0x10)={0x15, 0xb7, &(0x7f0000ad0000-0xb7)="9025eda6a20d259784d112ed72cfacd5d87ab024b83f3207b517301642b1f3b7dba9d780485dec96cda8d3aeffa8a00cf89437eaf959c9e12a82bddd7aad89efd9f9d9d6b2f48f45ef6cfdde61c8b3ea318fc5cf46888e360ffad94a224c30b489fb6190dee72c0693738395b0e524792e7fab3e14d7ba398b8b57490e49f055611f28fd9abb6ef1cb86457d52c25cc805784170f0781ba2bcde1a93812d0b0cff3da03d7913d36ce4a1162a66ace5b803e0eb3c6b2af6"})
socket$unix(0x1, 0x1, 0x0)
getsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX3(r1, 0x84, 0x6f, &(0x7f0000d7b000-0x10)={<r3=>0x0, 0x94, &(0x7f000086f000-0x94)=[@in={0x2, 0x3, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x1, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x0, 0x8, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0xfffffffffffffffc}, @in={0x2, 0x1, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0x10000, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x81}, @in6={0xa, 0x1, 0x200, @loopback={0x0, 0x1}, 0x2}]}, &(0x7f0000bbc000-0x4)=0x10)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_THLDS(r1, 0x84, 0x1f, &(0x7f00007c5000)={r3, @in6={{0xa, 0x0, 0x1, @loopback={0x0, 0x1}, 0x800}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x7, 0xfffffffffffff801}, &(0x7f0000e9f000-0x4)=0x98)
socketpair$unix(0x1, 0x5, 0x0, &(0x7f000000b000-0x8)={0xffffffffffffffff, 0xffffffffffffffff})
r4 = semget$private(0x0, 0x3, 0x0)
semop(r4, &(0x7f0000000000)=[{0x3, 0x12e, 0x1000}], 0x1)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = socket$inet6(0xa, 0x1, 0x8010000000000084)
ioctl$sock_SIOCOUTQNSD(r5, 0x894b, &(0x7f00009d3000)=0x0)
ioctl$sock_bt_hidp_HIDPGETCONNINFO(r5, 0x890c, &(0x7f000039c000-0x8e)={{0x98c, 0x1002, 0x80, 0x3, 0x9, 0x0}, 0x1ff, 0x3ff, 0x7, 0x4, 0x9ab, "a5128290749e4c0275f0d1cc4fbcd0f6017c1168d41d2821fd29c803e2e6bd28dceaaa71e491ce63e3267f83a9fc9810600d77150bddafd88dcbc1ea8f4668139d5d3d24b18d8edb98e3d4aab9a07f6e144d219a1be4cbd57b4ef1edcbe5dde343f697c05df6f7e95a73ee8a7d1c6b42165cd39dad7812cb413a000000000000"})
bind$inet6(r5, &(0x7f0000a9b000-0x1c)={0xa, 0x0, 0x8000000000, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
listen(r5, 0x2)
mmap(&(0x7f0000000000/0x79f000)=nil, 0x79f000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r6 = socket(0x11, 0x3, 0x0)
getsockopt(r6, 0x107, 0xb, &(0x7f0000797000)="", &(0x7f0000659000-0x4)=0x0)
setsockopt$sock_int(r5, 0x1, 0x7, &(0x7f00008ca000-0x4)=0x6f1, 0x4)
r7 = socket$inet6(0xa, 0x1, 0x8010000000000084)
sendto$inet6(r7, &(0x7f0000832000)="07", 0x1, 0x0, &(0x7f00005e5000-0x1c)={0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0x0}, 0x1c)
setsockopt$inet_int(0xffffffffffffffff, 0x0, 0xf, &(0x7f0000484000)=0x8, 0x4)
bind$inet6(r7, &(0x7f00003a0000)={0xa, 0x2, 0x820, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xed}, 0x1c)
bind$bt_l2cap(0xffffffffffffffff, &(0x7f0000dfa000)={0x1f, 0x100000000000081, {0x4, 0x800, 0xfffffffffffffff9, 0x2, 0x0, 0x5}, 0x9, 0xffffffff}, 0xe)
2017/12/15 23:28:17 executing program 3:
mmap(&(0x7f0000000000/0xfc4000)=nil, 0xfc4000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket(0xa, 0x80f, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e9, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x4, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000002f000-0x78)={0x1, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0xd34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffff, 0xffffffffffffffff, 0x0)
ioctl$PIO_UNISCRNMAP(0xffffffffffffffff, 0x4b6a, &(0x7f00001b6000-0x37)="6755ac78e03fed1214bb0f17a1c15240c06ff7ed7c2b6307517e1e114c0bbeb7f233c3b3312fb9936992d03e5d8c8883a4b81a9655755d")
bpf$PROG_LOAD(0x5, &(0x7f000000b000-0x30)={0x1, 0x3, &(0x7f0000012000)=[@generic={0xd885, 0x0, 0x0, 0xc}, @generic={0x3cb, 0x0, 0x52c964e8, 0x0}, @generic={0xd39d, 0x0, 0x0, 0xac3f}], &(0x7f000000a000)="73797374656d00", 0xfffffffffffffff8, 0x80, &(0x7f0000eb9000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfffffffffffffffe, 0x0}, 0x30)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = syz_open_dev$tun(&(0x7f0000001000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0x22000)
ptrace$getregs(0x221e, 0x0, 0x3fe, &(0x7f0000d2f000)="")
rt_sigaction(0x0, &(0x7f0000f25000-0x20)={0x0, {0x0}, 0x0, 0x0}, 0x0, 0x8, &(0x7f000002e000)={0x0})
set_mempolicy(0x0, &(0x7f0000f15000-0x8)=0x10000, 0xfffffffffffffffc)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e9, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x2, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
getpgrp(0x0)
r2 = socket(0xa, 0x4, 0x0)
mmap(&(0x7f0000000000/0x22000)=nil, 0x22000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = syz_open_dev$loop(&(0x7f0000004000)="2f6465762f6c6f6f702300", 0x2000000000000, 0x12300)
ioctl(r3, 0x4000000100001268, &(0x7f0000b25000)="c6")
fcntl$setlease(r0, 0x400, 0x80000002)
r4 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000685000-0xb)="2f6465762f6877726e6700", 0x440000, 0x0)
ioctl(r2, 0x4000000000008916, &(0x7f0000f23000)="e103c1")
r5 = socket(0xa, 0x1, 0x0)
ioctl(r5, 0x8936, &(0x7f0000000000)="")
socket$kcm(0x29, 0x7, 0x0)
accept4(0xffffffffffffffff, 0x0, &(0x7f000071d000-0x4)=0x0, 0x80000)
getsockopt$SO_PEERCRED(r4, 0x1, 0x11, &(0x7f0000388000)={0x0, <r6=>0x0, 0x0}, 0xc)
r7 = getegid()
fchown(r1, r6, r7)
socket$netlink(0x10, 0x3, 0x10)
openat$autofs(0xffffffffffffff9c, &(0x7f000033a000-0xc)="2f6465762f6175746f667300", 0x200200, 0x0)
ioctl$UFFDIO_API(0xffffffffffffffff, 0xc018aa3f, &(0x7f0000fbf000-0x18)={0xaa, 0x80, 0x0})
2017/12/15 23:28:17 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = creat(&(0x7f0000176000)="2e2f66696c653000", 0x0)
epoll_ctl$EPOLL_CTL_MOD(r0, 0x3, r0, &(0x7f0000255000)={0x2002, 0x0})
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x3, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
getsockopt$inet6_IPV6_XFRM_POLICY(r0, 0x29, 0x23, &(0x7f00001c1000)={{{@in=@broadcast=0x0, @in=@multicast2=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r1=>0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@rand_addr=0x0, 0x0, 0x0}, 0x0, @in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000bcf000-0x4)=0xe8)
setsockopt$inet6_udp_encap(r0, 0x11, 0x64, &(0x7f000005d000-0x4)=0x3, 0x4)
setsockopt$inet_sctp6_SCTP_RECVNXTINFO(r0, 0x84, 0x21, &(0x7f0000d5d000-0x4)=0x180000000000000, 0x4)
r2 = add_key$keyring(&(0x7f00003ac000)="6b657972696e6700", &(0x7f00001e1000)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, 0xfffffffffffffffa)
keyctl$get_persistent(0x16, r1, r2)
r3 = add_key(&(0x7f0000002000)="6269675f6b657900", &(0x7f0000000000)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000003000)="c4babd4854e1e897195b6a6d2cc6c85182517decb2763fb6039b8a9dab3796aa4c87fed7eb953c0ee3f610ef15f6a52912b4d60d79d3f6ebf80cc17f9490e5a14d3475885b23a1579bab021b970a1201a97f7bee17cdf723e4449a22425de9beb00069ee37a42979fa0836c1242e88fc45e8e6483841dd5dbe430fe2fb08f9fa17ce69df2530c76edf768334ea987c6d0afa9a2bea0c5f781e775d12fa1d61cc777789c034bcc6f877c108c9fa8960d921cb0dfa43776c9259865a8be72d1f5b03b2fc1bee00d1905dd88247851d26c7174e1dba8f96dfcfd7202420b33b088641523be39a2d2020bf300668e1a0486fb7a06a62594d941b79bd65949e3ea928ecc7f3bf5f04ca7d1854d7d484aa19ba072dfd7d167f2463c0642ed2b53ec5bf884cd2cd863a64e99fbe898d7dff4a86bfd834a544d3ad652d73c2c01615074c7d3819aa44fe4491a545b8c1cc9e163465d68a591188732466aebe87d322210b36949fe34744fa675bf8d8cd46581cdeb64c2731f99aa82b97a92e09a418509f6db89dc0aabf9a502517c08aca85cbcf5e7449572af9f619b58d1fcbe070ece236df53ee99b9164399f83eed4f8ae8337ae7d167d61f8255c738acba9697745cd4787858f0884231817dfafa01be62ba296d7da22d39038396d95c943e17c8b282c2fa3e76df777fc042afafaff30077037c2b8cb2895841709e9375b6ca314d8c9dfdca50547fe735c8c91c5356805b27d36ac773ede01195257a5842e5a18a046aa781e0edc832913a32f9ebd782f5dd960dd3697ee1fde8f8b48040d37ccbb5b444854032586acda7395f75cd283585b427764f92a28ad033d15379bfe0daef231edf3af9208d80d11beb4e9b74a45cb481515a87fafe02e5968405dc026965b42312c735a88b22a89844004941635344c51794a1aa925de696541bb0261803d3fca47acb5192c4b7a8b6d5f3719661b2ce6abb90ddfb88341b804b39489933e4d6090b00997c5efef9d0e91f93b945bbc1b099cde60075905ff502fab87a89934da2d2f5a8e2fa1a0e472cba85d2ad1ceee44ad55896f71d54aacd10bf78ee8d3c60497882cf0279678dff17a4521899974041bce6d86e8f53b14a73b2840d24ee59c8457e3de9186d007569adb9d822253717c0bda052b55ae535f35dc3481879a700899ea02dee6196208842336b20179dd2d44dd227333cd89e1ef514fc7974867a1a0fbbdfa70755fd9379e808eca0355e5f5ce1f1aea3d129145afcf12f82088cbe709abc8b7213844f62c2429a5a68e6749bd6ffe569af590896be9b6dee0916d9334fd715a762f331e48cef8d2d0e2deef0b741823f7cd8f7ffa82b019516aeb6f838f3610261d96817fee55b16cfa3b32b30268c079de839be0172e27b6c70341e0b18351b2a7bcec917eed2eb779cc90e5d6f19e5eeb7199cbbb2000a879e6118f28e350ba335b6443a5fbff41380cbce4a08af34fe25737478cb90f187c983ee6755688a556fad2edbf18bc61c93cbc9141746acab173e1c307bd3609b178f3f7de201650ad8356a613f74a52c3159cb0e3fc164186052d5ced168ea67f151bb829af14f8f2f1f791de76740e8745b2ba5e059004a3b9f1d7d52af6d81232791ee1b23a88ea8ac093892fe02eb866dbc5993710cb3e7001b1877861f9a9a3fde697d3944de7c823d1b73c2e43d9cb8630383a8682122d30cd3af0e6d68074d7b70885d6e8e174d9c5b5cad52ef9da9b4fb1e89e5073ddcd17db3096edd044c3f4dd8bfd107e7299d124538f9100e1ac67bf2ae8937daa1e7cdeaeb766542ed5cd31518d0bbe229affe6e806ac6187b5ca126a9b556dd7e4f781f35c900131a482c48017f1d1db92db9338d418b55af8363f8b55e8c4f2827b76f3e2d99113caec32f258dd9659d11c94c69b8ab707025369a36ac321b98ad59ee7cd4eea4b429ce88a74e632f04a5ee6868a92b24d72a2912eea29a03e1a38741d5c1092ef29815bd4d5976b4e858f69f77e68541e0c8e4a37509dd82066f52500ca60375240eea47f4072d3b293486388e23f16ee811069cba11e3fd72963a94e8495e57ac7342aa8bfe66b49bbc14c05043cbc7632e6c1e2c2e97a272498d8bdeb5dfae0e447187919d6a57a09e13170e725552a0223e32426f2b0f7de8397f33420fe9416a9d9099117c68bf2ed65b18f9a35332a59d555594a9b2e1d1daff0396197c11b44f02280b8fbff47d35d335046cb33f4b6fb94f9f6857dbba9f9caffab1bf73bb9c9914dfd95b194016895ab5c96320991edd141445f20259c3c957f1560c8962b46ca5dae1e95fd30d19e39055ba72fe317dbca573d7a47c717e5af072af123f7f929c43124731bd951308f154d5f707b05c6af971b4d018d4c90012fe14815daae60880e113ed67afc6f638d85d41334eabab0c687f11f805ee22f515432a6babf7ec494002778f7ea2d5d0beb98351549cabd53905d1190ec42ed167f359514a90c6bbd743acaadc8c8eca3b4c6b67d7e29344846a72b8159a36a90c943009a0777720ebad4d995cfc6371dec84d44ee46f9bb34507493dde4c88000f1cfa22efbc4e3acf64e3d2e8752f333c3310cd3d9e82f486b9071303f421309b8f38d242f8b568692f4edffd896bf08cb86eead4a224bba7b42e62a0200c0f8b7bff3af36adcff66ea101c743341d0ad1682a885e21fcb75f38d7f243e2e3a46f039f4633fddac22d045eb0febfe6452232763835f029933b6fe82dd440a2039083bb36d5ea435f0ec59a653e81ac836e39b8f8e1923b9b7ac147562b9ae4dd8c860fbbf5f90f3c6d25ff616e974e19ec6d537d9a9a864c22a6ffd15463defeb052980fa2f62289215dc8b986abb31347bb3df5c099a43edeb3fefbe9329140605b55afcce9c080ae9ff8f1a3bd2817f4a537a65a895b1e5d44882e4445c2c98a3c90ef79445f6fcf0c89542d28934764203cc15a2a5b861f3fdcc80d3d31a24207a29364775286e909a4883fb19765aadb31c0669eb666047a2d6d331aa6a94936237f475c9fb47aa9184143fba4142a5d5d4904cb5682d8407c01cada4e9a1b86b82db169b0bbacdc6eaa28484f97e3ba725996d265319de7a4fa5ff970a6b8ddcf0f4c15ca85ac7b8672878a0a05232aa1994ae92f3662688964bc30d7b80dd0ed249ebc7424fa4dce603abbf09f508bb88c789a6de6e1ea967ebc5e0afd2c2cede51addacce7edf3c12d945b8b4f6b702f5799c67d65a3a3291b999a9c894a56523fe407bb72b4562c4f1220aef8194a9005ad8524091a7a4e71499d26b425f512e93a4c95e95edc22a0315047c4cdc912c9a4e7d6441e81b4d82ff8f86a1b66acc8816019f33c91c6857d8787e0ea9df85", 0x958, 0xfffffffffffffffc)
keyctl$read(0xb, r3, &(0x7f0000005000-0x957)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x958)
2017/12/15 23:28:17 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = getpid()
r1 = gettid()
r2 = accept4$llc(0xffffffffffffffff, 0x0, &(0x7f00006d7000-0x1)=0x0, 0x800)
ioctl$sock_FIOGETOWN(r2, 0x8903, &(0x7f00007de000-0x4)=0x0)
r3 = syz_open_procfs(r1, &(0x7f00004d4000+0x937)="637075736574")
r4 = request_key(&(0x7f00005a9000)="6365706800", &(0x7f0000e32000)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f000006c000-0x6)="637075736574", 0xffffffffffffffff)
keyctl$restrict_keyring(0x1d, r4, 0x0, 0x0)
sendmmsg$nfc_llcp(r3, &(0x7f00001a1000)=[{&(0x7f000095f000)={0x27, 0xfffffffffffffffb, 0xffffffff, 0x0, 0x3, 0x800, "241bb684a61123b5083f467c982e69a33be6b08e7c9d10be43eb08955217f4993336f7ba29909173654907758e62fc2f27c72556f55f3766079991273b8ace", 0xffff}, 0x60, &(0x7f000063c000-0x10)=[{&(0x7f0000922000)="3cb84cacdccf2e1c93d1683d36e0a341ccce9f1f7feb7477922bfcc18b085f8b89649f26f6490332457df45837f4d557cd82da9eb3a72b468270bf5fbcd81eb5e4ebb409abc5efa7f0df95a4192eeb9fa215b00ccac985f70a1b8b821723773b5326cfc3af940bbdeeb60be368d865c667a18f97e752c83ab07595366b4a", 0x7e}], 0x1, 0x0, 0x0, 0x8010}, {&(0x7f0000a21000-0x60)={0x27, 0xc87, 0x8, 0x6, 0x1, 0x6, "aa4e3bc9cd9ef1182154cff46a8ef09bccc8f45c2d271ea4aa727f4574497122d50b7da598d870631582fe4e25d970d9d5806431fc73cac0dc7096102d527f", 0xd4}, 0x60, &(0x7f0000041000)=[{&(0x7f0000d2d000-0xa4)="f8105e52c367f6da5a840168356e2d885bbd564b49d6a7ab75718a33668672bf7e0124b168b883541df3de6bc23d68618889034b03293a9d3e754dd7a5b91efe358c177bfee0207182fdf0a0ad7f79a349a9a54aff9435c19ca522c5e5f8037b6df174cd3c9fd9863685838375dcee1ac2a2ad2a67653209baff21cd9d83ac2045dd03cec99b6851a50f38d4efa29ffef49ab89026937d2c2bfc06aed27aaa350556ae59", 0xa4}, {&(0x7f000003b000-0xf)="14a1595eff81557c35700233aba6c7", 0xf}, {&(0x7f0000ec9000-0x58)="1cfdc7b274cc90b1ca4dc24015a2b8698586e959f75bc570a5d59bcb6e2532dadfba9f46a6e5e90aea7d65e2c81f69d6920c6c1d773b3c2c5c0192bf73cc927faac2113df6f78cd9b71ba944aa72e3b282964b4c910be485", 0x58}, {&(0x7f0000586000)="5684e11d70104b6f658d2c518794403ba5ccee58ac6ac8ec4f6811d0ba039cafad45feb49f7d9d7f3920f5c6ce07c13ceec0938c988946a2c6057766e23556a746", 0x41}], 0x4, &(0x7f0000353000-0x78)={0x78, 0x104, 0x2, "35bbc819cd44fb5933aaef73bb6427b6a9bcb9e122989fdff85d067b8b2a2d280d10bf6cd34dd2fce1e545fe472da9467022d9934e5fbc6d15edeb8ab9decd885e95e90e0173486d56582adc28428cf90114326247fef5fa3dc632498ee005ff3e7febc0"}, 0x78, 0x20000814}, {&(0x7f0000529000-0x60)={0x27, 0x7f, 0x401, 0x2, 0x10001, 0x8, "28fa0c31f66ad81c9af55d827fa32afc18bb92c6ce324c15dda146c7a285b99a5dcbc6b2a6ed253ce85ed3d9e298f54e2de6b3d5ca5667e132217ae233c42a", 0x8}, 0x60, &(0x7f0000c78000)=[{&(0x7f00004ef000-0x44)="9e6cb39a0e4485c3792043562b071fe735be67e352eb2ee09a4193b9a4ebea4dae98a160fb674b6ac4d4ce6d5e351fc2e95a7407d4f7d165a7d524b3bdeccb36fc7fae51", 0x44}, {&(0x7f0000780000-0x90)="183145bc2d25c1d97c37d3535230e34b27439dd7e7d12df36d64e3359ef4ac23eabacc7fde4ef4f22eb2930e509ed6d104cc875edb3e1322f48ddeae609d1f7a13c3b7df8daf642703f7c554162b64b11f845cef8e40e3e8db25770d061abb1b6714a6cdaef73f3cc2a0e241bada90c07f1ec6aba34369f183327f7d015a87fa8d86739f481ecda00449f561b8c00314", 0x90}], 0x2, &(0x7f0000775000-0xc0)={0xc0, 0x111, 0x5d46, "cf78ae7e63647360c0928f699c0dc71b2b656098a7f317612b50b18731a85880cac9b42ccdb75256f8ca066768fd16730e76828c9696a1c44cc32905f07df63133036f9084a38cc049b6ecdd6e818f277786c68f68370d0b74c47c6028b5b78564917f0ba26a8e2be68ecdd1c25aac5ee2cf4305da158f1fa4dfb3db271d8a98326ad346188c463abec3c98e4492901786559b51922fb4030b8ccce555a3d79847cde3009a128754c937cca5d9"}, 0xc0, 0x8000}, {&(0x7f000062a000-0x59)={0x27, 0x3, 0x3, 0x1, 0x1, 0x40, "f42d6b655529ad2b9b1f8862ef56692dc81fecb0bf49ae0fa8bf8e53890fbfe9ba9e3e180b6736928342bdbf42949a830c2c416bedbae64790df4aa6364061", 0xfffffffffffffff8}, 0x60, &(0x7f0000689000)=[{&(0x7f0000925000-0xbd)="793090d9e79f85b6169bcec098d0ed249222ba89a3cc9eb603496ddf28e673e41cc7fc527c469f5d3bb1fb3b27f4616877f3b04f42d9dbc90b169b65deb2894096130c54bfa0a2090aaa4bf088608ccbaf8fd8ad7d6c532439fe9fc39166e3af6e3cbad4f0aa8f6bc5c5212f34baafd0b25e839fc674cb233993663b9183511a092b22ffae077ceb8b8e299222f7d78927bf49b9b08b9f5646996bb1e018b4176dfb7c89d3fe39060a94585dc681628f7bb560b6d7026953a928b156c2", 0xbd}, {&(0x7f00003c7000)="c08643215d9307bcbc7c3af65967bbddc80907330ea44c275c6f46df09674cc69e766a03661c032c8ba9afa66edfc6f089124c0f29471332f44dab9b650d4be62e06593218f0c397f5755f0a3b3d97f73b7d2a087639491b4cc2f257e8b119955ad2c29a3fba4c3ece97e8ea8793e05ce1145eb4f16e5117c10a640a97b4b083f86bda87aa42ba94ffc952134ad3257da86287bccd6f6a43f2e39fc2b81c61160a56d6ed1eedee2b6d7be3bcdb7974a323d2071e9ee14852b8c5d57ffc94dc64741dbca6ff26a823ebde1e439ad1f60890803d2ff371511d92c930034c4ea320726e681104e7c5a40d1b6e439aa63acc3fe47f5c1cd64d9a337355a1076e2f9087d4629a9cbe7d6fcae208eea69715754e52175aa8b32e584fec303d02e633a1336be09f7bdb884dc16ff79aa84034f29f16a3f961eb26767d09ed031831beb620c67389d4f86737f12ffd0cc7a34ef3db5c72be87429def3314fec2f992a7c5bf5b69dac8c0e758c30c5046e0f8700250f911dba6a6f1dfc21054a72c1b2e63680e55caa2ac5498a7a1550a40d71508e5eb4707aa60f6741979440f8c7a63ff6448e73dd3693e2bdbc2d1c354dad7ebbad6f58cf0685acd5353eec8d8a376c720697164594fdc8379ad273df6ef452ba64df986b115c20e029e685fd9aede4bc8302347399ebd42a5f256fbb3db26509ddec28c4b0387883573fe1db2d7610fbce973ea22e1f77dcfee22265365f1cf57fba085d33025b8014d3323f8d1b9142356ce02e536dcc17b46c3ba64c130ec52be0b37e514473a2dda230e08a3bdbec59e50a904f644843cff6c7d7fcd91758e2230c733fca9bef9a517d057aead0f791e7dcf528fff596b6d0b582ab5706fcec78f787f15e844c809eb5aae2dbf0f78bafc77f7a9d37c8971b7c287f20cb876b51d7f11b6de48e5533cba188bbe440f3f1d5ff76ef7ebea7983804d24729f7c8e505e771c848aedce1aba756d6f31be7d7134473da728643c3e765cb9ff57db7e1e62d2aa669e8edeb7bef2a6733d9780d4a4c96baac2d754b1b233ff2c87ad4fedf1b7a3e1b02645b40e1714f130a774cce179392ef404182fda97277b84e1c30812cb6a34b042a46d1fba30c965ec14a2a0ab7c5311962091cef4efda49956085c27436546e8bab49100807e2a25bbad0101fabb954559c1dbeb54270fda245fa6c7f519077f792a073ecaf5e184af0bccc85b06c74a10294bd676d23fb629178268281e84e459cab0d3f5d56a3dbaf660a540762aab3bfa4949ae2205f261cb45e631e2051867775cff346a92d7ee93ff17779edd077e35f045d677e9aa181fda5a2955d2b00e93c7d13f4e931fae669191f5e7547963e15fbb2e670c02bcf5817db381d6939b8e46b928a1d68653149c10f27430e40e3e8f79608af5828de887f04c0e0c33b1c643e2d96ff90cf948dc05af5cfbd72f70909e8eeffac079c01bc49d4068248f2e1087d0dee9bee52286162a8eeae5d69e2630fff5b70b3e69b53b66e8a55affe7f6b7cd33aa27ab9a8be613179fa61e1a6fdeb2f5880811e471b14a634eec754bacf9517522ce7162f1d4e77cf5f651ab8f4d9dd7fb514eb7590fcab686dc2d5258d8f2182465231935e5d5f426395095610cf6f4aa962e6e64c1f9b429084d6ceac3858a0e6fd76c5b854a7a25d51f2f5f59d85bb3850aeb072ee2137e6768fb3b7b20a76f8b91f515034a1efc9990b4166338364b8f8895fe82e07a33e518198c32872f5e97b284750c1afb4a7dbf07b6b5e9e42931e83b15a77ed6f28617c9e0183544dbe97463e80edfcaccb3dbf9db1629f367c1f20f304ddde7fbd8c8db27f775820bd2978d148faf0fc6abf86683dc17d64ca1a0db5fb0cc9477c8c1428d50a823df3f0888a64be603062a960b1b26ba85ae7f267aa5f6243e29f4016f0be11dd60fff44dffc055439a3807f72f51f6109b33f0ef28fb8782281104d2397325a3436bcab68c210c50bcff8d54a31a7c696a17a7d7f40795b2cdcd0ede195f17b112a66433f705f8d8f0982da29483efa855432bf8e2450ae41f9aeff166e1a4fb9d06280d7b36225a96d9e90a4c1b24d606d9893245d3d11cef3565441880c48a273f675f94b3f091b256fdf51633a649d11c052f86aa6ee1003a1e50c06fb107ccc17c5d7529d364bee70bc181fb6802efee4095ece0154a27adb47a3db0a64cd0316288391263532615fba1886565e7184b8c8290ad8018593623a3f1fbc7dee6cafc63cec42250d88760750cbeddb9da66d179078e259f246c7f0d9ede496a39297c7f270454310154974a1fd9ad1089679cf50a49955bc5e22be900ad5ee5ac8a8618518ba47630867be73549738013f7526509429096a66bfe0dbf20edb60be5d14f9555390eac2fafb5dc058e703193c4ab4e0bab2cc7b8ece7712a9a41d53c595b1530bdd94484b4a8e640bf24b1b2f29e9d78e18bc859ae0e97dc3ca61c580a1d90a2331380843fbc54e8f00e3389264eacb34f3221362dcba24e8c4730ce92cbe7da52113e512c14455df46d3f1c6f2ccf644b0b4b3576bf783406dffaa80d91e521820514c0b8f6e070340a04c9bac271671a069178979465b1d75bd09473d4d2515c34bf34279f0e4f9a0a72044eaebd46b291783a04fe768f132a7872ac10f9f48ad16a622b1cbf017d7fe659496f8305e3d4ee8de249c99632cdceb3e06d3e043991c684689426c22bc3b0c6973c135e54ecf3bc9aa3bc3fcbb0730480dccac8a3c0f850ccafc02ac9489efe4c7baff7991baded45a074ede2ee7026e0c46ca34e4665ceaf1c38683b3675c52b82579db2e5ea4956ee1c0be302907b687ec0a9c89e8a56ad52291445a7bec42ffe25255501e18e63591c6c9902b497bc1d53a48b3fca4ed9c14f91f7e18a5cc67410f1bf71ab2e4393f5ea5892746829eb62f2bfe1e4343fc3db9d0a0cb884da5365b73e713a7a05d177a4fa5b4a6b294f7662f8cc5c8e6eaec80cfaa877d6c3f97e41325d6ede85e70ec05766cbee62c4d791ab717884fb85fadf910219b80798f00f3fb27f1edc69cd654d4eb049e28282e7580aeaea2f6aae2e7e4b195b35701abe1c93c8ea285a8feda1118ead2a660135ae2c735332a7629af9a617457d876aef68c82c785d6a8e0a9503721a7d748004299a704437647a21fe6c560c1ceb0e01ff142890b8b0c9974ee7c1fbde7c0dfc13e36b66308c378f8cf7fae2e072c150406f0a89646d7317ca518c8f14c5545e34023091443f5eabddcb9579430b28ffd052f8b7364aecead3cc1ee4b7dba5ceca04f55fd72ad3b40e09446607c663447d873a9343d79f17442765c3a26bf698cbbef679365ab967b32de570b9d502c6941a03895a10fd54532b7709a1aad4d05271af9bf2cb45032e96823b1b3228229cf7a6ef4374b900be8caa2749edba731453723715bcd9027051186b0b53ea9cede982827e951c868a4fdf8d2f08c176f3dcc7ef8937a929f81316dd5be8adb4c726667852a83775c47118c355767cf5c1d22a58941d6b0b8a7b5cbb89017963d81827528e01fbacefcc1f367a5af04793c5989124de72f45affae5938f1da61e8069f0609edcc034000fc7abeaa3b651039bfd63824973d5f684fd80bc3bded7ae1ef7531b82d409a4df1763eafaf76463521a7d36fb32721489249660f7857b4b44d4c4ef336b7b79e85ade5c7702ce308dee8e56debe4be03eb95c1c7914b99ac4d5ad253c6536968c5a28d0d798e055f69dc4baaa2f435de873e7eb29b9342fda0f32fe7b59d95a2ffab267d24e704812ce6b21f12c40d7711857aaea5f8e54fcd78098c61d45ebabc41bb82b5e3694a78f03046a1172f0125a287ad49f4d462ba4dd697f7008fc30178a13279582540ab62fe4c88c977de29205c4686bca740f106c16283b95a3ac53e3e0ce8d16dc30257bd3d2f7af7092855a794180cda5bb0c1ebb3cc1306e9acd8bf3927898e5c5ad2ae6b87c5a957467a02299aa32d3db11d41c62e2d40d283cc4d8bc8e687ea2627daabd92bacf05a0d614cb1ae8a6fc6d9579d06020ee24470c6730b8c3b1f1b7ed88583c2aeb181651fa617b09bed9142555985b6364b93ff5a1525c54dc93e919a31fea41effe108adb50d4ae1fd16a027389475c153c23e1a23806697375d771d029bc4a7da0906728ac2a26f3e146fbd513656eb733ab3f0704670b6dbc904d2c3f31401432a7617be484afe6cd3d2002d9af542a70bc64c5b7e9b6683fead181b9b259711fe1caaca54164fcc2fefd6b84c46552205720e16ba9a101a7806c39b64f30a72a6d19229a8d5baef4581edd9c3b9c9d796575e690b0ce9a24a39f895dcc4261cc607c06cedeeaff5d4ac7ae5e14c36c21b9cf17e1e5b755796463aadd2b9a99d8e0dcec6eea0feaf3db428d658c9f8cc27d467519444742300eab8ca926101bd3b7c62a1d4f492db26246ba488c4c3ab2b3f0f5a0b28e95ac3ca67ed96e51f85239ec31702a0a63d3f704ac77198f2107620b85c2c538003a5ea0fdb5fb6be539d284e927b341ae584ab6a53b952632c87eecde2b6a5aa4d26fadda936f559d708fc7a81bbe01d03369c5899165d7cc7e5b783914c4eaa67481f7ca322d0d3c9e58978e8efc09906762d95ceb931c896bd249acfb258977bb2e10ee87c5abe67a77f21b30e9fe9dd928192246fc2aec7b46253480c111f32e075c88ef0f3bbee791d05a75edf6ea4f021d1ef966c872894683a3ac5132e5b57d2f802ae582a60e278e3773bc59c665e57a8bd662cf46edccc19b6975c640107fbf1585050d22022ce69805e6ea024e4ec9e84dd984aae95fbb5892a6350ecadd590f369321c09252e68a9fd39659b770490961ad7b7a25271298bfe8a8bcd641a1c24f31d894c1dd86c690bb6c246dcfd8715dd6e9902c4649c591fb65436645c31ee166804e492a694e59352923c907c5362606d40ecd76311a04609a95b95d0cd563d355d5ed0936d90dc2e4cc10870571118e3249607ffacf94e87f8f67e93303192610bd19c2faf5d712197aceb7033443f68cdf81a98f06823c57bb2e2654486397106d83dcc209c930a7ef305e1a36283329ac6b5c6798443c4636c51083d6c152e7e86443f328f5114df5e4a2d8b4549047b2fd3f18e9d114be0146d21f30db1709f9a406ff5c28c524ca982f4d5b512192768778037758c4811eb5ddd827b4804b411b65668a378da58259827ba713fa0f437a516ad86057290fce1b2b1634fc37445af2037182cfc39c8818cf074edebeab121852900ae7fdac33194c71a76df2bd47e2606714db1917b5acf01bab2da133024a2019f0d7cac5606f769ea477ff2648b9b7b1440ed46e9cbdf983eef3045d37e88f099e45c31f1ab174bb7c8d637c2bf5592272e696d7ca2e9e7ea83f68e93bf6a1265031c6fbea6c9196a3a983fd5f4951aac4841c8b14e3bff5be4b638ec90c15d6dea3d72c7138284c53357fb804f2eae6944ddcbd999e7d6f79ddec43babdf0ee4e8e890913f5816079f086b23aff4a49d3cfb297295004662d05f3754fd94b702d4ac852c1f4a82c5a8cd08a0867c289655faec010c2ecd18e7cf2c4979f0912db6a735aff8912a69ca6a00d7b0888de84ca1d9ef53896f178f43325111c8d7cf7590fd40c473e540c4bf0b0c7f8b05886f4ea4bfafcf19a5b2c18ec1d034b031d49e9e3e50ebc36beccee4385e8c4bfed87317245a978d83c1fe2145d5b526799fcbbaaa03e7038b5c797c63abebf2fb50a6a30eef332c292561d9fb265b", 0x1000}, {&(0x7f00001fb000-0x9f)="d1d9d3d7fe5288db203a534fa5b79558ff3af92b7ad77b851639063661b5f19c5d821b913d9041150980fe52399b36fe7a376b939da858ed037ffc27fdf03dd44a6dca186958a9af616b5a3c7f0580957c01739d556f6c0086bb9f5cc862b7ad0cd8da8680d3d63874201d304a0c52a08a0dc2ad06f84393bd6700006c5bb8673e094a9be24665567189ab7fe242950580dd83d6746d469ad3c83f269e332c", 0x9f}, {&(0x7f000076b000)="872fde72c0078a6322c13a80349928f75aec28828cb70092d08039029c324a61a9", 0x21}], 0x4, &(0x7f000002a000-0x20)={0x20, 0x0, 0x0, "e006894f0b135171696ff9d6"}, 0x20, 0x1}, {&(0x7f0000337000-0x60)={0x27, 0x6, 0x0, 0x6, 0x47f, 0x7, "b74da309503657222dccfd636ffefaa0db8d8ad866b8ffc23bf35d2264eb5ff7a4e373f9cae011b1b41b764efbdb683d1b5a816dd615939270983696cd28aa", 0xffffffffffffffc1}, 0x60, &(0x7f00003f8000)=[{&(0x7f00006c6000)="5dba763355b49c5fe73c6ecc7ebf3f9c753e3b451bddd8eeaf42f51bd64ca4092b69fc47d7356b360cc3c9367d8b1b877f19b30c9287e05ef4c3e3eb1569454927910125e04138c10ba10150988f68cbd32744d8f38a757cd96949c86ddc629a5c9f4c4757a9", 0x66}], 0x1, &(0x7f0000863000-0x78)={0x78, 0x110, 0x6a7, "8caeffb44d558dbd824631694b3231d6b14b34a9668ed041dbbcc89174286c0cb7b712dcf35ff34b59c38246238a1f798755993ddd43e4741958b01d3421b08152aa29ee5e5bef1fea19a4bc5c00659712068cd25ea09b01ad4ee664477a59bc9f178b"}, 0x78, 0x4}, {&(0x7f00004b8000)={0x27, 0x1, 0x9, 0x4, 0x4, 0x682, "846ce8dd3adb18ddbeac48bd4ddb410809c301d8062e934a0b5307243b0776c21b2377d5f47579357095b55374c67bfc52370196a689eb18d914c6ad4b1543", 0x0}, 0x60, &(0x7f0000708000)=[], 0x0, &(0x7f0000cfe000)={0x98, 0x2000006, 0x1000, "e0bcd39169441c1c201d74c988419fc15fb66de77e0b47e426eb1b05b8cc74d210f6c5f6001afd39cd2211b55deda31ba89a30bfa49fe1d22a837e3462d9ed9337c5a9c032138e3605b5588c03e8eb001f3d29b9d6235479c55f4f16a16d615b9eabafdada40920d92463d8bfc89fa0ed00e21367fd3ab69aa53a0dc2e0ffb21cf1095"}, 0x98, 0x0}], 0x6, 0x40000)
capget(&(0x7f0000556000)={0x19980330, r0}, &(0x7f00001f7000-0x18)={0x80000001, 0x4, 0x1, 0x100000000, 0x8, 0x2})
r5 = semget$private(0x0, 0x6, 0x8000000044)
semctl$GETNCNT(r5, 0x3, 0xe, &(0x7f000068e000-0x89)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
getsockopt$inet_sctp6_SCTP_DELAYED_SACK(r3, 0x84, 0x10, &(0x7f0000f76000)=@assoc_value={<r6=>0x0, 0x9}, &(0x7f00001a7000)=0x8)
getsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(r3, 0x84, 0xa, &(0x7f00007cf000)={0xfffffffffffffc00, 0x9, 0x8000, 0x5, 0x1ff, 0x100, 0x10001, 0x800, r6}, &(0x7f0000027000)=0x20)
setsockopt$inet_mtu(r3, 0x0, 0xa, &(0x7f00008e5000-0x4)=0x4, 0x4)
sendfile(r3, r3, &(0x7f0000449000-0x8)=0x0, 0x5)
setsockopt$inet6_buf(r3, 0x29, 0xff, &(0x7f0000ce5000)="62bb070e25b32e69b22be87fe02e5bc2b7f163bcc251f88c7358c66bd02e0547cea5ce01737aea887540a8c4e15aa11003ac7c7744c4a80ead8238a8df8898e2ea1d5fd84b966e69bf688ac72d648a8f498d6a6ad1b8d49cfc171db64fb78d1e1011cd7e28db1a6a764ca70a0f92660f5c444b8a8e657485d0a7c6bbd14a0366943c68ebf50937bf02cfe52b34da1776d46d48df05a83f1558bf7e392f58a049d92255c123f83a53942e987319f64daf6eb20f6574519650d07a64f08924cb1814d7fc989cc93845789bfe9a", 0xcc)
getpid()
setsockopt$inet_sctp_SCTP_SOCKOPT_CONNECTX(r3, 0x84, 0x6e, &(0x7f000095b000)=[@in6={0xa, 0x1, 0x9, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0xfffffffffffffffc}, @in={0x2, 0x2, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x2, @rand_addr=0x3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x0, 0x1, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x9}, @in={0x2, 0x3, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0x37a, @loopback={0x0, 0x1}, 0x4}, @in6={0xa, 0x3, 0xe7, @loopback={0x0, 0x1}, 0x80000000}, @in={0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}], 0xd0)
accept4$packet(r3, &(0x7f0000ade000-0x14)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0]}, &(0x7f0000018000-0x4)=0x14, 0x807fd)
2017/12/15 23:28:17 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x5, 0x0, 0x0, 0xfc, 0x0, 0x3ff, 0x200000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x10001, 0x800000000, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x9)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x2, 0x0, 0x2, 0x0, 0x0, 0xffffffffffffffff, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = socket$inet6_udp(0xa, 0x2, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = openat$autofs(0xffffffffffffff9c, &(0x7f00009ce000)="2f6465762f6175746f667300", 0x400080, 0x0)
r2 = perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x1)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfb1000)=nil, 0xfb1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet_tcp(0x2, 0x1, 0x0)
r3 = perf_event_open(&(0x7f0000357000)={0x2, 0x78, 0xdb, 0x0, 0xffffffffffff8d5a, 0x0, 0x0, 0x0, 0x0, 0x8000000000000000, 0xfe, 0x0, 0xfffffffffffffff7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x400000000000, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_GET_MAGIC(r1, 0x80046402, &(0x7f0000fe4000-0x4)=0x1)
mmap(&(0x7f0000fb1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fb1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_buf(r1, 0x0, 0x0, &(0x7f000028e000-0x56)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000378000)=0x56)
perf_event_open(&(0x7f0000faf000-0x78)={0x0, 0x78, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0xa8, 0x0, 0x0, 0x0, 0x0, 0xffffffffffffffff, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x7, 0x8000000000000000, 0x0, 0x0, 0x0}, 0x0, 0x5, 0xffffffffffffffff, 0x0)
r4 = fcntl$getown(r2, 0x9)
sched_rr_get_interval(r4, &(0x7f000045f000-0x8)={0x0, 0x0})
getsockopt$inet_sctp_SCTP_STATUS(r1, 0x84, 0xe, &(0x7f0000fad000)={0x0, 0x0, 0x7fffffff, 0x0, 0x0, 0xfffffffffffffff8, 0x3, 0x0, {0x0, @in={{0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0xf6}}, &(0x7f0000fae000-0x4)=0xb8)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = creat(&(0x7f0000237000-0x8)="2e2f66696c653000", 0x44)
dup2(r0, r3)
ioctl$KVM_GET_SUPPORTED_CPUID(r5, 0xc008ae05, &(0x7f0000fba000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r6 = socket(0x10, 0x2, 0x400000000010)
getsockopt$bt_BT_POWER(r1, 0x112, 0x9, &(0x7f0000393000-0x1)=0x1, &(0x7f0000f12000)=0x1)
write(r6, &(0x7f0000a66000-0x24)="240000001a0009ffeecd0000e9ff000001fff50c0900010000001de80000ab2af9161790", 0x24)
mmap(&(0x7f0000000000/0x265000)=nil, 0x265000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_inet_SIOCSIFNETMASK(r6, 0x891c, &(0x7f0000b9f000-0x20)={@common="62637366300000000000000000000000", @ifru_flags=0x2474ce8be550c271})
2017/12/15 23:28:17 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x96c, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = socket$key(0xf, 0x3, 0x2)
r1 = openat$cuse(0xffffffffffffff9c, &(0x7f0000ea3000)="2f6465762f6375736500", 0x8000, 0x0)
ioctl$KVM_SET_LAPIC(r1, 0x4400ae8f, &(0x7f000072b000-0x400)={"4a257c0c76c4e4cbcb9a38ff7db8ed499352c76b26ca1a76ecc89901c64c3bbe69bea9a54d815427b093a8ca9a1626a329df5571544037d8e9b9577eb55bf6ee3322ff540d75c2c87661479a7e736c8cf741c6e92e2e906ae7daf0c55dc5f5ddb0d81abe15c4251141c2b62455d23d57e6156ca123e1a67b725ef71b876e19fab5a9d66246cb60ac1ca1fa1dc7d69b026859906d235228ea185c498dc6ccfa19b83f5190ce2d9993d3a23b1474618b16ba431d2fa93c948efcc6c0b6144946dedcf042da7905284a8d4e031fcf239cdfdb0215c557e4c7b3c6f57864049f5655879653c967214046de62b87f0374d8328d8c2d958c563ecbb1db2b17a414d446f7b4d53de4208ba023153784f78429d293a580a96b49f6b5d9c2a260489b422c8307d88399df60e5d6c13093471ce55873423fef65410723fe6a39824b885b6c40307eda33cce4afccc76cdaaa9e79d7e07ea557f7c9f67d3d62b010cb932ae7660af7009f4c934db2fcd0a427f296f6bea373a7ea8bbe1b269bbc00d5669d51b875b8e6f6ad3438b9064697c2476f5fcfc8b9c7cb7faf48a345059da06d45f9e9a5d6dd88e29cbfea991722239ceacbc3b1a4da94d487f44aa60bebd674f94edfa0d710257f9f80fd986c6dd4b3949d85d9d39f2efa01e2ef48e4543df6a2b8881bd2d0e8a72b1c6b551c1efb5ee67d0ca3b30942a2cc6121063d96c39d0146c0b98685db9f93836417079cd0463411faa0237c3bb5aaaae5b64fdb40b43b217203e915c56b7284b115403ef180bf70992c2833760a93b11652f7f26ee2cf471976d633de17fc2fb8b49327f4c61eaac322d0f9ee18f9e0c8d3b33f1c05d5c3fd5d8a1b1bdc94c21776612dc8b8dcbd392e761ecbbac280154cfd97f162b100b46749c0293fb36eafce655716fb0ac7300ee60d262e851ef21185fcf2b836a282cf1cc73d8d4826a9eae084110dfa3d3baf8e040c194d8399da5f75e819799aa3dd6fba9eb9e5c9b701cb61bd14cbdf634b41faf2cbfb11def4b3f4dceead49475c3b1a6a8ea61e83ea65ab2bd9f90a111989f62211914378b4e3e3ebf6779fbd5e338137dc369f045d1ab1f74eb4bb8adee92fc2702e904a24ce1ce5172510013d7b9c81630038f8e8d61ffedc93172388c940f98d1e387a2a7a44dd48d64606edf68f54b7507214ced2fa6647145dd4460c638a1ce2ad0ae4cc383bc90d155f995fb51a79b91cf5ff58abc446d768697d06f66511926e85b9d6a9c80ae460c511b110fd2ba0994245e044b3d6bb2442f457ae023163b1d9e951b1df71674bf7aee81ad90ade52e65fec309a6b8f172128261490340a85885afbab173bf5604832b02e50a066007f697f86687f0f383e17855a455dd50c647301a0c85b6584541c3138a82704b418258b753c4b4e7d11002307991ad649638987061970d3e2"})
ioctl$TCSETAF(r1, 0x5404, &(0x7f0000cdb000)={0x400, 0x6, 0x5, 0xfff, 0x8, 0x0, 0x1, 0xffffffffffffffff, 0xfff, 0x8})
sendmsg$key(r0, &(0x7f0000f56000)={0x0, 0x0, &(0x7f00008ff000-0x10)={&(0x7f0000334000-0x78)={0x2, 0x3, 0x0, 0x0, 0xa, 0x0, 0x0, 0x0, [@sadb_address={0x3, 0x6, 0x0, 0x0, 0x0, @in={0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, @sadb_sa={0x2, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0}, @sadb_address={0x3, 0x5, 0x0, 0x0, 0x0, @in={0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}]}, 0x50}, 0x1, 0x0, 0x0, 0x0}, 0x0)
2017/12/15 23:28:17 executing program 0:
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x553, 0x100000001, 0x0, 0x0, 0x0, 0x6, 0x800, 0x0, 0xfe, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x1200, 0x0, 0x3, 0x0, 0x4, 0x0, 0x0, 0x0}, 0x0, 0x8, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x469, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x3, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = socket(0x11, 0x80000000803, 0x8000000000300)
setsockopt$SO_ATTACH_FILTER(r1, 0x1, 0x1a, &(0x7f00003f8000)={0x2, &(0x7f0000f82000-0x8)=[{0x48, 0x0, 0x0, 0x7fffffff}, {0x202000006, 0x0, 0x0, 0x0}]}, 0x10)
accept4$ipx(r1, 0x0, &(0x7f0000932000-0x4)=0x0, 0x800)
close(r0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = accept4$inet(r1, &(0x7f0000f94000)={0x0, 0x0, @broadcast=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f00005d2000-0x4)=0x10, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = socket$inet_udp(0x2, 0x2, 0x0)
bind$inet(r3, &(0x7f0000d6a000-0x10)={0x2, 0x0, @rand_addr=0x400000000000, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
creat(&(0x7f000014e000)="2e2f66696c653000", 0xc)
getsockopt$inet_sctp6_SCTP_GET_PEER_ADDR_INFO(0xffffffffffffffff, 0x84, 0xf, &(0x7f00005f5000-0xa0)={<r4=>0x0, @in6={{0xa, 0x0, 0x8, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x6f0c}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xfffffffffffff205, 0x7ff, 0x15, 0x3, 0x0}, &(0x7f0000d76000)=0xa0)
getsockopt$inet_sctp_SCTP_PEER_ADDR_THLDS(r2, 0x84, 0x1f, &(0x7f00004ab000)={r4, @in={{0x2, 0x1, @rand_addr=0x8000000000003, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x8000, 0x8}, &(0x7f0000f41000)=0x98)
r5 = socket$inet(0x2, 0x1, 0x0)
r6 = syz_open_dev$vcsa(&(0x7f0000f53000-0xb)="2f6465762f766373612300", 0x0, 0x10000)
r7 = syz_open_dev$tun(&(0x7f0000520000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0xa)
setsockopt$inet6_dccp_buf(r6, 0x21, 0x82, &(0x7f0000b61000)="dbfd482ddea7c646310f0c269007ea7ae109d8a2ac2f9e7a2f0e23e6cfa34b099ce220a0bdd2699d7a3510afc15066", 0x2f)
setsockopt$inet_udp_encap(r3, 0x11, 0x64, &(0x7f00004d4000-0x4)=0x2, 0x4)
r8 = fcntl$dupfd(r7, 0x0, r7)
ioctl$TUNSETIFF(r7, 0x400454ca, &(0x7f0000a5b000-0x28)={@common="67726530000000000000000000000000", @ifru_names=@generic="4f54000cc0a1ed4f3a0a1fdc222073b5"})
listen(r8, 0x1)
ioctl$sock_inet_SIOCSIFFLAGS(r5, 0x8914, &(0x7f0000630000-0x20)={@common="67726530000000000000000000000000", @ifru_flags=0x301})
getsockopt$inet_IP_IPSEC_POLICY(0xffffffffffffff9c, 0x0, 0x10, &(0x7f000016d000)={{{@in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, @in=@remote={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r9=>0x0, <r10=>0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@rand_addr=0x0, 0x0, 0x0}, 0x0, @in=@loopback=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000044000)=0xe8)
getsockopt$bt_BT_CHANNEL_POLICY(r6, 0x112, 0xa, &(0x7f00007b4000-0x4)=0x0, &(0x7f0000462000)=0x4)
socket$kcm(0x29, 0x0, 0x0)
write$tun(r8, &(0x7f000014e000-0x27)=@hdr={0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x0, @ipv4={{0x5, 0x4, 0x0, 0x0, 0x1d, 0x0, 0x0, 0x0, 0x11, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, @multicast1=0xe0000001, {[]}}, @udp={0x0, 0x0, 0x9, 0x0, "ff"}}}, 0x27)
setsockopt$inet_IP_XFRM_POLICY(r8, 0x0, 0x11, &(0x7f000054f000-0xe8)={{{@in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6=@remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x1, 0x3, 0x3, 0x300, 0xa, 0x20, 0x20, 0x27de, r9, r10}, {0x0, 0x0, 0x100000001, 0x3, 0x7b66, 0xfffffffffffffffe, 0x7, 0xff}, {0x0, 0xff, 0x7, 0x7}, 0x4bd, 0x2, 0x0, 0x0, 0x40, 0x3}, {{@in6=@remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x9, 0x8000}, 0x4, @in6=@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0, 0x5, 0x3, 0xfffffffffffff800, 0x3ff, 0x3f, 0xfff}}, 0xe8)
2017/12/15 23:28:17 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x772, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = syz_open_procfs(0x0, &(0x7f0000cbd000)="6e65742f72617700")
r2 = socket$inet(0x2, 0x803, 0x2)
r3 = accept$inet(r2, &(0x7f0000299000-0x10)={0x0, 0x0, @rand_addr=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f00008a5000-0x4)=0x10)
ioctl$KDENABIO(r1, 0x4b36)
mmap(&(0x7f0000000000/0xf000)=nil, 0xf000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getpeername$packet(r3, &(0x7f0000620000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0]}, &(0x7f0000353000-0x4)=0x14)
getsockopt$inet6_tcp_buf(r3, 0x6, 0xd, &(0x7f0000e31000-0xf7)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f000006f000)=0xf7)
bind$inet(r2, &(0x7f0000010000-0x10)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
ioctl$KVM_TRANSLATE(r1, 0xc018ae85, &(0x7f00004b1000-0x18)={0x6000, 0x3000, 0x4, 0x1, 0x3})
mmap(&(0x7f0000000000/0x9000)=nil, 0x9000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_extract_tcp_res(&(0x7f000000b000-0x8)={0x0, 0x0}, 0x401, 0x5)
syz_emit_ethernet(0x32, &(0x7f000035f000-0x32)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [{[{0x9100, 0x4, 0x100, 0x1}], {0x8100, 0x0, 0xfffffffffffff801, 0x10001}}], {{0x800, @ipv4={{0x5, 0x4, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, 0x0, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, @local={0xac, 0x14, 0x0, 0xaa}, {[]}}, @udp={0x0, 0x0, 0x8, 0x0, ""}}}}}, &(0x7f0000008000-0xc)={0x0, 0x1, [0x847]})
r4 = socket$inet(0x10, 0x2, 0x0)
getpeername$netrom(r1, &(0x7f0000809000)=@ax25={0x0, {"00000000000000"}, 0x0}, &(0x7f0000f41000)=0x10)
r5 = socket$inet(0x2, 0x3, 0x6)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
times(&(0x7f0000859000-0x20)={0x0, 0x0, 0x0, 0x0})
bind$inet(r5, &(0x7f0000003000)={0x2, 0x3, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
sendto$inet(r4, &(0x7f000000d000)="32000000180025ffff070094000914040201c2fe2000000900001a0de89a0000000000000000024fe56714eea47fffffff30", 0x32, 0x0, 0x0, 0x0)
readv(r0, &(0x7f00004d6000)=[{&(0x7f000015e000-0xe8)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe8}, {&(0x7f000016f000-0x13)="00000000000000000000000000000000000000", 0x13}, {&(0x7f00004c4000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000b12000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x91}, {&(0x7f00004fa000)="000000", 0x3}, {&(0x7f0000986000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x36}], 0x6)
sendfile(r1, r1, &(0x7f00000f3000-0x8)=0x40000000, 0x7)
2017/12/15 23:28:17 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6(0xa, 0x20, 0x9)
ioctl$sock_SIOCOUTQNSD(r0, 0x894b, &(0x7f00009d3000)=0x0)
ioctl$sock_bt_hidp_HIDPGETCONNINFO(r0, 0x890c, &(0x7f000039c000-0x8e)={{0x98c, 0x1002, 0x80, 0x3, 0x9, 0x0}, 0x1ff, 0x3ff, 0x7, 0x4, 0x9ab, "a5128290749e4c0275f0d1cc4fbcd0f6017c1168d41d2821fd29c803e2e6bd28dceaaa71e491ce63e3267f83a9fc9810600d77150bddafd88dcbc1ea8f4668139d5d3d24b18d8edb98e3d4aab9a07f6e144d219a1be4cbd57b4ef1edcbe5dde343f697c05df6f7e95a73ee8a7d1c6b42165cd39dad7812cb413a000000000000"})
bind$inet6(r0, &(0x7f0000a9b000-0x1c)={0xa, 0x0, 0x8000000000, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
listen(r0, 0x69c2)
mmap(&(0x7f0000000000/0x79f000)=nil, 0x79f000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket(0x11, 0x3, 0x0)
getsockopt(r1, 0x107, 0xb, &(0x7f0000797000)="", &(0x7f0000659000-0x4)=0x0)
setsockopt$sock_int(r0, 0x1, 0x7, &(0x7f00008ca000-0x4)=0x6f1, 0x4)
r2 = socket$inet6(0xa, 0x1, 0x8010000000000084)
sendto$inet6(r2, &(0x7f0000832000)="07", 0x1, 0x0, &(0x7f00005e5000-0x1c)={0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0x0}, 0x1c)
setsockopt$inet_int(0xffffffffffffffff, 0x0, 0xf, &(0x7f0000484000)=0x8, 0x4)
bind$inet6(r1, &(0x7f0000809000)={0xa, 0x2, 0x820, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xed}, 0x1c)
bind$bt_l2cap(0xffffffffffffffff, &(0x7f0000dfa000)={0x1f, 0x100000000000081, {0x4, 0x800, 0xfffffffffffffff9, 0x2, 0x0, 0x5}, 0x9, 0xffffffff}, 0xe)
getsockopt$sock_int(r2, 0x1, 0x8, &(0x7f000068b000-0x4)=0x0, &(0x7f0000c6e000)=0x4)
setsockopt$inet_msfilter(0xffffffffffffffff, 0x0, 0x29, &(0x7f00009c4000-0x28)={@empty=0x0, @multicast2=0xe0000002, 0x0, 0x6, [@multicast1=0xe0000001, @broadcast=0xffffffff, @loopback=0x7f000001, @rand_addr=0xc95, @empty=0x0, @empty=0x0]}, 0x28)
writev(r2, &(0x7f0000da3000-0xa0)=[{&(0x7f0000494000-0x1000)="d193539b7c4ed0520ac41423af3fec21ae704121772288cae1fb6987b37c14505f04d885dcceb6c616aadc0727c5c68855d5867a6a8ab5691b806fd1e63cadc076fa2073ec79038aea1d29531ad558606a8b1f2801f24621bd35581aeb99e39372183281885e1e02616b216a9cdd31604a4a78db8cfd9e261f68f5a04e16f40bdce53fe7775879fccd7f485665700ddb6edee57828b5472b682214db3c6de3ba34f3600d3225ceb81be8893af4e07a50c4d4d51faeedefadb7314eb37740afc2755753a5e62644e8e927816e817e2d5c34aab8128a40cc5b05e8bea163f3c0494902e8afad09d58df8a170ffdcf6ee07d28c44e359f79a12269eafa34d7f50e381c90a6b5b940c6650b79183ac3432756f8204485655470c2d55dff450add7ea369251cfc6db426dacf388e55e3d1593165f03a7bbc6dd63436e23b561fefdb5023ec11000036e7614337fb2e60539472eb7966c0213f58542ae2773b09a19cd261e47a0fe283ee7622a5cc06295ff82d4596a070bd2c55f4b82c0a7812530a6a01828c81c268ff0279755e4bb95120c7f406e56809954c7882014d8156e818e9f95e132a22283057af8680292c283200866538740b20fe77a8b73f11b311655c6ccd224aa9faca1aaa092631c6bd04f3f8412dc38f9962535fa7be1343bbf23a177b781e79b1e2bd427a3c9590f3c541cdd1921a4052d3e8dfc9997d1d90a8911f4ccda83479df4274198b06369cb997215938fd5b7b26549ef2b3253dd9b1eeb1a4bba16a732b74754255972619740e39be419d3b6df429dddd5d18bca99f99c40d479125e4039b3e9685909124c83cb70e6c334289c12b95bc7485061880bda825213bbd265004a56d1d6b29dbcc73e673fbec386f31fe2ccb20f3c77e55e87acdf47d5c198db09288ae86c48ad857c27929352d290ab7197683c21685688079fb45acf83233fe4b1732eae6eceeb19bebde225e843403ad313549b7656f5393be7dce65fb471539bf610cf4c9160a03ea85f2149c6cc0aa040e17a1177ad347e6c8934b1f663a47d51e15241172e0186efdf372ec6864de803df363dc971477cea4c4673bd492617368d774c2ace5ee7137ac873f5542676f40ff1122c40f1c5bb79b61aa09c8cca5eadb1813ad0c8a32cd6fae20338a005f5894c33aae142cb4a9122a844d8e40dddb2c87ad16b85e0232d71ac7066d7628cb5d95af5cd4dd6db4157408fedc94ade747d83d6f78edfcaa96802df93562a4b21848a87f3598f36069a05f39f136bb2114c520afcbd8a549a0db324db4a2ddeece669fdb0c33e379396c048a4def04a4e415bb084409d0cb66dc50966ed0c2424c9c73bf50a605fbb0b63cfa66b979376ea9bf92a4fa442f3aeacbe00f413437835fff33279c807c585b13aed635f85fb778c1df6eea3d5ec2388797e83b956674fd4cfb6c3e3b99101ba34407fb6eb96a2b95ed2d79b042bfe565a37d49a0852be8ea2f09b310bbe1a74159ff5b8d9117bc2626cc503a2f3734c40d59608ac92e970a5dc477f251371190ed86043cf4f988887c7be5cecef9750e6d1d47da5af8cd304e35f52baa6750fa197a76f12ef1fa4f468e3e065b1f90aa5d8dcf57c325219a1c211da99e0509bba26e87b83be831cca6a8e3ea809bc7a48917de83d3ddbe54ba63c910466f94decd8c5b386e7fe33edc920aa016bbc33d202ffa5399bb0ca678a0692b0c889d3c654bdbee2d7c1858f795c4a1f2242fe82b2721ea6cfedcff980d62eeb18b54788c8297efcafc0e38570590b5c5997155cab85cc9ca664cd152496a2fda57046c75e2ff7e704d51ebfe97580c5df7a44fb6f13920a870cf8af980dbf77eb8bb2c7aed3cbaad89f4fee422f43902d07e0411f3f359a5322f36f97ea318dd6a569b0e552e8e9fed4009ea763365f5c42379f5cc16423068d61f9ce44a9a8326255990de80b0a1dfcb6a162cb73cd831a6a63c80d9c7f04024be5e52d9f5a1bcb9aa632a23ba22db48ce969653eb094c354d45a2cde04cff12efd0c35d8d0cbb200532c9e5b9b05b7ad50d1875fbf761369b3c33a51695f41f3013a9ffceb59ac4b209c4dde1ab61e87c1f569d13b19ca68671c7e08e066614878e8099350b927359e961d252ff222f8ccb70b2ac9f8cbda23d2f5076ae219bd9348ae919ff31ae0ba3b9ccf1add02145255c2a3586b6a7aacb46a541bb0cc1113ca49d43cd0424aeb6706a608f4220522fe3c4fb3269749b3bbc21643e0d79281670b360916df41cda47fc53111e040ea5e3ac01eb05f1fe8349ea94f39d3a4b7618a1cc8601676781e12acfac5c0ec33d16948d5a688bd8d6ea7f15ec9ab9ea63d93d731e7f7300a5980e7adfbc664b7aae8cf92cd670b6f3d3b4ece8b9e5a6930e98a5221add12c349efb2e9c5879f5bb6822c8671b99d227a9440b27d8bb91b02342063585b4015b334d418804355be51b04aee5635223fd91c9116ccfbf49d3cf03b28cb5858e4f9702c763822bb30627b19d0d3470c61b7e5a620bd76e9f08490f91c346b7b2e8867cef68160686b4f2b0fd5b26ede2bae1d56acba7699f59e7726be13f31ce69734d2bdd365b8b701469f77ecfc5fc5e85ac76f6c41c86f92d2867686d1f12dc3abec503c35c03db736790a12b3ced53711b6b95def565800038658ff7277d182c85ad2457938d2ce24ffc43a512e58cb11d3406bd70844191e1346059506b603951c9fd1999e0d681240538c839504a8e1a3ad0ee36fba2dc76a6373718f0c225244da28b3c01cc6748e695594d2ded98c102bbfe5248396510552abcb5a6bb33b46107de7a1e5c24f1c521a0e87d0ff8b25143d4e91a8984751f7a7f0a84c53833f7c6f9b929ae127f9775e089dfba2d9bd1b8918037e9dff77d4f0d879c65771a601ab8283f26680885a42cfa7aec3aefdc305c174025b1de0aa9a647892f99fb8c8852695e082a238c364aa64d4d7253b38d25af44940464231fb36e5b1a83b49e99ee91d49124f720324390f208e4a4a1dec056a5b16c125baa81e67789228bf96daa304a272458a3d009a3dce86c483679366b5dd7001e203f8d9079eb33ba11570cdf6ec1914407ccaa0d0b2d767c31a18f9a01ec0c8a3ae47a95decf0fbf2c1b10d9943662fa2605561f4c8f6c745d2046439e8be930a9fd0cd26b409a9386c2a73223b2823ab7dde749234dac917d0ca685b7b23355d8bd51aa42fdf6a6ae17a88c93035816428785ef47bf1306bf962062e9123964a145470dbe7eb65b372a32863ca00ba85e99e8e0af46a9824239d64ad963686f3e0a592e55ad397b78e066b8fc5c2a5fc36dfbc9451bf9aa675b479b3d2d0cdcb041bbd8f6e44f39b636b8d9b56b46a171578f7a89da75e5c076078d9a1da1b5ba66eaf5787884d30db7e5470b98626a6d829863a1595e8c57a1d7498a329a8f3ae301d80d4f3598256dd5c1dc7140f89df0048aeefe98aab0d67392d99ce9f8ad74ebbde945ec3c7ff5fd927675549c2b652167e84feb7b550a107559946ec7891d2cd43878151999b5b3d36f80dae5734f0ff15e1d5dce9a44322c73b593b69b102e53aa5d9f768e96a6875b38d6388ea0f6a1f5d01831769d4da32e7079fe4e79a076b26de460a94bd2212f515b1ff9fa9275fa563fb817357c7ac0a1b160d21b4f8f9be2fa0a8a20b3f4a6fd542d91def3d63d4e608bbf4cc9814180d149d94378808e7d4ef1716114714a4fada45290cb9b93238021f248b7f0c29562c4f17fde2be001f5d500799f46b402262659e76064e2b26860046ace266dbc776c1414c922933a54eb15a90b3552b45526c684894e2580a2e9254b1c1956e0d66317515e60a472b336439f674724fd940a2bf105dec5ceea8d1b404ba344e387af47ac4c99f00bdbe5e9ff3b5a9d7eed129893c108bda4c04b93d02011aa709ffb2400e088dd92d86f25a624a1ed04f99a82451d3a8121dad1171e31a77367c2101d0936d4710590454c8776e2da916aa004a599ec061ee24181ef8e71ac1881051d05ccfeb595eac67bbf679f2c43dc683eba6572dc4873781730a56ba7da532deae38935d433f40ea267d85d859a9713d15f32bf40a2840d8791c3fe8383b44ee9999d8919497fb74c24cff390cd3dc15dda608d728983370ed6c379aa1c726431b315b6121c2ee0416a22cb82971b3bda10de0e3d8de5bc465c4548635e910668815d803375ba5920dd24d2849c8248bba7cbe83b195873ad4a2c0165c5b24e7015e77d5649a1f8450087573ba74df531e010edf24f973286c049c58d370d27f5996bcf58f23de6b96991fd83eb683cec298acf87763c88469939fd3ed6fda70f6e0307806d5d59c615b1a81cc704ee763e701f235d80e5505cfdd0764859f4be3179d1651b377cf635c3fdf287fef5542cf72b1b1363840baeebdb54bffa77786d0e10d07cbf020fbdb800a37d12e2cee1847e06ed656babf00a07cdfe99e68d71d6e42d25032d595ab3f250dfa3ae497b0f98e0590297edc89f8f94422e10ddac69fb706c940e57c2cb6a76fe4a0443258a520473a7ed2d0aec644c53e1f57e53916c8c8b7e561d5bcd8f981002e396331df0a3b397ada1d7cee668e76074c899d3abe930ef58ed4d91e0048beb0c36d17ac930bfaaa5621426f413b214610afb02a427473aacdb91f69b7ae35ed4ac7fe89150fbdc6231d582e7dd5a4f808d4a8a2f413aad8028ade15dfad2e02999144dc8d56afb799a12b9f58ba4774c9bc3d7612bfe426ae58cb79a4e635af188803936762667cb4c17466e6d918322f635b5d5bdf382892b2f50d8df4e5a7dbd96a78f31aa4ed72041652c68668e30eb05b5f6849632b1f222d2e498389f9d8b265edc020f66841de7cb600bd2e5c0b41579c52eca207e565568cbd370aa6dcb431f4644e3e5ab3ffc2d7244ca2c35e7cc5b5e86f9814a54056871fee467b254b012d10f109906e8e15a51134d5fec7c34bd373a236ae3d271ca5fb4a5a8be4e282745356d68fe2eb0c63bfd77f01dc04b888de55f9feb1085dfa98c2fedee71e8093f310d03810921da59fa0be9c7550aff1b070b54fc4055a7078460a20a275932c54999ae5aca54af4622ad21513f8092a412776340792269f59dd89aa82cabb0cab1c330c92a2e5144d25c8b508af34f9229b30c2034dd14ca59d5ce6f4c81043d4bfa7cc923642c8eafddf66aebc09d27fd8f0415edd1e982f46c55046f5b25d853057c820eeff2482df12d5dce05f8c4f73a8b5db9e0e4bee709c73aedac4195d8924e2c2c4130bd8bcde822dad953f0c303e6f469f7fdd1f057acfa166c4b614ceb642d3a5f0d356f98caf4242b9540f7123ef3619bd4ab31b6fca8678ccd9d913dba58ac71015fa1e2b6866bb72497b2ca7bc0c0fa1a3d3a477b33424a9e8d008d4cccf6fce92cfc6d246c41025596cbb06321ddd7b0736afdee80fb73fba3ce9eb8f6d30e3b0feee5d46ba3fa051cf638f19ca75c35b4d20eb95723ba49c363bc1cc655a0177da7b13aa4a42e50d811ec6f0c5b21cacc27313038d07384a08d05163df5b7c5f224a8565cb9d6b04678f97aa47604c2276190068f7f39887392f9089f28a6c774266bb8f0c746bd50d7966f620ec68941ac88e2b5dd083c6fea5e06d775004e52506b2bbe6fa382ff885b1b7a5b7c1a100ce64aa5b88168849a11da0735ce2365387e879800cb62cff87e9d56500c44a56e0f35561b8207984f5e965bda2dfbdf7d1677b0bee051fb67b2bb11ad143cd4d04b5081c98afe687b9775bbbcee6c5f0767", 0x1000}, {&(0x7f000043e000-0x24)="8682d7a1d25e6de8106320791d54d464a665b74c033829c4c1c9e96bb4b8ab35c739828a", 0x24}, {&(0x7f0000c0e000-0x97)="a42394cb3f3b895e36204c6e97332cc32b79a3ac472f2303a72d4b3449a3ac95a0ac8cae6d81e5156e792e367ac5d711f88642d08e8cabe20156939dbe4a53c7b27db6ec9cf9df265345f9264be4d483e1461012dd9aeaf53a81c1929b644dc114e49c78116e13085f9a91600b5c9d38d86da82d9a6623f77f3ab589caa8281eda783f74e0cefa05243fde880bc9ee0251366556a86513", 0x97}, {&(0x7f0000389000)="17d18d83f6f325a4b6d47401ac46435572969b6c045c1447ffd2dbbb503bbeebe3e84551655d0075298db6dee752ded1c8a1b86e2a5a1c7ac16c618bdeb3bac05cb6b46193cf4afff410eab01100df94", 0x50}, {&(0x7f0000581000)="a5b295cb76e45818e7d7e35a7abd7250f782563c7282912ffb69fd10d26b1d0fdab862f105051ef71b67abd27ba7f66ec3423947bc6fd09e2935604611d102e2afe14438", 0x44}, {&(0x7f0000208000)="dfa9e5c2c691f4fa3d735c2b63d9d565ceadad3027325677bc089232d1c3fba12fdb1ef38edb05005ad5405706bc8f22d90f43168765b812ec50225a8314babb5b2d338dce70a9e02dcd276b393575f1", 0x50}, {&(0x7f000095c000-0x7e)="7b944ef0ba58c775aa9b44a0af6d59f492d06feec93b5e1b3e4e6ea09377838a7e4a3db1757b4d43d61072cf8402fa79514a0d9884315ed8b231508a103b4e1403c009dffffe84a93039646defddaeeb5d27acc3a015d24768c1add71ff9db3e4c615e321af773ae41001e458502ecb63174c7ac4ae42a0d403245e3b761", 0x7e}, {&(0x7f0000e21000)="7ebeef2d933f43383dce5b23ede69ad821dd897ac0dbe587c7b239f80bf60c6c67bfca9411a2fc971e71a9314b1f378345eb9ee9953a847aa36bafac3245ada5733b96adee4174d4", 0x48}, {&(0x7f00000ea000)="c721b7f792f169f20f69396207e11e077eb14789f843ff3407c36b7cbcd9b634f266806e3637c8fc42f0362105448654b3796eba790a6d90c813b0c5cfb603fb3281eaea9a7f1bbaa4c28f", 0x4b}, {&(0x7f000031d000-0x3a)="a3e24c88b330989dffe10905e038976f1ac34e1f8883acde67717d2c223bd3e7fa78a7ffa729dd1368bb1a32385a298d4335e9aef904a9e80fc2", 0x3a}], 0xa)
connect$inet6(r2, &(0x7f000028f000-0x1c)={0xa, 0x2, 0x80ad, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x1000}, 0x1c)
syz_extract_tcp_res$synack(&(0x7f0000894000-0x8)={0x0, 0x0}, 0x1, 0x0)
r3 = accept4(r0, &(0x7f0000503000-0x9)=@rc={0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0}, &(0x7f0000fc5000)=0x9, 0x800)
setsockopt$inet6_IPV6_FLOWLABEL_MGR(r3, 0x29, 0x20, &(0x7f0000efd000-0x20)={@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x8, 0x3, 0x1, 0xc, 0x4, 0x0, 0x4}, 0x20)
sendmmsg$alg(r3, &(0x7f0000d71000-0x38)=[{0x0, 0x0, &(0x7f00003d0000)=[{&(0x7f0000d83000)="2c", 0x1}], 0x1, &(0x7f00001bd000-0x12f0)=[@iv={0x18, 0x117, 0x2, 0x0, ""}], 0x18, 0x0}], 0x1, 0x8002)
getsockopt$inet6_mreq(r2, 0x29, 0x15, &(0x7f0000d19000)={@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0}, &(0x7f000053c000)=0x14)
close(r2)
ioctl$DRM_IOCTL_PRIME_HANDLE_TO_FD(r3, 0xc00c642d, &(0x7f0000aa6000-0xc)={0x0, 0x80000, <r4=>0xffffffffffffffff})
ioctl$DRM_IOCTL_AGP_ACQUIRE(r4, 0x6430)
shutdown(r3, 0x1)
ioctl$sock_SIOCOUTQ(r0, 0x5411, &(0x7f0000153000)=0x0)
sendmsg$alg(r3, &(0x7f0000e6d000)={0x0, 0x0, &(0x7f00001f0000)=[{&(0x7f00003be000-0x3f)="9a993d6acf676d3c547250b522363557608bcd90c4d639742e0cce7f2ef9783d0ad28378c6204cd99775f875957ffc79cf37f1b02adb653239bcd75ced2f42", 0x3f}, {&(0x7f00006bd000-0x3e)="40f571b106663da248cf3c6b3fca701c27869af17f92bd4be0abbd50a52b16bb7f21b9d4f6b07a6ae9558c755ef59418b5efc2b534481e2fbc8c13586a8b", 0x3e}, {&(0x7f0000ca1000-0x5e)="38c715c6b42f6f16c4869cea15a9e6ea4171a4a00fcc4af72bb1de7d445a884817fec36b982440e980cacbb78867e7212a37b8593e669afaa9371285613bc5240835fde568ec132d76e6ca5f1b58b1e6cf87d6b6846fbb3312d08b77c114", 0x5e}, {&(0x7f00001fb000-0x7d)="fe04495a35b905a240de4c2e9944ad7ce9c153a51782c3182ac06180989d94f2e7a7bce8d3d2f34685028b4b9f79c89c49a58d7ad0e70ca53964cc0a92f250db0c6345037f6ef457ab77367d75dc4e550fd73e8128ebc97d77f9e1694655c0568f817dc3aee9fb8c667fbfb05d6b387028896b2e55cd254236b00d49c9", 0x7d}, {&(0x7f00002c5000-0x29)="1c5d7afb5e9e0e2453ed927fc9387db252ee290fd48d8e2422a898540d4cfa578f43e6877f2d0de9e5", 0x29}, {&(0x7f0000a0b000)="76ebb128f4f9a84f3f372caf06fdce82fbc86cc44ecf8fad6ccb06abfb617ab48a65fa4e2ee39c4b5eee66ad98afa934e9aaf119290db8281114e18a14558d6000ef223592648bbcf93625874512d8ff9b7aebc1d85d935f18d4574c1223f113c3eabe1cf18ea2c53106498655309df14dc5c212", 0x74}, {&(0x7f0000b94000)="f0d19139c9356fda68e47618d1cff0575c3cb3ab5269be77bf0025c208b2aa8a411a4c07467066ce43399c8e79083b10094d4a448bcc061cee4c67fa03284288b0093f1a12bd5e4727655ccdedfc05d0bced925ebec38fe09ab5070dea8278d6a33abb49a466272ffe7425be5bfeea638af05fb87c2b22261abffe68f3575c656fb0fb7c", 0x84}, {&(0x7f000064f000)="c6c0237e9aec48c57f28d1b0e12b7b9811212fe931b7bf6d52dd7a404b6e98db094fb16640c2b625654bcf4100c3efe246988c0d1423afccc76b354842147cab349982864adbf750c984fd76c575bf20a80d72a63ba8ca2754df22f6c72bca3f1db71ca72fd21bb7aa4731fc43b48ad37af589e75c3d02", 0x77}], 0x8, &(0x7f0000e41000)=[@iv={0x80, 0x117, 0x2, 0x69, "a5997c92dd526640d8f9e6dfaa0e760ebbe4f28f590322de28b289cc9ab3f5a39a4737a8462c84e6c2dfbf0ede6b548f8c0f8d9d0323865e7dc0edb94d71b9f5eae72569b5c685787ff368f092ffd2846e833ca242aede4b2a7572f3ec1be1faa943c417a08b81765c"}, @assoc={0x18, 0x117, 0x4, 0x7}, @assoc={0x18, 0x117, 0x4, 0x3}, @op={0x18, 0x117, 0x3, 0x2e9}, @op={0x18, 0x117, 0x3, 0x3f}, @op={0x18, 0x117, 0x3, 0x1000}, @assoc={0x18, 0x117, 0x4, 0xfffffffffffffffe}, @op={0x18, 0x117, 0x3, 0x5}], 0x128, 0x8006}, 0x40001)
2017/12/15 23:28:17 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6_sctp(0xa, 0x4, 0x84, &(0x7f0000c34000)={<r0=>0x0, 0x0})
getsockopt$inet_sctp6_SCTP_NODELAY(r0, 0x84, 0x3, &(0x7f0000ceb000)=0x0, &(0x7f0000404000)=0x4)
ioctl$sock_inet6_udp_SIOCOUTQ(0xffffffffffffffff, 0x5411, &(0x7f0000f57000-0x4)=0x0)
bpf$PROG_LOAD(0x5, &(0x7f0000ee7000-0x30)={0x1, 0x1, &(0x7f0000ee7000-0x10)=[@generic={0x0, 0x0, 0xa7, 0x0}], &(0x7f000000a000)="87797374656d00", 0xffffff7ffffffff9, 0x80, &(0x7f000000a000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, 0x0}, 0x30)
mmap(&(0x7f0000000000/0xf73000)=nil, 0xf73000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$alg(0x26, 0x5, 0x0)
close(r0)
r1 = socket$alg(0x26, 0x5, 0x0)
setsockopt$ALG_SET_AEAD_AUTHSIZE(r1, 0x117, 0x5, 0x0, 0x0)
recvmsg(0xffffffffffffffff, &(0x7f0000f3f000)={&(0x7f0000f6e000)=@hci={0x0, 0x0, 0x0}, 0x6, &(0x7f0000f6e000)=[{&(0x7f0000afa000-0x92)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x92}, {&(0x7f0000f6e000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6c}, {&(0x7f00005c2000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x93}, {&(0x7f0000f6f000-0x1b)="000000000000000000000000000000000000000000000000000000", 0x1b}, {&(0x7f0000865000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x38}], 0x5, &(0x7f0000a26000-0xc8)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc8, 0x1ff}, 0x10000)
r2 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r2, &(0x7f00001bf000-0x58)={0x26, "6165616400000000000000000000", 0x0, 0x0, "726663373533392863686163686132302d67656e657269632c6372633332632d67656e6572696329000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r2, 0x117, 0x1, &(0x7f00001ec000)="0a0775b0d5e383e5b3b60ced5c54dbb7295df0df8217ad4000000000000000e6", 0x20)
r3 = accept$alg(r2, 0x0, 0x0)
close(r1)
recvmsg(r2, &(0x7f0000f70000)={0x0, 0x0, &(0x7f0000f70000)=[{&(0x7f00006ec000-0xbd)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xbd}, {&(0x7f0000567000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe8}, {&(0x7f0000f71000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f00009ac000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xaf}, {&(0x7f0000835000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7e}, {&(0x7f0000f70000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6d}, {&(0x7f00004a5000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe1}, {&(0x7f00004f7000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfe}], 0x8, &(0x7f0000853000-0x14)="0000000000000000000000000000000000000000", 0x14, 0x1}, 0x3f5a1db4cedf06e6)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f74000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f75000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmsg$alg(r3, &(0x7f0000f6d000)={0x0, 0x0, &(0x7f0000f76000-0x80)=[{&(0x7f0000a8b000)="e0fbe5bac185aae4a43a84ee0abe8a", 0xf}, {&(0x7f0000daf000-0x9b)="d72f4d3d94a2625b227b0c25245f90858805bc6e00727514304e5834cfc94a1bbfadadb75dfcd122162231c47c23289f832d6c11063638ce3d6680b3e8be40a3b05d773c93a9762944320b9712183147e598eb8a4254e52e47593511e7fda6752e5b001d4832adc24750d83233ef180c33bffb94bdb1fba4064c9789ed6c5671b1c43602372d37b4de44cd9664c1c45db060bca47cd3151e90406b", 0x9b}, {&(0x7f0000523000)="8992236f04f2b8a01782acbca1495c9fc2f673910385e49e4f386a0ff64f41bcab7452eb07d6a353d5f6520e19ee61c78353334030519cd4b0003dbd464a2adc95b03b75f142986624fe347c3bbc52d66e0de5e758dd40599b70f18945196dc2a1022db60f4edcfa9899ed794143a72da8133f7bc07df868958c93ec69b3e3", 0x7f}, {&(0x7f0000440000)="ef89da552dd330bcadfed9e746aa47bd70a9227eeb7210410a3f121e11683e61bb69c74cc9242bbda84ef11e1cfa9412c485b041877d4ee572105ed51bb1769f34d9fb498b24c8591e8aefdd08cbf41ede1f02e20402f00e6f6ec04c21be760c72880da0ca6e01ea5dfe63786136cf3597eaa50389f5eabbb2f33eee7e2b96c1c92590cca3cfa2320d1e3643599fc8e45e824412f3a7432e4319e2abe0a370c274aba6c7d674f8ebb4416e523b8080042727795be956e4971ec0361cbd4813eba7d5617ce9d7d31caaf57214787ca945ef2f4c799bb9e76ae5847eaed2d17600124f", 0xe2}, {&(0x7f00005dc000-0x4c)="8561b7a0e627acd3a48d8b9f30c6d215c928bf2f5736097e1e283522044672ca4155d83ba8a7a9cf28a2bd5ae7abd49744248b986fcef2d9e8ea1ef3b930ae82f03deffad4a4bc4ce29c3f57", 0x4c}, {&(0x7f0000f74000-0xe1)="99eac84d6a3828b426e0d2bd94a372440296e7dbd81f7612aaee2b98e359972268a6af8bb583511ab042180436c76c32970e44798ed07d43ab574b074b21e9a99da113d6d97363de0e14ea35948cfcd4e33b238769b5d816af54d725d9e0892fb493649e59bd10170b458b63ccda771d5c26156bdc372e736f4cad146efde6570ab31f177183b8325edb58a0b7ed4859e31ee77c7aed8fbebdf4f1bd54d38d684e74fba79cebae37a8d063fb487688b4422341a445637a86f7ed56f82dfd43d4a2744b5a7997da7a30de752718e12eb78a87b2aa694aaf6fc509d305842f108c80", 0xe1}, {&(0x7f0000f75000-0x1f)="c06b3a247fe5e051d3007662067db4d932c52b788f2a2137c80aaab29cd6d2", 0x1f}, {&(0x7f0000039000)="f06bf7cd469f89c692db8ce5f8a5ad8e755f50800c2528d688a580ba0f00edff1bfec8a00695fc50ed59d372f4fb3c2e2d8b1578d1ac44b620", 0x39}], 0x8, &(0x7f0000c3b000)=[@op={0x18, 0x117, 0x3, 0x0}], 0x18, 0x1000000000}, 0x0)
close(r0)
recvmsg(r3, &(0x7f000022f000-0x38)={&(0x7f0000f6f000-0x10)=@ethernet={0x0, @random="000000000000", [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f00000d7000-0x50)=[{&(0x7f0000e72000-0x84)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x84}, {&(0x7f0000f6f000-0x79)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x79}, {&(0x7f0000d04000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd5}, {&(0x7f00006cf000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb0}, {&(0x7f0000e67000-0xc)="000000000000000000000000", 0xc}], 0x5, &(0x7f00008ae000-0x46)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x46, 0x8}, 0x2)
sendmmsg(r0, &(0x7f0000d05000)=[{{&(0x7f0000814000)=@in6={0xa, 0x3, 0x7fffffff, @loopback={0x0, 0x1}, 0x20}, 0x1c, &(0x7f00006ad000)=[{&(0x7f0000ee8000-0x49)="8e7698c0592d46142f8ac5eb186edda2763855e60da18f0f0f1ea12fe0d8e97d3f0ff8995b98154ff96da182cc9600aa2430be7b997d5a54bfe6674be0e66341f08c237c5f5844d72f", 0x49}, {&(0x7f00006b5000)="51253739898878b2374884a47880615798e7668f5e0a2baf105c1a0ae6ac26dceafc89ddd34642651e729bf3c0a42ece720b1b8b45a51fef1ef5779600bb6c4a8581fb6337d2bd275f8c05cce7d5f45da21407b4e4ffe58ad9a8cba8b3dbe040248ec80a1b641278a0b2ac566cfe1f02fd9d2f54e34fca686cbbeebe3f5489b07f6f6f0baf345868e6348915abeadbfdae6becec8dfe1b980ed7dcab3bf3e796da3f916049b1b8980ab4ad9d3b062037bd466407cd23c7f58063f187a5bd80f9e4372c88752e3335e27909a6f90c2b026d00c6d9a51acd22b999034546ba3d029aecb791485f1f7fbc0b6ea6efb26e21072e8da66ce3a6bad90ceef9d99e19f6ea792073fc0d94348c5356bda0c220d594990e94e9417b447441dbde0492f11ea6f803d6770cf643af2f4060ae0f6a635b12fc8a6a540a409604236f97a33ee1207e1dec09a2903b873abd693ac1f83be3c6288720b24125e6586ada381f3d4a2267a2bad504a8e155ffdc9c05f4282b4bcbabd40cc7154c066d39c52d67699cd27511100ff9c47014dfe1eb0e8b874b9eb8699fed2eb083aec9276850d75b20ea3875a4954b91db432a7dba9150d0f6df62bf74512dae61455fbb44b6906f34439babab672fa4206806e916c754d031587a9d72e022d3add6bc2983071e74a257cf74c745a591b7b870af7997a5c9fe8c44f634806f90706baf56855717b8bfbea94ec2a91d8dc4d7a84396d62ce263856112e1cd2a54a963161942d60e9fc24bcdeef4a28ad08b5493e30abedc7b6f5eb5f09d310f22463c1dd0c22d440f15878bd17723e7af5f007d6b6f507d0680d2ada19a4b62e6676b7c56b51f98084a601affb10f9965796e6bfce25a9a77d63189f601c401b4b93d6f09c3482bd01327d4a97f1b4e2d33bfa161f96a5c35dba8ed0157b62ee9e3668c75e2a67ad60dcc9a1ba171ab56100fb3950e3e4434fe34f2ec59a37ad56a840ed331957190f585a76cdbd963a64e14f2b62742d6926cd173f08ffb319810dc56c5286b50044fa1c8864ca6388abae25fd1d46ee21c220d44bc01c5603da08f941ceb6c7f3ba33e1da540e538089b25194d918b774e760522b11be571130e28c930e8545626c69bb1e9880f006036226dbd134f01110cc212a6930e70ac892557d929c5fcdf155b154738fc508edf51abc3c0759b65174415323d5bcaa2896bee77450e6a73f1f9f2219ea7e09673bbc23af6783f6d9ce36fafe9f38bddd9bb494900754cb91dce355f6d0dbb4463e87dd0b7d2b38e2c25245e13d4268fc438e211f89da83d565ac6da0bf9466a701e24f5b0a39fb5bad4f4213c53b3d03c687a8ece2e7c8f5765d7adc25e4c5c2a6961aad826be9cdcc1307c79a3eeafacbc4db8e48eac7265e2e383ff89bfa2acf0bd42d3b4f39ca3080b67747b57bb398309c822acca02065a82e8514c573c81cb0d4ead3b3d761a06fe92f66e949a4efbe05d0321faac9111b1ce194b8a917b1511e0f73d24887f413824c9aae3ad36f34cf1c431c3a469dc37daeb39a02764fad5d170ce8ffb6b5a5249c7a88dc1f98ea7301ad72d5b23c192d7dc5be98e7a32af854d71f0cdf8520cd3eec9fc8afa8ad40411041701b96ad2635173c316326c9e5407ddf0bc17d3bfd2907c2f018080b940fdfbe2c816b8f79c82fb83859041a4526276a3280f03fc60256de0aed5ed74d91448ace916d4d4a631d5b82c3ea7655ce869a652c1e05cd871c31205999a7324f304f7d1c4b06aaf97c8d0226e4e1d472340c4881a52e43b392e72a30838669fe94e8b01693e23acd91fd168cbec19180667e1c837f947dc8bcc22c1c18f9e3fe41fcc33fbc273da6b5a14e2ae41b107a0d9b4677e050140ca4be49b6ed2db3a4b4842742a47c785cb02359d8f96c5215fa74ee5b1ad99389f4c7741b7f916c03ef00a33398900922f00b128e613db38bc9226a3604672aebd4d6ff8b6436298d9a497b669aa3b94e3ef2932ad6748e853131524c4cc106572c1204d3c8945c71a04bc06172c1bf8cfe10b0e522c4379b59961f90d2beb34f74c9d0df07eb8e960ccea942202259a080603546a97286a5254b648cc8584bd99bcb292e788f065d13522c321f740c9e62d0875ed176b2af7a79323f7e80f7e84bd57945a516016e4cb7e1ae2e02cef348098e3c12c2e1643890345d55e605f008cf00ed0467be84682f6392e0ea60a3ad8284d2b233a7665a2bba8f52b3eec7d5909c19efcf995964c4c194a618801ca8aed918b2b15afee3fe4e67c35ae3c0023be6e21995ee7cd2aa954403496ea85f689f80dc447c4fc7c662439381bf701c39aff23c771df5ab73fb8b511148cfa47dfea0dc8235ad5fe2d16f8a1cf053ec69d6026f9580d1a16b77e01fba6fc9f13e98548115bb696a9ff28606a76e2a05da3059df95d5e51e2f484ba9f03c790e1da1840a004065a509ae3e72fd513640491fede3f9c396e695670b29fe8d5315dd3e4ff86ddf843c2f13997e0c9d046162e88f6a6586926da6faadcee8491790842e8d6fea3c28d88f48e1ede41525c152f6ed03506435fef721a19a9049134b9b92fb635a26351ecd5b81a8ae718cd4cddc2e79e472e7b5c7380595fdbd5b44e7c7810bc431dd65ad4676c2e9dc22f3c2df6caf1cbfefd79404d24a0e2875cd28b895b3ab1654faff3e14d871022b7a7b84b88ab042be3c8b061e7ad12875116a54840d5ce11b80f1fbdbdb752ded7dee34dbde9026fa21873575ec0279b0774642df6eb1bb8b468fc682c9a3446491655a07e5fd299a6a0dc39b161fda5e252858a18783219f1788655cb2d4ec115ffd9915ca238ddaaf207038e22c3b9038d373e652627ef4c848e1b3cc3045b9651ab106e454ef7fdffc80965b2d899b2512580b539200d0387d37cd6c7237cde171533678fe8048f771d17904379495960699906f99f589715383fa09e669e4ee74ba1b8a69b749973b0f6af5a54cd45d5c2cbda53c83fd50e806b6868dd5f930ce3d6ca71d228e95575b747981dd143c81fee22f8080e8701bf16ac84ffe2144ce05ccfd622f8e846e821eff4924afadff4e36ec32269cd9f71a58c259990e15ad744443a6b655d0529691f46b81c68c56f6e79d298f1af87fef08d0dfc28bfc5e285c655d3e8e35ebd3d9cc285b93dd30f6265c523ce150cc51671cd58fe697d51a95189588cd130303b66e0b94809f5eae7597ffd0ddcd809ffa55e28027fa0ee5d38be34410603038f16e3c0a36e7fd7f321c9fbe4a1fc282974db9579f65556c279129772f0f70c8e1cd98fb45eb92f55d36b954254295b04466657dd4dea5e47d8a2320ec2ed85ebde887397fc21cc4b27959fde378bac48d7792a9ae3735eb87132bcee1945b95d5aedfa5667d5f4b9d56d335fb1dde3939589eb7ae67237f023283b67fefa1bd9bfb016349ccd7c9691723a74e5befe02acd60c5f97d8a1dc81b6f19dc6411fca0468fb4ede5dd3e800885742c0326c9597bc08e85896bb396045d1966bf0d523906f9458fa4b4f3dc078bb2398d63f0bc5ade43c61f51e970d69f10797c56eadc38454a9140ec6927f209a119bf0ededf2b8bf9126ec43a7d05bef9f264f2f67c0ccf93076e4cde5495377e9a9036c302a4b2a09bac31f5553f363a2857e35d98a718178cb7cdf6f3bab2c88ea764cd7bc6a9ba4b3374a8bf80b4940355b2ce9270a205a6b8529c46e00927f935009c2afe3e409e9a7313a90758d9cdeff9412fbb012ddec08f313f2923fbf76edc28f247e6ad86d7d095c48bd71c2d7cef574d60fd244db4f0b3ee9c381d37c3739bb77264f641be86e343d2ce7d3e795b4ad5d00a451355aa37c2f4af6c7ac47ad8832e2c88e5ac1349d59d3b1409735e9b42eb58d4bb17884dd32685458972a0681a88f52a9a5daa71f13e370a46980f72fff57f8df1c55d98d5b2fd3bfa6086afad25d143604ec530bccea85f816c4590d33abd52856965abc7a694d9f26253fbc74bcf4b9f55969943b1d3c5a47674009f2af0467dcca25851b76c279af4b94a7a7e370eaf51d2631f89338feb91ab2b3b775b3a4999d1fa30bf51925183e5bd147500d9ffa5ae26283a241998397e01fa66f875288c09b53048c5a2e99062909ed902a093243cb6d2689042fb7827cde69b432c8929dd3ddc7de00c6eb32d33cdb2ded202f3997e4e11cd143c102221844eabe4b86e73396cadd0b1e5e94de8c26889b88c4931215aeeb390f0c65a407762d3930644f7b090b8d33621e7bc87f3d192f74bde869a7066dcf5253b203c532bfc4ee76227138924d5755626783a3060bb68fb7be325b434dcd9901c6d26f63ceabf393d7d45493242c452b825af1c93c942dbe11cfbb024bffb88ffb49d02c0915ef044597290df640d431877205b6d7ec655dfb6133ee0d7e593e1df8582bfc8c84f9bcafa55193a4d4eea608a56c7606da90dd45effffb95407548a61b9d41808484c83f2cb6fb8beb9cefc70a6bd0794116a816ee47672fe0accee0b47a6f09f68512b206195312eea6045938490458e600dc28cbe9111e3522181cfb47fb8859a559fe05e4739b6594cac5d1fb28f3a7f3b822c30c577ae91ef3a6d93c39658790b8a704a7edabaffdcef4c986e006a6ae6dacc4c77c500b3114ef9f8f105e0ac4c926536a88414c898d6e7aeb8123dfd6e557af6579213eeb1615e0a4aa5decea5a3a61a639147ae0ae4f05512c5c06b4c8742e274565c47a143688a6578745a642ef022356a496e3957df2607eb2bbcaab64aa0c7d9aa95528b6715caeb608bb3688bd62c1cc2561a918cbb53f3290714cc77c90d68cba9948b33c50419e5d70eb9abf594d9abb65b5051ad892fa76dded5d7a49f356d352dcf9baba6f37560b3b2d326509e0de2b41768797ea59ff13ac43ab995151cb0858b711aefda8f2841f8034c1023637747de9644b549b82b388bb81a8260d1ffc74ea6b40837b7c688e0b2650678613f048fc9469674298ca5b25ce8eac1d623279ad5d7db8a89844814b73a2c8433b3e0450cbcd7c308e445bae086f3ccc034eaca5b364a9cdaac7097c218c709880d2c9a33b683f32227ffd70e84ddf4921df85b6c5338a5cc15630d27fbb5ba7843f439474a2d6cc452d10eaf570f3a8f749e75bafb1246c29dd3be3f6f864d3fc11d8ccbd7d133e6dc6ed92cc0a305acdeb34197c996132c66746a15aa1bd1cb73df33a7d78e46f5c6e40a79c0a590629b7ae853124ed81febb74176a7189c7875bc5e2af91a6d595516d6f1c3fe3631ffb2499a183236f52bbc351953e3e25407211fe2487b4d739d0c90f802f5643ac801a9987a5cbd81f4bf2b4727c3412a90ec37f553cb9c591257f7c528e7f4732e2d0fc7703735dc8aa7d623e21a19ac3668bb2f762d69ea8756c4d3484c0fd65545aff97c655d5d5e74360927c0ba160cd147da1db5851c062e9cd8879065ab77479a2e074cec7c3da270218d5f88f47f0d44f3ca539310a2f02f499fc0c66d8982fe2238400e1900f5463557eb13f3284b8614631d503420f34ea48701aa2bf1326b97067dbff28c8004e38061eaa3b7c3a396ba8f668e78edc74c89f068197cc737be1d4002a169f5d42cbf2aff0e9bf34a0e5afd7a84baa201f24e80c331db011363f5e48ae90ccda2ad2dd0b08c4c914f04fe0b6b4e09f8240e26ccbf9be88254d4e65261148256a8868cdc912a8628535711aa041b50da96dfd65d3076486087d39c5740fd0cd53b1e15c6f5e7374585894625c727174ee28fc90736ca31c1e9d60f4", 0x1000}, {&(0x7f00003fc000-0xf5)="a10e37bbf872e33dbe4aec62d8895ea3c509b9892a9ed5b87fbe2457d5ba4e6d101def001a4bff710d0c47b766921f00f690c4f25ac1c19e32ccf44ed2758b7a7696614048a4dde9fab09fb48f26ebbd5cd3914ab48ede2a6bc6f0fe7fcb4c8b5677b9099a7588b66122b09afd7f2539e89c184f3f8ac132006df504b7bf17605b3024478ac1da60e71db7a04558268953b2be9aa739d01ae451091c0186878d171888bc0844f67cceb4529cb5757e5ea6340238d9f4f9e2908ab1137c1b2740dce19f888236b2c3a3c533d5838089cc0693c1d3f3c957e7b75a5f9b9ffd2a2513de872d5a622968b80fdf9a09613e3c6ff0c4bf8e", 0xf5}, {&(0x7f00007b3000-0x1000)="d1af2d35c684673ab6b3deb41a422415cc4499ecd775d0647a68788d7dc56416c481237c1215423dcb323961540ebc78e9e9fa39cbc09e9d3733fc1bfce8107fa47f110f823f18315fb6c04d739594a393f747e2d8aefb575fa59cfedd81c105758a76694c50d8df33aa82a25bcc471f42bee1b51914d07d14c00fee2b96d6f1775ed7a72751be94a7962f5e106ea6a6270fe7c10cfa583c8a2023f0bd836c1e993155ac8aded264fdcc2cf2326115270d5e10bb71d687322b7b1c6ab0ed368f52c57e76cd97ac53ad74552e334d388019fb0af79b097ce8211f4eaa2da478c65deb22decc97f843b1bdb2fef7cd663108e7491d4949fceaba4a0a7460a716578e2bd53b690e4cfccd84576e885cda926cb24faf75a8f03234753c040269a84b26156a03754043997723cafec3efdf05587a8fcde9107b15452fb941df8ed33088bab74deaac1d0dfbaaa75574914a6cf116f300387ecf8b9e02d3deead48a9f6db6c03c83e7e6b750d289dabd286d23ddfee8192e56096209d1803b221af19ef4fc0d4fc53704d1975fc080fc38de8d570a7ed89db815b1ef6958cd90dd62f5789d9a6138a25c98842efe0ceb6d2220aebf1c12095e701c198bab565df95213a6d8ab9c12e89090cda104d3ccd29ed18cd1ebb75f69affc923735872fa0433d38d8136b53cc2ec473e2faae924b5b190cb612ab327f5693eaeb8ecde349d783328f6ed73462d1b9f3ff41874315fab30d04a934e29e1185d5c17d3afe120eee0f87d9908c574779b56a27ffa7c89d7dcea79e370a0901168d417ab2b51e4e7ba555a4b4e1c897a96fa85922faee6e6e39e9f9f3bddb71dd9c5542b44f50491c1c1e4bb9849fb9853f7db7ed210fe957e406a397b2544c601fc85f069f223e31a5017afa2f7193d4954333d449de92db88ef36d81064d53b04947bbd680cb8820c69190017b6ea7468afb6cb632480f6ecc080731033fabb3e202ddb8dac7298aa24286962e23da3c79c2e0623a41894d2888ec4b0e366a451dc90306aa2c31530647912091dfd5793c29546f5d5466b4c1f9a1f65ac09b8e496d3b832fe6af44a61639c8a04e4546016ddc12ef871e5e1434ae0adbc95fd341069f1757aa54c788b7a76cb8ff1bef92bf0b088379327e9197f759a09406999041555a3208efb69f0856bce034cb3d43f3f72801c4f5762ef72eefdddb252f3791dbaca1046fd990f25630209d73e61f4c4ca112ae3b5cf6bcec06174d2edfb7b81ba56c95a106c4e0a18d7f5eec384eac723f67f2897ac34ce640aab86d9044e8512631c0e1b953f3c20852d72d0e5abeaef4eb379a9980069517ee64188773b8ea1a0eec4eeadacfd045bf6eb4a8ec7faeb04fbd05097933e57bf6c45477547d7502114430d91e0d753fcb4b4fe03125d8c68482f1b1fae3c16cb1ecfedc0eb90252358cabf08e781d3c2c1448ee7e3a3bf26551f18b467736cfbfa20fde00b6d3bba800c17be8ce05cc93e4d629e39e335c4134c321e6443d9e07b8c84f52fb31f51cb74cc00fc85d342c8cdb34c93b3a7a1ff399ab17b9cb7ea2596379f620d23bc579f82e6d1c6a751cf96a651350161d0c4c4530143440801148fad00df2ec3dd2018f23da8fc5a18a9ee8857227a2982f44729b70b851521d90c7b04fe9c7c4145facdec50e8af2ca254f5825e717f01d18b48048f33f9fbf60b0f262860394098d095c8e4b9eef1376c80052f28b0b08945a8f45044af58a7570a13eece9a0e432d7551128e6ec85341da8ba81c202eb4efcbfcc8b9e8b8d1f0b8937fcfc69821ca3c8539ae53ccb593379d77b7f44aa44fb77f895a9107bc7d82af14be316b99edc93dddd0d64f389ee7990e1290e0d315dea04c51903f30e29e3f2e694dd888297c9697764cf6ded21f478b76a9f49736c0ec9b1cea7f4b80b24a1f4ce5a60bf383fb141826bbce79f74d7c233b1b2d3c81c631b17463e6cccbb6bb2676db75113ddf7bba0f98f3d289d8f090b7fa7047020cbd1e96635813878c6d771e4911efb0193c7654186e8ce0bb44701c99919c5dbd5f3fe58ddff5486f9f193b9048ce24582af23503d3356d03eaf27263244d9f0196a51b63c32467fc87e97f790b99b1f7ff681ba5466adbf5da11c41936dad9a91f7699194f2d452810bb7f3d3dcf850a39e83e152ba2d5647d6f1e7911ca633cee8b2d3a0e3e0b722b1857e20e92fc647c8db688f2070c4aaa00c32c3be9855d7c348f439480142e705e33a523e1a7bf77a04e45f32ee6b19dbad29508a3492ad3ad426bc6cb920bd8b09901bf573fa76d6edeacc4d96895edde723ac524a7ea6f811320dccc5902bbb8debc2745fa0ea68d7bb2b0486b059af1ea8928a72fa122559a8b2478c8b88c10e1826e3c48ff9190605e300c5f1a3f15181d82aba02bb6f4607aaea62b42c8672c743814832e830690b52486467d7001ea00549bcf689c33f4499380354c32add0927c168a47fdf1bdc5514c7c8976b16b73c03450bd7d148af4b2c16fda925753091404c62a91cfa33b6d44afa49990bd50c885d4143d33e435213ac9fdc4b6b0b649a79348f6dd7c64a68f443a9bdcc8e127b7874ca82ce65de0fd1afa19440e065ab13b97ebeafde3846e0bbd4b918de894efde6f785f582035acc166816353f360442882d9277af8fefd6809c3ccfb3e5076d6c802ff769b2a47897d541e4a0b288f6284ba46d14cbfc36567154c98b2d206e5466037cdab954f88996fe7c972b2a43ec6186f4c795d43bf532e350579b92f29e41b7c10acdfe2567f6725bb241006a7b443dcaf2ff3a5f3a86603835ab0badab4e0f7697681f03d02a4e7dd5f11927b4b22accbe71c1c5926dde9a840da7e224866935416d8d8d8ea0194fa7c63704e8d33d22cf981927db34aaff0e4a671c1256a775c8231b6b44fbdd520051fedddfe077337b86b8e3db3f0371ad404e9a82aed114040890e8bcc231a56d37ad9ae86b5c4d12cc8bcf2f40cdd5e45e0335a5b0e84044c10c9971c78cacecab71afa1758b77583c20b103fd59fdd64bec481170e07618937096f94211bae0ad04dda5356b88868a23691337d174b86f5adecdeb94a8965ccd3f2d6c649f1bc937ac65ce6ae7dc1da7b002554427dd216fbcf12745ada1244ef4f9704c836c4d0f8d79652fa29d4864778435ed95f8149b8f0173656fd8bfb4ca8af6144c0ab9fabc881425caa1abfecf5d7f38e70050741339da0bd37ef5fe5d5e637be6c177d237eb4d8c7f2842237f318ff1ab17d28039c0481944cdb9fadd5451b772329f929a0452bfa2c810877332450a7d575a1ee557a32fcbdca39a1da7061c0c997ea8f31a61babd6928d0697027d8e8e1608ca962b9b40b883ee3796844c5fe7724aa75eeb2ab2c07291bf6e31ac361b96508b2f384b3dec96bd8c09d5f68556260c520c77f58b6b08187b440a70eafcd6c15899827f3c166865bc31aa778c1da5373045d8c9b72e0ed4d8903d67533186ab71e93ebc3fceb36e9be18188a735dd163f7ea939ef53d80fadf912630006873aa7c1d995c995531b0fc4cc62a8e58811ab3dab5e07a2bc4f61b4bdfcf9f692b284f228b810073f69488664bfbc0123a946084c0cec3794331f38031b3c382546a7079931e873d16779b65a3dbb3ec284d0b8dfe131c33f8193563b489ed1d4e4d3de803d9571ae714679d70c2d07e7081c3a7826fde3dae693c8b8590901a4150dd7973a70c1af6b65f09996780bf1875658cafec83a3a166bebe1333d448ee30cccc8638734f128450f2b06cd3c3a842e8a36ab82f55824fb40f90c11595a10b57df98936ccf516a4476725c6be76af70df4f465168de2558b13d88d6d1fed8928b545ccd043ed76cf40907361ee8a0a58942f532c291be7edbb721650cf4a298578cb09a798ae27f421b2d120ad7d414fa17921d31378aac4242e3ad2fda35fd89f7f6e86d6f9041377a06edb58a0c78e0d9d735d2e1bb6a6ddaa63c8e181f79587ca7e6fe7b8483b73dcc5200081e1d3d59945abdfa19e0bd14349d3c877b75e7ee36debcbf8c2a43b7800949707fac5421dce7af319b661d6c667c330f293bbada355eed43bfbb79ff77c5207fc794c2af5e2cf5e4e65e7defb348f533f5235ad95e4aa4d9e7ebb0065957663eb88451f8c38f083d685c6a5fd3dc43dd29d9a8bc32694d2ef9ff6ba1bad6a844ea415b99a560c859fbaea6c5f6b4ddc641469c7a90ffd55715bbddfd9d70481ba5367eb6061c4095fe469ea13f22cd6e73d0ded480e2c8801dc753d13c788c1847ae104c181ca39206268ab20629e8cc2f6e977953a88697f3bb57bace0152670b7bd553ae24f64247207f9fce377461fbf6b69d18a5e9407d9cecf681dc1aa5589d22926cfabf0d297d961a3dd3da3aafdff7d32229aed80adeac1fbd19254d33b82145f6d99b0c2040e73fb0779bfbf471d50d31e427197921cbdc2968a0dd553188c7c66df32163f8bf943bafeb6726ce2ef398d2fe5c5e9db9bbaaf20b7a03ae033c0a2289266d3e27f9a42a2b4a1196058e8e343d7a83e234768ddbc44bfa6351cfba164333c2c1b7c5abbc7abe52c1d89509670f33beec473d3d01a6651d99109a43ca39ebc3009d113ae2fe2c2772ffe13d3b0d68db0d71a46e7c5d519dfe078957753aed7c5dc160e296d39ccdc4a89983e411b9364e8eaf79c4a0973c0fbeddcabc86abf0a5f9e0919fff2bf996cf3220b263ceae3c2a87d5ec2015078539accfdb37a7be58540d5c8ed0bc3eb02ad22de584a28d6b98c32d47abaf4fa9f789f1546039854d2090cdedf45b4bbdaf172d63482b4e58baee2d6601a873d54aac4303c5e283e6fc7119b881bf56aeae2faec5e877a41a358ce63bb809846428c24e55cc173c1bb2ed58e77a86efeb9c3a1ac7e11550b0f5a802ee9baaf766b7e2763e66d9e0a14f9af3c1eaed87b43d872da75a03ef3bc02e8bcb3b4252147137c1fe4cf6923cdcfb8632359b8978736ee4e7a421d77307f668a120b6b0796bc270467976c5456d4581b25a862a45ba3af3a4a433ede7ff7b368bdabdde285d4df94b3d0d67dd138464578be1ded9894edda0149c67cda39650d9bba562774dd64e614861144cdd69aaa35b93e5e559b98e985b546f122a9085e9a6186b4efc42eed0788bc9171e9fed1514db1de6234b3277ec54f5dd07ee911f5400d621105e3c24a5904ccdf78826a1c7fd9f2a7263522c43437f6fdd7e4e335dd95d78401b296ed312f53a35735fc07667e97c374bebfc2ed7f5e93a70077e34ad3f10319213b6d4025637f0a61f9eea8f1ccd74e9c69d57dffaab7e7902939e401e0f7c04f421c8bdfbaecffbdd7633621080080909bf5baa934bf886ed91ad39498db47e906e0d115fff6dab2194ec324db607faf7aec1fd58f9bbfa2145fd54e97c15745037d766f5a4adaa37b1492c7eb6be66b5087ffcfaaf1a50850abca97bee73cd18168bd79d04dfde794f06e31861588b115cc9236e86f14ce607f4f891ec6fb02fc986d7b231720d26598673dc13e780270089aed957c798638dad50eadcc4ee07b922dcf9eebd988e914b4d97a6533111a0f253cc7654cd7546b7ce82d9d7423e89d4029cd37d390c1ef09b89874b6d00ae10607d8efe62bb0a6fc511e005289f4c36b3241579085dfcd9806bef285ff65ce1225a10261d0c21475d656779b7ed8c7fdbc6f71d97318352f4efcd3f2ac9dd986dd7303bb6379580b7c63842565fd6d798c54639516e68189c24e6c7cf4672835dc255a7709abc3fe4990598", 0x1000}, {&(0x7f00002da000-0x9e)="a893afbc0b3285092704431cab3ac7a2b5d3397673f39b41f0ed806501fe1238d6aaa083baa54621ee5c58b4bc38634ba4fa487f9905b75c8424c9d28ad28f68dbcb72fe408d1f3e4c266255d4fc73bfb2aca9980116649c3a61e1cb640df18becdc2befef6f8b29732aa18e1c5589aa9d850e724a36aec4e47ca292590106a0aae0fe70d1d99cb4dc9266db99de4315c6640323b2375bea86ca393d7939", 0x9e}, {&(0x7f0000029000-0x1000)="cfe58dac352b379f8ba02b902b040a28b1fcafa17b4d65839bec2eef52994cbed41ee788d8cacce331cfff4ba3756bcb8e5daf6d30e868989df08da80ca39a77aefd6933fd842e538dadcc8100b641cfa21657ac5679da851a74d995b2fbc70e844c5bb10dee5e1b903c824d1c2196425a4c5195852bf864e569357671b1b0b0a9d5041c49faf740c0ab925d315c983130f4efd3d66dedc6c2ce9862b8501bdc6ccc536d647e1b7893872b8824d6ecb8fc94779b53c177992d3bf2186d5de45be12d951a5aa017ea4b6008a0a63c6136ac98ea799d4142b81af3f38e897bfe5d792d4f0f1c6f8dfe5c7c708c91f6c60565c96b89238cc22f6171917588d48a5ca926136fd206f13ac72712323f3491792520cf69702333f0c2689a194ec4939c73fe9356f5ac5e0575efb9a4441f0f9275a3a1c0601a0855b8336bd2c8dd818abc2ae637b89de917a9fd6d1ba66f5fa5e7730f4a3926247a8941d1e2fa08143da8228146d5b56f36663ccfeabcd008e956e2b1c32bc5dbeb9b6b03796bb4521a944e3c1ed4aff5d6fc534166b128e94630619c3c5f9f59ce175871d89782ca004acc18d59aa5b3604a1f91ed0a29ead81b51655805e2b679003526d31cd392f8eb819e9e9f96dd23d4f4dda7eba6d3574e7d6e8508db0518e85d99de4a46bf1cdcf2bad9d6f5f5fff07d3f9889d1fb9863308ad334e54118d1ebe54c5704f406938407b8b085e2962cd4304321316d8c730dc24dd1b3d25648b8b3fe0e6b2380e8b14a439411b24f464c12379f5c37ded321c377d2973fb8077c8f63844290e06c12577d53c6f5a234fc493236cb0134c118146d02f2db625184750a4892e72e8a7420457671c6af1bb4d1fde70530c53958c4fc943a390a23942c2184088edc083d6a898df8a90cba9ab6a6efd77fe17744bc6c063d4892c68afb4e0a4c9f97449a959ac18df3e77ce4da718fd8516d16a1796e4f752aced524b544e8d2376e247602724664fd46b5828342f5b216ed453c1624ca98fbc38c096a4e589b567d2d5299b87f001bc6c47bbbca3ae378ef10cbc69046c4bbb7ce89e0f7e8a5ad6764b69eee514f5ed4a0fc730a2344bdf19b0a205b79281f0fd11eed9ea0068c4fb908281deee89d1eb65058593b70a2d019d32ae784d7cacc4339db9bb29dbab00c2231dfe75f969b34780821594b48f6a9d89c7a0a15f55714c571d107c128aa5ad588e773f32ca38a63b6b53ed90b0c4e5ade9069a9628818b5ce1fc27ba1a4c4cdaeb9a9f340aff9dd397040939b047fa9fecaa4964d6140266d7f8471613b0c5e7c740aef54f19034a5a1bd69f1860b54e4cfc0e5077c284ec7d57aa315fa9097e84e24beac910aa40e7114f1bb8e50d53a2e38224f99b2b8fceef648cdab3b815aebd4c06ff716cd701b7642e286dfca8ff857d9cf331e3554524c05e3c2bc29a16035f92405d75f76eb20d37dc8b8ca0fa4d008c85e0ac6d090deb63da87339a9c0f2574bf303aec6d844745edbcc288e31f8f401867b502ea3a0fa8d7ec3d3ac01dc7ad6bb4a82d2646cae361ee196f565c5287867871ac460264e52dc7ab1904c00ecab222c45089302744d9bb81d23599a464a755b3d62c521625af4bd989e72a21bf9a8d52aed6d7cfa5974c687458151e9ab472b8840beb3d1740717d62651919939815d8959a44b85a5235321cc7e67e551a575063eee33a4977cfb2b995b4086952231fa4caedaab694f5355947d895dc8cf2537c5937aa3cec4ccbb5fc726e12f0a34685febc6762945eff8ee61281c523582111b7a6716d92721746450864ac14b17f8a7e32a9e73f9643598f0d55fc7f92a8da35fbe5842a13fbb3d5508ce4e7ee08d09c642f4a382e4895e7359ed1ad7fd6efd1e749af28c2e66e00e3214bac501371b698619ea9e4a8964f2c59832a5442a7abb091a159bd57f8547b523fd1863fb24e8a5e33fede69b0c0a7420fb7d4019e3a9998fc307a4e13a1142376401c5b4979d35c33273c7e87f23496ce73de2b0c5a00b37aa6597f7672ce1e784e0bf33aa9a09fcc71edfb351306686f04d46ce5b6066733000f9db0840729488db092cbb7dc83fb1e6d7d9bb0304a20fadd8ff1a0e297c4f2e1c020e3e70c90cc2ac5fa8052715a74d6dca86035e74427031a1e7e45c28b235a46b6cf8507c0ee36a28b3d9e4599ce47c064324358ec7ea99decd2187409903914d84bdae81f0d29d39feb7507ae793767aea757858670037dd7c000e109fdf043f743233c8e530a56e8a74615620d156bd5f38e70147d9fb5589686e6adba6c7ebe999ecea9e0904bb169b8e86e3ce65e423564f7e8108df348b039ee28bb227905cff61bf14fe2c06f1271ef86b90303213330544bee051f3583898c341f54773ea5c9d202831bfb414324e42558cfc8d5d2d55594e0cfa8493d0e85bd842d070ff511d12a81c934f625dd4b30fe81d1c35a286bc09e4196cf1dcdf22336f7e754c5e1efe4ae4d7c56d970883f115b561835f271c11374bed1d5cd79b1cbf24941c179c98f6a0f98a45336a024b065770ead4dda22283e9a816e67e7cd5970f166183abcab0f8e5e58da8ccf08fed5826ca0d1a7751160a63cc795a1e3eb34ed5411156a7639c6997c8427738558fd7f2a09d4e86fe6742c1e8f28a3a7e4245ba0ee683a94d5ed2a239b407e26440dc5fdcbff9b4e4c896a81ad4f4d027238aa23a2c249efd6295e9facdf74265703c8503b5ec7c97126d2a2565c1108499f611414547c009c0176d5cdf5182618b7eab66aff5d0c56c5c3a6f1d4d64dd2a0b81d412505272b2071f6c38b32849bfdddd7b73711890e93676f9fbed98bbb3ca582d78daeabdce98b10a27a01296fb57fe9996ca063b2d959d6579ceb3e9890d1d8d6447acfcd16bf58727589ebafc7276c4829e8de53c6f54ebaca69a0245e15fb05c68667e2cafa425df262f62ac71cb196526bb7789f8fff4b7251c1eacef67643bd72739fe76b268f38e026cab7ed5d9a0859917953d517b256a296ef9fb44eaf1195c69688ff59bcd4b271efa4889df44744b93e73da0c4c0f5a0e6f58d601c8a41ea86820195606b4edb649e9d7417b2858c9f343f11ea08de972269afb1b7377dd1ad3d80f79e86bce2e1da57564a29478f990515a1d5cb492d2828776845529a93d9ca2772d5fea43032420e2fd72491d25a52e792220b1b3fdb704f39dcdc338617bcef279d17f45828ebe6dd8c33bc99ca0fc1f1e9a2eae107de6e415b37b7f237fbe2a9cfb3bb233fe5166a4ae2be95b8f755ffc6708330e08a6d71c7e19546aa788cd1b2c05fb583206117023618714a9799a18105025a9ee122bd29376471a04f4f6597fd3a1732d40e73c78c57e85f84eb940e408fabc1913f9aec75387b3911208384e527b62fc56ae518c8943ce05210a6dc194920be2e10a90d8a0f254378cdca4891b0848d3f1c576e3702920191e5ce0eba8a8c8fb274df856d59e82809cc085461413327f95c504e06be7b38efff69e929c03a242794653ccdd294ed6ba74e55dcadad6e048853273e067f5c70724247cacfcb53bde4485bfcc28e35f03be1601a4e80af18f653efc858cb9884e6158d5f2878f21ffd2723d4f4c659e27c1ed03b244b6d8689d5f150077c5f943552c71c18984e4b66ea7d9b353148c017c2387a99cdf0be67e8e539fa2530e0ef86cda0581b694e798f8fdc21d640e349a3c822179855f6e0bb53f43d9f9e35ecb4de65b023a03ff19cd80e3954b9cb7a73bc67de49a73407041d8a031eb8a8660b2f2b802afb11241a42802f126990f736850248accd2ff92a0f334587ae3c78c1816eadcf317da68193465f3c9177434ec29dbdf7380d874d7f0b06707d665a482dbe8aaf2d223d4642686227e4c8e59a363450df356cb074aab018657b2a0c6b0e4a7d93a3fb65a5de68298d015e06d2ad95a5336af132fbfbe08861c3740225ea3eb170ea5fcaae8b6d990608187b859c49410953497547516b638dcb6e8351ea19694d74e4efcf278ce4e04787070b506c4d4ada5d7a3e0e0e6d90832f523ace53b9743e3ff843c519c011e120088c9ec1f98007502c05c34c75ece502d53346b3041f76c4383bf20ae7759b80dfbc689a89f008b6aa3c7e96a4f24b0fca40e43f98bfd315a6cfe6b2d1ad97457918cb8fe1034a5d2826515bf27aa90231793b885ce78defed236173a4e5d6fda20fbfbc85e0a33ff06e0dea2ebfc07d0b528e51487f8878a874c3b88640829eeadf2e5575ba749708560fd6a5427af46ec1b37f550f0d4616bdffb9d55cde48f555fcbfcf0ad2bf53d4dde0fb2a1ee72c158d382235e6ded0b86954c9b16a8f7d56872b71d96946b019b449e9d2f5078164ae5c846631e8afb21423ff51f973bdd92e97c7d752fc38170e2e0b4151b9c94ed62037a008bea6d53ad19da281bf11b2541cd3698d3493e70b1ee45896c83595ecc63aeb9f04784fdab713cece6120a56f6bfe71a500992a8cf987460ad0d3a6d98032d73b6fa127d7b4c8ecb263d202ba7d0c887d3bfd8c09e1d8018e86cb46b924aa4b51c4ecb8037331325df3a6fa9b5320b1de6daa40179f13431bc3b2817470df251f95dbc87c473ee88a3bf0c7b96d9bf0b3907cc5ffc6d63fe8e8a9190bae7f71cb99b24ad73ee80ed2722bf4c3fc2b223e077026f145408498560a76c3aa8e00887940e61a3d1c8ca16235eeb24b2f5a436e2c4fc370c54718c5d7ab1511da9ffba78df3811671cd9adaa2b799fe3cbad3e25c59622d897b7c05decc24ab2b6ad3b8a2167f37bb0c9f588c76e37c54a2913abaa1b6c333601783e5fbf0068cbdc957e21e54a524ed70114dd1df2dd08d34154bc9bb3d45df3d51b30abfd8b8725695d0c0b670dacecd11dc241326cb0c34b5adb03645454b1c049da15674f24ac8757ec2a5c9f2b92197126908b2a4b19b7dc9b005795f17343326ecad9f72977516a89d4bff14aec4fa7f1b1bfd60e8dccad25a5f21398af8557bd407522c6f0559606378d0746d84610175a9ecb2cacef4bf04a5c9b8921104eb677c20e4b9112b2ad299952b16813b65c932498a323f78e74ed149fcdd09adb5c440facab8d2ebe2ef074ab047e502a505018acb4f3604fe9cc92759ecc2089b5537ee0e4a00e9a05b12388a67c4715adb8cf3b6fe2a278c7ff77b61d9f3cb6d19af05b13a8162f224f57f749df095d96c2762dff6047a7096673d771af4f176fc2e63940175e4c760edbb8e3e52fb2ae2a286b00b6f8eacdeeec1b12c88975fb2444bc7d3cbda8be781d3e8c60b2db7f1bd2ade7f7f5b5c89e089218982572cff2f429d44b614cda46718472e7955d89557ac1118980e413496d3461f7f97a1589c4dd49c587df1a90f270debedcb58365114daa9aa03e5694450d203f34fa8ba995437048ebbadc277d7fc1686b7fe87ba9dd1c226bc6c4271add946d934bcda39126eaac81b4164960f318718fa746f31dcea7e494fb1e1b6de89982f8f1bb0b481fc97e8e94ed5dbb2362c5eedfd5f5263104c52700f91a052bd23becee81e851bf43e786a0da6bd1308033c29b92064de60f4a8adb1b594bbc78c63c840ef7e0202db9e916df2add90a11f496a90ffb6b1d67e3d23d2a8d76360a4431c74e8ecef083c312a52c15aace5084140e432e98ed580d857b41aab434004af028a8f84ae8a7d7627ab12e0576929bd0290c2c00cfd25901dd88e1adf8857f2c60986e101e67ad68cff7a571a214305cbbb47e68590951052d28ef547329f08a6caeaa435ea31f29", 0x1000}], 0x6, &(0x7f00007f4000-0x290)=[{0x50, 0x1ff, 0x8, "d7ee3049aca4ab272c3447d9cf5ab842865b9d40594fd7d89afb4b749a75a185cf992add94ce7bc15d4bf0d8a9b329b22a4b0dfa3105c59c674bca"}, {0x88, 0x13f, 0x10000, "7d42a927cb693f5e24981b67104d34b760b9def0baf111b0f1edfa1a2f9732e08b9db9ff4402ad8e08ce41794a5138df9c2e371a07c5cd1a90ece0fe09b51e51842d506318ddfb7c9f0c534244cc1aaa4f919ca77784c21cf12ebd49e0d36eba00aa71c11f522495235c500bd741ec2247f8e1eea61f6b84"}, {0xc0, 0x13f, 0xffff, "0f021e1e1b8ef65946beb9579d2aab900e00ff453b25e3ddedaefbd71b7e56a77b2ad889c3deff7cb2a61554c08c4bc705e9f30b82bce750fcd3cb830567862242fb573845cd561a04f08c88a5db34e2b1ec25ad3653c8654484c893bb86f535ca208f9c07f6f3bd13f779842e3e5da2eb9f19d46bda86386a65cc9baacbff2fd20f1651f943dfe5bfb457001143731afed22dd6ba164ff8c44fee2241090b25601ed605ade082926d53"}, {0x38, 0x11f, 0x7ff, "2e7209ea503324ba17f03e440e56088e6115cea3203b9cca64bd926f37834485b8f6"}, {0xc0, 0x11f, 0x1, "d57c1c6cb53e2c89acb5ecd512db520db2df7d903aa6bbf9b714022d21c7c28d28e517f54af0417a7b307b48f99dd00fa1dea09b865c6888a7213fb9d43d99ec9e49ab5e1f986330d8656e7f507375c0309a40792de1ac8ce75b5c74d332e9c2dddcbec5d9de81c3098594e6bab00b76a0f3362512aa622e9cd537ef9630547fb68859f68e34d93cbdab1162e47564ee3f261fb949462f8378c845175358dd1fa7ee33f2eba63dbaccf3"}], 0x290, 0x8000}, 0x1f}, {{&(0x7f00004e0000)=@sco={0x1f, {0x0, 0x3, 0xffffffffffff46c4, 0x290, 0x8, 0x8}}, 0x8, &(0x7f000076f000)=[{&(0x7f0000145000)="e90e406de11022119c2f98646e109070756131ce85d10b3d990c5f99c0627f24a3bc6b3aa43f97e609a0c12bb1d9d02cc334dcb608ba26b5832f363bbebb178c25a346927cabc854ae80c6d1a4ef0e1fd178ac7a69", 0x55}, {&(0x7f0000fbc000-0x1f)="76f7d0889c3ce19d294c2d32382dd3ec4bc4136e771d1e6c5b594955d0e1b7", 0x1f}], 0x2, &(0x7f0000776000-0x450)=[{0x40, 0x11f, 0x9, "cc43f3eb0895fc20901d4f6d0d8930a3e8d9ce2705974c7ce4cc01ff59486645f0967590a49a6647a5"}, {0xd0, 0x101, 0x3, "fe27cd3ea2d25f5e9bf010c4904b00466360db8f3e30c6b62a43225316b99f33328218efec172a2a8adf8dd2344eaf1784a37dea94f54963deda0e425468fb30bd8219e9439d2d35a3ad22f57a4fe1892955e9c7a54c76eead46fb9894411fa7c16ea410b44585623dab50d2b4be34adfb5dd3bb33698f85084baacd5012f8a73270145f48750ebe3e606273e6773dda0207dd68c0eeb5b2a5e2a481e9952e522e27803bdc7f12e8cd43bb405c8d1b0b7364e2af052481e7dd4ead37"}, {0xd8, 0x10e, 0x7, "ff93fc6a636b41439ca72168fe962ae31cdf16153fdffa988ef08fd11cd01f8a4710d198cb9e89d12940b9e87005a633d2d94c54a92199013a83898214d94ff985df08bae45a2993a300017d2fc20db7cfb40cea824c6d38647de909413d9955170e477a33c8b639d169abaad2754e15ffc18c5826b5c4c1cb7e03963b2bd7e02229229f9b861fa438dd5f1ffda938a28ce45cb91c76670ccea8bfa8d1431cb990f3b3a97a3a733b6f3a5cf25a40b74a5247c015dbfeec96a696a1d61c8c8480cdb4ae0d556a"}, {0xb0, 0x29, 0x0, "9404948da1d638c6b556cc27e84374be78e30051e23d4613917905a3b45ff6060ce7bcacf52ddd7ba3dbb2bec7df9f86ef9c0a8a889e795e106b51c547a4a9f132ecb4162ba09f2afc5a29ccc5ae9013d6ac718e96dc1184e9a7aec2077d963a64cff519f00ec26e126d66225612bc33d96b00ad39a06d34077958a1f5de6e23a5c96697be0f51e3f563ff4cb82a83a44613eb3cd7e2edb99604a771d411d7"}, {0x48, 0x10d, 0x0, "d2af6ac1cbf9cbc38cb26f1c0ab261f4933ad5911e96ac351759afd90030f5dc87ec3b4b0b02eb7f4dcae006b20d140c0100000000000000"}, {0xe0, 0x105, 0xd646, "747dd1a0a2ad323a46bd1a4454072079ca3092881c97bfb0a322f1f7e212393cc239383ac3cbb21596dff67cd10a1a0aefd2ad98ded6db54b120c6125870aa4b9249fa584500913ad889ae1c9b9bd2f07e2213d5336bca71091284355c04f16641aaf3778d1485a13a352bd4a21650018b5e16703b5efa1917fadce988b872b977b8c35dab4f1ffc2e78d98738c2c1585a53ddfce6d707590a8c2095de57342338c5d1fb2a50957f9c84674a4f5466c02629017bb6dc86488793798da5306181cbb6cd2952118e229adb92a8d8569d"}, {0x50, 0x103, 0x8, "e4096d8ace16fd8e66197183437dad32720b4afaf31bbf0ed6029937196a30f71d4e5d1eb6995bc7c151c082072197864d3f535a5e2d9101d6f855"}, {0x40, 0x10e, 0x8, "e743a3eccf2e0f3c3bf88e0342eea01bb4c6211ff355b02bd780be5587c8bfedc4abfda37b28d351124a8e"}], 0x450, 0x9bfbfa926d1f65d7}, 0x1000}, {{&(0x7f00008c1000)=@nfc_llcp={0x27, 0x8000, 0x80, 0x6, 0x4, 0xb67e, "6e611d6f48618f3302dd4154b74eef741fbbae3cdf8ec55a7623adf03a26f2faafec40b926bfb15e62e5dc7c7645e872abcfd4c53ecf8a21d74ff1719a554d", 0x159c84ab}, 0x60, &(0x7f0000b91000)=[{&(0x7f0000488000-0xde)="8c3bc62ef7499bf724e0943176e5a6dbecc124fc88bd32a4650c2f0895527fc0d9e353e9af3030c277912f977d954d756b5478a67cf9ea9c8eee410607fbe5b8f053ce1d12a1cb2f2596d89bceb97b490eb9dc29cccf59fda9152658f8548e88677272215fadde8f2b014a6defd90329dee9e86ced6b8a2e2aeb26b7b2a06cbd35b6dee495ca750b29403a44f21b9a47f6237eededfbec1e6b80e02e7a63f20183896cddf5ebbdb4d2c999e5d037b54cffff2cb6dd9674bebf65385b2f33080f9562695fba65deef7a636c7f05b0751f2a92a2a194e6cd07ac89da58a471", 0xde}, {&(0x7f0000d87000)="835d09db54f9b02f8075bb0fe840b6f1852f0531c93036cbcbcbc77f851ff78825d43dec2c2a64b7714824fb3c8754dd28d33224b0979a0be93942522b0bbd527562446a662764895c734e6598e13d5d76cfc50f1aabb4685d4e9078c600d4142be44439f1f5af673008779c95769b55b18b2f715f8618a4529be3ce5b9ddb77045e77315347aacb9e18c13cd4d8c8015c43b64b19fa1848fc56f275ad2167969e5f77d5291e06e6c588a305f54e210edbb318d329dfd9960bb46c5ac9fd4515743b3b3f79caad713050", 0xca}, {&(0x7f000015d000)="252749412ee0ba0d3cd2a066c5883af7bbba1f8514d9732c5a7a2389b93b6ce328b5422d9ddc3f0e6a2281d848703cdd31aea8071f1766876cab0346d22587023143e328b2fb7099555cb0defb8bfbfb5b6e61dc312d62263199189576d34ffa66ea4244864dbc5e6694b39cdb4a2cfb7498d60f12b375f2102f972a7c791d066c3fb61b6b2a17", 0x87}, {&(0x7f00009b9000)="c4aa8054e82d4b9403dfa4cc8cb84ec02acd14f07c7d76fa1e9b1c08e11cf0e703d75ba5929f4d835351f4b78e89f877cf8f7f9964343703dc3d82503f1e1dd99b1f27c277318d062ddd499196dd4acb5ec925c8e49088fc06c36a240de1ab419359c36c34b0a7e23e69027aa75087fd7a13a62611e5cd38e4559f22a6c6bed9c3badc13e6d305d96d2f2a28fc15d6ca44ae71a7e426454eaf00002adefbe7e1be6f195178f22a4d56de17830185bcc8ce6cef2acb2d9bc672a0f79502d09e05c95b9164f81d0198fb7c9455698d11fcddfbb7b2d9f1e21f9b9765be5565a2272ad93caeb5cbc831bee9b93b63160a", 0xef}, {&(0x7f00009d3000-0xcd)="905a65ddbc9c8dce9681ab8a1a47dae78aca48927064da47063c2b47d7056072d918337c5d34167098587fcd4649c59c1551bb622749ffd47a2940ec248a2c39cd66d17233ebeb00a1c8cb4ba2db4dd10fc779a26a04a10cacb26c82717d5c853847f79d20d991b2efe46dc2915e9e3af4c8d4c2eefc72d155165848d60af4191ec0df1942c482a7cc4333555818ef1d2b705dff8b2c006ac0bf88fbad9b83dd702a8a51f36748722552084b7766150745449d1a78cd06e6f0679eedd60d91272d2c0bfd7736b8ad8fb5f21791", 0xcd}, {&(0x7f0000e98000-0x68)="da403c4e69c6522ce76ebce2b78b425e2f78b589d12809f3d68518f2726cf976f7f90fc4c03978ee5b6397bd6563f7f8650efdf8235ee4ef5343044a1e7c386185f52323fa7999c87eafa14a0c2b6ef3fb8de0fd30a3b71a27d3d300bbe03af564a9c05a4709b0ed", 0x68}], 0x6, &(0x7f0000a75000-0x1f0)=[{0x60, 0x101, 0x401, "85a0d2a476e425a8ddfc3038f247c4bfe2b911c5e3e5cc8289687ce4a2312df2d145b383dbfa7cc5a51d6a3da59790a64f1bb86bc3f25d0b0454ed45fe5c2032af87b86c43336a367c1030c5ba03e5d8"}, {0x98, 0x110, 0x20, "de98231ad45dfb0ffd30b82e3cf9de4f6f1e66159c2ff998cd41a3dde2f214c89ca83146997ac5d8d40e49677ab060fd16b26d2b37f2c4eb6c3e4d30df5ff530842befa14bd0c98b911bcb5fa2de86e7fed33785f6bfd798b14726f7f93aa2bb2059adcb7ce836578e454f442681f9a91aacbec0332e164b17ffd426edb925ca179e92d941064229"}, {0xc8, 0x10a, 0x0, "b4f8228a86daadc35a91fc0f7eafadacd818cfde44f9f64f89542b6a1f0a7d72008d8a221e15fb38823280b376737edcc30c8e9fa76c845a575349a7c990a5a72c7a368d64ab5ee600392e93353e75e90bebe15543646c73ceea3c5ddf7f7d2e3222e74d6c7ced8ade761e56371dd9fc115dde32aac11bcc04de3ede1a28f2f5600aa0775a9642069a5191c0efe8c3bd32b0c5b3d724c26c8f2f9f50b4482b20e57e3b3bb39985b7ee500eea217da3316c0b851b55"}, {0x30, 0x10f, 0x2, "b4b87fd98b252940f315e20e32a81403d9f0494b9e9afe041c36ccc0f4fee0"}], 0x1f0, 0x8000}, 0x8ac}], 0x3, 0x40)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe(&(0x7f0000000000)={0x0, 0x0})
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x40010, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:17 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = epoll_create(0x201)
set_mempolicy(0x8000, &(0x7f00006e9000-0x8)=0x401, 0xe0)
unshare(0x400)
r1 = mq_open(&(0x7f000004b000)="2f246367726f75706c6f00", 0x42, 0x8, &(0x7f000004b000)={0x3, 0x7, 0x3, 0x0, 0x0, 0x0, 0x0, 0xffffffffffffffe0})
getsockopt$sock_cred(0xffffffffffffffff, 0x1, 0x11, &(0x7f00003f8000-0xc)={<r2=>0x0, 0x0, 0x0}, &(0x7f00007f8000-0x4)=0xc)
migrate_pages(r2, 0x79f, &(0x7f0000aeb000-0x8)=0x8, &(0x7f0000aea000)=0x18)
mq_timedsend(r1, &(0x7f0000c23000)="84e9e0807b90489e12fc859129c4d890bc2ef300fc70bab8ead7ae462152047d391abb7c4ec8eb5956b72439ad717801529c316364d3d0012449f54c316c9d57bd7dee66ead05170b4c549047a681e9afcdb106ce5939fcf2082a8446cdb92f646ab3e0b4d02ae4715809edb1582cb940d373701f0226161b5cf15e0e324b735f3b38a8766b7535a5da11c5db6d68aef538fc3d766e43391cd299df49b6289aca0dab3b1e0be5230f193b3683454963eb0e30f374b020869b5bebcd6802693a2fe5a2537ccd32ed98105225d117fb2b3e860b9b67e85338ec6db8d1b3c1ed8ba5e81812e69c2cc149200000040da3f86cc85462be4dcd304f6089e74608ed3f27f1ad8d7a0ec876b6c076c5a0521936e32a2f725e8963e94cd1d64678ea08d59e9c9e7ffaa4756c15e3b5b1527c440a877b608c697c7697876ac42c6acaf9afeccae39f3261da781c0cc7eff5045f570746ec271fe93c91edb0ef77231a4fbe4a5eac1e34eecca377a4c5c69e157f81bd76c48ba9dc6b86ffa536dc141cdc00d591227089984ad6fa84a7b881286ee360f5dcc0bcb41f67ece3e9caafa9080b84789c5fb8b89b150b608784a0d4aa9dcff971089f6", 0x1b5, 0x0, &(0x7f0000036000)={0x0, 0x0})
pread64(r1, &(0x7f0000640000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf7, 0x0)
mq_timedsend(r1, &(0x7f0000cb3000+0xe67)="", 0x0, 0x0, 0x0)
epoll_ctl$EPOLL_CTL_ADD(r0, 0x1, r1, &(0x7f00003db000-0xc)={0x40000001, 0x0})
recvfrom$inet(0xffffffffffffffff, &(0x7f000087e000)="", 0x0, 0x40000000, 0x0, 0x0)
mmap(&(0x7f0000d19000/0x1000)=nil, 0x1000, 0x1000007, 0x400000032, r1, 0x1000000000006)
r3 = syz_open_dev$loop(&(0x7f000030d000-0xb)="2f6465762f6c6f6f702300", 0x4000100, 0x1)
r4 = memfd_create(&(0x7f00009df000-0x5)="8001726f63", 0x1)
ioctl$DRM_IOCTL_AGP_ENABLE(r4, 0x40086432, &(0x7f0000bb5000-0x4)=0x0)
pwritev(r4, &(0x7f0000624000-0x10)=[{&(0x7f0000608000-0xf3)="986d63dabffabefe3d9f28e45b6d37b8651a1c5b3846e86b513f3de60ee87fc128aa9298b0ed6b5737b9a82e219f270000000195503ad0f5a0c85887ae58001856563e5099b22ceaca56d2ffbb1b4016fea257fd", 0x54}], 0x1, 0x7fffc)
ioctl$LOOP_CHANGE_FD(r3, 0x4c00, r4)
getsockname$unix(r4, &(0x7f0000a80000)=@file={0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f00002ce000)=0x1002)
r5 = dup2(r4, r0)
sendfile(r3, r5, &(0x7f0000530000-0x8)=0xffffffffffffffff, 0x100000004)
ioctl$TCGETA(r5, 0x5405, &(0x7f0000bbd000-0x14)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
ioctl$VT_RESIZEX(r5, 0x560a, &(0x7f000026c000)={0x3ff, 0x2, 0x3, 0x3, 0x3, 0xd1})
ioctl$KDSETLED(r5, 0x4b32, 0x8008)
pipe2(&(0x7f000043b000-0x8)={<r6=>0xffffffffffffffff, <r7=>0xffffffffffffffff}, 0x800)
splice(r6, 0x0, r1, 0x0, 0xffff, 0xa)
open(&(0x7f0000bc3000-0x8)="2e2f66696c653000", 0x1, 0x28)
ioctl$sock_FIOGETOWN(r4, 0x8903, &(0x7f00005b0000-0x4)=0x0)
fdatasync(r7)
accept$inet(r6, &(0x7f0000068000-0x10)={0x0, 0x0, @loopback=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f00006b9000)=0x10)
mq_timedreceive(r1, &(0x7f0000ed0000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xab, 0x0, &(0x7f00000f5000)={0x0, 0x989680})
[ 52.495610] device gre0 entered promiscuous mode
2017/12/15 23:28:17 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = dup2(0xffffffffffffffff, 0xffffffffffffffff)
ioctl$KVM_SET_XCRS(r0, 0x4188aea7, &(0x7f0000cec000-0x58)={0x5, 0x3, [{0x3ff, 0x0, 0x5}, {0xfffffffffffffffb, 0x0, 0x2b9a}, {0x6759, 0x0, 0x401}, {0x415, 0x0, 0x4d}, {0x0, 0x0, 0xffffffffffffffff}]})
r1 = syz_open_procfs(0x0, &(0x7f0000788000-0xd)="6e65742f616e79636173743600")
syz_open_dev$usbmon(&(0x7f0000109000)="2f6465762f7573626d6f6e2300", 0x2, 0x101400)
preadv(r1, &(0x7f0000e0b000)=[{&(0x7f0000c56000)="00", 0x1}], 0x1, 0xe)
2017/12/15 23:28:17 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6_sctp(0xa, 0x0, 0x84, &(0x7f00000ff000)={<r0=>0x0, 0x0})
getsockopt$inet_sctp6_SCTP_NODELAY(r0, 0x84, 0x3, &(0x7f0000ceb000)=0x0, &(0x7f0000404000)=0x4)
r1 = socket(0x17, 0x80803, 0x6)
ioctl$sock_inet6_udp_SIOCOUTQ(r1, 0x5411, &(0x7f0000a03000)=0x0)
bpf$PROG_LOAD(0x5, &(0x7f0000ee7000-0x30)={0x1, 0x1, &(0x7f0000ee7000-0x10)=[@generic={0x6, 0x0, 0xa7, 0x0}], &(0x7f000000a000)="87797374656d00", 0xffffff7ffffffff9, 0x80, &(0x7f0000e23000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x8, 0x0}, 0x30)
mmap(&(0x7f0000000000/0xf73000)=nil, 0xf73000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket$alg(0x26, 0x5, 0x0)
close(r2)
r3 = socket$alg(0x26, 0x5, 0x0)
setsockopt$ALG_SET_AEAD_AUTHSIZE(r3, 0x117, 0x5, 0x0, 0x0)
recvmsg(r1, &(0x7f0000f3f000)={&(0x7f0000f6e000)=@hci={0x0, 0x0, 0x0}, 0x6, &(0x7f0000f6e000)=[{&(0x7f0000afa000-0x92)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x92}, {&(0x7f0000f6e000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6c}, {&(0x7f00005c2000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x93}, {&(0x7f0000f6f000-0x1b)="000000000000000000000000000000000000000000000000000000", 0x1b}, {&(0x7f0000865000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x38}], 0x5, &(0x7f0000a26000-0xc8)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc8, 0x1ff}, 0x10000)
r4 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r4, &(0x7f0000591000-0x58)={0x26, "736b636970686572000000000000", 0x0, 0x0, "6374722d63616d656c6c69612d6165736e6900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r4, 0x117, 0x1, &(0x7f00001ec000)="0a0775b0d5e383e5b3b60ced5c54dbb7295df0df8217ad4000000000000000e6", 0x20)
r5 = accept$alg(r4, 0x0, 0x0)
close(r3)
recvmsg(r4, &(0x7f0000f70000)={0x0, 0x0, &(0x7f0000f70000)=[{&(0x7f0000f70000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xbd}, {&(0x7f0000567000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe8}, {&(0x7f0000f71000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f00009ac000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xaf}, {&(0x7f000081f000-0x7e)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7e}, {&(0x7f0000f70000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6d}, {&(0x7f00009cf000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe1}, {&(0x7f00004f7000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfe}], 0x8, &(0x7f0000f71000-0x14)="0000000000000000000000000000000000000000", 0x14, 0x1}, 0x3f5a1db4cedf06e6)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f74000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f75000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmsg$alg(r1, &(0x7f0000f6d000)={0x0, 0x0, &(0x7f000092b000)=[{&(0x7f0000a8b000)="e0fbe5bac185aae4a43a84ee0abe8a", 0xf}, {&(0x7f00005d5000)="d72f4d3d94a2625b227b0c25245f90858805bc6e00727514304e5834cfc94a1bbfadadb75dfcd122162231c47c23289f832d6c11063638ce3d6680b3e8be40a3b05d773c93a9762944320b9712183147e598eb8a4254e52e47593511e7fda6752e5b001d4832adc24750d83233ef180c33bffb94bdb1fba4064c9789ed6c5671b1c43602372d37b4de44cd9664c1c45db060bca47cd3151e90406b", 0x9b}, {&(0x7f0000523000)="8992236f04f2b8a01782acbca1495c9fc2f673910385e49e4f386a0ff64f41bcab7452eb07d6a353d5f6520e19ee61c78353334030519cd4b0003dbd464a2adc95b03b75f142986624fe347c3bbc52d66e0de5e758dd40599b70f18945196dc2a1022db60f4edcfa9899ed794143a72da8133f7bc07df868958c93ec69b3e3", 0x7f}, {&(0x7f00006ce000-0xe2)="ef89da552dd330bcadfed9e746aa47bd70a9227eeb7210410a3f121e11683e61bb69c74cc9242bbda84ef11e1cfa9412c485b041877d4ee572105ed51bb1769f34d9fb498b24c8591e8aefdd08cbf41ede1f02e20402f00e6f6ec04c21be760c72880da0ca6e01ea5dfe63786136cf3597eaa50389f5eabbb2f33eee7e2b96c1c92590cca3cfa2320d1e3643599fc8e45e824412f3a7432e4319e2abe0a370c274aba6c7d674f8ebb4416e523b8080042727795be956e4971ec0361cbd4813eba7d5617ce9d7d31caaf57214787ca945ef2f4c799bb9e76ae5847eaed2d17600124f", 0xe2}, {&(0x7f0000d35000-0x90)="8561b7a0e627acd3a48d8b9f30c6d21528c9bf2f5736097e1e283522044672ca4155d83ba8a7a9cf28a2bd5ae7abd49744248b986f001fd9e8ea1ef3b930ae82f03deffad4a4bc4ce29c3f5763fa81f048d119bb70a552d1360672dac5a4fd8bb8c2e11a4818b74f2e21867c8870152d9d6349ddcd696ca724aff17559bb89c8fac99475054e97c5be14e8b6a20fe8d5", 0x90}, {&(0x7f0000f74000-0xe1)="99eac84d6a3828b426e0d2bd94a372440296e7dbd81f7612aaee2b98e359972268a6af8bb583511ab042180436c76c32970e44798ed07d43ab574b074b21e9a99da113d6d97363de0e14ea35948cfcd4e33b238769b5d816af54d725d9e0892fb493649e59bd10170b458b63ccda771d5c26156bdc372e736f4cad146efde6570ab31f177183b8325edb58a0b7ed4859e31ee77c7aed8fbebdf4f1bd54d38d684e74fba79cebae37a8d063fb487688b4422341a445637a86f7ed56f82dfd43d4a2744b5a7997da7a30de752718e12eb78a87b2aa694aaf6fc509d305842f108c80", 0xe1}, {&(0x7f00003e0000-0x1f)="c06b3a247fe5e051d3007662067db4d932c52b788f2a2137c80aaab29cd6d2", 0x1f}, {&(0x7f00003e6000)="f06bf7cd469f89c692db8ce5f8a5ad8e755f50800c2528d688a580ba0f00edff1bfec8a00695fc50ed59d372f4fb3c2e2d8b1578d1ac44b620", 0x39}], 0x8, &(0x7f0000953000)=[@op={0x18, 0x117, 0x3, 0x1}], 0x18, 0x0}, 0x4)
close(r0)
recvmsg(r5, &(0x7f000022f000-0x38)={&(0x7f0000f6f000-0x10)=@ethernet={0x0, @random="000000000000", [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f0000893000-0x50)=[{&(0x7f000000c000-0x84)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x84}, {&(0x7f0000f6f000-0x79)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x79}, {&(0x7f0000f73000-0xd5)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd5}, {&(0x7f00008a9000-0xb0)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb0}, {&(0x7f0000f6e000)="000000000000000000000000", 0xc}], 0x5, &(0x7f00008ae000-0x46)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x46, 0x8}, 0x2)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x10, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xffd000)=nil, 0xffd000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket(0x0, 0x2, 0x300)
r6 = socket$inet_dccp(0x2, 0x6, 0x0)
setsockopt(r6, 0x800000010d, 0x80000000000e, &(0x7f0000001000-0x5)="02080000", 0x4)
setsockopt(r6, 0x107, 0x12, &(0x7f0000597000)="", 0x0)
2017/12/15 23:28:17 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$bt_bnep(0x1f, 0x3, 0x4)
getsockopt$sock_cred(0xffffffffffffff9c, 0x1, 0x11, &(0x7f0000b09000)={<r1=>0x0, 0x0, 0x0}, &(0x7f0000cfc000-0x4)=0xc)
getsockopt$SO_PEERCRED(r0, 0x1, 0x11, &(0x7f00001f3000-0xc)={<r2=>0x0, 0x0, 0x0}, 0xc)
clock_adjtime(0x61c5e3039c524ffb, &(0x7f0000596000-0x68)={0x20, 0xfffffffffffffffc, 0x4, 0x3, 0x2, 0x81, 0x8000, 0x7f, 0xf0, 0x0, 0x6, 0x5, 0x8, 0x400, 0xf7, 0x7, 0xd25, 0x1, 0x3, 0x7f, 0x5, 0x800, 0x8b11, 0x0, 0x3f, 0x30da})
fcntl$getownex(r0, 0x10, &(0x7f0000ed6000)={0x0, <r3=>0x0})
r4 = getpgid(r3)
getsockopt$SO_PEERCRED(r0, 0x1, 0x11, &(0x7f0000c7d000-0xc)={0x0, 0x0, 0x0}, 0xc)
socketpair(0x0, 0x1, 0xf76, &(0x7f0000636000)={<r5=>0x0, <r6=>0x0})
ioctl$DRM_IOCTL_WAIT_VBLANK(r6, 0xc010643a, &(0x7f0000900000-0xc)={0x8000000, 0x22, 0x3})
rt_tgsigqueueinfo(r4, r2, 0x40, &(0x7f0000540000-0x10)={0x1f, 0x7fffffff, 0x6, 0x6})
r7 = request_key(&(0x7f0000a89000)="7573657200", &(0x7f0000f65000-0x5)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000405000)="2f6465762f766373612300", 0xfffffffffffffffe)
rt_tgsigqueueinfo(r4, r1, 0x7, &(0x7f0000983000)={0xf, 0x2, 0xfff, 0xc79})
fcntl$setsig(r6, 0xa, 0x7)
keyctl$reject(0x13, r7, 0x100000001, 0xffff, r7)
setsockopt$ALG_SET_KEY(0xffffffffffffffff, 0x117, 0x1, &(0x7f00007f7000-0x6)="c27a1c4120ee", 0x6)
add_key(&(0x7f0000f8b000-0x5)="0065616400", &(0x7f00008c0000-0x5)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, r7)
ioctl$KVM_SET_IRQCHIP(0xffffffffffffffff, 0x8208ae63, &(0x7f0000924000)=@pic={0x0, 0x10001, 0x1ff80000000, 0x7ff, 0x9, 0xfffffffffffffff9, 0xfffffffffffffff7, 0xfe1, 0x100, 0x82, 0xe80, 0x1, 0x8, 0x640, 0x1000, 0x1000})
keyctl$read(0xb, 0xfffffffffffffffd, &(0x7f0000000000)="00000000", 0x4)
ioctl$sock_FIOGETOWN(0xffffffffffffff9c, 0x8903, &(0x7f0000035000)=0x0)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0x1, 0x0, 0x0, 0xffffffffffffffff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r8 = open(&(0x7f000010f000-0x8)="2e2f66696c653000", 0x141042, 0x0)
ftruncate(r8, 0x7fef)
getsockopt$inet6_tcp_buf(r5, 0x6, 0x1f, &(0x7f0000b4f000-0xac)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000a71000-0x4)=0xac)
r9 = openat$ptmx(0xffffffffffffff9c, &(0x7f000037c000)="2f6465762f70746d7800", 0x802, 0x0)
sendfile(r9, r8, &(0x7f0000e4a000-0x8)=0x0, 0xffffffff)
ioctl$KVM_GET_PIT(r9, 0xc048ae65, &(0x7f0000f9b000)={[{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}], 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$int_in(r9, 0x5473, &(0x7f0000944000-0x8)=0x0)
ioctl$TCFLSH(r9, 0x540b, 0x4)
ioctl$KVM_GET_LAPIC(r8, 0x8400ae8e, &(0x7f0000bf6000-0x400)={"f7f9a8208138da49427d7ea68d5b93ebebb2dcd01694b3f374c7b25a8bd66d9360b887d77be10cbe4c784bb8b40b6f1fb143147429660537969bec9fc4a7264576e9d0a33a67de7cd1325fe7a3921ae57a2fa3b545b1cd41d42849595d49f4c80d7d44f93c546caab64bdf31d7f597971dc5dd7030cee52072460cab3784c599eea3b450ae5026c0c7ebbf5b364455ee576f1949b94c45e5341e05163b8e15c9d111c9fe22adf6e5a64611759e99faae4fb51a0e6f267172d002b59dfad1842c7d2bfe885eefe0a847223bdb3ce43f029928daf827f510af090af83f3be2498d8c1052f681241b1f47a4e346fdd16ec0b3a4cbf9982738582f9605ee61f8e4a20183dfea6cf31bf74de81bd16123969cd56dcc3fb47d82ec27632f10257471d91e535ddb5044096eb6444df4623d314cee19e60d60b4d88b8430703feff8ab229de1cc2e093ab28adfc20b1e5701deee0844473766fe83b4a9ddf2db5467b42638906d35ead7cfe5963afbd499f43a28dd634c567b2102b1312cf5b075bf04febe501fc7e579a5934f653e98d49aafa9dae6c65386c974af2600f5fa209a9b7c15dead3ff59d2fe99e2b0fc004f5ac9bee0bbc0ea7eb11327cb5f70d7b4f998b8a26e8c9d6eaa456a11cce5076e574c2dc9471dda5190406e3e4b14a88cb8ab2c9aa682bb6e947e9c43aa5b738581011acafa65d215f001869c56d4dcca725993190cdb5d6629be5ba23dcdcfbdda2e9c5f8ea7cd405d1106ec0aa26842f7292b2adc572dd869534e3723e3d32f2e9a07b41d492d1a73f8fa801db096fed341c048a6b5ada91bbc089fb32a0fb8ae39b6d4c50be23783197f698284cbb65e0d6e7b064c9704047c53228848036e7529fd8146184c99eca44ac499586aa07879be0643ac73888df4e2a7de5a9bce4dfb642d3c5492debb13b2e3b040340fae02592aa8901ba654545e285e7998d3a8015abb994f2f0c3df0411e7856c0af8beba193204f8621396c77e5ce7cf0212e7b75167971998bb0b169daec806d53b7e626690e51f2eccdaccf1a340e78fddbae222e2f32178fbcf7c08ca51e1454d21e12375aec90a1845a65e7b3a0be6c655744e4c9f3cdb48d56be870c1d7ad7f092015c480486bb4ad1833a99ce60ac3320cba8ca6ec68ed369e3edbb27a1f7c7f75b1ce3755b7edc687348b48d8daddade7c1cf83038213eaeb578eea9499df2de51f4d36bdb23f707f8011698a6f5101b643b4ef1946f22d6f296138aaf4a7c171f335efb1c8d30d8088f93df7c4dc5476b5c6729b7c1013647f9bbcd4a167077c970e02ce83e07590fe3a595c041fe8e86adae2f0ff3d1aef23d4603c004160b8a618ee7ecac0a8763e0dbc1e6144209b1d6689801a64c5c7f4740c5c8f0710a608702f7c933d4e5a7cdc479ca184e458482de36be9a27b00cde79e60812b59cf"})
2017/12/15 23:28:17 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_extract_tcp_res(&(0x7f0000e0d000-0x8)={0x42424242, 0x42424242}, 0xc62fffffff7, 0x241)
r0 = socket$inet6_tcp(0xa, 0x1, 0x0)
r1 = socket$inet_tcp(0x2, 0x1, 0x0)
r2 = socket$inet6_tcp(0xa, 0x1, 0x0)
setsockopt$inet6_int(r0, 0x29, 0xf9, &(0x7f000078a000)=0xffffffff00000000, 0x4)
getsockopt$inet_IP_XFRM_POLICY(r1, 0x0, 0x11, &(0x7f0000495000)={{{@in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, @in=@loopback=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r3=>0x0, <r4=>0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@loopback={0x0, 0x0}, 0x0, 0x0}, 0x0, @in=@multicast1=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f00005ef000-0x4)=0xe8)
ioprio_get$uid(0x3, r4)
ioctl$sock_inet_SIOCSARP(r1, 0x8955, &(0x7f00003c7000-0x44)={{0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x1000000000004, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xc, {0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @syzn={0x73, 0x79, 0x7a, 0x0, 0x0}})
bind$inet6(r2, &(0x7f00004cc000-0x1c)={0xa, 0x2, 0xfffffffffffffffe, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x100000001}, 0x1c)
ioctl$int_in(r1, 0x5452, &(0x7f00009ff000)=0xfffffffffffffff8)
listen(r2, 0xffffffffffffff22)
r5 = socket$inet6(0xa, 0x802, 0x0)
setsockopt$inet6_buf(r2, 0x29, 0x3d, &(0x7f00000f9000-0x94)="0000000000000fa6d78981d65eb4fecd470f6021d32eb9b38bf5fe43683f797c22c98868d0f7c3847fc8fc84162c5154301bb4d92e6c29d88ff0d21da593b6d61b7031f5c36632b71efd6de0a9f557c3f269eae64b22b65e11473bad7b9232bca453062eed08ebf088b8fd8c22c835cb5e1ed98c726b4d83f5c2ff4460c7f2bb8801aee87e6eb0105c21d0e1dd1acbce4a9e5423", 0x94)
setsockopt$inet6_IPV6_FLOWLABEL_MGR(r5, 0x29, 0x20, &(0x7f0000ba8000-0x20)={@loopback={0x0, 0x1}, 0x800, 0x0, 0xff, 0x4000000001, 0x2, 0x0, 0x0}, 0x20)
connect$inet6(r2, &(0x7f0000f6b000)={0xa, 0x0, 0x8, @loopback={0x0, 0x1}, 0x3d8}, 0x1c)
setsockopt$inet6_int(r5, 0x29, 0x21, &(0x7f000089b000)=0xffffffffffffffff, 0x4)
getsockopt$inet_sctp6_SCTP_PR_SUPPORTED(r5, 0x84, 0x71, &(0x7f0000f49000)={<r6=>0x0, 0x6}, &(0x7f00003d1000-0x4)=0x8)
getsockopt$inet_sctp6_SCTP_GET_LOCAL_ADDRS(r1, 0x84, 0x6d, &(0x7f0000c4e000)={r6, 0x4d, "33054100000b17324f82fa136fd667212f000000000000002e3ec8dd7f5f90438e7009ed6378de91aff8dc5f76f1731b69dc53fc929951219aae86020000009bc1067f6b9f596a16691984d96c"}, &(0x7f00005d5000-0x4)=0x55)
setsockopt$inet6_buf(r5, 0x29, 0x36, &(0x7f000015d000)="6501d903427ba1047c6db376efaa5d50", 0x10)
sendto$inet6(r5, &(0x7f000052c000-0x34)="", 0x0, 0x0, &(0x7f0000e0b000-0x1c)={0xa, 0x1, 0x800, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
getsockopt$inet_IP_IPSEC_POLICY(r1, 0x0, 0x10, &(0x7f000077a000)={{{@in6=@loopback={0x0, 0x0}, @in=@loopback=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@rand_addr=0x0, 0x0, 0x0}, 0x0, @in=@broadcast=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000a1d000)=0xe8)
setsockopt$inet_tcp_buf(r1, 0x6, 0x1a, &(0x7f00000e4000)="c264bd0c8f1d3c416a787b37fb58d7e072e414a1326d5de60000000002000003efff000005000001acac47428b7e9f1ce14ad7bcdee512d873b9cc759efffc796ddca4b41bb10918a205a92ab65c304d7939d1c0696b1dfdc69bb71f9a538c0700571e000000068610f4a82a358e4e4252da57fb943d1bff03008afd416d01e355394aca4406d202bb", 0x89)
setsockopt$inet6_mtu(r5, 0x29, 0x17, &(0x7f0000d89000-0x4)=0x200007, 0x4)
sendto$inet(r1, &(0x7f00006bc000-0x1)="bb", 0x1, 0x20008045, &(0x7f0000db5000-0x10)={0x2, 0x2, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
ioctl$sock_inet6_SIOCADDRT(r0, 0x890b, &(0x7f000073e000-0x50)={@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, @loopback={0x0, 0x1}, 0x20008, 0x3440, 0x10005, 0x100, 0x0, 0x10100, r3})
mmap(&(0x7f0000000000/0x15000)=nil, 0x15000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f00001f3000-0x8)="2e2f66696c653000", 0x4)
r7 = open(&(0x7f0000cab000)="2e2f66696c653000", 0x40000000000c027d, 0x2000800000fc)
ioctl$int_out(r7, 0xc0189436, &(0x7f000000a000)=0x0)
2017/12/15 23:28:17 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f00002f0000)="2f6465762f7161745f6164665f63746c00", 0x0, 0x0)
r1 = syz_open_dev$vcsn(&(0x7f000032b000-0xa)="2f6465762f7663732300", 0x5, 0x10000)
r2 = accept4$inet6(0xffffffffffffffff, &(0x7f00003d4000)={0x0, 0x0, 0x0, @loopback={0x0, 0x0}, 0x0}, &(0x7f0000bcd000-0x4)=0x1c, 0x80800)
ioctl$sock_bt_hidp_HIDPCONNADD(r0, 0x400448c8, &(0x7f0000b1d000)={r1, r2, 0x3, 0xfffffffffffffff7, &(0x7f0000680000)="", 0x930c, 0xf8, 0x7f, 0x5, 0x0, 0x0, 0xff, "985ab1e22751548836cf482e1dee4ae315e5971d86d7fc984a0fb09b38804326d1a03c17a5e3c09a228c26d6909e2d6d2dff64338f8ddd13f14dd6d5ef11dbbc4843503513ebc1ad93aafe005a178052a637325889786f7d75fdca2fa9e458ea83962ed9c7f8b7989f591633a291260031deab26288eff108356b05c842429bbea2c558ba1f82d6ea6b5fa4dc2cc2c6b444fa746dbe46c297001e9"})
r3 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r3, &(0x7f0000466000)={0x26, "6861736800000000000000000000", 0x0, 0x0, "766d61632874776f666973682d61736d290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r3, 0x117, 0x1, &(0x7f0000478000)="e50e3bbf91b3785dfb057e09cdf300fc", 0x10)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = openat$ptmx(0xffffffffffffff9c, &(0x7f0000fac000-0xa)="2f6465762f70746d7800", 0x0, 0x0)
r5 = epoll_create1(0x0)
ioctl$TIOCCBRK(r4, 0x5428)
r6 = fcntl$dupfd(r3, 0x406, r3)
r7 = syz_open_dev$sg(&(0x7f0000366000)="2f6465762f73672300", 0x0, 0x20000)
fanotify_mark(r6, 0x1, 0x8020010, r7, &(0x7f00007e3000-0x8)="2e2f66696c653000")
epoll_ctl$EPOLL_CTL_ADD(r5, 0x1, r4, &(0x7f0000015000)={0x4, 0x0})
r8 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r9 = dup3(r8, r5, 0x80000)
close(r5)
ioctl$sock_kcm_SIOCKCMCLONE(r9, 0x89e2, &(0x7f000054a000-0x4)={<r10=>r3})
getsockopt$inet_sctp6_SCTP_DISABLE_FRAGMENTS(r9, 0x84, 0x8, &(0x7f00007d9000-0x4)=0x0, &(0x7f00005f4000)=0x4)
ioctl$KVM_ASSIGN_SET_MSIX_NR(r7, 0x4008ae73, &(0x7f00006fc000)={0xee9, 0x4})
getsockname$ipx(r10, &(0x7f0000442000-0x10)={0x0, 0x0, 0x0, "000000000000", 0x0, 0x0}, &(0x7f0000d8e000-0x4)=0x10)
r11 = accept$alg(r3, 0x0, 0x0)
sendmsg$alg(r11, &(0x7f0000251000-0x38)={0x0, 0x0, &(0x7f00004ce000)=[{&(0x7f000036f000-0x85)="a3d68026a05b144e01cd7c7b76dc2dcd0e", 0x11}, {&(0x7f000033b000)="2af75c85595d04a9443032e30e35097b662a4ec9a5f67c12aa9049a9fd52618dc2ec55081889f0ecf43c357c2ea523faa3e89bdc7452", 0x36}, {&(0x7f0000b9e000-0xb4)="822fe8ee165e912fad92226aae2a1938c37694cfe4d940cb3b1aa76d4c55a9e3f433bdaddf6cf4374d3854762d7fee6123483d35d3cf83ee2c9a091ac05809dd336b5929e67ece0dd5faa1e0a95b2869cd338aaeb00e9b7993b99ffdbe248d1faa3a6034a8df720854604a4e49a3c799c5549abddf1cc3b42f173729f465b74ac999855de8bcdd1b6ee3b55d1e398ed895c6b20c404f2f51691fa0d28cad8c0dda119deac7f31d9b89cdf5ce0b0776c3ad8a37e1", 0xb4}, {&(0x7f0000c5c000)="88f684a6794fec86b0bd4836ba9649fa22537e95317d2359182c56a2dd", 0x1d}], 0x4, 0x0, 0x0, 0x10}, 0x10)
2017/12/15 23:28:17 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$sndtimer(&(0x7f0000014000)="2f6465762f736e642f74696d657200", 0x0, 0x0)
ioctl$SNDRV_TIMER_IOCTL_SELECT(r0, 0x40345410, &(0x7f0000466000-0x7)={{0x100000001, 0x0, 0x0, 0x0, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$SNDRV_TIMER_IOCTL_START(r0, 0x54a0)
r1 = socket$inet_icmp(0x2, 0x2, 0x1)
r2 = accept4$inet(r0, &(0x7f0000ab4000-0x10)={0x0, 0x0, @multicast1=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000836000)=0x10, 0x80000)
getsockopt$inet_int(r2, 0x0, 0x18, &(0x7f000096a000-0x4)=0x0, &(0x7f000023f000)=0x4)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = socket$inet_udp(0x2, 0x2, 0x0)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r4 = dup2(r1, r2)
ioctl$TUNDETACHFILTER(r4, 0x401054d6, 0x0)
accept4(0xffffffffffffff9c, 0x0, &(0x7f0000f49000)=0x0, 0x800)
accept4$ax25(0xffffffffffffffff, 0x0, &(0x7f0000894000-0x4)=0x0, 0x802)
fcntl$getownex(0xffffffffffffffff, 0x10, &(0x7f0000235000-0x8)={0x0, 0x0})
gettid()
r5 = syz_open_dev$sndseq(&(0x7f00001ab000-0xd)="2f6465762f736e642f73657100", 0x0, 0x0)
r6 = msgget(0x2, 0x1)
msgctl$IPC_STAT(r6, 0x2, &(0x7f0000b72000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioctl$SNDRV_SEQ_IOCTL_CREATE_QUEUE(r5, 0xc08c5332, &(0x7f0000b0c000-0x8c)={0xfffffffffffffffc, 0x1, 0x0, "71756575653000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$SNDRV_SEQ_IOCTL_SET_QUEUE_TIMER(r5, 0x40605346, &(0x7f0000128000-0x5c)={0x8001, 0x0, {0x1, 0x20000001, 0x82, 0x200000002, 0x9}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
syz_open_dev$sndtimer(&(0x7f00000b6000-0xf)="2f6465762f736e642f74696d657200", 0x0, 0x0)
mprotect(&(0x7f0000d90000/0x3000)=nil, 0x3000, 0x200000a)
ioctl$SNDRV_TIMER_IOCTL_SELECT(r4, 0x40345410, &(0x7f00003f8000)={{0x104, 0x2, 0x7fff, 0x0, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$sock_SIOCETHTOOL(r3, 0x8946, &(0x7f00000c1000-0x28)={@common="73697430000000000000000000000000", &(0x7f00006c1000)=@ethtool_coalesce={0xe, 0x9, 0xa4c, 0x80, 0x20, 0x0, 0x6, 0x100000001, 0x8, 0x6, 0x3ff, 0x200, 0x101, 0xffffffff, 0x0, 0x3, 0x0, 0x200, 0x40, 0x3, 0x1, 0x7fff, 0x200}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
seccomp(0x1, 0x0, &(0x7f0000701000)={0x1, &(0x7f000004a000-0x8)=[{0x6, 0x0, 0x0, 0x5003e}]})
socket$inet6(0xa, 0x0, 0x2)
socket(0x11, 0x3, 0x0)
mmap(&(0x7f0000abe000/0x3000)=nil, 0x3000, 0x3, 0x20000001000032, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:17 executing program 5:
r0 = openat$selinux_member(0xffffffffffffff9c, &(0x7f00000ad000+0x107)="2f73656c696e75782f6d656d62657200", 0x2, 0x0)
ioctl$TIOCLINUX5(r0, 0x541c, &(0x7f0000445000-0x28)={0x5, 0x7, 0x2, 0xffffffffffffff57, 0x80})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$vcsn(&(0x7f0000790000-0xa)="2f6465762f7663732300", 0x0, 0x0)
ioctl$sock_SIOCGPGRP(0xffffffffffffffff, 0x8904, &(0x7f000083a000)=0x0)
r1 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$PERF_EVENT_IOC_SET_FILTER(r1, 0x40082406, &(0x7f00002b7000)="5c2b262d7d2d00")
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e5, 0x0, 0x0, 0x3ff, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x100, 0x4, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
pipe(&(0x7f0000015000)={0x0, 0x0})
socket$inet_tcp(0x2, 0x1, 0x0)
syz_open_dev$mouse(&(0x7f000048f000)="2f6465762f696e7075742f6d6f7573652300", 0x1ff, 0x80040)
mkdir(&(0x7f0000ccd000)="2e2f66696c653000", 0x0)
r2 = syz_open_dev$vcsa(&(0x7f0000e47000)="2f6465762f766373612300", 0x400, 0xaa94506ca78453d)
ioctl$sock_inet_SIOCGIFDSTADDR(r2, 0x8917, &(0x7f0000001000-0x20)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_flags=0x302})
creat(&(0x7f0000f2e000)="2e2f66696c653000", 0x90)
r3 = syz_open_dev$tun(&(0x7f0000ef5000)="2f6465762f6e65742f74756e00", 0x0, 0x2)
ioctl$TUNSETIFINDEX(r3, 0x400454da, &(0x7f00002ca000)=0x1)
ioctl$TUNSETIFF(r3, 0x400454ca, &(0x7f0000f58000)={@generic="431df1f38e6e0000112f648d1c22ce26", @ifru_addrs=@rc={0x1f, {0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x0, 0x0}, 0x3}})
r4 = socket$inet6(0xa, 0x2, 0x0)
setsockopt$inet6_buf(r4, 0x29, 0x16, &(0x7f0000d25000-0x1)="6f", 0x1)
fcntl$getownex(r4, 0x10, &(0x7f0000548000-0x8)={0x0, <r5=>0x0})
perf_event_open(&(0x7f000025c000)={0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100000000, 0x0, 0x246c0dc9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r5, 0x0, 0xffffffffffffffff, 0x0)
syz_open_dev$tun(&(0x7f00005c9000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0x0)
mmap(&(0x7f0000000000/0x177000)=nil, 0x177000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r6 = socket$key(0xf, 0x3, 0x2)
sendmsg$key(r6, &(0x7f0000001000)={0x0, 0x0, &(0x7f0000004000-0x10)={&(0x7f0000002000-0x1b0)={0x2, 0xd, 0x0, 0x0, 0x28, 0x0, 0x0, 0x0, [@sadb_x_policy={0x4, 0x12, 0x0, 0x1, 0x0, 0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, @sadb_address={0x3, 0x6, 0x80, 0x6, 0x0, @in={0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, @sadb_sa={0x2, 0x1, 0x2, 0x8, 0x420, 0x89, 0x3, 0x0}, @sadb_spirange={0x2, 0x10, 0x7, 0x1, 0x0}, @sadb_address={0x3, 0x5, 0x5, 0x7, 0x0, @in={0x2, 0x1, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, @sadb_x_sec_ctx={0x18, 0x18, 0x5, 0x0, 0xb2, "df96770246254d3d89e5f133a6f479f3baf1ab24a37aec74ff26f035efc4f126230d9b219bede1547a1bbdd1e5b4b82d33721761fd71d224dc8d36bde366c1493901fe32fca2544743b6ba4f98f5e5a1dbd31583a7e400874abb893858b54124cd117e05b4b7bd3c4d1b958883b8a189908dd9663ba233fdc9bc32afd656eb865eac85204f6283bd1553fca4d0ccd8e3835e7bc694ec3f2b8892d752ae883f23bf734c4b8968c33373214e39abeda5eb987f"}]}, 0x140}, 0x1, 0x0, 0x0, 0x0}, 0x48000)
mmap(&(0x7f0000177000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
openat$selinux_relabel(0xffffffffffffff9c, &(0x7f0000383000)="2f73656c696e75782f72656c6162656c00", 0x2, 0x0)
mmap(&(0x7f0000177000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:17 executing program 7:
r0 = fcntl$getown(0xffffffffffffff9c, 0x9)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = perf_event_open(&(0x7f0000000000)={0x2, 0x78, 0xdb, 0x0, 0x5, 0x5, 0x0, 0xfffffdffffffffff, 0x8208, 0xc, 0x10100000000000fe, 0x100000000, 0x0, 0x4, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x6, 0xb5e2, 0x0, 0x0, 0x0, 0x0, 0x0}, r0, 0x0, 0xffffffffffffffff, 0x1)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xd9, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r1, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket(0x1e, 0x3, 0xfffffffffffffffc)
r3 = syz_open_dev$sg(&(0x7f00006e1000-0x9)="2f6465762f73672300", 0x8, 0x4000)
getsockopt$inet_sctp_SCTP_GET_ASSOC_ID_LIST(r2, 0x84, 0x1d, &(0x7f00003d2000)={0x1, [0x0]}, &(0x7f0000f0b000-0x4)=0x8)
perf_event_open(&(0x7f000001d000)={0x1, 0x78, 0x10000000000de, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xfffffffeffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x0, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x548000)=nil, 0x548000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$tun(&(0x7f0000c68000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0x3)
r4 = open(&(0x7f000012e000-0x8)="2e2f66696c653000", 0x280842, 0x7f)
r5 = gettid()
timerfd_gettime(r3, &(0x7f00001d7000-0x20)={{0x0, 0x0}, {0x0, 0x0}})
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000001000-0x78)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x666, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20000000, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r5, 0xffffffffffffffff, r2, 0x0)
setsockopt$inet_sctp6_SCTP_AUTOCLOSE(r3, 0x84, 0x4, &(0x7f0000111000+0xf75)=0x1000000000000000, 0x4)
sched_getattr(r5, &(0x7f0000294000-0x30)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x30, 0x80000000003)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r6 = perf_event_open(&(0x7f00009b0000-0x78)={0x1, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x33, 0xffffffffffffffff, 0xa)
mmap(&(0x7f0000029000/0x3000)=nil, 0x3000, 0x0, 0x51, r6, 0x0)
remap_file_pages(&(0x7f0000029000/0x2000)=nil, 0x2000, 0x0, 0x40000000000000, 0x4000)
sched_setattr(0x0, &(0x7f0000000000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0}, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
statx(r3, &(0x7f00007db000)="2e2f66696c653000", 0x0, 0xfff, &(0x7f0000793000-0x100)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
getsockopt$inet_IP_IPSEC_POLICY(r4, 0x0, 0x10, &(0x7f0000ce2000)={{{@in=@multicast2=0x0, @in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@loopback={0x0, 0x0}, 0x0, 0x0}, 0x0, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f00009e4000-0x4)=0xe8)
mmap(&(0x7f0000000000/0x95c000)=nil, 0x95c000, 0x0, 0x44031, 0xffffffffffffffff, 0x0)
[ 52.576380] QAT: Invalid ioctl
2017/12/15 23:28:17 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0x2e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
shmctl$SHM_UNLOCK(0x0, 0xc)
setsockopt$inet_MCAST_MSFILTER(0xffffffffffffffff, 0x0, 0x30, &(0x7f0000d34000-0x4d8)={0x9, {{0x2, 0x3, @rand_addr=0x800, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1, 0x8, [{{0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x2, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x1, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x1, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x0, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}, 0x4d8)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f0000940000)={0x2, 0x78, 0xfffffffffffffffb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
getpgid(0xffffffffffffffff)
fcntl$getownex(r0, 0x10, &(0x7f00001da000-0x8)={0x0, 0x0})
fcntl$getown(r0, 0x9)
ioctl$TIOCGSID(0xffffffffffffff9c, 0x540f, &(0x7f00006c0000-0x4)=<r1=>0x0)
setpriority(0x0, r1, 0x7fff)
r2 = perf_event_open(&(0x7f0000fbe000)={0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100, 0x0, 0x0, 0x0, 0xfffffffff7ffffff, 0x0, 0x9, 0x0, 0x0, 0x2, 0x0, 0x0}, 0x0, 0x8, r0, 0x0)
mkdir(&(0x7f0000baf000)="2e2f636f6e74726f6c00", 0x4)
r3 = perf_event_open(&(0x7f000000a000)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20000000, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000000a000)={0x5, 0x78, 0x0, 0x0, 0xfffffffffffffffe, 0x7, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20001008, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = open(&(0x7f000060f000-0xa)="2e2f636f6e74726f6c00", 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp6_SCTP_EVENTS(r4, 0x84, 0xb, &(0x7f00003d4000)={0x10001, 0x81, 0x3b1856aa, 0x2a8, 0x200, 0x1000, 0x3, 0x1, 0x9, 0x3f, 0x40}, 0xb)
clone(0x20008000003, &(0x7f0000e85000)="00", &(0x7f0000756000-0x4)=0x0, &(0x7f00007c2000-0x4)=0x0, &(0x7f00009fc000)="3a5c")
getgid()
perf_event_open(&(0x7f000000a000)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800000000003, 0x20001010, 0x8, 0x0, 0x401, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
rt_sigtimedwait(&(0x7f0000002000-0x8)={0x3ffff}, &(0x7f0000001000)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000fbd000-0x10)={0xffffd, 0x989680}, 0x8)
madvise(&(0x7f00003fd000/0x1000)=nil, 0x1000, 0x10000000000)
io_setup(0x9, &(0x7f00008b2000)=0x0)
semget(0x1, 0x5, 0x1)
r5 = gettid()
sendmmsg$inet_sctp(0xffffffffffffffff, &(0x7f0000b49000-0x38)=[{&(0x7f00009ed000)=@in={0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f0000b44000)=[{&(0x7f0000114000-0xf4)="230e60eecdb6dcfae9841735096710dd2fdb12572abe529f705f33bf4869a6e87840dc02f6454d03f8e72d21de3770841320e5643df35244686c024496da66bc29b8a7f032306d63d1a94e19517e0c6d95576dcb7a5cba0d126cbd7d0308057b7f4d3da6a0d3a51fd7a1b8bb8209ee031e36b4d912ca85b170524a5ac8e4f1c1e913e01fadbe130c90435ac2f2556d70b3d5e746a762c82d1c28acfb7c8a0fbc485712634c7035c859192cde9d1f05c922919e901f338901999f883a9dc68ae1532b5f3dfbd589a492af178f9ac9be5fb6132e71c7c5e76ce0cdf385801cf14cc4dfea93cace18e38c064e76f2255d55a0adf7ad", 0xf4}, {&(0x7f00009e3000-0x2c)="63531b24f10c81d6a8ffbdb6ef5839888e70a9f8e6b023fc390b1f148fd4bd2a458ea62f652b5d1eb004a755", 0x2c}, {&(0x7f00004a7000-0x41)="7decd7da9e9448c6111289785581e675b28d033ac25702bcb178f46080721ab157c936323dccb8ebb011e0cb5a944738ccb82403951580ec663027c738be3d38f7", 0x41}, {&(0x7f0000ae1000-0x6a)="577d357c4c7c5ea4a68198d0cc9a0403cf8bd78b7e3ee17273bd34bff9b134a7a3dcd097180b41eb06db9fa5b7de0790ca215afb7fd20e4196138a9968e6896222d99ecd3ed804e024681ab6e57121a1029fb505681484d855723db056160438807919ec8adffa7325ab", 0x6a}, {&(0x7f0000896000)="c2a2751bd6df60d346905c61f6756558559db369221bdc10546dc77bd273ce764547b56cbbbfb16294cda88666e8700c87694c72444b978aa58a552b53b136088ac6e62ece13a30a4c73ae7541be337f86f21f", 0x53}, {&(0x7f00000cc000-0x6f)="5f1b9bf54f6f85de1f1eaaa3e4ef0738f1ff11f9e1545109bf8d0f6d2634bc6b983ef7be5a409eba85a28d0cc94f71ca509fdc9553dea86dabaab9d098276c7d85a19e3192ca45d7619cca387533aa7f83def21de4ec806940c2de1cf3ea4126084e24f0e9b25924dad34a3469c25a", 0x6f}], 0x6, &(0x7f000063b000-0xc0)=[@sndinfo={0x20, 0x84, 0x2, {0x81000000000000, 0x4, 0x8, 0x5, 0x0}}, @sndinfo={0x20, 0x84, 0x2, {0xfffffffffffffff7, 0xa, 0x3, 0x6, 0x0}}, @init={0x18, 0x84, 0x0, {0x20, 0xc56, 0x7, 0x8}}, @sndrcv={0x30, 0x84, 0x1, {0x4, 0x5, 0x200, 0x5fa3e57e, 0x3ff, 0x3, 0x1f, 0x0, 0x0}}], 0x4, 0x880}], 0x1, 0x0)
creat(&(0x7f00007b0000)="2e2f636f6e74726f6c00", 0xc8)
setsockopt$inet_mtu(r3, 0x0, 0xa, &(0x7f00003de000)=0x2, 0x4)
perf_event_open(&(0x7f00008ef000)={0x3, 0x78, 0x9, 0x8, 0x2, 0x20, 0x0, 0x7, 0x0, 0x4, 0x4, 0x2e, 0xfffffffffffffbff, 0x5, 0x0, 0x2, 0x0, 0x10000, 0xbfb9, 0x8000, 0xfff, 0x2, 0x5, 0xfffffffffffffff7, 0x7, 0x401, 0x0}, r5, 0x1, r2, 0x3)
getdents(r4, &(0x7f0000001000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x73)
2017/12/15 23:28:17 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x96c, 0x1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000000000)="2e2f66696c653000", 0x0)
mount(&(0x7f00005b6000)="2e2f66696c653000", &(0x7f0000d3c000-0x8)="2e2f66696c653000", &(0x7f0000132000)="737973667300", 0x0, &(0x7f0000946000)="")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000651000)="2e2f66696c653000", 0x0)
perf_event_open(&(0x7f000000a000)={0x2, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
mount(&(0x7f00009f8000)="2e2f66696c653000", &(0x7f0000344000-0x8)="2e2f66696c653000", &(0x7f000051e000-0x8)="6f7665726c617900", 0x40000000000000, &(0x7f0000b00000)="")
mmap(&(0x7f0000000000/0xac1000)=nil, 0xac1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6_sctp(0xa, 0x1, 0x84)
setsockopt$inet_sctp_SCTP_SOCKOPT_BINDX_ADD(r0, 0x84, 0x64, &(0x7f0000abb000-0x1c)=[@in6={0xa, 0x3, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}], 0x1c)
r1 = openat$selinux_avc_cache_threshold(0xffffffffffffff9c, &(0x7f00006ad000-0x1d)="2f73656c696e75782f6176632f63616368655f7468726573686f6c6400", 0x2, 0x0)
ioctl$KVM_GET_XSAVE(r1, 0x9000aea4, &(0x7f0000978000)={"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
openat$kvm(0xffffffffffffff9c, &(0x7f0000b41000)="2f6465762f6b766d00", 0x803, 0x0)
getsockopt$sock_buf(r0, 0x1, 0x0, &(0x7f0000587000-0x46)="", &(0x7f00002f5000-0x4)=0x0)
ioctl$EVIOCSABS0(r1, 0x401845c0, &(0x7f00002b9000)={0x2, 0x5, 0x4, 0x4, 0x3, 0xfffffffffffffbff})
pipe(&(0x7f00000b9000-0x8)={0xffffffffffffffff, <r2=>0xffffffffffffffff})
r3 = syz_open_dev$urandom(&(0x7f00006e3000)="2f6465762f7572616e646f6d00", 0x0, 0x0)
ioctl$TUNGETSNDBUF(r2, 0x800454d3, &(0x7f000029c000)=0x0)
splice(r3, 0x0, r2, 0x0, 0x100020000, 0x0)
ioctl$EVIOCGMTSLOTS(0xffffffffffffffff, 0x8040450a, &(0x7f0000915000)="")
shmget$private(0x0, 0x3000, 0x0, &(0x7f0000832000/0x3000)=nil)
r4 = openat$selinux_policy(0xffffffffffffff9c, &(0x7f0000aba000)="2f73656c696e75782f706f6c69637900", 0x0, 0x0)
ioctl$KVM_SET_CPUID2(r4, 0x4008ae90, &(0x7f000082e000)={0x0, 0x0, []})
mprotect(&(0x7f000038b000/0x1000)=nil, 0x1000, 0x1000000)
getsockopt$inet_sctp_SCTP_RTOINFO(0xffffffffffffff9c, 0x84, 0x0, &(0x7f00003e9000-0x10)={<r5=>0x0, 0x33, 0x1, 0x2}, &(0x7f000018e000-0x4)=0x10)
setsockopt$inet_sctp6_SCTP_RTOINFO(r0, 0x84, 0x0, &(0x7f0000abc000-0x10)={r5, 0x1, 0x0, 0x4000000000003}, 0x10)
sendto$inet6(r0, &(0x7f0000ab0000-0xf7)="b8", 0x1, 0x0, &(0x7f000030c000-0x1c)={0xa, 0x3, 0x0, @loopback={0x0, 0x1}, 0x0}, 0x1c)
setsockopt$inet_sctp6_SCTP_PEER_ADDR_THLDS(0xffffffffffffffff, 0x84, 0x1f, &(0x7f0000aae000)={0x0, @in={{0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0}, 0x98)
2017/12/15 23:28:17 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$alg(0x26, 0x5, 0x0)
ftruncate(r0, 0x3)
bind$alg(r0, &(0x7f00003f2000-0x58)={0x26, "736b636970686572000000000000", 0xf, 0x80, "6362632874776f666973682900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
r1 = creat(&(0x7f000020a000-0x8)="2e2f66696c653000", 0x40)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
request_key(&(0x7f0000ac1000)="6c6f676f6e00", &(0x7f0000049000)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f0000000000)="2970726f637a6367726f75707d00", 0x0)
request_key(&(0x7f0000adc000-0x8)="6b657972696e6700", &(0x7f0000001000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000000000)="00", 0xfffffffffffffff9)
syz_open_dev$loop(&(0x7f0000023000-0xb)="2f6465762f6c6f6f702300", 0x0, 0x2)
write(r1, &(0x7f000033f000-0xa1)="fa8de908153371777547f6620c0dc531616f706ce973d30df1eff18a00800000b8fa1bec64cf1dbaef0485939e3d0ccd375476260c40497f995cf57cb6fffffffaaa40e013caaf6d461e24f5f3f38a53be8b6d342d0d4e5b2438238c1e72428c2d2bf4c3ed7e3a82deed3cd192cfaa007a79d8e6d43ed261bd2f3a844c66b3949e8461304ef6b591da0d6264e0d29ffd4d4c2fab071c6ea972e02e215ee8dd5b2a", 0xa1)
socket$inet6_tcp(0xa, 0x1, 0x0)
r2 = semget$private(0x0, 0x20000000102, 0x0)
semtimedop(r2, &(0x7f000001e000-0x2a)=[{0x0, 0xfffffffffffffffb, 0x0}], 0x1, &(0x7f0000020000-0x10)={0x1fff, 0x0})
clock_gettime(0x0, &(0x7f00004fd000-0x10)={<r3=>0x0, <r4=>0x0})
ioctl$EVIOCSREP(0xffffffffffffffff, 0x40084503, &(0x7f00008bd000)=[0x6, 0x2])
pselect6(0x40, &(0x7f0000ee2000-0x40)={0x0, 0x0, 0x8, 0x400, 0x6, 0x527, 0x1, 0x9f32}, &(0x7f0000222000-0x40)={0xea7, 0x200, 0xe9, 0x100000000, 0x0, 0x80, 0x2, 0xffff}, &(0x7f0000819000)={0xfe, 0x10000, 0x7ff, 0x81, 0xff, 0x3, 0x6, 0x6}, &(0x7f0000153000-0x10)={r3, r4+30000000}, &(0x7f0000ce9000-0x10)={&(0x7f0000330000)={0x7}, 0x8})
ioctl$SNDRV_SEQ_IOCTL_SET_CLIENT_POOL(r1, 0x4058534c, &(0x7f0000d3c000-0x58)={0x655, 0xfffffffffffffffe, 0x9, 0x9, 0x4, 0x4, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
getsockopt$inet_sctp_SCTP_I_WANT_MAPPED_V4_ADDR(0xffffffffffffffff, 0x84, 0xc, &(0x7f00009b7000-0x4)=0x0, &(0x7f0000385000)=0x4)
clock_gettime(0x0, &(0x7f00008e2000)={<r5=>0x0, <r6=>0x0})
semtimedop(r2, &(0x7f000097f000-0x1e)=[{0x7, 0x8, 0x1000}, {0x0, 0x5, 0x1800}, {0x2, 0xd54, 0x1000}, {0x7, 0x3f, 0x800}, {0x3, 0x5, 0x1000}], 0x5, &(0x7f0000034000)={r5, r6+30000000})
getsockopt$inet_sctp_SCTP_SOCKOPT_PEELOFF(0xffffffffffffffff, 0x84, 0x66, &(0x7f0000588000)={<r7=>0x0, 0x0}, &(0x7f00005cd000-0x4)=0x8)
getsockopt$inet_sctp6_SCTP_PEER_AUTH_CHUNKS(0xffffffffffffffff, 0x84, 0x1a, &(0x7f0000466000-0x2c)={<r8=>r7, 0x20, "3453bb24580c6d9c270000005ccbf706000000d9a6e8830900000017630afe64"}, &(0x7f0000c1a000-0x4)=0x28)
r9 = dup3(r1, r0, 0x80000)
getsockopt$inet_sctp6_SCTP_AUTH_ACTIVE_KEY(0xffffffffffffffff, 0x84, 0x18, &(0x7f0000fbc000-0x8)={r8, 0x100}, &(0x7f00003e8000)=0x8)
semop(r2, &(0x7f0000031000)=[{0x0, 0xfffffffffffffffa, 0x0}], 0x1)
semop(r2, &(0x7f0000cf0000-0x36)=[{0x2, 0x7fffffff, 0x1000}, {0x3, 0x8, 0x800}, {0x4, 0x10000, 0x1800}, {0x5, 0x8, 0x800}, {0x0, 0x7ffe, 0x1800}, {0x0, 0x7896, 0x1000}, {0x7, 0x4, 0x800}, {0x2, 0x2, 0x1800}, {0x7, 0xe11c, 0x1800}], 0x9)
ioctl$EVIOCGRAB(r9, 0x40044590, &(0x7f0000e4f000-0x4)=0x3)
socket(0x5, 0x1, 0x20)
accept4$packet(0xffffffffffffffff, &(0x7f0000e49000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0]}, &(0x7f0000b55000-0x4)=0x14, 0x80800)
semop(r2, &(0x7f00009b3000-0x2a)=[{0x2, 0x0, 0x800}, {0x7, 0x6, 0x0}, {0x3, 0x401, 0x1000}, {0x0, 0x4000000001, 0x1800}, {0x1, 0x101, 0x1800}, {0x0, 0x0, 0x1000}, {0x0, 0x5, 0x800}], 0x7)
2017/12/15 23:28:17 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = socket$netlink(0x10, 0x3, 0xc)
r2 = openat$rtc(0xffffffffffffff9c, &(0x7f0000206000)="2f6465762f72746300", 0x80000, 0x0)
r3 = syz_open_dev$sg(&(0x7f0000321000-0x9)="2f6465762f73672300", 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x31, 0xffffffffffffffff, 0x0)
r4 = gettid()
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800000000, 0x0, 0x0}, r4, 0xffffffffffffffff, r3, 0x0)
ioctl$UFFDIO_REGISTER(r2, 0xc020aa00, &(0x7f0000019000)={{&(0x7f0000442000/0x2000)=nil, 0x2000}, 0x400, 0x0})
getsockopt$inet6_IPV6_IPSEC_POLICY(r3, 0x29, 0x22, &(0x7f0000762000)={{{@in=@multicast1=0x0, @in=@broadcast=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r5=>0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0}, 0x0, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000e37000)=0xe8)
read(r2, &(0x7f0000eb6000)="", 0x0)
mmap(&(0x7f0000000000/0x243000)=nil, 0x243000, 0x0, 0x32, 0xffffffffffffffff, 0x0)
timer_create(0x6, &(0x7f0000970000)={0x1, 0x48, 0x81, @thr={&(0x7f00009ee000)="60d65393cb9f99b3982c15ad21b9bc70b910fa0a7f3571892595cd6a232b", &(0x7f000016f000-0x1000)="65bffef230456b9562cfa77d12f89e8ad871f78e5a333d2d28eacf9a67efa5782d8d985fb00d314ed9eb10c826c0c1e6c50e0986bdc08086ea97a7a32d438bc4de7eac9a5c5ceeb5aa977d8bc2a2b498fa4972025d9523a09143c44115c7a2f26f0cb09210bc40445175861eb11c2ed1312546aa7957091ee4524cde885fc71d85f9ce4a7aad56a808a70ee0b7d4e7773aceb76f561ce35b170518a6eac3cedc3dcc5c7919aeb1c5b8a34d4dd5d4dae68a842350c2eebb1a29cd9e6e8881d3aadddc0180cf7748f02b4846f9330ba935fa1fc392451562df2a38a44a9b0d968a7e47f548e3c81e78905b8bf4a9adc4bcd21876b6e60f0691f0aba04b8f93373d94eadda0e734c381e9c2552c1e241061b90132184b17866a661f2b78b8286e45a051a87578eb9c4c08e0bad2ed335e6ba4e5d38c0099450e21fbd3cb31d76325d566df0b625aaffea3a442e87bd500b0558bd74b175b9f3d603dbae4136d305232206cd34c39628dfe566558ef6bf362a80eed09b698ac35e2653aca9ac5e423ebe1656a05e2c329fb1e057b82f88f0d172a618d2ccedf16a513dbbbaba1482baac473dceec3a602546a5d5f0799bb811bf4f8fe74f3a0e803e63ec79a2045b8d63080b8278a581a5dd9da47d56721e5bcbfb1eddca560827830f79b5f61f2a87961d2d5798d0ada3f213307b8316a593b36dff5dd3c0e3ba562ce9458f2e53acd2b21f6bf87819ba08400e1f57d791bfcdbc59eda9690cebc83453735664e4b2f777a1f33dcef2a85439b11d42449d20da141a11ae283fc1335fed932c386f136437f87242caef22fdbb7448441d16ea40ad76930f8281a21cffcbc1ba7ca6670537d079082f0020c08baccdcb1f708c329afc60689678a78cdf1cd4894e421ef406e9e17e8e68620f32d608b5baca931f468232a8669adc0a3c132be0dbd6d8bc4c5bde91b838aae229f9e5e603943751dc6d0711263374519ab7227a98c2b8ecb8709bab537f25e8a04f0e4c8f277dd1ddafa0f30a93d6caab762a69d84a6df8b0a2b9b324d682a8610ae6f47d82d7630d129f15de821df58c71dca870da72698b0f8a48e02c6def3b0a46833d970bff07be4e57aa1aa693ff28963c92857f7fd5c94162387bc16027c7943de9c496bf20abf3495bc19622a8e371e6baec81a02e9256a385b13589f29a786f6805909adfa65972bbe9f9dd02747d8bb7f665881abbf9df47911dc76fb1ae12c088367a26bc91f16ec5622388173f54bf7975a6b9e27b2a3d66f6b32a0df00a6ff8806c3cc6e375cf60881f4be5f38ee8082101100ca7eda840d51038c3c07bfbe12f8620fdc188958e3c86906b20c8eb26c63e1f0120ad3a0618eab729ade1b0c343a7cd53ea267ea1a5798549eb6c8ecde594387dfddd35aa55b72253a5b36aa9cd1401836f97b48f27c0641bc4fb87383f1e90dc0ec975f3d8c3cb8cfb78608299c1f9624eb447705ad1dbb4ac4aeebafa03fa9a36f3d94fe844386c7f084afe417a8eb383977a6ffec0d9edcdb358615ab3ec7834d3e70fb3a9531476888c5eafef9f7c661787400752733829a6c314d852ba3b9ec19c65f239eb21cc551d77b411d2086562ec2359522ae3081307738fbe1c19fa60e41729abe4956983e1d05399b0db80a359feaa4690bd2a2879736cb854bf19be64f26e4393843a0095c258de77a30c3a6f4a5dc4dc0a7e4d2252e66766aa05e088b64ec8235e3640397759512a8f79c715e182f7f78ba2fc23cfb75a81aed2688ee0b0d85f9dffa62711dd2c167b26546801a491da5e44818a3366096fd01527c06f7151ba4a01c89fbe8a0b8ba7ed24fcfa45638afdf7944b297f5232851d92337d68fb20d9f13b725c9cc7a39b9d4187a01a93ca62d64742a8e7021d4866a87e0d085fdbc0e24b463fd467c67b8e136604f5302b3fcce7530ec83aef29c55633f52f425cb9cb573dcf03e000f88348ec42f9e162815e6eda9ce799db237a9ddead938129cf10e1d79e32a06a1f5356228a49d29f568c24707370722c077f16548f889ce1192c923e0a1e3c6ebe21c5985edf70b8110fe2070b5a738a718253cb8d11cd768a1d3ed568dd1d23f89b64b5fad9d6ef62a2e5c9bf1e0333a5a9b72e0ca4bcf5f78602f4a42be421752491d9170ffcbe431ce7ae5812fd28ce58cea53d11ed55aada3062a9c996f72168aaa60ce601cceb02ecef55fc991cac45272b15d50c9d38dfa8578ec13ca61cbb9c43d8e6fe451c467ff957e0c535a168c2ebed673ce7601630f11fcce8858cd01b37a5cd6c7b90bc6973754e7533c53504074ec8c0bd26b83d79ecc0b19d3dee0cc69ec6faf70904aa1237d2fe8a47fc6c88d487325de189a95d2c07764d6ecae4fdcd7e7d7ef772795332421f189ee33a55d6339cf705df087310531ffe822ef6566bd1fbd50acfefa7165cc877fd7fce3b9a98baa284762d69bb1d3c7bffd46e7714df4cb08ead24b25516e9271e598f8befa6be6c48f694b61d48deeec458f3b5c853356a201fff86516c80933b238994375a9380f853b2ba07269a9034f8c81902f1fde7d3e7fc9359012040fd11e160f4d5196ff33b4c6438a7271896636b08be0ddc883024f3780ee942db78753a7cf4a1468c44b27d91d68407305bf5c0c4907f319b2be1a07457192cc8aaa4a07aa8f787b68d694c27fd70ca1d20fa31fe5cb253beb4baf356e93ef346bad0118a3f99f7d4e8347706beff768a2789841ca36841a52428dc52442e14beb40738f2062d5a3e5132b8a9279a188aa6b2494f4b165edcb3ed22174b4b4249b3d862eb75ae3ea590620dbebb066dc10b366c01357c0b3c00e340ba5154f85fe68da30c1aa6090bc17074c2f4f581088a647c09c5b23604e86d6718369f64e65ddabd733e65345e96c25e09a49dcb3ec500cbe863b802b490ea5abe147ab11c2288b4453ad078780512bd5570662528dc61c7ec4acbb47c12d8f50b824beaccc24d9167ad6b03c41e4329a7a3f30ac8001a4e417ce16f89a93c60c5b4c3acc5992aaafdd67dd4ec656c544a3dfe105e31555abd50bac462c97a489214869d7662482547d3594f8c8e6d02821825e51ff24713fa712ddf041b683dcef7843517e2fa756173e04fb1cb6529ec1f2cb3a19edf4edebf72a8fafacaa63df79cddedcfbab988080bd37584e1671ed7fce87027c0aef1b270a537aa4a843581a980a5cd67cf308867c9ecc5aa307cc1c792571adb8b707a9814f08e3ac3b705041e2febc4ba523d62a93be3f0e0877b468df705543119552a3a4f1e767964667d15c8be834c56812e5a872abe4415db40f6a0f0810fd9247780f72529d5027c698d43726bfda7830937fd62b79f1254512abf25b60359cae2d533e40dc97b14249645fb89ae85ac106257ed5be667fc5f63e1ce5143adffd465a8c4520fad5b6e3f1d6022c64f827a1ab79e15de81494baf23e9cd50d355afe17fb181d5116b6af15d953cc408abb7ba13c688fa0442fec4911db3cf05e0b57b6ba36bd981053bf55e564f49e7d64739265436e293bec1b9fed801a9164a5bba88308848404ddb43a340494ade8bba559d7c115133250823b83f417472a8da1cfe1591fc749ae686566e53cd919dd4c6663336e3eb512d9ec4d2350405789c4f6d2916082bc2bd8031df783fb6c793dfdab11c35247ac43e10ff1a8471d28c6a5b7a7b78956ac3a0ed3ea38d2a8f3d835267a9ecca07fd6217a7fe75b369c91e206ad9cfd5a1c9477899d33931cf0f416bf632176e18df635b46b772124daec4f342381a0ae2ad6b867a82a67e7e684c6acb81b7701380871b8f380f011b36f62d90931160cd341871717b34fe3e6973ffb2db29791466230177e38e30fa1b415340274eaed7ffc45dbbb8b1a583b591e0d7f7a6177f158a36b3a0fcaaa2aaaa0290acd9072a4c381c470d497c7f89e848f5430a506622eb35fa6433cc0c6ace6105a9e048c76a2016a2a4b2f852e88bd8533f8e0ba14e882525ad328d0436cfc120d974db882f1b6e7f8bcd1c014c11d45e8024e028bb3db8027e69f2277cdb7a254551c6cdfb7a0b78ce5b1ce9ac692ff5bae83a6d0d2acbc8ca1407b2942e019d3b50f1de261d4ddc6250b32612f4f2114b513b1c2fb04ccccafc9e6bf95e5fe27fa67ddb2ea811ee931df3309835ffb1865de54bd95e5c178a6bdae60f6f7184909423d9a0c3f9777cef920a533468d53fa565b1f7e33e3774d4ffe1039d580d8c564dadaaac1e9b16692a516c733eaf369f4b0e4be192beff66a179e96e6642d7a50175be22fa5979f07f14bd5248186f2e2242d97011d997d0af2c50f999daca5465bb67808072be7cdf83b67e84e9ffae33478bfb3dca61ba93bdde542f442cb08347a6acee647f9518c44d5d13f8137d23ad322df36028a20767cbd4425c96d062cb6c6e8df15d5cf5bc8d0a479b768886cef1b3b94cfd30f3e6f69a7ec1e23f8310e363891f865ba1dc890a61487116a21f6ceaef72d067c94f65702e08297723f8ac618fb50c81b4324bd40f7c17941142193fa73c6304e07f9af3b06b3a1bc8a8ecc68cff94b4eb086951c71b615a9c213bb87bf7fd30495b1873af329505472ef9708d0170b693ff226f939a14fa6f1d0105f2d60d28b6d9266fb566b93171e869d26c15656de519b64429e7fa47c881fcc9b222587b1bb61adaf2db39cffb665b4ae19d0e961f189040bc75044378dbee78f863f0ff66eac509ceac38ae86331bd9a6f67c073e595fbf2c26ea343fa8c1ed509f511a37b37e4ffdb0d11a976fe55e64f0b9a511815014c99556e74695b6a258f2351959507aee0fe18bcf4fe0ff08666e0fe593ec62deedae5ffde0c1a908892652136fe8ac4a3b3abd5caed12adb6a7b4fec79156139deae2d199fef3664640e2f0eb9310dc60954cdde621ccc24b865877fee8cd8caf96b437478d5c3a88f4713ac677f367afef26c5328b23e8984de48a0665c400a84fa83d02176ef464d57fe0f229d4d8242034092d59db522e485f400694f1f16113bc49e7d5b46c5e9e6713053f47927c8ca7c2e216945e6412f01fa856efa73b032709f81e359897266620e8722a5f84e48cb41e113780d041ecd2b50c35df3b8f54b73acc214ae98a66d2d7117b7b5f203cbfbb9eddbcc36ca8fd03ef515b6585cef036d60eff7280cd158d1628af9ef93f9cca2ae163715176f149d1fdeffd80f9fbf16cbdc2cd2d81893a3623092131a6ed335977e876cf8cb6ad7ad45b0424ea7e109d10f2e3b931d475444e9b396658e9fd50c4db465b15b24bb364b45518fdd44ad53d07571a5a68b66d527579ceb9ad6856c395cc815a2b588f08997c360191e7295ad2e0c653601efcbdc7e12be61a7c8ddd86f0b59d9b2416e615cfe69a751d4fecd6c6f478ad4700442cf815b478d476a21c3c58e9b5c48cd4640433a15184f6d11c1ee3e6f4b459dd299a65547c7ce8b63d69af32cf5fda992498253332a6ef2297ad3014773f47733036a7226bd6c16a470c3fe144237376be1adec5b847da6b78dee9f45ab9649c01881822cda69c8bbd19436a2e07161a3476ef3e7629881170e9b1616c60f62199dac10be15e222a583235edf56fcf3116cb8fd5eae7c0774df16ce12f32e45fd337123694f50ef2f741ee5382ec8b469b348fd5cc5259baea6a69adab48536144b36dd4f1d259c6c36e3719b3a67d9a40505ecd97b983e74c2831a2912ae254ab4c270ccc7ffad7107994c51bf275105ab1c4fc80186ff324c7d3a6882e34f247aa1cc48097ea11"}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f000087e000)=<r6=>0x0)
sched_getscheduler(r4)
getgroups(0x0, &(0x7f0000f92000)=[])
fstat(r0, &(0x7f000057e000-0x44)={0x0, 0x0, 0x0, 0x0, <r7=>0x0, <r8=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
setsockopt$sock_cred(r2, 0x1, 0x11, &(0x7f0000cb8000)={r4, r7, r8}, 0xc)
clock_gettime(0x0, &(0x7f0000bbe000-0x10)={<r9=>0x0, 0x0})
clock_gettime(0x7, &(0x7f0000fde000-0x10)={0x0, 0x0})
rename(&(0x7f0000610000-0x8)="2e2f66696c653000", &(0x7f00006df000-0x8)="2e2f66696c653000")
clock_gettime(0x0, &(0x7f0000aea000-0x10)={0x0, <r10=>0x0})
timer_settime(r6, 0x1, &(0x7f00001e2000)={{0x0, 0x1c9c380}, {r9, r10+30000000}}, 0x0)
epoll_create1(0x0)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r3, 0x84, 0x9, &(0x7f000032c000)={<r11=>0x0, @in={{0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1000, 0x1000, 0x1bd0, 0x7fff, 0x82}, &(0x7f0000db9000)=0xa0)
getsockopt$inet_sctp_SCTP_DELAYED_SACK(r2, 0x84, 0x10, &(0x7f00001a6000)=@assoc_value={r11, 0x5}, &(0x7f0000d55000)=0x8)
getsockopt$inet_sctp_SCTP_GET_ASSOC_NUMBER(r3, 0x84, 0x1c, &(0x7f000058e000)=0x0, &(0x7f0000470000-0x4)=0x4)
timer_gettime(r6, &(0x7f0000fe7000)={{0x0, 0x0}, {0x0, 0x0}})
ioctl$SNDRV_SEQ_IOCTL_SET_QUEUE_CLIENT(r3, 0x404c534a, &(0x7f0000430000)={0x1ff, 0x80, 0x8001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
clock_adjtime(0x7, &(0x7f0000ebb000-0xd0)={0x4, 0x800, 0x4, 0x200c1, 0x8004, 0x675, 0x400, 0x49a, 0x33c4, 0x6, 0x101, 0x6, 0x0, 0x1000, 0x116a, 0x412, 0x40, 0x7ff, 0x8000, 0x3f, 0x0, 0xfffffffffffffff8, 0xfffffffffffffff7, 0x7a8, 0xd52, 0xffffffffffffffff})
futex(&(0x7f0000005000-0x4)=0x0, 0x85, 0x0, &(0x7f0000002000-0x10)={0x0, 0x0}, &(0x7f0000003000-0x4)=0x2, 0x3ffffffe)
ioctl$TUNSETOWNER(r3, 0x400454cc, &(0x7f00007dd000-0x4)=r5)
setsockopt$netlink_NETLINK_ADD_MEMBERSHIP(r1, 0x10e, 0x1, &(0x7f00000b2000-0x4)=0x1, 0x4)
[ 52.676993] QAT: Invalid ioctl
2017/12/15 23:28:17 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
fchdir(r0)
mkdir(&(0x7f0000925000)="2e2f66696c653000", 0xfffffffffffffffd)
r1 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000221000)="2f6465762f72666b696c6c00", 0x111000, 0x0)
mkdirat(r1, &(0x7f0000c3b000)="2e2f66696c653000", 0x118)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000db1000-0x8)="2e2f66696c653000", &(0x7f000038f000)="70726f6300", 0x0, &(0x7f0000cde000)="")
r2 = open(&(0x7f000019a000)="2e2f66696c65302f62757300", 0x0, 0x0)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f000070a000)="2e2f66696c653000", &(0x7f0000014000)="72616d667300", 0x0, &(0x7f000002d000)="")
ioctl$KVM_IOEVENTFD(r1, 0x4040ae79, &(0x7f0000f6d000)={0x6, &(0x7f0000c84000)=0x0, 0x0, r2, 0x9})
ioctl$DRM_IOCTL_DROP_MASTER(r2, 0x641f)
getdents(r2, &(0x7f0000394000-0xd5)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x44)
r3 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x968, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = creat(&(0x7f0000045000)="2e2f66696c653000", 0x20000000010)
r5 = socket$netlink(0x10, 0x3, 0x0)
pipe(&(0x7f00006bf000)={<r6=>0x0, <r7=>0x0})
recvfrom$ipx(r1, &(0x7f000034d000-0x33)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x33, 0x40, &(0x7f0000c55000)={0x4, 0x4, 0x7ff, "d1de2ff7a9c2", 0x1, 0x0}, 0x10)
writev(r5, &(0x7f0000120000)=[{&(0x7f000078d000)="29000000180033dde5ff2100006500050a00000000000307800000000c000f00000000000000000005bc", 0x2a}], 0x1)
stat(&(0x7f0000eca000)="2e2f66696c653000", &(0x7f00009a9000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
delete_module(&(0x7f0000d2a000-0xa)="5e62646576256c6f2300", 0x800)
setsockopt$inet_msfilter(r7, 0x0, 0x29, &(0x7f0000a3b000)={@remote={0xac, 0x14, 0x0, 0xbb}, @rand_addr=0x5, 0x1, 0x9, [@rand_addr=0xf52, @loopback=0x7f000001, @loopback=0x7f000001, @rand_addr=0x6, @rand_addr=0x232e628c, @rand_addr=0x2, @broadcast=0xffffffff, @empty=0x0, @loopback=0x7f000001]}, 0x34)
ioctl$PERF_EVENT_IOC_REFRESH(r4, 0x2402, 0x5)
getresuid(&(0x7f00007fd000)=<r8=>0x0, &(0x7f0000793000-0x4)=0x0, &(0x7f0000412000)=<r9=>0x0)
vmsplice(r3, &(0x7f00004bf000-0x50)=[{&(0x7f0000ae0000-0x36)="b611363eddaf2e062c5acea3313ccd0027f5cc412833c46d19db19842e81f48d42c606ab4d15e9e41ab9610d782a016f76999f4b6d73", 0x36}, {&(0x7f00007a5000-0x4f)="c95da0929359fbab3730eec84e7b242aee44e533700f7732a4dba0675ff34a5d16c610bb3b42f83911abc83fa1f8e776df20af75925a9361326842f41507643470443d54b0ec2efceecc5fcc6c4c8c", 0x4f}, {&(0x7f0000e9a000)="defb0d58395b990e5edb94742908bf835c1fdc2464296a9b7186aeac4b9934ff6b67d44bfed1583673279ae195adfd7f7efe69bd7bef599b9b0ae5ca19cc64b0009211026ccb19d6", 0x48}, {&(0x7f0000283000-0x33)="daef4484bbca05ad28f388046ece95d262111fe07fac125ce19905e4b2ee4566ef421c0018c33d5d8c482e5567b4e4160940b4", 0x33}, {&(0x7f0000fb9000-0x6b)="90a6081e7d0b85ec17575615343e4ab58cab10b12735c0eb0b4fce23068f001483578a34a38f12fa48df56b3ba1092c957c3ff505a9c6e93b23e252cd0c81a603cb576f84ad0185e9d47f131432c4b72faf2f967ebd961a1144173593460a2a99567b76994361ba8ad9a43", 0x6b}], 0x5, 0x1)
fstat(r5, &(0x7f000084b000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
clone(0x0, &(0x7f00009f4000)="", &(0x7f0000a26000-0x4)=0x0, &(0x7f000039f000)=0x0, &(0x7f0000544000-0x1c)="")
ioctl$SNDRV_TIMER_IOCTL_GSTATUS(r2, 0xc0405405, &(0x7f0000e02000-0x40)={{0x2, 0x1, 0x2, 0x0, 0x1}, 0x1, 0x7000000000, 0xc19, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
setresuid(r9, r8, r8)
socket$inet_tcp(0x2, 0x1, 0x0)
ioctl$sock_inet_SIOCSARP(r6, 0x8955, &(0x7f0000a74000-0x44)={{0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x0, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, {0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @common="69705f76746930000000000000000000"})
2017/12/15 23:28:17 executing program 2:
mmap(&(0x7f0000000000/0xb45000)=nil, 0xb45000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0x10, 0x2, 0x0)
setsockopt$SO_ATTACH_FILTER(r0, 0x1, 0x1a, &(0x7f00000b6000)={0x3, &(0x7f0000326000)=[{0x40, 0x2, 0x0, 0x0}, {0x4, 0x0, 0x0, 0x0}, {0x6, 0x0, 0x0, 0x0}]}, 0x10)
write(r0, &(0x7f000061d000-0x1f)="1f0000000001ffd6040001fffffff800000000000100000000000000000000", 0x1f)
ioctl$void(r0, 0x5451)
tee(r0, r0, 0x10001, 0x5)
setsockopt$inet_sctp_SCTP_EVENTS(r0, 0x84, 0xb, &(0x7f0000a1f000)={0x6, 0xffffffffffffff01, 0x9, 0x80ca, 0x4, 0xfffffffffffffffe, 0x6, 0x3, 0x4, 0xfff, 0x7}, 0xb)
2017/12/15 23:28:17 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100000000000, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f0000001000-0x78)={0x1, 0x78, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xac, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffff, 0xffffffffffffffff, 0x0)
r1 = perf_event_open(&(0x7f0000015000-0x78)={0x1, 0x78, 0x5, 0x0, 0x0, 0x0, 0x0, 0x3, 0x3fe, 0xa, 0xffffffffffffff21, 0x0, 0xff, 0x0, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffff, r0, 0x0)
mmap(&(0x7f00002c3000/0x3000)=nil, 0x3000, 0x0, 0x11, r1, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r2 = memfd_create(&(0x7f0000000000)="2900", 0x3)
fdatasync(r2)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$sg(&(0x7f0000985000)="2f6465762f73672300", 0x0, 0x0)
perf_event_open(&(0x7f00008b3000)={0x2, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x4, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0, 0x100000001, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = socket(0x0, 0x800, 0x2)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$ipx_IPX_TYPE(r3, 0x100, 0x1, &(0x7f0000000000)=0x0, &(0x7f0000001000)=0x4)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = syz_open_dev$mice(&(0x7f0000002000-0x10)="2f6465762f696e7075742f6d69636500", 0x0, 0x121000)
ioctl$KVM_SET_TSS_ADDR(r4, 0xae47, 0x392e176dbc61717d)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
set_robust_list(&(0x7f0000003000-0x18)={&(0x7f0000000000/0x2000)=nil, 0x8000, &(0x7f0000000000/0x2000)=nil}, 0x18)
setsockopt(r3, 0x7, 0x8, &(0x7f00006de000)="5b4580fefbeb9f97461b1ed80fdcce49babeac7ae3ce182b6cd31fbe707a8c7154dc2be9594011c50d70ad173e196e472d28a4a7ab3f3f4f1463ac38bc929ddeaaf906971d8182217d27df2f3c0eb39bf4e3421f1e8c1c0bd3781a1ce2912162d65c221d8d27553109df113d7f72b4dfcf3bd428f73bd386363bb72734c4e6ef1e35a8bd91b69c80ddd1f71158c7ddaa5340682d03f22b86cf90253b1e1c60c963c6552168269e6928b7c1237d2d0f8e8e42503d593ef0dc4bdc962f9811c8880f1917b3382e48f3", 0xc8)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000616000)="2f6465762f72666b696c6c00", 0x28c602, 0x0)
ioctl$TIOCLINUX3(r5, 0x541c, &(0x7f00006e7000-0x1)=0x3)
setsockopt$inet_sctp6_SCTP_RECVNXTINFO(r3, 0x84, 0x21, &(0x7f000069b000)=0x9, 0x4)
ioctl$TCXONC(r5, 0x540a, 0x3e)
socket(0xa, 0x3, 0x3c)
2017/12/15 23:28:17 executing program 7:
r0 = openat$selinux_mls(0xffffffffffffff9c, &(0x7f0000dda000)="2f73656c696e75782f6d6c7300", 0x0, 0x0)
ioctl$KDADDIO(r0, 0x4b34, 0x6)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6_dccp(0xa, 0x6, 0x0, &(0x7f00006fb000)={0x0, <r1=>0x0})
ioctl$TIOCGSID(0xffffffffffffffff, 0x540f, &(0x7f000096b000-0x4)=<r2=>0x0)
lstat(&(0x7f0000253000)="2e2f66696c653000", &(0x7f00007da000)={0x0, 0x0, 0x0, 0x0, <r3=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
ioctl$DRM_IOCTL_GET_CLIENT(0xffffffffffffffff, 0xc0286405, &(0x7f0000b7c000)={0x80, 0xc000000000, r2, 0xfff, r3, 0x5, 0x8000, 0x2000})
perf_event_open(&(0x7f0000d8e000-0x78)={0x20000000002, 0x78, 0xf9fe, 0x1, 0x8000009, 0x80000000000000, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x500000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
bind$alg(0xffffffffffffffff, &(0x7f0000dd3000-0x58)={0x26, "726e670000000000000000000000", 0x0, 0x0, "647262675f6e6f70725f686d61635f73686131000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
perf_event_open(&(0x7f0000e0c000-0x78)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r2, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = syz_open_procfs(r2, &(0x7f0000fa1000-0xf)="6e65742f697076365f726f75746500")
ptrace(0x4208, r2)
getsockopt$inet_sctp6_SCTP_DEFAULT_PRINFO(r4, 0x84, 0x72, &(0x7f000053b000)={<r5=>0x0, 0x95a, 0x30}, &(0x7f0000124000)=0xc)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r4, 0x84, 0x9, &(0x7f00004d7000)={r5, @in6={{0xa, 0x3, 0x200, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x200}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xa5, 0xb72, 0x8, 0x200, 0x84}, &(0x7f0000697000-0x4)=0xa0)
preadv(r4, &(0x7f0000295000-0x80)=[{&(0x7f0000344000-0xc9)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc9}, {&(0x7f0000097000-0x51)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x51}, {&(0x7f0000c2e000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xbe}, {&(0x7f00002af000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xff}, {&(0x7f0000801000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd0}, {&(0x7f0000807000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x92}, {&(0x7f0000497000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf1}, {&(0x7f0000f6b000-0xcd)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xcd}], 0x8, 0x0)
fgetxattr(r1, &(0x7f00009b9000)=@random={"757365722e00", "726e670000000000000000000000"}, &(0x7f0000adf000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x44)
r6 = syz_open_procfs(0x0, &(0x7f00001dd000-0x9)="6e65742f7463703600")
move_pages(r2, 0x0, &(0x7f00009c4000)=[], &(0x7f0000b05000-0x10)=[], &(0x7f00002b5000-0x14)=[0x0, 0x0, 0x0, 0x0, 0x0], 0x2)
ioctl$TIOCLINUX6(0xffffffffffffffff, 0x541c, &(0x7f0000ce3000)={0x6, 0x401})
ioctl$TUNSETLINK(r4, 0x400454cd, &(0x7f0000e0b000-0x4)=0x8001)
mprotect(&(0x7f0000c09000/0x2000)=nil, 0x2000, 0xe)
sendfile(r6, r6, &(0x7f0000504000)=0x100000, 0xffff)
ioctl$LOOP_CLR_FD(r6, 0x4c01)
setsockopt$inet_sctp6_SCTP_HMAC_IDENT(r6, 0x84, 0x16, &(0x7f0000c2c000-0x10)={0x6, [0x200020001, 0x0, 0x7f, 0x5, 0x1ad, 0x81]}, 0x10)
msync(&(0x7f00004ac000/0x3000)=nil, 0x3000, 0xb)
2017/12/15 23:28:17 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TIOCGPGRP(0xffffffffffffffff, 0x540f, &(0x7f000078d000)=0x0)
sched_setaffinity(0x0, 0x8, &(0x7f00008ab000-0x8)=0x0)
writev(0xffffffffffffffff, &(0x7f0000a07000)=[], 0x0)
mprotect(&(0x7f0000852000/0xe000)=nil, 0xe000, 0x200000e)
r0 = bpf$MAP_CREATE(0x0, &(0x7f0000fc9000)={0x1, 0x8, 0x209e1a, 0x1, 0x0, 0x0, 0x0}, 0x1c)
set_mempolicy(0x1, &(0x7f0000e7f000)=0x0, 0x1)
creat(&(0x7f0000c15000)="2e2f66696c653000", 0x1a)
mkdir(&(0x7f00006df000-0x8)="2e2f66696c653000", 0x0)
r1 = openat(0xffffffffffffff9c, &(0x7f0000013000-0x8)="2e2f66696c653000", 0x0, 0x0)
creat(&(0x7f000000f000)="2e2f66696c65302f66696c65302f62757300", 0x0)
fcntl$setlease(r1, 0x400, 0x0)
setsockopt$inet_sctp6_SCTP_DISABLE_FRAGMENTS(0xffffffffffffffff, 0x84, 0x8, &(0x7f0000054000-0x4)=0x0, 0x4)
bpf$OBJ_PIN_MAP(0x6, &(0x7f000022f000)={&(0x7f0000450000-0x12)="2e2f66696c65302f66696c65302f62757300", r0}, 0xc)
[ 52.763220] SELinux: unrecognized netlink message: protocol=0 nlmsg_type=256 sclass=netlink_route_socket pig=12123 comm=syz-executor2
[ 52.786842] SELinux: unrecognized netlink message: protocol=0 nlmsg_type=256 sclass=netlink_route_socket pig=12123 comm=syz-executor2
2017/12/15 23:28:18 executing program 2:
r0 = socket$inet6_dccp(0xa, 0x6, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe(&(0x7f0000000000)={0x0, <r1=>0x0})
recvfrom$ipx(r1, &(0x7f0000000000)="", 0x0, 0x40010062, 0x0, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe(&(0x7f0000001000)={<r2=>0x0, <r3=>0x0})
mmap(&(0x7f0000000000/0xd18000)=nil, 0xd18000, 0x3, 0x32, r0, 0x0)
r4 = socket$inet_tcp(0x2, 0x1, 0x0)
mmap(&(0x7f0000d18000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000d19000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_tcp_TCP_MD5SIG(r2, 0x6, 0xe, &(0x7f0000d1a000-0x160)={{{{0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0xa, 0x0, 0x1, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x37}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, 0x6, 0x80000001, 0x8, "36e94fd1da5d7c078e6f5f2f6eef2b06fb6a99a7776c9ec23276b931483ac5c24c467411219d0000000000000400e957a308e1f9b2b52e3a831df0d4d0e3f43272e6c65e371ac6149d077ee2f5c82e68"}, 0x160)
setsockopt$inet_tcp_int(r4, 0x6, 0x13, &(0x7f0000d06000)=0x1, 0x4)
ioctl$sock_inet_SIOCSIFADDR(r1, 0x8916, &(0x7f00001d2000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_flags=0x202})
mmap(&(0x7f0000d1a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000d18000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000d1b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000d1b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6(0xa, 0x20000003, 0x2, &(0x7f0000166000-0x8)={0x0, <r5=>0x0})
mmap(&(0x7f0000d19000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_RESET_STREAMS(r5, 0x84, 0x77, &(0x7f0000d1a000-0x8)={<r6=>0x0, 0x0}, &(0x7f0000489000+0x96b)=0x8)
getsockopt$inet_sctp_SCTP_ENABLE_STREAM_RESET(r1, 0x84, 0x76, &(0x7f0000d1b000-0x8)={r6, 0x1000}, &(0x7f0000d1a000)=0x8)
mmap(&(0x7f0000d19000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000d19000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000088a000/0x4000)=nil, 0x4000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_tcp_int(r4, 0x6, 0x4, &(0x7f0000d1c000-0x4)=0x8, 0x4)
mmap(&(0x7f0000d19000/0x1000)=nil, 0x1000, 0x4000000000003, 0x400000000032, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000d1a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000d1a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000d1a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
recvmsg(r3, &(0x7f0000d1b000-0x38)={&(0x7f0000c2e000)=@nl={0x0, 0x0, 0x0, 0x0}, 0xc, &(0x7f0000d1a000)=[{&(0x7f0000d1b000-0xa8)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa8}, {&(0x7f0000bfd000-0x8)="0000000000000000", 0x8}, {&(0x7f000027f000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x8a}], 0x3, &(0x7f0000d18000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xaa, 0x3f}, 0x101)
mmap(&(0x7f0000d1a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_tcp_TCP_MD5SIG(r4, 0x6, 0xe, &(0x7f0000d1b000-0x59)={{{{0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0xa, 0x0, 0x100000001, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1000002}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, 0x988, 0x7, 0x7d6, "a69b02f95c4674d5a5cdb4984eb5d185760f4d585b14abc0d4e5b8859c249d9672cfeabab50533d59fea8977a879665fe57290151e3228fb010c91bf721017766a07e76c2310c668dd7c1f0b8b6ac781"}, 0x160)
setsockopt$sock_int(r4, 0x1, 0x9, &(0x7f0000d19000)=0x5, 0x4)
mmap(&(0x7f0000723000/0x1000)=nil, 0x1000, 0x0, 0x801f, r4, 0x0)
sendto$inet(r4, &(0x7f0000d1a000)="ee", 0x1, 0x20000000, &(0x7f0000b26000)={0x2, 0x1, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
2017/12/15 23:28:18 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0xa, 0x2, 0x0)
ioctl$TIOCGPGRP(0xffffffffffffff9c, 0x540f, &(0x7f000029f000)=<r1=>0x0)
prctl$setptracer(0x59616d61, r1)
ioctl$DRM_IOCTL_MODE_GETRESOURCES(0xffffffffffffffff, 0xc04064a0, &(0x7f0000000000)={&(0x7f0000859000)=[], &(0x7f0000003000-0x24)=[], &(0x7f000044a000)=[0x0, 0x0], &(0x7f0000c3b000)=[], 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0})
getsockopt$inet_dccp_int(r0, 0x21, 0x0, &(0x7f00007ba000-0x4)=0x0, &(0x7f0000ea1000-0x4)=0x4)
setsockopt(r0, 0x29, 0x23, &(0x7f0000000000)="", 0x264)
getpeername$packet(r0, &(0x7f000044f000-0x14)={0x0, 0x0, <r2=>0x0, 0x0, 0x0, 0x0, @remote={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f00000ac000-0x4)=0x14)
r3 = memfd_create(&(0x7f0000913000-0x2)="2300", 0x0)
ioctl$VT_RELDISP(r3, 0x5605)
ioctl$sock_inet6_SIOCDELRT(r0, 0x890c, &(0x7f00009dd000)={@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, @loopback={0x0, 0x1}, 0x10000, 0x7f, 0x2, 0x0, 0x80, 0x4000000, r2})
getsockopt$inet6_tcp_TCP_REPAIR_WINDOW(r0, 0x6, 0x1d, &(0x7f0000929000-0x14)={0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f00004b9000-0x4)=0x14)
r4 = socket$inet_tcp(0x2, 0x1, 0x0)
getsockopt$inet_sctp_SCTP_PR_ASSOC_STATUS(r4, 0x84, 0x73, &(0x7f0000e2e000)={0x0, 0xffffffffffffffee, 0x30, 0x0, 0x800}, &(0x7f0000c04000-0x4)=0x18)
setsockopt$inet_buf(r4, 0x0, 0x10, &(0x7f0000cf5000-0xc1)="18000000020001000000be8c5eff8c88360000f1010300000000000000d90000f7b933d898055bf748bb6a8807787e59dba67ef147b3550400000067a1e2010067fc2163e000250000000453ff1f00000000000000c88ebbff060100000b00000000b121ad1474d722f542002700ec008b6207000000047ee87ccc000000080000c50fff04e9e9f57406aa01100b1b04000000cc08000020ffe3c5452c1adb8a335bd8b2d17fffa200571068395533b594fa00041ad0b4c2c23eef679567f8da", 0xc0)
getsockopt$inet_sctp6_SCTP_ASSOCINFO(r0, 0x84, 0x1, &(0x7f00007ce000)={<r5=>0x0, 0x7, 0xffff, 0x4, 0x3, 0x40}, &(0x7f00002db000-0x4)=0x14)
setsockopt$inet_sctp6_SCTP_AUTH_DELETE_KEY(r0, 0x84, 0x19, &(0x7f0000419000-0x6)={r5, 0xfffffffffffffc00}, 0x6)
setsockopt$inet_sctp6_SCTP_SOCKOPT_BINDX_REM(r0, 0x84, 0x65, &(0x7f0000934000-0xb0)=[@in6={0xa, 0x3, 0x401, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x4354}, @in={0x2, 0x1, @rand_addr=0x8, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x0, 0xfa, @loopback={0x0, 0x1}, 0x400}, @in={0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0x100, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x7fff}, @in={0x2, 0x2, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x3, 0x9, @loopback={0x0, 0x1}, 0x58}, @in={0x2, 0x2, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}], 0xb0)
2017/12/15 23:28:18 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$vcs(0xffffffffffffff9c, &(0x7f0000a76000)="2f6465762f76637300", 0x1, 0x0)
getsockopt$netrom_NETROM_N2(r0, 0x103, 0x3, &(0x7f00001ea000-0x4)=0x80, &(0x7f0000e34000-0x4)=0x4)
ioctl$EVIOCGKEYCODE(r0, 0x80084504, &(0x7f0000a18000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
perf_event_open(&(0x7f0000f78000-0x78)={0x2, 0x78, 0xe2, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r0, 0x2)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_PARTIAL_DELIVERY_POINT(0xffffffffffffffff, 0x84, 0x13, &(0x7f000000c000)={<r1=>0x0, 0x8}, &(0x7f000046d000)=0x8)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = memfd_create(&(0x7f0000001000)="00", 0x2)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_PEER_AUTH_CHUNKS(r2, 0x84, 0x1a, &(0x7f0000002000-0xba)={r1, 0xb2, "3c335ecfef962b3f76d5da87d295a857ccbcc82e6416832d789d6f1b79db1fc94165bbfb3a09bfaadf757b65fbf6feea5d16592d0b946583586d8157e1c9512b97ce24a3659e0bca7234e9b9b2d199a4bb5a567f76cb2287c837b3e7f050f14e714fcac0f859ca51da51390ce98da3211874f3d7f983964cd09ad8b3ea1f8c59f293bb88e67c898a803996b728fadd1e862cfe1ee8d32bf6652e5caaae0bcbad87441135986551e98f1a89230bcc0c0a1d73"}, &(0x7f0000001000)=0xba)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$inet(0xffffffffffffffff, &(0x7f0000f78000-0x10)={0x2, 0x1, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x968, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$LOOP_SET_STATUS64(r2, 0x4c04, &(0x7f0000550000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x15, 0x10, "4593c1302f7b82637ddf88296611dbba59570b7911ecb5602918c82fa86b8faaa2552e6792c9d4f638e53533a6fed505ec669faf20416d2e31d5e343a0fcff19", "78cf6ececcb6507f924643b3fc49b111553efecbdf530bcaa32322b9f8ee2a7e97b9aac328ed3dcc62d5c938f6195163719d55b5e8e48545cf76e97885d47546", "28587541d6e2688ed679a4011719b6671562b874717b671c6445bbe93da8e63c", [0x5, 0x3fe]})
unshare(0x20000000)
setsockopt$inet_sctp_SCTP_PR_SUPPORTED(r2, 0x84, 0x71, &(0x7f00007e6000)={0x0, 0x0}, 0x8)
ioctl$EVIOCGABS0(r0, 0x80184540, &(0x7f000097e000-0xce)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r3 = getpid()
setpriority(0x0, r3, 0x8000008000000)
capset(&(0x7f00001aa000-0x8)={0x0, 0x0}, &(0x7f000004c000-0x18)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
accept$ipx(r2, &(0x7f0000ff7000)={0x0, 0x0, 0x0, "000000000000", 0x0, 0x0}, &(0x7f0000eff000)=0x10)
ioperm(0x0, 0x1000, 0x0)
r4 = request_key(&(0x7f0000fb1000)="6269675f6b657900", &(0x7f000091a000)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f00009f8000)="2a6e6f6465762a00", 0xffffffffffffffff)
keyctl$read(0xb, r4, &(0x7f0000b32000-0x18)="000000000000000000000000000000000000000000000000", 0x18)
clone(0x20003fa, &(0x7f0000f5e000-0x1)="50", &(0x7f0000752000)=0x0, &(0x7f0000160000)=0x0, &(0x7f0000c18000)="")
2017/12/15 23:28:18 executing program 6:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f73657175656e6365723200", 0x8000, 0x0)
r1 = dup(0xffffffffffffff9c)
getsockopt$inet_buf(r1, 0x0, 0x0, &(0x7f0000000000)="", &(0x7f0000001000-0x4)=0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$UFFDIO_REGISTER(r0, 0xc020aa00, &(0x7f000021d000-0x20)={{&(0x7f0000e31000/0x3000)=nil, 0x3000}, 0x2, 0x0})
munlock(&(0x7f00007a5000/0x4000)=nil, 0x4000)
r2 = open(&(0x7f000058b000-0x8)="2e2f66696c653000", 0x101, 0xfffffffffffffffc)
getsockopt$inet_sctp6_SCTP_MAX_BURST(r2, 0x84, 0x14, &(0x7f0000877000)=@assoc_value={<r3=>0x0, 0x0}, &(0x7f00007ea000-0x4)=0x8)
getsockopt$inet_sctp_SCTP_CONTEXT(0xffffffffffffff9c, 0x84, 0x11, &(0x7f0000b0f000-0x8)={<r4=>r3, 0xa6}, &(0x7f000073d000-0x4)=0x8)
r5 = syz_open_dev$random(&(0x7f0000643000-0xc)="2f6465762f72616e646f6d00", 0x0, 0x100)
r6 = syz_open_dev$sg(&(0x7f0000005000)="2f6465762f73672300", 0x0, 0x8002)
r7 = request_key(&(0x7f0000b02000)="2e726571756573745f6b65795f6175746800", &(0x7f00000ae000)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f0000a69000-0xc)="2f6465762f72616e646f6d00", 0xffffffffffffffff)
r8 = request_key(&(0x7f0000e41000)="6465616400", &(0x7f00000c3000-0x5)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f00006a3000)="2f6465762f72616e646f6d00", 0xffffffffffffffff)
keyctl$search(0xa, r7, &(0x7f00003b5000)="7573657200", &(0x7f0000255000)={0x73, 0x79, 0x7a, 0x0, 0x0}, r8)
ioctl(r6, 0x7, &(0x7f000009a000)="10f5")
getsockopt$nfc_llcp(r5, 0x118, 0x0, &(0x7f0000f60000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x32)
ioctl$sock_ipx_SIOCSIFADDR(r6, 0x8916, &(0x7f0000b86000)={"299d25ba7f886fb4a4e2da2e7742cade", {0x4, 0x9, 0xff, "4cab2be302a5", 0x2, 0x0}})
ioctl(r6, 0x5, &(0x7f00000c6000)="")
mq_timedsend(r6, &(0x7f00002aa000-0xf6)="8ecc9c15ba54ff2fc816fb2544dd13a3a5d5b8b3049bf9f94788fcfe77243823f6bdb0b8944a0542a5bd93b949992270028bb49f154717d4aa9e8069ac65154033c7360303e956e3afb06509a2819e2f065481bb3168bb4d175a1b923cbbf35530ea579543a31b7f202060cdbfaf7cdd5a69c7f439a511afeef5a86ca941a2a59e48f4897d8f26622537aadae4f9eec57dddf849f30b5e0367f0fa5dd0b2a3040e0ccf0ca398ad9a5742f7cdeb6bfb6c10a292422c02eb6a339051e6828cec5890fa9c5b337a663989edfd7c968a8babed36019230b44758f17d781958518cdd7bc1168d87f3d9de3173830cd83decedd93789e8479d", 0xf6, 0x80000, &(0x7f0000965000-0x10)={0x0, 0x0})
getsockopt$inet_mreq(r6, 0x0, 0x20, &(0x7f0000029000)={@remote={0x0, 0x0, 0x0, 0x0}, @remote={0x0, 0x0, 0x0, 0x0}}, &(0x7f000084b000-0x4)=0x8)
epoll_ctl$EPOLL_CTL_ADD(0xffffffffffffffff, 0x1, r6, &(0x7f00005a7000)={0x84, 0x0})
setsockopt$inet_sctp_SCTP_ENABLE_STREAM_RESET(r6, 0x84, 0x76, &(0x7f000044c000)={r4, 0x1}, 0x8)
read$eventfd(r2, &(0x7f0000be6000)=0x0, 0x8)
socket$inet6_icmp_raw(0xa, 0x3, 0x3a)
set_thread_area(&(0x7f0000c8c000-0x10)={0x3, 0x97, 0x1, 0xd281, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
getsockopt$inet_pktinfo(r6, 0x0, 0x8, &(0x7f00000ac000)={<r9=>0x0, @broadcast=0x0, @remote={0x0, 0x0, 0x0, 0x0}}, &(0x7f00003c8000-0x4)=0xc)
setsockopt$inet_mreqn(r6, 0x0, 0x0, &(0x7f0000a02000-0xc)={@rand_addr=0xffffffff80000000, @empty=0x0, r9}, 0xc)
setsockopt$inet_udp_int(r6, 0x11, 0x67, &(0x7f0000c55000)=0x800007, 0x4)
socketpair$ipx(0x4, 0x2, 0x0, &(0x7f0000757000-0x2)={<r10=>0x0, 0x0})
ioctl$void(r10, 0x1)
setsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX_OLD(0xffffffffffffffff, 0x84, 0x6b, &(0x7f000046d000)=[], 0x0)
getsockopt$inet_sctp6_SCTP_PEER_AUTH_CHUNKS(r5, 0x84, 0x1a, &(0x7f0000671000-0x12)={r4, 0xa, "ad021d0300e600759e6d"}, &(0x7f0000473000)=0x12)
mbind(&(0x7f0000af3000/0x2000)=nil, 0x2000, 0xfffffffffffffffd, &(0x7f0000f40000-0x8)=0xcbd, 0x5, 0x5)
mmap(&(0x7f0000000000/0xfd5000)=nil, 0xfd5000, 0x300000c, 0x32, 0xffffffffffffffff, 0x0)
2017/12/15 23:28:18 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x968, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = socket$key(0xf, 0x3, 0x2)
r1 = syz_open_dev$mouse(&(0x7f00001fc000-0x12)="2f6465762f696e7075742f6d6f7573652300", 0x0, 0x40000)
ioctl$SNDRV_TIMER_IOCTL_GINFO(r1, 0xc0f85403, &(0x7f0000976000)={{0xffffffffffffffff, 0x2, 0xc, 0x2, 0x1}, 0x2, 0xc922, "69643000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "74696d6572310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, 0x101, 0xffffffff00000001, 0xbb, 0x4, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
sendmsg$key(r0, &(0x7f00005f5000)={0x0, 0x0, &(0x7f00008ff000-0x10)={&(0x7f0000d4d000-0x158)={0x2, 0x14, 0x0, 0x7, 0xf, 0x0, 0x0, 0x0, [@sadb_key={0x1, 0x9, 0x0, 0x0}, @sadb_address={0x5, 0x6, 0x0, 0x0, 0x0, @in6={0xa, 0x0, 0x4, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}}, @sadb_sa={0x2, 0x1, 0x0, 0x0, 0x0, 0x0, 0xb, 0x0}, @sadb_address={0x5, 0x5, 0x0, 0x0, 0x0, @in6={0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}}]}, 0x78}, 0x1, 0x0, 0x0, 0x0}, 0x0)
r2 = openat$selinux_avc_cache_stats(0xffffffffffffff9c, &(0x7f0000615000-0x19)="2f73656c696e75782f6176632f63616368655f737461747300", 0x0, 0x0)
r3 = request_key(&(0x7f00008c1000)="2e6465616400", &(0x7f0000d8a000)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000ee0000)="707070312376626f786e657431766d6e657431572d656d306b657972696e672e00", 0xfffffffffffffff8)
r4 = request_key(&(0x7f0000055000-0x6)="2e6465616400", &(0x7f0000576000)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000fbf000)="2f73656c696e75782f6176632f63616368655f737461747300", 0xfffffffffffffff8)
keyctl$link(0x8, r3, r4)
ioctl$sock_bt_hidp_HIDPGETCONNINFO(r2, 0x800448d3, &(0x7f0000fc9000-0x94)={{0x7fff, 0x40, 0x0, 0x958c, 0x8, 0x9ac8}, 0x5, 0x8, 0x5, 0x100000000, 0x3, "9c97e3c46b57345c983ba4d228f91592b5c117aded5ef4c1162210aa16ffcdc9ce19306da1aeb993de10a808d2f2e8308b92e2a343e03466e817a9403bc439e7a3930f059d77da24bc592f54560b1ef5b5af7a45c9c733cbd8f68b6f54e449e08a4a89626ecb4d5fb2d5e1c6c43846b5f39506850d96b95a4e9e3c6c15e30fb9"})
bpf$BPF_GET_PROG_INFO(0xf, &(0x7f000041b000-0x10)={r0, 0x28, &(0x7f00002ab000)={0x0, <r5=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, 0x10)
bpf$BPF_PROG_GET_FD_BY_ID(0xd, &(0x7f000029e000-0x4)=r5, 0x4)
getsockopt$inet_sctp_SCTP_INITMSG(r2, 0x84, 0x2, &(0x7f000056c000-0x8)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000d48000-0x4)=0x8)
chdir(&(0x7f0000666000)="2e2f66696c653000")
2017/12/15 23:28:18 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
munlockall()
prctl$seccomp(0x21, 0x4000000000000, &(0x7f000097f000-0x10)={0x0, &(0x7f0000fca000)=[]})
ioctl$sock_SIOCBRDELBR(0xffffffffffffffff, 0x89a1, &(0x7f000012f000-0x10)=@common="69705f76746930000000000000000000")
ioctl$KVM_CREATE_VM(0xffffffffffffffff, 0xae01, 0x0)
ioctl$KVM_GET_FPU(0xffffffffffffffff, 0x81a0ae8c, &(0x7f00005a5000)={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0})
r0 = openat$kvm(0xffffffffffffff9c, &(0x7f0000c88000)="2f6465762f6b766d00", 0x0, 0x0)
fcntl$addseals(r0, 0x409, 0x0)
pipe2(&(0x7f0000cf1000)={<r1=>0x0, 0x0}, 0x800)
getpid()
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100000, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
keyctl$join(0x1, 0x0)
openat$kvm(0xffffffffffffff9c, &(0x7f0000ff4000-0x9)="2f6465762f6b766d00", 0x800000400086, 0x0)
ioctl$sock_ifreq(r0, 0x0, &(0x7f0000c0c000-0x28)={@common="69705f76746930000000000000000000", @ifru_flags=0x8000})
r2 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r1, &(0x7f0000773000-0x58)={0x26, "726e670000000000000000000000", 0x800, 0xfffffffffffffffc, "647262675f70725f686d61635f736861333834000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r2, 0x117, 0x1, &(0x7f0000679000-0x2)="02ec", 0x2)
r3 = accept$alg(r2, 0x0, 0x0)
sendmmsg$alg(r3, &(0x7f000059f000-0x38)=[{0x0, 0x0, &(0x7f00003e4000-0x20)=[{&(0x7f0000a0d000-0x1b)="610bdeacd082dd0dea25afc0a733d558660743069a7017bef96e7f", 0x1b}, {&(0x7f0000a63000)="efc3009c48e7bcd4298b2333df217bad3f19a68ee75803f860384ae9a0c0119e38aaeb54f87c3c27339231e3dcbf18ac6aa032641fa42bb56ddc514745fde31e53d9613c3923b0b8699c3e1ef252b9c53946ab30c513a85857f707783927773644b85030b9a9858b808f81360cd03fad45b4ad5b9164643a5b9bcd4f91bad8b436d98115058daa4a0953571de02d3b9c638f71b0f05b881af001909241e8b15aa3577ef7a8b353e8f02ac21895dc0d692a109114197dd23454d1e000da4e4b3b8198a1b06b3e0ca3b657d58dfce239fff691f7111c9baa49e48f6b579fe0180d510f4ae2a238363c7bf2bb14e62f99d03213bdbad49db3fbb438372c56b94bb6b7de53bbbbd7b2f43efd8dbcfc49b703acaa05e45b1e75b913869491e1d557172f25d8ccc865d3dd759e7ae639f5ed5a2edeeed4f7dc9e5f9a5ce6bf264a1f5f26f62be5e885a4e6d4d20fe0333118a6de1989a3e240e1958c0cdc1ac553af33fefaca629a15efe6017393f4851d99d064a7c68e795e6fcc946ff992a918cef2f716e10b33d8b63a6c33cb2eacb7a4ee04a84a6b290ccb934ead64e06d17d0c222f9778278eceb1c5361c1df2e55661c4dffabb9b63729addcf82ab0fb3d904f7df408e0414e38406d56d6f03af2e5e5f53c4d69a1f11c24c72a2ed487154e3254bc98a2b4b34ba8c20e0a498090f179b64ce7e742431e334cd59b02a662ef55539a6a65bc46167c6310acb6adec9622408261c98e1210d4230c7795fe85bc0e9b30825370ba321bc979a431a1d049c3466b1408554eef6f381f043f17b23c7bd5b4cc4b94628cbef66375059eb953c2ebc6a6e0d0cd3638a3a835a3f9225c0769deb5d28a9e150b21af40bc3c4001ef4ca589b2bb9d0d501e4c5d33b597bbd17b4ffbbf0ab685a25ec552d552c1c53893297a01b05e8d2416bd7a112b8fd6f7c765e4848fdac434308dcc563326dc0a08ce2a3d95214543135adafa07a58babd59e3064633cc2a93d5d2e36803bebd5042a509a44a68994db3aa667aa12a61cbf765152f64b3c26781f480f01c3b1b1c1c56c89fd3dce3ca953a14c3132ea95d03443909b952b0f5d0eee30deb4cb1966e5ae84e28e7a6b4e43108704f92817bbe232cd089ab6c62cf78574773884b39f92429fef1b04169934d14311badd9ad2904eb6408c8b6a61f334ea6eb1836e8e926ea0e9475d40f62e8fcbbfe96f0aa03f8161b883c17536316431edb12509b26fc211f0ff572992b540219193573115257251188e7b83ef99329628a2f2eab06924f29ba8151fff458579207120eb2fbe0e6286544562f6269eae424436b4115108c6c5717050410da891aae25adb05d330c552850746b6a64f5f18a076f0529b2caac2d308561837f0d84e4f2de2ebe5368372fae0f5c7a769521f4f00aac40ae17b5fc2df8ad4dc00b626d185d4ab3947e575e859229e6b33cfa1984e38957beefac7c443080788bfea6d6e23480e6ec5f0d31bcfe7c125344a79eade1d53084cd3bf24bf7ef15bcb0c89c56ad86f3834f7533ac4c725a47d51d4033394e6ba7890f95fbfd840fdf5db4c5e06d608f9f72be600c4c050a3e53db7550cb08c02091074c858e46daec663b6aac0c13a35c333cc221b20a236e6e2f2db569d9c292dc7a007fdb3a3f3d84949651dc79e7db5b95527660c83744b233273330cb1d59fdf30bd8de80a2cc998d09f4ba093c7239365db7c91ff81c9e4d2acd2a6818e85eb6260d5269213d904f7d472f1404d5b37614775671c6b0d42991388c00b66e6e6e1001ef7b342b895e2f547c80fa98e705623f60f17a13333dd03dc8ea2d577dd06ba2c6d7d78663a752d4323d7c5e052378a6e806536be4025584408735e0909965cb0aa22688dde5c1f079d93a55b421ffb4b379d3a6acdd03a762c9edcc1313422776d1ac6f0af83be9903c92a4a1326256e1de72f2dd48f17776cbbb77edaba616b1304612ae937e06dc892bfd011aa2b8f85dbf2223d9b3b5d60537cd4b24ed039b5557479f89cd075292eebdf6e542b725fa7d7de47fbccd3ac5a0d1e9e00b3685d3b123f0a0ca27ed44c33375863f232c31a6f5db74af6a9fd0f56d81393bd040e4640a25b7729dde8ccf4e09d7adee3c5c0c5aa02a7e9be235b6440f6df766775aca1e42db4baffb77f1ac96d3a2763151d52f0fbd919a9581a187054e1c674381cbf32de1637dee161d39ac9620e01e213cdd87fdaeb1d95bf0370a22540e187b7560e0d8f523b30eda9e17c04765277518cbbac2e5dc9cca87521ba04fe861f149df1919f550e2166e6c1371a8e4415d94e969248d2f72e7fb72512d86a2d76a5a6199b43936086db81a751f689492d3839aba3d415fdc1d1df928f366aa981e0a7ffab020614cc99877327ed12975e59d3c54dfbcf645be3a67cd9ce1304b25c9db32aa501a3dca65238049fc574b8002050f75f19520bd65543ac21bbd6a071e0d314610bb7e333d389a436aedda7452d239536cec77a11fabb80a5789286b8980ff367c5b15ca0101d951e4683eae9f7c417a1e7c7b08d1ffafa2bc70f6d41e7ebc19a25b93d203dabd52f5e5873b9e6a4048ae8de606fe7befd2a383593f6edd1cf534ddc5de21a3ad1ea9ba7fdf2c499a82117134797d48fc37c236d06ba0a219da17526d97536e677defb0e9dc047d0ce947be4b0f7ddc3c8f246fbc28d40880bbf8bf5cef45f0a5c9c46ea93ac63e73ef3889bd3e4e48a3eaea6346b95c51808c3dbb391672c21b18a81a146bb4b75d0e57932b2a95bb9a84a6480b2244a83490c95d32d862db9a2fe3c31ebe18a7142421d6e5f94242df3660ad979192a0a87d7cde1e5caa666eed7b140b193941d6f50bf6b0b600785d8756f63331bbf26c065abf7f565f16810ac17d7395e96e00ac03b710c6abeaf1e4987a3befd2902d1ba20bb13e3c4775dec5e8b2add9f9e35b84423c893f8513e92336d9fb45c411b2e68d0aa544f8439dc0efdf558a0f079b9117037c223111a485210549ed7f24d6220cf93616141c9eadf388b58ab05fab74bce40f2e58bc83e52332b5df325e606725d458392a725d6f3290f8f65bf63f6dd21b5d265022f9d7dcea2eabb7176912fb8897cc6608eb5001e85f7507146668ca75b0788e726b010a1b5e3addc1425f49b98996a92d4368e7a5a00badccb1b04c353e5ab3f920d2cb3d692fb25b5d6a2a349e03c75237caf3811b2c5cede9dd58eb2c45d359c5880322159933f2075648c0593d42f72eb0ccdbd06e00c2190c907da9be1ca3723b0ca34d611c1850b6417175fa3c34ee3bd3fa4df4e2062ea0d2b926827709919c2fefd0ab1b300416f28569c1c9d87ed70dbb2ccd7f178e9f5e2e2a410d02ab16e94b68e6894583e6b6e1048dfb83061cc3cfa4c63ef94342ad05cb35c5b6c91fa4d7972436ca0207088ee7e9ebbbb2696c6ed1101f8b0cfe5d2cc2c428fd15e0b861ffd613512b0d33a03cf0c36ecca447ac0678363928ea5764f5d0b8addb12206d89019ee13bc8c661d92edffc622beae62fdb37c709009a592755c32841b3151079a88c59c5711d2b8b3ef08dcd9f8c0603a7939193d7175882e6b7a24c9b01bcdd7cace92ba5167f5dfe60fc01efac6ee6cce632599a81735604c7c79d76bbef107892919b664f78e085584c974549cacbe485303a37ac3ac3c8c962959bc3659cee9d6f72fccf3f638ce15484a59749191282004bfac7b885d21f512f651a3f672f2985724e1eb47d40d207d4188a7f34d6e725593b077d8cff7fd02b7058b3a234e34a9b4f03db4212bb947cb1c242b18117924e443391be6cfdd4def94357a4a531d2618a08f261cb17b6bdf5b01dfc0eddaef23210bfc27e1277f3fdb9919985ad0c6b25e39d7b09fd575bdeaae5f839614a55e8acd58021eb53d1856e90b55229a82e3ed4f29241d8209774541e06d5aecbc7978c6a51db51fa559a79aaa1babefcb48f5faf24f8efa2f24e736131e4911351f62ac6e7ec70dbfd0c0afa99b49e3881a3540b09ff221b30851c6beace455451d7ab7dd3948e891f5272b2ea7e3fd29a646c3a4e8b2af12d991cee91f9dc773cdbe7eb7536e6b6dc87c7bcd24d14896694cb10e5d8d94e01ec40faad77f1428202bbc86299e44432e0cbd7e040ef47eb9abc8d67b9246e1bff7a96a8843b11fb6df82a5db92c4d20ac91a2fdccc11ba940c99d5388457cabeca4701523ccb071cfb833437eddb2dd974118f475545195a923253dcdf11884b7bd5e57c87ee04f083baec340c0c676f0b6320a2f0373416e7784bf7bdd9dcd4df44fa0d4ed36a67b5ba7c6bb4eee014fe653e41a36c9d8fb37c96b253a2eaead468022d7e3e7e71be4558fed96cac522bc0c72c0d5ccdc2857f3f5b7e8d2f7d7f22ad5d17b97392bfc7b60dd2773de5595960477280ac56f0326acd4224c189b68766a7e1fc3a9b1bcff10f62d679c3f45fa6b4ee2f82c534b45e9e622e8a688e6be89c87f7e23e8181125bda076b4cddb516340198cb8c18bac4dcae68b898cab87cc6581297f87d57046311bc9f9ef65078535f3be0eba9d6bb74f1da0e2c7f5bac57fcd0d1670f95f7f62d964e1c62c0b9f4ea93efe807425742576a1db581675efeb9abd9c9d16a014bd9e1c88dd6b6f834b131a2f52d38dc17ed53d78494367c311c141c774f035f1bd40bc870095a8e4e2b74eb0bf7dcd72de720ce3c16dd262c1c9290bf9ab0a377d9d3e1c583ee005dfd44f1dcaa96f6f8d44e2996008a435d40b3bb578fde815d10bca686678b78d0f89a9c61e2e8ecd38fdbee82263ac6ba342ef9241d955020ece77e682460a21297ac4430960e1f800991fb61fa077eefc5244ee471a23225ab22ff4a173806317f1011177f3220047c8d0fbc129c62fb8946b64644f6f40dc5405ee0c4f9605fc482b8debb213fb6132495306de070151bd3089e6a612a2ae05fa38ba74d7f7da0933a1d191df2848a0eb5122b0c97380813b41ba58e6cf6879a982973ff6c6df238658491a8e59491bba1bf36413f3be5d1e88278d3136fdbc05ea09ec3124843d6a92910243be3729fc992b70aaccb193391e78e2c13c40814f9424da5257c7135ec22f1ee8c8388621e5d9a696b884b0234749796ca02043bbe34fa202d349574c9a2d0dad53f36ec9085ca6298c6a36302521c5e54a0c270f0ece8657b6927d2bdada0b348a4c3d6d253d1278d2050151d0375ef0cf9ecb6e32621c1348b4c93e6d463b1fdb0b2dba07e6cc5961eebf3a3d0df353ff37bba72691572e4d47b359ca778aec3363286ca14672aa0415cfe1dd4adad31a18d8ce8899013945f459d983d52c8008d596ac732f690e9077482d1bb9e2b78cd8cf65a93c8424098d1d49fccd5696b1b5e403363e2efc6c47f8930e2db960bf750305a9810ae949e77c6bc925933480449eaecddfc4a1b0f19143eb9be071b697ac1bc2b5371ff975e091c9829e66f6a2f26ca7ba9aca3df274bffbe8cf339666550eff513929e1cb9eef761ac74adb856dcbf536a76524a49b1eb19a62ff6aa4aff5d99df59b0c43b8f6efa2ff38b3cc090ac06ca0e9198fcb791585e442a2177a59b5541d1848b6541f2c8996ce7e048164ce4b1651f743f08eb76b2e50f0e6c58620709e4958fb9885585b8cb09cfce6a3d99a3dc2d1802755aba3dc9cfb01eb1efef740a3c38eea12fb4e2cd2e3b3388ede2910e035a8394810adf84edacaf58b5df6afdc26918859a50edbf2ff55a9bb36c2f2a3dc9df871ae4c3c977305bbd20f75c424f8a463767ec031b4d4e", 0x1001}], 0x2, &(0x7f000097c000)=[@op={0x18, 0x117, 0x3, 0x1}, @assoc={0x18, 0x117, 0x4, 0xe1a7}], 0x30, 0x80}], 0x1, 0x80)
recvmsg(r3, &(0x7f0000f91000-0x38)={&(0x7f0000aa6000-0x10)=@ax25={0x0, {"00000000000000"}, 0x0}, 0x10, &(0x7f0000691000)=[{&(0x7f0000d5d000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe2}, {&(0x7f00006ba000-0x13)="00000000000000000000000000000000000000", 0x13}, {&(0x7f0000085000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000d08000-0xdb)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc0}], 0x4, &(0x7f000037a000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x66, 0xfffffffffffffffe}, 0x40008020)
r4 = socket$inet_tcp(0x2, 0x1, 0x0)
bind$inet(r4, &(0x7f0000bb6000)={0x2, 0x0, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
setsockopt$sock_int(r4, 0x1, 0x2f, &(0x7f0000b8b000-0x4)=0x73f, 0x4)
sendto$inet(r4, &(0x7f0000e1a000)="08", 0x1, 0x20008007, &(0x7f00008d0000-0x10)={0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getsockopt$inet_tcp_buf(r4, 0x6, 0xb, &(0x7f0000004000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000683000)=0x7b)
r5 = openat$selinux_user(0xffffffffffffff9c, &(0x7f0000090000)="2f73656c696e75782f7573657200", 0x2, 0x0)
setsockopt$inet_sctp_SCTP_SOCKOPT_BINDX_ADD(r5, 0x84, 0x64, &(0x7f0000c25000-0xc)=[@in6={0xa, 0x1, 0x1a83319b, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x10000}], 0x1c)
r6 = syz_open_dev$tun(&(0x7f0000adb000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0x0)
recvmsg(r1, &(0x7f00004e4000)={&(0x7f0000fcd000)=@nfc_llcp={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0}, 0x60, &(0x7f0000237000)=[{&(0x7f0000a13000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xda}, {&(0x7f00004ad000-0xd1)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd1}, {&(0x7f000018d000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x97}, {&(0x7f0000972000-0xba)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xba}, {&(0x7f0000f7e000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x39}, {&(0x7f00007e0000-0x11)="0000000000000000000000000000000000", 0x11}, {&(0x7f000050b000-0xee)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xee}], 0x7, &(0x7f00009ca000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x30, 0x4}, 0x0)
write$tun(r6, &(0x7f000092d000)=@hdr={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @ipv4={{0x1c, 0x4, 0x0, 0x0, 0x80, 0x3, 0x0, 0x0, 0x0, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, @broadcast=0xffffffff, {[@timestamp={0x44, 0x14, 0x7, 0x3, 0x6, [{[@local={0xac, 0x14, 0x0, 0xaa}], 0x1}, {[@broadcast=0xffffffff], 0xffffffffffff7fff}]}, @ssrr={0x89, 0x13, 0x7fff, [@multicast2=0xe0000002, @local={0xac, 0x14, 0x0, 0xaa}, @local={0xac, 0x14, 0x0, 0xaa}, @rand_addr=0x5]}, @rr={0x7, 0x1b, 0x8, [@multicast2=0xe0000002, @local={0xac, 0x14, 0x0, 0xaa}, @local={0xac, 0x14, 0x0, 0xaa}, @rand_addr=0x0, @local={0xac, 0x14, 0x0, 0xaa}, @remote={0xac, 0x14, 0x0, 0xbb}]}, @rr={0x7, 0x17, 0x9, [@remote={0xac, 0x14, 0x0, 0xbb}, @broadcast=0xffffffff, @multicast2=0xe0000002, @local={0xac, 0x14, 0x0, 0xaa}, @rand_addr=0x81]}]}}, @dccp={{0x0, 0x0, 0x4, 0x1, 0x3, 0x0, 0x0, 0x0, 0x0, "b31d90", 0x0, "91b903"}, ""}}}, 0x8a)
2017/12/15 23:28:18 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0x2, 0x3, 0x2)
r1 = socket(0xa, 0x2, 0xffffffffc)
r2 = socket(0x40000000015, 0x5, 0x0)
setsockopt(r2, 0x400000000114, 0x7, &(0x7f0000001000)="033a0007", 0x4)
poll(&(0x7f0000017000)=[{r1, 0x21, 0x0}, {r2, 0x100, 0x0}, {r2, 0x240, 0x0}, {r2, 0x1201, 0x0}, {r1, 0x100, 0x0}], 0x5, 0x1ff)
bpf$MAP_UPDATE_ELEM(0x2, &(0x7f0000017000-0x13)={0xffffffffffffffff, &(0x7f000071f000)="1d49cf60db31e7c9bf49e65630b611e9d09b42ac73cb0ef14d10ef2fc09847646f2bef70bc905da984cb19e1bd18091f1ef49d203b0dd3f2bf16f1a3eb10f99f3a60b674486920dcdd01f2067b7e259af060411865e635f59820a9a237f1ed94df33913bce32398107769db658ca61fcee32d5d66ff65c4c66cbc7625e362576ae666f722767ad8956499d3221c1708e5c05c66662948985edacc31731c5972b64a90ea6e82aaf0350af1d0000646819d1d1c90c601568b8359f61a64e390f75d2b78540d39a6ac853d799e880542a7c3c78e8589cd331f73f25aad0da41b2e43792d29cecd76ee6848b739638b067eccd3aebfe30", &(0x7f0000015000)="004dc51b8cdeeb4914231dac8189ab15353bb122fc0bd314e44df82f4bb51e5d903f52e82138c63d52259a3e5bf72a90ff754a3f19550cadb3cbaff8e5350dbb3f0c41efa3b97cb4f7c5429098aac07fa1f0ae477ef573207885bef9d6242cc32578fbb8a428f2bb63c5aa141122c6a7c6a5ebc19ae00062650f1fedf763d2a294c1b7", 0x3}, 0x20)
r3 = socket(0x40000000015, 0x5, 0x0)
setsockopt$sock_int(r3, 0x1, 0x8, &(0x7f00006dc000-0x4)=0x0, 0x4)
bind$inet(r3, &(0x7f00008a6000-0x10)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
sendto$inet(r3, &(0x7f0000ea8000)="a5", 0x1, 0x0, &(0x7f0000dfd000-0x10)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
sendto$inet(r3, &(0x7f0000fc3000-0x1000)="ba671368d1434e64c449605bdbbfca6d2b9f8be49e9301442865319997d0efdb2f54b6a10c7327757482bfce945c2a91fb8dfafc1d3f56bc543ab87321e12cca08a744a2d128b00634bc882151d36809229a96bc3437ef159489384ade077ba295eac2882dbfd3781dd4d4e609c42628dbb709b3eb1fa030009045dd98b9e6d77b6cec9ceb685595d43995e0f04c32260943add79831e661c6a351dedc8b9d220fbf9fb6e44fb6a629ce9a82025124fec9f3ee751f7da0cd7e799be88ddbdac20b48e890ff81d7fa28c2d017d7932f2569038740461accd4582f576e4fdbd150a3399f8266bc19eb943648ad1ad81420ed6c382436e474390c8995e829e4f9df43eed85a60b9ee254e31eb62900857fa134e76cc64880334adbff069a2e5e647d2ed36a96b23834b6f6ca6b8113baf4cf30347fbb7ffc30aea99872cc0dba03b07d3347b2d257edbe2733c26b7337a79962d8ce85469e3bcbe0e4a48a6ae69613f2d4b5155b390ef67aa714b82b6313ee277cb8986eca5db2e97cb1ae2243bba80274f614ece521baef443394b4c161cb9ae926e21892578b49cfd6efe1cb1572148c10d92218ed73ec116a18de80ac42d2726a4523a764fc6dc356c5fbbf9d2c947ae3bc9a3dc76099f3257c8d5952876151b0326d8cb1d5683ee4ad5ded9a34c00ac1b03f34627ec18a7c2e92c87b7896549cfab5eb55fa85a970994bd4b22b5f0d045e241256d06f485a47b4a55ed389bc1734541232cd41908b5cfa4b8fcfcafce500a0c7ae99767713a98e7927aa69f6ccd7daea62f19ceb82559f41899c9a9aee99113e7e64b5f8b9824be9fdbfa4dd4995673d882bb4daeb64413b334e114965d2ba3cea8051e692508701b9400cb12eae457f8b8549944091b729160939918d8fcae611a5ded665f770db637487a236da1a58ba7566668651a77171fc4fe506496d19059343dbe4f426625d3f2b705f54581372361770bf5a9098a9fafefaf546426b294239ac33e3186e4d58ad2fa995a6ad4dc074e7cca11aead109563b2076c7c6e9f57ec63df960804e2e7f9d8444de9550cca3df7834d864e9777291c2e1f6205de2e43dc995ab8bb1515a365efc2830fa3e7a1dd137f550d6035212bc1f51c3b4ceea430df49ffc9210084ef156ad7e0d219efd6c116693735b44521d389969a3a65617cd2fd6e14060601cee4cd054cf36fe048b57d1d9ee3cad2a73552449926b4a6b03fbe9c0ec68357e1fbe52ed77b67f5870c0aefb7ee8236747e0d67a26725fb515544cbbe8464da94cfd8c0b94bb4e51a263b1749bd0a7cf651931f806d1b928d1f9994f1ad4d50e6a5cd7a8e4e687f8564fdacc864013d095ba9d5709eced3c28eabda476d177a7836400a01e02beeb5a6636d4064fdda344984ad8682d14b87c71727cb66be27d1d39191f4223c545b62fb4860262ba8076a65dbc194cee1df846c584b7bbe9dce6e6895b2cbbb64b03b55548b845cc3de2f939ef918421af9a5e9157e837651245299c03992d0ddee06bd22a31522aca0f309b1feccebc0b1c0ed9d21c19bfd15cd313ff64394fd6a10904890c9f6d646b026f27253e8f584c3ffd20ad67e8b62ed7676706d40bc5c80e376980b", 0x480, 0x0, &(0x7f000069b000-0x5)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
syz_open_dev$tun(&(0x7f000050e000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0x80)
syz_open_dev$usbmon(&(0x7f000010f000-0xd)="2f6465762f7573626d6f6e2300", 0x2, 0x20000)
recvfrom(r3, &(0x7f0000f6d000-0xa5)="", 0x0, 0x0, 0x0, 0x0)
sendto$inet(r3, &(0x7f0000905000)="", 0x0, 0x0, &(0x7f00002b4000)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
recvfrom$inet6(r3, &(0x7f0000fc6000)="", 0x0, 0x0, &(0x7f0000fbf000-0x1c)={0xa, 0x3, 0x0, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x0}, 0x1c)
setsockopt(r0, 0x2000000000000000, 0xc9, &(0x7f0000000000)="d105071e", 0x4)
recvmsg(r0, &(0x7f0000003000-0x38)={0x0, 0x0, &(0x7f0000002000-0x30)=[{&(0x7f0000002000-0x3d)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x3d}, {&(0x7f0000003000-0x4)="00000000", 0x4}, {&(0x7f0000003000-0x50)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x50}], 0x3, &(0x7f0000002000-0x95)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x95, 0x80000000}, 0x2000)
2017/12/15 23:28:18 executing program 5:
mmap(&(0x7f0000000000/0xe72000)=nil, 0xe72000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000e72000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$vcs(0xffffffffffffff9c, &(0x7f0000e73000-0x9)="2f6465762f76637300", 0x100, 0x0)
mmap(&(0x7f0000e72000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_GET_MP_STATE(r0, 0x8004ae98, &(0x7f0000e73000-0x4)=0x0)
r1 = socket(0x11, 0x3, 0x0)
mmap(&(0x7f0000e72000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp6_SCTP_I_WANT_MAPPED_V4_ADDR(r1, 0x84, 0xc, &(0x7f0000e72000)=0x0, 0x4)
getsockopt$inet6_tcp_buf(r1, 0x6, 0x1c, &(0x7f00004cb000-0x28)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000d92000-0x4)=0x9d)
mmap(&(0x7f0000e72000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp_SCTP_AUTOCLOSE(r1, 0x84, 0x4, &(0x7f0000e72000)=0x136, 0x4)
getsockopt(r1, 0x107, 0xa, &(0x7f0000521000)="", &(0x7f0000522000)=0x0)
[ 53.268555] BUG: unable to handle kernel NULL pointer dereference at 0000000000000028
[ 53.270770] program syz-executor6 is using a deprecated SCSI ioctl, please convert it to SG_IO
[ 53.285318] IP: rds_send_xmit+0x80/0x930
[ 53.289350] PGD 20e367067 P4D 20e367067 PUD 2118c1067 PMD 0
[ 53.295123] Oops: 0000 [#1] SMP
[ 53.298369] Dumping ftrace buffer:
[ 53.301872] (ftrace buffer empty)
[ 53.305550] Modules linked in:
[ 53.308716] CPU: 0 PID: 4514 Comm: kworker/u4:4 Not tainted 4.15.0-rc3-next-20171214+ #67
[ 53.316994] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01/2011
[ 53.326319] Workqueue: krdsd rds_send_worker
[ 53.330699] RIP: 0010:rds_send_xmit+0x80/0x930
[ 53.335244] RSP: 0018:ffffc90000f6fdc0 EFLAGS: 00010293
[ 53.340573] RAX: 0000000000000000 RBX: ffff88020e3234c0 RCX: ffffffff8241b25c
[ 53.347809] RDX: 0000000000000000 RSI: ffffffff83080700 RDI: ffff88020e323400
[ 53.355044] RBP: ffffc90000f6fe28 R08: 0000000000000001 R09: 0000000000000004
[ 53.362281] R10: ffffc90000f6fde0 R11: 0000000000000004 R12: ffff88020e3234c0
[ 53.369516] R13: ffff88020e323400 R14: ffff88021780d800 R15: ffff8802150fc600
[ 53.376752] FS: 0000000000000000(0000) GS:ffff88021fc00000(0000) knlGS:0000000000000000
[ 53.384946] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 53.390793] CR2: 0000000000000028 CR3: 00000002119da000 CR4: 00000000001406f0
[ 53.398034] DR0: 0000000020000000 DR1: 0000000020001008 DR2: 0000000020001010
[ 53.405273] DR3: 0000000020000000 DR6: 00000000fffe0ff0 DR7: 0000000000000600
[ 53.412511] Call Trace:
[ 53.415076] ? process_one_work+0x209/0x7a0
[ 53.419368] ? lock_acquire+0xbf/0x220
[ 53.423227] ? process_one_work+0x1f2/0x7a0
[ 53.427523] rds_send_worker+0x37/0x100
[ 53.431467] process_one_work+0x288/0x7a0
[ 53.435594] worker_thread+0x43/0x4d0
[ 53.439372] kthread+0x149/0x170
[ 53.442704] ? process_one_work+0x7a0/0x7a0
[ 53.446990] ? kthread_delayed_work_timer_fn+0xe0/0xe0
[ 53.452242] ? syscall_return_slowpath+0x1b4/0x1e0
[ 53.457139] ret_from_fork+0x24/0x30
[ 53.460838] Code: 00 00 00 48 83 c0 01 48 89 45 a0 49 89 85 a8 00 00 00 41 8b 85 a0 00 00 00 83 f8 03 0f 85 4f 08 00 00 e8 e4 f0 e9 fe 48 8b 45 b8 <48> 8b 40 28 48 8b 58 58 48 85 db 74 0a e8 ce f0 e9 fe 4c 89 ef
[ 53.479998] RIP: rds_send_xmit+0x80/0x930 RSP: ffffc90000f6fdc0
[ 53.486024] CR2: 0000000000000028
[ 53.489448] ---[ end trace 1bd85784f8eb115b ]---
[ 53.494169] Kernel panic - not syncing: Fatal exception
[ 53.499947] Dumping ftrace buffer:
[ 53.503457] (ftrace buffer empty)
[ 53.507133] Kernel Offset: disabled
[ 53.510736] Rebooting in 86400 seconds..
^ permalink raw reply
* [PATCH net] ipv4: Fix use-after-free when flushing FIB tables
From: Ido Schimmel @ 2017-12-18 8:13 UTC (permalink / raw)
To: netdev; +Cc: davem, alexander.h.duyck, fengguang.wu, dsahern, mlxsw,
Ido Schimmel
Since commit 0ddcf43d5d4a ("ipv4: FIB Local/MAIN table collapse") the
local table uses the same trie allocated for the main table when custom
rules are not in use.
When a net namespace is dismantled, the main table is flushed and freed
(via an RCU callback) before the local table. In case the callback is
invoked before the local table is iterated, a use-after-free can occur.
Fix this by iterating over the FIB tables in reverse order, so that the
main table is always freed after the local table.
Fixes: 0ddcf43d5d4a ("ipv4: FIB Local/MAIN table collapse")
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
---
net/ipv4/fib_frontend.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c
index f52d27a422c3..d93850848c97 100644
--- a/net/ipv4/fib_frontend.c
+++ b/net/ipv4/fib_frontend.c
@@ -1298,14 +1298,14 @@ static int __net_init ip_fib_net_init(struct net *net)
static void ip_fib_net_exit(struct net *net)
{
- unsigned int i;
+ int i;
rtnl_lock();
#ifdef CONFIG_IP_MULTIPLE_TABLES
RCU_INIT_POINTER(net->ipv4.fib_main, NULL);
RCU_INIT_POINTER(net->ipv4.fib_default, NULL);
#endif
- for (i = 0; i < FIB_TABLE_HASHSZ; i++) {
+ for (i = FIB_TABLE_HASHSZ - 1; i >= 0; i--) {
struct hlist_head *head = &net->ipv4.fib_table_hash[i];
struct hlist_node *tmp;
struct fib_table *tb;
--
2.14.3
^ permalink raw reply related
* [v2 PATCH -tip 6/6] net: dccp: Remove dccpprobe module
From: Masami Hiramatsu @ 2017-12-18 8:13 UTC (permalink / raw)
To: Ingo Molnar, Ian McDonald, Vlad Yasevich, Stephen Hemminger,
Steven Rostedt
Cc: Peter Zijlstra, Thomas Gleixner, LKML, H . Peter Anvin,
Gerrit Renker, David S . Miller, Neil Horman, dccp, netdev,
linux-sctp, Stephen Rothwell, mhiramat
In-Reply-To: <151358464509.28850.477561174715901317.stgit@devbox>
Remove DCCP probe module since jprobe has been deprecated.
That function is now replaced by dccp/dccp_probe trace-event.
You can use it via ftrace or perftools.
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
---
net/dccp/Kconfig | 17 ----
net/dccp/Makefile | 2 -
net/dccp/probe.c | 203 -----------------------------------------------------
3 files changed, 222 deletions(-)
delete mode 100644 net/dccp/probe.c
diff --git a/net/dccp/Kconfig b/net/dccp/Kconfig
index 8c0ef71bed2f..b270e84d9c13 100644
--- a/net/dccp/Kconfig
+++ b/net/dccp/Kconfig
@@ -39,23 +39,6 @@ config IP_DCCP_DEBUG
Just say N.
-config NET_DCCPPROBE
- tristate "DCCP connection probing"
- depends on PROC_FS && KPROBES
- ---help---
- This module allows for capturing the changes to DCCP connection
- state in response to incoming packets. It is used for debugging
- DCCP congestion avoidance modules. If you don't understand
- what was just said, you don't need it: say N.
-
- Documentation on how to use DCCP connection probing can be found
- at:
-
- http://www.linuxfoundation.org/collaborate/workgroups/networking/dccpprobe
-
- To compile this code as a module, choose M here: the
- module will be called dccp_probe.
-
endmenu
diff --git a/net/dccp/Makefile b/net/dccp/Makefile
index 2e7b56097bc4..9d0383d2f277 100644
--- a/net/dccp/Makefile
+++ b/net/dccp/Makefile
@@ -21,9 +21,7 @@ obj-$(subst y,$(CONFIG_IP_DCCP),$(CONFIG_IPV6)) += dccp_ipv6.o
dccp_ipv6-y := ipv6.o
obj-$(CONFIG_INET_DCCP_DIAG) += dccp_diag.o
-obj-$(CONFIG_NET_DCCPPROBE) += dccp_probe.o
dccp-$(CONFIG_SYSCTL) += sysctl.o
dccp_diag-y := diag.o
-dccp_probe-y := probe.o
diff --git a/net/dccp/probe.c b/net/dccp/probe.c
deleted file mode 100644
index 3d3fda05b32d..000000000000
--- a/net/dccp/probe.c
+++ /dev/null
@@ -1,203 +0,0 @@
-/*
- * dccp_probe - Observe the DCCP flow with kprobes.
- *
- * The idea for this came from Werner Almesberger's umlsim
- * Copyright (C) 2004, Stephen Hemminger <shemminger@osdl.org>
- *
- * Modified for DCCP from Stephen Hemminger's code
- * Copyright (C) 2006, Ian McDonald <ian.mcdonald@jandi.co.nz>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-#include <linux/kernel.h>
-#include <linux/kprobes.h>
-#include <linux/socket.h>
-#include <linux/dccp.h>
-#include <linux/proc_fs.h>
-#include <linux/module.h>
-#include <linux/kfifo.h>
-#include <linux/vmalloc.h>
-#include <linux/time64.h>
-#include <linux/gfp.h>
-#include <net/net_namespace.h>
-
-#include "dccp.h"
-#include "ccid.h"
-#include "ccids/ccid3.h"
-
-static int port;
-
-static int bufsize = 64 * 1024;
-
-static const char procname[] = "dccpprobe";
-
-static struct {
- struct kfifo fifo;
- spinlock_t lock;
- wait_queue_head_t wait;
- struct timespec64 tstart;
-} dccpw;
-
-static void printl(const char *fmt, ...)
-{
- va_list args;
- int len;
- struct timespec64 now;
- char tbuf[256];
-
- va_start(args, fmt);
- getnstimeofday64(&now);
-
- now = timespec64_sub(now, dccpw.tstart);
-
- len = sprintf(tbuf, "%lu.%06lu ",
- (unsigned long) now.tv_sec,
- (unsigned long) now.tv_nsec / NSEC_PER_USEC);
- len += vscnprintf(tbuf+len, sizeof(tbuf)-len, fmt, args);
- va_end(args);
-
- kfifo_in_locked(&dccpw.fifo, tbuf, len, &dccpw.lock);
- wake_up(&dccpw.wait);
-}
-
-static int jdccp_sendmsg(struct sock *sk, struct msghdr *msg, size_t size)
-{
- const struct inet_sock *inet = inet_sk(sk);
- struct ccid3_hc_tx_sock *hc = NULL;
-
- if (ccid_get_current_tx_ccid(dccp_sk(sk)) == DCCPC_CCID3)
- hc = ccid3_hc_tx_sk(sk);
-
- if (port == 0 || ntohs(inet->inet_dport) == port ||
- ntohs(inet->inet_sport) == port) {
- if (hc)
- printl("%pI4:%u %pI4:%u %d %d %d %d %u %llu %llu %d\n",
- &inet->inet_saddr, ntohs(inet->inet_sport),
- &inet->inet_daddr, ntohs(inet->inet_dport), size,
- hc->tx_s, hc->tx_rtt, hc->tx_p,
- hc->tx_x_calc, hc->tx_x_recv >> 6,
- hc->tx_x >> 6, hc->tx_t_ipi);
- else
- printl("%pI4:%u %pI4:%u %d\n",
- &inet->inet_saddr, ntohs(inet->inet_sport),
- &inet->inet_daddr, ntohs(inet->inet_dport),
- size);
- }
-
- jprobe_return();
- return 0;
-}
-
-static struct jprobe dccp_send_probe = {
- .kp = {
- .symbol_name = "dccp_sendmsg",
- },
- .entry = jdccp_sendmsg,
-};
-
-static int dccpprobe_open(struct inode *inode, struct file *file)
-{
- kfifo_reset(&dccpw.fifo);
- getnstimeofday64(&dccpw.tstart);
- return 0;
-}
-
-static ssize_t dccpprobe_read(struct file *file, char __user *buf,
- size_t len, loff_t *ppos)
-{
- int error = 0, cnt = 0;
- unsigned char *tbuf;
-
- if (!buf)
- return -EINVAL;
-
- if (len == 0)
- return 0;
-
- tbuf = vmalloc(len);
- if (!tbuf)
- return -ENOMEM;
-
- error = wait_event_interruptible(dccpw.wait,
- kfifo_len(&dccpw.fifo) != 0);
- if (error)
- goto out_free;
-
- cnt = kfifo_out_locked(&dccpw.fifo, tbuf, len, &dccpw.lock);
- error = copy_to_user(buf, tbuf, cnt) ? -EFAULT : 0;
-
-out_free:
- vfree(tbuf);
-
- return error ? error : cnt;
-}
-
-static const struct file_operations dccpprobe_fops = {
- .owner = THIS_MODULE,
- .open = dccpprobe_open,
- .read = dccpprobe_read,
- .llseek = noop_llseek,
-};
-
-static __init int dccpprobe_init(void)
-{
- int ret = -ENOMEM;
-
- init_waitqueue_head(&dccpw.wait);
- spin_lock_init(&dccpw.lock);
- if (kfifo_alloc(&dccpw.fifo, bufsize, GFP_KERNEL))
- return ret;
- if (!proc_create(procname, S_IRUSR, init_net.proc_net, &dccpprobe_fops))
- goto err0;
-
- ret = register_jprobe(&dccp_send_probe);
- if (ret) {
- ret = request_module("dccp");
- if (!ret)
- ret = register_jprobe(&dccp_send_probe);
- }
-
- if (ret)
- goto err1;
-
- pr_info("DCCP watch registered (port=%d)\n", port);
- return 0;
-err1:
- remove_proc_entry(procname, init_net.proc_net);
-err0:
- kfifo_free(&dccpw.fifo);
- return ret;
-}
-module_init(dccpprobe_init);
-
-static __exit void dccpprobe_exit(void)
-{
- kfifo_free(&dccpw.fifo);
- remove_proc_entry(procname, init_net.proc_net);
- unregister_jprobe(&dccp_send_probe);
-
-}
-module_exit(dccpprobe_exit);
-
-MODULE_PARM_DESC(port, "Port to match (0=all)");
-module_param(port, int, 0);
-
-MODULE_PARM_DESC(bufsize, "Log buffer size (default 64k)");
-module_param(bufsize, int, 0);
-
-MODULE_AUTHOR("Ian McDonald <ian.mcdonald@jandi.co.nz>");
-MODULE_DESCRIPTION("DCCP snooper");
-MODULE_LICENSE("GPL");
^ permalink raw reply related
* [v2 PATCH -tip 5/6] net: dccp: Add DCCP sendmsg trace event
From: Masami Hiramatsu @ 2017-12-18 8:13 UTC (permalink / raw)
To: Ingo Molnar, Ian McDonald, Vlad Yasevich, Stephen Hemminger,
Steven Rostedt
Cc: Peter Zijlstra, Thomas Gleixner, LKML, H . Peter Anvin,
Gerrit Renker, David S . Miller, Neil Horman, dccp, netdev,
linux-sctp, Stephen Rothwell, mhiramat
In-Reply-To: <151358464509.28850.477561174715901317.stgit@devbox>
Add DCCP sendmsg trace event (dccp/dccp_probe) for
replacing dccpprobe. User can trace this event via
ftrace or perftools.
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
---
net/dccp/proto.c | 5 +++
net/dccp/trace.h | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 110 insertions(+)
create mode 100644 net/dccp/trace.h
diff --git a/net/dccp/proto.c b/net/dccp/proto.c
index 9d43c1f40274..e57b5db495cd 100644
--- a/net/dccp/proto.c
+++ b/net/dccp/proto.c
@@ -38,6 +38,9 @@
#include "dccp.h"
#include "feat.h"
+#define CREATE_TRACE_POINTS
+#include "trace.h"
+
DEFINE_SNMP_STAT(struct dccp_mib, dccp_statistics) __read_mostly;
EXPORT_SYMBOL_GPL(dccp_statistics);
@@ -761,6 +764,8 @@ int dccp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
int rc, size;
long timeo;
+ trace_dccp_probe(sk, len);
+
if (len > dp->dccps_mss_cache)
return -EMSGSIZE;
diff --git a/net/dccp/trace.h b/net/dccp/trace.h
new file mode 100644
index 000000000000..aa01321a6c37
--- /dev/null
+++ b/net/dccp/trace.h
@@ -0,0 +1,105 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#undef TRACE_SYSTEM
+#define TRACE_SYSTEM dccp
+
+#if !defined(_TRACE_DCCP_H) || defined(TRACE_HEADER_MULTI_READ)
+#define _TRACE_DCCP_H
+
+#include <net/sock.h>
+#include "dccp.h"
+#include "ccids/ccid3.h"
+#include <linux/tracepoint.h>
+
+TRACE_EVENT(dccp_probe,
+
+ TP_PROTO(struct sock *sk, size_t size),
+
+ TP_ARGS(sk, size),
+
+ TP_STRUCT__entry(
+ /* sockaddr_in6 is always bigger than sockaddr_in */
+ __array(__u8, saddr, sizeof(struct sockaddr_in6))
+ __array(__u8, daddr, sizeof(struct sockaddr_in6))
+ __field(__u16, sport)
+ __field(__u16, dport)
+ __field(__u16, size)
+ __field(__u16, tx_s)
+ __field(__u32, tx_rtt)
+ __field(__u32, tx_p)
+ __field(__u32, tx_x_calc)
+ __field(__u64, tx_x_recv)
+ __field(__u64, tx_x)
+ __field(__u32, tx_t_ipi)
+ ),
+
+ TP_fast_assign(
+ const struct inet_sock *inet = inet_sk(sk);
+ struct ccid3_hc_tx_sock *hc = NULL;
+
+ if (ccid_get_current_tx_ccid(dccp_sk(sk)) == DCCPC_CCID3)
+ hc = ccid3_hc_tx_sk(sk);
+
+ memset(__entry->saddr, 0, sizeof(struct sockaddr_in6));
+ memset(__entry->daddr, 0, sizeof(struct sockaddr_in6));
+
+ if (sk->sk_family == AF_INET) {
+ struct sockaddr_in *v4 = (void *)__entry->saddr;
+
+ v4->sin_family = AF_INET;
+ v4->sin_port = inet->inet_sport;
+ v4->sin_addr.s_addr = inet->inet_saddr;
+ v4 = (void *)__entry->daddr;
+ v4->sin_family = AF_INET;
+ v4->sin_port = inet->inet_dport;
+ v4->sin_addr.s_addr = inet->inet_daddr;
+#if IS_ENABLED(CONFIG_IPV6)
+ } else if (sk->sk_family == AF_INET6) {
+ struct sockaddr_in6 *v6 = (void *)__entry->saddr;
+
+ v6->sin6_family = AF_INET6;
+ v6->sin6_port = inet->inet_sport;
+ v6->sin6_addr = inet6_sk(sk)->saddr;
+ v6 = (void *)__entry->daddr;
+ v6->sin6_family = AF_INET6;
+ v6->sin6_port = inet->inet_dport;
+ v6->sin6_addr = sk->sk_v6_daddr;
+#endif
+ }
+
+ /* For filtering use */
+ __entry->sport = ntohs(inet->inet_sport);
+ __entry->dport = ntohs(inet->inet_dport);
+
+ __entry->size = size;
+ if (hc) {
+ __entry->tx_s = hc->tx_s;
+ __entry->tx_rtt = hc->tx_rtt;
+ __entry->tx_p = hc->tx_p;
+ __entry->tx_x_calc = hc->tx_x_calc;
+ __entry->tx_x_recv = hc->tx_x_recv >> 6;
+ __entry->tx_x = hc->tx_x >> 6;
+ __entry->tx_t_ipi = hc->tx_t_ipi;
+ } else {
+ __entry->tx_s = 0;
+ memset(&__entry->tx_rtt, 0, (void *)&__entry->tx_t_ipi -
+ (void *)&__entry->tx_rtt +
+ sizeof(__entry->tx_t_ipi));
+ }
+ ),
+
+ TP_printk("src=%pISpc dest=%pISpc size=%d tx_s=%d tx_rtt=%d "
+ "tx_p=%d tx_x_calc=%u tx_x_recv=%llu tx_x=%llu tx_t_ipi=%d",
+ __entry->saddr, __entry->daddr, __entry->size,
+ __entry->tx_s, __entry->tx_rtt, __entry->tx_p,
+ __entry->tx_x_calc, __entry->tx_x_recv, __entry->tx_x,
+ __entry->tx_t_ipi)
+);
+
+#endif /* _TRACE_TCP_H */
+
+/* This part must be outside protection */
+#undef TRACE_INCLUDE_PATH
+#define TRACE_INCLUDE_PATH .
+#undef TRACE_INCLUDE_FILE
+#define TRACE_INCLUDE_FILE trace
+#include <trace/define_trace.h>
^ permalink raw reply related
* [v2 PATCH -tip 4/6] net: sctp: Remove debug SCTP probe module
From: Masami Hiramatsu @ 2017-12-18 8:12 UTC (permalink / raw)
To: Ingo Molnar, Ian McDonald, Vlad Yasevich, Stephen Hemminger,
Steven Rostedt
Cc: Peter Zijlstra, Thomas Gleixner, LKML, H . Peter Anvin,
Gerrit Renker, David S . Miller, Neil Horman, dccp, netdev,
linux-sctp, Stephen Rothwell, mhiramat
In-Reply-To: <151358464509.28850.477561174715901317.stgit@devbox>
Remove SCTP probe module since jprobe has been deprecated.
That function is now replaced by sctp/sctp_probe and
sctp/sctp_probe_path trace-events.
You can use it via ftrace or perftools.
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
---
net/sctp/Kconfig | 12 ---
net/sctp/Makefile | 3 -
net/sctp/probe.c | 244 -----------------------------------------------------
3 files changed, 259 deletions(-)
delete mode 100644 net/sctp/probe.c
diff --git a/net/sctp/Kconfig b/net/sctp/Kconfig
index d9c04dc1b3f3..c740b189d4ba 100644
--- a/net/sctp/Kconfig
+++ b/net/sctp/Kconfig
@@ -37,18 +37,6 @@ menuconfig IP_SCTP
if IP_SCTP
-config NET_SCTPPROBE
- tristate "SCTP: Association probing"
- depends on PROC_FS && KPROBES
- ---help---
- This module allows for capturing the changes to SCTP association
- state in response to incoming packets. It is used for debugging
- SCTP congestion control algorithms. If you don't understand
- what was just said, you don't need it: say N.
-
- To compile this code as a module, choose M here: the
- module will be called sctp_probe.
-
config SCTP_DBG_OBJCNT
bool "SCTP: Debug object counts"
depends on PROC_FS
diff --git a/net/sctp/Makefile b/net/sctp/Makefile
index 1ca84a288443..b52dfc6f8b4c 100644
--- a/net/sctp/Makefile
+++ b/net/sctp/Makefile
@@ -4,7 +4,6 @@
#
obj-$(CONFIG_IP_SCTP) += sctp.o
-obj-$(CONFIG_NET_SCTPPROBE) += sctp_probe.o
obj-$(CONFIG_INET_SCTP_DIAG) += sctp_diag.o
sctp-y := sm_statetable.o sm_statefuns.o sm_sideeffect.o \
@@ -16,8 +15,6 @@ sctp-y := sm_statetable.o sm_statefuns.o sm_sideeffect.o \
offload.o stream_sched.o stream_sched_prio.o \
stream_sched_rr.o
-sctp_probe-y := probe.o
-
sctp-$(CONFIG_SCTP_DBG_OBJCNT) += objcnt.o
sctp-$(CONFIG_PROC_FS) += proc.o
sctp-$(CONFIG_SYSCTL) += sysctl.o
diff --git a/net/sctp/probe.c b/net/sctp/probe.c
deleted file mode 100644
index 1280f85a598d..000000000000
--- a/net/sctp/probe.c
+++ /dev/null
@@ -1,244 +0,0 @@
-/*
- * sctp_probe - Observe the SCTP flow with kprobes.
- *
- * The idea for this came from Werner Almesberger's umlsim
- * Copyright (C) 2004, Stephen Hemminger <shemminger@osdl.org>
- *
- * Modified for SCTP from Stephen Hemminger's code
- * Copyright (C) 2010, Wei Yongjun <yjwei@cn.fujitsu.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
-#include <linux/kernel.h>
-#include <linux/kprobes.h>
-#include <linux/socket.h>
-#include <linux/sctp.h>
-#include <linux/proc_fs.h>
-#include <linux/vmalloc.h>
-#include <linux/module.h>
-#include <linux/kfifo.h>
-#include <linux/time.h>
-#include <net/net_namespace.h>
-
-#include <net/sctp/sctp.h>
-#include <net/sctp/sm.h>
-
-MODULE_SOFTDEP("pre: sctp");
-MODULE_AUTHOR("Wei Yongjun <yjwei@cn.fujitsu.com>");
-MODULE_DESCRIPTION("SCTP snooper");
-MODULE_LICENSE("GPL");
-
-static int port __read_mostly = 0;
-MODULE_PARM_DESC(port, "Port to match (0=all)");
-module_param(port, int, 0);
-
-static unsigned int fwmark __read_mostly = 0;
-MODULE_PARM_DESC(fwmark, "skb mark to match (0=no mark)");
-module_param(fwmark, uint, 0);
-
-static int bufsize __read_mostly = 64 * 1024;
-MODULE_PARM_DESC(bufsize, "Log buffer size (default 64k)");
-module_param(bufsize, int, 0);
-
-static int full __read_mostly = 1;
-MODULE_PARM_DESC(full, "Full log (1=every ack packet received, 0=only cwnd changes)");
-module_param(full, int, 0);
-
-static const char procname[] = "sctpprobe";
-
-static struct {
- struct kfifo fifo;
- spinlock_t lock;
- wait_queue_head_t wait;
- struct timespec64 tstart;
-} sctpw;
-
-static __printf(1, 2) void printl(const char *fmt, ...)
-{
- va_list args;
- int len;
- char tbuf[256];
-
- va_start(args, fmt);
- len = vscnprintf(tbuf, sizeof(tbuf), fmt, args);
- va_end(args);
-
- kfifo_in_locked(&sctpw.fifo, tbuf, len, &sctpw.lock);
- wake_up(&sctpw.wait);
-}
-
-static int sctpprobe_open(struct inode *inode, struct file *file)
-{
- kfifo_reset(&sctpw.fifo);
- ktime_get_ts64(&sctpw.tstart);
-
- return 0;
-}
-
-static ssize_t sctpprobe_read(struct file *file, char __user *buf,
- size_t len, loff_t *ppos)
-{
- int error = 0, cnt = 0;
- unsigned char *tbuf;
-
- if (!buf)
- return -EINVAL;
-
- if (len == 0)
- return 0;
-
- tbuf = vmalloc(len);
- if (!tbuf)
- return -ENOMEM;
-
- error = wait_event_interruptible(sctpw.wait,
- kfifo_len(&sctpw.fifo) != 0);
- if (error)
- goto out_free;
-
- cnt = kfifo_out_locked(&sctpw.fifo, tbuf, len, &sctpw.lock);
- error = copy_to_user(buf, tbuf, cnt) ? -EFAULT : 0;
-
-out_free:
- vfree(tbuf);
-
- return error ? error : cnt;
-}
-
-static const struct file_operations sctpprobe_fops = {
- .owner = THIS_MODULE,
- .open = sctpprobe_open,
- .read = sctpprobe_read,
- .llseek = noop_llseek,
-};
-
-static enum sctp_disposition jsctp_sf_eat_sack(
- struct net *net,
- const struct sctp_endpoint *ep,
- const struct sctp_association *asoc,
- const union sctp_subtype type,
- void *arg,
- struct sctp_cmd_seq *commands)
-{
- struct sctp_chunk *chunk = arg;
- struct sk_buff *skb = chunk->skb;
- struct sctp_transport *sp;
- static __u32 lcwnd = 0;
- struct timespec64 now;
-
- sp = asoc->peer.primary_path;
-
- if (((port == 0 && fwmark == 0) ||
- asoc->peer.port == port ||
- ep->base.bind_addr.port == port ||
- (fwmark > 0 && skb->mark == fwmark)) &&
- (full || sp->cwnd != lcwnd)) {
- lcwnd = sp->cwnd;
-
- ktime_get_ts64(&now);
- now = timespec64_sub(now, sctpw.tstart);
-
- printl("%lu.%06lu ", (unsigned long) now.tv_sec,
- (unsigned long) now.tv_nsec / NSEC_PER_USEC);
-
- printl("%p %5d %5d %5d %8d %5d ", asoc,
- ep->base.bind_addr.port, asoc->peer.port,
- asoc->pathmtu, asoc->peer.rwnd, asoc->unack_data);
-
- list_for_each_entry(sp, &asoc->peer.transport_addr_list,
- transports) {
- if (sp == asoc->peer.primary_path)
- printl("*");
-
- printl("%pISc %2u %8u %8u %8u %8u %8u ",
- &sp->ipaddr, sp->state, sp->cwnd, sp->ssthresh,
- sp->flight_size, sp->partial_bytes_acked,
- sp->pathmtu);
- }
- printl("\n");
- }
-
- jprobe_return();
- return 0;
-}
-
-static struct jprobe sctp_recv_probe = {
- .kp = {
- .symbol_name = "sctp_sf_eat_sack_6_2",
- },
- .entry = jsctp_sf_eat_sack,
-};
-
-static __init int sctp_setup_jprobe(void)
-{
- int ret = register_jprobe(&sctp_recv_probe);
-
- if (ret) {
- if (request_module("sctp"))
- goto out;
- ret = register_jprobe(&sctp_recv_probe);
- }
-
-out:
- return ret;
-}
-
-static __init int sctpprobe_init(void)
-{
- int ret = -ENOMEM;
-
- /* Warning: if the function signature of sctp_sf_eat_sack_6_2,
- * has been changed, you also have to change the signature of
- * jsctp_sf_eat_sack, otherwise you end up right here!
- */
- BUILD_BUG_ON(__same_type(sctp_sf_eat_sack_6_2,
- jsctp_sf_eat_sack) == 0);
-
- init_waitqueue_head(&sctpw.wait);
- spin_lock_init(&sctpw.lock);
- if (kfifo_alloc(&sctpw.fifo, bufsize, GFP_KERNEL))
- return ret;
-
- if (!proc_create(procname, S_IRUSR, init_net.proc_net,
- &sctpprobe_fops))
- goto free_kfifo;
-
- ret = sctp_setup_jprobe();
- if (ret)
- goto remove_proc;
-
- pr_info("probe registered (port=%d/fwmark=%u) bufsize=%u\n",
- port, fwmark, bufsize);
- return 0;
-
-remove_proc:
- remove_proc_entry(procname, init_net.proc_net);
-free_kfifo:
- kfifo_free(&sctpw.fifo);
- return ret;
-}
-
-static __exit void sctpprobe_exit(void)
-{
- kfifo_free(&sctpw.fifo);
- remove_proc_entry(procname, init_net.proc_net);
- unregister_jprobe(&sctp_recv_probe);
-}
-
-module_init(sctpprobe_init);
-module_exit(sctpprobe_exit);
^ permalink raw reply related
* [v2 PATCH -tip 3/6] net: sctp: Add SCTP ACK tracking trace event
From: Masami Hiramatsu @ 2017-12-18 8:12 UTC (permalink / raw)
To: Ingo Molnar, Ian McDonald, Vlad Yasevich, Stephen Hemminger,
Steven Rostedt
Cc: Peter Zijlstra, Thomas Gleixner, LKML, H . Peter Anvin,
Gerrit Renker, David S . Miller, Neil Horman, dccp, netdev,
linux-sctp, Stephen Rothwell, mhiramat
In-Reply-To: <151358464509.28850.477561174715901317.stgit@devbox>
Add SCTP ACK tracking trace event to trace the changes of SCTP
association state in response to incoming packets.
It is used for debugging SCTP congestion control algorithms,
and will replace sctp_probe module.
Note that this event a bit tricky. Since this consists of 2
events (sctp_probe and sctp_probe_path) so you have to enable
both events as below.
# cd /sys/kernel/debug/tracing
# echo 1 > events/sctp/sctp_probe/enable
# echo 1 > events/sctp/sctp_probe_path/enable
Or, you can enable all the events under sctp.
# echo 1 > events/sctp/enable
Since sctp_probe_path event is always invoked from sctp_probe
event, you can not see any output if you only enable
sctp_probe_path.
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
---
include/trace/events/sctp.h | 96 +++++++++++++++++++++++++++++++++++++++++++
net/sctp/sm_statefuns.c | 5 ++
2 files changed, 101 insertions(+)
create mode 100644 include/trace/events/sctp.h
diff --git a/include/trace/events/sctp.h b/include/trace/events/sctp.h
new file mode 100644
index 000000000000..32c2dc72311e
--- /dev/null
+++ b/include/trace/events/sctp.h
@@ -0,0 +1,96 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#undef TRACE_SYSTEM
+#define TRACE_SYSTEM sctp
+
+#if !defined(_TRACE_SCTP_H) || defined(TRACE_HEADER_MULTI_READ)
+#define _TRACE_SCTP_H
+
+#include <net/sctp/structs.h>
+#include <linux/tracepoint.h>
+
+TRACE_EVENT(sctp_probe_path,
+
+ TP_PROTO(struct sctp_transport *sp,
+ const struct sctp_association *asoc),
+
+ TP_ARGS(sp, asoc),
+
+ TP_STRUCT__entry(
+ __field(__u64, asoc)
+ __field(__u32, primary)
+ __array(__u8, ipaddr, sizeof(union sctp_addr))
+ __field(__u32, state)
+ __field(__u32, cwnd)
+ __field(__u32, ssthresh)
+ __field(__u32, flight_size)
+ __field(__u32, partial_bytes_acked)
+ __field(__u32, pathmtu)
+ ),
+
+ TP_fast_assign(
+ __entry->asoc = (__u64)asoc;
+ __entry->primary = (sp == asoc->peer.primary_path);
+ memcpy(__entry->ipaddr, &sp->ipaddr, sizeof(union sctp_addr));
+ __entry->state = sp->state;
+ __entry->cwnd = sp->cwnd;
+ __entry->ssthresh = sp->ssthresh;
+ __entry->flight_size = sp->flight_size;
+ __entry->partial_bytes_acked = sp->partial_bytes_acked;
+ __entry->pathmtu = sp->pathmtu;
+ ),
+
+ TP_printk("asoc=%#llx%s ipaddr=%pISpc state=%u cwnd=%u ssthresh=%u "
+ "flight_size=%u partial_bytes_acked=%u pathmtu=%u",
+ __entry->asoc, __entry->primary ? "(*)" : "",
+ __entry->ipaddr, __entry->state, __entry->cwnd,
+ __entry->ssthresh, __entry->flight_size,
+ __entry->partial_bytes_acked, __entry->pathmtu)
+);
+
+TRACE_EVENT(sctp_probe,
+
+ TP_PROTO(const struct sctp_endpoint *ep,
+ const struct sctp_association *asoc,
+ struct sctp_chunk *chunk),
+
+ TP_ARGS(ep, asoc, chunk),
+
+ TP_STRUCT__entry(
+ __field(__u64, asoc)
+ __field(__u32, mark)
+ __field(__u16, bind_port)
+ __field(__u16, peer_port)
+ __field(__u32, pathmtu)
+ __field(__u32, rwnd)
+ __field(__u16, unack_data)
+ ),
+
+ TP_fast_assign(
+ struct sctp_transport *sp;
+ struct sk_buff *skb = chunk->skb;
+
+ __entry->asoc = (__u64)asoc;
+ __entry->mark = skb->mark;
+ __entry->bind_port = ep->base.bind_addr.port;
+ __entry->peer_port = asoc->peer.port;
+ __entry->pathmtu = asoc->pathmtu;
+ __entry->rwnd = asoc->peer.rwnd;
+ __entry->unack_data = asoc->unack_data;
+
+ list_for_each_entry(sp, &asoc->peer.transport_addr_list,
+ transports) {
+ trace_sctp_probe_path(sp, asoc);
+ }
+ ),
+
+ TP_printk("asoc=%#llx mark=%#x bind_port=%d peer_port=%d pathmtu=%d "
+ "rwnd=%u unack_data=%d",
+ __entry->asoc, __entry->mark, __entry->bind_port,
+ __entry->peer_port, __entry->pathmtu, __entry->rwnd,
+ __entry->unack_data)
+);
+
+#endif /* _TRACE_SCTP_H */
+
+/* This part must be outside protection */
+#include <trace/define_trace.h>
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c
index 8f8ccded13e4..c5f92b2cc5c3 100644
--- a/net/sctp/sm_statefuns.c
+++ b/net/sctp/sm_statefuns.c
@@ -59,6 +59,9 @@
#include <net/sctp/sm.h>
#include <net/sctp/structs.h>
+#define CREATE_TRACE_POINTS
+#include <trace/events/sctp.h>
+
static struct sctp_packet *sctp_abort_pkt_new(
struct net *net,
const struct sctp_endpoint *ep,
@@ -3219,6 +3222,8 @@ enum sctp_disposition sctp_sf_eat_sack_6_2(struct net *net,
struct sctp_sackhdr *sackh;
__u32 ctsn;
+ trace_sctp_probe(ep, asoc, chunk);
+
if (!sctp_vtag_verify(chunk, asoc))
return sctp_sf_pdiscard(net, ep, asoc, type, arg, commands);
^ permalink raw reply related
* [v2 PATCH -tip 2/6] net: tcp: Remove TCP probe module
From: Masami Hiramatsu @ 2017-12-18 8:11 UTC (permalink / raw)
To: Ingo Molnar, Ian McDonald, Vlad Yasevich, Stephen Hemminger,
Steven Rostedt
Cc: Peter Zijlstra, Thomas Gleixner, LKML, H . Peter Anvin,
Gerrit Renker, David S . Miller, Neil Horman, dccp, netdev,
linux-sctp, Stephen Rothwell, mhiramat
In-Reply-To: <151358464509.28850.477561174715901317.stgit@devbox>
Remove TCP probe module since jprobe has been deprecated.
That function is now replaced by tcp/tcp_probe trace-event.
You can use it via ftrace or perftools.
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
---
net/Kconfig | 17 ---
net/ipv4/Makefile | 1
net/ipv4/tcp_probe.c | 301 --------------------------------------------------
3 files changed, 319 deletions(-)
delete mode 100644 net/ipv4/tcp_probe.c
diff --git a/net/Kconfig b/net/Kconfig
index 9dba2715919d..efe930db3c08 100644
--- a/net/Kconfig
+++ b/net/Kconfig
@@ -336,23 +336,6 @@ config NET_PKTGEN
To compile this code as a module, choose M here: the
module will be called pktgen.
-config NET_TCPPROBE
- tristate "TCP connection probing"
- depends on INET && PROC_FS && KPROBES
- ---help---
- This module allows for capturing the changes to TCP connection
- state in response to incoming packets. It is used for debugging
- TCP congestion avoidance modules. If you don't understand
- what was just said, you don't need it: say N.
-
- Documentation on how to use TCP connection probing can be found
- at:
-
- http://www.linuxfoundation.org/collaborate/workgroups/networking/tcpprobe
-
- To compile this code as a module, choose M here: the
- module will be called tcp_probe.
-
config NET_DROP_MONITOR
tristate "Network packet drop alerting service"
depends on INET && TRACEPOINTS
diff --git a/net/ipv4/Makefile b/net/ipv4/Makefile
index c6c8ad1d4b6d..47a0a6649a9d 100644
--- a/net/ipv4/Makefile
+++ b/net/ipv4/Makefile
@@ -43,7 +43,6 @@ obj-$(CONFIG_INET_DIAG) += inet_diag.o
obj-$(CONFIG_INET_TCP_DIAG) += tcp_diag.o
obj-$(CONFIG_INET_UDP_DIAG) += udp_diag.o
obj-$(CONFIG_INET_RAW_DIAG) += raw_diag.o
-obj-$(CONFIG_NET_TCPPROBE) += tcp_probe.o
obj-$(CONFIG_TCP_CONG_BBR) += tcp_bbr.o
obj-$(CONFIG_TCP_CONG_BIC) += tcp_bic.o
obj-$(CONFIG_TCP_CONG_CDG) += tcp_cdg.o
diff --git a/net/ipv4/tcp_probe.c b/net/ipv4/tcp_probe.c
deleted file mode 100644
index 697f4c67b2e3..000000000000
--- a/net/ipv4/tcp_probe.c
+++ /dev/null
@@ -1,301 +0,0 @@
-/*
- * tcpprobe - Observe the TCP flow with kprobes.
- *
- * The idea for this came from Werner Almesberger's umlsim
- * Copyright (C) 2004, Stephen Hemminger <shemminger@osdl.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
-#include <linux/kernel.h>
-#include <linux/kprobes.h>
-#include <linux/socket.h>
-#include <linux/tcp.h>
-#include <linux/slab.h>
-#include <linux/proc_fs.h>
-#include <linux/module.h>
-#include <linux/ktime.h>
-#include <linux/time.h>
-#include <net/net_namespace.h>
-
-#include <net/tcp.h>
-
-MODULE_AUTHOR("Stephen Hemminger <shemminger@linux-foundation.org>");
-MODULE_DESCRIPTION("TCP cwnd snooper");
-MODULE_LICENSE("GPL");
-MODULE_VERSION("1.1");
-
-static int port __read_mostly;
-MODULE_PARM_DESC(port, "Port to match (0=all)");
-module_param(port, int, 0);
-
-static unsigned int bufsize __read_mostly = 4096;
-MODULE_PARM_DESC(bufsize, "Log buffer size in packets (4096)");
-module_param(bufsize, uint, 0);
-
-static unsigned int fwmark __read_mostly;
-MODULE_PARM_DESC(fwmark, "skb mark to match (0=no mark)");
-module_param(fwmark, uint, 0);
-
-static int full __read_mostly;
-MODULE_PARM_DESC(full, "Full log (1=every ack packet received, 0=only cwnd changes)");
-module_param(full, int, 0);
-
-static const char procname[] = "tcpprobe";
-
-struct tcp_log {
- ktime_t tstamp;
- union {
- struct sockaddr raw;
- struct sockaddr_in v4;
- struct sockaddr_in6 v6;
- } src, dst;
- u16 length;
- u32 snd_nxt;
- u32 snd_una;
- u32 snd_wnd;
- u32 rcv_wnd;
- u32 snd_cwnd;
- u32 ssthresh;
- u32 srtt;
-};
-
-static struct {
- spinlock_t lock;
- wait_queue_head_t wait;
- ktime_t start;
- u32 lastcwnd;
-
- unsigned long head, tail;
- struct tcp_log *log;
-} tcp_probe;
-
-static inline int tcp_probe_used(void)
-{
- return (tcp_probe.head - tcp_probe.tail) & (bufsize - 1);
-}
-
-static inline int tcp_probe_avail(void)
-{
- return bufsize - tcp_probe_used() - 1;
-}
-
-#define tcp_probe_copy_fl_to_si4(inet, si4, mem) \
- do { \
- si4.sin_family = AF_INET; \
- si4.sin_port = inet->inet_##mem##port; \
- si4.sin_addr.s_addr = inet->inet_##mem##addr; \
- } while (0) \
-
-/*
- * Hook inserted to be called before each receive packet.
- * Note: arguments must match tcp_rcv_established()!
- */
-static void jtcp_rcv_established(struct sock *sk, struct sk_buff *skb,
- const struct tcphdr *th)
-{
- unsigned int len = skb->len;
- const struct tcp_sock *tp = tcp_sk(sk);
- const struct inet_sock *inet = inet_sk(sk);
-
- /* Only update if port or skb mark matches */
- if (((port == 0 && fwmark == 0) ||
- ntohs(inet->inet_dport) == port ||
- ntohs(inet->inet_sport) == port ||
- (fwmark > 0 && skb->mark == fwmark)) &&
- (full || tp->snd_cwnd != tcp_probe.lastcwnd)) {
-
- spin_lock(&tcp_probe.lock);
- /* If log fills, just silently drop */
- if (tcp_probe_avail() > 1) {
- struct tcp_log *p = tcp_probe.log + tcp_probe.head;
-
- p->tstamp = ktime_get();
- switch (sk->sk_family) {
- case AF_INET:
- tcp_probe_copy_fl_to_si4(inet, p->src.v4, s);
- tcp_probe_copy_fl_to_si4(inet, p->dst.v4, d);
- break;
- case AF_INET6:
- memset(&p->src.v6, 0, sizeof(p->src.v6));
- memset(&p->dst.v6, 0, sizeof(p->dst.v6));
-#if IS_ENABLED(CONFIG_IPV6)
- p->src.v6.sin6_family = AF_INET6;
- p->src.v6.sin6_port = inet->inet_sport;
- p->src.v6.sin6_addr = inet6_sk(sk)->saddr;
-
- p->dst.v6.sin6_family = AF_INET6;
- p->dst.v6.sin6_port = inet->inet_dport;
- p->dst.v6.sin6_addr = sk->sk_v6_daddr;
-#endif
- break;
- default:
- BUG();
- }
-
- p->length = len;
- p->snd_nxt = tp->snd_nxt;
- p->snd_una = tp->snd_una;
- p->snd_cwnd = tp->snd_cwnd;
- p->snd_wnd = tp->snd_wnd;
- p->rcv_wnd = tp->rcv_wnd;
- p->ssthresh = tcp_current_ssthresh(sk);
- p->srtt = tp->srtt_us >> 3;
-
- tcp_probe.head = (tcp_probe.head + 1) & (bufsize - 1);
- }
- tcp_probe.lastcwnd = tp->snd_cwnd;
- spin_unlock(&tcp_probe.lock);
-
- wake_up(&tcp_probe.wait);
- }
-
- jprobe_return();
-}
-
-static struct jprobe tcp_jprobe = {
- .kp = {
- .symbol_name = "tcp_rcv_established",
- },
- .entry = jtcp_rcv_established,
-};
-
-static int tcpprobe_open(struct inode *inode, struct file *file)
-{
- /* Reset (empty) log */
- spin_lock_bh(&tcp_probe.lock);
- tcp_probe.head = tcp_probe.tail = 0;
- tcp_probe.start = ktime_get();
- spin_unlock_bh(&tcp_probe.lock);
-
- return 0;
-}
-
-static int tcpprobe_sprint(char *tbuf, int n)
-{
- const struct tcp_log *p
- = tcp_probe.log + tcp_probe.tail;
- struct timespec64 ts
- = ktime_to_timespec64(ktime_sub(p->tstamp, tcp_probe.start));
-
- return scnprintf(tbuf, n,
- "%lu.%09lu %pISpc %pISpc %d %#x %#x %u %u %u %u %u\n",
- (unsigned long)ts.tv_sec,
- (unsigned long)ts.tv_nsec,
- &p->src, &p->dst, p->length, p->snd_nxt, p->snd_una,
- p->snd_cwnd, p->ssthresh, p->snd_wnd, p->srtt, p->rcv_wnd);
-}
-
-static ssize_t tcpprobe_read(struct file *file, char __user *buf,
- size_t len, loff_t *ppos)
-{
- int error = 0;
- size_t cnt = 0;
-
- if (!buf)
- return -EINVAL;
-
- while (cnt < len) {
- char tbuf[256];
- int width;
-
- /* Wait for data in buffer */
- error = wait_event_interruptible(tcp_probe.wait,
- tcp_probe_used() > 0);
- if (error)
- break;
-
- spin_lock_bh(&tcp_probe.lock);
- if (tcp_probe.head == tcp_probe.tail) {
- /* multiple readers race? */
- spin_unlock_bh(&tcp_probe.lock);
- continue;
- }
-
- width = tcpprobe_sprint(tbuf, sizeof(tbuf));
-
- if (cnt + width < len)
- tcp_probe.tail = (tcp_probe.tail + 1) & (bufsize - 1);
-
- spin_unlock_bh(&tcp_probe.lock);
-
- /* if record greater than space available
- return partial buffer (so far) */
- if (cnt + width >= len)
- break;
-
- if (copy_to_user(buf + cnt, tbuf, width))
- return -EFAULT;
- cnt += width;
- }
-
- return cnt == 0 ? error : cnt;
-}
-
-static const struct file_operations tcpprobe_fops = {
- .owner = THIS_MODULE,
- .open = tcpprobe_open,
- .read = tcpprobe_read,
- .llseek = noop_llseek,
-};
-
-static __init int tcpprobe_init(void)
-{
- int ret = -ENOMEM;
-
- /* Warning: if the function signature of tcp_rcv_established,
- * has been changed, you also have to change the signature of
- * jtcp_rcv_established, otherwise you end up right here!
- */
- BUILD_BUG_ON(__same_type(tcp_rcv_established,
- jtcp_rcv_established) == 0);
-
- init_waitqueue_head(&tcp_probe.wait);
- spin_lock_init(&tcp_probe.lock);
-
- if (bufsize == 0)
- return -EINVAL;
-
- bufsize = roundup_pow_of_two(bufsize);
- tcp_probe.log = kcalloc(bufsize, sizeof(struct tcp_log), GFP_KERNEL);
- if (!tcp_probe.log)
- goto err0;
-
- if (!proc_create(procname, S_IRUSR, init_net.proc_net, &tcpprobe_fops))
- goto err0;
-
- ret = register_jprobe(&tcp_jprobe);
- if (ret)
- goto err1;
-
- pr_info("probe registered (port=%d/fwmark=%u) bufsize=%u\n",
- port, fwmark, bufsize);
- return 0;
- err1:
- remove_proc_entry(procname, init_net.proc_net);
- err0:
- kfree(tcp_probe.log);
- return ret;
-}
-module_init(tcpprobe_init);
-
-static __exit void tcpprobe_exit(void)
-{
- remove_proc_entry(procname, init_net.proc_net);
- unregister_jprobe(&tcp_jprobe);
- kfree(tcp_probe.log);
-}
-module_exit(tcpprobe_exit);
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox