1 /* Variable initialization. AArch64 version.
2 Copyright (C) 2001-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
24 _dl_var_init (void *array
[])
26 /* It has to match "variables" below. */
32 GLRO(dl_pagesize
) = *((size_t *) array
[DL_PAGESIZE
]);
37 static void *variables
[] =
43 _dl_unprotect_relro (struct link_map
*l
)
45 ElfW(Addr
) start
= ((l
->l_addr
+ l
->l_relro_addr
)
46 & ~(GLRO(dl_pagesize
) - 1));
47 ElfW(Addr
) end
= ((l
->l_addr
+ l
->l_relro_addr
+ l
->l_relro_size
)
48 & ~(GLRO(dl_pagesize
) - 1));
51 __mprotect ((void *) start
, end
- start
, PROT_READ
| PROT_WRITE
);
55 _dl_static_init (struct link_map
*l
)
57 struct link_map
*rtld_map
= l
;
58 struct r_scope_elem
**scope
;
59 const ElfW(Sym
) *ref
= NULL
;
64 loadbase
= _dl_lookup_symbol_x ("_dl_var_init", l
, &ref
, l
->l_local_scope
,
67 for (scope
= l
->l_local_scope
; *scope
!= NULL
; scope
++)
68 for (i
= 0; i
< (*scope
)->r_nlist
; i
++)
69 if ((*scope
)->r_list
[i
] == loadbase
)
71 rtld_map
= (*scope
)->r_list
[i
];
77 f
= (void (*) (void *[])) DL_SYMBOL_ADDRESS (loadbase
, ref
);
78 _dl_unprotect_relro (rtld_map
);
80 _dl_protect_relro (rtld_map
);