ferrings 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE-APACHE +201 -0
- package/LICENSE-MIT +21 -0
- package/README.md +428 -0
- package/benchmark/compare.js +178 -0
- package/benchmark/first-slice.js +232 -0
- package/benchmark/high-concurrency.js +119 -0
- package/benchmark/syscalls.js +514 -0
- package/benchmark/tcp-echo.js +442 -0
- package/bin/ferrings.js +503 -0
- package/examples/http-fixed.js +24 -0
- package/examples/tcp-echo.js +29 -0
- package/ferrings.linux-x64-gnu.node +0 -0
- package/index.d.ts +70 -0
- package/index.js +11 -0
- package/native.d.ts +213 -0
- package/native.js +594 -0
- package/package.json +95 -0
- package/tcp-transport.js +340 -0
- package/zcrx-smoke.js +476 -0
package/LICENSE-APACHE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or Derivative
|
|
95
|
+
Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 ferrings contributors
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/LICENSE-MIT
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ferrings contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,428 @@
|
|
|
1
|
+
# ferrings
|
|
2
|
+
|
|
3
|
+
[](https://github.com/avifenesh/ferrings/actions/workflows/ci.yml)
|
|
4
|
+
[](https://github.com/avifenesh/ferrings/actions/workflows/release.yml)
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+
|
|
8
|
+
Linux `io_uring` TCP transport for Node.js, built with Rust and napi-rs for high-concurrency server outside libuv's networking loop.
|
|
9
|
+
|
|
10
|
+
ferrings exposes Node-friendly TCP and fixed-response HTTP APIs backed by a native `io_uring` worker: multishot accept/recv, provided buffer rings, recv-bundle, zero-copy send, and an optional ZCRX path for capable NICs. The project is at the 0.1.0 release stage; tag pushes build native artifacts and publish to npm through the repository `NPM_TOKEN` secret.
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
git clone https://github.com/avifenesh/ferrings.git
|
|
14
|
+
cd ferrings
|
|
15
|
+
npm install
|
|
16
|
+
npm run build
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
```js
|
|
20
|
+
const net = require('node:net');
|
|
21
|
+
const { createTcpServer } = require('./');
|
|
22
|
+
|
|
23
|
+
const server = createTcpServer((connection) => {
|
|
24
|
+
connection.on('data', (data) => connection.end(`ferrings:${data}`));
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
server.listen(0, '127.0.0.1', (info) => {
|
|
28
|
+
const client = net.createConnection(info.port, info.host, () => client.write('ping'));
|
|
29
|
+
client.on('data', (data) => {
|
|
30
|
+
console.log(data.toString());
|
|
31
|
+
server.close();
|
|
32
|
+
});
|
|
33
|
+
});
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Run the example from the repository root with `node quickstart.js`; it prints `ferrings:ping`. After npm publishing, replace `require('./')` with `require('ferrings')`.
|
|
37
|
+
|
|
38
|
+
## Quick proof signals
|
|
39
|
+
|
|
40
|
+
- Linux-only native addon for Node.js `>=20`, written in Rust with napi-rs.
|
|
41
|
+
- CI builds and tests Node 20, 22, and 24 on Linux.
|
|
42
|
+
- Release workflow builds native packages for `linux-x64-gnu`, `linux-x64-musl`, `linux-arm64-gnu`, and `linux-arm64-musl`.
|
|
43
|
+
- `npm run check:release-ready -- --full --strict` reports `ready-with-optional-blockers`; the optional blocker is ZCRX hardware proof.
|
|
44
|
+
- Package install smoke tests pack the tarball, install it in a temporary app, start a TCP server through `require('ferrings')`, and run the installed CLI.
|
|
45
|
+
|
|
46
|
+
## Why this project
|
|
47
|
+
|
|
48
|
+
- Use this when you want to compare Node's `net` / `http` servers with a modern Linux `io_uring` TCP path.
|
|
49
|
+
- Use this when you need a Node API over a Rust-native networking worker for high-concurrency Linux experiments.
|
|
50
|
+
- Use this when you want runtime visibility into kernel features such as multishot recv, provided buffer rings, recv-bundle, zero-copy send, and ZCRX readiness.
|
|
51
|
+
- Use this when you want to benchmark syscall counts, tail latency, and queue behavior without building a native addon from scratch.
|
|
52
|
+
- Use this when you are exploring ZCRX, but want the broadly usable core to work on machines without ZCRX-capable NIC hardware.
|
|
53
|
+
|
|
54
|
+
## Installation
|
|
55
|
+
|
|
56
|
+
The npm package family is prepared but not published yet. Use the source checkout path for now:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
git clone https://github.com/avifenesh/ferrings.git
|
|
60
|
+
cd ferrings
|
|
61
|
+
npm install
|
|
62
|
+
npm run build
|
|
63
|
+
npm test
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
When the npm packages are published, the intended install path is:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
npm install ferrings
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
The base package is Linux-only and depends on optional native packages for glibc/musl and x64/arm64 targets.
|
|
73
|
+
|
|
74
|
+
## Quick start
|
|
75
|
+
|
|
76
|
+
Create `quickstart.js` in the repository root:
|
|
77
|
+
|
|
78
|
+
```js
|
|
79
|
+
'use strict';
|
|
80
|
+
|
|
81
|
+
const net = require('node:net');
|
|
82
|
+
const { createTcpServer, capabilities } = require('./');
|
|
83
|
+
|
|
84
|
+
console.log(capabilities());
|
|
85
|
+
|
|
86
|
+
const server = createTcpServer((connection) => {
|
|
87
|
+
connection.on('data', (data) => {
|
|
88
|
+
connection.end(Buffer.concat([Buffer.from('echo:'), data]));
|
|
89
|
+
});
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
server.listen(
|
|
93
|
+
{
|
|
94
|
+
host: '127.0.0.1',
|
|
95
|
+
port: 0,
|
|
96
|
+
backlog: 1024,
|
|
97
|
+
useRecvBundle: true,
|
|
98
|
+
useZeroCopySend: true
|
|
99
|
+
},
|
|
100
|
+
(info) => {
|
|
101
|
+
console.log(`listening on tcp://${info.host}:${info.port}`);
|
|
102
|
+
|
|
103
|
+
const client = net.createConnection({ host: info.host, port: info.port }, () => {
|
|
104
|
+
client.write('hello');
|
|
105
|
+
});
|
|
106
|
+
|
|
107
|
+
let body = Buffer.alloc(0);
|
|
108
|
+
client.on('data', (chunk) => {
|
|
109
|
+
body = Buffer.concat([body, chunk]);
|
|
110
|
+
});
|
|
111
|
+
client.on('end', () => {
|
|
112
|
+
console.log(body.toString('utf8'));
|
|
113
|
+
server.close();
|
|
114
|
+
});
|
|
115
|
+
}
|
|
116
|
+
);
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
Run it:
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
node quickstart.js
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
What happened:
|
|
126
|
+
|
|
127
|
+
- `createTcpServer()` created a Node-style TCP server backed by a native `io_uring` worker.
|
|
128
|
+
- `capabilities()` printed the active kernel probes for this host.
|
|
129
|
+
- `useRecvBundle` and `useZeroCopySend` were requested, but remain capability-gated by the native addon.
|
|
130
|
+
- The client received `echo:hello` and the server shut down.
|
|
131
|
+
|
|
132
|
+
## Core concepts
|
|
133
|
+
|
|
134
|
+
ferrings is not a wrapper around Node's libuv TCP implementation. It creates the listening socket directly with `socket`, `bind`, and `listen`, then drives accepts, receives, sends, and shutdown from a Rust worker thread with `io_uring`.
|
|
135
|
+
|
|
136
|
+
JavaScript stays in control of the application API:
|
|
137
|
+
|
|
138
|
+
- Native to JS events are delivered through NAPI thread-safe callbacks.
|
|
139
|
+
- JS to native writes go through a bounded command queue and an `eventfd` wakeup.
|
|
140
|
+
- Server counters are exposed through `info()` and the initial `ServerInfo` returned by `start()` / `listen()`.
|
|
141
|
+
- Kernel-specific features are probed at runtime instead of assumed.
|
|
142
|
+
|
|
143
|
+
The broad core path is multishot accept + multishot recv + provided buffers. ZCRX is intentionally separate: it requires kernel support, NIC header/data split, flow steering/RSS isolation, permissions, and a capable RX queue.
|
|
144
|
+
|
|
145
|
+
## Features
|
|
146
|
+
|
|
147
|
+
- Node-style TCP server facade with `connection`, `data`, `close`, `write()`, `end()`, `destroy()`, `address()`, and `getConnections()`.
|
|
148
|
+
- Raw `UringTcpServer` for lower-level event handling, batched event delivery, and batched sends.
|
|
149
|
+
- `UringTcpEchoServer` for native TCP echo benchmarks without per-connection JS callbacks.
|
|
150
|
+
- `UringHttpServer` for fixed-response HTTP benchmarks on the cleanest `io_uring` path.
|
|
151
|
+
- Multishot accept and recv for fewer per-operation submissions on supported kernels.
|
|
152
|
+
- Provided buffer rings first, with `IORING_OP_PROVIDE_BUFFERS` fallback when registration is rejected.
|
|
153
|
+
- Optional recv-bundle mode using `IORING_FEAT_RECVSEND_BUNDLE` when the kernel advertises it.
|
|
154
|
+
- Optional zero-copy send using `IORING_OP_SEND_ZC`, with counters for requests, notifications, copied fallback, and errors.
|
|
155
|
+
- Optional registered-buffer send path, guarded by an active startup probe.
|
|
156
|
+
- Optional ZCRX path with `zcrxProbe()`, CLI diagnostics, active IFQ registration probe, and hardware smoke tests.
|
|
157
|
+
- Bounded command, event, and per-connection send queues so overload is reported instead of growing memory without bound.
|
|
158
|
+
|
|
159
|
+
## API and usage patterns
|
|
160
|
+
|
|
161
|
+
### Node-style TCP
|
|
162
|
+
|
|
163
|
+
```js
|
|
164
|
+
const { createTcpServer } = require('./');
|
|
165
|
+
|
|
166
|
+
const server = createTcpServer((connection) => {
|
|
167
|
+
connection.on('data', (data) => connection.end(data));
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
server.listen(0, '127.0.0.1', (info) => {
|
|
171
|
+
console.log(info);
|
|
172
|
+
});
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
Use this path when you want a familiar Node server shape over the native transport.
|
|
176
|
+
|
|
177
|
+
### Raw TCP events
|
|
178
|
+
|
|
179
|
+
```js
|
|
180
|
+
const { UringTcpServer } = require('./');
|
|
181
|
+
|
|
182
|
+
const server = new UringTcpServer({
|
|
183
|
+
host: '127.0.0.1',
|
|
184
|
+
port: 0,
|
|
185
|
+
useRecvBundle: true,
|
|
186
|
+
useZeroCopySend: true
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
const info = server.start((event) => {
|
|
190
|
+
if (event.eventType === 'data') {
|
|
191
|
+
server.sendAndClose(event.connectionId, Buffer.from('pong'));
|
|
192
|
+
}
|
|
193
|
+
});
|
|
194
|
+
|
|
195
|
+
console.log(`tcp://${info.host}:${info.port}`);
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
Use this path when you want direct event objects and explicit connection IDs.
|
|
199
|
+
|
|
200
|
+
### Batched TCP events and sends
|
|
201
|
+
|
|
202
|
+
```js
|
|
203
|
+
const { UringTcpServer } = require('./');
|
|
204
|
+
|
|
205
|
+
const server = new UringTcpServer({ host: '127.0.0.1', port: 0 });
|
|
206
|
+
|
|
207
|
+
const info = server.startBatch((events) => {
|
|
208
|
+
const sends = [];
|
|
209
|
+
for (const event of events) {
|
|
210
|
+
if (event.eventType === 'data') {
|
|
211
|
+
sends.push({ connectionId: event.connectionId, data: event.data });
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
if (sends.length > 0) {
|
|
215
|
+
server.sendBatchAndClose(sends);
|
|
216
|
+
}
|
|
217
|
+
});
|
|
218
|
+
|
|
219
|
+
console.log(`tcp://${info.host}:${info.port}`);
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
Use this path when JS callback overhead matters and events can be processed in batches.
|
|
223
|
+
|
|
224
|
+
### Fixed-response HTTP
|
|
225
|
+
|
|
226
|
+
```js
|
|
227
|
+
const { UringHttpServer } = require('./');
|
|
228
|
+
|
|
229
|
+
const server = new UringHttpServer({
|
|
230
|
+
host: '127.0.0.1',
|
|
231
|
+
port: 0,
|
|
232
|
+
responseBody: 'hello from ferrings\n',
|
|
233
|
+
useZeroCopySend: true
|
|
234
|
+
});
|
|
235
|
+
|
|
236
|
+
const info = server.start();
|
|
237
|
+
console.log(`http://${info.host}:${info.port}`);
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
`UringHttpServer` is a benchmark server, not a general HTTP framework.
|
|
241
|
+
|
|
242
|
+
### Native echo benchmark server
|
|
243
|
+
|
|
244
|
+
```js
|
|
245
|
+
const { UringTcpEchoServer } = require('./');
|
|
246
|
+
|
|
247
|
+
const server = new UringTcpEchoServer({
|
|
248
|
+
host: '127.0.0.1',
|
|
249
|
+
port: 0,
|
|
250
|
+
useZeroCopySend: true
|
|
251
|
+
});
|
|
252
|
+
|
|
253
|
+
const info = server.start();
|
|
254
|
+
console.log(`tcp://${info.host}:${info.port}`);
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
Use this to isolate the native TCP echo path from JavaScript event delivery.
|
|
258
|
+
|
|
259
|
+
### Capability and ZCRX probes
|
|
260
|
+
|
|
261
|
+
```js
|
|
262
|
+
const { capabilities, zcrxProbe } = require('./');
|
|
263
|
+
|
|
264
|
+
console.log(capabilities());
|
|
265
|
+
console.log(zcrxProbe({ interfaceName: 'eth0' }));
|
|
266
|
+
console.log(zcrxProbe({
|
|
267
|
+
interfaceName: 'eth0',
|
|
268
|
+
rxQueue: 0,
|
|
269
|
+
activeRegistration: true
|
|
270
|
+
}));
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
The CLI exposes the same diagnostics from a source checkout:
|
|
274
|
+
|
|
275
|
+
```bash
|
|
276
|
+
node bin/ferrings.js capabilities --json
|
|
277
|
+
node bin/ferrings.js doctor --interface eth0 --rx-queue 0 --active --json
|
|
278
|
+
node bin/ferrings.js zcrx-probe --interface eth0 --rx-queue 0 --active --json
|
|
279
|
+
```
|
|
280
|
+
|
|
281
|
+
After npm publishing, the same commands can be run as `npx ferrings ...`.
|
|
282
|
+
|
|
283
|
+
## Configuration
|
|
284
|
+
|
|
285
|
+
Common server options:
|
|
286
|
+
|
|
287
|
+
| Option | Default | Applies to | Purpose |
|
|
288
|
+
| --- | ---: | --- | --- |
|
|
289
|
+
| `host` | `127.0.0.1` | all servers | Bind address. |
|
|
290
|
+
| `port` | `0` | all servers | Bind port; `0` asks the kernel for a free port. |
|
|
291
|
+
| `backlog` | `1024` | all servers | Passed to `listen(2)`, subject to host `somaxconn`. |
|
|
292
|
+
| `queueDepth` | `1024` | all servers | `io_uring` queue depth. |
|
|
293
|
+
| `bufferCount` | `4096` | all servers | Receive buffer slots. |
|
|
294
|
+
| `bufferSize` | `2048` | all servers | Size of each receive buffer. |
|
|
295
|
+
| `maxConnections` | `0` | all servers | `0` means unlimited tracked active connections. |
|
|
296
|
+
| `idleTimeoutMs` | `0` | all servers | `0` disables native idle eviction. |
|
|
297
|
+
| `tcpNoDelay` | `true` | all servers | Applies `TCP_NODELAY` to accepted sockets. |
|
|
298
|
+
| `reusePort` | `false` | all servers | Applies `SO_REUSEPORT` before bind. |
|
|
299
|
+
| `tcpDeferAcceptSeconds` | `0` | all servers | Applies `TCP_DEFER_ACCEPT` when positive. |
|
|
300
|
+
| `socketRecvBufferSize` | `0` | all servers | `SO_RCVBUF`; `0` keeps kernel defaults. |
|
|
301
|
+
| `socketSendBufferSize` | `0` | all servers | `SO_SNDBUF`; `0` keeps kernel defaults. |
|
|
302
|
+
| `useRecvBundle` | `false` | TCP servers | Requests recv-bundle mode when supported. |
|
|
303
|
+
| `useZeroCopySend` | `false` | all servers | Requests `IORING_OP_SEND_ZC`. |
|
|
304
|
+
| `useRegisteredSendBuffer` | `false` | all servers | Requests fixed-buffer send mode. |
|
|
305
|
+
| `useZeroCopyReceive` | `false` | all servers | Requests ZCRX; requires capable hardware and permissions. |
|
|
306
|
+
|
|
307
|
+
TCP-only queue options:
|
|
308
|
+
|
|
309
|
+
| Option | Default | Purpose |
|
|
310
|
+
| --- | ---: | --- |
|
|
311
|
+
| `commandQueueCapacity` | `65536` | JS-to-native command queue bound. |
|
|
312
|
+
| `eventQueueCapacity` | `65536` | Native-to-JS event queue bound. |
|
|
313
|
+
| `eventBatchSize` | `64` | Events per JS batch in `startBatch()` and the facade. |
|
|
314
|
+
| `sendQueueCapacity` | `1024` | Per-connection native send backlog. |
|
|
315
|
+
| `sendBufferCount` | `256` | Fixed-send pool slot count. |
|
|
316
|
+
| `sendBufferSize` | `2048` | Fixed-send pool slot size. |
|
|
317
|
+
|
|
318
|
+
All servers expose live counters through `ServerInfo`, including accepted/closed/rejected connections, bytes sent/received, queue drops, receive buffer starvations, recv-bundle counters, zero-copy send counters, fixed-send misses, and ZCRX packet counters.
|
|
319
|
+
|
|
320
|
+
## Performance and benchmarks
|
|
321
|
+
|
|
322
|
+
The repository includes benchmark drivers, but the README does not publish benchmark numbers because results depend on kernel, CPU, NIC, limits, and benchmark shape.
|
|
323
|
+
|
|
324
|
+
```bash
|
|
325
|
+
npm run bench
|
|
326
|
+
npm run bench:tcp
|
|
327
|
+
npm run bench:high
|
|
328
|
+
npm run bench:first-slice
|
|
329
|
+
REQUESTS=1000 CONCURRENCY=32 npm run bench:syscalls
|
|
330
|
+
```
|
|
331
|
+
|
|
332
|
+
Benchmark scripts:
|
|
333
|
+
|
|
334
|
+
- `benchmark/compare.js` compares Node HTTP with `UringHttpServer`.
|
|
335
|
+
- `benchmark/tcp-echo.js` compares Node TCP, the ferrings TCP facade, raw TCP, native echo, recv-bundle, and zero-copy-send variants when available.
|
|
336
|
+
- `benchmark/high-concurrency.js` runs HTTP and TCP cases with higher concurrency defaults.
|
|
337
|
+
- `benchmark/syscalls.js` uses `strace -f -c` when installed to report server-side syscalls per completed connection.
|
|
338
|
+
- `benchmark/first-slice.js` writes one compact validation report for the first useful slice across capabilities, HTTP, TCP, and syscall cases.
|
|
339
|
+
|
|
340
|
+
Set `REPORT_PATH=artifacts/<name>.json` to keep machine-readable reports.
|
|
341
|
+
|
|
342
|
+
## ZCRX
|
|
343
|
+
|
|
344
|
+
ZCRX support is present but gated. Use it only on hosts with the right kernel, permissions, NIC support, header/data split, and flow steering/RSS isolation.
|
|
345
|
+
|
|
346
|
+
```bash
|
|
347
|
+
node bin/ferrings.js zcrx-probe --interface eth0 --rx-queue 0 --active --json
|
|
348
|
+
ZCRX_INTERFACE=eth0 ZCRX_CONNECT_HOST=<nic-routed-host> npm run test:zcrx
|
|
349
|
+
```
|
|
350
|
+
|
|
351
|
+
`test:zcrx` starts the HTTP, native TCP echo, and programmable TCP servers with `useZeroCopyReceive: true`, drives traffic through `ZCRX_CONNECT_HOST`, and requires `ServerInfo.zcrxPackets` and `zcrxBytes` to increase.
|
|
352
|
+
|
|
353
|
+
For a real NIC receive proof, avoid `127.0.0.1`; route packets through the selected NIC queue, usually from a second host or a network namespace.
|
|
354
|
+
|
|
355
|
+
## Release and package layout
|
|
356
|
+
|
|
357
|
+
The release flow follows napi-rs native package conventions:
|
|
358
|
+
|
|
359
|
+
- Root package: `ferrings`
|
|
360
|
+
- Optional native packages:
|
|
361
|
+
- `ferrings-linux-x64-gnu`
|
|
362
|
+
- `ferrings-linux-x64-musl`
|
|
363
|
+
- `ferrings-linux-arm64-gnu`
|
|
364
|
+
- `ferrings-linux-arm64-musl`
|
|
365
|
+
|
|
366
|
+
Useful release checks:
|
|
367
|
+
|
|
368
|
+
```bash
|
|
369
|
+
npm run check:native-packages
|
|
370
|
+
npm run check:npm-new-names
|
|
371
|
+
npm run check:release-repository
|
|
372
|
+
npm run check:release-ready -- --full --strict
|
|
373
|
+
npm run check:release-ready -- --full --require-zcrx
|
|
374
|
+
```
|
|
375
|
+
|
|
376
|
+
Tag pushes that match the package version build all native artifacts, run package checks, and publish to npm with the repository `NPM_TOKEN` secret. Manual `workflow_dispatch` runs can also publish when `publish=true`.
|
|
377
|
+
|
|
378
|
+
## Limitations and tradeoffs
|
|
379
|
+
|
|
380
|
+
- Linux only; there is no macOS or Windows transport.
|
|
381
|
+
- Node.js `>=20` is required.
|
|
382
|
+
- This is a native addon, so kernel support and process limits affect which fast paths are active.
|
|
383
|
+
- The TCP facade is intentionally similar to Node's server shape, but it is not a drop-in replacement for every `net.Server` behavior.
|
|
384
|
+
- `UringHttpServer` is a fixed-response benchmark server, not an HTTP application framework.
|
|
385
|
+
- TLS is not implemented.
|
|
386
|
+
- ZCRX requires specific NIC hardware, kernel support, queue setup, permissions, and routed traffic through the selected RX queue.
|
|
387
|
+
- Registered-buffer send can be unavailable even when the kernel supports other modern `io_uring` networking features; ferrings reports that through `capabilities().registeredSendBuffer`.
|
|
388
|
+
- APIs and packaging are still at the 0.1 release-candidate stage.
|
|
389
|
+
|
|
390
|
+
## Docs, examples, and project health
|
|
391
|
+
|
|
392
|
+
- Examples: [`examples/http-fixed.js`](examples/http-fixed.js), [`examples/tcp-echo.js`](examples/tcp-echo.js)
|
|
393
|
+
- Benchmarks: [`benchmark/`](benchmark/)
|
|
394
|
+
- Type surface: [`index.d.ts`](index.d.ts), [`native.d.ts`](native.d.ts)
|
|
395
|
+
- CLI entrypoint: [`bin/ferrings.js`](bin/ferrings.js)
|
|
396
|
+
- Release workflow: [`.github/workflows/release.yml`](.github/workflows/release.yml)
|
|
397
|
+
- CI workflow: [`.github/workflows/ci.yml`](.github/workflows/ci.yml)
|
|
398
|
+
- Tests: [`test/`](test/)
|
|
399
|
+
|
|
400
|
+
There is no separate docs site yet; the README, type definitions, examples, and tests are the current reference material.
|
|
401
|
+
|
|
402
|
+
## Contributing
|
|
403
|
+
|
|
404
|
+
Issues and pull requests are welcome. There is no standalone `CONTRIBUTING.md` yet, so use this baseline before opening a change:
|
|
405
|
+
|
|
406
|
+
```bash
|
|
407
|
+
npm install
|
|
408
|
+
npm test
|
|
409
|
+
npm run check:release-ready -- --full --strict
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
For changes that touch native packaging, also run:
|
|
413
|
+
|
|
414
|
+
```bash
|
|
415
|
+
npm run check:native-packages
|
|
416
|
+
npm run check:publish
|
|
417
|
+
```
|
|
418
|
+
|
|
419
|
+
For ZCRX changes, include `npm run test:zcrx` output when you have access to capable hardware. If you do not, include `node bin/ferrings.js zcrx-probe --all --active --json` output so reviewers can see the blocker.
|
|
420
|
+
|
|
421
|
+
## License
|
|
422
|
+
|
|
423
|
+
Licensed under either of:
|
|
424
|
+
|
|
425
|
+
- [MIT](LICENSE-MIT)
|
|
426
|
+
- [Apache-2.0](LICENSE-APACHE)
|
|
427
|
+
|
|
428
|
+
at your option.
|