123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* 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 "crypto/Key.h"
- #include "crypto/ReplayProtector.h"
- #include "dht/Address.h"
- #include "net/SessionManager.h"
- #include "net/SessionManager_admin.h"
- #include "util/AddrTools.h"
- #include "util/Identity.h"
- struct Context
- {
- struct Allocator* alloc;
- struct SessionManager* sm;
- struct Admin* admin;
- Identity
- };
- #define ENTRIES_PER_PAGE 64
- static void getHandles(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
- {
- struct Context* context = Identity_check((struct Context*) vcontext);
- struct Allocator* alloc = Allocator_child(context->alloc);
- int64_t* page = Dict_getInt(args, String_CONST("page"));
- int i = (page) ? *page * ENTRIES_PER_PAGE : 0;
- struct SessionManager_HandleList* hList = SessionManager_getHandleList(context->sm, alloc);
- List* list = List_new(alloc);
- for (int counter = 0; i < hList->length && counter++ < ENTRIES_PER_PAGE; i++) {
- List_addInt(list, hList->handles[i], alloc);
- }
- Dict* r = Dict_new(alloc);
- Dict_putList(r, String_CONST("handles"), list, alloc);
- Dict_putInt(r, String_CONST("total"), hList->length, alloc);
- String* more = String_CONST("more");
- if (i < hList->length) {
- Dict_putInt(r, more, 1, alloc);
- }
- Admin_sendMessage(r, txid, context->admin);
- Allocator_free(alloc);
- }
- static void sessionStats(Dict* args,
- void* vcontext,
- String* txid,
- struct Allocator* alloc)
- {
- struct Context* context = Identity_check((struct Context*) vcontext);
- int64_t* handleP = Dict_getInt(args, String_CONST("handle"));
- uint32_t handle = *handleP;
- struct SessionManager_Session* session = SessionManager_sessionForHandle(handle, context->sm);
- Dict* r = Dict_new(alloc);
- if (!session) {
- Dict_putString(r, String_CONST("error"), String_CONST("no such session"), alloc);
- Admin_sendMessage(r, txid, context->admin);
- return;
- }
- uint8_t printedAddr[40];
- AddrTools_printIp(printedAddr, session->caSession->herIp6);
- Dict_putString(r, String_CONST("ip6"), String_new(printedAddr, alloc), alloc);
- String* state =
- String_new(CryptoAuth_stateString(CryptoAuth_getState(session->caSession)), alloc);
- Dict_putString(r, String_CONST("state"), state, alloc);
- struct ReplayProtector* rp = &session->caSession->replayProtector;
- Dict_putInt(r, String_CONST("duplicates"), rp->duplicates, alloc);
- Dict_putInt(r, String_CONST("lostPackets"), rp->lostPackets, alloc);
- Dict_putInt(r, String_CONST("receivedOutOfRange"), rp->receivedOutOfRange, alloc);
- struct Address addr;
- Bits_memcpy(addr.key, session->caSession->herPublicKey, 32);
- addr.path = session->sendSwitchLabel;
- addr.protocolVersion = session->version;
- Dict_putString(r, String_CONST("addr"), Address_toString(&addr, alloc), alloc);
- Dict_putString(r, String_CONST("publicKey"),
- Key_stringify(session->caSession->herPublicKey, alloc), alloc);
- Dict_putInt(r, String_CONST("version"), session->version, alloc);
- Dict_putInt(r, String_CONST("handle"), session->receiveHandle, alloc);
- Dict_putInt(r, String_CONST("sendHandle"), session->sendHandle, alloc);
- Dict_putInt(r, String_CONST("timeOfLastIn"), session->timeOfLastIn, alloc);
- Dict_putInt(r, String_CONST("timeOfLastOut"), session->timeOfLastOut, alloc);
- Dict_putString(r, String_CONST("deprecation"),
- String_CONST("publicKey,version will soon be removed"), alloc);
- Admin_sendMessage(r, txid, context->admin);
- return;
- }
- void SessionManager_admin_register(struct SessionManager* sm,
- struct Admin* admin,
- struct Allocator* alloc)
- {
- struct Context* ctx = Allocator_clone(alloc, (&(struct Context) {
- .alloc = alloc,
- .sm = sm,
- .admin = admin
- }));
- Identity_set(ctx);
- Admin_registerFunction("SessionManager_getHandles", getHandles, ctx, true,
- ((struct Admin_FunctionArg[]) {
- { .name = "page", .required = 0, .type = "Int" }
- }), admin);
- Admin_registerFunction("SessionManager_sessionStats", sessionStats, ctx, true,
- ((struct Admin_FunctionArg[]) {
- { .name = "handle", .required = 1, .type = "Int" }
- }), admin);
- }
|