module.c 47.4 KB
Newer Older
qiuyiuestc's avatar
qiuyiuestc 已提交
1 2 3
/*
 * File      : module.c
 * This file is part of RT-Thread RTOS
D
dzzxzz 已提交
4
 * COPYRIGHT (C) 2006 - 2012, RT-Thread Development Team
qiuyiuestc's avatar
qiuyiuestc 已提交
5 6 7 8 9 10
 *
 * 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:
D
dzzxzz 已提交
11 12 13 14 15 16
 * Date           Author       Notes
 * 2010-01-09     Bernard      first version
 * 2010-04-09     yi.qiu       implement based on first version
 * 2010-10-23     yi.qiu       implement module memory allocator
 * 2011-05-25     yi.qiu       implement module hook function
 * 2011-06-23     yi.qiu       rewrite module memory allocator
17
 * 2012-11-23     Bernard      using RT_DEBUG_LOG instead of rt_kprintf.
18 19
 * 2012-11-28     Bernard      remove rt_current_module and user 
 *                             can use rt_module_unload to remove a module.
qiuyiuestc's avatar
qiuyiuestc 已提交
20
 */
qiuyiuestc's avatar
qiuyiuestc 已提交
21

22
#include <rthw.h>
qiuyiuestc's avatar
qiuyiuestc 已提交
23
#include <rtthread.h>
qiuyiuestc's avatar
qiuyiuestc 已提交
24
#include <rtm.h>
qiuyiuestc's avatar
qiuyiuestc 已提交
25

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

D
dzzxzz 已提交
29 30 31
#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 已提交
32

D
dzzxzz 已提交
33 34 35 36 37 38 39
#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 已提交
40

41
#ifdef RT_USING_SLAB
42
#define PAGE_COUNT_MAX    256
qiuyiuestc's avatar
qiuyiuestc 已提交
43

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

qiuyiuestc's avatar
qiuyiuestc 已提交
51 52
struct rt_page_info
{
53 54
    rt_uint32_t *page_ptr;
    rt_uint32_t npage;
qiuyiuestc's avatar
qiuyiuestc 已提交
55 56 57
};

static void *rt_module_malloc_page(rt_size_t npages);
58
static void rt_module_free_page(rt_module_t module, void *page_ptr, rt_size_t npages);
qiuyiuestc's avatar
qiuyiuestc 已提交
59

qiuyiuestc's avatar
qiuyiuestc 已提交
60
static struct rt_semaphore mod_sem;
61 62
#endif

63 64
static struct rt_module_symtab *_rt_module_symtab_begin = RT_NULL;
static struct rt_module_symtab *_rt_module_symtab_end = RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
65

66 67 68
/**
 * @ingroup SystemInit
 *
B
bernard.xiong@gmail.com 已提交
69
 * This function will initialize system module
70 71 72
 */
void rt_system_module_init(void)
{
qiuyiuestc's avatar
qiuyiuestc 已提交
73
#ifdef __GNUC__
74 75
    extern int __rtmsymtab_start;
    extern int __rtmsymtab_end;
76

77 78
    _rt_module_symtab_begin = (struct rt_module_symtab *)&__rtmsymtab_start;
    _rt_module_symtab_end   = (struct rt_module_symtab *)&__rtmsymtab_end;
D
dzzxzz 已提交
79
#elif defined (__CC_ARM)
80 81
    extern int RTMSymTab$$Base;
    extern int RTMSymTab$$Limit;
D
dzzxzz 已提交
82

83
    _rt_module_symtab_begin = (struct rt_module_symtab *)&RTMSymTab$$Base;
84
    _rt_module_symtab_end   = (struct rt_module_symtab *)&RTMSymTab$$Limit;
qiuyiuestc's avatar
qiuyiuestc 已提交
85
#endif
86

87
#ifdef RT_USING_SLAB
88 89
    /* initialize heap semaphore */
    rt_sem_init(&mod_sem, "module", 1, RT_IPC_FLAG_FIFO);
90
#endif
91 92
}

D
dzzxzz 已提交
93
static rt_uint32_t rt_module_symbol_find(const char *sym_str)
94
{
95 96 97 98 99 100 101 102 103
    /* find in kernel symbol table */
    struct rt_module_symtab *index;
    for (index = _rt_module_symtab_begin; index != _rt_module_symtab_end; index ++)
    {
        if (rt_strcmp(index->name, sym_str) == 0)
            return (rt_uint32_t)index->addr;
    }

    return 0;
104
}
qiuyiuestc's avatar
qiuyiuestc 已提交
105

qiuyiuestc's avatar
qiuyiuestc 已提交
106 107 108
/**
 * This function will return self module object
 *
qiuyiuestc's avatar
qiuyiuestc 已提交
109
 * @return the self module object
qiuyiuestc's avatar
qiuyiuestc 已提交
110
 */
D
dzzxzz 已提交
111
rt_module_t rt_module_self(void)
qiuyiuestc's avatar
qiuyiuestc 已提交
112
{
113
	rt_thread_t tid;
qiuyiuestc's avatar
qiuyiuestc 已提交
114

115 116
	tid = rt_thread_self();
	if (tid == RT_NULL) return RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
117

118 119
    /* return current module */
    return (rt_module_t)tid->module_id;
qiuyiuestc's avatar
qiuyiuestc 已提交
120 121
}

122 123
static int rt_module_arm_relocate(struct rt_module *module, Elf32_Rel *rel,
    Elf32_Addr sym_val)
qiuyiuestc's avatar
qiuyiuestc 已提交
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
    Elf32_Addr *where, tmp;
    Elf32_Sword addend, offset;
    rt_uint32_t upper, lower, sign, j1, j2;

    where = (Elf32_Addr *)((rt_uint8_t *)module->module_space + rel->r_offset);
    switch (ELF32_R_TYPE(rel->r_info))
    {
    case R_ARM_NONE:
        break;
    case R_ARM_ABS32:
        *where += (Elf32_Addr)sym_val;
        RT_DEBUG_LOG(RT_DEBUG_MODULE, ("R_ARM_ABS32: %x -> %x\n", where, *where));
        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);
        RT_DEBUG_LOG(RT_DEBUG_MODULE, ("R_ARM_PC24: %x -> %x\n", where, *where));
        break;
    case R_ARM_REL32:
        *where += sym_val - (Elf32_Addr)where;
152
        RT_DEBUG_LOG(RT_DEBUG_MODULE,("R_ARM_REL32: %x -> %x, sym %x, offset %x\n",
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
            where, *where, sym_val, rel->r_offset));
        break;
    case R_ARM_V4BX:
        *where &= 0xf000000f;
        *where |= 0x01a0f000;
        break;
    case R_ARM_GLOB_DAT:
    case R_ARM_JUMP_SLOT:
        *where = (Elf32_Addr)sym_val;
        RT_DEBUG_LOG(RT_DEBUG_MODULE,
            ("R_ARM_JUMP_SLOT: 0x%x -> 0x%x 0x%x\n", where, *where, sym_val));
        break;
#if 0        /* To do */
    case R_ARM_GOT_BREL:
        temp = (Elf32_Addr)sym_val;
        *where = (Elf32_Addr)&temp;
        RT_DEBUG_LOG(RT_DEBUG_MODULE,
            ("R_ARM_GOT_BREL: 0x%x -> 0x%x 0x%x\n", where, *where, sym_val));
        break;
B
bernard.xiong@gmail.com 已提交
172
#endif
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
    case R_ARM_RELATIVE:
        *where = (Elf32_Addr)sym_val + *where;
        RT_DEBUG_LOG(RT_DEBUG_MODULE,
            ("R_ARM_RELATIVE: 0x%x -> 0x%x 0x%x\n", where, *where, sym_val));
        break;
    case R_ARM_THM_CALL:
    case R_ARM_THM_JUMP24:
        upper = *(rt_uint16_t *)where;
        lower = *(rt_uint16_t *)((Elf32_Addr)where + 2);

        sign = (upper >> 10) & 1;
        j1 = (lower >> 13) & 1;
        j2 = (lower >> 11) & 1;
        offset = (sign << 24) | ((~(j1 ^ sign) & 1) << 23) |
                              ((~(j2 ^ sign) & 1) << 22) |
                              ((upper & 0x03ff) << 12) |
                              ((lower & 0x07ff) << 1);
        if (offset & 0x01000000)
                              offset -= 0x02000000;
        offset += sym_val - (Elf32_Addr)where;

        if (!(offset & 1) || offset <= (rt_int32_t)0xff000000 ||
                 offset >= (rt_int32_t)0x01000000)
        {
197
            rt_kprintf("Module: Only Thumb addresses allowed\n");
198

199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
            return -1;
        }

        sign = (offset >> 24) & 1;
        j1 = sign ^ (~(offset >> 23) & 1);
        j2 = sign ^ (~(offset >> 22) & 1);
        *(rt_uint16_t *)where = (rt_uint16_t)((upper & 0xf800) | (sign << 10) |
                                      ((offset >> 12) & 0x03ff));
        *(rt_uint16_t *)(where + 2) = (rt_uint16_t)((lower & 0xd000) |
                                        (j1 << 13) | (j2 << 11) |
                                        ((offset >> 1) & 0x07ff));
        upper = *(rt_uint16_t *)where;
        lower = *(rt_uint16_t *)((Elf32_Addr)where + 2);
        break;
    default:
        return -1;
    }

    return 0;
qiuyiuestc's avatar
qiuyiuestc 已提交
218 219
}

D
dzzxzz 已提交
220
static void rt_module_init_object_container(struct rt_module *module)
qiuyiuestc's avatar
qiuyiuestc 已提交
221
{
222
    RT_ASSERT(module != RT_NULL);
qiuyiuestc's avatar
qiuyiuestc 已提交
223

224 225 226 227
    /* initialize 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;
qiuyiuestc's avatar
qiuyiuestc 已提交
228 229

#ifdef RT_USING_SEMAPHORE
230 231 232 233
    /* initialize 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;
qiuyiuestc's avatar
qiuyiuestc 已提交
234 235 236
#endif

#ifdef RT_USING_MUTEX
237 238 239 240
    /* initialize 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;
qiuyiuestc's avatar
qiuyiuestc 已提交
241 242 243
#endif

#ifdef RT_USING_EVENT
244 245 246 247
    /* initialize 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;
qiuyiuestc's avatar
qiuyiuestc 已提交
248 249 250
#endif

#ifdef RT_USING_MAILBOX
251 252 253 254
    /* initialize 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;
qiuyiuestc's avatar
qiuyiuestc 已提交
255 256 257
#endif

#ifdef RT_USING_MESSAGEQUEUE
258 259 260 261
    /* initialize 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;
qiuyiuestc's avatar
qiuyiuestc 已提交
262 263
#endif

264
#ifdef RT_USING_MEMHEAP
265 266 267 268
    /* initialize object container - memory heap */
    rt_list_init(&(module->module_object[RT_Object_Class_MemHeap].object_list));
    module->module_object[RT_Object_Class_MemHeap].object_size = sizeof(struct rt_memheap);
    module->module_object[RT_Object_Class_MemHeap].type = RT_Object_Class_MemHeap;
269 270
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
271
#ifdef RT_USING_MEMPOOL
272 273 274 275
    /* initialize 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;
qiuyiuestc's avatar
qiuyiuestc 已提交
276 277 278
#endif

#ifdef RT_USING_DEVICE
279 280 281 282
    /* initialize 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;
qiuyiuestc's avatar
qiuyiuestc 已提交
283 284
#endif

285 286 287 288
    /* initialize 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 已提交
289 290
}

qiuyiuestc's avatar
qiuyiuestc 已提交
291 292 293 294 295 296 297
#ifdef RT_USING_HOOK
static void (*rt_module_load_hook)(rt_module_t module);
static void (*rt_module_unload_hook)(rt_module_t module);

/**
 * @addtogroup Hook
 */
D
dzzxzz 已提交
298

qiuyiuestc's avatar
qiuyiuestc 已提交
299 300 301 302 303 304 305 306 307 308
/*@{*/

/**
 * This function will set a hook function, which will be invoked when module
 * be loaded to system.
 *
 * @param hook the hook function
 */
void rt_module_load_sethook(void (*hook)(rt_module_t module))
{
309
    rt_module_load_hook = hook;
qiuyiuestc's avatar
qiuyiuestc 已提交
310 311 312 313 314 315 316 317 318 319
}

/**
 * This function will set a hook function, which will be invoked when module
 * be unloaded from system.
 *
 * @param hook the hook function
 */
void rt_module_unload_sethook(void (*hook)(rt_module_t module))
{
320
    rt_module_unload_hook = hook;
qiuyiuestc's avatar
qiuyiuestc 已提交
321 322 323 324 325
}

/*@}*/
#endif

D
dzzxzz 已提交
326
static struct rt_module* _load_shared_object(const char *name, void *module_ptr)
qiuyiuestc's avatar
qiuyiuestc 已提交
327
{
328 329 330 331 332 333 334 335 336 337 338 339
    rt_uint8_t *ptr = RT_NULL;
    rt_module_t module = RT_NULL;
    rt_bool_t linked = RT_FALSE;
    rt_uint32_t index, module_size = 0;

    RT_ASSERT(module_ptr != RT_NULL);

    if(rt_memcmp(elf_module->e_ident, RTMMAG, SELFMAG) == 0)
    {
        /* rtmlinker finished */
        linked = RT_TRUE;
    }
340

341 342 343 344 345
    /* get the ELF image size */
    for (index = 0; index < elf_module->e_phnum; index++)
    {
        if(phdr[index].p_type == PT_LOAD)
            module_size += phdr[index].p_memsz;
346 347
    }

348 349
    if (module_size == 0)
    {
350
        rt_kprintf("Module: size error\n");
351
        return RT_NULL;
352
    }
353 354 355 356 357 358

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

    module->nref = 0;
359

360 361 362 363
    /* allocate module space */
    module->module_space = rt_malloc(module_size);
    if (module->module_space == RT_NULL)
    {
364
		rt_kprintf("Module: allocate space failed.\n");
365 366 367 368 369 370 371 372 373 374 375 376 377
        rt_object_delete(&(module->parent));

        return RT_NULL;
    }

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

    for (index = 0; index < elf_module->e_phnum; index++)
    {
        if (phdr[index].p_type == PT_LOAD)
        {
378 379
            rt_memcpy(ptr + phdr[index].p_paddr,
                (rt_uint8_t *)elf_module + phdr[index].p_offset,
380
                phdr[index].p_filesz);
381 382
        }
    }
383 384 385

    /* set module entry */
    module->module_entry = module->module_space + elf_module->e_entry;
386

387 388 389 390 391 392 393 394
    /* handle relocation section */
    for (index = 0; index < elf_module->e_shnum; index ++)
    {
        rt_uint32_t i, nr_reloc;
        Elf32_Sym *symtab;
        Elf32_Rel *rel;
        rt_uint8_t *strtab;
        static rt_bool_t unsolved = RT_FALSE;
395

396 397 398 399 400 401
        if (!IS_REL(shdr[index])) continue;

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

        /* locate .rel.plt and .rel.dyn section */
402
        symtab =(Elf32_Sym *) ((rt_uint8_t*)module_ptr +
403
            shdr[shdr[index].sh_link].sh_offset);
404
        strtab = (rt_uint8_t*) module_ptr +
405 406 407 408 409 410 411 412
            shdr[shdr[shdr[index].sh_link].sh_link].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)];

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

416
            if((sym->st_shndx != SHT_NULL) ||
417 418
                (ELF_ST_BIND(sym->st_info) == STB_LOCAL))
            {
419
                rt_module_arm_relocate(module, rel,
420
                    (Elf32_Addr)(module->module_space + sym->st_value));
421
            }
422 423 424 425 426 427 428 429 430 431 432
            else if(!linked)
            {
                Elf32_Addr addr;

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

                /* need to resolve symbol in kernel symbol table */
                addr = rt_module_symbol_find((const char *)(strtab + sym->st_name));
                if (addr == 0)
                {
433
                    rt_kprintf("Module: can't find %s in kernel symbol table\n",
434 435
                        strtab + sym->st_name);
                    unsolved = RT_TRUE;
436
                }
437 438 439 440 441 442 443 444 445 446 447
                else
                    rt_module_arm_relocate(module, rel, addr);
            }
            rel ++;
        }

        if (unsolved)
        {
            rt_object_delete(&(module->parent));

            return RT_NULL;
448
        }
449 450 451 452
    }

    /* construct module symbol table */
    for (index = 0; index < elf_module->e_shnum; index ++)
453
    {
454
        /* find .dynsym section */
455
        rt_uint8_t *shstrab;
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
        shstrab = (rt_uint8_t *)module_ptr + shdr[elf_module->e_shstrndx].sh_offset;
        if (rt_strcmp((const char *)(shstrab + shdr[index].sh_name), ELF_DYNSYM) == 0)
            break;
    }

    /* found .dynsym section */
    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++)
        {
473
            if ((ELF_ST_BIND(symtab[i].st_info) == STB_GLOBAL) &&
474 475 476 477 478 479 480 481 482 483
                (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++)
        {
            rt_size_t length;
484 485

            if ((ELF_ST_BIND(symtab[i].st_info) != STB_GLOBAL) ||
486 487 488 489
                (ELF_ST_TYPE(symtab[i].st_info) != STT_FUNC)) continue;

            length = rt_strlen((const char *)(strtab + symtab[i].st_name)) + 1;

490
            module->symtab[count].addr =
491 492 493
                (void *)(module->module_space + symtab[i].st_value);
            module->symtab[count].name = rt_malloc(length);
            rt_memset((void *)module->symtab[count].name, 0, length);
494
            rt_memcpy((void *)module->symtab[count].name,
495 496
                strtab + symtab[i].st_name, length);
            count ++;
497
        }
498 499 500
    }

    return module;
501 502
}

D
dzzxzz 已提交
503
static struct rt_module* _load_relocated_object(const char *name, void *module_ptr)
504
{
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
    rt_uint32_t index, rodata_addr = 0, bss_addr = 0, data_addr = 0;
    rt_uint32_t module_addr = 0, module_size = 0;
    struct rt_module *module = RT_NULL;
    rt_uint8_t *ptr, *strtab, *shstrab;

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

    /* allocate module */
541
    module = (struct rt_module *)rt_object_allocate(RT_Object_Class_Module,
542 543 544 545 546 547 548 549
        (const char *)name);
    if (module == RT_NULL)
        return RT_NULL;

    /* allocate module space */
    module->module_space = rt_malloc(module_size);
    if (module->module_space == RT_NULL)
    {
550
		rt_kprintf("Module: allocate space failed.\n");
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
        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++)
    {
        /* load text section */
        if (IS_PROG(shdr[index]) && IS_AX(shdr[index]))
        {
566
            rt_memcpy(ptr, (rt_uint8_t*)elf_module + shdr[index].sh_offset,
567
                shdr[index].sh_size);
568
            RT_DEBUG_LOG(RT_DEBUG_MODULE,("load text 0x%x, size %d\n",
569 570 571 572 573 574 575
                ptr, shdr[index].sh_size));
            ptr += shdr[index].sh_size;
        }

        /* load rodata section */
        if (IS_PROG(shdr[index]) && IS_ALLOC(shdr[index]))
        {
576
            rt_memcpy(ptr, (rt_uint8_t*)elf_module + shdr[index].sh_offset,
577 578
                shdr[index].sh_size);
            rodata_addr = (rt_uint32_t)ptr;
579
            RT_DEBUG_LOG(RT_DEBUG_MODULE,("load rodata 0x%x, size %d, rodata 0x%x\n",
580 581 582 583 584 585 586
                ptr, shdr[index].sh_size, *(rt_uint32_t*)data_addr));
            ptr += shdr[index].sh_size;
        }

        /* load data section */
        if (IS_PROG(shdr[index]) && IS_AW(shdr[index]))
        {
587
            rt_memcpy(ptr, (rt_uint8_t*)elf_module + shdr[index].sh_offset,
588 589
                shdr[index].sh_size);
            data_addr = (rt_uint32_t)ptr;
590
            RT_DEBUG_LOG(RT_DEBUG_MODULE,("load data 0x%x, size %d, data 0x%x\n",
591 592 593 594 595 596 597 598 599
                ptr, shdr[index].sh_size, *(rt_uint32_t*)data_addr));
            ptr += shdr[index].sh_size;
        }

        /* load bss section */
        if (IS_NOPROG(shdr[index]) && IS_AW(shdr[index]))
        {
            rt_memset(ptr, 0, shdr[index].sh_size);
            bss_addr = (rt_uint32_t)ptr;
600
            RT_DEBUG_LOG(RT_DEBUG_MODULE,("load bss 0x%x, size %d,\n",
601 602 603 604 605
                ptr, shdr[index].sh_size));
        }
    }

    /* set module entry */
606
    module->module_entry = (rt_uint8_t*)module->module_space +
607 608 609 610 611 612 613 614
        elf_module->e_entry - module_addr;

    /* handle relocation section */
    for (index = 0; index < elf_module->e_shnum; index ++)
    {
        rt_uint32_t i, nr_reloc;
        Elf32_Sym *symtab;
        Elf32_Rel *rel;
615

616
        if (!IS_REL(shdr[index])) continue;
617

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

        /* locate .dynsym and .dynstr */
622
        symtab =(Elf32_Sym *) ((rt_uint8_t*)module_ptr +
623
            shdr[shdr[index].sh_link].sh_offset);
624
        strtab = (rt_uint8_t*) module_ptr +
625
            shdr[shdr[shdr[index].sh_link].sh_link].sh_offset;
626
        shstrab = (rt_uint8_t*) module_ptr +
627 628 629 630 631 632 633
            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)];
