module.c 25.3 KB
Newer Older
qiuyiuestc's avatar
qiuyiuestc 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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 已提交
14
 * 2010-10-23      yi.qiu	implement module memory allocator
qiuyiuestc's avatar
qiuyiuestc 已提交
15
 */
qiuyiuestc's avatar
qiuyiuestc 已提交
16

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

qiuyiuestc's avatar
qiuyiuestc 已提交
21
#include "string.h"
qiuyiuestc's avatar
qiuyiuestc 已提交
22 23
#include "kservice.h"

qiuyiuestc's avatar
qiuyiuestc 已提交
24
#ifdef RT_USING_MODULE
25
#include "module.h"
qiuyiuestc's avatar
qiuyiuestc 已提交
26

qiuyiuestc's avatar
qiuyiuestc 已提交
27 28 29
#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 已提交
30 31

#define IS_PROG(s)		(s.sh_type == SHT_PROGBITS)
qiuyiuestc's avatar
qiuyiuestc 已提交
32 33
#define IS_NOPROG(s)		(s.sh_type == SHT_NOBITS)
#define IS_REL(s)			(s.sh_type == SHT_REL)
qiuyiuestc's avatar
qiuyiuestc 已提交
34 35
#define IS_RELA(s)		(s.sh_type == SHT_RELA)
#define IS_ALLOC(s)		(s.sh_flags == SHF_ALLOC)
qiuyiuestc's avatar
qiuyiuestc 已提交
36 37
#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 已提交
38

qiuyiuestc's avatar
qiuyiuestc 已提交
39 40 41 42 43 44 45 46
/* module memory allocator */
struct rt_module_page
{
	rt_uint8_t *ptr;				/* address of memory block  */
	rt_size_t npage;					/* number of pages  */
	rt_list_t list;
};

qiuyiuestc's avatar
qiuyiuestc 已提交
47 48 49 50 51 52 53
/* module memory allocator */
struct rt_mem_head
{
	rt_size_t size;				/* size of memory block  */
	struct rt_mem_head *next;		/* next valid memory block */
};

qiuyiuestc's avatar
qiuyiuestc 已提交
54 55 56
extern void *rt_malloc_page(rt_size_t npages);
extern void rt_free_page(void *page_ptr, rt_size_t npages);

qiuyiuestc's avatar
qiuyiuestc 已提交
57
static rt_module_t rt_current_module = RT_NULL;
58 59 60 61 62 63
rt_list_t rt_module_symbol_list;
struct rt_module_symtab *_rt_module_symtab_begin = RT_NULL, *_rt_module_symtab_end = RT_NULL;

/**
 * @ingroup SystemInit
 *
B
bernard.xiong@gmail.com 已提交
64
 * This function will initialize system module
65 66 67 68
 *
 */
void rt_system_module_init(void)
{
qiuyiuestc's avatar
qiuyiuestc 已提交
69
#ifdef __GNUC__
70 71
	extern int __rtmsymtab_start;
	extern int __rtmsymtab_end;
qiuyiuestc's avatar
qiuyiuestc 已提交
72
	
73 74
	_rt_module_symtab_begin = (struct rt_module_symtab *)&__rtmsymtab_start;
	_rt_module_symtab_end   = (struct rt_module_symtab *)&__rtmsymtab_end;
qiuyiuestc's avatar
qiuyiuestc 已提交
75 76 77 78 79 80
#elif defined (__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;	
qiuyiuestc's avatar
qiuyiuestc 已提交
81
#endif
82 83

	rt_list_init(&rt_module_symbol_list);
qiuyiuestc's avatar
qiuyiuestc 已提交
84 85 86

	/* init current module */
	rt_current_module = RT_NULL;
87 88
}

