-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branches 'ariel/SecurityPolicy', 'jphickey/fix-…
…1207-add-cfe-build-wrappers', 'zanzaben/fix665_pipe_name_documentation', 'zanzaben/fix1094_CRC_documentation', 'jphickey/fix-1170-refactor-targetconfig', 'zanzaben/fix1165_remove_shell_configs' and 'jphickey/fix-979-taskinfo' into ic-20210305
- Loading branch information
Showing
18 changed files
with
889 additions
and
508 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,38 @@ | |
|
||
To report a vulnerability for the cFE subsystem please [submit an issue](https://github.com/nasa/cFE/issues/new/choose). | ||
|
||
For general cFS vulnerabilities please [open a cFS framework issue](https://github.com/nasa/cfs/issues/new/choose) and see our [top-level security policy](https://github.com/nasa/cFS/security/policy). | ||
For general cFS vulnerabilities please [open a cFS framework issue](https://github.com/nasa/cfs/issues/new/choose) and see our [top-level security policy](https://github.com/nasa/cFS/security/policy) for additional information. | ||
|
||
In either case please use the "Bug Report" template and provide as much information as possible. Apply appropraite labels for each report. For security related reports, tag the issue with the "security" label. | ||
|
||
## Testing | ||
|
||
**Disclaimer: nasa/cFE is not responsible for any liability incurred under the [Apache License 2.0](https://github.com/nasa/cFE/blob/main/LICENSE).** | ||
|
||
Testing is an important aspect our team values to improve cFE. | ||
|
||
To view tools used for the cFS bundle, see our [top-level security policy](https://github.com/nasa/cFS/security/policy). | ||
|
||
### CodeQL | ||
|
||
The [cFE CodeQL GitHub Actions workflow](https://github.com/nasa/cFE/actions/workflows/codeql-build.yml) is available to the public. To review the results, fork the cFE repository and run the CodeQL workflow. | ||
|
||
CodeQL is ran for every push and pull-request on all branches of cFE in GitHub Actions. | ||
|
||
For the CodeQL GitHub Actions setup, visit https://github.com/github/codeql-action. | ||
|
||
### Cppcheck | ||
|
||
The [cFE Cppcheck GitHub Actions workflow and results](https://github.com/nasa/cFE/actions/workflows/static-analysis.yml) are available to the public. To view the results, select a workflow and download the artifacts. | ||
|
||
Cppcheck is ran for every push on the main branch and every pull request on all branches of cFE in Github Actions. | ||
|
||
For more information about Cppcheck, visit http://cppcheck.sourceforge.net/. | ||
|
||
## Additional Support | ||
|
||
For additional support, email us at [email protected]. For help using OSAL and cFS, [subscribe to our mailing list](https://lists.nasa.gov/mailman/listinfo/cfs-community) that includes all the community members/users of the NASA core Flight Software (cFS) product line. The mailing list is used to communicate any information related to the cFS product such as current releases, bug findings and fixes, enhancement requests, community meeting notifications, sending out meeting minutes, etc. | ||
For additional support, submit a GitHub issue. You can also email the cfs community at cfs-community@lists.nasa.gov. | ||
|
||
If you wish to report a cybersecurity incident or concern please contact the NASA Security Operations Center either by phone at 1-877-627-2732 or via email address [email protected]. | ||
You can subscribe to the mailing list [here](https://lists.nasa.gov/mailman/listinfo/cfs-community) that includes all the community members/users of the NASA core Flight Software (cFS) product line. The mailing list is used to communicate any information related to the cFS product such as current releases, bug findings and fixes, enhancement requests, community meeting notifications, sending out meeting minutes, etc. | ||
|
||
If you wish to report a cybersecurity incident or concern, please contact the NASA Security Operations Center either by phone at 1-877-627-2732 or via email address [email protected]. |
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,48 @@ | ||
################################################################## | ||
# | ||
# cFS version metadata collection script | ||
# | ||
# This small script runs at build time (as opposed to prep time) | ||
# and is intended to extract information about the current | ||
# build environment - this may change after initial makefile creation | ||
# | ||
################################################################## | ||
|
||
# All 3 of these may be passed via environment variables to force a particular | ||
# date, user, or hostname i.e. if hoping to reproduce an exact binary of a prior build | ||
# They are free-form strings, will be built/linked into the final CONFIGDATA object. | ||
|
||
# Get the current date and time | ||
set(BUILDDATE $ENV{BUILDDATE}) | ||
if (NOT BUILDDATE) | ||
execute_process( | ||
COMMAND date "+%Y%m%d%H%M" | ||
OUTPUT_VARIABLE BUILDDATE | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
) | ||
endif(NOT BUILDDATE) | ||
|
||
# Get the build host | ||
set(BUILDHOST $ENV{HOSTNAME}) | ||
if (NOT BUILDHOST) | ||
execute_process( | ||
COMMAND hostname | ||
OUTPUT_VARIABLE BUILDHOST | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
) | ||
endif (NOT BUILDHOST) | ||
|
||
# Get the user ID | ||
set(BUILDUSER $ENV{USER}) | ||
if (NOT BUILDUSER) | ||
execute_process( | ||
COMMAND whoami | ||
OUTPUT_VARIABLE BUILDUSER | ||
OUTPUT_STRIP_TRAILING_WHITESPACE | ||
) | ||
endif (NOT BUILDUSER) | ||
|
||
# Use configure_file() command to generate the final output file because this can detect | ||
# and only update it if it changes. | ||
set(CFE_KEYVALUE_TABLE_NAME "CFE_BUILD_ENV_TABLE") | ||
configure_file(${BIN}/cfe_build_env.in ${BIN}/src/cfe_build_env_table.c @ONLY) |
Oops, something went wrong.