123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- /* 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 <http://www.gnu.org/licenses/>.
- */
- #include "admin/Admin.h"
- #include "benc/String.h"
- #include "benc/Dict.h"
- #include "benc/List.h"
- #include "benc/Int.h"
- #include "crypto/AddressCalc.h"
- #include "crypto/Key.h"
- #include "net/InterfaceController.h"
- #include "net/InterfaceController_admin.h"
- #include "util/AddrTools.h"
- struct Context
- {
- struct Allocator* alloc;
- struct InterfaceController* ic;
- struct Admin* admin;
- Identity
- };
- // typical peer record is around 140 benc chars, so can't have very many in 1023
- #define ENTRIES_PER_PAGE 6
- static void adminPeerStats(Dict* args, void* vcontext, String* txid, struct Allocator* alloc)
- {
- struct Context* context = Identity_check((struct Context*)vcontext);
- struct InterfaceController_PeerStats* stats = NULL;
- int64_t* page = Dict_getInt(args, String_CONST("page"));
- int i = (page) ? *page * ENTRIES_PER_PAGE : 0;
- int count = InterfaceController_getPeerStats(context->ic, alloc, &stats);
- String* bytesIn = String_CONST("bytesIn");
- String* bytesOut = String_CONST("bytesOut");
- String* pubKey = String_CONST("publicKey");
- String* addr = String_CONST("addr");
- String* state = String_CONST("state");
- String* last = String_CONST("last");
- String* switchLabel = String_CONST("switchLabel");
- String* isIncoming = String_CONST("isIncoming");
- String* user = String_CONST("user");
- String* version = String_CONST("version");
- String* recvKbps = String_CONST("recvKbps");
- String* sendKbps = String_CONST("sendKbps");
- String* duplicates = String_CONST("duplicates");
- String* lostPackets = String_CONST("lostPackets");
- String* receivedOutOfRange = String_CONST("receivedOutOfRange");
- List* list = List_new(alloc);
- for (int counter=0; i < count && counter++ < ENTRIES_PER_PAGE; i++) {
- Dict* d = Dict_new(alloc);
- Dict_putInt(d, bytesIn, stats[i].bytesIn, alloc);
- Dict_putInt(d, bytesOut, stats[i].bytesOut, alloc);
- Dict_putInt(d, recvKbps, stats[i].recvKbps, alloc);
- Dict_putInt(d, sendKbps, stats[i].sendKbps, alloc);
- Dict_putString(d, addr, Address_toString(&stats[i].addr, alloc), alloc);
- Dict_putString(d, pubKey, Key_stringify(stats[i].addr.key, alloc), alloc);
- String* stateString = String_new(InterfaceController_stateString(stats[i].state), alloc);
- Dict_putString(d, state, stateString, alloc);
- Dict_putInt(d, last, stats[i].timeOfLastMessage, alloc);
- uint8_t labelStack[20];
- AddrTools_printPath(labelStack, stats[i].addr.path);
- Dict_putString(d, switchLabel, String_new((char*)labelStack, alloc), alloc);
- Dict_putInt(d, isIncoming, stats[i].isIncomingConnection, alloc);
- Dict_putInt(d, duplicates, stats[i].duplicates, alloc);
- Dict_putInt(d, lostPackets, stats[i].lostPackets, alloc);
- Dict_putInt(d, receivedOutOfRange, stats[i].receivedOutOfRange, alloc);
- if (stats[i].user) {
- Dict_putString(d, user, stats[i].user, alloc);
- }
- uint8_t address[16];
- AddressCalc_addressForPublicKey(address, stats[i].addr.key);
- Dict_putInt(d, version, stats[i].addr.protocolVersion, alloc);
- List_addDict(list, d, alloc);
- }
- Dict* resp = Dict_new(alloc);
- Dict_putList(resp, String_CONST("peers"), list, alloc);
- Dict_putInt(resp, String_CONST("total"), count, alloc);
- if (i < count) {
- Dict_putInt(resp, String_CONST("more"), 1, alloc);
- }
- Dict_putString(resp, String_CONST("deprecation"),
- String_CONST("publicKey,switchLabel,version will soon be removed"), alloc);
- Admin_sendMessage(resp, txid, context->admin);
- }
- static void adminDisconnectPeer(Dict* args,
- void* vcontext,
- String* txid,
- struct Allocator* requestAlloc)
- {
- struct Context* context = Identity_check((struct Context*)vcontext);
- String* pubkeyString = Dict_getString(args, String_CONST("pubkey"));
- // parse the key
- uint8_t pubkey[32];
- uint8_t addr[16];
- int error = Key_parse(pubkeyString, pubkey, addr);
- char* errorMsg = NULL;
- if (error) {
- errorMsg = "bad key";
- } else {
- // try to remove the peer if the key is valid
- error = InterfaceController_disconnectPeer(context->ic,pubkey);
- if (error) {
- errorMsg = "no peer found for that key";
- }
- }
- Dict* response = Dict_new(requestAlloc);
- Dict_putInt(response, String_CONST("success"), error ? 0 : 1, requestAlloc);
- if (error) {
- Dict_putString(response, String_CONST("error"), String_CONST(errorMsg), requestAlloc);
- }
- Admin_sendMessage(response, txid, context->admin);
- }
- static void adminResetPeering(Dict* args,
- void* vcontext,
- String* txid,
- struct Allocator* requestAlloc)
- {
- struct Context* context = Identity_check((struct Context*)vcontext);
- String* pubkeyString = Dict_getString(args, String_CONST("pubkey"));
- int error = 0;
- char* errorMsg = NULL;
- if (pubkeyString) {
- // parse the key
- uint8_t pubkey[32];
- uint8_t addr[16];
- error = Key_parse(pubkeyString, pubkey, addr);
- if (error) {
- errorMsg = "bad key";
- } else {
- InterfaceController_resetPeering(context->ic, pubkey);
- }
- } else {
- // reset all
- InterfaceController_resetPeering(context->ic, NULL);
- }
- Dict* response = Dict_new(requestAlloc);
- Dict_putInt(response, String_CONST("success"), error ? 0 : 1, requestAlloc);
- if (error) {
- Dict_putString(response, String_CONST("error"), String_CONST(errorMsg), requestAlloc);
- }
- Admin_sendMessage(response, txid, context->admin);
- }
- /*
- static resetSession(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
- {
- struct Context* context = Identity_check((struct Context*)vcontext);
- String* pubkeyString = Dict_getString(args, String_CONST("pubkey"));
- // parse the key
- uint8_t pubkey[32];
- uint8_t addr[16];
- int error = Key_parse(pubkeyString, pubkey, addr);
- char* errorMsg = NULL;
- if (error) {
- errorMsg = "bad key";
- } else {
- // try to remove the peer if the key is valid
- error = InterfaceController_disconnectPeer(context->ic,pubkey);
- if (error) {
- errorMsg = "no peer found for that key";
- }
- }
- Dict* response = Dict_new(requestAlloc);
- Dict_putInt(response, String_CONST("success"), error ? 0 : 1, requestAlloc);
- if (error) {
- Dict_putString(response, String_CONST("error"), String_CONST(errorMsg), requestAlloc);
- }
- Admin_sendMessage(response, txid, context->admin);
- }*/
- void InterfaceController_admin_register(struct InterfaceController* ic,
- struct Admin* admin,
- struct Allocator* allocator)
- {
- struct Allocator* alloc = Allocator_child(allocator);
- struct Context* ctx = Allocator_clone(alloc, (&(struct Context) {
- .alloc = alloc,
- .ic = ic,
- .admin = admin
- }));
- Identity_set(ctx);
- Admin_registerFunction("InterfaceController_peerStats", adminPeerStats, ctx, false,
- ((struct Admin_FunctionArg[]) {
- { .name = "page", .required = 0, .type = "Int" }
- }), admin);
- Admin_registerFunction("InterfaceController_resetPeering", adminResetPeering, ctx, true,
- ((struct Admin_FunctionArg[]) {
- { .name = "pubkey", .required = 0, .type = "String" }
- }), admin);
- Admin_registerFunction("InterfaceController_disconnectPeer", adminDisconnectPeer, ctx, true,
- ((struct Admin_FunctionArg[]) {
- { .name = "pubkey", .required = 1, .type = "String" }
- }), admin);
- }
|