- Timestamp:
- Nov 7, 2008 10:12:16 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38979
- Location:
- trunk/src/VBox/Devices/Network
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r13940 r13949 59 59 60 60 #ifdef VBOX_WITH_SYNC_SLIRP 61 #include <unistd.h> /* should be in UNix version only*/62 61 #include <iprt/semaphore.h> 63 #include <errno.h>64 62 #endif 65 63 … … 98 96 /*used for wakep of poling thread*/ 99 97 RTSEMEVENT semIOmutex; 100 PTMTIMER pNATFastTimer;101 PTMTIMER pNATSlowTimer;102 /** The write end of the control pipe. */103 RTFILE PipeWrite;104 /** The read end of the control pipe. */105 RTFILE PipeRead;106 98 #endif 107 99 } DRVNAT, *PDRVNAT; … … 176 168 #ifndef VBOX_WITH_SYNC_SLIRP 177 169 RTCritSectLeave(&pThis->CritSect); 178 #else179 int ndfds = 0;180 fd_set writefds;181 FD_ZERO(&writefds);182 slirp_send_fill(pThis->pNATState, &ndfds, &writefds);183 struct timeval tv = {0,0}; /* no wait */184 185 int cWriteFDs = select(ndfds + 1, NULL, &writefds, NULL, &tv);186 if (cWriteFDs >= 0)187 slirp_send_trigger(pThis->pNATState, &ndfds, &writefds);188 170 #endif 189 171 LogFlow(("drvNATSend: end\n")); … … 293 275 #else 294 276 295 static DECLCALLBACK(void) drvNATFastTimer(PPDMDRVINS pDrvIns, PTMTIMER pTimer)296 {297 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);298 if (pThis->enmLinkState == PDMNETWORKLINKSTATE_UP)299 slirp_fasttmr(pThis->pNATState);300 TMTimerSetMicro(pTimer, 2);301 }302 303 static DECLCALLBACK(void) drvNATSlowTimer(PPDMDRVINS pDrvIns, PTMTIMER pTimer)304 {305 PDRVNAT pThis = PDMINS_2_DATA(pDrvIns, PDRVNAT);306 if (pThis->enmLinkState == PDMNETWORKLINKSTATE_UP)307 slirp_slowtmr(pThis->pNATState);308 TMTimerSetMicro(pTimer, 500);309 }310 277 static DECLCALLBACK(int) drvNATAsyncIoThread(PPDMDRVINS pDrvIns, PPDMTHREAD pThread) 311 278 { … … 334 301 slirp_select_fill(pThis->pNATState, &cFDs, &ReadFDs, &WriteFDs, &XcptFDs); 335 302 336 struct timeval tv = {1, 0}; /* no wait */ 337 338 FD_SET(pThis->PipeRead, &ReadFDs); /*Linux only*/ 339 cFDs = (pThis->PipeRead < cFDs ? cFDs:pThis->PipeRead); 340 int cReadFDs = select(cFDs + 1, &ReadFDs, NULL, &XcptFDs, &tv); 341 342 if (cReadFDs >= 0) { 303 struct timeval tv = {0, 0}; /* no wait */ 304 305 int cReadFDs = select(cFDs + 1, &ReadFDs, &WriteFDs, &XcptFDs, &tv); 306 307 if (cReadFDs >= 0) 343 308 slirp_select_poll(pThis->pNATState, &ReadFDs, &WriteFDs, &XcptFDs); 344 309 345 if (FD_ISSET(pThis->PipeRead, &ReadFDs)) {346 /* drain the pipe */347 char ch;348 size_t cbRead;349 RTFileRead(pThis->PipeRead, &ch, 1, &cbRead);350 }351 }352 310 #if 0 353 311 if (cReadFDs == 0) { … … 377 335 } 378 336 379 /*Callback from slirp to exit from select*/380 void slirp_socket_created(void* pvUser)381 {382 PDRVNAT pThis = (PDRVNAT)pvUser;383 int rc = RTFileWrite(pThis->PipeWrite, "", 1, NULL);384 AssertRC(rc);385 }386 337 #endif 387 338 … … 731 682 rc = RTSemEventCreate(&pThis->semIOmutex); 732 683 AssertReleaseRC(rc); 733 734 /*735 * Create the control pipe.736 * XXX: Linux only737 */738 int fds[2];739 if (pipe(&fds[0]) != 0) /** @todo RTPipeCreate() or something... */740 {741 int rc = RTErrConvertFromErrno(errno);742 AssertRC(rc);743 return rc;744 }745 pThis->PipeRead = fds[0];746 pThis->PipeWrite = fds[1];747 748 684 rc = PDMDrvHlpPDMThreadCreate(pDrvIns, &pThis->pThread, pThis, drvNATAsyncIoThread, drvNATAsyncIoWakeup, 128 * _1K, RTTHREADTYPE_IO, "NAT"); 749 685 AssertReleaseRC(rc); 750 rc = PDMDrvHlpTMTimerCreate(pDrvIns, TMCLOCK_REAL, drvNATFastTimer, "NAT_fast_timer", &pThis->pNATFastTimer);751 AssertReleaseRC(rc);752 TMTimerSetMicro(pThis->pNATFastTimer, 1);753 rc = PDMDrvHlpTMTimerCreate(pDrvIns, TMCLOCK_REAL, drvNATSlowTimer, "NAT_slow_timer", &pThis->pNATSlowTimer);754 AssertReleaseRC(rc);755 TMTimerSetMicro(pThis->pNATSlowTimer, 500);756 686 #endif 757 687 -
trunk/src/VBox/Devices/Network/slirp/libslirp.h
r13940 r13949 49 49 int guest_port); 50 50 51 #ifdef VBOX_WITH_SYNC_SLIRP 52 void slirp_fasttmr(PNATState pData); 53 void slirp_slowtmr(PNATState pData); 54 /*selects open and ready sockets for write*/ 55 void slirp_send_fill(PNATState pData, int *pnfds, fd_set *writeds); 56 /*triggers socket output */ 57 void slirp_send_trigger(PNATState pData, int *pnfds, fd_set *writeds); 58 /*should be implemented by client*/ 59 void slirp_socket_created(void* pvUser); 60 #endif 51 61 52 #ifdef __cplusplus 62 53 } -
trunk/src/VBox/Devices/Network/slirp/mbuf.c
r13940 r13949 80 80 mbuf_max = mbuf_alloced; 81 81 VBOX_SLIRP_UNLOCK(pData->mbuf_alloced_mutex); 82 VBOX_SLIRP_LOCK_CREATE(&m->m_mutex);83 VBOX_SLIRP_LOCK(m->m_mutex);84 82 } else { 85 83 m = m_freelist.m_next; 86 VBOX_SLIRP_LOCK(m->m_mutex);87 struct mbuf *n = m->m_next;88 if (n != NULL)89 VBOX_SLIRP_LOCK(n->m_mutex);90 84 remque(pData, m); 91 if (m->m_next != NULL)92 VBOX_SLIRP_UNLOCK(n->m_mutex);93 85 } 94 86 … … 97 89 VBOX_SLIRP_LOCK(pData->m_usedlist_mutex); 98 90 /* Insert it in the used list */ 99 struct mbuf *n = m_usedlist.m_next;100 if (n != &m_usedlist)101 VBOX_SLIRP_LOCK(n->m_mutex);102 91 insque(pData, m,&m_usedlist); 103 if (n != &m_usedlist) 104 VBOX_SLIRP_LOCK(n->m_mutex); 105 VBOX_SLIRP_UNLOCK(m->m_mutex); 92 VBOX_SLIRP_UNLOCK(pData->m_usedlist_mutex); 106 93 107 94 m->m_flags = (flags | M_USEDLIST); … … 130 117 if (m->m_flags & M_USEDLIST) { 131 118 VBOX_SLIRP_LOCK(pData->m_usedlist_mutex); 132 struct mbuf *p, *n;133 p = (m->m_prev);134 n = (m->m_next);135 VBOX_SLIRP_LOCK(m->m_next);136 if (n != NULL)137 VBOX_SLIRP_LOCK(n->m_next);138 if (p != NULL)139 VBOX_SLIRP_UNLOCK(p->m_next);140 119 remque(pData, m); 141 if (n != NULL)142 VBOX_SLIRP_UNLOCK(n->m_next);143 if (p != NULL)144 VBOX_SLIRP_LOCK(p->m_next);145 120 VBOX_SLIRP_UNLOCK(pData->m_usedlist_mutex); 146 121 } … … 155 130 if (m->m_flags & M_DOFREE) { 156 131 u32ptr_done(pData, ptr_to_u32(pData, m), m); 157 VBOX_SLIRP_UNLOCK(m->m_mutex);158 VBOX_SLIRP_LOCK_DESTROY(m->m_mutex);159 132 free(m); 160 133 #ifdef VBOX_WITH_SYNC_SLIRP -
trunk/src/VBox/Devices/Network/slirp/mbuf.h
r13940 r13949 76 76 caddr_t mh_data; /* Location of data */ 77 77 int mh_len; /* Amount of data in this mbuf */ 78 #ifdef VBOX_WITH_SYNC_SLIRP79 RTSEMFASTMUTEX mh_mutex;80 #endif81 78 }; 82 79 -
trunk/src/VBox/Devices/Network/slirp/slirp.c
r13940 r13949 362 362 * First, TCP sockets 363 363 */ 364 #ifndef VBOX_WITH_SYNC_SLIRP365 364 do_slowtimo = 0; 366 #endif367 365 if (link_up) { 368 366 /* … … 371 369 */ 372 370 VBOX_SLIRP_LOCK(pData->tcb_mutex); 373 #ifndef VBOX_WITH_SYNC_SLIRP374 371 do_slowtimo = ((tcb.so_next != &tcb) || 375 372 ((struct ipasfrag *)&ipq != u32_to_ptr(pData, ipq.next, struct ipasfrag *))); 376 #endif377 373 378 374 so = tcb.so_next; … … 393 389 * See if we need a tcp_fasttimo 394 390 */ 395 #ifndef VBOX_SLIRP_UNLOCK396 391 if (time_fasttimo == 0 397 392 && so->so_tcpcb 398 393 && so->so_tcpcb->t_flags & TF_DELACK) 399 394 time_fasttimo = curtime; /* Flag when we want a fasttimo */ 400 #endif401 395 402 396 /* … … 415 409 goto before_loop_ends; 416 410 } 417 #ifndef VBOX_WITH_SYNC_SLIRP 411 418 412 /* 419 413 * Set for writing sockets which are connecting … … 433 427 UPD_NFDS(so->s); 434 428 } 435 #endif436 429 437 430 /* … … 472 465 * See if it's timed out 473 466 */ 474 #ifndef VBOX_WITH_SYNC_SLIRP475 467 if (so->so_expire) { 476 468 if (so->so_expire <= curtime) { … … 480 472 do_slowtimo = 1; /* Let socket expire */ 481 473 } 482 #endif483 474 484 475 /* … … 508 499 */ 509 500 510 #ifndef VBOX_WITH_SYNC_SLIRP511 501 /* 512 502 * First, see the timeout needed by *timo … … 538 528 } 539 529 } 540 #endif541 530 *pnfds = nfds; 542 531 } … … 553 542 * See if anything has timed out 554 543 */ 555 #ifndef VBOX_WITH_SYNC_SLIRP556 544 if (link_up) { 557 545 if (time_fasttimo && ((curtime - time_fasttimo) >= 2)) { … … 565 553 } 566 554 } 567 #endif568 555 569 556 /* … … 623 610 } 624 611 625 #ifndef VBOX_WITH_SYNC_SLIRP626 612 /* 627 613 * Check sockets for writing … … 669 655 */ 670 656 } 671 #endif672 657 673 658 /* … … 929 914 memcpy(client_ethaddr, ethaddr, ETH_ALEN); 930 915 } 931 932 #ifdef VBOX_WITH_SYNC_SLIRP933 void slirp_fasttmr(PNATState pData)934 {935 struct socket *so, *so_next;936 updtime(pData);937 time_fasttimo = 0;938 #if 1939 VBOX_SLIRP_LOCK(pData->tcb_mutex);940 so = tcb.so_next;941 while(1) {942 if (so == &tcb) {943 VBOX_SLIRP_UNLOCK(pData->tcb_mutex);944 break;945 }946 so_next = so->so_next;947 VBOX_SLIRP_UNLOCK(pData->tcb_mutex);948 if (time_fasttimo == 0949 && so->so_tcpcb950 && so->so_tcpcb->t_flags & TF_DELACK)951 time_fasttimo = curtime; /* Flag when we want a fasttimo */952 VBOX_SLIRP_LOCK(pData->tcb_mutex);953 so = so_next;954 }955 #endif956 if (time_fasttimo) {957 tcp_fasttimo(pData);958 time_fasttimo = 0;959 }960 }961 962 void slirp_slowtmr(PNATState pData)963 {964 struct socket *so, *so_next;965 updtime(pData);966 do_slowtimo = 0;967 #if 1968 VBOX_SLIRP_LOCK(pData->tcb_mutex);969 do_slowtimo = ((tcb.so_next != &tcb) ||970 ((struct ipasfrag *)&ipq != u32_to_ptr(pData, ipq.next, struct ipasfrag *)));971 972 VBOX_SLIRP_UNLOCK(pData->tcb_mutex);973 974 VBOX_SLIRP_LOCK(pData->udb_mutex);975 so = udb.so_next;976 while(1) {977 if (so == &udb) {978 VBOX_SLIRP_UNLOCK(pData->udb_mutex);979 break;980 }981 so_next = so->so_next;982 VBOX_SLIRP_UNLOCK(pData->udb_mutex);983 984 if (so->so_expire) {985 if (so->so_expire <= curtime) {986 udp_detach(pData, so);987 goto before_loop_ends;988 }989 do_slowtimo = 1;990 }991 before_loop_ends:992 VBOX_SLIRP_LOCK(pData->udb_mutex);993 so = so_next;994 }995 #endif996 if (do_slowtimo) {997 tcp_slowtimo(pData);998 ip_slowtimo(pData);999 last_slowtimo = curtime;1000 }1001 }1002 1003 /*selects open and ready sockets for write*/1004 void slirp_send_fill(PNATState pData, int *pnfds, fd_set *writefds)1005 {1006 struct socket *so, *so_next;1007 int nfds = *pnfds;1008 1009 if (link_up == 0) return;1010 1011 VBOX_SLIRP_LOCK(pData->tcb_mutex);1012 so = tcb.so_next;1013 while (1) {1014 if (so == &tcb) {1015 VBOX_SLIRP_UNLOCK(pData->tcb_mutex);1016 break;1017 }1018 so_next = so->so_next;1019 VBOX_SLIRP_UNLOCK(pData->tcb_mutex);1020 1021 if (so->so_state & SS_NOFDREF || so->s == -1)1022 goto before_loop_ends;1023 1024 if (so->so_state & SS_ISFCONNECTING) {1025 FD_SET(so->s, writefds);1026 UPD_NFDS(so->s);1027 goto before_loop_ends;1028 }1029 1030 if (CONN_CANFSEND(so) && so->so_rcv.sb_cc) {1031 FD_SET(so->s, writefds);1032 UPD_NFDS(so->s);1033 }1034 1035 before_loop_ends:1036 VBOX_SLIRP_LOCK(pData->tcb_mutex);1037 so = so_next;1038 }1039 *pnfds = nfds;1040 }1041 /*triggers socket output */1042 void slirp_send_trigger(PNATState pData, int *pnfds, fd_set *writefds)1043 {1044 struct socket *so, *so_next;1045 int nfds = *pnfds;1046 int ret;1047 1048 if (link_up == 0) return;1049 1050 VBOX_SLIRP_LOCK(pData->tcb_mutex);1051 so = tcb.so_next;1052 while (1) {1053 if (so == &tcb) {1054 VBOX_SLIRP_UNLOCK(pData->tcb_mutex);1055 break;1056 }1057 so_next = so->so_next;1058 VBOX_SLIRP_UNLOCK(pData->tcb_mutex);1059 /*1060 * Check sockets for writing1061 */1062 if (FD_ISSET(so->s, writefds)) {1063 /*1064 * Check for non-blocking, still-connecting sockets1065 */1066 if (so->so_state & SS_ISFCONNECTING) {1067 /* Connected */1068 so->so_state &= ~SS_ISFCONNECTING;1069 1070 /*1071 * This should be probably guarded by PROBE_CONN too. Anyway,1072 * we disable it on OS/2 because the below send call returns1073 * EFAULT which causes the opened TCP socket to close right1074 * after it has been opened and connected.1075 */1076 #ifndef RT_OS_OS21077 ret = send(so->s, (const char *)&ret, 0, 0);1078 if (ret < 0) {1079 /* XXXXX Must fix, zero bytes is a NOP */1080 if (errno == EAGAIN || errno == EWOULDBLOCK ||1081 errno == EINPROGRESS || errno == ENOTCONN)1082 goto before_loop_ends;1083 1084 /* else failed */1085 so->so_state = SS_NOFDREF;1086 }1087 /* else so->so_state &= ~SS_ISFCONNECTING; */1088 #endif1089 1090 /*1091 * Continue tcp_input1092 */1093 tcp_input(pData, (struct mbuf *)NULL, sizeof(struct ip), so);1094 /* continue; */1095 } else1096 ret = sowrite(pData, so);1097 /*1098 * XXXXX If we wrote something (a lot), there1099 * could be a need for a window update.1100 * In the worst case, the remote will send1101 * a window probe to get things going again1102 */1103 }1104 1105 before_loop_ends:1106 VBOX_SLIRP_LOCK(pData->tcb_mutex);1107 so = so_next;1108 }1109 }1110 #endif -
trunk/src/VBox/Devices/Network/slirp/tcp_subr.c
r13940 r13949 541 541 /*we use this field to identify cache socket to lock/unlock*/ 542 542 so->so_type = IPPROTO_TCP; 543 slirp_socket_created(pData->pvUser);544 543 #endif 545 544 -
trunk/src/VBox/Devices/Network/slirp/udp.c
r13940 r13949 385 385 #ifdef VBOX_WITH_SYNC_SLIRP 386 386 so->so_type = IPPROTO_UDP; 387 slirp_socket_created(pData->pvUser);388 387 #endif 389 388 return(so->s); … … 709 708 710 709 so->so_state = SS_ISFCONNECTED; 711 #ifdef VBOX_WITH_SYNC_SLIRP 712 slirp_socket_created(pData->pvUser); 713 #endif 710 714 711 return so; 715 712 }
Note:
See TracChangeset
for help on using the changeset viewer.