我在linux内核(2.4)中处理一些代码,由于某种原因kmalloc返回相同的地址(我相信它只会在测试中间发生)。我检查了对kmalloc的调用之间是否没有对kfree的调用(即内存仍在使用中)。

也许我没记忆了? (kmalloc没有返回NULL ...)

关于这种事情怎么发生的任何想法?

先谢谢您的帮助!

码:

typedef struct
{
    char* buffer;
    int read_count;
    int write_count;
    struct semaphore read_sm;
    struct semaphore write_sm;
    int reader_ready;
    int writer_ready;
    int createTimeStamp;
} data_buffer_t ;

typedef struct vsf_t vsf_t;

struct vsf_t
{
    int minor;
    int type;
    int open_count;
    int waiting_pid;
    data_buffer_t* data;
    list_t proc_list;
    vsf_t* otherSide_vsf;
    int real_create_time_stamp;
};

int create_vsf(struct inode *inode, struct file *filp, struct vsf_command_parameters* parms)
{
...
    buff_data = allocate_buffer();
    if (buff_data == NULL)
    {
        kfree(this_vsfRead);
        kfree(this_vsfWrite);
        return -ENOMEM;
    }
...
}

data_buffer_t* allocate_buffer()
{
...
    data_buffer_t* this_buff = (data_buffer_t*)kmalloc(sizeof(data_buffer_t), GFP_KERNEL);
    if (this_buff == NULL)
    {
        printk( KERN_WARNING "failure at allocating memory\n" );
        return NULL;
    }
...
return this_buff;
}

*我在每一个kmalloc和kfree之后打印,我绝对确定在kmalloc的之间(返回相同的地址)没有kfree被调用

最佳答案

我不知道kmalloc的数据结构是什么样子,但是您可以想象如果以前的double free导致缓冲区的链接列表中出现循环,则会发生这种情况。进一步的释放仍然可以链接到其他不同的缓冲区(可以重新分配),但是一旦这些缓冲区用尽,最后一个缓冲区将无限期地返回。

10-06 00:00