Re: RTL arm load failed

2014-11-03 Thread Chris Johns

On 2/11/2014 8:28 pm, Peng Fan wrote:

Hi,

qemu-system-arm -no-reboot -net none -nographic -M realview-pbx-a9 -m
256M -kernel `find . -name dl01.exe` -s -S

*** BEGIN OF TEST libdl (RTL) Loader 1 ***
load: /dl-o1.o
rtl: unsupported section: 15: type=1879048195 flags=00
handle: 0x212b10 has unresolved externals



Fixed on head ...

$ qemu-system-arm -no-reboot -net none -monitor none -serial stdio 
-nographic -M realview-pbx-a9   -m 256M -kernel `find . -name dl01.exe`



*** BEGIN OF TEST libdl (RTL) Loader 1 ***
load: /dl-o1.o
handle: 0x2137d8 loaded
Loaded module: argc:2 
[../../../../../../../../rtems.master/c/src/../../testsuites/libtests/dl01/dl-o1.c]

  0: Line 1
  1: Line 2
Loaded module: argc:3 
[../../../../../../../../rtems.master/c/src/../../testsuites/libtests/dl01/dl-o1.c]

  0: Call 2, line 1
  1: Call 2, line 2
  2: Call 2, line 3
handle: 0x2137d8 closed
*** END OF TEST libdl (RTL) Loader 1 ***

Chris
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


Re: RTL arm load failed

2014-11-02 Thread Chris Johns

On 2/11/2014 8:28 pm, Peng Fan wrote:


qemu-system-arm -no-reboot -net none -nographic -M realview-pbx-a9 -m
256M -kernel `find . -name dl01.exe` -s -S

*** BEGIN OF TEST libdl (RTL) Loader 1 ***
load: /dl-o1.o
rtl: unsupported section: 15: type=1879048195 flags=00
handle: 0x212b10 has unresolved externals



Thanks for the testing.


dl-o1.o can not be correctly loaded, because of unresolved symbols.
I do some debug using remote gdb and found it is the reloc entry
references local symbols named "LCx" saying "LC0", "LC1", "LC2".

Freenix@linux-jyl1:~/per/new/build-arm> arm-rtems4.11-readelf -s `find .
-name dl-o1.o`

Symbol table '.symtab' contains 22 entries:
Num:Value  Size TypeBind   Vis  Ndx Name
  0:  0 NOTYPE  LOCAL  DEFAULT  UND
  1:  0 FILELOCAL  DEFAULT  ABS dl-o1.c
  2:  0 SECTION LOCAL  DEFAULT1
  3:  0 SECTION LOCAL  DEFAULT3
  4:  0 SECTION LOCAL  DEFAULT4
  5:  0 SECTION LOCAL  DEFAULT5
  6:  0 NOTYPE  LOCAL  DEFAULT5 $d
* 7:  0 NOTYPE  LOCAL  DEFAULT5 .LC0*
* 8: 0020 0 NOTYPE  LOCAL  DEFAULT5 .LC1*
* 9: 0068 0 NOTYPE  LOCAL  DEFAULT5 .LC2*
 10:  0 NOTYPE  LOCAL  DEFAULT1 $t
 11:  0 SECTION LOCAL  DEFAULT6
 12:  0 SECTION LOCAL  DEFAULT8
 13:  0 SECTION LOCAL  DEFAULT9
 14:  0 SECTION LOCAL  DEFAULT   11
 15:  0 SECTION LOCAL  DEFAULT   13
 16: 0010 0 NOTYPE  LOCAL  DEFAULT   16 $d
 17:  0 SECTION LOCAL  DEFAULT   16
 18:  0 SECTION LOCAL  DEFAULT   14
 19:  0 SECTION LOCAL  DEFAULT   15
 20: 000188 FUNCGLOBAL DEFAULT1 rtems_main
 21:  0 NOTYPE  GLOBAL DEFAULT  UND printf

The LCx symbols's type is NOTYPE and not included in the rtl symbol
table(local symbol may should not be included). In rtl-elf.c, line 387
see following, the LCx symbols are not included, so fails. I prefer that
if unresolved symbols detected in rtl, detailed info should be print
out, but i found no debug msg about this.


Unresolved symbols may not be an error. If you have 2 files dependent on 
each other one will be loaded with unresolved externals until the other 
is loaded. The loader handles this and when the second dependent module 
is loaded the unresolved symbols are resolved. This means the loader is 
not in a position to have a clear enough picture to decide if there are 
unresolved symbols. The application loading must decide when to check, 
check and raise an error when it thinks there should be no errors.




