All of lore.kernel.org
 help / color / mirror / Atom feed
From: <gregkh@linuxfoundation.org>
To: christian.koenig@amd.com, ckoenig.leichtzumerken@gmail.com,
	dakr@kernel.org, dan.carpenter@linaro.org,
	daniel.vetter@ffwll.ch, dri-devel@lists.freedesktop.org,
	gregkh@linuxfoundation.org, matthew.brost@intel.com,
	phasta@kernel.org, robdclark@chromium.org, sashal@kernel.org,
	tvrtko.ursulin@igalia.com
Cc: <stable-commits@vger.kernel.org>
Subject: Patch "drm/sched: Fix potential double free in drm_sched_job_add_resv_dependencies" has been added to the 6.1-stable tree
Date: Mon, 27 Oct 2025 12:36:00 +0100	[thread overview]
Message-ID: <2025102700-exception-unearned-a451@gregkh> (raw)
In-Reply-To: <20251021131250.2072371-1-sashal@kernel.org>


This is a note to let you know that I've just added the patch titled

    drm/sched: Fix potential double free in drm_sched_job_add_resv_dependencies

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drm-sched-fix-potential-double-free-in-drm_sched_job_add_resv_dependencies.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


From stable+bounces-188336-greg=kroah.com@vger.kernel.org Tue Oct 21 15:13:55 2025
From: Sasha Levin <sashal@kernel.org>
Date: Tue, 21 Oct 2025 09:12:50 -0400
Subject: drm/sched: Fix potential double free in drm_sched_job_add_resv_dependencies
To: stable@vger.kernel.org
Cc: "Tvrtko Ursulin" <tvrtko.ursulin@igalia.com>, "Dan Carpenter" <dan.carpenter@linaro.org>, "Christian König" <christian.koenig@amd.com>, "Rob Clark" <robdclark@chromium.org>, "Daniel Vetter" <daniel.vetter@ffwll.ch>, "Matthew Brost" <matthew.brost@intel.com>, "Danilo Krummrich" <dakr@kernel.org>, "Philipp Stanner" <phasta@kernel.org>, "Christian König" <ckoenig.leichtzumerken@gmail.com>, dri-devel@lists.freedesktop.org, "Sasha Levin" <sashal@kernel.org>
Message-ID: <20251021131250.2072371-1-sashal@kernel.org>

From: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>

[ Upstream commit 5801e65206b065b0b2af032f7f1eef222aa2fd83 ]

When adding dependencies with drm_sched_job_add_dependency(), that
function consumes the fence reference both on success and failure, so in
the latter case the dma_fence_put() on the error path (xarray failed to
expand) is a double free.

Interestingly this bug appears to have been present ever since
commit ebd5f74255b9 ("drm/sched: Add dependency tracking"), since the code
back then looked like this:

drm_sched_job_add_implicit_dependencies():
...
       for (i = 0; i < fence_count; i++) {
               ret = drm_sched_job_add_dependency(job, fences[i]);
               if (ret)
                       break;
       }

       for (; i < fence_count; i++)
               dma_fence_put(fences[i]);

Which means for the failing 'i' the dma_fence_put was already a double
free. Possibly there were no users at that time, or the test cases were
insufficient to hit it.

The bug was then only noticed and fixed after
commit 9c2ba265352a ("drm/scheduler: use new iterator in drm_sched_job_add_implicit_dependencies v2")
landed, with its fixup of
commit 4eaf02d6076c ("drm/scheduler: fix drm_sched_job_add_implicit_dependencies").

At that point it was a slightly different flavour of a double free, which
commit 963d0b356935 ("drm/scheduler: fix drm_sched_job_add_implicit_dependencies harder")
noticed and attempted to fix.

But it only moved the double free from happening inside the
drm_sched_job_add_dependency(), when releasing the reference not yet
obtained, to the caller, when releasing the reference already released by
the former in the failure case.

As such it is not easy to identify the right target for the fixes tag so
lets keep it simple and just continue the chain.

