2019-10-08 20:10:42 +00:00
|
|
|
from copy import deepcopy
|
2019-10-11 12:07:57 +00:00
|
|
|
from math import ceil
|
2022-07-21 12:40:09 +00:00
|
|
|
|
2022-07-21 12:40:01 +00:00
|
|
|
from twisted.internet.threads import deferToThread
|
2022-07-21 12:39:59 +00:00
|
|
|
|
2022-07-21 12:40:09 +00:00
|
|
|
import main
|
|
|
|
import modules.provision
|
|
|
|
from utils.logging.debug import debug
|
|
|
|
from utils.logging.log import error, log, warn
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-10-11 12:07:57 +00:00
|
|
|
def allRelaysActive(net):
|
|
|
|
relayNum = len(main.network[net].relays.keys())
|
|
|
|
existNum = 0
|
|
|
|
for i in main.network[net].relays.keys():
|
2022-07-21 12:39:41 +00:00
|
|
|
name = net + str(i)
|
2019-10-11 12:07:57 +00:00
|
|
|
if name in main.IRCPool.keys():
|
2020-06-07 16:26:53 +00:00
|
|
|
if main.IRCPool[name].authenticated:
|
2019-10-12 20:05:55 +00:00
|
|
|
existNum += 1
|
2019-10-11 12:07:57 +00:00
|
|
|
if existNum == relayNum:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-10-12 20:40:50 +00:00
|
|
|
def getChanFree(net, new):
|
2022-07-27 21:03:42 +00:00
|
|
|
"""
|
|
|
|
Get a dictionary with the free channel spaces for
|
|
|
|
each relay, and a channel limit.
|
|
|
|
Example return:
|
|
|
|
({1: 99}, 100)
|
|
|
|
:param net: network
|
|
|
|
:param new: list of newly provisioned relays to skip
|
|
|
|
:return: ({relay: channel spaces}, channel limit)
|
|
|
|
"""
|
2019-10-12 20:05:55 +00:00
|
|
|
chanfree = {}
|
2019-10-12 20:40:50 +00:00
|
|
|
chanlimits = set()
|
2019-10-12 20:05:55 +00:00
|
|
|
for i in main.network[net].relays.keys():
|
2019-10-12 20:40:50 +00:00
|
|
|
if i in new:
|
|
|
|
continue
|
2022-07-21 12:39:41 +00:00
|
|
|
name = net + str(i)
|
|
|
|
chanfree[i] = main.IRCPool[name].chanlimit - len(main.IRCPool[name].channels)
|
2019-10-12 20:40:50 +00:00
|
|
|
chanlimits.add(main.IRCPool[name].chanlimit)
|
|
|
|
if not len(chanlimits) == 1:
|
2019-10-31 15:44:59 +00:00
|
|
|
error("Network %s has servers with different CHANLIMIT values" % net)
|
2019-10-12 20:40:50 +00:00
|
|
|
return False
|
|
|
|
return (chanfree, chanlimits.pop())
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-10-12 20:40:50 +00:00
|
|
|
def emptyChanAllocate(net, flist, relay, new):
|
|
|
|
chanfree = getChanFree(net, new)
|
|
|
|
if not chanfree:
|
|
|
|
return
|
|
|
|
for i in new:
|
|
|
|
chanfree[0][i] = chanfree[1]
|
2019-10-12 20:05:55 +00:00
|
|
|
allocated = {}
|
|
|
|
toalloc = len(flist)
|
2019-10-12 20:40:50 +00:00
|
|
|
if toalloc > sum(chanfree[0].values()):
|
2022-07-21 12:39:41 +00:00
|
|
|
correction = round(toalloc - sum(chanfree[0].values()) / chanfree[1])
|
|
|
|
# print("correction", correction)
|
2022-07-21 12:40:01 +00:00
|
|
|
warn("Ran out of channel spaces, provisioning additional %i relays for %s" % (correction, net))
|
2022-07-21 12:39:41 +00:00
|
|
|
# newNums = modules.provision.provisionMultipleRelays(net, correction)
|
2019-10-12 20:05:55 +00:00
|
|
|
return False
|
2019-10-12 20:40:50 +00:00
|
|
|
for i in chanfree[0].keys():
|
|
|
|
for x in range(chanfree[0][i]):
|
2019-10-12 20:05:55 +00:00
|
|
|
if not len(flist):
|
|
|
|
break
|
|
|
|
if i in allocated.keys():
|
|
|
|
allocated[i].append(flist.pop())
|
|
|
|
else:
|
|
|
|
allocated[i] = [flist.pop()]
|
|
|
|
return allocated
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-10-12 20:40:50 +00:00
|
|
|
def populateChans(net, clist, relay, new):
|
2022-07-21 12:39:41 +00:00
|
|
|
# divided = array_split(clist, relay)
|
2019-10-12 20:40:50 +00:00
|
|
|
allocated = emptyChanAllocate(net, clist, relay, new)
|
2019-10-12 20:05:55 +00:00
|
|
|
if not allocated:
|
|
|
|
return
|
|
|
|
for i in allocated.keys():
|
2019-10-11 12:07:57 +00:00
|
|
|
if net in main.TempChan.keys():
|
2019-10-12 20:05:55 +00:00
|
|
|
main.TempChan[net][i] = allocated[i]
|
2019-10-11 12:07:57 +00:00
|
|
|
else:
|
2019-10-12 20:05:55 +00:00
|
|
|
main.TempChan[net] = {i: allocated[i]}
|
2019-10-11 12:07:57 +00:00
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-10-11 12:07:57 +00:00
|
|
|
def notifyJoin(net):
|
|
|
|
for i in main.network[net].relays.keys():
|
2022-07-21 12:39:41 +00:00
|
|
|
name = net + str(i)
|
2019-10-11 12:07:57 +00:00
|
|
|
if name in main.IRCPool.keys():
|
|
|
|
main.IRCPool[name].checkChannels()
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-10-12 20:05:55 +00:00
|
|
|
def minifyChans(net, listinfo):
|
|
|
|
if not allRelaysActive(net):
|
2019-10-31 15:44:59 +00:00
|
|
|
error("All relays for %s are not active, cannot minify list" % net)
|
2019-10-12 20:05:55 +00:00
|
|
|
return False
|
|
|
|
for i in main.network[net].relays.keys():
|
2022-07-21 12:39:41 +00:00
|
|
|
name = net + str(i)
|
2019-10-12 20:05:55 +00:00
|
|
|
for x in main.IRCPool[name].channels:
|
|
|
|
for y in listinfo:
|
|
|
|
if y[0] == x:
|
|
|
|
listinfo.remove(y)
|
|
|
|
if not listinfo:
|
|
|
|
log("We're on all the channels we want to be on, dropping LIST")
|
|
|
|
return False
|
|
|
|
return listinfo
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-10-11 12:07:57 +00:00
|
|
|
def keepChannels(net, listinfo, mean, sigrelay, relay):
|
2019-10-12 20:05:55 +00:00
|
|
|
listinfo = minifyChans(net, listinfo)
|
|
|
|
if not listinfo:
|
|
|
|
return
|
2022-07-21 12:40:01 +00:00
|
|
|
if relay <= main.config["ChanKeep"]["SigSwitch"]: # we can cover all of the channels
|
2019-10-11 12:07:57 +00:00
|
|
|
coverAll = True
|
2022-07-21 12:40:01 +00:00
|
|
|
elif relay > main.config["ChanKeep"]["SigSwitch"]: # we cannot cover all of the channels
|
2019-10-11 12:07:57 +00:00
|
|
|
coverAll = False
|
|
|
|
if not sigrelay <= main.config["ChanKeep"]["MaxRelay"]:
|
2022-07-21 12:40:01 +00:00
|
|
|
error("Network %s is too big to cover: %i relays required" % (net, sigrelay))
|
2019-10-11 12:07:57 +00:00
|
|
|
return
|
|
|
|
if coverAll:
|
2022-07-21 12:39:41 +00:00
|
|
|
needed = relay - len(main.network[net].relays.keys())
|
2020-10-28 18:38:27 +00:00
|
|
|
newNums = modules.provision.provisionMultipleRelays(net, needed)
|
2019-10-11 12:07:57 +00:00
|
|
|
flist = [i[0] for i in listinfo]
|
2019-10-12 20:40:50 +00:00
|
|
|
populateChans(net, flist, relay, newNums)
|
2019-10-11 12:07:57 +00:00
|
|
|
else:
|
2022-07-21 12:39:41 +00:00
|
|
|
needed = sigrelay - len(main.network[net].relays.keys())
|
2020-10-28 18:38:27 +00:00
|
|
|
newNums = modules.provision.provisionMultipleRelays(net, needed)
|
2019-10-11 12:07:57 +00:00
|
|
|
siglist = [i[0] for i in listinfo if int(i[1]) > mean]
|
2019-10-12 20:40:50 +00:00
|
|
|
populateChans(net, siglist, sigrelay, newNums)
|
2019-10-11 12:07:57 +00:00
|
|
|
notifyJoin(net)
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2020-11-02 20:14:02 +00:00
|
|
|
def joinSingle(net, channel):
|
|
|
|
if allRelaysActive(net):
|
2022-07-27 21:03:42 +00:00
|
|
|
# Use the algorithm to allocate our channel to a relay
|
|
|
|
eca = emptyChanAllocate(net, [channel], None, [])
|
|
|
|
if not len(eca.keys()) == 1:
|
|
|
|
return False
|
|
|
|
num = list(eca.keys())[0]
|
|
|
|
name = f"{net}{num}"
|
|
|
|
if name not in main.IRCPool:
|
|
|
|
return False
|
|
|
|
main.IRCPool[name].join(channel)
|
|
|
|
return num
|
2020-11-02 20:14:02 +00:00
|
|
|
else:
|
|
|
|
error("All relays for %s are not active" % net)
|
|
|
|
return False
|
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2022-07-27 21:03:42 +00:00
|
|
|
def partSingle(net, channel):
|
|
|
|
"""
|
|
|
|
Iterate over all the relays of net and part channels matching channel.
|
|
|
|
:param net:
|
|
|
|
:param channel:
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
parted = []
|
|
|
|
for i in main.network[net].relays.keys():
|
|
|
|
name = f"{net}{i}"
|
|
|
|
if name in main.IRCPool.keys():
|
|
|
|
if channel in main.IRCPool[name].channels:
|
|
|
|
main.IRCPool[name].part(channel)
|
|
|
|
parted.append(str(i))
|
|
|
|
return parted
|
|
|
|
|
|
|
|
|
2019-10-08 20:10:42 +00:00
|
|
|
def nukeNetwork(net):
|
2022-07-21 12:39:41 +00:00
|
|
|
# purgeRecords(net)
|
|
|
|
# p = main.g.pipeline()
|
|
|
|
main.g.delete("analytics.list." + net)
|
|
|
|
# p.delete("list."+net)
|
|
|
|
# p.execute()
|
2019-10-12 20:05:55 +00:00
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
|
|
|
# def nukeNetwork(net):
|
2019-10-12 20:05:55 +00:00
|
|
|
# deferToThread(_nukeNetwork, net)
|
|
|
|
|
2019-10-08 20:10:42 +00:00
|
|
|
|
|
|
|
def _initialList(net, num, listinfo, chanlimit):
|
|
|
|
listlength = len(listinfo)
|
2019-10-08 17:15:23 +00:00
|
|
|
cumul = 0
|
|
|
|
try:
|
|
|
|
cumul += sum(int(i[1]) for i in listinfo)
|
|
|
|
except TypeError:
|
|
|
|
warn("Bad LIST data received from %s - %i" % (net, num))
|
|
|
|
return
|
2022-07-21 12:39:41 +00:00
|
|
|
mean = round(cumul / listlength, 2)
|
2019-10-08 20:10:42 +00:00
|
|
|
siglength = 0
|
|
|
|
insiglength = 0
|
|
|
|
sigcumul = 0
|
|
|
|
insigcumul = 0
|
2019-10-08 17:15:23 +00:00
|
|
|
for i in listinfo:
|
|
|
|
if int(i[1]) > mean:
|
2019-10-08 20:10:42 +00:00
|
|
|
siglength += 1
|
|
|
|
sigcumul += int(i[1])
|
2019-10-08 17:15:23 +00:00
|
|
|
elif int(i[1]) < mean:
|
2019-10-08 20:10:42 +00:00
|
|
|
insiglength += 1
|
|
|
|
insigcumul += int(i[1])
|
2019-10-08 17:15:23 +00:00
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
sigrelay = ceil(siglength / chanlimit)
|
|
|
|
relay = ceil(listlength / chanlimit)
|
2022-07-21 12:40:05 +00:00
|
|
|
# netbase = "list.%s" % net
|
2019-10-08 20:10:42 +00:00
|
|
|
abase = "analytics.list.%s" % net
|
|
|
|
p = main.g.pipeline()
|
|
|
|
p.hset(abase, "mean", mean)
|
|
|
|
p.hset(abase, "total", listlength)
|
|
|
|
p.hset(abase, "sigtotal", siglength)
|
|
|
|
p.hset(abase, "insigtotal", insiglength)
|
2022-07-21 12:39:41 +00:00
|
|
|
p.hset(abase, "sigperc", round(siglength / listlength * 100, 2))
|
|
|
|
p.hset(abase, "insigperc", round(insiglength / listlength * 100, 2))
|
2019-10-08 20:10:42 +00:00
|
|
|
p.hset(abase, "cumul", cumul)
|
|
|
|
p.hset(abase, "sigcumul", sigcumul)
|
|
|
|
p.hset(abase, "insigcumul", insigcumul)
|
2019-10-11 12:07:57 +00:00
|
|
|
p.hset(abase, "relay", relay)
|
2019-10-08 20:10:42 +00:00
|
|
|
p.hset(abase, "sigrelay", sigrelay)
|
2022-07-21 12:39:41 +00:00
|
|
|
p.hset(abase, "insigrelay", ceil(insiglength / chanlimit))
|
2019-10-12 20:05:55 +00:00
|
|
|
|
2019-10-08 20:10:42 +00:00
|
|
|
# Purge existing records before writing
|
2022-07-21 12:39:41 +00:00
|
|
|
# purgeRecords(net)
|
|
|
|
# for i in listinfo:
|
2019-10-12 20:05:55 +00:00
|
|
|
# p.rpush(netbase+"."+i[0], i[1])
|
|
|
|
# p.rpush(netbase+"."+i[0], i[2])
|
|
|
|
# p.sadd(netbase, i[0])
|
2019-10-08 20:10:42 +00:00
|
|
|
|
|
|
|
p.execute()
|
|
|
|
debug("List parsing completed on %s" % net)
|
2019-10-11 12:07:57 +00:00
|
|
|
keepChannels(net, listinfo, mean, sigrelay, relay)
|
2019-10-08 20:10:42 +00:00
|
|
|
|
2022-07-21 12:39:41 +00:00
|
|
|
|
2019-10-08 20:10:42 +00:00
|
|
|
def initialList(net, num, listinfo, chanlimit):
|
|
|
|
deferToThread(_initialList, net, num, deepcopy(listinfo), chanlimit)
|