winpipe.c
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:6k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.   Copyright (c) Fabasoft R&D Software GmbH & Co KG, 2003
  3.   oss@fabasoft.com
  4.   Author: Bernhard Penz <bernhard.penz@fabasoft.com>
  5.   Redistribution and use in source and binary forms, with or without
  6.   modification, are permitted provided that the following conditions are met:
  7.   *  Redistributions of source code must retain the above copyright notice,
  8.      this list of conditions and the following disclaimer.
  9.   *  Redistributions in binary form must reproduce the above copyright
  10.      notice, this list of conditions and the following disclaimer in the
  11.      documentation and/or other materials provided with the distribution.
  12.   *  The name of Fabasoft R&D Software GmbH & Co KG or any of its subsidiaries, 
  13.      brand or product names may not be used to endorse or promote products 
  14.      derived from this software without specific prior written permission.
  15.   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ``AS IS'' AND ANY
  16.   EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17.   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  18.   PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
  19.   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  20.   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  21.   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  22.   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  23.   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  24.   OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  25.   IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. #ifdef WIN32
  28. #include <io.h>
  29. #include <winsock.h>
  30. static int InitUPDSocket(SOCKET *sock, struct sockaddr_in *socketaddress)
  31. {
  32. *sock = 0;
  33. memset(socketaddress, 0, sizeof(struct sockaddr_in));
  34. if( (*sock = socket(AF_INET, SOCK_DGRAM, 0)) == SOCKET_ERROR)
  35. {
  36. return -1;
  37. }
  38. socketaddress->sin_family = AF_INET;
  39. socketaddress->sin_addr.S_un.S_addr = htonl(INADDR_LOOPBACK);
  40. socketaddress->sin_port = 0;
  41. if(bind(*sock, (struct sockaddr *) socketaddress, sizeof(struct sockaddr)) == SOCKET_ERROR)
  42. {
  43. return -1;
  44. }
  45. return 0;
  46. }
  47. static int ConnectUDPSocket(SOCKET *sock, struct sockaddr_in *socketaddress, SOCKET *remotesocket)
  48. {
  49. int size = sizeof(struct sockaddr);
  50. if (getsockname(*sock, (struct sockaddr *) socketaddress, &size) == SOCKET_ERROR)
  51. {
  52. return -1;
  53. }
  54. if(size != sizeof(struct sockaddr))
  55. {
  56. return -1;
  57. }
  58. if (connect(*remotesocket, (struct sockaddr *) socketaddress, sizeof(struct sockaddr)) == SOCKET_ERROR)
  59. {
  60. return -1;
  61. }
  62. return 0;
  63. }
  64. static int TestUDPSend(SOCKET *sock, struct sockaddr_in *socketaddress)
  65. {
  66. unsigned short port = socketaddress->sin_port;
  67. int size = sizeof(struct sockaddr);
  68. int bytessent = send(*sock, (char *) &port, sizeof(port), 0);
  69. if(bytessent != sizeof(port))
  70. {
  71. return -1;
  72. }
  73. return 0;
  74. }
  75. static int TestUDPReceive(SOCKET *sock, SOCKET *remotesocket, struct sockaddr_in *remotesocketaddress)
  76. {
  77. struct sockaddr_in recvfromaddress;
  78. unsigned short readbuffer[2];
  79. int size = sizeof(struct sockaddr);
  80. int bytesreceived = recvfrom(*sock,(char *) &readbuffer, sizeof(readbuffer), 0, (struct sockaddr *) &recvfromaddress, &size) ;
  81. if(bytesreceived != sizeof(unsigned short) || size != sizeof(struct sockaddr) || readbuffer[0] != (unsigned short) remotesocketaddress->sin_port || recvfromaddress.sin_family != remotesocketaddress->sin_family || recvfromaddress.sin_addr.S_un.S_addr != remotesocketaddress->sin_addr.S_un.S_addr || recvfromaddress.sin_port != remotesocketaddress->sin_port)
  82. {
  83. return -1;
  84. }
  85. return 0;
  86. }
  87. static void CloseUDPSocketPair(SOCKET *socketpair)
  88. {
  89. int i = WSAGetLastError();
  90. if(socketpair[0] != INVALID_SOCKET)
  91. {
  92. closesocket(socketpair[0]);
  93. }
  94. if(socketpair[1] != INVALID_SOCKET)
  95. {
  96. closesocket(socketpair[1]);
  97. }
  98. }
  99. /*
  100. Windows unnamed pipe emulation, used to enable select()
  101. on a Windows machine for the CALLBACK (pipe-based) transport domain.
  102. */
  103. int create_winpipe_transport(int *pipefds)
  104. {
  105. SOCKET socketpair[2];
  106. struct sockaddr_in socketaddress[2];
  107. struct timeval waittime = {0, 200000};
  108. fd_set readset;
  109. if (InitUPDSocket(&socketpair[0], &socketaddress[0]))
  110. {
  111. CloseUDPSocketPair(socketpair);
  112. return -1;
  113. }
  114. if (InitUPDSocket(&socketpair[1], &socketaddress[1]))
  115. {
  116. CloseUDPSocketPair(socketpair);
  117. return -1;
  118. }
  119. /*
  120. I have two UDP sockets - now lets connect them to each other.
  121. */
  122. if (ConnectUDPSocket(&socketpair[0], &socketaddress[0], &socketpair[1]))
  123. {
  124. CloseUDPSocketPair(socketpair);
  125. return -1;
  126. }
  127. if(ConnectUDPSocket(&socketpair[1], &socketaddress[1], &socketpair[0]))
  128. {
  129. CloseUDPSocketPair(socketpair);
  130. return -1;
  131. }
  132. /*
  133. The two sockets are connected to each other, now lets test the connection
  134. by sending the own port number.
  135. */
  136. if(TestUDPSend(&socketpair[0], &socketaddress[0]))
  137. {
  138. CloseUDPSocketPair(socketpair);
  139. return -1;
  140. }
  141. if(TestUDPSend(&socketpair[1], &socketaddress[1]))
  142. {
  143. CloseUDPSocketPair(socketpair);
  144. return -1;
  145. }
  146. /*
  147. Port numbers sent, now lets select() on the socketpair and check that 
  148. both messages got through
  149. */
  150. FD_ZERO(&readset);
  151. FD_SET(socketpair[0], &readset);
  152. FD_SET(socketpair[1], &readset);
  153. /*
  154. For some unknown reason the timeout setting in the select call does not have
  155. the desired effect, and for yet another unknown reason a Sleep(1) solves this
  156. problem.
  157. */
  158. Sleep(1);
  159. if(select(0, &readset, NULL, NULL, &waittime) != 2 || !FD_ISSET(socketpair[0], &readset) || !FD_ISSET(socketpair[1], &readset))
  160. {
  161. CloseUDPSocketPair(socketpair);
  162. return -1;
  163. }
  164. /*
  165. Check if the packets I receive were really sent by me, and nobody else
  166. tried to sneak.
  167. */
  168.     if(TestUDPReceive(&socketpair[0], &socketpair[1], &socketaddress[1]))
  169. {
  170. CloseUDPSocketPair(socketpair);
  171. return -1;
  172. }
  173. if(TestUDPReceive(&socketpair[1], &socketpair[0], &socketaddress[0]))
  174. {
  175. CloseUDPSocketPair(socketpair);
  176. return -1;
  177. }
  178. /*
  179. All sanity checks passed, I can return a "UDP pipe"
  180. */
  181. pipefds[0] = (int) socketpair[0];
  182. pipefds[1] = (int) socketpair[1];
  183. return 0;
  184. }
  185. #endif /* WIN32 */