While fixing we also improve the comment and explain the reason for taking
the reference and not dropping it.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Fixes: 963d0b356935 ("drm/scheduler: fix drm_sched_job_add_implicit_dependencies harder")
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/dri-devel/aNFbXq8OeYl3QSdm@stanley.mountain/
Cc: Christian König <christian.koenig@amd.com>
Cc: Rob Clark <robdclark@chromium.org>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Danilo Krummrich <dakr@kernel.org>
Cc: Philipp Stanner <phasta@kernel.org>
Cc: Christian König <ckoenig.leichtzumerken@gmail.com>
Cc: dri-devel@lists.freedesktop.org
Cc: stable@vger.kernel.org # v5.16+
Signed-off-by: Philipp Stanner <phasta@kernel.org>
Link: https://lore.kernel.org/r/20251015084015.6273-1-tvrtko.ursulin@igalia.com
[ applied to drm_sched_job_add_implicit_dependencies instead of drm_sched_job_add_resv_dependencies ]
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/gpu/drm/scheduler/sched_main.c |   13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

--- a/drivers/gpu/drm/scheduler/sched_main.c
+++ b/drivers/gpu/drm/scheduler/sched_main.c
@@ -719,13 +719,14 @@ int drm_sched_job_add_implicit_dependenc
 
 	dma_resv_for_each_fence(&cursor, obj->resv, dma_resv_usage_rw(write),
 				fence) {
-		/* Make sure to grab an additional ref on the added fence */
-		dma_fence_get(fence);
-		ret = drm_sched_job_add_dependency(job, fence);
-		if (ret) {
-			dma_fence_put(fence);
+		/*
+		 * As drm_sched_job_add_dependency always consumes the fence
+		 * reference (even when it fails), and dma_resv_for_each_fence
+		 * is not obtaining one, we need to grab one before calling.
+		 */
+		ret = drm_sched_job_add_dependency(job, dma_fence_get(fence));
+		if (ret)
 			return ret;
-		}
 	}
 	return 0;
 }


Patches currently in stable-queue which might be from sashal@kernel.org are

