-
Notifications
You must be signed in to change notification settings - Fork 66
Implement Concurrency6 package -- split out Concurrency7 #791
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
fb3c5e7
Implement Concurrency6 package -- split out Concurrency7
MichaelRFairhurst 20bae20
Fix format, remove unneeded test complexity
MichaelRFairhurst 14b7c61
Move 21-25 to Concurrency6
MichaelRFairhurst 3259d17
Fix query formatting
MichaelRFairhurst 9ee2af6
Fix test issues
MichaelRFairhurst 1ed65cf
Fix another stdlib affected test
MichaelRFairhurst a19965e
Fix typo
MichaelRFairhurst 8f5e02c
Merge remote-tracking branch 'origin/main' into michaelrfairhurst/con…
MichaelRFairhurst 46b6fc9
Merge remote-tracking branch 'origin/michaelrfairhurst/concurrency6-p…
MichaelRFairhurst d26d960
Address feedback
MichaelRFairhurst 763f4c1
Fix formatting
MichaelRFairhurst 5ad2588
fix test
MichaelRFairhurst be19ccf
Merge remote-tracking branch 'origin/main' into michaelrfairhurst/con…
MichaelRFairhurst 22e4fd3
fix test affected by changes in test.c
MichaelRFairhurst File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
1 change: 0 additions & 1 deletion
1
c/cert/test/rules/CON39-C/ThreadWasPreviouslyJoinedOrDetached.qlref
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
c/cert/test/rules/CON39-C/ThreadWasPreviouslyJoinedOrDetached.testref
This file contains hidden or 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 @@ | ||
c/common/test/rules/joinordetachthreadonlyonce/JoinOrDetachThreadOnlyOnce.ql |
8 changes: 4 additions & 4 deletions
8
c/cert/test/rules/CON40-C/AtomicVariableTwiceInExpression.expected
This file contains hidden or 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
| test.c:7:18:7:39 | ATOMIC_VAR_INIT(value) | Atomic variable possibly referred to twice in an $@. | test.c:33:3:33:10 | ... += ... | expression | | ||
| test.c:7:18:7:39 | ATOMIC_VAR_INIT(value) | Atomic variable possibly referred to twice in an $@. | test.c:34:3:34:13 | ... = ... | expression | | ||
| test.c:11:3:11:23 | atomic_store(a,b) | Atomic variable possibly referred to twice in an $@. | test.c:11:3:11:23 | atomic_store(a,b) | expression | | ||
| test.c:12:3:12:35 | atomic_store_explicit(a,b,c) | Atomic variable possibly referred to twice in an $@. | test.c:12:3:12:35 | atomic_store_explicit(a,b,c) | expression | | ||
| test.c:25:3:25:49 | atomic_compare_exchange_weak(a,b,c) | Atomic variable possibly referred to twice in an $@. | test.c:25:3:25:49 | atomic_compare_exchange_weak(a,b,c) | expression | | ||
| test.c:26:3:27:42 | atomic_compare_exchange_weak_explicit(a,b,c,d,e) | Atomic variable possibly referred to twice in an $@. | test.c:26:3:27:42 | atomic_compare_exchange_weak_explicit(a,b,c,d,e) | expression | | ||
| test.c:11:3:11:23 | atomic_store(object,desired) | Atomic variable possibly referred to twice in an $@. | test.c:11:3:11:23 | atomic_store(object,desired) | expression | | ||
| test.c:12:3:12:23 | atomic_store_explicit | Atomic variable possibly referred to twice in an $@. | test.c:12:3:12:23 | atomic_store_explicit | expression | | ||
| test.c:25:3:25:49 | atomic_compare_exchange_weak(object,expected,desired) | Atomic variable possibly referred to twice in an $@. | test.c:25:3:25:49 | atomic_compare_exchange_weak(object,expected,desired) | expression | | ||
| test.c:26:3:26:39 | atomic_compare_exchange_weak_explicit | Atomic variable possibly referred to twice in an $@. | test.c:26:3:26:39 | atomic_compare_exchange_weak_explicit | expression | |
8 changes: 4 additions & 4 deletions
8
c/cert/test/rules/CON41-C/WrapFunctionsThatCanFailSpuriouslyInLoop.expected
This file contains hidden or 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
| test.c:6:8:6:46 | atomic_compare_exchange_weak(a,b,c) | Function that can spuriously fail not wrapped in a loop. | | ||
| test.c:10:3:10:41 | atomic_compare_exchange_weak(a,b,c) | Function that can spuriously fail not wrapped in a loop. | | ||
| test.c:12:8:13:47 | atomic_compare_exchange_weak_explicit(a,b,c,d,e) | Function that can spuriously fail not wrapped in a loop. | | ||
| test.c:17:3:17:56 | atomic_compare_exchange_weak_explicit(a,b,c,d,e) | Function that can spuriously fail not wrapped in a loop. | | ||
| test.c:6:8:6:46 | atomic_compare_exchange_weak(object,expected,desired) | Function that can spuriously fail not wrapped in a loop. | | ||
| test.c:10:3:10:41 | atomic_compare_exchange_weak(object,expected,desired) | Function that can spuriously fail not wrapped in a loop. | | ||
| test.c:12:8:12:44 | atomic_compare_exchange_weak_explicit | Function that can spuriously fail not wrapped in a loop. | | ||
| test.c:17:3:17:39 | atomic_compare_exchange_weak_explicit | Function that can spuriously fail not wrapped in a loop. | |
This file contains hidden or 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 |
---|---|---|
@@ -1,9 +1,69 @@ | ||
#define atomic_compare_exchange_weak(a, b, c) 0 | ||
#define atomic_compare_exchange_weak_explicit(a, b, c, d, e) 0 | ||
#define atomic_load(a) 0 | ||
#define atomic_load_explicit(a, b) | ||
#define atomic_store(a, b) 0 | ||
#define atomic_store_explicit(a, b, c) 0 | ||
#define ATOMIC_VAR_INIT(value) (value) | ||
#define atomic_is_lock_free(obj) __c11_atomic_is_lock_free(sizeof(*(obj))) | ||
typedef _Atomic(int) atomic_int; | ||
typedef _Atomic(int) atomic_int; | ||
|
||
#define __ATOMIC_RELAXED 0 | ||
#define __ATOMIC_CONSUME 1 | ||
#define __ATOMIC_ACQUIRE 2 | ||
#define __ATOMIC_RELEASE 3 | ||
#define __ATOMIC_ACQ_REL 4 | ||
#define __ATOMIC_SEQ_CST 5 | ||
|
||
typedef enum memory_order { | ||
memory_order_relaxed = __ATOMIC_RELAXED, | ||
memory_order_consume = __ATOMIC_CONSUME, | ||
memory_order_acquire = __ATOMIC_ACQUIRE, | ||
memory_order_release = __ATOMIC_RELEASE, | ||
memory_order_acq_rel = __ATOMIC_ACQ_REL, | ||
memory_order_seq_cst = __ATOMIC_SEQ_CST | ||
} memory_order; | ||
|
||
void atomic_thread_fence(memory_order); | ||
void atomic_signal_fence(memory_order); | ||
|
||
#define atomic_thread_fence(order) __c11_atomic_thread_fence(order) | ||
#define atomic_signal_fence(order) __c11_atomic_signal_fence(order) | ||
|
||
#define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST) | ||
#define atomic_store_explicit __c11_atomic_store | ||
|
||
#define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST) | ||
#define atomic_load_explicit __c11_atomic_load | ||
|
||
#define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST) | ||
#define atomic_exchange_explicit __c11_atomic_exchange | ||
|
||
#define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST) | ||
#define atomic_compare_exchange_strong_explicit __c11_atomic_compare_exchange_strong | ||
|
||
#define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST) | ||
#define atomic_compare_exchange_weak_explicit __c11_atomic_compare_exchange_weak | ||
|
||
#define atomic_fetch_add(object, operand) __c11_atomic_fetch_add(object, operand, __ATOMIC_SEQ_CST) | ||
#define atomic_fetch_add_explicit __c11_atomic_fetch_add | ||
|
||
#define atomic_fetch_sub(object, operand) __c11_atomic_fetch_sub(object, operand, __ATOMIC_SEQ_CST) | ||
#define atomic_fetch_sub_explicit __c11_atomic_fetch_sub | ||
|
||
#define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) | ||
#define atomic_fetch_or_explicit __c11_atomic_fetch_or | ||
|
||
#define atomic_fetch_xor(object, operand) __c11_atomic_fetch_xor(object, operand, __ATOMIC_SEQ_CST) | ||
#define atomic_fetch_xor_explicit __c11_atomic_fetch_xor | ||
|
||
#define atomic_fetch_and(object, operand) __c11_atomic_fetch_and(object, operand, __ATOMIC_SEQ_CST) | ||
#define atomic_fetch_and_explicit __c11_atomic_fetch_and | ||
|
||
typedef struct atomic_flag { _Atomic(_Bool) _Value; } atomic_flag; | ||
|
||
_Bool atomic_flag_test_and_set(volatile atomic_flag *); | ||
_Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *, memory_order); | ||
|
||
void atomic_flag_clear(volatile atomic_flag *); | ||
void atomic_flag_clear_explicit(volatile atomic_flag *, memory_order); | ||
|
||
#define atomic_flag_test_and_set(object) __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST) | ||
#define atomic_flag_test_and_set_explicit(object, order) __c11_atomic_exchange(&(object)->_Value, 1, order) | ||
|
||
#define atomic_flag_clear(object) __c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST) | ||
#define atomic_flag_clear_explicit(object, order) __c11_atomic_store(&(object)->_Value, 0, order) |
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
c/common/test/rules/joinordetachthreadonlyonce/JoinOrDetachThreadOnlyOnce.ql
This file contains hidden or 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,4 @@ | ||
// GENERATED FILE - DO NOT MODIFY | ||
import codingstandards.cpp.rules.joinordetachthreadonlyonce.JoinOrDetachThreadOnlyOnce | ||
|
||
class TestFileQuery extends JoinOrDetachThreadOnlyOnceSharedQuery, TestQuery { } |
File renamed without changes.
This file contains hidden or 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,8 @@ | ||
- description: MISRA C 2012 (Audit) | ||
- qlpack: codeql/misra-c-coding-standards | ||
- include: | ||
kind: | ||
- problem | ||
- path-problem | ||
tags contain: | ||
- external/misra/c/audit |
This file contains hidden or 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,25 @@ | ||
/** | ||
* @id c/misra/not-no-deadlocks-between-threads | ||
* @name DIR-5-2: There shall be no deadlocks between threads | ||
* @description Circular waits leading to thread deadlocks may be avoided by locking in a predefined | ||
* order. | ||
* @kind problem | ||
* @precision very-high | ||
* @problem.severity error | ||
* @tags external/misra/id/dir-5-2 | ||
* external/misra/c/2012/amendment4 | ||
* correctness | ||
* concurrency | ||
* external/misra/obligation/required | ||
*/ | ||
|
||
import cpp | ||
import codingstandards.c.misra | ||
import codingstandards.cpp.rules.preventdeadlockbylockinginpredefinedorder.PreventDeadlockByLockingInPredefinedOrder | ||
|
||
class NotNoDeadlocksBetweenThreadsQuery extends PreventDeadlockByLockingInPredefinedOrderSharedQuery | ||
{ | ||
NotNoDeadlocksBetweenThreadsQuery() { | ||
this = Concurrency6Package::notNoDeadlocksBetweenThreadsQuery() | ||
} | ||
} |
This file contains hidden or 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,29 @@ | ||
/** | ||
* @id c/misra/banned-dynamic-thread-creation | ||
* @name DIR-5-3: There shall be no dynamic thread creation | ||
* @description Creating threads outside of a well-defined program start-up phase creates | ||
* uncertainty in program behavior and concurrency overhead costs. | ||
* @kind problem | ||
* @precision low | ||
* @problem.severity error | ||
* @tags external/misra/id/dir-5-3 | ||
* external/misra/c/2012/amendment4 | ||
* external/misra/c/audit | ||
* correctness | ||
* maintainability | ||
* concurrency | ||
* performance | ||
* external/misra/obligation/required | ||
*/ | ||
|
||
import cpp | ||
import codingstandards.c.misra | ||
import codingstandards.cpp.Concurrency | ||
|
||
from CThreadCreateCall tc, Function enclosingFunction | ||
where | ||
not isExcluded(tc, Concurrency6Package::bannedDynamicThreadCreationQuery()) and | ||
enclosingFunction = tc.getEnclosingFunction() and | ||
not enclosingFunction.getName() = "main" | ||
select tc, "Possible dynamic creation of thread outside initialization in function '$@'.", | ||
enclosingFunction, enclosingFunction.toString() |
This file contains hidden or 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,38 @@ | ||
/** | ||
* @id c/misra/thread-created-by-thread | ||
* @name DIR-5-3: Threads shall not be created by other threads | ||
* @description Creating threads within threads creates uncertainty in program behavior and | ||
* concurrency overhead costs. | ||
* @kind problem | ||
* @precision high | ||
* @problem.severity error | ||
* @tags external/misra/id/dir-5-3 | ||
* external/misra/c/2012/amendment4 | ||
* correctness | ||
* maintainability | ||
* concurrency | ||
* performance | ||
* external/misra/obligation/required | ||
*/ | ||
|
||
import cpp | ||
import codingstandards.c.misra | ||
import codingstandards.cpp.Concurrency | ||
|
||
class CThreadRoot extends Function { | ||
CThreadCreateCall threadCreate; | ||
|
||
CThreadRoot() { threadCreate.getFunction() = this } | ||
|
||
/* Get a function which is reachable from this function */ | ||
Function getAReachableFunction() { calls*(result) } | ||
|
||
CThreadCreateCall getACThreadCreateCall() { result = threadCreate } | ||
} | ||
|
||
from CThreadCreateCall tc, CThreadRoot threadRoot | ||
where | ||
not isExcluded(tc, Concurrency6Package::threadCreatedByThreadQuery()) and | ||
tc.getEnclosingFunction() = threadRoot.getAReachableFunction() | ||
select tc, "Thread creation call reachable from function '$@', which may also be $@.", threadRoot, | ||
threadRoot.toString(), threadRoot.getACThreadCreateCall(), "started as a thread" |
40 changes: 40 additions & 0 deletions
40
c/misra/src/rules/RULE-12-6/AtomicAggregateObjectDirectlyAccessed.ql
This file contains hidden or 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,40 @@ | ||
/** | ||
* @id c/misra/atomic-aggregate-object-directly-accessed | ||
* @name RULE-12-6: Structure and union members of atomic objects shall not be directly accessed | ||
* @description Accessing a member of an atomic structure or union results in undefined behavior. | ||
* @kind problem | ||
* @precision very-high | ||
* @problem.severity error | ||
* @tags external/misra/id/rule-12-6 | ||
* external/misra/c/2012/amendment4 | ||
* correctness | ||
* concurrency | ||
* external/misra/obligation/required | ||
*/ | ||
|
||
import cpp | ||
import codingstandards.c.misra | ||
|
||
from Expr expr, Field field | ||
where | ||
not isExcluded(expr, Concurrency6Package::atomicAggregateObjectDirectlyAccessedQuery()) and | ||
not expr.isUnevaluated() and | ||
( | ||
exists(FieldAccess fa | | ||
lcartey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
expr = fa and | ||
fa.getQualifier().getType().hasSpecifier("atomic") and | ||
field = fa.getTarget() | ||
) | ||
or | ||
exists(PointerFieldAccess fa | | ||
expr = fa and | ||
fa.getQualifier() | ||
.getType() | ||
.stripTopLevelSpecifiers() | ||
.(PointerType) | ||
.getBaseType() | ||
.hasSpecifier("atomic") and | ||
field = fa.getTarget() | ||
) | ||
) | ||
select expr, "Invalid access to member '$@' on atomic struct or union.", field, field.getName() |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.