Skip to content

Commit

Permalink
Fix #127, Adds static analysis comments and replaces strncpy with snp…
Browse files Browse the repository at this point in the history
…rintf

This commit addresses issues flagged during static analysis by:
- Adding JSC 2.1 disposition comments.
- Replacing strncpy with snprintf to enhance safety and compliance.
  • Loading branch information
jdfiguer authored and jdfiguer committed Jun 13, 2024
1 parent ec96b02 commit 06125af
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 1 addition & 2 deletions fsw/src/ds_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,7 @@ void DS_AppSendHkCmd(void)
Status = CFE_TBL_GetInfo(&FilterTblInfo, FilterTblName);
if (Status == CFE_SUCCESS)
{
strncpy(PayloadPtr->FilterTblFilename, FilterTblInfo.LastFileLoaded, OS_MAX_PATH_LEN - 1);
PayloadPtr->FilterTblFilename[OS_MAX_PATH_LEN - 1] = '\0';
snprintf(PayloadPtr->FilterTblFilename, OS_MAX_PATH_LEN, "%s", FilterTblInfo.LastFileLoaded);
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion fsw/src/ds_cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ void DS_GetFileInfoCmd(const CFE_SB_Buffer_t *BufPtr)
/*
** Set current open filename...
*/
strncpy(FileInfoPtr->FileName, DS_AppData.FileStatus[i].FileName, sizeof(FileInfoPtr->FileName));
snprintf(FileInfoPtr->FileName, sizeof(FileInfoPtr->FileName), "%s", DS_AppData.FileStatus[i].FileName);
}
}

Expand Down
4 changes: 2 additions & 2 deletions fsw/src/ds_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -881,7 +881,7 @@ void DS_FileCloseDest(int32 FileIndex)
}

/* Update the path name for reporting */
strncpy(FileStatus->FileName, PathName, sizeof(FileStatus->FileName));
snprintf(FileStatus->FileName, sizeof(FileStatus->FileName), "%s", PathName);
}
}

Expand Down Expand Up @@ -991,7 +991,7 @@ void DS_FileTransmit(DS_AppFileStatus_t *FileStatus)
/*
** Set current open filename...
*/
strncpy(FileInfo->FileName, FileStatus->FileName, sizeof(FileInfo->FileName));
snprintf(FileInfo->FileName, sizeof(FileInfo->FileName), "%s", FileStatus->FileName);

/*
** Timestamp and send file info telemetry...
Expand Down
2 changes: 2 additions & 0 deletions fsw/src/ds_table.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@ CFE_Status_t DS_TableVerifyDestFile(const void *TableData)
else
{
CountBad++;
/* SAD: Assignment of 0xFFFFFFFF to Result is safe; it represents -1 in int32, within valid range */
Result = DS_TABLE_VERIFY_ERR;
}
}
Expand Down Expand Up @@ -543,6 +544,7 @@ CFE_Status_t DS_TableVerifyFilter(const void *TableData)
else
{
CountBad++;
/* SAD: Assignment of 0xFFFFFFFF to Result is safe; it represents -1 in int32, within valid range */
Result = DS_TABLE_VERIFY_ERR;
}
}
Expand Down

0 comments on commit 06125af

Please sign in to comment.