- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在我打开另一个问题之前,这个问题与我几天前打开的另一个问题有关:
C++ Program Always Crashes While doing a std::string assign
根据一些答案进一步调查后,我提出了更多问题和更多可能有助于调试问题的信息。
所以这里...
有问题的代码:
bool peopleSProtocol::SignalProtocolCreated(BaseProtocol *pProtocol,
Variant customParameters) {
LOG("peopleSProtocol::SignalProtocolCreated");
SetOutboundConnectParameters(customParameters);
// Tie up the peopleSProtocol Instance to the BaseOutboundStream Instance.
BaseClientApplication *pApplication = ClientApplicationManager::FindAppByName("peoplestreamer");
std::string lStreamName;
printf("1b [%d] [%s]", (int) lStreamName.size(), lStreamName.c_str()); // line 217
SetApplication(pApplication); // line 218
printf("1c [%d] [%s]", (int) lStreamName.size(), lStreamName.c_str()); // line 219
BaseRTAppProtocolHandler *pProtocolHandler = (BaseRTAppProtocolHandler *)pApplication->GetProtocolHandler(PT_OUTBOUNDRT);
printf("1d [%d] [%s]", (int) lStreamName.size(), lStreamName.c_str());
uint32_t protocolId = customParameters["customParameters"]["outboundRTProtocolId"];
uint32_t streamId = customParameters["customParameters"]["streamId"];
printf("1d [%d] [%s]", (int) lStreamName.size(), lStreamName.c_str());
BaseOutboundStream *lpBaseOutboundStream = (BaseOutboundStream*)pProtocolHandler->FindByProtocolIdById(protocolId,streamId);
printf("1e [%d] [%s]", (int) lStreamName.size(), lStreamName.c_str());
RegisterOutboundStream(lpBaseOutboundStream);
printf("2 [%d] [%s]", (int) lStreamName.size(), lStreamName.c_str());
// Get the address of our peer (the RT peer, NOT the peopleS peer)...
int32_t lRTClientFd = lpBaseOutboundStream->GetProtocol()->GetIOHandler()->GetFd();
struct sockaddr_in lPeerAddressStruct;
int lPeerLength = sizeof(lPeerAddressStruct);
getpeername(lRTClientFd,(sockaddr*)&lPeerAddressStruct,(socklen_t*)&lPeerLength);
string lPeerIpAddressString = inet_ntoa(lPeerAddressStruct.sin_addr);
uint16_t lPeerPort = ntohs(lPeerAddressStruct.sin_port);
printf("3 [%d] [%s]", (int) lStreamName.size(), lStreamName.c_str());
// Get the name of the file in accordance with the RT spec...
GetStreamName(STR(M_INVOKE_PARAM(customParameters,1)), lStreamName); // line 247
return SendPlayCommand(lStreamName,lPeerIpAddressString,lPeerPort);
}
bool peopleSProtocol::GetStreamName(const char* pRawPath, std::string &pStreamName)
{
vector<string> parts = split(pRawPath,"/"); // line 260
pStreamName = parts.back(); // line 261
parts = split(pStreamName.c_str(),":");
pStreamName = parts.back();
return true;
}
#define ADD_VECTOR_END(v,i) (v).push_back((i))
vector<string> split(string str, string separator) {
vector<string> result;
string::size_type position = str.find(separator);
uint32_t separatorLength = separator.length();
while (position != str.npos) {
string temp = str.substr(0, position);
ADD_VECTOR_END(result, temp);
str = str.substr(position + separatorLength);
position = str.find(separator);
}
ADD_VECTOR_END(result, str);
return result;
}
GDB 回溯:
(gdb) b 217
Breakpoint 3, peopleSProtocol::SignalProtocolCreated (this=0x3c52020, pProtocol=<value optimized out>, customParameters=@0x413f9eb0) at peopleRTstreamer/src/peoplesprotocol.cpp:217
217 printf("1b [%d] [%s]", (int) lStreamName.size(), lStreamName.c_str());
(gdb) p lStreamName
$1 = {static npos = 18446744073709551615, _M_dataplus = {<std::allocator<char>> = {<__gnu_cxx::new_allocator<char>> = {<No data fields>}, <No data fields>}, _M_p = 0x3c52020 "\220R̪�*"}}
(gdb) c
[DEBUG] cpeopleTcpConnection - Connected to 127.0.0.1:37255
[DEBUG] cpeopleTcpConnection - Connected from server address : 127.0.0.1
[New Thread 1096964416 (LWP 10941)]
Breakpoint 4, peopleSProtocol::SignalProtocolCreated (this=0x3c52020, pProtocol=<value optimized out>, customParameters=@0x413f9eb0) at peopleRTstreamer/src/peoplesprotocol.cpp:218
218 SetApplication(pApplication);
(gdb) p lStreamName
$2 = {static npos = 18446744073709551615, _M_dataplus = {<std::allocator<char>> = {<__gnu_cxx::new_allocator<char>> = {<No data fields>}, <No data fields>}, _M_p = 0x2abbad098e78 ""}}
(gdb) c
Breakpoint 5, peopleSProtocol::SignalProtocolCreated (this=0x3c52020, pProtocol=<value optimized out>, customParameters=@0x413f9eb0) at peopleRTstreamer/src/peoplesprotocol.cpp:219
219 printf("1c [%d] [%s]", (int) lStreamName.size(), lStreamName.c_str());
(gdb) p lStreamName
$3 = {static npos = 18446744073709551615, _M_dataplus = {<std::allocator<char>> = {<__gnu_cxx::new_allocator<char>> = {<No data fields>}, <No data fields>}, _M_p = 0x2abbad098e78 ""}}
(gdb) c
[New Thread 1097099584 (LWP 11010)]
1b [0] []1c [0] []1d [0] []1d [0] [][DEBUG] peopleStreamingServer.RTServer - Opening connection from 127.0.0.1
[DEBUG] peopleStreamingServer.RTServer - Using server IP address 127.0.0.1
Breakpoint 6, peopleSProtocol::SignalProtocolCreated (this=0x3c52020, pProtocol=<value optimized out>, customParameters=@0x413f9eb0) at peopleRTstreamer/src/peoplesprotocol.cpp:247
247 GetStreamName(STR(M_INVOKE_PARAM(customParameters,1)), lStreamName);
(gdb) p lStreamName
$4 = {static npos = 18446744073709551615, _M_dataplus = {<std::allocator<char>> = {<__gnu_cxx::new_allocator<char>> = {<No data fields>}, <No data fields>}, _M_p = 0x2abbad098e78 ""}}
(gdb) c
Breakpoint 7, peopleSProtocol::GetStreamName (this=0x3c52020, pRawPath=0x3c40808 "RT://127.0.0.1/mp4:popeye.mp4", pStreamName=@0x413f9e10) at peopleRTstreamer/src/peoplesprotocol.cpp:260
260 vector<string> parts = split(pRawPath,"/");
(gdb) p pStreamName
$5 = (string &) @0x413f9e10: {static npos = 18446744073709551615, _M_dataplus = {<std::allocator<char>> = {<__gnu_cxx::new_allocator<char>> = {<No data fields>}, <No data fields>},
_M_p = 0x2abbad098e78 ""}}
(gdb) c
*** glibc detected *** /home/ml01/t-live/TEngine/StreamingServer/.libs/peoplestreamingserver: free(): invalid pointer: 0x00002abbad098e60 ***
======= Backtrace: =========
/lib64/libc.so.6[0x3560871634]
/lib64/libc.so.6(cfree+0x8c)[0x3560874c5c]
/home/ml01/t-HEAD/gcc/4.2.4/lib/../lib64/libstdc++.so.6(_ZNSs6assignERKSs+0x90)[0x2abbace3fd20]
/home/ml01/usr/local/lib/RTserver/libpeopleRTstreamer.so(_ZN12peopleSProtocol13GetStreamNameEPKcRSs+0x9a)[0x2aaaaaabd16a]
/home/ml01/usr/local/lib/RTserver/libpeopleRTstreamer.so(_ZN12peopleSProtocol21SignalProtocolCreatedEP12BaseProtocol7Variant+0x2e4)[0x2aaaaaabd894]
/home/ml01/usr/local/lib/RTserver/libpeopleRTstreamer.so(_ZN12TCPConnectorI12peopleSProtocolE7OnEventER11epoll_event+0x1a6)[0x2aaaaaabf046]
/home/ml01/t-HEAD/cRTserver/20091229/lib/libthelib.so(_ZN16IOHandlerManager5PulseEv+0x4a6)[0x2abbad425620]
/home/ml01/usr/local/lib/libpeopleRT.so.0(_ZN3people15cRTServerLoop19RTProtocolHandlerEv+0x55)[0x2abba2d2df45]
/home/ml01/usr/local/lib/libpeopleRT.so.0(_Z19HandleTrafficThreadPv+0x9)[0x2abba2d2e009]
/home/ml01/t-HEAD/glib/2.18.0/lib/libglib-2.0.so.0[0x2abbabc84394]
/lib64/libpthread.so.0[0x35614062f7]
/lib64/libc.so.6(clone+0x6d)[0x35608d1b6d]
(gdb) where
#0 0x0000003560830155 in raise () from /lib64/libc.so.6
#1 0x0000003560831bf0 in abort () from /lib64/libc.so.6
#2 0x000000356086a38b in __libc_message () from /lib64/libc.so.6
#3 0x0000003560871634 in _int_free () from /lib64/libc.so.6
#4 0x0000003560874c5c in free () from /lib64/libc.so.6
#5 0x00002abbace3fd20 in std::string::assign (this=0x413f9e10, __str=<value optimized out>) at /home/ml01/ThirdParty/sources/gcc-4.2.4/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/basic_string.h:238
#6 0x00002aaaaaabd16a in peopleSProtocol::GetStreamName (this=<value optimized out>, pRawPath=0x3c40808 "RT://127.0.0.1/mp4:popeye.mp4", pStreamName=@0x413f9e10)
at /home/ml01/t-HEAD/gcc/4.2.4/lib/gcc/x86_64-pc-linux-gnu/4.2.4/../../../../include/c++/4.2.4/bits/basic_string.h:491
#7 0x00002aaaaaabd894 in peopleSProtocol::SignalProtocolCreated (this=0x3c52020, pProtocol=<value optimized out>, customParameters=@0x413f9eb0) at peopleRTstreamer/src/peoplesprotocol.cpp:247
#8 0x00002aaaaaabf046 in TCPConnector<peopleSProtocol>::OnEvent (this=0x3c40aa0, event=<value optimized out>) at /home/ml01/t-HEAD/cRTserver/20091229/include/cRTserver/netio/epoll/tcpconnector.h:90
#9 0x00002abbad425620 in IOHandlerManager::Pulse () at /home/ml01/ThirdParty/sources/cRTserver/sources/thelib/src/netio/epoll/iohandlermanager.cpp:260
#10 0x00002abba2d2df45 in people::cRTServerLoop::RTProtocolHandler (this=0x3c4c180) at src/RTServerLoop.cpp:77
#11 0x00002abba2d2e009 in HandleTrafficThread (ipData=0x60bc) at src/RTServerLoop.cpp:39
#12 0x00002abbabc84394 in g_thread_create_proxy (data=0x3c4e060) at gthread.c:635
#13 0x00000035614062f7 in start_thread () from /lib64/libpthread.so.0
#14 0x00000035608d1b6d in clone () from /lib64/libc.so.6
所以为了解释以上内容,崩溃发生在字符串分配期间的第 261 行(请参阅代码中的行号注释)。出于某种原因,它试图释放无效内存,但我不确定为什么?它试图释放的地址不是我认为是第 217 行分配的空字符串的地址(_M_p = 0x3c52020 设置为 _M_p = 0x2abbad098e78 即空字符串),而是一些其他地址相距不远。
有什么可能导致此问题的想法吗?我想知道这是否可能是一个优化问题,因为它不会出现在 -O0 中并且我已经通过一系列测试运行代码以尝试找到可能导致这种奇怪行为的一大堆内存损坏问题...... .空手而归!
另一个有趣的注意事项是,如果我设置 std::string lStreamName = "";而不是 std::string lStreamName;程序不再崩溃???任何想法可能会导致这种情况?为什么这个字符串的简单初始化可以消除崩溃?
谢谢!
最佳答案
如果不能保证拆分不会返回空 vector ,我会添加一个检查是否为空。否则将空 vector 的 back() 分配给字符串可能会导致您收到的行为。
bool GetStreamName(const char* pRawPath, std::string& pStreamName)
{
std::vector<std::string> parts = split(pRawPath,'/'); // line 260
if( parts.size() == 0 )
{
cout << "Cannot parse '" << pRawPaths << "'" << endl;
return false;
}
pStreamName = parts.back(); // line 261
parts = split(pStreamName.c_str(),':');
pStreamName = parts.back();
return true;
}
关于c++ - 使用 g++ 中设置的 -O2 执行 std::string 分配时无效 free,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2314642/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!