uidgid: make sure we fit into one cacheline

When I expanded uidgid mappings I intended for a struct uid_gid_map to
fit into a single cacheline on x86 as they tend to be pretty
performance sensitive (idmapped mounts etc). But a 4 byte hole was added
that brought it over 64 bytes. Fix that by adding the static extent
array and the extent counter into a substruct. C's type punning for
unions guarantees that we can access ->nr_extents even if the last
written to member wasn't within the same object. This is also what we
rely on in struct_group() and friends. This of course relies on
non-strict aliasing which we don't do.

99) If the member used to read the contents of a union object is not the
    same as the member last used to store a value in the object, the
    appropriate part of the object representation of the value is
    reinterpreted as an object representation in the new type as
    described in 6.2.6 (a process sometimes called "type punning").

Link: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2310.pdf
Link: https://lore.kernel.org/r/20240910-work-uid_gid_map-v1-1-e6bc761363ed@kernel.org
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
Christian Brauner 2024-09-10 10:16:39 +02:00
parent 698e7d1680
commit 2077006d47
No known key found for this signature in database
GPG Key ID: 91C61BC06578DCA2
2 changed files with 7 additions and 5 deletions

View File

@ -21,9 +21,11 @@ struct uid_gid_extent {
}; };
struct uid_gid_map { /* 64 bytes -- 1 cache line */ struct uid_gid_map { /* 64 bytes -- 1 cache line */
u32 nr_extents;
union { union {
struct uid_gid_extent extent[UID_GID_MAP_MAX_BASE_EXTENTS]; struct {
struct uid_gid_extent extent[UID_GID_MAP_MAX_BASE_EXTENTS];
u32 nr_extents;
};
struct { struct {
struct uid_gid_extent *forward; struct uid_gid_extent *forward;
struct uid_gid_extent *reverse; struct uid_gid_extent *reverse;

View File

@ -36,33 +36,33 @@ EXPORT_SYMBOL_GPL(init_binfmt_misc);
*/ */
struct user_namespace init_user_ns = { struct user_namespace init_user_ns = {
.uid_map = { .uid_map = {
.nr_extents = 1,
{ {
.extent[0] = { .extent[0] = {
.first = 0, .first = 0,
.lower_first = 0, .lower_first = 0,
.count = 4294967295U, .count = 4294967295U,
}, },
.nr_extents = 1,
}, },
}, },
.gid_map = { .gid_map = {
.nr_extents = 1,
{ {
.extent[0] = { .extent[0] = {
.first = 0, .first = 0,
.lower_first = 0, .lower_first = 0,
.count = 4294967295U, .count = 4294967295U,
}, },
.nr_extents = 1,
}, },
}, },
.projid_map = { .projid_map = {
.nr_extents = 1,
{ {
.extent[0] = { .extent[0] = {
.first = 0, .first = 0,
.lower_first = 0, .lower_first = 0,
.count = 4294967295U, .count = 4294967295U,
}, },
.nr_extents = 1,
}, },
}, },
.ns.count = REFCOUNT_INIT(3), .ns.count = REFCOUNT_INIT(3),