Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
M
mongoose
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
mongoose
Commits
cb602f17
Commit
cb602f17
authored
Dec 23, 2019
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix int overflow in parse_mqtt()
PUBLISHED_FROM=f9106d2f746c67ae004aeab12685eaf9cd558cd8
parent
464113c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
mongoose.c
mongoose.c
+2
-2
mg_mqtt.c
src/mg_mqtt.c
+2
-2
No files found.
mongoose.c
View file @
cb602f17
...
...
@@ -10843,7 +10843,7 @@ static const char *scanto(const char *p, struct mg_str *s) {
MG_INTERNAL
int
parse_mqtt
(
struct
mbuf
*
io
,
struct
mg_mqtt_message
*
mm
)
{
uint8_t
header
;
size_t
len
=
0
,
len_len
=
0
;
uint32_t
len
,
len_len
;
/* must be 32-bit, see #1055 */
const
char
*
p
,
*
end
,
*
eop
=
&
io
->
buf
[
io
->
len
];
unsigned
char
lc
=
0
;
int
cmd
;
...
...
@@ -10860,7 +10860,7 @@ MG_INTERNAL int parse_mqtt(struct mbuf *io, struct mg_mqtt_message *mm) {
len
+=
(
lc
&
0x7f
)
<<
7
*
len_len
;
len_len
++
;
if
(
!
(
lc
&
0x80
))
break
;
if
(
len_len
>
4
)
return
MG_MQTT_ERROR_MALFORMED_MSG
;
if
(
len_len
>
sizeof
(
len
)
)
return
MG_MQTT_ERROR_MALFORMED_MSG
;
}
end
=
p
+
len
;
...
...
src/mg_mqtt.c
View file @
cb602f17
...
...
@@ -23,7 +23,7 @@ static const char *scanto(const char *p, struct mg_str *s) {
MG_INTERNAL
int
parse_mqtt
(
struct
mbuf
*
io
,
struct
mg_mqtt_message
*
mm
)
{
uint8_t
header
;
size_t
len
=
0
,
len_len
=
0
;
uint32_t
len
,
len_len
;
/* must be 32-bit, see #1055 */
const
char
*
p
,
*
end
,
*
eop
=
&
io
->
buf
[
io
->
len
];
unsigned
char
lc
=
0
;
int
cmd
;
...
...
@@ -40,7 +40,7 @@ MG_INTERNAL int parse_mqtt(struct mbuf *io, struct mg_mqtt_message *mm) {
len
+=
(
lc
&
0x7f
)
<<
7
*
len_len
;
len_len
++
;
if
(
!
(
lc
&
0x80
))
break
;
if
(
len_len
>
4
)
return
MG_MQTT_ERROR_MALFORMED_MSG
;
if
(
len_len
>
sizeof
(
len
)
)
return
MG_MQTT_ERROR_MALFORMED_MSG
;
}
end
=
p
+
len
;
...
...
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