From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Cc: "Sakari Ailus" <sakari.ailus@linux.intel.com>,
"Cosmin Tanislav" <demonsingur@gmail.com>,
"Mauro Carvalho Chehab" <mchehab@kernel.org>,
"Hans Verkuil" <hverkuil@xs4all.nl>,
"Paweł Anikiel" <panikiel@google.com>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] media: v4l: subdev: Prevent NULL routes access
Date: Mon, 25 Nov 2024 14:07:25 +0200 [thread overview]
Message-ID: <20241125120725.GI19573@pendragon.ideasonboard.com> (raw)
In-Reply-To: <0ff25743-30c6-4c26-955f-c4c26578ebb6@ideasonboard.com>
On Mon, Nov 25, 2024 at 01:33:15PM +0200, Tomi Valkeinen wrote:
> On 25/11/2024 10:39, Sakari Ailus wrote:
> > On Fri, Nov 22, 2024 at 04:37:12PM +0200, Cosmin Tanislav wrote:
> >> When using v4l2_subdev_set_routing to set a subdev's routing, and the
> >> passed routing.num_routes is 0, kmemdup is not called to populate the
> >> routes of the new routing (which is fine, since we wouldn't want to pass
> >> a possible NULL value to kmemdup).
> >>
> >> This results in subdev's routing.routes to be NULL.
> >>
> >> routing.routes is further used in some places without being guarded by
> >> the same num_routes non-zero condition.
> >>
> >> Fix it.
> >
> > While I think moving the code to copy the routing table seems reasonable,
> > is there a need to make num_routes == 0 a special case? No memcpy()
> > implementation should access destination or source if the size is 0.
>
> I think so too, but Cosmin convinced me that the spec says otherwise.
>
> From the C spec I have, in "7.21.1 String function conventions":
>
> "
> Where an argument declared as size_t n specifies the length of the array for a
> function, n can have the value zero on a call to that function. Unless explicitly stated
> otherwise in the description of a particular function in this subclause, pointer arguments
> on such a call shall still have valid values, as described in 7.1.4.
> "
>
> The memcpy section has no explicit mention that would hint otherwise.
>
> In 7.1.4 Use of library functions it says that unless explicitly stated
> otherwise, a null pointer is an invalid value.
>
> That said, I would still consider memcpy() with size 0 always ok,
> regardless of the src or dst, as the only memcpy implementation we need
> to care about is the kernel's.
I was going to mention that too. The kernel C library API is modeled
on the standard C library API, but it takes quite a few liberties.
What I think is important in the context of this patch is to ensure
consistency in how we model our invariants. I'm less concerned about
relying on memcpy() being a no-op that doesn't dereference pointers when
the size is 0 (provided the caller doesn't otherwise trigger C undefined
behaviours) than about the consistency in how we model routing tables
with no entry. I'd like to make sure that num_routes == 0 always implies
routes == NULL and vice versa (which may already be the case, I haven't
checked).
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2024-11-25 12:07 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-22 14:37 [PATCH] media: v4l: subdev: Prevent NULL routes access Cosmin Tanislav
2024-11-24 6:49 ` Laurent Pinchart
2024-11-25 18:28 ` Cosmin Tanislav
2024-11-25 8:39 ` Sakari Ailus
2024-11-25 11:33 ` Tomi Valkeinen
2024-11-25 12:07 ` Laurent Pinchart [this message]
2024-11-25 18:42 ` Cosmin Tanislav
2024-12-13 8:49 ` Sakari Ailus
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=20241125120725.GI19573@pendragon.ideasonboard.com \
--to=laurent.pinchart@ideasonboard.com \
--cc=demonsingur@gmail.com \
--cc=hverkuil@xs4all.nl \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=panikiel@google.com \
--cc=sakari.ailus@linux.intel.com \
--cc=tomi.valkeinen@ideasonboard.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