384 /*
385  * Only keep the functions and global or weak symbols.
386  */
387 if ((ELF_ST_TYPE (symbol.st_info) == STT_OBJECT) ||
388 (ELF_ST_TYPE (symbol.st_info) == STT_FUNC))

I think this cause arm load failed.


Interesting. Nothing has changed here as ELF should always have these 
symbols. It must be this test does something our testing before did not 
highlight.


I also suspect we will have issues with the RAP files. Let me explain. 
The code that was in my personal repo placed all global and local 
symbols into a single 'externals' symbol table. This worked because we 
had the awk hack to create the base image symbol table that used nm and 
nm only provided the global symbols. When I came to do the rtems-syms 
tool that takes a base kernel image and creates an exported symbols 
table I incorrectly ended up with the local symbols of the kernel in the 
symbol table and embedding that symbol table in the base image via the 
double link pass method failed on the second link. As a result I cleaned 
up the symbol code to have the rld::symbols classes load symbols into 
separate global, weak and local table. I suspect the RAP code is now 
only referencing the global table and so local symbols are not being 
included in the symbol table. I need to review this code.



FYI, rap file are not included in the dl test?


This is coming as I have time. It is needed.

Chris
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


RTL arm load failed

2014-11-02 Thread Peng Fan
Hi,

qemu-system-arm -no-reboot -net none -nographic -M realview-pbx-a9 -m 256M
-kernel `find . -name dl01.exe` -s -S

*** BEGIN OF TEST libdl (RTL) Loader 1 ***
load: /dl-o1.o
rtl: unsupported section: 15: type=1879048195 flags=00
handle: 0x212b10 has unresolved externals

dl-o1.o can not be correctly loaded, because of unresolved symbols.
I do some debug using remote gdb and found it is the reloc entry references
local symbols named "LCx" saying "LC0", "LC1", "LC2".

Freenix@linux-jyl1:~/per/new/build-arm> arm-rtems4.11-readelf -s `find .
-name dl-o1.o`

Symbol table '.symtab' contains 22 entries:
   Num:Value  Size TypeBind   Vis  Ndx Name
 0:  0 NOTYPE  LOCAL  DEFAULT  UND
 1:  0 FILELOCAL  DEFAULT  ABS dl-o1.c
 2:  0 SECTION LOCAL  DEFAULT1
 3:  0 SECTION LOCAL  DEFAULT3
 4:  0 SECTION LOCAL  DEFAULT4
 5:  0 SECTION LOCAL  DEFAULT5
 6:  0 NOTYPE  LOCAL  DEFAULT5 $d
* 7:  0 NOTYPE  LOCAL  DEFAULT5 .LC0*
* 8: 0020 0 NOTYPE  LOCAL  DEFAULT5 .LC1*
* 9: 0068 0 NOTYPE  LOCAL  DEFAULT5 .LC2*
10:  0 NOTYPE  LOCAL  DEFAULT1 $t
11:  0 SECTION LOCAL  DEFAULT6
12:  0 SECTION LOCAL  DEFAULT8
13:  0 SECTION LOCAL  DEFAULT9
14:  0 SECTION LOCAL  DEFAULT   11
15:  0 SECTION LOCAL  DEFAULT   13
16: 0010 0 NOTYPE  LOCAL  DEFAULT   16 $d
17:  0 SECTION LOCAL  DEFAULT   16
18:  0 SECTION LOCAL  DEFAULT   14
19:  0 SECTION LOCAL  DEFAULT   15
20: 000188 FUNCGLOBAL DEFAULT1 rtems_main
21:  0 NOTYPE  GLOBAL DEFAULT  UND printf

The LCx symbols's type is NOTYPE and not included in the rtl symbol
table(local symbol may should not be included). In rtl-elf.c, line 387 see
following, the LCx symbols are not included, so fails. I prefer that if
unresolved symbols detected in rtl, detailed info should be print out, but
i found no debug msg about this.

384 /*

385  * Only keep the functions and global or weak symbols.

386  */

387 if ((ELF_ST_TYPE (symbol.st_info) == STT_OBJECT) ||

388 (ELF_ST_TYPE (symbol.st_info) == STT_FUNC))

I think this cause arm load failed. FYI, rap file are not included in the
dl test?

Regards,
Peng.
___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel