dlclose()损坏的双链表:

时间:2014-05-08 23:47:38

标签: c shared-libraries

我正在使用基本的C插件系统dlclose()。这是我的代码:

#include <stdlib.h>
#include <string.h>

char** getPlugins()
{
    int i;
    char** tab=malloc(sizeof(char*)*5);
    for(i=0;i<6;++i)
        tab[i]=malloc(sizeof(char)*10);

    strcpy(tab[0],"plugin1");
    strcpy(tab[1],"plugin2");
    strcpy(tab[2],"plugin3");
    strcpy(tab[3],"plugin4");
    tab[4]=NULL;
    return tab;
}

这是调用它的函数(包含共享库路径的libtab):

#include "loadlib.h"
#include <stdio.h>
#include <stdlib.h>
#include <dlfcn.h>

void loadlib(char** libtab, Node** bst)
{
    int i=0;
    void* (*mime_type) ();
    void* handle;
    while(libtab[i]!=NULL)
    {
        handle=dlopen(libtab[i],RTLD_LAZY);
        if(handle==NULL)
            fprintf(stderr,"%s\n",dlerror());
        else
        {
            mime_type=dlsym(handle,"getPlugins");
            fill_tree(bst,mime_type());
        }
        ++i;
        /*dlclose(handle);*/
    }
}

此代码仅使用一次循环迭代进行测试,并且函数本身正确地完成了它的工作。当运行所有6项时,我收到错误:

*** Error in `./plugin': corrupted double-linked list: 0x0000000000e6aad0 ***
Inconsistency detected by ld.so: dl-open.c: 220: dl_open_worker: Assertion `_dl_debug_initialize (0, args->nsid)->r_state == RT_CONSISTENT' failed!

有人可以翻译此错误的含义以及我做错了什么吗?

1 个答案:

答案 0 :(得分:1)

你循环太远,分配5个指针并循环到6:

char** tab=malloc(sizeof(char*)*5);
for(i=0;i<6;++i)
    tab[i]=malloc(sizeof(char)*10);