qiuyiuestc's avatar
qiuyiuestc 已提交
89
static rt_uint32_t rt_module_symbol_find(const char* sym_str)
90 91 92 93 94
{
	/* find in kernel symbol table */
	struct rt_module_symtab* index;
	for (index = _rt_module_symtab_begin; index != _rt_module_symtab_end; index ++)
	{
qiuyiuestc's avatar
qiuyiuestc 已提交
95 96
		if (rt_strcmp(index->name, sym_str) == 0)
			return (rt_uint32_t)index->addr;
97 98 99 100
	}

	return 0;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
101

qiuyiuestc's avatar
qiuyiuestc 已提交
102 103 104
/**
 * This function will return self module object
 *
qiuyiuestc's avatar
qiuyiuestc 已提交
105
 * @return the self module object
qiuyiuestc's avatar
qiuyiuestc 已提交
106 107 108 109
 *
 */
rt_module_t rt_module_self (void)
{
qiuyiuestc's avatar
qiuyiuestc 已提交
110
	/* return current module */
qiuyiuestc's avatar
qiuyiuestc 已提交
111 112 113
	return rt_current_module;
}

qiuyiuestc's avatar
qiuyiuestc 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126
/**
 * 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 已提交
127
static int rt_module_arm_relocate(struct rt_module* module, Elf32_Rel *rel, Elf32_Addr sym_val)
qiuyiuestc's avatar
qiuyiuestc 已提交
128 129 130 131
{
	Elf32_Addr *where, tmp;
	Elf32_Sword addend;

qiuyiuestc's avatar
qiuyiuestc 已提交
132
	where = (Elf32_Addr *)((rt_uint8_t*)module->module_space + rel->r_offset);
qiuyiuestc's avatar
qiuyiuestc 已提交
133 134 135 136 137 138 139
	switch (ELF32_R_TYPE(rel->r_info))
	{
	case R_ARM_NONE:
		break;

	case R_ARM_ABS32:
		*where += (Elf32_Addr)sym_val;
140 141 142 143

		RT_DEBUG_LOG(RT_DEBUG_MODULE,
			("R_ARM_ABS32: %x -> %x\n", where, *where));

qiuyiuestc's avatar
qiuyiuestc 已提交
144 145 146 147 148 149 150 151 152 153 154 155
		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);
156 157 158

		RT_DEBUG_LOG(RT_DEBUG_MODULE,("R_ARM_PC24: %x -> %x\n", where, *where));

qiuyiuestc's avatar
qiuyiuestc 已提交
159 160
		break;

qiuyiuestc's avatar
qiuyiuestc 已提交
161 162 163 164
	case R_ARM_V4BX:
		*where &= 0xf000000f;
		*where |= 0x01a0f000;
		break;
qiuyiuestc's avatar
qiuyiuestc 已提交
165 166
	case R_ARM_GLOB_DAT:
	case R_ARM_JUMP_SLOT:
qiuyiuestc's avatar
qiuyiuestc 已提交
167
		*where = (Elf32_Addr)sym_val;
168 169 170 171

		RT_DEBUG_LOG(RT_DEBUG_MODULE,
			("R_ARM_JUMP_SLOT: 0x%x -> 0x%x 0x%x\n", where, *where, sym_val));

qiuyiuestc's avatar
qiuyiuestc 已提交
172
	break;
qiuyiuestc's avatar
qiuyiuestc 已提交
173 174
	case R_ARM_RELATIVE:
		*where += (Elf32_Addr)sym_val;
175 176 177 178

		RT_DEBUG_LOG(RT_DEBUG_MODULE,
			("R_ARM_RELATIVE: 0x%x -> 0x%x 0x%x\n", where, *where, sym_val));

179
		 break;
qiuyiuestc's avatar
qiuyiuestc 已提交
180 181 182 183 184 185 186 187 188 189 190
	default:
		return -1;
	}

	return 0;
}

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

B
bernard.xiong@gmail.com 已提交
191
	/* initialize object container - thread */
qiuyiuestc's avatar
qiuyiuestc 已提交
192 193 194 195 196
	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
B
bernard.xiong@gmail.com 已提交
197
	/* initialize object container - semaphore */
qiuyiuestc's avatar
qiuyiuestc 已提交
198 199 200 201 202 203
	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
B
bernard.xiong@gmail.com 已提交
204
	/* initialize object container - mutex */
qiuyiuestc's avatar
qiuyiuestc 已提交
205 206 207 208 209 210
	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
B
bernard.xiong@gmail.com 已提交
211
	/* initialize object container - event */
qiuyiuestc's avatar
qiuyiuestc 已提交
212 213 214 215 216 217
	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
B
bernard.xiong@gmail.com 已提交
218
	/* initialize object container - mailbox */
qiuyiuestc's avatar
qiuyiuestc 已提交
219 220 221 222 223 224
	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
B
bernard.xiong@gmail.com 已提交
225
	/* initialize object container - message queue */
qiuyiuestc's avatar
qiuyiuestc 已提交
226 227 228 229 230 231
	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
B
bernard.xiong@gmail.com 已提交
232
	/* initialize object container - memory pool */
qiuyiuestc's avatar
qiuyiuestc 已提交
233 234 235 236 237 238
	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
B
bernard.xiong@gmail.com 已提交
239
	/* initialize object container - device */
qiuyiuestc's avatar
qiuyiuestc 已提交
240 241 242 243 244
	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

B
bernard.xiong@gmail.com 已提交
245
	/* initialize object container - timer */
qiuyiuestc's avatar
qiuyiuestc 已提交
246 247 248 249 250
	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 已提交
251 252 253 254 255 256 257 258 259
/**
 * 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
 *
 */
qiuyiuestc's avatar
qiuyiuestc 已提交
260
rt_module_t rt_module_load(const char* name, void* module_ptr)
qiuyiuestc's avatar
qiuyiuestc 已提交
261
{
262
	rt_uint8_t *ptr = RT_NULL;
263 264
	rt_module_t module = RT_NULL;
	rt_bool_t linked = RT_FALSE;
265
	rt_uint32_t index, module_size = 0;
qiuyiuestc's avatar
qiuyiuestc 已提交
266

267 268
	RT_DEBUG_NOT_REENT

qiuyiuestc's avatar
qiuyiuestc 已提交
269
	rt_kprintf("rt_module_load: %s ,", name);
qiuyiuestc's avatar
qiuyiuestc 已提交
270

qiuyiuestc's avatar
qiuyiuestc 已提交
271
	/* check ELF header */
272 273 274 275 276 277
	if (rt_memcmp(elf_module->e_ident, RTMMAG, SELFMAG) == 0)
	{
		/* rtmlinke finished */
		linked = RT_TRUE;
	}
	else	 if (rt_memcmp(elf_module->e_ident, ELFMAG, SELFMAG) != 0)
qiuyiuestc's avatar
qiuyiuestc 已提交
278
	{
qiuyiuestc's avatar
qiuyiuestc 已提交
279
		rt_kprintf(" module magic error\n");
qiuyiuestc's avatar
qiuyiuestc 已提交
280
		return RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
281
	}
282 283 284 285 286 287 288

	/* check ELF class */
	if(elf_module->e_ident[EI_CLASS] != ELFCLASS32)
	{
		rt_kprintf(" module class error\n");
		return RT_NULL;
	}
qiuyiuestc's avatar
qiuyiuestc 已提交
289
	
qiuyiuestc's avatar
qiuyiuestc 已提交
290
	/* get the ELF image size */
qiuyiuestc's avatar
qiuyiuestc 已提交
291
	for (index = 0; index < elf_module->e_phnum; index++)
qiuyiuestc's avatar
qiuyiuestc 已提交
292
	{
qiuyiuestc's avatar
qiuyiuestc 已提交
293 294 295 296
		if(phdr[index].p_type == PT_LOAD)
			module_size += phdr[index].p_memsz;
	}	
	
qiuyiuestc's avatar
qiuyiuestc 已提交
297 298 299 300 301
	if (module_size == 0) 
	{
		rt_kprintf(" module size error\n");
		return module;
	}	
qiuyiuestc's avatar
qiuyiuestc 已提交
302 303 304

	/* allocate module */
	module = (struct rt_module *)rt_object_allocate(RT_Object_Class_Module, (const char*)name);
qiuyiuestc's avatar
qiuyiuestc 已提交
305
	if (!module) return RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
306 307 308 309 310 311 312 313 314 315 316 317 318

	/* 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 已提交
319 320
	rt_kprintf(" load address at 0x%x\n", ptr);

qiuyiuestc's avatar
qiuyiuestc 已提交
321
	for (index = 0; index < elf_module->e_phnum; index++)
qiuyiuestc's avatar
qiuyiuestc 已提交
322
	{
qiuyiuestc's avatar
qiuyiuestc 已提交
323
		if(phdr[index].p_type == PT_LOAD)
qiuyiuestc's avatar
qiuyiuestc 已提交
324
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
325 326 327 328
			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 已提交
329 330

	/* set module entry */
qiuyiuestc's avatar
qiuyiuestc 已提交
331
	module->module_entry = module->module_space + elf_module->e_entry;
qiuyiuestc's avatar
qiuyiuestc 已提交
332
	
qiuyiuestc's avatar
qiuyiuestc 已提交
333 334 335 336 337 338 339 340
	/* 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;
341 342
			rt_uint8_t *strtab;
			static rt_bool_t unsolved = RT_FALSE;
qiuyiuestc's avatar
qiuyiuestc 已提交
343 344 345 346

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

347
			/* locate .rel.plt and .rel.dyn section */
qiuyiuestc's avatar
qiuyiuestc 已提交
348 349
			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 已提交
350
 			nr_reloc = (rt_uint32_t) (shdr[index].sh_size / sizeof(Elf32_Rel));
qiuyiuestc's avatar
qiuyiuestc 已提交
351 352 353 354 355

			/* relocate every items */
			for (i = 0; i < nr_reloc; i ++)
			{
				Elf32_Sym *sym = &symtab[ELF32_R_SYM(rel->r_info)];
356 357 358 359

				RT_DEBUG_LOG(RT_DEBUG_MODULE,
					("relocate symbol %s shndx %d\n", strtab + sym->st_name, sym->st_shndx));

qiuyiuestc's avatar
qiuyiuestc 已提交
360
				if((sym->st_shndx != SHT_NULL) || (ELF_ST_BIND(sym->st_info) == STB_LOCAL))	
361
					rt_module_arm_relocate(module, rel,  (Elf32_Addr)(module->module_space + sym->st_value));
362
				else if(!linked)
363 364
				{
					Elf32_Addr addr;
365 366 367 368

					RT_DEBUG_LOG(RT_DEBUG_MODULE,
						("unresolved relocate symbol: %s\n", strtab + sym->st_name));

369
					/* need to resolve symbol in kernel symbol table */
qiuyiuestc's avatar
qiuyiuestc 已提交
370
					addr = rt_module_symbol_find((const char*)(strtab + sym->st_name));
371 372 373
					if (addr == 0)
					{
						rt_kprintf("can't find %s in kernel symbol table\n", strtab + sym->st_name);
374
						unsolved = RT_TRUE;
375
					}	
376
					else rt_module_arm_relocate(module, rel, addr);
377
				}
qiuyiuestc's avatar
qiuyiuestc 已提交
378 379
				rel ++;
			}
380 381 382 383 384 385 386

			if(unsolved) 
			{
				rt_object_delete(&(module->parent));
				rt_free(module);
				return RT_NULL;
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
387 388 389
		}
	}

390 391 392 393 394
	/* construct module symbol table */
	for (index = 0; index < elf_module->e_shnum; index ++)
	{	
		/* find .dynsym section */
		rt_uint8_t* shstrab = (rt_uint8_t*) module_ptr + shdr[elf_module->e_shstrndx].sh_offset;
qiuyiuestc's avatar
qiuyiuestc 已提交
395
		if (rt_strcmp((const char *)(shstrab + shdr[index].sh_name), ELF_DYNSYM) == 0) break;
396 397
	}

qiuyiuestc's avatar
qiuyiuestc 已提交
398
	/* found .dynsym section */
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
	if(index != elf_module->e_shnum)
	{
		int i, count = 0;
		Elf32_Sym *symtab = RT_NULL;
		rt_uint8_t *strtab  = RT_NULL;

		symtab =(Elf32_Sym *) ((rt_uint8_t*)module_ptr + shdr[index].sh_offset);
		strtab = (rt_uint8_t*) module_ptr + shdr[shdr[index].sh_link].sh_offset;			

		for(i=0; i<shdr[index].sh_size/sizeof(Elf32_Sym); i++)
		{
			if((ELF_ST_BIND(symtab[i].st_info) == STB_GLOBAL) && (ELF_ST_TYPE(symtab[i].st_info) == STT_FUNC))
				count++;
		}

		module->symtab = (struct rt_module_symtab*)rt_malloc(count * sizeof(struct rt_module_symtab));
		module->nsym = count;
		for(i=0, count=0; i<shdr[index].sh_size/sizeof(Elf32_Sym); i++)
		{
			if((ELF_ST_BIND(symtab[i].st_info) == STB_GLOBAL) && (ELF_ST_TYPE(symtab[i].st_info) == STT_FUNC))
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
420
				rt_size_t length = rt_strlen((const char*)(strtab + symtab[i].st_name)) + 1;
421

qiuyiuestc's avatar
qiuyiuestc 已提交
422
				module->symtab[count].addr = (void*)(module->module_space + symtab[i].st_value); 
423
				module->symtab[count].name = rt_malloc(length);
qiuyiuestc's avatar
qiuyiuestc 已提交
424 425
				rt_memset((void*)module->symtab[count].name, 0, length);
				rt_memcpy((void*)module->symtab[count].name, strtab + symtab[i].st_name, length);
426 427 428 429
				count++;
			}	
		}	
	}	
