source: libcfa/src/exception.c @ 5137f9f

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 5137f9f was 3090127, checked in by Andrew Beach <ajbeach@…>, 4 years ago

Naming updates, most are to get exception names to the new cfa(module)_ format.

  • Property mode set to 100644
File size: 18.5 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// exception.c --
8//
9// Author           : Andrew Beach
10// Created On       : Mon Jun 26 15:13:00 2017
11// Last Modified By : Andrew Beach
12// Last Modified On : Fri Mar 27 10:19:00 2020
13// Update Count     : 12
14//
15
16// Normally we would get this from the CFA prelude.
17#include <stddef.h> // for size_t
18
19#include "exception.h"
20
21// Implementation of the secret header is hardware dependent.
22#if !( defined( __x86_64 ) || defined( __i386 ) )
23#error Exception Handling: No known architecture detected.
24#endif
25
26#include <stdlib.h>
27#include <stdio.h>
28#include <unwind.h>
29#include <bits/debug.hfa>
30
31// FIX ME: temporary hack to keep ARM build working
32#ifndef _URC_FATAL_PHASE1_ERROR
33#define _URC_FATAL_PHASE1_ERROR 2
34#endif // ! _URC_FATAL_PHASE1_ERROR
35#ifndef _URC_FATAL_PHASE2_ERROR
36#define _URC_FATAL_PHASE2_ERROR 2
37#endif // ! _URC_FATAL_PHASE2_ERROR
38
39#include "lsda.h"
40
41
42// Base exception vtable is abstract, you should not have base exceptions.
43struct __cfaehm_base_exception_t_vtable
44                ___cfaehm_base_exception_t_vtable_instance = {
45        .parent = NULL,
46        .size = 0,
47        .copy = NULL,
48        .free = NULL,
49        .msg = NULL
50};
51
52
53// Temperary global exception context. Does not work with concurency.
54struct exception_context_t {
55    struct __cfaehm_try_resume_node * top_resume;
56    struct __cfaehm_try_resume_node * current_resume;
57
58    exception_t * current_exception;
59    int current_handler_index;
60} static shared_stack = {NULL, NULL, NULL, 0};
61
62// Get the current exception context.
63// There can be a single global until multithreading occurs, then each stack
64// needs its own. It will have to be updated to handle that.
65struct exception_context_t * this_exception_context() {
66        return &shared_stack;
67}
68
69
70// RESUMPTION ================================================================
71
72void __cfaehm_throw_resume(exception_t * except) {
73        struct exception_context_t * context = this_exception_context();
74
75        __cfaabi_dbg_print_safe("Throwing resumption exception\n");
76
77        struct __cfaehm_try_resume_node * original_head = context->current_resume;
78        struct __cfaehm_try_resume_node * current =
79                (original_head) ? original_head->next : context->top_resume;
80
81        for ( ; current ; current = current->next) {
82                context->current_resume = current;
83                if (current->handler(except)) {
84                        context->current_resume = original_head;
85                        return;
86                }
87        }
88
89        __cfaabi_dbg_print_safe("Unhandled exception\n");
90        context->current_resume = original_head;
91
92        // Fall back to termination:
93        __cfaehm_throw_terminate(except);
94        // TODO: Default handler for resumption.
95}
96
97// Do we control where exceptions get thrown even with concurency?
98// If not these are not quite thread safe, the cleanup hook has to
99// be added after the node is built but before it is made the top node.
100
101void __cfaehm_try_resume_setup(struct __cfaehm_try_resume_node * node,
102                        _Bool (*handler)(exception_t * except)) {
103        struct exception_context_t * context = this_exception_context();
104        node->next = context->top_resume;
105        node->handler = handler;
106        context->top_resume = node;
107}
108
109void __cfaehm_try_resume_cleanup(struct __cfaehm_try_resume_node * node) {
110        struct exception_context_t * context = this_exception_context();
111        context->top_resume = node->next;
112}
113
114
115// TERMINATION ===============================================================
116
117// MEMORY MANAGEMENT (still for integers)
118// May have to move to cfa for constructors and destructors (references).
119
120struct __cfaehm_node {
121        struct __cfaehm_node * next;
122};
123
124#define NODE_TO_EXCEPT(node) ((exception_t *)(1 + (node)))
125#define EXCEPT_TO_NODE(except) ((struct __cfaehm_node *)(except) - 1)
126
127// Creates a copy of the indicated exception and sets current_exception to it.
128static void __cfaehm_allocate_exception( exception_t * except ) {
129        struct exception_context_t * context = this_exception_context();
130
131        // Allocate memory for the exception.
132        struct __cfaehm_node * store = malloc(
133                sizeof( struct __cfaehm_node ) + except->virtual_table->size );
134
135        if ( ! store ) {
136                // Failure: cannot allocate exception. Terminate thread.
137                abort(); // <- Although I think it might be the process.
138        }
139
140        // Add the node to the list:
141        store->next = EXCEPT_TO_NODE(context->current_exception);
142        context->current_exception = NODE_TO_EXCEPT(store);
143
144        // Copy the exception to storage.
145        except->virtual_table->copy( context->current_exception, except );
146}
147
148// Delete the provided exception, unsetting current_exception if relivant.
149static void __cfaehm_delete_exception( exception_t * except ) {
150        struct exception_context_t * context = this_exception_context();
151
152        __cfaabi_dbg_print_safe("Deleting Exception\n");
153
154        // Remove the exception from the list.
155        struct __cfaehm_node * to_free = EXCEPT_TO_NODE(except);
156        struct __cfaehm_node * node;
157
158        if ( context->current_exception == except ) {
159                node = to_free->next;
160                context->current_exception = (node) ? NODE_TO_EXCEPT(node) : 0;
161        } else {
162                node = EXCEPT_TO_NODE(context->current_exception);
163                // It may always be in the first or second position.
164                while ( to_free != node->next ) {
165                        node = node->next;
166                }
167                node->next = to_free->next;
168        }
169
170        // Free the old exception node.
171        except->virtual_table->free( except );
172        free( to_free );
173}
174
175// If this isn't a rethrow (*except==0), delete the provided exception.
176void __cfaehm_cleanup_terminate( void * except ) {
177        if ( *(void**)except ) __cfaehm_delete_exception( *(exception_t **)except );
178}
179
180
181// We need a piece of storage to raise the exception
182struct _Unwind_Exception this_exception_storage;
183
184// Function needed by force unwind
185// It basically says to unwind the whole stack and then exit when we reach the end of the stack
186static _Unwind_Reason_Code _Stop_Fn(
187                int version,
188                _Unwind_Action actions,
189                _Unwind_Exception_Class exception_class,
190                struct _Unwind_Exception * unwind_exception,
191                struct _Unwind_Context * unwind_context,
192                void * stop_param) {
193        if ( actions & _UA_END_OF_STACK  ) exit(1);
194        if ( actions & _UA_CLEANUP_PHASE ) return _URC_NO_REASON;
195
196        return _URC_FATAL_PHASE2_ERROR;
197}
198
199// The exception that is being thrown must already be stored.
200static __attribute__((noreturn)) void __cfaehm_begin_unwind(void) {
201        if ( ! this_exception_context()->current_exception ) {
202                printf("UNWIND ERROR missing exception in begin unwind\n");
203                abort();
204        }
205
206
207        // Call stdlibc to raise the exception
208        _Unwind_Reason_Code ret = _Unwind_RaiseException( &this_exception_storage );
209
210        // If we reach here it means something happened. For resumption to work we need to find a way
211        // to return back to here. Most of them will probably boil down to setting a global flag and
212        // making the phase 1 either stop or fail. Causing an error on purpose may help avoiding
213        // unnecessary work but it might have some weird side effects. If we just pretend no handler
214        // was found that would work but may be expensive for no reason since we will always search
215        // the whole stack.
216
217        if ( ret == _URC_END_OF_STACK ) {
218                // No proper handler was found. This can be handled in many ways, C++ calls std::terminate.
219                // Here we force unwind the stack, basically raising a cancellation.
220                printf("Uncaught exception %p\n", &this_exception_storage);
221
222                ret = _Unwind_ForcedUnwind( &this_exception_storage, _Stop_Fn, (void*)0x22 );
223                printf("UNWIND ERROR %d after force unwind\n", ret);
224                abort();
225        }
226
227        // We did not simply reach the end of the stack without finding a handler. This is an error.
228        printf("UNWIND ERROR %d after raise exception\n", ret);
229        abort();
230}
231
232void __cfaehm_throw_terminate( exception_t * val ) {
233        __cfaabi_dbg_print_safe("Throwing termination exception\n");
234
235        __cfaehm_allocate_exception( val );
236        __cfaehm_begin_unwind();
237}
238
239void __cfaehm_rethrow_terminate(void) {
240        __cfaabi_dbg_print_safe("Rethrowing termination exception\n");
241
242        __cfaehm_begin_unwind();
243}
244
245// This is our personality routine. For every stack frame annotated with
246// ".cfi_personality 0x3,__gcfa_personality_v0" this function will be called twice when unwinding.
247//  Once in the search phase and once in the cleanup phase.
248_Unwind_Reason_Code __gcfa_personality_v0(
249                int version,
250                _Unwind_Action actions,
251                unsigned long long exception_class,
252                struct _Unwind_Exception * unwind_exception,
253                struct _Unwind_Context * unwind_context)
254{
255
256        //__cfaabi_dbg_print_safe("CFA: 0x%lx\n", _Unwind_GetCFA(context));
257        __cfaabi_dbg_print_safe("Personality function (%d, %x, %llu, %p, %p):",
258                        version, actions, exception_class, unwind_exception, unwind_context);
259
260        // If we've reached the end of the stack then there is nothing much we can do...
261        if (actions & _UA_END_OF_STACK) return _URC_END_OF_STACK;
262
263        if (actions & _UA_SEARCH_PHASE) {
264                __cfaabi_dbg_print_safe(" lookup phase");
265        }
266        else if (actions & _UA_CLEANUP_PHASE) {
267                __cfaabi_dbg_print_safe(" cleanup phase");
268        }
269        // Just in case, probably can't actually happen
270        else {
271                printf(" error\n");
272                return _URC_FATAL_PHASE1_ERROR;
273        }
274
275        // Get a pointer to the language specific data from which we will read what we need
276        const unsigned char * lsd = _Unwind_GetLanguageSpecificData( unwind_context );
277
278        if ( !lsd ) {   //Nothing to do, keep unwinding
279                printf(" no LSD");
280                goto UNWIND;
281        }
282
283        // Get the instuction pointer and a reading pointer into the exception table
284        lsda_header_info lsd_info;
285        const unsigned char * cur_ptr = parse_lsda_header(unwind_context, lsd, &lsd_info);
286        _Unwind_Ptr instruction_ptr = _Unwind_GetIP(unwind_context);
287
288        struct exception_context_t * context = this_exception_context();
289
290        // Linearly search the table for stuff to do
291        while ( cur_ptr < lsd_info.action_table ) {
292                _Unwind_Ptr callsite_start;
293                _Unwind_Ptr callsite_len;
294                _Unwind_Ptr callsite_landing_pad;
295                _uleb128_t  callsite_action;
296
297                // Decode the common stuff we have in here
298                cur_ptr = read_encoded_value(0, lsd_info.call_site_encoding, cur_ptr, &callsite_start);
299                cur_ptr = read_encoded_value(0, lsd_info.call_site_encoding, cur_ptr, &callsite_len);
300                cur_ptr = read_encoded_value(0, lsd_info.call_site_encoding, cur_ptr, &callsite_landing_pad);
301                cur_ptr = read_uleb128(cur_ptr, &callsite_action);
302
303                // Have we reach the correct frame info yet?
304                if ( lsd_info.Start + callsite_start + callsite_len < instruction_ptr ) {
305#ifdef __CFA_DEBUG_PRINT__
306                        void * ls = (void*)lsd_info.Start;
307                        void * cs = (void*)callsite_start;
308                        void * cl = (void*)callsite_len;
309                        void * bp = (void*)lsd_info.Start + callsite_start;
310                        void * ep = (void*)lsd_info.Start + callsite_start + callsite_len;
311                        void * ip = (void*)instruction_ptr;
312                        __cfaabi_dbg_print_safe("\nfound %p - %p (%p, %p, %p), looking for %p\n",
313                                        bp, ep, ls, cs, cl, ip);
314#endif // __CFA_DEBUG_PRINT__
315                        continue;
316                }
317
318                // Have we gone too far?
319                if ( lsd_info.Start + callsite_start > instruction_ptr ) {
320                        printf(" gone too far");
321                        break;
322                }
323
324                // Check for what we must do:
325                if ( 0 == callsite_landing_pad ) {
326                        // Nothing to do, move along
327                        __cfaabi_dbg_print_safe(" no landing pad");
328                } else if (actions & _UA_SEARCH_PHASE) {
329                        // In search phase, these means we found a potential handler we must check.
330
331                        // We have arbitrarily decided that 0 means nothing to do and 1 means there is
332                        // a potential handler. This doesn't seem to conflict the gcc default behavior.
333                        if (callsite_action != 0) {
334                                // Now we want to run some code to see if the handler matches
335                                // This is the tricky part where we want to the power to run arbitrary code
336                                // However, generating a new exception table entry and try routine every time
337                                // is way more expansive than we might like
338                                // The information we have is :
339                                //  - The GR (Series of registers)
340                                //    GR1=GP Global Pointer of frame ref by context
341                                //  - The instruction pointer
342                                //  - The instruction pointer info (???)
343                                //  - The CFA (Canonical Frame Address)
344                                //  - The BSP (Probably the base stack pointer)
345
346                                // The current apprach uses one exception table entry per try block
347                                _uleb128_t imatcher;
348                                // Get the relative offset to the {...}?
349                                cur_ptr = read_uleb128(cur_ptr, &imatcher);
350
351#                               if defined( __x86_64 )
352                                _Unwind_Word match_pos = _Unwind_GetCFA(unwind_context) + 8;
353#                               elif defined( __i386 )
354                                _Unwind_Word match_pos = _Unwind_GetCFA(unwind_context) + 24;
355#                               endif
356                                int (*matcher)(exception_t *) = *(int(**)(exception_t *))match_pos;
357
358                                int index = matcher(context->current_exception);
359                                _Unwind_Reason_Code ret = (0 == index)
360                                        ? _URC_CONTINUE_UNWIND : _URC_HANDLER_FOUND;
361                                context->current_handler_index = index;
362
363                                // Based on the return value, check if we matched the exception
364                                if (ret == _URC_HANDLER_FOUND) {
365                                        __cfaabi_dbg_print_safe(" handler found\n");
366                                } else {
367                                        __cfaabi_dbg_print_safe(" no handler\n");
368                                }
369                                return ret;
370                        }
371
372                        // This is only a cleanup handler, ignore it
373                        __cfaabi_dbg_print_safe(" no action");
374                } else if (actions & _UA_CLEANUP_PHASE) {
375                        // In clean-up phase, no destructors here but this could be the handler.
376
377                        if ( (callsite_action != 0) && !(actions & _UA_HANDLER_FRAME) ){
378                                // If this is a potential exception handler
379                                // but not the one that matched the exception in the seach phase,
380                                // just ignore it
381                                goto UNWIND;
382                        }
383
384                        // We need to run some clean-up or a handler
385                        // These statment do the right thing but I don't know any specifics at all
386                        _Unwind_SetGR( unwind_context, __builtin_eh_return_data_regno(0),
387                                (_Unwind_Ptr)unwind_exception );
388                        _Unwind_SetGR( unwind_context, __builtin_eh_return_data_regno(1), 0 );
389
390                        // I assume this sets the instruction pointer to the adress of the landing pad
391                        // It doesn't actually set it, it only state the value that needs to be set once we
392                        // return _URC_INSTALL_CONTEXT
393                        _Unwind_SetIP( unwind_context, ((lsd_info.LPStart) + (callsite_landing_pad)) );
394
395                        __cfaabi_dbg_print_safe(" action\n");
396
397                        // Return have some action to run
398                        return _URC_INSTALL_CONTEXT;
399                }
400        }
401        // No handling found
402        __cfaabi_dbg_print_safe(" table end reached\n");
403
404        UNWIND:
405        __cfaabi_dbg_print_safe(" unwind\n");
406
407        // Keep unwinding the stack
408        return _URC_CONTINUE_UNWIND;
409}
410
411#pragma GCC push_options
412#pragma GCC optimize("O0")
413
414// Try statements are hoisted out see comments for details. While this could probably be unique
415// and simply linked from libcfa but there is one problem left, see the exception table for details
416__attribute__((noinline))
417void __cfaehm_try_terminate(void (*try_block)(),
418                void (*catch_block)(int index, exception_t * except),
419                __attribute__((unused)) int (*match_block)(exception_t * except)) {
420        //! volatile int xy = 0;
421        //! printf("%p %p %p %p\n", &try_block, &catch_block, &match_block, &xy);
422
423        // Setup the personality routine and exception table.
424        // Unforturnately these clobber gcc cancellation support which means we can't get access to
425        // the attribute cleanup tables at the same time. We would have to inspect the assembly to
426        // create a new set ourselves.
427#ifdef __PIC__
428        asm volatile (".cfi_personality 0x9b,CFA.ref.__gcfa_personality_v0");
429        asm volatile (".cfi_lsda 0x1b, .LLSDACFA2");
430#else
431        asm volatile (".cfi_personality 0x3,__gcfa_personality_v0");
432        asm volatile (".cfi_lsda 0x3, .LLSDACFA2");
433#endif
434
435        // Label which defines the start of the area for which the handler is setup.
436        asm volatile (".TRYSTART:");
437
438        // The actual statements of the try blocks
439        try_block();
440
441        // asm statement to prevent deadcode removal
442        asm volatile goto ("" : : : : CATCH );
443
444        // Normal return for when there is no throw.
445        return;
446
447        // Exceptionnal path
448        CATCH : __attribute__(( unused ));
449        // Label which defines the end of the area for which the handler is setup.
450        asm volatile (".TRYEND:");
451        // Label which defines the start of the exception landing pad. Basically what is called when
452        // the exception is caught. Note, if multiple handlers are given, the multiplexing should be
453        // done by the generated code, not the exception runtime.
454        asm volatile (".CATCH:");
455
456        // Exception handler
457        // Note: Saving the exception context on the stack breaks termination exceptions.
458        catch_block( this_exception_context()->current_handler_index,
459                     this_exception_context()->current_exception );
460}
461
462// Exception table data we need to generate. While this is almost generic, the custom data refers
463// to {*}try_terminate, which is no way generic. Some more works need to be done if we want to
464// have a single call to the try routine.
465
466#ifdef __PIC__
467asm (
468        // HEADER
469        ".LFECFA1:\n"
470        "       .globl  __gcfa_personality_v0\n"
471        "       .section        .gcc_except_table,\"a\",@progbits\n"
472        // TABLE HEADER (important field is the BODY length at the end)
473        ".LLSDACFA2:\n"
474        "       .byte   0xff\n"
475        "       .byte   0xff\n"
476        "       .byte   0x1\n"
477        "       .uleb128 .LLSDACSECFA2-.LLSDACSBCFA2\n"
478        // BODY (language specific data)
479        // This uses language specific data and can be modified arbitrarily
480        // We use handled area offset, handled area length,
481        // handler landing pad offset and 1 (action code, gcc seems to use 0).
482        ".LLSDACSBCFA2:\n"
483        "       .uleb128 .TRYSTART-__cfaehm_try_terminate\n"
484        "       .uleb128 .TRYEND-.TRYSTART\n"
485        "       .uleb128 .CATCH-__cfaehm_try_terminate\n"
486        "       .uleb128 1\n"
487        ".LLSDACSECFA2:\n"
488        // TABLE FOOTER
489        "       .text\n"
490        "       .size   __cfaehm_try_terminate, .-__cfaehm_try_terminate\n"
491);
492
493// Somehow this piece of helps with the resolution of debug symbols.
494__attribute__((unused)) static const int dummy = 0;
495
496asm (
497        // Add a hidden symbol which points at the function.
498        "       .hidden CFA.ref.__gcfa_personality_v0\n"
499        "       .weak   CFA.ref.__gcfa_personality_v0\n"
500        // No clue what this does specifically
501        "       .section        .data.rel.local.CFA.ref.__gcfa_personality_v0,\"awG\",@progbits,CFA.ref.__gcfa_personality_v0,comdat\n"
502        "       .align 8\n"
503        "       .type CFA.ref.__gcfa_personality_v0, @object\n"
504        "       .size CFA.ref.__gcfa_personality_v0, 8\n"
505        "CFA.ref.__gcfa_personality_v0:\n"
506#if defined( __x86_64 )
507        "       .quad __gcfa_personality_v0\n"
508#else // then __i386
509        "   .long __gcfa_personality_v0\n"
510#endif
511);
512#else // __PIC__
513asm (
514        // HEADER
515        ".LFECFA1:\n"
516        "       .globl  __gcfa_personality_v0\n"
517        "       .section        .gcc_except_table,\"a\",@progbits\n"
518        // TABLE HEADER (important field is the BODY length at the end)
519        ".LLSDACFA2:\n"
520        "       .byte   0xff\n"
521        "       .byte   0xff\n"
522        "       .byte   0x1\n"
523        "       .uleb128 .LLSDACSECFA2-.LLSDACSBCFA2\n"
524        // BODY (language specific data)
525        ".LLSDACSBCFA2:\n"
526        //      Handled area start (relative to start of function)
527        "       .uleb128 .TRYSTART-__cfaehm_try_terminate\n"
528        //      Handled area length
529        "       .uleb128 .TRYEND-.TRYSTART\n"
530        //      Handler landing pad address (relative to start of function)
531        "       .uleb128 .CATCH-__cfaehm_try_terminate\n"
532        //      Action code, gcc seems to always use 0.
533        "       .uleb128 1\n"
534        // TABLE FOOTER
535        ".LLSDACSECFA2:\n"
536        "       .text\n"
537        "       .size   __cfaehm_try_terminate, .-__cfaehm_try_terminate\n"
538        "       .ident  \"GCC: (Ubuntu 6.2.0-3ubuntu11~16.04) 6.2.0 20160901\"\n"
539        "       .section        .note.GNU-stack,\"x\",@progbits\n"
540);
541#endif // __PIC__
542
543#pragma GCC pop_options
Note: See TracBrowser for help on using the repository browser.