VirtualBox

Ignore:
Timestamp:
Feb 2, 2009 3:52:54 AM (16 years ago)
Author:
vboxsync
Message:

NAT:MT improvements

Location:
trunk/src/VBox/Devices/Network/slirp
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/slirp/debug.c

    r16445 r16448  
    253253        return RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "socket is null");
    254254    if (so->so_state == SS_NOFDREF || so->s == -1)
    255         return RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "socket SS_NODREF");
     255        return RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "socket(%d) SS_NODREF",so->s);
    256256    status = getsockname(so->s, &addr, &socklen);
    257257
    258     Assert(status == 0 && addr.sa_family == AF_INET);
     258    if(status != 0 || addr.sa_family != AF_INET)
     259    {
     260        return RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "socket(%d) is invalid(probably closed)",so->s);
     261    }
    259262
    260263    ip = ntohl(so->so_faddr.s_addr);
  • trunk/src/VBox/Devices/Network/slirp/slirp.c

    r16445 r16448  
    622622             * See if we need a tcp_fasttimo
    623623             */
    624             if (time_fasttimo == 0 && so->so_tcpcb->t_flags & TF_DELACK)
     624            if (    time_fasttimo == 0
     625                    && so->so_tcpcb != NULL
     626                    && so->so_tcpcb->t_flags & TF_DELACK)
    625627                time_fasttimo = curtime; /* Flag when we want a fasttimo */
    626628
     
    692694                if (so->so_expire <= curtime)
    693695                {
    694                     QSOCKET_LOCK(udb);
    695696#ifdef VBOX_WITH_SLIRP_MT
    696                     /*we can determinate the next item after udb_detach*/
    697                     if (so->so_next != &tcb)
    698                     {
    699                         SOCKET_LOCK(so->so_next);
    700                         so_next = so->so_next;
    701                     }
    702 #endif
    703                     QSOCKET_UNLOCK(udb);
    704                     udp_detach(pData, so);
     697                    /* we need so_next for continue our cycle*/
     698                    so_next = so->so_next;
     699#endif
     700                    UDP_DETACH(pData, so, so_next);
    705701                    CONTINUE_NO_UNLOCK(udp);
    706702                }
  • trunk/src/VBox/Devices/Network/slirp/slirp_state.h

    r16445 r16448  
    382382    pReq->u.Internal.aArgs[2] = (uintptr_t)(size);                      \
    383383    pReq->u.Internal.aArgs[3] = (uintptr_t)(so);                        \
    384     pReq->fFlags              = RTREQFLAGS_VOID;                        \
     384    pReq->fFlags              = RTREQFLAGS_VOID|RTREQFLAGS_NO_WAIT;     \
    385385    rc = RTReqQueue(pReq, 0);                                           \
    386     if (RT_LIKELY(rc) == VERR_TIMEOUT)                                  \
    387     {                                                                   \
    388         SOCKET_UNLOCK(so);                                               \
    389         rc = RTReqWait(pReq, RT_INDEFINITE_WAIT);                       \
    390         AssertReleaseRC(rc);                                            \
    391         SOCKET_LOCK(so);                                                \
    392         RTReqFree(pReq);                                                \
    393     }                                                                   \
    394     else                                                                \
    395         AssertReleaseRC(rc);                                            \
     386    AssertReleaseRC(rc);                                                \
    396387} while(0)
    397388
     
    488479        AssertReleaseRC(rc);                                            \
    489480        SOCKET_LOCK(so);                                                \
     481        RTReqFree(pReq);                                                \
     482    }                                                                   \
     483    else                                                                \
     484        AssertReleaseRC(rc);                                            \
     485} while(0)
     486
     487#define DO_UDP_DETACH(data, so, so_next)                                \
     488do {                                                                    \
     489    PRTREQ pReq = NULL;                                                 \
     490    int rc;                                                             \
     491    rc = RTReqAlloc((data)->pReqQueue, &pReq, RTREQTYPE_INTERNAL);      \
     492    AssertReleaseRC(rc);                                                \
     493    pReq->u.Internal.pfn      = (PFNRT)udp_detach;                      \
     494    pReq->u.Internal.cArgs    = 2;                                      \
     495    pReq->u.Internal.aArgs[0] = (uintptr_t)(data);                      \
     496    pReq->u.Internal.aArgs[1] = (uintptr_t)(so);                        \
     497    pReq->fFlags              = RTREQFLAGS_VOID;                        \
     498    rc = RTReqQueue(pReq, 0); /* don't wait, we have to release lock before*/ \
     499    if (RT_LIKELY(rc) == VERR_TIMEOUT)                                  \
     500    {                                                                   \
     501        SOCKET_UNLOCK(so);                                              \
     502        rc = RTReqWait(pReq, RT_INDEFINITE_WAIT);                       \
     503        AssertReleaseRC(rc);                                            \
     504        if ((so_next) != &udb) SOCKET_LOCK((so_next));                                         \
    490505        RTReqFree(pReq);                                                \
    491506    }                                                                   \
     
    536551    (so) = solookup(&__X(queue_ ## label ## _label), (src), (sport), (dst), (dport));   \
    537552} while (0)
     553#define DO_UDP_DETACH(data, so, ignored) udp_detach((data), (so))
    538554#endif
    539555
     
    544560#define SOWRITE(ret, data, so) DO_SOWRITE((ret), (data), (so))
    545561#define SORECVFROM(data, so) DO_SORECFROM((data), (so))
     562#define UDP_DETACH(data, so, so_next) DO_UDP_DETACH((data), (so), (so_next))
    546563#endif /* !_slirp_state_h_ */
  • trunk/src/VBox/Devices/Network/slirp/socket.c

    r16445 r16448  
    8888        m_free(pData, so->so_m);
    8989    if(so->so_next && so->so_prev)
    90     {
    91         if (   so->so_prev != NULL
    92             && so->so_prev != &udb
    93             && so->so_prev != &tcb)
    94             {
    95                 SOCKET_LOCK(so->so_prev);
    96                 so_prev = so->so_prev;
    97             }
    9890        remque(pData, so);  /* crashes if so is not in a queue */
    99         if (so_prev != NULL)
    100             SOCKET_UNLOCK(so_prev);
    101     }
    10291    so->so_state = SS_NOFDREF; /* for debugging purposes */
    10392    SOCKET_UNLOCK(so);
     
    10594
    10695    RTMemFree(so);
    107     so = NULL;
    10896}
    10997
  • trunk/src/VBox/Devices/Network/slirp/tcp_input.c

    r16445 r16448  
    16541654    m_free(pData, m);
    16551655
    1656     SOCKET_UNLOCK(so);
     1656#ifdef VBOX_WITH_SLIRP_MT
     1657    /*socket should be killed atm*/
     1658    AssertRelease(!RTCritSectIsInitialized(&so->so_mutex));
     1659#endif   
    16571660    return;
    16581661}
  • trunk/src/VBox/Devices/Network/slirp/tcp_subr.c

    r16291 r16448  
    263263    struct socket *so = tp->t_socket;
    264264    register struct mbuf *m;
     265    struct socket *so_next, *so_prev;
    265266
    266267    struct tseg_qent *te = NULL;
    267268    DEBUG_CALL("tcp_close");
    268269    DEBUG_ARG("tp = %lx", (long )tp);
     270    so_next = so_prev = NULL;
    269271    /*XXX: freeing the reassembly queue */
    270272    while (!LIST_EMPTY(&tp->t_segq))
     
    285287    sbfree(&so->so_rcv);
    286288    sbfree(&so->so_snd);
     289    QSOCKET_LOCK(tcb);
     290    if (   so->so_next != &tcb
     291        && so->so_next != NULL)
     292    {
     293        SOCKET_LOCK(so->so_next);
     294        so_next = so->so_next;
     295    }
     296    if (   so->so_prev != &tcb
     297        && so->so_prev != NULL)
     298    {
     299        SOCKET_LOCK(so->so_prev);
     300        so_prev = so->so_prev;
     301    }
     302    QSOCKET_UNLOCK(tcb);
    287303    sofree(pData, so);
     304    if (so_next != NULL) SOCKET_UNLOCK(so_next);
     305    if (so_prev != NULL) SOCKET_UNLOCK(so_prev);
    288306    tcpstat.tcps_closed++;
    289307    return ((struct tcpcb *)0);
  • trunk/src/VBox/Devices/Network/slirp/udp.c

    r16443 r16448  
    400400udp_detach(PNATState pData, struct socket *so)
    401401{
     402    struct socket *so_next, *so_prev;
     403    so_next = so_prev = NULL;
    402404    if (so != &pData->icmp_socket)
    403405    {
     406        QSOCKET_LOCK(udb);
     407        SOCKET_LOCK(so);
     408        if (    so->so_next != &udb
     409            && so->so_next != NULL)
     410        {
     411            SOCKET_LOCK(so->so_next);
     412            so_next = so->so_next;
     413        }
     414        if (    so->so_prev != &udb
     415            && so->so_prev != NULL)
     416        {
     417            SOCKET_LOCK(so->so_prev);
     418            so_prev = so->so_prev;
     419        }
     420        QSOCKET_UNLOCK(udb);
    404421        closesocket(so->s);
    405         QSOCKET_LOCK(udb);
    406422        sofree(pData, so);
    407         QSOCKET_UNLOCK(udb);
     423        if(so_prev != NULL)
     424            SOCKET_UNLOCK(so_prev);
     425        if(so_next != NULL)
     426            SOCKET_UNLOCK(so_next);
    408427    }
    409428}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette