chiark / gitweb /
shared/capability: don't be too frugal on space for caps
authorTom Gundersen <teg@jklm.no>
Wed, 4 Feb 2015 08:23:24 +0000 (09:23 +0100)
committerTom Gundersen <teg@jklm.no>
Wed, 4 Feb 2015 08:28:42 +0000 (09:28 +0100)
We were dropping the most significant bit. Add an assert to make sure it does not happen again.

Fixes a bug introduced in 7d328b544621d4b1bec936dec612947ad8bfb65a.

src/shared/capability.c

index 3f2f27e23fe4234c2660da30e5d99f76549aff14..57f392a4da887228c616577f63c8b37ca8ad03b5 100644 (file)
@@ -269,12 +269,16 @@ int drop_privileges(uid_t uid, gid_t gid, uint64_t keep_capabilities) {
                 return log_oom();
 
         if (keep_capabilities) {
-                cap_value_t bits[log2u64(keep_capabilities)];
+                cap_value_t bits[u64log2(keep_capabilities) + 1];
 
                 for (i = 0; i < ELEMENTSOF(bits); i++)
                         if (keep_capabilities & (1ULL << i))
                                 bits[j++] = i;
+
+                /* don't keep too many bits */
                 assert((keep_capabilities & (~1ULL << i)) == 0);
+                /* don't throw away too many bits */
+                assert(((keep_capabilities >> i) & (~1ULL >> i)) == 0);
 
                 if (cap_set_flag(d, CAP_EFFECTIVE, j, bits, CAP_SET) < 0 ||
                     cap_set_flag(d, CAP_PERMITTED, j, bits, CAP_SET) < 0) {