* [PATCH dtc take 2] Fix reserve map output for asm format. @ 2007-04-15 2:29 Jerry Van Baren 2007-04-15 19:59 ` Milton Miller 0 siblings, 1 reply; 9+ messages in thread From: Jerry Van Baren @ 2007-04-15 2:29 UTC (permalink / raw) To: linuxppc-dev, jdl Add extra reserve map slots output for asm format (previously done for dtb output). Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> --- Hi Jon, David, Here is a patch that fixes the asm output without the (unnecessary) calloc change. Best regards, gvb flattree.c | 14 +++++++++++--- 1 files changed, 11 insertions(+), 3 deletions(-) diff --git a/flattree.c b/flattree.c index 151d16e..6f0c9b7 100644 --- a/flattree.c +++ b/flattree.c @@ -21,6 +21,9 @@ #include "dtc.h" #include "flat_dt.h" +#define WARNMSG(...) if (quiet < 1) fprintf(stderr, "Warning: " __VA_ARGS__) + + #define FTF_FULLPATH 0x1 #define FTF_VARALIGN 0x2 #define FTF_NAMEPROPS 0x4 @@ -490,6 +493,9 @@ void dt_to_asm(FILE *f, struct boot_info *bi, int version, int boot_cpuid_phys) (unsigned int)(re->re.size >> 32), (unsigned int)(re->re.size & 0xffffffff)); } + for (i = 0; i < reservenum; i++) { + fprintf(f, "\t.long\t0, 0\n\t.long\t0, 0\n"); + } fprintf(f, "\t.long\t0, 0\n\t.long\t0, 0\n"); @@ -818,9 +824,11 @@ struct boot_info *dt_from_blob(FILE *f) p = blob + sizeof(magic) + sizeof(totalsize); while (sizeleft) { - if (feof(f)) - die("EOF before reading %d bytes of DT blob\n", - totalsize); + if (feof(f)) { + WARNMSG("EOF after reading %d of %d bytes of DT blob, assuming there is extra space in the blob.\n", + totalsize - sizeleft, totalsize); + break; + } rc = fread(p, 1, sizeleft, f); if (ferror(f)) -- 1.4.4.4 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH dtc take 2] Fix reserve map output for asm format. 2007-04-15 2:29 [PATCH dtc take 2] Fix reserve map output for asm format Jerry Van Baren @ 2007-04-15 19:59 ` Milton Miller 2007-04-16 0:24 ` Jerry Van Baren 0 siblings, 1 reply; 9+ messages in thread From: Milton Miller @ 2007-04-15 19:59 UTC (permalink / raw) To: Jerry Van Baren, Jon Loeliger; +Cc: linuxppc-dev, David Gibson Sometime around Sun Apr 15 12:29:14 EST 2007, Jerry Van Baren wrote: > Add extra reserve map slots output for asm format (previously done for > dtb > output). > > Signed-off-by: Gerald Van Baren <vanbaren at cideas.com> > --- > > Hi Jon, David, > > Here is a patch that fixes the asm output without the (unnecessary) > calloc change. > > Best regards, > gvb The previous description had > Use cmalloc to pre-zero memory (for dtb input) and handle dtb (binary) > input being shorter than the total blob length (result of putting > extra space in the blob). Which at least said in the description the unrelated things it was doing. > while (sizeleft) { > - if (feof(f)) > - die("EOF before reading %d bytes of DT blob\n", > - totalsize); > + if (feof(f)) { > + WARNMSG("EOF after reading %d of %d bytes of > DT blob, assuming there is extra space in the blob.\n", > + totalsize - sizeleft, totalsize); > + break; > + } I thnk the above should be an ERROR and cause failure without the -f (force) option. The total_size says how much data should be copied. Anything less and there is data missing. Assuming zeros is wrong for most sections (the exception being the memory reserve list that had a terminating 0 entry within the read portion). milton ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH dtc take 2] Fix reserve map output for asm format. 2007-04-15 19:59 ` Milton Miller @ 2007-04-16 0:24 ` Jerry Van Baren 2007-04-16 0:51 ` David Gibson 0 siblings, 1 reply; 9+ messages in thread From: Jerry Van Baren @ 2007-04-16 0:24 UTC (permalink / raw) To: Milton Miller; +Cc: linuxppc-dev, Jon Loeliger Milton Miller wrote: > Sometime around Sun Apr 15 12:29:14 EST 2007, Jerry Van Baren wrote: >> Add extra reserve map slots output for asm format (previously done for >> dtb >> output). >> >> Signed-off-by: Gerald Van Baren <vanbaren at cideas.com> >> --- >> >> Hi Jon, David, >> >> Here is a patch that fixes the asm output without the (unnecessary) >> calloc change. >> >> Best regards, >> gvb > > > The previous description had >> Use cmalloc to pre-zero memory (for dtb input) and handle dtb (binary) >> input being shorter than the total blob length (result of putting >> extra space in the blob). > > > Which at least said in the description the unrelated things it was > doing. That was my added comment WRT the change from malloc to cmalloc. David wasn't wild about using cmalloc, so I removed it. Using cmalloc is not necessary. >> while (sizeleft) { >> - if (feof(f)) >> - die("EOF before reading %d bytes of DT blob\n", >> - totalsize); >> + if (feof(f)) { >> + WARNMSG("EOF after reading %d of %d bytes of >> DT blob, assuming there is extra space in the blob.\n", >> + totalsize - sizeleft, totalsize); >> + break; >> + } > > I thnk the above should be an ERROR and cause failure without > the -f (force) option. > > The total_size says how much data should be copied. Anything > less and there is data missing. Assuming zeros is wrong for > most sections (the exception being the memory reserve list > that had a terminating 0 entry within the read portion). > > milton The reason total_size is bigger than the actual size is because I created the blob with extra space using the -S parameter. It is intentionally bigger. The extra space is ignored by dtc when creating a dts/asm format output which is why cmalloc() is unnecessary. I suppose we could require a -f force but I'm not wild about creating a nanny program. There is nothing wrong with the blob - it parses just fine. If there were problems with the blob contents, other errors would be raised. Best regards, gvb ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH dtc take 2] Fix reserve map output for asm format. 2007-04-16 0:24 ` Jerry Van Baren @ 2007-04-16 0:51 ` David Gibson 2007-04-16 1:20 ` Jerry Van Baren 2007-04-16 3:49 ` Milton Miller 0 siblings, 2 replies; 9+ messages in thread From: David Gibson @ 2007-04-16 0:51 UTC (permalink / raw) To: Jerry Van Baren; +Cc: linuxppc-dev, Jon Loeliger, Milton Miller On Sun, Apr 15, 2007 at 08:24:06PM -0400, Jerry Van Baren wrote: > Milton Miller wrote: > > Sometime around Sun Apr 15 12:29:14 EST 2007, Jerry Van Baren wrote: > >> Add extra reserve map slots output for asm format (previously done for > >> dtb > >> output). > >> > >> Signed-off-by: Gerald Van Baren <vanbaren at cideas.com> > >> --- > >> > >> Hi Jon, David, > >> > >> Here is a patch that fixes the asm output without the (unnecessary) > >> calloc change. > >> > >> Best regards, > >> gvb > > > > > > The previous description had > >> Use cmalloc to pre-zero memory (for dtb input) and handle dtb (binary) > >> input being shorter than the total blob length (result of putting > >> extra space in the blob). > > > > > > Which at least said in the description the unrelated things it was > > doing. > > That was my added comment WRT the change from malloc to cmalloc. David > wasn't wild about using cmalloc, so I removed it. Using cmalloc is not > necessary. > > >> while (sizeleft) { > >> - if (feof(f)) > >> - die("EOF before reading %d bytes of DT blob\n", > >> - totalsize); > >> + if (feof(f)) { > >> + WARNMSG("EOF after reading %d of %d bytes of > >> DT blob, assuming there is extra space in the blob.\n", > >> + totalsize - sizeleft, totalsize); > >> + break; > >> + } > > > > I thnk the above should be an ERROR and cause failure without > > the -f (force) option. > > > > The total_size says how much data should be copied. Anything > > less and there is data missing. Assuming zeros is wrong for > > most sections (the exception being the memory reserve list > > that had a terminating 0 entry within the read portion). > > > > milton > > The reason total_size is bigger than the actual size is because I > created the blob with extra space using the -S parameter. It is > intentionally bigger. The extra space is ignored by dtc when creating a > dts/asm format output which is why cmalloc() is unnecessary. > > I suppose we could require a -f force but I'm not wild about creating a > nanny program. There is nothing wrong with the blob - it parses just > fine. If there were problems with the blob contents, other errors would > be raised. I think the warning is fine, but not for exactly the reasons you state. Several points: - At least with v17 input, where it's possible, we probably *should* check that an input blob isn't truncated in the middle of the strings or structure sections. That should be more than a warning. - Milton, saying totalsize indicates the amount of data to be copied is misleading in this context. That's a good philosphy for things that just read and/or slightly tweak the tree - data outside the known sections which it can't interpret should be left unaltered wherever possible. dtc, however, *always* fully interprets and re-emits the tree. Any data outside the known and understood sections is *always* discarded, so I don't think there's any problem assuming it to be zero. - That said, I think when using -S, at least the default behaviour should emit extra zero bytes in addition to changing the totalsize header. Then at least in the simplest case of feeding dtc's dtb output back into dtc, the warning will not occur. -- 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 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH dtc take 2] Fix reserve map output for asm format. 2007-04-16 0:51 ` David Gibson @ 2007-04-16 1:20 ` Jerry Van Baren 2007-04-16 3:49 ` Milton Miller 1 sibling, 0 replies; 9+ messages in thread From: Jerry Van Baren @ 2007-04-16 1:20 UTC (permalink / raw) To: Milton Miller, linuxppc-dev, Jon Loeliger David Gibson wrote: > On Sun, Apr 15, 2007 at 08:24:06PM -0400, Jerry Van Baren wrote: >> Milton Miller wrote: >>> Sometime around Sun Apr 15 12:29:14 EST 2007, Jerry Van Baren wrote: >>>> Add extra reserve map slots output for asm format (previously done for >>>> dtb >>>> output). >>>> >>>> Signed-off-by: Gerald Van Baren <vanbaren at cideas.com> >>>> --- >>>> >>>> Hi Jon, David, >>>> >>>> Here is a patch that fixes the asm output without the (unnecessary) >>>> calloc change. >>>> >>>> Best regards, >>>> gvb >>> >>> The previous description had >>>> Use cmalloc to pre-zero memory (for dtb input) and handle dtb (binary) >>>> input being shorter than the total blob length (result of putting >>>> extra space in the blob). >>> >>> Which at least said in the description the unrelated things it was >>> doing. >> That was my added comment WRT the change from malloc to cmalloc. David >> wasn't wild about using cmalloc, so I removed it. Using cmalloc is not >> necessary. >> >>>> while (sizeleft) { >>>> - if (feof(f)) >>>> - die("EOF before reading %d bytes of DT blob\n", >>>> - totalsize); >>>> + if (feof(f)) { >>>> + WARNMSG("EOF after reading %d of %d bytes of >>>> DT blob, assuming there is extra space in the blob.\n", >>>> + totalsize - sizeleft, totalsize); >>>> + break; >>>> + } >>> I thnk the above should be an ERROR and cause failure without >>> the -f (force) option. >>> >>> The total_size says how much data should be copied. Anything >>> less and there is data missing. Assuming zeros is wrong for >>> most sections (the exception being the memory reserve list >>> that had a terminating 0 entry within the read portion). >>> >>> milton >> The reason total_size is bigger than the actual size is because I >> created the blob with extra space using the -S parameter. It is >> intentionally bigger. The extra space is ignored by dtc when creating a >> dts/asm format output which is why cmalloc() is unnecessary. >> >> I suppose we could require a -f force but I'm not wild about creating a >> nanny program. There is nothing wrong with the blob - it parses just >> fine. If there were problems with the blob contents, other errors would >> be raised. > > I think the warning is fine, but not for exactly the reasons you > state. Several points: > > - At least with v17 input, where it's possible, we probably *should* > check that an input blob isn't truncated in the middle of the strings > or structure sections. That should be more than a warning. > > - Milton, saying totalsize indicates the amount of data to be copied > is misleading in this context. That's a good philosphy for things > that just read and/or slightly tweak the tree - data outside the known > sections which it can't interpret should be left unaltered wherever > possible. dtc, however, *always* fully interprets and re-emits the > tree. Any data outside the known and understood sections is *always* > discarded, so I don't think there's any problem assuming it to be > zero. > > - That said, I think when using -S, at least the default behaviour > should emit extra zero bytes in addition to changing the totalsize > header. Then at least in the simplest case of feeding dtc's dtb > output back into dtc, the warning will not occur. Hi David, Yes, emitting zeros (or asm equiv) for the extra space makes sense. That would be a better way to fix the read problem. I'm thinking about a fill/nofill and/or specifying the value for the fill bytes, but I cannot think of a reason that would be useful (my first thought was filling with 0xFF for flash, but I think most or all fdt writes need to modify some existing values so being able to modify the extra space in-place doesn't help because the existing values cannot be modified in-place in flash). Now to find some time to implement it... Best regards, gvb ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH dtc take 2] Fix reserve map output for asm format. 2007-04-16 0:51 ` David Gibson 2007-04-16 1:20 ` Jerry Van Baren @ 2007-04-16 3:49 ` Milton Miller 2007-04-16 4:16 ` David Gibson 1 sibling, 1 reply; 9+ messages in thread From: Milton Miller @ 2007-04-16 3:49 UTC (permalink / raw) To: David Gibson; +Cc: linuxppc-dev, Jon Loeliger On Apr 15, 2007, at 7:51 PM, David Gibson wrote: > On Sun, Apr 15, 2007 at 08:24:06PM -0400, Jerry Van Baren wrote: >> Milton Miller wrote: >>> Sometime around Sun Apr 15 12:29:14 EST 2007, Jerry Van Baren wrote: >>>> Add extra reserve map slots output for asm format (previously done >>>> for >>>> dtb >>>> output). >>>> >>>> Signed-off-by: Gerald Van Baren <vanbaren at cideas.com> >>>> --- >>>> >>>> Hi Jon, David, >>>> >>>> Here is a patch that fixes the asm output without the (unnecessary) >>>> calloc change. >>>> >>>> Best regards, >>>> gvb >>> >>> >>> The previous description had >>>> Use cmalloc to pre-zero memory (for dtb input) and handle dtb >>>> (binary) >>>> input being shorter than the total blob length (result of putting >>>> extra space in the blob). >>> >>> >>> Which at least said in the description the unrelated things it was >>> doing. >> >> That was my added comment WRT the change from malloc to cmalloc. >> David >> wasn't wild about using cmalloc, so I removed it. Using cmalloc is >> not >> necessary. Jerry, >>>> and handle dtb (binary) >>>> input being shorter than the total blob length (result of putting >>>> extra space in the blob). That part is still in this patch. And I think it should be a separate patch. Its unrelated to filling in .long 0 for the memory reserve map. That said, one could use .space there I suppose. Its fine the way it is. >>>> while (sizeleft) { >>>> - if (feof(f)) >>>> - die("EOF before reading %d bytes of DT >>>> blob\n", >>>> - totalsize); >>>> + if (feof(f)) { >>>> + WARNMSG("EOF after reading %d of %d bytes of >>>> DT blob, assuming there is extra space in the blob.\n", >>>> + totalsize - sizeleft, totalsize); >>>> + break; >>>> + } >>> >>> I thnk the above should be an ERROR and cause failure without >>> the -f (force) option. >>> >>> The total_size says how much data should be copied. Anything >>> less and there is data missing. Assuming zeros is wrong for >>> most sections (the exception being the memory reserve list >>> that had a terminating 0 entry within the read portion). >>> >>> milton >> >> The reason total_size is bigger than the actual size is because I >> created the blob with extra space using the -S parameter. It is >> intentionally bigger. The extra space is ignored by dtc when >> creating a >> dts/asm format output which is why cmalloc() is unnecessary. If this is a case of reading in the files it creates, then its wrong to have the size created less than total_size. The space needs to be in the output file. To have it not be in the output is wrong. For instance it will not be allocated by objcopy nor the linker when its inserted into the dtb section of the zImage wrapper, which would lead to scribbling on memory belonging to something else, or at least unallocated. Similar for a firmware that treats the dt_struct as binary data. It might be loaded just before the initrd for instance. >> I suppose we could require a -f force but I'm not wild about creating >> a >> nanny program. There is nothing wrong with the blob - it parses just >> fine. If there were problems with the blob contents, other errors >> would >> be raised. > > I think the warning is fine, but not for exactly the reasons you > state. Several points: > > - At least with v17 input, where it's possible, we probably *should* > check that an input blob isn't truncated in the middle of the strings > or structure sections. That should be more than a warning. Or check that (1) the memory reserve list is terminated before this point, (2) the dt_struct has matching node begin and end count and ends with tree end, and (3) all strings referenced by dt_struct are before the read size. > - Milton, saying totalsize indicates the amount of data to be copied > is misleading in this context. That's a good philosphy for things > that just read and/or slightly tweak the tree - data outside the known > sections which it can't interpret should be left unaltered wherever > possible. Actually, I think anything modifiny a tree with a higher revision than it understands, that has to move sections to increase the space, must downgrade the tree to the revision that it understands. It just doesn't know what the new structure revison means, and that its safe to claim it still meets the new revision. > dtc, however, *always* fully interprets and re-emits the > tree. Any data outside the known and understood sections is *always* > discarded, so I don't think there's any problem assuming it to be > zero. I haven't looked at the code, but it appears that this is just reading the blob into memory. I'd be fine with short file handling if it was parsing the structure as it was reading. If you want to make it not an error, then it should be confirmed that the missing information is not accessed. That can be done by parsing the structure and verifying one doesn't read beyond what was read, or by moving it to but up against unmapped pages for all I care. For that matter, I don't care if any section is truncated as long as the parse shows all data was read before the end. Regardless, this is unrelated to properly allocating the requested space for extra memory reserve slots in asm output, which is the subject of this patch. > - That said, I think when using -S, at least the default behaviour > should emit extra zero bytes in addition to changing the totalsize > header. Then at least in the simplest case of feeding dtc's dtb > output back into dtc, the warning will not occur. Change default behavior to only behavior and I agree. And its the real fix for the problem. milton ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH dtc take 2] Fix reserve map output for asm format. 2007-04-16 3:49 ` Milton Miller @ 2007-04-16 4:16 ` David Gibson 2007-04-16 5:08 ` Milton Miller 0 siblings, 1 reply; 9+ messages in thread From: David Gibson @ 2007-04-16 4:16 UTC (permalink / raw) To: Milton Miller; +Cc: linuxppc-dev, Jon Loeliger On Sun, Apr 15, 2007 at 10:49:57PM -0500, Milton Miller wrote: > On Apr 15, 2007, at 7:51 PM, David Gibson wrote: > > On Sun, Apr 15, 2007 at 08:24:06PM -0400, Jerry Van Baren wrote: > >> Milton Miller wrote: > >>> Sometime around Sun Apr 15 12:29:14 EST 2007, Jerry Van Baren wrote: > >>>> Add extra reserve map slots output for asm format (previously done > >>>> for > >>>> dtb > >>>> output). > >>>> > >>>> Signed-off-by: Gerald Van Baren <vanbaren at cideas.com> > >>>> --- > >>>> > >>>> Hi Jon, David, > >>>> > >>>> Here is a patch that fixes the asm output without the (unnecessary) > >>>> calloc change. > >>>> > >>>> Best regards, > >>>> gvb > >>> > >>> > >>> The previous description had > >>>> Use cmalloc to pre-zero memory (for dtb input) and handle dtb > >>>> (binary) > >>>> input being shorter than the total blob length (result of putting > >>>> extra space in the blob). > >>> > >>> > >>> Which at least said in the description the unrelated things it was > >>> doing. > >> > >> That was my added comment WRT the change from malloc to cmalloc. > >> David > >> wasn't wild about using cmalloc, so I removed it. Using cmalloc is > >> not > >> necessary. > > Jerry, > > >>>> and handle dtb (binary) > >>>> input being shorter than the total blob length (result of putting > >>>> extra space in the blob). > > That part is still in this patch. > > And I think it should be a separate patch. Its unrelated to filling > in .long 0 for the memory reserve map. Yes. > That said, one could use .space there I suppose. Its fine the way it > is. I think .space would be the preferred method for adding the padding space at the end in asm format. > >>>> while (sizeleft) { > >>>> - if (feof(f)) > >>>> - die("EOF before reading %d bytes of DT > >>>> blob\n", > >>>> - totalsize); > >>>> + if (feof(f)) { > >>>> + WARNMSG("EOF after reading %d of %d bytes of > >>>> DT blob, assuming there is extra space in the blob.\n", > >>>> + totalsize - sizeleft, totalsize); > >>>> + break; > >>>> + } > >>> > >>> I thnk the above should be an ERROR and cause failure without > >>> the -f (force) option. > >>> > >>> The total_size says how much data should be copied. Anything > >>> less and there is data missing. Assuming zeros is wrong for > >>> most sections (the exception being the memory reserve list > >>> that had a terminating 0 entry within the read portion). > >>> > >>> milton > >> > >> The reason total_size is bigger than the actual size is because I > >> created the blob with extra space using the -S parameter. It is > >> intentionally bigger. The extra space is ignored by dtc when > >> creating a > >> dts/asm format output which is why cmalloc() is unnecessary. > > If this is a case of reading in the files it creates, then its wrong > to have the size created less than total_size. The space needs to be > in the output file. To have it not be in the output is wrong. For > instance it will not be allocated by objcopy nor the linker when its > inserted into the dtb section of the zImage wrapper, which would lead to > scribbling on memory belonging to something else, or at least > unallocated. > Similar for a firmware that treats the dt_struct as binary data. It > might be loaded just before the initrd for instance. Well, I can see specialized case uses for totalsize greater than stored size: where you know the blob is going to be copied into another staging area with more space, for example. > >> I suppose we could require a -f force but I'm not wild about creating > >> a > >> nanny program. There is nothing wrong with the blob - it parses just > >> fine. If there were problems with the blob contents, other errors > >> would > >> be raised. > > > > I think the warning is fine, but not for exactly the reasons you > > state. Several points: > > > > - At least with v17 input, where it's possible, we probably *should* > > check that an input blob isn't truncated in the middle of the strings > > or structure sections. That should be more than a warning. > > Or check that (1) the memory reserve list is terminated before this > point, (2) the dt_struct has matching node begin and end count and > ends with tree end, and (3) all strings referenced by dt_struct are > before the read size. I think just checking the header lengths of the sub-blocks should be sufficient at this point. Checking that the begin/end count matches in the structure block and that all the string references are valid can, I think, be correctly delayed until we actually parse the structure block. > > - Milton, saying totalsize indicates the amount of data to be copied > > is misleading in this context. That's a good philosphy for things > > that just read and/or slightly tweak the tree - data outside the known > > sections which it can't interpret should be left unaltered wherever > > possible. > > Actually, I think anything modifiny a tree with a higher revision > than it understands, that has to move sections to increase the > space, must downgrade the tree to the revision that it understands. > It just doesn't know what the new structure revison means, and that > its safe to claim it still meets the new revision. Oh, absolutely the version should be downgraded on writes. I wasn't really thinking of new format revisions adding extra data - I was thinking of hacks like programs stuffing some extra, runtime-use data into the "gaps" in the device tree blob. Clearly any such approach is always going to be risky to combine with r/w tree access, but it could be useful in some circumstances, so it doesn't hurt to be robust against it when we can. > > dtc, however, *always* fully interprets and re-emits the > > tree. Any data outside the known and understood sections is *always* > > discarded, so I don't think there's any problem assuming it to be > > zero. > > I haven't looked at the code, but it appears that this is just reading > the blob into memory. I'd be fine with short file handling if it was > parsing the structure as it was reading. > > If you want to make it not an error, then it should be confirmed that > the missing information is not accessed. That can be done by parsing > the structure and verifying one doesn't read beyond what was read, or > by moving it to but up against unmapped pages for all I care. For > that matter, I don't care if any section is truncated as long > as the parse shows all data was read before the end. Again just checking that the truncation doesn't occur in the middle of one of the data blocks as described by the header I think is sufficient here. More detailed checks happen when we parse the subsections. > Regardless, this is unrelated to properly allocating the requested > space for extra memory reserve slots in asm output, which is the > subject of this patch. > > > - That said, I think when using -S, at least the default behaviour > > should emit extra zero bytes in addition to changing the totalsize > > header. Then at least in the simplest case of feeding dtc's dtb > > output back into dtc, the warning will not occur. > > Change default behavior to only behavior and I agree. And its > the real fix for the problem. -- 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 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH dtc take 2] Fix reserve map output for asm format. 2007-04-16 4:16 ` David Gibson @ 2007-04-16 5:08 ` Milton Miller 2007-04-16 6:30 ` David Gibson 0 siblings, 1 reply; 9+ messages in thread From: Milton Miller @ 2007-04-16 5:08 UTC (permalink / raw) To: David Gibson; +Cc: linuxppc-dev, Jon Loeliger On Apr 15, 2007, at 11:16 PM, David Gibson wrote: > On Sun, Apr 15, 2007 at 10:49:57PM -0500, Milton Miller wrote: >> On Apr 15, 2007, at 7:51 PM, David Gibson wrote: >>> On Sun, Apr 15, 2007 at 08:24:06PM -0400, Jerry Van Baren wrote: >>>> Milton Miller wrote: >>>>> Sometime around Sun Apr 15 12:29:14 EST 2007, Jerry Van Baren >>>>> wrote: >>>>>> Add extra reserve map slots output for asm format (previously done >>>>>> for >>>>>> dtb >>>>>> output). >>>>>> and handle dtb (binary) >>>>>> input being shorter than the total blob length (result of >>>>>> putting >>>>>> extra space in the blob). >> >> That part is still in this patch. >> >> And I think it should be a separate patch. Its unrelated to filling >> in .long 0 for the memory reserve map. > > Yes. >> That said, one could use .space there I suppose. Its fine the way it >> is. > > I think .space would be the preferred method for adding the padding > space at the end in asm format. For the space at the end, I agree. Or use .org 99b+size with 99: at the begining of the struct. The .long 0 was more for memory reserve, where the entries might be replaced before assembly. >>>>> The total_size says how much data should be copied. Anything >>>>> less and there is data missing. Assuming zeros is wrong for >>>>> most sections (the exception being the memory reserve list >>>>> that had a terminating 0 entry within the read portion). >>>>> >>>>> milton >>>> >>>> The reason total_size is bigger than the actual size is because I >>>> created the blob with extra space using the -S parameter. It is >>>> intentionally bigger. The extra space is ignored by dtc when >>>> creating a >>>> dts/asm format output which is why cmalloc() is unnecessary. >> >> If this is a case of reading in the files it creates, then its wrong >> to have the size created less than total_size. The space needs to be >> in the output file. To have it not be in the output is wrong. For >> instance it will not be allocated by objcopy nor the linker when its >> inserted into the dtb section of the zImage wrapper, which would lead >> to >> scribbling on memory belonging to something else, or at least >> unallocated. >> Similar for a firmware that treats the dt_struct as binary data. It >> might be loaded just before the initrd for instance. > > Well, I can see specialized case uses for totalsize greater than > stored size: where you know the blob is going to be copied into > another staging area with more space, for example. That can either be done with your embedding script processing and noticing the zeros at the end or by a special option I guess. >>>> I suppose we could require a -f force but I'm not wild about >>>> creating >>>> a >>>> nanny program. There is nothing wrong with the blob - it parses >>>> just >>>> fine. If there were problems with the blob contents, other errors >>>> would >>>> be raised. You mean like not creating output for -I fs -O dts when there are expected properties (files) missing? :-) The kernel booted just fine, it was processing /proc/device-tree after all. Its probably wrong to check for expected properties when the output is dts. At least the checks should not be more than a warning (that you may have selected a subtree). >>> I think the warning is fine, but not for exactly the reasons you >>> state. Several points: >>> >>> - At least with v17 input, where it's possible, we probably *should* >>> check that an input blob isn't truncated in the middle of the strings >>> or structure sections. That should be more than a warning. >> >> Or check that (1) the memory reserve list is terminated before this >> point, (2) the dt_struct has matching node begin and end count and >> ends with tree end, and (3) all strings referenced by dt_struct are >> before the read size. > > I think just checking the header lengths of the sub-blocks should be > sufficient at this point. Checking that the begin/end count matches > in the structure block and that all the string references are valid > can, I think, be correctly delayed until we actually parse the > structure block. Checking the sublock lengths is sufficient, but actually more restrictive that what I said. And mine works on older formats without the size fields. But yes, yours is simpler when the fields exist. Or just leave it an error, fix the output, and make the user fix the input. If you took off the zeros, you can add padding from /dev/zero or /dev/random or /etc/motd, as you said the data should not be used. milton ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH dtc take 2] Fix reserve map output for asm format. 2007-04-16 5:08 ` Milton Miller @ 2007-04-16 6:30 ` David Gibson 0 siblings, 0 replies; 9+ messages in thread From: David Gibson @ 2007-04-16 6:30 UTC (permalink / raw) To: Milton Miller; +Cc: linuxppc-dev, Jon Loeliger On Mon, Apr 16, 2007 at 12:08:37AM -0500, Milton Miller wrote: > On Apr 15, 2007, at 11:16 PM, David Gibson wrote: > > On Sun, Apr 15, 2007 at 10:49:57PM -0500, Milton Miller wrote: > >> On Apr 15, 2007, at 7:51 PM, David Gibson wrote: > >>> On Sun, Apr 15, 2007 at 08:24:06PM -0400, Jerry Van Baren wrote: > >>>> Milton Miller wrote: > >>>>> Sometime around Sun Apr 15 12:29:14 EST 2007, Jerry Van Baren > >>>>> wrote: > >>>>>> Add extra reserve map slots output for asm format (previously done > >>>>>> for > >>>>>> dtb > >>>>>> output). > > >>>>>> and handle dtb (binary) > >>>>>> input being shorter than the total blob length (result of > >>>>>> putting > >>>>>> extra space in the blob). > >> > >> That part is still in this patch. > >> > >> And I think it should be a separate patch. Its unrelated to filling > >> in .long 0 for the memory reserve map. > > > > Yes. > > > >> That said, one could use .space there I suppose. Its fine the way it > >> is. > > > > I think .space would be the preferred method for adding the padding > > space at the end in asm format. > > For the space at the end, I agree. Or use .org 99b+size with 99: at the > begining of the struct. The .long 0 was more for memory reserve, where > the entries might be replaced before assembly. > > >>>>> The total_size says how much data should be copied. Anything > >>>>> less and there is data missing. Assuming zeros is wrong for > >>>>> most sections (the exception being the memory reserve list > >>>>> that had a terminating 0 entry within the read portion). > >>>>> > >>>>> milton > >>>> > >>>> The reason total_size is bigger than the actual size is because I > >>>> created the blob with extra space using the -S parameter. It is > >>>> intentionally bigger. The extra space is ignored by dtc when > >>>> creating a > >>>> dts/asm format output which is why cmalloc() is unnecessary. > >> > >> If this is a case of reading in the files it creates, then its wrong > >> to have the size created less than total_size. The space needs to be > >> in the output file. To have it not be in the output is wrong. For > >> instance it will not be allocated by objcopy nor the linker when its > >> inserted into the dtb section of the zImage wrapper, which would lead > >> to > >> scribbling on memory belonging to something else, or at least > >> unallocated. > >> Similar for a firmware that treats the dt_struct as binary data. It > >> might be loaded just before the initrd for instance. > > > > Well, I can see specialized case uses for totalsize greater than > > stored size: where you know the blob is going to be copied into > > another staging area with more space, for example. > > That can either be done with your embedding script processing and > noticing > the zeros at the end or by a special option I guess. Such a possible future special option was all I had in mind when I said emitting the zeroes should be default rather than only behaviour. > >>>> I suppose we could require a -f force but I'm not wild about > >>>> creating > >>>> a > >>>> nanny program. There is nothing wrong with the blob - it parses > >>>> just > >>>> fine. If there were problems with the blob contents, other errors > >>>> would > >>>> be raised. > > You mean like not creating output for -I fs -O dts when there are > expected properties (files) missing? :-) The kernel booted just > fine, it was processing /proc/device-tree after all. > Its probably wrong to check for expected properties when the output > is dts. At least the checks should not be more than a warning (that > you may have selected a subtree). Yes, yes, I know. This all comes back to the need for a substantially reworked warning/error system. > >>> I think the warning is fine, but not for exactly the reasons you > >>> state. Several points: > >>> > >>> - At least with v17 input, where it's possible, we probably *should* > >>> check that an input blob isn't truncated in the middle of the strings > >>> or structure sections. That should be more than a warning. > >> > >> Or check that (1) the memory reserve list is terminated before this > >> point, (2) the dt_struct has matching node begin and end count and > >> ends with tree end, and (3) all strings referenced by dt_struct are > >> before the read size. > > > > I think just checking the header lengths of the sub-blocks should be > > sufficient at this point. Checking that the begin/end count matches > > in the structure block and that all the string references are valid > > can, I think, be correctly delayed until we actually parse the > > structure block. > > Checking the sublock lengths is sufficient, but actually more > restrictive that what I said. And mine works on older formats > without the size fields. But yes, yours is simpler when the fields > exist. > > Or just leave it an error, fix the output, and make the user fix the > input. If you took off the zeros, you can add padding from /dev/zero > or /dev/random or /etc/motd, as you said the data should not be used. > > milton -- 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 ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2007-04-16 6:30 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2007-04-15 2:29 [PATCH dtc take 2] Fix reserve map output for asm format Jerry Van Baren 2007-04-15 19:59 ` Milton Miller 2007-04-16 0:24 ` Jerry Van Baren 2007-04-16 0:51 ` David Gibson 2007-04-16 1:20 ` Jerry Van Baren 2007-04-16 3:49 ` Milton Miller 2007-04-16 4:16 ` David Gibson 2007-04-16 5:08 ` Milton Miller 2007-04-16 6:30 ` David Gibson
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).