Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Add a C++ static code analyser in the build #2297

Open
marcalff opened this issue Sep 6, 2023 · 8 comments
Open

[CI] Add a C++ static code analyser in the build #2297

marcalff opened this issue Sep 6, 2023 · 8 comments
Assignees
Labels
bug Something isn't working help wanted Good for taking. Extra help will be provided by maintainers Stale

Comments

@marcalff
Copy link
Member

marcalff commented Sep 6, 2023

This is needed for security audits on the code.

Parent issue: #2282

@marcalff marcalff added the bug Something isn't working label Sep 6, 2023
@marcalff marcalff self-assigned this Sep 6, 2023
@github-actions github-actions bot added the needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. label Sep 6, 2023
@marcalff marcalff removed the needs-triage Indicates an issue or PR lacks a `triage/foo` label and requires one. label Sep 6, 2023
@sakshi-1505
Copy link

/assign

@sakshi-1505
Copy link

@marcalff I am an Outreachy candidate, can you please assign me this issue?

@lalitb
Copy link
Member

lalitb commented Oct 6, 2023

@sakshi-1505 - Thanks for the interest on this. I think @marcalff is travelling this week, so mayn't respond. And don't know if he has already done these changes locally. For now. it's assigned to you along with @marcalff. Feel free to come up with draft PR or suggestions to discuss further. @marcalff has some good ideas to enable this, hopefully he can guide you over.

@marcalff
Copy link
Member Author

marcalff commented Oct 7, 2023

@sakshi-1505 Thanks for volunteering, and welcome.

First step is to investigate the C++ tooling available, and decide which tool to use.

Second step will be to implement CI scripts to use the tool we decide to pick.

@sakshi-1505
Copy link

We took a look into multiple static check tools for cpp, and we had two top contenders: cppcheck & clang static analyser.

Here's the brief comparison b/w both:

I did a comparison b/w clang static analyzer & cppcheck. Few of the difference which I could figure out were:

  • The major difference b/w them is cppcheck uses flow sensitive static checks & clang analyser uses path sensitive. Due to the same no. of false positives are quite less in clang analyser.
  • Now due to the above reason, clang analyser is quite slow in comparision to cppcheck.
  • There are not enough support/community around clang analyser as there are around cppcheck.

I also did take a bit of GPT help here & here's what GPT says:

Cppcheck is a good choice for developers who are looking for a free and easy-to-use static check tool. It is also a good choice for developers who are new to static code analysis. Cppcheck can detect a wide range of bugs and security vulnerabilities, but it may produce some false positives.

Clang Static Analyzer is a good choice for developers who need a static check tool that is highly accurate and can handle large and complex codebases. However, it is important to note that Clang Static Analyzer can be slow and difficult to use.
I checked out both & I can integrate either of them in our CI pipeline, although since there is gh-action for cppcheck which will make it's integration more faster.

Copy link

github-actions bot commented Dec 8, 2023

This issue was marked as stale due to lack of activity.

@github-actions github-actions bot added the Stale label Dec 8, 2023
@marcalff marcalff added the help wanted Good for taking. Extra help will be provided by maintainers label Jan 10, 2024
Copy link

This issue is available for anyone to work on. Make sure to reference this issue in your pull request.
✨ Thank you for your contribution! ✨

@github-actions github-actions bot removed the Stale label Jan 12, 2024
Copy link

This issue was marked as stale due to lack of activity.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working help wanted Good for taking. Extra help will be provided by maintainers Stale
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants