mirror of https://github.com/ARMmbed/mbed-os.git
review comments, init partly moved to restore, restore setting enabled, null check on filepath
parent
579cb5e222
commit
f8244a3d87
|
@ -78,21 +78,10 @@ FileSecurityDb::FileSecurityDb(FILE *db_file)
|
||||||
fseek(_db_file, DB_OFFSET_RESTORE, SEEK_SET);
|
fseek(_db_file, DB_OFFSET_RESTORE, SEEK_SET);
|
||||||
|
|
||||||
/* restore if requested */
|
/* restore if requested */
|
||||||
bool restore;
|
bool restore_toggle;
|
||||||
if ((fread(&restore, sizeof(bool), 1, _db_file) == 1) && restore) {
|
if (fread(&restore_toggle, sizeof(bool), 1, _db_file) == 1) {
|
||||||
fseek(_db_file, DB_OFFSET_LOCAL_IDENTITY, SEEK_SET);
|
if (restore_toggle) {
|
||||||
fread(&_local_identity, sizeof(_local_identity), 1, _db_file);
|
restore();
|
||||||
|
|
||||||
fseek(_db_file, DB_OFFSET_LOCAL_CSRK, SEEK_SET);
|
|
||||||
fread(&_local_csrk, sizeof(_local_csrk), 1, _db_file);
|
|
||||||
|
|
||||||
fseek(_db_file, DB_OFFSET_LOCAL_SIGN_COUNT, SEEK_SET);
|
|
||||||
fread(&_local_sign_counter, sizeof(_local_sign_counter), 1, _db_file);
|
|
||||||
|
|
||||||
fseek(_db_file, DB_OFFSET_ENTRIES, SEEK_SET);
|
|
||||||
/* we read the entries partially and fill the offsets ourselves*/
|
|
||||||
for (size_t i = 0; i < get_entry_count(); i++) {
|
|
||||||
fread(&_entries[i], DB_SIZE_ENTRY, 1, _db_file);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,8 +96,16 @@ FileSecurityDb::~FileSecurityDb() {
|
||||||
}
|
}
|
||||||
|
|
||||||
FILE* FileSecurityDb::open_db_file(const char *db_path) {
|
FILE* FileSecurityDb::open_db_file(const char *db_path) {
|
||||||
|
if (!db_path) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
FILE *db_file = fopen(db_path, "wb+");
|
FILE *db_file = fopen(db_path, "wb+");
|
||||||
if (db_file) {
|
|
||||||
|
if (!db_file) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/* we will check the db file and if the version or size doesn't match
|
/* we will check the db file and if the version or size doesn't match
|
||||||
* what we expect we will blank it */
|
* what we expect we will blank it */
|
||||||
bool init = false;
|
bool init = false;
|
||||||
|
@ -149,8 +146,6 @@ FILE* FileSecurityDb::open_db_file(const char *db_path) {
|
||||||
|
|
||||||
return db_file;
|
return db_file;
|
||||||
}
|
}
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
SecurityDistributionFlags_t* FileSecurityDb::get_distribution_flags(
|
SecurityDistributionFlags_t* FileSecurityDb::get_distribution_flags(
|
||||||
entry_handle_t db_handle
|
entry_handle_t db_handle
|
||||||
|
@ -287,6 +282,21 @@ void FileSecurityDb::set_entry_peer_sign_counter(
|
||||||
/* saving and loading from nvm */
|
/* saving and loading from nvm */
|
||||||
|
|
||||||
void FileSecurityDb::restore() {
|
void FileSecurityDb::restore() {
|
||||||
|
fseek(_db_file, DB_OFFSET_LOCAL_IDENTITY, SEEK_SET);
|
||||||
|
fread(&_local_identity, sizeof(_local_identity), 1, _db_file);
|
||||||
|
|
||||||
|
fseek(_db_file, DB_OFFSET_LOCAL_CSRK, SEEK_SET);
|
||||||
|
fread(&_local_csrk, sizeof(_local_csrk), 1, _db_file);
|
||||||
|
|
||||||
|
fseek(_db_file, DB_OFFSET_LOCAL_SIGN_COUNT, SEEK_SET);
|
||||||
|
fread(&_local_sign_counter, sizeof(_local_sign_counter), 1, _db_file);
|
||||||
|
|
||||||
|
fseek(_db_file, DB_OFFSET_ENTRIES, SEEK_SET);
|
||||||
|
/* we read the entries partially and fill the offsets ourselves*/
|
||||||
|
for (size_t i = 0; i < get_entry_count(); i++) {
|
||||||
|
fread(&_entries[i], DB_SIZE_ENTRY, 1, _db_file);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void FileSecurityDb::sync(entry_handle_t db_handle) {
|
void FileSecurityDb::sync(entry_handle_t db_handle) {
|
||||||
|
@ -300,8 +310,12 @@ void FileSecurityDb::sync(entry_handle_t db_handle) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void FileSecurityDb::set_restore(bool reload) {
|
void FileSecurityDb::set_restore(bool reload) {
|
||||||
|
fseek(_db_file, DB_OFFSET_RESTORE, SEEK_SET);
|
||||||
|
fwrite(&reload, sizeof(bool), 1, _db_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* helper functions */
|
||||||
|
|
||||||
uint8_t FileSecurityDb::get_entry_count() {
|
uint8_t FileSecurityDb::get_entry_count() {
|
||||||
return MAX_ENTRIES;
|
return MAX_ENTRIES;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue