/** * @file socket.c * * @brief Implementation of socket_t. * */ /* * Copyright (C) 2005 Jan Hutter, Martin Willi * Hochschule fuer Technik Rapperswil * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. See . * * 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. */ #include #include #include #include #include #include #include #include "socket.h" #include #include #include typedef struct private_socket_t private_socket_t; /** * Private data of an socket_t object */ struct private_socket_t{ /** * public functions */ socket_t public; /** * currently we only have one socket, maybe more in the future ? */ int socket_fd; /** * logger for this socket */ logger_t *logger; }; /** * implementation of socket_t.receive */ status_t receiver(private_socket_t *this, packet_t **packet) { char buffer[MAX_PACKET]; chunk_t data; int oldstate; host_t *source, *dest; packet_t *pkt = packet_create(); /* add packet destroy handler for cancellation, enable cancellation */ pthread_cleanup_push((void(*)(void*))pkt->destroy, (void*)pkt); pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &oldstate); source = host_create(AF_INET, "0.0.0.0", 0); dest = host_create(AF_INET, "0.0.0.0", 0); pkt->set_source(pkt, source); pkt->set_destination(pkt, dest); this->logger->log(this->logger, CONTROL|LEVEL1, "going to read from socket"); /* do the read */ data.len = recvfrom(this->socket_fd, buffer, MAX_PACKET, 0, source->get_sockaddr(source), source->get_sockaddr_len(source)); /* reset cancellation, remove packet destroy handler (without executing) */ pthread_setcancelstate(oldstate, NULL); pthread_cleanup_pop(0); if (data.len < 0) { pkt->destroy(pkt); this->logger->log(this->logger, ERROR, "error reading from socket: %s", strerror(errno)); return FAILED; } this->logger->log(this->logger, CONTROL, "received packet from %s:%d", source->get_address(source), source->get_port(source)); /* fill in packet */ data.ptr = allocator_alloc(data.len); memcpy(data.ptr, buffer, data.len); pkt->set_data(pkt, data); /* return packet */ *packet = pkt; return SUCCESS; } /** * implementation of socket_t.send */ status_t sender(private_socket_t *this, packet_t *packet) { ssize_t bytes_sent; chunk_t data; host_t *source, *dest; source = packet->get_source(packet); dest = packet->get_destination(packet); data = packet->get_data(packet); this->logger->log(this->logger, CONTROL, "sending packet to %s:%d", dest->get_address(dest), dest->get_port(dest)); /* send data */ bytes_sent = sendto(this->socket_fd, data.ptr, data.len, 0, dest->get_sockaddr(dest), *(dest->get_sockaddr_len(dest))); if (bytes_sent != data.len) { this->logger->log(this->logger, ERROR, "error writing to socket: %s", strerror(errno)); return FAILED; } return SUCCESS; } /** * implementation of socket_t.destroy */ void destroy(private_socket_t *this) { close(this->socket_fd); charon->logger_manager->destroy_logger(charon->logger_manager, this->logger); allocator_free(this); } socket_t *socket_create(u_int16_t port) { private_socket_t *this = allocator_alloc_thing(private_socket_t); struct sockaddr_in addr; /* public functions */ this->public.send = (status_t(*)(socket_t*, packet_t*))sender; this->public.receive = (status_t(*)(socket_t*, packet_t**))receiver; this->public.destroy = (void(*)(socket_t*))destroy; this->logger = charon->logger_manager->create_logger(charon->logger_manager, SOCKET, NULL); /* create default ipv4 socket */ this->socket_fd = socket(PF_INET, SOCK_DGRAM, 0); if (this->socket_fd < 0) { this->logger->log(this->logger, ERROR, "unable to open socket: %s", strerror(errno)); charon->logger_manager->destroy_logger(charon->logger_manager, this->logger); allocator_free(this); charon->kill(charon, "socket could not be opened"); } /* bind socket to all interfaces */ addr.sin_family = AF_INET; addr.sin_addr.s_addr = INADDR_ANY; addr.sin_port = htons(port); if (bind(this->socket_fd,(struct sockaddr*)&addr, sizeof(addr)) < 0) { this->logger->log(this->logger, ERROR, "unable to bind socket to port %d: %s", port, strerror(errno)); charon->logger_manager->destroy_logger(charon->logger_manager, this->logger); allocator_free(this); charon->kill(charon, "socket could not be opened"); } return (socket_t*)this; }