This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
forked from cekongnetcv/pike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
socket_posix.zig
288 lines (239 loc) · 9.68 KB
/
socket_posix.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
const std = @import("std");
const pike = @import("pike.zig");
const posix = @import("os/posix.zig");
const Waker = @import("waker.zig").Waker;
const io = std.io;
const os = std.os;
const net = std.net;
const mem = std.mem;
const meta = std.meta;
pub const SocketOptionType = enum(u32) {
debug = os.SO.DEBUG,
listen = os.SO.ACCEPTCONN,
reuse_address = os.SO.REUSEADDR,
keep_alive = os.SO.KEEPALIVE,
dont_route = os.SO.DONTROUTE,
broadcast = os.SO.BROADCAST,
linger = os.SO.LINGER,
oob_inline = os.SO.OOBINLINE,
send_buffer_max_size = os.SO.SNDBUF,
recv_buffer_max_size = os.SO.RCVBUF,
send_buffer_min_size = os.SO.SNDLOWAT,
recv_buffer_min_size = os.SO.RCVLOWAT,
send_timeout = os.SO.SNDTIMEO,
recv_timeout = os.SO.RCVTIMEO,
socket_error = os.SO.ERROR,
socket_type = os.SO.TYPE,
};
pub const SocketOption = union(SocketOptionType) {
debug: bool,
listen: bool,
reuse_address: bool,
keep_alive: bool,
dont_route: bool,
broadcast: bool,
linger: posix.LINGER,
oob_inline: bool,
send_buffer_max_size: u32,
recv_buffer_max_size: u32,
send_buffer_min_size: u32,
recv_buffer_min_size: u32,
send_timeout: u32, // Timeout specified in milliseconds.
recv_timeout: u32, // Timeout specified in milliseconds.
socket_error: void,
socket_type: u32,
};
pub const Connection = struct {
socket: Socket,
address: net.Address,
};
pub const Socket = struct {
pub const Reader = io.Reader(*Self, anyerror, read);
pub const Writer = io.Writer(*Self, anyerror, write);
const Self = @This();
handle: pike.Handle,
readers: Waker = .{},
writers: Waker = .{},
pub fn init(domain: u32, socket_type: u32, protocol: u32, flags: u32) !Self {
return Self{
.handle = .{
.inner = try os.socket(
domain,
socket_type | flags | os.SOCK.CLOEXEC | os.SOCK.NONBLOCK,
protocol,
),
.wake_fn = wake,
},
};
}
pub fn deinit(self: *Self) void {
self.shutdown(posix.SHUT_RDWR) catch {};
if (self.writers.shutdown()) |task| pike.dispatch(task, .{});
if (self.readers.shutdown()) |task| pike.dispatch(task, .{});
os.close(self.handle.inner);
}
pub fn registerTo(self: *const Self, notifier: *const pike.Notifier) !void {
try notifier.register(&self.handle, .{ .read = true, .write = true });
}
fn wake(handle: *pike.Handle, batch: *pike.Batch, opts: pike.WakeOptions) void {
const self = @fieldParentPtr(Self, "handle", handle);
if (opts.write_ready) if (self.writers.notify()) |task| batch.push(task);
if (opts.read_ready) if (self.readers.notify()) |task| batch.push(task);
if (opts.shutdown) {
if (self.writers.shutdown()) |task| batch.push(task);
if (self.readers.shutdown()) |task| batch.push(task);
}
}
fn ErrorUnionOf(comptime func: anytype) std.builtin.TypeInfo.ErrorUnion {
return @typeInfo(@typeInfo(@TypeOf(func)).Fn.return_type.?).ErrorUnion;
}
fn call(self: *Self, comptime function: anytype, args: anytype, comptime opts: pike.CallOptions) !ErrorUnionOf(function).payload {
while (true) {
const result = @call(.{ .modifier = .always_inline }, function, args) catch |err| switch (err) {
error.WouldBlock => {
if (comptime opts.write) {
try self.writers.wait(.{ .use_lifo = true });
} else if (comptime opts.read) {
try self.readers.wait(.{});
}
continue;
},
else => return err,
};
return result;
}
}
pub fn shutdown(self: *const Self, how: c_int) !void {
try posix.shutdown_(self.handle.inner, how);
}
pub fn get(self: *const Self, comptime opt: SocketOptionType) !meta.TagPayload(SocketOption, opt) {
if (opt == .socket_error) {
const errno = try posix.getsockopt(u32, self.handle.inner, os.SOL.SOCKET, @enumToInt(opt));
return switch (errno) {
@enumToInt(os.E.SUCCESS) => {},
@enumToInt(os.E.ACCES) => error.PermissionDenied,
@enumToInt(os.E.PERM) => error.PermissionDenied,
@enumToInt(os.E.ADDRINUSE) => error.AddressInUse,
@enumToInt(os.E.ADDRNOTAVAIL) => error.AddressNotAvailable,
@enumToInt(os.E.AFNOSUPPORT) => error.AddressFamilyNotSupported,
@enumToInt(os.E.AGAIN) => error.SystemResources,
@enumToInt(os.E.ALREADY) => error.AlreadyConnecting,
@enumToInt(os.E.BADF) => error.BadFileDescriptor,
@enumToInt(os.E.CONNREFUSED) => error.ConnectionRefused,
@enumToInt(os.E.FAULT) => error.InvalidParameter,
@enumToInt(os.E.ISCONN) => error.AlreadyConnected,
@enumToInt(os.E.NETUNREACH) => error.NetworkUnreachable,
@enumToInt(os.E.NOTSOCK) => error.NotASocket,
@enumToInt(os.E.PROTOTYPE) => error.UnsupportedProtocol,
@enumToInt(os.E.TIMEDOUT) => error.ConnectionTimedOut,
else => |err| os.unexpectedErrno(@intToEnum(os.E, err)),
};
}
return posix.getsockopt(
meta.TagPayload(SocketOption, opt),
self.handle.inner,
os.SOL.SOCKET,
@enumToInt(opt),
);
}
pub fn set(self: *const Self, comptime opt: SocketOptionType, value: meta.TagPayload(SocketOption, opt)) !void {
const val = switch (@TypeOf(value)) {
bool => @intCast(c_int, @boolToInt(value)),
else => value,
};
try os.setsockopt(
self.handle.inner,
os.SOL.SOCKET,
@enumToInt(opt),
blk: {
if (comptime @typeInfo(@TypeOf(val)) == .Optional) {
break :blk if (val) |v| @as([]const u8, mem.asBytes(&v)[0..@sizeOf(@TypeOf(val))]) else &[0]u8{};
} else {
break :blk @as([]const u8, mem.asBytes(&val)[0..@sizeOf(@TypeOf(val))]);
}
},
);
}
pub fn getBindAddress(self: *const Self) !net.Address {
var addr: os.sockaddr = undefined;
var addr_len: os.socklen_t = @sizeOf(@TypeOf(addr));
try os.getsockname(self.handle.inner, &addr, &addr_len);
return net.Address.initPosix(@alignCast(4, &addr));
}
pub fn bind(self: *Self, address: net.Address) !void {
try os.bind(self.handle.inner, &address.any, address.getOsSockLen());
}
pub fn listen(self: *Self, backlog: usize) !void {
try os.listen(self.handle.inner, @truncate(u31, backlog));
}
pub fn accept(self: *Self) callconv(.Async) !Connection {
var addr: os.sockaddr = undefined;
var addr_len: os.socklen_t = @sizeOf(@TypeOf(addr));
const handle = try self.call(posix.accept_, .{
self.handle.inner,
&addr,
&addr_len,
os.SOCK.NONBLOCK | os.SOCK.CLOEXEC,
}, .{ .read = true });
return Connection{
.socket = Socket{ .handle = .{ .inner = handle, .wake_fn = wake } },
.address = net.Address.initPosix(@alignCast(4, &addr)),
};
}
pub fn connect(self: *Self, address: net.Address) callconv(.Async) !void {
posix.connect_(self.handle.inner, &address.any, address.getOsSockLen()) catch |err| switch (err) {
error.WouldBlock => try self.writers.wait(.{ .use_lifo = true }),
else => return err,
};
try self.get(.socket_error);
}
pub inline fn reader(self: *Self) Reader {
return Reader{ .context = self };
}
pub inline fn writer(self: *Self) Writer {
return Writer{ .context = self };
}
pub fn read(self: *Self, buf: []u8) !usize {
const num_bytes = self.call(posix.read_, .{ self.handle.inner, buf }, .{ .read = true }) catch |err| switch (err) {
error.NotOpenForReading,
error.ConnectionResetByPeer,
error.OperationCancelled,
=> return 0,
else => return err,
};
return num_bytes;
}
pub fn recv(self: *Self, buf: []u8, flags: u32) callconv(.Async) !usize {
return self.recvFrom(buf, flags, null);
}
pub fn recvFrom(self: *Self, buf: []u8, flags: u32, address: ?*net.Address) callconv(.Async) !usize {
var src_addr: os.sockaddr = undefined;
var src_addr_len: os.socklen_t = undefined;
const num_bytes = try self.call(os.recvfrom, .{
self.handle.inner,
buf,
flags,
@as(?*os.sockaddr, if (address != null) &src_addr else null),
@as(?*os.socklen_t, if (address != null) &src_addr_len else null),
}, .{ .read = true });
if (address) |a| {
a.* = net.Address{ .any = src_addr };
}
return num_bytes;
}
pub fn write(self: *Self, buf: []const u8) !usize {
return self.call(os.write, .{ self.handle.inner, buf }, .{ .write = true });
}
pub fn send(self: *Self, buf: []const u8, flags: u32) callconv(.Async) !usize {
return self.sendTo(buf, flags, null);
}
pub fn sendTo(self: *Self, buf: []const u8, flags: u32, address: ?net.Address) callconv(.Async) !usize {
return self.call(posix.sendto_, .{
self.handle.inner,
buf,
flags,
@as(?*const os.sockaddr, if (address) |a| &a.any else null),
if (address) |a| a.getOsSockLen() else 0,
}, .{ .write = true });
}
};