David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #include "config.h" |
Alexandre Julliard | 754e7aa | 2004-09-03 18:30:28 +0000 | [diff] [blame] | 24 | #include "wine/port.h" |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 25 | |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 26 | #include <stdarg.h> |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 27 | #include <stdio.h> |
| 28 | #include <stdlib.h> |
| 29 | #include <string.h> |
Patrik Stridvall | ba78aac | 2003-08-08 21:07:23 +0000 | [diff] [blame] | 30 | #ifdef HAVE_UNISTD_H |
| 31 | # include <unistd.h> |
| 32 | #endif |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 33 | |
| 34 | #include "windef.h" |
| 35 | #include "winbase.h" |
| 36 | #include "wininet.h" |
| 37 | #include "winerror.h" |
| 38 | |
| 39 | #include "wine/debug.h" |
| 40 | #include "internet.h" |
| 41 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 42 | #include "wine/list.h" |
| 43 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 44 | #define RESPONSE_TIMEOUT 30 /* FROM internet.c */ |
| 45 | |
| 46 | |
| 47 | WINE_DEFAULT_DEBUG_CHANNEL(wininet); |
| 48 | |
| 49 | /* FIXME |
| 50 | * Cookies are currently memory only. |
| 51 | * Cookies are NOT THREAD SAFE |
Francois Gouget | da8b3dd | 2005-01-26 21:09:04 +0000 | [diff] [blame] | 52 | * Cookies could use A LOT OF MEMORY. We need some kind of memory management here! |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 53 | * Cookies should care about the expiry time |
| 54 | */ |
| 55 | |
| 56 | typedef struct _cookie_domain cookie_domain; |
| 57 | typedef struct _cookie cookie; |
| 58 | |
| 59 | struct _cookie |
| 60 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 61 | struct list entry; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 62 | |
| 63 | struct _cookie_domain *parent; |
| 64 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 65 | LPWSTR lpCookieName; |
| 66 | LPWSTR lpCookieData; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 67 | time_t expiry; /* FIXME: not used */ |
| 68 | }; |
| 69 | |
| 70 | struct _cookie_domain |
| 71 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 72 | struct list entry; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 73 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 74 | LPWSTR lpCookieDomain; |
| 75 | LPWSTR lpCookiePath; |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 76 | struct list cookie_list; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 77 | }; |
| 78 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 79 | static struct list domain_list = LIST_INIT(domain_list); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 80 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 81 | static cookie *COOKIE_addCookie(cookie_domain *domain, LPCWSTR name, LPCWSTR data); |
| 82 | static cookie *COOKIE_findCookie(cookie_domain *domain, LPCWSTR lpszCookieName); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 83 | static void COOKIE_deleteCookie(cookie *deadCookie, BOOL deleteDomain); |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 84 | static cookie_domain *COOKIE_addDomain(LPCWSTR domain, LPCWSTR path); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 85 | static void COOKIE_deleteDomain(cookie_domain *deadDomain); |
| 86 | |
| 87 | |
| 88 | /* adds a cookie to the domain */ |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 89 | static cookie *COOKIE_addCookie(cookie_domain *domain, LPCWSTR name, LPCWSTR data) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 90 | { |
| 91 | cookie *newCookie = HeapAlloc(GetProcessHeap(), 0, sizeof(cookie)); |
| 92 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 93 | list_init(&newCookie->entry); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 94 | newCookie->lpCookieName = NULL; |
| 95 | newCookie->lpCookieData = NULL; |
| 96 | |
| 97 | if (name) |
| 98 | { |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 99 | newCookie->lpCookieName = HeapAlloc(GetProcessHeap(), 0, (strlenW(name) + 1)*sizeof(WCHAR)); |
| 100 | lstrcpyW(newCookie->lpCookieName, name); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 101 | } |
| 102 | if (data) |
| 103 | { |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 104 | newCookie->lpCookieData = HeapAlloc(GetProcessHeap(), 0, (strlenW(data) + 1)*sizeof(WCHAR)); |
| 105 | lstrcpyW(newCookie->lpCookieData, data); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 106 | } |
| 107 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 108 | TRACE("added cookie %p (data is %s)\n", newCookie, debugstr_w(data) ); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 109 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 110 | list_add_tail(&domain->cookie_list, &newCookie->entry); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 111 | newCookie->parent = domain; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 112 | return newCookie; |
| 113 | } |
| 114 | |
| 115 | |
| 116 | /* finds a cookie in the domain matching the cookie name */ |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 117 | static cookie *COOKIE_findCookie(cookie_domain *domain, LPCWSTR lpszCookieName) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 118 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 119 | struct list * cursor; |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 120 | TRACE("(%p, %s)\n", domain, debugstr_w(lpszCookieName)); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 121 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 122 | LIST_FOR_EACH(cursor, &domain->cookie_list) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 123 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 124 | cookie *searchCookie = LIST_ENTRY(cursor, cookie, entry); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 125 | BOOL candidate = TRUE; |
| 126 | if (candidate && lpszCookieName) |
| 127 | { |
| 128 | if (candidate && !searchCookie->lpCookieName) |
| 129 | candidate = FALSE; |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 130 | if (candidate && strcmpW(lpszCookieName, searchCookie->lpCookieName) != 0) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 131 | candidate = FALSE; |
| 132 | } |
| 133 | if (candidate) |
| 134 | return searchCookie; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 135 | } |
| 136 | return NULL; |
| 137 | } |
| 138 | |
| 139 | /* removes a cookie from the list, if its the last cookie we also remove the domain */ |
| 140 | static void COOKIE_deleteCookie(cookie *deadCookie, BOOL deleteDomain) |
| 141 | { |
Michael Stefaniuc | 5ad7d85 | 2004-12-23 17:06:43 +0000 | [diff] [blame] | 142 | HeapFree(GetProcessHeap(), 0, deadCookie->lpCookieName); |
| 143 | HeapFree(GetProcessHeap(), 0, deadCookie->lpCookieData); |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 144 | list_remove(&deadCookie->entry); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 145 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 146 | /* special case: last cookie, lets remove the domain to save memory */ |
| 147 | if (list_empty(&deadCookie->parent->cookie_list) && deleteDomain) |
| 148 | COOKIE_deleteDomain(deadCookie->parent); |
| 149 | HeapFree(GetProcessHeap(), 0, deadCookie); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | /* allocates a domain and adds it to the end */ |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 153 | static cookie_domain *COOKIE_addDomain(LPCWSTR domain, LPCWSTR path) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 154 | { |
| 155 | cookie_domain *newDomain = HeapAlloc(GetProcessHeap(), 0, sizeof(cookie_domain)); |
| 156 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 157 | list_init(&newDomain->entry); |
| 158 | list_init(&newDomain->cookie_list); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 159 | newDomain->lpCookieDomain = NULL; |
| 160 | newDomain->lpCookiePath = NULL; |
| 161 | |
| 162 | if (domain) |
| 163 | { |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 164 | newDomain->lpCookieDomain = HeapAlloc(GetProcessHeap(), 0, (strlenW(domain) + 1)*sizeof(WCHAR)); |
| 165 | strcpyW(newDomain->lpCookieDomain, domain); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 166 | } |
| 167 | if (path) |
| 168 | { |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 169 | newDomain->lpCookiePath = HeapAlloc(GetProcessHeap(), 0, (strlenW(path) + 1)*sizeof(WCHAR)); |
| 170 | lstrcpyW(newDomain->lpCookiePath, path); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 171 | } |
| 172 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 173 | list_add_tail(&domain_list, &newDomain->entry); |
| 174 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 175 | TRACE("Adding domain: %p\n", newDomain); |
| 176 | return newDomain; |
| 177 | } |
| 178 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 179 | static void COOKIE_crackUrlSimple(LPCWSTR lpszUrl, LPWSTR hostName, int hostNameLen, LPWSTR path, int pathLen) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 180 | { |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 181 | URL_COMPONENTSW UrlComponents; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 182 | |
| 183 | UrlComponents.lpszExtraInfo = NULL; |
| 184 | UrlComponents.lpszPassword = NULL; |
| 185 | UrlComponents.lpszScheme = NULL; |
| 186 | UrlComponents.lpszUrlPath = path; |
| 187 | UrlComponents.lpszUserName = NULL; |
| 188 | UrlComponents.lpszHostName = hostName; |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 189 | UrlComponents.dwHostNameLength = hostNameLen; |
| 190 | UrlComponents.dwUrlPathLength = pathLen; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 191 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 192 | InternetCrackUrlW(lpszUrl, 0, 0, &UrlComponents); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 195 | /* match a domain. domain must match if the domain is not NULL. path must match if the path is not NULL */ |
| 196 | static BOOL COOKIE_matchDomain(LPCWSTR lpszCookieDomain, LPCWSTR lpszCookiePath, |
| 197 | cookie_domain *searchDomain, BOOL allow_partial) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 198 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 199 | TRACE("searching on domain %p\n", searchDomain); |
| 200 | if (lpszCookieDomain) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 201 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 202 | if (!searchDomain->lpCookieDomain) |
| 203 | return FALSE; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 204 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 205 | TRACE("comparing domain %s with %s\n", |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 206 | debugstr_w(lpszCookieDomain), |
| 207 | debugstr_w(searchDomain->lpCookieDomain)); |
| 208 | |
| 209 | if (allow_partial && !strstrW(lpszCookieDomain, searchDomain->lpCookieDomain)) |
| 210 | return FALSE; |
| 211 | else if (!allow_partial && lstrcmpW(lpszCookieDomain, searchDomain->lpCookieDomain) != 0) |
| 212 | return FALSE; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 213 | } |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 214 | if (lpszCookiePath) |
| 215 | { |
| 216 | TRACE("comparing paths: %s with %s\n", debugstr_w(lpszCookiePath), debugstr_w(searchDomain->lpCookiePath)); |
| 217 | if (!searchDomain->lpCookiePath) |
| 218 | return FALSE; |
| 219 | if (strcmpW(lpszCookiePath, searchDomain->lpCookiePath)) |
| 220 | return FALSE; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 221 | } |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 222 | return TRUE; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | /* remove a domain from the list and delete it */ |
| 226 | static void COOKIE_deleteDomain(cookie_domain *deadDomain) |
| 227 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 228 | struct list * cursor; |
| 229 | while ((cursor = list_tail(&deadDomain->cookie_list))) |
| 230 | { |
| 231 | COOKIE_deleteCookie(LIST_ENTRY(cursor, cookie, entry), FALSE); |
| 232 | list_remove(cursor); |
| 233 | } |
| 234 | |
Michael Stefaniuc | 5ad7d85 | 2004-12-23 17:06:43 +0000 | [diff] [blame] | 235 | HeapFree(GetProcessHeap(), 0, deadDomain->lpCookieDomain); |
| 236 | HeapFree(GetProcessHeap(), 0, deadDomain->lpCookiePath); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 237 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 238 | list_remove(&deadDomain->entry); |
| 239 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 240 | HeapFree(GetProcessHeap(), 0, deadDomain); |
| 241 | } |
| 242 | |
| 243 | /*********************************************************************** |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 244 | * InternetGetCookieW (WININET.@) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 245 | * |
| 246 | * Retrieve cookie from the specified url |
| 247 | * |
| 248 | * It should be noted that on windows the lpszCookieName parameter is "not implemented". |
| 249 | * So it won't be implemented here. |
| 250 | * |
| 251 | * RETURNS |
| 252 | * TRUE on success |
| 253 | * FALSE on failure |
| 254 | * |
| 255 | */ |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 256 | BOOL WINAPI InternetGetCookieW(LPCWSTR lpszUrl, LPCWSTR lpszCookieName, |
| 257 | LPWSTR lpCookieData, LPDWORD lpdwSize) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 258 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 259 | struct list * cursor; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 260 | int cnt = 0, domain_count = 0; |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 261 | int cookie_count = 0; |
| 262 | WCHAR hostName[2048], path[2048]; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 263 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 264 | TRACE("(%s, %s, %p, %p)\n", debugstr_w(lpszUrl),debugstr_w(lpszCookieName), |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 265 | lpCookieData, lpdwSize); |
| 266 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 267 | COOKIE_crackUrlSimple(lpszUrl, hostName, sizeof(hostName)/sizeof(hostName[0]), path, sizeof(path)/sizeof(path[0])); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 268 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 269 | LIST_FOR_EACH(cursor, &domain_list) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 270 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 271 | cookie_domain *cookiesDomain = LIST_ENTRY(cursor, cookie_domain, entry); |
| 272 | if (COOKIE_matchDomain(hostName, NULL /* FIXME: path */, cookiesDomain, TRUE)) |
| 273 | { |
| 274 | struct list * cursor; |
| 275 | domain_count++; |
| 276 | TRACE("found domain %p\n", cookiesDomain); |
| 277 | |
| 278 | LIST_FOR_EACH(cursor, &cookiesDomain->cookie_list) |
| 279 | { |
| 280 | cookie *thisCookie = LIST_ENTRY(cursor, cookie, entry); |
| 281 | if (lpCookieData == NULL) /* return the size of the buffer required to lpdwSize */ |
| 282 | { |
| 283 | if (cookie_count != 0) |
| 284 | cnt += 2; /* '; ' */ |
| 285 | cnt += strlenW(thisCookie->lpCookieName); |
| 286 | cnt += 1; /* = */ |
| 287 | cnt += strlenW(thisCookie->lpCookieData); |
| 288 | } |
| 289 | else |
| 290 | { |
| 291 | static const WCHAR szsc[] = { ';',' ',0 }; |
| 292 | static const WCHAR szpseq[] = { '%','s','=','%','s',0 }; |
| 293 | if (cookie_count != 0) |
| 294 | cnt += snprintfW(lpCookieData + cnt, *lpdwSize - cnt, szsc); |
| 295 | cnt += snprintfW(lpCookieData + cnt, *lpdwSize - cnt, szpseq, |
| 296 | thisCookie->lpCookieName, |
| 297 | thisCookie->lpCookieData); |
| 298 | TRACE("Cookie: %s=%s\n", debugstr_w(thisCookie->lpCookieName), debugstr_w(thisCookie->lpCookieData)); |
| 299 | } |
| 300 | cookie_count++; |
| 301 | } |
| 302 | } |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 303 | } |
Robert Shearman | 1b8f7f0 | 2006-03-09 15:20:24 +0000 | [diff] [blame] | 304 | |
| 305 | if (!domain_count) |
| 306 | { |
| 307 | TRACE("no cookies found for %s\n", debugstr_w(hostName)); |
| 308 | SetLastError(ERROR_NO_MORE_ITEMS); |
| 309 | return FALSE; |
| 310 | } |
| 311 | |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 312 | if (lpCookieData == NULL) |
| 313 | { |
| 314 | cnt += 1; /* NULL */ |
Robert Shearman | e27ab31 | 2004-07-19 19:32:36 +0000 | [diff] [blame] | 315 | *lpdwSize = cnt*sizeof(WCHAR); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 316 | TRACE("returning\n"); |
| 317 | return TRUE; |
| 318 | } |
| 319 | |
Robert Shearman | e27ab31 | 2004-07-19 19:32:36 +0000 | [diff] [blame] | 320 | *lpdwSize = (cnt + 1)*sizeof(WCHAR); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 321 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 322 | TRACE("Returning %i (from %i domains): %s\n", cnt, domain_count, |
| 323 | debugstr_w(lpCookieData)); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 324 | |
| 325 | return (cnt ? TRUE : FALSE); |
| 326 | } |
| 327 | |
| 328 | |
| 329 | /*********************************************************************** |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 330 | * InternetGetCookieA (WININET.@) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 331 | * |
| 332 | * Retrieve cookie from the specified url |
| 333 | * |
| 334 | * RETURNS |
| 335 | * TRUE on success |
| 336 | * FALSE on failure |
| 337 | * |
| 338 | */ |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 339 | BOOL WINAPI InternetGetCookieA(LPCSTR lpszUrl, LPCSTR lpszCookieName, |
| 340 | LPSTR lpCookieData, LPDWORD lpdwSize) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 341 | { |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 342 | DWORD len; |
| 343 | LPWSTR szCookieData = NULL, szUrl = NULL, szCookieName = NULL; |
| 344 | BOOL r; |
| 345 | |
| 346 | TRACE("(%s,%s,%p)\n", debugstr_a(lpszUrl), debugstr_a(lpszCookieName), |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 347 | lpCookieData); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 348 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 349 | if( lpszUrl ) |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 350 | { |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 351 | len = MultiByteToWideChar( CP_ACP, 0, lpszUrl, -1, NULL, 0 ); |
| 352 | szUrl = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) ); |
| 353 | MultiByteToWideChar( CP_ACP, 0, lpszUrl, -1, szUrl, len ); |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 354 | } |
| 355 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 356 | if( lpszCookieName ) |
| 357 | { |
| 358 | len = MultiByteToWideChar( CP_ACP, 0, lpszCookieName, -1, NULL, 0 ); |
| 359 | szCookieName = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) ); |
| 360 | MultiByteToWideChar( CP_ACP, 0, lpszCookieName, -1, szCookieName, len ); |
| 361 | } |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 362 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 363 | r = InternetGetCookieW( szUrl, szCookieName, NULL, &len ); |
| 364 | if( r ) |
| 365 | { |
| 366 | szCookieData = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) ); |
| 367 | if( !szCookieData ) |
| 368 | return FALSE; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 369 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 370 | r = InternetGetCookieW( szUrl, szCookieName, szCookieData, &len ); |
| 371 | |
| 372 | *lpdwSize = WideCharToMultiByte( CP_ACP, 0, szCookieData, len, |
| 373 | lpCookieData, *lpdwSize, NULL, NULL ); |
| 374 | } |
| 375 | |
Michael Stefaniuc | 7cb43c9 | 2004-12-21 14:42:35 +0000 | [diff] [blame] | 376 | HeapFree( GetProcessHeap(), 0, szCookieData ); |
| 377 | HeapFree( GetProcessHeap(), 0, szCookieName ); |
| 378 | HeapFree( GetProcessHeap(), 0, szUrl ); |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 379 | |
| 380 | return r; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | |
| 384 | /*********************************************************************** |
| 385 | * InternetSetCookieW (WININET.@) |
| 386 | * |
| 387 | * Sets cookie for the specified url |
| 388 | * |
| 389 | * RETURNS |
| 390 | * TRUE on success |
| 391 | * FALSE on failure |
| 392 | * |
| 393 | */ |
Mike McCormack | a4e902c | 2004-03-30 04:36:09 +0000 | [diff] [blame] | 394 | BOOL WINAPI InternetSetCookieW(LPCWSTR lpszUrl, LPCWSTR lpszCookieName, |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 395 | LPCWSTR lpCookieData) |
| 396 | { |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 397 | cookie_domain *thisCookieDomain = NULL; |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 398 | cookie *thisCookie; |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 399 | WCHAR hostName[2048], path[2048]; |
| 400 | struct list * cursor; |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 401 | |
Mike McCormack | a4e902c | 2004-03-30 04:36:09 +0000 | [diff] [blame] | 402 | TRACE("(%s,%s,%s)\n", debugstr_w(lpszUrl), |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 403 | debugstr_w(lpszCookieName), debugstr_w(lpCookieData)); |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 404 | |
| 405 | if (!lpCookieData || !strlenW(lpCookieData)) |
| 406 | { |
| 407 | TRACE("no cookie data, not adding\n"); |
| 408 | return FALSE; |
| 409 | } |
| 410 | if (!lpszCookieName) |
| 411 | { |
| 412 | /* some apps (or is it us??) try to add a cookie with no cookie name, but |
| 413 | * the cookie data in the form of name=data. */ |
| 414 | /* FIXME, probably a bug here, for now I don't care */ |
| 415 | WCHAR *ourCookieName, *ourCookieData; |
| 416 | int ourCookieNameSize; |
| 417 | BOOL ret; |
Peter Berg Larsen | e732fc0 | 2005-03-28 14:17:51 +0000 | [diff] [blame] | 418 | |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 419 | if (!(ourCookieData = strchrW(lpCookieData, '='))) |
| 420 | { |
| 421 | TRACE("something terribly wrong with cookie data %s\n", |
| 422 | debugstr_w(ourCookieData)); |
| 423 | return FALSE; |
| 424 | } |
| 425 | ourCookieNameSize = ourCookieData - lpCookieData; |
| 426 | ourCookieData += 1; |
| 427 | ourCookieName = HeapAlloc(GetProcessHeap(), 0, |
| 428 | (ourCookieNameSize + 1)*sizeof(WCHAR)); |
Robert Shearman | 15a7d3b | 2006-03-18 16:11:35 +0000 | [diff] [blame] | 429 | memcpy(ourCookieName, lpCookieData, ourCookieNameSize * sizeof(WCHAR)); |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 430 | ourCookieName[ourCookieNameSize] = '\0'; |
| 431 | TRACE("setting (hacked) cookie of %s, %s\n", |
| 432 | debugstr_w(ourCookieName), debugstr_w(ourCookieData)); |
| 433 | ret = InternetSetCookieW(lpszUrl, ourCookieName, ourCookieData); |
| 434 | HeapFree(GetProcessHeap(), 0, ourCookieName); |
| 435 | return ret; |
| 436 | } |
| 437 | |
Robert Shearman | a584ffb | 2004-07-21 19:36:53 +0000 | [diff] [blame] | 438 | COOKIE_crackUrlSimple(lpszUrl, hostName, sizeof(hostName)/sizeof(hostName[0]), path, sizeof(path)/sizeof(path[0])); |
| 439 | |
| 440 | LIST_FOR_EACH(cursor, &domain_list) |
| 441 | { |
| 442 | thisCookieDomain = LIST_ENTRY(cursor, cookie_domain, entry); |
| 443 | if (COOKIE_matchDomain(hostName, NULL /* FIXME: path */, thisCookieDomain, FALSE)) |
| 444 | break; |
| 445 | thisCookieDomain = NULL; |
| 446 | } |
| 447 | if (!thisCookieDomain) |
| 448 | thisCookieDomain = COOKIE_addDomain(hostName, path); |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 449 | |
| 450 | if ((thisCookie = COOKIE_findCookie(thisCookieDomain, lpszCookieName))) |
| 451 | COOKIE_deleteCookie(thisCookie, FALSE); |
| 452 | |
| 453 | thisCookie = COOKIE_addCookie(thisCookieDomain, lpszCookieName, lpCookieData); |
| 454 | return TRUE; |
| 455 | } |
| 456 | |
| 457 | |
| 458 | /*********************************************************************** |
| 459 | * InternetSetCookieA (WININET.@) |
| 460 | * |
| 461 | * Sets cookie for the specified url |
| 462 | * |
| 463 | * RETURNS |
| 464 | * TRUE on success |
| 465 | * FALSE on failure |
| 466 | * |
| 467 | */ |
| 468 | BOOL WINAPI InternetSetCookieA(LPCSTR lpszUrl, LPCSTR lpszCookieName, |
| 469 | LPCSTR lpCookieData) |
| 470 | { |
| 471 | DWORD len; |
| 472 | LPWSTR szCookieData = NULL, szUrl = NULL, szCookieName = NULL; |
| 473 | BOOL r; |
| 474 | |
| 475 | TRACE("(%s,%s,%s)\n", debugstr_a(lpszUrl), |
| 476 | debugstr_a(lpszCookieName), debugstr_a(lpCookieData)); |
| 477 | |
| 478 | if( lpszUrl ) |
| 479 | { |
| 480 | len = MultiByteToWideChar( CP_ACP, 0, lpszUrl, -1, NULL, 0 ); |
| 481 | szUrl = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) ); |
| 482 | MultiByteToWideChar( CP_ACP, 0, lpszUrl, -1, szUrl, len ); |
| 483 | } |
| 484 | |
| 485 | if( lpszCookieName ) |
| 486 | { |
| 487 | len = MultiByteToWideChar( CP_ACP, 0, lpszCookieName, -1, NULL, 0 ); |
| 488 | szCookieName = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) ); |
| 489 | MultiByteToWideChar( CP_ACP, 0, lpszCookieName, -1, szCookieName, len ); |
| 490 | } |
| 491 | |
| 492 | if( lpCookieData ) |
| 493 | { |
| 494 | len = MultiByteToWideChar( CP_ACP, 0, lpCookieData, -1, NULL, 0 ); |
| 495 | szCookieData = HeapAlloc( GetProcessHeap(), 0, len * sizeof(WCHAR) ); |
| 496 | MultiByteToWideChar( CP_ACP, 0, lpCookieData, -1, szCookieData, len ); |
| 497 | } |
| 498 | |
| 499 | r = InternetSetCookieW( szUrl, szCookieName, szCookieData ); |
| 500 | |
Michael Stefaniuc | 7cb43c9 | 2004-12-21 14:42:35 +0000 | [diff] [blame] | 501 | HeapFree( GetProcessHeap(), 0, szCookieData ); |
| 502 | HeapFree( GetProcessHeap(), 0, szCookieName ); |
| 503 | HeapFree( GetProcessHeap(), 0, szUrl ); |
Mike McCormack | 44ef9a1 | 2004-03-30 20:38:08 +0000 | [diff] [blame] | 504 | |
| 505 | return r; |
David Hammerton | 852c7ae | 2003-06-20 23:26:56 +0000 | [diff] [blame] | 506 | } |
Robert Shearman | 153aac0 | 2006-03-14 14:35:52 +0000 | [diff] [blame] | 507 | |
| 508 | /*********************************************************************** |
| 509 | * InternetSetCookieExA (WININET.@) |
| 510 | * |
| 511 | * See InternetSetCookieExW. |
| 512 | */ |
| 513 | DWORD WINAPI InternetSetCookieExA( LPCSTR lpszURL, LPCSTR lpszCookieName, LPCSTR lpszCookieData, |
| 514 | DWORD dwFlags, DWORD_PTR dwReserved) |
| 515 | { |
| 516 | FIXME("(%s, %s, %s, 0x%08lx, 0x%08lx) stub\n", |
| 517 | debugstr_a(lpszURL), debugstr_a(lpszCookieName), debugstr_a(lpszCookieData), |
| 518 | dwFlags, dwReserved); |
| 519 | return TRUE; |
| 520 | } |
| 521 | |
| 522 | /*********************************************************************** |
| 523 | * InternetSetCookieExW (WININET.@) |
| 524 | * |
| 525 | * Sets a cookie for the specified URL. |
| 526 | * |
| 527 | * RETURNS |
| 528 | * TRUE on success |
| 529 | * FALSE on failure |
| 530 | * |
| 531 | */ |
| 532 | DWORD WINAPI InternetSetCookieExW( LPCWSTR lpszURL, LPCWSTR lpszCookieName, LPCWSTR lpszCookieData, |
| 533 | DWORD dwFlags, DWORD_PTR dwReserved) |
| 534 | { |
| 535 | FIXME("(%s, %s, %s, 0x%08lx, 0x%08lx) stub\n", |
| 536 | debugstr_w(lpszURL), debugstr_w(lpszCookieName), debugstr_w(lpszCookieData), |
| 537 | dwFlags, dwReserved); |
| 538 | return TRUE; |
| 539 | } |
| 540 | |
| 541 | /*********************************************************************** |
| 542 | * InternetGetCookieExA (WININET.@) |
| 543 | * |
| 544 | * See InternetGetCookieExW. |
| 545 | */ |
| 546 | BOOL WINAPI InternetGetCookieExA( LPCSTR pchURL, LPCSTR pchCookieName, LPSTR pchCookieData, |
| 547 | LPDWORD pcchCookieData, DWORD dwFlags, LPVOID lpReserved) |
| 548 | { |
| 549 | FIXME("(%s, %s, %s, %p, 0x%08lx, %p) stub\n", |
| 550 | debugstr_a(pchURL), debugstr_a(pchCookieName), debugstr_a(pchCookieData), |
| 551 | pcchCookieData, dwFlags, lpReserved); |
| 552 | return FALSE; |
| 553 | } |
| 554 | |
| 555 | /*********************************************************************** |
| 556 | * InternetGetCookieExW (WININET.@) |
| 557 | * |
| 558 | * Retrieve cookie for the specified URL. |
| 559 | * |
| 560 | * RETURNS |
| 561 | * TRUE on success |
| 562 | * FALSE on failure |
| 563 | * |
| 564 | */ |
| 565 | BOOL WINAPI InternetGetCookieExW( LPCWSTR pchURL, LPCWSTR pchCookieName, LPWSTR pchCookieData, |
| 566 | LPDWORD pcchCookieData, DWORD dwFlags, LPVOID lpReserved) |
| 567 | { |
| 568 | FIXME("(%s, %s, %s, %p, 0x%08lx, %p) stub\n", |
| 569 | debugstr_w(pchURL), debugstr_w(pchCookieName), debugstr_w(pchCookieData), |
| 570 | pcchCookieData, dwFlags, lpReserved); |
| 571 | return FALSE; |
| 572 | } |
| 573 | |
| 574 | /*********************************************************************** |
| 575 | * InternetClearAllPerSiteCookieDecisions (WININET.@) |
| 576 | * |
| 577 | * Clears all per-site decisions about cookies. |
| 578 | * |
| 579 | * RETURNS |
| 580 | * TRUE on success |
| 581 | * FALSE on failure |
| 582 | * |
| 583 | */ |
| 584 | BOOL WINAPI InternetClearAllPerSiteCookieDecisions( VOID ) |
| 585 | { |
| 586 | FIXME("stub\n"); |
| 587 | return TRUE; |
| 588 | } |
| 589 | |
| 590 | /*********************************************************************** |
| 591 | * InternetEnumPerSiteCookieDecisionA (WININET.@) |
| 592 | * |
| 593 | * See InternetEnumPerSiteCookieDecisionW. |
| 594 | */ |
| 595 | BOOL WINAPI InternetEnumPerSiteCookieDecisionA( LPSTR pszSiteName, unsigned long *pcSiteNameSize, |
| 596 | unsigned long *pdwDecision, unsigned long dwIndex ) |
| 597 | { |
| 598 | FIXME("(%s, %p, %p, 0x%08lx) stub\n", |
| 599 | debugstr_a(pszSiteName), pcSiteNameSize, pdwDecision, dwIndex); |
| 600 | return FALSE; |
| 601 | } |
| 602 | |
| 603 | /*********************************************************************** |
| 604 | * InternetEnumPerSiteCookieDecisionW (WININET.@) |
| 605 | * |
| 606 | * Enumerates all per-site decisions about cookies. |
| 607 | * |
| 608 | * RETURNS |
| 609 | * TRUE on success |
| 610 | * FALSE on failure |
| 611 | * |
| 612 | */ |
| 613 | BOOL WINAPI InternetEnumPerSiteCookieDecisionW( LPWSTR pszSiteName, unsigned long *pcSiteNameSize, |
| 614 | unsigned long *pdwDecision, unsigned long dwIndex ) |
| 615 | { |
| 616 | FIXME("(%s, %p, %p, 0x%08lx) stub\n", |
| 617 | debugstr_w(pszSiteName), pcSiteNameSize, pdwDecision, dwIndex); |
| 618 | return FALSE; |
| 619 | } |
| 620 | |
| 621 | /*********************************************************************** |
| 622 | * InternetGetPerSiteCookieDecisionA (WININET.@) |
| 623 | */ |
| 624 | BOOL WINAPI InternetGetPerSiteCookieDecisionA( LPCSTR pwchHostName, unsigned long *pResult ) |
| 625 | { |
| 626 | FIXME("(%s, %p) stub\n", debugstr_a(pwchHostName), pResult); |
| 627 | return FALSE; |
| 628 | } |
| 629 | |
| 630 | /*********************************************************************** |
| 631 | * InternetGetPerSiteCookieDecisionW (WININET.@) |
| 632 | */ |
| 633 | BOOL WINAPI InternetGetPerSiteCookieDecisionW( LPCWSTR pwchHostName, unsigned long *pResult ) |
| 634 | { |
| 635 | FIXME("(%s, %p) stub\n", debugstr_w(pwchHostName), pResult); |
| 636 | return FALSE; |
| 637 | } |
| 638 | |
| 639 | /*********************************************************************** |
| 640 | * InternetSetPerSiteCookieDecisionA (WININET.@) |
| 641 | */ |
| 642 | BOOL WINAPI InternetSetPerSiteCookieDecisionA( LPCSTR pchHostName, DWORD dwDecision ) |
| 643 | { |
| 644 | FIXME("(%s, 0x%08lx) stub\n", debugstr_a(pchHostName), dwDecision); |
| 645 | return FALSE; |
| 646 | } |
| 647 | |
| 648 | /*********************************************************************** |
| 649 | * InternetSetPerSiteCookieDecisionW (WININET.@) |
| 650 | */ |
| 651 | BOOL WINAPI InternetSetPerSiteCookieDecisionW( LPCWSTR pchHostName, DWORD dwDecision ) |
| 652 | { |
| 653 | FIXME("(%s, 0x%08lx) stub\n", debugstr_w(pchHostName), dwDecision); |
| 654 | return FALSE; |
| 655 | } |