634 635

            RT_DEBUG_LOG(RT_DEBUG_MODULE,("relocate symbol: %s\n",
636 637 638 639 640 641 642
                strtab + sym->st_name));

            if (sym->st_shndx != STN_UNDEF)
            {
                if((ELF_ST_TYPE(sym->st_info) == STT_SECTION)
                    || (ELF_ST_TYPE(sym->st_info) == STT_OBJECT))
                {
643
                    if (rt_strncmp((const char*)(shstrab +
644 645 646 647 648 649 650 651 652 653 654 655
                        shdr[sym->st_shndx].sh_name), ELF_RODATA, 8) == 0)
                    {
                        /* relocate rodata section */
                        RT_DEBUG_LOG(RT_DEBUG_MODULE,("rodata\n"));
                        rt_module_arm_relocate(module, rel,
                            (Elf32_Addr)(rodata_addr + sym->st_value));
                    }
                    else if(rt_strncmp((const char*)
                        (shstrab + shdr[sym->st_shndx].sh_name), ELF_BSS, 5) == 0)
                    {
                        /* relocate bss section */
                        RT_DEBUG_LOG(RT_DEBUG_MODULE,("bss\n"));
656
                        rt_module_arm_relocate(module, rel,
657 658
                            (Elf32_Addr)bss_addr + sym->st_value);
                    }
659
                    else if(rt_strncmp((const char*)(shstrab + shdr[sym->st_shndx].sh_name),
660 661 662 663
                        ELF_DATA, 6) == 0)
                    {
                        /* relocate data section */
                        RT_DEBUG_LOG(RT_DEBUG_MODULE,("data\n"));
664
                        rt_module_arm_relocate(module, rel,
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
                            (Elf32_Addr)data_addr + sym->st_value);
                    }
                }
            }
            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));
            }
            else
            {
                Elf32_Addr addr;

                if(ELF32_R_TYPE(rel->r_info) != R_ARM_V4BX)
                {
681
                    RT_DEBUG_LOG(RT_DEBUG_MODULE,("relocate symbol: %s\n",
682
                        strtab + sym->st_name));
683

684 685 686 687 688 689 690 691
                    /* need to resolve symbol in kernel symbol table */
                    addr = rt_module_symbol_find((const char*)(strtab + sym->st_name));
                    if (addr != (Elf32_Addr)RT_NULL)
                    {
                        rt_module_arm_relocate(module, rel, addr);
                        RT_DEBUG_LOG(RT_DEBUG_MODULE,("symbol addr 0x%x\n", addr));
                    }
                    else
692
                        rt_kprintf("Module: can't find %s in kernel symbol table\n",
693 694 695 696 697 698 699 700 701 702 703 704 705
                            strtab + sym->st_name);
                }
                else
                {
                    rt_module_arm_relocate(module, rel, (Elf32_Addr)((rt_uint8_t*)
                        module->module_space - module_addr + sym->st_value));
                }
            }
            rel ++;
        }
    }

    return module;
706 707 708 709 710 711 712 713 714 715
}

/**
 * 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
 */
D
dzzxzz 已提交
716
rt_module_t rt_module_load(const char *name, void *module_ptr)
717
{
718 719 720 721
    rt_module_t module;

    RT_DEBUG_NOT_IN_INTERRUPT;

722
    RT_DEBUG_LOG(RT_DEBUG_MODULE,("rt_module_load: %s ,", name));
723 724 725 726 727

    /* check ELF header */
    if(rt_memcmp(elf_module->e_ident, RTMMAG, SELFMAG) != 0
        && rt_memcmp(elf_module->e_ident, ELFMAG, SELFMAG) != 0)
    {
728
        rt_kprintf("Module: magic error\n");
729 730 731 732 733 734 735

        return RT_NULL;
    }

    /* check ELF class */
    if(elf_module->e_ident[EI_CLASS] != ELFCLASS32)
    {
736
        rt_kprintf("Module: ELF class error\n");
737 738 739 740 741 742 743 744 745 746 747 748 749 750

        return RT_NULL;
    }

    if(elf_module->e_type == ET_REL)
    {
        module = _load_relocated_object(name, module_ptr);
    }
    else if(elf_module->e_type == ET_DYN)
    {
        module = _load_shared_object(name, module_ptr);
    }
    else
    {
751
        rt_kprintf("Module: unsupported elf type\n");
752 753 754 755 756 757 758 759 760

        return RT_NULL;
    }

    if(module == RT_NULL)
        return RT_NULL;

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

762 763 764 765
    /* increase module reference count */
    module->nref ++;

    if (elf_module->e_entry != 0)
766 767 768 769
    {
		rt_uint32_t *stack_size;
		rt_uint8_t  *priority;

qiuyiuestc's avatar
qiuyiuestc 已提交
770
#ifdef RT_USING_SLAB
771 772
        /* init module memory allocator */
        module->mem_list = RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
773

774 775 776 777
        /* create page array */
        module->page_array = (void *)rt_malloc
            (PAGE_COUNT_MAX * sizeof(struct rt_page_info));
        module->page_cnt = 0;
778 779
#endif

780
		/* get the main thread stack size */
781
        module->stack_size = 2048;
782 783 784
		module->thread_priority = RT_THREAD_PRIORITY_MAX - 2;
		
        /* create module thread */
785 786 787 788 789
        module->module_thread = rt_thread_create(name,
            (void(*)(void *))module->module_entry, RT_NULL,
            module->stack_size,
            module->thread_priority, 10);

790
        RT_DEBUG_LOG(RT_DEBUG_MODULE,("thread entry 0x%x\n", module->module_entry));
791
		/* set module id */
792 793 794 795 796
        module->module_thread->module_id = (void*)module;
        module->parent.flag = RT_MODULE_FLAG_WITHENTRY;

        /* startup module thread */
        rt_thread_startup(module->module_thread);
797
    }
798 799 800 801
    else
    {
        /* without entry point */
        module->parent.flag |= RT_MODULE_FLAG_WITHOUTENTRY;
802
    }
qiuyiuestc's avatar
qiuyiuestc 已提交
803

qiuyiuestc's avatar
qiuyiuestc 已提交
804
#ifdef RT_USING_HOOK
805 806 807 808
    if (rt_module_load_hook != RT_NULL)
    {
        rt_module_load_hook(module);
    }
qiuyiuestc's avatar
qiuyiuestc 已提交
809 810
#endif

811
    return module;
812 813 814 815
}

#ifdef RT_USING_DFS
#include <dfs_posix.h>
qiuyiuestc's avatar
qiuyiuestc 已提交
816

