Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use XBT_PUBLIC_DATA instead of XBT_DECLARE_DATA
[simgrid.git] / src / xbt / ex.c
1 /* $Id$ */
2
3 /* ex - Exception Handling (modified to fit into SimGrid from OSSP version) */
4
5 /*  Copyright (c) 2005-2006 Martin Quinson                                  */
6 /*  Copyright (c) 2002-2004 Ralf S. Engelschall <rse@engelschall.com>       */
7 /*  Copyright (c) 2002-2004 The OSSP Project <http://www.ossp.org/>         */
8 /*  Copyright (c) 2002-2004 Cable & Wireless <http://www.cw.com/>           */
9 /*  All rights reserved.                                                    */
10
11 /* This program is free software; you can redistribute it and/or modify it
12  * under the terms of the license (GNU LGPL) which comes with this package. */
13
14 #include <stdio.h>
15 #include <stdlib.h>
16
17 #include "portable.h" /* execinfo when available */
18 #include "xbt/ex.h"
19 #include "xbt/module.h" /* xbt_binary_name */
20 #include "xbt/ex_interface.h"
21
22 #include "gras/Virtu/virtu_interface.h" /* gras_os_myname */
23
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_ex,xbt,"Exception mecanism");
25
26
27 /* default __ex_ctx callback function */
28 ex_ctx_t *__xbt_ex_ctx_default(void) {
29     static ex_ctx_t ctx = XBT_CTX_INITIALIZER;
30
31     return &ctx;
32 }
33
34
35 /** \brief show the backtrace of the current point (lovely while debuging) */
36 void xbt_backtrace_display(void) {
37 #if defined(HAVE_EXECINFO_H) && defined(HAVE_POPEN) && defined(ADDR2LINE)
38   xbt_ex_t e;
39   int i;
40
41   e.used     = backtrace((void**)e.bt,XBT_BACKTRACE_SIZE);
42   e.bt_strings = NULL;
43   xbt_ex_setup_backtrace(&e);
44   for (i=1; i<e.used; i++) /* no need to display "xbt_display_backtrace" */
45     fprintf(stderr,"%s\n",e.bt_strings[i]);
46
47   e.msg=NULL;
48   e.remote=0;
49   xbt_ex_free(e);
50 #else 
51   ERROR0("No backtrace on this arch");
52 #endif
53 }
54
55
56 void xbt_ex_setup_backtrace(xbt_ex_t *e)  {
57 #if defined(HAVE_EXECINFO_H) && defined(HAVE_POPEN) && defined(ADDR2LINE)
58   int i;
59   /* to get the backtrace from the libc */
60   char **backtrace = backtrace_symbols (e->bt, e->used);
61   
62   /* To build the commandline of addr2line */
63   char *cmd = xbt_new(char,strlen(ADDR2LINE)+25+strlen(xbt_binary_name)+32*e->used);
64   char *curr=cmd;
65   
66   /* to extract the addresses from the backtrace */
67   char **addrs=xbt_new(char*,e->used);
68   char buff[256],*p;
69   
70   /* To read the output of addr2line */
71   FILE *pipe;
72   char line_func[1024],line_pos[1024];
73
74   /* size (in char) of pointers on this arch */
75   int addr_len=0;
76
77   /* Some arches only have stubs of backtrace, no implementation (hppa comes to mind) */
78   if (!e->used)
79      return;
80    
81   /* build the commandline */
82   curr += sprintf(curr,"%s -f -e %s ",ADDR2LINE,xbt_binary_name);
83   for (i=0; i<e->used;i++) {
84     /* retrieve this address */
85     DEBUG2("Retrieving address number %d from '%s'", i, backtrace[i]);
86     snprintf(buff,256,"%s",strchr(backtrace[i],'[')+1);
87     p=strchr(buff,']');
88     *p='\0';
89     addrs[i]=bprintf("%s", buff);
90     DEBUG3("Set up a new address: %d, '%s'(%p)", i, addrs[i], addrs[i]);
91      
92     /* Add it to the command line args */
93     curr+=sprintf(curr,"%s ",addrs[i]);
94   }      
95   addr_len = strlen(addrs[0]);
96
97   /* parse the output and build a new backtrace */
98   e->bt_strings = xbt_new(char*,e->used);
99   
100   VERB1("Fire a first command: '%s'", cmd);
101   pipe = popen(cmd, "r");
102   if (!pipe) {
103     CRITICAL0("Cannot fork addr2line to display the backtrace");
104     abort();
105   }
106
107   for (i=0; i<e->used; i++) {
108     DEBUG2("Looking for symbol %d, addr = '%s'", i, addrs[i]); 
109     fgets(line_func,1024,pipe);
110     line_func[strlen(line_func)-1]='\0';
111     fgets(line_pos,1024,pipe);
112     line_pos[strlen(line_pos)-1]='\0';
113
114     if (strcmp("??",line_func)) {
115        DEBUG2("Found static symbol %s() at %s", line_func, line_pos);
116       e->bt_strings[i] = bprintf("**   In %s() at %s (static symbol)", line_func,line_pos);
117     } else {
118       /* Damn. The symbol is in a dynamic library. Let's get wild */
119       char *maps_name;
120       FILE *maps;
121       char maps_buff[512];
122
123       long int addr,offset=0;
124       char *p,*p2;
125
126       char *subcmd;
127       FILE *subpipe;
128       int found=0;
129
130       /* let's look for the offset of this library in our addressing space */
131       maps_name=bprintf("/proc/%d/maps",(int)getpid());
132       maps=fopen(maps_name,"r");
133
134       sscanf(addrs[i],"%lx",&addr);
135       sprintf(maps_buff,"%#lx",addr);
136       
137       if (strcmp(addrs[i],maps_buff)) {
138         CRITICAL2("Cannot parse backtrace address '%s' (addr=%#lx)",
139                   addrs[i], addr);
140       }
141       DEBUG2("addr=%s (as string) =%#lx (as number)",addrs[i],addr);
142
143       while (!found) {
144         long int first, last;
145         if (fgets(maps_buff,512,maps) == NULL) 
146           break;
147         if (i==0) {
148           maps_buff[strlen(maps_buff) -1]='\0';
149           DEBUG1("map line: %s", maps_buff);
150         }
151         sscanf(maps_buff,"%lx",&first);
152         p=strchr(maps_buff,'-')+1;
153         sscanf(p,"%lx",&last);
154         if (first < addr && addr < last) {
155           offset = first;
156           found=1;
157         }
158         DEBUG4("%#lx %s [%#lx-%#lx]",
159                addr, found? "in":"out of",first,last);
160       }
161       fclose(maps);
162       free(maps_name);
163
164       if (!found) {
165         VERB0("Problem while reading the maps file. Following backtrace will be mangled.");
166         DEBUG1("No dynamic. Static symbol: %s", backtrace[i]);
167         e->bt_strings[i] = bprintf("**   In ?? (%s)", backtrace[i]);
168         continue;
169       }
170
171       /* Ok, Found the offset of the maps line containing the searched symbol. 
172          We now need to substract this from the address we got from backtrace.
173       */
174       
175       free(addrs[i]);
176       addrs[i] = bprintf("0x%0*lx",addr_len-2,addr-offset);
177       DEBUG2("offset=%#lx new addr=%s",offset,addrs[i]);
178
179       /* Got it. We have our new address. Let's get the library path and we 
180          are set */ 
181       p  = xbt_strdup(backtrace[i]);
182       p2 = strrchr(p,'(');
183       if (p2) *p2= '\0';
184       p2 = strrchr(p,' ');
185       if(p2) *p2= '\0';
186       
187       /* Here we go, fire an addr2line up */
188       subcmd = bprintf("%s -f -e %s %s",ADDR2LINE,p, addrs[i]);
189       free(p);
190       VERB1("Fire a new command: '%s'",subcmd);
191       subpipe = popen(subcmd,"r");
192       if (!subpipe) {
193         CRITICAL0("Cannot fork addr2line to display the backtrace");
194         abort();
195       }
196       fgets(line_func,1024,subpipe);
197       line_func[strlen(line_func)-1]='\0';
198       fgets(line_pos,1024,subpipe);
199       line_pos[strlen(line_pos)-1]='\0';
200       pclose(subpipe);
201       free(subcmd);
202
203       /* check whether the trick worked */
204       if (strcmp("??",line_func)) {
205         DEBUG2("Found dynamic symbol %s() at %s", line_func, line_pos);
206         e->bt_strings[i] = bprintf("**   In %s() at %s (dynamic symbol)", line_func,line_pos);
207       } else {
208         /* damn, nothing to do here. Let's print the raw address */
209         DEBUG1("Dynamic symbol not found. Raw address = %s", backtrace[i]);
210         e->bt_strings[i] = bprintf("**   In ?? (%s)", backtrace[i]);
211       }
212     }
213     free(addrs[i]);
214   }
215   pclose(pipe);
216   free(addrs);
217   free(backtrace);
218   free(cmd);
219 #endif
220 }    
221
222 /** @brief shows an exception content and the associated stack if available */
223 void xbt_ex_display(xbt_ex_t *e)  {
224   char *thrower=NULL;
225
226   if (e->remote)
227     bprintf(" on host %s(%ld)",e->host,e->pid);
228
229   CRITICAL1("%s",e->msg);
230   fprintf(stderr,
231           "** SimGrid: UNCAUGHT EXCEPTION received on %s(%ld): category: %s; value: %d\n"
232           "** %s\n"
233           "** Thrown by %s()%s\n",
234           gras_os_myname(),gras_os_getpid(),
235           xbt_ex_catname(e->category), e->value, e->msg,
236           e->procname,thrower?thrower:" in this process");
237
238   if (thrower)
239     free(thrower);
240
241   if (!e->remote && !e->bt_strings)
242     xbt_ex_setup_backtrace(e);
243
244 #if defined(HAVE_EXECINFO_H) && defined(HAVE_POPEN) && defined(ADDR2LINE)
245   /* We have everything to build neat backtraces */
246   {
247     int i;
248     
249     fprintf(stderr,"\n");
250     for (i=0; i<e->used; i++)
251       fprintf(stderr,"%s\n",e->bt_strings[i]);
252     
253   }
254 #else
255   fprintf(stderr," at %s:%d:%s (no backtrace available on that arch)\n",  
256           e->file,e->line,e->func);
257 #endif
258   xbt_ex_free(*e);
259 }
260
261
262 /* default __ex_terminate callback function */
263 void __xbt_ex_terminate_default(xbt_ex_t *e)  {
264   xbt_ex_display(e);
265
266   abort();
267 }
268
269 /* the externally visible API */
270 XBT_PUBLIC_DATA(ex_ctx_cb_t)  __xbt_ex_ctx       = &__xbt_ex_ctx_default;
271 XBT_PUBLIC_DATA(ex_term_cb_t) __xbt_ex_terminate = &__xbt_ex_terminate_default;
272
273
274 void xbt_ex_free(xbt_ex_t e) {
275   int i;
276
277   if (e.msg) free(e.msg);
278   if (e.remote) {
279     free(e.procname);
280     free(e.file);
281     free(e.func);
282     free(e.host);
283   }
284
285   if (e.bt_strings) {   
286      for (i=0; i<e.used; i++) 
287        free((char*)e.bt_strings[i]);
288      free((char **)e.bt_strings);
289   }
290   /* memset(e,0,sizeof(xbt_ex_t)); */
291 }
292
293 /** \brief returns a short name for the given exception category */
294 const char * xbt_ex_catname(xbt_errcat_t cat) {
295   switch (cat) {
296   case unknown_error:   return  "unknown_err";
297   case arg_error:       return "invalid_arg";
298   case mismatch_error:  return "mismatch";
299   case not_found_error: return "not found";
300   case system_error:    return "system_err";
301   case network_error:   return "network_err";
302   case timeout_error:   return "timeout";
303   case thread_error:    return "thread_err";
304   default:              return "INVALID_ERR";
305   }
306 }
307
308 #ifndef HAVE_EXECINFO_H
309 /* dummy implementation. We won't use the result, but ex.h needs it to be defined */
310 int backtrace (void **__array, int __size) {
311   return 0;
312 }
313
314 #endif
315
316 #ifdef SIMGRID_TEST
317 #include "xbt/ex.h"
318
319 XBT_TEST_SUITE("xbt_ex","Exception Handling");
320
321 XBT_TEST_UNIT("controlflow",test_controlflow, "basic nested control flow") {
322     xbt_ex_t ex;
323     volatile int n=1;
324
325     xbt_test_add0("basic nested control flow");
326
327     TRY {
328         if (n != 1)
329             xbt_test_fail1("M1: n=%d (!= 1)", n);
330         n++;
331         TRY {
332             if (n != 2)
333                 xbt_test_fail1("M2: n=%d (!= 2)", n);
334             n++;
335             THROW0(unknown_error,0,"something");
336         } CATCH (ex) {
337             if (n != 3)
338                 xbt_test_fail1("M3: n=%d (!= 3)", n);
339             n++;
340             xbt_ex_free(ex);
341         }
342         n++;
343         TRY {
344             if (n != 5)
345                 xbt_test_fail1("M2: n=%d (!= 5)", n);
346             n++;
347             THROW0(unknown_error,0,"something");
348         } CATCH (ex) {
349             if (n != 6)
350                 xbt_test_fail1("M3: n=%d (!= 6)", n);
351             n++;
352             RETHROW;
353             n++;
354         }
355         xbt_test_fail1("MX: n=%d (shouldn't reach this point)", n);
356     }
357     CATCH(ex) {
358         if (n != 7)
359             xbt_test_fail1("M4: n=%d (!= 7)", n);
360         n++;
361         xbt_ex_free(ex);
362     }
363     if (n != 8)
364         xbt_test_fail1("M5: n=%d (!= 8)", n);
365 }
366
367 XBT_TEST_UNIT("value",test_value,"exception value passing") {
368     xbt_ex_t ex;
369
370     TRY {
371         THROW0(unknown_error, 2, "toto");
372     } CATCH(ex) {
373         xbt_test_add0("exception value passing");
374         if (ex.category != unknown_error)
375             xbt_test_fail1("category=%d (!= 1)", ex.category);
376         if (ex.value != 2)
377             xbt_test_fail1("value=%d (!= 2)", ex.value);
378         if (strcmp(ex.msg,"toto"))
379             xbt_test_fail1("message=%s (!= toto)", ex.msg);
380         xbt_ex_free(ex);
381     }
382 }
383
384 XBT_TEST_UNIT("variables",test_variables,"variable value preservation") {
385     xbt_ex_t ex;
386     int r1, r2;
387     volatile int v1, v2;
388
389     r1 = r2 = v1 = v2 = 1234;
390     TRY {
391         r2 = 5678;
392         v2 = 5678;
393         THROW0(unknown_error, 0, "toto");
394     } CATCH(ex) {
395         xbt_test_add0("variable preservation");
396         if (r1 != 1234)
397             xbt_test_fail1("r1=%d (!= 1234)", r1);
398         if (v1 != 1234)
399             xbt_test_fail1("v1=%d (!= 1234)", v1);
400         /* r2 is allowed to be destroyed because not volatile */
401         if (v2 != 5678)
402             xbt_test_fail1("v2=%d (!= 5678)", v2);
403         xbt_ex_free(ex);
404     }
405 }
406
407 XBT_TEST_UNIT("cleanup",test_cleanup,"cleanup handling") {
408     xbt_ex_t ex;
409     volatile int v1;
410     int c;
411
412     xbt_test_add0("cleanup handling");
413
414     v1 = 1234;
415     c = 0;
416     TRY {
417         v1 = 5678;
418         THROW0(1, 2, "blah");
419     } CLEANUP {
420         if (v1 != 5678)
421             xbt_test_fail1("v1 = %d (!= 5678)", v1);
422         c = 1;
423     } CATCH(ex) {
424         if (v1 != 5678)
425             xbt_test_fail1("v1 = %d (!= 5678)", v1);
426         if (!(ex.category == 1 && ex.value == 2 && !strcmp(ex.msg,"blah")))
427             xbt_test_fail0("unexpected exception contents");
428         xbt_ex_free(ex);
429     }
430     if (!c)
431         xbt_test_fail0("xbt_ex_free not executed");
432 }
433
434
435 /*
436  * The following is the example included in the documentation. It's a good 
437  * idea to check its syntax even if we don't try to run it.
438  * And actually, it allows to put comments in the code despite doxygen.
439  */ 
440 static char *mallocex(int size) {
441   return NULL;
442 }
443 #define SMALLAMOUNT 10
444 #define TOOBIG 100000000
445
446 #if 0 /* this contains syntax errors, actually */
447 static void bad_example(void) {
448   struct {char*first;} *globalcontext;
449   ex_t ex;
450
451   /* BAD_EXAMPLE */
452   TRY {
453     char *cp1, *cp2, *cp3;
454     
455     cp1 = mallocex(SMALLAMOUNT);
456     globalcontext->first = cp1;
457     cp2 = mallocex(TOOBIG);
458     cp3 = mallocex(SMALLAMOUNT);
459     strcpy(cp1, "foo");
460     strcpy(cp2, "bar");
461   } CLEANUP {
462     if (cp3 != NULL) free(cp3);
463     if (cp2 != NULL) free(cp2);
464     if (cp1 != NULL) free(cp1);
465   } CATCH(ex) {
466     printf("cp3=%s", cp3);
467     RETHROW;
468   }
469   /* end_of_bad_example */
470 }
471 #endif
472 typedef struct {char *first;} global_context_t;
473    
474 static void good_example(void) {
475   global_context_t *global_context=malloc(sizeof(global_context_t));
476   xbt_ex_t ex;
477
478   /* GOOD_EXAMPLE */
479   { /*01*/
480     char * volatile /*03*/ cp1 = NULL /*02*/;
481     char * volatile /*03*/ cp2 = NULL /*02*/;
482     char * volatile /*03*/ cp3 = NULL /*02*/;
483     TRY {
484       cp1 = mallocex(SMALLAMOUNT);
485       global_context->first = cp1;
486       cp1 = NULL /*05 give away*/;
487       cp2 = mallocex(TOOBIG);
488       cp3 = mallocex(SMALLAMOUNT);
489       strcpy(cp1, "foo");
490       strcpy(cp2, "bar");
491     } CLEANUP { /*04*/
492       printf("cp3=%s", cp3 == NULL /*02*/ ? "" : cp3);
493       if (cp3 != NULL)
494         free(cp3);
495       if (cp2 != NULL)
496         free(cp2);
497       /*05 cp1 was given away */
498     } CATCH(ex) {
499       /*05 global context untouched */
500       RETHROW;
501     }
502   }
503   /* end_of_good_example */
504 }
505 #endif /* SIMGRID_TEST */