qiuyiuestc's avatar
qiuyiuestc 已提交
430

qiuyiuestc's avatar
qiuyiuestc 已提交
431 432
	/* init module object container */
	rt_module_init_object_container(module);
qiuyiuestc's avatar
qiuyiuestc 已提交
433
		
qiuyiuestc's avatar
qiuyiuestc 已提交
434 435
	/* increase module reference count  */
	module->nref++;
qiuyiuestc's avatar
qiuyiuestc 已提交
436 437 438 439

	if(elf_module->e_entry != 0)
	{	
		/* init module page list */
qiuyiuestc's avatar
qiuyiuestc 已提交
440 441
		rt_list_init(&module->page_list);	

qiuyiuestc's avatar
qiuyiuestc 已提交
442
		/* init module memory allocator */
qiuyiuestc's avatar
qiuyiuestc 已提交
443 444 445
		module->mem_list = RT_NULL;
		
		/* create mpool for page node */
qiuyiuestc's avatar
qiuyiuestc 已提交
446
		module->mpool = rt_mp_create(name, 256, sizeof(struct rt_module_page));
qiuyiuestc's avatar
qiuyiuestc 已提交
447 448
		
		/* create module thread */
qiuyiuestc's avatar
qiuyiuestc 已提交
449
		module->stack_size = 2048;
qiuyiuestc's avatar
qiuyiuestc 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
		module->thread_priority = 90;
		module->module_thread = rt_thread_create(name,
			module->module_entry, RT_NULL,
			module->stack_size,
			module->thread_priority, 10);
		
		module->module_thread->module_id = (void*)module;
		
		/* startup module thread */
		rt_thread_startup(module->module_thread);
	}	
	else
	{
		/* without entry point */
		module->parent.flag |= RT_MODULE_FLAG_WITHOUTENTRY;
	}	

