123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- /* 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 "util/events/libuv/UvWrapper.h"
- #include "exception/Except.h"
- #include "interface/Iface.h"
- #include "util/events/UDPAddrIface.h"
- #include "memory/Allocator.h"
- #include "util/events/libuv/EventBase_pvt.h"
- #include "util/platform/Sockaddr.h"
- #include "util/Assert.h"
- #include "util/Identity.h"
- #include "wire/Message.h"
- #include "wire/Error.h"
- #include "util/Hex.h"
- struct UDPAddrIface_pvt
- {
- struct UDPAddrIface pub;
- struct Allocator* allocator;
- struct Log* logger;
- /** Job to close the handle when the allocator is freed */
- struct Allocator_OnFreeJob* closeHandleOnFree;
- /** Job which blocks the freeing until the callback completes */
- struct Allocator_OnFreeJob* blockFreeInsideCallback;
- uv_udp_t uvHandle;
- int queueLen;
- /** true if we are inside of the callback, used by blockFreeInsideCallback */
- int inCallback;
- Identity
- };
- struct UDPAddrIface_WriteRequest_pvt {
- uv_udp_send_t uvReq;
- int32_t length;
- struct UDPAddrIface_pvt* udp;
- struct Message* msg;
- struct Allocator* alloc;
- Identity
- };
- struct UDPAddrIface_pvt* ifaceForHandle(uv_udp_t* handle)
- {
- char* hp = ((char*)handle) - offsetof(struct UDPAddrIface_pvt, uvHandle);
- return Identity_check((struct UDPAddrIface_pvt*) hp);
- }
- static void sendComplete(uv_udp_send_t* uvReq, int error)
- {
- struct UDPAddrIface_WriteRequest_pvt* req =
- Identity_check((struct UDPAddrIface_WriteRequest_pvt*) uvReq);
- if (error) {
- Log_debug(req->udp->logger, "DROP Failed to write to UDPAddrIface [%s]",
- uv_strerror(error) );
- }
- Assert_true(req->msg->length == req->length);
- req->udp->queueLen -= req->msg->length;
- Assert_true(req->udp->queueLen >= 0);
- Allocator_free(req->alloc);
- }
- static Iface_DEFUN incomingFromIface(struct Message* m, struct Iface* iface)
- {
- struct UDPAddrIface_pvt* context = Identity_check((struct UDPAddrIface_pvt*) iface);
- Assert_true(m->length >= Sockaddr_OVERHEAD);
- if (((struct Sockaddr*)m->bytes)->flags & Sockaddr_flags_BCAST) {
- Log_debug(context->logger, "Attempted bcast, bcast unsupported");
- // bcast not supported.
- return NULL;
- }
- if (context->queueLen > UDPAddrIface_MAX_QUEUE) {
- Log_warn(context->logger, "DROP Maximum queue length reached");
- return NULL;
- }
- // This allocator will hold the message allocator in existance after it is freed.
- struct Allocator* reqAlloc = Allocator_child(context->allocator);
- if (m->alloc) {
- Allocator_adopt(reqAlloc, m->alloc);
- } else {
- m = Message_clone(m, reqAlloc);
- }
- struct UDPAddrIface_WriteRequest_pvt* req =
- Allocator_clone(reqAlloc, (&(struct UDPAddrIface_WriteRequest_pvt) {
- .udp = context,
- .msg = m,
- .alloc = reqAlloc
- }));
- Identity_set(req);
- struct Sockaddr_storage ss;
- Message_pop(m, &ss, context->pub.generic.addr->addrLen, NULL);
- Assert_true(ss.addr.addrLen == context->pub.generic.addr->addrLen);
- req->length = m->length;
- uv_buf_t buffers[] = {
- { .base = (char*)m->bytes, .len = m->length }
- };
- int ret = 0;
- uv_udp_send(&req->uvReq, &context->uvHandle, buffers, 1,
- (const struct sockaddr*)ss.nativeAddr, (uv_udp_send_cb)&sendComplete);
- if (ret) {
- Log_info(context->logger, "DROP Failed writing to UDPAddrIface [%s]",
- uv_strerror(ret));
- Allocator_free(req->alloc);
- return NULL;
- }
- context->queueLen += m->length;
- return NULL;
- }
- #if UDPAddrIface_PADDING_AMOUNT < 8
- #error
- #endif
- #define ALLOC(buff) (((struct Allocator**) &(buff[-(8 + (((uintptr_t)buff) % 8))]))[0])
- static void incoming(uv_udp_t* handle,
- ssize_t nread,
- const uv_buf_t* buf,
- const struct sockaddr* addr,
- unsigned flags)
- {
- struct UDPAddrIface_pvt* context = ifaceForHandle(handle);
- context->inCallback = 1;
- // Grab out the allocator which was placed there by allocate()
- struct Allocator* alloc = buf->base ? ALLOC(buf->base) : NULL;
- // if nread < 0, we used to log uv_last_error, which doesn't exist anymore.
- if (nread == 0) {
- // Happens constantly
- //Log_debug(context->logger, "0 length read");
- } else {
- struct Message* m = Allocator_calloc(alloc, sizeof(struct Message), 1);
- m->length = nread;
- m->padding = UDPAddrIface_PADDING_AMOUNT + context->pub.generic.addr->addrLen;
- m->capacity = buf->len;
- m->bytes = (uint8_t*)buf->base;
- m->alloc = alloc;
- Message_push(m, addr, context->pub.generic.addr->addrLen - Sockaddr_OVERHEAD, NULL);
- // make sure the sockaddr doesn't have crap in it which will
- // prevent it from being used as a lookup key
- Sockaddr_normalizeNative((struct sockaddr*) m->bytes);
- Message_push(m, context->pub.generic.addr, Sockaddr_OVERHEAD, NULL);
- /*uint8_t buff[256] = {0};
- Assert_true(Hex_encode(buff, 255, m->bytes, context->pub.generic.addr->addrLen));
- Log_debug(context->logger, "Message from [%s]", buff);*/
- Iface_send(&context->pub.generic.iface, m);
- }
- if (alloc) {
- Allocator_free(alloc);
- }
- context->inCallback = 0;
- if (context->blockFreeInsideCallback) {
- Allocator_onFreeComplete((struct Allocator_OnFreeJob*) context->blockFreeInsideCallback);
- }
- }
- static void allocate(uv_handle_t* handle, size_t size, uv_buf_t* buf)
- {
- struct UDPAddrIface_pvt* context = ifaceForHandle((uv_udp_t*)handle);
- size = UDPAddrIface_BUFFER_CAP;
- size_t fullSize = size + UDPAddrIface_PADDING_AMOUNT + context->pub.generic.addr->addrLen;
- struct Allocator* child = Allocator_child(context->allocator);
- char* buff = Allocator_malloc(child, fullSize);
- buff += UDPAddrIface_PADDING_AMOUNT + context->pub.generic.addr->addrLen;
- ALLOC(buff) = child;
- buf->base = buff;
- buf->len = size;
- }
- static void onClosed(uv_handle_t* wasClosed)
- {
- struct UDPAddrIface_pvt* context =
- Identity_check((struct UDPAddrIface_pvt*) wasClosed->data);
- Allocator_onFreeComplete((struct Allocator_OnFreeJob*) context->closeHandleOnFree);
- }
- static int closeHandleOnFree(struct Allocator_OnFreeJob* job)
- {
- struct UDPAddrIface_pvt* context =
- Identity_check((struct UDPAddrIface_pvt*) job->userData);
- context->closeHandleOnFree = job;
- uv_close((uv_handle_t*)&context->uvHandle, onClosed);
- return Allocator_ONFREE_ASYNC;
- }
- static int blockFreeInsideCallback(struct Allocator_OnFreeJob* job)
- {
- struct UDPAddrIface_pvt* context =
- Identity_check((struct UDPAddrIface_pvt*) job->userData);
- if (!context->inCallback) {
- return 0;
- }
- context->blockFreeInsideCallback = job;
- return Allocator_ONFREE_ASYNC;
- }
- struct UDPAddrIface* UDPAddrIface_new(struct EventBase* eventBase,
- struct Sockaddr* addr,
- struct Allocator* alloc,
- struct Except* exHandler,
- struct Log* logger)
- {
- struct EventBase_pvt* base = EventBase_privatize(eventBase);
- struct UDPAddrIface_pvt* context =
- Allocator_clone(alloc, (&(struct UDPAddrIface_pvt) {
- .logger = logger,
- .allocator = alloc
- }));
- context->pub.generic.alloc = alloc;
- context->pub.generic.iface.send = incomingFromIface;
- Identity_set(context);
- if (addr) {
- Log_debug(logger, "Binding to address [%s]", Sockaddr_print(addr, alloc));
- }
- struct Sockaddr_storage ss;
- if (!addr) {
- Sockaddr_parse("0.0.0.0:0", &ss);
- addr = &ss.addr;
- }
- uv_udp_init(base->loop, &context->uvHandle);
- context->uvHandle.data = context;
- int ret;
- void* native = Sockaddr_asNative(addr);
- ret = uv_udp_bind(&context->uvHandle, (const struct sockaddr*)native, 0);
- if (ret) {
- Except_throw(exHandler, "call to uv_udp_bind() failed [%s]",
- uv_strerror(ret));
- }
- ret = uv_udp_recv_start(&context->uvHandle, allocate, incoming);
- if (ret) {
- const char* err = uv_strerror(ret);
- uv_close((uv_handle_t*) &context->uvHandle, NULL);
- Except_throw(exHandler, "uv_udp_recv_start() failed [%s]", err);
- }
- int nameLen = sizeof(struct Sockaddr_storage);
- Bits_memset(&ss, 0, sizeof(struct Sockaddr_storage));
- ret = uv_udp_getsockname(&context->uvHandle, (void*)ss.nativeAddr, &nameLen);
- if (ret) {
- const char* err = uv_strerror(ret);
- uv_close((uv_handle_t*) &context->uvHandle, NULL);
- Except_throw(exHandler, "uv_udp_getsockname() failed [%s]", err);
- }
- ss.addr.addrLen = nameLen + 8;
- context->pub.generic.addr = Sockaddr_clone(&ss.addr, alloc);
- Log_debug(logger, "Bound to address [%s]", Sockaddr_print(context->pub.generic.addr, alloc));
- Allocator_onFree(alloc, closeHandleOnFree, context);
- Allocator_onFree(alloc, blockFreeInsideCallback, context);
- return &context->pub;
- }
|