rt-thread-official/components/libc/libdl/dlopen.c

65 lines
1.3 KiB
C
Raw Normal View History

2013-01-08 22:40:58 +08:00
/*
2018-08-30 20:27:45 +08:00
* Copyright (c) 2006-2018, RT-Thread Development Team
2013-01-08 22:40:58 +08:00
*
2018-08-30 20:27:45 +08:00
* SPDX-License-Identifier: Apache-2.0
2013-01-08 22:40:58 +08:00
*
* Change Logs:
2018-04-25 23:26:20 +08:00
* Date Author Notes
* 2010-11-17 yi.qiu first version
2013-01-08 22:40:58 +08:00
*/
2018-04-25 23:26:20 +08:00
2013-01-08 22:40:58 +08:00
#include <rtthread.h>
#include <rtm.h>
#include <string.h>
2018-08-30 20:27:45 +08:00
#include "dlmodule.h"
2018-04-25 23:26:20 +08:00
#define MODULE_ROOT_DIR "/modules"
2013-01-08 22:40:58 +08:00
void* dlopen(const char *filename, int flags)
{
2018-08-30 20:27:45 +08:00
struct rt_dlmodule *module;
2018-04-25 23:26:20 +08:00
char *fullpath;
const char*def_path = MODULE_ROOT_DIR;
/* check parameters */
RT_ASSERT(filename != RT_NULL);
if (filename[0] != '/') /* it's a relative path, prefix with MODULE_ROOT_DIR */
{
fullpath = rt_malloc(strlen(def_path) + strlen(filename) + 2);
/* join path and file name */
rt_snprintf(fullpath, strlen(def_path) + strlen(filename) + 2,
"%s/%s", def_path, filename);
}
else
{
fullpath = (char*)filename; /* absolute path, use it directly */
}
2018-08-30 20:27:45 +08:00
rt_enter_critical();
2018-04-25 23:26:20 +08:00
/* find in module list */
2018-08-30 20:27:45 +08:00
module = dlmodule_find(fullpath);
2018-04-25 23:26:20 +08:00
2018-08-30 20:27:45 +08:00
if(module != RT_NULL)
{
rt_exit_critical();
module->nref++;
}
else
{
rt_exit_critical();
module = dlmodule_load(fullpath);
}
2018-04-25 23:26:20 +08:00
if(fullpath != filename)
{
rt_free(fullpath);
}
return (void*)module;
2013-01-08 22:40:58 +08:00
}
2018-04-25 23:26:20 +08:00
RTM_EXPORT(dlopen);