123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #include "admin/Admin.h"
- #include "benc/Dict.h"
- #include "benc/String.h"
- #include "benc/Int.h"
- #include "crypto/Key.h"
- #include "dht/dhtcore/Node.h"
- #include "dht/dhtcore/NodeStore.h"
- #include "dht/dhtcore/NodeStore_admin.h"
- #include "memory/Allocator.h"
- #include "switch/EncodingScheme.h"
- #include "util/AddrTools.h"
- #include "util/version/Version.h"
- struct Context {
- struct Admin* admin;
- struct Allocator* alloc;
- struct NodeStore* store;
- Identity
- };
- #define ENTRIES_PER_PAGE 4
- static void dumpTable(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
- {
- struct Context* ctx = Identity_check((struct Context*) vcontext);
- int64_t* page = Dict_getIntC(args, "page");
- int ctr = (page) ? *page * ENTRIES_PER_PAGE : 0;
- Dict* out = Dict_new(requestAlloc);
- List* table = List_new(requestAlloc);
- struct Node_Two* nn = NULL;
- for (int i = 0; i < ctr+ENTRIES_PER_PAGE; i++) {
- nn = NodeStore_getNextNode(ctx->store, nn);
- if (!nn) { break; }
- if (i < ctr) { continue; }
- Dict* nodeDict = Dict_new(requestAlloc);
- String* ip = String_newBinary(NULL, 39, requestAlloc);
- Address_printIp(ip->bytes, &nn->address);
- Dict_putStringC(nodeDict, "ip", ip, requestAlloc);
- String* addr = Address_toStringKey(&nn->address, requestAlloc);
- Dict_putStringC(nodeDict, "addr", addr, requestAlloc);
- String* path = String_newBinary(NULL, 19, requestAlloc);
- AddrTools_printPath(path->bytes, nn->address.path);
- Dict_putStringC(nodeDict, "path", path, requestAlloc);
- Dict_putIntC(nodeDict, "link", Node_getCost(nn), requestAlloc);
- Dict_putIntC(nodeDict, "version", nn->address.protocolVersion, requestAlloc);
- Dict_putIntC(nodeDict,
- "time",
- NodeStore_timeSinceLastPing(ctx->store, nn),
- requestAlloc);
- Dict_putIntC(nodeDict,
- "bucket",
- NodeStore_bucketForAddr(ctx->store->selfAddress, &nn->address),
- requestAlloc);
- List_addDict(table, nodeDict, requestAlloc);
- }
- Dict_putListC(out, "routingTable", table, requestAlloc);
- if (nn) {
- Dict_putIntC(out, "more", 1, requestAlloc);
- }
- Dict_putIntC(out, "count", ctx->store->nodeCount, requestAlloc);
- Dict_putIntC(out, "peers", ctx->store->peerCount, requestAlloc);
- Dict_putStringC(out, "deprecation",
- String_CONST("ip,path,version will soon be removed"), requestAlloc);
- Admin_sendMessage(out, txid, ctx->admin);
- }
- static int linkCount(struct Node_Two* parent)
- {
- struct Node_Link* link = NULL;
- int i = 0;
- do {
- link = NodeStore_nextLink(parent, link);
- i++;
- } while (link);
- return i;
- }
- static struct Node_Link* getLinkByNum(struct Node_Two* parent, int linkNum)
- {
- struct Node_Link* link = NULL;
- for (int i = 0; i <= linkNum; i++) {
- link = NodeStore_nextLink(parent, link);
- if (!link) { break; }
- }
- return link;
- }
- static void getLink(Dict* args, void* vcontext, String* txid, struct Allocator* alloc)
- {
- struct Context* ctx = Identity_check((struct Context*) vcontext);
- Dict* ret = Dict_new(alloc);
- Dict* result = Dict_new(alloc);
- Dict_putDict(ret, String_new("result", alloc), result, alloc);
- Dict_putString(ret, String_new("error", alloc), String_new("none", alloc), alloc);
- struct Node_Link* link = NULL;
- struct Node_Two* node = NULL;
- String* ipStr = Dict_getString(args, String_new("parent", alloc));
- int64_t* linkNum = Dict_getInt(args, String_new("linkNum", alloc));
- if (ipStr && ipStr->len) {
- uint8_t ip[16];
- if (AddrTools_parseIp(ip, ipStr->bytes)) {
- Dict_remove(ret, String_CONST("result"));
- Dict_putString(ret,
- String_new("error", alloc),
- String_new("parse_parent", alloc),
- alloc);
- Admin_sendMessage(ret, txid, ctx->admin);
- return;
- } else if (!(node = NodeStore_nodeForAddr(ctx->store, ip))) {
- Dict_putString(ret,
- String_new("error", alloc),
- String_new("not_found", alloc),
- alloc);
- Admin_sendMessage(ret, txid, ctx->admin);
- return;
- } else if (!(link = getLinkByNum(node, *linkNum))) {
- Dict_putString(ret,
- String_new("error", alloc),
- String_new("unknown", alloc),
- alloc);
- Admin_sendMessage(ret, txid, ctx->admin);
- return;
- }
- } else {
- for (int i = 0; i <= *linkNum; i++) {
- link = NodeStore_getNextLink(ctx->store, link);
- if (!link) { break; }
- }
- if (!link) {
- Dict_putString(ret,
- String_new("error", alloc),
- String_new("not_found", alloc),
- alloc);
- Admin_sendMessage(ret, txid, ctx->admin);
- return;
- }
- }
- Dict_putInt(result,
- String_new("inverseLinkEncodingFormNumber", alloc),
- link->inverseLinkEncodingFormNumber,
- alloc);
- Dict_putInt(result, String_new("linkCost", alloc), link->linkCost, alloc);
- Dict_putInt(result, String_new("isOneHop", alloc), Node_isOneHopLink(link), alloc);
- int bestParent = (Node_getBestParent(link->child) == link);
- Dict_putInt(result, String_new("bestParent", alloc), bestParent, alloc);
- String* cannonicalLabel = String_newBinary(NULL, 19, alloc);
- AddrTools_printPath(cannonicalLabel->bytes, link->cannonicalLabel);
- Dict_putString(result, String_new("cannonicalLabel", alloc), cannonicalLabel, alloc);
- String* parent = Address_toStringKey(&link->parent->address, alloc);
- Dict_putString(result, String_new("parent", alloc), parent, alloc);
- String* child = Address_toStringKey(&link->child->address, alloc);
- Dict_putString(result, String_new("child", alloc), child, alloc);
- Admin_sendMessage(ret, txid, ctx->admin);
- }
- static void nodeForAddr(Dict* args, void* vcontext, String* txid, struct Allocator* alloc)
- {
- struct Context* ctx = Identity_check((struct Context*) vcontext);
- Dict* ret = Dict_new(alloc);
- Dict* result = Dict_new(alloc);
- Dict_putDict(ret, String_new("result", alloc), result, alloc);
- Dict_putString(ret, String_new("error", alloc), String_new("none", alloc), alloc);
- // no ipStr specified --> return self-node
- struct Node_Two* node = ctx->store->selfNode;
- String* ipStr = Dict_getString(args, String_new("ip", alloc));
- uint8_t ip[16];
- while (ipStr) {
- if (AddrTools_parseIp(ip, ipStr->bytes)) {
- Dict_remove(ret, String_CONST("result"));
- Dict_putString(ret,
- String_new("error", alloc),
- String_new("parse_ip", alloc),
- alloc);
- } else if (!(node = NodeStore_nodeForAddr(ctx->store, ip))) {
- // not found
- } else {
- break;
- }
- Admin_sendMessage(ret, txid, ctx->admin);
- return;
- }
- Dict_putInt(result, String_new("protocolVersion", alloc), node->address.protocolVersion, alloc);
- String* key = Key_stringify(node->address.key, alloc);
- Dict_putString(result, String_new("key", alloc), key, alloc);
- uint32_t count = linkCount(node);
- Dict_putInt(result, String_new("linkCount", alloc), count, alloc);
- Dict_putInt(result, String_new("cost", alloc), Node_getCost(node), alloc);
- List* encScheme = EncodingScheme_asList(node->encodingScheme, alloc);
- Dict_putList(result, String_new("encodingScheme", alloc), encScheme, alloc);
- Dict* bestParent = Dict_new(alloc);
- String* parentIp = String_newBinary(NULL, 39, alloc);
- AddrTools_printIp(parentIp->bytes, Node_getBestParent(node)->parent->address.ip6.bytes);
- Dict_putStringC(bestParent, "ip", parentIp, alloc);
- String* parentChildLabel = String_newBinary(NULL, 19, alloc);
- AddrTools_printPath(parentChildLabel->bytes, Node_getBestParent(node)->cannonicalLabel);
- Dict_putStringC(bestParent, "parentChildLabel", parentChildLabel, alloc);
- int isOneHop = Node_isOneHopLink(Node_getBestParent(node));
- Dict_putIntC(bestParent, "isOneHop", isOneHop, alloc);
- Dict_putDictC(result, "bestParent", bestParent, alloc);
- String* bestLabel = String_newBinary(NULL, 19, alloc);
- AddrTools_printPath(bestLabel->bytes, node->address.path);
- Dict_putStringC(result, "routeLabel", bestLabel, alloc);
- Admin_sendMessage(ret, txid, ctx->admin);
- }
- static void getRouteLabel(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
- {
- struct Context* ctx = Identity_check((struct Context*) vcontext);
- char* err = NULL;
- String* pathToParentS = Dict_getStringC(args, "pathToParent");
- uint64_t pathToParent = 0;
- if (pathToParentS->len != 19 || AddrTools_parsePath(&pathToParent, pathToParentS->bytes)) {
- err = "parse_pathToParent";
- }
- String* pathParentToChildS = Dict_getStringC(args, "pathParentToChild");
- uint64_t pathParentToChild = 0;
- if (pathParentToChildS->len != 19
- || AddrTools_parsePath(&pathParentToChild, pathParentToChildS->bytes))
- {
- err = "parse_pathParentToChild";
- }
- uint64_t label = UINT64_MAX;
- if (!err) {
- label = NodeStore_getRouteLabel(ctx->store, pathToParent, pathParentToChild);
- err = NodeStore_getRouteLabel_strerror(label);
- }
- Dict* response = Dict_new(requestAlloc);
- if (!err) {
- String* printedPath = String_newBinary(NULL, 19, requestAlloc);
- AddrTools_printPath(printedPath->bytes, label);
- Dict_putString(response, String_new("result", requestAlloc), printedPath, requestAlloc);
- Dict_putString(response,
- String_new("error", requestAlloc),
- String_new("none", requestAlloc),
- requestAlloc);
- Admin_sendMessage(response, txid, ctx->admin);
- } else {
- Dict_putString(response,
- String_new("error", requestAlloc),
- String_new(err, requestAlloc),
- requestAlloc);
- Admin_sendMessage(response, txid, ctx->admin);
- }
- }
- static void getFullVerify(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
- {
- struct Context* ctx = Identity_check((struct Context*) vcontext);
- Dict* response = Dict_new(requestAlloc);
- Dict_putStringCC(response, "error", "none", requestAlloc);
- Dict_putIntC(response, "fullVerify", NodeStore_getFullVerify(ctx->store), requestAlloc);
- Admin_sendMessage(response, txid, ctx->admin);
- }
- static void setFullVerify(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
- {
- struct Context* ctx = Identity_check((struct Context*) vcontext);
- int64_t* fv = Dict_getIntC(args, "fullVerify");
- NodeStore_setFullVerify(ctx->store, (int) *fv);
- Dict* response = Dict_new(requestAlloc);
- Dict_putStringCC(response, "error", "none", requestAlloc);
- Admin_sendMessage(response, txid, ctx->admin);
- }
- void NodeStore_admin_register(struct NodeStore* nodeStore,
- struct Admin* admin,
- struct Allocator* alloc)
- {
- struct Context* ctx = Allocator_clone(alloc, (&(struct Context) {
- .admin = admin,
- .alloc = alloc,
- .store = nodeStore
- }));
- Identity_set(ctx);
- Admin_registerFunction("NodeStore_dumpTable", dumpTable, ctx, false,
- ((struct Admin_FunctionArg[]) {
- { .name = "page", .required = true, .type = "Int" },
- }), admin);
- Admin_registerFunction("NodeStore_getLink", getLink, ctx, false,
- ((struct Admin_FunctionArg[]) {
- { .name = "parent", .required = false, .type = "String" },
- { .name = "linkNum", .required = true, .type = "Int" },
- }), admin);
- Admin_registerFunction("NodeStore_nodeForAddr", nodeForAddr, ctx, false,
- ((struct Admin_FunctionArg[]) {
- { .name = "ip", .required = false, .type = "String" },
- }), admin);
- Admin_registerFunction("NodeStore_getRouteLabel", getRouteLabel, ctx, true,
- ((struct Admin_FunctionArg[]) {
- { .name = "pathToParent", .required = true, .type = "String" },
- { .name = "pathParentToChild", .required = true, .type = "String" }
- }), admin);
- Admin_registerFunction("NodeStore_setFullVerify", setFullVerify, ctx, true,
- ((struct Admin_FunctionArg[]) {
- { .name = "fullVerify", .required = true, .type = "Int" },
- }), admin);
- Admin_registerFunction("NodeStore_getFullVerify", getFullVerify, ctx, false, NULL, admin);
- }
|