123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- /* 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/tuntap/TUNMessageType.h"
- #include "interface/tuntap/test/TUNTools.h"
- #include "util/events/UDPAddrIface.h"
- #include "exception/Er.h"
- #include "util/events/Timeout.h"
- #include "wire/Ethernet.h"
- #include "wire/Headers.h"
- #include "wire/Error.h"
- #ifdef win32
- #include <windows.h>
- #define sleep(x) Sleep(1000*x)
- #else
- #include <unistd.h>
- #endif
- static AddrIface_t* setupUDP(struct EventBase* base,
- struct Sockaddr* bindAddr,
- struct Allocator* allocator,
- struct Log* logger)
- {
- // Mac OSX and BSD do not set up their TUN devices synchronously.
- // We'll just keep on trying until this works.
- struct UDPAddrIface* udp = NULL;
- struct Er_Ret* er = NULL;
- for (int i = 0; i < 20; i++) {
- udp = Er_check(&er, UDPAddrIface_new(base, bindAddr, allocator, logger));
- if (udp) {
- break;
- }
- sleep(1);
- }
- Assert_true(udp);
- return &udp->generic;
- }
- struct TUNTools_pvt
- {
- struct TUNTools pub;
- Identity
- };
- static void sendHello(void* vctx)
- {
- struct TUNTools_pvt* ctx = Identity_check((struct TUNTools_pvt*) vctx);
- struct Allocator* tempAlloc = Allocator_child(ctx->pub.alloc);
- struct Message* msg = Message_new(0, 64, tempAlloc);
- Er_assert(Message_epush(msg, "Hello World", 12));
- Er_assert(Message_epush(msg, ctx->pub.tunDestAddr, ctx->pub.tunDestAddr->addrLen));
- Iface_send(&ctx->pub.udpIface, msg);
- Allocator_free(tempAlloc);
- }
- const uint8_t* TUNTools_testIP6AddrA = (uint8_t[])
- {
- 0xfd,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1
- };
- const uint8_t* TUNTools_testIP6AddrB = (uint8_t[])
- {
- 0xfd,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2
- };
- const uint8_t* TUNTools_testIP6AddrC = (uint8_t[])
- {
- 0xfd,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5
- };
- Iface_DEFUN TUNTools_genericIP6Echo(struct Message* msg, struct TUNTools* tt)
- {
- uint16_t ethertype = Er_assert(TUNMessageType_pop(msg));
- if (ethertype != Ethernet_TYPE_IP6) {
- Log_debug(tt->log, "Spurious packet with ethertype [%04x]\n",
- Endian_bigEndianToHost16(ethertype));
- return Error(msg, "INVALID");
- }
- struct Headers_IP6Header* header = (struct Headers_IP6Header*) msg->msgbytes;
- if (Message_getLength(msg) != Headers_IP6Header_SIZE + Headers_UDPHeader_SIZE + 12) {
- int type = (Message_getLength(msg) >= Headers_IP6Header_SIZE) ? header->nextHeader : -1;
- Log_debug(tt->log, "Message of unexpected length [%u] ip6->nextHeader: [%d]\n",
- Message_getLength(msg), type);
- return Error(msg, "INVALID");
- }
- uint8_t* address;
- Sockaddr_getAddress(tt->tunDestAddr, &address);
- Assert_true(!Bits_memcmp(header->destinationAddr, address, 16));
- Sockaddr_getAddress(tt->udpBindTo, &address);
- Assert_true(!Bits_memcmp(header->sourceAddr, address, 16));
- Sockaddr_getAddress(tt->udpBindTo, &address);
- Bits_memcpy(header->destinationAddr, address, 16);
- Sockaddr_getAddress(tt->tunDestAddr, &address);
- Bits_memcpy(header->sourceAddr, address, 16);
- Er_assert(TUNMessageType_push(msg, ethertype));
- return Iface_next(&tt->tunIface, msg);
- }
- static Iface_DEFUN receiveMessageTUN(struct Message* msg, struct Iface* tunIface)
- {
- struct TUNTools_pvt* ctx = Identity_containerOf(tunIface, struct TUNTools_pvt, pub.tunIface);
- ctx->pub.receivedMessageTUNCount++;
- return ctx->pub.cb(msg, &ctx->pub);
- }
- static Iface_DEFUN receiveMessageUDP(struct Message* msg, struct Iface* udpIface)
- {
- struct TUNTools_pvt* ctx = Identity_containerOf(udpIface, struct TUNTools_pvt, pub.udpIface);
- if (ctx->pub.receivedMessageTUNCount) {
- Log_debug(ctx->pub.log, "test complete");
- // Got the message, test successful, tear everything down by freeing the root alloc.
- EventBase_endLoop(ctx->pub.base);
- }
- return NULL;
- }
- static void fail(void* ignored)
- {
- Assert_true(!"timeout");
- }
- void TUNTools_echoTest(struct Sockaddr* udpBindTo,
- struct Sockaddr* tunDestAddr,
- TUNTools_Callback tunMessageHandler,
- struct Iface* tun,
- struct EventBase* base,
- struct Log* logger,
- struct Allocator* allocator)
- {
- struct Allocator* alloc = Allocator_child(allocator);
- AddrIface_t* udp = setupUDP(base, udpBindTo, alloc, logger);
- struct Sockaddr* dest = Sockaddr_clone(udp->addr, alloc);
- uint8_t* tunDestAddrBytes = NULL;
- uint8_t* udpDestPointer = NULL;
- int len = Sockaddr_getAddress(dest, &udpDestPointer);
- Assert_true(len && len == Sockaddr_getAddress(tunDestAddr, &tunDestAddrBytes));
- Bits_memcpy(udpDestPointer, tunDestAddrBytes, len);
- struct TUNTools_pvt* ctx = Allocator_calloc(alloc, sizeof(struct TUNTools_pvt), 1);
- Identity_set(ctx);
- ctx->pub.udpIface.send = receiveMessageUDP;
- ctx->pub.tunIface.send = receiveMessageTUN;
- Iface_plumb(&ctx->pub.udpIface, udp->iface);
- Iface_plumb(&ctx->pub.tunIface, tun);
- ctx->pub.cb = tunMessageHandler;
- ctx->pub.tunDestAddr = Sockaddr_clone(dest, alloc);
- ctx->pub.udpBindTo = Sockaddr_clone(udpBindTo, alloc);
- ctx->pub.alloc = alloc;
- ctx->pub.log = logger;
- ctx->pub.base = base;
- Timeout_setInterval(sendHello, ctx, 1000, base, alloc);
- Timeout_setTimeout(fail, NULL, 10000, base, alloc);
- EventBase_beginLoop(base);
- }
|