Skip to content

Commit 219d034

Browse files
de-nordicnashif
authored andcommitted
storage/stream_flash: Fix range check in stream_flash_erase_page
Added check where stream_flash_erase_page checks if requested offset is actually within stream flash designated area. Fixes #79800 Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no> (cherry picked from commit 8714c17)
1 parent 064fcfc commit 219d034

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

include/zephyr/storage/stream_flash.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ int stream_flash_erase_page(struct stream_flash_ctx *ctx, off_t off);
149149
* @param settings_key key to use with the settings module for loading
150150
* the stream write progress
151151
*
152-
* @return non-negative on success, negative errno code on fail
152+
* @return non-negative on success, -ERANGE in case when @p off is out
153+
* of area designated for stream or negative errno code on fail
153154
*/
154155
int stream_flash_progress_load(struct stream_flash_ctx *ctx,
155156
const char *settings_key);

subsys/storage/stream/stream_flash.c

+6
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ int stream_flash_erase_page(struct stream_flash_ctx *ctx, off_t off)
7979
#if defined(CONFIG_FLASH_HAS_EXPLICIT_ERASE)
8080
int rc;
8181
struct flash_pages_info page;
82+
83+
if (off < ctx->offset || (off - ctx->offset) >= ctx->available) {
84+
LOG_ERR("Offset out of designated range");
85+
return -ERANGE;
86+
}
87+
8288
#if defined(CONFIG_FLASH_HAS_NO_EXPLICIT_ERASE)
8389
/* There are both types of devices */
8490
const struct flash_parameters *fparams = flash_get_parameters(ctx->fdev);

0 commit comments

Comments
 (0)