Commit graph

  • 40d868f4cf liveness: probe with a pre-registration PING/PONG instead of a full NICK/USER register — proves acceptor+core liveness without creating a client session, so it no longer spams the snotice stream with livecheck connect/quit notices reverse 2026-08-14 14:07:59 +00:00
  • d795d1a59c docs: add a module-developer API reference (docs/api/) — Command/Module/ChanMode/UserMode traits, the Server API surface, per-entity Extensible state, and a first-module tutorial reverse 2026-08-13 02:55:56 +00:00
  • bd054f7721 docs: add a full docs/ manual (architecture, configuration, modes, operators, linking, ircv3, anti-abuse, deployment, building) and refresh the README for the reactor pool + TLS-in-reactor + resilience reverse 2026-08-13 01:00:39 +00:00
  • d8a963d0f9 deploy: add firewalld direct-rule flood-mitigation script (per-IP hashlimit on the IRC ports); gitignore the pinned bin/ artifact reverse 2026-08-12 18:03:07 +00:00
  • be97089dfa deploy: use firewalld direct-rule for the per-IP flood mitigation (this box runs firewalld — a raw iptables rule would be flushed on reload); replaces the plain-iptables draft reverse 2026-08-12 18:02:45 +00:00
  • df160801c8 deploy: iptables hashlimit flood-mitigation script (per-source-IP rate limit on the IRC client ports; policy-accept, loopback-exempt, idempotent add/del) — kernel-layer defense-in-depth, not applied automatically reverse 2026-08-12 17:55:46 +00:00
  • 41826c8e1a socketengine: per-IP accept-rate limiter (token bucket, accept_rate/accept_burst, off by default) — drops connection-churn floods at the accept edge before any state is allocated; exempts trusted proxies and server links reverse 2026-08-12 17:05:24 +00:00
  • 2aaa5ac091 deploy: persistent systemd unit running a pinned release binary with Restart=on-failure + boot enable, plus a liveness timer that restarts the daemon if a register round-trip stops answering reverse 2026-08-12 16:01:58 +00:00
  • b022189fa5 core: write persisted snapshots atomically (temp + rename) so a crash mid-write can't leave a truncated reputation/metadata/xline file reverse 2026-08-12 15:57:43 +00:00
  • 859450fb6c tests: add end-to-end integration suite (spawns the binary on ephemeral ports; kills by PID, never by name) covering reactor-pool cross-worker delivery, TLS-in-reactor handshake + cross-transport + secure marker, stalled-handshake reap, and nick collision reverse 2026-08-12 15:56:42 +00:00
  • d8d57511ab tls: send a close_notify on close for established TLS sessions instead of just dropping the socket, so clients see a clean shutdown not a truncation error reverse 2026-08-12 15:53:10 +00:00
  • 59e18b0205 socketengine: reap TLS conns that stall mid-handshake (tls_handshake_timeout, default 15s) — a connection that opens the TLS port but never negotiates no longer leaks a slot reverse 2026-08-12 15:51:45 +00:00
  • e74763619b docs: document the io_threads reactor-pool knob in the example config reverse 2026-08-12 14:03:24 +00:00
  • 02ae92e16d socketengine: run direct TLS in the reactor pool — non-blocking handshake + crypto in the worker threads (Sock::Tls, TlsSession), unifying the client I/O model and spreading TLS work across cores; proxied TLS + links keep the thread path reverse 2026-08-12 14:03:00 +00:00
  • 7c166e3aae socketengine: plaintext reactor pool — an acceptor round-robins connections across N worker reactors (io_threads, auto=cores) feeding the single lock-free core, so per-connection I/O scales across cores reverse 2026-08-12 13:42:08 +00:00
  • 4ba8d5bce6 xline: persist server bans via the off-core disk writer too, so a KLINE/GLINE burst can't stall the event loop on a slow disk reverse 2026-08-12 13:20:16 +00:00
  • e91b64a4db resilience: isolate per-connection panics in the plaintext reactor (catch_unwind read/write -> drop just that conn) and log worker-thread panics instead of vanishing silently reverse 2026-08-12 13:19:25 +00:00
  • 145a01b2c2 core: Server::disk_write — coalescing off-core snapshot writer; reputation/metadata saves no longer block the event loop on a slow disk reverse 2026-08-12 13:16:15 +00:00
  • c231c6b8ef connclass: verify a KDF class password off the core thread with a registration hold (auth_pending + Event::ConnclassAuth) — connect floods can't freeze the server reverse 2026-08-12 13:13:27 +00:00
  • 2b3495be65 customtitle: verify a KDF /TITLE password off the core thread (Event::TitleAuth) — /TITLE spam can't freeze the server reverse 2026-08-12 13:07:28 +00:00
  • 7cb58586b4 core: generic spawn_crypto helper; offload all slow KDF hashing (OPER pbkdf2 too, and MKPASSWD) off the core thread reverse 2026-08-12 13:05:29 +00:00
  • e246699fef oper: verify bcrypt passwords on a worker thread (Event::OperAuth), bounded — a bcrypt OPER no longer freezes the core, closing the OPER-spam DoS; fast hashes stay inline reverse 2026-08-12 12:46:52 +00:00
  • 6795243d5f core: slow-command snotice (slow_command_ms) + a watchdog thread (watchdog_ms) so a blocked core thread is visible instead of a silent freeze reverse 2026-08-12 12:43:41 +00:00
  • 8309b851f2 core: wrap each event handler in catch_unwind so one panicking command can't take the whole single-threaded server down reverse 2026-08-12 12:41:16 +00:00
  • b40c523b87 customprefix: data-driven prefix engine — define arbitrary new prefix modes (letter/prefix/rank/ranktoset/ranktounset/depriv), ranks re-spaced x10; built-in tiers + defaults unchanged reverse 2026-08-11 19:46:07 +00:00
  • d35a2071a6 docs: document abbreviation + customprefix in the config example reverse 2026-08-11 19:21:17 +00:00
  • 9f3081cb38 customprefix: add ranktoset/ranktounset/depriv per tier (InspIRCd change= parity for existing prefixes) reverse 2026-08-11 19:20:27 +00:00
  • 749a1c3b69 customprefix: config-override channel-prefix sigils per tier (customprefix = <tier> <sigil>); PREFIX/NAMES/FJOIN consistent reverse 2026-08-11 19:01:45 +00:00
  • b4186ae08d namedmodes: PROP command sets/queries channel modes by long name (op, moderated, limit, ...) reverse 2026-08-11 18:55:14 +00:00
  • 3b43abc88a operlevels: oper = <name> <pass> <level>; a lower-level oper can't KILL a higher-level one reverse 2026-08-11 18:50:12 +00:00
  • 3b2f30965a abbreviation: a unique command-prefix resolves to its full command (abbreviation = yes) reverse 2026-08-11 18:46:16 +00:00
  • 72ca89af26 log_json: append the server-notice/log stream to a file as JSONL (log_json = <path>) reverse 2026-08-11 18:44:48 +00:00
  • 6ffd6a57bc proxy: forward v2 TLS TLVs (PP2_TYPE_SSL/CERTFP) so plaintext clients behind a TLS-terminating proxy show secure+certfp; restore ws_trust_proxy to the config example reverse 2026-08-11 17:13:32 +00:00
  • 4f6c0ded48 websocket: add ws_defaultmode (text/binary/reject), ws_proxyranges (glob/CIDR X-Real-IP/XFF trust), ws_allowmissingorigin, ws_nativeping reverse 2026-08-11 16:10:09 +00:00
  • 87a683dbd2 proxy: HAProxy PROXY protocol v1+v2 on the plaintext (reactor) and TLS listeners; trusted via proxy=<glob>, rewrites the client IP before connect checks reverse 2026-08-11 11:43:08 +00:00
  • d68f3ce97e bcrypt: native $2b$ hashing (blowfish + eksblowfish; pi constants via exact fixed-point machin) wired into password_hash + MKPASSWD reverse 2026-08-11 11:32:35 +00:00
  • 5ea543188d syslog: tee the server-notice/log stream to syslog (native /dev/log unix datagram or udp host:port) reverse 2026-08-11 11:21:09 +00:00
  • 56d3774647 rline: native regex engine (thompson nfa, no backtracking) + RLINE regex bans (registration/enforce/stats R/matchonnickchange) reverse 2026-08-10 21:48:52 +00:00
  • b76fbfdb79 services: SVSHOLD nick reservation, SVSTOPIC, SVSOPER, SVSCMODE over s2s (+ stats S) reverse 2026-08-10 21:00:23 +00:00
  • f371ed0a18 connclass: cidr/parent/port/limit/globalmax + hashed/trusted-cert passwords, per-class recvq/sendq + fakelag, and rfc1413 ident reverse 2026-08-10 18:46:42 +00:00
  • f5f888dbaa connectclass: per-class connection policy (allow/deny, localmax, password, maxchans, pingfreq, timeout, modes) + PASS reverse 2026-08-10 17:49:12 +00:00
  • 02b2061561 readme: polished front-page layout — badges, about, grouped features, quick start, links reverse 2026-08-10 12:16:08 +00:00
  • 75de56f532 readme: cover the full feature set (modes, ircv3, services, s2s, geoip, rpc, transports) reverse 2026-08-10 11:36:38 +00:00
  • 1dd7f77ca8 operprefix + ojoin: server oper prefix (!/mode y, above owner) auto-granted to opers + OJOIN command reverse 2026-08-10 10:05:37 +00:00
  • 8ebb106f97 hidemode: hide configured mode changes from members below a rank (per-recipient MODE) reverse 2026-08-10 09:41:20 +00:00
  • 06883ced9f extbanbanlist: matching extban b:#chan (share another channel's ban list) reverse 2026-08-10 09:37:51 +00:00
  • 0d5717c585 relaymsg: RELAYMSG + draft/relaymsg cap for bridge-style spoofed-nick channel messages reverse 2026-08-10 09:06:30 +00:00
  • 71d6e7441b helpmode: oper-settable user mode +h (helpop) shown in whois reverse 2026-08-10 09:01:38 +00:00
  • 512185d6df globops + autodrop: /GLOBOPS oper broadcast and pre-registration scanner drop reverse 2026-08-10 08:58:15 +00:00
  • ab4d87488b hidelist: restrict list-mode viewing by rank; allow members to view lists by default (parity) reverse 2026-08-10 08:24:37 +00:00
  • 9d84a66437 autoop: +w <prefix>:<mask> channel list mode grants status on join reverse 2026-08-10 08:18:07 +00:00
  • 87e3d5436d chanlog: mirror the oper server-notice stream into a configured channel reverse 2026-08-09 23:19:29 +00:00
  • 1a53c5ae5a banredirect: +b mask$#chan bounces a banned user to another channel (loop-guarded) reverse 2026-08-09 23:17:32 +00:00
  • 349200d695 solvemsg: arithmetic challenge before an un-vouched user's PMs deliver (anti-spam) reverse 2026-08-09 23:11:57 +00:00
  • 0bf6992d8a dccallow: block unwanted DCC sends/chat + DCCALLOW +/-/LIST allow-list command reverse 2026-08-09 23:08:25 +00:00
  • 61954f6c5c conn_waitpong: optionally require a PONG cookie before registration (anti-bot) reverse 2026-08-09 23:04:14 +00:00
  • e0d849b4c9 showfile: serve a text file as its own command (e.g. /RULES), config-driven like aliases reverse 2026-08-09 23:00:07 +00:00
  • 61584a545b config: make flood/dnsbl/multiline/chathistory/extjwt limits + nick/chan/watch/monitor/silence/whowas/timeouts configurable (no hardcoded options) reverse 2026-08-09 22:52:28 +00:00
  • 1969218d3f geoip: show full country name (country.names.en) in whois and GEOIP, keep iso for geoban reverse 2026-08-09 22:05:23 +00:00
  • 7a99f49ca4 geoip: native maxmind .mmdb reader, G: geoban extban, GEOIP command, whois country reverse 2026-08-09 21:43:57 +00:00
  • aa384d56f2 modules: port customtitle (TITLE vanity-title command + WHOIS line + vhost) reverse 2026-08-09 20:13:07 +00:00
  • e7976a76d3 modules: port rmode (bulk-remove channel list-mode entries) reverse 2026-08-09 20:11:09 +00:00
  • 3186af07e8 modules: port maphide and tline reverse 2026-08-09 20:06:54 +00:00
  • 140554719b modules: port randquote, disable, restrictchans, channames reverse 2026-08-09 20:03:47 +00:00
  • bda7eecfc2 modules: port ircv3_extended_isupport (draft/extended-isupport cap + ISUPPORT command, draft/isupport batch) reverse 2026-08-09 19:52:52 +00:00
  • f48be3413d modules: port ircv3_FILEHOST (reverse.im/filehost cap + FILEHOST JWT cmd + metadata tag) and ircv3_irccloudtags reverse 2026-08-09 19:42:04 +00:00
  • 19157e0722 websocket: native RFC 6455 transport (ws:// + wss://) — handshake, framing, ping/pong keepalive, idle timeout, origin/proxy flags, via_websocket reverse 2026-08-09 18:45:12 +00:00
  • 97b0d8ad89 server: route announce through the same tagged path as snotice — REHASH notices now carry server-time + draft/json-log + hit the log ring reverse 2026-08-09 17:46:26 +00:00
  • 100e33c76b modules: port jsonlog (draft/json-log cap) — structured JSON tag on snotices for capable opers reverse 2026-08-09 17:10:20 +00:00
  • 06afd1e59d rpc: implement the deferred methods — channel.set_mode, server.connect, log.tail/log.events (in-memory log ring) reverse 2026-08-09 16:36:34 +00:00
  • 185ff471b1 rpc/httpd: accept chunked (Transfer-Encoding) request bodies, not just Content-Length reverse 2026-08-09 16:27:04 +00:00
  • 89f508aca9 rpc: add server/stats/ban/message/whowas/spamfilter providers; fix REHASH to reload raw_config reverse 2026-08-09 16:07:53 +00:00
  • ee445396eb rpc: add user + channel providers (list/get + kill/kick/set_topic/set_nick/set_mode/set_vhost/set_oper) reverse 2026-08-09 16:00:28 +00:00
  • 4b1f096ed8 rpc: JSON-RPC-over-HTTP control interface — native httpd + json + dispatch, core provider reverse 2026-08-09 15:54:05 +00:00
  • 9dce3bde92 modules: port ircv3_extjwt (EXTJWT command, native HS256 tokens) reverse 2026-08-09 11:59:38 +00:00
  • caf87ed911 modules: port cloudflare_challenge (VERIFYCHALLENGE JWT gate); recaptcha also covers cloudfire reverse 2026-08-09 11:56:03 +00:00
  • a2401a4f54 modules: port jwt (native HS256) + recaptcha (JWT registration gate + CAPTCHA cmd) reverse 2026-08-09 11:54:00 +00:00
  • b0d767a809 modules: port account_registration (REGISTER/VERIFY over async HTTP API) + async http infra reverse 2026-08-09 11:48:17 +00:00
  • c71c28457f modules: port password_hash (md5/sha1/sha2/pbkdf2 + MKPASSWD, hashed OPER) and hashident reverse 2026-08-09 11:40:17 +00:00
  • dc22dcd072 modules: port securelist and denychans (badchan/goodchan with redirect) reverse 2026-08-09 11:35:21 +00:00
  • 245d8d8529 extban: add r: realnameban, j: channelban, s: serverban matching extbans reverse 2026-08-09 11:30:53 +00:00
  • a48b48e46f modules: port antirandom, restrictcommands, restrictmsg, blockamsg, connectban reverse 2026-08-09 11:27:52 +00:00
  • 131471e245 modules: move all per-module state/config out of server.rs/config.rs into own files reverse 2026-08-09 11:18:04 +00:00
  • 0d4c9297b5 port whoisport, ircv3_network_icon, profileLink, hidewhois (all config-driven) reverse 2026-08-09 08:33:56 +00:00
  • f6fbff5270 reputation: full parity port — CIDR ipv4/ipv6 masking, reputationexpire decay rules, whois visibility modes, config-driven db/bump/expire/save/minchanmembers/scorecap (no hardcoding) reverse 2026-08-09 08:28:38 +00:00
  • eb121a75f8 reputation: full port — y: score extban (y:<N/y:>N), WHOIS score, +2 for accounts, bump interval/scorecap/minchanmembers config; conn_join/conn_umodes/connbanner/operjoin/opermodes/seenicks/chancreate reverse 2026-08-09 08:19:32 +00:00
  • 64dcbd8bf4 securitygroups: UnrealIRCd-style groups + g: extban + SECURITYGROUPS + WHOIS reverse 2026-08-09 08:08:06 +00:00
  • 97a35338fa delayjoin +D: hide JOINs until a member speaks/reveals (NAMES + part/quit/nick aware) reverse 2026-08-09 07:40:10 +00:00
  • 80cc61e7f8 exemptchanops +X: per-rank exemptions from flood/anticaps/repeat/censor/blockcolor/etc reverse 2026-08-09 07:34:42 +00:00
  • 789c2ca14f reputation module: per-IP score (tick accrual + persistence) + REPUTATION command; on_tick module hook reverse 2026-08-09 07:28:48 +00:00
  • 5f3ae2123d ircv3_metadata_db: persist channel metadata across restart reverse 2026-08-09 07:25:42 +00:00
  • ef219bc98f oper override: bypass +i/+k/+b/+z/+R/+l/+J on JOIN with a snotice reverse 2026-08-09 01:34:20 +00:00
  • f022ea5a42 hostcycle: PART+JOIN non-chghost clients on host change (prefixes restored) reverse 2026-08-09 01:30:25 +00:00
  • d4ce5c008f connflood: refuse connection floods from a single IP reverse 2026-08-09 01:28:09 +00:00
  • 1eca745092 repeat channel mode (+K <n>): block recently-repeated lines reverse 2026-08-09 01:24:48 +00:00
  • 668f2735b2 delaymsg channel mode (+d <secs>) reverse 2026-08-09 01:22:27 +00:00
  • f4c01e1bf8 OPERMOTD, self-service VHOST, and command aliases (config-driven) reverse 2026-08-09 01:19:24 +00:00
  • 6be8e5ebcb xline_db: persist x-lines/cbans to disk, reload on start reverse 2026-08-09 01:15:43 +00:00
  • e2a4a3e248 NICKLOCK / NICKUNLOCK (services hold a user's nick) reverse 2026-08-09 01:09:46 +00:00
  • 4d6525cac2 opmoderated channel mode (+U — route unprivileged messages to ops) reverse 2026-08-09 01:07:30 +00:00