From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Robert Morris <rtm@csail.mit.edu>,
"Paulo Alcantara (SUSE)" <pc@manguebit.com>,
Steve French <stfrench@microsoft.com>,
Guruswamy Basavaiah <guruswamy.basavaiah@broadcom.com>
Subject: [PATCH 6.1 191/197] smb: client: fix potential OOBs in smb2_parse_contexts()
Date: Tue, 20 Feb 2024 21:52:30 +0100 [thread overview]
Message-ID: <20240220204846.798012654@linuxfoundation.org> (raw)
In-Reply-To: <20240220204841.073267068@linuxfoundation.org>
6.1-stable review patch. If anyone has any objections, please let me know.
------------------
From: Paulo Alcantara <pc@manguebit.com>
commit af1689a9b7701d9907dfc84d2a4b57c4bc907144 upstream.
Validate offsets and lengths before dereferencing create contexts in
smb2_parse_contexts().
This fixes following oops when accessing invalid create contexts from
server:
BUG: unable to handle page fault for address: ffff8881178d8cc3
#PF: supervisor read access in kernel mode
#PF: error_code(0x0000) - not-present page
PGD 4a01067 P4D 4a01067 PUD 0
Oops: 0000 [#1] PREEMPT SMP NOPTI
CPU: 3 PID: 1736 Comm: mount.cifs Not tainted 6.7.0-rc4 #1
Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS
rel-1.16.2-3-gd478f380-rebuilt.opensuse.org 04/01/2014
RIP: 0010:smb2_parse_contexts+0xa0/0x3a0 [cifs]
Code: f8 10 75 13 48 b8 93 ad 25 50 9c b4 11 e7 49 39 06 0f 84 d2 00
00 00 8b 45 00 85 c0 74 61 41 29 c5 48 01 c5 41 83 fd 0f 76 55 <0f> b7
7d 04 0f b7 45 06 4c 8d 74 3d 00 66 83 f8 04 75 bc ba 04 00
RSP: 0018:ffffc900007939e0 EFLAGS: 00010216
RAX: ffffc90000793c78 RBX: ffff8880180cc000 RCX: ffffc90000793c90
RDX: ffffc90000793cc0 RSI: ffff8880178d8cc0 RDI: ffff8880180cc000
RBP: ffff8881178d8cbf R08: ffffc90000793c22 R09: 0000000000000000
R10: ffff8880180cc000 R11: 0000000000000024 R12: 0000000000000000
R13: 0000000000000020 R14: 0000000000000000 R15: ffffc90000793c22
FS: 00007f873753cbc0(0000) GS:ffff88806bc00000(0000)
knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: ffff8881178d8cc3 CR3: 00000000181ca000 CR4: 0000000000750ef0
PKRU: 55555554
Call Trace:
<TASK>
? __die+0x23/0x70
? page_fault_oops+0x181/0x480
? search_module_extables+0x19/0x60
? srso_alias_return_thunk+0x5/0xfbef5
? exc_page_fault+0x1b6/0x1c0
? asm_exc_page_fault+0x26/0x30
? smb2_parse_contexts+0xa0/0x3a0 [cifs]
SMB2_open+0x38d/0x5f0 [cifs]
? smb2_is_path_accessible+0x138/0x260 [cifs]
smb2_is_path_accessible+0x138/0x260 [cifs]
cifs_is_path_remote+0x8d/0x230 [cifs]
cifs_mount+0x7e/0x350 [cifs]
cifs_smb3_do_mount+0x128/0x780 [cifs]
smb3_get_tree+0xd9/0x290 [cifs]
vfs_get_tree+0x2c/0x100
? capable+0x37/0x70
path_mount+0x2d7/0xb80
? srso_alias_return_thunk+0x5/0xfbef5
? _raw_spin_unlock_irqrestore+0x44/0x60
__x64_sys_mount+0x11a/0x150
do_syscall_64+0x47/0xf0
entry_SYSCALL_64_after_hwframe+0x6f/0x77
RIP: 0033:0x7f8737657b1e
Reported-by: Robert Morris <rtm@csail.mit.edu>
Cc: stable@vger.kernel.org
Signed-off-by: Paulo Alcantara (SUSE) <pc@manguebit.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
[Guru: Modified the patch to be applicable to the cached_dir.c file.]
Signed-off-by: Guruswamy Basavaiah <guruswamy.basavaiah@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
fs/smb/client/cached_dir.c | 8 ++-
fs/smb/client/smb2pdu.c | 91 +++++++++++++++++++++++++++------------------
fs/smb/client/smb2proto.h | 12 +++--
3 files changed, 67 insertions(+), 44 deletions(-)
--- a/fs/smb/client/cached_dir.c
+++ b/fs/smb/client/cached_dir.c
@@ -268,10 +268,12 @@ int open_cached_dir(unsigned int xid, st
if (o_rsp->OplockLevel != SMB2_OPLOCK_LEVEL_LEASE)
goto oshr_free;
- smb2_parse_contexts(server, o_rsp,
+ rc = smb2_parse_contexts(server, rsp_iov,
&oparms.fid->epoch,
- oparms.fid->lease_key, &oplock,
- NULL, NULL);
+ oparms.fid->lease_key,
+ &oplock, NULL, NULL);
+ if (rc)
+ goto oshr_free;
if (!(oplock & SMB2_LEASE_READ_CACHING_HE))
goto oshr_free;
qi_rsp = (struct smb2_query_info_rsp *)rsp_iov[1].iov_base;
--- a/fs/smb/client/smb2pdu.c
+++ b/fs/smb/client/smb2pdu.c
@@ -2145,17 +2145,18 @@ parse_posix_ctxt(struct create_context *
posix->nlink, posix->mode, posix->reparse_tag);
}
-void
-smb2_parse_contexts(struct TCP_Server_Info *server,
- struct smb2_create_rsp *rsp,
- unsigned int *epoch, char *lease_key, __u8 *oplock,
- struct smb2_file_all_info *buf,
- struct create_posix_rsp *posix)
+int smb2_parse_contexts(struct TCP_Server_Info *server,
+ struct kvec *rsp_iov,
+ unsigned int *epoch,
+ char *lease_key, __u8 *oplock,
+ struct smb2_file_all_info *buf,
+ struct create_posix_rsp *posix)
{
- char *data_offset;
+ struct smb2_create_rsp *rsp = rsp_iov->iov_base;
struct create_context *cc;
- unsigned int next;
- unsigned int remaining;
+ size_t rem, off, len;
+ size_t doff, dlen;
+ size_t noff, nlen;
char *name;
static const char smb3_create_tag_posix[] = {
0x93, 0xAD, 0x25, 0x50, 0x9C,
@@ -2164,45 +2165,63 @@ smb2_parse_contexts(struct TCP_Server_In
};
*oplock = 0;
- data_offset = (char *)rsp + le32_to_cpu(rsp->CreateContextsOffset);
- remaining = le32_to_cpu(rsp->CreateContextsLength);
- cc = (struct create_context *)data_offset;
+
+ off = le32_to_cpu(rsp->CreateContextsOffset);
+ rem = le32_to_cpu(rsp->CreateContextsLength);
+ if (check_add_overflow(off, rem, &len) || len > rsp_iov->iov_len)
+ return -EINVAL;
+ cc = (struct create_context *)((u8 *)rsp + off);
/* Initialize inode number to 0 in case no valid data in qfid context */
if (buf)
buf->IndexNumber = 0;
- while (remaining >= sizeof(struct create_context)) {
- name = le16_to_cpu(cc->NameOffset) + (char *)cc;
- if (le16_to_cpu(cc->NameLength) == 4 &&
- strncmp(name, SMB2_CREATE_REQUEST_LEASE, 4) == 0)
- *oplock = server->ops->parse_lease_buf(cc, epoch,
- lease_key);
- else if (buf && (le16_to_cpu(cc->NameLength) == 4) &&
- strncmp(name, SMB2_CREATE_QUERY_ON_DISK_ID, 4) == 0)
- parse_query_id_ctxt(cc, buf);
- else if ((le16_to_cpu(cc->NameLength) == 16)) {
- if (posix &&
- memcmp(name, smb3_create_tag_posix, 16) == 0)
+ while (rem >= sizeof(*cc)) {
+ doff = le16_to_cpu(cc->DataOffset);
+ dlen = le32_to_cpu(cc->DataLength);
+ if (check_add_overflow(doff, dlen, &len) || len > rem)
+ return -EINVAL;
+
+ noff = le16_to_cpu(cc->NameOffset);
+ nlen = le16_to_cpu(cc->NameLength);
+ if (noff + nlen >= doff)
+ return -EINVAL;
+
+ name = (char *)cc + noff;
+ switch (nlen) {
+ case 4:
+ if (!strncmp(name, SMB2_CREATE_REQUEST_LEASE, 4)) {
+ *oplock = server->ops->parse_lease_buf(cc, epoch,
+ lease_key);
+ } else if (buf &&
+ !strncmp(name, SMB2_CREATE_QUERY_ON_DISK_ID, 4)) {
+ parse_query_id_ctxt(cc, buf);
+ }
+ break;
+ case 16:
+ if (posix && !memcmp(name, smb3_create_tag_posix, 16))
parse_posix_ctxt(cc, buf, posix);
+ break;
+ default:
+ cifs_dbg(FYI, "%s: unhandled context (nlen=%zu dlen=%zu)\n",
+ __func__, nlen, dlen);
+ if (IS_ENABLED(CONFIG_CIFS_DEBUG2))
+ cifs_dump_mem("context data: ", cc, dlen);
+ break;
}
- /* else {
- cifs_dbg(FYI, "Context not matched with len %d\n",
- le16_to_cpu(cc->NameLength));
- cifs_dump_mem("Cctxt name: ", name, 4);
- } */
- next = le32_to_cpu(cc->Next);
- if (!next)
+ off = le32_to_cpu(cc->Next);
+ if (!off)
break;
- remaining -= next;
- cc = (struct create_context *)((char *)cc + next);
+ if (check_sub_overflow(rem, off, &rem))
+ return -EINVAL;
+ cc = (struct create_context *)((u8 *)cc + off);
}
if (rsp->OplockLevel != SMB2_OPLOCK_LEVEL_LEASE)
*oplock = rsp->OplockLevel;
- return;
+ return 0;
}
static int
@@ -3082,8 +3101,8 @@ SMB2_open(const unsigned int xid, struct
}
- smb2_parse_contexts(server, rsp, &oparms->fid->epoch,
- oparms->fid->lease_key, oplock, buf, posix);
+ rc = smb2_parse_contexts(server, &rsp_iov, &oparms->fid->epoch,
+ oparms->fid->lease_key, oplock, buf, posix);
creat_exit:
SMB2_open_free(&rqst);
free_rsp_buf(resp_buftype, rsp);
--- a/fs/smb/client/smb2proto.h
+++ b/fs/smb/client/smb2proto.h
@@ -249,11 +249,13 @@ extern int smb3_validate_negotiate(const
extern enum securityEnum smb2_select_sectype(struct TCP_Server_Info *,
enum securityEnum);
-extern void smb2_parse_contexts(struct TCP_Server_Info *server,
- struct smb2_create_rsp *rsp,
- unsigned int *epoch, char *lease_key,
- __u8 *oplock, struct smb2_file_all_info *buf,
- struct create_posix_rsp *posix);
+int smb2_parse_contexts(struct TCP_Server_Info *server,
+ struct kvec *rsp_iov,
+ unsigned int *epoch,
+ char *lease_key, __u8 *oplock,
+ struct smb2_file_all_info *buf,
+ struct create_posix_rsp *posix);
+
extern int smb3_encryption_required(const struct cifs_tcon *tcon);
extern int smb2_validate_iov(unsigned int offset, unsigned int buffer_length,
struct kvec *iov, unsigned int min_buf_size);
next prev parent reply other threads:[~2024-02-20 21:07 UTC|newest]
Thread overview: 211+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-20 20:49 [PATCH 6.1 000/197] 6.1.79-rc1 review Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 001/197] work around gcc bugs with asm goto with outputs Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 002/197] update workarounds for gcc "asm goto" issue Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 003/197] btrfs: add and use helper to check if block group is used Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 004/197] btrfs: do not delete unused block group if it may be used soon Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 005/197] btrfs: forbid creating subvol qgroups Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 006/197] btrfs: do not ASSERT() if the newly created subvolume already got read Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 007/197] btrfs: forbid deleting live subvol qgroup Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 008/197] btrfs: send: return EOPNOTSUPP on unknown flags Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 009/197] btrfs: dont reserve space for checksums when writing to nocow files Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 010/197] btrfs: reject encoded write if inode has nodatasum flag set Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 011/197] btrfs: dont drop extent_map for free space inode on write error Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 012/197] driver core: Fix device_link_flag_is_sync_state_only() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 013/197] of: unittest: Fix compile in the non-dynamic case Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 014/197] KVM: selftests: Clear dirty ring states between two modes in dirty_log_test Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 015/197] KVM: selftests: Fix a semaphore imbalance in the dirty ring logging test Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 016/197] wifi: iwlwifi: Fix some error codes Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 017/197] wifi: iwlwifi: uninitialized variable in iwl_acpi_get_ppag_table() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 018/197] of: property: Improve finding the supplier of a remote-endpoint property Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 019/197] net: openvswitch: limit the number of recursions from action sets Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 020/197] lan966x: Fix crash when adding interface under a lag Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 021/197] tls/sw: Use splice_eof() to flush Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 022/197] tls: extract context alloc/initialization out of tls_set_sw_offload Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 023/197] net: tls: factor out tls_*crypt_async_wait() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 024/197] tls: fix race between async notify and socket close Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 025/197] net: tls: fix use-after-free with partial reads and async decrypt Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 026/197] net: tls: fix returned read length with " Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 027/197] spi: ppc4xx: Drop write-only variable Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 028/197] ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 029/197] net: sysfs: Fix /sys/class/net/<iface> path for statistics Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 030/197] nouveau/svm: fix kvcalloc() argument order Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 031/197] MIPS: Add memory clobber to csum_ipv6_magic() inline assembler Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 032/197] i40e: Do not allow untrusted VF to remove administratively set MAC Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 033/197] i40e: Fix waiting for queues of all VSIs to be disabled Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 034/197] scs: add CONFIG_MMU dependency for vfree_atomic() Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 035/197] tracing/trigger: Fix to return error if failed to alloc snapshot Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 036/197] readahead: avoid multiple marked readahead pages Greg Kroah-Hartman
2024-02-20 21:05 ` Matthew Wilcox
2024-02-21 7:00 ` Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 037/197] mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 038/197] scsi: storvsc: Fix ring buffer size calculation Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 039/197] dm-crypt, dm-verity: disable tasklets Greg Kroah-Hartman
2024-02-20 20:49 ` [PATCH 6.1 040/197] ASoC: amd: yc: Add DMI quirk for MSI Bravo 15 C7VF Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 041/197] parisc: Prevent hung tasks when printing inventory on serial console Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 042/197] ALSA: hda/realtek: Fix the external mic not being recognised for Acer Swift 1 SF114-32 Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 043/197] ALSA: hda/realtek: Enable Mute LED on HP Laptop 14-fq0xxx Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 044/197] HID: i2c-hid-of: fix NULL-deref on failed power up Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 045/197] HID: wacom: generic: Avoid reporting a serial of 0 to userspace Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 046/197] HID: wacom: Do not register input devices until after hid_hw_start Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 047/197] iio: hid-sensor-als: Return 0 for HID_USAGE_SENSOR_TIME_TIMESTAMP Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 048/197] usb: ucsi: Add missing ppm_lock Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 049/197] usb: ulpi: Fix debugfs directory leak Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 050/197] usb: ucsi_acpi: Fix command completion handling Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 051/197] USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 052/197] usb: f_mass_storage: forbid async queue when shutdown happen Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 053/197] usb: dwc3: gadget: Fix NULL pointer dereference in dwc3_gadget_suspend Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 054/197] interconnect: qcom: sc8180x: Mark CO0 BCM keepalive Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 055/197] media: ir_toy: fix a memleak in irtoy_tx Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 056/197] driver core: fw_devlink: Improve detection of overlapping cycles Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 057/197] powerpc/6xx: set High BAT Enable flag on G2_LE cores Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 058/197] powerpc/kasan: Fix addr error caused by page alignment Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 059/197] cifs: fix underflow in parse_server_interfaces() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 060/197] i2c: qcom-geni: Correct I2C TRE sequence Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 061/197] irqchip/loongson-eiointc: Use correct struct type in eiointc_domain_alloc() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 062/197] powerpc/kasan: Limit KASAN thread size increase to 32KB Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 063/197] i2c: pasemi: split driver into two separate modules Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 064/197] i2c: i801: Fix block process call transactions Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 065/197] modpost: trim leading spaces when processing source files list Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 066/197] mptcp: get rid of msk->subflow Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 067/197] mptcp: fix data re-injection from stale subflow Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 068/197] selftests: mptcp: add missing kconfig for NF Filter Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 069/197] selftests: mptcp: add missing kconfig for NF Filter in v6 Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 070/197] selftests: mptcp: add missing kconfig for NF Mangle Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 071/197] selftests: mptcp: increase timeout to 30 min Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 072/197] mptcp: drop the push_pending field Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 073/197] mptcp: check addrs list in userspace_pm_get_local_id Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 074/197] media: Revert "media: rkisp1: Drop IRQF_SHARED" Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 075/197] scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock" Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 076/197] Revert "drm/amd: flush any delayed gfxoff on suspend entry" Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 077/197] drm/virtio: Set segment size for virtio_gpu device Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 078/197] lsm: fix the logic in security_inode_getsecctx() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 079/197] firewire: core: correct documentation of fw_csr_string() kernel API Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 080/197] ALSA: hda/realtek: Apply headset jack quirk for non-bass alc287 thinkpads Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 081/197] kbuild: Fix changing ELF file type for output of gen_btf for big endian Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 082/197] nfc: nci: free rx_data_reassembly skb on NCI device cleanup Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 083/197] net: hsr: remove WARN_ONCE() in send_hsr_supervision_frame() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 084/197] net: stmmac: do not clear TBS enable bit on link up/down Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 085/197] xen-netback: properly sync TX responses Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 086/197] modpost: propagate W=1 build option to modpost Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 087/197] modpost: Dont let "driver"s reference .exit.* Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 088/197] linux/init: remove __memexit* annotations Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 089/197] modpost: Include .text.* in TEXT_SECTIONS Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 090/197] um: Fix adding -no-pie for clang Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 091/197] modpost: Add .ltext and .ltext.* to TEXT_SECTIONS Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 092/197] ALSA: hda/realtek: Enable headset mic on Vaio VJFE-ADL Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 093/197] ASoC: codecs: wcd938x: handle deferred probe Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 094/197] ALSA: hda/cs8409: Suppress vmaster control for Dolphin models Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 095/197] ALSA: hda/realtek: fix mute/micmute LEDs for HP ZBook Power Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 096/197] binder: signal epoll threads of self-work Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 097/197] misc: fastrpc: Mark all sessions as invalid in cb_remove Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 098/197] ext4: fix double-free of blocks due to wrong extents moved_len Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 099/197] ext4: avoid bb_free and bb_fragments inconsistency in mb_free_blocks() Greg Kroah-Hartman
2024-02-20 20:50 ` [PATCH 6.1 100/197] tracing: Fix wasted memory in saved_cmdlines logic Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 101/197] staging: iio: ad5933: fix type mismatch regression Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 102/197] iio: magnetometer: rm3100: add boundary check for the value read from RM3100_REG_TMRC Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 103/197] iio: core: fix memleak in iio_device_register_sysfs Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 104/197] iio: commom: st_sensors: ensure proper DMA alignment Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 105/197] iio: accel: bma400: Fix a compilation problem Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 106/197] iio: adc: ad_sigma_delta: ensure proper DMA alignment Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 107/197] iio: imu: adis: " Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 108/197] iio: imu: bno055: serdev requires REGMAP Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 109/197] media: rc: bpf attach/detach requires write permission Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 110/197] ksmbd: free aux buffer if ksmbd_iov_pin_rsp_read fails Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 111/197] xfrm: Remove inner/outer modes from output path Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 112/197] xfrm: Remove inner/outer modes from input path Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 113/197] drm/msm: Wire up tlb ops Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 114/197] drm/prime: Support page array >= 4GB Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 115/197] drm/amd/display: Increase frame-larger-than for all display_mode_vba files Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 116/197] drm/amd/display: Preserve original aspect ratio in create stream Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 117/197] hv_netvsc: Fix race condition between netvsc_probe and netvsc_remove Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 118/197] ring-buffer: Clean ring_buffer_poll_wait() error return Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 119/197] nfp: flower: fix hardware offload for the transfer layer port Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 120/197] serial: max310x: set default value when reading clock ready bit Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 121/197] serial: max310x: improve crystal stable clock detection Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 122/197] serial: max310x: fail probe if clock crystal is unstable Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 123/197] serial: max310x: prevent infinite while() loop in port startup Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 124/197] powerpc/64: Set task pt_regs->link to the LR value on scv entry Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 125/197] powerpc/cputable: Add missing PPC_FEATURE_BOOKE on PPC64 Book-E Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 126/197] powerpc/pseries: fix accuracy of stolen time Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 127/197] x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6 Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 128/197] x86/fpu: Stop relying on userspace for info to fault in xsave buffer Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 129/197] KVM: x86/pmu: Fix type length error when reading pmu->fixed_ctr_ctrl Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 130/197] x86/mm/ident_map: Use gbpages only where full GB page should be mapped Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 131/197] io_uring/net: fix multishot accept overflow handling Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 132/197] mmc: slot-gpio: Allow non-sleeping GPIO ro Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 133/197] ALSA: hda/realtek: fix mute/micmute LED For HP mt645 Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 134/197] ALSA: hda/conexant: Add quirk for SWS JS201D Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 135/197] nilfs2: fix data corruption in dsync block recovery for small block sizes Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 136/197] nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 137/197] crypto: ccp - Fix null pointer dereference in __sev_platform_shutdown_locked Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 138/197] nfp: use correct macro for LengthSelect in BAR config Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 139/197] nfp: flower: prevent re-adding mac index for bonded port Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 140/197] wifi: cfg80211: fix wiphy delayed work queueing Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 141/197] wifi: mac80211: reload info pointer in ieee80211_tx_dequeue() Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 142/197] irqchip/irq-brcmstb-l2: Add write memory barrier before exit Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 143/197] irqchip/gic-v3-its: Fix GICv4.1 VPE affinity update Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 144/197] zonefs: Improve error handling Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 145/197] mmc: sdhci-pci-o2micro: Fix a warm reboot issue that disk cant be detected by BIOS Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 146/197] ASoC: amd: yc: Add DMI quirk for Lenovo Ideapad Pro 5 16ARP8 Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 147/197] tools/rtla: Remove unused sched_getattr() function Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 148/197] tools/rtla: Replace setting prio with nice for SCHED_OTHER Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 149/197] tools/rtla: Exit with EXIT_SUCCESS when help is invoked Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 150/197] tools/rtla: Fix uninitialized bucket/data->bucket_size warning Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 151/197] tools/rtla: Fix Makefile compiler options for clang Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 152/197] fs: relax mount_setattr() permission checks Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 153/197] net: ethernet: ti: cpsw: enable mac_managed_pm to fix mdio Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 154/197] s390/qeth: Fix potential loss of L3-IP@ in case of network issues Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 155/197] net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 156/197] hv_netvsc: Register VF in netvsc_probe if NET_DEVICE_REGISTER missed Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 157/197] ceph: prevent use-after-free in encode_cap_msg() Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 158/197] fs,hugetlb: fix NULL pointer dereference in hugetlbs_fill_super Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 159/197] mm: hugetlb pages should not be reserved by shmat() if SHM_NORESERVE Greg Kroah-Hartman
2024-02-20 20:51 ` [PATCH 6.1 160/197] of: property: fix typo in io-channels Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 161/197] can: netlink: Fix TDCO calculation using the old data bittiming Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 162/197] can: j1939: prevent deadlock by changing j1939_socks_lock to rwlock Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 163/197] can: j1939: Fix UAF in j1939_sk_match_filter during setsockopt(SO_J1939_FILTER) Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 164/197] pmdomain: core: Move the unused cleanup to a _sync initcall Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 165/197] fs/proc: do_task_stat: move thread_group_cputime_adjusted() outside of lock_task_sighand() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 166/197] tracing: Inform kmemleak of saved_cmdlines allocation Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 167/197] xfrm: Use xfrm_state selector for BEET input Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 168/197] xfrm: Silence warnings triggerable by bad packets Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 169/197] tls: fix NULL deref on tls_sw_splice_eof() with empty record Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 170/197] selftests/mm: ksm_tests should only MADV_HUGEPAGE valid memory Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 171/197] selftests/mm: Update va_high_addr_switch.sh to check CPU for la57 flag Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 172/197] md: bypass block throttle for superblock update Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 173/197] ARM: dts: imx6q-apalis: add can power-up delay on ixora board Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 174/197] wifi: mwifiex: Support SD8978 chipset Greg Kroah-Hartman
2024-02-21 8:03 ` Francesco Dolcini
2024-02-21 8:12 ` Greg Kroah-Hartman
2024-02-21 8:39 ` Francesco Dolcini
2024-02-21 10:33 ` Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 175/197] wifi: mwifiex: add extra delay for firmware ready Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 176/197] bus: moxtet: Add spi device table Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 177/197] arm64: dts: qcom: msm8916: Enable blsp_dma by default Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 178/197] arm64: dts: qcom: msm8916: Make blsp_dma controlled-remotely Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 179/197] arm64: dts: qcom: sdm845: fix USB SS wakeup Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 180/197] arm64: dts: qcom: sm8150: " Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 181/197] wifi: mwifiex: fix uninitialized firmware_stat Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 182/197] crypto: lib/mpi - Fix unexpected pointer access in mpi_ec_init Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 183/197] block: fix partial zone append completion handling in req_bio_endio() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 184/197] netfilter: ipset: fix performance regression in swap operation Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 185/197] netfilter: ipset: Missing gc cancellations fixed Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 186/197] parisc: Fix random data corruption from exception handler Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 187/197] nfsd: fix RELEASE_LOCKOWNER Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 188/197] nfsd: dont take fi_lock in nfsd_break_deleg_cb() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 189/197] hrtimer: Ignore slack time for RT tasks in schedule_hrtimeout_range() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 190/197] RDMA/irdma: Ensure iWarp QP queue memory is OS paged aligned Greg Kroah-Hartman
2024-02-20 20:52 ` Greg Kroah-Hartman [this message]
2024-02-20 20:52 ` [PATCH 6.1 192/197] smb: client: fix parsing of SMB3.1.1 POSIX create context Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 193/197] net: prevent mss overflow in skb_segment() Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 194/197] bpf: Add struct for bin_args arg in bpf_bprintf_prepare Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 195/197] bpf: Do cleanup in bpf_bprintf_cleanup only when needed Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 196/197] bpf: Remove trace_printk_lock Greg Kroah-Hartman
2024-02-20 20:52 ` [PATCH 6.1 197/197] userfaultfd: fix mmap_changing checking in mfill_atomic_hugetlb Greg Kroah-Hartman
2024-02-21 0:18 ` [PATCH 6.1 000/197] 6.1.79-rc1 review SeongJae Park
2024-02-21 1:04 ` Daniel Díaz
2024-02-21 1:40 ` Daniel Díaz
2024-02-21 8:16 ` Matthias Schiffer
2024-02-21 12:37 ` Greg Kroah-Hartman
2024-02-21 12:02 ` Jon Hunter
2024-02-21 15:39 ` Shuah Khan
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=20240220204846.798012654@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=guruswamy.basavaiah@broadcom.com \
--cc=patches@lists.linux.dev \
--cc=pc@manguebit.com \
--cc=rtm@csail.mit.edu \
--cc=stable@vger.kernel.org \
--cc=stfrench@microsoft.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).