module.c 11.9 KB
Newer Older
qiuyiuestc's avatar
qiuyiuestc 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * 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
 */
 
#include <rtm.h>
#include <rtthread.h>

#include "module.h"
#include "kservice.h"

qiuyiuestc's avatar
qiuyiuestc 已提交
22
/* #define RT_MODULE_DEBUG  */
qiuyiuestc's avatar
qiuyiuestc 已提交
23 24 25 26 27 28 29 30 31 32 33 34

#define elf_module 	((Elf32_Ehdr *)module_ptr)
#define shdr		((Elf32_Shdr *)((rt_uint8_t *)module_ptr + elf_module->e_shoff))

#define IS_PROG(s)		(s.sh_type == SHT_PROGBITS)
#define IS_NOPROG(s)	(s.sh_type == SHT_NOBITS)
#define IS_REL(s)		(s.sh_type == SHT_REL)
#define IS_RELA(s)		(s.sh_type == SHT_RELA)
#define IS_ALLOC(s)		(s.sh_flags == SHF_ALLOC)
#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 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
#ifdef RT_USING_MODULE
rt_list_t rt_module_symbol_list;
struct rt_module* rt_current_module;
struct rt_module_symtab *_rt_module_symtab_begin = RT_NULL, *_rt_module_symtab_end = RT_NULL;
void rt_system_module_init()
{
#ifdef __CC_ARM
	extern int RTMSymTab$$Base;
	extern int RTMSymTab$$Limit;

	_rt_module_symtab_begin = (struct rt_module_symtab *)&RTMSymTab$$Base;
	_rt_module_symtab_end   = (struct rt_module_symtab *)&RTMSymTab$$Limit;
#elif defined(__GNUC__)
	extern int __rtmsymtab_start;
	extern int __rtmsymtab_end;

	_rt_module_symtab_begin = (struct rt_module_symtab *)&__rtmsymtab_start;
	_rt_module_symtab_end   = (struct rt_module_symtab *)&__rtmsymtab_end;
#endif

	rt_list_init(&rt_module_symbol_list);
}

rt_uint32_t rt_module_symbol_find(const rt_uint8_t* sym_str)
{
	/* find in kernel symbol table */
	struct rt_module_symtab* index;
	for (index = _rt_module_symtab_begin; index != _rt_module_symtab_end; index ++)
	{
		if (strcmp(index->name, (const char*)sym_str) == 0)
			return index->addr;
	}

	return 0;
}

int rt_module_arm_relocate(struct rt_module* module, Elf32_Rel *rel, Elf32_Addr sym_val, rt_uint32_t module_addr)
{
	Elf32_Addr *where, tmp;
	Elf32_Sword addend;

	where = (Elf32_Addr *)((rt_uint8_t*)module->module_space + rel->r_offset - module_addr);
	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 已提交
84
#ifdef RT_MODULE_DEBUG
qiuyiuestc's avatar
qiuyiuestc 已提交
85
		rt_kprintf("R_ARM_ABS32: %x -> %x\n", where, *where);
qiuyiuestc's avatar
qiuyiuestc 已提交
86
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
87 88 89 90 91 92 93 94 95 96 97 98
		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 已提交
99
#ifdef RT_MODULE_DEBUG
qiuyiuestc's avatar
qiuyiuestc 已提交
100
		rt_kprintf("R_ARM_PC24: %x -> %x\n", where, *where);
qiuyiuestc's avatar
qiuyiuestc 已提交
101
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
102 103 104 105 106 107 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
		break;

	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;
}

struct rt_module* rt_module_load(void* module_ptr, const rt_uint8_t* name)
{
qiuyiuestc's avatar
qiuyiuestc 已提交
177 178
	rt_uint32_t index, rodata_addr = 0, bss_addr = 0;
	rt_uint32_t module_addr = 0, module_size = 0;
qiuyiuestc's avatar
qiuyiuestc 已提交
179 180 181
	struct rt_module* module = RT_NULL;
	rt_uint8_t *ptr, *strtab, *shstrab;

qiuyiuestc's avatar
qiuyiuestc 已提交
182 183 184 185
#ifdef RT_MODULE_DEBUG
		rt_kprintf("rt_module_load: %s\n", name);
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
	/* check ELF header */
	if (rt_memcmp(elf_module->e_ident, ELFMAG, SELFMAG) != 0 ||
		elf_module->e_ident[EI_CLASS] != ELFCLASS32)
		return RT_NULL;

