xref: /freebsd/libexec/rtld-elf/aarch64/rtld_start.S (revision f4b37ed0f8b307b1f3f0f630ca725d68f1dff30d)
1/*-
2 * Copyright (c) 2014 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Andrew Turner under
6 * sponsorship from the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <machine/asm.h>
31__FBSDID("$FreeBSD$");
32
33ENTRY(.rtld_start)
34	mov	x19, x0		/* Put ps_strings in a callee-saved register */
35	mov	x20, sp		/* And the stack pointer */
36
37	/* Handle the old style stack */
38	/* TODO: Remove this when the kernel correctly aligns the stack */
39	cbnz	x0, 1f
40	mov	x0, sp		/* sp points to the args */
41	and	sp, x0, #~0xf	/* Align the stack as needed */
42
431:	sub	sp, sp, #16	/* Make room for obj_main & exit proc */
44
45	mov	x1, sp		/* exit_proc */
46	add	x2, x1, #8	/* obj_main */
47	bl	_rtld		/* Call the loader */
48	mov	x8, x0		/* Backup the entry point */
49
50	ldr	x2, [sp]	/* Load cleanup */
51	ldr	x1, [sp, #8]	/* Load obj_main */
52	mov	x0, x19		/* Restore ps_strings */
53	mov	sp, x20		/* Restore the stack pointer */
54	br	x8		/* Jump to the entry point */
55END(.rtld_start)
56
57/*
58 * sp + 0 = &GOT[x + 3]
59 * sp + 8 = RA
60 * x16 = &GOT[2]
61 * x17 = &_rtld_bind_start
62 */
63ENTRY(_rtld_bind_start)
64	mov	x17, sp
65
66	/* Save the arguments */
67	stp	x0, x1, [sp, #-16]!
68	stp	x2, x3, [sp, #-16]!
69	stp	x4, x5, [sp, #-16]!
70	stp	x6, x7, [sp, #-16]!
71	stp	x8, xzr, [sp, #-16]!
72
73	/* Save any floating-point arguments */
74	stp	q0, q1, [sp, #-32]!
75	stp	q2, q3, [sp, #-32]!
76	stp	q4, q5, [sp, #-32]!
77	stp	q6, q7, [sp, #-32]!
78
79	/* Calculate reloff */
80	ldr	x2, [x17, #0]	/* Get the address of the entry */
81	sub	x1, x2, x16	/* Find its offset */
82	sub	x1, x1, #8	/* Adjust for x16 not being at offset 0 */
83	/* Each rela item has 3 entriesso we need reloff = 3 * index */
84	lsl	x3, x1, #1	/* x3 = 2 * offset */
85	add	x1, x1, x3	/* x1 = x3 + offset = 3 * offset */
86
87	/* Load obj */
88	ldr	x0, [x16, #-8]
89
90	/* Call into rtld */
91	bl	_rtld_bind
92
93	/* Restore the registers saved by the plt code */
94	ldp	xzr, x30, [sp, #(5 * 16 + 4 * 32)]
95
96	/* Backup the address to branch to */
97	mov	x16, x0
98
99	/* restore the arguments */
100	ldp	q6, q7, [sp], #32
101	ldp	q4, q5, [sp], #32
102	ldp	q2, q3, [sp], #32
103	ldp	q0, q1, [sp], #32
104	ldp	x8, xzr, [sp], #16
105	ldp	x6, x7, [sp], #16
106	ldp	x4, x5, [sp], #16
107	ldp	x2, x3, [sp], #16
108	ldp	x0, x1, [sp], #16
109	/* And the part of the stack the plt entry handled */
110	add	sp, sp, #16
111
112	/* Call into the correct function */
113	br	x16
114END(_rtld_bind_start)
115
116/*
117 * uint64_t _rtld_tlsdesc(struct tlsdesc *);
118 *
119 * struct tlsdesc {
120 *  uint64_t ptr;
121 *  uint64_t data;
122 * };
123 *
124 * Returns the data.
125 */
126ENTRY(_rtld_tlsdesc)
127	ldr	x0, [x0, #8]
128	ret
129END(_rtld_tlsdesc)
130
131/*
132 * uint64_t _rtld_tlsdesc_dynamic(struct tlsdesc *);
133 *
134 * TODO: We could lookup the saved index here to skip saving the entire stack.
135 */
136ENTRY(_rtld_tlsdesc_dynamic)
137	/* Store any registers we may use in rtld_tlsdesc_handle */
138	stp	x29, x30, [sp, #-(10 * 16)]!
139	mov	x29, sp
140	stp	x1, x2,   [sp, #(1 * 16)]
141	stp	x3, x4,   [sp, #(2 * 16)]
142	stp	x5, x6,   [sp, #(3 * 16)]
143	stp	x7, x8,   [sp, #(4 * 16)]
144	stp	x9, x10,  [sp, #(5 * 16)]
145	stp	x11, x12, [sp, #(6 * 16)]
146	stp	x13, x14, [sp, #(7 * 16)]
147	stp	x15, x16, [sp, #(8 * 16)]
148	stp	x17, x18, [sp, #(9 * 16)]
149
150	/* Find the tls offset */
151	ldr	x0, [x0, #8]
152	mov	x1, #1
153	bl	rtld_tlsdesc_handle
154
155	/* Restore the registers */
156	ldp	x17, x18, [sp, #(9 * 16)]
157	ldp	x15, x16, [sp, #(8 * 16)]
158	ldp	x13, x14, [sp, #(7 * 16)]
159	ldp	x11, x12, [sp, #(6 * 16)]
160	ldp	x9, x10,  [sp, #(5 * 16)]
161	ldp	x7, x8,   [sp, #(4 * 16)]
162	ldp	x5, x6,   [sp, #(3 * 16)]
163	ldp	x3, x4,   [sp, #(2 * 16)]
164	ldp	x1, x2,   [sp, #(1 * 16)]
165	ldp	x29, x30, [sp], #(10 * 16)
166
167	ret
168END(_rtld_tlsdesc_dynamic)
169