-
Notifications
You must be signed in to change notification settings - Fork 67
Implement C Pointers3 package #139
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
Conversation
Add rule definition and package files Add Pointers3 to package list in tasks.json
The previous message referenced a "pointer to void type" rather than "pointer to object type" as specified by the query.
Additionally updated the `EXP36-C` test-case and refactored `MEM57-CPP` to move certain classes and predicates to the `Alignment.qll` library for re-use in `EXP36-C`.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Started my review, will add some more comments tomorrow.
c/cert/src/rules/EXP32-C/DoNotAccessVolatileObjectWithNonVolatileReference.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP32-C/DoNotAccessVolatileObjectWithNonVolatileReference.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP32-C/DoNotAccessVolatileObjectWithNonVolatileReference.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP32-C/DoNotAccessVolatileObjectWithNonVolatileReference.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP32-C/DoNotAccessVolatileObjectWithNonVolatileReference.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP36-C/DoNotCastPointerToMoreStrictlyAlignedPointerType.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP36-C/DoNotCastPointerToMoreStrictlyAlignedPointerType.ql
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a few comments for early feedback.
c/cert/src/rules/EXP32-C/DoNotAccessVolatileObjectWithNonVolatileReference.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP32-C/DoNotAccessVolatileObjectWithNonVolatileReference.ql
Outdated
Show resolved
Hide resolved
small note: 8633a30 is the first commit to contain the EXP32-C performance fix and changes to |
@lcartey |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just some minor comments!
c/cert/src/rules/EXP43-C/DoNotPassAlisedPointerToRestrictQualifiedParameter.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP43-C/RestrictPointerReferencesOverlappingObject.ql
Outdated
Show resolved
Hide resolved
Replace local with global data-flow. Modify the query implementation to detect violations of aliasing at block rather than statement scope as defined in the standard.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few final comments, mostly on refining messages a couple of perf/scope issues. Looking good!
c/cert/src/rules/EXP36-C/DoNotCastPointerToMoreStrictlyAlignedPointerType.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP39-C/DoNotAccessVariableViaPointerOfIncompatibleType.ql
Show resolved
Hide resolved
c/cert/src/rules/EXP43-C/DoNotPassAliasedPointerToRestrictQualifiedParam.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP43-C/DoNotPassAliasedPointerToRestrictQualifiedParam.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP43-C/RestrictPointerReferencesOverlappingObject.ql
Outdated
Show resolved
Hide resolved
c/cert/src/rules/EXP43-C/RestrictPointerReferencesOverlappingObject.ql
Outdated
Show resolved
Hide resolved
Co-authored-by: Luke Cartey <5377966+lcartey@users.noreply.github.com>
Remove an accidental `isBarrier` predicate left in from development
I've made changes to address all of the above comments. |
Description
Implements the C Pointers3 package
Change request type
.ql
,.qll
,.qls
or unit tests)Rules with added or modified queries
Release change checklist
A change note (development_handbook.md#change-notes) is required for any pull request which modifies:
If you are only adding new rule queries, a change note is not required.
Author: Is a change note required?
Reviewer: Confirm that either a change note is not required or the change note is required and has been added.
Query development review checklist
For PRs that add new queries or modify existing queries, the following checklist should be completed by both the author and reviewer:
Author
As a rule of thumb, predicates specific to the query should take no more than 1 minute, and for simple queries be under 10 seconds. If this is not the case, this should be highlighted and agreed in the code review process.
Reviewer
As a rule of thumb, predicates specific to the query should take no more than 1 minute, and for simple queries be under 10 seconds. If this is not the case, this should be highlighted and agreed in the code review process.