mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
alongside the typical msghdr struct, Zig has added a msghdr_const type that can be used with sendmsg which allows const data to be provided. I believe that data pointed to by the iov and control fields in msghdr are also left unmodified, in which case they can be marked const as well.
348 lines
7.9 KiB
Zig
348 lines
7.9 KiB
Zig
const std = @import("../../std.zig");
|
|
const maxInt = std.math.maxInt;
|
|
const linux = std.os.linux;
|
|
const SYS = linux.SYS;
|
|
const iovec = std.os.iovec;
|
|
const iovec_const = std.os.iovec_const;
|
|
const socklen_t = linux.socklen_t;
|
|
const stack_t = linux.stack_t;
|
|
const sigset_t = linux.sigset_t;
|
|
const uid_t = linux.uid_t;
|
|
const gid_t = linux.gid_t;
|
|
const pid_t = linux.pid_t;
|
|
const sockaddr = linux.sockaddr;
|
|
const timespec = linux.timespec;
|
|
|
|
pub fn syscall0(number: SYS) usize {
|
|
return asm volatile ("svc #0"
|
|
: [ret] "={r0}" (-> usize),
|
|
: [number] "{r7}" (@enumToInt(number)),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
pub fn syscall1(number: SYS, arg1: usize) usize {
|
|
return asm volatile ("svc #0"
|
|
: [ret] "={r0}" (-> usize),
|
|
: [number] "{r7}" (@enumToInt(number)),
|
|
[arg1] "{r0}" (arg1),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
pub fn syscall2(number: SYS, arg1: usize, arg2: usize) usize {
|
|
return asm volatile ("svc #0"
|
|
: [ret] "={r0}" (-> usize),
|
|
: [number] "{r7}" (@enumToInt(number)),
|
|
[arg1] "{r0}" (arg1),
|
|
[arg2] "{r1}" (arg2),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
pub fn syscall3(number: SYS, arg1: usize, arg2: usize, arg3: usize) usize {
|
|
return asm volatile ("svc #0"
|
|
: [ret] "={r0}" (-> usize),
|
|
: [number] "{r7}" (@enumToInt(number)),
|
|
[arg1] "{r0}" (arg1),
|
|
[arg2] "{r1}" (arg2),
|
|
[arg3] "{r2}" (arg3),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
pub fn syscall4(number: SYS, arg1: usize, arg2: usize, arg3: usize, arg4: usize) usize {
|
|
return asm volatile ("svc #0"
|
|
: [ret] "={r0}" (-> usize),
|
|
: [number] "{r7}" (@enumToInt(number)),
|
|
[arg1] "{r0}" (arg1),
|
|
[arg2] "{r1}" (arg2),
|
|
[arg3] "{r2}" (arg3),
|
|
[arg4] "{r3}" (arg4),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
pub fn syscall5(number: SYS, arg1: usize, arg2: usize, arg3: usize, arg4: usize, arg5: usize) usize {
|
|
return asm volatile ("svc #0"
|
|
: [ret] "={r0}" (-> usize),
|
|
: [number] "{r7}" (@enumToInt(number)),
|
|
[arg1] "{r0}" (arg1),
|
|
[arg2] "{r1}" (arg2),
|
|
[arg3] "{r2}" (arg3),
|
|
[arg4] "{r3}" (arg4),
|
|
[arg5] "{r4}" (arg5),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
pub fn syscall6(
|
|
number: SYS,
|
|
arg1: usize,
|
|
arg2: usize,
|
|
arg3: usize,
|
|
arg4: usize,
|
|
arg5: usize,
|
|
arg6: usize,
|
|
) usize {
|
|
return asm volatile ("svc #0"
|
|
: [ret] "={r0}" (-> usize),
|
|
: [number] "{r7}" (@enumToInt(number)),
|
|
[arg1] "{r0}" (arg1),
|
|
[arg2] "{r1}" (arg2),
|
|
[arg3] "{r2}" (arg3),
|
|
[arg4] "{r3}" (arg4),
|
|
[arg5] "{r4}" (arg5),
|
|
[arg6] "{r5}" (arg6),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
/// This matches the libc clone function.
|
|
pub extern fn clone(
|
|
func: switch (@import("builtin").zig_backend) {
|
|
.stage1 => fn (arg: usize) callconv(.C) u8,
|
|
else => *const fn (arg: usize) callconv(.C) u8,
|
|
},
|
|
stack: usize,
|
|
flags: u32,
|
|
arg: usize,
|
|
ptid: *i32,
|
|
tls: usize,
|
|
ctid: *i32,
|
|
) usize;
|
|
|
|
pub fn restore() callconv(.Naked) void {
|
|
return asm volatile ("svc #0"
|
|
:
|
|
: [number] "{r7}" (@enumToInt(SYS.sigreturn)),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
pub fn restore_rt() callconv(.Naked) void {
|
|
return asm volatile ("svc #0"
|
|
:
|
|
: [number] "{r7}" (@enumToInt(SYS.rt_sigreturn)),
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
pub const MMAP2_UNIT = 4096;
|
|
|
|
pub const O = struct {
|
|
pub const CREAT = 0o100;
|
|
pub const EXCL = 0o200;
|
|
pub const NOCTTY = 0o400;
|
|
pub const TRUNC = 0o1000;
|
|
pub const APPEND = 0o2000;
|
|
pub const NONBLOCK = 0o4000;
|
|
pub const DSYNC = 0o10000;
|
|
pub const SYNC = 0o4010000;
|
|
pub const RSYNC = 0o4010000;
|
|
pub const DIRECTORY = 0o40000;
|
|
pub const NOFOLLOW = 0o100000;
|
|
pub const CLOEXEC = 0o2000000;
|
|
|
|
pub const ASYNC = 0o20000;
|
|
pub const DIRECT = 0o200000;
|
|
pub const LARGEFILE = 0o400000;
|
|
pub const NOATIME = 0o1000000;
|
|
pub const PATH = 0o10000000;
|
|
pub const TMPFILE = 0o20040000;
|
|
pub const NDELAY = NONBLOCK;
|
|
};
|
|
|
|
pub const F = struct {
|
|
pub const DUPFD = 0;
|
|
pub const GETFD = 1;
|
|
pub const SETFD = 2;
|
|
pub const GETFL = 3;
|
|
pub const SETFL = 4;
|
|
|
|
pub const SETOWN = 8;
|
|
pub const GETOWN = 9;
|
|
pub const SETSIG = 10;
|
|
pub const GETSIG = 11;
|
|
|
|
pub const GETLK = 12;
|
|
pub const SETLK = 13;
|
|
pub const SETLKW = 14;
|
|
|
|
pub const RDLCK = 0;
|
|
pub const WRLCK = 1;
|
|
pub const UNLCK = 2;
|
|
|
|
pub const SETOWN_EX = 15;
|
|
pub const GETOWN_EX = 16;
|
|
|
|
pub const GETOWNER_UIDS = 17;
|
|
};
|
|
|
|
pub const LOCK = struct {
|
|
pub const SH = 1;
|
|
pub const EX = 2;
|
|
pub const UN = 8;
|
|
pub const NB = 4;
|
|
};
|
|
|
|
pub const MAP = struct {
|
|
/// stack-like segment
|
|
pub const GROWSDOWN = 0x0100;
|
|
/// ETXTBSY
|
|
pub const DENYWRITE = 0x0800;
|
|
/// mark it as an executable
|
|
pub const EXECUTABLE = 0x1000;
|
|
/// pages are locked
|
|
pub const LOCKED = 0x2000;
|
|
/// don't check for reservations
|
|
pub const NORESERVE = 0x4000;
|
|
};
|
|
|
|
pub const VDSO = struct {
|
|
pub const CGT_SYM = "__vdso_clock_gettime";
|
|
pub const CGT_VER = "LINUX_2.6";
|
|
};
|
|
|
|
pub const HWCAP = struct {
|
|
pub const SWP = 1 << 0;
|
|
pub const HALF = 1 << 1;
|
|
pub const THUMB = 1 << 2;
|
|
pub const @"26BIT" = 1 << 3;
|
|
pub const FAST_MULT = 1 << 4;
|
|
pub const FPA = 1 << 5;
|
|
pub const VFP = 1 << 6;
|
|
pub const EDSP = 1 << 7;
|
|
pub const JAVA = 1 << 8;
|
|
pub const IWMMXT = 1 << 9;
|
|
pub const CRUNCH = 1 << 10;
|
|
pub const THUMBEE = 1 << 11;
|
|
pub const NEON = 1 << 12;
|
|
pub const VFPv3 = 1 << 13;
|
|
pub const VFPv3D16 = 1 << 14;
|
|
pub const TLS = 1 << 15;
|
|
pub const VFPv4 = 1 << 16;
|
|
pub const IDIVA = 1 << 17;
|
|
pub const IDIVT = 1 << 18;
|
|
pub const VFPD32 = 1 << 19;
|
|
pub const IDIV = IDIVA | IDIVT;
|
|
pub const LPAE = 1 << 20;
|
|
pub const EVTSTRM = 1 << 21;
|
|
};
|
|
|
|
pub const Flock = extern struct {
|
|
type: i16,
|
|
whence: i16,
|
|
__pad0: [4]u8,
|
|
start: off_t,
|
|
len: off_t,
|
|
pid: pid_t,
|
|
__unused: [4]u8,
|
|
};
|
|
|
|
pub const msghdr = extern struct {
|
|
name: ?*sockaddr,
|
|
namelen: socklen_t,
|
|
iov: [*]iovec,
|
|
iovlen: i32,
|
|
control: ?*anyopaque,
|
|
controllen: socklen_t,
|
|
flags: i32,
|
|
};
|
|
|
|
pub const msghdr_const = extern struct {
|
|
name: ?*const sockaddr,
|
|
namelen: socklen_t,
|
|
iov: [*]const iovec_const,
|
|
iovlen: i32,
|
|
control: ?*const anyopaque,
|
|
controllen: socklen_t,
|
|
flags: i32,
|
|
};
|
|
|
|
pub const blksize_t = i32;
|
|
pub const nlink_t = u32;
|
|
pub const time_t = isize;
|
|
pub const mode_t = u32;
|
|
pub const off_t = i64;
|
|
pub const ino_t = u64;
|
|
pub const dev_t = u64;
|
|
pub const blkcnt_t = i64;
|
|
|
|
// The `stat` definition used by the Linux kernel.
|
|
pub const Stat = extern struct {
|
|
dev: dev_t,
|
|
__dev_padding: u32,
|
|
__ino_truncated: u32,
|
|
mode: mode_t,
|
|
nlink: nlink_t,
|
|
uid: uid_t,
|
|
gid: gid_t,
|
|
rdev: dev_t,
|
|
__rdev_padding: u32,
|
|
size: off_t,
|
|
blksize: blksize_t,
|
|
blocks: blkcnt_t,
|
|
atim: timespec,
|
|
mtim: timespec,
|
|
ctim: timespec,
|
|
ino: ino_t,
|
|
|
|
pub fn atime(self: @This()) timespec {
|
|
return self.atim;
|
|
}
|
|
|
|
pub fn mtime(self: @This()) timespec {
|
|
return self.mtim;
|
|
}
|
|
|
|
pub fn ctime(self: @This()) timespec {
|
|
return self.ctim;
|
|
}
|
|
};
|
|
|
|
pub const timeval = extern struct {
|
|
tv_sec: i32,
|
|
tv_usec: i32,
|
|
};
|
|
|
|
pub const timezone = extern struct {
|
|
tz_minuteswest: i32,
|
|
tz_dsttime: i32,
|
|
};
|
|
|
|
pub const mcontext_t = extern struct {
|
|
trap_no: usize,
|
|
error_code: usize,
|
|
oldmask: usize,
|
|
arm_r0: usize,
|
|
arm_r1: usize,
|
|
arm_r2: usize,
|
|
arm_r3: usize,
|
|
arm_r4: usize,
|
|
arm_r5: usize,
|
|
arm_r6: usize,
|
|
arm_r7: usize,
|
|
arm_r8: usize,
|
|
arm_r9: usize,
|
|
arm_r10: usize,
|
|
arm_fp: usize,
|
|
arm_ip: usize,
|
|
arm_sp: usize,
|
|
arm_lr: usize,
|
|
arm_pc: usize,
|
|
arm_cpsr: usize,
|
|
fault_address: usize,
|
|
};
|
|
|
|
pub const ucontext_t = extern struct {
|
|
flags: usize,
|
|
link: ?*ucontext_t,
|
|
stack: stack_t,
|
|
mcontext: mcontext_t,
|
|
sigmask: sigset_t,
|
|
regspace: [64]u64,
|
|
};
|
|
|
|
pub const Elf_Symndx = u32;
|