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
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
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
Boris Kocherov
re6stnet
Commits
61ca38b5
Commit
61ca38b5
authored
Oct 17, 2018
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
re6st-geo: quick'n dirty update to at least in which countries nodes are spread
parent
111a5e4d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
36 deletions
+45
-36
draft/re6st-geo
draft/re6st-geo
+45
-36
No files found.
draft/re6st-geo
View file @
61ca38b5
...
...
@@ -7,9 +7,20 @@ if 're6st' not in sys.modules:
import
os
;
sys
.
path
[
0
]
=
os
.
path
.
dirname
(
sys
.
path
[
0
])
from
re6st
import
ctl
,
tunnel
,
utils
from
re6st.registry
import
RegistryServer
@
apply
class
proxy
(
object
):
def
__init__
(
self
):
self
.
sock
=
socket
.
socket
(
socket
.
AF_INET6
,
socket
.
SOCK_DGRAM
)
recv
=
RegistryServer
.
recv
.
__func__
sendto
=
RegistryServer
.
sendto
.
__func__
def
cmd_update
(
db
,
config
):
s
=
socket
.
socket
(
socket
.
AF_INET6
,
socket
.
SOCK_DGRAM
)
s
=
proxy
.
sock
,
q
=
db
.
execute
ip
,
n
=
config
.
network
.
split
(
'/'
)
network
=
utils
.
binFromIp
(
ip
)[:
int
(
n
)]
...
...
@@ -29,16 +40,9 @@ def cmd_update(db, config):
break
p
=
peers
.
copy
()
while
True
:
r
,
w
,
_
=
select
.
select
(
[
s
],
[
s
]
if
p
else
[],
[]
,
1
)
r
,
w
,
_
=
select
.
select
(
s
,
s
if
p
else
(),
()
,
1
)
if
r
:
x
,
a
=
s
.
recvfrom
(
1
<<
16
)
if
x
[
0
]
==
'
\
1
'
:
try
:
prefix
,
address
=
x
[
1
:
x
.
index
(
'
\
n
'
)].
split
()
except
ValueError
:
pass
else
:
if
utils
.
binFromIp
(
a
[
0
]).
startswith
(
network
+
prefix
):
prefix
,
address
=
proxy
.
recv
(
1
)
peers
.
discard
(
prefix
)
ip
=
None
for
ip
,
_
,
_
in
utils
.
parse_address
(
address
):
...
...
@@ -51,8 +55,7 @@ def cmd_update(db, config):
except
socket
.
error
:
pass
else
:
if
bin
(
*
struct
.
unpack
(
'>I'
,
a
))[
2
:]
\
.
startswith
((
if
bin
(
*
struct
.
unpack
(
'>I'
,
a
))[
2
:].
startswith
((
'10100000'
,
'11111110'
,
'101011000001'
,
'1100000010101000'
)):
...
...
@@ -61,11 +64,7 @@ def cmd_update(db, config):
q
(
"UPDATE ip SET ip=? WHERE prefix=?"
,
(
ip
,
prefix
))
if
w
:
x
=
utils
.
ipFromBin
(
network
+
p
.
pop
())
try
:
s
.
sendto
(
'
\
2
'
,
(
x
,
tunnel
.
PORT
))
except
socket
.
error
:
pass
proxy
.
sendto
(
p
.
pop
(),
1
)
elif
not
r
:
break
db
.
commit
()
...
...
@@ -84,6 +83,15 @@ def cmd_ip(db, config):
db
.
commit
()
def
geo_geolite2
():
from
geoip2
import
database
,
errors
country
=
database
.
Reader
(
os
.
environ
[
'GEOIP2_MMDB'
]).
country
def
geo
(
ip
):
x
=
country
(
ip
).
country
return
None
,
None
,
'%s, %s'
%
(
x
.
iso_code
,
x
.
name
)
return
geo
def
geo_freegeoip
():
import
json
host
=
'freegeoip.net'
...
...
@@ -133,7 +141,7 @@ def cmd_geoip(db, config):
loc
=
cache_dict
[
ip
]
except
KeyError
:
if
mode
in
(
None
,
'auto'
):
mode
=
'
freegeoip
'
mode
=
'
geolite2
'
try
:
geo
=
mode_dict
[
mode
]
except
KeyError
:
...
...
@@ -212,7 +220,8 @@ def main():
help
=
"Query all running nodes to fetch their tunnel IP."
" CN marked for manual update with 'ip' subcommand are skipped."
).
add_argument
_
(
'--control-socket'
,
metavar
=
'CTL_SOCK'
,
default
=
ctl
.
SOCK_PATH
,
_
(
'--control-socket'
,
metavar
=
'CTL_SOCK'
,
default
=
'/var/run/re6stnet/babeld.sock'
,
help
=
"Socket path to use for communication between re6stnet and babeld"
" (option -R of Babel)."
)
_
(
'network'
)
...
...
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