Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c639e757
Commit
c639e757
authored
Sep 17, 2014
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 17, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Moved critical section locking to get_cookie callers so that…
wininet: Moved critical section locking to get_cookie callers so that cookie_set_t is also protected.
parent
40456439
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
35 deletions
+43
-35
cookie.c
dlls/wininet/cookie.c
+43
-35
No files found.
dlls/wininet/cookie.c
View file @
c639e757
...
@@ -576,8 +576,6 @@ static DWORD get_cookie(const WCHAR *host, const WCHAR *path, DWORD flags, cooki
...
@@ -576,8 +576,6 @@ static DWORD get_cookie(const WCHAR *host, const WCHAR *path, DWORD flags, cooki
GetSystemTimeAsFileTime
(
&
tm
);
GetSystemTimeAsFileTime
(
&
tm
);
EnterCriticalSection
(
&
cookie_cs
);
len
=
strlenW
(
host
);
len
=
strlenW
(
host
);
p
=
host
+
len
;
p
=
host
+
len
;
while
(
p
>
host
&&
p
[
-
1
]
!=
'.'
)
p
--
;
while
(
p
>
host
&&
p
[
-
1
]
!=
'.'
)
p
--
;
...
@@ -604,7 +602,6 @@ static DWORD get_cookie(const WCHAR *host, const WCHAR *path, DWORD flags, cooki
...
@@ -604,7 +602,6 @@ static DWORD get_cookie(const WCHAR *host, const WCHAR *path, DWORD flags, cooki
domain
=
get_cookie_domain
(
host
,
FALSE
);
domain
=
get_cookie_domain
(
host
,
FALSE
);
if
(
!
domain
)
{
if
(
!
domain
)
{
TRACE
(
"Unknown host %s
\n
"
,
debugstr_w
(
host
));
TRACE
(
"Unknown host %s
\n
"
,
debugstr_w
(
host
));
LeaveCriticalSection
(
&
cookie_cs
);
return
ERROR_NO_MORE_ITEMS
;
return
ERROR_NO_MORE_ITEMS
;
}
}
...
@@ -660,7 +657,6 @@ static DWORD get_cookie(const WCHAR *host, const WCHAR *path, DWORD flags, cooki
...
@@ -660,7 +657,6 @@ static DWORD get_cookie(const WCHAR *host, const WCHAR *path, DWORD flags, cooki
}
}
}
}
LeaveCriticalSection
(
&
cookie_cs
);
return
ERROR_SUCCESS
;
return
ERROR_SUCCESS
;
}
}
...
@@ -694,35 +690,43 @@ static void cookie_set_to_string(const cookie_set_t *cookie_set, WCHAR *str)
...
@@ -694,35 +690,43 @@ static void cookie_set_to_string(const cookie_set_t *cookie_set, WCHAR *str)
DWORD
get_cookie_header
(
const
WCHAR
*
host
,
const
WCHAR
*
path
,
WCHAR
**
ret
)
DWORD
get_cookie_header
(
const
WCHAR
*
host
,
const
WCHAR
*
path
,
WCHAR
**
ret
)
{
{
cookie_set_t
cookie_set
=
{
0
};
cookie_set_t
cookie_set
=
{
0
};
WCHAR
*
header
,
*
ptr
;
DWORD
res
;
DWORD
res
;
static
const
WCHAR
cookieW
[]
=
{
'C'
,
'o'
,
'o'
,
'k'
,
'i'
,
'e'
,
':'
,
' '
};
static
const
WCHAR
cookieW
[]
=
{
'C'
,
'o'
,
'o'
,
'k'
,
'i'
,
'e'
,
':'
,
' '
};
EnterCriticalSection
(
&
cookie_cs
);
res
=
get_cookie
(
host
,
path
,
INTERNET_COOKIE_HTTPONLY
,
&
cookie_set
);
res
=
get_cookie
(
host
,
path
,
INTERNET_COOKIE_HTTPONLY
,
&
cookie_set
);
if
(
res
!=
ERROR_SUCCESS
)
if
(
res
!=
ERROR_SUCCESS
)
{
LeaveCriticalSection
(
&
cookie_cs
);
return
res
;
return
res
;
if
(
!
cookie_set
.
cnt
)
{
*
ret
=
NULL
;
return
ERROR_SUCCESS
;
}
}
ptr
=
header
=
heap_alloc
(
sizeof
(
cookieW
)
+
(
cookie_set
.
string_len
+
3
/* crlf0 */
)
*
sizeof
(
WCHAR
));
if
(
cookie_set
.
cnt
)
{
if
(
!
header
)
WCHAR
*
header
,
*
ptr
;
return
ERROR_NOT_ENOUGH_MEMORY
;
memcpy
(
ptr
,
cookieW
,
sizeof
(
cookieW
));
ptr
=
header
=
heap_alloc
(
sizeof
(
cookieW
)
+
(
cookie_set
.
string_len
+
3
/* crlf0 */
)
*
sizeof
(
WCHAR
));
ptr
+=
sizeof
(
cookieW
)
/
sizeof
(
*
cookieW
);
if
(
header
)
{
memcpy
(
ptr
,
cookieW
,
sizeof
(
cookieW
));
ptr
+=
sizeof
(
cookieW
)
/
sizeof
(
*
cookieW
);
cookie_set_to_string
(
&
cookie_set
,
ptr
);
cookie_set_to_string
(
&
cookie_set
,
ptr
);
heap_free
(
cookie_set
.
cookies
);
heap_free
(
cookie_set
.
cookies
);
ptr
+=
cookie_set
.
string_len
;
ptr
+=
cookie_set
.
string_len
;
*
ptr
++
=
'\r'
;
*
ptr
++
=
'\r'
;
*
ptr
++
=
'\n'
;
*
ptr
++
=
'\n'
;
*
ptr
++
=
0
;
*
ptr
++
=
0
;
*
ret
=
header
;
*
ret
=
header
;
}
else
{
res
=
ERROR_NOT_ENOUGH_MEMORY
;
}
}
else
{
*
ret
=
NULL
;
}
LeaveCriticalSection
(
&
cookie_cs
);
return
ERROR_SUCCESS
;
return
ERROR_SUCCESS
;
}
}
...
@@ -765,32 +769,36 @@ BOOL WINAPI InternetGetCookieExW(LPCWSTR lpszUrl, LPCWSTR lpszCookieName,
...
@@ -765,32 +769,36 @@ BOOL WINAPI InternetGetCookieExW(LPCWSTR lpszUrl, LPCWSTR lpszCookieName,
return
FALSE
;
return
FALSE
;
}
}
EnterCriticalSection
(
&
cookie_cs
);
res
=
get_cookie
(
host
,
path
,
flags
,
&
cookie_set
);
res
=
get_cookie
(
host
,
path
,
flags
,
&
cookie_set
);
if
(
res
!=
ERROR_SUCCESS
)
{
if
(
res
!=
ERROR_SUCCESS
)
{
LeaveCriticalSection
(
&
cookie_cs
);
SetLastError
(
res
);
SetLastError
(
res
);
return
FALSE
;
return
FALSE
;
}
}
if
(
!
cookie_set
.
cnt
)
{
if
(
cookie_set
.
cnt
)
{
if
(
!
lpCookieData
||
cookie_set
.
string_len
+
1
>
*
lpdwSize
)
{
*
lpdwSize
=
(
cookie_set
.
string_len
+
1
)
*
sizeof
(
WCHAR
);
TRACE
(
"returning %u
\n
"
,
*
lpdwSize
);
if
(
lpCookieData
)
{
SetLastError
(
ERROR_INSUFFICIENT_BUFFER
);
ret
=
FALSE
;
}
}
else
{
*
lpdwSize
=
cookie_set
.
string_len
+
1
;
cookie_set_to_string
(
&
cookie_set
,
lpCookieData
);
lpCookieData
[
cookie_set
.
string_len
]
=
0
;
}
}
else
{
TRACE
(
"no cookies found for %s
\n
"
,
debugstr_w
(
host
));
TRACE
(
"no cookies found for %s
\n
"
,
debugstr_w
(
host
));
SetLastError
(
ERROR_NO_MORE_ITEMS
);
SetLastError
(
ERROR_NO_MORE_ITEMS
);
return
FALSE
;
return
FALSE
;
}
}
if
(
!
lpCookieData
||
cookie_set
.
string_len
+
1
>
*
lpdwSize
)
{
*
lpdwSize
=
(
cookie_set
.
string_len
+
1
)
*
sizeof
(
WCHAR
);
TRACE
(
"returning %u
\n
"
,
*
lpdwSize
);
if
(
lpCookieData
)
{
SetLastError
(
ERROR_INSUFFICIENT_BUFFER
);
ret
=
FALSE
;
}
}
else
{
*
lpdwSize
=
cookie_set
.
string_len
+
1
;
cookie_set_to_string
(
&
cookie_set
,
lpCookieData
);
lpCookieData
[
cookie_set
.
string_len
]
=
0
;
}
heap_free
(
cookie_set
.
cookies
);
heap_free
(
cookie_set
.
cookies
);
LeaveCriticalSection
(
&
cookie_cs
);
return
ret
;
return
ret
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment