1
Fork 0
turbonss/src/user.zig

121 lines
3.7 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
const Allocator = std.mem.Allocator;
2022-02-19 16:56:30 +02:00
const ArrayList = std.ArrayList;
2022-02-19 11:35:29 +02:00
const cast = std.math.cast;
2022-02-18 17:34:50 +02:00
2022-02-19 16:04:13 +02:00
pub const PackedUserSize = @divExact(@bitSizeOf(PackedUser), 8);
pub const PackedUser = packed struct {
2022-02-18 17:34:50 +02:00
uid: u32,
gid: u32,
additional_gids_offset: u29,
2022-02-19 11:35:29 +02:00
shell_here: bool,
2022-02-18 20:36:32 +02:00
shell_len_or_idx: u6,
2022-02-19 11:35:29 +02:00
home_len: u6,
name_is_a_suffix: bool,
name_len: u5,
2022-02-18 17:34:50 +02:00
gecos_len: u8,
};
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,
};
// UserWriter accepts a naive User struct and returns a PackedUser
pub const UserWriter = struct {
// shellIndexFnType is a signature for a function that accepts a shell
// string and returns it's index in the global shell section. Passing a
// function makes tests easier, and removes the Shell dependency of this
// module.
2022-02-19 11:35:29 +02:00
const shellIndexFnType = fn ([]const u8) ?u6;
2022-02-19 22:10:55 +02:00
appendTo: *ArrayList(u8),
shellIndexFn: shellIndexFnType,
2022-02-18 20:29:45 +02:00
2022-02-19 22:10:55 +02:00
pub fn init(appendTo: *ArrayList(u8), shellIndexFn: shellIndexFnType) UserWriter {
2022-02-18 20:29:45 +02:00
return UserWriter{
2022-02-19 16:56:30 +02:00
.appendTo = appendTo,
.shellIndexFn = shellIndexFn,
2022-02-18 20:29:45 +02:00
};
}
2022-02-19 16:56:30 +02:00
const fromUserErr = error{InvalidRecord};
2022-02-19 11:35:29 +02:00
2022-02-19 16:56:30 +02:00
pub fn appendUser(self: *UserWriter, user: User) !void {
const home_len = cast(u6, user.home.len - 1) catch return error.InvalidRecord;
2022-02-19 11:35:29 +02:00
const name_len = cast(u5, user.name.len - 1) catch return error.InvalidRecord;
const shell_len = cast(u6, user.shell.len - 1) catch return error.InvalidRecord;
const gecos_len = cast(u8, user.gecos.len) catch return error.InvalidRecord;
var puser = PackedUser{
2022-02-19 16:56:30 +02:00
.uid = user.uid,
.gid = user.gid,
2022-02-19 11:35:29 +02:00
.additional_gids_offset = std.math.maxInt(u29), // needs second pass
2022-02-19 16:56:30 +02:00
.shell_here = self.shellIndexFn(user.shell) == null,
.shell_len_or_idx = self.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-19 16:56:30 +02:00
try self.appendTo.appendSlice(std.mem.asBytes(&puser));
try self.appendTo.appendSlice(user.home);
2022-02-19 11:35:29 +02:00
if (!puser.name_is_a_suffix) {
2022-02-19 16:56:30 +02:00
try self.appendTo.appendSlice(user.name);
2022-02-19 11:35:29 +02:00
}
2022-02-19 16:56:30 +02:00
try self.appendTo.appendSlice(user.gecos);
2022-02-19 11:35:29 +02:00
if (puser.shell_here) {
2022-02-19 16:56:30 +02:00
try self.appendTo.appendSlice(user.shell);
2022-02-19 11:35:29 +02:00
}
2022-02-19 18:18:14 +02:00
2022-02-19 21:23:33 +02:00
const padding = pad.roundUpPadding(u64, 2, self.appendTo.items.len);
2022-02-19 18:18:14 +02:00
try self.appendTo.appendNTimes(0, padding);
2022-02-18 20:29:45 +02:00
}
};
2022-02-18 17:34:50 +02:00
const testing = std.testing;
test "PackedUser is byte-aligned" {
try testing.expectEqual(0, @rem(@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;
}
test "construct PackedUser blob" {
2022-02-19 16:56:30 +02:00
var buf = ArrayList(u8).init(testing.allocator);
defer buf.deinit();
2022-02-19 22:10:55 +02:00
var writer = UserWriter.init(&buf, testShellIndex);
2022-02-19 11:35:29 +02:00
const user1 = User{
.uid = 1000,
.gid = 1000,
.name = "vidmantas",
.gecos = "Vidmantas Kaminskas",
.home = "/home/vidmantas",
.shell = "/bin/bash",
};
const user2 = User{
.uid = 1001,
.gid = 1001,
.name = "svc-foo",
.gecos = "Service Account",
.home = "/home/service1",
.shell = "/usr/bin/nologin",
};
2022-02-19 16:56:30 +02:00
try writer.appendUser(user1);
try writer.appendUser(user2);
2022-02-19 11:35:29 +02:00
}