wininet: Use set_cookie directly in HTTP_ProcessCookies.
[wine] / dlls / wininet / cookie.c
1 /*
2  * Wininet - cookie handling stuff
3  *
4  * Copyright 2002 TransGaming Technologies Inc.
5  *
6  * David Hammerton
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #include "config.h"
24 #include "wine/port.h"
25
26 #if defined(__MINGW32__) || defined (_MSC_VER)
27 #include <ws2tcpip.h>
28 #endif
29
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #ifdef HAVE_UNISTD_H
35 # include <unistd.h>
36 #endif
37
38 #include "windef.h"
39 #include "winbase.h"
40 #include "wininet.h"
41 #include "winerror.h"
42
43 #include "wine/debug.h"
44 #include "internet.h"
45
46 #define RESPONSE_TIMEOUT        30            /* FROM internet.c */
47
48
49 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
50
51 /* FIXME
52  *     Cookies are currently memory only.
53  *     Cookies are NOT THREAD SAFE
54  *     Cookies could use A LOT OF MEMORY. We need some kind of memory management here!
55  */
56
57 typedef struct _cookie_domain cookie_domain;
58 typedef struct _cookie cookie;
59
60 struct _cookie
61 {
62     struct list entry;
63
64     struct _cookie_domain *parent;
65
66     LPWSTR lpCookieName;
67     LPWSTR lpCookieData;
68     FILETIME expiry;
69 };
70
71 struct _cookie_domain
72 {
73     struct list entry;
74
75     LPWSTR lpCookieDomain;
76     LPWSTR lpCookiePath;
77     struct list cookie_list;
78 };
79
80 static struct list domain_list = LIST_INIT(domain_list);
81
82 static cookie *COOKIE_addCookie(cookie_domain *domain, LPCWSTR name, LPCWSTR data, FILETIME expiry);
83 static cookie *COOKIE_findCookie(cookie_domain *domain, LPCWSTR lpszCookieName);
84 static void COOKIE_deleteCookie(cookie *deadCookie, BOOL deleteDomain);
85 static cookie_domain *COOKIE_addDomain(LPCWSTR domain, LPCWSTR path);
86 static void COOKIE_deleteDomain(cookie_domain *deadDomain);
87
88
89 /* adds a cookie to the domain */
90 static cookie *COOKIE_addCookie(cookie_domain *domain, LPCWSTR name, LPCWSTR data, FILETIME expiry)
91 {
92     cookie *newCookie = heap_alloc(sizeof(cookie));
93
94     list_init(&newCookie->entry);
95     newCookie->lpCookieName = NULL;
96     newCookie->lpCookieData = NULL;
97     newCookie->expiry = expiry;
98     newCookie->lpCookieName = heap_strdupW(name);
99     newCookie->lpCookieData = heap_strdupW(data);
100
101     TRACE("added cookie %p (data is %s)\n", newCookie, debugstr_w(data) );
102
103     list_add_tail(&domain->cookie_list, &newCookie->entry);
104     newCookie->parent = domain;
105     return newCookie;
106 }
107
108
109 /* finds a cookie in the domain matching the cookie name */
110 static cookie *COOKIE_findCookie(cookie_domain *domain, LPCWSTR lpszCookieName)
111 {
112     struct list * cursor;
113     TRACE("(%p, %s)\n", domain, debugstr_w(lpszCookieName));
114
115     LIST_FOR_EACH(cursor, &domain->cookie_list)
116     {
117         cookie *searchCookie = LIST_ENTRY(cursor, cookie, entry);
118         BOOL candidate = TRUE;
119         if (candidate && lpszCookieName)
120         {
121             if (candidate && !searchCookie->lpCookieName)
122                 candidate = FALSE;
123             if (candidate && strcmpW(lpszCookieName, searchCookie->lpCookieName) != 0)
124                 candidate = FALSE;
125         }
126         if (candidate)
127             return searchCookie;
128     }
129     return NULL;
130 }
131
132 /* removes a cookie from the list, if its the last cookie we also remove the domain */
133 static void COOKIE_deleteCookie(cookie *deadCookie, BOOL deleteDomain)
134 {
135     HeapFree(GetProcessHeap(), 0, deadCookie->lpCookieName);
136     HeapFree(GetProcessHeap(), 0, deadCookie->lpCookieData);
137     list_remove(&deadCookie->entry);
138
139     /* special case: last cookie, lets remove the domain to save memory */
140     if (list_empty(&deadCookie->parent->cookie_list) && deleteDomain)
141         COOKIE_deleteDomain(deadCookie->parent);
142     HeapFree(GetProcessHeap(), 0, deadCookie);
143 }
144
145 /* allocates a domain and adds it to the end */
146 static cookie_domain *COOKIE_addDomain(LPCWSTR domain, LPCWSTR path)
147 {
148     cookie_domain *newDomain = heap_alloc(sizeof(cookie_domain));
149
150     list_init(&newDomain->entry);
151     list_init(&newDomain->cookie_list);
152     newDomain->lpCookieDomain = NULL;
153     newDomain->lpCookiePath = NULL;
154     newDomain->lpCookieDomain = heap_strdupW(domain);
155     newDomain->lpCookiePath = heap_strdupW(path);
156
157     list_add_tail(&domain_list, &newDomain->entry);
158
159     TRACE("Adding domain: %p\n", newDomain);
160     return newDomain;
161 }
162
163 static BOOL COOKIE_crackUrlSimple(LPCWSTR lpszUrl, LPWSTR hostName, int hostNameLen, LPWSTR path, int pathLen)
164 {
165     URL_COMPONENTSW UrlComponents;
166
167     UrlComponents.lpszExtraInfo = NULL;
168     UrlComponents.lpszPassword = NULL;
169     UrlComponents.lpszScheme = NULL;
170     UrlComponents.lpszUrlPath = path;
171     UrlComponents.lpszUserName = NULL;
172     UrlComponents.lpszHostName = hostName;
173     UrlComponents.dwExtraInfoLength = 0;
174     UrlComponents.dwPasswordLength = 0;
175     UrlComponents.dwSchemeLength = 0;
176     UrlComponents.dwUserNameLength = 0;
177     UrlComponents.dwHostNameLength = hostNameLen;
178     UrlComponents.dwUrlPathLength = pathLen;
179
180     if (!InternetCrackUrlW(lpszUrl, 0, 0, &UrlComponents)) return FALSE;
181
182     /* discard the webpage off the end of the path */
183     if (UrlComponents.dwUrlPathLength)
184     {
185         if (path[UrlComponents.dwUrlPathLength - 1] != '/')
186         {
187             WCHAR *ptr;
188             if ((ptr = strrchrW(path, '/'))) *(++ptr) = 0;
189             else
190             {
191                 path[0] = '/';
192                 path[1] = 0;
193             }
194         }
195     }
196     else if (pathLen >= 2)
197     {
198         path[0] = '/';
199         path[1] = 0;
200     }
201     return TRUE;
202 }
203
204 /* match a domain. domain must match if the domain is not NULL. path must match if the path is not NULL */
205 static BOOL COOKIE_matchDomain(LPCWSTR lpszCookieDomain, LPCWSTR lpszCookiePath,
206                                cookie_domain *searchDomain, BOOL allow_partial)
207 {
208     TRACE("searching on domain %p\n", searchDomain);
209         if (lpszCookieDomain)
210         {
211             if (!searchDomain->lpCookieDomain)
212             return FALSE;
213
214             TRACE("comparing domain %s with %s\n", 
215             debugstr_w(lpszCookieDomain), 
216             debugstr_w(searchDomain->lpCookieDomain));
217
218         if (allow_partial && !strstrW(lpszCookieDomain, searchDomain->lpCookieDomain))
219             return FALSE;
220         else if (!allow_partial && lstrcmpW(lpszCookieDomain, searchDomain->lpCookieDomain) != 0)
221             return FALSE;
222         }
223     if (lpszCookiePath)
224     {
225         INT len;
226         TRACE("comparing paths: %s with %s\n", debugstr_w(lpszCookiePath), debugstr_w(searchDomain->lpCookiePath));
227         /* paths match at the beginning.  so a path of  /foo would match
228          * /foobar and /foo/bar
229          */
230         if (!searchDomain->lpCookiePath)
231             return FALSE;
232         if (allow_partial)
233         {
234             len = lstrlenW(searchDomain->lpCookiePath);
235             if (strncmpiW(searchDomain->lpCookiePath, lpszCookiePath, len)!=0)
236                 return FALSE;
237         }
238         else if (strcmpW(lpszCookiePath, searchDomain->lpCookiePath))
239             return FALSE;
240
241         }
242         return TRUE;
243 }
244
245 /* remove a domain from the list and delete it */
246 static void COOKIE_deleteDomain(cookie_domain *deadDomain)
247 {
248     struct list * cursor;
249     while ((cursor = list_tail(&deadDomain->cookie_list)))
250     {
251         COOKIE_deleteCookie(LIST_ENTRY(cursor, cookie, entry), FALSE);
252         list_remove(cursor);
253     }
254
255     HeapFree(GetProcessHeap(), 0, deadDomain->lpCookieDomain);
256     HeapFree(GetProcessHeap(), 0, deadDomain->lpCookiePath);
257
258     list_remove(&deadDomain->entry);
259
260     HeapFree(GetProcessHeap(), 0, deadDomain);
261 }
262
263 BOOL get_cookie(const WCHAR *host, const WCHAR *path, WCHAR *cookie_data, DWORD *size)
264 {
265     unsigned cnt = 0, len, domain_count = 0, cookie_count = 0;
266     cookie_domain *domain;
267     FILETIME tm;
268
269     GetSystemTimeAsFileTime(&tm);
270
271     LIST_FOR_EACH_ENTRY(domain, &domain_list, cookie_domain, entry) {
272         struct list *cursor, *cursor2;
273
274         if(!COOKIE_matchDomain(host, path, domain, TRUE))
275             continue;
276
277         domain_count++;
278         TRACE("found domain %p\n", domain);
279     
280         LIST_FOR_EACH_SAFE(cursor, cursor2, &domain->cookie_list) {
281             cookie *cookie_iter = LIST_ENTRY(cursor, cookie, entry);
282
283             /* check for expiry */
284             if((cookie_iter->expiry.dwLowDateTime != 0 || cookie_iter->expiry.dwHighDateTime != 0)
285                 && CompareFileTime(&tm, &cookie_iter->expiry)  > 0)
286             {
287                 TRACE("Found expired cookie. deleting\n");
288                 COOKIE_deleteCookie(cookie_iter, FALSE);
289                 continue;
290             }
291
292             if(!cookie_data) { /* return the size of the buffer required to lpdwSize */
293                 if (cookie_count)
294                     cnt += 2; /* '; ' */
295                 cnt += strlenW(cookie_iter->lpCookieName);
296                 if ((len = strlenW(cookie_iter->lpCookieData))) {
297                     cnt += 1; /* = */
298                     cnt += len;
299                 }
300             }else {
301                 static const WCHAR szsc[] = { ';',' ',0 };
302                 static const WCHAR szname[] = { '%','s',0 };
303                 static const WCHAR szdata[] = { '=','%','s',0 };
304
305                 if (cookie_count) cnt += snprintfW(cookie_data + cnt, *size - cnt, szsc);
306                 cnt += snprintfW(cookie_data + cnt, *size - cnt, szname, cookie_iter->lpCookieName);
307
308                 if (cookie_iter->lpCookieData[0])
309                     cnt += snprintfW(cookie_data + cnt, *size - cnt, szdata, cookie_iter->lpCookieData);
310
311                 TRACE("Cookie: %s\n", debugstr_w(cookie_data));
312             }
313             cookie_count++;
314         }
315     }
316
317     if (!domain_count) {
318         TRACE("no cookies found for %s\n", debugstr_w(host));
319         SetLastError(ERROR_NO_MORE_ITEMS);
320         return FALSE;
321     }
322
323     if(!cookie_data) {
324         *size = (cnt + 1) * sizeof(WCHAR);
325         TRACE("returning %u\n", *size);
326         return TRUE;
327     }
328
329     *size = cnt + 1;
330
331     TRACE("Returning %u (from %u domains): %s\n", cnt, domain_count, debugstr_w(cookie_data));
332     return cnt != 0;
333 }
334
335 /***********************************************************************
336  *           InternetGetCookieW (WININET.@)
337  *
338  * Retrieve cookie from the specified url
339  *
340  *  It should be noted that on windows the lpszCookieName parameter is "not implemented".
341  *    So it won't be implemented here.
342  *
343  * RETURNS
344  *    TRUE  on success
345  *    FALSE on failure
346  *
347  */
348 BOOL WINAPI InternetGetCookieW(LPCWSTR lpszUrl, LPCWSTR lpszCookieName,
349     LPWSTR lpCookieData, LPDWORD lpdwSize)
350 {
351     WCHAR host[INTERNET_MAX_HOST_NAME_LENGTH], path[INTERNET_MAX_PATH_LENGTH];
352     BOOL ret;
353
354     TRACE("(%s, %s, %p, %p)\n", debugstr_w(lpszUrl),debugstr_w(lpszCookieName), lpCookieData, lpdwSize);
355
356     if (!lpszUrl)
357     {
358         SetLastError(ERROR_INVALID_PARAMETER);
359         return FALSE;
360     }
361
362     host[0] = 0;
363     ret = COOKIE_crackUrlSimple(lpszUrl, host, sizeof(host)/sizeof(host[0]), path, sizeof(path)/sizeof(path[0]));
364     if (!ret || !host[0]) return FALSE;
365
366     return get_cookie(host, path, lpCookieData, lpdwSize);
367 }
368
369
370 /***********************************************************************
371  *           InternetGetCookieA (WININET.@)
372  *
373  * Retrieve cookie from the specified url
374  *
375  * RETURNS
376  *    TRUE  on success
377  *    FALSE on failure
378  *
379  */
380 BOOL WINAPI InternetGetCookieA(LPCSTR lpszUrl, LPCSTR lpszCookieName,
381     LPSTR lpCookieData, LPDWORD lpdwSize)
382 {
383     DWORD len;
384     LPWSTR szCookieData = NULL, url, name;
385     BOOL r;
386
387     TRACE("(%s,%s,%p)\n", debugstr_a(lpszUrl), debugstr_a(lpszCookieName),
388         lpCookieData);
389
390     url = heap_strdupAtoW(lpszUrl);
391     name = heap_strdupAtoW(lpszCookieName);
392
393     r = InternetGetCookieW( url, name, NULL, &len );
394     if( r )
395     {
396         szCookieData = heap_alloc(len * sizeof(WCHAR));
397         if( !szCookieData )
398         {
399             r = FALSE;
400         }
401         else
402         {
403             r = InternetGetCookieW( url, name, szCookieData, &len );
404
405             *lpdwSize = WideCharToMultiByte( CP_ACP, 0, szCookieData, len,
406                                     lpCookieData, *lpdwSize, NULL, NULL );
407         }
408     }
409
410     HeapFree( GetProcessHeap(), 0, szCookieData );
411     HeapFree( GetProcessHeap(), 0, name );
412     HeapFree( GetProcessHeap(), 0, url );
413
414     return r;
415 }
416
417 BOOL set_cookie(LPCWSTR domain, LPCWSTR path, LPCWSTR cookie_name, LPCWSTR cookie_data)
418 {
419     cookie_domain *thisCookieDomain = NULL;
420     cookie *thisCookie;
421     struct list *cursor;
422     LPWSTR data, value;
423     WCHAR *ptr;
424     FILETIME expiry;
425     BOOL expired = FALSE;
426
427     value = data = heap_strdupW(cookie_data);
428     if (!data)
429     {
430         ERR("could not allocate the cookie data buffer\n");
431         return FALSE;
432     }
433
434     memset(&expiry,0,sizeof(expiry));
435
436     /* lots of information can be parsed out of the cookie value */
437
438     ptr = data;
439     for (;;)
440     {
441         static const WCHAR szDomain[] = {'d','o','m','a','i','n','=',0};
442         static const WCHAR szPath[] = {'p','a','t','h','=',0};
443         static const WCHAR szExpires[] = {'e','x','p','i','r','e','s','=',0};
444         static const WCHAR szSecure[] = {'s','e','c','u','r','e',0};
445         static const WCHAR szHttpOnly[] = {'h','t','t','p','o','n','l','y',0};
446
447         if (!(ptr = strchrW(ptr,';'))) break;
448         *ptr++ = 0;
449
450         if (value != data)
451             HeapFree(GetProcessHeap(), 0, value);
452         value = heap_alloc((ptr - data) * sizeof(WCHAR));
453         if (value == NULL)
454         {
455             HeapFree(GetProcessHeap(), 0, data);
456             ERR("could not allocate the cookie value buffer\n");
457             return FALSE;
458         }
459         strcpyW(value, data);
460
461         while (*ptr == ' ') ptr++; /* whitespace */
462
463         if (strncmpiW(ptr, szDomain, 7) == 0)
464         {
465             ptr+=strlenW(szDomain);
466             domain = ptr;
467             TRACE("Parsing new domain %s\n",debugstr_w(domain));
468         }
469         else if (strncmpiW(ptr, szPath, 5) == 0)
470         {
471             ptr+=strlenW(szPath);
472             path = ptr;
473             TRACE("Parsing new path %s\n",debugstr_w(path));
474         }
475         else if (strncmpiW(ptr, szExpires, 8) == 0)
476         {
477             FILETIME ft;
478             SYSTEMTIME st;
479             FIXME("persistent cookies not handled (%s)\n",debugstr_w(ptr));
480             ptr+=strlenW(szExpires);
481             if (InternetTimeToSystemTimeW(ptr, &st, 0))
482             {
483                 SystemTimeToFileTime(&st, &expiry);
484                 GetSystemTimeAsFileTime(&ft);
485
486                 if (CompareFileTime(&ft,&expiry) > 0)
487                 {
488                     TRACE("Cookie already expired.\n");
489                     expired = TRUE;
490                 }
491             }
492         }
493         else if (strncmpiW(ptr, szSecure, 6) == 0)
494         {
495             FIXME("secure not handled (%s)\n",debugstr_w(ptr));
496             ptr += strlenW(szSecure);
497         }
498         else if (strncmpiW(ptr, szHttpOnly, 8) == 0)
499         {
500             FIXME("httponly not handled (%s)\n",debugstr_w(ptr));
501             ptr += strlenW(szHttpOnly);
502         }
503         else if (*ptr)
504         {
505             FIXME("Unknown additional option %s\n",debugstr_w(ptr));
506             break;
507         }
508     }
509
510     LIST_FOR_EACH(cursor, &domain_list)
511     {
512         thisCookieDomain = LIST_ENTRY(cursor, cookie_domain, entry);
513         if (COOKIE_matchDomain(domain, path, thisCookieDomain, FALSE))
514             break;
515         thisCookieDomain = NULL;
516     }
517
518     if (!thisCookieDomain)
519     {
520         if (!expired)
521             thisCookieDomain = COOKIE_addDomain(domain, path);
522         else
523         {
524             HeapFree(GetProcessHeap(),0,data);
525             if (value != data) HeapFree(GetProcessHeap(), 0, value);
526             return TRUE;
527         }
528     }
529
530     if ((thisCookie = COOKIE_findCookie(thisCookieDomain, cookie_name)))
531         COOKIE_deleteCookie(thisCookie, FALSE);
532
533     TRACE("setting cookie %s=%s for domain %s path %s\n", debugstr_w(cookie_name),
534           debugstr_w(value), debugstr_w(thisCookieDomain->lpCookieDomain),debugstr_w(thisCookieDomain->lpCookiePath));
535
536     if (!expired && !COOKIE_addCookie(thisCookieDomain, cookie_name, value, expiry))
537     {
538         HeapFree(GetProcessHeap(),0,data);
539         if (value != data) HeapFree(GetProcessHeap(), 0, value);
540         return FALSE;
541     }
542
543     HeapFree(GetProcessHeap(),0,data);
544     if (value != data) HeapFree(GetProcessHeap(), 0, value);
545     return TRUE;
546 }
547
548 /***********************************************************************
549  *           InternetSetCookieW (WININET.@)
550  *
551  * Sets cookie for the specified url
552  *
553  * RETURNS
554  *    TRUE  on success
555  *    FALSE on failure
556  *
557  */
558 BOOL WINAPI InternetSetCookieW(LPCWSTR lpszUrl, LPCWSTR lpszCookieName,
559     LPCWSTR lpCookieData)
560 {
561     BOOL ret;
562     WCHAR hostName[2048], path[2048];
563
564     TRACE("(%s,%s,%s)\n", debugstr_w(lpszUrl),
565         debugstr_w(lpszCookieName), debugstr_w(lpCookieData));
566
567     if (!lpszUrl || !lpCookieData)
568     {
569         SetLastError(ERROR_INVALID_PARAMETER);
570         return FALSE;
571     }
572
573     hostName[0] = 0;
574     ret = COOKIE_crackUrlSimple(lpszUrl, hostName, sizeof(hostName)/sizeof(hostName[0]), path, sizeof(path)/sizeof(path[0]));
575     if (!ret || !hostName[0]) return FALSE;
576
577     if (!lpszCookieName)
578     {
579         WCHAR *cookie, *data;
580
581         cookie = heap_strdupW(lpCookieData);
582         if (!cookie)
583         {
584             SetLastError(ERROR_OUTOFMEMORY);
585             return FALSE;
586         }
587
588         /* some apps (or is it us??) try to add a cookie with no cookie name, but
589          * the cookie data in the form of name[=data].
590          */
591         if (!(data = strchrW(cookie, '='))) data = cookie + strlenW(cookie);
592         else *data++ = 0;
593
594         ret = set_cookie(hostName, path, cookie, data);
595
596         HeapFree(GetProcessHeap(), 0, cookie);
597         return ret;
598     }
599     return set_cookie(hostName, path, lpszCookieName, lpCookieData);
600 }
601
602
603 /***********************************************************************
604  *           InternetSetCookieA (WININET.@)
605  *
606  * Sets cookie for the specified url
607  *
608  * RETURNS
609  *    TRUE  on success
610  *    FALSE on failure
611  *
612  */
613 BOOL WINAPI InternetSetCookieA(LPCSTR lpszUrl, LPCSTR lpszCookieName,
614     LPCSTR lpCookieData)
615 {
616     LPWSTR data, url, name;
617     BOOL r;
618
619     TRACE("(%s,%s,%s)\n", debugstr_a(lpszUrl),
620         debugstr_a(lpszCookieName), debugstr_a(lpCookieData));
621
622     url = heap_strdupAtoW(lpszUrl);
623     name = heap_strdupAtoW(lpszCookieName);
624     data = heap_strdupAtoW(lpCookieData);
625
626     r = InternetSetCookieW( url, name, data );
627
628     HeapFree( GetProcessHeap(), 0, data );
629     HeapFree( GetProcessHeap(), 0, name );
630     HeapFree( GetProcessHeap(), 0, url );
631
632     return r;
633 }
634
635 /***********************************************************************
636  *           InternetSetCookieExA (WININET.@)
637  *
638  * See InternetSetCookieExW.
639  */
640 DWORD WINAPI InternetSetCookieExA( LPCSTR lpszURL, LPCSTR lpszCookieName, LPCSTR lpszCookieData,
641                                    DWORD dwFlags, DWORD_PTR dwReserved)
642 {
643     TRACE("(%s, %s, %s, 0x%08x, 0x%08lx)\n",
644           debugstr_a(lpszURL), debugstr_a(lpszCookieName), debugstr_a(lpszCookieData),
645           dwFlags, dwReserved);
646
647     if (dwFlags) FIXME("flags 0x%08x not supported\n", dwFlags);
648     return InternetSetCookieA(lpszURL, lpszCookieName, lpszCookieData);
649 }
650
651 /***********************************************************************
652  *           InternetSetCookieExW (WININET.@)
653  *
654  * Sets a cookie for the specified URL.
655  *
656  * RETURNS
657  *    TRUE  on success
658  *    FALSE on failure
659  *
660  */
661 DWORD WINAPI InternetSetCookieExW( LPCWSTR lpszURL, LPCWSTR lpszCookieName, LPCWSTR lpszCookieData,
662                                    DWORD dwFlags, DWORD_PTR dwReserved)
663 {
664     TRACE("(%s, %s, %s, 0x%08x, 0x%08lx)\n",
665           debugstr_w(lpszURL), debugstr_w(lpszCookieName), debugstr_w(lpszCookieData),
666           dwFlags, dwReserved);
667
668     if (dwFlags) FIXME("flags 0x%08x not supported\n", dwFlags);
669     return InternetSetCookieW(lpszURL, lpszCookieName, lpszCookieData);
670 }
671
672 /***********************************************************************
673  *           InternetGetCookieExA (WININET.@)
674  *
675  * See InternetGetCookieExW.
676  */
677 BOOL WINAPI InternetGetCookieExA( LPCSTR pchURL, LPCSTR pchCookieName, LPSTR pchCookieData,
678                                   LPDWORD pcchCookieData, DWORD dwFlags, LPVOID lpReserved)
679 {
680     TRACE("(%s, %s, %s, %p, 0x%08x, %p)\n",
681           debugstr_a(pchURL), debugstr_a(pchCookieName), debugstr_a(pchCookieData),
682           pcchCookieData, dwFlags, lpReserved);
683
684     if (dwFlags) FIXME("flags 0x%08x not supported\n", dwFlags);
685     return InternetGetCookieA(pchURL, pchCookieName, pchCookieData, pcchCookieData);
686 }
687
688 /***********************************************************************
689  *           InternetGetCookieExW (WININET.@)
690  *
691  * Retrieve cookie for the specified URL.
692  *
693  * RETURNS
694  *    TRUE  on success
695  *    FALSE on failure
696  *
697  */
698 BOOL WINAPI InternetGetCookieExW( LPCWSTR pchURL, LPCWSTR pchCookieName, LPWSTR pchCookieData,
699                                   LPDWORD pcchCookieData, DWORD dwFlags, LPVOID lpReserved)
700 {
701     TRACE("(%s, %s, %s, %p, 0x%08x, %p)\n",
702           debugstr_w(pchURL), debugstr_w(pchCookieName), debugstr_w(pchCookieData),
703           pcchCookieData, dwFlags, lpReserved);
704
705     if (dwFlags) FIXME("flags 0x%08x not supported\n", dwFlags);
706     return InternetGetCookieW(pchURL, pchCookieName, pchCookieData, pcchCookieData);
707 }
708
709 /***********************************************************************
710  *           InternetClearAllPerSiteCookieDecisions (WININET.@)
711  *
712  * Clears all per-site decisions about cookies.
713  *
714  * RETURNS
715  *    TRUE  on success
716  *    FALSE on failure
717  *
718  */
719 BOOL WINAPI InternetClearAllPerSiteCookieDecisions( VOID )
720 {
721     FIXME("stub\n");
722     return TRUE;
723 }
724
725 /***********************************************************************
726  *           InternetEnumPerSiteCookieDecisionA (WININET.@)
727  *
728  * See InternetEnumPerSiteCookieDecisionW.
729  */
730 BOOL WINAPI InternetEnumPerSiteCookieDecisionA( LPSTR pszSiteName, ULONG *pcSiteNameSize,
731                                                 ULONG *pdwDecision, ULONG dwIndex )
732 {
733     FIXME("(%s, %p, %p, 0x%08x) stub\n",
734           debugstr_a(pszSiteName), pcSiteNameSize, pdwDecision, dwIndex);
735     return FALSE;
736 }
737
738 /***********************************************************************
739  *           InternetEnumPerSiteCookieDecisionW (WININET.@)
740  *
741  * Enumerates all per-site decisions about cookies.
742  *
743  * RETURNS
744  *    TRUE  on success
745  *    FALSE on failure
746  *
747  */
748 BOOL WINAPI InternetEnumPerSiteCookieDecisionW( LPWSTR pszSiteName, ULONG *pcSiteNameSize,
749                                                 ULONG *pdwDecision, ULONG dwIndex )
750 {
751     FIXME("(%s, %p, %p, 0x%08x) stub\n",
752           debugstr_w(pszSiteName), pcSiteNameSize, pdwDecision, dwIndex);
753     return FALSE;
754 }
755
756 /***********************************************************************
757  *           InternetGetPerSiteCookieDecisionA (WININET.@)
758  */
759 BOOL WINAPI InternetGetPerSiteCookieDecisionA( LPCSTR pwchHostName, ULONG *pResult )
760 {
761     FIXME("(%s, %p) stub\n", debugstr_a(pwchHostName), pResult);
762     return FALSE;
763 }
764
765 /***********************************************************************
766  *           InternetGetPerSiteCookieDecisionW (WININET.@)
767  */
768 BOOL WINAPI InternetGetPerSiteCookieDecisionW( LPCWSTR pwchHostName, ULONG *pResult )
769 {
770     FIXME("(%s, %p) stub\n", debugstr_w(pwchHostName), pResult);
771     return FALSE;
772 }
773
774 /***********************************************************************
775  *           InternetSetPerSiteCookieDecisionA (WININET.@)
776  */
777 BOOL WINAPI InternetSetPerSiteCookieDecisionA( LPCSTR pchHostName, DWORD dwDecision )
778 {
779     FIXME("(%s, 0x%08x) stub\n", debugstr_a(pchHostName), dwDecision);
780     return FALSE;
781 }
782
783 /***********************************************************************
784  *           InternetSetPerSiteCookieDecisionW (WININET.@)
785  */
786 BOOL WINAPI InternetSetPerSiteCookieDecisionW( LPCWSTR pchHostName, DWORD dwDecision )
787 {
788     FIXME("(%s, 0x%08x) stub\n", debugstr_w(pchHostName), dwDecision);
789     return FALSE;
790 }
791
792 /***********************************************************************
793  *           IsDomainLegalCookieDomainW (WININET.@)
794  */
795 BOOL WINAPI IsDomainLegalCookieDomainW( LPCWSTR s1, LPCWSTR s2 )
796 {
797     const WCHAR *p;
798
799     FIXME("(%s, %s)\n", debugstr_w(s1), debugstr_w(s2));
800
801     if (!s1 || !s2)
802     {
803         SetLastError(ERROR_INVALID_PARAMETER);
804         return FALSE;
805     }
806     if (s1[0] == '.' || !s1[0] || s2[0] == '.' || !s2[0])
807     {
808         SetLastError(ERROR_INVALID_NAME);
809         return FALSE;
810     }
811     if (!(p = strchrW(s2, '.'))) return FALSE;
812     if (strchrW(p + 1, '.') && !strcmpW(p + 1, s1)) return TRUE;
813     else if (!strcmpW(s1, s2)) return TRUE;
814     return FALSE;
815 }