2017-03-26 03:39:28 -07:00
|
|
|
pub const windows = @import("windows.zig");
|
|
|
|
pub const darwin = @import("darwin.zig");
|
|
|
|
pub const linux = @import("linux.zig");
|
|
|
|
pub const posix = switch(@compileVar("os")) {
|
|
|
|
Os.linux => linux,
|
|
|
|
Os.darwin, Os.macosx, Os.ios => darwin,
|
|
|
|
Os.windows => windows,
|
2016-09-11 21:01:06 -07:00
|
|
|
else => @compileError("Unsupported OS"),
|
|
|
|
};
|
2017-04-02 16:14:23 -07:00
|
|
|
|
2017-04-03 01:58:19 -07:00
|
|
|
pub const max_noalloc_path_len = 1024;
|
2017-04-03 21:17:24 -07:00
|
|
|
pub const ChildProcess = @import("child_process.zig").ChildProcess;
|
2017-04-03 01:58:19 -07:00
|
|
|
|
2017-04-02 15:19:59 -07:00
|
|
|
const debug = @import("../debug.zig");
|
|
|
|
const assert = debug.assert;
|
2017-03-26 03:39:28 -07:00
|
|
|
|
2016-02-27 21:06:46 -08:00
|
|
|
const errno = @import("errno.zig");
|
2017-03-26 03:39:28 -07:00
|
|
|
const linking_libc = @import("../target.zig").linking_libc;
|
|
|
|
const c = @import("../c/index.zig");
|
2016-02-04 00:00:54 -08:00
|
|
|
|
2017-04-02 15:19:59 -07:00
|
|
|
const mem = @import("../mem.zig");
|
|
|
|
const Allocator = mem.Allocator;
|
|
|
|
|
2017-04-03 22:52:20 -07:00
|
|
|
const BufMap = @import("../buf_map.zig").BufMap;
|
2017-04-03 15:11:57 -07:00
|
|
|
const cstr = @import("../cstr.zig");
|
2017-04-02 15:19:59 -07:00
|
|
|
|
2016-12-21 20:34:14 -08:00
|
|
|
error Unexpected;
|
2017-04-02 15:19:59 -07:00
|
|
|
error SysResources;
|
|
|
|
error AccessDenied;
|
|
|
|
error InvalidExe;
|
|
|
|
error FileSystem;
|
|
|
|
error IsDir;
|
|
|
|
error FileNotFound;
|
|
|
|
error FileBusy;
|
2016-02-04 00:00:54 -08:00
|
|
|
|
2017-03-22 23:59:58 -07:00
|
|
|
/// Fills `buf` with random bytes. If linking against libc, this calls the
|
|
|
|
/// appropriate OS-specific library call. Otherwise it uses the zig standard
|
|
|
|
/// library implementation.
|
2016-08-17 20:11:04 -07:00
|
|
|
pub fn getRandomBytes(buf: []u8) -> %void {
|
2016-09-11 21:01:06 -07:00
|
|
|
while (true) {
|
2017-03-22 23:59:58 -07:00
|
|
|
const err = switch (@compileVar("os")) {
|
|
|
|
Os.linux => {
|
|
|
|
if (linking_libc) {
|
|
|
|
if (c.getrandom(buf.ptr, buf.len, 0) == -1) *c._errno() else 0
|
|
|
|
} else {
|
|
|
|
posix.getErrno(posix.getrandom(buf.ptr, buf.len, 0))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Os.darwin, Os.macosx, Os.ios => {
|
|
|
|
if (linking_libc) {
|
|
|
|
if (posix.getrandom(buf.ptr, buf.len) == -1) *c._errno() else 0
|
|
|
|
} else {
|
|
|
|
posix.getErrno(posix.getrandom(buf.ptr, buf.len))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Os.windows => {
|
|
|
|
var hCryptProv: windows.HCRYPTPROV = undefined;
|
|
|
|
if (!windows.CryptAcquireContext(&hCryptProv, null, null, windows.PROV_RSA_FULL, 0)) {
|
|
|
|
return error.Unexpected;
|
|
|
|
}
|
|
|
|
defer _ = windows.CryptReleaseContext(hCryptProv, 0);
|
|
|
|
|
|
|
|
if (!windows.CryptGenRandom(hCryptProv, windows.DWORD(buf.len), buf.ptr)) {
|
|
|
|
return error.Unexpected;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
},
|
|
|
|
else => @compileError("Unsupported OS"),
|
2016-09-11 21:01:06 -07:00
|
|
|
};
|
|
|
|
if (err > 0) {
|
|
|
|
return switch (err) {
|
2017-03-26 01:58:48 -07:00
|
|
|
errno.EINVAL => unreachable,
|
|
|
|
errno.EFAULT => unreachable,
|
2016-09-11 21:01:06 -07:00
|
|
|
errno.EINTR => continue,
|
|
|
|
else => error.Unexpected,
|
2016-02-13 21:59:49 -08:00
|
|
|
}
|
2016-09-11 21:01:06 -07:00
|
|
|
}
|
|
|
|
return;
|
2016-02-04 00:00:54 -08:00
|
|
|
}
|
|
|
|
}
|
2016-04-18 16:42:56 -07:00
|
|
|
|
2017-03-22 23:59:58 -07:00
|
|
|
/// Raises a signal in the current kernel thread, ending its execution.
|
|
|
|
/// If linking against libc, this calls the abort() libc function. Otherwise
|
|
|
|
/// it uses the zig standard library implementation.
|
2017-03-26 01:58:48 -07:00
|
|
|
pub coldcc fn abort() -> noreturn {
|
2017-03-22 23:59:58 -07:00
|
|
|
if (linking_libc) {
|
|
|
|
c.abort();
|
|
|
|
}
|
2016-08-17 20:11:04 -07:00
|
|
|
switch (@compileVar("os")) {
|
2017-04-02 17:44:04 -07:00
|
|
|
Os.linux, Os.darwin, Os.macosx, Os.ios => {
|
2017-03-22 23:59:58 -07:00
|
|
|
_ = posix.raise(posix.SIGABRT);
|
|
|
|
_ = posix.raise(posix.SIGKILL);
|
2016-08-17 20:11:04 -07:00
|
|
|
while (true) {}
|
|
|
|
},
|
2017-03-22 23:59:58 -07:00
|
|
|
else => @compileError("Unsupported OS"),
|
2016-08-17 20:11:04 -07:00
|
|
|
}
|
2016-04-18 16:42:56 -07:00
|
|
|
}
|
2017-04-02 15:19:59 -07:00
|
|
|
|
2017-04-03 01:58:19 -07:00
|
|
|
/// Calls POSIX close, and keeps trying if it gets interrupted.
|
|
|
|
pub fn posixClose(fd: i32) {
|
2017-04-02 15:19:59 -07:00
|
|
|
while (true) {
|
|
|
|
const err = posix.getErrno(posix.close(fd));
|
|
|
|
if (err == errno.EINTR) {
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-03 01:58:19 -07:00
|
|
|
/// Calls POSIX write, and keeps trying if it gets interrupted.
|
|
|
|
pub fn posixWrite(fd: i32, bytes: []const u8) -> %void {
|
|
|
|
while (true) {
|
|
|
|
const write_ret = posix.write(fd, bytes.ptr, bytes.len);
|
|
|
|
const write_err = posix.getErrno(write_ret);
|
|
|
|
if (write_err > 0) {
|
|
|
|
return switch (write_err) {
|
|
|
|
errno.EINTR => continue,
|
|
|
|
errno.EINVAL => unreachable,
|
|
|
|
errno.EDQUOT => error.DiskQuota,
|
|
|
|
errno.EFBIG => error.FileTooBig,
|
|
|
|
errno.EIO => error.Io,
|
|
|
|
errno.ENOSPC => error.NoSpaceLeft,
|
|
|
|
errno.EPERM => error.BadPerm,
|
|
|
|
errno.EPIPE => error.PipeFail,
|
|
|
|
else => error.Unexpected,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// ::path may need to be copied in memory to add a null terminating byte. In this case
|
|
|
|
/// a fixed size buffer of size ::max_noalloc_path_len is an attempted solution. If the fixed
|
|
|
|
/// size buffer is too small, and the provided allocator is null, ::error.NameTooLong is returned.
|
|
|
|
/// otherwise if the fixed size buffer is too small, allocator is used to obtain the needed memory.
|
|
|
|
/// Calls POSIX open, keeps trying if it gets interrupted, and translates
|
|
|
|
/// the return value into zig errors.
|
|
|
|
pub fn posixOpen(path: []const u8, flags: usize, perm: usize, allocator: ?&Allocator) -> %i32 {
|
|
|
|
var stack_buf: [max_noalloc_path_len]u8 = undefined;
|
|
|
|
var path0: []u8 = undefined;
|
|
|
|
var need_free = false;
|
|
|
|
|
|
|
|
if (path.len < stack_buf.len) {
|
|
|
|
path0 = stack_buf[0...path.len + 1];
|
|
|
|
} else if (const a ?= allocator) {
|
|
|
|
path0 = %return a.alloc(u8, path.len + 1);
|
|
|
|
need_free = true;
|
|
|
|
} else {
|
|
|
|
return error.NameTooLong;
|
|
|
|
}
|
|
|
|
defer if (need_free) {
|
|
|
|
(??allocator).free(path0);
|
|
|
|
};
|
|
|
|
mem.copy(u8, path0, path);
|
|
|
|
path0[path.len] = 0;
|
|
|
|
|
2017-04-02 15:19:59 -07:00
|
|
|
while (true) {
|
2017-04-03 01:58:19 -07:00
|
|
|
const result = posix.open(path0.ptr, flags, perm);
|
2017-04-02 15:19:59 -07:00
|
|
|
const err = posix.getErrno(result);
|
|
|
|
if (err > 0) {
|
|
|
|
return switch (err) {
|
|
|
|
errno.EINTR => continue,
|
|
|
|
|
|
|
|
errno.EFAULT => unreachable,
|
|
|
|
errno.EINVAL => unreachable,
|
|
|
|
errno.EACCES => error.BadPerm,
|
|
|
|
errno.EFBIG, errno.EOVERFLOW => error.FileTooBig,
|
|
|
|
errno.EISDIR => error.IsDir,
|
|
|
|
errno.ELOOP => error.SymLinkLoop,
|
|
|
|
errno.EMFILE => error.ProcessFdQuotaExceeded,
|
|
|
|
errno.ENAMETOOLONG => error.NameTooLong,
|
|
|
|
errno.ENFILE => error.SystemFdQuotaExceeded,
|
|
|
|
errno.ENODEV => error.NoDevice,
|
|
|
|
errno.ENOENT => error.PathNotFound,
|
|
|
|
errno.ENOMEM => error.NoMem,
|
|
|
|
errno.ENOSPC => error.NoSpaceLeft,
|
|
|
|
errno.ENOTDIR => error.NotDir,
|
|
|
|
errno.EPERM => error.BadPerm,
|
|
|
|
else => error.Unexpected,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return i32(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-03 21:17:24 -07:00
|
|
|
pub fn posixDup2(old_fd: i32, new_fd: i32) -> %void {
|
2017-04-02 15:19:59 -07:00
|
|
|
while (true) {
|
|
|
|
const err = posix.getErrno(posix.dup2(old_fd, new_fd));
|
|
|
|
if (err > 0) {
|
|
|
|
return switch (err) {
|
|
|
|
errno.EBUSY, errno.EINTR => continue,
|
|
|
|
errno.EMFILE => error.SysResources,
|
|
|
|
errno.EINVAL => unreachable,
|
|
|
|
else => error.Unexpected,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-02 17:44:04 -07:00
|
|
|
/// This function must allocate memory to add a null terminating bytes on path and each arg.
|
|
|
|
/// It must also convert to KEY=VALUE\0 format for environment variables, and include null
|
|
|
|
/// pointers after the args and after the environment variables.
|
|
|
|
/// Also make the first arg equal to path.
|
2017-04-03 22:52:20 -07:00
|
|
|
pub fn posixExecve(path: []const u8, argv: []const []const u8, env_map: &const BufMap,
|
2017-04-03 21:17:24 -07:00
|
|
|
allocator: &Allocator) -> %usize
|
|
|
|
{
|
2017-04-02 17:44:04 -07:00
|
|
|
const path_buf = %return allocator.alloc(u8, path.len + 1);
|
|
|
|
defer allocator.free(path_buf);
|
|
|
|
@memcpy(&path_buf[0], &path[0], path.len);
|
|
|
|
path_buf[path.len] = 0;
|
|
|
|
|
|
|
|
const argv_buf = %return allocator.alloc(?&const u8, argv.len + 2);
|
|
|
|
mem.set(?&const u8, argv_buf, null);
|
|
|
|
defer {
|
|
|
|
for (argv_buf) |arg, i| {
|
|
|
|
const arg_buf = if (const ptr ?= arg) ptr[0...argv[i].len + 1] else break;
|
|
|
|
allocator.free(arg_buf);
|
|
|
|
}
|
|
|
|
allocator.free(argv_buf);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
// Add path to the first argument.
|
|
|
|
const arg_buf = %return allocator.alloc(u8, path.len + 1);
|
|
|
|
@memcpy(&arg_buf[0], path.ptr, path.len);
|
|
|
|
arg_buf[path.len] = 0;
|
|
|
|
|
|
|
|
argv_buf[0] = arg_buf.ptr;
|
|
|
|
}
|
|
|
|
for (argv) |arg, i| {
|
|
|
|
const arg_buf = %return allocator.alloc(u8, arg.len + 1);
|
|
|
|
@memcpy(&arg_buf[0], arg.ptr, arg.len);
|
|
|
|
arg_buf[arg.len] = 0;
|
|
|
|
|
|
|
|
argv_buf[i + 1] = arg_buf.ptr;
|
|
|
|
}
|
|
|
|
argv_buf[argv.len + 1] = null;
|
|
|
|
|
2017-04-03 15:11:57 -07:00
|
|
|
const envp_count = env_map.count();
|
|
|
|
const envp_buf = %return allocator.alloc(?&const u8, envp_count + 1);
|
2017-04-02 17:44:04 -07:00
|
|
|
mem.set(?&const u8, envp_buf, null);
|
|
|
|
defer {
|
|
|
|
for (envp_buf) |env, i| {
|
2017-04-03 15:11:57 -07:00
|
|
|
const env_buf = if (const ptr ?= env) ptr[0...cstr.len(ptr)] else break;
|
2017-04-02 17:44:04 -07:00
|
|
|
allocator.free(env_buf);
|
|
|
|
}
|
|
|
|
allocator.free(envp_buf);
|
|
|
|
}
|
2017-04-03 15:11:57 -07:00
|
|
|
{
|
|
|
|
var it = env_map.iterator();
|
|
|
|
var i: usize = 0;
|
|
|
|
while (true; i += 1) {
|
|
|
|
const pair = it.next() ?? break;
|
|
|
|
|
|
|
|
const env_buf = %return allocator.alloc(u8, pair.key.len + pair.value.len + 2);
|
|
|
|
@memcpy(&env_buf[0], pair.key.ptr, pair.key.len);
|
|
|
|
env_buf[pair.key.len] = '=';
|
|
|
|
@memcpy(&env_buf[pair.key.len + 1], pair.value.ptr, pair.value.len);
|
|
|
|
env_buf[env_buf.len - 1] = 0;
|
|
|
|
|
|
|
|
envp_buf[i] = env_buf.ptr;
|
|
|
|
}
|
|
|
|
assert(i == envp_count);
|
2017-04-02 17:44:04 -07:00
|
|
|
}
|
2017-04-03 15:11:57 -07:00
|
|
|
envp_buf[envp_count] = null;
|
2017-04-02 17:44:04 -07:00
|
|
|
|
|
|
|
return posix.execve(path_buf.ptr, argv_buf.ptr, envp_buf.ptr);
|
|
|
|
}
|
|
|
|
|
2017-04-03 15:11:57 -07:00
|
|
|
pub var environ_raw: []&u8 = undefined;
|
|
|
|
|
2017-04-03 22:52:20 -07:00
|
|
|
pub fn getEnvMap(allocator: &Allocator) -> %BufMap {
|
|
|
|
var result = BufMap.init(allocator);
|
2017-04-03 15:11:57 -07:00
|
|
|
%defer result.deinit();
|
|
|
|
|
|
|
|
for (environ_raw) |ptr| {
|
|
|
|
var line_i: usize = 0;
|
|
|
|
while (ptr[line_i] != 0 and ptr[line_i] != '='; line_i += 1) {}
|
|
|
|
const key = ptr[0...line_i];
|
|
|
|
|
|
|
|
var end_i: usize = line_i;
|
|
|
|
while (ptr[end_i] != 0; end_i += 1) {}
|
|
|
|
const value = ptr[line_i + 1...end_i];
|
|
|
|
|
|
|
|
%return result.set(key, value);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2017-04-02 16:14:23 -07:00
|
|
|
|
|
|
|
pub fn getEnv(key: []const u8) -> ?[]const u8 {
|
2017-04-03 15:11:57 -07:00
|
|
|
for (environ_raw) |ptr| {
|
|
|
|
var line_i: usize = 0;
|
|
|
|
while (ptr[line_i] != 0 and ptr[line_i] != '='; line_i += 1) {}
|
|
|
|
const this_key = ptr[0...line_i];
|
|
|
|
if (!mem.eql(u8, key, this_key))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
var end_i: usize = line_i;
|
|
|
|
while (ptr[end_i] != 0; end_i += 1) {}
|
|
|
|
const this_value = ptr[line_i + 1...end_i];
|
|
|
|
|
|
|
|
return this_value;
|
2017-04-02 16:14:23 -07:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2017-04-03 15:11:57 -07:00
|
|
|
|
2017-04-03 21:17:24 -07:00
|
|
|
pub const args = struct {
|
|
|
|
pub var raw: []&u8 = undefined;
|
2017-04-03 15:11:57 -07:00
|
|
|
|
2017-04-03 21:17:24 -07:00
|
|
|
pub fn count() -> usize {
|
|
|
|
return raw.len;
|
|
|
|
}
|
|
|
|
pub fn at(i: usize) -> []const u8 {
|
|
|
|
const s = raw[i];
|
|
|
|
return s[0...cstr.len(s)];
|
|
|
|
}
|
|
|
|
};
|