qiuyiuestc's avatar
qiuyiuestc 已提交
467
	return module;
qiuyiuestc's avatar
qiuyiuestc 已提交
468 469
}	

qiuyiuestc's avatar
qiuyiuestc 已提交
470 471 472
#ifdef RT_USING_DFS
#include <dfs_posix.h>
/**
B
bernard.xiong@gmail.com 已提交
473
 * This function will load a module from a file
qiuyiuestc's avatar
qiuyiuestc 已提交
474
 *
B
bernard.xiong@gmail.com 已提交
475
 * @param filename the file name of application module
qiuyiuestc's avatar
qiuyiuestc 已提交
476 477 478 479
 *
 * @return the module object
 *
 */
qiuyiuestc's avatar
qiuyiuestc 已提交
480
rt_module_t rt_module_open(const char* filename)
qiuyiuestc's avatar
qiuyiuestc 已提交
481 482 483
{
	int fd, length;
	struct rt_module* module;
B
bernard.xiong@gmail.com 已提交
484
	struct stat s;
485
	char *buffer, *offset_ptr;;
qiuyiuestc's avatar
qiuyiuestc 已提交
486

487 488
	RT_DEBUG_NOT_REENT

qiuyiuestc's avatar
qiuyiuestc 已提交
489 490 491
	/* check parameters */
	RT_ASSERT(filename != RT_NULL);

492 493 494 495 496
	if (stat(filename, &s) !=0)
	{
		rt_kprintf("access file failed\n");
		return RT_NULL;
	}
qiuyiuestc's avatar
qiuyiuestc 已提交
497
	buffer = (char *)rt_malloc(s.st_size);
498 499 500 501 502 503 504
	if (buffer == RT_NULL)
	{
		rt_kprintf("out of memory\n");
		return RT_NULL;
	}

	offset_ptr = buffer;
qiuyiuestc's avatar
qiuyiuestc 已提交
505
	fd = open(filename, O_RDONLY, 0);
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
	if (fd < 0)
	{
		rt_kprintf("open file failed\n");
		rt_free(buffer);
		return RT_NULL;
	}

	do
	{
		length = read(fd, offset_ptr, 4096);
		if (length > 0)
		{
			offset_ptr += length;
		}
	}while (length > 0);

	/* close fd */
	close(fd);

	if ((rt_uint32_t)offset_ptr - (rt_uint32_t)buffer != s.st_size)
qiuyiuestc's avatar
qiuyiuestc 已提交
526 527 528 529 530
	{
		rt_kprintf("check: read file failed\n");
		rt_free(buffer);
		return RT_NULL;
	}
qiuyiuestc's avatar
qiuyiuestc 已提交
531
	
qiuyiuestc's avatar
qiuyiuestc 已提交
532
	module = rt_module_load(filename, (void *)buffer);
qiuyiuestc's avatar
qiuyiuestc 已提交
533 534 535 536
	rt_free(buffer);

	return module;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
537 538 539

#if defined(RT_USING_FINSH)
#include <finsh.h>
540
FINSH_FUNCTION_EXPORT_ALIAS(rt_module_open, exec, exec module from file);
qiuyiuestc's avatar
qiuyiuestc 已提交
541
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
542 543
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
544 545 546 547 548 549 550 551 552
/**
 * 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 已提交
553
{
554
	int i;
qiuyiuestc's avatar
qiuyiuestc 已提交
555
	struct rt_object* object;
qiuyiuestc's avatar
qiuyiuestc 已提交
556
	struct rt_list_node *list;
qiuyiuestc's avatar
qiuyiuestc 已提交
557

558 559
	RT_DEBUG_NOT_REENT

qiuyiuestc's avatar
qiuyiuestc 已提交
560
	rt_kprintf("rt_module_unload: %s\n", module->parent.name);
qiuyiuestc's avatar
qiuyiuestc 已提交
561

qiuyiuestc's avatar
qiuyiuestc 已提交
562 563 564
	/* check parameter */
	RT_ASSERT(module != RT_NULL);

qiuyiuestc's avatar
qiuyiuestc 已提交
565
	/* module has entry point */
qiuyiuestc's avatar
qiuyiuestc 已提交
566 567 568 569 570 571 572 573 574 575 576 577
	if(!(module->parent.flag & RT_MODULE_FLAG_WITHOUTENTRY))
	{	
		/* suspend module main thread */
		if(module->module_thread != RT_NULL)
		{	
			if (module->module_thread->stat == RT_THREAD_READY)
				rt_thread_suspend(module->module_thread);
		}
		
		/* delete threads */
		list = &module->module_object[RT_Object_Class_Thread].object_list;	
		while(list->next != list)
qiuyiuestc's avatar
qiuyiuestc 已提交
578
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
579 580 581
			object = rt_list_entry(list->next, struct rt_object, list);
			if (rt_object_is_systemobject(object) == RT_EOK)
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
582
				/* detach static object */
qiuyiuestc's avatar
qiuyiuestc 已提交
583 584 585 586 587 588 589
				rt_thread_detach((rt_thread_t)object);
			}
			else
			{	
				/* delete dynamic object */
				rt_thread_delete((rt_thread_t)object);
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
590
		}
qiuyiuestc's avatar
qiuyiuestc 已提交
591
		
qiuyiuestc's avatar
qiuyiuestc 已提交
592
#ifdef RT_USING_SEMAPHORE
qiuyiuestc's avatar
qiuyiuestc 已提交
593 594 595
		/* delete semaphores */
		list = &module->module_object[RT_Object_Class_Thread].object_list;	
		while(list->next != list)
qiuyiuestc's avatar
qiuyiuestc 已提交
596
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
597 598 599
			object = rt_list_entry(list->next, struct rt_object, list);
			if (rt_object_is_systemobject(object) == RT_EOK)
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
600
				/* detach static object */
qiuyiuestc's avatar
qiuyiuestc 已提交
601 602 603 604 605 606 607
				rt_sem_detach((rt_sem_t)object);
			}
			else
			{	
				/* delete dynamic object */
				rt_sem_delete((rt_sem_t)object);
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
608 609 610 611
		}
