Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
334e837b
Commit
334e837b
authored
Dec 11, 2019
by
Simon Giesecke
Committed by
Simon Giesecke
Dec 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: ws_engine uses unsafe strcpy
Solution: use strcpy_s instead (define custom if not available)
parent
2256bd5b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
4 deletions
+39
-4
CMakeLists.txt
CMakeLists.txt
+1
-0
platform.hpp.in
builds/cmake/platform.hpp.in
+1
-0
configure.ac
configure.ac
+14
-0
ws_engine.cpp
src/ws_engine.cpp
+23
-4
No files found.
CMakeLists.txt
View file @
334e837b
...
...
@@ -460,6 +460,7 @@ if(NOT MSVC)
check_cxx_symbol_exists
(
mkdtemp stdlib.h HAVE_MKDTEMP
)
check_cxx_symbol_exists
(
accept4 sys/socket.h HAVE_ACCEPT4
)
check_cxx_symbol_exists
(
strnlen string.h HAVE_STRNLEN
)
check_cxx_symbol_exists
(
strlcpy string.h ZMQ_HAVE_STRLCPY
)
else
()
set
(
HAVE_STRNLEN 1
)
endif
()
...
...
builds/cmake/platform.hpp.in
View file @
334e837b
...
...
@@ -51,6 +51,7 @@
#cmakedefine ZMQ_HAVE_PTHREAD_SET_AFFINITY
#cmakedefine HAVE_ACCEPT4
#cmakedefine HAVE_STRNLEN
#cmakedefine ZMQ_HAVE_STRLCPY
#cmakedefine ZMQ_HAVE_IPC
...
...
configure.ac
View file @
334e837b
...
...
@@ -751,6 +751,20 @@ AC_COMPILE_IFELSE(
AC_MSG_RESULT([no])
])
# string.h doesn't seem to be included by default in Fedora 30
AC_MSG_CHECKING([whether strlcpy is available])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM(
[[#include <string.h>]],
[[char buf [100]; size_t bar = strlcpy (buf, "foo", 100); (void)bar; return 0;]])
],[
AC_MSG_RESULT([yes])
AC_DEFINE(ZMQ_HAVE_STRLCPY, [1],
[strlcpy is available])
],[
AC_MSG_RESULT([no])
])
# pthread_setname is non-posix, and there are at least 4 different implementations
AC_MSG_CHECKING([whether signature of pthread_setname_np() has 1 argument])
AC_COMPILE_IFELSE(
...
...
src/ws_engine.cpp
View file @
334e837b
...
...
@@ -52,6 +52,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#endif
#endif
#include <cstring>
#include "tcp.hpp"
#include "ws_engine.hpp"
#include "session_base.hpp"
...
...
@@ -71,6 +73,23 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifdef ZMQ_HAVE_WINDOWS
#define strcasecmp _stricmp
#else
#ifndef ZMQ_HAVE_STRLCPY
static
size_t
strlcpy
(
char
*
dest_
,
const
char
*
src_
,
const
size_t
dest_size_
)
{
size_t
remain
=
dest_size_
;
for
(;
remain
&&
*
src_
;
--
remain
,
++
src_
,
++
dest_
)
{
*
dest_
=
*
src_
;
}
return
dest_size_
-
remain
;
}
#endif
template
<
size_t
size
>
static
int
strcpy_s
(
char
(
&
dest_
)[
size
],
const
char
*
const
src_
)
{
const
size_t
res
=
strlcpy
(
dest_
,
src_
,
size
);
return
res
>=
size
?
ERANGE
:
0
;
}
#endif
// OSX uses a different name for this socket option
...
...
@@ -440,7 +459,7 @@ bool zmq::ws_engine_t::server_handshake ()
strcasecmp
(
"upgrade"
,
_header_value
)
==
0
;
else
if
(
strcasecmp
(
"Sec-WebSocket-Key"
,
_header_name
)
==
0
)
strcpy
(
_websocket_key
,
_header_value
);
strcpy
_s
(
_websocket_key
,
_header_value
);
else
if
(
strcasecmp
(
"Sec-WebSocket-Protocol"
,
_header_name
)
==
0
)
{
// Currently only the ZWS2.0 is supported
...
...
@@ -453,7 +472,7 @@ bool zmq::ws_engine_t::server_handshake ()
p
++
;
if
(
select_protocol
(
p
))
{
strcpy
(
_websocket_protocol
,
p
);
strcpy
_s
(
_websocket_protocol
,
p
);
break
;
}
...
...
@@ -820,11 +839,11 @@ bool zmq::ws_engine_t::client_handshake ()
strcasecmp
(
"upgrade"
,
_header_value
)
==
0
;
else
if
(
strcasecmp
(
"Sec-WebSocket-Accept"
,
_header_name
)
==
0
)
strcpy
(
_websocket_accept
,
_header_value
);
strcpy
_s
(
_websocket_accept
,
_header_value
);
else
if
(
strcasecmp
(
"Sec-WebSocket-Protocol"
,
_header_name
)
==
0
)
{
if
(
select_protocol
(
_header_value
))
strcpy
(
_websocket_protocol
,
_header_value
);
strcpy
_s
(
_websocket_protocol
,
_header_value
);
}
_client_handshake_state
=
client_header_field_cr
;
}
else
if
(
_header_value_position
+
1
>
MAX_HEADER_VALUE_LENGTH
)
...
...
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