diff options
| author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-03 16:40:46 +0200 | 
|---|---|---|
| committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-03 16:40:46 +0200 | 
| commit | 0f30eaa3d4dd573f9af30a9fd0c5d22bad63c560 (patch) | |
| tree | ed204b5d6f653f6ccb3a12a18c53abab0dad7fa9 /src/ipcpd/shim-eth-llc | |
| parent | 1d4728bcf572c3ebc1632fec9a6751d6644087ce (diff) | |
| download | ouroboros-0f30eaa3d4dd573f9af30a9fd0c5d22bad63c560.tar.gz ouroboros-0f30eaa3d4dd573f9af30a9fd0c5d22bad63c560.zip | |
ipcpd: Fix some bad locking
Diffstat (limited to 'src/ipcpd/shim-eth-llc')
| -rw-r--r-- | src/ipcpd/shim-eth-llc/main.c | 30 | 
1 files changed, 14 insertions, 16 deletions
| diff --git a/src/ipcpd/shim-eth-llc/main.c b/src/ipcpd/shim-eth-llc/main.c index 8015d64a..d9f2d49f 100644 --- a/src/ipcpd/shim-eth-llc/main.c +++ b/src/ipcpd/shim-eth-llc/main.c @@ -374,18 +374,16 @@ static int eth_llc_ipcp_sap_req(uint8_t   r_sap,  {          int fd; -        pthread_rwlock_rdlock(&ipcpi.state_lock); -        pthread_rwlock_wrlock(ð_llc_data.flows_lock); -          /* reply to IRM */          fd = ipcp_flow_req_arr(getpid(), dst_name, cube);          if (fd < 0) { -                pthread_rwlock_unlock(ð_llc_data.flows_lock); -                pthread_rwlock_unlock(&ipcpi.state_lock);                  log_err("Could not get new flow from IRMd.");                  return -1;          } +        pthread_rwlock_rdlock(&ipcpi.state_lock); +        pthread_rwlock_wrlock(ð_llc_data.flows_lock); +          eth_llc_data.fd_to_ef[fd].r_sap = r_sap;          memcpy(eth_llc_data.fd_to_ef[fd].r_addr, r_addr, MAC_SIZE); @@ -677,19 +675,20 @@ static void * eth_llc_ipcp_sdu_writer(void * o)          while (flow_event_wait(eth_llc_data.np1_flows,                                 eth_llc_data.fq,                                 &timeout)) { -                pthread_rwlock_rdlock(&ipcpi.state_lock); - -                if (ipcp_get_state() != IPCP_OPERATIONAL) { -                        pthread_rwlock_unlock(&ipcpi.state_lock); -                        return (void *) -1; /* -ENOTENROLLED */ -                } -                  while ((fd = fqueue_next(eth_llc_data.fq)) >= 0) {                          if (ipcp_flow_read(fd, &sdb)) {                                  log_err("Bad read from fd %d.", fd);                                  continue;                          } +                        pthread_rwlock_rdlock(&ipcpi.state_lock); + +                        if (ipcp_get_state() != IPCP_OPERATIONAL) { +                                pthread_rwlock_unlock(&ipcpi.state_lock); +                                ipcp_flow_del(sdb); +                                return (void *) -1; /* -ENOTENROLLED */ +                        } +                          pthread_rwlock_rdlock(ð_llc_data.flows_lock);                          ssap = reverse_bits(eth_llc_data.fd_to_ef[fd].sap); @@ -699,6 +698,7 @@ static void * eth_llc_ipcp_sdu_writer(void * o)                                 MAC_SIZE);                          pthread_rwlock_unlock(ð_llc_data.flows_lock); +                        pthread_rwlock_unlock(&ipcpi.state_lock);                          eth_llc_ipcp_send_frame(r_addr, dsap, ssap,                                                  shm_du_buff_head(sdb), @@ -706,8 +706,6 @@ static void * eth_llc_ipcp_sdu_writer(void * o)                                                  - shm_du_buff_head(sdb));                          ipcp_flow_del(sdb);                  } - -                pthread_rwlock_unlock(&ipcpi.state_lock);          }          return (void *) 1; @@ -1121,11 +1119,11 @@ static int eth_llc_ipcp_flow_dealloc(int fd)          eth_llc_data.ef_to_fd[sap] = -1; -        flow_dealloc(fd); -          pthread_rwlock_unlock(ð_llc_data.flows_lock);          pthread_rwlock_unlock(&ipcpi.state_lock); +        flow_dealloc(fd); +          log_dbg("Flow with fd %d deallocated.", fd);          return 0; | 
