Properly handle multiple hosts in supybot.servers.http.hosts4.

See ebb48a4808 (which I reverted).
This commit is contained in:
Valentin Lorentz 2017-10-28 09:50:12 +02:00
parent 96694a31f6
commit 11bbc89c9d
4 changed files with 12 additions and 4 deletions

View File

@ -1246,15 +1246,18 @@ class IP(registry.String):
else:
registry.String.setValue(self, v)
class ListOfIPs(registry.SpaceSeparatedListOfStrings):
Value = IP
registerGlobalValue(supybot.servers.http, 'singleStack',
registry.Boolean(True, _("""If true, uses IPV6_V6ONLY to disable
forwaring of IPv4 traffic to IPv6 sockets. On *nix, has the same
effect as setting kernel variable net.ipv6.bindv6only to 1.""")))
registerGlobalValue(supybot.servers.http, 'hosts4',
IP('0.0.0.0', _("""Space-separated list of IPv4 hosts the HTTP server
ListOfIPs(['0.0.0.0'], _("""Space-separated list of IPv4 hosts the HTTP server
will bind.""")))
registerGlobalValue(supybot.servers.http, 'hosts6',
IP('::0', _("""Space-separated list of IPv6 hosts the HTTP server will
ListOfIPs(['::0'], _("""Space-separated list of IPv6 hosts the HTTP server will
bind.""")))
registerGlobalValue(supybot.servers.http, 'port',
registry.Integer(8080, _("""Determines what port the HTTP server will

View File

@ -434,9 +434,9 @@ def startServer():
The callback should be an instance of a child of SupyHTTPServerCallback."""
global http_servers
addresses4 = [(4, (x, configGroup.port()))
for x in configGroup.hosts4().split(' ') if x != '']
for x in configGroup.hosts4() if x != '']
addresses6 = [(6, (x, configGroup.port()))
for x in configGroup.hosts6().split(' ') if x != '']
for x in configGroup.hosts6() if x != '']
http_servers = []
for protocol, address in (addresses4 + addresses6):
server = SupyHTTPServer(address, protocol, SupyHTTPRequestHandler)

View File

@ -108,6 +108,9 @@ def isIPV4(s):
>>> isIPV4('abc.abc.abc.abc')
0
"""
if set(s) - set('0123456789.'):
# inet_aton ignores trailing data after the first valid IP address
return False
try:
return bool(socket.inet_aton(str(s)))
except socket.error:

View File

@ -514,12 +514,14 @@ class NetTest(SupyTestCase):
isIP = utils.net.isIP
self.failIf(isIP('a.b.c'))
self.failIf(isIP('256.0.0.0'))
self.failIf(isIP('127.0.0.1 127.0.0.1'))
self.failUnless(isIP('0.0.0.0'))
self.failUnless(isIP('100.100.100.100'))
self.failUnless(isIP('255.255.255.255'))
def testIsIPV6(self):
f = utils.net.isIPV6
self.failIf(f('2001:: 2001::'))
self.failUnless(f('2001::'))
self.failUnless(f('2001:888:0:1::666'))