module.c 11.5 KB
Newer Older
qiuyiuestc's avatar
qiuyiuestc 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * File      : module.c
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2006 - 2010, RT-Thread Development Team
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rt-thread.org/license/LICENSE
 *
 * Change Logs:
 * Date           Author		Notes
 * 2010-01-09      Bernard	first version
 * 2010-04-09      yi.qiu	implement based on first version
 */
qiuyiuestc's avatar
qiuyiuestc 已提交
15

qiuyiuestc's avatar
qiuyiuestc 已提交
16
#include <rtthread.h>
qiuyiuestc's avatar
qiuyiuestc 已提交
17
#include <rtm.h>
qiuyiuestc's avatar
qiuyiuestc 已提交
18

qiuyiuestc's avatar
qiuyiuestc 已提交
19
#include "string.h"
qiuyiuestc's avatar
qiuyiuestc 已提交
20 21
#include "kservice.h"

qiuyiuestc's avatar
qiuyiuestc 已提交
22
/* #define RT_MODULE_DEBUG */
qiuyiuestc's avatar
qiuyiuestc 已提交
23
#ifdef RT_USING_MODULE
24
#include "module.h"
qiuyiuestc's avatar
qiuyiuestc 已提交
25

qiuyiuestc's avatar
qiuyiuestc 已提交
26 27 28
#define elf_module 		((Elf32_Ehdr *)module_ptr)
#define shdr				((Elf32_Shdr *)((rt_uint8_t *)module_ptr + elf_module->e_shoff))
#define phdr				((Elf32_Phdr *)((rt_uint8_t *)module_ptr + elf_module->e_phoff))
qiuyiuestc's avatar
qiuyiuestc 已提交
29 30

#define IS_PROG(s)		(s.sh_type == SHT_PROGBITS)
qiuyiuestc's avatar
qiuyiuestc 已提交
31 32
#define IS_NOPROG(s)		(s.sh_type == SHT_NOBITS)
#define IS_REL(s)			(s.sh_type == SHT_REL)
qiuyiuestc's avatar
qiuyiuestc 已提交
33 34
#define IS_RELA(s)		(s.sh_type == SHT_RELA)
#define IS_ALLOC(s)		(s.sh_flags == SHF_ALLOC)
qiuyiuestc's avatar
qiuyiuestc 已提交
35 36
#define IS_AX(s)			((s.sh_flags & SHF_ALLOC) && (s.sh_flags & SHF_EXECINSTR))
#define IS_AW(s)			((s.sh_flags & SHF_ALLOC) && (s.sh_flags & SHF_WRITE))
qiuyiuestc's avatar
qiuyiuestc 已提交
37

qiuyiuestc's avatar
qiuyiuestc 已提交
38
static struct rt_module* rt_current_module = RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
39

qiuyiuestc's avatar
qiuyiuestc 已提交
40 41 42
/**
 * This function will return self module object
 *
qiuyiuestc's avatar
qiuyiuestc 已提交
43
 * @return the self module object
qiuyiuestc's avatar
qiuyiuestc 已提交
44 45 46 47
 *
 */
rt_module_t rt_module_self (void)
{
qiuyiuestc's avatar
qiuyiuestc 已提交
48
	/* return current module */
qiuyiuestc's avatar
qiuyiuestc 已提交
49 50 51
	return rt_current_module;
}

qiuyiuestc's avatar
qiuyiuestc 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64
/**
 * This function will set current module object
 *
 * @return RT_EOK
 */
rt_err_t rt_module_set (rt_module_t module)
{
	/* set current module */
	rt_current_module = module;

	return RT_EOK;
}

