about summary refs log tree commit diff
AgeCommit message (Collapse)Author
2023-01-02Better validate MODE +k & +l parameters and return errorsAlexander Barton
Implement new numeric ERR_INVALIDMODEPARAM_MSG(696) and: - Reject channel keys with spaces and return ERR_INVALIDMODEPARAM_MSG; This was possible until now and resulted in garbled IRC commands later. - Reject empty channel keys and return ERR_INVALIDMODEPARAM_MSG; This was possible until now and resulted in garbled IRC commands later. - Return ERR_INVALIDMODEPARAM_MSG when user limit is out of bounds; This was silently ignored until now. Closes #290. Thanks Val Lorentz for reporting it!
2023-01-02Channel modes +k & +l: Always report an error when a parameter is missingAlexander Barton
This relates to #290 and considerations which errors to show when: and I think it is the better approach to give feedback instead of silently failing. Note that this code path is also used when handling modes of channels defined in "[Channel]" blocks in configuration files: in this case the client is the local server and we can't send messages to it, because it has no socket connection! Therefore we need those "is_machine" checks and log an error im this case.
2023-01-02Refactor Channel_Mode(), get rid of some nestingAlexander Barton
No functional changes.
2023-01-02Allow ircops to use WHO on any channel.michi
2022-12-29Remove outdated macOS "Package Maker" configurationAlexander Barton
The tool is unavailable for many macOS versions and many years, so remove all related files.
2022-12-29We no longer use Travis-CI, remove its configurationAlexander Barton
2022-12-29GitHub "ngIRCd CI" Action: Use sudo(8) when installing packagesAlexander Barton
2022-12-29Add "ngIRCd CI" GitHub ActionAlexander Barton
2022-12-27Refactor join_send_topic() into IRC_Send_Channel_Info() and use it for JOIN ↵Alexander Barton
and NJOIN handlers This reduces code duplication and brings the order of messages on JOIN and NJOIN in line. Fixes #288.
2022-12-26Send NAMES list and channel topic to NJOIN'ed usersewired
Send the NAMES list and channel topic to users "forcefully" joined to a channel using NJOIN, like they joined on their own using JOIN. Closes #288.
2022-12-26Channel mode setting: The local server is allowed to work on local channelsAlexander Barton
Don't forbid the local server to change modes on local channels: this happens when overriding modes on local (&) channels in the server configuration file, for example, and is perfectly fine. Without this patch, the server worked as expected but showed critical error messages for each local channel in its configuration file: "Got remote MODE command for local channel!? Ignored."
2022-12-25Update Xcode project for latest Xcode version (14.2)Alexander Barton
2022-12-25README.md: Update "status" section, remove "is being actively developed" ...Alexander Barton
2022-12-25Spelling fixes, mostly in file commentsAlexander Barton
2022-12-17Use "||" instead of "|"hello-smile6
2022-12-17Fix gline/kline with cloaked hostnames9pfs
2022-12-17Convert uses of Log(LOG_DEBUG, ...) to LogDebug()Jules Maselbas
2022-11-01fix typo in conn.csalaaad2
2022-01-012022 =:)Alexander Barton
Happy new year!
2021-12-30Fix a possible race condition in Client_Introduce()Alexander Barton
Conf_GetServer() can return NULL when the server introducing the client had a write error for example, and is being disconnected. So make sure that we have a valid server before calling Conf_NickIsService()!
2021-12-30Enhance documentation a bit, add doc/QuickStart.mdAlexander Barton
And this file could well be expanded!
2021-10-31doc/HowToRelease.txt: "dist-tarZ" and "dist-xz" make targets can't be combinedAlexander Barton
2021-01-02ngIRCd Release 26.1 rel-26.1Alexander Barton
2021-01-02Update AUTHORS fileAlexander Barton
2021-01-02Update config.guess and config.sub to recent versionsAlexander Barton
- config.guess: 2020-12-22 - config.sub: 2020-12-22
2021-01-01Update NEWS and ChangeLog filesAlexander Barton
2021-01-01Update Platforms.txtAlexander Barton
- Add aarch64/apple/darwin (Apple CLang 12.0.0) - Add x86_64/unknown/openbsd6.7 (gcc 4.2.1) Thanks to Götz Hoffart <goetz@hoffart.de>
2021-01-012021! :-)Alexander Barton
Happy new year!
2020-12-29Explicitely cast Conf_MaxPenaltyTime (time_t) to "long"Alexander Barton
This fixes the following compiler warning, for example on OpenBSD: conf.c: In function 'Conf_Test': conf.c:391: warning: format '%ld' expects type 'long int', but argument 2 has type 'time_t' Thanks to Götz Hoffart for reporting this!
2020-12-29Don't set AI_ADDRCONFIG, even when it existsAlexander Barton
Basically, the issue described in #281 is that the test suite uses the IPv4 address 127.0.0.1 on an IPv6-only host. But this is the "safest" thing to do in (almost) all other setups: relaying on DNS host names makes things even more complex, as different systems map 127.0.0.1 differently (including the reverse lookup; that's why we switched to 127.0.0.1 back in 2014, see commit 3f807e10457). But with AI_ADDRCONFIG set, on an IPv6-only host, we prevent 127.0.0.1 to get translated properly, even when the loopback interface has this address configured! So don't set it any more. The drawback is that the resolver possibly returns more addresses now, even of an unsupported/not connected address family; but this shouldn't do much harm in practice, as ngIRCd iterates over all returned addresses while trying to establish an outgoing connection. Closes #281.
2020-11-28FAQ.txt: There is no "CVS" anymore, we use Git!Alexander Barton
2020-11-02Fix typo in comment: operaor -> operatorRolf Eike Beer
2020-11-02Revert "Show allowed channel types in ISUPPORT(005) numeric only"Alexander Barton
The ISUPPORT(005) numeric lists only channel prefixes which are listed in the "AllowedChannelTypes" configuration option. And if this is the empty string ("") for example, this now results in IRC clients assuming "oh, no channel prefix characters at all, so no channels at all, so no PRIVMSG can go to any channel" -- which is not the case when there are pre-defined channel set up or other servers still having channels! So "allowed channel types" != "supported channel types", and we always have to list all supported ones in the ISUPPORT(005) numeric! This reverts commit 4b7e8db418340576c95f1edad8470b66d6fe886d. Closes #285.
2020-11-01Test suite: Wait 2 seconds after reloading the daemonAlexander Barton
On reload, all listening ports are closed, configuration updated, and then opened again. Which leads to subsequent tests running while the daemon isn't listening on any ports, and that's why the tests fail. The "proper" way whould be to loop and check for open ports, but waiting is what the start-server.sh script does right now, so stick with this in reload-server.sh for now as well. This fixes the issue, at least on my RaspberryPi ... Closes #280.
2020-10-20Update Platforms.txtAlexander Barton
- Update powerpc/apple/darwin8.11.0 (gcc 4.0.1) - Add x86_64/apple/darwin19.6.0 (Apple clang 12.0.0) - Add x86_64/unknown/freebsd12.1 (FreeBSD clang 8.0.1) - Update x86_64/pc/linux-gnu (gcc 8.3.0) - Add x86_64/unknown/netbsd9.0 (gcc 7.4.0) - Add x86_64/unknown/openbsd6.6 (gcc 4.2.1) - Add x86_64/unknown/openbsd6.6 (OpenBSD clang 8.0.1) Thanks to Götz Hoffart <goetz@hoffart.de> for the PowerPC test!
2020-10-20platformtest.sh: Try to mangle CLang name more intellligentlyAlexander Barton
2020-08-04Fixed Atheme Linksxnaas
.org and not .net
2020-06-20ngIRCd Release 26 rel-26Alexander Barton
2020-06-20INSTALL.md: Add instructions for ArchLinux (pacman)Alexander Barton
2020-06-11ngIRCd Release 26~rc2 rel-26-rc2Alexander Barton
2020-06-11Update NEWS, ChangeLog and doc/Platforms.txt filesAlexander Barton
2020-06-11Add AppStream metadata file: contrib/de.barton.ngircd.metainfo.xmlAlexander Barton
2020-06-11Don't send invalid CHANINFO commands when no key is setAlexander Barton
It can happen that a channel is +k, but no key is set: for example by misconfiguring a pre-defined channel. In this case, ngIRCd sent an invalud CHANINFO command ("CHANINFO #test +Pk 0 :'", note the unset key represented by the two spaces) to its peers. Fix this and enhance the CHANINFO documentation.
2020-05-31Update NEWS and ChangeLog filesAlexander Barton
2020-05-26Update description text in manual page, too!Alexander Barton
2020-05-26ngircd.spec: Fix name of README.md and INSTALL.mdAlexander Barton
2020-05-26Update description textsAlexander Barton
Bring them in line with the updated texts on the homepage.
2020-05-26IRC_SQUIT(): Fix use-after-free when unregistering the sending clientAlexander Barton
2020-05-25IRC_SERVER: Make sure that the client sent a prefixAlexander Barton
The SERVER command is only valid with a prefix when received from other servers, so make sure that there is one and disconnect the peer if not (instead of crashing ...). This obsoletes PR #275. Thanks Hilko Bengen (hillu) for finding & reporting this as well for the patch & pull request! But I think this is the "more correct" fix.
2020-05-25Enhance debug logging for PONG commandsAlexander Barton
Distinguish between expected and unexpected PONG commands.