2015-12-26 23:45:28 +01:00
|
|
|
"""
|
|
|
|
inspircd.py: InspIRCd 2.x protocol module for PyLink.
|
|
|
|
"""
|
|
|
|
|
2015-03-20 00:21:49 +01:00
|
|
|
import time
|
2015-12-18 06:18:11 +01:00
|
|
|
import threading
|
2015-07-05 22:22:17 +02:00
|
|
|
|
2017-03-05 09:06:19 +01:00
|
|
|
from pylinkirc import utils, conf
|
2016-06-21 03:18:54 +02:00
|
|
|
from pylinkirc.classes import *
|
|
|
|
from pylinkirc.log import log
|
|
|
|
from pylinkirc.protocols.ts6_common import *
|
2015-09-06 03:00:57 +02:00
|
|
|
|
|
|
|
class InspIRCdProtocol(TS6BaseProtocol):
|
2017-06-25 10:12:22 +02:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
2017-03-16 07:58:51 +01:00
|
|
|
|
|
|
|
self.protocol_caps |= {'slash-in-nicks', 'slash-in-hosts', 'underscore-in-hosts'}
|
|
|
|
|
2015-09-25 03:36:54 +02:00
|
|
|
# Set our case mapping (rfc1459 maps "\" and "|" together, for example).
|
2015-09-06 03:00:57 +02:00
|
|
|
self.casemapping = 'rfc1459'
|
|
|
|
|
|
|
|
# Raw commands sent from servers vary from protocol to protocol. Here, we map
|
|
|
|
# non-standard names to our hook handlers, so command handlers' outputs
|
|
|
|
# are called with the right hooks.
|
|
|
|
self.hook_map = {'FJOIN': 'JOIN', 'RSQUIT': 'SQUIT', 'FMODE': 'MODE',
|
|
|
|
'FTOPIC': 'TOPIC', 'OPERTYPE': 'MODE', 'FHOST': 'CHGHOST',
|
2016-07-29 06:05:59 +02:00
|
|
|
'FIDENT': 'CHGIDENT', 'FNAME': 'CHGNAME', 'SVSTOPIC': 'TOPIC',
|
|
|
|
'SAKICK': 'KICK'}
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-03-27 00:23:22 +01:00
|
|
|
self.min_proto_ver = 1202
|
|
|
|
self.proto_ver = 1202
|
2016-03-27 03:19:19 +02:00
|
|
|
self.max_proto_ver = 1202 # Anything above should warn (not officially supported)
|
2016-03-27 00:23:22 +01:00
|
|
|
|
2016-01-18 06:02:30 +01:00
|
|
|
### Outgoing commands
|
|
|
|
|
2017-07-01 06:25:58 +02:00
|
|
|
def spawn_client(self, nick, ident='null', host='null', realhost=None, modes=set(),
|
2016-03-26 20:55:23 +01:00
|
|
|
server=None, ip='0.0.0.0', realname=None, ts=None, opertype='IRC Operator',
|
2015-09-18 04:01:54 +02:00
|
|
|
manipulatable=False):
|
2016-04-25 06:17:56 +02:00
|
|
|
"""
|
|
|
|
Spawns a new client with the given options.
|
2015-09-06 03:00:57 +02:00
|
|
|
|
|
|
|
Note: No nick collision / valid nickname checks are done here; it is
|
2016-04-25 06:17:56 +02:00
|
|
|
up to plugins to make sure they don't introduce anything invalid.
|
|
|
|
"""
|
2017-06-25 11:03:12 +02:00
|
|
|
server = server or self.sid
|
2016-04-25 06:16:41 +02:00
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
if not self.is_internal_server(server):
|
2016-01-10 02:44:05 +01:00
|
|
|
raise ValueError('Server %r is not a PyLink server!' % server)
|
2016-04-25 06:16:41 +02:00
|
|
|
|
|
|
|
uid = self.uidgen[server].next_uid()
|
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
ts = ts or int(time.time())
|
2017-03-05 09:06:19 +01:00
|
|
|
realname = realname or conf.conf['bot']['realname']
|
2015-09-06 03:00:57 +02:00
|
|
|
realhost = realhost or host
|
2017-06-30 07:56:14 +02:00
|
|
|
raw_modes = self.join_modes(modes)
|
2017-07-01 06:44:31 +02:00
|
|
|
u = self.users[uid] = User(nick, ts, uid, server, ident=ident, host=host, realname=realname,
|
2016-03-26 20:55:23 +01:00
|
|
|
realhost=realhost, ip=ip, manipulatable=manipulatable, opertype=opertype)
|
2016-04-25 06:16:41 +02:00
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
self.apply_modes(uid, modes)
|
2017-06-25 11:03:12 +02:00
|
|
|
self.servers[server].users.add(uid)
|
2016-04-25 06:16:41 +02:00
|
|
|
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(server, "UID {uid} {ts} {nick} {realhost} {host} {ident} {ip}"
|
2015-09-06 03:00:57 +02:00
|
|
|
" {ts} {modes} + :{realname}".format(ts=ts, host=host,
|
|
|
|
nick=nick, ident=ident, uid=uid,
|
|
|
|
modes=raw_modes, ip=ip, realname=realname,
|
|
|
|
realhost=realhost))
|
|
|
|
if ('o', None) in modes or ('+o', None) in modes:
|
2016-03-26 20:55:23 +01:00
|
|
|
self._operUp(uid, opertype)
|
2015-09-06 03:00:57 +02:00
|
|
|
return u
|
|
|
|
|
2016-01-17 01:36:45 +01:00
|
|
|
def join(self, client, channel):
|
2015-09-09 04:51:14 +02:00
|
|
|
"""Joins a PyLink client to a channel."""
|
2015-09-06 03:00:57 +02:00
|
|
|
# InspIRCd doesn't distinguish between burst joins and regular joins,
|
|
|
|
# so what we're actually doing here is sending FJOIN from the server,
|
|
|
|
# on behalf of the clients that are joining.
|
2017-06-30 07:56:14 +02:00
|
|
|
channel = self.to_lower(channel)
|
2016-11-10 03:55:13 +01:00
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
server = self.get_server(client)
|
|
|
|
if not self.is_internal_server(server):
|
2017-06-25 11:03:12 +02:00
|
|
|
log.error('(%s) Error trying to join %r to %r (no such client exists)', self.name, client, channel)
|
2016-01-10 02:44:05 +01:00
|
|
|
raise LookupError('No such PyLink client exists.')
|
2016-11-10 03:55:13 +01:00
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
# Strip out list-modes, they shouldn't be ever sent in FJOIN.
|
2017-06-25 11:03:12 +02:00
|
|
|
modes = [m for m in self.channels[channel].modes if m[0] not in self.cmodes['*A']]
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(server, "FJOIN {channel} {ts} {modes} :,{uid}".format(
|
2017-06-25 11:03:12 +02:00
|
|
|
ts=self.channels[channel].ts, uid=client, channel=channel,
|
2017-06-30 07:56:14 +02:00
|
|
|
modes=self.join_modes(modes)))
|
2017-06-25 11:03:12 +02:00
|
|
|
self.channels[channel].users.add(client)
|
|
|
|
self.users[client].channels.add(channel)
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-06-23 06:34:16 +02:00
|
|
|
def sjoin(self, server, channel, users, ts=None, modes=set()):
|
2015-09-06 03:00:57 +02:00
|
|
|
"""Sends an SJOIN for a group of users to a channel.
|
|
|
|
|
|
|
|
The sender should always be a Server ID (SID). TS is optional, and defaults
|
|
|
|
to the one we've stored in the channel state if not given.
|
|
|
|
<users> is a list of (prefix mode, UID) pairs:
|
|
|
|
|
|
|
|
Example uses:
|
2016-01-17 01:53:46 +01:00
|
|
|
sjoin('100', '#test', [('', '100AAABBC'), ('qo', 100AAABBB'), ('h', '100AAADDD')])
|
2017-06-25 11:03:12 +02:00
|
|
|
sjoin(self.sid, '#test', [('o', self.pseudoclient.uid)])
|
2015-09-06 03:00:57 +02:00
|
|
|
"""
|
2017-06-30 07:56:14 +02:00
|
|
|
channel = self.to_lower(channel)
|
2017-06-25 11:03:12 +02:00
|
|
|
server = server or self.sid
|
2016-01-17 01:53:46 +01:00
|
|
|
assert users, "sjoin: No users sent?"
|
2017-06-25 11:03:12 +02:00
|
|
|
log.debug('(%s) sjoin: got %r for users', self.name, users)
|
2016-06-23 06:34:16 +02:00
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
if not server:
|
2016-01-10 02:44:05 +01:00
|
|
|
raise LookupError('No such PyLink client exists.')
|
2015-11-08 19:49:09 +01:00
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
# Strip out list-modes, they shouldn't ever be sent in FJOIN (protocol rules).
|
2017-06-25 11:03:12 +02:00
|
|
|
modes = modes or self.channels[channel].modes
|
|
|
|
orig_ts = self.channels[channel].ts
|
2016-06-25 22:56:24 +02:00
|
|
|
ts = ts or orig_ts
|
2016-06-23 06:34:16 +02:00
|
|
|
|
|
|
|
banmodes = []
|
|
|
|
regularmodes = []
|
|
|
|
for mode in modes:
|
|
|
|
modechar = mode[0][-1]
|
2017-06-25 11:03:12 +02:00
|
|
|
if modechar in self.cmodes['*A']:
|
2016-06-24 07:33:14 +02:00
|
|
|
# Track bans separately (they are sent as a normal FMODE instead of in FJOIN.
|
|
|
|
# However, don't reset bans that have already been set.
|
2017-06-25 11:03:12 +02:00
|
|
|
if (modechar, mode[1]) not in self.channels[channel].modes:
|
2016-06-24 07:33:14 +02:00
|
|
|
banmodes.append(mode)
|
2016-06-23 06:34:16 +02:00
|
|
|
else:
|
|
|
|
regularmodes.append(mode)
|
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
uids = []
|
2016-06-23 06:34:16 +02:00
|
|
|
changedmodes = set(modes)
|
2015-09-06 03:00:57 +02:00
|
|
|
namelist = []
|
2016-06-23 06:34:16 +02:00
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
# We take <users> as a list of (prefixmodes, uid) pairs.
|
|
|
|
for userpair in users:
|
|
|
|
assert len(userpair) == 2, "Incorrect format of userpair: %r" % userpair
|
|
|
|
prefixes, user = userpair
|
|
|
|
namelist.append(','.join(userpair))
|
|
|
|
uids.append(user)
|
|
|
|
for m in prefixes:
|
2016-06-23 06:34:16 +02:00
|
|
|
changedmodes.add(('+%s' % m, user))
|
2015-09-06 03:00:57 +02:00
|
|
|
try:
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[user].channels.add(channel)
|
2015-09-06 03:00:57 +02:00
|
|
|
except KeyError: # Not initialized yet?
|
2017-06-25 11:03:12 +02:00
|
|
|
log.debug("(%s) sjoin: KeyError trying to add %r to %r's channel list?", self.name, channel, user)
|
2016-06-23 06:34:16 +02:00
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
namelist = ' '.join(namelist)
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(server, "FJOIN {channel} {ts} {modes} :{users}".format(
|
2015-09-06 03:00:57 +02:00
|
|
|
ts=ts, users=namelist, channel=channel,
|
2017-06-30 07:56:14 +02:00
|
|
|
modes=self.join_modes(modes)))
|
2017-06-25 11:03:12 +02:00
|
|
|
self.channels[channel].users.update(uids)
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-06-23 06:34:16 +02:00
|
|
|
if banmodes:
|
|
|
|
# Burst ban modes if there are any.
|
|
|
|
# <- :1ML FMODE #test 1461201525 +bb *!*@bad.user *!*@rly.bad.user
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(server, "FMODE {channel} {ts} {modes} ".format(
|
2017-06-30 07:56:14 +02:00
|
|
|
ts=ts, channel=channel, modes=self.join_modes(banmodes)))
|
2016-06-23 06:34:16 +02:00
|
|
|
|
2016-07-11 06:35:17 +02:00
|
|
|
self.updateTS(server, channel, ts, changedmodes)
|
2016-06-23 06:34:16 +02:00
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
def _operUp(self, target, opertype=None):
|
|
|
|
"""Opers a client up (internal function specific to InspIRCd).
|
|
|
|
|
|
|
|
This should be called whenever user mode +o is set on anyone, because
|
|
|
|
InspIRCd requires a special command (OPERTYPE) to be sent in order to
|
|
|
|
recognize ANY non-burst oper ups.
|
|
|
|
|
|
|
|
Plugins don't have to call this function themselves, but they can
|
2017-07-01 06:44:31 +02:00
|
|
|
set the opertype attribute of an User object (in self.users),
|
2015-09-06 03:00:57 +02:00
|
|
|
and the change will be reflected here."""
|
2017-06-25 11:03:12 +02:00
|
|
|
userobj = self.users[target]
|
2015-07-20 08:45:52 +02:00
|
|
|
try:
|
2015-09-20 20:25:45 +02:00
|
|
|
otype = opertype or userobj.opertype or 'IRC Operator'
|
2015-09-06 03:00:57 +02:00
|
|
|
except AttributeError:
|
|
|
|
log.debug('(%s) opertype field for %s (%s) isn\'t filled yet!',
|
2017-06-25 11:03:12 +02:00
|
|
|
self.name, target, userobj.nick)
|
2015-09-06 03:00:57 +02:00
|
|
|
# whatever, this is non-standard anyways.
|
2015-09-20 20:25:45 +02:00
|
|
|
otype = 'IRC Operator'
|
2015-09-15 01:55:35 +02:00
|
|
|
assert otype, "Tried to send an empty OPERTYPE!"
|
2015-09-06 03:00:57 +02:00
|
|
|
log.debug('(%s) Sending OPERTYPE from %s to oper them up.',
|
2017-06-25 11:03:12 +02:00
|
|
|
self.name, target)
|
2015-09-06 03:00:57 +02:00
|
|
|
userobj.opertype = otype
|
2017-02-18 23:28:28 +01:00
|
|
|
|
|
|
|
# InspIRCd 2.x uses _ in OPERTYPE to denote spaces, while InspIRCd 3.x does not. This is not
|
|
|
|
# backwards compatible: spaces in InspIRCd 2.x will cause the oper type to get cut off at
|
|
|
|
# the first word, while underscores in InspIRCd 3.x are shown literally as _.
|
|
|
|
# We can do the underscore fixing based on the version of our uplink:
|
|
|
|
if self.remote_proto_ver < 1205:
|
|
|
|
otype = otype.replace(" ", "_")
|
|
|
|
else:
|
|
|
|
otype = ':' + otype
|
|
|
|
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(target, 'OPERTYPE %s' % otype)
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-01-17 02:08:17 +01:00
|
|
|
def mode(self, numeric, target, modes, ts=None):
|
|
|
|
"""Sends mode changes from a PyLink client/server."""
|
2015-09-06 03:00:57 +02:00
|
|
|
# -> :9PYAAAAAA FMODE #pylink 1433653951 +os 9PYAAAAAA
|
|
|
|
# -> :9PYAAAAAA MODE 9PYAAAAAA -i+w
|
2016-01-17 02:08:17 +01:00
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
if (not self.is_internal_client(numeric)) and \
|
|
|
|
(not self.is_internal_server(numeric)):
|
2016-01-17 02:08:17 +01:00
|
|
|
raise LookupError('No such PyLink client/server exists.')
|
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
log.debug('(%s) inspircd._send_with_prefixModes: received %r for mode list', self.name, modes)
|
2015-09-06 03:00:57 +02:00
|
|
|
if ('+o', None) in modes and not utils.isChannel(target):
|
2015-12-18 06:19:40 +01:00
|
|
|
# https://github.com/inspircd/inspircd/blob/master/src/modules/m_spanningtree/opertype.cpp#L26-L28
|
2015-09-06 03:00:57 +02:00
|
|
|
# Servers need a special command to set umode +o on people.
|
|
|
|
self._operUp(target)
|
2017-06-30 07:56:14 +02:00
|
|
|
self.apply_modes(target, modes)
|
|
|
|
joinedmodes = self.join_modes(modes)
|
2015-09-06 03:00:57 +02:00
|
|
|
if utils.isChannel(target):
|
2017-06-30 07:56:14 +02:00
|
|
|
ts = ts or self.channels[self.to_lower(target)].ts
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(numeric, 'FMODE %s %s %s' % (target, ts, joinedmodes))
|
2015-09-06 03:00:57 +02:00
|
|
|
else:
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(numeric, 'MODE %s %s' % (target, joinedmodes))
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-01-17 02:03:22 +01:00
|
|
|
def kill(self, numeric, target, reason):
|
|
|
|
"""Sends a kill from a PyLink client/server."""
|
2017-06-30 07:56:14 +02:00
|
|
|
if (not self.is_internal_client(numeric)) and \
|
|
|
|
(not self.is_internal_server(numeric)):
|
2016-01-17 02:03:22 +01:00
|
|
|
raise LookupError('No such PyLink client/server exists.')
|
|
|
|
|
2016-02-26 06:11:42 +01:00
|
|
|
# InspIRCd will show the raw kill message sent from our server as the quit message.
|
|
|
|
# So, make the kill look actually like a kill instead of someone quitting with
|
|
|
|
# an arbitrary message.
|
2017-06-25 11:03:12 +02:00
|
|
|
if numeric in self.servers:
|
|
|
|
sourcenick = self.servers[numeric].name
|
2016-02-26 06:11:42 +01:00
|
|
|
else:
|
2017-06-25 11:03:12 +02:00
|
|
|
sourcenick = self.users[numeric].nick
|
2016-02-26 06:11:42 +01:00
|
|
|
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(numeric, 'KILL %s :Killed (%s (%s))' % (target, sourcenick, reason))
|
2016-01-17 02:03:22 +01:00
|
|
|
|
2017-06-28 01:21:30 +02:00
|
|
|
# We only need to call _remove_client here if the target is one of our
|
2015-10-09 05:12:52 +02:00
|
|
|
# clients, since any remote servers will send a QUIT from
|
|
|
|
# their target if the command succeeds.
|
2017-06-30 07:56:14 +02:00
|
|
|
if self.is_internal_client(target):
|
2017-06-28 01:21:30 +02:00
|
|
|
self._remove_client(target)
|
2015-10-09 05:12:52 +02:00
|
|
|
|
2017-07-01 06:29:11 +02:00
|
|
|
def topic_burst(self, numeric, target, text):
|
2015-09-25 03:36:54 +02:00
|
|
|
"""Sends a topic change from a PyLink server. This is usually used on burst."""
|
2017-06-30 07:56:14 +02:00
|
|
|
if not self.is_internal_server(numeric):
|
2016-01-10 02:44:05 +01:00
|
|
|
raise LookupError('No such PyLink server exists.')
|
2015-09-06 03:00:57 +02:00
|
|
|
ts = int(time.time())
|
2017-06-25 11:03:12 +02:00
|
|
|
servername = self.servers[numeric].name
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(numeric, 'FTOPIC %s %s %s :%s' % (target, ts, servername, text))
|
2017-06-25 11:03:12 +02:00
|
|
|
self.channels[target].topic = text
|
|
|
|
self.channels[target].topicset = True
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-01-17 01:38:27 +01:00
|
|
|
def invite(self, numeric, target, channel):
|
2015-09-06 03:00:57 +02:00
|
|
|
"""Sends an INVITE from a PyLink client.."""
|
2017-06-30 07:56:14 +02:00
|
|
|
if not self.is_internal_client(numeric):
|
2016-01-10 02:44:05 +01:00
|
|
|
raise LookupError('No such PyLink client exists.')
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(numeric, 'INVITE %s %s' % (target, channel))
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-01-17 01:41:17 +01:00
|
|
|
def knock(self, numeric, target, text):
|
2015-09-06 03:00:57 +02:00
|
|
|
"""Sends a KNOCK from a PyLink client."""
|
2017-06-30 07:56:14 +02:00
|
|
|
if not self.is_internal_client(numeric):
|
2016-01-10 02:44:05 +01:00
|
|
|
raise LookupError('No such PyLink client exists.')
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(numeric, 'ENCAP * KNOCK %s :%s' % (target, text))
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2017-07-01 06:29:38 +02:00
|
|
|
def update_client(self, target, field, text):
|
2015-12-31 00:54:09 +01:00
|
|
|
"""Updates the ident, host, or realname of any connected client."""
|
2015-09-06 03:00:57 +02:00
|
|
|
field = field.upper()
|
2015-12-31 00:54:09 +01:00
|
|
|
|
|
|
|
if field not in ('IDENT', 'HOST', 'REALNAME', 'GECOS'):
|
|
|
|
raise NotImplementedError("Changing field %r of a client is "
|
|
|
|
"unsupported by this protocol." % field)
|
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
if self.is_internal_client(target):
|
2015-12-31 00:54:09 +01:00
|
|
|
# It is one of our clients, use FIDENT/HOST/NAME.
|
|
|
|
if field == 'IDENT':
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[target].ident = text
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(target, 'FIDENT %s' % text)
|
2015-12-31 00:54:09 +01:00
|
|
|
elif field == 'HOST':
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[target].host = text
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(target, 'FHOST %s' % text)
|
2015-12-31 00:54:09 +01:00
|
|
|
elif field in ('REALNAME', 'GECOS'):
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[target].realname = text
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(target, 'FNAME :%s' % text)
|
2015-09-06 03:00:57 +02:00
|
|
|
else:
|
2015-12-31 00:54:09 +01:00
|
|
|
# It is a client on another server, use CHGIDENT/HOST/NAME.
|
|
|
|
if field == 'IDENT':
|
2016-08-09 08:40:48 +02:00
|
|
|
if 'm_chgident.so' not in self.modsupport:
|
2017-06-25 11:03:12 +02:00
|
|
|
log.warning('(%s) Failed to change ident of %s to %r: load m_chgident.so!', self.name, target, text)
|
2016-08-09 08:40:48 +02:00
|
|
|
return
|
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[target].ident = text
|
|
|
|
self._send_with_prefix(self.sid, 'CHGIDENT %s %s' % (target, text))
|
2015-12-31 00:54:09 +01:00
|
|
|
|
|
|
|
# Send hook payloads for other plugins to listen to.
|
2017-06-30 07:56:14 +02:00
|
|
|
self.call_hooks([self.sid, 'CHGIDENT',
|
2015-12-31 00:54:09 +01:00
|
|
|
{'target': target, 'newident': text}])
|
|
|
|
elif field == 'HOST':
|
2016-08-09 08:40:48 +02:00
|
|
|
if 'm_chghost.so' not in self.modsupport:
|
2017-06-25 11:03:12 +02:00
|
|
|
log.warning('(%s) Failed to change host of %s to %r: load m_chghost.so!', self.name, target, text)
|
2016-08-09 08:40:48 +02:00
|
|
|
return
|
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[target].host = text
|
|
|
|
self._send_with_prefix(self.sid, 'CHGHOST %s %s' % (target, text))
|
2015-12-31 00:54:09 +01:00
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
self.call_hooks([self.sid, 'CHGHOST',
|
2015-12-31 00:54:09 +01:00
|
|
|
{'target': target, 'newhost': text}])
|
|
|
|
|
|
|
|
elif field in ('REALNAME', 'GECOS'):
|
2016-08-09 08:40:48 +02:00
|
|
|
if 'm_chgname.so' not in self.modsupport:
|
2017-06-25 11:03:12 +02:00
|
|
|
log.warning('(%s) Failed to change real name of %s to %r: load m_chgname.so!', self.name, target, text)
|
2016-08-09 08:40:48 +02:00
|
|
|
return
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[target].realname = text
|
|
|
|
self._send_with_prefix(self.sid, 'CHGNAME %s :%s' % (target, text))
|
2015-12-31 00:54:09 +01:00
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
self.call_hooks([self.sid, 'CHGNAME',
|
2015-12-31 00:54:09 +01:00
|
|
|
{'target': target, 'newgecos': text}])
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-01-17 02:11:23 +01:00
|
|
|
def ping(self, source=None, target=None):
|
2015-09-06 03:00:57 +02:00
|
|
|
"""Sends a PING to a target server. Periodic PINGs are sent to our uplink
|
|
|
|
automatically by the Irc() internals; plugins shouldn't have to use this."""
|
2017-06-25 11:03:12 +02:00
|
|
|
source = source or self.sid
|
|
|
|
target = target or self.uplink
|
2015-09-06 03:00:57 +02:00
|
|
|
if not (target is None or source is None):
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(source, 'PING %s %s' % (source, target))
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-01-17 01:47:35 +01:00
|
|
|
def numeric(self, source, numeric, target, text):
|
2016-06-28 07:28:00 +02:00
|
|
|
"""Sends raw numerics from a server to a remote client."""
|
|
|
|
# InspIRCd 2.0 syntax (undocumented):
|
|
|
|
# Essentially what this does is push the raw numeric text after the first ":" towards the
|
|
|
|
# given user.
|
|
|
|
# <- :70M PUSH 0ALAAAAAA ::midnight.vpn 422 PyLink-devel :Message of the day file is missing.
|
|
|
|
|
|
|
|
# Note: InspIRCd 2.2 uses a new NUM command in this format:
|
|
|
|
# :<sid> NUM <numeric source sid> <target uuid> <3 digit number> <params>
|
|
|
|
# Take this into consideration if we ever target InspIRCd 2.2, even though m_spanningtree
|
|
|
|
# does provide backwards compatibility for commands like this. -GLolol
|
2017-06-25 11:03:12 +02:00
|
|
|
self._send_with_prefix(self.sid, 'PUSH %s ::%s %s %s %s' % (target, source, numeric, target, text))
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-01-17 01:40:36 +01:00
|
|
|
def away(self, source, text):
|
2015-09-06 03:00:57 +02:00
|
|
|
"""Sends an AWAY message from a PyLink client. <text> can be an empty string
|
|
|
|
to unset AWAY status."""
|
|
|
|
if text:
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(source, 'AWAY %s :%s' % (int(time.time()), text))
|
2015-09-06 03:00:57 +02:00
|
|
|
else:
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(source, 'AWAY')
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[source].away = text
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2017-07-01 06:27:02 +02:00
|
|
|
def spawn_server(self, name, sid=None, uplink=None, desc=None, endburst_delay=0):
|
2015-09-25 03:36:54 +02:00
|
|
|
"""
|
|
|
|
Spawns a server off a PyLink server. desc (server description)
|
|
|
|
defaults to the one in the config. uplink defaults to the main PyLink
|
|
|
|
server, and sid (the server ID) is automatically generated if not
|
|
|
|
given.
|
2015-12-18 06:18:11 +01:00
|
|
|
|
|
|
|
If endburst_delay is set greater than zero, the sending of ENDBURST
|
|
|
|
will be delayed by the amount given. This can be used to prevent
|
|
|
|
pseudoserver bursts from triggering IRCd join-flood preventions,
|
|
|
|
and prevent connections from filling up the snomasks too much.
|
2015-09-25 03:36:54 +02:00
|
|
|
"""
|
2015-09-06 03:00:57 +02:00
|
|
|
# -> :0AL SERVER test.server * 1 0AM :some silly pseudoserver
|
2017-06-25 11:03:12 +02:00
|
|
|
uplink = uplink or self.sid
|
2015-09-06 03:00:57 +02:00
|
|
|
name = name.lower()
|
|
|
|
# "desc" defaults to the configured server description.
|
2017-06-25 11:03:12 +02:00
|
|
|
desc = desc or self.serverdata.get('serverdesc') or conf.conf['bot']['serverdesc']
|
2015-09-06 03:00:57 +02:00
|
|
|
if sid is None: # No sid given; generate one!
|
2015-09-12 21:05:53 +02:00
|
|
|
sid = self.sidgen.next_sid()
|
2015-09-06 03:00:57 +02:00
|
|
|
assert len(sid) == 3, "Incorrect SID length"
|
2017-06-25 11:03:12 +02:00
|
|
|
if sid in self.servers:
|
2015-09-06 03:00:57 +02:00
|
|
|
raise ValueError('A server with SID %r already exists!' % sid)
|
2017-06-25 11:03:12 +02:00
|
|
|
for server in self.servers.values():
|
2015-09-06 03:00:57 +02:00
|
|
|
if name == server.name:
|
|
|
|
raise ValueError('A server named %r already exists!' % name)
|
2017-06-30 07:56:14 +02:00
|
|
|
if not self.is_internal_server(uplink):
|
2016-01-10 02:44:05 +01:00
|
|
|
raise ValueError('Server %r is not a PyLink server!' % uplink)
|
2015-09-06 03:00:57 +02:00
|
|
|
if not utils.isServerName(name):
|
|
|
|
raise ValueError('Invalid server name %r' % name)
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(uplink, 'SERVER %s * 1 %s :%s' % (name, sid, desc))
|
2017-07-01 06:45:10 +02:00
|
|
|
self.servers[sid] = Server(uplink, name, internal=True, desc=desc)
|
2015-12-18 06:18:11 +01:00
|
|
|
|
2017-05-07 22:56:55 +02:00
|
|
|
def endburstf():
|
2015-12-18 06:18:11 +01:00
|
|
|
# Delay ENDBURST by X seconds if requested.
|
2017-06-25 11:03:12 +02:00
|
|
|
if self.aborted.wait(endburst_delay):
|
2017-05-07 22:56:55 +02:00
|
|
|
# We managed to catch the abort flag before sending ENDBURST, so break
|
2017-06-25 11:03:12 +02:00
|
|
|
log.debug('(%s) stopping endburstf() for %s as aborted was set', self.name, sid)
|
2017-05-07 22:56:55 +02:00
|
|
|
return
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(sid, 'ENDBURST')
|
2017-05-07 22:56:55 +02:00
|
|
|
|
|
|
|
if endburst_delay:
|
|
|
|
threading.Thread(target=endburstf).start()
|
2015-12-18 06:18:11 +01:00
|
|
|
else: # Else, send burst immediately
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(sid, 'ENDBURST')
|
2015-09-06 03:00:57 +02:00
|
|
|
return sid
|
|
|
|
|
2016-01-17 01:53:06 +01:00
|
|
|
def squit(self, source, target, text='No reason given'):
|
2015-09-06 03:00:57 +02:00
|
|
|
"""SQUITs a PyLink server."""
|
|
|
|
# -> :9PY SQUIT 9PZ :blah, blah
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(source, 'SQUIT %s :%s' % (target, text))
|
2015-09-06 03:00:57 +02:00
|
|
|
self.handle_squit(source, 'SQUIT', [target, text])
|
|
|
|
|
2016-01-18 06:02:30 +01:00
|
|
|
### Core / command handlers
|
|
|
|
|
2017-06-25 10:12:22 +02:00
|
|
|
def post_connect(self):
|
2015-09-06 03:00:57 +02:00
|
|
|
"""Initializes a connection to a server."""
|
2017-06-25 11:03:12 +02:00
|
|
|
ts = self.start_ts
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-08-09 08:40:48 +02:00
|
|
|
# Track the modules supported by the uplink.
|
|
|
|
self.modsupport = []
|
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
f = self.send
|
2016-03-27 00:23:22 +01:00
|
|
|
f('CAPAB START %s' % self.proto_ver)
|
|
|
|
f('CAPAB CAPABILITIES :PROTOCOL=%s' % self.proto_ver)
|
2015-09-06 03:00:57 +02:00
|
|
|
f('CAPAB END')
|
2016-03-26 19:35:29 +01:00
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
host = self.serverdata["hostname"]
|
2016-03-26 19:35:29 +01:00
|
|
|
f('SERVER {host} {Pass} 0 {sid} :{sdesc}'.format(host=host,
|
2017-06-25 11:03:12 +02:00
|
|
|
Pass=self.serverdata["sendpass"], sid=self.sid,
|
|
|
|
sdesc=self.serverdata.get('serverdesc') or conf.conf['bot']['serverdesc']))
|
2016-03-26 19:35:29 +01:00
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
self._send_with_prefix(self.sid, 'BURST %s' % ts)
|
2016-03-26 19:35:29 +01:00
|
|
|
# InspIRCd sends VERSION data on link, instead of whenever requested by a client.
|
2017-06-25 11:03:12 +02:00
|
|
|
self._send_with_prefix(self.sid, 'VERSION :%s' % self.version())
|
|
|
|
self._send_with_prefix(self.sid, 'ENDBURST')
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-01-18 06:02:30 +01:00
|
|
|
def handle_capab(self, source, command, args):
|
|
|
|
"""
|
|
|
|
Handles the CAPAB command, used for capability negotiation with our
|
|
|
|
uplink.
|
|
|
|
"""
|
|
|
|
# 6 CAPAB commands are usually sent on connect: CAPAB START, MODULES,
|
|
|
|
# MODSUPPORT, CHANMODES, USERMODES, and CAPABILITIES.
|
2016-08-09 08:40:48 +02:00
|
|
|
# The only ones of interest to us are CHANMODES, USERMODES,
|
|
|
|
# CAPABILITIES, and MODSUPPORT.
|
2016-01-18 06:02:30 +01:00
|
|
|
|
|
|
|
if args[0] == 'CHANMODES':
|
|
|
|
# <- CAPAB CHANMODES :admin=&a allowinvite=A autoop=w ban=b
|
|
|
|
# banexception=e blockcolor=c c_registered=r exemptchanops=X
|
|
|
|
# filter=g flood=f halfop=%h history=H invex=I inviteonly=i
|
|
|
|
# joinflood=j key=k kicknorejoin=J limit=l moderated=m nickflood=F
|
|
|
|
# noctcp=C noextmsg=n nokick=Q noknock=K nonick=N nonotice=T
|
|
|
|
# official-join=!Y op=@o operonly=O opmoderated=U owner=~q
|
|
|
|
# permanent=P private=p redirect=L reginvite=R regmoderated=M
|
|
|
|
# secret=s sslonly=z stripcolor=S topiclock=t voice=+v
|
|
|
|
|
|
|
|
# Named modes are essential for a cross-protocol IRC service. We
|
|
|
|
# can use InspIRCd as a model here and assign a similar mode map to
|
|
|
|
# our cmodes list.
|
|
|
|
for modepair in args[-1].split():
|
|
|
|
name, char = modepair.split('=')
|
|
|
|
|
2016-05-15 20:05:02 +02:00
|
|
|
# Strip c_ prefixes to be consistent with other protocols.
|
|
|
|
name = name.lstrip('c_')
|
|
|
|
|
2016-01-18 06:02:30 +01:00
|
|
|
if name == 'reginvite': # Reginvite? That's a dumb name.
|
|
|
|
name = 'regonly'
|
|
|
|
|
|
|
|
if name == 'founder': # Channel mode +q
|
|
|
|
# Founder, owner; same thing. m_customprefix allows you to
|
|
|
|
# name it anything you like. The former is config default,
|
|
|
|
# but I personally prefer the latter.
|
|
|
|
name = 'owner'
|
2016-04-25 06:08:07 +02:00
|
|
|
|
2016-04-10 03:25:17 +02:00
|
|
|
# We don't care about mode prefixes; just the mode char.
|
2017-06-25 11:03:12 +02:00
|
|
|
self.cmodes[name] = char[-1]
|
2016-01-18 06:02:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
elif args[0] == 'USERMODES':
|
|
|
|
# <- CAPAB USERMODES :bot=B callerid=g cloak=x deaf_commonchan=c
|
|
|
|
# helpop=h hidechans=I hideoper=H invisible=i oper=o regdeaf=R
|
|
|
|
# servprotect=k showwhois=W snomask=s u_registered=r u_stripcolor=S
|
|
|
|
# wallops=w
|
|
|
|
|
|
|
|
# Ditto above.
|
|
|
|
for modepair in args[-1].split():
|
|
|
|
name, char = modepair.split('=')
|
2016-05-15 20:05:02 +02:00
|
|
|
# Strip u_ prefixes to be consistent with other protocols.
|
|
|
|
name = name.lstrip('u_')
|
2017-06-25 11:03:12 +02:00
|
|
|
self.umodes[name] = char
|
2016-01-18 06:02:30 +01:00
|
|
|
|
|
|
|
elif args[0] == 'CAPABILITIES':
|
|
|
|
# <- CAPAB CAPABILITIES :NICKMAX=21 CHANMAX=64 MAXMODES=20
|
|
|
|
# IDENTMAX=11 MAXQUIT=255 MAXTOPIC=307 MAXKICK=255 MAXGECOS=128
|
|
|
|
# MAXAWAY=200 IP6SUPPORT=1 PROTOCOL=1202 PREFIX=(Yqaohv)!~&@%+
|
|
|
|
# CHANMODES=IXbegw,k,FHJLfjl,ACKMNOPQRSTUcimnprstz
|
|
|
|
# USERMODES=,,s,BHIRSWcghikorwx GLOBOPS=1 SVSPART=1
|
|
|
|
|
|
|
|
# First, turn the arguments into a dict
|
2017-06-28 02:15:27 +02:00
|
|
|
caps = self.parse_isupport(args[-1])
|
2017-06-25 11:03:12 +02:00
|
|
|
log.debug("(%s) capabilities list: %s", self.name, caps)
|
2016-01-18 06:02:30 +01:00
|
|
|
|
|
|
|
# Check the protocol version
|
2017-02-18 23:28:28 +01:00
|
|
|
self.remote_proto_ver = protocol_version = int(caps['PROTOCOL'])
|
2016-07-21 08:47:31 +02:00
|
|
|
|
2016-03-27 00:23:22 +01:00
|
|
|
if protocol_version < self.min_proto_ver:
|
2016-01-18 06:02:30 +01:00
|
|
|
raise ProtocolError("Remote protocol version is too old! "
|
2016-03-27 00:23:22 +01:00
|
|
|
"At least %s (InspIRCd 2.0.x) is "
|
|
|
|
"needed. (got %s)" % (self.min_proto_ver,
|
|
|
|
protocol_version))
|
2016-03-27 03:19:19 +02:00
|
|
|
elif protocol_version > self.max_proto_ver:
|
|
|
|
log.warning("(%s) PyLink support for InspIRCd 2.2+ is experimental, "
|
2017-02-18 23:45:23 +01:00
|
|
|
"and should not be relied upon for anything important.",
|
2017-06-25 11:03:12 +02:00
|
|
|
self.name)
|
2016-01-18 06:02:30 +01:00
|
|
|
|
|
|
|
# Store the max nick and channel lengths
|
2017-06-25 11:03:12 +02:00
|
|
|
self.maxnicklen = int(caps['NICKMAX'])
|
|
|
|
self.maxchanlen = int(caps['CHANMAX'])
|
2016-01-18 06:02:30 +01:00
|
|
|
|
|
|
|
# Modes are divided into A, B, C, and D classes
|
|
|
|
# See http://www.irc.org/tech_docs/005.html
|
|
|
|
|
|
|
|
# FIXME: Find a neater way to assign/store this.
|
2017-06-25 11:03:12 +02:00
|
|
|
self.cmodes['*A'], self.cmodes['*B'], self.cmodes['*C'], self.cmodes['*D'] \
|
2016-01-18 06:02:30 +01:00
|
|
|
= caps['CHANMODES'].split(',')
|
2017-06-25 11:03:12 +02:00
|
|
|
self.umodes['*A'], self.umodes['*B'], self.umodes['*C'], self.umodes['*D'] \
|
2016-01-18 06:02:30 +01:00
|
|
|
= caps['USERMODES'].split(',')
|
|
|
|
|
|
|
|
# Separate the prefixes field (e.g. "(Yqaohv)!~&@%+") into a
|
|
|
|
# dict mapping mode characters to mode prefixes.
|
2017-06-28 02:15:27 +02:00
|
|
|
self.prefixmodes = self.parse_isupport_prefixes(caps['PREFIX'])
|
2017-06-25 11:03:12 +02:00
|
|
|
log.debug('(%s) self.prefixmodes set to %r', self.name,
|
|
|
|
self.prefixmodes)
|
2016-01-18 06:02:30 +01:00
|
|
|
|
|
|
|
# Finally, set the irc.connected (protocol negotiation complete)
|
|
|
|
# state to True.
|
2017-06-25 11:03:12 +02:00
|
|
|
self.connected.set()
|
2016-08-09 08:40:48 +02:00
|
|
|
elif args[0] == 'MODSUPPORT':
|
|
|
|
# <- CAPAB MODSUPPORT :m_alltime.so m_check.so m_chghost.so m_chgident.so m_chgname.so m_fullversion.so m_gecosban.so m_knock.so m_muteban.so m_nicklock.so m_nopartmsg.so m_opmoderated.so m_sajoin.so m_sanick.so m_sapart.so m_serverban.so m_services_account.so m_showwhois.so m_silence.so m_swhois.so m_uninvite.so m_watch.so
|
|
|
|
self.modsupport = args[-1].split()
|
2015-09-06 03:00:57 +02:00
|
|
|
|
|
|
|
def handle_ping(self, source, command, args):
|
|
|
|
"""Handles incoming PING commands, so we don't time out."""
|
|
|
|
# <- :70M PING 70M 0AL
|
|
|
|
# -> :0AL PONG 0AL 70M
|
2017-06-30 07:56:14 +02:00
|
|
|
if self.is_internal_server(args[1]):
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(args[1], 'PONG %s %s' % (args[1], source), queue=False)
|
2015-09-06 03:00:57 +02:00
|
|
|
|
|
|
|
def handle_fjoin(self, servernumeric, command, args):
|
|
|
|
"""Handles incoming FJOIN commands (InspIRCd equivalent of JOIN/SJOIN)."""
|
|
|
|
# :70M FJOIN #chat 1423790411 +AFPfjnt 6:5 7:5 9:5 :o,1SRAABIT4 v,1IOAAF53R <...>
|
2017-06-30 07:56:14 +02:00
|
|
|
channel = self.to_lower(args[0])
|
2017-06-25 11:03:12 +02:00
|
|
|
chandata = self.channels[channel].deepcopy()
|
2015-09-06 03:00:57 +02:00
|
|
|
# InspIRCd sends each channel's users in the form of 'modeprefix(es),UID'
|
|
|
|
userlist = args[-1].split()
|
2015-11-08 19:49:09 +01:00
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
modestring = args[2:-1] or args[2]
|
2017-06-30 07:56:14 +02:00
|
|
|
parsedmodes = self.parse_modes(channel, modestring)
|
2015-09-06 03:00:57 +02:00
|
|
|
namelist = []
|
2016-06-23 07:26:25 +02:00
|
|
|
|
|
|
|
# Keep track of other modes that are added due to prefix modes being joined too.
|
|
|
|
changedmodes = set(parsedmodes)
|
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
for user in userlist:
|
|
|
|
modeprefix, user = user.split(',', 1)
|
2016-01-28 02:49:00 +01:00
|
|
|
|
|
|
|
# Don't crash when we get an invalid UID.
|
2017-06-25 11:03:12 +02:00
|
|
|
if user not in self.users:
|
2016-01-28 02:49:00 +01:00
|
|
|
log.debug('(%s) handle_fjoin: tried to introduce user %s not in our user list, ignoring...',
|
2017-06-25 11:03:12 +02:00
|
|
|
self.name, user)
|
2016-01-28 02:49:00 +01:00
|
|
|
continue
|
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
namelist.append(user)
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[user].channels.add(channel)
|
2016-06-23 07:26:25 +02:00
|
|
|
|
|
|
|
# Only save mode changes if the remote has lower TS than us.
|
|
|
|
changedmodes |= {('+%s' % mode, user) for mode in modeprefix}
|
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
self.channels[channel].users.add(user)
|
2016-06-23 07:26:25 +02:00
|
|
|
|
2017-02-06 06:05:50 +01:00
|
|
|
# Statekeeping with timestamps. Note: some service packages (Anope 1.8) send a trailing
|
|
|
|
# 'd' after the timestamp, which we should strip out to prevent int() from erroring.
|
|
|
|
# This is technically valid in InspIRCd S2S because atoi() ignores non-digit characters,
|
|
|
|
# but it's strange behaviour either way...
|
|
|
|
# <- :3AX FJOIN #monitor 1485462109d + :,3AXAAAAAK
|
|
|
|
their_ts = int(''.join(char for char in args[1] if char.isdigit()))
|
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
our_ts = self.channels[channel].ts
|
2016-07-11 06:35:17 +02:00
|
|
|
self.updateTS(servernumeric, channel, their_ts, changedmodes)
|
2016-06-23 07:26:25 +02:00
|
|
|
|
2016-08-28 03:56:36 +02:00
|
|
|
return {'channel': channel, 'users': namelist, 'modes': parsedmodes, 'ts': their_ts,
|
2016-09-03 02:52:19 +02:00
|
|
|
'channeldata': chandata}
|
2015-09-06 03:00:57 +02:00
|
|
|
|
|
|
|
def handle_uid(self, numeric, command, args):
|
|
|
|
"""Handles incoming UID commands (user introduction)."""
|
|
|
|
# :70M UID 70MAAAAAB 1429934638 GL 0::1 hidden-7j810p.9mdf.lrek.0000.0000.IP gl 0::1 1429934638 +Wioswx +ACGKNOQXacfgklnoqvx :realname
|
|
|
|
uid, ts, nick, realhost, host, ident, ip = args[0:7]
|
2017-05-10 05:27:19 +02:00
|
|
|
self.check_nick_collision(nick)
|
2015-09-06 03:00:57 +02:00
|
|
|
realname = args[-1]
|
2017-07-01 06:44:31 +02:00
|
|
|
self.users[uid] = userobj = User(nick, ts, uid, numeric, ident, host, realname, realhost, ip)
|
2016-07-02 06:01:59 +02:00
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
parsedmodes = self.parse_modes(uid, [args[8], args[9]])
|
|
|
|
self.apply_modes(uid, parsedmodes)
|
2016-07-02 06:01:59 +02:00
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
if (self.umodes.get('servprotect'), None) in userobj.modes:
|
2016-07-02 06:01:59 +02:00
|
|
|
# Services are usually given a "Network Service" WHOIS, so
|
|
|
|
# set that as the opertype.
|
2017-06-30 07:56:14 +02:00
|
|
|
self.call_hooks([uid, 'CLIENT_OPERED', {'text': 'Network Service'}])
|
2016-07-02 06:01:59 +02:00
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
self.servers[numeric].users.add(uid)
|
2015-09-06 03:00:57 +02:00
|
|
|
return {'uid': uid, 'ts': ts, 'nick': nick, 'realhost': realhost, 'host': host, 'ident': ident, 'ip': ip}
|
|
|
|
|
|
|
|
def handle_server(self, numeric, command, args):
|
|
|
|
"""Handles incoming SERVER commands (introduction of servers)."""
|
2016-01-18 06:02:30 +01:00
|
|
|
|
|
|
|
# Initial SERVER command on connect.
|
2017-06-25 11:03:12 +02:00
|
|
|
if self.uplink is None:
|
2016-01-18 06:02:30 +01:00
|
|
|
# <- SERVER whatever.net abcdefgh 0 10X :some server description
|
|
|
|
servername = args[0].lower()
|
|
|
|
numeric = args[3]
|
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
if args[1] != self.serverdata['recvpass']:
|
2016-01-18 06:02:30 +01:00
|
|
|
# Check if recvpass is correct
|
|
|
|
raise ProtocolError('Error: recvpass from uplink server %s does not match configuration!' % servername)
|
|
|
|
|
|
|
|
sdesc = args[-1]
|
2017-07-01 06:45:10 +02:00
|
|
|
self.servers[numeric] = Server(None, servername, desc=sdesc)
|
2017-06-25 11:03:12 +02:00
|
|
|
self.uplink = numeric
|
2016-01-18 06:02:30 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
# Other server introductions.
|
2015-09-06 03:00:57 +02:00
|
|
|
# <- :00A SERVER test.server * 1 00C :testing raw message syntax
|
|
|
|
servername = args[0].lower()
|
|
|
|
sid = args[3]
|
|
|
|
sdesc = args[-1]
|
2017-07-01 06:45:10 +02:00
|
|
|
self.servers[sid] = Server(numeric, servername, desc=sdesc)
|
2016-01-18 06:02:30 +01:00
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
return {'name': servername, 'sid': args[3], 'text': sdesc}
|
|
|
|
|
|
|
|
def handle_fmode(self, numeric, command, args):
|
|
|
|
"""Handles the FMODE command, used for channel mode changes."""
|
|
|
|
# <- :70MAAAAAA FMODE #chat 1433653462 +hhT 70MAAAAAA 70MAAAAAD
|
2017-06-30 07:56:14 +02:00
|
|
|
channel = self.to_lower(args[0])
|
2017-06-25 11:03:12 +02:00
|
|
|
oldobj = self.channels[channel].deepcopy()
|
2015-09-06 03:00:57 +02:00
|
|
|
modes = args[2:]
|
2017-06-30 07:56:14 +02:00
|
|
|
changedmodes = self.parse_modes(channel, modes)
|
|
|
|
self.apply_modes(channel, changedmodes)
|
2015-09-06 03:00:57 +02:00
|
|
|
ts = int(args[1])
|
2015-09-13 22:47:18 +02:00
|
|
|
return {'target': channel, 'modes': changedmodes, 'ts': ts,
|
2016-09-13 05:12:21 +02:00
|
|
|
'channeldata': oldobj}
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2015-09-09 04:50:46 +02:00
|
|
|
def handle_mode(self, numeric, command, args):
|
|
|
|
"""Handles incoming user mode changes."""
|
|
|
|
# In InspIRCd, MODE is used for setting user modes and
|
|
|
|
# FMODE is used for channel modes:
|
|
|
|
# <- :70MAAAAAA MODE 70MAAAAAA -i+xc
|
|
|
|
target = args[0]
|
|
|
|
modestrings = args[1:]
|
2017-06-30 07:56:14 +02:00
|
|
|
changedmodes = self.parse_modes(target, modestrings)
|
|
|
|
self.apply_modes(target, changedmodes)
|
2015-09-09 04:50:46 +02:00
|
|
|
return {'target': target, 'modes': changedmodes}
|
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
def handle_idle(self, numeric, command, args):
|
2016-07-11 06:55:16 +02:00
|
|
|
"""
|
|
|
|
Handles the IDLE command, sent between servers in remote WHOIS queries.
|
|
|
|
"""
|
2015-09-06 03:00:57 +02:00
|
|
|
# <- :70MAAAAAA IDLE 1MLAAAAIG
|
|
|
|
# -> :1MLAAAAIG IDLE 70MAAAAAA 1433036797 319
|
|
|
|
sourceuser = numeric
|
|
|
|
targetuser = args[0]
|
2016-06-28 07:28:37 +02:00
|
|
|
|
2016-07-11 06:55:16 +02:00
|
|
|
# HACK: make PyLink handle the entire WHOIS request.
|
|
|
|
# This works by silently ignoring the idle time request, and sending our WHOIS data as
|
|
|
|
# raw numerics instead.
|
|
|
|
# The rationale behind this is that PyLink cannot accurately track signon and idle times for
|
|
|
|
# things like relay users, without forwarding WHOIS requests between servers in a way the
|
|
|
|
# hooks system is really not optimized to do. However, no IDLE response means that no WHOIS
|
|
|
|
# data is ever sent back to the calling user, so this workaround is probably the best
|
|
|
|
# solution (aside from faking values). -GLolol
|
|
|
|
return {'target': args[0], 'parse_as': 'WHOIS'}
|
2015-09-06 03:00:57 +02:00
|
|
|
|
|
|
|
def handle_ftopic(self, numeric, command, args):
|
|
|
|
"""Handles incoming FTOPIC (sets topic on burst)."""
|
|
|
|
# <- :70M FTOPIC #channel 1434510754 GLo|o|!GLolol@escape.the.dreamland.ca :Some channel topic
|
2017-06-30 07:56:14 +02:00
|
|
|
channel = self.to_lower(args[0])
|
2015-09-06 03:00:57 +02:00
|
|
|
ts = args[1]
|
|
|
|
setter = args[2]
|
|
|
|
topic = args[-1]
|
2017-06-25 11:03:12 +02:00
|
|
|
self.channels[channel].topic = topic
|
|
|
|
self.channels[channel].topicset = True
|
2015-12-19 06:53:35 +01:00
|
|
|
return {'channel': channel, 'setter': setter, 'ts': ts, 'text': topic}
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2015-11-01 03:15:03 +01:00
|
|
|
# SVSTOPIC is used by InspIRCd module m_topiclock - its arguments are the same as FTOPIC
|
|
|
|
handle_svstopic = handle_ftopic
|
|
|
|
|
2016-07-05 22:27:31 +02:00
|
|
|
def handle_knock(self, numeric, command, args):
|
|
|
|
"""Handles channel KNOCKs."""
|
|
|
|
# <- :70MAAAAAA ENCAP * KNOCK #blah :abcdefg
|
2017-06-30 07:56:14 +02:00
|
|
|
channel = self.to_lower(args[0])
|
2016-07-05 22:27:31 +02:00
|
|
|
text = args[1]
|
|
|
|
return {'channel': channel, 'text': text}
|
2015-09-06 03:00:57 +02:00
|
|
|
|
2016-07-02 06:01:59 +02:00
|
|
|
def handle_opertype(self, target, command, args):
|
2015-09-06 03:00:57 +02:00
|
|
|
"""Handles incoming OPERTYPE, which is used to denote an oper up.
|
|
|
|
|
2015-12-27 00:41:22 +01:00
|
|
|
This calls the internal hook CLIENT_OPERED, sets the internal
|
2015-09-06 03:00:57 +02:00
|
|
|
opertype of the client, and assumes setting user mode +o on the caller."""
|
|
|
|
# This is used by InspIRCd to denote an oper up; there is no MODE
|
|
|
|
# command sent for it.
|
|
|
|
# <- :70MAAAAAB OPERTYPE Network_Owner
|
2016-07-02 06:01:59 +02:00
|
|
|
# Replace escaped _ in opertypes with spaces for InspIRCd 2.0.
|
|
|
|
opertype = args[0].replace("_", " ")
|
|
|
|
|
|
|
|
# Set umode +o on the target.
|
2015-09-06 03:00:57 +02:00
|
|
|
omode = [('+o', None)]
|
2017-06-30 07:56:14 +02:00
|
|
|
self.apply_modes(target, omode)
|
2016-07-02 06:01:59 +02:00
|
|
|
|
|
|
|
# Call the CLIENT_OPERED hook that protocols use. The MODE hook
|
|
|
|
# payload is returned below.
|
2017-06-30 07:56:14 +02:00
|
|
|
self.call_hooks([target, 'CLIENT_OPERED', {'text': opertype}])
|
2016-07-02 06:01:59 +02:00
|
|
|
return {'target': target, 'modes': omode}
|
2015-09-06 03:00:57 +02:00
|
|
|
|
|
|
|
def handle_fident(self, numeric, command, args):
|
|
|
|
"""Handles FIDENT, used for denoting ident changes."""
|
|
|
|
# <- :70MAAAAAB FIDENT test
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[numeric].ident = newident = args[0]
|
2015-09-06 03:00:57 +02:00
|
|
|
return {'target': numeric, 'newident': newident}
|
|
|
|
|
|
|
|
def handle_fhost(self, numeric, command, args):
|
|
|
|
"""Handles FHOST, used for denoting hostname changes."""
|
2017-01-13 06:00:24 +01:00
|
|
|
# <- :70MAAAAAB FHOST some.host
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[numeric].host = newhost = args[0]
|
2015-09-06 03:00:57 +02:00
|
|
|
return {'target': numeric, 'newhost': newhost}
|
|
|
|
|
|
|
|
def handle_fname(self, numeric, command, args):
|
|
|
|
"""Handles FNAME, used for denoting real name/gecos changes."""
|
|
|
|
# <- :70MAAAAAB FNAME :afdsafasf
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[numeric].realname = newgecos = args[0]
|
2015-09-06 03:00:57 +02:00
|
|
|
return {'target': numeric, 'newgecos': newgecos}
|
|
|
|
|
|
|
|
def handle_endburst(self, numeric, command, args):
|
|
|
|
"""ENDBURST handler; sends a hook with empty contents."""
|
|
|
|
return {}
|
|
|
|
|
|
|
|
def handle_away(self, numeric, command, args):
|
|
|
|
"""Handles incoming AWAY messages."""
|
|
|
|
# <- :1MLAAAAIG AWAY 1439371390 :Auto-away
|
|
|
|
try:
|
|
|
|
ts = args[0]
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[numeric].away = text = args[1]
|
2015-09-06 03:00:57 +02:00
|
|
|
return {'text': text, 'ts': ts}
|
|
|
|
except IndexError: # User is unsetting away status
|
2017-06-25 11:03:12 +02:00
|
|
|
self.users[numeric].away = ''
|
2015-09-06 03:00:57 +02:00
|
|
|
return {'text': ''}
|
|
|
|
|
2015-12-25 04:52:52 +01:00
|
|
|
def handle_rsquit(self, numeric, command, args):
|
|
|
|
"""
|
|
|
|
Handles the RSQUIT command, which is sent by opers to SQUIT remote
|
|
|
|
servers.
|
|
|
|
"""
|
|
|
|
# <- :1MLAAAAIG RSQUIT :ayy.lmao
|
|
|
|
# <- :1MLAAAAIG RSQUIT ayy.lmao :some reason
|
|
|
|
|
|
|
|
# RSQUIT is sent by opers to SQUIT remote servers. However, it differs from
|
|
|
|
# a regular SQUIT in that:
|
|
|
|
# 1) It takes a server name instead of a SID,
|
|
|
|
# 2) Responses have to be be explicitly sent; i.e. The target server has
|
|
|
|
# to agree with splitting the target, and could ignore such requests
|
|
|
|
# entirely.
|
|
|
|
|
|
|
|
# If we receive such a remote SQUIT, just forward it as a regular
|
|
|
|
# SQUIT, in order to be consistent with other IRCds which make SQUITs
|
|
|
|
# implicit.
|
2017-06-17 02:13:04 +02:00
|
|
|
target = self._get_SID(args[0])
|
2017-06-30 07:56:14 +02:00
|
|
|
if self.is_internal_server(target):
|
2015-12-25 04:52:52 +01:00
|
|
|
# The target has to be one of our servers in order to work...
|
2017-06-25 11:03:12 +02:00
|
|
|
uplink = self.servers[target].uplink
|
2017-06-30 07:56:14 +02:00
|
|
|
reason = 'Requested by %s' % self.get_hostmask(numeric)
|
2017-06-25 08:40:41 +02:00
|
|
|
self._send_with_prefix(uplink, 'SQUIT %s :%s' % (target, reason))
|
2015-12-25 04:52:52 +01:00
|
|
|
return self.handle_squit(numeric, 'SQUIT', [target, reason])
|
|
|
|
else:
|
|
|
|
log.debug("(%s) Got RSQUIT for '%s', which is either invalid or not "
|
2017-06-25 11:03:12 +02:00
|
|
|
"a server of ours!", self.name, args[0])
|
2015-12-25 04:52:52 +01:00
|
|
|
|
2016-02-21 02:54:46 +01:00
|
|
|
def handle_metadata(self, numeric, command, args):
|
|
|
|
"""
|
|
|
|
Handles the METADATA command, used by servers to send metadata (services
|
|
|
|
login name, certfp data, etc.) for clients.
|
|
|
|
"""
|
|
|
|
uid = args[0]
|
|
|
|
|
2017-06-25 11:03:12 +02:00
|
|
|
if args[1] == 'accountname' and uid in self.users:
|
2016-02-21 02:54:46 +01:00
|
|
|
# <- :00A METADATA 1MLAAAJET accountname :
|
|
|
|
# <- :00A METADATA 1MLAAAJET accountname :tester
|
|
|
|
# Sets the services login name of the client.
|
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
self.call_hooks([uid, 'CLIENT_SERVICES_LOGIN', {'text': args[-1]}])
|
2016-02-21 02:54:46 +01:00
|
|
|
|
2016-03-26 19:27:07 +01:00
|
|
|
def handle_version(self, numeric, command, args):
|
|
|
|
"""
|
|
|
|
Stub VERSION handler (does nothing) to override the one in ts6_common.
|
|
|
|
"""
|
|
|
|
|
2016-07-05 09:08:02 +02:00
|
|
|
def handle_kill(self, source, command, args):
|
|
|
|
"""Handles incoming KILLs."""
|
|
|
|
killed = args[0]
|
|
|
|
# Depending on whether the IRCd sends explicit QUIT messages for
|
|
|
|
# killed clients, the user may or may not have automatically been
|
|
|
|
# removed from our user list.
|
|
|
|
# If not, we have to assume that KILL = QUIT and remove them
|
|
|
|
# ourselves.
|
2017-06-25 11:03:12 +02:00
|
|
|
data = self.users.get(killed)
|
2016-07-05 09:08:02 +02:00
|
|
|
if data:
|
2017-06-28 01:21:30 +02:00
|
|
|
self._remove_client(killed)
|
2016-07-05 09:08:02 +02:00
|
|
|
return {'target': killed, 'text': args[1], 'userdata': data}
|
|
|
|
|
2016-07-29 06:05:59 +02:00
|
|
|
def handle_sakick(self, source, command, args):
|
|
|
|
"""Handles forced kicks (SAKICK)."""
|
|
|
|
# <- :1MLAAAAAD ENCAP 0AL SAKICK #test 0ALAAAAAB :test
|
|
|
|
# ENCAP -> SAKICK args: ['#test', '0ALAAAAAB', 'test']
|
|
|
|
|
|
|
|
target = args[1]
|
2017-06-30 07:56:14 +02:00
|
|
|
channel = self.to_lower(args[0])
|
2016-07-29 06:05:59 +02:00
|
|
|
try:
|
|
|
|
reason = args[2]
|
|
|
|
except IndexError:
|
|
|
|
# Kick reason is optional, strange...
|
2017-06-30 07:56:14 +02:00
|
|
|
reason = self.get_friendly_name(source)
|
2016-07-29 06:05:59 +02:00
|
|
|
|
2017-06-30 07:56:14 +02:00
|
|
|
if not self.is_internal_client(target):
|
2017-06-25 11:03:12 +02:00
|
|
|
log.warning("(%s) Got SAKICK for client that not one of ours: %s", self.name, target)
|
2016-07-29 06:05:59 +02:00
|
|
|
return
|
|
|
|
else:
|
|
|
|
# Like RSQUIT, SAKICK requires that the receiving server acknowledge that a kick has
|
|
|
|
# happened. This comes from the server hosting the target client.
|
2017-06-30 07:56:14 +02:00
|
|
|
server = self.get_server(target)
|
2016-07-29 06:05:59 +02:00
|
|
|
|
|
|
|
self.kick(server, channel, target, reason)
|
|
|
|
return {'channel': channel, 'target': target, 'text': reason}
|
2016-07-12 08:21:08 +02:00
|
|
|
|
2016-08-13 04:36:40 +02:00
|
|
|
def handle_alltime(self, source, command, args):
|
|
|
|
"""Handles /ALLTIME requests."""
|
|
|
|
# -> :9PYAAAAAA ENCAP * ALLTIME
|
|
|
|
# <- :70M PUSH 0ALAAAAAC ::midnight.vpn NOTICE PyLink-devel :System time is 2016-08-13 02:23:06 (1471054986) on midnight.vpn
|
|
|
|
|
|
|
|
# XXX: We override notice() here because that abstraction doesn't allow messages from servers.
|
|
|
|
timestring = '%s (%s)' % (time.strftime('%Y-%m-%d %H:%M:%S'), int(time.time()))
|
2017-06-25 11:03:12 +02:00
|
|
|
self._send_with_prefix(self.sid, 'NOTICE %s :System time is %s on %s' % (source, timestring, self.hostname()))
|
2016-08-13 04:36:40 +02:00
|
|
|
|
2015-09-06 03:00:57 +02:00
|
|
|
Class = InspIRCdProtocol
|