[rtems commit] Move the flash size probe into bankValidate()
Sebastian Huber
sebh at rtems.org
Wed Dec 3 06:51:52 UTC 2014
Module: rtems
Branch: master
Commit: fa4fe456b7f0c561e73477df59b2f9376f23b080
Changeset: http://git.rtems.org/rtems/commit/?id=fa4fe456b7f0c561e73477df59b2f9376f23b080
Author: Nick Withers <nick.withers at anu.edu.au>
Date: Thu Jan 30 12:58:41 2014 +1100
Move the flash size probe into bankValidate()
Previously, bankValidate() could be called (e.g., BSP_flashWrite() -> regionCheckAndErase() -> argcheck() -> bankValidate()) without the probe having happened. When it then invoked BSP_flashCheckId(), unmapped memory could be read, possibly causing a fatal exception.
---
c/src/lib/libbsp/powerpc/shared/flash/flash.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/c/src/lib/libbsp/powerpc/shared/flash/flash.c b/c/src/lib/libbsp/powerpc/shared/flash/flash.c
index 0037fe7..b7f1678 100644
--- a/c/src/lib/libbsp/powerpc/shared/flash/flash.c
+++ b/c/src/lib/libbsp/powerpc/shared/flash/flash.c
@@ -456,6 +456,11 @@ struct bankdesc *b = BSP_flashBspOps.bankcheck(bank, quiet);
return 0;
}
+ if ( !b->size && !(b->size = BSP_flashProbeSize(b)) ) {
+ fprintf(stderr,"Configuration Error - unable to determine flash size\n");
+ return 0;
+ }
+
if ( !b->dd && !(b->dd = BSP_flashCheckId(b, b->start,1)) ) {
fprintf(stderr,"Error: unable to detect flash device in bank #%i\n", bank);
return 0;
@@ -485,10 +490,6 @@ struct bankdesc *b;
return 0;
}
- if ( !b->size && !(b->size = BSP_flashProbeSize(b)) ) {
- fprintf(stderr,"Configuration Error - unable to determine flash size\n");
- return 0;
- }
if ( offset + size > b->size ) {
fprintf(stderr,"Error: requested size exceeds available flash (0x%08"PRIx32" bytes)\n", b->size);
return 0;
More information about the vc
mailing list