130 KiB
PyLink 3.0-rc1 (2020-02-22)
PyLink 3.0 brings PyLink up to date with the latest IRCds (InspIRCd 3, UnrealIRCd 5), and introduces Discord integration via the pylink-discord contrib module. It also improves support for Unicode nicks in Relay and Clientbot.
Major changes since PyLink 2.0.x
- Added support for InspIRCd 3 and UnrealIRCd 5.x:
- To enable InspIRCd 3 link mode (highly recommended) on InspIRCd 3
networks, set the
target_version: insp3
option in the relevant network’sserver
block. - For UnrealIRCd 5 support, no changes in PyLink are necessary.
- To enable InspIRCd 3 link mode (highly recommended) on InspIRCd 3
networks, set the
- Updated list of required dependencies: added cachetools, removed ircmatch and expiringdict
- Relay: added an optional dependency on unidecode, to translate
Unicode nicks to ASCII on networks not supporting it.
- Also, nick normalization is now skipped on protocols where it is not necessary (Clientbot, Discord)
- Relay now tracks kill/mode/topic clashes and will stop relaying when it detects such a conflict (issue#23)
- Changehost now supports network-specific configuration (issue#611) and listening for services account changes - this allows for consistent account based hostmasks for SASL gateways, etc.
- Clientbot: added an option to continuously rejoin channels the bot is not in. issue#647
- Antispam: added optional quit/part message filtering (issue#617)
API changes
- API Break: Channel, Server, and User keys may now
be type
int
- previously, they were always strings. - API Break: PyLink now supports having multiple UIDs
mapping to the same nick, as this is common on platforms like Discord.
nick_to_uid()
has been reworked to optionally return multiple nicks whenmulti=True
- Using
nick_to_uid()
without this option will raise a warning if duplicate nicks are present, and may be deprecated in the future.
- Added
utils.match_text()
, a general (regex-based) glob matcher to replaceircmatch
calls (issue#636). - Editing hook payloads is now officially supported in plugin hook handlers (issue#452)
- Added new protocol module capabilities:
can-manage-bot-channels
freeform-nicks
has-irc-modes
virtual-server
- SQUIT hooks now track a list of affected servers (SIDs) in the
affected_servers
field
This branch was previously known as PyLink 2.1. For more detailed changes between 3.0-rc1 and individual 2.1 snapshots, see their separate changelogs below.
Changes since PyLink 2.1-beta1
Feature changes
- Added a Dockerfile for PyLink, thanks to @jameswritescode. Official images will be available on Docker Hub before the final 2.1 release.
- unreal: declare support for usermodes +G (censor) and +Z (secureonlymsg)
- The
version
command now prints the Python interpreter version to assist with debugging
Bug fixes
- Fix desync when removing multiple ban modes in one MODE command (regression from 2.1-beta1)
- p10: properly ignore ACCOUNT subcommands other than R, M, and U
- Fix extraneous lowercasing of the network name in the
$account
exttarget, causing per-network matches to fail if the network name had capital letters - inspircd: negotiate casemapping setting on link for InspIRCd 3. issue#654
- ircs2s_common: fix crash when failing to extract KILL reason
Documentation changes
relay-quickstart
: describe delinking another network from channels owned by the caller’s network- Refreshed mode list documentation
Internal improvements
- Debug logs for mode parsers and other miscellaneous internals are now less noisy
- inspircd: warn when using InspIRCd 2 compat mode on an InspIRCd 3 uplink - some commands like KICK are not translated correctly in this mode
- classes: fix
SyntaxWarning: "is" with a literal
on Python 3.8
PyLink 2.1-beta1 (2019-12-08)
Feature changes
- Declare support for UnrealIRCd 5.0.0-rc2+. Since
the S2S protocol has not changed significantly, no protocol changes are
needed for this to work.
- UnrealIRCd 5.0.0-rc1 suffers from a message routing bug and is not supported.
- clientbot: added an option to continuously rejoin channels the bot is not in. issue#647
- changehost: added support for network-specific options. issue#611
- changehost: listen for services account changes - this allows for consistent account based hostmasks for SASL gateways, etc.
- relay_clientbot:
rpm
now deals with duplicate nicks and nicks including spaces (e.g. on Discord) - Relay now merges together network specific
clientbot_styles
options with global settings, instead of ignoring the latter if the network specific options are set. issue#642 - ts6: add support for hiding PyLink servers (
(H)
in server description) - commands: various improvements to the
showuser
command
Bug fixes
- More fixes for InspIRCd 3 support:
- Fix crash on receiving SVSTOPIC on InspIRCd 3
- Fix incorrect handling of PING to PyLink subservers - this caused harmless but confusing “high latency” warnings
- inspircd: revert change disallowing
_
in hosts; this has been enabled by default for quite some time - Fixed various edge cases in mode handling (+b-b ban cycles, casefolding mode arguments, etc.)
- automode: add better handling for protocols where setting IRC modes isn’t possible
- automode: disable on networks where IRC modes aren’t supported. issue#638
Internal improvements
- Added test cases for shared protocol code (mode parsers, state checks, etc.)
- Added more IRC parsing tests based off ircdocs/parser-tests
- Add
get_service_options
method to merge together global & local network options. issue#642 - Enhancements to UnrealIRCd protocol module:
- unreal: read supported user modes on link when available (UnrealIRCd 4.2.3 and later)
- unreal: stop sending NETINFO on link; this suppresses protocol version/network name mismatch warnings
- unreal: declare support for msgbypass and timedban extbans
- Added new protocol capabilities:
has-irc-modes
,can-manage-bot-channels
- relay: handle acting extbans for ban exceptions
+e
, which is supported by InspIRCd and UnrealIRCd
PyLink 2.1-alpha2 (2019-07-14)
PyLink now requires Python 3.5 or later!
This release includes all changes from PyLink 2.0.3, plus the following:
Feature changes
- Added cachetools as a core runtime dependency (relay and expiringdict)
- Added beta support for InspIRCd 3 (issue#644):
- The target IRCd version can be configured via a
target_version
server option, which supportsinsp20
(InspIRCd 2.0, default) andinsp3
.
- The target IRCd version can be configured via a
- Removed dependencies on ircmatch (issue#636) and expiringdict (issue#445)
- Increased Passlib requirement to 1.7.0+ to remove deprecated calls
- pylink-mkpasswd: use
hash()
instead ofencrypt()
- pylink-mkpasswd: use
- Relay updates:
- Relay now tracks kill/mode/topic clashes and will stop relaying when it detects such a conflict (issue#23)
- Skip nick normalization on protocols where they aren’t actually required (Clientbot, Discord)
- Support
@servicenick
as a fantasy trigger prefix (useful on Discord) - commands: add a
shownet
command to show server info (issue#578) - antispam: added optional quit/part message filtering (issue#617)
Bug fixes
- SECURITY: only whitelist permissions for the defined
login:user
if a legacy account is enabled - clientbot: fix crash when
MODES
is defined in ISUPPORT without a value (affects connections to Oragono) - relay: fix KILL message formatting (regression from issue#520)
- relay: consistency fixes when handling hideoper mode changes (issue#629)
- exttargets: coerse services_account to string before matching (issue#639)
Internal improvements
- API Break: Reworked
PyLinkNetworkCore.nick_to_uid()
specification to support duplicate nicks and user filtering- Reworked most plugins (
commands
,bots
,opercmds
) to deal with duplicate nicks more robustly
- Reworked most plugins (
- Revised handling of KILL and QUIT hooks: the
userdata
argument is now always defined- If we receive both a KILL and a QUIT for any client, only the one received first will be sent as a hook.
- Added new protocol module capabilities:
freeform-nicks
,virtual-server
- Added
utils.match_text()
, a general glob matching function to replace ircmatch calls (issue#636) - Editing hook payloads is now officially supported in plugin hook handlers (issue#452)
- ClientbotWrapperProtocol: override
_get_UID()
to only return non-virtual clients, ensuring separate namespaces between internal and external clients. - ClientbotBaseProtocol: disallow
part()
from the main pseudoclient by default, as this may cause desyncs if not supported - Moved IRCv3 message tags parser from
clientbot
toircs2s_common
- Merged relay’s
showchan
,showuser
commands into thecommands
plugin, for better tracking of errors and duplicate nicks
PyLink 2.1-alpha1 (2019-05-02)
This release focuses on internal improvements to better integrate with pylink-discord. It includes all fixes from 2.0.2, plus the following:
Feature changes
- Various Relay improvements:
- Relay now sanitizes UTF-8 nicks and idents where not supported,
optionally using the unidecode module to
decode Unicode names more cleanly to ASCII
- This introduces a new option
relay::use_unidecode
which is enabled by default when the module is installed
- This introduces a new option
- The fallback character to replace invalid nick characters is now
-
instead of|
- Add protocol-level support for hiding users in Relay - this is used by pylink-discord to optionally hide invisible/offline users
- Relay now sanitizes UTF-8 nicks and idents where not supported,
optionally using the unidecode module to
decode Unicode names more cleanly to ASCII
- Decrease default log file size from 50 MiB to 20 MiB
Bug fixes
- changehost: only send a host change if new host != original
- This prevents duplicate host changes on InspIRCd, since it echoes back successful host changes
- clientbot: fix /names parsing errors on networks supporting colors in hosts. issue#641
- inspircd: disallow
_
in hosts since CHGHOST does not treat it as valid - relay: allow trailing .’s in subserver names
(e.g.
relay.
is now an accepted server suffix) - stats: hide login blocks in
/stats O
when not relevant to the caller’s network - unreal: work around a potential race when sending kills on join
Internal improvements
- log: use pylinkirc as logger name; this prevents other libraries’ debug output from making it to the PyLink log by default
- clientbot: properly bounce kicks on networks not implementing them
- classes: remove channels, modes substitutions from
User.get_fields()
- various: type-safety fixes to support numeric channel, server, and user IDs (they were previously always strings)
- SQUIT hooks now track a list of affected servers (SIDs) in the
affected_servers
field - relay: minor optimizations
PyLink 2.0.3 (2019-10-11)
Changes since 2.0.2:
Feature changes
- Switch to more secure password hashing defaults, using pbkdf2-sha256 as the default hash method
- Introduce a
login::cryptcontext_settings
option to further tweak passlib settings if desired
Bug fixes
- SECURITY: Only allow the defined
login:user
to take all permissions when legacy accounts are enabled - clientbot: fix /names handling on networks with colours in hostnames
- clientbot: fix crash when MODES is defined in ISUPPORT but given no value (affects connections to Oragono)
- changehost: only send a host change if new host != original
- relay: fix inconsistent handling of the hideoper setting. issue#629
- unreal: work around a potential race when sending kills on join
PyLink 2.0.2 (2019-03-31)
Changes since 2.0.1:
Feature changes
- Antispam now supports filtering away Unicode lookalike characters when processing text
- Allow disabling dynamic channels via a new “join_empty_channels” option
- relay: add an explicit
forcetag
command, since IRC kills are now relayed between networks
Bug fixes
- launcher: fix crash when –no-pid is set
- relay: fix DB corruption when editing modedelta modes
- automode: fix sending joins to the wrong network when editing remote channels
Internal improvements
- relay: minor optimizations and cleanup
- Disable throttling on S2S links by default, since it usually isn’t necessary there
PyLink 2.0.1 (2018-10-06)
Changes since 2.0.0:
Feature changes
- Slashes (
/
) in hosts is now supported on UnrealIRCd. - Added an
ignore_ts_errors
server option to suppress bogus TS warnings.
Bug fixes
- clientbot: fix desync when the bot is told to kick itself (issue#377)
- launcher: fix PID files not being read if psutil isn’t installed
- relay_clientbot no longer relays list modes set during a server burst (issue#627)
- Fixed stray “bogus TS 0” warnings on some UnrealIRCd mode commands
Internal improvements
- unreal: bump protocol version to 4200 (UnrealIRCd 4.2.0)
- unreal: use SJOIN in
join()
to work around non-deterministic TS when forwarding to other servers
PyLink 2.0.0 (2018-07-31)
Changes since 2.0-rc1:
- Fixed various bugs affecting Relay and Clientbot:
- handlers: don’t delete the PyLink service UID if it leaves all cahnnels
- Relay sometimes sent an empty channel to kick() when relaying kills to kick
- Fix “Relay plugin unloaded” parts on Clientbot links causing a flood of “Clientbot was force parted” kicks
- setup.py: Work around TypeError in distutils.util.rfc822_escape() when installing on Python 3.4
For a summary of changes since 1.3.x, consult the release notes for PyLink 2.0-rc1 below.
PyLink 2.0-rc1 (2018-07-18)
PyLink 2.0 comes with a ton of new features, refinements, and optimizations. Here is a summary of the most interesting changes - for detailed changelogs, consult the release notes for individual snapshots below.
This release does not preserve compatibility with third-party plugins written for PyLink 1.x!
New features
- Added support for ngIRCd, ChatIRCd, and beware-ircd
(via protocol modules
ngircd
,ts6
, andp10
respectively) - Add support for extbans on UnrealIRCd, Charybdis (and derivatives), InspIRCd, and Nefarious.
- U-lined services servers can now be configured for use with
Relay:
CLAIM
restrictions are relaxed for service bots, which may now join with ops and set simple modes. This prevents mode floods when features such asDEFCON
are enabled, and when a channel is accidentally registered on a network not on the CLAIM list.DEFCON
modes set by services are ignored by Relay instead of bounced, and do not forward onto other networks unless the setting network is also in the channel’sCLAIM
list.- To keep the spirit of
CLAIM
, opped services not in a channel’sCLAIM
list are still not allowed to kick remote users, set prefix modes (e.g. op) on others, or modify list modes such as bans.
- New Antispam plugin, with the ability to kill / kick / block mass-highlight spam and configured “spam” strings.
- Added TLS certificate verification, which is enabled by
default on Clientbot networks. issue#592
- This adds the options
ssl_validate_hostname
andssl_accept_invalid_certs
options which have defaults as follows:Server type ssl_validate_hostname
ssl_accept_invalid_certs
Full links (S2S) false (implied by ssl_accept_invalid_certs: true
)true Clientbot networks (C2S) true false ssl_validate_hostname
determines whether a network’s TLS certificate will be checked for a matching hostname.ssl_accept_invalid_certs
disables certificate checking entirely when enabled, and also turns offssl_validate_hostname
.- The existing TLS certificate fingerprint options are unchanged and can be turned on and off regardless of these new options.
- This adds the options
- New Relay features:
- LINKACL now supports whitelisting networks in addition to the
original blacklist implementation (see
help LINKACL
). issue#394 - Relay IP sharing now uses a pool-based configuration scheme
(
relay::ip_share_pools
), deprecating therelay::show_ips
andrelay_no_ips
options.- IPs and real hosts are shared bidirectionally between all networks
in an ipshare pool, and masked as
0.0.0.0
when sending to a network not in a pool and when receiving those networks’ users.
- IPs and real hosts are shared bidirectionally between all networks
in an ipshare pool, and masked as
- KILL handling received a major rework (issue#520:
- Instead of always bouncing, kills to a relay client can now be
forwarded between networks in a killshare pool
(
relay::kill_share_pools
). - If the sender and target’s networks are not in a killshare pool, the
kill is forwarded as a kick to all shared channels that the sender has
CLAIM access on (e.g. when they are the home network, whitelisted in
CLAIM
, and/or an op).
- Instead of always bouncing, kills to a relay client can now be
forwarded between networks in a killshare pool
(
relay_clientbot
now supports setting clientbot styles by network. issue#455- The defaults for CLAIM (on or off) and LINKACL (whitelist or blacklist mode) can now be pre-configured for new channels. issue#581
- New
relay::allow_free_oper_links
option allows disabling oper access toCREATE/LINK/DELINK/DESTROY/CLAIM
by default - relay_clientbot: add support for showing prefix modes in relay text,
via a new
$mode_prefix
expansion. issue#540
- LINKACL now supports whitelisting networks in addition to the
original blacklist implementation (see
- Clientbot is now more featureful:
- Added support for IRCv3 caps
account-notify
,account-tag
,away-notify
,chghost
,extended-join
, anduserhost-in-names
- Clientbot now supports expansions such as
$nick
in autoperform. - Configurable alternate / fallback nicks are now supported: look for
the
pylink_altnicks
option in the example config. - Added support for WHOX.
- Clientbot can now optionally sync ban lists when it joins a channel,
allowing Relay modesync to unset bans properly. See the
fetch_ban_lists
option in the example config. - Failed attempts to join channels are now logged to warning. issue#533
- Added support for IRCv3 caps
- New commands for the opercmds plugin, including:
chghost
,chgident
, andchgname
, for IRCds that don’t expose them as commands.massban
,masskill
,massbanre
, andmasskillre
, which allow setting mass bans/kills/G/KLINEs on users matching anick!user@host
mask, exttarget, or regular expression. The hope is that these tools can help opers actively fight botnets as they are connected, similar to atheme’sclearchan
and Anope’schankill
commands.checkban
andcheckbanre
, which return the users matching a target
- Messages sent by most commands are now transparently word-wrapped to prevent cutoff. issue#153
- PyLink accounts are now implicitly matched: i.e.
user1
is now equivalent to$pylinkacc:user1
. - PyLink now responds to remote
/STATS
requests (/stats c
,u
, ando
) if thestats
plugin is loaded. - The PyLink service client no longer needs to be in channels to log to them.
Feature changes
- The ratbox protocol module has been merged into
ts6, with a new
ircd: ratbox
option introduced to declare Ratbox as the target IRCd. issue#543 - The
raw
command has been split into a new plugin (plugins/raw.py
) with two permissions:raw.raw
for Clientbot networks, andraw.raw.unsupported_network
for other protocols. Using raw commands outside Clientbot is not supported. issue#565 - Some options were deprecated and renamed:
- The
p10_ircd
option for P10 servers is now namedircd
, though the old option will still be read from. - The
use_elemental_modes
setting on ts6 networks has been deprecated and replaced with anircd
option targeting charybdis, elemental-ircd, or chatircd. Supported values forircd
includecharybdis
,elemental
, andchatircd
.
- The
- The
fml
command in thegames
plugin was removed.
Bug fixes
- clientbot: fix errors when connecting to networks with mixed-case server names (e.g. AfterNET)
- Fix
irc.parse_modes()
incorrectly mangling modes changes like+b-b *!*@test.host *!*@test.host
into+b *!*@test.host
. issue#573 - clientbot: fixed sending duplicate JOIN hooks and AWAY status updates. issue#551
Internal improvements
- Reading from sockets now uses a select-based backend instead of one thread per network.
- Major optimizations to user tracking that lets PyLink handle Relay
networks of 500+ users.
- This is done via a new
UserMapping
class inpylinkirc.classes
, which stores User objects by UID and provides abynick
attribute mapping case-normalized nicks to lists of UIDs. classes.User.nick
is now a property, where the setter implicitly updates thebynick
index with a pre-computed case-normalized version of the nick (also stored toUser.lower_nick
)
- This is done via a new
- Service bot handling was completely redone to minimize desyncs when mixing Relay and services. issue#265
Changes in this RC build
From 2.0-beta1:
Bug fixes
- relay: CHANDESC permissions are now given to opers if the
relay::allow_free_oper_links
option is true. - Relay no longer forwards kills from servers, preventing extraneous kills for nick collisions and the like.
- bots: the
join
command now correctly usesbots.join
as its permission name (keeping it consistent with the command name).- The previous name
bots.joinclient
is still supported for compatibility reasons.
- The previous name
Documentation updates
- Rewrote the Relay Quick Start Guide. issue#619
- FAQ: expanded Relay section with common questions regarding Relay mechanics (i.e. kill, mode, and server bans handling)
- docs/technical, docs/permissions-reference: many updates to bring up to date with PyLink 2.0
- various: updated the GitHub repository address
PyLink 2.0-beta1 (2018-06-27)
This release contains all changes from 2.0-alpha3 as well as the following:
New features
- Added TLS certificate verification, which is now enabled by
default on Clientbot networks. issue#592
- This adds the options
ssl_validate_hostname
andssl_accept_invalid_certs
options which have defaults as follows:Server type ssl_validate_hostname
ssl_accept_invalid_certs
Full links (S2S) false (implied by ssl_accept_invalid_certs: true
)true Clientbot networks (C2S) true false ssl_validate_hostname
determines whether a network’s TLS certificate will be checked for a matching hostname.ssl_accept_invalid_certs
disables certificate checking entirely when enabled, and also turns offssl_validate_hostname
.- The existing TLS certificate fingerprint options are unchanged by this and can be turned on and off regardless of these new options.
- This adds the options
- New Relay features:
- LINKACL now supports whitelisting networks in addition to
the original blacklist implementation (see
help LINKACL
). issue#394 - relay: The defaults for CLAIM (on or off) and LINKACL (whitelist or blacklist mode) can now be pre-configured for new channels. issue#581
- You can now set descriptions for channels in
LINKED
via theCHANDESC
command. issue#576 relay_clientbot
now supports setting clientbot styles by network. issue#455- New
relay::allow_free_oper_links
option allows disabling oper access toCREATE/LINK/DELINK/DESTROY/CLAIM
by default
- LINKACL now supports whitelisting networks in addition to
the original blacklist implementation (see
- New Antispam features (see the
antispam:
example block for configuration details):- Antispam now supports text filtering with configured bad strings. issue#359
- Added
block
as a punishment to only hide messages from other plugins like relay. issue#616 - Antispam can now process PMs to PyLink clients for spam - this can be limited to service bots, enabled for all PyLink clients (including relay clones), or disabled entirely (the default).
- IRC formatting (bold, underline, colors, etc.) is now removed before processing text. issue#615
- IPv4/IPv6 address selection is now automatic, detecting when an IPv6 address or bindhost is given. issue#212
- Messages sent by most commands are now transparently word-wrapped to prevent cutoff. issue#153
- The Global plugin now supports configuring exempt channels. issue#453
- Automode now allows removing entries by entry numbers. issue#506
Feature changes
- Relay feature changes:
- Relay IP sharing now uses a pool-based configuration scheme
(
relay::ip_share_pools
), deprecating therelay::show_ips
andrelay_no_ips
options.- IPs and real hosts are shared bidirectionally between all networks
in an ipshare pool, and masked as
0.0.0.0
when sending to a network not in a pool and when receiving those networks’ users.
- IPs and real hosts are shared bidirectionally between all networks
in an ipshare pool, and masked as
- KILL handling received a major rework (issue#520:
- Instead of always bouncing, kills to a relay client can now be
forwarded between networks in a killshare pool
(
relay::kill_share_pools
). - If the sender and target’s networks are not in a killshare pool, the
kill is forwarded as a kick to all shared channels that the sender has
CLAIM access on (e.g. when they are the home network, whitelisted in
CLAIM
, and/or an op).
- Instead of always bouncing, kills to a relay client can now be
forwarded between networks in a killshare pool
(
- Relay IP sharing now uses a pool-based configuration scheme
(
- The PyLink service client no longer needs to be in channels to log to them.
Bug fixes
- Fixed ping timeout handling (this was broken sometime during the port to select).
- relay: block networks not on the claim list from merging in modes when relinking (better support for modes set by e.g. services DEFCON).
- Reworked relay+clientbot op checks on to be more consistent.
- inspircd: fix potential desyncs when sending a kill by removing the target immediately. issue#607
- UserMapping: fixed a missing reference to the parent
irc
instance causing errors on nick collisions. - clientbot: suppress warnings if
/mode #channel
doesn’t show arguments to+lk
, etc. issue#537 - Relay now removes service persistent channels on unload, and when the home network for a link disconnects.
- relay: raise an error when trying to delink a leaf channel from
another leaf network.
- Previously this would (confusingly) delink the channel from the network the command was called on instead of the intended target.
- opercmds: forbid killing the main PyLink client.
Internal changes
- Login handling was rewritten and moved entirely from
coremods.corecommands
tocoremods.login
. issue#590 - New stuff for the core network classes:
is_privileged_service(entityid)
returns whether the given UID or SID belongs to a privileged service (IRC U:line).User
,Channel
TS values are now consistently stored asint
. issue#594match_host()
was split intomatch_host()
andmatch_text()
; the latter is now preferred as a simple text matcher for IRC-style globs.
- New stuff in utils:
remove_range()
removes a range string of (one-indexed) items from the list, where range strings are indices or ranges of them joined together with a “,” (e.g. “5”, “2”, “2-10”, “1,3,5-8”) - issue#506get_hostname_type()
takes in an IP or hostname and returns an int representing the detected address type: 0 (none detected), 1 (IPv4), 2 (IPv6) - issue#212parse_duration()
takes in a duration string (in the form1w2d3h4m5s
, etc.) and returns the equiv. amount of seconds - issue#504
- The TLS/SSL setup bits in
IRCNetwork
were broken into multiple functions:_make_ssl_context()
,_setup_ssl
, and_verify_ssl()
- Removed deprecated attributes:
irc.botdata
,irc.conf
,utils.is*
methods,PyLinkNetworkCoreWithUtils.check_authenticated()
- issue#422 - PyLinkNCWUtils: The
allowAuthed
,allowOper
options inis_oper()
are now deprecated no-ops (they are set to False and True respectively)
PyLink 2.0-alpha3 (2018-05-10)
This release contains all changes from 1.3.0, as well as the following:
New features
- Experimental daemonization support via
pylink -d
. issue#187 - New (alpha-quality)
antispam
plugin targeting mass-highlight spam: it supports any combination of kick, ban, quiet (mute), and kill as punishment. issue#359 - Clientbot now supports expansions such as
$nick
in autoperform. - Relay now translates STATUSMSG messages (e.g.
@#channel
messages) for target networks instead of passing them on as-is. issue#570 - Relay endburst delay on InspIRCd networks is now configurable via
the
servers::NETNAME::relay_endburst_delay
option. - The servermaps plugin now shows the uplink server name for Clientbot links
- Added
--trace / -t
options to the launcher for integration with Python’strace
module.
Feature changes
- Reverted the commit making SIGHUP shutdown the PyLink daemon. Now, SIGUSR1 and SIGHUP both trigger a rehash, while SIGTERM triggers a shutdown.
- The
raw
command has been split into a new plugin (plugins/raw.py
) with two permissions:raw.raw
for Clientbot networks, andraw.raw.unsupported_network
for other protocols. Using raw commands outside Clientbot is not supported. issue#565 - The servermaps plugin now uses two permissions for
map
andlocalmap
:servermaps.map
andservermaps.localmap
respectively showuser
andshowchan
now consistently report times in UTC
Bug fixes
- protocols/clientbot: fix errors when connecting to networks with mixed-case server names (e.g. AfterNET)
- relay: fix KeyError when a local client is kicked from a claimed channel. issue#572
- Fix
irc.parse_modes()
incorrectly mangling modes changes like+b-b *!*@test.host *!*@test.host
into+b *!*@test.host
. issue#573 - automode: fix handling of channels with multiple #’s in them
- launcher: prevent protocol module loading errors (e.g. non-existent
protocol module) from blocking the setup of other networks.
- This fixes a side-effect which can cause relay to stop functioning
(
world.started
is never set)
- This fixes a side-effect which can cause relay to stop functioning
(
- relay_clientbot: fix
STATUSMSG
(@#channel
) notices from being relayed to channels that it shouldn’t - Fixed various 2.0-alpha2 regressions:
- Relay now relays service client messages as PRIVMSG and P10 WALL* commands as NOTICE
- protocols/inspircd: fix supported modules list being corrupted when an indirectly linked server shuts down. issue#567
- networks:
remote
now properly errors if the target service is not available on a network. issue#554 - commands: fix
showchan
displaying status prefixes in reverse - stats: route permission error replies to notice instead of PRIVMSG
- This prevents “Unknown command” flood loops with services which poll
/stats
on link.
- This prevents “Unknown command” flood loops with services which poll
- clientbot: fixed sending duplicate JOIN hooks and AWAY status updates. issue#551
Internal improvements
- Reading from sockets now uses select instead of one thread
per network.
- This new code uses the Python selectors module, which automatically
chooses the fastest polling backend available (
epoll|kqueue|devpoll > poll > select
).
- This new code uses the Python selectors module, which automatically
chooses the fastest polling backend available (
- API Break: significantly reworked channel handling for
service bots. issue#265
- The
ServiceBot.extra_channels
attribute in previous versions is replaced withServiceBot.dynamic_channels
, which is accessed indirectly via new functionsServiceBot.add_persistent_channel()
,ServiceBot.remove_persistent_channel()
,ServiceBot.get_persistent_channels()
. This API also replacesServiceBot.join()
for most plugins, which now joins channels non-persistently. - This API change provides plugins with a way of registering dynamic persistent channels, which are consistently rejoined on kick or kill.
- Persistent channels are also “dynamic” in the sense that PyLink service bots will now part channels marked persistent when they become empty, and rejoin when it is recreated.
- This new implementation is also plugin specific, as plugins must
provide a namespace (usually the plugin name) when managing persistent
channels using
ServiceBot.(add|remove)_persistent_channel()
. - New abstraction:
ServiceBot.get_persistent_channels()
which fetches the list of all persistent channels on a network (i.e. both the config defined channels and what’s registered indynamic_channels
). - New abstraction:
ServiceBot.part()
sends a part request to channels and only succeeds if it is not marked persistent by any plugin. This effectively works around the long-standing issue of relay-services conflicts. issue#265
- The
- Major optimizations to
irc.nick_to_uid
:PyLinkNetworkCore.users
andclasses.User
now transparently maintain an index mapping nicks to UIDs instead of doing reverse lookup on every call.- This is done via a new
UserMapping
class inpylinkirc.classes
, which stores User objects by UID and provides abynick
attribute mapping case-normalized nicks to lists of UIDs. classes.User.nick
is now a property, where the setter implicitly updates thebynick
index with a pre-computed case-normalized version of the nick (also stored toUser.lower_nick
)
- This is done via a new
- Various relay optimizations: reuse target SID when bursting joins,
and only look up nick once in
normalize_nick
- Rewritten CTCP plugin, now extending to all service bots. issue#468, issue#407
- Relay no longer spams configured U-lines with “message dropped because you aren’t in a common channel” errors
- The
endburst_delay
option tospawn_server()
was removed from the protocol spec, and replaced by a private API used by protocols/inspircd and relay. - New API: hook handlers can now filter messages from lower-priority
handlers by returning
False
. issue#547 - New API: added
irc.get_server_option()
to fetch server-specific config variables and global settings as a fallback. issue#574 - automode: replace assert checks with proper exceptions
- Renamed methods in log, utils, conf to snake case. issue#523
- Remove
structures.DeprecatedAttributesObject
; it’s vastly inefficient for what it accomplishes - clientbot: removed unreliable pre-/WHO join bursting with
userhost-in-names
- API change:
kick
andkill
command funcitons now raiseNotImplementedError
when not supported by a protocol - relay, utils: remove remaining references to deprecated
irc.proto
PyLink 2.0-alpha2 (2018-01-16)
This release includes all changes from 1.2.2-dev, plus the following:
New features
- relay_clientbot: add support for showing prefix modes in relay text,
via a new
$mode_prefix
expansion. issue#540 - Added new modedelta feature to Relay:
- Modedelta allows specifying a list of (named) modes to only apply on leaf channels, which can be helpful to fight spam if leaf networks don’t have adequate spam protection.
- relay: added new option
server::<networkname>:relay_forcetag_nicks
, a per-network list of nick globs to always tag when introducing users onto a network. issue#564 - Added support for more channel modes in Relay:
- blockcaps: inspircd +B, elemental-ircd +G
- exemptchanops: inspircd +X
- filter: inspircd +g, unreal extban ~T:block (issue#557)
- hidequits: nefarious +Q, snircd +u
- history: inspircd +H
- largebanlist: ts6 +L
- noamsg: snircd/nefarious +T
- blockhighlight: inspircd +V (extras module)
- kicknorejoin: elemental-ircd +J (issue#559)
- kicknorejoin_insp: inspircd +J (with argument; issue#559)
- repeat: elemental-ircd +E (issue#559)
- repeat_insp: inspircd +K (with argument; issue#559)
- Added support for UnrealIRCd extban
~T
in Relay. issue#557 - p10: added proper support for STATUSMSG notices (i.e. messages to
@#channel
and the like) via WALLCHOPS/WALLHOPS/WALLVOICES - p10: added outgoing /knock support by sending it as a notice
- ts6: added incoming /knock handling
- relay: added support for relaying /knock
Backwards incompatible changes
- The ratbox protocol module has been merged into
ts6, with a new
ircd: ratbox
option introduced to declare Ratbox as the target IRCd. issue#543
Bug fixes
- Fix default permissions not applying on startup (2.0-alpha1 regression). issue#542
- Fix rejoin-on-kill for the main PyLink bot not working (2.0-alpha1/94e05a6 regression).
- Clientbot fixes:
- Fix desyncs caused by incomplete nick collision checking when a user on a Clientbot link changes their nick to match an existing virtual client. issue#535
- Fix desync involving ghost users when a person leaves a channel, changes their nick, and rejoins. issue#536
- Treat 0 as “no account” when parsing WHOX responses; this fixes incorrect “X is logged in as 0” output on WHOIS.
- protocols/p10: fix the
use_hashed_cloaks
server option not being effective. - Fix long standing issues where relay would sometimes burst users
multiple times on connect. issue#529
- Also fix a regression from 2.0-alpha1 where users would not be joined if the hub link is down (issue#548)
- Fix
$a:account
extbans being dropped by relay (they were being confused with$a
). issue#560 - Fix corrupt arguments when mixing the
remote
andmode
commands. issue#538 - Fix lingering queue threads when networks disconnect. issue#558
- The relay and global plugins now better handle empty / poorly formed config blocks.
- bots: don’t allow
spawnclient
on protocol modules with virtual clients (e.g. clientbot) - bots: fix KeyError when trying to join previously nonexistent channels
Internal improvements
Channel.sort_prefixes()
now consistently sorts modes from highest to lowest (i.e. from owner to voice). Also removed workaround code added to deal with the wonkiness of this function.- ircs2s_common: add handling for
nick@servername
messages. IRCNetwork
should no longer send multiple disconnect hooks for one disconnection.- protocols/ts6 no longer requires
SAVE
support from the uplink. issue#545 - ts6, hybrid: miscellaneous cleanup
- protocols/inspircd now tracks module (un)loads for
m_chghost.so
and friends. issue#555 - Clientbot now logs failed attempts in joining channels. issue#533
PyLink 2.0-alpha1 (2017-10-07)
The “Eclectic” release. This release includes all changes from 1.2.1, plus the following:
New features
- Login blocks can now be limited by network, user hostname, and IRCop status: see the new “require_oper”, “hosts”, and “networks” options in the example config.
- Added support for ngIRCd, ChatIRCd, and beware-ircd
(via protocol modules
ngircd
,ts6
,p10
respectively) - Add support for extbans in protocols and relay:
this is supported on UnrealIRCd, Charybdis (and derivatives), InspIRCd,
and Nefarious P10.
- Yes, this means you can finally mute bothersome relay users.
- Clientbot is now more featureful:
- Added support for IRCv3 caps
account-notify
,account-tag
,away-notify
,chghost
,extended-join
, anduserhost-in-names
- Configurable alternate / fallback nicks are now supported: look for
the
pylink_altnicks
option in the example config. - Added support for WHOX, to complement IRCv3
account-notify
andaccount-tag
. - Relay_clientbot can now relay mode changes as text.
- Clientbot can now optionally sync ban lists when it joins a channel,
allowing Relay modesync to unset bans properly. See the
fetch_ban_lists
option in the example config.
- Added support for IRCv3 caps
- PyLink received a new launcher, which now checks for stale PID files
(when
psutil
is installed) and supports shutdown/restart/rehash via the command line. - New commands for the opercmds plugin, including:
chghost
,chgident
, andchgname
, for IRCds that don’t expose them as commands.massban
,masskill
,massbanre
, andmasskillre
- these commands allow setting kickbans, kills, or glines on users matching a PyLink mask (n!u@h
mask/exttarget) or regular expression. The hope is that these tools can help opers actively fight botnets as they are connected, similar to atheme’sclearchan
and Anope’schankill
commands.checkbanre
- a companion tocheckban
, using regex matching
- Better support for (pre-defined) U-lined services servers in relay:
CLAIM
restrictions are relaxed for service bots, which may now join with ops and set simple modes. This prevents mode floods when features such asDEFCON
are enabled, and when a channel is accidentally registered on a network not on the CLAIM list.DEFCON
modes set by services are ignored by Relay instead of bounced, and do not forward onto other networks unless the setting network is also in the channel’sCLAIM
list.- To keep the spirit of
CLAIM
alive, opped services not in a channel’sCLAIM
list are still not allowed to kick remote users, set prefix modes (e.g. op) on others, or set list modes such as bans.
- Service bots’ hostnames and real names are now fully configurable, globally and per network.
- Added per-network configuration of relay server suffixes.
- Added IRC
/STATS
support via thestats
plugin (/stats c
,u
, ando
are supported so far) - PyLink’s connection time is now displayed when WHOISing service
bots. This info can be turned off using the
pylink:whois_show_startup_time
option. - More specific permissions for the
remote
command, which now allows assigning permissions by target network, service bot, and command. - New
$service
exttarget which matches service bots by name.
Backwards incompatible changes
- Signal handling on Unix was updated to use
SIGUSR1
for rehash andSIGHUP
for shutdown - this changes PyLink to be more in line with foreground programs, which generally close with the owning terminal. - Some options were deprecated and renamed:
- The
p10_ircd
option for P10 servers is now namedircd
, though the old option will still be read from. - The
use_elemental_modes
setting on ts6 networks has been deprecated and replaced with anircd
option targeting charybdis, elemental-ircd, or chatircd. Supported values forircd
includecharybdis
,elemental
, andchatircd
.
- The
- PID file checking is now enabled by default, along with checks for
stale PID files only when
psutil
is installed. Users upgrading from PyLink < 1.1-dev withoutpsutil
installed will need remove PyLink’s PID files before starting the service. - The
fml
command in thegames
plugin was removed.
Bug fixes
- Relay should stop bursting channels multiple times on startup now.
(
initialize_channel
now skips execution if another thread is currently initializing the same channel) - Fixed a long standing bug where fantasy responses would relay before
a user’s original command if the
fantasy
plugin was loaded beforerelay
. (Bug #123)
Internal changes
- API Break: The protocol module layer is completely
rewritten, with the
Irc
andProtocol
-derived classes combining into one. Porting will be needed for old protocol modules and plugins targetting 1.x; see the new (WIP) protocol specification for details. - API Break: Channels are now stored in two linked
dictionaries per IRC object: once in
irc._channels
, and again inirc.channels
. The main difference is thatirc._channels
implicitly creates new channels when accessing them if they didn’t previously exist (prefer this for protocol modules), whileirc.channels
does not raises and raises KeyError instead (prefer this for plugins). - API Break: Most methods in
utils
andclasses
were renamed from camel case to snake case.log
,conf
, and others will be ported too before the final 2.0 release. - API Break: IRC protocol modules’ server
introductions must now use
post_connect()
instead ofconnect()
to prevent name collisions with the base connection handling code. - Channels are now stored case insensitively internally, so protocol modules and new plugins no longer need to manually coerse names to lowercase.
- Plugins can now bind hooks as specific priorities via an optional
priority
option inutils.add_hook
. Hooks with higher priorities will be called first; the default priority value us 500. - Commands can now be properly marked as aliases, so that duplicates
don’t show in the
list
command. - Added basic
GLINE/KLINE
support for most IRCds; work is ongoing to polish this off. - PyLink accounts are now implicitly matched: i.e.
user1
is now equivalent to$pylinkacc:user1
- Added complete support for “Network Administrator” and “Network Service” as oper types on IRCds using user modes to denote them (e.g. UnrealIRCd, charybdis).
- User and server hop counts are now tracked properly instead of being hardcoded as 1.
- protocols/p10 now bursts IPv6 IPs to supported uplinks.
- Fixed compatibility with ircd-hybrid trunk after commit 981c61e (EX and IE are no longer sent in the capability list)
PyLink 1.3.0 (2018-05-08)
The 1.3 update focuses on backporting some commonly requested and useful features from the WIP 2.0 branch. This release includes all changes from 1.3-beta1, plus the following:
- Errors due to missing permissions now log to warning. issue#593
- Documentation updates to advanced-relay-config.md and the FAQ
PyLink 1.3-beta1 (2018-04-07)
The 1.3 update focuses on backporting some commonly requested and useful features from the WIP 2.0 branch. This beta release includes all changes from 1.2.1, plus the following:
New features
- Backported the launcher from 2.0-alpha2:
- Added support for daemonization via the
--daemon/-d
option. issue#187 - Added support for shutdown/restart/rehash via the command line. issue#244
- The launcher now detects and removes stale PID files when
psutil
(an optional dependency) is installed, making restarting from crashes a more streamlined process. issue#512 - PID file checking is now enabled by default, with the
--check-pid/-c
option retained as a no-op option for compatibility with PyLink <= 1.2 - Following 2.0 changes, sending SIGUSR1 to the PyLink daemon now triggers a rehash (along with SIGHUP).
- Added support for daemonization via the
- Service bot idents, hosts, and realnames can now be configured globally and on a per-network basis. issue#281
- Relay server suffix is now configurable by network
(
servers::<netname>::relay_server_suffix
option). issue#462 - Login blocks can now be restricted to specific networks, opered users, and hostmasks. issue#502
- Relay now supports relaying more channel modes, including inspircd blockhighlight +V and exemptchanops +X (the whitelist was synced with 2.0-alpha3)
Bug fixes
- automode: fix errors when managing channels with multiple #’s in its name
- protocols/p10: fix the
use_hashed_cloaks
option not working correctly (it mistakenly read the value ofuse_account_cloaks
instead) - relay_clientbot: fix
@#channel
messages being relayed to channels other than the target - Fixed sporadic disconnect issues on
BlockingIOError
,ssl.SSLWantReadError
, andssl.SSLWantWriteError
- protocols/unreal: fix the wrong hook name being sent when receiving legacy (Unreal 3.2) user introductions
- global: ignore empty
global:
configuration blocks
Misc changes
- Config loading now uses
yaml.safe_load()
instead ofyaml.load()
so that arbitrary code cannot be executed. issue#589 - Significantly revised example-conf for wording and consistency.
- protocols/unreal: bumped protocol version to 4017 (no changes needed)
PyLink 1.2.1 (2017-09-19)
The “Dancer” release. Changes from 1.2.0:
Bug fixes
- unreal: fix TypeError when relaying prefix modes via
mode()
- Fix wrong database and PID filenames if the config file name includes a period (“.”)
- automode: don’t send empty mode lines if no users match the ACL
- networks: check in “remote” that the remote network is actually connected
- Fix commonly reported crashes on
logging:
config syntax errors (49136d5) - Backported fixes from 2.0-dev:
- p10: fix wrong hook name for user introduction
- clientbot: warn when an outgoing message is blocked (e.g. due to bans) (#497)
- ts6: fix setting real host of users to ‘None’ if it wasn’t given
Misc changes
- Removed incorrect descriptions regarding P10
extended_accounts
. Both X3 and atheme support extended accounts, and this needs to match your IRCd settings regardless. - Updated definitions in
channel/user-modes.csv
.
Internal improvements
- Backported improvements from 2.0-dev:
- Fix support for Hybrid 8.x trunk
- Minor logging cleanup for relay and
Irc.matchHost()
. - Fix cmode
+p
mapping on TS6 networks.
PyLink 1.2.0 (2017-08-14)
The “Dragons” release. Changes since 1.2.0-rc1:
Feature changes
- Make relay nick tagging configurable per-network; backported from 2.0-dev (#494)
Bug fixes
- Fix extraneous removal of PID files even when
-n/--no-check-pid
was set or if the PID file already existed on launch (PyLink would quit and delete the old PID file in these cases) - servprotect: bump default threshold up to 10 hits/10 seconds, as the old limit was too prone to false positives
- Fix extraneous queue threads not being stopped when a network
disconnects (
0d5afd2
) - Fix relay errors on disconnect due to race conditions in network
handling (
a0a295f
)
Misc changes
- Updated example config and FAQ.
For a summary of major changes since 1.1.x, see the changelog for 1.2.0-rc1.
PyLink 1.2.0-rc1
The “Droplet” release. Changes since 1.2-beta1:
Bug fixes
- relay: fix channel claim disabling
(i.e. “
CLAIM #channel -
” was broken since 1.2-alpha1) - IRCS2SProtocol: fix
UnboundLocalError
in “message coming from wrong way” error - ts6: fix parsing of the
INVITE
command’sts
argument - automode: fix formatting and examples in
setacc
help text - p10: fix rejoin-on-kick relaying by also acknowledging kicks sent from PyLink to its clients with a PART
Major changes since 1.1.x
- Added support for snircd, ircu, and other (generic) P10 variants.
The target IRCd can be chosen using the new server-specific
p10_ircd
option; see the example config for details (#330). - The
nefarious
protocol module was renamed top10
, as it is no longer Nefarious-specific. You should update your configuration to use the new name! - Certain configuration options were renamed /
deprecated:
- The
bot:
configuration block was renamed topylink:
, with the old name now deprecated. logging:stdout
is nowlogging:console
(the previous name was a misnomer since text actually went tostderr
).- The
bot:prefix
option is deprecated: you should instead define theprefixes
setting in a separate config block for each service you wish to customize (e.g. setautomode:prefix
andgames:prefix
)
- The
- Using new-style accounts exclusively (i.e. specifying things
under
login:accounts
) now requires apermissions:
block for PyLink to start (#413). - New
stats
(uptime info) andglobal
(global announcement) plugins. - Plugins and protocol modules can now be loaded from any directory,
using the new
plugin_dirs
andprotocol_dirs
options. (#350)- The
pylink-contribdl
utility was dropped as it is now it obsolete.
- The
- Relay message formatting became more flexible, and messages from
servers (e.g. spurious invite announcements) can now be dropped: look
for the
relay_weird_senders
andaccept_weird_senders
options. - Relay now forbids linking to channels where the home network is
down, which previously caused errors due to unreliable target TS (#419).
This, along with the regular TS check, can be overridden with a new
link --force
option. - The
remote
command now routes replies back to the caller network, and supports service bots that aren’t the main PyLink bot via a--service
option. - Service bot spawning can now be disabled via the global
spawn_services
and per-servicespawn_service
options; doing so will merge the relevant commands into the main PyLink bot. - Added a
pylink::show_unknown_commands
option to optionally disable “unknown command” errors. This option can also be overridden per-server and per-service (#441). - Added a
pylink::prefer_private_replies
option to default to private command replies (#409). - Relay can now announce to leaf channels when the home network
disconnects; see the
relay::disconnect_announcement
option (#421).
For a full list of changes since 1.1.x, consult the changelogs for the 1.2.x beta and alpha releases below.
PyLink 1.2-beta1
The “Dynamo” release. This release includes all fixes from 1.1.2, plus the following:
Feature changes
- Added configurable encoding support via the
encoding
option in server config blocks (#467). - Certain configuration options were renamed /
deprecated:
- The
bot:
configuration block was renamed topylink:
, with the old name now deprecated. logging:stdout
is nowlogging:console
(the previous name was a misnomer since text actually went tostderr
).- The
bot:prefix
option is deprecated: you should instead define theprefixes
setting in a separate config block for each service you wish to customize (e.g. setautomode:prefix
andgames:prefix
)
- The
- Added new
$and
and$network
exttargets - see the new exttargets documentation page for how to use them. - Hostmasks can now be negated in ban matching:
e.g.
!*!*@localhost
now works. Previously, this negation was limited to exttargets only. relay_clientbot
no longer colours network names by default. It is still possible to restore the old behaviour by defining custom clientbot styles.relay_clientbot
no longer uses dark blue as a random colour choice, as it is difficult to read on clients with dark backgrounds.
Bug fixes
- Fix service respawn on KILL not working at all - this was likely broken for a while but never noticed…
- Fix kick-on-rejoin not working on P10 IRCds when
joinmodes
is set. (a.k.a. acknowledge incoming KICKs with a PART per the P10 specification) - servprotect: only track kills and saves to PyLink clients, not all kills on a network!
- Fix
~#channel
prefix messages not working over relay on RFC1459-casemapping networks (#464). - Show errors when trying to use
showchan
on a secret channel in the same way as actually non-existent channels. Previously this error response forced replies as a private notice, potentially leaking the existence of secret/private channels. - example-conf: fix reversed description for the password encryption setting.
Internal changes
- Portions of the IRC/relay stack were refactored to prevent various hangs on shutdown.
- Performance improvements for outgoing message queuing: the queue system now blocks when no messages are in the queue instead of polling it multiple times a minute.
- Logging fixes: startup warnings (e.g. from config deprecations) now log to files as well as the console.
PyLink 1.2-alpha1
The “Darkness” release. This release includes all fixes from 1.1.2, plus the following summary of changes:
Feature changes
- Added support for snircd, ircu, and other (generic) P10
variants. The target IRCd can be chosen using the new
server-specific
p10_ircd
option; see the example config for details (#330). - The
nefarious
protocol module was renamed top10
- you should update your configuration to use the new name! - Plugins and protocol modules can now be loaded from any directory,
making pylink-contrib 20% more useful! Look for the
plugin_dirs
andprotocol_dirs
options in the example config. (#350)- The
pylink-contribdl
utility was dropped as this makes it obsolete.
- The
- Relay now forbids linking to channels where the home network is
down, which previously caused errors due to unreliable target TS (#419).
This, along with the regular TS check, can be overridden with a new
link --force
option. - SASL timeout for clientbot is now configurable, with the default raised to 15 seconds
- New-style accounts (i.e. anything under
login:accounts
) now require apermissions:
block for PyLink to start (#413). - New
stats
(uptime info) andglobal
(global announcement) plugins - Improvements to the
remote
command of thenetworks
plugin:- Plugin replies are now routed back to the sender’s network.
- Added an optional
--service
option to call commands for service bots other than the main PyLink service.
servprotect
KILL/SAVE limits and expiry time are now configurable (#417)- Added the
pylink::show_unknown_commands
option to optionally disable “unknown command” errors. This option can also be overridden per-server and per-service (#441). - Added the
pylink::prefer_private_replies
option to default to private command replies (#409) - Relay message formatting became more flexible, and messages from
user-less senders can now be dropped (
fa30d3c
c03f2d7
) - Added global and per-service
spawn_service(s)
options to optionally disable service bot spawning - The
bots
plugin now allows specifying channel prefixes (e.g.@+
) injoin
- exec: Added
iexec
,ieval
,peval
,pieval
:i
* commands run code in an isolated, persistent local scope, whilep
* commands evaluate expressions while pretty-printing the output - Relay: implement optional network disconnect announcements (see the
relay::disconnect_announcement
option; #421)
Bug fixes
- Service bots no longer throw errors when attempting to call empty commands via fantasy.
- Protocol modules now send PONG immediately instead of queuing it, which should prevent ping timeouts at times of very high activity.
Internal improvements
- Protocols now verify that incoming messages originate from the right direction (#405)
Irc.matchHost
now supports matching CIDR ranges (#411)- Added an
utils.IRCParser
class based offargparse
, for flexible argument parsing (#6). - Rewrote outgoing message queues to use
queue.Queue
(#430), and support a limit to the amount of queued lines (#442)- Also, added a
clearqueue
command to force clear the queue on a network.
- Also, added a
- PyLink protocol capabilities were introduced, reducing the amount of protocol name hardcoding in plugins (#337)
- Service bots no longer create stubs on Clientbot networks, and instead route replies through the main bot (#403)
- The default throttle time was halved from 0.01s to 0.005s.
- ServiceBot is now more flexible in help formatting, fixing indented lines and consecutive newlines not showing on IRC.
- Configuration validation no longer uses skippable asserts (#414)
- inspircd: better support for OPERTYPE on InspIRCd 3.x
- Clientbot now tracks channel modes and channel TS on join.
- Clientbot now generates PUIDs/PSIDs with the nick or server name as prefix, and checks to make sure incoming senders don’t clash with one.
- commands:
showchan
now shows TS on connections without thehas-ts
protocol capability as well, even though this value may be unreliable
Misc changes
- The
bot:
config block is renamed topylink:
. Existing configurations will still work, as thebot
andpylink
blocks are always merged together (#343). - Added better documentation for generic options available to all
service bots (
nick
,ident
,prefix
for fantasy, etc.) Irc.botdata
,Irc.conf
,Irc.checkAuthenticated()
have been deprecated: useconf.conf['pylink']
,conf.conf
, and the permissions API respectively instead!
PyLink 1.1.2
The “Calamari” release.
Bug fixes
- Multiple fixes for the
unreal
protocol module when using UnrealIRCd 3.2 links:fccec3a
Fix crashes on processing SJOIN when a user behind a 3.2 server has a nick starting with a symbol8465edd
Fix kicks to Unreal 3.2 users (PUIDs) not updating the internal state - this would’ve caused odd prefix mode desyncs if a user was kicked and rejoined.df4acbf
Fix prefix modes not being set on Unreal 3.2 users (affects Automode, etc.)
- Backported SASL fixes from 1.2-dev:
b14ea4f
Send CAP LS before NICK/USER so that we consistently get a SASL response before connect - this fixes SASL on networks like freenode, where connections can often complete before a SASL response from services is ever received.84448e9
22ceb3f
The above commit rewrites SASL to depend on a timely response from the server, so a configurable timeout for SASL/CAP is also introduced. (#424)
Feature changes
22ceb3f
Added thesasl_timeout
option for Clientbot networks (this defaults to 15 seconds if not set).
Internal improvements
- Backported stability improvements from 1.2-dev:
d70ca9f
Rewrite connection error handling to includeRuntimeError
andSystemExit
(#438)
PyLink 1.1.1
The “Crush” release. Changes from 1.1.0:
Bug fixes
- The
pylink-mkpasswd
program is actually installed now when usingpip
(PyPI) orsetup.py
. - Backported protocol module fixes from 1.2-dev:
- unreal: fix crashes when receiving
SJOIN
with only a prefix and no UID - inspircd: work around extraneous letters sent in
FJOIN
timestamps (Anope 1.8.x bug) - nefarious: fix a typo causing crashes on user mode changes
- unreal: fix crashes when receiving
- Relay: in
claim
, show a less ambiguous error when a relay channel doesn’t exist on the caller’s network. - corecommands: removed extraneous
irc.checkAuthenticated()
call
Feature changes
pylink-mkpasswd
now supports interactive password input via getpass, which is more secure than passing passwords raw on the command line.
Misc changes
- More prominent migration notes regarding permissions and new accounts system.
PyLink 1.1.0
The “Calico” release. This is mostly a cleanup and documentation update from 1.1-beta2, with the following additional change: - Made passlib an optional dependency (password hashing will be disabled if passlib isn’t installed), simplifying the upgrade process.
For a full list of changes since 1.0.x, see the release notes for the 1.1 alpha & beta series. Summary of major changes since 1.0.x:
- 🔐 Redone authentication
configuration, now supporting multiple
accounts, hashed passwords, and fine-tuned permissions.
- Old configurations using
login:user
andlogin:password
will still work, but are now deprecated. Consider migrating to the newlogin:
block in the example config. - This also adds a new optional dependency of passlib (https://passlib.readthedocs.io/en/stable/), which is required for the password hashing portion.
- Old configurations using
- Protocol modules now wrap long messages (SJOIN and MODE) to prevent
cutoff shenanigans from happening.
- This fixes a particularly nasty bug that can corrupt the TS on UnrealIRCd channels if a MODE command sets more than 12 modes at once (#393).
- Added utilities to download contrib modules
(
pylink-contribdl
) and hash passwords for the new accounts configuration (pylink-mkpasswd
). - Most plugins were ported to the permissions API.
- Clientbot now supports mode syncing, SASL (with optional reauth), and IRCv3 multi-prefix.
- Services bots now support setting modes on themselves on join: see “joinmodes” in the example conf
- Changehost gained a few new features, including optional (per network) vHost enforcement.
- Added a
bindhost
option in server blocks, for multi-homed hosts. - PID file checking was implemented - Run PyLink with the
--check-pid
argument in order to turn it on. - The
ts6
protocol module now supportsKICK
without arguments and legacyUID
introduction (for older servers / services). - Relay: added a
purge
command to remove all relays involving a network. - Added support for ircd-ratbox (
ratbox
protocol module). - Changing the console log level via REHASH now works.
- New
servermaps
plugin, displaying network/map
’s from the PyLink server’s perspective.
PyLink 1.1-beta2
The “Conscience” release. Changes from 1.1-beta1:
Bug fixes
- Protocol modules now wrap longer messages (SJOIN and MODE) to
prevent cutoff shenanigans from happening.
- This fixes a particularly nasty bug that can corrupt the TS on UnrealIRCd channels if a MODE command sets more than 12 modes at once (#393).
- Pong handling is a lot less strict now (it just makes sure the sender is the uplink). In other words, fix issues on UnrealIRCd where PONGs get ignored if the argument doesn’t match the server name exactly (e.g. different case).
- Clientbot protocol fixes:
- Fix SASL PLAIN auth on Python 3.4 (TypeError with bytes formatting
with
%b
). - Don’t repeat KICK hooks if the source is internal: this prevents KICK events from being relayed twice to Clientbot links, when the kicked user is also a Clientbot user.
- Clientbot now explicitly sends
/names
after join, to guarantee a response. - Fix message recognition treating nick prefixes without
ident@host
as servers (this polluted the state) - Fix prefix mode changes for unknown/missing users in
/who
causing KeyError crashes
- Fix SASL PLAIN auth on Python 3.4 (TypeError with bytes formatting
with
- ts6: fix setting mode
-k *
not working due to wrongly ordered logic (1.1-dev regression) - ts6: fix handling of KICK without a reason argument
- Automode: remove some repeated “Error:” text in error messages
IrcChannel
no longer assumes+nt
on new channels, as this is not necessarily correct
Feature changes
- Changing the console log level via REHASH is now supported.
- Added a bind host option for multi-homed hosts.
Internal improvements
- updateTS now ignores any broken TS values lower than 750000, instead of propagating them (e.g. over relay) and making the problem worse.
- The UnrealIRCd protocol module was updated to actually use extended SJOIN (SJ3). This should make bursts/startup more efficient, as modes, users, and bans are now sent together.
PyLink 1.1-beta1
The “Crunchy” release. This release includes all bug fixes from PyLink 1.0.4, along with the following:
Changes from 1.1-alpha1
Feature changes
- Most plugins were ported to use the permissions API, meaning
multiple accounts are actually useful now!
- Having a PyLink login with new style
accounts no longer implies access to everything on the
PyLink daemon. See the updated example conf regarding the new
permissions:
block. - Logins implying admin access is limited to old accounts ONLY (i.e. logins defined via login:user/password)
- The
commands
plugin now has permissions checks forecho
,showuser
,showchan
, andstatus
. The latter three are granted to all users (*!*@*
) by default, whileecho
is restricted.
- Having a PyLink login with new style
accounts no longer implies access to everything on the
PyLink daemon. See the updated example conf regarding the new
- Clientbot now supports IRCv3 SASL (with optional reauth!) and multi-prefix. See the example conf for details on the former (the latter is enabled automatically when available).
- PID file checking is now disabled by default for
better migration from 1.0.x. Run PyLink with
--check-pid
in order to turn it on. - commands: add a new
logout
command (#370) - The
list
command now supports optionally filtering commands by plugin.
Bug fixes
- The permission to use servermaps is now
servermaps.map
instead ofservermap.map
. - networks: fix the
remote
command to work with permissions (i.e. override the correct account name) - relay: add missing permissions check on the
linked
command
Internal fixes / improvements
- relay: rewrite host normalization to whitelist instead of blacklist characters. This should improve compatibility with IRCds as previously untested characters are introduced.
- relay_clientbot: faster colour hashing using built-in
hash()
instead of md5 - opercmds: removed the source argument from
kick
andkill
; it’s confusing and isn’t very useful
Misc. changes
- Documentation updates: add a permissions reference, document advanced relay config, etc.
PyLink 1.0.4
Tagged as 1.0.4 by jlu5
The “Bonfire” release.
Bug fixes
- protocols: implement basic nick collision detection in UID handlers. This fixes users potentially going missing on UnrealIRCd networks, if the remote IRCd introduces a user of the same nick after PyLink does. Thanks to kevin for reporting!
- relay: strip underscores (
_
) from hosts on ts6 and ratbox, fixing possible invalid user@host errors - Backported fixes from 1.1.x / devel:
- Demote “unknown user” warnings in mode handling to DEBUG, suppressing warnings when old services like Anope 1.8 set modes on users as they quit.
- Fix
irc.matchHost()
confusing therealhost
boolean to be the same asip
. - changehost: add missing permissions check to
applyhosts
; it now requires thechangehost.applyhost
permission.
Misc changes
- networks: update help for
disconnect
to reflect how it now always disables autoconnect.
PyLink 1.1-alpha1
The “Candescent” release.
Changes from 1.0.3
Feature changes
- Clientbot now supports optional mode syncing 🎉 See the example conf for how to configure it (look for “modesync”).
- PID file checking has been implemented and is turned on by default.
⚠️ When upgrading from 1.0.x, remove
pylink.pid
before starting! - Revamped login configuration system, which now supports
multiple accounts and hashed passwords
- ⚠️
login:user
andlogin:password
are now deprecated and may be removed in a future release. Consider migrating to the newlogin:
block in the example config. - Hashing new passwords can be done using the
mkpasswd
command via IRC, or the new command line utilitypylink-mkpasswd
.
- ⚠️
- Services bots now support setting modes on themselves on join: see “joinmodes” in the example conf
- Added a contrib module downloader
(
pylink-contribdl
) - Relay now uses the PyLink permission system. The following
permissions are now available:
- Granted to opers by default:
relay.create
relay.destroy
relay.claim
relay.link
relay.delink
relay.linkacl.view
relay.linkacl
- Granted to all users by default:
relay.linked
- And the following which is not explicitly granted:
relay.savedb
- Granted to opers by default:
- Relay: added a
purge
command to remove all relays involving a network - Automode now supports remote channel manipulation in the form
netname#channel
(#352) - protocols/ts6 now supports legacy UID introduction, for older servers / services
- Changehost gained a few new features (look for “changehost:” in the
example conf):
- Optional (per network) vHost enforcement: now you can create spoofs like freenode without using their IRCd!
- Enforcement exceptions for the feature above
- Options to enable/disable matching users by IP and real host
- New protocol support for
ircd-ratbox
, based offts6
- New servermaps plugin, displaying network
/map
’s from the PyLink server’s perspective. Relay links can be expanded as well to make this more detailed! - Oper status tracking is now a network-specific option, for better security. Look for “track_oper_statuses” in the example config.
- The PyLink launcher now sets the terminal title on launch (Windows & POSIX)
- relay: implement a complementary
showchan
command, showing a list of relay links
Bug fixes
- Relay is potentially less crashy when PyLink is split off while it tries to introduce users (#354).
- The
bots
plugin now allows JOIN/NICK/PART on all service bots - Relay: skip channel TS check for Clientbot (some users had this as a sporadic issue)
- Irc: explicitly kill connect loop threads after an Irc object has been removed. This fixes various freezing issues caused by ghosted connections after a network splits (#351).
- Relay: don’t error when removing a channel from a network that isn’t
connected. (AttributeError on
removeChannel()
ifirc.pseudoclient
isn’t set)
Internal fixes / improvements
- Server ID and service client name (if applicable) are now stored
inside
IrcUser
objects, removing the need for some expensive reverse lookups - Relay and Automode now use a centralized DataStore (backwards
compatible) in
structures
for their database implementation - Docstring rewrapping is now supported for neater, wrappable docstrings! (#307)
Irc.error()
was added for easier error replies; it is a simple wrapper aroundIrc.reply()
- Relay now uses locks in DB read/writes, for thread safety
- Most camel case functions in Relay were renamed to lowercase with underscores (PEP 8)
Misc. changes
- exec: Drop
raw
text logging to DEBUG to prevent information leakage (e.g. passwords on Clientbot) - Removed
update.sh
(my convenience script for locally building + running PyLink)
PyLink 1.0.3
Tagged as 1.0.3 by jlu5 on 2016-11-20T04:51:11Z
The “Buoyant” release.
Changes from 1.0.2
Bug fixes
- Fixed invalid database names such as “automode-/tmp/test.db” from being generated when PyLink is started with an absolute path to its config.
- Backported fixes from 1.1-dev:
- relay: skip channel TS checks for Clientbot, preventing possible “channel too old” errors on link.
Feature changes
- Backported features from 1.1-dev:
- Relay: allow configuring custom relay server suffixes
Misc. changes
- Various spelling/grammar fixes in the example config.
PyLink 1.0.2
Tagged as 1.0.2 by jlu5 on 2016-10-15T05:52:37Z
The “Baluga” release.
Changes from 1.0.1
Bug fixes
- Clientbot: Fixed nick collisions between virtual clients and real users (#327)
- Fix typo in example conf that caused
log::filerotation
to become an empty,None
-valued block. This in turn caused thelog
module to crash.
Feature changes
- Clientbot now uses a more specific realname fallback (“PyLink Relay Mirror Client”) instead of potentially misleading text such as “PyLink Service Client”. In the future, this text may be made configurable.
Internal fixes / improvements
- setup.py: reworded warnings if
git describe --tags
fails / fallback version is used. Also, the internal VCS version for non-Git builds is now-nogit
instead of-dirty
.
PyLink 1.0.1
Tagged as 1.0.1 by jlu5 on 2016-10-06T02:13:42Z
The “Beam” release.
Changes from 1.0.0
Bug fixes
- Fix PyLink being uninstallable via PyPI due to missing VERSION and README.md
- ts6: don’t crash when CHGHOST target is a nick instead of UID
- relay: clobber colour codes in hosts
- bots: allow JOIN/NICK/QUIT on ServiceBot clients
PyLink 1.0.0
Tagged as 1.0.0 by jlu5 on 2016-09-17T05:25:51Z
The “Benevolence” release.
Changes from 1.0-beta1
Bug fixes
- Clientbot now relays text sent from service bots.
- Fixed KeyErrors in Clientbot when receiving WHO replies for clients we don’t know – these are now ignored.
- Relay now skips mode type definitions when doing reverse mode
lookup. This fixes channel mode
+l
mever being relayed UnrealIRCd, because+l
happened to be the only supported type C mode. - protocols/nefarious: fix UnboundLocalError when no modes are given on user introduction
- fantasy: don’t error when bots are removed while processing a message (e.g. on shutdown)
Feature changes
- Automode now limits
listacc
to opers instead of all users (with default permissions settings).
Internal fixes / improvements
- Fixed incomplete hook payload keys from 1.0-beta1
(
oldchan
/chandata
->channeldata
) - services_support: hack away nick clashes between service clients & real users from Clientbot networks
- clientbot: downgrade bad updateClient() calls to warning
Misc. changes
- Documentation updates: Automode+permissions guide, README refresh, others.
- Example configuration changes:
- Automode’s bot nick now defaults to “Automode” instead of “ModeBot” for consistency.
- Added a debug log example because nobody knew how to turn it on
- Fix inverted option description for Relay’s
show_netsplits
option.
PyLink 1.0-beta1
Tagged as 1.0-beta1 by jlu5 on 2016-09-03T07:49:12Z
The “Badgers” release. Note: This is an beta build and may not be completely stable!
Changes from 0.10-alpha1
Bug fixes
- Fixes for the Clientbot protocol module:
- Fix
nick()
referring to the wrong variables (and thus not working at all) - Fix crashes caused by forced nick changes on connect
- Clientbot now only sends
CHGHOST/CHGIDENT/CHGNAME
hooks the field has actually changed
- Fix
- Automode now joins the Modebot client on
setacc
, if not already present
Feature changes
- Irc: implement basic message queueing (1 message sent per X seconds,
where X defaults to 0.01 for servers) .
- This appears to also workaround sporadic SSL errors causing disconnects (https://github.com/jlu5/PyLink/issues/246)
- relay: CLAIM is now more resistant to things like
/OJOIN
abuseSeriously people, show some respect for your linked networks ;). - core: New permissions system, used exclusively by Automode at this
time. See
example-permissions.yml
in the Git tree for configuration options. - relay_clientbot now optionally supports PMs with users linked via
Clientbot. This can be enabled via the
relay::allow_clientbot_pms
option, and provides the following behaviour:- Private messages and notices TO Clientbot users are forwarded from the Relay bot as NOTICE.
- Private messages can be sent FROM Clientbot users using the
rpm
command inrelay_clientbot
- The PyLink launcher now shows the full VCS version in
pylink -v
- Revert “relay_clientbot: always lowercase network name (stylistic choice)”
Internal fixes / improvements
- protocols/unreal: use umode
+xt
instead of blind/SETHOST
when spawning users - protocols/clientbot: handle numerics 463 (ERR_NOPERMFORHOST), 464 (ERR_PASSWDMISMATCH), and 465 (ERR_YOUREBANNEDCREEP) as fatal errors
- protocols: various fields in hook payloads are renamed for
consistency:
- The
chandata
field in SQUIT payloads is renamed tochanneldata
- The
oldchan
field in MODE payloads is renamed tochanneldata
- The
Irc.msg()
should no longer send empty text strings (which are technically illegal) in things like help strings.- Irc: make sending of loopback hooks in
msg()
optional - relay_clientbot: switch to
irc.msg()
for relayed text
Misc. changes
- Various to documentation update and installation instruction improvements.
PyLink 0.10-alpha1
Tagged as 0.10-alpha1 by jlu5 on 2016-08-22T00:04:34Z
The “Balloons” release. Note: This is an alpha build and may not be completely stable! This version includes all fixes from PyLink 0.9.2, with the following additions:
Changes from 0.9.2
Bug fixes
- Improved syncing between Automode and Relay on JOINs. In other words: fixed Automode sometimes setting modes on join before all of a target’s relay clones have joined corresponding relay channels on remote networks.
- protocols/inspircd now tracks required modules for vHost updating (CHGHOST/IDENT/NAME), instead of potentially sending unknown commands to the IRCd and causing a netsplit.
- changehost now explicitly forbids
$host
from being used in expansion fields, preventing vHosts from potentially being set in a loop wheneverapplyhosts
is called. eval
now formats empty strings correctly, instead of having no visible reply. In other words, it now wraps all output withrepr()
.- relay: fix reversed prefix mode order in bursts
(e.g.
+@~UID
instead of~@+UID
). Fortunately, this is minor detail; no noticeable adverse effects to IRCd linking was ever experienced.
Feature changes
- WIP Clientbot protocol module: allows PyLink to
connect as a bot to servers, for purposes such as relay.
- Some features such as flood protection, services account tracking, and IRCv3 support are still missing.
- For Clientbot relay support, remember to also load the
relay_clientbot
plugin!
- Added the ability to rotate logs at certain sizes, keeping X backups for reference.
- REHASH now updates file logging settings.
- Relay now allows configuring a list of nick globs to always tag
nicks (
forcetag_nicks:
block inrelay:
) - networks: new
reloadproto
command, allowing in-place reloading of protocol modules without restart. - Ctrl-C / KeyboardInterrupt now cleanly shuts down PyLink (in most cases).
- SSL cert file and key file are now optional.
- changehost: show more friendly errors when an expansion field is unavailable
- protocols/inspircd: add support for SAKICK, ALLTIME.
- protocols/ unreal: add support for TSCTL ALLTIME.
- Added support for
/time
requests.
Internal fixes / improvements
- Shutdown now cleanly quits the PyLink service bot instead of simply splitting off.
- PyLink now shows a better error if a protocol module chosen is missing.
- Config key validation is now protocol-specific.
- The
IrcUser.identified
attribute was renamed toIrcUser.account
. - exec: make
pylinkirc
andimportlib
accessible for easier debugging. - SQUIT hooks get a few more arguments, such as
nicks
(affected nicks) andserverdata
(old IrcServer object). - Retrieving the hostname used by the current PyLink instance is now a
shared function:
irc.hostname()
- Better handling of empty lines in command help - these are now sent
as a single space instead of passing invalid text like
:<UID> NOTICE <UID> :
to the IRCd (no text in the text parameter). - protocols/ts6: handle incoming ETB (extended topic burst) and EOPMOD
(partial support; op moderated +z messages are converted to forms like
@#channel
). - protocols/unreal: explicitly declare support for ESVID, or account name arguments in service stamps. Realistically this doesn’t seem to affect S2S traffic, but it is the correct thing to do.
Misc. changes
FakeIRC
andFakeProto
are removed (unused and not updated for 0.10 internal APIs)
PyLink 0.9.2
Tagged as 0.9.2 by jlu5 on 2016-08-21T23:59:23Z
The “Acorn” release.
Changes from 0.9.1
Bug fixes
- Relay now treats
{}
as valid characters in nicks. - Fixed services login tracking for older Anope services + UnrealIRCd. Previously, PyLink would incorrectly store login timestamps as the account name, instead of the user’s nick.
- Relay now normalizes
/
to.
in hostnames on IRCd-Hybrid. - Cloaked hosts for UnrealIRCd 3.2 users are now applied instead of the real host being visible.
PyLink 0.9.1
Tagged as 0.9.1 by jlu5 on 2016-08-07T03:05:01Z
Important, backwards incompatible changes for those upgrading from 0.8.x!
- The configuration file is now pylink.yml by default, instead of config.yml.
- PyLink now requires installing itself as a module, instead of simply
running from source. Do this via
python3 setup.py install --user
. - The
use_experimental_whois
option for InspIRCd servers and thespawn_servers
option in Relay have been removed, as they are now implied.
Changes from 0.9.0
Bug fixes
- Fixed various bugs in channel TS handling (this should reduce mode desyncs with relay).
- protocols/unreal: fixed services account support for older services (e.g. Anope < 2.0) that don’t explicitly use account names for logins (#296).
- Mode changes are no longer sorted alphabetically when relayed: sorting now only applies for displaying a list of modes, such as in WHOIS.
- Invalid autojoin channels are now ignored, instead of passing potentially invalid data to the IRCd.
Feature changes
setup.py
now explicitly forbids installing on Python 2 (#297).- The
nefarious
protocol module now forwards MODE and KICK through servers if the sender isn’t opped, preventing many mode bounces, kick failures, and HACK server notices.
Internal fixes / improvements
- protocols/hybrid,ts6,unreal: Casemapping-specific lowercasing is now consistently used for channel names
- Relay now catches errors on network removal and ignores them.
- Channels names are now case normalized when receiving
@#channel
messages.
Misc. changes
- Minor example configuration updates, including a mention of
passwordless UnrealIRCd links by setting recvpass and sendpass to
*
.
PyLink 0.9.0
Tagged as 0.9.0 by jlu5 on 2016-07-25T05:49:55Z
Important, backwards incompatible changes for those upgrading from 0.8.x!
- The configuration file is now pylink.yml by default, instead of config.yml.
- PyLink now requires installing itself as a module, instead of simply
running from source. Do this via
python3 setup.py install --user
. - The
use_experimental_whois
option for InspIRCd servers and thespawn_servers
option in Relay have been removed, as they are now implied.
Changes from 0.9-beta1
Added / changed / removed features
- PyLink is now slightly more descriptive if you try to start it with missing dependencies or a missing conf file.
- The PyLink API reference is now at https://pylink.github.io/ instead
of in
docs/technical
. - The
exec
andeval
commands now have access to thepylinkirc
andimportlib
imports by default. jupe
from theopercmds
plugin now requires the admin login instead of just oper.- opercmds:
kick
now treat channels case insensitively. - Documentation update: there are now guides to Automode and PyLink’s Services API.
Bug fixes
- Fixed the
reload
command (again). - Fixed compatibility with ircmatch 1.2: PyLink previously used features that were only available in the unreleased Git version.
- The
identify
command now responds with NOTICE instead of PM, behaving like any other command. Thanks to @Techman- for pointing this out. - The
identify
command must be called in private again. - Relay now shows secret channels in
linked
to those inside the channel, regardless of whether they’re opered. $channel:#channel:prefixmode
exttarget matching no longer raises errors if the target isn’t in the specified channel.
Internal improvements
- Redone version handling so
__init__.py
isn’t committed anymore. update.sh
now passes arguments to thepylink
launcher.
PyLink 0.9-beta1
Tagged as 0.9-beta1 by jlu5 on 2016-07-14T02:11:07Z
Important, backwards incompatible changes for those upgrading from 0.8.x
- The configuration file is now pylink.yml by default, instead of config.yml.
- PyLink now requires installing itself as a module, instead of simply
running from source. Do this via
python3 setup.py install --user
.
Changes from 0.9-alpha1
Added / changed / removed features
- The
use_experimental_whois
option for InspIRCd servers is removed, and is now implied. - New config option
bot: whois_show_extensions_to_bots
, which optionally disables extended WHOIS replies for users marked as a bot (+B).- This increases security when relay is enabled, for bots that look for services logins in WHOIS.
- Automode has new
clearacc
andsyncacc
commands, for clearing and syncing access lists respectively. - Relay now allows nick tagging to be turned off by default, via the
option
relay: tag_nicks
(#116)- This is experimental, and nick tagging is still enabled by default.
- Any attempts to KILL or SVSNICK a relay client are treated to force
tag a nick, so things like
/ns release
,/ns ghost
, and/ns regain
should work with network services.
- Automode now only sends one MODE command per sync, to prevent changes from flooding channels.
- Relay separators can now be configured globally
(
relay: separator
option), with server-specific overriding that value if given.
Bug fixes
- corecommands: fix
unload
failing to remove hooks and commands (0.9.x regression). - protocols/nefarious: only send EOB_ACK to the direct uplink, preventing stray “acknowledged end of net.burst” messages from showing up. Thanks to Speakz on Evilnet IRC for reporting.
- protocols/unreal: fix server name of the uplink server not being saved (#268)
- Channel prefixes are now sorted in WHOIS output (i.e. no more wrong
@~#channel
), and only the highest prefix shown - Fixed issues in internal channel mode tracking (
c1cd6f4
58d71b0
) - WHOIS requests to the PyLink server for clients that aren’t PyLink
bots now work (syntax:
/raw whois pylink.server somenick
). “No such nick” errors are also sent when the target is missing, instead of raising warnings.- These WHOIS responses were previously sent from the wrong source (the server that the client was on, instead of the PyLink server), causing them to be ignored if they were going the wrong way.
- Automode now treat channels case insensitively in
delacc
. ascii
andrfc1459
case mappings now treat Unicode case sensitively, in the same way an IRCd would.
Internal improvements
- Removed inaccurate references to signon time in WHOIS and elsewhere.
- Changes to user timestamps are now tracked on NICK and SAVE commands
- Relay now creates relay clones with the current time as nick TS,
instead of the origin user’s TS.
- This has the effect of purposely losing nick collisions against local users, so that it’s easier to reclaim nicks.
PyLink 0.9-alpha1
Tagged as 0.9-alpha1 by jlu5 on 2016-07-09T07:27:47Z
Summary of changes from 0.8.x
Backwards incompatible changes
- Configuration file is now pylink.yml by default, instead of config.yml.
- PyLink now requires installing itself as a module, instead of simply
running from source. Do this via
python3 setup.py install --user
.
Added / changed / removed features
- New
ctcp
plugin, handling CTCP VERSION and PING(and perhaps an easter egg?!) - New
automode
plugin, implementing basic channel ACL by assigning prefix modes like+o
to hostmasks and exttargets. - New exttarget support: see https://github.com/jlu5/PyLink/blob/0.9-alpha1/coremods/exttargets.py#L15 for a list of supported ones.
- Relay can now handle messages sent by users not in a target channel
(e.g. for channels marked
-n
) - Relay subserver spawning is now always on - the
spawn_servers
option is removed - Relay can now optionally show netsplits from remote networks, using
a
show_netsplits
option in therelay:
block - The
channels
configuration option inserver:
blocks is now optional, and defaults to no channels if not specified - The
maxnicklen
configuration option is also now optional, with a default value of 30 characters. --version
,--no-pid
, and--help
are now implemented by PyLink’s command line script- Test cases were dropped - they were broken and poorly maintained.
- CPUlimit wrapper scripts were removed.
- Service bots now allow plugins to define service descriptions and mark commands as featured when adding them.
- Command replies for services bots are now consolidated into core. In general, FANTASY commands now reply in channel as PRIVMSG, while all commands sent in PM reply as private notices.
- protocols/inspircd: new
use_experimental_whois
server option, which forces PyLink to handle WHOIS requests locally. This allows relay WHOIS extensions like account name and origin server name (whois_show_*
options) to actually work on InspIRCd networks. - PyLink can now optionally protect its services clients by setting
servprotect modes (InspIRCd umode
+k
,+S
elsewhere). The option for this isprotect_services
in thebot:
block. - The
networks
now deletes IRC objects whendisconnect
is used. To reconnect all disconnected networks, use therehash
command. - Relay now hides disconnected leaf networks from LINKED output.
Bug fixes
- Services bots will now ignore unhandled CTCP requests, instead of responding with “Unknown command”
- The
sid
field for TS6 servers now accepts unquoted numeric SIDs (integers) by normalize the SID to a string - protocols/nefarious: fix wrong variable in “/join 0” handling causing crashes
- The PyLink bot now rejoins relay channels when it is killed
- protocols/ts6: fix wrong args in TB handling
Internal improvements
coreplugin.py
is split intocoremods/
, with many different submodules for easier maintenance.- Rewritten channel TS handling to be more concise and reusable
- protocols/unreal: warn about mode bounces instead of fighting with the uplink
- protocols/ts6, protocols/nefarious: use protocol-specific ban bursting instead of sending a regular MODE
Irc.parseModes()
now handles strings given as the mode list properly, instead of only accepting a list of modestring argumentsSQUIT
handlers now return anuplink
field with the SID of the server that the target was split from- protocols/ts6: send 12 users (SJOIN) and 10 modes (TMODE) per line, instead of 10 and 9 respectively
- Relay is now slightly more careful when normalizing nicks: they can’t have invalid characters, start with a hyphen (-), etc.
- Modes are now sorted when joined. You’ll now see things like
+Hiow
instead of+wHoi
- protocols/inspircd: services clients with mode +k now have the “Network Service” oper type, in WHOIS replies and elsewhere
- SQUIT and KILL handling are moved into a protocols/ircs2s.py module, as the handling is basically the same on both TS6 and P10.
- protocols/nefarious,ts6,unreal: KILL handling (inbound & outbound) now supports kill paths and formats kill reasons properly
- protocols: encapsulated (ENCAP) commands are now implicitly
expanded, so protocol modules no longer need to bother with IF statement
chains in a
handle_encap()
PyLink 0.8-alpha4
Tagged as 0.8-alpha4 by jlu5 on 2016-06-30T18:56:42Z
Major changes in this snapshot release:
- SECURITY: Forbid SSLv2 and SSLv3 in SSL socket
creation (
0fbf9e1
) - Configurable nicks for services (per-net and global, #220, #229)
- Resolve server hostnames when connecting (#158).
- protocols/ts6: fix incorrect WHOIS syntax causing connection abort
(
6060a88
) - protocols/nefarious: fix bad
/join 0
handling causing connection abort (b1e138d
) - relay: forbid linking two channels on the same network
(
e47738c
) - protocols: various fixes for mode definitions, including missing
+i
handling on ts6 and unreal (26df48c
,3e19e9c
) - Consistent defaults to ping frequency and timeout (now 90 and 180 seconds respectively)
- Example conf: fix various typos (
0edb516
,cd4bf55
) and be more clear about link blocks only being examples - Various freezes and crash bugs fixed (
dd08c01
,1ad8b2e
,504a9be
,5f2da1c
)
Full diff: https://github.com/jlu5/PyLink/compare/0.8-alpha3…0.8-alpha4
PyLink 0.8-alpha3
Tagged as 0.8-alpha3 by jlu5 on 2016-06-01T02:58:49Z
- relay: support relaying a few more channel modes (flood, joinflood, freetarget, noforwards, and noinvite)
- Introduce a new (WIP) API to create simple service bots (#216).
- The main PyLink client now spawns itself with hideoper whenever
available, to avoid filling up
/lusers
and/stats P/p
. (#194) - The
fantasy
plugin now supports per-bot prefixes; see example conf for details. - Purge c_ and u_ prefixes from PyLink’s internal named modes definitions (#217).
- Various documentation updates.
- New
games
plugin, currently implementing eightball, dice, and fml. - Various fixes to the Nefarious protocol module (89ed92b46a4376abf69698b76955fec010a230b4…c82cc9d822ad46f441de3f2f820d5203b6e70516, #209, #210).
PyLink 0.8-alpha2
Tagged as 0.8-alpha2 by jlu5 on 2016-05-08T04:40:17Z
- protocols/nefarious: fix incorrect decoding of IPv6 addresses
(
0e0d96e
) - protocols/(hybrid|nefarious): add missing BURST/SJOIN->JOIN hook mappings, fixing problems with relay missing users after a netjoin
- protocols/unreal: fix JOIN handling storing channels with the wrong
case (
b78b911323
) - protocols/inspircd: fix wrong username being sent when formatting KILL text
- commands: Fix
loglevel
command being ineffective (#208) - relay: Fix various race conditions, especially when multiple networks happen to lose connection simultaneously
- API changes: many commands from
utils
were split into eitherIrc()
or a newstructures
module (#199)
PyLink 0.8-alpha1
Tagged as 0.8-alpha1 by jlu5 on 2016-04-23T03:14:21Z
- New protocol support: IRCd-Hybrid 8.x and Nefarious IRCu
- Track user IPs of UnrealIRCd 3.2 users (#196)
- SIGHUP now rehashes PyLink on supported platforms (#179)
- Improved mode support for Charybdis (#203)
- Fix disconnect logic during ping timeouts
PyLink 0.7.2-dev
Tagged as 0.7.2-dev by jlu5 on 2016-04-19T14:03:50Z
Bug fix release:
- Support mixed Unreal 3.2/4.0 networks (#193)
- More complete APIs for checking channel access (#168)
- New
servprotect
plugin for KILL/SAVE flood protection. This was split out of relay due to expiringdict not being installable via pip. - Documentation update (protocol module variables, mention new WHOIS, VERSION hooks)
- Minor fixes for Windows support. (#183)
- SIGTERM should now shut down the daemon cleanly. (#179)
8ee64d5ec1
readme: mention why expiringdict is broken in pip3528dfdba2a
pmodule-spec: mention cmodes, umodes, prefixmodes variablescb3187c5e9
ts6_common: do reverse nick lookup for KICK targets55afa1bff6
unreal: log instances of PUID manging to debug75984c3c4c
ts6_common: add abstraction to convert UIDs->outgoing nicks9f20f8f767
unreal: update SJOIN matching regex4157cb5671
ts6_common: use a better variable name for _getSid()e687bb0a78
unreal: remove outfilter hack, this doesn’t handle text including PUIDs properly0136ff2c3a
example conf: mention using spaces to indent86781d37ba
README: fix typo9fde35fd77
relay: handle server name conflicts more correctlyc01b449741
relay: treat network names case-sensitively02ec50826b
unreal: fix super() syntax in SQUIT handling16779aa5ce
classes: remove lower() call when storing netname6acfbb4125
unreal: case-desensitize legacy server names when handling user introductions from them62da384cae
README: unreal 3.2 mixed networks are supported now, sorta5d0f450c73
Merge branches ‘master’ and ‘devel’ into devel+unreal32956167538a
unreal: add warnings & more descriptive errors regarding mixed_linkf3ceefe87f
unreal: initialize legacy users on the right serverefd13d20ee
example-conf: add sample unreal block, documenting mixed_link44b102ffce
networks: allow all opers to run ‘autoconnect’13e97177e2
docs: Add a PyLink oper guidec4273e68a4
unreal: fix for Python 3.4 support4f08894227
unreal: typofix10be962318
unreal: actually return the hook data for NICK & KILL44dc856ffa
unreal: use an awful outFilter hack to convert PUIDs->nicks when sending outgoing commands74ee1ded4d
unreal: Start work on some really hacky Unreal 3.2 compat code (#193)3e7255e4b2
classes: remove ts6-specific hack in Protocol.removeClient514072804c
README: mention the implications of #193fd32bbf45f
unreal: fix typo in last commitefcc30c983
unreal: don’t confuse legacy SERVER introductions from our uplink with protocol negotiationfab404f8d6
Merge branches ‘master’ and ‘wip/relay-fixes’ into devel3a8b0aa123
relay: catch OSError too when loading DB1bcadbe12b
Use more flexible shebangs (/usr/bin/env python3)9e33081bc9
relay: fix typo in commentd21344342d
relay: experimental fix for #1838b7a9f6b45
Merge pull request #189 from DanielOaks/devel+ignore-envd287a22aec
gitignore: Ignore env folder for virtualenvs58519011b8
coreplugin: modularize shutdown routines, handle SIGTERM->shutdownb100f30cfe
fantasy: break if IRC object isn’t readycf363432f0
pylink: use abspath() to get the source directory662d1ce03f
inspircd: warn that inspircd 2.2 support is experimental4a0ee6f54c
relay: be more thread-safe via dict.copy()305db9f754
utils: also don’t crash in applyModes for bad mode targetse70dfb0811
Merge branch ‘master’ into devel08c3b99dfb
relay: fix ambiguous logging in KICK blocking4125ff33b1
pylink: prettier “Loaded plugins” log message on startd5d3c2422b
inspircd: define minimum & target protocol versions instead of hardcoding them70b9bde2c4
unreal: fix a little typoad517f80da
unreal: bump protocol version to 400019ac5b59a5
protocols: drop underscores from pre-defined opertypesc71d2bfcb9
coreplugin: sync opertype changes in handle_operup9278e56dd8
coreplugin: normalize WHOIS output format44083ccd5e
core: Store opertype info in all IrcUser objectsbdbc1020f2
Merge branch ‘master’ into develfbd8659a7d
classes: spawn PyLink clients with a custom opertypea91fa46549
Regenerate pydoc documentationc8a3514776
hooks-reference: add VERSION and WHOISf618b96b34
inspircd: add VERSION handling00552a41a7
Move detailed version string generation to utils23056e97e3
protocols & coreplugin: add handlers for VERSION requests45c2abdae7
Irc: run initVars() on connect tooaedb05608e
relay: actually, just kill handle_spawnmainb2b04c8e75
classes: really ignore errors when shutting down socketsce3d3cf697
relay: check to make sure network is ready before handling spawnmain0bb54d88e0
New servprotect plugin (anti-KILL/SAVE flood)9fe3373906
relay: get rid of kill/save protection75ec95b8d3
Merge branch ‘master’ into devel03b53aee59
Merge branch ‘staging’ into devele183078645
protocols: Remove “secret” testing channel name6962f3b73e
ts6: unset has_eob correctly on reconnectsc176c90bb6
coreplugin: use IrcChannel.getPrefixModes in whois repliesf5f0df52ce
classes: raise KeyError, not return KeyError…c86a02e044
relay: use IrcChannel.getPrefixModese948db5c7b
classes: support looking at older versions of prefix modes mappingsd84cfbcda1
utils: simplify prefix modes handling in applyModese8b0018585
classes: Implement IrcChannel.is(Voice|Halfop|Op)Plus (#168)ed333a6d1b
classes: implement IrcChannel.isOp, isVoice, getPrefixmodes, etc8135f3a735
core: Depluralize prefixmodes mappings (#168)1d4350c4fd
classes: provide IrcChannel objects with their own name using KeyedDefaultdict544d6e1041
utils: add KeyedDefaultdict
PyLink 0.7.1-dev
Tagged as 0.7.1-dev by jlu5 on 2016-03-31T01:42:41Z
Bugfix release. Lingering errata which you may still encounter: #183.
0fd093644c
utils: don’t crash when mode target is invalid1930739aad
Revert “Irc: don’t call initVars() on IRC object initialization”2b16f25b61
classes.Irc: clear state on disconnect, not on connecta4395ed989
log: respect child loggers’ levels if they are lower than the main one’s46922ce879
relay: remove dead networks’ servers from the servers index unconditionallyf2a21148e7
Irc: run initVars() on connect too9cd1635f68
unreal: fix wrong variable name in handle_umode22169a9be28
utils: actually abort when mode target is invalid
PyLink 0.7.0-dev
Tagged as 0.7.0-dev by jlu5 on 2016-03-21T19:09:12Z
Changes from 0.6.1-dev:
d12e70d5e5
ts6: unset has_eob correctly on reconnects5b2c9c593b
Add .mailmapabce18a5ba
log: split multi-line channel logs into multiple PRIVMSGsa8303d0110
commands: sort channel list in ‘showuser’ output0dd8b80a21
docs/t: use rawgit links to serve HTML506ae011a4
Update autogenerated docs (adding a script to do this now)d8e5202e5b
world: use a better module description2adb67d38e
runtests: remove .py extension, only run tests when ran as a scriptda7bd649d2
conf: fix testconf missing the logging: section557efc369f
docs/t: mark hooks-reference as finished in README9d0fcb5395
docs: finish off hooks-reference (#113)15b35f1853
ts6: support charybdis +T mode (closes #173)359bfcd9da
bots: map ‘msg’ command to ‘say’ toob6889fb097
irc: fix spacing in certificate fingerprint logging7f5bc52152
relay: fix errors in KILL handling when target isn’t in any relay channels3527960d18
coreplugin: tell plugins to exit cleanly before closing connections9b0db81068
changehost: modularize, add a command to apply cloaks now, match IPs too14388d932f
utils.getHostmask: add option to return IP address5fed4629a6
networks: remove networks with autoconnect off in ‘disconnect’8ac5436152
relay: allow admins to destroy channels hosted on other networks4df027cac4
coreplugin: ignore services’ attempts to send accountname before user introduction1ce2725f1e
bots: update help for ‘msg’ command (reflect changes made for #161)54dc51aed4
bots: make source client names optional (Closes #161)34ca973047
relay: cleanup, consistently include the function in log.debug callsa740163cbe
relay: implement DB exporting using threading.Timer, similar to classes.Irc.schedulePingd531201850
Merge branch ‘master’ into develae8f369f2e
relay: only show networks that are actually connected in LINKEDde1a9a7995
relay: various cleanupeec8e0dca4
log: attempt to remedy #164 (more testing needed)40d76c8bb6
coreplugin: demote successful oper-up messages to debugdf23b79780
commands: reformat ‘showuser’ output, and show services login info (#25)decdf141fd
unreal: don’t use updateClient to update hostname of clients internally2ebdb4bad6
unreal: support services account tracking (#25), fix handle_SVSMODE applying modes on the wrong targetcabdb11f86
inspircd: implement services account tracking (#25)0fff91edfd
ts6: implement services account tracking (#25)cf15bed58d
classes: add services_account field in IrcUser (#25), default ‘identified’ attribute to empty string instead of None584f952113
conf: check to make sure logging block exists in config5877031203
Merge branch ‘master’ into devel21167e8fb3
example conf: use 1 “#” without trailing space for commented-out options0d4655c381
core: support multiple channel loggers with DIFFERENT log levels & fix example conf (#83)669e889e6f
Support configurable SSL fingerprint hash types (Closes #157)08fd50d3d8
Logging improvements, including support for custom file targets (#83)de84a5b437
log: default level should be INFO, not DEBUGcf1de08457
commands: support rehashing channel loggers2503bd3ee5
commands: In rehash, use irc.disconnect() to disconnect networks removed from conf14efb27fe8
Initial experimental support for logging to channels (#83)4b939ea641
ts6: rewrite end-of-burst code (EOB is literally just a PING in ts6)5a68dc1bc5
Irc: don’t call initVars() on IRC object initialization
PyLink 0.6.1-dev
Tagged as 0.6.1-dev by jlu5 on 2016-03-02T05:15:22Z
- Bug fix release.
PyLink 0.6.0-dev
Tagged as 0.6.0-dev by jlu5 on 2016-01-23T18:24:10Z
Notable changes in this release:
- New “opercmds” plugin:
- This merges some functionality from the bots plugin, but also adds
new commands such as
jupe
,kill
,topic
, andcheckban
.
- This merges some functionality from the bots plugin, but also adds
new commands such as
- New “changehost” plugin - Automated configurable vHost setting on connect.
- Some core changes will break protocol modules and
plugins written for older PyLink versions:
- Some functions have been renamed:
utils.nickToUid(irc, nick)
->irc.nickToUid(nick)
utils.isInternalClient(irc, uid)
->irc.isInternalClient(uid)
utils.isInternalServer(irc, uid)
->irc.isInternalServer(uid)
utils.clientToServer(irc, uid)
->utils.getServer(uid)
utils.getProtoModule(...)
->utils.getProtocolModule(...)
- Protocol specification is rewritten, with “Client” and “Server” dropped from the suffix of most outgoing commands: see acdd7dbb782765f581…2fd0a8ae741a663d.
- Some functions have been renamed:
- exec plugin: add
inject
andraw
commands (4e7396b
). - exec plugin: support newline (and other) escapes in
exec
(375dbe8
). - protocols: allow changing remote users’ hosts in updateClient
(
741fed9
). - Speed up and clean up shutdown sequence, fixing hangs due to sockets not shutting down cleanly (#152).
- protocols/unreal: Support cloaking with user mode
+x
(#136). - Various bug fixes - see https://github.com/jlu5/PyLink/compare/0.5-dev…0.6.0-dev for a full diff.
PyLink 0.5-dev
Tagged as 0.5-dev by jlu5 on 2015-12-06T17:54:02Z
The “We’re getting somewhere…” release.
Changes
- Bug fixes, all the bug fixes.
Core
- Support IPv6 connections in config.
- The offending hook data is now logged whenever a hook function errors, for more convenient debugging.
- Add sanity checks for autoconnect - delay has to be at least 1 second now, to prevent connect floods that go on without any delay in between!
- Add
irc.reply()
to send command replies to callers in the right context (channel or PM). - More base commands are in
coreplugin
instead ofcommands.py
now, making the latter reloadable without restart. - Don’t crash when REHASH loads a config file that’s invalid.
- utils: Replace imp (deprecated) with importlib.
Plugins
- commands: Add a command to set log level (#124).
- commands: Update
irc.botdata
(bot:
data in config) in REHASH. - fantasy: Support nick prefixes (e.g.
PyLink: help
), along with a configurable prefix.
Protocols
- protocols/TS6: Fix SQUIT handling and introduction of SID-less
servers (i.e. atheme’s
/os JUPE
) (#119) - protocols/unreal: Add (experimental) support for UnrealIRCd 4.0.x!
- plugins: More complete INFO logging: plugin loading/unloading, unknown commands called, successful operups
Full diff:https://github.com/jlu5/PyLink/compare/0.4.6-dev…0.5-dev
PyLink 0.4.6-dev
Tagged as 0.4.6-dev by jlu5 on 2015-10-01T23:44:20Z
Bugfix release:
f20e677577
relay: fix PMs across the relay (7d919e6
regression)55d9eb240f
classes.Irc: prettier repr
PyLink 0.4.5-dev
Tagged as 0.4.5-dev by jlu5 on 2015-09-30T04:14:22Z
The “fancy stuff!” release.
New features including in-place config reloading (rehashing) (#89), FANTASY support (#111), and plugin (re/un)loading without a restart.
Full diff since 0.4.0-dev: https://github.com/jlu5/PyLink/compare/0.4.0-dev…0.4.5-dev
PyLink 0.3.50-dev
Tagged as 0.3.50-dev by jlu5 on 2015-09-19T18:28:24Z
Many updates to core, preparing for an (eventual) 0.4.x release. Commits:
63189e9
relay: look at the right prefix mode list when rejoining from KILLcb83db4
relay: don’t allow creating a channel that’s already part of a relay8faf86a
relay: rejoin killed users to the RIGHT channels2e0a5e5
utils.parseModes: fix IndexError on empty query1f95774
inspircd: add proper fallback value for OPERTYPE?d6cb9d4
Merge commit ‘320de2079a78202e99c7b6aeb53c28c13f43ba47’320de20
relay: add INVITE support (Closes #94)60dc3fe
relay: use “Channel delinked.” part message when delinking channels9a47ff8
Merge branch ‘master’ into develace0ddf
relay: use JOIN instead of SJOIN for non-burst joinsc2ee9ef
Merge branch ‘master’ into devel19fa31d
relay: fix incorrect logging in getSupportedUmodes()2f760c8
relay: Don’t send empty user mode changes4f40fae
relay: in logs, be a bit more specific why we’re blocking KILLs and KICKs0b590d6
relay/protocols: use utils.toLower() for channel names, respecting IRCd casemappings4525b81
relay.handle_kill: prevent yet another RuntimeError26e102f
Show oper types on WHOIS8d19057
relay: set umode +H (hideoper) on all remote opered clients5480ae1
classes: Remove “opertype” IrcUser() argument531ebbb
Merge branch ‘master’ into develf9b4457
Decorate relay clients, etc. with custom OPERTYPEs4a964b1
Merge branch ‘master’ into devel1062e47
classes.IrcChannel: default modes to +nt on joind270a18
Remove unused imports94f83eb
relay.showuser: show home network/nick, and relay nicks regardless of oper status5503477
commands: distinguish commands with multiple binds in ‘list’8976322
Replace admin.showuser with prettier whois-style cmds in ‘commands’ and ‘relay’e1e31f6
Allow multiple plugins to bind to one command name!afd6d8c
Refactor conf loading; skip the file-loading parts entirely for tests (#56)cda54c7
main: Fixb71e508
.a58bee7
Modularize tests using common classes, add our custom test runner (#56)549a1d1
classes: IrcServer.users is now a set()adb9ef1
classes: fixes for the test API973aba6
Move utils’ global variables to world.pyb71e508
classes.Irc no longer needs a conf argument; tweak tests againad5fc97
Many fixes to test API, utils.reverseModes stubab4cb4d
Merge branch ‘master’ into devel2fe9b62
Consistently capitalize errors and other messagesbc7765b
Let’s use consistent “Unknown command” errors, right?d059bd4
Move ‘exec’ command into its separate plugin3d621b0
Move checkAuthenticated() to utils, and give it and isOper() toggles for allowing oper/PyLink logins090fa85
Move Irc() from main.py to classes.py
PyLink 0.3.1-dev
Tagged as 0.3.1-dev by jlu5 on 2015-09-03T06:56:48Z
Bugfix release + LINKACL support for relay. Commits since 0.3.0-dev:
043fccf447
Fix previous commit (Closes #100)708d949164
relay: join remote users before sending ours8d44830d5c
relay.handle_kill: prevent yet another RuntimeError6d6606900e
relay: coerse “/” to “|” in nicks if “/” isn’t present in the separatorc8e7b72065
protocols: lowercase channel names in PRIVMSG handling37eecd7d69
pr/inspircd: use OPERTYPE to oper up clients correctly, and handle the metadata accordingly9f0f4cb124
relay: burst the right set of modes7620cd7433
pr/inspircd: fix compatibility with channel mode +q (~)3523f8f766
LINKACL support51389b96e2
relay: LINKACL command (Closes #88)
PyLink 0.2.5-dev
Tagged as 0.2.5-dev by jlu5 on 2015-08-16T05:39:34Z
See the diff for this development build: https://github.com/jlu5/PyLink/compare/0.2.3-dev…0.2.5-dev
PyLink 0.2.3-dev
Tagged as 0.2.3-dev by jlu5 on 2015-07-26T06:11:20Z
The “prevent PyLink from wrecking my server’s CPU” release.
Mostly bug fixes here, with a couple of scripts added
(start-cpulimit.sh
and kill.sh
) added to
assist running PyLink under the protection of CPUlimit. :)
New features
- relay: Block most duplicate modes from being relayed (#71)
- main: write a PID file to
pylink.pid
(f85fbd934b
) - ts6: support
+AOS
charybdis extension modes, warning if the IRCd doesn’t support them (146ab5e
)
Fixes
- relay: quit users who aren’t on any shared channels after KICK
(
71a3464
) - Use RFC1459 for case mapping on InspIRCd (
01220b3
) - relay: Fix handling of local
SAVE
(e4da670
) andKILL
(a4da9b5
) commands - relay: fix nick collision loop on
SAVE
+ when both tagged (i.e. _42XAAAAAA) and untagged (42XAAAAAA) versions of a UID nick exist (e354ada
) - relay: Fix command arguments of
DELINK
on home networks (c07cfb1
) - relay:
SJOIN
users once, and only once (#71,b681a67
) - main.Irc: catch
OSError
(bad file descriptor) errors and disconnect - ts6: add QS as a required capability (
69e16e5
) - ts6: fix
JOIN
handling andparse_as
key handling in hooks (ddefd38
) - relay: only wait for
irc.connected
once per network (4d7d7ce
)
Full diff: https://github.com/jlu5/PyLink/compare/0.2.2-dev…0.2.3-dev
PyLink 0.2.2-dev
Tagged as 0.2.2-dev by jlu5 on 2015-07-24T18:09:44Z
The “please don’t break again :(” release.
- Added
WHOIS
handling support for TS6 IRCds. - ts6: fix handling of
SID
,CHGHOST
, andSQUIT
commands. - Support noctcp (mode
+C
) on charybdis, and wallops (+w
) in relay. - Raised fallback ping frequency to 30
…And of course, lots and lots of bug fixes; I won’t bother to list them all.
Full diff: https://github.com/jlu5/PyLink/compare/0.2.0-dev…0.2.2-dev
PyLink 0.2.0-dev
Tagged as 0.2.0-dev by jlu5 on 2015-07-23T04:44:17Z
Many changes in this development release, including:
- New
ts6
protocol module, for charybdis 3.x. - relay: add nick collision handling via
SAVE
(#61). - relay: trivial tasks like
TOPIC
,MODE
,KICK
andPART
no longer spawn new clients for their senders, and are routed through the pseudoserver when applicable instead (e76d31d
c0f8259
). - Irc: be safer against
UnicodeDecodeError
caused bysocket.recv()
cutoff, by decoding each individual line instead (06d17d5
). - relay: make the
nick/net
separator a per-network config option. (ad34f6c
). - relay: Use a whitelist when it comes to relaying modes (#54), and
strip out bans that don’t match
nick!user@host
syntax (#55). - relay: Handle user mode changes (#64).
- Support different case mappings for nicknames (RFC1459 vs ASCII) (#75).
- inspircd: remove
RSQUIT
command handler (3494d4f
).
And of course, many, many bug fixes! (relay should now work properly with more than 2 networks, for example…)
Full diff: https://github.com/jlu5/PyLink/compare/0.1.6-dev…0.2.0-dev
PyLink 0.1.6-dev
Tagged as 0.1.6-dev by jlu5 on 2015-07-20T06:09:40Z
Bug fixes and improvements from 0.1.5-dev
- Irc.send: catch
AttributeError
whenself.socket
doesn’t exist; i.e. when initial connection fails (b627513
) - Log output to
log/pylink.log
, along with console (#52,61804b1
fbc2fbf
) - main/coreplugin: use
log.exception()
instead oftraceback.print_exc()
, so logs aren’t only printed to screen (536366d
) - relay: don’t relay messages sent to the PyLink client (
688675d
) - relay: add a
save
command, and make rescheduling optional inexportDB()
(c00da49
) - utils: add
getHostmask()
(1b09a00
) - various: Log command usage,
exec
usage, successful logins, and access denied errors inadmin.py
’s commands (57e9bf6
)
Full diff: https://github.com/jlu5/PyLink/compare/0.1.5-dev…0.1.6-dev
PyLink 0.1.5-dev
Tagged as 0.1.5-dev by jlu5 on 2015-07-18T20:01:39Z
New features
- Hooks for
CHGHOST
,CHGIDENT
, andCHGNAME
(f9d8215
35f1c88
) - IrcUser: Implement user channel tracking via an
IrcUser.channels
attribute (d97fce8
) - Send PING to our uplink periodically, and quit if we don’t get a
response (#42, #57)
- New server
pingfreq
option is introduced to set the time between PINGs.
- New server
- relay: Only spawn clients if they share a channel, and quit them
when they leave all shared channels (
cf32461
) - Support autoreconnecting to networks! A new
autoconnect
server setting is added to set autoconnect delay. - New
PYLINK_DISCONNECT
hook to keep track of network disconnections (3f6f78b
) - relay: add a
LINKED
command (#65,bbcd70b
) - commands: add a
HELP
command (#8,6508cb3
4553eda
)
Bug fixes
- relay: don’t spawn tagged clones for the internal PyLink client
(
40fd9e3
) - relay: don’t send empty
MODE
commands if there are no supported modes left after filtering (2a586a6
) - protocol/inspircd: don’t raise KeyError when removing channel from
user fails (
73c625a
) - relay: only join PyLink to channels & set topics if there’s
actually a relay on the network (
49943a7
) - relay: fix the wrong modes being propagated to the wrong channels on
LINK
(#53,ccf7596
) - relay: fix “RuntimeError: dictionary changed size during iteration”
in
handle_part
(d30890c
) - relay: Only allow messaging users in common channels / channels that
you’re in (#62,
024ac16
)
Misc. changes
- Move client/server spawning, hook calling, command handling, and
KILL/KICK detection outside the protocol module (
0aa2f98
fdea348
) - Fix fakeirc and tests for relay (#56,
a51cfcb
)
Removed features
- commands: remove
debug
command; it’s useless now thatexec
,showchan
, andshowuser
exist (50665ec
) - admin:
tell
command has been removed. Rationale: limited usefulness; doesn’t wrap long messages properly. (4553eda
)
You can view the full diff here: https://github.com/jlu5/PyLink/compare/0.1.0-dev…0.1.5-dev
PyLink 0.1.0-dev
Tagged as 0.1.0-dev by jlu5 on 2015-07-16T06:27:12Z
PyLink’s first pre-alpha development snapshot.
Working protocol modules: - InspIRCd 2.0.x -
inspircd
Working plugins: - admin
- hooks
-
commands
- relay