Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
MQTT
MQTTPacket_readPacket 这个接口会导致内存溢出
发布于 2020-02-04 17:08:49 浏览:2430
订阅该版
`MQTTPacket_readPacket`接口存在bug,如果接受的数据超过缓冲区的长度会出现内存溢出,没有判断缓冲区的长度。mqtt这个有点复杂,不知道怎么修复这个问题 ```c static int MQTTPacket_readPacket(MQTTClient *c) { int rc = PAHO_FAILURE; MQTTHeader header = {0}; int len = 0; int rem_len = 0; /* 1. read the header byte. This has the packet type in it */ if (net_read(c, c->readbuf, 1, 0) != 1) goto exit; len = 1; /* 2. read the remaining length. This is variable in itself */ decodePacket(c, &rem_len, 50); len += MQTTPacket_encode(c->readbuf + 1, rem_len); /* put the original remaining length back into the buffer */ /* 3. read the rest of the buffer using a callback to supply the rest of the data */ if (rem_len > 0 && (net_read(c, c->readbuf + len, rem_len, 300) != rem_len)) goto exit; header.byte = c->readbuf[0]; rc = header.bits.type; exit: return rc; } ``` rem_len 是网络的待接收的数据长度. `c->readbuf`是接收数据的缓冲区,如果rem_len的值大于readbuf的大小就会出现溢出 ```c static int net_read(MQTTClient *c, unsigned char *buf, int len, int timeout) { int bytes = 0; int rc; while (bytes < len) { #ifdef MQTT_USING_TLS if (c->tls_session) { rc = mbedtls_client_read(c->tls_session, &buf[bytes], (size_t)(len - bytes)); if (rc <= 0) { bytes = -1; break; } else { bytes += rc; } goto _continue; } #endif rc = recv(c->sock, &buf[bytes], (size_t)(len - bytes), MSG_DONTWAIT); if (rc == -1) { if (errno != ENOTCONN && errno != ECONNRESET) { bytes = -1; break; } } else bytes += rc; #ifdef MQTT_USING_TLS _continue: #endif if (bytes >= len) { break; } if (timeout > 0) { fd_set readset; struct timeval interval; LOG_D("net_read %d:%d, timeout:%d", bytes, len, timeout); // modify by k999 ([email]hijxyz@163.com[/email]) if (timeout >= 1000) { interval.tv_sec = timeout / 1000; interval.tv_usec = (timeout % 1000) * 1000; } else { interval.tv_sec = 0; interval.tv_usec = timeout * 1000; } timeout = 0; FD_ZERO(&readset); FD_SET(c->sock, &readset); select(c->sock + 1, &readset, RT_NULL, RT_NULL, &interval); } else { LOG_D("net_read %d:%d, break!", bytes, len); break; } } return bytes; } ```
查看更多
7
个回答
默认排序
按发布时间排序
Polarbear
2021-06-25
这家伙很懒,什么也没写!
楼主有出现过因为 ```c if (net_read(c, c->readbuf, 1, 0) != 1) goto exit; ``` 执行了 ```c LOG_D("net_read %d:%d, break!", bytes, len); ``` 导致出现的掉线重连的情况吗?
aozima
2020-02-04
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
你的单个消息有多大啊?
hijxyz
2020-02-04
这家伙很懒,什么也没写!
>你的单个消息有多大啊? --- 我一开始是设置缓冲区是1500,我就用2000的包去测试,就发现死机了。我觉得这个问题是直接导致死机的是比较严重的
aozima
2020-02-04
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
嗯,楼主可以尝试限制下,在拷贝payload的时候限制一下长度。
hijxyz
2020-02-04
这家伙很懒,什么也没写!
>嗯,楼主可以尝试限制下,在拷贝payload的时候限制一下长度。 ```c /* 2. read the remaining length. This is variable in itself */ decodePacket(c, &rem_len, 50); len += MQTTPacket_encode(c->readbuf + 1, rem_len); /* put the original remaining length back into the buffer */ // add by k999 ([email]hijxyz@163.com[/email]) if(rem_len > (c->readbuf_size - len)){ LOG_D("rem_len(%d) > read_buf_size(%d)", rem_len, c->readbuf_size - len); rem_len = c->readbuf_size - len; } /* 3. read the rest of the buffer using a callback to supply the rest of the data */ if (rem_len > 0 && (net_read(c, c->readbuf + len, rem_len, 300) != rem_len)) goto exit; ``` 我加了这段判断限制了,是可以接受这段数据不会死机,但是接收完之后就会断开mqtt的连接了。像似没有把整个包接收完整,会影响下一个数据包的接收
aozima
2020-02-05
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
嗯,需要把后面的数据空读,以丢弃掉。
hijxyz
2020-02-06
这家伙很懒,什么也没写!
>嗯,需要把后面的数据空读,以丢弃掉。 好的,我试试:victory:
撰写答案
登录
注册新账号
关注者
0
被浏览
2.4k
关于作者
hijxyz
这家伙很懒,什么也没写!
提问
14
回答
15
被采纳
2
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
【RT-Thread】【ci】【scons】将ci.attachconfig.yml和scons结合使用
2
Rt-thread中OTA下载后,bootloader不搬程序
3
ulog 日志 LOG_HEX 输出时间改为本地日期时间
4
在RT-Thread Studio中构建前执行python命令
5
研究一了一段时间RTT,直接标准版上手太难,想用nano,但又舍不得组件
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
I2C_IIC
ESP8266
UART
WIZnet_W5500
ota在线升级
PWM
cubemx
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
xusiwei1236
8
个答案
2
次被采纳
踩姑娘的小蘑菇
1
个答案
2
次被采纳
用户名由3_15位
9
个答案
1
次被采纳
bernard
4
个答案
1
次被采纳
RTT_逍遥
3
个答案
1
次被采纳
本月文章贡献
聚散无由
2
篇文章
15
次点赞
catcatbing
2
篇文章
5
次点赞
Wade
2
篇文章
4
次点赞
Ghost_Girls
1
篇文章
6
次点赞
YZRD
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部