	/* get the ELF image size */
	for (index = 0; index < elf_module->e_shnum; index++)
	{
		/* text */
		if (IS_PROG(shdr[index]) && IS_AX(shdr[index]))
		{
			module_size += shdr[index].sh_size;
			module_addr = shdr[index].sh_addr;
		}
		/* rodata */
		if (IS_PROG(shdr[index]) && IS_ALLOC(shdr[index]))
		{
			module_size += shdr[index].sh_size;
		}			
		/* data */
		if (IS_PROG(shdr[index]) && IS_AW(shdr[index]))
		{
			module_size += shdr[index].sh_size;
		}
		/* bss */
		if (IS_NOPROG(shdr[index]) && IS_AW(shdr[index]))
		{
			module_size += shdr[index].sh_size;
		}	
	}

	/* no text, data and bss on image */
	if (module_size == 0) return module;

	/* allocate module */
	module = (struct rt_module *)rt_object_allocate(RT_Object_Class_Module, (const char*)name);
	if (module == RT_NULL) return module;

	/* 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);

	/* load text and data section */
	for (index = 0; index < elf_module->e_shnum; index++)
	{
qiuyiuestc's avatar
qiuyiuestc 已提交
239 240
		/* load text section */
		if (IS_PROG(shdr[index]) && IS_AX(shdr[index]))
qiuyiuestc's avatar
qiuyiuestc 已提交
241 242 243 244 245
		{
			rt_memcpy(ptr, (rt_uint8_t*)elf_module + shdr[index].sh_offset, shdr[index].sh_size);
			ptr += shdr[index].sh_size;
		}

qiuyiuestc's avatar
qiuyiuestc 已提交
246 247 248 249 250 251 252 253
		/* load rodata section */
		if (IS_PROG(shdr[index]) && IS_ALLOC(shdr[index]))
		{
			rt_memcpy(ptr, (rt_uint8_t*)elf_module + shdr[index].sh_offset, shdr[index].sh_size);
			rodata_addr = (rt_uint32_t)ptr;
			ptr += shdr[index].sh_size;
		}
		
qiuyiuestc's avatar
qiuyiuestc 已提交
254 255 256 257
		/* load data section */
		if (IS_PROG(shdr[index]) && IS_AW(shdr[index]))
		{
			module->module_data = (rt_uint32_t)ptr;
qiuyiuestc's avatar
qiuyiuestc 已提交
258
			rt_memcpy(ptr, (rt_uint8_t*)elf_module + shdr[index].sh_offset, shdr[index].sh_size);
qiuyiuestc's avatar
qiuyiuestc 已提交
259 260
			ptr += shdr[index].sh_size;
		}
qiuyiuestc's avatar
qiuyiuestc 已提交
261 262 263 264

		/* load bss section */
		if (IS_NOPROG(shdr[index]) && IS_AW(shdr[index]))
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
265
			bss_addr = (rt_uint32_t)ptr;
qiuyiuestc's avatar
qiuyiuestc 已提交
266 267
			rt_memset(ptr, 0, shdr[index].sh_size);
		}
qiuyiuestc's avatar
qiuyiuestc 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
	}

	/* set module entry */
	module->module_entry = (rt_uint8_t*)module->module_space + elf_module->e_entry - module_addr;

	/* 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);

			/* locate .dynsym and .dynstr */
			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;
			shstrab = (rt_uint8_t*) module_ptr + shdr[elf_module->e_shstrndx].sh_offset;
			nr_reloc = (rt_uint32_t) (shdr[index].sh_size / sizeof(Elf32_Rel));

			/* relocate every items */
			for (i = 0; i < nr_reloc; i ++)
			{
				Elf32_Sym *sym = &symtab[ELF32_R_SYM(rel->r_info)];
qiuyiuestc's avatar
qiuyiuestc 已提交
295
#ifdef RT_MODULE_DEBUG
qiuyiuestc's avatar
qiuyiuestc 已提交
296
				rt_kprintf("relocate symbol: %s\n", strtab + sym->st_name);
qiuyiuestc's avatar
qiuyiuestc 已提交
297
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
298 299 300 301
				if (sym->st_shndx != STN_UNDEF)
				{				
					if(ELF_ST_TYPE(sym->st_info) == STT_SECTION)
					{	
qiuyiuestc's avatar
qiuyiuestc 已提交
302
						if (rt_strncmp(shstrab + shdr[sym->st_shndx].sh_name, ELF_RODATA, 8) == 0)
qiuyiuestc's avatar
qiuyiuestc 已提交
303
						{
qiuyiuestc's avatar
qiuyiuestc 已提交
304
							/* relocate rodata section */
qiuyiuestc's avatar
qiuyiuestc 已提交
305
							rt_module_arm_relocate(module, rel,
qiuyiuestc's avatar
qiuyiuestc 已提交
306 307
								(Elf32_Addr)(rodata_addr),
								module_addr); 
qiuyiuestc's avatar
qiuyiuestc 已提交
308 309 310 311
						}
						else if(strncmp(shstrab + shdr[sym->st_shndx].sh_name, ELF_BSS, 5) == 0)
						{
							/* relocate bss section */
qiuyiuestc's avatar
qiuyiuestc 已提交
312
							rt_module_arm_relocate(module, rel, (Elf32_Addr)bss_addr, module_addr);
qiuyiuestc's avatar
qiuyiuestc 已提交
313 314 315 316 317 318 319 320 321 322 323
						}	
					}
					else if(ELF_ST_TYPE(sym->st_info) == STT_FUNC )
					{	
						/* relocate function */
						rt_module_arm_relocate(module, rel,
							(Elf32_Addr)((rt_uint8_t*)module->module_space - module_addr + sym->st_value),
							module_addr); 
					}
					else if(ELF_ST_TYPE(sym->st_info) == STT_OBJECT)
					{
qiuyiuestc's avatar
qiuyiuestc 已提交
324
						/* relocate object in data section */
qiuyiuestc's avatar
qiuyiuestc 已提交
325
						rt_module_arm_relocate(module, rel,
qiuyiuestc's avatar
qiuyiuestc 已提交
326
							(Elf32_Addr)(module->module_data + sym->st_value),
qiuyiuestc's avatar
qiuyiuestc 已提交
327 328 329 330 331
							module_addr); 
					}
				}
				else
				{
qiuyiuestc's avatar
qiuyiuestc 已提交
332
					Elf32_Addr addr;
qiuyiuestc's avatar
qiuyiuestc 已提交
333
#ifdef RT_MODULE_DEBUG
qiuyiuestc's avatar
qiuyiuestc 已提交
334
					rt_kprintf("unresolved relocate symbol: %s\n", strtab + sym->st_name);
qiuyiuestc's avatar
qiuyiuestc 已提交
335
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
336
					/* need to resolve symbol in kernel symbol table */
qiuyiuestc's avatar
qiuyiuestc 已提交
337
					addr = rt_module_symbol_find(strtab + sym->st_name);
qiuyiuestc's avatar
qiuyiuestc 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350
					if (addr != (Elf32_Addr)RT_NULL)
						rt_module_arm_relocate(module, rel, addr, module_addr);
					else rt_kprintf("can't find %s in kernel symbol table\n", strtab + sym->st_name);
				}

				rel ++;
			}
		}
	}

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

