123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- /* 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/>.
- */
- #ifdef SUBNODE
- // TODO(cjd): Subnode beacon testing
- int main()
- {
- return 0;
- }
- #else
- #include "crypto/Key.h"
- #include "io/FileWriter.h"
- #include "memory/MallocAllocator.h"
- #include "memory/Allocator.h"
- #include "crypto/random/Random.h"
- #include "interface/Iface.h"
- #include "util/Base32.h"
- #include "util/Checksum.h"
- #include "util/log/WriterLog.h"
- #include "test/TestFramework.h"
- #include "wire/Headers.h"
- #include "wire/Ethernet.h"
- #include "interface/tuntap/TUNMessageType.h"
- #include "util/Hex.h"
- #include "util/events/Time.h"
- #include "util/events/Timeout.h"
- #include "dht/dhtcore/NodeStore.h"
- #include "dht/Pathfinder_pvt.h"
- #include <stdio.h>
- struct TwoNodes;
- typedef void (RunTest)(struct TwoNodes* ctx);
- struct TwoNodes
- {
- struct TestFramework* nodeB;
- struct Iface tunB;
- struct TestFramework* nodeA;
- struct Iface tunA;
- int messageFrom;
- bool beaconsSent;
- struct Timeout* checkLinkageTimeout;
- struct Log* logger;
- struct EventBase* base;
- struct Allocator* alloc;
- uint64_t startTime;
- RunTest* runTest;
- Identity
- };
- #define TUNB 2
- #define TUNA 1
- static Iface_DEFUN incomingTunB(struct Message* msg, struct Iface* tunB)
- {
- struct TwoNodes* tn = Identity_containerOf(tunB, struct TwoNodes, tunB);
- uint16_t t = Er_assert(TUNMessageType_pop(msg));
- Assert_true(t == Ethernet_TYPE_IP6);
- Er_assert(Message_eshift(msg, -Headers_IP6Header_SIZE));
- printf("Message from TUN in node B [%s]\n", msg->bytes);
- tn->messageFrom = TUNB;
- return Error(NONE);
- }
- static Iface_DEFUN incomingTunA(struct Message* msg, struct Iface* tunA)
- {
- struct TwoNodes* tn = Identity_containerOf(tunA, struct TwoNodes, tunA);
- uint16_t t = Er_assert(TUNMessageType_pop(msg));
- Assert_true(t == Ethernet_TYPE_IP6);
- Er_assert(Message_eshift(msg, -Headers_IP6Header_SIZE));
- uint8_t buff[1024];
- Hex_encode(buff, 1024, msg->bytes, msg->length);
- printf("Message from TUN in node A [%s] [%d] [%s]\n", msg->bytes, msg->length, buff);
- tn->messageFrom = TUNA;
- return Error(NONE);
- }
- static void notLinkedYet(struct TwoNodes* ctx)
- {
- uint64_t now = Time_currentTimeMilliseconds(ctx->base);
- if ((now - ctx->startTime) > 5000) {
- Assert_failure("Failed to link in 5 seconds");
- }
- }
- static void checkLinkage(void* vTwoNodes)
- {
- struct TwoNodes* ctx = Identity_check((struct TwoNodes*) vTwoNodes);
- if (!ctx->beaconsSent) {
- if (Pathfinder_getNodeStore(ctx->nodeA->pathfinder) &&
- Pathfinder_getNodeStore(ctx->nodeB->pathfinder))
- {
- Log_debug(ctx->logger, "Linking A and B");
- TestFramework_linkNodes(ctx->nodeB, ctx->nodeA, true);
- ctx->beaconsSent = true;
- }
- return;
- }
- if (Pathfinder_getNodeStore(ctx->nodeA->pathfinder)->nodeCount < 2) {
- notLinkedYet(ctx);
- return;
- }
- Log_debug(ctx->logger, "A seems to be linked with B");
- if (Pathfinder_getNodeStore(ctx->nodeB->pathfinder)->nodeCount < 2) {
- notLinkedYet(ctx);
- return;
- }
- Log_debug(ctx->logger, "B seems to be linked with A");
- Log_debug(ctx->logger, "\n\nSetup Complete\n\n");
- Timeout_clearTimeout(ctx->checkLinkageTimeout);
- ctx->runTest(ctx);
- }
- static void start(struct Allocator* alloc,
- struct Log* logger,
- struct EventBase* base,
- struct Random* rand,
- RunTest* runTest)
- {
- #if defined(ADDRESS_PREFIX) || defined(ADDRESS_PREFIX_BITS)
- uint8_t address[16];
- uint8_t publicKey[32];
- uint8_t privateKeyA[32];
- Key_gen(address, publicKey, privateKeyA, rand);
- struct TestFramework* a =
- TestFramework_setUp((char*) privateKeyA, alloc, base, rand, logger);
- uint8_t privateKeyB[32];
- Key_gen(address, publicKey, privateKeyB, rand);
- struct TestFramework* b =
- TestFramework_setUp((char*) privateKeyB, alloc, base, rand, logger);
- #else
- struct TestFramework* a =
- TestFramework_setUp("\xad\x7e\xa3\x26\xaa\x01\x94\x0a\x25\xbc\x9e\x01\x26\x22\xdb\x69"
- "\x4f\xd9\xb4\x17\x7c\xf3\xf8\x91\x16\xf3\xcf\xe8\x5c\x80\xe1\x4a",
- alloc, base, rand, logger);
- //"publicKey": "kmzm4w0kj9bswd5qmx74nu7kusv5pj40vcsmp781j6xxgpd59z00.k",
- //"ipv6": "fc41:94b5:0925:7ba9:3959:11ab:a006:367a",
- struct TestFramework* b =
- TestFramework_setUp("\xd8\x54\x3e\x70\xb9\xae\x7c\x41\xbc\x18\xa4\x9a\x9c\xee\xca\x9c"
- "\xdc\x45\x01\x96\x6b\xbd\x7e\x76\xcf\x3a\x9f\xbc\x12\xed\x8b\xb4",
- alloc, base, rand, logger);
- //"publicKey": "vz21tg07061s8v9mckrvgtfds7j2u5lst8cwl6nqhp81njrh5wg0.k",
- //"ipv6": "fc1f:5b96:e1c5:625d:afde:2523:a7fa:383a",
- #endif
- struct TwoNodes* out = Allocator_calloc(alloc, sizeof(struct TwoNodes), 1);
- Identity_set(out);
- out->tunB.send = incomingTunB;
- out->tunA.send = incomingTunA;
- Iface_plumb(&out->tunB, b->tunIf);
- Iface_plumb(&out->tunA, a->tunIf);
- out->nodeB = b;
- out->nodeA = a;
- out->logger = logger;
- out->checkLinkageTimeout = Timeout_setInterval(checkLinkage, out, 1, base, alloc);
- out->base = base;
- out->startTime = Time_currentTimeMilliseconds(base);
- out->runTest = runTest;
- out->alloc = alloc;
- Log_debug(a->logger, "Waiting for nodes to link asynchronously...");
- }
- #define STACKMSG(name, messageLength, amountOfPadding) \
- uint8_t UniqueName_get()[messageLength + amountOfPadding]; \
- name = &(struct Message){ \
- .length = messageLength, \
- .bytes = UniqueName_last() + amountOfPadding, \
- .padding = amountOfPadding, \
- .capacity = messageLength \
- }
- static void sendMessage(struct TwoNodes* tn,
- char* message,
- struct TestFramework* from,
- struct TestFramework* to)
- {
- struct Message* msg;
- STACKMSG(msg, 64, 512);
- Bits_memcpy(msg->bytes, message, CString_strlen(message) + 1);
- msg->length = CString_strlen(message) + 1;
- TestFramework_craftIPHeader(msg, from->ip, to->ip);
- msg = Message_clone(msg, from->alloc);
- struct Iface* fromIf;
- if (from == tn->nodeA) {
- fromIf = &tn->tunA;
- } else if (from == tn->nodeB) {
- fromIf = &tn->tunB;
- } else {
- Assert_true(false);
- }
- Er_assert(TUNMessageType_push(msg, Ethernet_TYPE_IP6));
- Iface_send(fromIf, msg);
- if (to == tn->nodeA) {
- Assert_true(tn->messageFrom == TUNA);
- } else if (to == tn->nodeB) {
- Assert_true(tn->messageFrom == TUNB);
- } else {
- Assert_true(false);
- }
- TestFramework_assertLastMessageUnaltered(tn->nodeA);
- TestFramework_assertLastMessageUnaltered(tn->nodeB);
- tn->messageFrom = 0;
- }
- static void runTest(struct TwoNodes* tn)
- {
- sendMessage(tn, "Hello World!", tn->nodeA, tn->nodeB);
- sendMessage(tn, "Hello cjdns!", tn->nodeB, tn->nodeA);
- sendMessage(tn, "send", tn->nodeA, tn->nodeB);
- sendMessage(tn, "a", tn->nodeB, tn->nodeA);
- sendMessage(tn, "few", tn->nodeA, tn->nodeB);
- sendMessage(tn, "packets", tn->nodeB, tn->nodeA);
- sendMessage(tn, "to", tn->nodeA, tn->nodeB);
- sendMessage(tn, "make", tn->nodeB, tn->nodeA);
- sendMessage(tn, "sure", tn->nodeA, tn->nodeB);
- sendMessage(tn, "the", tn->nodeB, tn->nodeA);
- sendMessage(tn, "cryptoauth", tn->nodeA, tn->nodeB);
- sendMessage(tn, "can", tn->nodeB, tn->nodeA);
- sendMessage(tn, "establish", tn->nodeA, tn->nodeB);
- Log_debug(tn->logger, "\n\nTest passed, shutting down\n\n");
- Allocator_free(tn->alloc);
- }
- /** Check if nodes A and C can communicate via B without A knowing that C exists. */
- int main()
- {
- struct Allocator* alloc = MallocAllocator_new(1<<22);
- struct Writer* logwriter = FileWriter_new(stdout, alloc);
- struct Log* logger = WriterLog_new(logwriter, alloc);
- struct Random* rand = Random_new(alloc, logger, NULL);
- struct EventBase* base = EventBase_new(alloc);
- start(Allocator_child(alloc), logger, base, rand, runTest);
- EventBase_beginLoop(base);
- Allocator_free(alloc);
- return 0;
- }
- #endif
|