crtreloc.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
  2. written by Alexandre Oliva <aoliva@redhat.com>
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public License as
  6. published by the Free Software Foundation; either version 2.1 of the
  7. License, or (at your option) any later version.
  8. In addition to the permissions in the GNU Lesser General Public
  9. License, the Free Software Foundation gives you unlimited
  10. permission to link the compiled version of this file with other
  11. programs, and to distribute those programs without any restriction
  12. coming from the use of this file. (The GNU Lesser General Public
  13. License restrictions do apply in other respects; for example, they
  14. cover modification of the file, and distribution when not linked
  15. into another program.)
  16. The GNU C Library is distributed in the hope that it will be useful,
  17. but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. Library General Public License for more details.
  20. You should have received a copy of the GNU Lesser General Public
  21. License along with the GNU C Library; see the file COPYING.LIB. If
  22. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  23. Cambridge, MA 02139, USA. */
  24. #ifdef __BFIN_FDPIC__
  25. #include <sys/types.h>
  26. #include <link.h>
  27. /* This file is to be compiled into crt object files, to enable
  28. executables to easily self-relocate. */
  29. union word {
  30. char c[4];
  31. void *v;
  32. };
  33. /* Compute the runtime address of pointer in the range [p,e), and then
  34. map the pointer pointed by it. */
  35. inline static void ***
  36. reloc_range_indirect (void ***p, void ***e,
  37. const struct elf32_fdpic_loadmap *map)
  38. {
  39. while (p < e)
  40. {
  41. void *ptr = __reloc_pointer (*p, map);
  42. if (ptr)
  43. {
  44. void *pt;
  45. if ((long)ptr & 3)
  46. {
  47. unsigned char *c = ptr;
  48. int i;
  49. unsigned long v = 0;
  50. for (i = 0; i < 4; i++)
  51. v |= c[i] << 8 * i;
  52. pt = (void *)v;
  53. }
  54. else
  55. pt = *(void**)ptr;
  56. pt = __reloc_pointer (pt, map);
  57. if ((long)ptr & 3)
  58. {
  59. unsigned char *c = ptr;
  60. int i;
  61. unsigned long v = (unsigned long)pt;
  62. for (i = 0; i < 4; i++, v >>= 8)
  63. c[i] = v;
  64. }
  65. else
  66. *(void**)ptr = pt;
  67. }
  68. p++;
  69. }
  70. return p;
  71. }
  72. /* Call __reloc_range_indirect for the given range except for the last
  73. entry, whose contents are only relocated. It's expected to hold
  74. the GOT value. */
  75. void* attribute_hidden
  76. __self_reloc (const struct elf32_fdpic_loadmap *map,
  77. void ***p, void ***e)
  78. {
  79. p = reloc_range_indirect (p, e-1, map);
  80. if (p >= e)
  81. return (void*)-1;
  82. return __reloc_pointer (*p, map);
  83. }
  84. #if 0
  85. /* These are other functions that might be useful, but that we don't
  86. need. */
  87. /* Remap pointers in [p,e). */
  88. inline static void**
  89. reloc_range (void **p, void **e,
  90. const struct elf32_fdpic_loadmap *map)
  91. {
  92. while (p < e)
  93. {
  94. *p = __reloc_pointer (*p, map);
  95. p++;
  96. }
  97. return p;
  98. }
  99. /* Remap p, adjust e by the same offset, then map the pointers in the
  100. range determined by them. */
  101. void attribute_hidden
  102. __reloc_range (const struct elf32_fdpic_loadmap *map,
  103. void **p, void **e)
  104. {
  105. void **old = p;
  106. p = __reloc_pointer (p, map);
  107. e += p - old;
  108. reloc_range (p, e, map);
  109. }
  110. /* Remap p, adjust e by the same offset, then map pointers referenced
  111. by the (unadjusted) pointers in the range. Return the relocated
  112. value of the last pointer in the range. */
  113. void* attribute_hidden
  114. __reloc_range_indirect (const struct elf32_fdpic_loadmap *map,
  115. void ***p, void ***e)
  116. {
  117. void ***old = p;
  118. p = __reloc_pointer (p, map);
  119. e += p - old;
  120. return reloc_range_indirect (p, e, map);
  121. }
  122. #endif
  123. #endif /* __BFIN_FDPIC__ */