0
0
mirror of https://github.com/cjdelisle/cjdns synced 2025-10-06 00:32:50 +02:00
Files
cjdns/interface/ETHInterface_admin.c

216 lines
8.2 KiB
C

/* 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 "interface/ETHInterface_admin.h"
#include "exception/Err.h"
#include "interface/ETHInterface.h"
#include "benc/Int.h"
#include "admin/Admin.h"
#include "crypto/Key.h"
#include "memory/Allocator.h"
#include "net/InterfaceController.h"
#include "rust/cjdns_sys/RTypes.h"
#include "rust/cjdns_sys/Rffi.h"
#include "util/AddrTools.h"
#include "util/Identity.h"
struct Context
{
EventBase_t* eventBase;
struct Allocator* alloc;
struct Log* logger;
struct Admin* admin;
struct InterfaceController* ic;
Identity
};
static void beginConnection(Dict* args,
void* vcontext,
String* txid,
struct Allocator* requestAlloc)
{
struct Context* ctx = Identity_check((struct Context*) vcontext);
String* password = Dict_getStringC(args, "password");
String* login = Dict_getStringC(args, "login");
String* publicKey = Dict_getStringC(args, "publicKey");
String* macAddress = Dict_getStringC(args, "macAddress");
int64_t* interfaceNumber = Dict_getIntC(args, "interfaceNumber");
uint32_t ifNum = (interfaceNumber) ? ((uint32_t) *interfaceNumber) : 0;
String* peerName = Dict_getStringC(args, "peerName");
int64_t* versionP = Dict_getIntC(args, "version");
int version = Version_DEFAULT_ASSUMPTION;
if (versionP) { version = *versionP; }
char* error = "none";
uint8_t pkBytes[32];
struct ETHInterface_Sockaddr sockaddr = {
.generic = {
.addrLen = ETHInterface_Sockaddr_SIZE
}
};
if (Key_parse(publicKey, pkBytes, NULL)) {
error = "invalid publicKey";
} else if (macAddress->len < 17 || AddrTools_parseMac(sockaddr.mac, macAddress->bytes)) {
error = "invalid macAddress";
} else {
int ret = InterfaceController_bootstrapPeer(
ctx->ic, ifNum, pkBytes, &sockaddr.generic, password, login, peerName, version);
if (ret == InterfaceController_bootstrapPeer_BAD_IFNUM) {
error = "invalid interfaceNumber";
} else if (ret == InterfaceController_bootstrapPeer_BAD_KEY) {
error = "invalid publicKey";
} else if (ret == InterfaceController_bootstrapPeer_OUT_OF_SPACE) {
error = "no more space to register with the switch.";
} else if (ret) {
error = "InterfaceController_bootstrapPeer(internal_error)";
}
}
Dict* out = Dict_new(requestAlloc);
Dict_putStringC(out, "error", String_new(error, requestAlloc), requestAlloc);
Admin_sendMessage(out, txid, ctx->admin);
}
static void newInterface(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
{
struct Context* const ctx = Identity_check((struct Context*) vcontext);
String* const bindDevice = Dict_getStringC(args, "bindDevice");
struct Allocator* const alloc = Allocator_child(ctx->alloc);
struct ETHInterface* ethIf = NULL;
RTypes_Error_t* er = ETHInterface_new(&ethIf, ctx->eventBase, bindDevice->bytes, alloc, ctx->logger);
if (er) {
Dict* out = Dict_new(requestAlloc);
const char* emsg = Rffi_printError(er, requestAlloc);
Dict_putStringCC(out, "error", emsg, requestAlloc);
Admin_sendMessage(out, txid, ctx->admin);
Allocator_free(alloc);
return;
}
String* ifname = String_printf(requestAlloc, "ETH/%s", bindDevice->bytes);
struct InterfaceController_Iface* ici = InterfaceController_newIface(ctx->ic, ifname, alloc);
Iface_plumb(&ici->addrIf, ethIf->generic.iface);
Dict* out = Dict_new(requestAlloc);
Dict_putStringCC(out, "error", "none", requestAlloc);
Dict_putIntC(out, "interfaceNumber", ici->ifNum, requestAlloc);
Admin_sendMessage(out, txid, ctx->admin);
}
static void beacon(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
{
int64_t* stateP = Dict_getIntC(args, "state");
int64_t* ifNumP = Dict_getIntC(args, "interfaceNumber");
uint32_t ifNum = (ifNumP) ? ((uint32_t) *ifNumP) : 0;
uint32_t state = (stateP) ? ((uint32_t) *stateP) : 0xffffffff;
struct Context* ctx = Identity_check((struct Context*) vcontext);
char* error = NULL;
int ret = InterfaceController_beaconState(ctx->ic, ifNum, state);
if (ret == InterfaceController_beaconState_NO_SUCH_IFACE) {
error = "invalid interfaceNumber";
} else if (ret == InterfaceController_beaconState_INVALID_STATE) {
error = "invalid state";
} else if (ret) {
error = "internal";
}
if (error) {
Dict* out = Dict_new(requestAlloc);
Dict_putStringCC(out, "error", error, requestAlloc);
Admin_sendMessage(out, txid, ctx->admin);
return;
}
char* stateStr = "disabled";
if (state == InterfaceController_beaconState_newState_ACCEPT) {
stateStr = "accepting";
} else if (state == InterfaceController_beaconState_newState_SEND) {
stateStr = "sending and accepting";
}
Dict out = Dict_CONST(
String_CONST("error"), String_OBJ(String_CONST("none")), Dict_CONST(
String_CONST("state"), Int_OBJ(state), Dict_CONST(
String_CONST("stateName"), String_OBJ(String_CONST(stateStr)), NULL
)));
Admin_sendMessage(&out, txid, ctx->admin);
}
static void listDevices(Dict* args, void* vcontext, String* txid, struct Allocator* requestAlloc)
{
struct Context* ctx = Identity_check((struct Context*) vcontext);
List* devices = NULL;
RTypes_Error_t* er = ETHInterface_listDevices(&devices, requestAlloc);
if (er) {
Dict* out = Dict_new(requestAlloc);
const char* errp = Rffi_printError(er, requestAlloc);
Dict_putStringCC(out, "error", errp, requestAlloc);
Admin_sendMessage(out, txid, ctx->admin);
return;
}
Dict* out = Dict_new(requestAlloc);
Dict_putStringCC(out, "error", "none", requestAlloc);
Dict_putListC(out, "devices", devices, requestAlloc);
Admin_sendMessage(out, txid, ctx->admin);
}
void ETHInterface_admin_register(EventBase_t* base,
struct Allocator* alloc,
struct Log* logger,
struct Admin* admin,
struct InterfaceController* ic)
{
struct Context* ctx = Allocator_clone(alloc, (&(struct Context) {
.eventBase = base,
.alloc = alloc,
.logger = logger,
.admin = admin,
.ic = ic
}));
Identity_set(ctx);
Admin_registerFunction("ETHInterface_new", newInterface, ctx, true,
((struct Admin_FunctionArg[]) {
{ .name = "bindDevice", .required = 1, .type = "String" }
}), admin);
Admin_registerFunction("ETHInterface_beginConnection",
beginConnection, ctx, true, ((struct Admin_FunctionArg[]) {
{ .name = "interfaceNumber", .required = 0, .type = "Int" },
{ .name = "password", .required = 0, .type = "String" },
{ .name = "publicKey", .required = 1, .type = "String" },
{ .name = "macAddress", .required = 1, .type = "String" },
{ .name = "login", .required = 0, .type = "String" },
{ .name = "peerName", .required = 0, .type = "String" },
{ .name = "version", .required = 0, .type = "Int" },
}), admin);
Admin_registerFunction("ETHInterface_beacon", beacon, ctx, true,
((struct Admin_FunctionArg[]) {
{ .name = "interfaceNumber", .required = 0, .type = "Int" },
{ .name = "state", .required = 0, .type = "Int" }
}), admin);
Admin_registerFunction("ETHInterface_listDevices", listDevices, ctx, true, NULL, admin);
}