queue-6.1/pci-j721e-enable-acspcie-refclk-if-ti-syscon-acspcie-proxy-ctrl-exists.patch
queue-6.1/fuse-allocate-ff-release_args-only-if-release-is-needed.patch
queue-6.1/net-ethernet-enetc-unlock-xdp_redirect-for-xdp-non-l.patch
queue-6.1/r8169-fix-packet-truncation-after-s4-resume-on-rtl81.patch
queue-6.1/asoc-nau8821-add-dmi-quirk-to-bypass-jack-debounce-c.patch
queue-6.1/hfs-make-proper-initalization-of-struct-hfs_find_dat.patch
queue-6.1/tls-always-set-record_type-in-tls_process_cmsg.patch
queue-6.1/ixgbevf-add-support-for-intel-r-e610-device.patch
queue-6.1/alsa-firewire-amdtp-stream-fix-enum-kernel-doc-warni.patch
queue-6.1/hfsplus-return-eio-when-type-of-hidden-directory-mis.patch
queue-6.1/iio-imu-inv_icm42600-simplify-pm_runtime-setup.patch
queue-6.1/tls-don-t-rely-on-tx_work-during-send.patch
queue-6.1/asoc-nau8821-generalize-helper-to-clear-irq-status.patch
queue-6.1/f2fs-remove-the-create-argument-to-f2fs_map_blocks.patch
queue-6.1/net-ip6_tunnel-prevent-perpetual-tunnel-growth.patch
queue-6.1/xfs-fix-log-crc-mismatches-between-i386-and-other-architectures.patch
queue-6.1/nfsd-minor-cleanup-in-layoutcommit-processing.patch
queue-6.1/drm-rockchip-vop2-use-correct-destination-rectangle-.patch
queue-6.1/arm64-mm-avoid-always-making-pte-dirty-in-pte_mkwrit.patch
queue-6.1/iio-imu-inv_icm42600-avoid-configuring-if-already-pm_runtime-suspended.patch
queue-6.1/net-dlink-handle-dma_map_single-failure-properly.patch
queue-6.1/arm64-mte-do-not-flag-the-zero-page-as-pg_mte_tagged.patch
queue-6.1/fuse-fix-livelock-in-synchronous-file-put-from-fuseblk-workers.patch
queue-6.1/cpufreq-cppc-avoid-using-cpufreq_eternal-as-transition-delay.patch
queue-6.1/dlm-check-for-defined-force-value-in-dlm_lockspace_r.patch
queue-6.1/drm-exynos-exynos7_drm_decon-fix-uninitialized-crtc-reference-in-functions.patch
queue-6.1/hid-hid-input-only-ignore-0-battery-events-for-digit.patch
queue-6.1/net-tls-wait-for-async-completion-on-last-message.patch
queue-6.1/hfs-clear-offset-and-space-out-of-valid-records-in-b.patch
queue-6.1/arch_topology-fix-incorrect-error-check-in-topology_parse_cpu_capacity.patch
queue-6.1/net-enetc-correct-the-value-of-enetc_rxb_truesize.patch
queue-6.1/riscv-kprobes-fix-probe-address-validation.patch
queue-6.1/sctp-avoid-null-dereference-when-chunk-data-buffer-i.patch
queue-6.1/risc-v-don-t-print-details-of-cpus-disabled-in-dt.patch
queue-6.1/dax-skip-read-lock-assertion-for-read-only-filesyste.patch
queue-6.1/usb-gadget-f_acm-refactor-bind-path-to-use-__free.patch
queue-6.1/drm-sched-fix-potential-double-free-in-drm_sched_job_add_resv_dependencies.patch
queue-6.1/sched-balancing-rename-newidle_balance-sched_balance.patch
queue-6.1/padata-reset-next-cpu-when-reorder-sequence-wraps-around.patch
queue-6.1/io_uring-correct-__must_hold-annotation-in-io_instal.patch
queue-6.1/net-usb-lan78xx-fix-use-of-improperly-initialized-de.patch
queue-6.1/drm-exynos-exynos7_drm_decon-remove-ctx-suspended.patch
queue-6.1/crypto-rockchip-fix-dma_unmap_sg-nents-value.patch
queue-6.1/tcp-fix-tcp_tso_should_defer-vs-large-rtt.patch
queue-6.1/hfs-fix-kmsan-uninit-value-issue-in-hfs_find_set_zer.patch
queue-6.1/tls-wait-for-pending-async-decryptions-if-tls_strp_m.patch
queue-6.1/smb-server-let-smb_direct_flush_send_list-invalidate.patch
queue-6.1/hid-multitouch-fix-name-of-stylus-input-devices.patch
queue-6.1/amd-xgbe-avoid-spurious-link-down-messages-during-in.patch
queue-6.1/iio-imu-inv_icm42600-use-instead-of-memset.patch
queue-6.1/pm-runtime-add-new-devm-functions.patch
queue-6.1/devcoredump-fix-circular-locking-dependency-with-devcd-mutex.patch
queue-6.1/pci-j721e-fix-programming-sequence-of-strap-settings.patch
queue-6.1/drm-rcar-du-dsi-fix-1-2-3-lane-support.patch
queue-6.1/sched-fair-fix-pelt-lost-idle-time-detection.patch
queue-6.1/ixgbevf-fix-mailbox-api-compatibility-by-negotiating-supported-features.patch
queue-6.1/can-m_can-m_can_plat_remove-add-missing-pm_runtime_d.patch
queue-6.1/drm-amd-powerplay-fix-cik-shutdown-temperature.patch
queue-6.1/usb-gadget-f_rndis-refactor-bind-path-to-use-__free.patch
queue-6.1/powerpc-32-remove-page_kernel_text-to-fix-startup-fa.patch
queue-6.1/tg3-prevent-use-of-uninitialized-remote_adv-and-loca.patch
queue-6.1/nfsd-rework-encoding-and-decoding-of-nfsd4_deviceid.patch
queue-6.1/drm-exynos-exynos7_drm_decon-properly-clear-channels-during-bind.patch
queue-6.1/xfs-always-warn-about-deprecated-mount-options.patch
queue-6.1/hfsplus-fix-kmsan-uninit-value-issue-in-hfsplus_dele.patch
queue-6.1/usb-gadget-introduce-free_usb_request-helper.patch
queue-6.1/nfsd-fix-last-write-offset-handling-in-layoutcommit.patch
queue-6.1/dpaa2-eth-fix-the-pointer-passed-to-ptr_align-on-tx-.patch
queue-6.1/lkdtm-fortify-fix-potential-null-dereference-on-kmal.patch
queue-6.1/nfsd-define-a-proc_layoutcommit-for-the-flexfiles-layout-type.patch
queue-6.1/exec-fix-incorrect-type-for-ret.patch
queue-6.1/tls-wait-for-async-encrypt-in-case-of-error-during-l.patch
queue-6.1/f2fs-fix-wrong-block-mapping-for-multi-devices.patch
queue-6.1/usb-gadget-f_ecm-refactor-bind-path-to-use-__free.patch
queue-6.1/alsa-usb-audio-fix-null-pointer-deference-in-try_to_.patch
queue-6.1/ixgbevf-fix-getting-link-speed-data-for-e610-devices.patch
queue-6.1/pci-tegra194-reset-bars-when-running-in-pcie-endpoint-mode.patch
queue-6.1/asoc-nau8821-cancel-jdet_work-before-handling-jack-e.patch
queue-6.1/vfs-don-t-leak-disconnected-dentries-on-umount.patch
queue-6.1/hfsplus-fix-kmsan-uninit-value-issue-in-__hfsplus_ex.patch
queue-6.1/usb-gadget-f_ncm-refactor-bind-path-to-use-__free.patch
queue-6.1/pci-add-pci_vdevice_sub-helper-macro.patch
queue-6.1/net-fec-add-initial-xdp-support.patch
queue-6.1/m68k-bitops-fix-find_-_bit-signatures.patch
queue-6.1/net-usb-lan78xx-add-error-handling-to-lan78xx_init_m.patch
queue-6.1/doc-fix-seg6_flowlabel-path.patch
queue-6.1/f2fs-add-a-f2fs_get_block_locked-helper.patch
queue-6.1/nios2-ensure-that-memblock.current_limit-is-set-when.patch
queue-6.1/xfs-rename-the-old_crc-variable-in-xlog_recover_process.patch
queue-6.1/phy-cadence-cdns-dphy-fix-pll-lock-and-o_cmn_ready-polling.patch
queue-6.1/ksmbd-browse-interfaces-list-on-fsctl_query_interface_info-ioctl.patch
queue-6.1/phy-cadence-cdns-dphy-update-calibration-wait-time-for-startup-state-machine.patch
queue-6.1/f2fs-factor-a-f2fs_map_blocks_cached-helper.patch
queue-6.1/risc-v-define-pgprot_dmacoherent-for-non-coherent-de.patch
queue-6.1/hfs-validate-record-offset-in-hfsplus_bmap_alloc.patch
queue-6.1/net-mlx5e-return-1-instead-of-0-in-invalid-case-in-m.patch
queue-6.1/rtnetlink-allow-deleting-fdb-entries-in-user-namespa.patch
queue-6.1/net-enetc-fix-the-deadlock-of-enetc_mdio_lock.patch
queue-6.1/phy-cdns-dphy-store-hs_clk_rate-and-return-it.patch
queue-6.1/ext4-avoid-potential-buffer-over-read-in-parse_apply_sb_mount_options.patch
queue-6.1/usb-gadget-store-endpoint-pointer-in-usb_request.patch
queue-6.1/drm-bridge-lt9211-drop-check-for-last-nibble-of-vers.patch
queue-6.1/net-tree-wide-replace-xdp_do_flush_map-with-xdp_do_f.patch

  reply	other threads:[~2025-10-27 11:36 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-20  8:14 FAILED: patch "[PATCH] drm/sched: Fix potential double free in" failed to apply to 6.1-stable tree gregkh
2025-10-21 13:12 ` [PATCH 6.1.y] drm/sched: Fix potential double free in drm_sched_job_add_resv_dependencies Sasha Levin
2025-10-27 11:36   ` gregkh [this message]
2025-10-27 12:05     ` Patch "drm/sched: Fix potential double free in drm_sched_job_add_resv_dependencies" has been added to the 6.1-stable tree Philipp Stanner
2025-10-28 17:47       ` Sasha Levin

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=2025102700-exception-unearned-a451@gregkh \
    --to=gregkh@linuxfoundation.org \
    --cc=christian.koenig@amd.com \
    --cc=ckoenig.leichtzumerken@gmail.com \
    --cc=dakr@kernel.org \
    --cc=dan.carpenter@linaro.org \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=matthew.brost@intel.com \
    --cc=phasta@kernel.org \
    --cc=robdclark@chromium.org \
    --cc=sashal@kernel.org \
    --cc=stable-commits@vger.kernel.org \
    --cc=tvrtko.ursulin@igalia.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.