4df9f89cb1
During resolution of classcommon statements (cil_resolve_classcommon), we add the number of class common permissions to the values of the class permissions. This way, the internal CIL values of the common permission go from 0 to N, and the values of class permissions start at N+1 (where N is the number of common permissions). When we reset a class due to reresolve (cil_reset_class), we must then reverse this process by subtracting the number of common permissions from the class permission values. However, there is a bug when resetting classes in which we subtract the number of common permissions from the common permissions value rather than the class permissions value. This means that class permissions could be too high (since they are not reduced on reset) and common permissions underflowed (since they are reduced, but should not be). In most cases, this didn't actually matter since these permission values aren't used when creating the binary. Additionally, we always access the permissions via a hash table lookup or map, and then use whatever value they have to set bits in bitmaps. As long as the bits in the bitmap match the values, things work as expected. However, the one case where these values do matter is if you use 'all' in a class permission set. In this case, we enable bits 0 through number of permissions in a bitmap. But because our permission values are all mixed up, these enabled bits do not correspond to the permission values. This results in making it look like no permissions were set in a class permission set, and the rule is essentially ignored. This patch fixes the bug so that the values of class permissions are properly reset, allowing one to use 'all' in class permission sets in a policy that reresolves. Signed-off-by: Steve Lawrence <slawrence@tresys.com> Signed-off-by: James Carter <jwcart2@tycho.nsa.gov> |
||
---|---|---|
.. | ||
cil | ||
include | ||
man | ||
src | ||
tests | ||
utils | ||
.gitignore | ||
Android.mk | ||
ChangeLog | ||
COPYING | ||
Makefile | ||
VERSION |