diff options
| author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2024-02-17 10:19:46 +0100 | 
|---|---|---|
| committer | Sander Vrijders <sander@ouroboros.rocks> | 2024-02-19 11:49:07 +0100 | 
| commit | 06ee3370998f965b469d1c2859e3e34159c71e20 (patch) | |
| tree | 93881747a4f1e99f6932231b0cb2358941cb9741 /src/ipcpd/eth | |
| parent | 7bb8aed15c7f29de4d9719acf8db7fdf73731af5 (diff) | |
| download | ouroboros-06ee3370998f965b469d1c2859e3e34159c71e20.tar.gz ouroboros-06ee3370998f965b469d1c2859e3e34159c71e20.zip | |
irmd: Revise IRMd internals
This is a full revision of the IRMd internal implementation.
The registry is now a proper subcomponent managing its own internal
lock (a single mutex). Some tests are added for the registry and its
data structures. Some macros for tests are added in <ouroboros/test.h>.
Flow allocation is now more symmetric between the client side (alloc)
and server size (accept). Each will create a flow in pending state
(ALLOC_PENDING/ACCEPT_PENDING) that is potentially fulfilled by an
IPCP using respond_alloc and respond_accept primitives. Deallocation
is split in flow_dealloc (application side) and ipcp_flow_dealloc
(IPCP side) to get the flow in DEALLOC_PENDING and DEALLOCATED state.
Cleanup of failed flow allocation is now properly handled instead of
relying on the sanitizer thread. The new sanitizer only needs to
monitor crashed processes.
On shutdown, the IRMd will now detect hanging processes and SIGKILL
them and clean up their fuse mountpoints if needed.
A lot of other things have been cleaned up and shuffled around a bit.
Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks>
Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/ipcpd/eth')
| -rw-r--r-- | src/ipcpd/eth/eth.c | 42 | 
1 files changed, 15 insertions, 27 deletions
| diff --git a/src/ipcpd/eth/eth.c b/src/ipcpd/eth/eth.c index 6bac6c76..c0aaf711 100644 --- a/src/ipcpd/eth/eth.c +++ b/src/ipcpd/eth/eth.c @@ -47,7 +47,7 @@  #include <ouroboros/ipcp-dev.h>  #include <ouroboros/fqueue.h>  #include <ouroboros/logs.h> -#include <ouroboros/time_utils.h> +#include <ouroboros/time.h>  #include <ouroboros/fccntl.h>  #include <ouroboros/pthread.h> @@ -786,8 +786,7 @@ static void * eth_ipcp_mgmt_handler(void * o)          while (true) {                  int                 ret = 0; -                struct timespec     timeout = {(MGMT_TIMEO / 1000), -                                               (MGMT_TIMEO % 1000) * MILLION}; +                struct timespec     timeout = TIMESPEC_INIT_MS(MGMT_TIMEO);                  struct timespec     abstime;                  struct mgmt_frame * frame = NULL; @@ -1415,7 +1414,7 @@ static int eth_ipcp_bootstrap(const struct ipcp_config * conf)          if (eth_data.s_fd < 0) {                  log_err("Failed to create socket."); -                return -1; +                goto fail_socket;          }          flags = fcntl(eth_data.s_fd, F_GETFL, 0); @@ -1437,38 +1436,30 @@ static int eth_ipcp_bootstrap(const struct ipcp_config * conf)      #endif          if (bind(eth_data.s_fd, (struct sockaddr *) ð_data.device, -                 sizeof(eth_data.device))) { +                 sizeof(eth_data.device)) < 0) {                  log_err("Failed to bind socket to interface.");                  goto fail_device;          } -  #endif /* HAVE_NETMAP */ -  #if defined(__linux__) -        if (pthread_create(ð_data.if_monitor, -                           NULL, -                           eth_ipcp_if_monitor, -                           NULL)) { +        if (pthread_create(ð_data.if_monitor, NULL, +                           eth_ipcp_if_monitor, NULL)) {                  log_err("Failed to create monitor thread: %s.",                          strerror(errno));                  goto fail_device;          }  #endif -        if (pthread_create(ð_data.mgmt_handler, -                           NULL, -                           eth_ipcp_mgmt_handler, -                           NULL)) { +        if (pthread_create(ð_data.mgmt_handler, NULL, +                           eth_ipcp_mgmt_handler, NULL)) {                  log_err("Failed to create mgmt handler thread: %s.",                          strerror(errno));                  goto fail_mgmt_handler;          }          for (idx = 0; idx < IPCP_ETH_RD_THR; ++idx) { -                if (pthread_create(ð_data.packet_reader[idx], -                                   NULL, -                                   eth_ipcp_packet_reader, -                                   NULL)) { +                if (pthread_create(ð_data.packet_reader[idx], NULL, +                                   eth_ipcp_packet_reader, NULL)) {                          log_err("Failed to create packet reader thread: %s",                                  strerror(errno));                          goto fail_packet_reader; @@ -1476,10 +1467,8 @@ static int eth_ipcp_bootstrap(const struct ipcp_config * conf)          }          for (idx = 0; idx < IPCP_ETH_WR_THR; ++idx) { -                if (pthread_create(ð_data.packet_writer[idx], -                                   NULL, -                                   eth_ipcp_packet_writer, -                                   NULL)) { +                if (pthread_create(ð_data.packet_writer[idx], NULL, +                                   eth_ipcp_packet_writer, NULL)) {                          log_err("Failed to create packet writer thread: %s",                                  strerror(errno));                          goto fail_packet_writer; @@ -1493,7 +1482,6 @@ static int eth_ipcp_bootstrap(const struct ipcp_config * conf)          log_dbg("Bootstrapped IPCP over Ethernet with LLC with pid %d.",                  getpid());  #endif -          return 0;   fail_packet_writer: @@ -1524,6 +1512,7 @@ static int eth_ipcp_bootstrap(const struct ipcp_config * conf)  #elif defined(HAVE_RAW_SOCKETS)          close(eth_data.s_fd);  #endif + fail_socket:          return -1;  } @@ -1548,8 +1537,7 @@ static int eth_ipcp_unreg(const uint8_t * hash)  static int eth_ipcp_query(const uint8_t * hash)  {          uint8_t            r_addr[MAC_SIZE]; -        struct timespec    timeout = {(NAME_QUERY_TIMEO / 1000), -                                      (NAME_QUERY_TIMEO % 1000) * MILLION}; +        struct timespec    timeout = TIMESPEC_INIT_MS(NAME_QUERY_TIMEO);          struct dir_query * query;          int                ret;          uint8_t *          buf; @@ -1752,7 +1740,7 @@ static int eth_ipcp_flow_dealloc(int fd)          pthread_rwlock_unlock(ð_data.flows_lock); -        flow_dealloc(fd); +        ipcp_flow_dealloc(fd);          return 0;  } | 