qiuyiuestc's avatar
qiuyiuestc 已提交
65
static int rt_module_arm_relocate(struct rt_module* module, Elf32_Rel *rel, Elf32_Addr sym_val)
qiuyiuestc's avatar
qiuyiuestc 已提交
66 67 68 69
{
	Elf32_Addr *where, tmp;
	Elf32_Sword addend;

qiuyiuestc's avatar
qiuyiuestc 已提交
70
	where = (Elf32_Addr *)((rt_uint8_t*)module->module_space + rel->r_offset);
qiuyiuestc's avatar
qiuyiuestc 已提交
71 72 73 74 75 76 77
	switch (ELF32_R_TYPE(rel->r_info))
	{
	case R_ARM_NONE:
		break;

	case R_ARM_ABS32:
		*where += (Elf32_Addr)sym_val;
qiuyiuestc's avatar
qiuyiuestc 已提交
78
#ifdef RT_MODULE_DEBUG
qiuyiuestc's avatar
qiuyiuestc 已提交
79
		rt_kprintf("R_ARM_ABS32: %x -> %x\n", where, *where);
qiuyiuestc's avatar
qiuyiuestc 已提交
80
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
81 82 83 84 85 86 87 88 89 90 91 92
		break;

	case R_ARM_PC24:
	case R_ARM_PLT32:
	case R_ARM_CALL:
	case R_ARM_JUMP24:
		addend = *where & 0x00ffffff;
		if (addend & 0x00800000)
			addend |= 0xff000000;
		tmp = sym_val - (Elf32_Addr)where + (addend << 2);
		tmp >>= 2;
		*where = (*where & 0xff000000) | (tmp & 0x00ffffff);
qiuyiuestc's avatar
qiuyiuestc 已提交
93
#ifdef RT_MODULE_DEBUG
qiuyiuestc's avatar
qiuyiuestc 已提交
94
		rt_kprintf("R_ARM_PC24: %x -> %x\n", where, *where);
qiuyiuestc's avatar
qiuyiuestc 已提交
95
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
96 97
		break;

qiuyiuestc's avatar
qiuyiuestc 已提交
98 99 100 101
	case R_ARM_V4BX:
		*where &= 0xf000000f;
		*where |= 0x01a0f000;
		break;
qiuyiuestc's avatar
qiuyiuestc 已提交
102 103
	case R_ARM_GLOB_DAT:
	case R_ARM_JUMP_SLOT:
qiuyiuestc's avatar
qiuyiuestc 已提交
104 105 106 107
		*where = (Elf32_Addr)sym_val;
#ifdef RT_MODULE_DEBUG
		rt_kprintf("R_ARM_JUMP_SLOT: 0x%x -> 0x%x 0x%x\n", where, *where, sym_val);
#endif		break;
qiuyiuestc's avatar
qiuyiuestc 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
	default:
		return -1;
	}

	return 0;
}

static void rt_module_init_object_container(struct rt_module* module)
{
	RT_ASSERT(module != RT_NULL);

	/* init object container - thread */
	rt_list_init(&(module->module_object[RT_Object_Class_Thread].object_list));
	module->module_object[RT_Object_Class_Thread].object_size = sizeof(struct rt_thread);
	module->module_object[RT_Object_Class_Thread].type = RT_Object_Class_Thread;

#ifdef RT_USING_SEMAPHORE
	/* init object container - semaphore */
	rt_list_init(&(module->module_object[RT_Object_Class_Semaphore].object_list));
	module->module_object[RT_Object_Class_Semaphore].object_size = sizeof(struct rt_semaphore);
	module->module_object[RT_Object_Class_Semaphore].type = RT_Object_Class_Semaphore;
#endif

#ifdef RT_USING_MUTEX
	/* init object container - mutex */
	rt_list_init(&(module->module_object[RT_Object_Class_Mutex].object_list));
	module->module_object[RT_Object_Class_Mutex].object_size = sizeof(struct rt_mutex);
	module->module_object[RT_Object_Class_Mutex].type = RT_Object_Class_Mutex;
#endif

#ifdef RT_USING_EVENT
	/* init object container - event */
	rt_list_init(&(module->module_object[RT_Object_Class_Event].object_list));
	module->module_object[RT_Object_Class_Event].object_size = sizeof(struct rt_event);
	module->module_object[RT_Object_Class_Event].type = RT_Object_Class_Event;
#endif

#ifdef RT_USING_MAILBOX
	/* init object container - mailbox */
	rt_list_init(&(module->module_object[RT_Object_Class_MailBox].object_list));
	module->module_object[RT_Object_Class_MailBox].object_size = sizeof(struct rt_mailbox);
	module->module_object[RT_Object_Class_MailBox].type = RT_Object_Class_MailBox;
#endif

#ifdef RT_USING_MESSAGEQUEUE
	/* init object container - message queue */
	rt_list_init(&(module->module_object[RT_Object_Class_MessageQueue].object_list));
	module->module_object[RT_Object_Class_MessageQueue].object_size = sizeof(struct rt_messagequeue);
	module->module_object[RT_Object_Class_MessageQueue].type = RT_Object_Class_MessageQueue;
#endif

#ifdef RT_USING_MEMPOOL
	/* init object container - memory pool */
	rt_list_init(&(module->module_object[RT_Object_Class_MemPool].object_list));
	module->module_object[RT_Object_Class_MemPool].object_size = sizeof(struct rt_mempool);
	module->module_object[RT_Object_Class_MemPool].type = RT_Object_Class_MemPool;
#endif

#ifdef RT_USING_DEVICE
	/* init object container - device */
	rt_list_init(&(module->module_object[RT_Object_Class_Device].object_list));
	module->module_object[RT_Object_Class_Device].object_size = sizeof(struct rt_device);
	module->module_object[RT_Object_Class_Device].type = RT_Object_Class_Device;
#endif

	/* init object container - timer */
	rt_list_init(&(module->module_object[RT_Object_Class_Timer].object_list));
	module->module_object[RT_Object_Class_Timer].object_size = sizeof(struct rt_timer);
	module->module_object[RT_Object_Class_Timer].type = RT_Object_Class_Timer;
}

