Bug 214715 - improve thread safety of libcap
Summary: improve thread safety of libcap
Status: RESOLVED CODE_FIX
Alias: None
Product: Tools
Classification: Unclassified
Component: libcap (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: Andrew G. Morgan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-10-14 03:53 UTC by Andrew G. Morgan
Modified: 2021-10-23 04:18 UTC (History)
0 users

See Also:
Kernel Version: n/a
Subsystem:
Regression: No
Bisected commit-id:


Attachments

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.

Note You need to log in before you can comment on or make changes to this bug.