1
Fork 0
turbonss/src/user.zig

343 lines
10 KiB
Zig
Raw Normal View History

2022-02-18 17:34:50 +02:00
const std = @import("std");
2022-02-19 18:18:14 +02:00
const pad = @import("padding.zig");
2022-02-18 20:29:45 +02:00
2022-02-20 12:44:21 +02:00
const assert = std.debug.assert;
2022-02-18 20:29:45 +02:00
const Allocator = std.mem.Allocator;
2022-02-19 16:56:30 +02:00
const ArrayList = std.ArrayList;
2022-02-24 10:13:31 +02:00
const math = std.math;
const mem = std.mem;
2022-02-18 17:34:50 +02:00
2022-02-24 10:13:31 +02:00
// TODO(motiejus) move to the struct where it's used.
const shellIndexProto = fn (u6) []const u8;
2022-02-20 09:47:47 +02:00
const PackedUserAlignmentBits = 3;
2022-02-18 17:34:50 +02:00
2022-02-18 20:29:45 +02:00
pub const User = struct {
uid: u32,
gid: u32,
name: []const u8,
gecos: []const u8,
home: []const u8,
shell: []const u8,
};
2022-02-24 10:13:31 +02:00
pub const PackedUser = struct {
2022-02-19 11:35:29 +02:00
const shellIndexFnType = fn ([]const u8) ?u6;
2022-02-20 09:47:47 +02:00
2022-02-24 17:35:35 +02:00
const InnerSize = @divExact(@bitSizeOf(Inner), 8);
2022-02-24 10:13:31 +02:00
const Inner = packed struct {
uid: u32,
gid: u32,
additional_gids_offset: u29,
shell_here: bool,
shell_len_or_idx: u6,
home_len: u6,
name_is_a_suffix: bool,
name_len: u5,
gecos_len: u8,
2022-02-25 10:48:19 +02:00
fn homeLen(self: *const Inner) usize {
2022-02-24 10:13:31 +02:00
return @as(u32, self.home_len) + 1;
}
2022-02-25 10:48:19 +02:00
fn nameStart(self: *const Inner) usize {
const name_len = self.nameLen();
if (self.name_is_a_suffix) {
return self.homeLen() - name_len;
} else {
return self.homeLen();
}
}
fn nameLen(self: *const Inner) usize {
2022-02-24 10:13:31 +02:00
return @as(u32, self.name_len) + 1;
}
2022-02-25 10:48:19 +02:00
fn gecosLen(self: *const Inner) usize {
2022-02-24 10:13:31 +02:00
return self.gecos_len;
}
2022-02-25 10:48:19 +02:00
fn gecosStart(self: *const Inner) usize {
if (self.name_is_a_suffix) {
return self.homeLen();
} else {
return self.homeLen() + self.nameLen();
}
}
fn maybeShellStart(self: *const Inner) usize {
assert(self.shell_here);
return self.gecosStart() + self.gecosLen();
}
fn shellLen(self: *const Inner) usize {
2022-02-24 10:13:31 +02:00
return @as(u32, self.shell_len_or_idx) + 1;
}
// blobLength returns the length of the blob storing string values.
2022-02-25 10:48:19 +02:00
fn blobLength(self: *const Inner) usize {
var result: usize = self.homeLen() + self.gecosLen();
2022-02-24 10:13:31 +02:00
if (!self.name_is_a_suffix) {
result += self.nameLen();
}
if (self.shell_here) {
result += self.shellLen();
}
2022-02-18 20:29:45 +02:00
2022-02-24 10:13:31 +02:00
return result;
}
};
2022-02-25 10:48:19 +02:00
inner: *const Inner,
2022-02-24 10:13:31 +02:00
userdata: []const u8,
2022-02-25 10:48:19 +02:00
pub const Entry = struct {
user: PackedUser,
next: ?[]const u8,
};
pub fn fromBytes(bytes: []const u8) Entry {
2022-02-24 10:13:31 +02:00
const inner = std.mem.bytesAsValue(
2022-02-25 10:48:19 +02:00
Inner,
2022-02-24 17:35:35 +02:00
// https://github.com/ziglang/zig/issues/10958
2022-02-25 10:48:19 +02:00
bytes[0..@sizeOf(Inner)],
2022-02-24 10:13:31 +02:00
);
const startBlob = InnerSize;
const endBlob = startBlob + inner.blobLength();
2022-02-25 10:48:19 +02:00
const nextStart = pad.roundUp(usize, PackedUserAlignmentBits, endBlob);
var next: ?[]const u8 = null;
if (nextStart < bytes.len) {
next = bytes[nextStart..];
}
return Entry{
.user = PackedUser{
.inner = inner,
.userdata = bytes[startBlob..endBlob],
},
.next = next,
2022-02-18 20:29:45 +02:00
};
}
2022-02-24 10:13:31 +02:00
fn downCast(comptime T: type, n: u64) error{InvalidRecord}!T {
2022-02-20 09:19:59 +02:00
return std.math.cast(T, n) catch |err| switch (err) {
2022-02-20 09:10:25 +02:00
error.Overflow => {
return error.InvalidRecord;
},
2022-02-20 09:19:59 +02:00
};
2022-02-20 09:10:25 +02:00
}
2022-02-24 10:13:31 +02:00
fn validateUtf8(s: []const u8) error{InvalidRecord}!void {
if (!std.unicode.utf8ValidateSlice(s)) {
return error.InvalidRecord;
}
}
2022-02-24 10:13:31 +02:00
// packTo packs the User record and copies it to the given byte slice. The
// slice must have at least maxRecordSize() bytes available.
2022-02-25 10:48:19 +02:00
// The slice is passed as a pointer, so it can be mutated.
pub fn packTo(buf: *[]u8, user: User, shellIndexFn: shellIndexFnType) error{InvalidRecord}!void {
2022-02-24 17:35:35 +02:00
// function arguments are consts. We need to mutate the underlying
// slice, so passing it via pointer instead.
2022-02-20 09:10:25 +02:00
const home_len = try downCast(u6, user.home.len - 1);
const name_len = try downCast(u5, user.name.len - 1);
const shell_len = try downCast(u6, user.shell.len - 1);
2022-02-24 05:32:27 +02:00
const gecos_len = try downCast(u8, user.gecos.len);
2022-02-19 11:35:29 +02:00
try validateUtf8(user.home);
try validateUtf8(user.name);
try validateUtf8(user.shell);
try validateUtf8(user.gecos);
2022-02-24 10:13:31 +02:00
const inner = Inner{
2022-02-19 16:56:30 +02:00
.uid = user.uid,
.gid = user.gid,
2022-02-24 10:13:31 +02:00
.additional_gids_offset = std.math.maxInt(u29),
.shell_here = shellIndexFn(user.shell) == null,
.shell_len_or_idx = shellIndexFn(user.shell) orelse shell_len,
2022-02-19 11:35:29 +02:00
.home_len = home_len,
2022-02-19 16:56:30 +02:00
.name_is_a_suffix = std.mem.endsWith(u8, user.home, user.name),
2022-02-19 11:35:29 +02:00
.name_len = name_len,
.gecos_len = gecos_len,
};
2022-02-24 10:13:31 +02:00
const innerBytes = mem.asBytes(&inner);
2022-02-25 10:48:19 +02:00
var pos: usize = buf.*.len;
buf.*.len += InnerSize +
2022-02-24 17:33:27 +02:00
user.home.len +
user.gecos.len;
2022-02-24 10:13:31 +02:00
2022-02-25 10:48:19 +02:00
// innerBytes.len is longer than InnerSize. We want to copy
// only the InnerSize-number of bytes.
mem.copy(u8, buf.*[pos .. pos + InnerSize], innerBytes[0..InnerSize]);
pos += InnerSize;
mem.copy(u8, buf.*[pos .. pos + user.home.len], user.home);
pos += user.home.len;
2022-02-19 11:35:29 +02:00
2022-02-24 10:13:31 +02:00
if (!inner.name_is_a_suffix) {
2022-02-25 10:48:19 +02:00
buf.*.len += user.name.len;
mem.copy(u8, buf.*[pos .. pos + user.name.len], user.name);
pos += user.name.len;
2022-02-19 11:35:29 +02:00
}
2022-02-25 10:48:19 +02:00
mem.copy(u8, buf.*[pos .. pos + user.gecos.len], user.gecos);
pos += user.gecos.len;
2022-02-24 10:13:31 +02:00
if (inner.shell_here) {
2022-02-25 10:48:19 +02:00
buf.*.len += user.shell.len;
mem.copy(u8, buf.*[pos .. pos + user.shell.len], user.shell);
pos += user.shell.len;
2022-02-19 11:35:29 +02:00
}
2022-02-19 18:18:14 +02:00
2022-02-25 10:48:19 +02:00
const padding = pad.roundUpPadding(u64, PackedUserAlignmentBits, pos);
buf.*.len += padding;
mem.set(u8, buf.*[pos .. pos + padding], 0);
2022-02-24 10:13:31 +02:00
}
// maxSize is the maximum number of records a PackedUser can take
// (struct + userdata).
pub fn maxSize() usize {
2022-02-25 10:48:19 +02:00
comptime {
const unpadded = InnerSize +
std.math.maxInt(u6) + // home
std.math.maxInt(u5) + // name
std.math.maxInt(u6) + // shell
std.math.maxInt(u8); // gecos
return pad.roundUp(u64, PackedUserAlignmentBits, unpadded);
}
}
pub fn uid(self: *const PackedUser) u32 {
return self.inner.uid;
}
pub fn gid(self: *const PackedUser) u32 {
return self.inner.gid;
2022-02-24 10:13:31 +02:00
}
pub fn home(self: *const PackedUser) []const u8 {
return self.userdata[0..self.inner.homeLen()];
}
pub fn name(self: *const PackedUser) []const u8 {
2022-02-25 10:48:19 +02:00
const name_pos = self.inner.nameStart();
2022-02-24 10:13:31 +02:00
const name_len = self.inner.nameLen();
return self.userdata[name_pos .. name_pos + name_len];
}
pub fn gecos(self: *const PackedUser) []const u8 {
2022-02-25 10:48:19 +02:00
const gecos_pos = self.inner.gecosStart();
2022-02-24 10:13:31 +02:00
const gecos_len = self.inner.gecosLen();
return self.userdata[gecos_pos .. gecos_pos + gecos_len];
}
pub fn shell(self: *const PackedUser, shellIndex: shellIndexProto) []const u8 {
if (self.inner.shell_here) {
2022-02-25 10:48:19 +02:00
const shell_pos = self.inner.maybeShellStart();
2022-02-24 10:13:31 +02:00
const shell_len = self.inner.shellLen();
return self.userdata[shell_pos .. shell_pos + shell_len];
}
return shellIndex(self.inner.shell_len_or_idx);
2022-02-18 20:29:45 +02:00
}
};
2022-02-25 10:48:19 +02:00
pub fn userIterator(section: []const u8, shellIndex: shellIndexProto) Iterator {
return Iterator{
.section = section,
.shellIndex = shellIndex,
2022-02-20 12:44:21 +02:00
};
2022-02-25 10:48:19 +02:00
}
2022-02-20 12:44:21 +02:00
2022-02-25 10:48:19 +02:00
pub const Iterator = struct {
section: ?[]const u8,
shellIndex: shellIndexProto,
2022-02-25 10:48:19 +02:00
pub fn next(it: *Iterator) ?PackedUser {
if (it.section) |section| {
const entry = PackedUser.fromBytes(section);
it.section = entry.next;
return entry.user;
2022-02-20 14:13:06 +02:00
}
2022-02-25 10:48:19 +02:00
return null;
2022-02-20 14:13:06 +02:00
}
2022-02-20 12:44:21 +02:00
};
2022-02-18 17:34:50 +02:00
const testing = std.testing;
test "PackedUser internal and external alignment" {
2022-02-24 05:32:27 +02:00
// External padding (PackedUserAlignmentBits) must be higher or equal to
// the "internal" PackedUser alignment. By aligning PackedUser we are also
// working around https://github.com/ziglang/zig/issues/10958 ; PackedUser
// cannot be converted from/to [@bitSizeOf(PackedUser)/8]u8;
// asBytes/bytesAsValue use @sizeOf, which is larger. Now we are putting no
// more than 1, but it probably could be higher.
2022-02-24 05:51:04 +02:00
try testing.expect(@sizeOf(PackedUser) * 8 - @bitSizeOf(PackedUser) <= 8);
2022-02-18 17:34:50 +02:00
}
2022-02-19 11:35:29 +02:00
fn testShellIndex(shell: []const u8) ?u6 {
if (std.mem.eql(u8, shell, "/bin/bash")) {
return 0;
} else if (std.mem.eql(u8, shell, "/bin/zsh")) {
return 1;
}
return null;
}
2022-02-20 13:17:05 +02:00
fn testShell(index: u6) []const u8 {
return switch (index) {
0 => "/bin/bash",
1 => "/bin/zsh",
else => unreachable,
};
}
test "construct PackedUser section" {
2022-02-19 16:56:30 +02:00
var buf = ArrayList(u8).init(testing.allocator);
defer buf.deinit();
2022-02-22 06:44:58 +02:00
const users = [_]User{ User{
.uid = 1000,
.gid = 1000,
.name = "vidmantas",
.gecos = "Vidmantas Kaminskas",
.home = "/home/vidmantas",
.shell = "/bin/bash",
}, User{
.uid = 1001,
.gid = 1001,
.name = "svc-foo",
.gecos = "Service Account",
.home = "/home/service1",
.shell = "/usr/bin/nologin",
}, User{
2022-02-22 15:04:59 +02:00
.uid = 0,
2022-02-25 10:48:19 +02:00
.gid = math.maxInt(u32),
.name = "Name" ** 8,
.gecos = "Gecos" ** 51,
.home = "Home" ** 16,
.shell = "She.l..l" ** 8,
}, User{
.uid = 1002,
.gid = 1002,
.name = "svc-bar",
.gecos = "",
.home = "/",
.shell = "/",
2022-02-22 06:44:58 +02:00
} };
2022-02-20 13:17:05 +02:00
for (users) |user| {
2022-02-24 10:13:31 +02:00
try buf.ensureUnusedCapacity(PackedUser.maxSize());
try PackedUser.packTo(&buf.items, user, testShellIndex);
2022-02-20 13:17:05 +02:00
}
2022-02-25 10:48:19 +02:00
var it = userIterator(buf.items, testShell);
var i: u32 = 0;
while (it.next()) |user| : (i += 1) {
try testing.expectEqual(users[i].uid, user.uid());
try testing.expectEqual(users[i].gid, user.gid());
try testing.expectEqualStrings(users[i].name, user.name());
try testing.expectEqualStrings(users[i].gecos, user.gecos());
try testing.expectEqualStrings(users[i].home, user.home());
try testing.expectEqualStrings(users[i].shell, user.shell(testShell));
}
try testing.expectEqual(users.len, i);
2022-02-19 11:35:29 +02:00
}