#endif

#ifdef RT_USING_MUTEX
qiuyiuestc's avatar
qiuyiuestc 已提交
612 613 614
		/* delete mutexs*/
		list = &module->module_object[RT_Object_Class_Mutex].object_list;	
		while(list->next != list)
qiuyiuestc's avatar
qiuyiuestc 已提交
615
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
616 617 618
			object = rt_list_entry(list->next, struct rt_object, list);
			if (rt_object_is_systemobject(object) == RT_EOK)
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
619
				/* detach static object */
qiuyiuestc's avatar
qiuyiuestc 已提交
620 621 622 623 624 625 626
				rt_mutex_detach((rt_mutex_t)object);
			}
			else
			{	
				/* delete dynamic object */
				rt_mutex_delete((rt_mutex_t)object);
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
627 628 629 630
		}
#endif

#ifdef RT_USING_EVENT
qiuyiuestc's avatar
qiuyiuestc 已提交
631 632 633
		/* delete mailboxs */
		list = &module->module_object[RT_Object_Class_Event].object_list;	
		while(list->next != list)
qiuyiuestc's avatar
qiuyiuestc 已提交
634
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
635 636 637
			object = rt_list_entry(list->next, struct rt_object, list);
			if (rt_object_is_systemobject(object) == RT_EOK)
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
638
				/* detach static object */
qiuyiuestc's avatar
qiuyiuestc 已提交
639 640 641 642 643 644 645
				rt_event_detach((rt_event_t)object);
			}
			else
			{	
				/* delete dynamic object */
				rt_event_delete((rt_event_t)object);
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
646
		}
qiuyiuestc's avatar
qiuyiuestc 已提交
647 648 649
#endif

#ifdef RT_USING_MAILBOX
qiuyiuestc's avatar
qiuyiuestc 已提交
650 651 652
		/* delete mailboxs */
		list = &module->module_object[RT_Object_Class_MailBox].object_list;	
		while(list->next != list)
