2022-04-20 07:19:34 +03:00
|
|
|
const std = @import("std");
|
|
|
|
const os = std.os;
|
|
|
|
const fmt = std.fmt;
|
2022-07-06 13:19:15 +03:00
|
|
|
const log = std.log;
|
2022-04-20 07:19:34 +03:00
|
|
|
const mem = std.mem;
|
2022-04-21 09:30:39 +03:00
|
|
|
const process = std.process;
|
2022-07-06 13:19:15 +03:00
|
|
|
const once = std.once;
|
2022-04-20 07:19:34 +03:00
|
|
|
|
|
|
|
const DB = @import("DB.zig");
|
|
|
|
const File = @import("File.zig");
|
2022-07-04 06:09:03 +03:00
|
|
|
const ErrCtx = @import("ErrCtx.zig");
|
2022-04-20 07:19:34 +03:00
|
|
|
const CGroup = @import("Group.zig").CGroup;
|
|
|
|
const PackedGroup = @import("PackedGroup.zig");
|
|
|
|
const CUser = @import("User.zig").CUser;
|
|
|
|
const PackedUser = @import("PackedUser.zig");
|
|
|
|
|
|
|
|
const c = @cImport({
|
|
|
|
@cInclude("nss.h");
|
|
|
|
});
|
|
|
|
|
2022-07-06 13:19:15 +03:00
|
|
|
const ENV_DB = "TURBONSS_DB";
|
2022-07-06 14:06:50 +03:00
|
|
|
const ENV_LOGLEVEL = "TURBONSS_LOGLEVEL";
|
2022-07-06 13:19:15 +03:00
|
|
|
const ENV_OMIT_MEMBERS = "TURBONSS_OMIT_MEMBERS";
|
2022-04-21 09:30:39 +03:00
|
|
|
|
2022-07-06 16:46:24 +03:00
|
|
|
export var turbonss_db_path: [:0]const u8 = "/etc/turbonss/db.turbo";
|
2022-04-20 07:19:34 +03:00
|
|
|
|
2022-07-06 13:19:15 +03:00
|
|
|
pub var log_level: std.log.Level = .err;
|
|
|
|
|
2022-04-20 07:19:34 +03:00
|
|
|
// State is a type of the global variable holding the process state:
|
|
|
|
// the DB handle and all the iterators.
|
|
|
|
const State = struct {
|
|
|
|
file: ?File,
|
2022-07-06 13:19:15 +03:00
|
|
|
getpwent_iterator: ?PackedUser.Iterator = null,
|
|
|
|
getgrent_iterator: ?PackedGroup.Iterator = null,
|
2022-04-20 07:19:34 +03:00
|
|
|
omit_members: bool,
|
|
|
|
};
|
|
|
|
|
2022-07-06 13:19:15 +03:00
|
|
|
// global_state is initialized on first call to an nss function
|
|
|
|
var global_state: State = undefined;
|
2022-07-06 13:29:36 +03:00
|
|
|
var global_init = once(init);
|
2022-04-20 07:19:34 +03:00
|
|
|
|
2022-07-06 13:19:15 +03:00
|
|
|
// assigns State from environment variables et al
|
|
|
|
fn init() void {
|
2022-07-06 14:06:50 +03:00
|
|
|
if (os.getenvZ(ENV_LOGLEVEL)) |env| {
|
|
|
|
const got = mem.sliceTo(env, 0);
|
|
|
|
if (mem.eql(u8, got, "0")) {
|
|
|
|
log_level = .err;
|
|
|
|
} else if (mem.eql(u8, got, "1")) {
|
|
|
|
log_level = .warn;
|
|
|
|
} else if (mem.eql(u8, got, "2")) {
|
|
|
|
log_level = .info;
|
|
|
|
} else if (mem.eql(u8, got, "3")) {
|
|
|
|
log_level = .debug;
|
|
|
|
} else {
|
|
|
|
std.debug.print(
|
|
|
|
"warning: unrecognized {s}={s}. Expected between 0 and 3\n",
|
|
|
|
.{ ENV_LOGLEVEL, got },
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2022-04-21 09:30:39 +03:00
|
|
|
|
2022-07-06 14:06:50 +03:00
|
|
|
const omit_members = blk: {
|
|
|
|
if (os.getenvZ(ENV_OMIT_MEMBERS)) |env| {
|
|
|
|
const got = mem.sliceTo(env, 0);
|
|
|
|
if (mem.eql(u8, got, "1")) {
|
|
|
|
break :blk true;
|
|
|
|
} else if (mem.eql(u8, got, "0")) {
|
|
|
|
break :blk false;
|
|
|
|
} else if (mem.eql(u8, got, "auto")) {
|
|
|
|
// not set, do autodiscover
|
|
|
|
} else {
|
|
|
|
std.debug.print(
|
|
|
|
"warning: unrecognized {s}={s}. Expected 0, 1 or auto\n",
|
|
|
|
.{ ENV_OMIT_MEMBERS, got },
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (os.argv.len == 0) break :blk false;
|
|
|
|
break :blk mem.eql(u8, mem.sliceTo(os.argv[0], 0), "id");
|
|
|
|
};
|
2022-07-06 13:19:15 +03:00
|
|
|
log.debug("omitting members from getgr* calls: {any}\n", .{omit_members});
|
2022-04-21 09:30:39 +03:00
|
|
|
|
2022-07-06 16:46:24 +03:00
|
|
|
const fname = os.getenvZ(ENV_DB) orelse turbonss_db_path;
|
2022-07-06 14:06:50 +03:00
|
|
|
log.debug("opening '{s}'", .{fname});
|
|
|
|
|
2022-07-06 13:19:15 +03:00
|
|
|
const file = File.open(fname) catch |err| {
|
|
|
|
log.warn("open '{s}': {s}", .{ fname, @errorName(err) });
|
2022-04-20 07:19:34 +03:00
|
|
|
return;
|
|
|
|
};
|
2022-07-06 13:19:15 +03:00
|
|
|
log.debug("turbonss database opened", .{});
|
2022-04-20 07:19:34 +03:00
|
|
|
|
2022-07-06 13:19:15 +03:00
|
|
|
global_state = State{
|
|
|
|
.file = file,
|
|
|
|
.omit_members = omit_members,
|
|
|
|
};
|
2022-04-20 07:19:34 +03:00
|
|
|
}
|
|
|
|
|
2022-07-06 13:19:15 +03:00
|
|
|
fn shouldOmitMembers(envvar: []const u8, argv: [][*:0]u8) bool {
|
|
|
|
if (mem.eql(u8, envvar, "1")) return true;
|
|
|
|
if (mem.eql(u8, envvar, "0")) return false;
|
2022-04-20 07:19:34 +03:00
|
|
|
if (argv.len == 0) return false;
|
|
|
|
return mem.eql(u8, mem.sliceTo(argv[0], 0), "id");
|
|
|
|
}
|
|
|
|
|
|
|
|
export fn _nss_turbo_getpwuid_r(
|
|
|
|
uid: c_uint,
|
2022-07-06 16:29:21 +03:00
|
|
|
passwd: *CUser,
|
|
|
|
buffer: [*]u8,
|
2022-07-06 13:53:34 +03:00
|
|
|
buflen: usize,
|
2022-04-20 07:19:34 +03:00
|
|
|
errnop: *c_int,
|
|
|
|
) c.enum_nss_status {
|
2022-07-06 13:53:34 +03:00
|
|
|
const db = get_db(errnop) orelse return c.NSS_STATUS_UNAVAIL;
|
2022-07-06 16:29:21 +03:00
|
|
|
if (db.getpwuid(uid, buffer[0..buflen])) |maybe_cuser| {
|
|
|
|
if (maybe_cuser) |cuser| {
|
|
|
|
passwd.* = cuser;
|
|
|
|
return c.NSS_STATUS_SUCCESS;
|
|
|
|
} else {
|
|
|
|
errnop.* = @enumToInt(os.E.NOENT);
|
|
|
|
return c.NSS_STATUS_NOTFOUND;
|
|
|
|
}
|
|
|
|
} else |err| switch (err) {
|
|
|
|
error.BufferTooSmall => {
|
|
|
|
errnop.* = @enumToInt(os.E.RANGE);
|
|
|
|
return c.NSS_STATUS_TRYAGAIN;
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2022-07-06 13:53:34 +03:00
|
|
|
|
2022-07-06 16:29:21 +03:00
|
|
|
export fn _nss_turbo_getpwnam_r(
|
2022-07-06 16:54:43 +03:00
|
|
|
name: [*:0]const u8,
|
2022-07-06 16:29:21 +03:00
|
|
|
passwd: *CUser,
|
|
|
|
buffer: [*]u8,
|
|
|
|
buflen: usize,
|
|
|
|
errnop: *c_int,
|
|
|
|
) c.enum_nss_status {
|
|
|
|
const db = get_db(errnop) orelse return c.NSS_STATUS_UNAVAIL;
|
|
|
|
const nameSlice = mem.sliceTo(name, 0);
|
|
|
|
if (db.getpwnam(nameSlice, buffer[0..buflen])) |maybe_cuser| {
|
2022-07-06 13:53:34 +03:00
|
|
|
if (maybe_cuser) |cuser| {
|
2022-07-06 16:29:21 +03:00
|
|
|
passwd.* = cuser;
|
2022-07-06 13:53:34 +03:00
|
|
|
return c.NSS_STATUS_SUCCESS;
|
|
|
|
} else {
|
|
|
|
errnop.* = @enumToInt(os.E.NOENT);
|
|
|
|
return c.NSS_STATUS_NOTFOUND;
|
|
|
|
}
|
|
|
|
} else |err| switch (err) {
|
|
|
|
error.BufferTooSmall => {
|
2022-04-21 09:30:39 +03:00
|
|
|
errnop.* = @enumToInt(os.E.RANGE);
|
|
|
|
return c.NSS_STATUS_TRYAGAIN;
|
|
|
|
},
|
|
|
|
}
|
2022-07-06 13:53:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn get_db(errnop: *c_int) ?DB {
|
|
|
|
global_init.call();
|
2022-04-21 09:30:39 +03:00
|
|
|
|
2022-07-06 13:53:34 +03:00
|
|
|
if (global_state.file) |file| {
|
|
|
|
return file.db;
|
|
|
|
} else {
|
|
|
|
errnop.* = @enumToInt(os.E.AGAIN);
|
|
|
|
return null;
|
|
|
|
}
|
2022-04-21 09:30:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const testing = std.testing;
|
|
|
|
|
2022-07-06 16:54:43 +03:00
|
|
|
test "getpwuid_r and getpwnam_r" {
|
|
|
|
var tf = try File.TestDB.init(testing.allocator);
|
2022-06-07 06:30:18 +03:00
|
|
|
defer tf.deinit();
|
2022-07-06 16:54:43 +03:00
|
|
|
const turbonss_db_path_old = turbonss_db_path;
|
2022-07-06 16:29:21 +03:00
|
|
|
turbonss_db_path = tf.path;
|
2022-07-06 16:54:43 +03:00
|
|
|
defer {
|
|
|
|
turbonss_db_path = turbonss_db_path_old;
|
|
|
|
}
|
2022-07-06 16:29:21 +03:00
|
|
|
|
|
|
|
var buffer: [1024]u8 = undefined;
|
|
|
|
var errno: c_int = 0;
|
|
|
|
|
2022-07-06 16:54:43 +03:00
|
|
|
var passwd: CUser = undefined;
|
|
|
|
try testing.expectEqual(
|
|
|
|
c.NSS_STATUS_SUCCESS,
|
|
|
|
_nss_turbo_getpwuid_r(128, &passwd, &buffer, buffer.len, &errno),
|
|
|
|
);
|
2022-07-06 16:29:21 +03:00
|
|
|
try testing.expectEqual(@as(c_int, 0), errno);
|
2022-07-06 16:54:43 +03:00
|
|
|
try testVidmantas(passwd);
|
|
|
|
|
|
|
|
passwd = undefined;
|
|
|
|
try testing.expectEqual(
|
|
|
|
c.NSS_STATUS_SUCCESS,
|
|
|
|
_nss_turbo_getpwnam_r("vidmantas", &passwd, &buffer, buffer.len, &errno),
|
|
|
|
);
|
|
|
|
try testing.expectEqual(@as(c_int, 0), errno);
|
|
|
|
try testVidmantas(passwd);
|
|
|
|
|
|
|
|
passwd = undefined;
|
|
|
|
try testing.expectEqual(
|
|
|
|
c.NSS_STATUS_NOTFOUND,
|
|
|
|
_nss_turbo_getpwnam_r("does not exist", &passwd, &buffer, buffer.len, &errno),
|
|
|
|
);
|
|
|
|
try testing.expectEqual(@enumToInt(os.E.NOENT), @intCast(u16, errno));
|
|
|
|
|
|
|
|
passwd = undefined;
|
|
|
|
var small_buffer: [1]u8 = undefined;
|
|
|
|
try testing.expectEqual(
|
|
|
|
c.NSS_STATUS_TRYAGAIN,
|
|
|
|
_nss_turbo_getpwuid_r(0, &passwd, &small_buffer, small_buffer.len, &errno),
|
|
|
|
);
|
|
|
|
try testing.expectEqual(@enumToInt(os.E.RANGE), @intCast(u16, errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn testVidmantas(u: CUser) !void {
|
|
|
|
try testing.expectEqualStrings("vidmantas", mem.sliceTo(u.pw_name, 0));
|
|
|
|
try testing.expectEqual(@as(u32, 128), u.pw_uid);
|
|
|
|
try testing.expectEqual(@as(u32, 128), u.pw_gid);
|
|
|
|
try testing.expectEqualStrings("Vidmantas Kaminskas", mem.sliceTo(u.pw_gecos, 0));
|
|
|
|
try testing.expectEqualStrings("/bin/bash", mem.sliceTo(u.pw_shell, 0));
|
2022-04-20 07:19:34 +03:00
|
|
|
}
|