817
static char* _module_name(const char *path)
qiuyiuestc's avatar
qiuyiuestc 已提交
818
{
819 820
    const char *first, *end, *ptr;
	char *name;
qiuyiuestc's avatar
qiuyiuestc 已提交
821
    int size;
822 823 824 825

	ptr = (char*)path;
	first = ptr;
	end = path + rt_strlen(path);
qiuyiuestc's avatar
qiuyiuestc 已提交
826 827 828 829
    while(*ptr != '\0')
    {
        if(*ptr == '/') first = ptr + 1;
        if(*ptr == '.') end = ptr - 1;
830 831

        ptr++;
qiuyiuestc's avatar
qiuyiuestc 已提交
832 833 834 835 836 837 838 839 840 841
    }

    size = end - first + 1;
    name = rt_malloc(size);
    rt_strncpy(name, first, size);
    name[size] = '\0';

    return name;
}

qiuyiuestc's avatar
qiuyiuestc 已提交
842
/**
B
bernard.xiong@gmail.com 已提交
843
 * This function will load a module from a file
qiuyiuestc's avatar
qiuyiuestc 已提交
844
 *
B
bernard.xiong@gmail.com 已提交
845
 * @param path the full path of application module
qiuyiuestc's avatar
qiuyiuestc 已提交
846 847 848
 *
 * @return the module object
 */
D
dzzxzz 已提交
849
rt_module_t rt_module_open(const char *path)
qiuyiuestc's avatar
qiuyiuestc 已提交
850
{
851 852 853 854
    int fd, length;
    struct rt_module *module;
    struct stat s;
    char *buffer, *offset_ptr;
qiuyiuestc's avatar
qiuyiuestc 已提交
855
    char* name;
856 857 858 859 860 861 862 863

    RT_DEBUG_NOT_IN_INTERRUPT;

    /* check parameters */
    RT_ASSERT(path != RT_NULL);

    if (stat(path, &s) !=0)
    {
864
        rt_kprintf("Module: access %s failed\n", path);
865 866 867 868 869 870

        return RT_NULL;
    }
    buffer = (char *)rt_malloc(s.st_size);
    if (buffer == RT_NULL)
    {
871
        rt_kprintf("Module: out of memory\n");
872 873 874 875 876 877 878 879

        return RT_NULL;
    }

    offset_ptr = buffer;
    fd = open(path, O_RDONLY, 0);
    if (fd < 0)
    {
880
        rt_kprintf("Module: open %s failed\n", path);
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
        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)
    {
900
        rt_kprintf("Module: read file failed\n");
901 902 903 904 905
        rt_free(buffer);

        return RT_NULL;
    }

906
    name = _module_name(path);
qiuyiuestc's avatar
qiuyiuestc 已提交
907
    module = rt_module_load(name,(void *)buffer);
908
    rt_free(buffer);
qiuyiuestc's avatar
qiuyiuestc 已提交
909
    rt_free(name);
910 911

    return module;
qiuyiuestc's avatar
qiuyiuestc 已提交
912
}
qiuyiuestc's avatar
qiuyiuestc 已提交
913 914 915

#if defined(RT_USING_FINSH)
#include <finsh.h>
916
FINSH_FUNCTION_EXPORT_ALIAS(rt_module_open, exec, exec module from a file);
qiuyiuestc's avatar
qiuyiuestc 已提交
917
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
918 919
#endif

qiuyiuestc's avatar
qiuyiuestc 已提交
920
/**
921
 * This function will destroy a module and release its resource.
qiuyiuestc's avatar
qiuyiuestc 已提交
922
 *
923
 * @param module the module to be destroyed.
qiuyiuestc's avatar
qiuyiuestc 已提交
924 925 926
 *
 * @return the operation status, RT_EOK on OK; -RT_ERROR on error
 */
927
rt_err_t rt_module_destroy(rt_module_t module)
qiuyiuestc's avatar
qiuyiuestc 已提交
928
{
929 930 931 932 933 934 935 936
    int i;
    struct rt_object *object;
    struct rt_list_node *list;

    RT_DEBUG_NOT_IN_INTERRUPT;

    /* check parameter */
    RT_ASSERT(module != RT_NULL);
937
	RT_ASSERT(module->nref == 0);
938

939
    RT_DEBUG_LOG(RT_DEBUG_MODULE,("rt_module_destroy: %8.*s\n", RT_NAME_MAX, module->parent.name));
940 941 942 943

    /* module has entry point */
    if (!(module->parent.flag & RT_MODULE_FLAG_WITHOUTENTRY))
    {
qiuyiuestc's avatar
qiuyiuestc 已提交
944
#ifdef RT_USING_SEMAPHORE
945
        /* delete semaphores */
946
        list = &module->module_object[RT_Object_Class_Thread].object_list;
947 948 949 950 951 952 953 954 955 956 957 958 959 960
        while (list->next != list)
        {
            object = rt_list_entry(list->next, struct rt_object, list);
            if (rt_object_is_systemobject(object) == RT_TRUE)
            {
                /* detach static object */
                rt_sem_detach((rt_sem_t)object);
            }
            else
            {
                /* delete dynamic object */
                rt_sem_delete((rt_sem_t)object);
            }
        }
qiuyiuestc's avatar
qiuyiuestc 已提交
961 962 963
#endif

#ifdef RT_USING_MUTEX
964
        /* delete mutexs*/
965
        list = &module->module_object[RT_Object_Class_Mutex].object_list;
966 967 968 969 970 971 972 973 974 975 976 977 978 979
        while (list->next != list)
        {
            object = rt_list_entry(list->next, struct rt_object, list);
            if (rt_object_is_systemobject(object) == RT_TRUE)
            {
                /* detach static object */
                rt_mutex_detach((rt_mutex_t)object);
            }
            else
            {
                /* delete dynamic object */
                rt_mutex_delete((rt_mutex_t)object);
            }
        }
qiuyiuestc's avatar
qiuyiuestc 已提交
980 981 982
#endif

#ifdef RT_USING_EVENT
983
        /* delete mailboxs */
984
        list = &module->module_object[RT_Object_Class_Event].object_list;
985 986 987 988 989 990 991 992 993 994 995 996 997 998
        while (list->next != list)
        {
            object = rt_list_entry(list->next, struct rt_object, list);
            if (rt_object_is_systemobject(object) == RT_TRUE)
            {
                /* detach static object */
                rt_event_detach((rt_event_t)object);
            }
            else
            {
                /* delete dynamic object */
                rt_event_delete((rt_event_t)object);
            }
        }
qiuyiuestc's avatar
qiuyiuestc 已提交
999 1000 1001
#endif

#ifdef RT_USING_MAILBOX
1002
        /* delete mailboxs */
1003
        list = &module->module_object[RT_Object_Class_MailBox].object_list;
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
        while (list->next != list)
        {
            object = rt_list_entry(list->next, struct rt_object, list);
            if (rt_object_is_systemobject(object) == RT_TRUE)
            {
                /* detach static object */
                rt_mb_detach((rt_mailbox_t)object);
            }
            else
            {
                /* delete dynamic object */
                rt_mb_delete((rt_mailbox_t)object);
            }
        }
qiuyiuestc's avatar
qiuyiuestc 已提交
1018 1019 1020
#endif

#ifdef RT_USING_MESSAGEQUEUE
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
        /* delete msgqueues */
        list = &module->module_object[RT_Object_Class_MessageQueue].object_list;
        while (list->next != list)
        {
            object = rt_list_entry(list->next, struct rt_object, list);
            if (rt_object_is_systemobject(object) == RT_TRUE)
            {
                /* detach static object */
                rt_mq_detach((rt_mq_t)object);
            }
            else
            {
                /* delete dynamic object */
                rt_mq_delete((rt_mq_t)object);
            }
        }
qiuyiuestc's avatar
qiuyiuestc 已提交
1037 1038 1039
#endif

#ifdef RT_USING_MEMPOOL
1040
        /* delete mempools */
1041
        list = &module->module_object[RT_Object_Class_MemPool].object_list;
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
        while (list->next != list)
        {
            object = rt_list_entry(list->next, struct rt_object, list);
            if (rt_object_is_systemobject(object) == RT_TRUE)
            {
                /* detach static object */
                rt_mp_detach((rt_mp_t)object);
            }
            else
            {
                /* delete dynamic object */
                rt_mp_delete((rt_mp_t)object);
            }
        }
qiuyiuestc's avatar
qiuyiuestc 已提交
1056 1057 1058
#endif

#ifdef RT_USING_DEVICE
1059
        /* delete devices */
1060
        list = &module->module_object[RT_Object_Class_Device].object_list;
1061 1062 1063 1064 1065
        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 已提交
1066 1067
#endif

1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
        /* delete timers */
        list = &module->module_object[RT_Object_Class_Timer].object_list;
        while (list->next != list)
        {
            object = rt_list_entry(list->next, struct rt_object, list);
            if (rt_object_is_systemobject(object) == RT_TRUE)
            {
                /* detach static object */
                rt_timer_detach((rt_timer_t)object);
            }
            else
            {
                /* delete dynamic object */
                rt_timer_delete((rt_timer_t)object);
            }
        }
    }
qiuyiuestc's avatar
qiuyiuestc 已提交
1085

1086
#ifdef RT_USING_SLAB
1087 1088 1089
    if (module->page_cnt > 0)
    {
        struct rt_page_info *page = (struct rt_page_info *)module->page_array;
B
bernard.xiong@gmail.com 已提交
1090

1091
        rt_kprintf("Module: warning - memory still hasn't been free finished\n");
qiuyiuestc's avatar
qiuyiuestc 已提交
1092

1093 1094 1095 1096 1097
        while(module->page_cnt != 0)
        {
            rt_module_free_page(module, page[0].page_ptr, page[0].npage);
        }
    }
1098
#endif
D
dzzxzz 已提交
1099

1100 1101
    /* release module space memory */
    rt_free(module->module_space);
qiuyiuestc's avatar
qiuyiuestc 已提交
1102

1103 1104
    /* release module symbol table */
    for (i=0; i<module->nsym; i++)
1105
    {
1106
        rt_free((void *)module->symtab[i].name);
1107
    }
1108 1109
    if (module->symtab != RT_NULL)
        rt_free(module->symtab);
qiuyiuestc's avatar
qiuyiuestc 已提交
1110

qiuyiuestc's avatar
qiuyiuestc 已提交
1111
#ifdef RT_USING_SLAB
1112
    if(module->page_array != RT_NULL)
1113
        rt_free(module->page_array);
qiuyiuestc's avatar
qiuyiuestc 已提交
1114
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
1115

1116 1117
    /* delete module object */
    rt_object_delete((rt_object_t)module);
qiuyiuestc's avatar
qiuyiuestc 已提交
1118

1119
    return RT_EOK;
qiuyiuestc's avatar
qiuyiuestc 已提交
1120 1121
}

