-
Notifications
You must be signed in to change notification settings - Fork 0
/
initfini.c
312 lines (272 loc) · 7.09 KB
/
initfini.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/*
* This file is part of UEFI GPT fdisk.
*
* UEFI GPT fdisk is a port of GPT fdisk to UEFI/BIOS.
* UEFI GPT fdisk est un portage de GPT fdisk vers UEFI/BIOS.
* Ce fichier a été initié par Bernard Burette en février 2014.
*
* Original work is copyleft Bernard Burette.
* Modifications are copyleft Joseph Zeller.
*
* This program is distributed under the terms of the GNU GPL version 2.
* La diffusion de ce code est faite selon les termes de la GPL GNU version 2.
*/
/**
* Initialization and finalization.
*/
/* en premier */
#include "uefi.h"
#include "debug.h"
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
/*
* Arguments à passer aux fonctions d'init.
*/
static char* argv[] = { "gdisk" , NULL , NULL } ;
static char* envp[] = { NULL } ;
/**
* Initialization symbols defined in the elf-$(ARCH).lds script.
* These have been renamed to avoid matching the GNU-EFI defaults.
*/
extern void ( * init_array_start[] ) ( int , char ** , char ** ) ;
extern void ( * init_array_end[] ) ( int , char ** , char ** ) ;
extern void ( * fini_array_start[] ) ( void ) ;
extern void ( * fini_array_end[] ) ( void ) ;
/**
* Fonction interne pour enregistrer une fonction de fin d'exécution.
*/
static void __internal_atexit( void (*func) (void) , void *arg ) ;
/**
* Initialization function called from _start in start-x86_64.S before
* passing control to efi_main(). _call_init will call all functions in
* the .init_array table where the start and end are provided by the
* init_array_start and init_array_end symbols.
*/
void
_call_init()
{
size_t size ;
size_t i;
UEFI_dprintf( D_INIT | D_INFO , "Entre dans _call_init()\n" ) ;
size = init_array_end - init_array_start;
UEFI_dprintf( D_INIT | D_INFO , "__init_array[%ld]\n" , size ) ;
/* debug : affiche les adresses des premières fonctions */
for (i = 0; i < size; i++) {
UEFI_dprintf( D_INIT | D_INFO , " __init_array[%ld] = %p\n" ,
i , init_array_start[ i ] ) ;
if ( i >= 4 ) {
UEFI_dprintf( D_INIT | D_INFO , " ...\n" ) ;
break ;
}
}
for (i = 0; i < size; i++) {
void (* appel) ( int , char ** , char ** ) ;
appel = init_array_start[ i ] ;
UEFI_dprintf( D_INIT | D_INFO | D_DEBUG ,
"Appelle __init_array[%ld] = %p -" , i , appel ) ;
#ifdef EFI_DEBUG
/* le début du code de cette fonction sur 12 octets */
size_t j ;
if ( uefi_debug_mask( D_INIT | D_INFO ) ) {
for ( j = 0 ; j < 12 ; j ++ ) {
unsigned char * x = (unsigned char *) appel ;
UEFI_dprintf( D_INIT | D_INFO , " %02x" ,
x[ j ] ) ;
}
UEFI_dprintf( D_INIT | D_INFO , "\n--> Touche : " ) ;
UEFI_console_getchar() ;
UEFI_console_putchar( '\n' , 1 ) ;
}
#endif
/* l'appelle */
( * appel )( 1 , argv , envp ) ;
UEFI_dprintf( D_INIT | D_INFO , "<--\n" ) ;
}
/* enregistre les fonctions de fin */
size = fini_array_end - fini_array_start;
UEFI_dprintf( D_INIT | D_INFO , "__fini_array[%ld]\n" , size ) ;
for (i = 0; i < size; i++) {
void (* to_call) (void) ;
to_call = fini_array_start[ i ] ;
__internal_atexit( to_call , 0 ) ;
}
UEFI_dprintf( D_INIT | D_INFO , "Quitte _call_init()\n" ) ;
}
/**
* Un truc lié à C++.
*/
int __dso_handle ;
/**
* Types des fonctions de fin d'excution.
*/
enum {
ef_free = 0 /* `ef_free' MUST be zero! */ ,
ef_us , ef_on , ef_at , ef_cxa
} ;
/**
* La structure qui enregistre une fonction de fin d'exécution.
*/
struct exit_function {
long int flavor ;
union {
void (*at) (void) ;
struct {
void (*fn) (int status, void *arg) ;
void *arg ;
} on ;
struct {
void (*fn) (void *arg, int status) ;
void *arg ;
void *dso_handle ;
} cxa ;
} func ;
} ;
/**
* La structure qui enregistre une fonction de fin d'exécution.
* Cette structure permet d'en créer une liste chaînée.
*/
struct exit_function_list {
struct exit_function_list *next ;
struct exit_function f ;
} ;
/**
* La liste des fonctions de fin d'exécution enregistrées.
*/
static struct exit_function_list * liste = NULL ;
/**
* Enregistre une fonction de fin d'exécution.
*/
static void __internal_atexit( func , arg )
void (*func) (void) ;
void *arg ;
{
/* crée une nouvelle structure */
struct exit_function_list * n ;
n = malloc( sizeof( struct exit_function_list ) ) ;
if ( n == NULL ) __fortify_fail( "__internal_atexit() malloc()" ) ;
memset( n , 0 , sizeof( n ) ) ;
/* l'insère au tout début de la chaîne */
n-> next = liste ;
liste = n ;
/* met les bonnes valeurs */
n-> f. func. at = func ;
n-> f. func. cxa. arg = arg ;
/* debug */
UEFI_dprintf( D_INIT | D_INFO , "__internal_atexit( %p )\n" , func ) ;
}
/**
* Enregistre une fonction C de fin d'exécution.
*/
int atexit( func )
void (*func) (void) ;
{
__internal_atexit( func , NULL ) ;
return 0 ;
}
/**
* Enregistre une fonction C++ de fin d'exécution.
*/
int __cxa_atexit( func , arg , d )
void (*func) (void *) ;
void *arg ;
void *d __attribute__((unused)) ;
{
__internal_atexit( (void(*)(void)) func , arg ) ;
return 0 ;
}
/**
* __fortify_fail() : grave panne.
*/
void __fortify_fail( msg )
const char * msg ;
{
int ret ;
ret = write( 2 , "** " , 3 ) ;
/* 123 */
ret += write( 2 , (void *) msg , strlen( msg ) ) ;
/* car on espère que strlen() fonctionne encore... */
ret += write( 2 , " **: terminating.\n" , 18 ) ;
/* 12345678901234567 8 */
/* abandonne le programme avec un statut EFI_ABORTED */
exit( 8 ) ;
}
/**
* abort() : abandonne le programme avec un petit message.
*/
void abort()
{
__fortify_fail( "abort()" ) ;
}
/**
* __stack_chk_fail() : employée en cas de compilation avec -fstack-check.
*/
void __stack_chk_fail()
{
__fortify_fail( "stack smashing detected" ) ;
}
/**
* La fonction _call_fini() appelée depuis _start en fin d'exécution ou
* depuis exit() ci-dessous.
*/
void
_call_fini( stat )
int stat ;
{
/* décroche une par une les fonctions et les appelle */
while ( liste != NULL ) {
struct exit_function_list * elem ;
elem = liste ;
liste = elem-> next ;
UEFI_dprintf( D_INIT | D_INFO | D_DEBUG , "Appelle %p" ,
elem-> f. func. cxa. fn ) ;
elem-> f. func. cxa. fn( elem-> f. func. cxa. arg , stat ) ;
}
}
/*
* La fonction exit() classique.
*/
void exit( stat )
int stat ;
{
/* le status envoyé à UEFI:Exit */
EFI_STATUS status ;
/* mappe le status */
status = stat ;
switch ( stat ) {
case 1 : {
/* new() a retourné NULL
c++ lèvera plutôt une exception */
status = EFI_OUT_OF_RESOURCES ;
break ;
}
case 2 :
/* erreur fatale dans gpt.cc */
case 5 : {
/* cin ne fonctionne plus */
status = EFI_DEVICE_ERROR ;
break ;
}
case 8 : {
/* quitte le programme sans sauver */
status = EFI_ABORTED ;
break ;
}
#if 0
case 25 : {
/* le test des tailles mémoire SizesOK() a raté */
status = EFI_INCOMPATIBLE_VERSION ;
break ;
}
#endif
}
/* avant de terminer, fait le ménage */
_call_fini( stat ) ;
/* debug */
UEFI_dprintf( D_INIT | D_INFO , "Fin du programme : %lx\n" , status ) ;
/* appelle UEFI:Exit */
UEFI_call( ST-> BootServices-> Exit , UEFI_ImageHandle ,
status , 0 , 0 ) ;
/* ne revient normalement pas mais sait-on jamais... */
__fortify_fail( "BootServices:Exit()" ) ;
}