mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Timur Tabi <ttabi@nvidia.com>
To: "dawei.feng@seu.edu.cn" <dawei.feng@seu.edu.cn>
Cc: "jianhao.xu@seu.edu.cn" <jianhao.xu@seu.edu.cn>,
	"zilin@seu.edu.cn" <zilin@seu.edu.cn>,
	"namcao@linutronix.de" <namcao@linutronix.de>,
	"lyude@redhat.com" <lyude@redhat.com>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>,
	"simona@ffwll.ch" <simona@ffwll.ch>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"nouveau@lists.freedesktop.org" <nouveau@lists.freedesktop.org>,
	"dakr@kernel.org" <dakr@kernel.org>,
	"maarten.lankhorst@linux.intel.com"
	<maarten.lankhorst@linux.intel.com>,
	"stable@vger.kernel.org" <stable@vger.kernel.org>,
	"mripard@kernel.org" <mripard@kernel.org>
Subject: Re: [PATCH] nouveau/firmware: fix memory leak on BL load failure
Date: Mon, 8 Jun 2026 17:53:14 +0000	[thread overview]
Message-ID: <0045b3583272df0b82f146fd96dee13d03377b4a.camel@nvidia.com> (raw)
In-Reply-To: <20260608135218.3413471-1-dawei.feng@seu.edu.cn>

On Mon, 2026-06-08 at 21:52 +0800, Dawei Feng wrote:
> Hi Timur,
> 
> On Fri, Jun 05, 2026 at 06:22:41PM +0000, Timur Tabi wrote:
> > I think it would be cleaner to instead delete this
> > nvkm_firmware_put(blob) call here, and just rely on the call to
> > nvkm_firmware_put() at the end of nvkm_falcon_fw_ctor_hs(). Then you
> > won't need "blob = NULL".
> 
> Thanks for your review.
> 
> I don't think we can drop the nvkm_firmware_put(blob) here. At this
> point, blob still points to the image firmware loaded at the beginning of
> nvkm_falcon_fw_ctor_hs(). The later nvkm_firmware_load_name(..., &blob)
> call overwrites blob with the bootloader firmware pointer on success.
> 
> If we only rely on the final nvkm_firmware_put(blob), the success path
> would release the bootloader firmware, but the original image firmware
> pointer would be lost and leaked.

Ah yes, you're right.  

So now I think a better fix might be to have two different `blob` variables, so that there is no
longer any confusion.  Because right now, the nvkm_firmware_put() call at the end of the function
releases a different `blob` depending on whether `bl` is NULL or not.

What do you think about this:

	nvkm_firmware_put(blob);
	if (bl) {
		const struct firmware *blob_bl;

		ret = nvkm_firmware_load_name(subdev, bl, "", ver, &blob_bl);
		if (ret)
			goto done;
		...
		nvkm_firmware_put(blob_bl);
		if (!fw->boot)
			ret = -ENOMEM;
	} else {
		fw->boot_addr = fw->nmem_base;
	}

done:
	if (ret)
		nvkm_falcon_fw_dtor(fw);

	return ret;

This way, there is no confusion between the two blobs, and the bootloader blob exists only inside
the if-block that needs it.


  reply	other threads:[~2026-06-08 17:53 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-05  2:07 Dawei Feng
2026-06-05 18:22 ` Timur Tabi
2026-06-08 13:52   ` Dawei Feng
2026-06-08 17:53     ` Timur Tabi [this message]
2026-06-09  8:57       ` Dawei Feng
2026-06-09 15:00         ` Timur Tabi

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=0045b3583272df0b82f146fd96dee13d03377b4a.camel@nvidia.com \
    --to=ttabi@nvidia.com \
    --cc=dakr@kernel.org \
    --cc=dawei.feng@seu.edu.cn \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jianhao.xu@seu.edu.cn \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lyude@redhat.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=namcao@linutronix.de \
    --cc=nouveau@lists.freedesktop.org \
    --cc=simona@ffwll.ch \
    --cc=stable@vger.kernel.org \
    --cc=zilin@seu.edu.cn \
    /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

all inboxes | Powered by JetHome®