mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/nvs_coverity_issues' into 'master'
bugfix (nvs): Fixed issues found by Coverity Closes IDF-4391 See merge request espressif/esp-idf!16951
This commit is contained in:
commit
e899edd793
@ -1,16 +1,8 @@
|
|||||||
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
/*
|
||||||
//
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
*
|
||||||
// you may not use this file except in compliance with the License.
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
// You may obtain a copy of the License at
|
*/
|
||||||
|
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
#ifndef ESP_NVS_H
|
#ifndef ESP_NVS_H
|
||||||
#define ESP_NVS_H
|
#define ESP_NVS_H
|
||||||
|
|
||||||
@ -105,7 +97,7 @@ typedef enum {
|
|||||||
*/
|
*/
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char namespace_name[16]; /*!< Namespace to which key-value belong */
|
char namespace_name[16]; /*!< Namespace to which key-value belong */
|
||||||
char key[16]; /*!< Key of stored key-value pair */
|
char key[NVS_KEY_NAME_MAX_SIZE]; /*!< Key of stored key-value pair */
|
||||||
nvs_type_t type; /*!< Type of stored key-value pair */
|
nvs_type_t type; /*!< Type of stored key-value pair */
|
||||||
} nvs_entry_info_t;
|
} nvs_entry_info_t;
|
||||||
|
|
||||||
|
@ -1,16 +1,8 @@
|
|||||||
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
/*
|
||||||
//
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
*
|
||||||
// you may not use this file except in compliance with the License.
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
// You may obtain a copy of the License at
|
*/
|
||||||
//
|
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
#include "nvs_page.hpp"
|
#include "nvs_page.hpp"
|
||||||
#include <esp_rom_crc.h>
|
#include <esp_rom_crc.h>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
@ -200,6 +192,10 @@ esp_err_t Page::writeItem(uint8_t nsIndex, ItemType datatype, const char* key, c
|
|||||||
return ESP_ERR_NVS_VALUE_TOO_LONG;
|
return ESP_ERR_NVS_VALUE_TOO_LONG;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((!isVariableLengthType(datatype)) && dataSize > 8) {
|
||||||
|
return ESP_ERR_INVALID_ARG;
|
||||||
|
}
|
||||||
|
|
||||||
size_t totalSize = ENTRY_SIZE;
|
size_t totalSize = ENTRY_SIZE;
|
||||||
size_t entriesCount = 1;
|
size_t entriesCount = 1;
|
||||||
if (isVariableLengthType(datatype)) {
|
if (isVariableLengthType(datatype)) {
|
||||||
@ -244,7 +240,8 @@ esp_err_t Page::writeItem(uint8_t nsIndex, ItemType datatype, const char* key, c
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t left = dataSize / ENTRY_SIZE * ENTRY_SIZE;
|
size_t rest = dataSize % ENTRY_SIZE;
|
||||||
|
size_t left = dataSize - rest;
|
||||||
if (left > 0) {
|
if (left > 0) {
|
||||||
err = writeEntryData(static_cast<const uint8_t*>(data), left);
|
err = writeEntryData(static_cast<const uint8_t*>(data), left);
|
||||||
if (err != ESP_OK) {
|
if (err != ESP_OK) {
|
||||||
@ -252,7 +249,7 @@ esp_err_t Page::writeItem(uint8_t nsIndex, ItemType datatype, const char* key, c
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t tail = dataSize - left;
|
size_t tail = rest;
|
||||||
if (tail > 0) {
|
if (tail > 0) {
|
||||||
std::fill_n(item.rawData, ENTRY_SIZE, 0xff);
|
std::fill_n(item.rawData, ENTRY_SIZE, 0xff);
|
||||||
memcpy(item.rawData, static_cast<const uint8_t*>(data) + left, tail);
|
memcpy(item.rawData, static_cast<const uint8_t*>(data) + left, tail);
|
||||||
|
@ -1,16 +1,8 @@
|
|||||||
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
/*
|
||||||
//
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
*
|
||||||
// you may not use this file except in compliance with the License.
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
// You may obtain a copy of the License at
|
*/
|
||||||
|
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
//
|
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
// See the License for the specific language governing permissions and
|
|
||||||
// limitations under the License.
|
|
||||||
#include "nvs_storage.hpp"
|
#include "nvs_storage.hpp"
|
||||||
|
|
||||||
#ifndef ESP_PLATFORM
|
#ifndef ESP_PLATFORM
|
||||||
@ -419,11 +411,6 @@ esp_err_t Storage::createOrOpenNamespace(const char* nsName, bool canCreate, uin
|
|||||||
return ESP_ERR_NVS_NOT_ENOUGH_SPACE;
|
return ESP_ERR_NVS_NOT_ENOUGH_SPACE;
|
||||||
}
|
}
|
||||||
|
|
||||||
NamespaceEntry* entry = new (std::nothrow) NamespaceEntry;
|
|
||||||
if (!entry) {
|
|
||||||
return ESP_ERR_NO_MEM;
|
|
||||||
}
|
|
||||||
|
|
||||||
auto err = writeItem(Page::NS_INDEX, ItemType::U8, nsName, &ns, sizeof(ns));
|
auto err = writeItem(Page::NS_INDEX, ItemType::U8, nsName, &ns, sizeof(ns));
|
||||||
if (err != ESP_OK) {
|
if (err != ESP_OK) {
|
||||||
return err;
|
return err;
|
||||||
@ -431,6 +418,11 @@ esp_err_t Storage::createOrOpenNamespace(const char* nsName, bool canCreate, uin
|
|||||||
mNamespaceUsage.set(ns, true);
|
mNamespaceUsage.set(ns, true);
|
||||||
nsIndex = ns;
|
nsIndex = ns;
|
||||||
|
|
||||||
|
NamespaceEntry* entry = new (std::nothrow) NamespaceEntry;
|
||||||
|
if (!entry) {
|
||||||
|
return ESP_ERR_NO_MEM;
|
||||||
|
}
|
||||||
|
|
||||||
entry->mIndex = ns;
|
entry->mIndex = ns;
|
||||||
strncpy(entry->mName, nsName, sizeof(entry->mName) - 1);
|
strncpy(entry->mName, nsName, sizeof(entry->mName) - 1);
|
||||||
entry->mName[sizeof(entry->mName) - 1] = 0;
|
entry->mName[sizeof(entry->mName) - 1] = 0;
|
||||||
@ -734,11 +726,13 @@ esp_err_t Storage::calcEntriesInNamespace(uint8_t nsIndex, size_t& usedEntries)
|
|||||||
void Storage::fillEntryInfo(Item &item, nvs_entry_info_t &info)
|
void Storage::fillEntryInfo(Item &item, nvs_entry_info_t &info)
|
||||||
{
|
{
|
||||||
info.type = static_cast<nvs_type_t>(item.datatype);
|
info.type = static_cast<nvs_type_t>(item.datatype);
|
||||||
strncpy(info.key, item.key, sizeof(info.key));
|
strncpy(info.key, item.key, sizeof(info.key) - 1);
|
||||||
|
info.key[sizeof(info.key) - 1] = '\0';
|
||||||
|
|
||||||
for (auto &name : mNamespaces) {
|
for (auto &name : mNamespaces) {
|
||||||
if(item.nsIndex == name.mIndex) {
|
if(item.nsIndex == name.mIndex) {
|
||||||
strncpy(info.namespace_name, name.mName, sizeof(info.namespace_name));
|
strncpy(info.namespace_name, name.mName, sizeof(info.namespace_name) - 1);
|
||||||
|
info.namespace_name[sizeof(info.namespace_name) -1] = '\0';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1380,7 +1380,6 @@ components/newlib/test_apps/main/test_newlib_main.c
|
|||||||
components/newlib/test_apps/main/test_stdatomic.c
|
components/newlib/test_apps/main/test_stdatomic.c
|
||||||
components/nvs_flash/host_test/fixtures/test_fixtures.hpp
|
components/nvs_flash/host_test/fixtures/test_fixtures.hpp
|
||||||
components/nvs_flash/host_test/nvs_page_test/main/nvs_page_test.cpp
|
components/nvs_flash/host_test/nvs_page_test/main/nvs_page_test.cpp
|
||||||
components/nvs_flash/include/nvs.h
|
|
||||||
components/nvs_flash/include/nvs_flash.h
|
components/nvs_flash/include/nvs_flash.h
|
||||||
components/nvs_flash/include/nvs_handle.hpp
|
components/nvs_flash/include/nvs_handle.hpp
|
||||||
components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py
|
components/nvs_flash/nvs_partition_generator/nvs_partition_gen.py
|
||||||
@ -1397,7 +1396,6 @@ components/nvs_flash/src/nvs_handle_simple.cpp
|
|||||||
components/nvs_flash/src/nvs_handle_simple.hpp
|
components/nvs_flash/src/nvs_handle_simple.hpp
|
||||||
components/nvs_flash/src/nvs_item_hash_list.cpp
|
components/nvs_flash/src/nvs_item_hash_list.cpp
|
||||||
components/nvs_flash/src/nvs_item_hash_list.hpp
|
components/nvs_flash/src/nvs_item_hash_list.hpp
|
||||||
components/nvs_flash/src/nvs_page.cpp
|
|
||||||
components/nvs_flash/src/nvs_page.hpp
|
components/nvs_flash/src/nvs_page.hpp
|
||||||
components/nvs_flash/src/nvs_pagemanager.cpp
|
components/nvs_flash/src/nvs_pagemanager.cpp
|
||||||
components/nvs_flash/src/nvs_pagemanager.hpp
|
components/nvs_flash/src/nvs_pagemanager.hpp
|
||||||
@ -1407,7 +1405,6 @@ components/nvs_flash/src/nvs_partition_lookup.cpp
|
|||||||
components/nvs_flash/src/nvs_partition_lookup.hpp
|
components/nvs_flash/src/nvs_partition_lookup.hpp
|
||||||
components/nvs_flash/src/nvs_partition_manager.hpp
|
components/nvs_flash/src/nvs_partition_manager.hpp
|
||||||
components/nvs_flash/src/nvs_platform.hpp
|
components/nvs_flash/src/nvs_platform.hpp
|
||||||
components/nvs_flash/src/nvs_storage.cpp
|
|
||||||
components/nvs_flash/src/nvs_storage.hpp
|
components/nvs_flash/src/nvs_storage.hpp
|
||||||
components/nvs_flash/src/nvs_test_api.h
|
components/nvs_flash/src/nvs_test_api.h
|
||||||
components/nvs_flash/src/nvs_types.cpp
|
components/nvs_flash/src/nvs_types.cpp
|
||||||
|
Loading…
x
Reference in New Issue
Block a user