zig/std/net.zig

358 lines
10 KiB
Zig
Raw Normal View History

const linux = @import("os/linux.zig");
const assert = @import("debug.zig").assert;
2016-08-17 20:11:04 -07:00
const endian = @import("endian.zig");
2016-12-21 20:34:14 -08:00
error SigInterrupt;
error Io;
error TimedOut;
error ConnectionReset;
error ConnectionRefused;
error OutOfMemory;
2016-12-21 20:34:14 -08:00
error NotSocket;
error BadFd;
2016-05-04 14:52:15 -07:00
2016-12-18 16:40:26 -08:00
const Connection = struct {
2016-05-04 14:52:15 -07:00
socket_fd: i32,
pub fn send(c: Connection, buf: []const u8) -> %usize {
const send_ret = linux.sendto(c.socket_fd, buf.ptr, buf.len, 0, null, 0);
2016-08-16 22:42:50 -07:00
const send_err = linux.getErrno(send_ret);
switch (send_err) {
0 => return send_ret,
linux.EINVAL => unreachable,
linux.EFAULT => unreachable,
linux.ECONNRESET => return error.ConnectionReset,
linux.EINTR => return error.SigInterrupt,
// TODO there are more possible errors
else => return error.Unexpected,
}
}
2016-05-13 09:53:30 -07:00
pub fn recv(c: Connection, buf: []u8) -> %[]u8 {
const recv_ret = linux.recvfrom(c.socket_fd, buf.ptr, buf.len, 0, null, null);
2016-08-16 22:42:50 -07:00
const recv_err = linux.getErrno(recv_ret);
switch (recv_err) {
0 => return buf[0..recv_ret],
linux.EINVAL => unreachable,
linux.EFAULT => unreachable,
linux.ENOTSOCK => return error.NotSocket,
linux.EINTR => return error.SigInterrupt,
linux.ENOMEM => return error.OutOfMemory,
linux.ECONNREFUSED => return error.ConnectionRefused,
linux.EBADF => return error.BadFd,
// TODO more error values
else => return error.Unexpected,
}
}
2016-05-04 14:52:15 -07:00
pub fn close(c: Connection) -> %void {
2016-08-16 22:42:50 -07:00
switch (linux.getErrno(linux.close(c.socket_fd))) {
2016-05-04 14:52:15 -07:00
0 => return,
linux.EBADF => unreachable,
linux.EINTR => return error.SigInterrupt,
linux.EIO => return error.Io,
2016-05-04 14:52:15 -07:00
else => return error.Unexpected,
}
}
2016-12-18 16:40:26 -08:00
};
2016-05-04 14:52:15 -07:00
2016-12-18 16:40:26 -08:00
const Address = struct {
family: u16,
scope_id: u32,
addr: [16]u8,
sort_key: i32,
2016-12-18 16:40:26 -08:00
};
2016-05-04 14:52:15 -07:00
pub fn lookup(hostname: []const u8, out_addrs: []Address) -> %[]Address {
if (hostname.len == 0) {
2016-07-27 23:26:12 -07:00
//
// if (family != AF_INET6)
// buf[cnt++] = (struct address){ .family = AF_INET, .addr = { 127,0,0,1 } };
// if (family != AF_INET)
// buf[cnt++] = (struct address){ .family = AF_INET6, .addr = { [15] = 1 } };
//
unreachable // TODO
}
2016-12-31 15:25:10 -08:00
// TODO
//switch (parseIpLiteral(hostname)) {
// Ok => |addr| {
// out_addrs[0] = addr;
// return out_addrs[0..1];
2016-12-31 15:25:10 -08:00
// },
// else => {},
//};
unreachable // TODO
2016-05-04 14:52:15 -07:00
}
2016-08-16 22:42:50 -07:00
pub fn connectAddr(addr: &Address, port: u16) -> %Connection {
const socket_ret = linux.socket(addr.family, linux.SOCK_STREAM, linux.PROTO_tcp);
2016-08-16 22:42:50 -07:00
const socket_err = linux.getErrno(socket_ret);
2016-05-04 14:52:15 -07:00
if (socket_err > 0) {
// TODO figure out possible errors from socket()
return error.Unexpected;
}
const socket_fd = i32(socket_ret);
const connect_ret = if (addr.family == linux.AF_INET) {
var os_addr: linux.sockaddr_in = undefined;
os_addr.family = addr.family;
2016-08-17 20:11:04 -07:00
os_addr.port = endian.swapIfLe(u16, port);
@memcpy((&u8)(&os_addr.addr), &addr.addr[0], 4);
2016-12-31 15:25:10 -08:00
@memset(&os_addr.zero[0], 0, @sizeOf(@typeOf(os_addr.zero)));
2016-08-16 22:42:50 -07:00
linux.connect(socket_fd, (&linux.sockaddr)(&os_addr), @sizeOf(linux.sockaddr_in))
} else if (addr.family == linux.AF_INET6) {
var os_addr: linux.sockaddr_in6 = undefined;
os_addr.family = addr.family;
2016-08-17 20:11:04 -07:00
os_addr.port = endian.swapIfLe(u16, port);
os_addr.flowinfo = 0;
os_addr.scope_id = addr.scope_id;
@memcpy(&os_addr.addr[0], &addr.addr[0], 16);
2016-08-16 22:42:50 -07:00
linux.connect(socket_fd, (&linux.sockaddr)(&os_addr), @sizeOf(linux.sockaddr_in6))
} else {
unreachable
};
2016-08-16 22:42:50 -07:00
const connect_err = linux.getErrno(connect_ret);
2016-05-04 14:52:15 -07:00
if (connect_err > 0) {
switch (connect_err) {
linux.ETIMEDOUT => return error.TimedOut,
else => {
// TODO figure out possible errors from connect()
return error.Unexpected;
},
}
2016-05-04 14:52:15 -07:00
}
return Connection {
.socket_fd = socket_fd,
};
}
pub fn connect(hostname: []const u8, port: u16) -> %Connection {
var addrs_buf: [1]Address = undefined;
const addrs_slice = %return lookup(hostname, addrs_buf[0..]);
2016-05-04 14:52:15 -07:00
const main_addr = &addrs_slice[0];
2016-08-16 22:42:50 -07:00
return connectAddr(main_addr, port);
}
2016-12-21 20:34:14 -08:00
error InvalidIpLiteral;
2016-08-16 22:42:50 -07:00
pub fn parseIpLiteral(buf: []const u8) -> %Address {
2016-12-31 15:25:10 -08:00
// TODO
//switch (parseIp4(buf)) {
// Ok => |ip4| {
// var result: Address = undefined;
// @memcpy(&result.addr[0], (&u8)(&ip4), @sizeOf(u32));
// result.family = linux.AF_INET;
// result.scope_id = 0;
// return result;
// },
// else => {},
//}
//switch (parseIp6(buf)) {
// Ok => |addr| {
// return addr;
// },
// else => {},
//}
return error.InvalidIpLiteral;
}
2016-08-16 22:42:50 -07:00
fn hexDigit(c: u8) -> u8 {
// TODO use switch with range
if ('0' <= c and c <= '9') {
c - '0'
} else if ('A' <= c and c <= 'Z') {
c - 'A' + 10
} else if ('a' <= c and c <= 'z') {
c - 'a' + 10
} else {
2016-08-16 22:42:50 -07:00
@maxValue(u8)
}
}
error InvalidChar;
error Overflow;
error JunkAtEnd;
error Incomplete;
2016-08-16 22:42:50 -07:00
fn parseIp6(buf: []const u8) -> %Address {
var result: Address = undefined;
result.family = linux.AF_INET6;
result.scope_id = 0;
const ip_slice = result.addr[0..];
var x: u16 = 0;
var saw_any_digits = false;
var index: u8 = 0;
var scope_id = false;
for (buf) |c| {
if (scope_id) {
if (c >= '0' and c <= '9') {
const digit = c - '0';
2016-08-16 22:42:50 -07:00
if (@mulWithOverflow(u32, result.scope_id, 10, &result.scope_id)) {
return error.Overflow;
}
2016-08-16 22:42:50 -07:00
if (@addWithOverflow(u32, result.scope_id, digit, &result.scope_id)) {
return error.Overflow;
}
} else {
return error.InvalidChar;
}
} else if (c == ':') {
if (!saw_any_digits) {
return error.InvalidChar;
}
if (index == 14) {
return error.JunkAtEnd;
}
ip_slice[index] = @truncate(u8, x >> 8);
index += 1;
ip_slice[index] = @truncate(u8, x);
index += 1;
x = 0;
saw_any_digits = false;
} else if (c == '%') {
if (!saw_any_digits) {
return error.InvalidChar;
}
if (index == 14) {
ip_slice[index] = @truncate(u8, x >> 8);
index += 1;
ip_slice[index] = @truncate(u8, x);
index += 1;
}
scope_id = true;
saw_any_digits = false;
} else {
2016-08-16 22:42:50 -07:00
const digit = hexDigit(c);
if (digit == @maxValue(u8)) {
return error.InvalidChar;
}
2016-08-16 22:42:50 -07:00
if (@mulWithOverflow(u16, x, 16, &x)) {
return error.Overflow;
}
2016-08-16 22:42:50 -07:00
if (@addWithOverflow(u16, x, digit, &x)) {
return error.Overflow;
}
saw_any_digits = true;
}
}
if (!saw_any_digits) {
return error.Incomplete;
}
2016-07-27 23:26:12 -07:00
//
// if (p) {
// if (isdigit(*++p)) scopeid = strtoull(p, &z, 10);
// else z = p-1;
// if (*z) {
// if (!IN6_IS_ADDR_LINKLOCAL(&a6) and
2016-07-27 23:26:12 -07:00
// !IN6_IS_ADDR_MC_LINKLOCAL(&a6))
// return EAI_NONAME;
// scopeid = if_nametoindex(p);
// if (!scopeid) return EAI_NONAME;
// }
// if (scopeid > UINT_MAX) return EAI_NONAME;
// }
//
if (scope_id) {
return result;
}
if (index == 14) {
ip_slice[14] = @truncate(u8, x >> 8);
ip_slice[15] = @truncate(u8, x);
return result;
}
return error.Incomplete;
}
2016-08-16 22:42:50 -07:00
fn parseIp4(buf: []const u8) -> %u32 {
var result: u32 = undefined;
const out_ptr = ([]u8)((&result)[0..1]);
var x: u8 = 0;
var index: u8 = 0;
var saw_any_digits = false;
for (buf) |c| {
if (c == '.') {
if (!saw_any_digits) {
return error.InvalidChar;
}
if (index == 3) {
return error.JunkAtEnd;
}
out_ptr[index] = x;
index += 1;
x = 0;
saw_any_digits = false;
} else if (c >= '0' and c <= '9') {
saw_any_digits = true;
const digit = c - '0';
2016-08-16 22:42:50 -07:00
if (@mulWithOverflow(u8, x, 10, &x)) {
return error.Overflow;
}
2016-08-16 22:42:50 -07:00
if (@addWithOverflow(u8, x, digit, &x)) {
return error.Overflow;
}
} else {
return error.InvalidChar;
}
}
if (index == 3 and saw_any_digits) {
out_ptr[index] = x;
return result;
}
return error.Incomplete;
}
2016-12-31 15:25:10 -08:00
// TODO
//fn testParseIp4() {
// @setFnTest(this);
//
// assert(%%parseIp4("127.0.0.1") == endian.swapIfLe(u32, 0x7f000001));
// switch (parseIp4("256.0.0.1")) { Overflow => {}, else => unreachable, }
// switch (parseIp4("x.0.0.1")) { InvalidChar => {}, else => unreachable, }
// switch (parseIp4("127.0.0.1.1")) { JunkAtEnd => {}, else => unreachable, }
// switch (parseIp4("127.0.0.")) { Incomplete => {}, else => unreachable, }
// switch (parseIp4("100..0.1")) { InvalidChar => {}, else => unreachable, }
2016-12-31 15:25:10 -08:00
//}
//
//fn testParseIp6() {
// @setFnTest(this);
//
// {
// const addr = %%parseIp6("FF01:0:0:0:0:0:0:FB");
// assert(addr.addr[0] == 0xff);
// assert(addr.addr[1] == 0x01);
// assert(addr.addr[2] == 0x00);
// }
//}
//
//fn testLookupSimpleIp() {
// @setFnTest(this);
//
// {
// var addrs_buf: [5]Address = undefined;
// const addrs = %%lookup("192.168.1.1", addrs_buf);
// assert(addrs.len == 1);
// const addr = addrs[0];
// assert(addr.family == linux.AF_INET);
// assert(addr.addr[0] == 192);
// assert(addr.addr[1] == 168);
// assert(addr.addr[2] == 1);
// assert(addr.addr[3] == 1);
// }
//}