xref: /petsc/src/sys/error/errtrace.c (revision 45b666d6b3bfc63bec15238a694380a0b8801683)
10039db0dSBarry Smith #define PETSC_DESIRE_FEATURE_TEST_MACROS /* for fileno() */
2c6db04a5SJed Brown #include <petscsys.h>        /*I "petscsys.h" I*/
3f67a399dSBarry Smith #include <petsc/private/petscimpl.h>
4c6db04a5SJed Brown #include <petscconfiginfo.h>
5114011d0SBarry Smith #if defined(PETSC_HAVE_UNISTD_H)
6114011d0SBarry Smith #include <unistd.h>
7114011d0SBarry Smith #endif
8e5c89e4eSSatish Balay 
9e5c89e4eSSatish Balay /*@C
10*45b666d6SBarry Smith    PetscIgnoreErrorHandler - Deprecated, use PetscReturnErrorHandler(). Ignores the error, allows program to continue as if error did not occure
11e5c89e4eSSatish Balay 
12e5c89e4eSSatish Balay    Not Collective
13e5c89e4eSSatish Balay 
14e5c89e4eSSatish Balay    Input Parameters:
15e32f2f54SBarry Smith +  comm - communicator over which error occurred
16e32f2f54SBarry Smith .  line - the line number of the error (indicated by __LINE__)
17e5c89e4eSSatish Balay .  file - the file in which the error was detected (indicated by __FILE__)
18e5c89e4eSSatish Balay .  mess - an error text string, usually just printed to the screen
19e5c89e4eSSatish Balay .  n - the generic error number
20e5c89e4eSSatish Balay .  p - specific error number
21e5c89e4eSSatish Balay -  ctx - error handler context
22e5c89e4eSSatish Balay 
23e5c89e4eSSatish Balay    Level: developer
24e5c89e4eSSatish Balay 
25e5c89e4eSSatish Balay    Notes:
26e5c89e4eSSatish Balay    Most users need not directly employ this routine and the other error
27e5c89e4eSSatish Balay    handlers, but can instead use the simplified interface SETERRQ, which has
28e5c89e4eSSatish Balay    the calling sequence
29e32f2f54SBarry Smith $     SETERRQ(comm,number,p,mess)
30e5c89e4eSSatish Balay 
31e5c89e4eSSatish Balay 
32*45b666d6SBarry Smith .seealso:  PetscReturnErrorHandler()
33e5c89e4eSSatish Balay  @*/
34efca3c55SSatish Balay PetscErrorCode  PetscIgnoreErrorHandler(MPI_Comm comm,int line,const char *fun,const char *file,PetscErrorCode n,PetscErrorType p,const char *mess,void *ctx)
35e5c89e4eSSatish Balay {
36e5c89e4eSSatish Balay   PetscFunctionBegin;
37e5c89e4eSSatish Balay   PetscFunctionReturn(n);
38e5c89e4eSSatish Balay }
39e5c89e4eSSatish Balay 
40107894f0SSatish Balay /* ---------------------------------------------------------------------------------------*/
41107894f0SSatish Balay 
425abee1b0SJed Brown static char      arch[128],hostname[128],username[128],pname[PETSC_MAX_PATH_LEN],date[128];
43ace3abfcSBarry Smith static PetscBool PetscErrorPrintfInitializeCalled = PETSC_FALSE;
443f6e4ae9SSatish Balay static char      version[256];
45107894f0SSatish Balay 
46107894f0SSatish Balay /*
47107894f0SSatish Balay    Initializes arch, hostname, username, date so that system calls do NOT need
48107894f0SSatish Balay    to be made during the error handler.
49107894f0SSatish Balay */
50dd63322aSSatish Balay PetscErrorCode  PetscErrorPrintfInitialize(void)
51107894f0SSatish Balay {
52107894f0SSatish Balay   PetscErrorCode ierr;
53ace3abfcSBarry Smith   PetscBool      use_stdout = PETSC_FALSE,use_none = PETSC_FALSE;
54107894f0SSatish Balay 
55107894f0SSatish Balay   PetscFunctionBegin;
565abee1b0SJed Brown   ierr = PetscGetArchType(arch,sizeof(arch));CHKERRQ(ierr);
575abee1b0SJed Brown   ierr = PetscGetHostName(hostname,sizeof(hostname));CHKERRQ(ierr);
585abee1b0SJed Brown   ierr = PetscGetUserName(username,sizeof(username));CHKERRQ(ierr);
59589a23caSBarry Smith   ierr = PetscGetProgramName(pname,sizeof(pname));CHKERRQ(ierr);
605abee1b0SJed Brown   ierr = PetscGetDate(date,sizeof(date));CHKERRQ(ierr);
615abee1b0SJed Brown   ierr = PetscGetVersion(version,sizeof(version));CHKERRQ(ierr);
62e8fb0fc0SBarry Smith 
63c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(NULL,NULL,"-error_output_stdout",&use_stdout,NULL);CHKERRQ(ierr);
64a297a907SKarl Rupp   if (use_stdout) PETSC_STDERR = PETSC_STDOUT;
65c5929fdfSBarry Smith   ierr = PetscOptionsGetBool(NULL,NULL,"-error_output_none",&use_none,NULL);CHKERRQ(ierr);
66a297a907SKarl Rupp   if (use_none) PetscErrorPrintf = PetscErrorPrintfNone;
67107894f0SSatish Balay   PetscErrorPrintfInitializeCalled = PETSC_TRUE;
68107894f0SSatish Balay   PetscFunctionReturn(0);
69107894f0SSatish Balay }
70107894f0SSatish Balay 
717087cfbeSBarry Smith PetscErrorCode  PetscErrorPrintfNone(const char format[],...)
72e8fb0fc0SBarry Smith {
73e8fb0fc0SBarry Smith   return 0;
74e8fb0fc0SBarry Smith }
75e8fb0fc0SBarry Smith 
767087cfbeSBarry Smith PetscErrorCode  PetscErrorPrintfDefault(const char format[],...)
77e8fb0fc0SBarry Smith {
78e8fb0fc0SBarry Smith   va_list          Argp;
79ace3abfcSBarry Smith   static PetscBool PetscErrorPrintfCalled = PETSC_FALSE;
80e8fb0fc0SBarry Smith 
81e8fb0fc0SBarry Smith   /*
82e8fb0fc0SBarry Smith       This function does not call PetscFunctionBegin and PetscFunctionReturn() because
83e8fb0fc0SBarry Smith     it may be called by PetscStackView().
84e8fb0fc0SBarry Smith 
85e8fb0fc0SBarry Smith       This function does not do error checking because it is called by the error handlers.
86e8fb0fc0SBarry Smith   */
87e8fb0fc0SBarry Smith 
88e8fb0fc0SBarry Smith   if (!PetscErrorPrintfCalled) {
89e8fb0fc0SBarry Smith     PetscErrorPrintfCalled = PETSC_TRUE;
90e8fb0fc0SBarry Smith 
91e8fb0fc0SBarry Smith     /*
92e8fb0fc0SBarry Smith         On the SGI machines and Cray T3E, if errors are generated  "simultaneously" by
93e8fb0fc0SBarry Smith       different processors, the messages are printed all jumbled up; to try to
94e8fb0fc0SBarry Smith       prevent this we have each processor wait based on their rank
95e8fb0fc0SBarry Smith     */
96e8fb0fc0SBarry Smith #if defined(PETSC_CAN_SLEEP_AFTER_ERROR)
97e8fb0fc0SBarry Smith     {
98e8fb0fc0SBarry Smith       PetscMPIInt rank;
99a297a907SKarl Rupp       if (PetscGlobalRank > 8) rank = 8;
100a297a907SKarl Rupp       else rank = PetscGlobalRank;
101a6d0e24fSJed Brown       PetscSleep((PetscReal)rank);
102e8fb0fc0SBarry Smith     }
103e8fb0fc0SBarry Smith #endif
104e8fb0fc0SBarry Smith   }
105e8fb0fc0SBarry Smith 
1061179db26SBarry Smith   PetscFPrintf(PETSC_COMM_SELF,PETSC_STDERR,"[%d]PETSC ERROR: ",PetscGlobalRank);
107e8fb0fc0SBarry Smith   va_start(Argp,format);
1081179db26SBarry Smith   (*PetscVFPrintf)(PETSC_STDERR,format,Argp);
109e8fb0fc0SBarry Smith   va_end(Argp);
110e8fb0fc0SBarry Smith   return 0;
111e8fb0fc0SBarry Smith }
112e8fb0fc0SBarry Smith 
113114011d0SBarry Smith static void PetscErrorPrintfHilight(void)
114114011d0SBarry Smith {
11598ed35c3SBarry Smith #if defined(PETSC_HAVE_UNISTD_H) && defined(PETSC_USE_ISATTY)
116114011d0SBarry Smith   if (PetscErrorPrintf == PetscErrorPrintfDefault) {
117114011d0SBarry Smith     if (isatty(fileno(PETSC_STDERR))) fprintf(PETSC_STDERR,"\033[1;31m");
118114011d0SBarry Smith   }
119114011d0SBarry Smith #endif
120114011d0SBarry Smith }
121114011d0SBarry Smith 
122114011d0SBarry Smith static void PetscErrorPrintfNormal(void)
123114011d0SBarry Smith {
12498ed35c3SBarry Smith #if defined(PETSC_HAVE_UNISTD_H) && defined(PETSC_USE_ISATTY)
125114011d0SBarry Smith   if (PetscErrorPrintf == PetscErrorPrintfDefault) {
126114011d0SBarry Smith     if (isatty(fileno(PETSC_STDERR))) fprintf(PETSC_STDERR,"\033[0;39m\033[0;49m");
127114011d0SBarry Smith   }
128114011d0SBarry Smith #endif
129114011d0SBarry Smith }
130114011d0SBarry Smith 
13195c0884eSLisandro Dalcin PETSC_EXTERN PetscErrorCode  PetscOptionsViewError(void);
132114011d0SBarry Smith 
133e5c89e4eSSatish Balay /*@C
134e5c89e4eSSatish Balay 
135e5c89e4eSSatish Balay    PetscTraceBackErrorHandler - Default error handler routine that generates
136e5c89e4eSSatish Balay    a traceback on error detection.
137e5c89e4eSSatish Balay 
138e5c89e4eSSatish Balay    Not Collective
139e5c89e4eSSatish Balay 
140e5c89e4eSSatish Balay    Input Parameters:
141e32f2f54SBarry Smith +  comm - communicator over which error occurred
142e32f2f54SBarry Smith .  line - the line number of the error (indicated by __LINE__)
143e5c89e4eSSatish Balay .  file - the file in which the error was detected (indicated by __FILE__)
144e5c89e4eSSatish Balay .  mess - an error text string, usually just printed to the screen
145e5c89e4eSSatish Balay .  n - the generic error number
146df3898eeSBarry Smith .  p - PETSC_ERROR_INITIAL if this is the first call the error handler, otherwise PETSC_ERROR_REPEAT
147e5c89e4eSSatish Balay -  ctx - error handler context
148e5c89e4eSSatish Balay 
149*45b666d6SBarry Smith   Options Database:
150*45b666d6SBarry Smith +  -error_output_stdout - output the error messages to stdout instead of the default stderr
151*45b666d6SBarry Smith -  -error_output_none - do not output the error messages
152e5c89e4eSSatish Balay 
153e5c89e4eSSatish Balay    Notes:
154e5c89e4eSSatish Balay    Most users need not directly employ this routine and the other error
155e5c89e4eSSatish Balay    handlers, but can instead use the simplified interface SETERRQ, which has
156e5c89e4eSSatish Balay    the calling sequence
157d736bfebSBarry Smith $     SETERRQ(comm,number,n,mess)
158e5c89e4eSSatish Balay 
159e5c89e4eSSatish Balay    Notes for experienced users:
160*45b666d6SBarry Smith    Use PetscPushErrorHandler() to set the desired error handler.
161e5c89e4eSSatish Balay 
162*45b666d6SBarry Smith    Level: developer
163e5c89e4eSSatish Balay 
164*45b666d6SBarry Smith .seealso: PetscError(), PetscPushErrorHandler(), PetscPopErrorHandler(), PetscAttachDebuggerErrorHandler(),
165*45b666d6SBarry Smith           PetscAbortErrorHandler(), PetscMPIAbortErrorHandler(), PetscReturnErrorHandler(), PetscEmacsClientErrorHandler()
166e5c89e4eSSatish Balay  @*/
167efca3c55SSatish Balay PetscErrorCode  PetscTraceBackErrorHandler(MPI_Comm comm,int line,const char *fun,const char *file,PetscErrorCode n,PetscErrorType p,const char *mess,void *ctx)
168e5c89e4eSSatish Balay {
169e5c89e4eSSatish Balay   PetscLogDouble mem,rss;
170574034a9SJed Brown   PetscBool      flg1 = PETSC_FALSE,flg2 = PETSC_FALSE,flg3 = PETSC_FALSE;
171997adca8SBarry Smith   PetscMPIInt    rank = 0;
172e5c89e4eSSatish Balay 
173e5c89e4eSSatish Balay   PetscFunctionBegin;
174a297a907SKarl Rupp   if (comm != PETSC_COMM_SELF) MPI_Comm_rank(comm,&rank);
175a297a907SKarl Rupp 
176997adca8SBarry Smith   if (!rank) {
177fbfcfee5SBarry Smith     PetscBool  ismain;
178114011d0SBarry Smith     static int cnt = 1;
179114011d0SBarry Smith 
180668f157eSBarry Smith     if (p == PETSC_ERROR_INITIAL) {
181114011d0SBarry Smith       PetscErrorPrintfHilight();
182114011d0SBarry Smith       (*PetscErrorPrintf)("--------------------- Error Message --------------------------------------------------------------\n");
1835f3a2c8dSBarry Smith       PetscErrorPrintfNormal();
184e5c89e4eSSatish Balay       if (n == PETSC_ERR_MEM) {
185e5c89e4eSSatish Balay         (*PetscErrorPrintf)("Out of memory. This could be due to allocating\n");
186e5c89e4eSSatish Balay         (*PetscErrorPrintf)("too large an object or bleeding by not properly\n");
187e5c89e4eSSatish Balay         (*PetscErrorPrintf)("destroying unneeded objects.\n");
188e5c89e4eSSatish Balay         PetscMallocGetCurrentUsage(&mem);
189e5c89e4eSSatish Balay         PetscMemoryGetCurrentUsage(&rss);
190c5929fdfSBarry Smith         PetscOptionsGetBool(NULL,NULL,"-malloc_dump",&flg1,NULL);
19192f119d6SBarry Smith         PetscOptionsGetBool(NULL,NULL,"-malloc_view",&flg2,NULL);
19292f119d6SBarry Smith         PetscOptionsHasName(NULL,NULL,"-malloc_view_threshold",&flg3);
19392f119d6SBarry Smith         if (flg2 || flg3) PetscMallocView(stdout);
194a297a907SKarl Rupp         else {
195b85f3346SJed Brown           (*PetscErrorPrintf)("Memory allocated %.0f Memory used by process %.0f\n",mem,rss);
196a297a907SKarl Rupp           if (flg1) PetscMallocDump(stdout);
19792f119d6SBarry Smith           else (*PetscErrorPrintf)("Try running with -malloc_dump or -malloc_view for info.\n");
198e5c89e4eSSatish Balay         }
199e5c89e4eSSatish Balay       } else {
200e5c89e4eSSatish Balay         const char *text;
2010298fd71SBarry Smith         PetscErrorMessage(n,&text,NULL);
202114011d0SBarry Smith         if (text) (*PetscErrorPrintf)("%s\n",text);
203e5c89e4eSSatish Balay       }
204114011d0SBarry Smith       if (mess) (*PetscErrorPrintf)("%s\n",mess);
205a8d69d7bSBarry Smith       (*PetscErrorPrintf)("See https://www.mcs.anl.gov/petsc/documentation/faq.html for trouble shooting.\n");
206107894f0SSatish Balay       (*PetscErrorPrintf)("%s\n",version);
207a297a907SKarl Rupp       if (PetscErrorPrintfInitializeCalled) (*PetscErrorPrintf)("%s on a %s named %s by %s %s\n",pname,arch,hostname,username,date);
208107894f0SSatish Balay       (*PetscErrorPrintf)("Configure options %s\n",petscconfigureoptions);
209107894f0SSatish Balay     }
210997adca8SBarry Smith     /* print line of stack trace */
211114011d0SBarry Smith     (*PetscErrorPrintf)("#%d %s() line %d in %s\n",cnt++,fun,line,file);
212114011d0SBarry Smith     PetscStrncmp(fun,"main",4,&ismain);
213fbfcfee5SBarry Smith     if (ismain) {
214e11779c2SBarry Smith       PetscOptionsViewError();
215114011d0SBarry Smith       PetscErrorPrintfHilight();
216f15a11d2SBarry Smith       (*PetscErrorPrintf)("----------------End of Error Message -------send entire error message to petsc-maint@mcs.anl.gov----------\n");
217114011d0SBarry Smith       PetscErrorPrintfNormal();
218114011d0SBarry Smith     }
219997adca8SBarry Smith   } else {
220997adca8SBarry Smith     /* do not print error messages since process 0 will print them, sleep before aborting so will not accidently kill process 0*/
221997adca8SBarry Smith     PetscSleep(10.0);
222997adca8SBarry Smith     abort();
223997adca8SBarry Smith   }
224e5c89e4eSSatish Balay   PetscFunctionReturn(n);
225e5c89e4eSSatish Balay }
226e5c89e4eSSatish Balay 
227