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
|
/*
Miranda IM: the free IM client for Microsoft* Windows*
Copyright 2000-2009 Miranda ICQ/IM project,
all portions of this codebase are copyrighted to the people
listed in contributors.txt.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "commonheaders.h"
#include "netlib.h"
extern HANDLE hConnectionHeaderMutex,hSendEvent,hRecvEvent;
INT_PTR NetlibSend(WPARAM wParam,LPARAM lParam)
{
struct NetlibConnection *nlc=(struct NetlibConnection*)wParam;
NETLIBBUFFER *nlb=(NETLIBBUFFER*)lParam;
INT_PTR result;
if ( nlb == NULL ) {
SetLastError(ERROR_INVALID_PARAMETER);
return SOCKET_ERROR;
}
if ( !NetlibEnterNestedCS( nlc, NLNCS_SEND ))
return SOCKET_ERROR;
if ( nlc->usingHttpGateway && !( nlb->flags & MSG_RAW )) {
if ( !( nlb->flags & MSG_NOHTTPGATEWAYWRAP ) && nlc->nlu->user.pfnHttpGatewayWrapSend ) {
NetlibDumpData( nlc, ( PBYTE )nlb->buf, nlb->len, 1, nlb->flags );
result = nlc->nlu->user.pfnHttpGatewayWrapSend(( HANDLE )nlc, ( PBYTE )nlb->buf, nlb->len, nlb->flags | MSG_NOHTTPGATEWAYWRAP, NetlibSend );
}
else result = NetlibHttpGatewayPost( nlc, nlb->buf, nlb->len, nlb->flags );
}
else {
NetlibDumpData( nlc, ( PBYTE )nlb->buf, nlb->len, 1, nlb->flags );
if (nlc->hSsl)
result = si.write( nlc->hSsl, nlb->buf, nlb->len );
else
result = send( nlc->s, nlb->buf, nlb->len, nlb->flags & 0xFFFF );
}
NetlibLeaveNestedCS( &nlc->ncsSend );
if ((( THook* )hSendEvent)->subscriberCount ) {
NETLIBNOTIFY nln = { nlb, result };
CallHookSubscribers( hSendEvent, (WPARAM)&nln, (LPARAM)&nlc->nlu->user );
}
return result;
}
INT_PTR NetlibRecv(WPARAM wParam,LPARAM lParam)
{
struct NetlibConnection *nlc = (struct NetlibConnection*)wParam;
NETLIBBUFFER* nlb = ( NETLIBBUFFER* )lParam;
int recvResult;
if ( nlb == NULL ) {
SetLastError( ERROR_INVALID_PARAMETER );
return SOCKET_ERROR;
}
if ( !NetlibEnterNestedCS( nlc, NLNCS_RECV ))
return SOCKET_ERROR;
if ( nlc->usingHttpGateway && !( nlb->flags & MSG_RAW ))
recvResult = NetlibHttpGatewayRecv( nlc, nlb->buf, nlb->len, nlb->flags );
else
{
if (nlc->hSsl)
recvResult = si.read( nlc->hSsl, nlb->buf, nlb->len, (nlb->flags & MSG_PEEK) != 0 );
else
recvResult = recv( nlc->s, nlb->buf, nlb->len, nlb->flags & 0xFFFF );
}
NetlibLeaveNestedCS( &nlc->ncsRecv );
if (recvResult <= 0)
return recvResult;
NetlibDumpData(nlc, (PBYTE)nlb->buf, recvResult, 0, nlb->flags);
if ((nlb->flags & MSG_PEEK) == 0 && ((THook*)hRecvEvent)->subscriberCount)
{
NETLIBNOTIFY nln = { nlb, recvResult };
CallHookSubscribers(hRecvEvent, (WPARAM)&nln, (LPARAM)&nlc->nlu->user);
}
return recvResult;
}
static int ConnectionListToSocketList(HANDLE *hConns, fd_set *fd, int& pending)
{
struct NetlibConnection *nlcCheck;
int i;
FD_ZERO(fd);
for(i=0;hConns[i] && hConns[i]!=INVALID_HANDLE_VALUE && i<FD_SETSIZE;i++) {
nlcCheck=(struct NetlibConnection*)hConns[i];
if (nlcCheck->handleType!=NLH_CONNECTION && nlcCheck->handleType!=NLH_BOUNDPORT) {
SetLastError(ERROR_INVALID_DATA);
return 0;
}
FD_SET(nlcCheck->s,fd);
if ( si.pending( nlcCheck->hSsl ))
pending++;
}
return 1;
}
INT_PTR NetlibSelect(WPARAM,LPARAM lParam)
{
NETLIBSELECT *nls=(NETLIBSELECT*)lParam;
if (nls==NULL || nls->cbSize!=sizeof(NETLIBSELECT)) {
SetLastError(ERROR_INVALID_PARAMETER);
return SOCKET_ERROR;
}
TIMEVAL tv;
tv.tv_sec=nls->dwTimeout/1000;
tv.tv_usec=(nls->dwTimeout%1000)*1000;
int pending = 0;
fd_set readfd, writefd, exceptfd;
WaitForSingleObject(hConnectionHeaderMutex,INFINITE);
if (!ConnectionListToSocketList(nls->hReadConns,&readfd,pending)
|| !ConnectionListToSocketList(nls->hWriteConns,&writefd,pending)
|| !ConnectionListToSocketList(nls->hExceptConns,&exceptfd,pending)) {
ReleaseMutex(hConnectionHeaderMutex);
return SOCKET_ERROR;
}
ReleaseMutex(hConnectionHeaderMutex);
if (pending)
return 1;
return select(0,&readfd,&writefd,&exceptfd,nls->dwTimeout==INFINITE?NULL:&tv);
}
INT_PTR NetlibSelectEx(WPARAM, LPARAM lParam)
{
NETLIBSELECTEX *nls=(NETLIBSELECTEX*)lParam;
if (nls==NULL || nls->cbSize!=sizeof(NETLIBSELECTEX)) {
SetLastError(ERROR_INVALID_PARAMETER);
return SOCKET_ERROR;
}
TIMEVAL tv;
tv.tv_sec=nls->dwTimeout/1000;
tv.tv_usec=(nls->dwTimeout%1000)*1000;
WaitForSingleObject(hConnectionHeaderMutex,INFINITE);
int pending = 0;
fd_set readfd,writefd,exceptfd;
if (!ConnectionListToSocketList(nls->hReadConns,&readfd,pending)
|| !ConnectionListToSocketList(nls->hWriteConns,&writefd,pending)
|| !ConnectionListToSocketList(nls->hExceptConns,&exceptfd,pending)) {
ReleaseMutex(hConnectionHeaderMutex);
return SOCKET_ERROR;
}
ReleaseMutex(hConnectionHeaderMutex);
int rc = (pending) ? pending : select(0,&readfd,&writefd,&exceptfd,nls->dwTimeout==INFINITE?NULL:&tv);
WaitForSingleObject(hConnectionHeaderMutex,INFINITE);
/* go thru each passed HCONN array and grab its socket handle, then give it to FD_ISSET()
to see if an event happened for that socket, if it has it will be returned as TRUE (otherwise not)
This happens for read/write/except */
struct NetlibConnection *conn=NULL;
int j;
for (j=0; j<FD_SETSIZE; j++) {
conn=(struct NetlibConnection*)nls->hReadConns[j];
if (conn==NULL || conn==INVALID_HANDLE_VALUE) break;
if (si.pending(conn->hSsl))
nls->hReadStatus[j] = TRUE;
if (conn->usingHttpGateway && conn->nlhpi.szHttpGetUrl == NULL && conn->dataBuffer == NULL)
nls->hReadStatus[j] = (conn->pHttpProxyPacketQueue != NULL);
else
nls->hReadStatus[j] = FD_ISSET(conn->s,&readfd);
}
for (j=0; j<FD_SETSIZE; j++) {
conn=(struct NetlibConnection*)nls->hWriteConns[j];
if (conn==NULL || conn==INVALID_HANDLE_VALUE) break;
nls->hWriteStatus[j] = FD_ISSET(conn->s,&writefd);
}
for (j=0; j<FD_SETSIZE; j++) {
conn=(struct NetlibConnection*)nls->hExceptConns[j];
if (conn==NULL || conn==INVALID_HANDLE_VALUE) break;
nls->hExceptStatus[j] = FD_ISSET(conn->s,&exceptfd);
}
ReleaseMutex(hConnectionHeaderMutex);
return rc;
}
|