qiuyiuestc's avatar
qiuyiuestc 已提交
653
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
654 655 656
			object = rt_list_entry(list->next, struct rt_object, list);
			if (rt_object_is_systemobject(object) == RT_EOK)
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
657
				/* detach static object */
qiuyiuestc's avatar
qiuyiuestc 已提交
658 659 660 661 662 663 664
				rt_mb_detach((rt_mailbox_t)object);
			}
			else
			{	
				/* delete dynamic object */
				rt_mb_delete((rt_mailbox_t)object);
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
665 666 667 668
		}
#endif

#ifdef RT_USING_MESSAGEQUEUE
qiuyiuestc's avatar
qiuyiuestc 已提交
669 670 671
		/* delete msgqueues */
		list = &module->module_object[RT_Object_Class_MessageQueue].object_list;	
		while(list->next != list)
qiuyiuestc's avatar
qiuyiuestc 已提交
672
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
673 674 675
			object = rt_list_entry(list->next, struct rt_object, list);
			if (rt_object_is_systemobject(object) == RT_EOK)
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
676
				/* detach static object */
qiuyiuestc's avatar
qiuyiuestc 已提交
677 678 679 680 681 682 683
				rt_mq_detach((rt_mq_t)object);
			}
			else
			{	
				/* delete dynamic object */
				rt_mq_delete((rt_mq_t)object);
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
684 685 686 687
		}
#endif

#ifdef RT_USING_MEMPOOL
qiuyiuestc's avatar
qiuyiuestc 已提交
688 689 690
		/* delete mempools */
		list = &module->module_object[RT_Object_Class_MemPool].object_list;	
		while(list->next != list)
qiuyiuestc's avatar
qiuyiuestc 已提交
691
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
692 693 694
			object = rt_list_entry(list->next, struct rt_object, list);
			if (rt_object_is_systemobject(object) == RT_EOK)
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
695
				/* detach static object */
qiuyiuestc's avatar
qiuyiuestc 已提交
696 697 698 699 700 701 702
				rt_mp_detach((rt_mp_t)object);
			}
			else
			{	
				/* delete dynamic object */
				rt_mp_delete((rt_mp_t)object);
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
703 704 705 706
		}
#endif

#ifdef RT_USING_DEVICE
qiuyiuestc's avatar
qiuyiuestc 已提交
707 708 709 710 711 712 713
		/* delete devices */
		list = &module->module_object[RT_Object_Class_Device].object_list;	
		while(list->next != list)
		{
			object = rt_list_entry(list->next, struct rt_object, list);
			rt_device_unregister((rt_device_t)object);
		}	
qiuyiuestc's avatar
qiuyiuestc 已提交
714 715
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
716 717 718
		/* delete timers */
		list = &module->module_object[RT_Object_Class_Timer].object_list;
		while(list->next != list)
qiuyiuestc's avatar
qiuyiuestc 已提交
719
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
720 721 722
			object = rt_list_entry(list->next, struct rt_object, list);
			if (rt_object_is_systemobject(object) == RT_EOK)
			{
qiuyiuestc's avatar
qiuyiuestc 已提交
723
				/* detach static object */
qiuyiuestc's avatar
qiuyiuestc 已提交
724 725 726 727 728 729 730
				rt_timer_detach((rt_timer_t)object);
			}
			else
			{	
				/* delete dynamic object */
				rt_timer_delete((rt_timer_t)object);
			}	
qiuyiuestc's avatar
qiuyiuestc 已提交
731
		}
qiuyiuestc's avatar
qiuyiuestc 已提交
732 733

		/* free module pages */
qiuyiuestc's avatar
qiuyiuestc 已提交
734
		list = &module->page_list;
qiuyiuestc's avatar
qiuyiuestc 已提交
735 736 737 738 739 740
		while(list->next != list)
		{
			struct rt_module_page* page;

			/* free page */
			page = rt_list_entry(list->next, struct rt_module_page, list);
qiuyiuestc's avatar
qiuyiuestc 已提交
741
			rt_free_page(page->ptr, page->npage);
qiuyiuestc's avatar
qiuyiuestc 已提交
742
			rt_list_remove(list->next);
qiuyiuestc's avatar
qiuyiuestc 已提交
743
		}	
qiuyiuestc's avatar
qiuyiuestc 已提交
744

qiuyiuestc's avatar
qiuyiuestc 已提交
745 746
		/* delete mpool */
		if(module->mpool) rt_mp_delete(module->mpool);
qiuyiuestc's avatar
qiuyiuestc 已提交
747
	}
qiuyiuestc's avatar
qiuyiuestc 已提交
748
	
qiuyiuestc's avatar
qiuyiuestc 已提交
749
	/* release module space memory */
qiuyiuestc's avatar
qiuyiuestc 已提交
750
	rt_free(module->module_space);
qiuyiuestc's avatar
qiuyiuestc 已提交
751

752
	/* release module symbol table */
qiuyiuestc's avatar
qiuyiuestc 已提交
753
	for(i=0; i<module->nsym; i++) rt_free((void *)module->symtab[i].name);
754
	if(module->symtab != RT_NULL) rt_free(module->symtab);
qiuyiuestc's avatar
qiuyiuestc 已提交
755

qiuyiuestc's avatar
qiuyiuestc 已提交
756
	/* delete module object */
qiuyiuestc's avatar
qiuyiuestc 已提交
757
	rt_object_delete((rt_object_t)module);
qiuyiuestc's avatar
qiuyiuestc 已提交
758 759

	return RT_EOK;
qiuyiuestc's avatar
qiuyiuestc 已提交
760 761
}

