diff options
| author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-10-24 06:40:53 +0000 | 
|---|---|---|
| committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-10-24 06:40:53 +0000 | 
| commit | 1c06b9ff80a2bf7ee6042534fee6098f7e452b59 (patch) | |
| tree | 304508f191114dd1ce3ce55bd9e8123638567b2f /src/lib | |
| parent | 94573411a43ed2d2232bb9cf86998273c56cd249 (diff) | |
| parent | b23e3024d12c28b01426cc37d5adf03f9c1bea88 (diff) | |
| download | ouroboros-1c06b9ff80a2bf7ee6042534fee6098f7e452b59.tar.gz ouroboros-1c06b9ff80a2bf7ee6042534fee6098f7e452b59.zip | |
Merged in dstaesse/ouroboros/be-fix-alloc (pull request #276)
lib: Stabilise flow allocation
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/dev.c | 27 | ||||
| -rw-r--r-- | src/lib/sockets.c | 33 | 
2 files changed, 22 insertions, 38 deletions
| diff --git a/src/lib/dev.c b/src/lib/dev.c index 0a22cb12..94fbd394 100644 --- a/src/lib/dev.c +++ b/src/lib/dev.c @@ -283,7 +283,7 @@ void ap_fini()          pthread_rwlock_rdlock(&ai.flows_lock);          for (i = 0; i < AP_MAX_FLOWS; ++i) { -                if (ai.flows[i].tx_rb != NULL) { +                if (ai.flows[i].rx_rb != NULL) {                          ssize_t idx;                          while ((idx = shm_rbuff_read(ai.flows[i].rx_rb)) >= 0)                                  shm_rdrbuff_remove(ai.rdrb, idx); @@ -560,15 +560,14 @@ int flow_alloc_res(int fd)          if (ai.flows[fd].tx_rb == NULL) {                  pthread_rwlock_unlock(&ai.flows_lock);                  pthread_rwlock_unlock(&ai.data_lock); -                irm_msg__free_unpacked(recv_msg, NULL);                  return -1;          }          ai.flows[fd].set = shm_flow_set_open(ai.flows[fd].api);          if (ai.flows[fd].set == NULL) { +                shm_rbuff_close(ai.flows[fd].tx_rb);                  pthread_rwlock_unlock(&ai.flows_lock);                  pthread_rwlock_unlock(&ai.data_lock); -                irm_msg__free_unpacked(recv_msg, NULL);                  return -1;          } @@ -595,6 +594,7 @@ int flow_alloc_res(int fd)  int flow_dealloc(int fd)  {          irm_msg_t msg = IRM_MSG__INIT; +        irm_msg_t * recv_msg = NULL;          msg.code         = IRM_MSG_CODE__IRM_FLOW_DEALLOC;          msg.has_port_id  = true; @@ -618,6 +618,24 @@ int flow_dealloc(int fd)          msg.port_id = ai.flows[fd].port_id; +        pthread_rwlock_unlock(&ai.flows_lock); +        pthread_rwlock_unlock(&ai.data_lock); + +        recv_msg = send_recv_irm_msg_b(&msg); +        if (recv_msg == NULL) { +                return -1; +        } + +        if (!recv_msg->has_result) { +                irm_msg__free_unpacked(recv_msg, NULL); +                return -1; +        } + +        irm_msg__free_unpacked(recv_msg, NULL); + +        pthread_rwlock_rdlock(&ai.data_lock); +        pthread_rwlock_wrlock(&ai.flows_lock); +          port_destroy(&ai.ports[msg.port_id]);          ai.flows[fd].port_id = -1; @@ -627,6 +645,7 @@ int flow_dealloc(int fd)          ai.flows[fd].tx_rb = NULL;          ai.flows[fd].oflags = 0;          ai.flows[fd].api = -1; +        shm_flow_set_close(ai.flows[fd].set);          if (ai.flows[fd].timeout != NULL) {                  free(ai.flows[fd].timeout);                  ai.flows[fd].timeout = NULL; @@ -637,8 +656,6 @@ int flow_dealloc(int fd)          pthread_rwlock_unlock(&ai.flows_lock);          pthread_rwlock_unlock(&ai.data_lock); -        send_irm_msg(&msg); -          return 0;  } diff --git a/src/lib/sockets.c b/src/lib/sockets.c index db1f3f6b..a1517b7b 100644 --- a/src/lib/sockets.c +++ b/src/lib/sockets.c @@ -153,39 +153,6 @@ static irm_msg_t * send_recv_irm_msg_timed(irm_msg_t * msg, bool timed)          return recv_msg;  } -void send_irm_msg(irm_msg_t * msg) -{ -        int sockfd; -        buffer_t buf; - -        sockfd = client_socket_open(IRM_SOCK_PATH); -        if (sockfd < 0) -                return; - -        buf.len = irm_msg__get_packed_size(msg); -        if (buf.len == 0) { -                close(sockfd); -                return; -        } - -        buf.data = malloc(buf.len); -        if (buf.data == NULL) { -                close(sockfd); -                return; -        } - -        pthread_cleanup_push(close_ptr, &sockfd); -        pthread_cleanup_push((void (*)(void *)) free, (void *) buf.data); - -        irm_msg__pack(msg, buf.data); - -        if (write(sockfd, buf.data, buf.len) < 0) -                return; - -        pthread_cleanup_pop(true); -        pthread_cleanup_pop(true); -} -  irm_msg_t * send_recv_irm_msg(irm_msg_t * msg)  { return send_recv_irm_msg_timed(msg, true); } | 
