Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
re6stnet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
4
Merge Requests
4
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
re6stnet
Commits
f11dbc2c
Commit
f11dbc2c
authored
Jun 07, 2019
by
Killian Lufau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add testing of HMAC
parent
a173fa06
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
102 additions
and
0 deletions
+102
-0
demo/demo
demo/demo
+14
-0
demo/test_hmac.py
demo/test_hmac.py
+88
-0
No files found.
demo/demo
View file @
f11dbc2c
...
...
@@ -2,6 +2,7 @@
import argparse, math, nemu, os, re, signal
import socket, subprocess, sys, time, weakref
from collections import defaultdict
from threading import Thread
IPTABLES = 'iptables'
SCREEN = 'screen'
VERBOSE = 4
...
...
@@ -46,6 +47,8 @@ parser.add_argument('-d', '--duration', type = int,
help = 'time of the demo execution in seconds')
parser.add_argument('-p', '--ping', action = 'store_true',
help = 'execute ping utility')
parser.add_argument('-m', '--hmac', action = 'store_true',
help = 'execute HMAC test')
args = parser.parse_args()
def handler(signum, frame):
...
...
@@ -259,6 +262,17 @@ if args.ping:
name = 'm' + machine.short if machine.short != 'R' else 'registry'
machine.screen('python ping.py {} {}'.format(name, ' '.join(ips)))
class testHMAC(Thread):
def run(self):
time.sleep(10)
test_hmac.checkDB()
test_hmac.checkBabel()
if args.hmac:
import test_hmac
testHMAC().start()
_ll = {}
def node_by_ll(addr):
try:
...
...
demo/test_hmac.py
0 → 100644
View file @
f11dbc2c
import
sqlite3
,
subprocess
MACHINES
=
{
'm1'
:
'2001:db8:42:1::1'
,
'm2'
:
'2001:db8:42:2::1'
,
'm3'
:
'2001:db8:42:3::1'
,
'm4'
:
'2001:db8:42:4::1'
,
'm5'
:
'2001:db8:42:5::1'
,
'm6'
:
'2001:db8:42:6::1'
,
'm7'
:
'2001:db8:42:7::1'
,
'm8'
:
'2001:db8:42:8::1'
,
'registry'
:
'2001:db8:42::1'
}
reg_db
=
sqlite3
.
connect
(
'registry/registry.db'
,
isolation_level
=
None
,
check_same_thread
=
False
)
reg_db
.
text_factory
=
str
network
=
'001000000000000100001101101110000000000001000010'
def
getConfig
(
db
,
name
):
r
,
=
next
(
db
.
execute
(
"SELECT value FROM config WHERE name=?"
,
(
name
,)),
(
None
,))
if
r
is
not
None
:
r
=
str
(
r
).
encode
(
'hex'
)
return
r
def
getCurrentHmacs
():
true_hmacs
=
{
'babel_hmac0'
:
None
,
'babel_hmac1'
:
None
,
'babel_hmac2'
:
None
}
for
k
in
true_hmacs
.
keys
():
true_hmacs
[
k
]
=
getConfig
(
reg_db
,
k
)
return
true_hmacs
def
checkDB
(
machines
=
MACHINES
):
rc
=
True
true_hmacs
=
getCurrentHmacs
()
for
m
in
machines
.
keys
():
db
=
sqlite3
.
connect
(
'%s/cache.db'
%
m
,
isolation_level
=
None
,
check_same_thread
=
False
)
for
k
in
true_hmacs
.
keys
():
r
=
getConfig
(
db
,
k
)
if
not
r
and
true_hmacs
[
k
]:
print
(
'missing %s in db of %s'
%
(
k
,
m
))
rc
=
False
elif
r
:
if
true_hmacs
[
k
]
and
true_hmacs
[
k
]
!=
r
:
print
(
'%s of %s is %s (!= %s)'
%
(
k
,
m
,
r
,
true_hmacs
[
k
]))
rc
=
False
elif
not
true_hmacs
[
k
]:
print
(
'db of %s should not contain %s'
%
(
m
,
k
))
rc
=
False
db
.
close
()
if
rc
:
print
(
'Databases OK'
)
return
rc
def
checkBabel
(
machines
=
MACHINES
):
hmacs
=
getCurrentHmacs
()
for
k
,
v
in
hmacs
.
iteritems
():
if
v
and
v
is
not
''
:
hmacs
[
k
]
=
'%064x'
%
int
(
bin
(
len
(
network
))[
2
:].
zfill
(
7
)
+
network
+
bin
(
int
(
v
,
16
))[
9
+
len
(
network
):],
2
)
rc
=
True
ps
=
subprocess
.
Popen
([
'pgrep'
,
'-a'
,
'babel'
],
stdout
=
subprocess
.
PIPE
)
for
p
in
(
p
for
p
in
ps
.
communicate
()[
0
].
split
(
'
\
n
'
)
if
p
):
for
k
,
v
in
hmacs
.
iteritems
():
k
=
k
[
6
:]
if
v
and
v
is
not
''
:
# should find key
if
'%s value '
%
k
not
in
p
:
print
(
'missing %s in %s'
%
(
k
,
p
))
rc
=
False
elif
p
.
split
(
'%s value '
%
k
,
1
)[
1
].
split
()[
0
]
!=
v
:
print
(
'%s should be %s in %s'
%
(
k
,
v
,
p
))
rc
=
False
b0
=
'babel_hmac0'
;
b1
=
'babel_hmac1'
;
b2
=
'babel_hmac2'
if
((
k
is
hmacs
[
b0
]
and
not
hmacs
[
b1
]
and
not
hmacs
[
b2
])
or
(
k
is
hmacs
[
b0
]
and
hmacs
[
b1
]
and
not
hmacs
[
b0
])
or
(
k
is
hmacs
[
b1
]
and
hmacs
[
b2
]
and
not
hmacs
[
b0
])):
if
'hmac %s'
%
k
not
in
p
:
print
(
'Missing use of %s in %s'
%
(
k
,
p
))
rc
=
False
elif
v
is
''
:
# should find ignore_no_hmac
if
'ignore_no_hmac'
not
in
p
:
print
(
'missing ignore_no_hmac in %s'
%
p
)
rc
=
False
else
:
# should not find key
if
k
in
p
:
print
(
'%s should not be in %s'
%
(
k
,
p
))
rc
=
False
if
rc
:
print
(
'Babel OK'
)
return
rc
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment