mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-04-09 04:04:13 +00:00
mktopology for making new signed topology root server dictionaries
This commit is contained in:
parent
d8e5d9d6e8
commit
117f977ce3
1
.gitignore
vendored
1
.gitignore
vendored
@ -31,3 +31,4 @@
|
||||
.qmake.stash
|
||||
*.autosave
|
||||
/ZeroTier One.dmg
|
||||
/topology/topology.secret
|
||||
|
5
topology/Makefile
Normal file
5
topology/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
all:
|
||||
g++ -o mktopology mktopology.cpp ../node/Utils.cpp ../node/Identity.cpp ../node/C25519.cpp ../node/Salsa20.cpp ../node/Dictionary.cpp ../node/SHA512.cpp
|
||||
|
||||
clean:
|
||||
rm -f *.o mktopology
|
54
topology/mktopology.cpp
Normal file
54
topology/mktopology.cpp
Normal file
@ -0,0 +1,54 @@
|
||||
/* Makes topology dictionary out of source dictionary and signs with
|
||||
* 'topology.secret', which must be present (or symlinked) from where
|
||||
* this is run. */
|
||||
|
||||
/* Just type 'make' and then run (Only tested on Linux) */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <map>
|
||||
|
||||
#include "../node/Utils.hpp"
|
||||
#include "../node/Identity.hpp"
|
||||
#include "../node/Dictionary.hpp"
|
||||
|
||||
using namespace ZeroTier;
|
||||
|
||||
int main(int argc,char **argv)
|
||||
{
|
||||
std::string buf;
|
||||
|
||||
if (!Utils::readFile("topology.secret",buf)) {
|
||||
std::cout << "Cannot read topology.secret" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
Identity topologyAuthority(buf);
|
||||
|
||||
Dictionary topology;
|
||||
|
||||
Dictionary supernodes;
|
||||
std::map<std::string,bool> supernodeDictionaries(Utils::listDirectory("supernodes"));
|
||||
for(std::map<std::string,bool>::iterator sn(supernodeDictionaries.begin());sn!=supernodeDictionaries.end();++sn) {
|
||||
if ((sn->first.length() == 10)&&(!sn->second)) {
|
||||
buf.clear();
|
||||
if (!Utils::readFile((std::string("supernodes/")+sn->first).c_str(),buf)) {
|
||||
std::cout << "Cannot read supernodes/" << sn->first << std::endl;
|
||||
return 1;
|
||||
}
|
||||
supernodes[sn->first] = buf;
|
||||
}
|
||||
}
|
||||
topology["supernodes"] = supernodes.toString();
|
||||
|
||||
if (!topology.sign(topologyAuthority)) {
|
||||
std::cout << "Unable to sign!" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
std::cout << topology.toString();
|
||||
return 0;
|
||||
}
|
1
topology/topology.public
Normal file
1
topology/topology.public
Normal file
@ -0,0 +1 @@
|
||||
77792b1c02:0:b5c361e8e9c2154e82c3e902fdfc337468b092a7c4d8dc685c37eb10ee4f3c17cc0bb1d024167e8cb0824d12263428373582da3d0a9a14b36e4546c317e811e6
|
Loading…
x
Reference in New Issue
Block a user