Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
d5a9000d
Commit
d5a9000d
authored
Aug 30, 2017
by
Deomid Ryabkov
Committed by
Cesanta Bot
Aug 30, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Harden MQTT parser some more
PUBLISHED_FROM=5e7fcc7bf145aa8e1045e8d627b1c0731bb4341b
parent
f6201845
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
6 deletions
+27
-6
mongoose.c
mongoose.c
+27
-6
No files found.
mongoose.c
View file @
d5a9000d
...
...
@@ -9956,19 +9956,31 @@ MG_INTERNAL int parse_mqtt(struct mbuf *io, struct mg_mqtt_message *mm) {
switch
(
cmd
)
{
case
MG_MQTT_CMD_CONNECT
:
{
p
=
scanto
(
p
,
&
mm
->
protocol_name
);
if
(
p
>
end
-
4
)
return
-
2
;
mm
->
protocol_version
=
*
(
uint8_t
*
)
p
++
;
mm
->
connect_flags
=
*
(
uint8_t
*
)
p
++
;
mm
->
keep_alive_timer
=
getu16
(
p
);
p
+=
2
;
if
(
p
<
end
)
p
=
scanto
(
p
,
&
mm
->
client_id
);
if
(
p
<
end
&&
(
mm
->
connect_flags
&
MG_MQTT_HAS_WILL
))
if
(
p
>=
end
)
return
-
2
;
p
=
scanto
(
p
,
&
mm
->
client_id
);
if
(
p
>
end
)
return
-
2
;
if
(
mm
->
connect_flags
&
MG_MQTT_HAS_WILL
)
{
if
(
p
>=
end
)
return
-
2
;
p
=
scanto
(
p
,
&
mm
->
will_topic
);
if
(
p
<
end
&&
(
mm
->
connect_flags
&
MG_MQTT_HAS_WILL
))
}
if
(
mm
->
connect_flags
&
MG_MQTT_HAS_WILL
)
{
if
(
p
>=
end
)
return
-
2
;
p
=
scanto
(
p
,
&
mm
->
will_message
);
if
(
p
<
end
&&
(
mm
->
connect_flags
&
MG_MQTT_HAS_USER_NAME
))
}
if
(
mm
->
connect_flags
&
MG_MQTT_HAS_USER_NAME
)
{
if
(
p
>=
end
)
return
-
2
;
p
=
scanto
(
p
,
&
mm
->
user_name
);
if
(
p
<
end
&&
(
mm
->
connect_flags
&
MG_MQTT_HAS_PASSWORD
))
}
if
(
mm
->
connect_flags
&
MG_MQTT_HAS_PASSWORD
)
{
if
(
p
>=
end
)
return
-
2
;
p
=
scanto
(
p
,
&
mm
->
password
);
}
if
(
p
!=
end
)
return
-
2
;
LOG
(
LL_DEBUG
,
(
"%d %2x %d proto [%.*s] client_id [%.*s] will_topic [%.*s] "
...
...
@@ -9982,6 +9994,7 @@ MG_INTERNAL int parse_mqtt(struct mbuf *io, struct mg_mqtt_message *mm) {
break
;
}
case
MG_MQTT_CMD_CONNACK
:
if
(
end
-
p
<
2
)
return
-
2
;
mm
->
connack_ret_code
=
p
[
1
];
break
;
case
MG_MQTT_CMD_PUBACK
:
...
...
@@ -9993,7 +10006,9 @@ MG_INTERNAL int parse_mqtt(struct mbuf *io, struct mg_mqtt_message *mm) {
break
;
case
MG_MQTT_CMD_PUBLISH
:
{
p
=
scanto
(
p
,
&
mm
->
topic
);
if
(
p
>
end
)
return
-
2
;
if
(
mm
->
qos
>
0
)
{
if
(
end
-
p
<
2
)
return
-
2
;
mm
->
message_id
=
getu16
(
p
);
p
+=
2
;
}
...
...
@@ -10002,6 +10017,7 @@ MG_INTERNAL int parse_mqtt(struct mbuf *io, struct mg_mqtt_message *mm) {
break
;
}
case
MG_MQTT_CMD_SUBSCRIBE
:
if
(
end
-
p
<
2
)
return
-
2
;
mm
->
message_id
=
getu16
(
p
);
p
+=
2
;
/*
...
...
@@ -10036,7 +10052,12 @@ static void mqtt_handler(struct mg_connection *nc, int ev,
/* There can be multiple messages in the buffer, process them all. */
while
(
1
)
{
int
len
=
parse_mqtt
(
io
,
&
mm
);
if
(
len
==
-
1
)
break
;
/* not fully buffered */
if
(
len
<
0
)
{
if
(
len
==
-
1
)
break
;
/* not fully buffered */
/* Protocol error. */
nc
->
flags
|=
MG_F_CLOSE_IMMEDIATELY
;
break
;
}
nc
->
handler
(
nc
,
MG_MQTT_EVENT_BASE
+
mm
.
cmd
,
&
mm
MG_UD_ARG
(
user_data
));
mbuf_remove
(
io
,
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