2022-12-23 01:53:07 +01:00
|
|
|
const std = @import("std");
|
|
|
|
const hexdump = @import("./hexdump.zig");
|
|
|
|
const testing = std.testing;
|
|
|
|
const net = std.net;
|
2022-12-24 18:57:00 +01:00
|
|
|
const os = std.os;
|
2022-12-23 01:53:07 +01:00
|
|
|
const fmt = std.fmt;
|
|
|
|
|
2023-01-03 10:56:01 +01:00
|
|
|
const receive_fd = @import("./exchange-fd.zig").receive_fd;
|
|
|
|
|
2022-12-24 23:09:25 +01:00
|
|
|
const Timer = std.time.Timer;
|
|
|
|
|
2022-12-23 01:53:07 +01:00
|
|
|
const print = std.debug.print;
|
|
|
|
|
|
|
|
const CBEvent = @import("./callback.zig").CBEvent;
|
|
|
|
const Connection = @import("./connection.zig").Connection;
|
|
|
|
const Message = @import("./message.zig").Message;
|
|
|
|
const Event = @import("./event.zig").Event;
|
|
|
|
const Switch = @import("./switch.zig").Switch;
|
|
|
|
const print_eq = @import("./util.zig").print_eq;
|
|
|
|
|
|
|
|
const Messages = @import("./message.zig").Messages;
|
2023-01-08 20:06:22 +01:00
|
|
|
const SwitchDB = @import("./switch.zig").SwitchDB;
|
2022-12-23 01:53:07 +01:00
|
|
|
const Connections = @import("./connection.zig").Connections;
|
2023-01-11 15:05:16 +01:00
|
|
|
const CBEventType = @import("./main.zig").CBEvent.Type;
|
2022-12-24 18:57:00 +01:00
|
|
|
|
|
|
|
pub const PollFD = std.ArrayList(std.os.pollfd);
|
2022-12-23 01:53:07 +01:00
|
|
|
|
2023-01-17 07:51:41 +01:00
|
|
|
pub const IPC_HEADER_SIZE = 4; // Size (4 bytes) then content.
|
|
|
|
pub const IPC_BASE_SIZE = 100000; // 100 KB, plenty enough space for messages
|
2023-01-07 16:46:17 +01:00
|
|
|
pub const IPC_MAX_MESSAGE_SIZE = IPC_BASE_SIZE-IPC_HEADER_SIZE;
|
|
|
|
pub const IPC_VERSION = 1;
|
|
|
|
|
2022-12-23 01:53:07 +01:00
|
|
|
// Context of the whole networking state.
|
|
|
|
pub const Context = struct {
|
|
|
|
rundir: [] u8,
|
|
|
|
allocator: std.mem.Allocator, // Memory allocator.
|
|
|
|
connections: Connections, // Keep track of connections.
|
|
|
|
|
2023-01-03 10:56:01 +01:00
|
|
|
// "pollfd" structures passed to poll(2). Same indexes as "connections".
|
2022-12-24 18:57:00 +01:00
|
|
|
pollfd: PollFD, // .fd (fd_t) + .events (i16) + .revents (i16)
|
2022-12-23 01:53:07 +01:00
|
|
|
|
2023-01-07 16:46:17 +01:00
|
|
|
tx: Messages, // Messages to send, once their fd is available.
|
2023-01-08 20:06:22 +01:00
|
|
|
switchdb: SwitchDB, // Relations between fd.
|
2022-12-23 01:53:07 +01:00
|
|
|
|
|
|
|
timer: ?i32 = null, // No timer by default (no TIMER event).
|
|
|
|
|
|
|
|
const Self = @This();
|
|
|
|
|
|
|
|
// Context initialization:
|
|
|
|
// - init structures (provide the allocator)
|
|
|
|
pub fn init(allocator: std.mem.Allocator) !Self {
|
|
|
|
var rundir = std.process.getEnvVarOwned(allocator, "RUNDIR") catch |err| switch(err) {
|
|
|
|
error.EnvironmentVariableNotFound => blk: {
|
|
|
|
break :blk try allocator.dupeZ(u8, "/tmp/libipc-run/");
|
|
|
|
},
|
|
|
|
else => {
|
|
|
|
return err;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
return Self {
|
|
|
|
.rundir = rundir
|
|
|
|
, .connections = Connections.init(allocator)
|
|
|
|
, .pollfd = PollFD.init(allocator)
|
|
|
|
, .tx = Messages.init(allocator)
|
2023-01-08 20:06:22 +01:00
|
|
|
, .switchdb = SwitchDB.init(allocator)
|
2022-12-23 01:53:07 +01:00
|
|
|
, .allocator = allocator
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a server path for the UNIX socket based on the service name
|
|
|
|
pub fn server_path(self: *Self, service_name: []const u8, writer: anytype) !void {
|
|
|
|
try writer.print("{s}/{s}", .{self.rundir, service_name});
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn deinit(self: *Self) void {
|
|
|
|
self.close_all() catch |err| switch(err){
|
|
|
|
error.IndexOutOfBounds => {
|
|
|
|
print("context.deinit(): IndexOutOfBounds\n", .{});
|
|
|
|
},
|
|
|
|
};
|
|
|
|
self.allocator.free(self.rundir);
|
|
|
|
self.connections.deinit();
|
|
|
|
self.pollfd.deinit();
|
2022-12-25 21:45:51 +01:00
|
|
|
for (self.tx.items) |m| {
|
|
|
|
m.deinit();
|
|
|
|
}
|
2022-12-23 01:53:07 +01:00
|
|
|
self.tx.deinit();
|
2023-01-07 16:46:17 +01:00
|
|
|
self.switchdb.deinit();
|
2022-12-23 01:53:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Both simple connection and the switched one share this code.
|
|
|
|
fn connect_ (self: *Self, ctype: Connection.Type, path: []const u8) !i32 {
|
|
|
|
var stream = try net.connectUnixSocket(path);
|
|
|
|
const newfd = stream.handle;
|
|
|
|
errdefer std.os.closeSocket(newfd);
|
2023-01-01 18:19:39 +01:00
|
|
|
var newcon = Connection.init(ctype, null);
|
2023-01-03 10:56:01 +01:00
|
|
|
try self.add_ (newcon, newfd);
|
2022-12-23 01:53:07 +01:00
|
|
|
return newfd;
|
|
|
|
}
|
|
|
|
|
2023-01-03 10:56:01 +01:00
|
|
|
fn connect_ipcd (self: *Self, service_name: []const u8
|
|
|
|
, connection_type: Connection.Type) !?i32 {
|
2022-12-29 15:31:15 +01:00
|
|
|
|
|
|
|
const buffer_size = 10000;
|
|
|
|
var buffer: [buffer_size]u8 = undefined;
|
2023-01-01 18:19:39 +01:00
|
|
|
var fba = std.heap.FixedBufferAllocator.init(&buffer);
|
2023-01-03 12:07:55 +01:00
|
|
|
var allocator = fba.allocator();
|
2022-12-29 15:31:15 +01:00
|
|
|
|
|
|
|
// Get IPC_NETWORK environment variable
|
|
|
|
// IPC_NETWORK is shared with the network service to choose the protocol stack,
|
|
|
|
// according to the target service.
|
|
|
|
//
|
|
|
|
// Example, connecting to 'audio' service through tor service:
|
|
|
|
// IPC_NETWORK="audio tor://some.example.com/audio"
|
|
|
|
//
|
|
|
|
// Routing directives can be chained using " ;" separator:
|
|
|
|
// IPC_NETWORK="audio https://example.com/audio ;pong tls://pong.example.com/pong"
|
2023-01-03 12:07:55 +01:00
|
|
|
var network_envvar = std.process.getEnvVarOwned(allocator, "IPC_NETWORK") catch |err| switch(err) {
|
2022-12-29 15:31:15 +01:00
|
|
|
// error{ OutOfMemory, EnvironmentVariableNotFound, InvalidUtf8 } (ErrorSet)
|
2023-01-03 18:18:16 +01:00
|
|
|
error.EnvironmentVariableNotFound => {
|
|
|
|
print("no IPC_NETWORK envvar: IPCd won't be contacted\n", .{});
|
|
|
|
return null;
|
|
|
|
}, // no need to contact IPCd
|
2022-12-29 15:31:15 +01:00
|
|
|
else => { return err; },
|
|
|
|
};
|
|
|
|
|
|
|
|
var lookupbuffer: [buffer_size]u8 = undefined;
|
2023-01-03 12:07:55 +01:00
|
|
|
var lookupfbs = std.io.fixedBufferStream(&lookupbuffer);
|
2022-12-29 15:31:15 +01:00
|
|
|
var lookupwriter = lookupfbs.writer();
|
2023-01-03 12:07:55 +01:00
|
|
|
try lookupwriter.print("{s};{s}", .{service_name, network_envvar});
|
2022-12-29 15:31:15 +01:00
|
|
|
|
|
|
|
// Try to connect to the IPCd service
|
2023-01-05 17:28:24 +01:00
|
|
|
var ipcdfd = try self.connect_service("ipc");
|
2023-01-03 12:07:55 +01:00
|
|
|
defer self.close_fd (ipcdfd) catch {}; // in any case, connection should be closed
|
2022-12-29 15:31:15 +01:00
|
|
|
|
|
|
|
// Send LOOKUP message
|
|
|
|
// content: target service name;${IPC_NETWORK}
|
|
|
|
// example: pong;pong tls://example.com:8998/pong
|
|
|
|
|
2023-01-05 11:49:33 +01:00
|
|
|
var m = try Message.init (ipcdfd, allocator, lookupfbs.getWritten());
|
2022-12-29 15:31:15 +01:00
|
|
|
try self.write (m);
|
|
|
|
|
|
|
|
// Read LOOKUP response
|
2023-01-03 10:56:01 +01:00
|
|
|
// case error: ignore and move on (TODO)
|
2022-12-29 15:31:15 +01:00
|
|
|
// else: get fd sent by IPCd then close IPCd fd
|
2023-01-04 13:29:40 +01:00
|
|
|
var reception_buffer: [2000]u8 = undefined;
|
2023-01-03 12:07:55 +01:00
|
|
|
var reception_size: usize = 0;
|
|
|
|
var newfd = try receive_fd (ipcdfd, &reception_buffer, &reception_size);
|
2023-01-04 13:29:40 +01:00
|
|
|
if (reception_size == 0) {
|
|
|
|
return error.IPCdFailedNoMessage;
|
2023-01-04 11:34:49 +01:00
|
|
|
}
|
2023-01-04 13:29:40 +01:00
|
|
|
|
|
|
|
var response: []u8 = reception_buffer[0..reception_size];
|
|
|
|
// print ("receive_fd:message received: {s} (len: {})\n", .{response, reception_size});
|
|
|
|
|
|
|
|
if (! std.mem.eql(u8, response, "ok")) {
|
|
|
|
return error.IPCdFailedNotOk;
|
2023-01-04 11:34:49 +01:00
|
|
|
}
|
2023-01-03 10:56:01 +01:00
|
|
|
var newcon = Connection.init(connection_type, null);
|
|
|
|
try self.add_ (newcon, newfd);
|
2023-01-03 12:07:55 +01:00
|
|
|
return newfd;
|
2023-01-03 10:56:01 +01:00
|
|
|
}
|
2022-12-29 15:31:15 +01:00
|
|
|
|
2023-01-03 10:56:01 +01:00
|
|
|
/// TODO: Add a new connection, but takes care of memory problems:
|
|
|
|
/// in case one of the arrays cannot sustain another entry, the other
|
|
|
|
/// won't be added.
|
|
|
|
fn add_ (self: *Self, new_connection: Connection, fd: os.socket_t) !void {
|
|
|
|
try self.connections.append(new_connection);
|
|
|
|
try self.pollfd.append(.{ .fd = fd
|
|
|
|
, .events = std.os.linux.POLL.IN
|
|
|
|
, .revents = 0 });
|
2022-12-29 15:31:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn fd_to_index (self: Self, fd: i32) !usize {
|
|
|
|
var i: usize = 0;
|
|
|
|
while(i < self.pollfd.items.len) {
|
|
|
|
if (self.pollfd.items[i].fd == fd) {
|
|
|
|
return i;
|
|
|
|
}
|
2023-01-04 11:34:49 +01:00
|
|
|
i += 1;
|
2022-12-29 15:31:15 +01:00
|
|
|
}
|
|
|
|
return error.IndexNotFound;
|
|
|
|
}
|
|
|
|
|
2023-01-16 22:26:15 +01:00
|
|
|
/// Connect to the service directly, without reaching IPCd first.
|
|
|
|
/// Return the connection FD.
|
2022-12-29 15:31:15 +01:00
|
|
|
pub fn connect_service (self: *Self, service_name: []const u8) !i32 {
|
|
|
|
var buffer: [1000]u8 = undefined;
|
|
|
|
var fbs = std.io.fixedBufferStream(&buffer);
|
|
|
|
var writer = fbs.writer();
|
|
|
|
|
|
|
|
try self.server_path(service_name, writer);
|
|
|
|
var path = fbs.getWritten();
|
2023-01-03 12:07:55 +01:00
|
|
|
|
2023-01-16 22:26:15 +01:00
|
|
|
return self.connect_ (Connection.Type.IPC, path);
|
2022-12-29 15:31:15 +01:00
|
|
|
}
|
|
|
|
|
2023-01-16 22:26:15 +01:00
|
|
|
/// Tries to connect to IPCd first, then the service (if needed).
|
|
|
|
/// Return the connection FD.
|
2023-01-03 12:07:55 +01:00
|
|
|
pub fn connect_ipc (self: *Self, service_name: []const u8) !i32 {
|
|
|
|
// First, try ipcd.
|
|
|
|
if (try self.connect_ipcd (service_name, Connection.Type.IPC)) |fd| {
|
|
|
|
print("Connected via IPCd, fd is {}\n", .{fd});
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
// In case this doesn't work, connect directly.
|
|
|
|
return try self.connect_service (service_name);
|
|
|
|
}
|
|
|
|
|
2023-01-11 19:58:45 +01:00
|
|
|
/// Add a new file descriptor to follow, labeled as EXTERNAL.
|
|
|
|
/// Useful for protocol daemons (ex: TCPd) listening to a socket for external connections,
|
|
|
|
/// clients trying to reach a libipc service.
|
|
|
|
pub fn add_external (self: *Self, newfd: i32) !void {
|
|
|
|
var newcon = Connection.init(Connection.Type.EXTERNAL, null);
|
|
|
|
try self.add_ (newcon, newfd);
|
|
|
|
}
|
|
|
|
|
2023-01-16 22:26:15 +01:00
|
|
|
fn accept_new_client(self: *Self, event: *Event, server_index: usize) !void {
|
2022-12-25 05:05:41 +01:00
|
|
|
// net.StreamServer
|
2023-01-01 18:19:39 +01:00
|
|
|
var serverfd = self.pollfd.items[server_index].fd;
|
|
|
|
var path = self.connections.items[server_index].path orelse return error.ServerWithNoPath;
|
|
|
|
var server = net.StreamServer {
|
|
|
|
.sockfd = serverfd
|
|
|
|
, .kernel_backlog = 100
|
|
|
|
, .reuse_address = false
|
|
|
|
, .listen_address = try net.Address.initUnix(path)
|
|
|
|
};
|
2022-12-25 05:05:41 +01:00
|
|
|
var client = try server.accept(); // net.StreamServer.Connection
|
|
|
|
|
|
|
|
const newfd = client.stream.handle;
|
|
|
|
var newcon = Connection.init(Connection.Type.IPC, null);
|
2023-01-03 10:56:01 +01:00
|
|
|
try self.add_ (newcon, newfd);
|
2022-12-25 05:05:41 +01:00
|
|
|
|
|
|
|
const sfd = server.sockfd orelse return error.SocketLOL; // TODO
|
|
|
|
// WARNING: imply every new item is last
|
|
|
|
event.set(Event.Type.CONNECTION, self.pollfd.items.len - 1, sfd, null);
|
|
|
|
}
|
|
|
|
|
2022-12-23 01:53:07 +01:00
|
|
|
// Create a unix socket.
|
|
|
|
// Store std lib structures in the context.
|
2023-01-03 18:18:16 +01:00
|
|
|
pub fn server_init(self: *Self, service_name: [] const u8) !net.StreamServer {
|
|
|
|
var buffer: [1000]u8 = undefined;
|
|
|
|
var fbs = std.io.fixedBufferStream(&buffer);
|
|
|
|
var writer = fbs.writer();
|
|
|
|
|
|
|
|
try self.server_path(service_name, writer);
|
|
|
|
var path = fbs.getWritten();
|
|
|
|
|
2023-01-07 16:46:17 +01:00
|
|
|
// print("context server init {s}\n", .{path});
|
2022-12-23 01:53:07 +01:00
|
|
|
var server = net.StreamServer.init(.{});
|
|
|
|
var socket_addr = try net.Address.initUnix(path);
|
|
|
|
try server.listen(socket_addr);
|
|
|
|
|
2022-12-25 05:05:41 +01:00
|
|
|
const newfd = server.sockfd orelse return error.SocketLOL; // TODO
|
2023-01-01 18:19:39 +01:00
|
|
|
// Store the path in the Connection structure, so the UNIX socket file can be removed later.
|
|
|
|
var newcon = Connection.init(Connection.Type.SERVER, try self.allocator.dupeZ(u8, path));
|
2023-01-03 10:56:01 +01:00
|
|
|
try self.add_ (newcon, newfd);
|
2022-12-23 01:53:07 +01:00
|
|
|
return server;
|
|
|
|
}
|
|
|
|
|
2022-12-25 21:45:51 +01:00
|
|
|
pub fn write (_: *Self, m: Message) !void {
|
|
|
|
// Message contains the fd, no need to search for
|
|
|
|
// the right structure to copy, let's just recreate
|
|
|
|
// a Stream from the fd.
|
|
|
|
var stream = net.Stream { .handle = m.fd };
|
|
|
|
|
2023-01-17 07:51:41 +01:00
|
|
|
var buffer = [_]u8{0} ** IPC_MAX_MESSAGE_SIZE;
|
2022-12-25 21:45:51 +01:00
|
|
|
var fbs = std.io.fixedBufferStream(&buffer);
|
|
|
|
var writer = fbs.writer();
|
|
|
|
|
|
|
|
_ = try m.write(writer); // returns paylen
|
|
|
|
|
|
|
|
_ = try stream.write (fbs.getWritten());
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn schedule (self: *Self, m: Message) !void {
|
2023-01-18 17:22:56 +01:00
|
|
|
print ("scheduling new message {}\n", .{m});
|
2022-12-25 21:45:51 +01:00
|
|
|
try self.tx.append(m);
|
2022-12-23 01:53:07 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 15:05:16 +01:00
|
|
|
/// Read from a client (indexed by a FD).
|
|
|
|
pub fn read_fd (self: *Self, fd: i32) !?Message {
|
|
|
|
return try self.read(try self.fd_to_index (fd));
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_switch(self: *Self, fd1: i32, fd2: i32) !void {
|
|
|
|
var index_origin = try self.fd_to_index(fd1);
|
|
|
|
var index_destinataire = try self.fd_to_index(fd2);
|
|
|
|
|
|
|
|
self.connections.items[index_origin].t = Connection.Type.SWITCHED;
|
|
|
|
self.connections.items[index_destinataire].t = Connection.Type.SWITCHED;
|
|
|
|
|
|
|
|
try self.switchdb.add_switch(fd1,fd2);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_switch_callbacks(self: *Self, fd: i32
|
2023-01-18 01:34:30 +01:00
|
|
|
, in : *const fn (origin: i32, mcontent: [*]u8, mlen: *u32) CBEventType
|
|
|
|
, out : *const fn (origin: i32, mcontent: [*]const u8, mlen: u32) CBEventType) !void {
|
2023-01-11 15:05:16 +01:00
|
|
|
try self.switchdb.set_callbacks(fd,in, out);
|
|
|
|
}
|
|
|
|
|
2022-12-25 21:45:51 +01:00
|
|
|
pub fn read (self: *Self, index: usize) !?Message {
|
2022-12-23 01:53:07 +01:00
|
|
|
if (index >= self.pollfd.items.len) {
|
|
|
|
return error.IndexOutOfBounds;
|
|
|
|
}
|
|
|
|
|
2023-01-17 07:51:41 +01:00
|
|
|
var buffer = [_]u8{0} ** IPC_MAX_MESSAGE_SIZE;
|
2022-12-25 21:45:51 +01:00
|
|
|
var packet_size: usize = undefined;
|
|
|
|
|
2022-12-25 06:26:38 +01:00
|
|
|
// TODO: this is a problem from the network API in Zig,
|
|
|
|
// servers and clients are different, they aren't just fds.
|
|
|
|
// Maybe there is something to change in the API.
|
2022-12-31 04:58:45 +01:00
|
|
|
if (self.connections.items[index].t == .SERVER) {
|
2022-12-25 06:26:38 +01:00
|
|
|
return error.messageOnServer;
|
|
|
|
}
|
2022-12-23 01:53:07 +01:00
|
|
|
|
2022-12-31 04:58:45 +01:00
|
|
|
// This may be kinda hacky, idk.
|
|
|
|
var fd = self.pollfd.items[index].fd;
|
|
|
|
var stream: net.Stream = .{ .handle = fd };
|
|
|
|
packet_size = try stream.read(buffer[0..]);
|
|
|
|
|
2022-12-25 21:45:51 +01:00
|
|
|
// Let's handle this as a disconnection.
|
|
|
|
if (packet_size <= 4) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-12-31 04:58:45 +01:00
|
|
|
return try Message.read(fd, buffer[0..], self.allocator);
|
2022-12-23 01:53:07 +01:00
|
|
|
}
|
|
|
|
|
2023-01-10 17:09:34 +01:00
|
|
|
/// Before closing the fd, test it via the 'fcntl' syscall.
|
|
|
|
/// This is useful for switched connections: FDs could be closed without libipc being informed.
|
|
|
|
fn safe_close_fd (self: *Self, fd: i32) void {
|
|
|
|
var should_close = true;
|
|
|
|
_ = std.os.fcntl(fd, std.os.F.GETFD, 0) catch {
|
|
|
|
should_close = false;
|
|
|
|
};
|
|
|
|
if (should_close) {
|
|
|
|
self.close_fd(fd) catch {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-07 19:04:05 +01:00
|
|
|
// Wait for an event.
|
2022-12-23 01:53:07 +01:00
|
|
|
pub fn wait_event(self: *Self) !Event {
|
2023-01-05 11:49:33 +01:00
|
|
|
var current_event: Event = Event.init(Event.Type.ERROR, 0, 0, null);
|
2022-12-24 18:57:00 +01:00
|
|
|
var wait_duration: i32 = -1; // -1 == unlimited
|
|
|
|
|
|
|
|
if (self.timer) |t| { wait_duration = t; }
|
2022-12-23 01:53:07 +01:00
|
|
|
else { print("listening (no timer)\n", .{}); }
|
|
|
|
|
2022-12-24 18:57:00 +01:00
|
|
|
// Make sure we listen to the right file descriptors,
|
|
|
|
// setting POLLIN & POLLOUT flags.
|
|
|
|
for (self.pollfd.items) |*fd| {
|
2022-12-24 23:09:25 +01:00
|
|
|
fd.events |= std.os.linux.POLL.IN; // just to make sure
|
2022-12-24 18:57:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for (self.tx.items) |m| {
|
|
|
|
for (self.pollfd.items) |*fd| {
|
|
|
|
if (fd.fd == m.fd) {
|
2022-12-24 23:09:25 +01:00
|
|
|
fd.events |= std.os.linux.POLL.OUT; // just to make sure
|
2022-12-24 18:57:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-24 02:47:20 +01:00
|
|
|
|
2022-12-25 21:45:51 +01:00
|
|
|
// before initiate a timer
|
2022-12-24 23:09:25 +01:00
|
|
|
var timer = try Timer.start();
|
2022-12-24 18:57:00 +01:00
|
|
|
|
|
|
|
// Polling.
|
|
|
|
var count: usize = undefined;
|
|
|
|
|
2022-12-29 10:12:40 +01:00
|
|
|
// print("fds: {any}\n", .{self.pollfd.items});
|
2022-12-24 18:57:00 +01:00
|
|
|
count = try os.poll(self.pollfd.items, wait_duration);
|
2022-12-29 10:12:40 +01:00
|
|
|
// print("fds NOW: {any}\n", .{self.pollfd.items});
|
2022-12-24 18:57:00 +01:00
|
|
|
|
2022-12-24 23:09:25 +01:00
|
|
|
if (count < 0) {
|
|
|
|
print("there is a problem: poll < 0\n", .{});
|
|
|
|
current_event = Event.init(Event.Type.ERROR, 0, 0, null);
|
|
|
|
return current_event;
|
|
|
|
}
|
2022-12-24 18:57:00 +01:00
|
|
|
|
2022-12-24 23:09:25 +01:00
|
|
|
var duration = timer.read() / 1000000; // ns -> ms
|
2022-12-24 18:57:00 +01:00
|
|
|
if (count == 0) {
|
2022-12-24 23:09:25 +01:00
|
|
|
if (duration >= wait_duration) {
|
|
|
|
current_event = Event.init(Event.Type.TIMER, 0, 0, null);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// In case nothing happened, and poll wasn't triggered by time out.
|
|
|
|
current_event = Event.init(Event.Type.ERROR, 0, 0, null);
|
|
|
|
}
|
2022-12-24 18:57:00 +01:00
|
|
|
return current_event;
|
|
|
|
}
|
|
|
|
|
2023-01-04 13:29:40 +01:00
|
|
|
// handle messages
|
2022-12-24 23:09:25 +01:00
|
|
|
// => loop over self.pollfd.items
|
|
|
|
for (self.pollfd.items) |*fd, i| {
|
|
|
|
// .revents is POLLIN
|
|
|
|
if(fd.revents & std.os.linux.POLL.IN > 0) {
|
2022-12-31 04:58:45 +01:00
|
|
|
// SERVER = new connection
|
2022-12-24 23:09:25 +01:00
|
|
|
if (self.connections.items[i].t == .SERVER) {
|
2022-12-25 05:05:41 +01:00
|
|
|
try self.accept_new_client(¤t_event, i);
|
2022-12-25 06:26:38 +01:00
|
|
|
return current_event;
|
2022-12-24 23:09:25 +01:00
|
|
|
}
|
2022-12-31 04:58:45 +01:00
|
|
|
// SWITCHED = send message to the right dest (or drop the switch)
|
2022-12-24 23:09:25 +01:00
|
|
|
else if (self.connections.items[i].t == .SWITCHED) {
|
2023-01-10 17:09:34 +01:00
|
|
|
current_event = self.switchdb.handle_event_read (i, fd.fd);
|
|
|
|
switch (current_event.t) {
|
|
|
|
.SWITCH_RX => {
|
|
|
|
try self.schedule(current_event.m.?);
|
|
|
|
},
|
|
|
|
// TODO: DISCONNECTION and ERROR do not handle errors.
|
|
|
|
.DISCONNECTION => {
|
|
|
|
var dest = try self.switchdb.getDest(fd.fd);
|
|
|
|
print("disconnection from {} -> removing {}, too\n", .{fd.fd, dest});
|
|
|
|
self.switchdb.nuke(fd.fd);
|
|
|
|
self.safe_close_fd(fd.fd);
|
|
|
|
self.safe_close_fd(dest);
|
|
|
|
},
|
|
|
|
.ERROR => {
|
|
|
|
var dest = try self.switchdb.getDest(fd.fd);
|
|
|
|
print("error from {} -> removing {}, too\n", .{fd.fd, dest});
|
|
|
|
self.switchdb.nuke(fd.fd);
|
|
|
|
self.safe_close_fd(fd.fd);
|
|
|
|
self.safe_close_fd(dest);
|
|
|
|
},
|
|
|
|
else => {
|
|
|
|
print("switch rx incoherent error: {}\n", .{current_event.t});
|
|
|
|
return error.incoherentSwitchError;
|
|
|
|
},
|
2023-01-08 12:46:21 +01:00
|
|
|
}
|
2023-01-18 17:22:56 +01:00
|
|
|
return current_event;
|
2022-12-24 23:09:25 +01:00
|
|
|
}
|
2022-12-31 04:58:45 +01:00
|
|
|
// EXTERNAL = user handles IO
|
2022-12-24 23:09:25 +01:00
|
|
|
else if (self.connections.items[i].t == .EXTERNAL) {
|
2022-12-25 06:26:38 +01:00
|
|
|
return Event.init(Event.Type.EXTERNAL, i, fd.fd, null);
|
2022-12-24 23:09:25 +01:00
|
|
|
}
|
2022-12-31 04:58:45 +01:00
|
|
|
// otherwise = new message or disconnection
|
|
|
|
else {
|
|
|
|
var maybe_message = self.read(i) catch |err| switch(err) {
|
|
|
|
error.ConnectionResetByPeer => {
|
|
|
|
print("connection reset by peer\n", .{});
|
|
|
|
try self.close(i);
|
2023-01-04 08:34:30 +01:00
|
|
|
return Event.init(Event.Type.DISCONNECTION, i, fd.fd, null);
|
2022-12-31 04:58:45 +01:00
|
|
|
},
|
|
|
|
else => { return err; },
|
|
|
|
};
|
2023-01-04 08:34:30 +01:00
|
|
|
|
2022-12-31 04:58:45 +01:00
|
|
|
if (maybe_message) |m| {
|
2022-12-25 21:45:51 +01:00
|
|
|
return Event.init(Event.Type.MESSAGE, i, fd.fd, m);
|
|
|
|
}
|
|
|
|
|
|
|
|
try self.close(i);
|
|
|
|
return Event.init(Event.Type.DISCONNECTION, i, fd.fd, null);
|
2022-12-31 04:58:45 +01:00
|
|
|
}
|
2022-12-24 23:09:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// .revent is POLLOUT
|
|
|
|
if(fd.revents & std.os.linux.POLL.OUT > 0) {
|
2022-12-31 04:58:45 +01:00
|
|
|
fd.events &= ~ @as(i16, std.os.linux.POLL.OUT);
|
2022-12-24 23:09:25 +01:00
|
|
|
|
2023-01-08 20:06:22 +01:00
|
|
|
var index: usize = undefined;
|
|
|
|
for (self.tx.items) |m, index_| {
|
|
|
|
if (m.fd == self.pollfd.items[i].fd) {
|
|
|
|
index = index_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var m = self.tx.swapRemove(index);
|
|
|
|
|
2022-12-31 04:58:45 +01:00
|
|
|
// SWITCHED = write message for its switch buddy (callbacks)
|
2022-12-24 23:09:25 +01:00
|
|
|
if (self.connections.items[i].t == .SWITCHED) {
|
2023-01-10 17:09:34 +01:00
|
|
|
current_event = self.switchdb.handle_event_write (i, m);
|
2023-01-08 20:06:22 +01:00
|
|
|
// Message inner memory is already freed.
|
2023-01-10 17:09:34 +01:00
|
|
|
switch (current_event.t) {
|
|
|
|
.SWITCH_TX => {
|
|
|
|
},
|
|
|
|
.ERROR => {
|
|
|
|
var dest = try self.switchdb.getDest(fd.fd);
|
|
|
|
print("error from {} -> removing {}, too\n", .{fd.fd, dest});
|
|
|
|
self.switchdb.nuke(fd.fd);
|
|
|
|
self.safe_close_fd(fd.fd);
|
|
|
|
self.safe_close_fd(dest);
|
|
|
|
},
|
|
|
|
else => {
|
|
|
|
print("switch tx incoherent error: {}\n", .{current_event.t});
|
|
|
|
return error.incoherentSwitchError;
|
|
|
|
},
|
|
|
|
}
|
2023-01-08 20:06:22 +01:00
|
|
|
return current_event;
|
2022-12-31 04:58:45 +01:00
|
|
|
}
|
2022-12-24 23:09:25 +01:00
|
|
|
else {
|
2022-12-31 04:58:45 +01:00
|
|
|
// otherwise = write message for the msg.fd
|
|
|
|
try self.write (m);
|
|
|
|
m.deinit();
|
2022-12-25 06:26:38 +01:00
|
|
|
return Event.init(Event.Type.TX, i, fd.fd, null);
|
2022-12-24 23:09:25 +01:00
|
|
|
}
|
|
|
|
}
|
2022-12-31 04:58:45 +01:00
|
|
|
// .revent is POLLHUP
|
2022-12-24 23:09:25 +01:00
|
|
|
if(fd.revents & std.os.linux.POLL.HUP > 0) {
|
2022-12-31 04:58:45 +01:00
|
|
|
// handle disconnection
|
2022-12-24 23:09:25 +01:00
|
|
|
current_event = Event.init(Event.Type.DISCONNECTION, i, fd.fd, null);
|
|
|
|
try self.close(i);
|
2022-12-25 06:26:38 +01:00
|
|
|
return current_event;
|
2022-12-24 23:09:25 +01:00
|
|
|
}
|
2022-12-31 04:58:45 +01:00
|
|
|
// if fd revent is POLLERR or POLLNVAL
|
2022-12-25 06:26:38 +01:00
|
|
|
if ((fd.revents & std.os.linux.POLL.HUP > 0) or
|
|
|
|
(fd.revents & std.os.linux.POLL.NVAL > 0)) {
|
|
|
|
return Event.init(Event.Type.ERROR, i, fd.fd, null);
|
2022-12-31 04:58:45 +01:00
|
|
|
}
|
2022-12-24 23:09:25 +01:00
|
|
|
}
|
|
|
|
|
2022-12-24 18:57:00 +01:00
|
|
|
return current_event;
|
2022-12-23 01:53:07 +01:00
|
|
|
}
|
|
|
|
|
2022-12-29 15:31:15 +01:00
|
|
|
/// Remove a connection based on its file descriptor.
|
|
|
|
pub fn close_fd(self: *Self, fd: i32) !void {
|
|
|
|
try self.close(try self.fd_to_index (fd));
|
|
|
|
}
|
|
|
|
|
2022-12-23 01:53:07 +01:00
|
|
|
pub fn close(self: *Self, index: usize) !void {
|
|
|
|
// REMINDER: connections and pollfd have the same length
|
|
|
|
if (index >= self.pollfd.items.len) {
|
|
|
|
return error.IndexOutOfBounds;
|
|
|
|
}
|
|
|
|
|
|
|
|
// close the connection and remove it from the two structures
|
|
|
|
var con = self.connections.swapRemove(index);
|
2023-01-01 18:19:39 +01:00
|
|
|
// Remove service's UNIX socket file.
|
|
|
|
if (con.path) |path| {
|
2022-12-23 01:53:07 +01:00
|
|
|
std.fs.cwd().deleteFile(path) catch {};
|
2023-01-01 18:19:39 +01:00
|
|
|
self.allocator.free(path);
|
2022-12-23 01:53:07 +01:00
|
|
|
}
|
2022-12-25 21:45:51 +01:00
|
|
|
var pollfd = self.pollfd.swapRemove(index);
|
2023-01-01 18:19:39 +01:00
|
|
|
std.os.close(pollfd.fd);
|
2022-12-25 21:45:51 +01:00
|
|
|
|
|
|
|
// Remove all its non-sent messages.
|
|
|
|
var i: usize = 0;
|
|
|
|
while (true) {
|
|
|
|
if (i >= self.tx.items.len)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (self.tx.items[i].fd == pollfd.fd) {
|
|
|
|
var m = self.tx.swapRemove(i);
|
|
|
|
m.deinit();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
i += 1;
|
|
|
|
}
|
2022-12-23 01:53:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn close_all(self: *Self) !void {
|
|
|
|
while(self.connections.items.len > 0) { try self.close(0); }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn format(self: Self, comptime form: []const u8, options: fmt.FormatOptions, out_stream: anytype) !void {
|
|
|
|
try fmt.format(out_stream
|
|
|
|
, "context ({} connections and {} messages):"
|
|
|
|
, .{self.connections.items.len, self.tx.items.len});
|
|
|
|
|
|
|
|
for (self.connections.items) |con| {
|
|
|
|
try fmt.format(out_stream, "\n- ", .{});
|
|
|
|
try con.format(form, options, out_stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (self.tx.items) |tx| {
|
|
|
|
try fmt.format(out_stream, "\n- ", .{});
|
|
|
|
try tx.format(form, options, out_stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Creating a new thread: testing UNIX communication.
|
|
|
|
// This is a client sending a raw "Hello world!" bytestring,
|
|
|
|
// not an instance of Message.
|
|
|
|
const CommunicationTestThread = struct {
|
|
|
|
fn clientFn() !void {
|
|
|
|
const config = .{.safety = true};
|
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(config){};
|
|
|
|
defer _ = gpa.deinit();
|
|
|
|
const allocator = gpa.allocator();
|
|
|
|
|
|
|
|
var c = try Context.init(allocator);
|
|
|
|
defer c.deinit(); // There. Can't leak. Isn't Zig wonderful?
|
|
|
|
|
|
|
|
var buffer: [1000]u8 = undefined;
|
|
|
|
var fbs = std.io.fixedBufferStream(&buffer);
|
|
|
|
var writer = fbs.writer();
|
|
|
|
|
|
|
|
try c.server_path("simple-context-test", writer);
|
|
|
|
var path = fbs.getWritten();
|
|
|
|
const socket = try net.connectUnixSocket(path);
|
|
|
|
defer socket.close();
|
|
|
|
_ = try socket.writer().writeAll("Hello world!");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
test "Context - creation, display and memory check" {
|
|
|
|
const config = .{.safety = true};
|
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(config){};
|
|
|
|
defer _ = gpa.deinit();
|
|
|
|
|
|
|
|
const allocator = gpa.allocator();
|
|
|
|
|
|
|
|
var c = try Context.init(allocator);
|
|
|
|
defer c.deinit(); // There. Can't leak. Isn't Zig wonderful?
|
|
|
|
|
|
|
|
var buffer: [1000]u8 = undefined;
|
|
|
|
var fbs = std.io.fixedBufferStream(&buffer);
|
|
|
|
var writer = fbs.writer();
|
|
|
|
try c.server_path("simple-context-test", writer);
|
|
|
|
var path = fbs.getWritten();
|
|
|
|
|
|
|
|
// SERVER SIDE: creating a service.
|
2023-01-07 16:46:17 +01:00
|
|
|
var server = c.server_init("simple-context-test") catch |err| switch(err) {
|
2022-12-27 22:39:23 +01:00
|
|
|
error.FileNotFound => {
|
|
|
|
print ("\nError: cannot init server at {s}\n", .{path});
|
|
|
|
return err;
|
|
|
|
},
|
|
|
|
else => return err,
|
|
|
|
};
|
2022-12-23 01:53:07 +01:00
|
|
|
defer std.fs.cwd().deleteFile(path) catch {}; // Once done, remove file.
|
|
|
|
|
|
|
|
const t = try std.Thread.spawn(.{}, CommunicationTestThread.clientFn, .{});
|
|
|
|
defer t.join();
|
|
|
|
|
|
|
|
// Server.accept returns a net.StreamServer.Connection.
|
|
|
|
var client = try server.accept();
|
|
|
|
defer client.stream.close();
|
|
|
|
var buf: [16]u8 = undefined;
|
|
|
|
const n = try client.stream.reader().read(&buf);
|
|
|
|
|
|
|
|
try testing.expectEqual(@as(usize, 12), n);
|
|
|
|
try testing.expectEqualSlices(u8, "Hello world!", buf[0..n]);
|
|
|
|
}
|
|
|
|
|
2022-12-23 02:35:38 +01:00
|
|
|
// Creating a new thread: testing UNIX communication.
|
|
|
|
// This is a client sending a an instance of Message.
|
|
|
|
const ConnectThenSendMessageThread = struct {
|
|
|
|
fn clientFn() !void {
|
|
|
|
const config = .{.safety = true};
|
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(config){};
|
|
|
|
defer _ = gpa.deinit();
|
|
|
|
const allocator = gpa.allocator();
|
|
|
|
|
|
|
|
var c = try Context.init(allocator);
|
|
|
|
defer c.deinit(); // There. Can't leak. Isn't Zig wonderful?
|
|
|
|
|
|
|
|
var path_buffer: [1000]u8 = undefined;
|
|
|
|
var path_fbs = std.io.fixedBufferStream(&path_buffer);
|
|
|
|
var path_writer = path_fbs.writer();
|
|
|
|
try c.server_path("simple-context-test", path_writer);
|
|
|
|
var path = path_fbs.getWritten();
|
|
|
|
|
|
|
|
// Actual UNIX socket connection.
|
|
|
|
const socket = try net.connectUnixSocket(path);
|
|
|
|
defer socket.close();
|
|
|
|
|
|
|
|
// Writing message into a buffer.
|
|
|
|
var message_buffer: [1000]u8 = undefined;
|
|
|
|
var message_fbs = std.io.fixedBufferStream(&message_buffer);
|
|
|
|
var message_writer = message_fbs.writer();
|
|
|
|
// 'fd' parameter is not taken into account here (no loop)
|
|
|
|
|
2023-01-05 11:49:33 +01:00
|
|
|
var m = try Message.init(0, allocator, "Hello world!");
|
2022-12-23 02:35:38 +01:00
|
|
|
defer m.deinit();
|
|
|
|
_ = try m.write(message_writer);
|
|
|
|
|
|
|
|
_ = try socket.writer().writeAll(message_fbs.getWritten());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-01-07 16:46:17 +01:00
|
|
|
test "Context - creation, echo once" {
|
|
|
|
const config = .{.safety = true};
|
|
|
|
var gpa = std.heap.GeneralPurposeAllocator(config){};
|
|
|
|
defer _ = gpa.deinit();
|
2022-12-23 02:35:38 +01:00
|
|
|
|
2023-01-07 16:46:17 +01:00
|
|
|
const allocator = gpa.allocator();
|
2022-12-23 02:35:38 +01:00
|
|
|
|
2023-01-07 16:46:17 +01:00
|
|
|
var c = try Context.init(allocator);
|
|
|
|
defer c.deinit(); // There. Can't leak. Isn't Zig wonderful?
|
2022-12-23 02:35:38 +01:00
|
|
|
|
2023-01-07 16:46:17 +01:00
|
|
|
var buffer: [1000]u8 = undefined;
|
|
|
|
var fbs = std.io.fixedBufferStream(&buffer);
|
|
|
|
var writer = fbs.writer();
|
|
|
|
try c.server_path("simple-context-test", writer);
|
|
|
|
var path = fbs.getWritten();
|
2022-12-23 02:35:38 +01:00
|
|
|
|
|
|
|
// SERVER SIDE: creating a service.
|
2023-01-07 16:46:17 +01:00
|
|
|
var server = c.server_init("simple-context-test") catch |err| switch(err) {
|
2022-12-27 22:39:23 +01:00
|
|
|
error.FileNotFound => {
|
|
|
|
print ("\nError: cannot init server at {s}\n", .{path});
|
|
|
|
return err;
|
|
|
|
},
|
|
|
|
else => return err,
|
|
|
|
};
|
2023-01-07 16:46:17 +01:00
|
|
|
defer std.fs.cwd().deleteFile(path) catch {}; // Once done, remove file.
|
2022-12-23 02:35:38 +01:00
|
|
|
|
2023-01-07 16:46:17 +01:00
|
|
|
const t = try std.Thread.spawn(.{}, ConnectThenSendMessageThread.clientFn, .{});
|
|
|
|
defer t.join();
|
2022-12-23 02:35:38 +01:00
|
|
|
|
2023-01-07 16:46:17 +01:00
|
|
|
// Server.accept returns a net.StreamServer.Connection.
|
|
|
|
var client = try server.accept();
|
|
|
|
defer client.stream.close();
|
|
|
|
var buf: [1000]u8 = undefined;
|
|
|
|
const n = try client.stream.reader().read(&buf);
|
|
|
|
var m = try Message.read(8, buf[0..n], allocator); // 8 == random client's fd number
|
|
|
|
defer m.deinit();
|
2022-12-23 01:53:07 +01:00
|
|
|
|
2023-01-07 16:46:17 +01:00
|
|
|
try testing.expectEqual(@as(usize, 12), m.payload.len);
|
|
|
|
try testing.expectEqualSlices(u8, m.payload, "Hello world!");
|
|
|
|
}
|