qiuyiuestc's avatar
qiuyiuestc 已提交
179 180 181 182 183 184 185 186 187 188
/**
 * This function will load a module from memory and create a thread for it
 *
 * @param name the name of module, which shall be unique
 * @param module_ptr the memory address of module image
 *
 * @return the module object
 *
 */
rt_module_t rt_module_load(const rt_uint8_t* name, void* module_ptr)
qiuyiuestc's avatar
qiuyiuestc 已提交
189
{
qiuyiuestc's avatar
qiuyiuestc 已提交
190 191
	rt_uint32_t index;
	rt_uint32_t module_size = 0;
qiuyiuestc's avatar
qiuyiuestc 已提交
192
	struct rt_module* module = RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
193
	rt_uint8_t *ptr, *strtab;
qiuyiuestc's avatar
qiuyiuestc 已提交
194

qiuyiuestc's avatar
qiuyiuestc 已提交
195
#ifdef RT_MODULE_DEBUG
qiuyiuestc's avatar
qiuyiuestc 已提交
196
	rt_kprintf("rt_module_load: %s\n", name);
qiuyiuestc's avatar
qiuyiuestc 已提交
197
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
198
	/* check ELF header */
qiuyiuestc's avatar
qiuyiuestc 已提交
199
	if (rt_memcmp(elf_module->e_ident, RTMMAG, SELFMAG) != 0 ||
qiuyiuestc's avatar
qiuyiuestc 已提交
200
		elf_module->e_ident[EI_CLASS] != ELFCLASS32)
qiuyiuestc's avatar
qiuyiuestc 已提交
201
	{
qiuyiuestc's avatar
qiuyiuestc 已提交
202
		rt_kprintf(" module magic error\n");
qiuyiuestc's avatar
qiuyiuestc 已提交
203
		return RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
204 205
	}
	
qiuyiuestc's avatar
qiuyiuestc 已提交
206
	/* get the ELF image size */
qiuyiuestc's avatar
qiuyiuestc 已提交
207
	for (index = 0; index < elf_module->e_phnum; index++)
qiuyiuestc's avatar
qiuyiuestc 已提交
208
	{
qiuyiuestc's avatar
qiuyiuestc 已提交
209 210 211 212
		if(phdr[index].p_type == PT_LOAD)
			module_size += phdr[index].p_memsz;
	}	
	
qiuyiuestc's avatar
qiuyiuestc 已提交
213 214 215 216 217
	if (module_size == 0) 
	{
		rt_kprintf(" module size error\n");
		return module;
	}	
qiuyiuestc's avatar
qiuyiuestc 已提交
218 219 220

	/* allocate module */
	module = (struct rt_module *)rt_object_allocate(RT_Object_Class_Module, (const char*)name);
qiuyiuestc's avatar
qiuyiuestc 已提交
221
	if (module == RT_NULL) return RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234

	/* allocate module space */
	module->module_space = rt_malloc(module_size);
	if (module->module_space == RT_NULL)
	{
		rt_object_delete(&(module->parent));
		return RT_NULL;
	}

	/* zero all space */
	ptr = module->module_space;
	rt_memset(ptr, 0, module_size);

qiuyiuestc's avatar
qiuyiuestc 已提交
235
	for (index = 0; index < elf_module->e_phnum; index++)
qiuyiuestc's avatar
qiuyiuestc 已提交
236
	{
qiuyiuestc's avatar
qiuyiuestc 已提交
237
		if(phdr[index].p_type == PT_LOAD)
qiuyiuestc's avatar
qiuyiuestc 已提交
238
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
239 240 241 242
			rt_memcpy(ptr, (rt_uint8_t*)elf_module + phdr[index].p_offset, phdr[index].p_filesz);
			ptr += phdr[index].p_memsz;
		}		
	}	
