123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /* 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 "interface/ETHInterface.h"
- #include "benc/Int.h"
- #include "admin/Admin.h"
- #include "crypto/Key.h"
- #include "memory/Allocator.h"
- #include "net/InterfaceController.h"
- #include "util/AddrTools.h"
- #include "util/Identity.h"
- struct Context
- {
- struct EventBase* 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");
- 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, ctx->alloc);
- 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 Er_Ret* er = NULL;
- struct ETHInterface* ethIf =
- Er_check(&er, ETHInterface_new(ctx->eventBase, bindDevice->bytes, alloc, ctx->logger));
- if (er) {
- Dict* out = Dict_new(requestAlloc);
- Dict_putStringCC(out, "error", er->message, 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, ðIf->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);
- struct Er_Ret* er = NULL;
- List* devices = Er_check(&er, ETHInterface_listDevices(requestAlloc));
- if (er) {
- Dict* out = Dict_new(requestAlloc);
- Dict_putStringCC(out, "error", er->message, 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(struct EventBase* 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" }
- }), 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);
- }
|