2 * Wininet - Utility functions
4 * Copyright 1999 Corel Corporation
5 * Copyright 2002 CodeWeavers Inc.
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "wine/port.h"
39 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(wininet
);
44 #define TIME_STRING_LEN 30
46 time_t ConvertTimeString(LPCWSTR asctime
)
48 WCHAR tmpChar
[TIME_STRING_LEN
];
51 int timelen
= strlenW(asctime
);
53 if(!asctime
|| !timelen
)
56 /* FIXME: the atoiWs below rely on that tmpChar is \0 padded */
57 memset( tmpChar
, 0, sizeof(tmpChar
) );
58 lstrcpynW(tmpChar
, asctime
, TIME_STRING_LEN
);
60 /* Assert that the string is the expected length */
61 if (strlenW(asctime
) >= TIME_STRING_LEN
) FIXME("\n");
63 /* Convert a time such as 'Mon, 15 Nov 1999 16:09:35 GMT' into a SYSTEMTIME structure
64 * We assume the time is in this format
65 * and divide it into easy to swallow chunks
75 t
.tm_year
= atoiW(tmpChar
+12) - 1900;
76 t
.tm_mday
= atoiW(tmpChar
+5);
77 t
.tm_hour
= atoiW(tmpChar
+17);
78 t
.tm_min
= atoiW(tmpChar
+20);
79 t
.tm_sec
= atoiW(tmpChar
+23);
82 tmpChar2
= tmpChar
+ 8;
129 BOOL
GetAddress(LPCWSTR lpszServerName
, INTERNET_PORT nServerPort
,
130 struct hostent
**phe
, struct sockaddr_in
*psa
)
136 TRACE("%s\n", debugstr_w(lpszServerName
));
138 /* Validate server name first
139 * Check if there is sth. like
140 * pinger.macromedia.com:80
141 * if yes, eliminate the :80....
143 found
= strchrW(lpszServerName
, ':');
145 len
= found
- lpszServerName
;
147 len
= strlenW(lpszServerName
);
149 sz
= WideCharToMultiByte( CP_UNIXCP
, 0, lpszServerName
, len
, NULL
, 0, NULL
, NULL
);
150 name
= HeapAlloc(GetProcessHeap(), 0, sz
+1);
151 WideCharToMultiByte( CP_UNIXCP
, 0, lpszServerName
, len
, name
, sz
, NULL
, NULL
);
153 *phe
= gethostbyname(name
);
154 HeapFree( GetProcessHeap(), 0, name
);
158 TRACE("Failed to get hostname: (%s)\n", debugstr_w(lpszServerName
) );
162 memset(psa
,0,sizeof(struct sockaddr_in
));
163 memcpy((char *)&psa
->sin_addr
, (*phe
)->h_addr
, (*phe
)->h_length
);
164 psa
->sin_family
= (*phe
)->h_addrtype
;
165 psa
->sin_port
= htons((u_short
)nServerPort
);
171 * Helper function for sending async Callbacks
174 static const char *get_callback_name(DWORD dwInternetStatus
) {
175 static const wininet_flag_info internet_status
[] = {
176 #define FE(x) { x, #x }
177 FE(INTERNET_STATUS_RESOLVING_NAME
),
178 FE(INTERNET_STATUS_NAME_RESOLVED
),
179 FE(INTERNET_STATUS_CONNECTING_TO_SERVER
),
180 FE(INTERNET_STATUS_CONNECTED_TO_SERVER
),
181 FE(INTERNET_STATUS_SENDING_REQUEST
),
182 FE(INTERNET_STATUS_REQUEST_SENT
),
183 FE(INTERNET_STATUS_RECEIVING_RESPONSE
),
184 FE(INTERNET_STATUS_RESPONSE_RECEIVED
),
185 FE(INTERNET_STATUS_CTL_RESPONSE_RECEIVED
),
186 FE(INTERNET_STATUS_PREFETCH
),
187 FE(INTERNET_STATUS_CLOSING_CONNECTION
),
188 FE(INTERNET_STATUS_CONNECTION_CLOSED
),
189 FE(INTERNET_STATUS_HANDLE_CREATED
),
190 FE(INTERNET_STATUS_HANDLE_CLOSING
),
191 FE(INTERNET_STATUS_REQUEST_COMPLETE
),
192 FE(INTERNET_STATUS_REDIRECT
),
193 FE(INTERNET_STATUS_INTERMEDIATE_RESPONSE
),
194 FE(INTERNET_STATUS_USER_INPUT_REQUIRED
),
195 FE(INTERNET_STATUS_STATE_CHANGE
),
196 FE(INTERNET_STATUS_COOKIE_SENT
),
197 FE(INTERNET_STATUS_COOKIE_RECEIVED
),
198 FE(INTERNET_STATUS_PRIVACY_IMPACTED
),
199 FE(INTERNET_STATUS_P3P_HEADER
),
200 FE(INTERNET_STATUS_P3P_POLICYREF
),
201 FE(INTERNET_STATUS_COOKIE_HISTORY
)
206 for (i
= 0; i
< (sizeof(internet_status
) / sizeof(internet_status
[0])); i
++) {
207 if (internet_status
[i
].val
== dwInternetStatus
) return internet_status
[i
].name
;
212 VOID
SendSyncCallback(LPWININETHANDLEHEADER hdr
, DWORD dwContext
,
213 DWORD dwInternetStatus
, LPVOID lpvStatusInfo
,
214 DWORD dwStatusInfoLength
)
216 HINTERNET hHttpSession
;
217 LPVOID lpvNewInfo
= NULL
;
219 if( !hdr
->lpfnStatusCB
)
222 /* the IE5 version of wininet does not
223 send callbacks if dwContext is zero */
227 hHttpSession
= WININET_FindHandle( hdr
);
228 if( !hHttpSession
) {
229 TRACE(" Could not convert header '%p' into a handle !\n", hdr
);
233 lpvNewInfo
= lpvStatusInfo
;
234 if(!(hdr
->dwInternalFlags
& INET_CALLBACKW
)) {
235 switch(dwInternetStatus
)
237 case INTERNET_STATUS_RESOLVING_NAME
:
238 case INTERNET_STATUS_REDIRECT
:
239 lpvNewInfo
= WININET_strdup_WtoA(lpvStatusInfo
);
243 TRACE(" callback(%p) (%08lx (%p), %08lx, %ld (%s), %p, %ld)\n",
244 hdr
->lpfnStatusCB
, (DWORD
) hHttpSession
, hdr
, dwContext
, dwInternetStatus
, get_callback_name(dwInternetStatus
),
245 lpvNewInfo
, dwStatusInfoLength
);
247 hdr
->lpfnStatusCB(hHttpSession
, dwContext
, dwInternetStatus
,
248 lpvNewInfo
, dwStatusInfoLength
);
250 TRACE(" end callback().\n");
252 if(lpvNewInfo
!= lpvStatusInfo
)
253 HeapFree(GetProcessHeap(), 0, lpvNewInfo
);
255 WININET_Release( hdr
);
260 VOID
SendAsyncCallback(LPWININETHANDLEHEADER hdr
, DWORD dwContext
,
261 DWORD dwInternetStatus
, LPVOID lpvStatusInfo
,
262 DWORD dwStatusInfoLength
)
264 TRACE("(%p, %08lx, %ld (%s), %p, %ld): %sasync call with callback %p\n",
265 hdr
, dwContext
, dwInternetStatus
, get_callback_name(dwInternetStatus
),
266 lpvStatusInfo
, dwStatusInfoLength
,
267 hdr
->dwFlags
& INTERNET_FLAG_ASYNC
? "" : "non ",
270 if (!(hdr
->lpfnStatusCB
))
273 if (hdr
->dwFlags
& INTERNET_FLAG_ASYNC
)
275 WORKREQUEST workRequest
;
276 struct WORKREQ_SENDCALLBACK
*req
;
277 void *lpvStatusInfo_copy
= lpvStatusInfo
;
281 lpvStatusInfo_copy
= HeapAlloc(GetProcessHeap(), 0, dwStatusInfoLength
);
282 memcpy(lpvStatusInfo_copy
, lpvStatusInfo
, dwStatusInfoLength
);
285 workRequest
.asyncall
= SENDCALLBACK
;
286 workRequest
.hdr
= WININET_AddRef( hdr
);
287 req
= &workRequest
.u
.SendCallback
;
288 req
->dwContext
= dwContext
;
289 req
->dwInternetStatus
= dwInternetStatus
;
290 req
->lpvStatusInfo
= lpvStatusInfo_copy
;
291 req
->dwStatusInfoLength
= dwStatusInfoLength
;
293 INTERNET_AsyncCall(&workRequest
);
296 SendSyncCallback(hdr
, dwContext
, dwInternetStatus
,
297 lpvStatusInfo
, dwStatusInfoLength
);