1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
/**
 * 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)
{
    int i;
	rt_err_t result;
    struct rt_object *object;
    struct rt_list_node *list;

    RT_DEBUG_NOT_IN_INTERRUPT;

    /* check parameter */
	if (module == RT_NULL)
		return -RT_ERROR;

	rt_enter_critical();
    if (!(module->parent.flag & RT_MODULE_FLAG_WITHOUTENTRY))
    {
		/* delete all sub-threads */
		list = &module->module_object[RT_Object_Class_Thread].object_list;
		while (list->next != list)
		{
			object = rt_list_entry(list->next, struct rt_object, list);
			if (rt_object_is_systemobject(object) == RT_TRUE)
			{
				/* detach static object */
				rt_thread_detach((rt_thread_t)object);
			}
			else
			{
				/* delete dynamic object */
				rt_thread_delete((rt_thread_t)object);
			}
		}

		/* delete the main thread of module */
		if (module->module_thread != RT_NULL)
		{
			rt_thread_delete(module->module_thread);
		}
    }
	rt_exit_critical();

#ifdef RT_USING_HOOK
	if (rt_module_unload_hook != RT_NULL)
	{
		rt_module_unload_hook(module);
	}
#endif

	return RT_EOK;
}

qiuyiuestc's avatar
qiuyiuestc 已提交
1180 1181 1182 1183 1184 1185 1186
/**
 * This function will find the specified module.
 *
 * @param name the name of module finding
 *
 * @return the module
 */
D
dzzxzz 已提交
1187
rt_module_t rt_module_find(const char *name)
qiuyiuestc's avatar
qiuyiuestc 已提交
1188
{
1189 1190 1191
    struct rt_object_information *information;
    struct rt_object *object;
    struct rt_list_node *node;
qiuyiuestc's avatar
qiuyiuestc 已提交
1192

1193
    extern struct rt_object_information rt_object_container[];
B
bernard.xiong 已提交
1194

1195
    RT_DEBUG_NOT_IN_INTERRUPT;
1196

1197 1198
    /* enter critical */
    rt_enter_critical();
B
bernard.xiong 已提交
1199

1200 1201
    /* try to find device object */
    information = &rt_object_container[RT_Object_Class_Module];
1202
    for (node = information->object_list.next;
1203 1204 1205 1206 1207 1208 1209
        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();
B
bernard.xiong 已提交
1210

1211 1212 1213
            return (rt_module_t)object;
        }
    }
B
bernard.xiong 已提交
1214

1215 1216
    /* leave critical */
    rt_exit_critical();
B
bernard.xiong 已提交
1217

1218 1219
    /* not found */
    return RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
1220 1221
}

qiuyiuestc's avatar
qiuyiuestc 已提交
1222 1223 1224 1225 1226 1227 1228 1229 1230
#ifdef RT_USING_SLAB
/*
 * This function will allocate the numbers page with specified size
 * in page memory.
 *
 * @param size the size of memory to be allocated.
 * @note this function is used for RT-Thread Application Module
 */
static void *rt_module_malloc_page(rt_size_t npages)
qiuyiuestc's avatar
qiuyiuestc 已提交
1231
{
1232 1233
    void *chunk;
    struct rt_page_info *page;
1234 1235 1236 1237
	rt_module_t self_module;

	self_module = rt_module_self();
	RT_ASSERT(self_module != RT_NULL);
qiuyiuestc's avatar
qiuyiuestc 已提交
1238

1239 1240 1241
    chunk = rt_page_alloc(npages);
    if (chunk == RT_NULL)
        return RT_NULL;
1242

1243 1244 1245 1246
    page = (struct rt_page_info *)self_module->page_array;
    page[self_module->page_cnt].page_ptr = chunk;
    page[self_module->page_cnt].npage = npages;
    self_module->page_cnt ++;
qiuyiuestc's avatar
qiuyiuestc 已提交
1247

1248
    RT_ASSERT(self_module->page_cnt <= PAGE_COUNT_MAX);
1249
    RT_DEBUG_LOG(RT_DEBUG_MODULE,"rt_module_malloc_page 0x%x %d\n", chunk, npages);
D
dzzxzz 已提交
1250

1251
    return chunk;
qiuyiuestc's avatar
qiuyiuestc 已提交
1252
}
qiuyiuestc's avatar
qiuyiuestc 已提交
1253

qiuyiuestc's avatar
qiuyiuestc 已提交
1254
/*
D
dzzxzz 已提交
1255
 * This function will release the previously allocated memory page
qiuyiuestc's avatar
qiuyiuestc 已提交
1256 1257 1258 1259
 * by rt_malloc_page.
 *
 * @param page_ptr the page address to be released.
 * @param npages the number of page shall be released.
B
bernard.xiong@gmail.com 已提交
1260
 *
qiuyiuestc's avatar
qiuyiuestc 已提交
1261 1262
 * @note this function is used for RT-Thread Application Module
 */
1263
static void rt_module_free_page(rt_module_t module, void *page_ptr, rt_size_t npages)
qiuyiuestc's avatar
qiuyiuestc 已提交
1264
{
1265 1266
    int i, index;
    struct rt_page_info *page;
1267 1268 1269 1270
	rt_module_t self_module;

	self_module = rt_module_self();
	RT_ASSERT(self_module != RT_NULL);
1271

1272
    RT_DEBUG_LOG(RT_DEBUG_MODULE,"rt_module_free_page 0x%x %d\n", page_ptr, npages);
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
    rt_page_free(page_ptr, npages);

    page = (struct rt_page_info*)module->page_array;

    for(i=0; i<module->page_cnt; i++)
    {
        if (page[i].page_ptr == page_ptr)
        {
            if (page[i].npage == npages + 1)
            {
                page[i].page_ptr += npages * RT_MM_PAGE_SIZE / sizeof(rt_uint32_t);
                page[i].npage -= npages;
            }
            else if(page[i].npage == npages)
            {
                for(index=i; index<module->page_cnt-1; index++)
                {
                    page[index].page_ptr = page[index + 1].page_ptr;
                    page[index].npage = page[index + 1].npage;
                }
                page[module->page_cnt - 1].page_ptr = RT_NULL;
                page[module->page_cnt - 1].npage = 0;

                module->page_cnt--;
            }
            else
                RT_ASSERT(RT_FALSE);
1300
            self_module->page_cnt--;
1301 1302 1303 1304 1305 1306 1307

            return;
        }
    }

    /* should not be get here */
    RT_ASSERT(RT_FALSE);
qiuyiuestc's avatar
qiuyiuestc 已提交
1308
}
qiuyiuestc's avatar
qiuyiuestc 已提交
1309 1310

/*
B
bernard.xiong@gmail.com 已提交
1311
  rt_module_malloc - allocate memory block in free list
qiuyiuestc's avatar
qiuyiuestc 已提交
1312 1313 1314
*/
void *rt_module_malloc(rt_size_t size)
{
1315 1316 1317 1318
    struct rt_mem_head *b, *n, *up;
    struct rt_mem_head **prev;
    rt_uint32_t npage;
    rt_size_t nunits;
1319 1320 1321 1322
	rt_module_t self_module;

	self_module = rt_module_self();
	RT_ASSERT(self_module != RT_NULL);
1323

1324
    RT_DEBUG_NOT_IN_INTERRUPT;
1325

1326
    nunits = (size + sizeof(struct rt_mem_head) -1)/sizeof(struct rt_mem_head) + 1;
qiuyiuestc's avatar
qiuyiuestc 已提交
1327

1328 1329
    RT_ASSERT(size != 0);
    RT_ASSERT(nunits != 0);
qiuyiuestc's avatar
qiuyiuestc 已提交
1330

1331
    rt_sem_take(&mod_sem, RT_WAITING_FOREVER);
qiuyiuestc's avatar
qiuyiuestc 已提交
1332

1333
    for (prev = (struct rt_mem_head **)&self_module->mem_list;
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
        (b = *prev) != RT_NULL; prev = &(b->next))
    {
        if (b->size > nunits)
        {
            /* split memory */
            n = b + nunits;
            n->next = b->next;
            n->size = b->size - nunits;
            b->size = nunits;
            *prev = n;
qiuyiuestc's avatar
qiuyiuestc 已提交
1344

1345
            RT_DEBUG_LOG(RT_DEBUG_MODULE,"rt_module_malloc 0x%x, %d\n",b + 1, size);
1346
            rt_sem_release(&mod_sem);
D
dzzxzz 已提交
1347

1348 1349
            return (void *)(b + 1);
        }
qiuyiuestc's avatar
qiuyiuestc 已提交
1350

1351 1352 1353 1354
        if (b->size == nunits)
        {
            /* this node fit, remove this node */
            *prev = b->next;
qiuyiuestc's avatar
qiuyiuestc 已提交
1355

1356
            RT_DEBUG_LOG(RT_DEBUG_MODULE,"rt_module_malloc 0x%x, %d\n",b + 1, size);
B
bernard.xiong@gmail.com 已提交
1357

1358
            rt_sem_release(&mod_sem);
D
dzzxzz 已提交
1359

1360 1361 1362
            return (void *)(b + 1);
        }
    }
qiuyiuestc's avatar
qiuyiuestc 已提交
1363

1364 1365 1366 1367
    /* allocate pages from system heap */
    npage = (size + sizeof(struct rt_mem_head) + RT_MM_PAGE_SIZE - 1)/RT_MM_PAGE_SIZE;
    if ((up = (struct rt_mem_head *)rt_module_malloc_page(npage)) == RT_NULL)
        return RT_NULL;
qiuyiuestc's avatar
qiuyiuestc 已提交
1368

1369
    up->size = npage * RT_MM_PAGE_SIZE / sizeof(struct rt_mem_head);
B
bernard.xiong@gmail.com 已提交
1370

1371
    for (prev = (struct rt_mem_head **)&self_module->mem_list;
1372 1373 1374 1375 1376
        (b = *prev) != RT_NULL; prev = &(b->next))
    {
        if (b > up + up->size)
            break;
    }
qiuyiuestc's avatar
qiuyiuestc 已提交
1377

1378 1379
    up->next = b;
    *prev = up;
qiuyiuestc's avatar
qiuyiuestc 已提交
1380

1381
    rt_sem_release(&mod_sem);
D
dzzxzz 已提交
1382

1383
    return rt_module_malloc(size);
qiuyiuestc's avatar
qiuyiuestc 已提交
1384 1385 1386
}

/*
qiuyiuestc's avatar
qiuyiuestc 已提交
1387
  rt_module_free - free memory block in free list
qiuyiuestc's avatar
qiuyiuestc 已提交
1388 1389 1390
*/
void rt_module_free(rt_module_t module, void *addr)
{
1391 1392 1393 1394 1395 1396 1397 1398
    struct rt_mem_head *b, *n, *r;
    struct rt_mem_head **prev;

    RT_DEBUG_NOT_IN_INTERRUPT;

    RT_ASSERT(addr);
    RT_ASSERT((((rt_uint32_t)addr) & (sizeof(struct rt_mem_head) -1)) == 0);

1399
    RT_DEBUG_LOG(RT_DEBUG_MODULE,"rt_module_free 0x%x\n", addr);
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518

    rt_sem_take(&mod_sem, RT_WAITING_FOREVER);

    n = (struct rt_mem_head *)addr - 1;
    prev = (struct rt_mem_head **)&module->mem_list;

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

        if (b + b->size == n && ((rt_uint32_t)n % RT_MM_PAGE_SIZE != 0))
        {
            if (b + (b->size + n->size) == b->next)
            {
                b->size += b->next->size + n->size;
                b->next = b->next->next;
            }
            else
                b->size += n->size;

            if ((rt_uint32_t)b % RT_MM_PAGE_SIZE == 0)
            {
                int npage = b->size * sizeof(struct rt_page_info) / RT_MM_PAGE_SIZE;
                if (npage > 0)
                {
                    if ((b->size * sizeof(struct rt_page_info) % RT_MM_PAGE_SIZE) != 0)
                    {
                        rt_size_t nunits = npage * RT_MM_PAGE_SIZE / sizeof(struct rt_mem_head);
                        /* split memory */
                        r = b + nunits;
                        r->next = b->next;
                        r->size = b->size - nunits;
                        *prev = r;
                    }
                    else
                    {
                        *prev = b->next;
                    }

                    rt_module_free_page(module, b, npage);
                }
            }

            /* unlock */
            rt_sem_release(&mod_sem);

            return;
        }

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

            if ((rt_uint32_t)n % RT_MM_PAGE_SIZE == 0)
            {
                int npage = n->size * sizeof(struct rt_page_info) / RT_MM_PAGE_SIZE;
                if (npage > 0)
                {
                    if ((n->size * sizeof(struct rt_page_info) % RT_MM_PAGE_SIZE) != 0)
                    {
                        rt_size_t nunits = npage * RT_MM_PAGE_SIZE / sizeof(struct rt_mem_head);
                        /* split memory */
                        r = n + nunits;
                        r->next = n->next;
                        r->size = n->size - nunits;
                        *prev = r;
                    }
                    else *prev = n->next;

                    rt_module_free_page(module, n, npage);
                }
            }
            else
            {
                *prev = n;
            }

            /* unlock */
            rt_sem_release(&mod_sem);

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

        prev = &(b->next);
    }

    if ((rt_uint32_t)n % RT_MM_PAGE_SIZE == 0)
    {
        int npage = n->size * sizeof(struct rt_page_info) / RT_MM_PAGE_SIZE;
        if (npage > 0)
        {
            rt_module_free_page(module, n, npage);
            if (n->size % RT_MM_PAGE_SIZE != 0)
            {
                rt_size_t nunits = npage * RT_MM_PAGE_SIZE / sizeof(struct rt_mem_head);
                /* split memory */
                r = n + nunits;
                r->next = b;
                r->size = n->size - nunits;
                *prev = r;
            }
            else
            {
                *prev = b;
            }
        }
    }
    else
    {
        n->next = b;
        *prev = n;
    }

    /* unlock */
    rt_sem_release(&mod_sem);
qiuyiuestc's avatar
qiuyiuestc 已提交
1519 1520 1521 1522 1523 1524 1525
}

/*
  rt_module_realloc - realloc memory block in free list
*/
void *rt_module_realloc(void *ptr, rt_size_t size)
{
1526 1527
    struct rt_mem_head *b, *p, *prev, *tmpp;
    rt_size_t nunits;
1528 1529 1530 1531
	rt_module_t self_module;

	self_module = rt_module_self();
	RT_ASSERT(self_module != RT_NULL);
1532 1533 1534 1535 1536 1537 1538

    RT_DEBUG_NOT_IN_INTERRUPT;

    if (!ptr)
        return rt_module_malloc(size);
    if (size == 0)
    {
1539
        rt_module_free(self_module, ptr);
1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556

        return RT_NULL;
    }

    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;
1557
            rt_module_free(self_module, (void *)(p + 1));
1558 1559 1560 1561 1562 1563 1564

            return (void *)(b + 1);
        }
    }
    else
    {
        /* more space then required */
1565
        prev = (struct rt_mem_head *)self_module->mem_list;
1566 1567 1568
        for (p = prev->next; p != (b->size + b) && p != RT_NULL; prev = p, p = p->next)
            break;

1569 1570
        /* available block after ap in freelist */
        if (p != RT_NULL && (p->size >= (nunits - (b->size))) &&  p == (b + b->size))
1571 1572
        {
            /* perfect match */
1573
            if (p->size == (nunits - (b->size)))
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585
            {
                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;
1586

1587 1588 1589 1590 1591
                /* new size for p */
                p->size = tmpp->size + b->size - nunits;
                b->size = nunits;
                prev->next = p;
            }
1592
            self_module->mem_list = (void *)prev;
1593 1594 1595 1596 1597 1598 1599

            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)));
1600
            rt_module_free(self_module, (void *)(b + 1));
1601 1602 1603 1604

            return (void *)(p);
        }
    }
qiuyiuestc's avatar
qiuyiuestc 已提交
1605
}
qiuyiuestc's avatar
qiuyiuestc 已提交
1606 1607 1608

#ifdef RT_USING_FINSH
#include <finsh.h>
D
dzzxzz 已提交
1609
void list_memlist(const char *name)
qiuyiuestc's avatar
qiuyiuestc 已提交
1610
{
1611 1612 1613 1614 1615 1616 1617 1618
    rt_module_t module;
    struct rt_mem_head **prev;
    struct rt_mem_head *b;

    module = rt_module_find(name);
    if (module == RT_NULL)
        return;

1619
    for (prev = (struct rt_mem_head **)&module->mem_list;
1620 1621 1622 1623
        (b = *prev) != RT_NULL; prev = &(b->next))
    {
        rt_kprintf("0x%x--%d\n", b, b->size * sizeof(struct rt_mem_head));
    }
qiuyiuestc's avatar
qiuyiuestc 已提交
1624 1625 1626
}
FINSH_FUNCTION_EXPORT(list_memlist, list module free memory information)

D
dzzxzz 已提交
1627
void list_mempage(const char *name)
qiuyiuestc's avatar
qiuyiuestc 已提交
1628
{
1629 1630 1631
    rt_module_t module;
    struct rt_page_info *page;
    int i;
qiuyiuestc's avatar
qiuyiuestc 已提交
1632

1633 1634 1635
    module = rt_module_find(name);
    if (module == RT_NULL)
        return;
qiuyiuestc's avatar
qiuyiuestc 已提交
1636

1637
    page = (struct rt_page_info*)module->page_array;
qiuyiuestc's avatar
qiuyiuestc 已提交
1638

1639 1640 1641 1642
    for (i=0; i<module->page_cnt; i++)
    {
        rt_kprintf("0x%x--%d\n", page[i].page_ptr, page[i].npage);
    }
qiuyiuestc's avatar
qiuyiuestc 已提交
1643 1644 1645
}
FINSH_FUNCTION_EXPORT(list_mempage, list module using memory page information)
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
1646

qiuyiuestc's avatar
qiuyiuestc 已提交
1647
#endif
qiuyiuestc's avatar
qiuyiuestc 已提交
1648 1649

#endif