qiuyiuestc's avatar
qiuyiuestc 已提交
762 763 764 765 766 767 768
/**
 * This function will find the specified module.
 *
 * @param name the name of module finding
 *
 * @return the module
 */
qiuyiuestc's avatar
qiuyiuestc 已提交
769
rt_module_t rt_module_find(const char* name)
qiuyiuestc's avatar
qiuyiuestc 已提交
770
{
B
bernard.xiong 已提交
771 772 773
	struct rt_object_information *information;
	struct rt_object* object;
	struct rt_list_node* node;
qiuyiuestc's avatar
qiuyiuestc 已提交
774

B
bernard.xiong 已提交
775 776
	extern struct rt_object_information rt_object_container[];

777 778
	RT_DEBUG_NOT_REENT

B
bernard.xiong 已提交
779 780 781 782
	/* enter critical */
	rt_enter_critical();

	/* try to find device object */
qiuyiuestc's avatar
qiuyiuestc 已提交
783
	information = &rt_object_container[RT_Object_Class_Module];
B
bernard.xiong 已提交
784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800
	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 已提交
801 802
}

qiuyiuestc's avatar
qiuyiuestc 已提交
803
static struct rt_mem_head *morepage(rt_size_t nu)
qiuyiuestc's avatar
qiuyiuestc 已提交
804
{
qiuyiuestc's avatar
qiuyiuestc 已提交
805 806 807 808 809
	rt_uint8_t *cp;
	rt_uint32_t npage;
	struct rt_mem_head *up;
	struct rt_module_page *node;

810 811
	RT_DEBUG_NOT_REENT

qiuyiuestc's avatar
qiuyiuestc 已提交
812 813
	RT_ASSERT (nu != 0);

B
bernard.xiong@gmail.com 已提交
814
	/* allocate pages from system heap */
qiuyiuestc's avatar
qiuyiuestc 已提交
815
	npage = (nu * sizeof(struct rt_mem_head) + RT_MM_PAGE_SIZE - 1)/RT_MM_PAGE_SIZE;
qiuyiuestc's avatar
qiuyiuestc 已提交
816
	cp = rt_malloc_page(npage);
qiuyiuestc's avatar
qiuyiuestc 已提交
817
	if(!cp) return RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
818
	
qiuyiuestc's avatar
qiuyiuestc 已提交
819 820
	/* allocate page list node from mpool */
	node = rt_mp_alloc(rt_current_module->mpool, RT_WAITING_FOREVER);
qiuyiuestc's avatar
qiuyiuestc 已提交
821 822 823
	node->ptr = cp;
	node->npage = npage;

qiuyiuestc's avatar
qiuyiuestc 已提交
824 825
	/* insert page list node to moudle's page list */
	rt_list_insert_after (&rt_current_module->page_list, &node->list);
qiuyiuestc's avatar
qiuyiuestc 已提交
826 827 828 829 830 831 832

	up = (struct rt_mem_head *) cp;
	up->size = npage * RT_MM_PAGE_SIZE / sizeof(struct rt_mem_head);
	rt_module_free(rt_current_module, (void *)(up+1));
	
	return up;
}
qiuyiuestc's avatar
qiuyiuestc 已提交
833 834

/*
B
bernard.xiong@gmail.com 已提交
835
  rt_module_malloc - allocate memory block in free list
qiuyiuestc's avatar
qiuyiuestc 已提交
836 837 838 839 840 841
*/
void *rt_module_malloc(rt_size_t size)
{
	struct rt_mem_head *b, *n;
	struct rt_mem_head **prev;
	rt_size_t nunits;
842 843 844

	RT_DEBUG_NOT_REENT

qiuyiuestc's avatar
qiuyiuestc 已提交
845 846 847 848 849
	nunits = (size + sizeof(struct rt_mem_head) -1)/sizeof(struct rt_mem_head) + 1; 

	RT_ASSERT(size != 0);
	RT_ASSERT(nunits != 0);

qiuyiuestc's avatar
qiuyiuestc 已提交
850
	prev = (struct rt_mem_head **)&rt_current_module->mem_list;
qiuyiuestc's avatar
qiuyiuestc 已提交
851

B
bernard.xiong@gmail.com 已提交
852
	/* if size can be divided by page, allocate page directly */
qiuyiuestc's avatar
qiuyiuestc 已提交
853 854 855 856 857 858
	if(size % RT_MM_PAGE_SIZE == 0)
	{
		rt_uint8_t *cp;
		struct rt_module_page *node;
		rt_uint32_t npage = size / RT_MM_PAGE_SIZE;

B
bernard.xiong@gmail.com 已提交
859
		/* allocate pages from system heap */
qiuyiuestc's avatar
qiuyiuestc 已提交
860
		cp = rt_malloc_page(npage);
qiuyiuestc's avatar
qiuyiuestc 已提交
861 862 863 864 865 866 867 868 869 870 871
		if(!cp) return RT_NULL;

		/* allocate page list node from mpool */
		node = rt_mp_alloc(rt_current_module->mpool, RT_WAITING_FOREVER);
		node->ptr = cp;
		node->npage = npage;

		/* insert page list node to moudle's page list */
		rt_list_insert_after (&rt_current_module->page_list, &node->list);
	}	
		
qiuyiuestc's avatar
qiuyiuestc 已提交
872 873 874
	while(RT_TRUE)
	{
		b = *prev;
qiuyiuestc's avatar
qiuyiuestc 已提交
875
		if(!b)
qiuyiuestc's avatar
qiuyiuestc 已提交
876
		{
qiuyiuestc's avatar
qiuyiuestc 已提交
877 878
			if ((b = morepage(nunits)) == RT_NULL) return RT_NULL;
			else return rt_module_malloc(size); /* To be improved */
qiuyiuestc's avatar
qiuyiuestc 已提交
879 880 881 882
		}	
		
		if (b->size > nunits)
		{
B
bernard.xiong@gmail.com 已提交
883
			/* split memory */
qiuyiuestc's avatar
qiuyiuestc 已提交
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
			n = b + nunits;
			n->next = b->next;
			n->size = b->size - nunits;
			b->size = nunits;
			*prev = n;
			break;
		}

		if (b->size == nunits)
		{
			/* this node fit, remove this node */
			*prev = b->next;
			break;
		}

		prev = &(b->next);
	}

	return (void *)(b + 1);
}

