Add support for tss_t
thread local objects in Objects.qll
#877
Labels
Difficulty-Medium
A false positive or false negative report which is expected to take 1-5 days effort to address
Impact-Low
Standard-MISRA-C
Objects.qll
has support for identifying objects with different storage durations (static, thread local, allocated, and automatic). However, its thread local object support is limited to_Thread_local
variables.Ideally, a
tss_t
variable would be recognizable as two objects:tss_t
.Unfortunately,
tss_t
currently extendsElement
, which means that it can't have two implementations of theObjectIdentity
class. Alternatively, calls totss_get()
could be consideredObjectIdentity
s, however, that doesn't match the intention of theObjectIdentity
class/library, as the threadlocal is really identified by thetss_t
.The threadlocal object could be identified by the
tss_create
call (similarly to how we identify dynamic memory viamalloc
calls). But it probably makes more sense to haveObjectIdentity
extendLocatable
and then have atss_t
variable produce twoObjectIdenty
s.Otherwise the tss_t object class will closely match the malloc object class, since malloc returns a pointer to the dynamic memory just like
tss_get()
returns a pointer to the thread local. Additional refactoring to share code here will be required.The text was updated successfully, but these errors were encountered: