Commit 3d885bd7 authored by Tom Niget's avatar Tom Niget

py2to3: add logs in registry

parent d2287162
...@@ -99,7 +99,9 @@ class RegistryServer: ...@@ -99,7 +99,9 @@ class RegistryServer:
"prefix TEXT PRIMARY KEY NOT NULL", "prefix TEXT PRIMARY KEY NOT NULL",
"email TEXT", "email TEXT",
"cert TEXT") "cert TEXT")
logging.debug("Checking for existing certs...")
if not self.db.execute("SELECT 1 FROM cert LIMIT 1").fetchone(): if not self.db.execute("SELECT 1 FROM cert LIMIT 1").fetchone():
logging.debug("No existing certs found, creating a blank one...")
self.db.execute("INSERT INTO cert VALUES ('',null,null)") self.db.execute("INSERT INTO cert VALUES ('',null,null)")
prev = '-' prev = '-'
...@@ -265,7 +267,8 @@ class RegistryServer: ...@@ -265,7 +267,8 @@ class RegistryServer:
if x <= old: if x <= old:
if prefix == self.prefix: if prefix == self.prefix:
logging.critical("Refuse to delete certificate" logging.critical("Refuse to delete certificate"
" of main node: wrong clock ?") " of main node: wrong clock ?"
" Alternatively, the database might be in an inconsistent state.")
sys.exit(1) sys.exit(1)
logging.info("Delete %s: %s (invalid since %s)", logging.info("Delete %s: %s (invalid since %s)",
"certificate requested by '%s'" % email "certificate requested by '%s'" % email
...@@ -350,9 +353,11 @@ class RegistryServer: ...@@ -350,9 +353,11 @@ class RegistryServer:
def getCert(self, client_prefix): def getCert(self, client_prefix):
assert self.lock.locked() assert self.lock.locked()
return self.db.execute("SELECT cert FROM cert" cert = self.db.execute("SELECT cert FROM cert"
" WHERE prefix=? AND cert IS NOT NULL", " WHERE prefix=? AND cert IS NOT NULL", (client_prefix,)).fetchone()
(client_prefix,)).fetchone()[0] assert cert, "Certificate query did not return any result; "\
"this indicates inconsistent state and should not happen"
return cert[0]
@rpc_private @rpc_private
def isToken(self, token): def isToken(self, token):
...@@ -433,6 +438,7 @@ class RegistryServer: ...@@ -433,6 +438,7 @@ class RegistryServer:
return default return default
def mergePrefixes(self): def mergePrefixes(self):
logging.debug("Merging prefixes")
q = self.db.execute q = self.db.execute
prev_prefix = None prev_prefix = None
max_len = 128, max_len = 128,
...@@ -455,6 +461,7 @@ class RegistryServer: ...@@ -455,6 +461,7 @@ class RegistryServer:
prev_prefix = prefix prev_prefix = prefix
def newPrefix(self, prefix_len, community): def newPrefix(self, prefix_len, community):
logging.info("Allocating /%u prefix for %s", prefix_len, community)
community_len = len(community) community_len = len(community)
prefix_len += community_len prefix_len += community_len
max_len = 128 - len(self.network) max_len = 128 - len(self.network)
...@@ -494,6 +501,7 @@ class RegistryServer: ...@@ -494,6 +501,7 @@ class RegistryServer:
@rpc @rpc
def requestCertificate(self, token, req, location='', ip=''): def requestCertificate(self, token, req, location='', ip=''):
logging.debug("Requesting certificate with token %s", token)
req = crypto.load_certificate_request(crypto.FILETYPE_PEM, req) req = crypto.load_certificate_request(crypto.FILETYPE_PEM, req)
with self.lock: with self.lock:
with self.db: with self.db:
...@@ -602,6 +610,7 @@ class RegistryServer: ...@@ -602,6 +610,7 @@ class RegistryServer:
return zlib.compress(json.dumps(config).encode("utf-8")) return zlib.compress(json.dumps(config).encode("utf-8"))
def _queryAddress(self, peer): def _queryAddress(self, peer):
logging.info("Querying address for %s/%s", int(peer, 2), len(peer))
self.sendto(peer, 1) self.sendto(peer, 1)
s = self.sock, s = self.sock,
timeout = 3 timeout = 3
...@@ -609,6 +618,7 @@ class RegistryServer: ...@@ -609,6 +618,7 @@ class RegistryServer:
# Loop because there may be answers from previous requests. # Loop because there may be answers from previous requests.
while select.select(s, (), (), timeout)[0]: while select.select(s, (), (), timeout)[0]:
prefix, msg = self.recv(1) prefix, msg = self.recv(1)
logging.info("* received: %s - %s", prefix, msg)
if prefix == peer: if prefix == peer:
return msg return msg
timeout = max(0, end - time.time()) timeout = max(0, end - time.time())
...@@ -622,6 +632,7 @@ class RegistryServer: ...@@ -622,6 +632,7 @@ class RegistryServer:
@rpc @rpc
def getBootstrapPeer(self, cn): def getBootstrapPeer(self, cn):
logging.info("Answering bootstrap peer for %s", cn)
with self.peers_lock: with self.peers_lock:
age, peers = self.peers age, peers = self.peers
if age < time.time() or not peers: if age < time.time() or not peers:
...@@ -633,6 +644,7 @@ class RegistryServer: ...@@ -633,6 +644,7 @@ class RegistryServer:
peers.append(self.prefix) peers.append(self.prefix)
random.shuffle(peers) random.shuffle(peers)
self.peers = time.time() + 60, peers self.peers = time.time() + 60, peers
logging.debug("peers: %r", peers)
peer = peers.pop() peer = peers.pop()
if peer == cn: if peer == cn:
# Very unlikely (e.g. peer restarted with empty cache), # Very unlikely (e.g. peer restarted with empty cache),
...@@ -642,6 +654,7 @@ class RegistryServer: ...@@ -642,6 +654,7 @@ class RegistryServer:
with self.lock: with self.lock:
msg = self._queryAddress(peer) msg = self._queryAddress(peer)
if msg is None: if msg is None:
logging.info("No address for %s, returning None", peer)
return return
# Remove country for old nodes # Remove country for old nodes
if self.getPeerProtocol(cn) < 7: if self.getPeerProtocol(cn) < 7:
...@@ -771,6 +784,7 @@ class RegistryServer: ...@@ -771,6 +784,7 @@ class RegistryServer:
@rpc_private @rpc_private
def topology(self): def topology(self):
logging.info("Computing topology")
p = lambda p: '%s/%s' % (int(p, 2), len(p)) p = lambda p: '%s/%s' % (int(p, 2), len(p))
peers = deque((p(self.prefix),)) peers = deque((p(self.prefix),))
graph = defaultdict(set) graph = defaultdict(set)
...@@ -780,6 +794,7 @@ class RegistryServer: ...@@ -780,6 +794,7 @@ class RegistryServer:
r, w, _ = select.select(s, s if peers else (), (), 3) r, w, _ = select.select(s, s if peers else (), (), 3)
if r: if r:
prefix, x = self.recv(5) prefix, x = self.recv(5)
logging.info("Received %s %s", prefix, x)
if prefix and x: if prefix and x:
prefix = p(prefix) prefix = p(prefix)
x = x.split() x = x.split()
...@@ -794,8 +809,11 @@ class RegistryServer: ...@@ -794,8 +809,11 @@ class RegistryServer:
graph[x].add(prefix) graph[x].add(prefix)
graph[''].add(prefix) graph[''].add(prefix)
if w: if w:
self.sendto(utils.binFromSubnet(peers.popleft()), 5) first = peers.popleft()
logging.info("Sending %s", first)
self.sendto(utils.binFromSubnet(first), 5)
elif not r: elif not r:
logging.info("No more sockets, stopping")
break break
return json.dumps({k: list(v) for k, v in graph.items()}) return json.dumps({k: list(v) for k, v in graph.items()})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment