Re: [RFC PATCH 06/15] libfdt: Don't assume that a FDT_BEGIN_NODE tag is available at offset 0
From: Herve Codina
Date: Tue Apr 07 2026 - 04:51:38 EST
Hi Luca, David,
On Wed, 01 Apr 2026 17:11:42 +0200
"Luca Ceresoli" <luca.ceresoli@xxxxxxxxxxx> wrote:
> On Tue Feb 10, 2026 at 6:33 PM CET, Herve Codina wrote:
> > In several places, libfdt assumes that a FDT_BEGIN_NODE tag is present
> > at the offset 0 of the structure block.
> >
> > This assumption is not correct. Indeed, a FDT_NOP can be present at the
> > offset 0 and this is a legit case.
> >
> > fdt_first_node() has been introduce recently to get the offset of the
> ^
> introduced
Will be fixed in the next iteration.
...
> > int fdt_next_node(const void *fdt, int offset, int *depth)
> > {
> > - int nextoffset = 0;
> > + int nextoffset = offset;
> > uint32_t tag;
> >
> > + if (offset <= 0) {
>
> What is the difference between 0 and a engative value?
I will add a comment in the code.
0 means that we want the next node from the first node.
The negative value is an invalid value. In that case we start from the
first node. This was the behavior of the code without my modification and
I kept the same behavior in that case.
>
> This is where the parameter value is not obvious to the newcomer and I'd
> love seeing it concisely documented.
David, is functions documentation expected ?
I can add to this documentation if you want it.
Best regards,
Hervé