From: David Gibson <david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org>
To: Andre Przywara <andre.przywara-5wv7dgnIgG8@public.gmane.org>
Cc: devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Simon Glass <sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
Subject: Re: [PATCH v3 3/5] dtc: Wrap phandle validity check
Date: Mon, 21 Jun 2021 15:28:50 +1000 [thread overview]
Message-ID: <YNAjkgx9WmBoiCiX@yekko> (raw)
In-Reply-To: <20210618172030.9684-4-andre.przywara-5wv7dgnIgG8@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 3861 bytes --]
On Fri, Jun 18, 2021 at 06:20:28PM +0100, Andre Przywara wrote:
> In several places we check for a returned phandle value to be valid,
> for that it must not be 0 or "-1".
>
> Wrap this check in a static inline function in dtc.h, and use ~0U instead
> of -1 on the way, to keep everything in the unsigned realm.
>
> Signed-off-by: Andre Przywara <andre.przywara-5wv7dgnIgG8@public.gmane.org>
Applied, thanks.
> ---
> checks.c | 10 +++++-----
> dtc.h | 5 +++++
> livetree.c | 4 ++--
> 3 files changed, 12 insertions(+), 7 deletions(-)
>
> diff --git a/checks.c b/checks.c
> index e6c7c3e..cb71c73 100644
> --- a/checks.c
> +++ b/checks.c
> @@ -520,7 +520,7 @@ static cell_t check_phandle_prop(struct check *c, struct dt_info *dti,
>
> phandle = propval_cell(prop);
>
> - if ((phandle == 0) || (phandle == -1)) {
> + if (!phandle_is_valid(phandle)) {
> FAIL_PROP(c, dti, node, prop, "bad value (0x%x) in %s property",
> phandle, prop->name);
> return 0;
> @@ -1400,14 +1400,14 @@ static void check_property_phandle_args(struct check *c,
> for (cell = 0; cell < prop->val.len / sizeof(cell_t); cell += cellsize + 1) {
> struct node *provider_node;
> struct property *cellprop;
> - int phandle;
> + cell_t phandle;
>
> phandle = propval_cell_n(prop, cell);
> /*
> * Some bindings use a cell value 0 or -1 to skip over optional
> * entries when each index position has a specific definition.
> */
> - if (phandle == 0 || phandle == -1) {
> + if (!phandle_is_valid(phandle)) {
> /* Give up if this is an overlay with external references */
> if (dti->dtsflags & DTSF_PLUGIN)
> break;
> @@ -1615,7 +1615,7 @@ static void check_interrupts_property(struct check *c,
> prop = get_property(parent, "interrupt-parent");
> if (prop) {
> phandle = propval_cell(prop);
> - if ((phandle == 0) || (phandle == -1)) {
> + if (!phandle_is_valid(phandle)) {
> /* Give up if this is an overlay with
> * external references */
> if (dti->dtsflags & DTSF_PLUGIN)
> @@ -1772,7 +1772,7 @@ static struct node *get_remote_endpoint(struct check *c, struct dt_info *dti,
>
> phandle = propval_cell(prop);
> /* Give up if this is an overlay with external references */
> - if (phandle == 0 || phandle == -1)
> + if (!phandle_is_valid(phandle))
> return NULL;
>
> node = get_node_by_phandle(dti->dt, phandle);
> diff --git a/dtc.h b/dtc.h
> index 47664f2..cf2c6ac 100644
> --- a/dtc.h
> +++ b/dtc.h
> @@ -51,6 +51,11 @@ extern int annotate; /* annotate .dts with input source location */
>
> typedef uint32_t cell_t;
>
> +static inline bool phandle_is_valid(cell_t phandle)
> +{
> + return phandle != 0 && phandle != ~0U;
> +}
> +
> static inline uint16_t dtb_ld16(const void *p)
> {
> const uint8_t *bp = (const uint8_t *)p;
> diff --git a/livetree.c b/livetree.c
> index dfbae65..cc61237 100644
> --- a/livetree.c
> +++ b/livetree.c
> @@ -559,7 +559,7 @@ struct node *get_node_by_phandle(struct node *tree, cell_t phandle)
> {
> struct node *child, *node;
>
> - if ((phandle == 0) || (phandle == -1)) {
> + if (!phandle_is_valid(phandle)) {
> assert(generate_fixups);
> return NULL;
> }
> @@ -594,7 +594,7 @@ cell_t get_node_phandle(struct node *root, struct node *node)
> static cell_t phandle = 1; /* FIXME: ick, static local */
> struct data d = empty_data;
>
> - if ((node->phandle != 0) && (node->phandle != -1))
> + if (phandle_is_valid(node->phandle))
> return node->phandle;
>
> while (get_node_by_phandle(root, phandle))
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2021-06-21 5:28 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-18 17:20 [PATCH v3 0/5] dtc: Fix signed/unsigned comparison warnings Andre Przywara
[not found] ` <20210618172030.9684-1-andre.przywara-5wv7dgnIgG8@public.gmane.org>
2021-06-18 17:20 ` [PATCH v3 1/5] tests: Fix signedness comparisons warnings Andre Przywara
[not found] ` <20210618172030.9684-2-andre.przywara-5wv7dgnIgG8@public.gmane.org>
2021-06-21 5:26 ` David Gibson
2021-06-18 17:20 ` [PATCH v3 2/5] fdtget: " Andre Przywara
[not found] ` <20210618172030.9684-3-andre.przywara-5wv7dgnIgG8@public.gmane.org>
2021-06-21 5:27 ` David Gibson
2021-06-18 17:20 ` [PATCH v3 3/5] dtc: Wrap phandle validity check Andre Przywara
[not found] ` <20210618172030.9684-4-andre.przywara-5wv7dgnIgG8@public.gmane.org>
2021-06-21 5:28 ` David Gibson [this message]
2021-06-18 17:20 ` [PATCH v3 4/5] checks: Fix signedness comparisons warnings Andre Przywara
[not found] ` <20210618172030.9684-5-andre.przywara-5wv7dgnIgG8@public.gmane.org>
2021-06-21 5:34 ` David Gibson
2021-06-18 17:20 ` [PATCH v3 5/5] Makefile: add -Wsign-compare to warning options Andre Przywara
[not found] ` <20210618172030.9684-6-andre.przywara-5wv7dgnIgG8@public.gmane.org>
2021-06-21 5:35 ` David Gibson
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=YNAjkgx9WmBoiCiX@yekko \
--to=david-xt8fgy+axnrb3ne2bgzf6laj5h9x9tb+@public.gmane.org \
--cc=andre.przywara-5wv7dgnIgG8@public.gmane.org \
--cc=devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
/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;
as well as URLs for NNTP newsgroup(s).