-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #70, add msg integrity source file
This makes the EDS MSG implementation line up with the CFE mainline again.
- Loading branch information
Showing
3 changed files
with
75 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/************************************************************************ | ||
* NASA Docket No. GSC-18,719-1, and identified as “core Flight System: Bootes” | ||
* | ||
* Copyright (c) 2020 United States Government as represented by the | ||
* Administrator of the National Aeronautics and Space Administration. | ||
* All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. 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 "cfe_msg.h" | ||
#include "cfe_time.h" | ||
|
||
/*---------------------------------------------------------------- | ||
* | ||
* Implemented per public API | ||
* See description in header file for argument/return detail | ||
* | ||
*-----------------------------------------------------------------*/ | ||
CFE_Status_t CFE_MSG_OriginationAction(CFE_MSG_Message_t *MsgPtr, size_t BufferSize, bool *IsAcceptable) | ||
{ | ||
if (MsgPtr == NULL || IsAcceptable == NULL) | ||
{ | ||
return CFE_MSG_BAD_ARGUMENT; | ||
} | ||
|
||
/* | ||
* TLM packets have a timestamp in the secondary header. | ||
* This may fail if this is not a TLM packet (that is OK) | ||
*/ | ||
CFE_MSG_SetMsgTime(MsgPtr, CFE_TIME_GetTime()); | ||
|
||
/* | ||
* CMD packets have a checksum in the secondary header. | ||
* This may fail if this is not a CMD packet (that is OK) | ||
*/ | ||
CFE_MSG_GenerateChecksum(MsgPtr); | ||
|
||
/* This implementation permits all outgoing messages */ | ||
*IsAcceptable = true; | ||
|
||
return CFE_SUCCESS; | ||
} | ||
/*---------------------------------------------------------------- | ||
* | ||
* Implemented per public API | ||
* See description in header file for argument/return detail | ||
* | ||
*-----------------------------------------------------------------*/ | ||
CFE_Status_t CFE_MSG_VerificationAction(const CFE_MSG_Message_t *MsgPtr, size_t BufferSize, bool *IsAcceptable) | ||
{ | ||
if (MsgPtr == NULL || IsAcceptable == NULL) | ||
{ | ||
return CFE_MSG_BAD_ARGUMENT; | ||
} | ||
|
||
/* | ||
* In the default implementation, there is not anything to check here. | ||
* | ||
* This is mainly a hook for user expansion, in case a custom implementation | ||
* has message verification capability. | ||
*/ | ||
*IsAcceptable = true; | ||
|
||
return CFE_SUCCESS; | ||
} |