qiuyiuestc's avatar
qiuyiuestc 已提交
243 244

	/* set module entry */
qiuyiuestc's avatar
qiuyiuestc 已提交
245
	module->module_entry = module->module_space + elf_module->e_entry;
qiuyiuestc's avatar
qiuyiuestc 已提交
246
	
qiuyiuestc's avatar
qiuyiuestc 已提交
247 248 249 250 251 252 253 254 255 256 257 258
	/* handle relocation section */
	for (index = 0; index < elf_module->e_shnum; index ++)
	{
		if (IS_REL(shdr[index]))
		{
			rt_uint32_t i, nr_reloc;
			Elf32_Sym *symtab;
			Elf32_Rel *rel;

			/* get relocate item */
			rel = (Elf32_Rel *) ((rt_uint8_t*)module_ptr + shdr[index].sh_offset);

qiuyiuestc's avatar
qiuyiuestc 已提交
259
			/* locate .rel.plt and .rel.dyn */
qiuyiuestc's avatar
qiuyiuestc 已提交
260 261
			symtab =(Elf32_Sym *) ((rt_uint8_t*)module_ptr + shdr[shdr[index].sh_link].sh_offset);
			strtab = (rt_uint8_t*) module_ptr + shdr[shdr[shdr[index].sh_link].sh_link].sh_offset;
qiuyiuestc's avatar
qiuyiuestc 已提交
262
 			nr_reloc = (rt_uint32_t) (shdr[index].sh_size / sizeof(Elf32_Rel));
qiuyiuestc's avatar
qiuyiuestc 已提交
263 264 265 266 267

			/* relocate every items */
			for (i = 0; i < nr_reloc; i ++)
			{
				Elf32_Sym *sym = &symtab[ELF32_R_SYM(rel->r_info)];
qiuyiuestc's avatar
qiuyiuestc 已提交
268
#ifdef RT_MODULE_DEBUG
qiuyiuestc's avatar
qiuyiuestc 已提交
269
				rt_kprintf("relocate symbol %s shndx %d\n", strtab + sym->st_name, sym->st_shndx);
qiuyiuestc's avatar
qiuyiuestc 已提交
270
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
271 272 273 274
				if(sym->st_shndx != 0)
				{	
					rt_module_arm_relocate(module, rel, (Elf32_Addr)((rt_uint8_t*)module->module_space + sym->st_value));
				}
qiuyiuestc's avatar
qiuyiuestc 已提交
275 276 277 278 279 280 281 282
				rel ++;
			}
		}
	}

	/* init module object container */
	rt_module_init_object_container(module);

qiuyiuestc's avatar
qiuyiuestc 已提交
283 284
	module->stack_size = 512;
	module->thread_priority = 90;
qiuyiuestc's avatar
qiuyiuestc 已提交
285 286
	module->module_thread = rt_thread_create(name,
		module->module_entry, RT_NULL,
qiuyiuestc's avatar
qiuyiuestc 已提交
287 288
		module->stack_size,
		module->thread_priority, 10);
qiuyiuestc's avatar
qiuyiuestc 已提交
289 290
	module->module_thread->module_parent = module;
	rt_thread_startup(module->module_thread);
qiuyiuestc's avatar
qiuyiuestc 已提交
291
		
qiuyiuestc's avatar
qiuyiuestc 已提交
292
	return module;
qiuyiuestc's avatar
qiuyiuestc 已提交
293 294
}	

qiuyiuestc's avatar
qiuyiuestc 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
#ifdef RT_USING_DFS
#include <dfs_posix.h>
/**
 * This function will load a module from file
 *
 * @param name the name of module, which shall be unique
 * @param filename the file name of application module image
 *
 * @return the module object
 *
 */
