Skip to content

Commit

Permalink
storage/stream_flash: Fix range check in stream_flash_erase_page
Browse files Browse the repository at this point in the history
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 <[email protected]>
(cherry picked from commit 8714c17)
  • Loading branch information
de-nordic committed Oct 30, 2024
1 parent 6477a75 commit a5471aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/storage/stream_flash.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ int stream_flash_erase_page(struct stream_flash_ctx *ctx, off_t off);
* @param settings_key key to use with the settings module for loading
* the stream write progress
*
* @return non-negative on success, negative errno code on fail
* @return non-negative on success, -ERANGE in case when @p off is out
* of area designated for stream or negative errno code on fail
*/
int stream_flash_progress_load(struct stream_flash_ctx *ctx,
const char *settings_key);
Expand Down
5 changes: 5 additions & 0 deletions subsys/storage/stream/stream_flash.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ int stream_flash_erase_page(struct stream_flash_ctx *ctx, off_t off)
int rc;
struct flash_pages_info page;

if (off < ctx->offset || (off - ctx->offset) >= ctx->available) {
LOG_ERR("Offset out of designated range");
return -ERANGE;
}

rc = flash_get_page_info_by_offs(ctx->fdev, off, &page);
if (rc != 0) {
LOG_ERR("Error %d while getting page info", rc);
Expand Down

0 comments on commit a5471aa

Please sign in to comment.