Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
paho.mqtt.c
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eclipse
paho.mqtt.c
Commits
1a5e85b7
Commit
1a5e85b7
authored
Oct 17, 2014
by
Ian Craggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Synchronize access to socket structures
Bug: 447672
parent
265ea522
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
MQTTClient.c
src/MQTTClient.c
+11
-0
No files found.
src/MQTTClient.c
View file @
1a5e85b7
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
* Ian Craggs - fix for bug 438176 - MQTT version selection
* Ian Craggs - fix for bug 438176 - MQTT version selection
* Rong Xiang, Ian Craggs - C++ compatibility
* Rong Xiang, Ian Craggs - C++ compatibility
* Ian Craggs - fix for bug 443724 - stack corruption
* Ian Craggs - fix for bug 443724 - stack corruption
* Ian Craggs - fix for bug 447672 - simultaneous access to socket structure
*******************************************************************************/
*******************************************************************************/
/**
/**
...
@@ -76,6 +77,7 @@ MQTTProtocol state;
...
@@ -76,6 +77,7 @@ MQTTProtocol state;
#if defined(WIN32) || defined(WIN64)
#if defined(WIN32) || defined(WIN64)
static
mutex_type
mqttclient_mutex
=
NULL
;
static
mutex_type
mqttclient_mutex
=
NULL
;
static
mutex_type
socket_mutex
=
NULL
;
extern
mutex_type
stack_mutex
;
extern
mutex_type
stack_mutex
;
extern
mutex_type
heap_mutex
;
extern
mutex_type
heap_mutex
;
extern
mutex_type
log_mutex
;
extern
mutex_type
log_mutex
;
...
@@ -93,6 +95,7 @@ BOOL APIENTRY DllMain(HANDLE hModule,
...
@@ -93,6 +95,7 @@ BOOL APIENTRY DllMain(HANDLE hModule,
stack_mutex
=
CreateMutex
(
NULL
,
0
,
NULL
);
stack_mutex
=
CreateMutex
(
NULL
,
0
,
NULL
);
heap_mutex
=
CreateMutex
(
NULL
,
0
,
NULL
);
heap_mutex
=
CreateMutex
(
NULL
,
0
,
NULL
);
log_mutex
=
CreateMutex
(
NULL
,
0
,
NULL
);
log_mutex
=
CreateMutex
(
NULL
,
0
,
NULL
);
socket_mutex
=
CreateMutex
(
NULL
,
0
,
NULL
);
}
}
case
DLL_THREAD_ATTACH
:
case
DLL_THREAD_ATTACH
:
Log
(
TRACE_MAX
,
-
1
,
"DLL thread attach"
);
Log
(
TRACE_MAX
,
-
1
,
"DLL thread attach"
);
...
@@ -106,6 +109,8 @@ BOOL APIENTRY DllMain(HANDLE hModule,
...
@@ -106,6 +109,8 @@ BOOL APIENTRY DllMain(HANDLE hModule,
#else
#else
static
pthread_mutex_t
mqttclient_mutex_store
=
PTHREAD_MUTEX_INITIALIZER
;
static
pthread_mutex_t
mqttclient_mutex_store
=
PTHREAD_MUTEX_INITIALIZER
;
static
mutex_type
mqttclient_mutex
=
&
mqttclient_mutex_store
;
static
mutex_type
mqttclient_mutex
=
&
mqttclient_mutex_store
;
static
pthread_mutex_t
socket_mutex_store
=
PTHREAD_MUTEX_INITIALIZER
;
static
mutex_type
socket_mutex
=
&
socket_mutex_store
;
void
MQTTClient_init
()
void
MQTTClient_init
()
{
{
...
@@ -116,6 +121,8 @@ void MQTTClient_init()
...
@@ -116,6 +121,8 @@ void MQTTClient_init()
pthread_mutexattr_settype
(
&
attr
,
PTHREAD_MUTEX_ERRORCHECK
);
pthread_mutexattr_settype
(
&
attr
,
PTHREAD_MUTEX_ERRORCHECK
);
if
((
rc
=
pthread_mutex_init
(
mqttclient_mutex
,
&
attr
))
!=
0
)
if
((
rc
=
pthread_mutex_init
(
mqttclient_mutex
,
&
attr
))
!=
0
)
printf
(
"MQTTClient: error %d initializing client_mutex
\n
"
,
rc
);
printf
(
"MQTTClient: error %d initializing client_mutex
\n
"
,
rc
);
if
((
rc
=
pthread_mutex_init
(
socket_mutex
,
&
attr
))
!=
0
)
printf
(
"MQTTClient: error %d initializing socket_mutex
\n
"
,
rc
);
}
}
#define WINAPI
#define WINAPI
...
@@ -678,10 +685,12 @@ void MQTTClient_closeSession(Clients* client)
...
@@ -678,10 +685,12 @@ void MQTTClient_closeSession(Clients* client)
{
{
if
(
client
->
connected
)
if
(
client
->
connected
)
MQTTPacket_send_disconnect
(
&
client
->
net
,
client
->
clientID
);
MQTTPacket_send_disconnect
(
&
client
->
net
,
client
->
clientID
);
Thread_lock_mutex
(
socket_mutex
);
#if defined(OPENSSL)
#if defined(OPENSSL)
SSLSocket_close
(
&
client
->
net
);
SSLSocket_close
(
&
client
->
net
);
#endif
#endif
Socket_close
(
client
->
net
.
socket
);
Socket_close
(
client
->
net
.
socket
);
Thread_unlock_mutex
(
socket_mutex
);
client
->
net
.
socket
=
0
;
client
->
net
.
socket
=
0
;
#if defined(OPENSSL)
#if defined(OPENSSL)
client
->
net
.
ssl
=
NULL
;
client
->
net
.
ssl
=
NULL
;
...
@@ -1545,7 +1554,9 @@ MQTTPacket* MQTTClient_cycle(int* sock, unsigned long timeout, int* rc)
...
@@ -1545,7 +1554,9 @@ MQTTPacket* MQTTClient_cycle(int* sock, unsigned long timeout, int* rc)
{
{
/* 0 from getReadySocket indicates no work to do, -1 == error, but can happen normally */
/* 0 from getReadySocket indicates no work to do, -1 == error, but can happen normally */
#endif
#endif
Thread_lock_mutex
(
socket_mutex
);
*
sock
=
Socket_getReadySocket
(
0
,
&
tp
);
*
sock
=
Socket_getReadySocket
(
0
,
&
tp
);
Thread_unlock_mutex
(
socket_mutex
);
#if defined(OPENSSL)
#if defined(OPENSSL)
}
}
#endif
#endif
...
...
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