diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/lib/du_buff.c | 48 | ||||
| -rw-r--r-- | src/lib/irm.c | 107 | ||||
| -rw-r--r-- | src/lib/sockets.c | 319 | 
4 files changed, 452 insertions, 24 deletions
diff --git a/src/lib/CMakeLists.txt b/src/lib/CMakeLists.txt index 9a6f1946..2e0d6b6b 100644 --- a/src/lib/CMakeLists.txt +++ b/src/lib/CMakeLists.txt @@ -9,6 +9,8 @@ set(SOURCE_FILES          bitmap.c          cdap.c          du_buff.c +        irm.c +        sockets.c  )  add_library(ouroboros SHARED ${SOURCE_FILES}) diff --git a/src/lib/du_buff.c b/src/lib/du_buff.c index ea6206f9..bfb33339 100644 --- a/src/lib/du_buff.c +++ b/src/lib/du_buff.c @@ -43,8 +43,8 @@ struct buffer {  struct du_buff {          struct buffer  * buffer;          size_t           size; -        size_t           du_start; -        size_t           du_end; +        size_t           du_head; +        size_t           du_tail;  };  void buffer_destroy(struct buffer * buf) @@ -251,10 +251,10 @@ du_buff_t * du_buff_create(size_t size)                  return NULL;          } -        dub->buffer   = NULL; -        dub->size     = size; -        dub->du_start = 0; -        dub->du_end   = 0; +        dub->buffer  = NULL; +        dub->size    = size; +        dub->du_head = 0; +        dub->du_tail = 0;          return dub;  } @@ -294,44 +294,44 @@ int du_buff_init(du_buff_t * dub,          if (dub->buffer == NULL)                  return -ENOMEM; -        dub->du_start = start; -        dub->du_end = start + len; +        dub->du_head = start; +        dub->du_tail = start + len;          return buffer_copy_data(dub->buffer, start, data, len);  } -int du_buff_head_alloc(du_buff_t * dub, size_t size) +uint8_t * du_buff_head_alloc(du_buff_t * dub, size_t size)  {          if (dub == NULL) {                  LOG_DBGF("Bogus input, bugging out."); -                return -EINVAL; +                return NULL;          } -        if (dub->du_start - size < 0) { +        if (dub->du_head - size < 0) {                  LOG_WARN("Failed to allocate PCI headspace"); -                return -ENOBUFS; +                return NULL;          } -        dub->du_start -= size; +        dub->du_head -= size; -        return 0; +        return (buffer_seek_pos(dub->buffer, dub->du_head));  } -int du_buff_tail_alloc(du_buff_t * dub, size_t size) +uint8_t * du_buff_tail_alloc(du_buff_t * dub, size_t size)  {          if (dub == NULL) {                  LOG_DBGF("Bogus input, bugging out."); -                return -EINVAL; +                return NULL;          } -        if (dub->du_end + size >= dub->size) { +        if (dub->du_tail + size >= dub->size) {                  LOG_WARN("Failed to allocate PCI tailspace"); -                return -ENOBUFS; +                return NULL;          } -        dub->du_end += size; +        dub->du_tail += size; -        return 0; +        return (buffer_seek_pos(dub->buffer, dub->du_tail));  }  int du_buff_head_release(du_buff_t * dub, size_t size) @@ -341,12 +341,12 @@ int du_buff_head_release(du_buff_t * dub, size_t size)                  return -EINVAL;          } -        if (size > dub->du_end - dub->du_start) { +        if (size > dub->du_tail - dub->du_head) {                  LOG_WARN("Tried to release beyond sdu boundary");                  return -EOVERFLOW;          } -        dub->du_start += size; +        dub->du_head += size;          /* FIXME: copy some random crap to the buffer for security */ @@ -360,12 +360,12 @@ int du_buff_tail_release(du_buff_t * dub, size_t size)                  return -EINVAL;          } -        if (size > dub->du_end - dub->du_start) { +        if (size > dub->du_tail - dub->du_head) {                  LOG_WARN("Tried to release beyond sdu boundary");                  return -EOVERFLOW;          } -        dub->du_end -= size; +        dub->du_tail -= size;          /* FIXME: copy some random crap to the buffer for security */ diff --git a/src/lib/irm.c b/src/lib/irm.c new file mode 100644 index 00000000..69a98039 --- /dev/null +++ b/src/lib/irm.c @@ -0,0 +1,107 @@ +/* + * Ouroboros - Copyright (C) 2016 + * + * The API to instruct the IRM + * + *    Sander Vrijders <sander.vrijders@intec.ugent.be> + * + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#define OUROBOROS_PREFIX "libouroboros-irm" + +#include <ouroboros/irm.h> +#include <ouroboros/common.h> +#include <ouroboros/logs.h> +#include <ouroboros/sockets.h> + +int irm_create_ipcp(rina_name_t name, +                    char * ipcp_type) +{ +        int sockfd; +        struct irm_msg msg; +        buffer_t * buf; + +        if (ipcp_type == NULL) +                return -1; + +        sockfd = client_socket_open(IRM_SOCK_PATH); +        if (sockfd < 0) +                return -1; + +        msg.code = IRM_CREATE_IPCP; +        msg.msgs.create_ipcp.name = &name; +        msg.msgs.create_ipcp.ipcp_type = ipcp_type; + +        buf = serialize_irm_msg(&msg); +        if (buf == NULL) { +                close(sockfd); +                return -1; +        } + +        if (write(sockfd, buf->data, buf->size) == -1) { +                close(sockfd); +                return -1; +        } + +        close(sockfd); +        return 0; +} + +int irm_destroy_ipcp(int ipcp_id) +{ + +        return 0; +} + +int irm_bootstrap_ipcp(int ipcp_id, +                       struct dif_info info) +{ + +        return 0; +} + +int irm_enroll_ipcp(int ipcp_id, +                    char * dif_name) +{ + +        return 0; +} + +int irm_reg_ipcp(int ipcp_id, +                 char ** difs) +{ + +        return 0; +} + +int irm_unreg_ipcp(int ipcp_id, +                   char ** difs) +{ + +        return 0; +} + +char ** irm_list_ipcps() +{ + +        return 0; +} + +char ** irm_list_ipcp_types() +{ + +        return 0; +} diff --git a/src/lib/sockets.c b/src/lib/sockets.c new file mode 100644 index 00000000..ef4b3a47 --- /dev/null +++ b/src/lib/sockets.c @@ -0,0 +1,319 @@ +/* + * Ouroboros - Copyright (C) 2016 + * + * The sockets layer to communicate between daemons + * + *    Sander Vrijders <sander.vrijders@intec.ugent.be> + * + * 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. + * + * 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, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#define OUROBOROS_PREFIX "libouroboros-sockets" + +#include <ouroboros/logs.h> +#include <ouroboros/common.h> +#include <ouroboros/sockets.h> +#include <sys/socket.h> +#include <sys/un.h> +#include <sys/stat.h> +#include <string.h> +#include <malloc.h> + +#define BUFFER_SIZE 256 + +int client_socket_open(char * file_name) +{ +        int sockfd; +        struct sockaddr_un serv_addr; + +        sockfd = socket(AF_UNIX, SOCK_STREAM, 0); +        if (sockfd < 0) { +                LOG_ERR("Failed to open socket"); +                return -1; +        } + +        serv_addr.sun_family = AF_UNIX; +        sprintf(serv_addr.sun_path, "%s", file_name); + +        if (connect(sockfd, +                    (struct sockaddr *) &serv_addr, +                    sizeof(serv_addr))) { +                LOG_ERR("Failed to connect to server"); +                return -1; +        } + +        return sockfd; +} + +int server_socket_open(char * file_name) +{ +        int sockfd; +        struct sockaddr_un serv_addr; +        struct stat sb; + +        if (!stat(file_name, &sb)) { +                /* File exists */ +                if (unlink(file_name)) { +                        LOG_ERR("Failed to unlink filename: %s", +                                strerror(errno)); +                        return -1; +                } +        } + +        sockfd = socket(AF_UNIX, SOCK_STREAM, 0); +        if (sockfd < 0) { +                LOG_ERR("Failed to open socket"); +                return -1; +        } + +        serv_addr.sun_family = AF_UNIX; +        sprintf(serv_addr.sun_path, "%s", file_name); + +        if (bind(sockfd, +                 (struct sockaddr *) &serv_addr, +                 sizeof(serv_addr))) { +                LOG_ERR("Failed to bind socket"); +                return -1; +        } + +        if (listen(sockfd, 0)) { +                LOG_ERR("Failed to listen to socket"); +                return -1; +        } + +        return sockfd; +} + +static int serialized_string_len(uint8_t * data) +{ +        uint8_t * seek = data; + +        while (*seek != '\0') +                seek++; + +        return (seek - data) + 1; +} + +static void ser_copy_value(size_t flen, +                           void * dst, +                           void * src, +                           int * offset) +{ +        memcpy(dst + *offset, src, flen); +        *offset += flen; +} + +static void deser_copy_value(size_t flen, +                             void * dst, +                             void * src, +                             int * offset) +{ +        memcpy(dst, src + *offset, flen); +        *offset += flen; +} + +static int deser_copy_string(uint8_t * data, +                             char ** dst, +                             int * offset) +{ +        size_t flen; + +        flen = serialized_string_len(data + *offset); +        *dst = malloc(sizeof(**dst) * (flen + 1)); +        if (*dst == NULL) +                return -1; +        deser_copy_value(flen, *dst, data, offset); +        return 0; +} + +static void deser_copy_int(uint8_t * data, +                           int * dst, +                           int * offset) +{ +        *dst = 0; +        deser_copy_value(sizeof(int), dst, data, offset); +} + +static void deser_copy_enum(uint8_t * data, +                            enum irm_msg_code * dst, +                            int * offset) +{ +        *dst = 0; +        deser_copy_value(sizeof(enum irm_msg_code), dst, data, offset); +} + +buffer_t * serialize_irm_msg(struct irm_msg * msg) +{ +        buffer_t * buf; +        uint8_t * data; +        int offset = 0; +        int i; +        char buffer[BUFFER_SIZE]; + +        buf = malloc(sizeof(*buf)); +        if (buf == NULL) +                return NULL; + +        buf->data = malloc(BUFFER_SIZE); +        if (buf->data == NULL) { +                free(buf); +                return NULL; +        } + +        data = buf->data; + +        ser_copy_value(sizeof(enum irm_msg_code), +                       data, +                       &msg->code, +                       &offset); + +        switch (msg->code) { +        case IRM_CREATE_IPCP: +                if (!msg->msgs.create_ipcp.name || +                    !msg->msgs.create_ipcp.name->ap_name || +                    !msg->msgs.create_ipcp.name->ae_name || +                    !msg->msgs.create_ipcp.ipcp_type) { +                        LOG_ERR("Null pointer passed"); +                        free(buf->data); +                        free(buf); +                        return NULL; +                } + +                ser_copy_value(strlen(msg->msgs.create_ipcp.name->ap_name) + 1, +                               data, +                               msg->msgs.create_ipcp.name->ap_name, +                               &offset); + +                ser_copy_value(sizeof(int), +                               data, +                               &msg->msgs.create_ipcp.name->api_id, +                               &offset); + +                ser_copy_value(strlen(msg->msgs.create_ipcp.name->ae_name) + 1, +                               data, +                               msg->msgs.create_ipcp.name->ae_name, +                               &offset); + +                ser_copy_value(sizeof(int), +                               data, +                               &msg->msgs.create_ipcp.name->aei_id, +                               &offset); + +                ser_copy_value(strlen(msg->msgs.create_ipcp.ipcp_type) + 1, +                               data, +                               msg->msgs.create_ipcp.ipcp_type, +                               &offset); +                break; +        default: +                LOG_ERR("Don't know that code"); +                free(buf->data); +                free(buf); +                return NULL; +        } + +        buf->size = offset; + +        for (i = 0; i < buf->size; i++) { +                if (i > 0) sprintf(buffer + strlen(buffer), ":"); +                sprintf(buffer + strlen(buffer), "%02X", data[i]); +        } +        LOG_DBGF("Serialized buffer to %s", buffer); + +        return buf; +} + +struct irm_msg * deserialize_irm_msg(buffer_t * data) +{ +        struct irm_msg * msg; +        char buffer[BUFFER_SIZE]; +        int i; +        int offset = 0; + +        if (data == NULL || +            data->data == NULL) { +                LOG_ERR("Got a null pointer"); +                return NULL; +        } + +        memset(buffer, 0, sizeof(buffer)); +        for (i = 0; i < data->size; i++) { +                if (i > 0) sprintf(buffer + strlen(buffer), ":"); +                sprintf(buffer + strlen(buffer), "%02X", data->data[i]); +        } +        LOG_DBGF("Got buffer %s", buffer); + +        msg = malloc(sizeof(*msg)); +        if (msg == NULL) { +                LOG_ERR("Failed to allocate memory"); +                return NULL; +        } + +        deser_copy_enum(data->data, +                        &msg->code, +                        &offset); + +        switch (msg->code) { +        case IRM_CREATE_IPCP: +                msg->msgs.create_ipcp.name = +                        malloc(sizeof(*(msg->msgs.create_ipcp.name))); +                if (!msg->msgs.create_ipcp.name) { +                        LOG_ERR("Failed to alloc memory"); +                        free(msg); +                        return NULL; +                } + +                if (deser_copy_string(data->data, +                                      &msg->msgs.create_ipcp.name->ap_name, +                                      &offset)) { +                        free(msg->msgs.create_ipcp.name); +                        free(msg); +                        return NULL; +                } + +                deser_copy_int(data->data, +                               &msg->msgs.create_ipcp.name->api_id, +                               &offset); + +                if (deser_copy_string(data->data, +                                      &msg->msgs.create_ipcp.name->ae_name, +                                      &offset)) { +                        free(msg->msgs.create_ipcp.name->ap_name); +                        free(msg->msgs.create_ipcp.name); +                        free(msg); +                        return NULL; +                } + +                deser_copy_int(data->data, +                               &msg->msgs.create_ipcp.name->aei_id, +                               &offset); + +                if (deser_copy_string(data->data, +                                      &msg->msgs.create_ipcp.ipcp_type, +                                      &offset)) { +                        free(msg->msgs.create_ipcp.name->ae_name); +                        free(msg->msgs.create_ipcp.name->ap_name); +                        free(msg->msgs.create_ipcp.name); +                        free(msg); +                        return NULL; +                } +                break; +        default: +                LOG_ERR("Don't know that code"); +                free(msg); +                return NULL; +        } + +        return msg; +}  | 
