Bug 214715

Summary: improve thread safety of libcap
Product: Tools Reporter: Andrew G. Morgan (morgan)
Component: libcapAssignee: Andrew G. Morgan (morgan)
Status: RESOLVED CODE_FIX    
Severity: normal    
Priority: P1    
Hardware: All   
OS: Linux   
Kernel Version: n/a Subsystem:
Regression: No Bisected commit-id:

Description Andrew G. Morgan 2021-10-14 03:53:19 UTC
Consider the case of two threads operating simultaneously on a single cap_t value. There are cases where libcap APIs can observe partially updated state in such a cap_t value because one is reading properties of that set while the other is writing them.

The Go API carefully locks Set values while operating on them, we should restore parity by having libcap do something similar. I'm going to use the __atomic_* primitives to avoid mandatory libthread/libpsx dependencies.