ReactOS 0.4.15-dev-7942-gd23573b
cookie.c File Reference
#include "config.h"
#include "ws2tcpip.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winhttp.h"
#include "wine/debug.h"
#include "wine/list.h"
#include "winhttp_private.h"
Include dependency graph for cookie.c:

Go to the source code of this file.

Classes

struct  cookie
 
struct  domain
 
struct  attr
 

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (winhttp)
 
static struct domainadd_domain (struct session *session, WCHAR *name)
 
static struct cookiefind_cookie (struct domain *domain, const WCHAR *path, const WCHAR *name)
 
static BOOL domain_match (const WCHAR *name, struct domain *domain, BOOL partial)
 
static void free_cookie (struct cookie *cookie)
 
static void delete_cookie (struct cookie *cookie)
 
static void delete_domain (struct domain *domain)
 
void destroy_cookies (struct session *session)
 
static BOOL add_cookie (struct session *session, struct cookie *cookie, WCHAR *domain_name, WCHAR *path)
 
static struct cookieparse_cookie (const WCHAR *string)
 
static void free_attr (struct attr *attr)
 
static struct attrparse_attr (const WCHAR *str, int *used)
 
BOOL set_cookies (struct request *request, const WCHAR *cookies)
 
BOOL add_cookie_headers (struct request *request)
 

Function Documentation

◆ add_cookie()

static BOOL add_cookie ( struct session session,
struct cookie cookie,
WCHAR domain_name,
WCHAR path 
)
static

Definition at line 132 of file cookie.c.

