blob: 9a11bf2df7b81068404ca11f5079a54faac4968d [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum3f5da241990-12-20 15:06:42 +00002/* Traceback implementation */
3
Guido van Rossum65bf9f21997-04-29 18:33:38 +00004#include "Python.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +00005
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00006#include "code.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +00007#include "frameobject.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +00008#include "structmember.h"
Guido van Rossum7169dbb1992-02-26 15:17:59 +00009#include "osdefs.h"
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +000010#ifdef HAVE_FCNTL_H
11#include <fcntl.h>
12#endif
Guido van Rossum3f5da241990-12-20 15:06:42 +000013
Nicholas Bastina7604bf2004-03-21 18:37:23 +000014#define OFF(x) offsetof(PyTracebackObject, x)
Guido van Rossum3f5da241990-12-20 15:06:42 +000015
Victor Stinner024e37a2011-03-31 01:31:06 +020016#define PUTS(fd, str) write(fd, str, strlen(str))
17#define MAX_STRING_LENGTH 100
18#define MAX_FRAME_DEPTH 100
19#define MAX_NTHREADS 100
20
Victor Stinnerfe7c5b52011-04-05 01:48:03 +020021/* Function from Parser/tokenizer.c */
22extern char * PyTokenizer_FindEncodingFilename(int, PyObject *);
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +000023
Collin Winter3eed7652007-08-14 17:53:54 +000024static PyObject *
25tb_dir(PyTracebackObject *self)
26{
27 return Py_BuildValue("[ssss]", "tb_frame", "tb_next",
28 "tb_lasti", "tb_lineno");
29}
30
31static PyMethodDef tb_methods[] = {
32 {"__dir__", (PyCFunction)tb_dir, METH_NOARGS},
33 {NULL, NULL, 0, NULL},
34};
35
Neal Norwitz8dfc4a92007-08-11 06:39:53 +000036static PyMemberDef tb_memberlist[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000037 {"tb_next", T_OBJECT, OFF(tb_next), READONLY},
38 {"tb_frame", T_OBJECT, OFF(tb_frame), READONLY},
39 {"tb_lasti", T_INT, OFF(tb_lasti), READONLY},
40 {"tb_lineno", T_INT, OFF(tb_lineno), READONLY},
41 {NULL} /* Sentinel */
Guido van Rossum3f5da241990-12-20 15:06:42 +000042};
43
Guido van Rossum3f5da241990-12-20 15:06:42 +000044static void
Nicholas Bastina7604bf2004-03-21 18:37:23 +000045tb_dealloc(PyTracebackObject *tb)
Guido van Rossum3f5da241990-12-20 15:06:42 +000046{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000047 PyObject_GC_UnTrack(tb);
48 Py_TRASHCAN_SAFE_BEGIN(tb)
49 Py_XDECREF(tb->tb_next);
50 Py_XDECREF(tb->tb_frame);
51 PyObject_GC_Del(tb);
52 Py_TRASHCAN_SAFE_END(tb)
Guido van Rossum3f5da241990-12-20 15:06:42 +000053}
54
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000055static int
Nicholas Bastina7604bf2004-03-21 18:37:23 +000056tb_traverse(PyTracebackObject *tb, visitproc visit, void *arg)
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000057{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000058 Py_VISIT(tb->tb_next);
59 Py_VISIT(tb->tb_frame);
60 return 0;
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000061}
62
63static void
Nicholas Bastina7604bf2004-03-21 18:37:23 +000064tb_clear(PyTracebackObject *tb)
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000065{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000066 Py_CLEAR(tb->tb_next);
67 Py_CLEAR(tb->tb_frame);
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000068}
69
Tim Petersd7c36522001-10-22 19:34:09 +000070PyTypeObject PyTraceBack_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000071 PyVarObject_HEAD_INIT(&PyType_Type, 0)
72 "traceback",
73 sizeof(PyTracebackObject),
74 0,
75 (destructor)tb_dealloc, /*tp_dealloc*/
76 0, /*tp_print*/
77 0, /*tp_getattr*/
78 0, /*tp_setattr*/
79 0, /*tp_reserved*/
80 0, /*tp_repr*/
81 0, /*tp_as_number*/
82 0, /*tp_as_sequence*/
83 0, /*tp_as_mapping*/
84 0, /* tp_hash */
85 0, /* tp_call */
86 0, /* tp_str */
87 PyObject_GenericGetAttr, /* tp_getattro */
88 0, /* tp_setattro */
89 0, /* tp_as_buffer */
90 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
91 0, /* tp_doc */
92 (traverseproc)tb_traverse, /* tp_traverse */
93 (inquiry)tb_clear, /* tp_clear */
94 0, /* tp_richcompare */
95 0, /* tp_weaklistoffset */
96 0, /* tp_iter */
97 0, /* tp_iternext */
98 tb_methods, /* tp_methods */
99 tb_memberlist, /* tp_members */
100 0, /* tp_getset */
101 0, /* tp_base */
102 0, /* tp_dict */
Guido van Rossum3f5da241990-12-20 15:06:42 +0000103};
104
Nicholas Bastina7604bf2004-03-21 18:37:23 +0000105static PyTracebackObject *
106newtracebackobject(PyTracebackObject *next, PyFrameObject *frame)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000107{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000108 PyTracebackObject *tb;
109 if ((next != NULL && !PyTraceBack_Check(next)) ||
110 frame == NULL || !PyFrame_Check(frame)) {
111 PyErr_BadInternalCall();
112 return NULL;
113 }
114 tb = PyObject_GC_New(PyTracebackObject, &PyTraceBack_Type);
115 if (tb != NULL) {
116 Py_XINCREF(next);
117 tb->tb_next = next;
118 Py_XINCREF(frame);
119 tb->tb_frame = frame;
120 tb->tb_lasti = frame->f_lasti;
121 tb->tb_lineno = PyFrame_GetLineNumber(frame);
122 PyObject_GC_Track(tb);
123 }
124 return tb;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000125}
126
Guido van Rossum3f5da241990-12-20 15:06:42 +0000127int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000128PyTraceBack_Here(PyFrameObject *frame)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000129{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000130 PyThreadState *tstate = PyThreadState_GET();
131 PyTracebackObject *oldtb = (PyTracebackObject *) tstate->curexc_traceback;
132 PyTracebackObject *tb = newtracebackobject(oldtb, frame);
133 if (tb == NULL)
134 return -1;
135 tstate->curexc_traceback = (PyObject *)tb;
136 Py_XDECREF(oldtb);
137 return 0;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000138}
139
Victor Stinner0fe25a42010-06-17 23:08:50 +0000140static PyObject *
141_Py_FindSourceFile(PyObject *filename, char* namebuf, size_t namelen, PyObject *io)
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000142{
Victor Stinner0fe25a42010-06-17 23:08:50 +0000143 Py_ssize_t i;
144 PyObject *binary;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000145 PyObject *v;
Victor Stinner0fe25a42010-06-17 23:08:50 +0000146 Py_ssize_t npath;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000147 size_t taillen;
148 PyObject *syspath;
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000149 PyObject *path;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000150 const char* tail;
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000151 PyObject *filebytes;
Victor Stinner0fe25a42010-06-17 23:08:50 +0000152 const char* filepath;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000153 Py_ssize_t len;
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000154 PyObject* result;
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000155
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000156 filebytes = PyUnicode_EncodeFSDefault(filename);
157 if (filebytes == NULL) {
Victor Stinner0fe25a42010-06-17 23:08:50 +0000158 PyErr_Clear();
159 return NULL;
160 }
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000161 filepath = PyBytes_AS_STRING(filebytes);
Victor Stinner0fe25a42010-06-17 23:08:50 +0000162
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000163 /* Search tail of filename in sys.path before giving up */
Victor Stinner0fe25a42010-06-17 23:08:50 +0000164 tail = strrchr(filepath, SEP);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000165 if (tail == NULL)
Victor Stinner0fe25a42010-06-17 23:08:50 +0000166 tail = filepath;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000167 else
168 tail++;
169 taillen = strlen(tail);
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000170
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000171 syspath = PySys_GetObject("path");
172 if (syspath == NULL || !PyList_Check(syspath))
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000173 goto error;
Victor Stinner0fe25a42010-06-17 23:08:50 +0000174 npath = PyList_Size(syspath);
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000175
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000176 for (i = 0; i < npath; i++) {
177 v = PyList_GetItem(syspath, i);
178 if (v == NULL) {
179 PyErr_Clear();
180 break;
181 }
182 if (!PyUnicode_Check(v))
183 continue;
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000184 path = PyUnicode_EncodeFSDefault(v);
Victor Stinner0fe25a42010-06-17 23:08:50 +0000185 if (path == NULL) {
186 PyErr_Clear();
187 continue;
188 }
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000189 len = PyBytes_GET_SIZE(path);
190 if (len + 1 + (Py_ssize_t)taillen >= (Py_ssize_t)namelen - 1) {
191 Py_DECREF(path);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000192 continue; /* Too long */
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000193 }
194 strcpy(namebuf, PyBytes_AS_STRING(path));
195 Py_DECREF(path);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000196 if (strlen(namebuf) != len)
197 continue; /* v contains '\0' */
198 if (len > 0 && namebuf[len-1] != SEP)
199 namebuf[len++] = SEP;
200 strcpy(namebuf+len, tail);
Victor Stinner0fe25a42010-06-17 23:08:50 +0000201
202 binary = PyObject_CallMethod(io, "open", "ss", namebuf, "rb");
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000203 if (binary != NULL) {
204 result = binary;
205 goto finally;
206 }
Victor Stinner0fe25a42010-06-17 23:08:50 +0000207 PyErr_Clear();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000208 }
Victor Stinner4c7c8c32010-10-16 13:14:10 +0000209 goto error;
210
211error:
212 result = NULL;
213finally:
214 Py_DECREF(filebytes);
215 return result;
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000216}
217
Christian Heimes33fe8092008-04-13 13:53:33 +0000218int
Victor Stinner0fe25a42010-06-17 23:08:50 +0000219_Py_DisplaySourceLine(PyObject *f, PyObject *filename, int lineno, int indent)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000220{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000221 int err = 0;
222 int fd;
223 int i;
224 char *found_encoding;
225 char *encoding;
Victor Stinner0fe25a42010-06-17 23:08:50 +0000226 PyObject *io;
227 PyObject *binary;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000228 PyObject *fob = NULL;
229 PyObject *lineobj = NULL;
Antoine Pitroub86680e2010-10-14 21:15:17 +0000230 PyObject *res;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 char buf[MAXPATHLEN+1];
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200232 int kind;
233 void *data;
Christian Heimes679db4a2008-01-18 09:56:22 +0000234
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000235 /* open the file */
236 if (filename == NULL)
237 return 0;
Victor Stinner0fe25a42010-06-17 23:08:50 +0000238
239 io = PyImport_ImportModuleNoBlock("io");
240 if (io == NULL)
241 return -1;
242 binary = PyObject_CallMethod(io, "open", "Os", filename, "rb");
243
244 if (binary == NULL) {
245 binary = _Py_FindSourceFile(filename, buf, sizeof(buf), io);
246 if (binary == NULL) {
247 Py_DECREF(io);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000248 return 0;
Victor Stinner0fe25a42010-06-17 23:08:50 +0000249 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000250 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000251
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000252 /* use the right encoding to decode the file as unicode */
Victor Stinner0fe25a42010-06-17 23:08:50 +0000253 fd = PyObject_AsFileDescriptor(binary);
Victor Stinnerfe7c5b52011-04-05 01:48:03 +0200254 found_encoding = PyTokenizer_FindEncodingFilename(fd, filename);
Victor Stinner0fe25a42010-06-17 23:08:50 +0000255 encoding = (found_encoding != NULL) ? found_encoding : "utf-8";
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000256 lseek(fd, 0, 0); /* Reset position */
Victor Stinner0fe25a42010-06-17 23:08:50 +0000257 fob = PyObject_CallMethod(io, "TextIOWrapper", "Os", binary, encoding);
258 Py_DECREF(io);
259 Py_DECREF(binary);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000260 PyMem_FREE(found_encoding);
Victor Stinner0fe25a42010-06-17 23:08:50 +0000261
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000262 if (fob == NULL) {
263 PyErr_Clear();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000264 return 0;
265 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000266
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000267 /* get the line number lineno */
268 for (i = 0; i < lineno; i++) {
269 Py_XDECREF(lineobj);
270 lineobj = PyFile_GetLine(fob, -1);
271 if (!lineobj) {
272 err = -1;
273 break;
274 }
275 }
Antoine Pitroub86680e2010-10-14 21:15:17 +0000276 res = PyObject_CallMethod(fob, "close", "");
277 if (res)
278 Py_DECREF(res);
279 else
280 PyErr_Clear();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000281 Py_DECREF(fob);
282 if (!lineobj || !PyUnicode_Check(lineobj)) {
283 Py_XDECREF(lineobj);
284 return err;
285 }
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000286
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000287 /* remove the indentation of the line */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200288 kind = PyUnicode_KIND(lineobj);
289 data = PyUnicode_DATA(lineobj);
290 for (i=0; i < PyUnicode_GET_LENGTH(lineobj); i++) {
291 Py_UCS4 ch = PyUnicode_READ(kind, data, i);
292 if (ch != ' ' && ch != '\t' && ch != '\014')
293 break;
294 }
295 if (i) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000296 PyObject *truncated;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200297 truncated = PyUnicode_Substring(lineobj, i, PyUnicode_GET_LENGTH(lineobj));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000298 if (truncated) {
299 Py_DECREF(lineobj);
300 lineobj = truncated;
301 } else {
302 PyErr_Clear();
303 }
304 }
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000305
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000306 /* Write some spaces before the line */
307 strcpy(buf, " ");
308 assert (strlen(buf) == 10);
309 while (indent > 0) {
310 if(indent < 10)
311 buf[indent] = '\0';
312 err = PyFile_WriteString(buf, f);
313 if (err != 0)
314 break;
315 indent -= 10;
316 }
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000317
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000318 /* finally display the line */
319 if (err == 0)
320 err = PyFile_WriteObject(lineobj, f, Py_PRINT_RAW);
321 Py_DECREF(lineobj);
322 if (err == 0)
323 err = PyFile_WriteString("\n", f);
324 return err;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000325}
326
Guido van Rossum7e8d26d1997-05-22 22:35:47 +0000327static int
Victor Stinner0fe25a42010-06-17 23:08:50 +0000328tb_displayline(PyObject *f, PyObject *filename, int lineno, PyObject *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000329{
Victor Stinner0fe25a42010-06-17 23:08:50 +0000330 int err;
331 PyObject *line;
Christian Heimes33fe8092008-04-13 13:53:33 +0000332
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000333 if (filename == NULL || name == NULL)
334 return -1;
Victor Stinner0fe25a42010-06-17 23:08:50 +0000335 line = PyUnicode_FromFormat(" File \"%U\", line %d, in %U\n",
336 filename, lineno, name);
337 if (line == NULL)
338 return -1;
339 err = PyFile_WriteObject(line, f, Py_PRINT_RAW);
340 Py_DECREF(line);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000341 if (err != 0)
342 return err;
343 return _Py_DisplaySourceLine(f, filename, lineno, 4);
Christian Heimes33fe8092008-04-13 13:53:33 +0000344}
345
346static int
347tb_printinternal(PyTracebackObject *tb, PyObject *f, long limit)
348{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000349 int err = 0;
350 long depth = 0;
351 PyTracebackObject *tb1 = tb;
352 while (tb1 != NULL) {
353 depth++;
354 tb1 = tb1->tb_next;
355 }
356 while (tb != NULL && err == 0) {
357 if (depth <= limit) {
358 err = tb_displayline(f,
Victor Stinner0fe25a42010-06-17 23:08:50 +0000359 tb->tb_frame->f_code->co_filename,
360 tb->tb_lineno,
361 tb->tb_frame->f_code->co_name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000362 }
363 depth--;
364 tb = tb->tb_next;
365 if (err == 0)
366 err = PyErr_CheckSignals();
367 }
368 return err;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000369}
370
Christian Heimes0fbab7f2007-12-04 21:55:18 +0000371#define PyTraceBack_LIMIT 1000
372
Guido van Rossum3f5da241990-12-20 15:06:42 +0000373int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000374PyTraceBack_Print(PyObject *v, PyObject *f)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000375{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000376 int err;
377 PyObject *limitv;
378 long limit = PyTraceBack_LIMIT;
Christian Heimes0fbab7f2007-12-04 21:55:18 +0000379
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000380 if (v == NULL)
381 return 0;
382 if (!PyTraceBack_Check(v)) {
383 PyErr_BadInternalCall();
384 return -1;
385 }
386 limitv = PySys_GetObject("tracebacklimit");
387 if (limitv) {
388 PyObject *exc_type, *exc_value, *exc_tb;
Christian Heimes0fbab7f2007-12-04 21:55:18 +0000389
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000390 PyErr_Fetch(&exc_type, &exc_value, &exc_tb);
391 limit = PyLong_AsLong(limitv);
392 if (limit == -1 && PyErr_Occurred()) {
393 if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
394 limit = PyTraceBack_LIMIT;
395 }
396 else {
397 Py_XDECREF(exc_type);
398 Py_XDECREF(exc_value);
399 Py_XDECREF(exc_tb);
400 return 0;
401 }
402 }
403 else if (limit <= 0) {
404 limit = PyTraceBack_LIMIT;
405 }
406 PyErr_Restore(exc_type, exc_value, exc_tb);
407 }
408 err = PyFile_WriteString("Traceback (most recent call last):\n", f);
409 if (!err)
410 err = tb_printinternal((PyTracebackObject *)v, f, limit);
411 return err;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000412}
Victor Stinner024e37a2011-03-31 01:31:06 +0200413
414/* Reverse a string. For example, "abcd" becomes "dcba".
415
416 This function is signal safe. */
417
418static void
419reverse_string(char *text, const size_t len)
420{
421 char tmp;
422 size_t i, j;
423 if (len == 0)
424 return;
425 for (i=0, j=len-1; i < j; i++, j--) {
426 tmp = text[i];
427 text[i] = text[j];
428 text[j] = tmp;
429 }
430}
431
432/* Format an integer in range [0; 999999] to decimal,
433 and write it into the file fd.
434
435 This function is signal safe. */
436
437static void
438dump_decimal(int fd, int value)
439{
440 char buffer[7];
441 int len;
442 if (value < 0 || 999999 < value)
443 return;
444 len = 0;
445 do {
446 buffer[len] = '0' + (value % 10);
447 value /= 10;
448 len++;
449 } while (value);
450 reverse_string(buffer, len);
451 write(fd, buffer, len);
452}
453
454/* Format an integer in range [0; 0xffffffff] to hexdecimal of 'width' digits,
455 and write it into the file fd.
456
457 This function is signal safe. */
458
459static void
460dump_hexadecimal(int width, unsigned long value, int fd)
461{
462 const char *hexdigits = "0123456789abcdef";
463 int len;
464 char buffer[sizeof(unsigned long) * 2 + 1];
465 len = 0;
466 do {
467 buffer[len] = hexdigits[value & 15];
468 value >>= 4;
469 len++;
470 } while (len < width || value);
471 reverse_string(buffer, len);
472 write(fd, buffer, len);
473}
474
475/* Write an unicode object into the file fd using ascii+backslashreplace.
476
477 This function is signal safe. */
478
479static void
480dump_ascii(int fd, PyObject *text)
481{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200482 PyASCIIObject *ascii = (PyASCIIObject *)text;
Victor Stinner024e37a2011-03-31 01:31:06 +0200483 Py_ssize_t i, size;
484 int truncated;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200485 int kind;
486 void *data;
487 Py_UCS4 ch;
Victor Stinner024e37a2011-03-31 01:31:06 +0200488
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200489 size = ascii->length;
490 kind = ascii->state.kind;
491 if (ascii->state.compact) {
492 if (ascii->state.ascii)
493 data = ((PyASCIIObject*)text) + 1;
494 else
495 data = ((PyCompactUnicodeObject*)text) + 1;
496 }
497 else {
498 data = ((PyUnicodeObject *)text)->data.any;
499 if (data == NULL)
500 return;
501 }
Victor Stinner024e37a2011-03-31 01:31:06 +0200502
503 if (MAX_STRING_LENGTH < size) {
504 size = MAX_STRING_LENGTH;
505 truncated = 1;
506 }
507 else
508 truncated = 0;
509
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200510 for (i=0; i < size; i++) {
511 ch = PyUnicode_READ(kind, data, i);
512 if (ch < 128) {
513 char c = (char)ch;
Victor Stinner024e37a2011-03-31 01:31:06 +0200514 write(fd, &c, 1);
515 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200516 else if (ch < 256) {
Victor Stinner024e37a2011-03-31 01:31:06 +0200517 PUTS(fd, "\\x");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200518 dump_hexadecimal(2, ch, fd);
Victor Stinner024e37a2011-03-31 01:31:06 +0200519 }
520 else
521#ifdef Py_UNICODE_WIDE
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200522 if (ch < 65536)
Victor Stinner024e37a2011-03-31 01:31:06 +0200523#endif
524 {
525 PUTS(fd, "\\u");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200526 dump_hexadecimal(4, ch, fd);
Victor Stinner024e37a2011-03-31 01:31:06 +0200527#ifdef Py_UNICODE_WIDE
528 }
529 else {
530 PUTS(fd, "\\U");
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200531 dump_hexadecimal(8, ch, fd);
Victor Stinner024e37a2011-03-31 01:31:06 +0200532#endif
533 }
534 }
535 if (truncated)
536 PUTS(fd, "...");
537}
538
539/* Write a frame into the file fd: "File "xxx", line xxx in xxx".
540
541 This function is signal safe. */
542
543static void
544dump_frame(int fd, PyFrameObject *frame)
545{
546 PyCodeObject *code;
547 int lineno;
548
549 code = frame->f_code;
550 PUTS(fd, " File ");
551 if (code != NULL && code->co_filename != NULL
552 && PyUnicode_Check(code->co_filename))
553 {
554 write(fd, "\"", 1);
555 dump_ascii(fd, code->co_filename);
556 write(fd, "\"", 1);
557 } else {
558 PUTS(fd, "???");
559 }
560
561 /* PyFrame_GetLineNumber() was introduced in Python 2.7.0 and 3.2.0 */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200562 lineno = PyCode_Addr2Line(code, frame->f_lasti);
Victor Stinner024e37a2011-03-31 01:31:06 +0200563 PUTS(fd, ", line ");
564 dump_decimal(fd, lineno);
565 PUTS(fd, " in ");
566
567 if (code != NULL && code->co_name != NULL
568 && PyUnicode_Check(code->co_name))
569 dump_ascii(fd, code->co_name);
570 else
571 PUTS(fd, "???");
572
573 write(fd, "\n", 1);
574}
575
Victor Stinnerfcb88c42011-04-01 15:34:01 +0200576static void
Victor Stinner024e37a2011-03-31 01:31:06 +0200577dump_traceback(int fd, PyThreadState *tstate, int write_header)
578{
579 PyFrameObject *frame;
580 unsigned int depth;
581
Victor Stinner024e37a2011-03-31 01:31:06 +0200582 if (write_header)
583 PUTS(fd, "Traceback (most recent call first):\n");
Victor Stinnerfcb88c42011-04-01 15:34:01 +0200584
585 frame = _PyThreadState_GetFrame(tstate);
586 if (frame == NULL)
587 return;
588
Victor Stinner024e37a2011-03-31 01:31:06 +0200589 depth = 0;
590 while (frame != NULL) {
591 if (MAX_FRAME_DEPTH <= depth) {
592 PUTS(fd, " ...\n");
593 break;
594 }
595 if (!PyFrame_Check(frame))
596 break;
597 dump_frame(fd, frame);
598 frame = frame->f_back;
599 depth++;
600 }
Victor Stinner024e37a2011-03-31 01:31:06 +0200601}
602
Victor Stinnerfcb88c42011-04-01 15:34:01 +0200603void
Victor Stinner024e37a2011-03-31 01:31:06 +0200604_Py_DumpTraceback(int fd, PyThreadState *tstate)
605{
Victor Stinnerfcb88c42011-04-01 15:34:01 +0200606 dump_traceback(fd, tstate, 1);
Victor Stinner024e37a2011-03-31 01:31:06 +0200607}
608
609/* Write the thread identifier into the file 'fd': "Current thread 0xHHHH:\" if
610 is_current is true, "Thread 0xHHHH:\n" otherwise.
611
612 This function is signal safe. */
613
614static void
615write_thread_id(int fd, PyThreadState *tstate, int is_current)
616{
617 if (is_current)
618 PUTS(fd, "Current thread 0x");
619 else
620 PUTS(fd, "Thread 0x");
621 dump_hexadecimal(sizeof(long)*2, (unsigned long)tstate->thread_id, fd);
622 PUTS(fd, ":\n");
623}
624
625const char*
626_Py_DumpTracebackThreads(int fd, PyInterpreterState *interp,
627 PyThreadState *current_thread)
628{
629 PyThreadState *tstate;
630 unsigned int nthreads;
631
632 /* Get the current interpreter from the current thread */
633 tstate = PyInterpreterState_ThreadHead(interp);
634 if (tstate == NULL)
635 return "unable to get the thread head state";
636
637 /* Dump the traceback of each thread */
638 tstate = PyInterpreterState_ThreadHead(interp);
639 nthreads = 0;
640 do
641 {
642 if (nthreads != 0)
643 write(fd, "\n", 1);
644 if (nthreads >= MAX_NTHREADS) {
645 PUTS(fd, "...\n");
646 break;
647 }
648 write_thread_id(fd, tstate, tstate == current_thread);
649 dump_traceback(fd, tstate, 0);
650 tstate = PyThreadState_Next(tstate);
651 nthreads++;
652 } while (tstate != NULL);
653
654 return NULL;
655}
656