rt_module_t rt_module_load_from_file(const rt_uint8_t* name, const char* filename)
{
	int fd, length;
	struct rt_module* module;
	struct _stat s;
	char *buffer;
	
	stat(filename, &s);
	buffer = (char *)rt_malloc(s.st_size);
	fd = open(filename, O_RDONLY, 0);
	length = read(fd, buffer, s.st_size);
	if (length <= 0)
	{
		rt_kprintf("check: read file failed\n");
		close(fd);
		rt_free(buffer);
		return RT_NULL;
	}
	rt_kprintf("read %d bytes from file\n", length);
	module = rt_module_load(name, (void *)buffer);
	rt_free(buffer);
	close(fd);

	return module;
}
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
333 334 335 336 337 338 339 340 341
/**
 * This function will unload a module from memory and release resources 
 *
 * @param module the module to be unloaded
 *
 * @return the operation status, RT_EOK on OK; -RT_ERROR on error
 *
 */
rt_err_t rt_module_unload(rt_module_t module)
qiuyiuestc's avatar
qiuyiuestc 已提交
342
{
qiuyiuestc's avatar
qiuyiuestc 已提交
343
	int i;
qiuyiuestc's avatar
qiuyiuestc 已提交
344
	struct rt_object* object;
qiuyiuestc's avatar
qiuyiuestc 已提交
345
	struct rt_list_node *list, *node;
qiuyiuestc's avatar
qiuyiuestc 已提交
346

qiuyiuestc's avatar
qiuyiuestc 已提交
347 348 349 350
#ifdef RT_MODULE_DEBUG
	rt_kprintf("rt_module_unload %s\n", module->parent.name);
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
351 352 353
	/* check parameter */
	RT_ASSERT(module != RT_NULL);

qiuyiuestc's avatar
qiuyiuestc 已提交
354 355 356 357 358
	/* suspend module main thread */
	if (module->module_thread->stat == RT_THREAD_READY)
		rt_thread_suspend(module->module_thread);

	/* delete all module object */
qiuyiuestc's avatar
qiuyiuestc 已提交
359 360 361 362 363 364
	for(i = RT_Object_Class_Thread; i < RT_Object_Class_Module; i++)
	{	
		list = &module->module_object[i].object_list;	
		for (node = list->next; node != list; node = node->next)
		{
			object = rt_list_entry(node, struct rt_object, list);
qiuyiuestc's avatar
qiuyiuestc 已提交
365 366 367 368 369 370 371 372 373 374
			if (rt_object_is_systemobject(object) == RT_EOK)
			{
				/* detach static objcet */
				rt_object_detach(object);
			}
			else
			{	
				/* delete dynamic object */
				rt_object_delete(object);
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
375 376 377
		}
	}	
	
qiuyiuestc's avatar
qiuyiuestc 已提交
378
	/* release module memory */
qiuyiuestc's avatar
qiuyiuestc 已提交
379
	rt_free(module->module_space);
qiuyiuestc's avatar
qiuyiuestc 已提交
380
	rt_object_delete((struct rt_object *)module);
qiuyiuestc's avatar
qiuyiuestc 已提交
381 382

	return RT_EOK;
qiuyiuestc's avatar
qiuyiuestc 已提交
383 384
}

qiuyiuestc's avatar
qiuyiuestc 已提交
385 386 387 388 389 390 391
/**
 * This function will find the specified module.
 *
 * @param name the name of module finding
 *
 * @return the module
 */
qiuyiuestc's avatar
qiuyiuestc 已提交
392 393
rt_module_t rt_module_find(char* name)
{
B
bernard.xiong 已提交
394 395 396
	struct rt_object_information *information;
	struct rt_object* object;
	struct rt_list_node* node;
qiuyiuestc's avatar
qiuyiuestc 已提交
397

B
bernard.xiong 已提交
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
	extern struct rt_object_information rt_object_container[];

	/* enter critical */
	rt_enter_critical();

	/* try to find device object */
	information = &rt_object_container[RT_Object_Class_Thread];
	for (node = information->object_list.next; node != &(information->object_list); node = node->next)
	{
		object = rt_list_entry(node, struct rt_object, list);
		if (rt_strncmp(object->name, name, RT_NAME_MAX) == 0)
		{
			/* leave critical */
			rt_exit_critical();

			return (rt_module_t)object;
		}
	}

	/* leave critical */
	rt_exit_critical();

	/* not found */
	return RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
422 423
}

qiuyiuestc's avatar
qiuyiuestc 已提交
424 425 426 427 428 429
#if defined(RT_USING_FINSH)
#include <finsh.h>

FINSH_FUNCTION_EXPORT(rt_module_load_from_file, load module from file);
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
430
#endif