133{
134 struct domain *domain = NULL;
135 struct cookie *old_cookie;
136 struct list *item;
137
138 if (!(cookie->path = strdupW( path ))) return FALSE;
139
141
143 {
144 domain = LIST_ENTRY( item, struct domain, entry );
145 if (domain_match( domain_name, domain, FALSE )) break;
146 domain = NULL;
147 }
148 if (!domain) domain = add_domain( session, domain_name );
149 else if ((old_cookie = find_cookie( domain, path, cookie->name ))) delete_cookie( old_cookie );
150
151 if (domain)
152 {
154 TRACE("domain %s path %s <- %s=%s\n", debugstr_w(domain_name), debugstr_w(cookie->path),
156 }
157
159 return domain != NULL;
160}
static WCHAR * strdupW(const WCHAR *src)
Definition: main.c:92
static void list_add_head(struct list_entry *head, struct list_entry *entry)
Definition: list.h:76
Definition: list.h:37
#define NULL
Definition: types.h:112
#define FALSE
Definition: types.h:117
uint32_t entry
Definition: isohybrid.c:63
#define debugstr_w
Definition: kernel32.h:32
static ATOM item
Definition: dde.c:856
#define LIST_FOR_EACH(cursor, list)
Definition: list.h:188
#define TRACE(s)
Definition: solgame.cpp:4
Definition: cookie.c:34
WCHAR * name
Definition: cookie.c:36
WCHAR * value
Definition: cookie.c:37
struct list entry
Definition: cookie.c:35
WCHAR * path
Definition: cookie.c:38
Definition: cookie.c:42
struct list cookies
Definition: cookie.c:45
CRITICAL_SECTION cs
struct list cookie_cache
#define LIST_ENTRY(type)
Definition: queue.h:175
void WINAPI LeaveCriticalSection(LPCRITICAL_SECTION)
void WINAPI EnterCriticalSection(LPCRITICAL_SECTION)
static void delete_cookie(struct cookie *cookie)
Definition: cookie.c:98
static struct cookie * find_cookie(struct domain *domain, const WCHAR *path, const WCHAR *name)
Definition: cookie.c:64
static BOOL domain_match(const WCHAR *name, struct domain *domain, BOOL partial)
Definition: cookie.c:81
static struct domain * add_domain(struct session *session, WCHAR *name)
Definition: cookie.c:48

Referenced by replace_cookie(), set_cookie(), and set_cookies().

◆ add_cookie_headers()

BOOL add_cookie_headers ( struct request request)

Definition at line 324 of file cookie.c.

325{
326 struct list *domain_cursor;
327 struct session *session = request->connect->session;
328
330
331 LIST_FOR_EACH( domain_cursor, &session->cookie_cache )
332 {
333 struct domain *domain = LIST_ENTRY( domain_cursor, struct domain, entry );
334 if (domain_match( request->connect->servername, domain, TRUE ))
335 {
336 struct list *cookie_cursor;
337 TRACE("found domain %s\n", debugstr_w(domain->name));
338
339 LIST_FOR_EACH( cookie_cursor, &domain->cookies )
340 {
341 struct cookie *cookie = LIST_ENTRY( cookie_cursor, struct cookie, entry );
342
343 TRACE("comparing path %s with %s\n", debugstr_w(request->path), debugstr_w(cookie->path));
344
345 if (strstrW( request->path, cookie->path ) == request->path)
346 {
347 static const WCHAR cookieW[] = {'C','o','o','k','i','e',':',' '};
348 int len, len_cookie = ARRAY_SIZE( cookieW ), len_name = strlenW( cookie->name );
349 WCHAR *header;
350
351 len = len_cookie + len_name;
352 if (cookie->value) len += strlenW( cookie->value ) + 1;
353 if (!(header = heap_alloc( (len + 1) * sizeof(WCHAR) )))
354 {
356 return FALSE;
357 }
358
359 memcpy( header, cookieW, len_cookie * sizeof(WCHAR) );
360 strcpyW( header + len_cookie, cookie->name );
361 if (cookie->value)
362 {
363 header[len_cookie + len_name] = '=';
364 strcpyW( header + len_cookie + len_name + 1, cookie->value );
365 }
366
367 TRACE("%s\n", debugstr_w(header));
370 heap_free( header );
371 }
372 }
373 }
374 }
375
377 return TRUE;
378}
static void * heap_alloc(size_t len)
Definition: appwiz.h:66
static BOOL heap_free(void *mem)
Definition: appwiz.h:76
#define ARRAY_SIZE(A)
Definition: main.h:33
#define TRUE
Definition: types.h:120
GLenum GLsizei len
Definition: glext.h:6722
#define memcpy(s1, s2, n)
Definition: mkisofs.h:878
#define strstrW(d, s)
Definition: unicode.h:32
#define strlenW(s)
Definition: unicode.h:28
#define strcpyW(d, s)
Definition: unicode.h:29
BOOL add_request_headers(struct request *request, const WCHAR *headers, DWORD len, DWORD flags)
Definition: request.c:495
WCHAR * name
Definition: cookie.c:44
Definition: tftpd.h:86
char path[256]
Definition: tftpd.h:94
struct connect * connect
#define WINHTTP_ADDREQ_FLAG_COALESCE_WITH_SEMICOLON
Definition: winhttp.h:86
#define WINHTTP_ADDREQ_FLAG_ADD
Definition: winhttp.h:84
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by send_request().

◆ add_domain()

static struct domain * add_domain ( struct session session,
WCHAR name 
)
static

Definition at line 48 of file cookie.c.

49{
50 struct domain *domain;
51
52 if (!(domain = heap_alloc_zero( sizeof(struct domain) ))) return NULL;
53
56
57 domain->name = strdupW( name );
59
60 TRACE("%s\n", debugstr_w(domain->name));
61 return domain;
62}
static void list_add_tail(struct list_entry *head, struct list_entry *entry)
Definition: list.h:83
static void list_init(struct list_entry *head)
Definition: list.h:51
struct list entry
Definition: cookie.c:43
Definition: name.c:39

Referenced by add_cookie(), and map_nfs4ace_who().

◆ delete_cookie()

static void delete_cookie ( struct cookie cookie)
static

Definition at line 98 of file cookie.c.

99{
102}
static void list_remove(struct list_entry *entry)
Definition: list.h:90
void free_cookie(void)
Definition: cookie.c:1269

Referenced by add_cookie(), alloc_cookie(), delete_domain(), free_cookie_domain_list(), get_cookie(), replace_cookie(), save_persistent_cookie(), and set_cookie().

◆ delete_domain()

static void delete_domain ( struct domain domain)
static

Definition at line 104 of file cookie.c.

105{
106 struct cookie *cookie;
107 struct list *item, *next;
108
110 {
111 cookie = LIST_ENTRY( item, struct cookie, entry );
113 }
114
117 heap_free( domain );
118}
static unsigned __int64 next
Definition: rand_nt.c:6
#define LIST_FOR_EACH_SAFE(cursor, cursor2, list)
Definition: list.h:192

Referenced by destroy_cookies().

◆ destroy_cookies()

void destroy_cookies ( struct session session)

Definition at line 120 of file cookie.c.

121{
122 struct list *item, *next;
123 struct domain *domain;
124
126 {
127 domain = LIST_ENTRY( item, struct domain, entry );
129 }
130}
static void delete_domain(struct domain *domain)
Definition: cookie.c:104

Referenced by session_destroy().

◆ domain_match()

static BOOL domain_match ( const WCHAR name,
struct domain domain,
BOOL  partial 
)
static

Definition at line 81 of file cookie.c.

82{
83 TRACE("comparing %s with %s\n", debugstr_w(name), debugstr_w(domain->name));
84
85 if (partial && !strstrW( name, domain->name )) return FALSE;
86 else if (!partial && strcmpW( name, domain->name )) return FALSE;
87 return TRUE;
88}
#define strcmpW(s1, s2)
Definition: unicode.h:38

Referenced by add_cookie(), and add_cookie_headers().

◆ find_cookie()

static struct cookie * find_cookie ( struct domain domain,
const WCHAR path,
const WCHAR name 
)
static

Definition at line 64 of file cookie.c.

65{
66 struct list *item;
67 struct cookie *cookie;
68
70 {
71 cookie = LIST_ENTRY( item, struct cookie, entry );
72 if (!strcmpW( cookie->path, path ) && !strcmpW( cookie->name, name ))
73 {
74 TRACE("found %s=%s\n", debugstr_w(cookie->name), debugstr_w(cookie->value));
75 return cookie;
76 }
77 }
78 return NULL;
79}

Referenced by add_cookie(), replace_cookie(), and set_cookie().

◆ free_attr()

static void free_attr ( struct attr attr)
static

Definition at line 207 of file cookie.c.

208{
209 if (!attr) return;
210 heap_free( attr->name );
211 heap_free( attr->value );
212 heap_free( attr );
213}
Definition: cookie.c:202
WCHAR * value
Definition: cookie.c:204
WCHAR * name
Definition: cookie.c:203

Referenced by parse_attr(), and set_cookies().

◆ free_cookie()

static void free_cookie ( struct cookie cookie)
static

Definition at line 90 of file cookie.c.

91{
96}

◆ parse_attr()

static struct attr * parse_attr ( const WCHAR str,
int used 
)
static

Definition at line 215 of file cookie.c.

216{
217 const WCHAR *p = str, *q;
218 struct attr *attr;
219 int len;
220
221 while (*p == ' ') p++;
222 q = p;
223 while (*q && *q != ' ' && *q != '=' && *q != ';') q++;
224 len = q - p;
225 if (!len) return NULL;
226
227 if (!(attr = heap_alloc( sizeof(struct attr) ))) return NULL;
228 if (!(attr->name = heap_alloc( (len + 1) * sizeof(WCHAR) )))
229 {
230 heap_free( attr );
231 return NULL;
232 }
233 memcpy( attr->name, p, len * sizeof(WCHAR) );
234 attr->name[len] = 0;
235 attr->value = NULL;
236
237 p = q;
238 while (*p == ' ') p++;
239 if (*p++ == '=')
240 {
241 while (*p == ' ') p++;
242 q = p;
243 while (*q && *q != ';') q++;
244 len = q - p;
245 while (len && p[len - 1] == ' ') len--;
246
247 if (!(attr->value = heap_alloc( (len + 1) * sizeof(WCHAR) )))
248 {
249 free_attr( attr );
250 return NULL;
251 }
252 memcpy( attr->value, p, len * sizeof(WCHAR) );
253 attr->value[len] = 0;
254 }
255
256 while (*q == ' ') q++;
257 if (*q == ';') q++;
258 *used = q - str;
259
260 return attr;
261}
static int used
Definition: adh-main.c:39
GLdouble GLdouble GLdouble GLdouble q
Definition: gl.h:2063
GLfloat GLfloat p
Definition: glext.h:8902
const WCHAR * str
static void free_attr(struct attr *attr)
Definition: cookie.c:207

Referenced by set_cookies().

◆ parse_cookie()

static struct cookie * parse_cookie ( const WCHAR string)
static

Definition at line 162 of file cookie.c.

163{
164 struct cookie *cookie;
165 const WCHAR *p;
166 int len;
167
168 if (!(p = strchrW( string, '=' ))) p = string + strlenW( string );
169 len = p - string;
170 while (len && string[len - 1] == ' ') len--;
171 if (!len) return NULL;
172
173 if (!(cookie = heap_alloc_zero( sizeof(struct cookie) ))) return NULL;
175
176 if (!(cookie->name = heap_alloc( (len + 1) * sizeof(WCHAR) )))
177 {
178 heap_free( cookie );
179 return NULL;
180 }
181 memcpy( cookie->name, string, len * sizeof(WCHAR) );
182 cookie->name[len] = 0;
183
184 if (*p++ == '=')
185 {
186 while (*p == ' ') p++;
187 len = strlenW( p );
188 while (len && p[len - 1] == ' ') len--;
189
190 if (!(cookie->value = heap_alloc( (len + 1) * sizeof(WCHAR) )))
191 {
193 return NULL;
194 }
195 memcpy( cookie->value, p, len * sizeof(WCHAR) );
196 cookie->value[len] = 0;
197 }
198 return cookie;
199}
char string[160]
Definition: util.h:11
#define strchrW(s, c)
Definition: unicode.h:34

Referenced by set_cookies().

◆ set_cookies()

BOOL set_cookies ( struct request request,
const WCHAR cookies 
)

Definition at line 263 of file cookie.c.

264{
265 static const WCHAR pathW[] = {'p','a','t','h',0};
266 static const WCHAR domainW[] = {'d','o','m','a','i','n',0};
267 BOOL ret = FALSE;
268 WCHAR *buffer, *p;
269 WCHAR *cookie_domain = NULL, *cookie_path = NULL;
270 struct attr *attr, *domain = NULL, *path = NULL;
271 struct session *session = request->connect->session;
272 struct cookie *cookie;
273 int len, used;
274
275 len = strlenW( cookies );
276 if (!(buffer = heap_alloc( (len + 1) * sizeof(WCHAR) ))) return FALSE;
278
279 p = buffer;
280 while (*p && *p != ';') p++;
281 if (*p == ';') *p++ = 0;
282 if (!(cookie = parse_cookie( buffer )))
283 {
284 heap_free( buffer );
285 return FALSE;
286 }
287 len = strlenW( p );
288 while (len && (attr = parse_attr( p, &used )))
289 {
290 if (!strcmpiW( attr->name, domainW ))
291 {
292 domain = attr;
293 cookie_domain = attr->value;
294 }
295 else if (!strcmpiW( attr->name, pathW ))
296 {
297 path = attr;
298 cookie_path = attr->value;
299 }
300 else
301 {
302 FIXME( "unhandled attribute %s\n", debugstr_w(attr->name) );
303 free_attr( attr );
304 }
305 len -= used;
306 p += used;
307 }
308 if (!cookie_domain && !(cookie_domain = strdupW( request->connect->servername ))) goto end;
309 if (!cookie_path && !(cookie_path = strdupW( request->path ))) goto end;
310
311 if ((p = strrchrW( cookie_path, '/' )) && p != cookie_path) *p = 0;
312 ret = add_cookie( session, cookie, cookie_domain, cookie_path );
313
314end:
315 if (!ret) free_cookie( cookie );
316 if (domain) free_attr( domain );
317 else heap_free( cookie_domain );
318 if (path) free_attr( path );
319 else heap_free( cookie_path );
320 heap_free( buffer );
321 return ret;
322}
#define FIXME(fmt,...)
Definition: debug.h:111
unsigned int BOOL
Definition: ntddk_ex.h:94
GLuint GLuint end
Definition: gl.h:1545
GLuint buffer
Definition: glext.h:5915
static CookieInternal * cookies
Definition: msctf.c:65
#define strcmpiW(s1, s2)
Definition: unicode.h:39
#define strrchrW(s, c)
Definition: unicode.h:35
int ret
static struct attr * parse_attr(const WCHAR *str, int *used)
Definition: cookie.c:215
static struct cookie * parse_cookie(const WCHAR *string)
Definition: cookie.c:162
static BOOL add_cookie(struct session *session, struct cookie *cookie, WCHAR *domain_name, WCHAR *path)
Definition: cookie.c:132

Referenced by record_cookies().

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( winhttp  )