Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial Release #1

Merged
merged 175 commits into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
175 commits
Select commit Hold shift + click to select a range
0d26aa4
wip
mookums Jul 1, 2024
91775df
pooling?
mookums Jul 2, 2024
5629121
try fast single threaded
mookums Jul 2, 2024
b1e6e82
use posix sockets raw
mookums Jul 2, 2024
bf0e54b
start scaffolding zzz
mookums Jul 2, 2024
46f66ad
libxev for benchmarking
mookums Jul 3, 2024
635803d
fixing
mookums Jul 3, 2024
31dbee4
initial
mookums Jul 3, 2024
a24c15a
workerpool :3
mookums Jul 3, 2024
8db4585
disappointing...
mookums Jul 3, 2024
05ee253
workers with a little xev
mookums Jul 3, 2024
56e0dda
using io_uring in each worker
mookums Jul 4, 2024
4d98f5e
keep trying
mookums Jul 4, 2024
d6230bc
back to single threaded lovin
mookums Jul 4, 2024
6222dd9
a little cleanup
mookums Jul 4, 2024
fbba49e
experiment with included some headers by default?
mookums Jul 4, 2024
815ac1b
readme planning
mookums Jul 4, 2024
a6c02c1
use io_uring backend as the default one
mookums Jul 4, 2024
d289d40
request parsing
mookums Jul 5, 2024
5d4b46c
working trial
mookums Jul 6, 2024
cf3b3aa
zzz is now fast...
mookums Jul 7, 2024
7d50ccc
adding mime types & other goodies
mookums Jul 8, 2024
ac5479b
some formatting changes in mime
mookums Jul 8, 2024
6d526d9
primitive parsing
mookums Jul 8, 2024
2c92a5b
use comptime options for configuration
mookums Jul 9, 2024
008dfab
configuration at runtime with allocations
mookums Jul 16, 2024
41e3fa0
little cleanup regarding logging
mookums Jul 16, 2024
b8da214
add router
mookums Jul 24, 2024
c621fbd
start creating modules
mookums Jul 24, 2024
179fc93
clean up old artficacts
mookums Jul 24, 2024
77231fd
FINALLY, doing a module style
mookums Jul 26, 2024
b166813
plan for the use of custom transport layers
mookums Jul 26, 2024
f8dd6f0
add flake
mookums Jul 30, 2024
07004b2
initial routing rework
mookums Aug 4, 2024
63e5aaa
functional routing with matching
mookums Aug 4, 2024
bc56cd2
fix core module
mookums Aug 4, 2024
cd700f9
add perf to flake.nix
mookums Aug 4, 2024
37ce5de
add extra matching types
mookums Aug 4, 2024
5eca9c0
functional matching and extraction
mookums Aug 4, 2024
5c45435
add gdb to flake
mookums Aug 4, 2024
695ae58
trying minimizing ram usage
mookums Aug 4, 2024
a6e7e89
try arena allocator
mookums Aug 5, 2024
b72e8fa
fix deadlocking on accept
mookums Aug 5, 2024
f744f9c
use index.html instead of sample.html
mookums Aug 5, 2024
6c42f40
use arenas in handler contexts
mookums Aug 5, 2024
d453364
trial of workers
mookums Aug 6, 2024
d11ff0a
use thread-safe allocator
mookums Aug 6, 2024
cb0bce3
it is really fast
mookums Aug 6, 2024
008d977
use base flags for uring
mookums Aug 7, 2024
42e3d89
safer parsing for requests
mookums Aug 7, 2024
27ebcdd
use new parsing method by default
mookums Aug 8, 2024
8d56ad7
simplify UringJob to Job
mookums Aug 8, 2024
acaeb82
provisions
mookums Aug 9, 2024
9057ef4
log thread count
mookums Aug 9, 2024
3f67aa5
remove comptime pool
mookums Aug 9, 2024
c0b03f6
properly handle more error states
mookums Aug 9, 2024
7c848d2
fix the minram example
mookums Aug 9, 2024
8ced219
try a new auto multithreading method
mookums Aug 9, 2024
687c834
add comment about plans for routing rework
mookums Aug 9, 2024
38bb30f
captures in context
mookums Aug 9, 2024
c1ed61b
capture pool
mookums Aug 9, 2024
6f0e541
add redirect example
mookums Aug 9, 2024
bd118d6
little clean ups
mookums Aug 9, 2024
ff0d5fd
fixed bug with method_to_index
mookums Aug 10, 2024
b740c27
use our own method struct
mookums Aug 10, 2024
1dcd0a8
ensure that headers are safe
mookums Aug 11, 2024
92220f0
fix bug with colons in header values
mookums Aug 11, 2024
e02a3b8
use direct paths to core instead of imports
mookums Aug 11, 2024
38a1c50
handlers should never throw
mookums Aug 11, 2024
c0456fa
add PDF mime type
mookums Aug 11, 2024
2052ad6
compile time etagging of embedded files
mookums Aug 11, 2024
d5d7cd3
fix redirect example
mookums Aug 11, 2024
b3be6e2
body parsing...
mookums Aug 12, 2024
c5a5a4c
various bug fixes with body matching
mookums Aug 12, 2024
65c6e87
free if socket is closed during write
mookums Aug 12, 2024
618b405
fix naming of length
mookums Aug 12, 2024
c7e3be1
disable nagle
mookums Aug 12, 2024
a233c2c
add a valgrind example for mem leaks
mookums Aug 12, 2024
7dbe188
fix bug with maximum capture length
mookums Aug 13, 2024
a44ef40
some clean up during bug searching
mookums Aug 13, 2024
c6b1046
fix io_kiocb memory leak
mookums Aug 13, 2024
a4c25eb
revert for perf
mookums Aug 13, 2024
bcffef3
naive etagging on large embeds
mookums Aug 13, 2024
3d618c1
fix bug with unmatched root routing
mookums Aug 13, 2024
d41a7d1
fix minram example
mookums Aug 13, 2024
9012188
pseudoslices
mookums Aug 14, 2024
2b67607
fix request options
mookums Aug 14, 2024
ac24643
working pseudoslices for writing
mookums Aug 17, 2024
bfb400a
move some params out of provisions
mookums Aug 17, 2024
60c5b47
add mp3 mime
mookums Aug 17, 2024
4de1fe3
fix etagging
mookums Aug 17, 2024
8aee4be
partly functioning blocking serve_fs
mookums Aug 17, 2024
dbc4fce
starting on async rework
mookums Aug 17, 2024
bc38e6a
add more functionality to the async io_uring backend
mookums Aug 18, 2024
34c8f96
use async backend for io_uring by default
mookums Aug 18, 2024
bc60cd5
encapsulate respond functionality
mookums Aug 18, 2024
7ef36bf
add more http methods
mookums Aug 18, 2024
77ffe41
more backend functionality
mookums Aug 18, 2024
72b0f1a
naive blocked serve fs dir
mookums Aug 19, 2024
e215fdd
add png mime
mookums Aug 19, 2024
4b387e5
rename to RecvKind
mookums Aug 20, 2024
9003bca
include content length when building headers
mookums Aug 20, 2024
9c5a6b0
split off post connection cleanup stuff
mookums Aug 20, 2024
236efea
use a case insensitive hashmap for request headers
mookums Aug 20, 2024
41afcdc
assert that we don't double colons
mookums Aug 20, 2024
fa0f2d7
response in handler
mookums Aug 20, 2024
a6db9cc
document http response statuses
mookums Aug 21, 2024
27edc96
add 'Allow' headers on Method Not Allowed
mookums Aug 21, 2024
751a320
add support for forcing ipv4 or ipv6
mookums Aug 21, 2024
8f82182
fix memory leak with valgrind example
mookums Aug 21, 2024
82f07b6
safer request parsing
mookums Aug 22, 2024
6a40984
add maximum request uri size to server config
mookums Aug 22, 2024
40d7511
start https support
mookums Aug 22, 2024
e016e62
fix minram example max uri size
mookums Aug 23, 2024
c86c4bf
general clean up regarding comments
mookums Aug 23, 2024
55c17a3
better logging and error handling
mookums Aug 23, 2024
22460bf
partly functioning rework
mookums Aug 24, 2024
d4bebea
mostly functional rework
mookums Aug 24, 2024
adfd540
pass in recv_buffer
mookums Aug 24, 2024
9ac1614
functional multithreading with rework
mookums Aug 24, 2024
ad57f42
allow for security layer to be applied
mookums Aug 25, 2024
3e2907a
partly functional tls
mookums Aug 25, 2024
9bedcd5
end to end tls working
mookums Aug 25, 2024
6ed8ade
fighting bearssl
mookums Aug 26, 2024
fea00c7
more work on bearssl
mookums Aug 26, 2024
619cfe5
a lot of bearssl work
mookums Aug 26, 2024
5a47487
reworking tls chunking
mookums Aug 27, 2024
d507ee0
tls for big files
mookums Aug 27, 2024
894101b
fix connection closing on tls error
mookums Aug 27, 2024
a1220d2
remove send_fn from Server
mookums Aug 27, 2024
13ac535
add simple caching for embedded files
mookums Aug 27, 2024
b6fc41e
fix headers persisting over multiple responses
mookums Aug 27, 2024
ec34bbd
fix provision release on tls accept failure
mookums Aug 27, 2024
b70cbf7
switch to wyhash from crc32
mookums Aug 27, 2024
e7bad50
various QOL changes
mookums Aug 27, 2024
e85beeb
decompose host header check
mookums Aug 27, 2024
03cab85
add kill functionality, mostly for valgrind
mookums Aug 27, 2024
c4aa1bf
start on socket rework
mookums Aug 27, 2024
a0c706b
replace embed example with benchmark
mookums Aug 28, 2024
e0fb339
change CapturedRoute to FoundRoute
mookums Aug 28, 2024
5d57917
make accept flow more clear
mookums Aug 28, 2024
9794c73
closer to functional with bearssl
mookums Aug 28, 2024
23e071b
a little clean up
mookums Aug 28, 2024
4aa40eb
more bear changes
mookums Aug 29, 2024
9f9ad5c
return to openssl
mookums Aug 29, 2024
b8d1c7c
figured out policy
mookums Aug 30, 2024
6a47547
more policy context stuff
mookums Aug 30, 2024
a0b525a
functional bearssl
mookums Aug 31, 2024
90a25af
fix handshake priority
mookums Aug 31, 2024
a3febd9
bearssl fully works
mookums Aug 31, 2024
3b573f0
more comments
mookums Aug 31, 2024
f0954cd
fix large file sending with ssl
mookums Aug 31, 2024
fc6f090
fix issue with tls deinit
mookums Aug 31, 2024
efbae6b
use a zig compiled bearssl
mookums Aug 31, 2024
0e8b306
fix some logging
mookums Sep 1, 2024
ef86e83
add cert name and key name to tls invocation
mookums Sep 1, 2024
e517c62
use newer bearssl-zig
mookums Sep 2, 2024
ff35dba
use u64 instead of usize
mookums Sep 3, 2024
e65b3e7
comptime tls for memory savings
mookums Sep 3, 2024
ad88db4
add note about bearssl config flags
mookums Sep 3, 2024
da84a15
use memory arena with bearssl
mookums Sep 3, 2024
1d22d93
add ansi terminal stuff
mookums Sep 3, 2024
c5dc83c
first trial of custom backends
mookums Sep 3, 2024
d576aa7
make tlscontext zero-sized if not using security
mookums Sep 3, 2024
527e772
polish the custom backend
mookums Sep 3, 2024
6629b45
allow passing in buffers for tls cert and key
mookums Sep 3, 2024
8220418
remove unreachable from handshake
mookums Sep 5, 2024
eb0cc39
expose routehandlerfn type
mookums Sep 5, 2024
9ba8825
fix from fd_t to socket
mookums Sep 6, 2024
17ff6c3
clean up enums
mookums Sep 6, 2024
71f6eac
testing command
mookums Sep 6, 2024
b0c7083
updated README
mookums Sep 8, 2024
2968ed6
add zzz logo
mookums Sep 8, 2024
04ea680
fix some naming conventions
mookums Sep 8, 2024
1e12807
update README
mookums Sep 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: linux
on:
push:
pull_request:
branches: [ main ]

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: goto-bus-stop/setup-zig@v2
with:
version: 0.13.0
- name: Unit Test
run: zig build test
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
zig-out/
.zig-cache/
perf*
heaptrack*
46 changes: 46 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# zzz
![zzz logo](./docs/img/zzz.png)

