From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 378F819DF75 for ; Wed, 26 Feb 2025 01:57:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740535065; cv=none; b=IEyMK2yn6mR6lNw/RN/JslBn7JHj31lu2bzmTxExQ1xvRLLzehTTts+b9VLrBoP3hyf0MyoxeFoui+7/YU6FKjCvIYCym0KfyWIAD+7F1c2G4D/wnEhG/FIE1JVDk5wQoXppDkEkW6hwNQNaf5LqL7XeqPV7bs6bzfp/LDasCJA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740535065; c=relaxed/simple; bh=ZY7HmkU3taWd8GJHphvRottHuzSs8nlG8DikgD5HV2o=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Dx3DWeltakEv6P+vjd8W3904jouI0wOgSvD0C0WmFBxV+jKHlIqK390Spdyfs8ECjNYfBAPN12P41w2GWuK5R3/YXK/GNCTGeQYADDC921bfocpE5PkxeyFCi0yvHJ6y/ftETXbEUIgp7mqmXGFVdd/SGSelABhc78j2fWy44+8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TNAK0ZNK; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="TNAK0ZNK" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0CEEAC4CEDD; Wed, 26 Feb 2025 01:57:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1740535065; bh=ZY7HmkU3taWd8GJHphvRottHuzSs8nlG8DikgD5HV2o=; h=From:To:Cc:Subject:Date:Reply-to:From; b=TNAK0ZNKDsEUFchS0dYzV5PTNZ9urLEc43oKWRF3M/Y4dUZfFMeWRn9jqI1YlBQ3w jOm9ymQMUW0xfCNVn0VVIqxbqXSxAaSCCzcHzFaoPxHyf488fFtNa9CIxT48RJbA46 vD9jTYIESa6APF6Kg/XetQwxwiZ2NdV03ZqYMH0A= From: Greg Kroah-Hartman To: linux-cve-announce@vger.kernel.org Cc: Greg Kroah-Hartman Subject: CVE-2022-49058: cifs: potential buffer overflow in handling symlinks Date: Wed, 26 Feb 2025 02:54:23 +0100 Message-ID: <2025022653-CVE-2022-49058-5df2@gregkh> X-Mailer: git-send-email 2.48.1 Precedence: bulk X-Mailing-List: linux-cve-announce@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Reply-to: , X-Developer-Signature: v=1; a=openpgp-sha256; l=3470; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=ZY7HmkU3taWd8GJHphvRottHuzSs8nlG8DikgD5HV2o=; b=owGbwMvMwCRo6H6F97bub03G02pJDOn7Sgx1b0wKXlnMv2DpZum3yXZZtlzn5vruUo+z8rR4z nJY4+W9jlgWBkEmBlkxRZYv23iO7q84pOhlaHsaZg4rE8gQBi5OAZjI9x8M81M3iJatKJrMU7y/ OUXr3/1jQqnTuxjmRzR8LY+MucqQGTX7T+ObIxc+TqvMAQA= X-Developer-Key: i=gregkh@linuxfoundation.org; a=openpgp; fpr=F4B60CC5BF78C2214A313DCB3147D40DDB2DFB29 Content-Transfer-Encoding: 8bit Description =========== In the Linux kernel, the following vulnerability has been resolved: cifs: potential buffer overflow in handling symlinks Smatch printed a warning: arch/x86/crypto/poly1305_glue.c:198 poly1305_update_arch() error: __memcpy() 'dctx->buf' too small (16 vs u32max) It's caused because Smatch marks 'link_len' as untrusted since it comes from sscanf(). Add a check to ensure that 'link_len' is not larger than the size of the 'link_str' buffer. The Linux kernel CVE team has assigned CVE-2022-49058 to this issue. Affected and fixed versions =========================== Issue introduced in 2.6.37 with commit c69c1b6eaea1b3e1eecf7ad2fba0208ac4a11131 and fixed in 4.9.311 with commit 3e582749e742e662a8e9bb37cffac62dccaaa1e2 Issue introduced in 2.6.37 with commit c69c1b6eaea1b3e1eecf7ad2fba0208ac4a11131 and fixed in 4.14.276 with commit 1316c28569a80ab3596eeab05bf5e01991e7e739 Issue introduced in 2.6.37 with commit c69c1b6eaea1b3e1eecf7ad2fba0208ac4a11131 and fixed in 4.19.239 with commit eb5f51756944735ac70cd8bb38637cc202e29c91 Issue introduced in 2.6.37 with commit c69c1b6eaea1b3e1eecf7ad2fba0208ac4a11131 and fixed in 5.4.190 with commit 22d658c6c5affed10c8907e67160cef0b6c92186 Issue introduced in 2.6.37 with commit c69c1b6eaea1b3e1eecf7ad2fba0208ac4a11131 and fixed in 5.10.112 with commit 4e166a41180be2f1e66bbb6d46448e80a9a5ec05 Issue introduced in 2.6.37 with commit c69c1b6eaea1b3e1eecf7ad2fba0208ac4a11131 and fixed in 5.15.35 with commit 9901b07ba42b39266b34a888e48d7306fd707bee Issue introduced in 2.6.37 with commit c69c1b6eaea1b3e1eecf7ad2fba0208ac4a11131 and fixed in 5.17.4 with commit 515e7ba11ef043d6febe69389949c8ef5f25e9d0 Issue introduced in 2.6.37 with commit c69c1b6eaea1b3e1eecf7ad2fba0208ac4a11131 and fixed in 5.18 with commit 64c4a37ac04eeb43c42d272f6e6c8c12bfcf4304 Please see https://www.kernel.org for a full list of currently supported kernel versions by the kernel community. Unaffected versions might change over time as fixes are backported to older supported kernel versions. The official CVE entry at https://cve.org/CVERecord/?id=CVE-2022-49058 will be updated if fixes are backported, please check that for the most up to date information about this issue. Affected files ============== The file(s) affected by this issue are: fs/cifs/link.c Mitigation ========== The Linux kernel CVE team recommends that you update to the latest stable kernel version for this, and many other bugfixes. Individual changes are never tested alone, but rather are part of a larger kernel release. Cherry-picking individual commits is not recommended or supported by the Linux kernel community at all. If however, updating to the latest release is impossible, the individual changes to resolve this issue can be found at these commits: https://git.kernel.org/stable/c/3e582749e742e662a8e9bb37cffac62dccaaa1e2 https://git.kernel.org/stable/c/1316c28569a80ab3596eeab05bf5e01991e7e739 https://git.kernel.org/stable/c/eb5f51756944735ac70cd8bb38637cc202e29c91 https://git.kernel.org/stable/c/22d658c6c5affed10c8907e67160cef0b6c92186 https://git.kernel.org/stable/c/4e166a41180be2f1e66bbb6d46448e80a9a5ec05 https://git.kernel.org/stable/c/9901b07ba42b39266b34a888e48d7306fd707bee https://git.kernel.org/stable/c/515e7ba11ef043d6febe69389949c8ef5f25e9d0 https://git.kernel.org/stable/c/64c4a37ac04eeb43c42d272f6e6c8c12bfcf4304