编辑:更改标题以忽略我的假设。
我有一个用 c 编写的库,它使用 posix 消息队列在线程之间传递指向某些运行时数据的指针。
在数据来自用户应用程序的情况下,一切似乎工作正常,并且我能够访问来自消息队列的指向结构的指针所指向的数据。
现在,我有一个特殊情况,库本身将对结构的一个实例进行 malloc,设置一个标志并将其发送到同一个队列。在接收端,结构为空,标志为零。在指针上调用 free 会导致崩溃。
这是代码:
volatile s_thestruct * volatile data = malloc(sizeof(s_thestruct));
data->flags = THE_FLAG;
mq_send(handle, (char *)&data, sizeof(s_thestruct *), 1)
在接收端:
ssize_t read = mq_receive(handle, (char*)&data, sizeof(s_thestruct*), NULL);
if(read != sizeof(s_thestruct *))
{
// Error handling, no problems here
}
if(data->flags == THE_FLAG)
{
// Do something, never gets here
}
// Do something else, no it is not freed here
// Finally
free(data); // <--CRASH
我会得到:
*** glibc detected *** /usr/bin/applicationthingy: free(): invalid pointer: 0x08053cf0 ***
其次是转储。在内存映射转储中,我发现:
....
08048000-0804a000 r-xp 00000000 08:01 802680 /usr/bin/applicationthingy
0804a000-0804b000 r--p 00001000 08:01 802680 /usr/bin/applicationthingy
0804b000-0804c000 rw-p 00002000 08:01 802680 /usr/bin/applicationthingy
0804c000-0806f000 rw-p 00000000 00:00 0 [heap]
b6e00000-b6e21000 rw-p 00000000 00:00 0
....
那么,有人对这里发生的事情有任何建议吗?