/*
  rt_module_free - insert memory block in free list
*/
void rt_module_free(rt_module_t module, void *addr)
{
	struct rt_mem_head *b, *n;
	struct rt_mem_head **prev;
912 913 914

	RT_DEBUG_NOT_REENT

qiuyiuestc's avatar
qiuyiuestc 已提交
915
	RT_ASSERT(addr);
qiuyiuestc's avatar
qiuyiuestc 已提交
916 917 918
	RT_ASSERT((((rt_uint32_t)addr) & (sizeof(struct rt_mem_head) -1)) == 0);

	n = (struct rt_mem_head *)addr - 1;
qiuyiuestc's avatar
qiuyiuestc 已提交
919
	prev = (struct rt_mem_head **)&module->mem_list;
qiuyiuestc's avatar
qiuyiuestc 已提交
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951

	while ((b = *prev) != RT_NULL)
	{		
		RT_ASSERT(b->size > 0);
		RT_ASSERT(b > n || b + b->size <= n);

		if (b + b->size == n)
		{
			if (b + (b->size += n->size) == b->next)
			{
				b->size += b->next->size;
				b->next  = b->next->next;
			}

			return;
		}

		if (b == n + n->size)
		{
			n->size = b->size + n->size;
			n->next = b->next;
			*prev = n;

			return;
		}
		if (b > n + n->size) break;

		prev = &(b->next);
	}

	n->next = b;
	*prev = n;
qiuyiuestc's avatar
qiuyiuestc 已提交
952 953

	/* free page, TODO */
qiuyiuestc's avatar
qiuyiuestc 已提交
954 955 956 957 958 959 960
}

/*
  rt_module_realloc - realloc memory block in free list
*/
void *rt_module_realloc(void *ptr, rt_size_t size)
{
qiuyiuestc's avatar
qiuyiuestc 已提交
961 962
	struct rt_mem_head *b, *p, *prev, *tmpp;
	rt_size_t nunits;
qiuyiuestc's avatar
qiuyiuestc 已提交
963

964 965
	RT_DEBUG_NOT_REENT

qiuyiuestc's avatar
qiuyiuestc 已提交
966
	if (!ptr) return rt_module_malloc(size);
qiuyiuestc's avatar
qiuyiuestc 已提交
967 968 969 970 971
	if (size == 0)
	{
		rt_module_free(rt_current_module, ptr);
		return RT_NULL;
	}
qiuyiuestc's avatar
qiuyiuestc 已提交
972

qiuyiuestc's avatar
qiuyiuestc 已提交
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
	nunits = (size + sizeof(struct rt_mem_head) - 1) / sizeof(struct rt_mem_head) + 1;
	b = (struct rt_mem_head *)ptr - 1;

	if (nunits <= b->size) 
	{   
		/* new size is smaller or equal then before */    
		if (nunits == b->size) return ptr;
		else 
		{
			p = b + nunits;
			p->size = b->size - nunits;
			b->size = nunits;
			rt_module_free(rt_current_module, (void *)(p + 1));
			return (void *)(b + 1);
		}
	}
	else 
	{      
		/* more space then required */
qiuyiuestc's avatar
qiuyiuestc 已提交
992
		prev = (struct rt_mem_head *)rt_current_module->mem_list;
qiuyiuestc's avatar
qiuyiuestc 已提交
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
		for (p = prev->next; p != (b->size + b) && p != RT_NULL; prev = p, p = p->next) break;

		/* available block after ap in freelist */ 
		if (p != RT_NULL && (p->size >= (nunits - (b->size))) &&  p == (b + b->size))  
		{
			/* perfect match */
			if (p->size == (nunits - (b->size)))  
			{
				b->size = nunits;
				prev->next = p->next;
			}
			else  /* more space then required, split block*/
			{
				/* pointer to old header */
				tmpp = p;  
				p = b + nunits;

				/* restoring old pointer */
				p->next = tmpp->next;
				
				/* new size for p */
				p->size = tmpp->size + b->size - nunits; 
				b->size = nunits;
				prev->next = p;
			}
qiuyiuestc's avatar
qiuyiuestc 已提交
1018
			rt_current_module->mem_list = (void *)prev;
qiuyiuestc's avatar
qiuyiuestc 已提交
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
			return (void *) (b + 1);
		}
		else /* allocate new memory and copy old data */
		{
			if ((p = rt_module_malloc(size)) == RT_NULL) return RT_NULL;
			rt_memmove(p, (b+1), ((b->size) * sizeof(struct rt_mem_head)));
			rt_module_free(rt_current_module, (void *)(b + 1));
			return (void *) (p);
		}
	}
}
qiuyiuestc's avatar
qiuyiuestc 已提交
1030

qiuyiuestc's avatar
qiuyiuestc 已提交
1031
#endif