qiuyiuestc's avatar
qiuyiuestc 已提交
351 352 353
	/* set module defalut clean type */
	module->parent.flag |= RT_MODULE_FLAG_AUTO_CLEAN;
	
qiuyiuestc's avatar
qiuyiuestc 已提交
354 355 356 357 358 359 360 361 362 363 364 365
	/* create module main thread */
	module->module_thread = rt_thread_create((const char*)name,
		module->module_entry, RT_NULL,
		512, 90, 10);
	module->module_thread->module_parent = module;
	rt_thread_startup(module->module_thread);

	return module;
}

void rt_module_unload(struct rt_module* module)
{
qiuyiuestc's avatar
qiuyiuestc 已提交
366
	int i;
qiuyiuestc's avatar
qiuyiuestc 已提交
367
	struct rt_object* object;
qiuyiuestc's avatar
qiuyiuestc 已提交
368 369 370
	struct rt_timer *timer;
	struct rt_list_node *list, *node;
		
qiuyiuestc's avatar
qiuyiuestc 已提交
371 372 373 374 375
	/* 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 已提交
376 377 378 379 380 381 382 383 384 385
	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);
			rt_object_delete(object);
		}
	}	
	
qiuyiuestc's avatar
qiuyiuestc 已提交
386
	/* release module memory */
qiuyiuestc's avatar
qiuyiuestc 已提交
387
	rt_free(module->module_space);
qiuyiuestc's avatar
qiuyiuestc 已提交
388
	rt_object_delete((struct rt_object *)module);
qiuyiuestc's avatar
qiuyiuestc 已提交
389 390 391 392 393 394 395 396 397 398 399
}

rt_module_t rt_module_find(char* name)
{
	struct rt_module* module;
	module = (struct rt_module*)rt_object_find(RT_Object_Class_Module, name);

	return module;
}

#endif