Tracking Latest Zig Stable: `0.13.0`

`zig fetch --save https://github.com/mookums/zzz/archive/main.tar.gz`

## zzz?
zzz is a framework for writing performant and reliable networked services in Zig. It currently only supports TCP as the underlying transport layer but allows for any arbitrary protocol to run on top.

*zzz is currently **alpha** software and while it is generally stable, there is still a lot changing at a fairly quick pace and certain places where things are less polished.*

It focuses on modularity and portability, allowing you to swap in your own implementations for various things. Consumers can provide both a protocol and an async implementation, allowing for maximum flexibility. This allows for use in standard servers as well as embedded/bare metal domains.

## Optimization
zzz is **very** fast. Through a combination of methods, such as allocation at start up and avoiding thread contention, we are able to extract tons of performance.

zzz currently out performs both [http.zig](https://github.com/karlseguin/http.zig) and [zap](https://github.com/zigzap/zap), while being almost entirely written in Zig.

zzz can be configured to utilize minimal memory while remaining performant. The provided `minram` example only uses 392 kB!

## Features
- [Modular Asyncronous Implementation](https://muki.gg/post/modular-async)
- Allows for passing in your own Async implementation.
- Comes with:
- io_uring for Linux.
- IOCP for Windows (planned).
- kqueue for BSD (planned).
- Modular Protocol Implementation [#](#supported-protocols)
- Allows for defining your own Protocol on top of TCP.
- Single and Multi-threaded Support
- TLS using BearSSL
- (Almost) all memory allocated at startup
- Only allocations happen while storing received data for parsing.

## Supported Protocols
- [HTTP/1.1](https://github.com/mookums/zzz/blob/main/src/http)
- HTTP/2 (planned)
- MQTT (planned)
- Custom, you can write your own


## Platform Support
zzz currently focuses on Linux as the primary platform. Windows, MacOS, and BSD support is planned in the near future.

Due to the modular nature, any platform (that works with Zig) can be supported as long as you define an Async backend. This includes embedded and bare metal!
74 changes: 57 additions & 17 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,72 @@ pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{});

const exe = b.addExecutable(.{
.name = "zzz",
.root_source_file = b.path("src/main.zig"),
const bearssl = b.dependency("bearssl", .{
.target = target,
.optimize = optimize,
// Without this, you get an illegal instruction error on certain paths.
// This makes it slightly.slower but prevents faults.
.BR_LE_UNALIGNED = false,
.BR_BE_UNALIGNED = false,
}).artifact("bearssl");

const zzz = b.addModule("zzz", .{
.root_source_file = b.path("src/lib.zig"),
.target = target,
.optimize = optimize,
});

exe.linkLibC();
b.installArtifact(exe);
zzz.linkLibrary(bearssl);

const run_cmd = b.addRunArtifact(exe);
run_cmd.step.dependOn(b.getInstallStep());
if (b.args) |args| {
run_cmd.addArgs(args);
}
addExample(b, "basic", false, target, optimize, zzz);
addExample(b, "custom", false, target, optimize, zzz);
addExample(b, "tls", true, target, optimize, zzz);
addExample(b, "minram", false, target, optimize, zzz);
addExample(b, "fs", false, target, optimize, zzz);
addExample(b, "multithread", false, target, optimize, zzz);
addExample(b, "benchmark", false, target, optimize, zzz);
addExample(b, "valgrind", true, target, optimize, zzz);

const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
const tests = b.addTest(.{
.name = "tests",
.root_source_file = b.path("./src/test.zig"),
});

const exe_unit_tests = b.addTest(.{
.root_source_file = b.path("src/main.zig"),
const run_test = b.addRunArtifact(tests);
run_test.step.dependOn(&tests.step);

const test_step = b.step("test", "Run general unit tests");
test_step.dependOn(&run_test.step);
}

fn addExample(
b: *std.Build,
name: []const u8,
link_libc: bool,
target: std.Build.ResolvedTarget,
optimize: std.builtin.Mode,
zzz_module: *std.Build.Module,
) void {
const example = b.addExecutable(.{
.name = b.fmt("zzz_example_{s}", .{name}),
.root_source_file = b.path(b.fmt("src/examples/{s}/main.zig", .{name})),
.target = target,
.optimize = optimize,
});
const run_exe_unit_tests = b.addRunArtifact(exe_unit_tests);

const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_exe_unit_tests.step);
if (link_libc) {
example.linkLibC();
}

example.root_module.addImport("zzz", zzz_module);
const install_artifact = b.addInstallArtifact(example, .{});

const run_cmd = b.addRunArtifact(example);
run_cmd.step.dependOn(&install_artifact.step);
if (b.args) |args| {
run_cmd.addArgs(args);
}

const run_step = b.step(b.fmt("run_{s}", .{name}), b.fmt("Run zzz example ({s})", .{name}));
run_step.dependOn(&run_cmd.step);
}
7 changes: 6 additions & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
.name = "zzz",
.version = "0.0.0",
.minimum_zig_version = "0.11.0",
.dependencies = .{},
.dependencies = .{
.bearssl = .{
.url = "https://github.com/mookums/bearssl-zig/archive/37a96eee56fe2543579bbc6da148ca886f3dd32b.tar.gz",
.hash = "12200e89d16612100a2f145cfa292537ac25b2205735fc1c644c799d2995f94e8e20",
},
},

.paths = .{
"build.zig",
Expand Down
Binary file added docs/img/zzz.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading