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 B2DA410A1F for ; Wed, 26 Feb 2025 02:27:25 +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=1740536845; cv=none; b=YwFWHL5y88+pjIaFroI6CjxZbwdzLVf1yeroWj+a3k9ac2lrLRtRVtIj/u1iQxOHRJLA0WSAtx65k6nTGJu0CnCgMdIuVcDbIlfgo56BSeotJPiGxDaT5wf+7xFDO17PYdVwej6C/+4oVy2yIw/t+9mJTfrejOWyRCTxLMdwgXA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740536845; c=relaxed/simple; bh=gVHO9yZVOGe8TJT56IGsZXe0yiqBuYQOjYRidwPT7/Y=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=YalkFVPvtcJ/GFKses5wLsWDIGHvOhN0J/5H+Ij4+iLR4geGuZ/PhR5HKkcE8+M76nzcCb4DmsVAAlmCoMRbKj2q6paZqtZbe5Kpoc0a41oqxYU+WU1QpNpObaD4Nr8zE/NVsoW8YJZpEUmrZuMDKZidqiP2/1BstjZzzMvjzqQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xgr3H9KZ; 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="xgr3H9KZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7AA3EC4CEDD; Wed, 26 Feb 2025 02:27:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1740536845; bh=gVHO9yZVOGe8TJT56IGsZXe0yiqBuYQOjYRidwPT7/Y=; h=From:To:Cc:Subject:Date:Reply-to:From; b=xgr3H9KZd0rG1e0E0n8tSbpp7V9jcMYun0hQTev+i4aX8nu66cGns+THwnptlEDaZ b+wBscYbMgFeGYkrGvzOvEVwJ76RuWJupE4Ruu06YzFTFveYrHh0xFkQl4ooNGUwjK bl6dmyKzUeMZ3YjzrTOt+w34GP6ljuxJYytjcANU= From: Greg Kroah-Hartman To: linux-cve-announce@vger.kernel.org Cc: Greg Kroah-Hartman Subject: CVE-2022-49685: iio: trigger: sysfs: fix use-after-free on remove Date: Wed, 26 Feb 2025 03:24:08 +0100 Message-ID: <2025022626-CVE-2022-49685-3634@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=3990; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=gVHO9yZVOGe8TJT56IGsZXe0yiqBuYQOjYRidwPT7/Y=; b=owGbwMvMwCRo6H6F97bub03G02pJDOn7qh7tT7p04naYIs8MDZWqgBvJOb9qOCau3nTneb/ix vM8nf/UOmJZGASZGGTFFFm+bOM5ur/ikKKXoe1pmDmsTCBDGLg4BWAitqcZ5qnFdum+OV0zy5Zn 1upmZcfiUGnZOQwLtl+5OVvgoWD/hKcupedzPH56a3psBAA= 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: iio: trigger: sysfs: fix use-after-free on remove Ensure that the irq_work has completed before the trigger is freed. ================================================================== BUG: KASAN: use-after-free in irq_work_run_list Read of size 8 at addr 0000000064702248 by task python3/25 Call Trace: irq_work_run_list irq_work_tick update_process_times tick_sched_handle tick_sched_timer __hrtimer_run_queues hrtimer_interrupt Allocated by task 25: kmem_cache_alloc_trace iio_sysfs_trig_add dev_attr_store sysfs_kf_write kernfs_fop_write_iter new_sync_write vfs_write ksys_write sys_write Freed by task 25: kfree iio_sysfs_trig_remove dev_attr_store sysfs_kf_write kernfs_fop_write_iter new_sync_write vfs_write ksys_write sys_write ================================================================== The Linux kernel CVE team has assigned CVE-2022-49685 to this issue. Affected and fixed versions =========================== Issue introduced in 3.7 with commit f38bc926d022ebd67baad6ac7fc22c95fbc6238c and fixed in 4.9.321 with commit d6111e7bdb8ec27eb43d01c4cd4ff1620a75f7f2 Issue introduced in 3.7 with commit f38bc926d022ebd67baad6ac7fc22c95fbc6238c and fixed in 4.14.286 with commit fd5d8fb298a2866c337da635c79d63c3afabcaf7 Issue introduced in 3.7 with commit f38bc926d022ebd67baad6ac7fc22c95fbc6238c and fixed in 4.19.250 with commit 31ff3309b47d98313c61b8301bf595820cc3cc33 Issue introduced in 3.7 with commit f38bc926d022ebd67baad6ac7fc22c95fbc6238c and fixed in 5.4.202 with commit 5e39397d60dacc7f5d81d442c1c958eaaaf31128 Issue introduced in 3.7 with commit f38bc926d022ebd67baad6ac7fc22c95fbc6238c and fixed in 5.10.127 with commit b07a30a774b3c3e584a68dc91779c68ea2da4813 Issue introduced in 3.7 with commit f38bc926d022ebd67baad6ac7fc22c95fbc6238c and fixed in 5.15.51 with commit 4687c3f955240ca2a576bdc3f742d4d915b6272d Issue introduced in 3.7 with commit f38bc926d022ebd67baad6ac7fc22c95fbc6238c and fixed in 5.18.8 with commit 4ef1e521be610b720daeb7cf899fedc7db0274c4 Issue introduced in 3.7 with commit f38bc926d022ebd67baad6ac7fc22c95fbc6238c and fixed in 5.19 with commit 78601726d4a59a291acc5a52da1d3a0a6831e4e8 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-49685 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: drivers/iio/trigger/iio-trig-sysfs.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/d6111e7bdb8ec27eb43d01c4cd4ff1620a75f7f2 https://git.kernel.org/stable/c/fd5d8fb298a2866c337da635c79d63c3afabcaf7 https://git.kernel.org/stable/c/31ff3309b47d98313c61b8301bf595820cc3cc33 https://git.kernel.org/stable/c/5e39397d60dacc7f5d81d442c1c958eaaaf31128 https://git.kernel.org/stable/c/b07a30a774b3c3e584a68dc91779c68ea2da4813 https://git.kernel.org/stable/c/4687c3f955240ca2a576bdc3f742d4d915b6272d https://git.kernel.org/stable/c/4ef1e521be610b720daeb7cf899fedc7db0274c4 https://git.kernel.org/stable/c/78601726d4a59a291acc5a52da1d3a0a6831e4e8