-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitfini.c
314 lines (277 loc) · 7.17 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
312
313
/*
*
* This file is part of UEFI fdisk.
*
* UEFI fdisk is a port of util-linux fdisk to UEFI/BIOS.
* UEFI fdisk est un portage de util-linux fdisk vers UEFI/BIOS.
* Ce fichier a été initié par Bernard Burette en janvier 2014.
*
* All this work is copyleft Bernard Burette.
* Gauche d'auteur Bernard Burette.
*
* This program is distributed under the terms of the GNU General Public
* License version 2 or more.
* La diffusion de ce code est faite selon les termes de la licence publique
* générale GNU version 2 ou plus.
*
*/
/** @file
*
* Initialization and finalization.
*
*/
#include "uefi.h"
#include "debug.h"
#include <unistd.h>
#include <string.h>
#include <assert.h>
/*
* Arguments à passer aux fonctions d'init.
*/
static char* argv[] = { "fdisk" , NULL , NULL } ;
static char* envp[] = { NULL } ;
/**
* Le script de link elf-$(ARCH).lds définit ces symboles.
*/
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 ) ;
/**
* La fonction _call_init() appelée depuis _start au tout début de l'exécution
* avant de passer le contrôle à efi_main().
* Cette fonction appelle toutes les fonctions référencées dans le tableau
* __init_array[] dont le début et la fin sont fournies à ce code par les
* symboles __init_array_start et __init_array_end.
*/
void _call_init( void ) ;
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() ENOMEM" ) ;
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.
*/
#if 0
int __cxa_atexit( func , arg , d )
void (*func) (void *) ;
void *arg ;
void *d __attribute__((unused)) ;
{
__internal_atexit( (void(*)(void)) func , arg ) ;
return 0 ;
}
#endif
/**
* __fortify_fail() : grave panne.
*/
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-result"
__attribute__((__noreturn__))
void __fortify_fail( msg )
const char* msg ;
{
write( 2 , "** " , 3 ) ;
/* 123 */
write( 2 , (void *) msg , strlen( msg ) ) ;
/* car on espère que strlen() fonctionne encore... */
write( 2 , " **: aborting\n" , 14 ) ;
/* 1234567890123 4 */
/* abandonne le programme avec un statut EFI_ABORTED */
exit( 8 ) ;
}
#pragma GCC diagnostic pop
/**
* abort() : abandonne le programme avec un petit message.
*/
__attribute__((__noreturn__))
void abort()
{
__fortify_fail( "abort()" ) ;
}
/**
* La fonction _call_fini() appelée depuis _start en fin d'exécution ou
* depuis exit() ci-dessous.
*/
void _call_fini( int stat ) ;
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.
*/
__attribute__((__noreturn__))
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 Exit() qui ne devrait jamais revenir */
for(;;) UEFI_call( ST-> BootServices-> Exit , UEFI_ImageHandle ,
status , 0 , 0 ) ;
}