crtreloc.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. #define _GNU_SOURCE 1
  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. #define hidden __attribute__((__visibility__("hidden")))
  30. /* Compute the runtime address of pointer in the range [p,e), and then
  31. map the pointer pointed by it. */
  32. inline static void ***
  33. reloc_range_indirect (void ***p, void ***e,
  34. const struct elf32_fdpic_loadmap *map)
  35. {
  36. while (p < e)
  37. {
  38. void *ptr = __reloc_pointer (*p, map);
  39. if (ptr)
  40. {
  41. void *pt;
  42. if ((long)ptr & 3)
  43. __builtin_memcpy(&pt, ptr, sizeof(pt));
  44. else
  45. pt = *(void**)ptr;
  46. pt = __reloc_pointer (pt, map);
  47. if ((long)ptr & 3)
  48. __builtin_memcpy(ptr, &pt, sizeof(pt));
  49. else
  50. *(void**)ptr = pt;
  51. }
  52. p++;
  53. }
  54. return p;
  55. }
  56. /* Call __reloc_range_indirect for the given range except for the last
  57. entry, whose contents are only relocated. It's expected to hold
  58. the GOT value. */
  59. void* hidden
  60. __self_reloc (const struct elf32_fdpic_loadmap *map,
  61. void ***p, void ***e)
  62. {
  63. p = reloc_range_indirect (p, e-1, map);
  64. if (p >= e)
  65. return (void*)-1;
  66. return __reloc_pointer (*p, map);
  67. }
  68. #if 0
  69. /* These are other functions that might be useful, but that we don't
  70. need. */
  71. /* Remap pointers in [p,e). */
  72. inline static void**
  73. reloc_range (void **p, void **e,
  74. const struct elf32_fdpic_loadmap *map)
  75. {
  76. while (p < e)
  77. {
  78. *p = __reloc_pointer (*p, map);
  79. p++;
  80. }
  81. return p;
  82. }
  83. /* Remap p, adjust e by the same offset, then map the pointers in the
  84. range determined by them. */
  85. void hidden
  86. __reloc_range (const struct elf32_fdpic_loadmap *map,
  87. void **p, void **e)
  88. {
  89. void **old = p;
  90. p = __reloc_pointer (p, map);
  91. e += p - old;
  92. reloc_range (p, e, map);
  93. }
  94. /* Remap p, adjust e by the same offset, then map pointers referenced
  95. by the (unadjusted) pointers in the range. Return the relocated
  96. value of the last pointer in the range. */
  97. void* hidden
  98. __reloc_range_indirect (const struct elf32_fdpic_loadmap *map,
  99. void ***p, void ***e)
  100. {
  101. void ***old = p;
  102. p = __reloc_pointer (p, map);
  103. e += p - old;
  104. return reloc_range_indirect (p, e, map);
  105. }
  106. #endif