elfso.asm
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:3k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. ; test source file for assembling to ELF shared library
  2. ; build with:
  3. ;    nasm -f elf elfso.asm
  4. ;    ld -shared -o elfso.so elfso.o
  5. ; test with:
  6. ;    gcc -o elfso elftest.c ./elfso.so
  7. ;    ./elfso
  8. ; (assuming your gcc is ELF, and you're running bash)
  9. ; This file should test the following:
  10. ; [1] Define and export a global text-section symbol
  11. ; [2] Define and export a global data-section symbol
  12. ; [3] Define and export a global BSS-section symbol
  13. ; [4] Define a non-global text-section symbol
  14. ; [5] Define a non-global data-section symbol
  15. ; [6] Define a non-global BSS-section symbol
  16. ; [7] Define a COMMON symbol
  17. ; [8] Define a NASM local label
  18. ; [9] Reference a NASM local label
  19. ; [10] Import an external symbol
  20. ; [11] Make a PC-relative call to an external symbol
  21. ; [12] Reference a text-section symbol in the text section
  22. ; [13] Reference a data-section symbol in the text section
  23. ; [14] Reference a BSS-section symbol in the text section
  24. ; [15] Reference a text-section symbol in the data section
  25. ; [16] Reference a data-section symbol in the data section
  26. ; [17] Reference a BSS-section symbol in the data section
  27.   BITS 32
  28.   GLOBAL lrotate:function ; [1]
  29.   GLOBAL greet:function ; [1]
  30.   GLOBAL asmstr:data asmstr.end-asmstr ; [2]
  31.   GLOBAL textptr:data 4 ; [2]
  32.   GLOBAL selfptr:data 4 ; [2]
  33.   GLOBAL integer:data 4 ; [3]
  34.   EXTERN printf ; [10]
  35.   COMMON commvar 4:4 ; [7]
  36.   EXTERN _GLOBAL_OFFSET_TABLE_
  37.   SECTION .text
  38. ; prototype: long lrotate(long x, int num);
  39. lrotate: ; [1]
  40.   push ebp
  41.   mov ebp,esp
  42.   mov eax,[ebp+8]
  43.   mov ecx,[ebp+12]
  44. .label   rol eax,1 ; [4] [8]
  45.   loop .label ; [9] [12]
  46.   mov esp,ebp
  47.   pop ebp
  48.   ret
  49. ; prototype: void greet(void);
  50. greet   push ebx ; we'll use EBX for GOT, so save it
  51.   call .getgot
  52. .getgot:  pop ebx
  53.   add ebx,_GLOBAL_OFFSET_TABLE_ + $$ - .getgot wrt ..gotpc
  54.   mov eax,[ebx+integer wrt ..got] ; [14]
  55.   mov eax,[eax]
  56.   inc eax
  57.   mov [ebx+localint wrt ..gotoff],eax ; [14]
  58.   mov eax,[ebx+commvar wrt ..got]
  59.   push dword [eax]
  60.   mov eax,[ebx+localptr wrt ..gotoff] ; [13]
  61.   push dword [eax]
  62.   mov eax,[ebx+integer wrt ..got] ; [1] [14]
  63.   push dword [eax]
  64.   lea eax,[ebx+printfstr wrt ..gotoff]
  65.   push eax ; [13]
  66.   call printf wrt ..plt ; [11]
  67.   add esp,16
  68.   pop ebx
  69.   ret
  70.   SECTION .data
  71. ; a string
  72. asmstr   db 'hello, world', 0 ; [2]
  73. .end
  74. ; a string for Printf
  75. printfstr db "integer==%d, localint==%d, commvar=%d"
  76.   db 10, 0
  77. ; some pointers
  78. localptr  dd localint ; [5] [17]
  79. textptr   dd greet wrt ..sym ; [15]
  80. selfptr   dd selfptr wrt ..sym ; [16]
  81.   SECTION .bss
  82. ; an integer
  83. integer   resd 1 ; [3]
  84. ; a local integer
  85. localint  resd 1 ; [6]