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