From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
stable@vger.kernel.org, Noel Power <noel.power@suse.com>,
Jim McDonough <jmcd@samba.org>,
Steve French <steve.french@primarydata.com>
Subject: [PATCH 4.2 137/258] [SMB3] Fix sec=krb5 on smb3 mounts
Date: Sat, 17 Oct 2015 18:57:30 -0700 [thread overview]
Message-ID: <20151018014736.619472739@linuxfoundation.org> (raw)
In-Reply-To: <20151018014729.976101177@linuxfoundation.org>
4.2-stable review patch. If anyone has any objections, please let me know.
------------------
From: Steve French <smfrench@gmail.com>
commit ceb1b0b9b4d1089e9f2731a314689ae17784c861 upstream.
Kerberos, which is very important for security, was only enabled for
CIFS not SMB2/SMB3 mounts (e.g. vers=3.0)
Patch based on the information detailed in
http://thread.gmane.org/gmane.linux.kernel.cifs/10081/focus=10307
to enable Kerberized SMB2/SMB3
a) SMB2_negotiate: enable/use decode_negTokenInit in SMB2_negotiate
b) SMB2_sess_setup: handle Kerberos sectype and replicate Kerberos
SMB1 processing done in sess_auth_kerberos
Signed-off-by: Noel Power <noel.power@suse.com>
Signed-off-by: Jim McDonough <jmcd@samba.org>
Signed-off-by: Steve French <steve.french@primarydata.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
fs/cifs/smb2pdu.c | 76 +++++++++++++++++++++++++++++++++++++++++++-----------
1 file changed, 61 insertions(+), 15 deletions(-)
--- a/fs/cifs/smb2pdu.c
+++ b/fs/cifs/smb2pdu.c
@@ -46,6 +46,7 @@
#include "smb2status.h"
#include "smb2glob.h"
#include "cifspdu.h"
+#include "cifs_spnego.h"
/*
* The following table defines the expected "StructureSize" of SMB2 requests
@@ -486,19 +487,15 @@ SMB2_negotiate(const unsigned int xid, s
cifs_dbg(FYI, "missing security blob on negprot\n");
rc = cifs_enable_signing(server, ses->sign);
-#ifdef CONFIG_SMB2_ASN1 /* BB REMOVEME when updated asn1.c ready */
if (rc)
goto neg_exit;
- if (blob_length)
+ if (blob_length) {
rc = decode_negTokenInit(security_blob, blob_length, server);
- if (rc == 1)
- rc = 0;
- else if (rc == 0) {
- rc = -EIO;
- goto neg_exit;
+ if (rc == 1)
+ rc = 0;
+ else if (rc == 0)
+ rc = -EIO;
}
-#endif
-
neg_exit:
free_rsp_buf(resp_buftype, rsp);
return rc;
@@ -592,7 +589,8 @@ SMB2_sess_setup(const unsigned int xid,
__le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
struct TCP_Server_Info *server = ses->server;
u16 blob_length = 0;
- char *security_blob;
+ struct key *spnego_key = NULL;
+ char *security_blob = NULL;
char *ntlmssp_blob = NULL;
bool use_spnego = false; /* else use raw ntlmssp */
@@ -620,7 +618,8 @@ SMB2_sess_setup(const unsigned int xid,
ses->ntlmssp->sesskey_per_smbsess = true;
/* FIXME: allow for other auth types besides NTLMSSP (e.g. krb5) */
- ses->sectype = RawNTLMSSP;
+ if (ses->sectype != Kerberos && ses->sectype != RawNTLMSSP)
+ ses->sectype = RawNTLMSSP;
ssetup_ntlmssp_authenticate:
if (phase == NtLmChallenge)
@@ -649,7 +648,48 @@ ssetup_ntlmssp_authenticate:
iov[0].iov_base = (char *)req;
/* 4 for rfc1002 length field and 1 for pad */
iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
- if (phase == NtLmNegotiate) {
+
+ if (ses->sectype == Kerberos) {
+#ifdef CONFIG_CIFS_UPCALL
+ struct cifs_spnego_msg *msg;
+
+ spnego_key = cifs_get_spnego_key(ses);
+ if (IS_ERR(spnego_key)) {
+ rc = PTR_ERR(spnego_key);
+ spnego_key = NULL;
+ goto ssetup_exit;
+ }
+
+ msg = spnego_key->payload.data;
+ /*
+ * check version field to make sure that cifs.upcall is
+ * sending us a response in an expected form
+ */
+ if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
+ cifs_dbg(VFS,
+ "bad cifs.upcall version. Expected %d got %d",
+ CIFS_SPNEGO_UPCALL_VERSION, msg->version);
+ rc = -EKEYREJECTED;
+ goto ssetup_exit;
+ }
+ ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
+ GFP_KERNEL);
+ if (!ses->auth_key.response) {
+ cifs_dbg(VFS,
+ "Kerberos can't allocate (%u bytes) memory",
+ msg->sesskey_len);
+ rc = -ENOMEM;
+ goto ssetup_exit;
+ }
+ ses->auth_key.len = msg->sesskey_len;
+ blob_length = msg->secblob_len;
+ iov[1].iov_base = msg->data + msg->sesskey_len;
+ iov[1].iov_len = blob_length;
+#else
+ rc = -EOPNOTSUPP;
+ goto ssetup_exit;
+#endif /* CONFIG_CIFS_UPCALL */
+ } else if (phase == NtLmNegotiate) { /* if not krb5 must be ntlmssp */
ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
GFP_KERNEL);
if (ntlmssp_blob == NULL) {
@@ -672,6 +712,8 @@ ssetup_ntlmssp_authenticate:
/* with raw NTLMSSP we don't encapsulate in SPNEGO */
security_blob = ntlmssp_blob;
}
+ iov[1].iov_base = security_blob;
+ iov[1].iov_len = blob_length;
} else if (phase == NtLmAuthenticate) {
req->hdr.SessionId = ses->Suid;
ntlmssp_blob = kzalloc(sizeof(struct _NEGOTIATE_MESSAGE) + 500,
@@ -699,6 +741,8 @@ ssetup_ntlmssp_authenticate:
} else {
security_blob = ntlmssp_blob;
}
+ iov[1].iov_base = security_blob;
+ iov[1].iov_len = blob_length;
} else {
cifs_dbg(VFS, "illegal ntlmssp phase\n");
rc = -EIO;
@@ -710,8 +754,6 @@ ssetup_ntlmssp_authenticate:
cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
1 /* pad */ - 4 /* rfc1001 len */);
req->SecurityBufferLength = cpu_to_le16(blob_length);
- iov[1].iov_base = security_blob;
- iov[1].iov_len = blob_length;
inc_rfc1001_len(req, blob_length - 1 /* pad */);
@@ -722,6 +764,7 @@ ssetup_ntlmssp_authenticate:
kfree(security_blob);
rsp = (struct smb2_sess_setup_rsp *)iov[0].iov_base;
+ ses->Suid = rsp->hdr.SessionId;
if (resp_buftype != CIFS_NO_BUFFER &&
rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) {
if (phase != NtLmNegotiate) {
@@ -739,7 +782,6 @@ ssetup_ntlmssp_authenticate:
/* NTLMSSP Negotiate sent now processing challenge (response) */
phase = NtLmChallenge; /* process ntlmssp challenge */
rc = 0; /* MORE_PROCESSING is not an error here but expected */
- ses->Suid = rsp->hdr.SessionId;
rc = decode_ntlmssp_challenge(rsp->Buffer,
le16_to_cpu(rsp->SecurityBufferLength), ses);
}
@@ -796,6 +838,10 @@ keygen_exit:
kfree(ses->auth_key.response);
ses->auth_key.response = NULL;
}
+ if (spnego_key) {
+ key_invalidate(spnego_key);
+ key_put(spnego_key);
+ }
kfree(ses->ntlmssp);
return rc;
next prev parent reply other threads:[~2015-10-18 2:20 UTC|newest]
Thread overview: 246+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-18 1:55 [PATCH 4.2 000/258] 4.2.4-stable review Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 001/258] arm: KVM: Fix incorrect device to IPA mapping Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 003/258] kvm: dont try to register to KVM_FAST_MMIO_BUS for non mmio eventfd Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 004/258] kvm: fix zero length mmio searching Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 005/258] kvm: factor out core eventfd assign/deassign logic Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 006/258] kvm: fix double free for fast mmio eventfd Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 007/258] arm: KVM: Disable virtual timer even if the guest is not using it Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 009/258] KVM: x86: trap AMD MSRs for the TSeg base and mask Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 010/258] KVM: PPC: Book3S: Take the kvm->srcu lock in kvmppc_h_logical_ci_load/store() Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 011/258] KVM: PPC: Book3S HV: Pass the correct trap argument to kvmhv_commence_exit Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 012/258] Revert "KVM: x86: apply guest MTRR virtualization on host reserved pages" Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 013/258] Revert "KVM: SVM: use NPT page attributes" Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 014/258] Revert "KVM: SVM: Sync g_pat with guest-written PAT value" Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 016/258] target/iscsi: Fix np_ip bracket issue by removing np_ip Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 017/258] scsi: fix scsi_error_handler vs. scsi_host_dev_release race Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 018/258] target: Attach EXTENDED_COPY local I/O descriptors to xcopy_pt_sess Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 019/258] target: Fix PR registration + APTPL RCU conversion regression Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 020/258] iser-target: remove command with state ISTATE_REMOVE Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 021/258] iser-target: Put the reference on commands waiting for unsol data Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 022/258] toshiba_acpi: Fix hotkeys registration on some toshiba models Greg Kroah-Hartman
2015-10-19 23:32 ` Ben Hutchings
2015-10-21 8:48 ` Darren Hart
2015-10-26 16:52 ` Azael Avalos
2015-10-18 1:55 ` [PATCH 4.2 023/258] perf/x86/intel: Fix constraint access Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 024/258] locking/qspinlock/x86: Fix performance regression under unaccelerated VMs Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 025/258] locking/qspinlock/x86: Only emit the test-and-set fallback when building guest support Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 026/258] perf tools: Fix copying of /proc/kcore Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 027/258] ARM: 8401/1: perf: Set affinity for PPI based PMUs Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 028/258] perf hists: Update the column width for the "srcline" sort key Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 029/258] perf stat: Get correct cpu id for print_aggr Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 030/258] perf tools: Add missing forward declaration of struct map to probe-event.h Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 031/258] perf tools: Add empty Build files for architectures lacking them Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 032/258] perf tools: Fix parse_events_add_pmu caller Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 033/258] perf header: Fixup reading of HEADER_NRCPUS feature Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 034/258] perf probe: Use existing routine to look for a kernel module by dso->short_name Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 035/258] ARCv2: [axs103_smp] Reduce clk for SMP FPGA configs Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 036/258] watchdog: sunxi: fix activation of system reset Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 037/258] watchdog: imgpdc: Unregister restart handler on remove Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 038/258] sched: access local runqueue directly in single_task_running Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 039/258] hwmon: (nct6775) Swap STEP_UP_TIME and STEP_DOWN_TIME registers for most chips Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 040/258] ARM: fix Thumb2 signal handling when ARMv6 is enabled Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 041/258] ARM: 8429/1: disable GCC SRA optimization Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 042/258] windfarm: decrement client count when unregistering Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 043/258] ARM: 8425/1: kgdb: Dont try to stop the machine when setting breakpoints Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 044/258] ARM: dts: omap5-uevm.dts: fix i2c5 pinctrl offsets Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 045/258] ARM: dts: omap3-beagle: make i2c3, ddc and tfp410 gpio work again Greg Kroah-Hartman
2015-10-18 1:55 ` [PATCH 4.2 046/258] ARM: pxa: ssp: Fix build error by removing originally incorrect DT binding Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 047/258] ARM: EXYNOS: reset Little cores when cpu is up Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 048/258] ARM: dts: sunxi: Raise minimum CPU voltage for sun7i-a20 to meet SoC specifications Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 049/258] ARM: dts: Fix wrong clock binding for sysmmu_fimd1_1 on exynos5420 Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 050/258] ARM: dts: fix usb pin control for imx-rex dts Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 051/258] dax: fix O_DIRECT I/O to the last block of a blockdev Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 052/258] blockdev: dont set S_DAX for misaligned partitions Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 053/258] block: blkg_destroy_all() should clear q->root_blkg and ->root_rl.blkg Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 054/258] dmaengine: at_xdmac: change block increment addressing mode Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 055/258] dmaengine: at_xdmac: clean used descriptor Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 056/258] dmaengine: dw: properly read DWC_PARAMS register Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 057/258] dmaengine: at_xdmac: fix bug in prep_dma_cyclic Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 058/258] dmaengine: pxa_dma: fix initial list move Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 059/258] pmem: add proper fencing to pmem_rw_page() Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 060/258] x86/apic: Serialize LVTT and TSC_DEADLINE writes Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 061/258] x86/alternatives: Make optimize_nops() interrupt safe and synced Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 062/258] x86/platform: Fix Geode LX timekeeping in the generic x86 build Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 063/258] x86/ioapic: Force affinity setting in setup_ioapic_dest() Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 064/258] x86/pci/intel_mid_pci: Work around for IRQ0 assignment Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 065/258] x86/paravirt: Replace the paravirt nop with a bona fide empty function Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 066/258] x86/nmi/64: Fix a paravirt stack-clobbering bug in the NMI code Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 067/258] Use WARN_ON_ONCE for missing X86_FEATURE_NRIPS Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 068/258] x86/efi: Fix boot crash by mapping EFI memmap entries bottom-up at runtime, instead of top-down Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 069/258] x86/kexec: Fix kexec crash in syscall kexec_file_load() Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 070/258] x86/process: Add proper bound checks in 64bit get_wchan() Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 071/258] x86/mm: Set NX on gap between __ex_table and rodata Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 072/258] x86/xen: Support kexec/kdump in HVM guests by doing a soft reset Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 073/258] leds:lp55xx: Correct Kconfig dependency for f/w user helper Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 074/258] leds/led-class: Add missing put_device() Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 075/258] sched/core: Fix TASK_DEAD race in finish_task_switch() Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 076/258] s390/compat: correct uc_sigmask of the compat signal frame Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 077/258] s390/boot/decompression: disable floating point in decompressor Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 078/258] Revert "cgroup: simplify threadgroup locking" Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 079/258] Revert "sched, cgroup: replace signal_struct->group_rwsem with a global percpu_rwsem" Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 080/258] memcg: make mem_cgroup_read_stat() unsigned Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 081/258] spi: Fix documentation of spi_alloc_master() Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 082/258] spi: xtensa-xtfpga: fix register endianness Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 083/258] spi: bcm2835: BUG: fix wrong use of PAGE_MASK Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 084/258] spi: spi-pxa2xx: Check status register to determine if SSSR_TINT is disabled Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 085/258] spi: spidev: fix possible NULL dereference Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 086/258] mm: migrate: hugetlb: putback destination hugepage to active list Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 087/258] lib/iommu-common.c: do not try to deref a null iommu->lazy_flush() pointer when n < pool->hint Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 088/258] ocfs2/dlm: fix deadlock when dispatch assert master Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 089/258] mm: hugetlbfs: skip shared VMAs when unmapping private pages to satisfy a fault Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 090/258] memcg: fix dirty page migration Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 091/258] ALSA: hda/tegra - async probe for avoiding module loading deadlock Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 092/258] ALSA: hda - Disable power_save_node for Thinkpads Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 093/258] ALSA: synth: Fix conflicting OSS device registration on AWE32 Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 094/258] ALSA: hda: Add dock support for ThinkPad T550 Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 095/258] ALSA: hda - Apply SPDIF pin ctl to MacBookPro 12,1 Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 096/258] ALSA: hda - Disable power_save_node for IDT 92HD73xx chips Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 097/258] ASoC: pxa: pxa2xx-ac97: fix dma requestor lines Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 098/258] ASoC: fix broken pxa SoC support Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 099/258] ASoC: dwc: correct irq clear method Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 100/258] ASoC: db1200: Fix DAI link format for db1300 and db1550 Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 101/258] ASoC: sgtl5000: fix wrong register MIC_BIAS_VOLTAGE setup on probe Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 102/258] ASoC: tas2552: fix dBscale-min declaration Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 103/258] btrfs: skip waiting on ordered range for special files Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 104/258] Btrfs: fix read corruption of compressed and shared extents Greg Kroah-Hartman
2015-10-18 1:56 ` [PATCH 4.2 105/258] Btrfs: update fix for " Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 107/258] PCI: Fix devfn for VPD access through function 0 Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 108/258] PCI: Use function 0 VPD for identical functions, regular VPD for others Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 109/258] PCI: Clear IORESOURCE_UNSET when clipping a bridge window Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 110/258] dm thin: disable discard support for thin devices if pools is disabled Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 111/258] dm crypt: constrain crypt devices max_segment_size to PAGE_SIZE Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 112/258] ath10k: fix dma_mapping_error() handling Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 113/258] svcrdma: Fix send_reply() scatter/gather set-up Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 114/258] staging: ion: fix corruption of ion_import_dma_buf Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 115/258] USB: option: add ZTE PIDs Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 116/258] md/raid0: update queue parameter in a safer location Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 117/258] md/raid0: apply base queue limits *before* disk_stack_limits Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 118/258] dm raid: fix round up of default region size Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 119/258] netfilter: bridge: fix IPv6 packets not being bridged with CONFIG_IPV6=n Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 120/258] netfilter: nfnetlink: work around wrong endianess in res_id field Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 121/258] netfilter: nf_tables: Use 32 bit addressing register from nft_type_to_reg() Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 122/258] netfilter: ipset: Out of bound access in hash:net* types fixed Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 123/258] netfilter: ipset: Fixing unnamed union init Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 124/258] netfilter: conntrack: use nf_ct_tmpl_free in CT/synproxy error paths Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 125/258] netfilter: nf_log: wait for rcu grace after logger unregistration Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 126/258] netfilter: nft_compat: skip family comparison in case of NFPROTO_UNSPEC Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 127/258] netfilter: nf_log: dont zap all loggers on unregister Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 128/258] regulator: core: Correct return value check in regulator_resolve_supply Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 129/258] regulator: axp20x: Fix enable bit indexes for DCDC4 and DCDC5 Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 130/258] regulator: core: Handle probe deferral from DT when resolving supplies Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 131/258] Bluetooth: Delay check for conn->smp in smp_conn_security() Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 132/258] nfs: fix v4.2 SEEK on files over 2 gigs Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 133/258] NFS: Do cleanup before resetting pageio read/write to mds Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 134/258] NFSv4: Recovery of recalled read delegations is broken Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 135/258] nfs: fix pg_test page count calculation Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 136/258] NFS: Fix a write performance regression Greg Kroah-Hartman
2015-10-18 1:57 ` Greg Kroah-Hartman [this message]
2015-10-18 1:57 ` [PATCH 4.2 138/258] disabling oplocks/leases via module parm enable_oplocks broken for SMB3 Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 139/258] [SMB3] Do not fall back to SMBWriteX in set_file_size error cases Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 140/258] drm/qxl: only report first monitor as connected if we have no state Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 147/258] drm/amdgpu: Restore LCD backlight level on resume Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 148/258] drm/i915/bios: handle MIPI Sequence Block v3+ gracefully Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 149/258] drm: Reject DRI1 hw lock ioctl functions for kms drivers Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 151/258] drm/dp/mst: fixup handling hotplug on port removal Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 152/258] drm/dp/mst: drop cancel work sync in the mstb destroy path (v2) Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 153/258] USB: whiteheat: fix potential null-deref at probe Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 154/258] xhci: give command abortion one more chance before killing xhci Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 155/258] xhci: Move xhci_pme_quirk() behind #ifdef CONFIG_PM Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 156/258] usb: xhci: lock mutex on xhci_stop Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 157/258] usb: xhci: Clear XHCI_STATE_DYING on start Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 158/258] usb: xhci: stop everything on the first call to xhci_stop Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 159/258] usb: xhci: exit early in xhci_setup_device() if were halted or dying Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 160/258] xhci: change xhci 1.0 only restrictions to support xhci 1.1 Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 161/258] xhci: init command timeout timer earlier to avoid deleting it uninitialized Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 162/258] usb: xhci: Add support for URB_ZERO_PACKET to bulk/sg transfers Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 163/258] Initialize msg/shm IPC objects before doing ipc_addid() Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 165/258] thermal: cpu_cooling: dont call kcalloc() under rcu_read_lock Greg Kroah-Hartman
2015-10-18 1:57 ` [PATCH 4.2 166/258] thermal: cpu_cooling: free power table on error or when unregistering Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 167/258] hv: util: checking the wrong variable Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 168/258] mmc: dw_mmc: handle data blocks > than 4kB if IDMAC is used Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 169/258] usb: chipidea: imx: fix a typo for imx6sx Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 170/258] cifs: use server timestamp for ntlmv2 authentication Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 171/258] irqchip/atmel-aic5: Use per chip mask caches in mask/unmask() Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 172/258] irqchip/gic-v3-its: Add missing cache flushes Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 173/258] docs: update HOWTO for 3.x -> 4.x versioning Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 174/258] extcon: Fix signedness bugs about break error handling Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 175/258] extcon: Fix attached value returned by is_extcon_changed Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 176/258] mtd: pxa3xx_nand: add a default chunk size Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 177/258] mtd: nand: sunxi: fix sunxi_nand_chips_cleanup() Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 178/258] mtd: nand: sunxi: fix OOB handling in ->write_xxx() functions Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 179/258] hpsa: fix an sprintf() overflow in the reset handler Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 180/258] PM / AVS: rockchip-io: depend on CONFIG_POWER_AVS Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 181/258] device property: fix potential NULL pointer dereference Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 182/258] ath10k: fix per-vif queue locking Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 183/258] ath10k: reject 11b tx fragmentation configuration Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 184/258] ath10k: fix peer limit enforcement Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 185/258] ath10k: wake up offchannel queue properly Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 186/258] ath10k: wake up queue upon vif creation Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 187/258] pcmcia: sa11x0: fix missing clk_put() in sa11x0 socket drivers Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 188/258] ipr: Enable SIS pipe commands for SIS-32 devices Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 189/258] regmap: debugfs: Ensure we dont underflow when printing access masks Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 190/258] regmap: debugfs: Dont bother actually printing when calculating max length Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 191/258] security: fix typo in security_task_prctl Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 192/258] usb: musb: dsps: fix polling in device-only mode Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 193/258] usb: chipidea: udc: using the correct stall implementation Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 194/258] usb: Use the USB_SS_MULT() macro to get the burst multiplier Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 195/258] usb: phy: phy-generic: Fix reset behaviour on legacy boot Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 196/258] usb: musb: cppi41: allow it to work again Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 197/258] USB: chaoskey read offset bug Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 198/258] usb: Add device quirk for Logitech PTZ cameras Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 199/258] USB: Add reset-resume quirk for two Plantronics usb headphones Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 200/258] crypto: marvell - properly handle CRYPTO_TFM_REQ_MAY_BACKLOG-flagged requests Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 202/258] cpufreq: dt: Tolerance applies on both sides of target voltage Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 203/258] MIPS: Fix console output for Fulong2e system Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 204/258] MIPS: bootmem: Fix mapstart calculation for contiguous maps Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 205/258] MIPS: BPF: Avoid unreachable code on little endian Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 206/258] MIPS: BPF: Fix build on pre-R2 little endian CPUs Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 207/258] MIPS: dma-default: Fix 32-bit fall back to GFP_DMA Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 208/258] MIPS: CPS: Stop dangling delay slot from has_mt Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 209/258] MIPS: CPS: Dont include MT code in non-MT kernels Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 210/258] MIPS: CPS: #ifdef on CONFIG_MIPS_MT_SMP rather than CONFIG_MIPS_MT Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 216/258] tools lib traceevent: Fix string handling in heterogeneous arch environments Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 217/258] powerpc/MSI: Fix race condition in tearing down MSI interrupts Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 218/258] rsi: Fix possible leak when loading firmware Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 219/258] UBIFS: Kill unneeded locking in ubifs_init_security Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 220/258] UBI: Validate data_size Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 221/258] UBI: return ENOSPC if no enough space available Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 222/258] net: via/Kconfig: GENERIC_PCI_IOMAP required if PCI not selected Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 224/258] mmc: core: Dont return an error for CD/WP GPIOs when GPIOLIB is unset Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 225/258] mmc: core: fix dead loop of mmc_retune Greg Kroah-Hartman
2015-10-18 1:58 ` [PATCH 4.2 226/258] dcache: Handle escaped paths in prepend_path Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 227/258] vfs: Test for and handle paths that are unreachable from their mnt_root Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 228/258] arm64/efi: Fix boot crash by not padding between EFI_MEMORY_RUNTIME regions Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 229/258] arm64: ftrace: fix function_graph tracer panic Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 230/258] arm64: readahead: fault retry breaks mmap file read random detection Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 231/258] m68k: Define asmlinkage_protect Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 233/258] net/xen-netfront: only napi_synchronize() if running Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 234/258] igb: do not re-init SR-IOV during probe Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 235/258] genirq: Fix race in register_irq_proc() Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 236/258] clocksource: Fix abs() usage w/ 64bit values Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 237/258] md/bitmap: dont pass -1 to bitmap_storage_alloc Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 238/258] nfs/filelayout: Fix NULL reference caused by double freeing of fh_array Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 239/258] mmc: sdhci-pxav3: remove broken clock base quirk for Armada 38x sdhci driver Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 240/258] mmc: sdhci-pxav3: disable clock inversion for HS MMC cards Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 241/258] mmc: sdhci-pxav3: fix error handling of armada_38x_quirks Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 242/258] cpufreq: acpi_cpufreq: prevent crash on reading freqdomain_cpus Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 243/258] clk: ti: fix dual-registration of uart4_ick Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 244/258] clk: ti: clk-7xx: Remove hardwired ABE clock configuration Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 245/258] clk: samsung: fix cpu clocks flags checking Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 246/258] namei: results of d_is_negative() should be checked after dentry revalidation Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 247/258] dm: fix AB-BA deadlock in __dm_destroy() Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 248/258] dm cache: fix NULL pointer when switching from cleaner policy Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 249/258] staging: speakup: fix speakup-r regression Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 250/258] tty: fix stall caused by missing memory barrier in drivers/tty/n_tty.c Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 251/258] drivers/tty: require read access for controlling terminal Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 252/258] serial: 8250: add uart_config entry for PORT_RT2880 Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 254/258] e1000e: Fix tight loop implementation of systime read algorithm Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 255/258] mm/slab: fix unexpected index mapping result of kmalloc_size(INDEX_NODE+1) Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 256/258] blk-mq: avoid setting hctx->tags->cpumask before allocation Greg Kroah-Hartman
2015-10-18 1:59 ` [PATCH 4.2 257/258] sched/preempt: Fix cond_resched_lock() and cond_resched_softirq() Greg Kroah-Hartman
2015-10-18 18:58 ` Xen build error in 4.2.4-rc1 (sched/preempt: Fix cond_resched_lock() and cond_resched_softirq()) Andre Tomt
2015-10-18 22:05 ` Greg Kroah-Hartman
2015-10-19 4:21 ` [PATCH 4.2 000/258] 4.2.4-stable review Guenter Roeck
2015-10-19 15:09 ` Greg Kroah-Hartman
2015-10-19 14:37 ` Shuah Khan
2015-10-19 15:13 ` Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151018014736.619472739@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=jmcd@samba.org \
--cc=linux-kernel@vger.kernel.org \
--cc=noel.power@suse.com \
--cc=stable@vger.kernel.org \
--cc=steve.french@primarydata.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).