blob: c101933931bc26a0c9ccdfed42944314fd63c7fe [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"
Nicholas Bastina7604bf2004-03-21 18:37:23 +000010#include "traceback.h"
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +000011#ifdef HAVE_FCNTL_H
12#include <fcntl.h>
13#endif
Guido van Rossum3f5da241990-12-20 15:06:42 +000014
Nicholas Bastina7604bf2004-03-21 18:37:23 +000015#define OFF(x) offsetof(PyTracebackObject, x)
Guido van Rossum3f5da241990-12-20 15:06:42 +000016
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +000017/* Method from Parser/tokenizer.c */
18extern char * PyTokenizer_FindEncoding(int);
19
Collin Winter3eed7652007-08-14 17:53:54 +000020static PyObject *
21tb_dir(PyTracebackObject *self)
22{
23 return Py_BuildValue("[ssss]", "tb_frame", "tb_next",
24 "tb_lasti", "tb_lineno");
25}
26
27static PyMethodDef tb_methods[] = {
28 {"__dir__", (PyCFunction)tb_dir, METH_NOARGS},
29 {NULL, NULL, 0, NULL},
30};
31
Neal Norwitz8dfc4a92007-08-11 06:39:53 +000032static PyMemberDef tb_memberlist[] = {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000033 {"tb_next", T_OBJECT, OFF(tb_next), READONLY},
34 {"tb_frame", T_OBJECT, OFF(tb_frame), READONLY},
35 {"tb_lasti", T_INT, OFF(tb_lasti), READONLY},
36 {"tb_lineno", T_INT, OFF(tb_lineno), READONLY},
37 {NULL} /* Sentinel */
Guido van Rossum3f5da241990-12-20 15:06:42 +000038};
39
Guido van Rossum3f5da241990-12-20 15:06:42 +000040static void
Nicholas Bastina7604bf2004-03-21 18:37:23 +000041tb_dealloc(PyTracebackObject *tb)
Guido van Rossum3f5da241990-12-20 15:06:42 +000042{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000043 PyObject_GC_UnTrack(tb);
44 Py_TRASHCAN_SAFE_BEGIN(tb)
45 Py_XDECREF(tb->tb_next);
46 Py_XDECREF(tb->tb_frame);
47 PyObject_GC_Del(tb);
48 Py_TRASHCAN_SAFE_END(tb)
Guido van Rossum3f5da241990-12-20 15:06:42 +000049}
50
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000051static int
Nicholas Bastina7604bf2004-03-21 18:37:23 +000052tb_traverse(PyTracebackObject *tb, visitproc visit, void *arg)
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000053{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000054 Py_VISIT(tb->tb_next);
55 Py_VISIT(tb->tb_frame);
56 return 0;
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000057}
58
59static void
Nicholas Bastina7604bf2004-03-21 18:37:23 +000060tb_clear(PyTracebackObject *tb)
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000061{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000062 Py_CLEAR(tb->tb_next);
63 Py_CLEAR(tb->tb_frame);
Jeremy Hyltonfd14d8e2001-10-22 22:17:41 +000064}
65
Tim Petersd7c36522001-10-22 19:34:09 +000066PyTypeObject PyTraceBack_Type = {
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +000067 PyVarObject_HEAD_INIT(&PyType_Type, 0)
68 "traceback",
69 sizeof(PyTracebackObject),
70 0,
71 (destructor)tb_dealloc, /*tp_dealloc*/
72 0, /*tp_print*/
73 0, /*tp_getattr*/
74 0, /*tp_setattr*/
75 0, /*tp_reserved*/
76 0, /*tp_repr*/
77 0, /*tp_as_number*/
78 0, /*tp_as_sequence*/
79 0, /*tp_as_mapping*/
80 0, /* tp_hash */
81 0, /* tp_call */
82 0, /* tp_str */
83 PyObject_GenericGetAttr, /* tp_getattro */
84 0, /* tp_setattro */
85 0, /* tp_as_buffer */
86 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
87 0, /* tp_doc */
88 (traverseproc)tb_traverse, /* tp_traverse */
89 (inquiry)tb_clear, /* tp_clear */
90 0, /* tp_richcompare */
91 0, /* tp_weaklistoffset */
92 0, /* tp_iter */
93 0, /* tp_iternext */
94 tb_methods, /* tp_methods */
95 tb_memberlist, /* tp_members */
96 0, /* tp_getset */
97 0, /* tp_base */
98 0, /* tp_dict */
Guido van Rossum3f5da241990-12-20 15:06:42 +000099};
100
Nicholas Bastina7604bf2004-03-21 18:37:23 +0000101static PyTracebackObject *
102newtracebackobject(PyTracebackObject *next, PyFrameObject *frame)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000103{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000104 PyTracebackObject *tb;
105 if ((next != NULL && !PyTraceBack_Check(next)) ||
106 frame == NULL || !PyFrame_Check(frame)) {
107 PyErr_BadInternalCall();
108 return NULL;
109 }
110 tb = PyObject_GC_New(PyTracebackObject, &PyTraceBack_Type);
111 if (tb != NULL) {
112 Py_XINCREF(next);
113 tb->tb_next = next;
114 Py_XINCREF(frame);
115 tb->tb_frame = frame;
116 tb->tb_lasti = frame->f_lasti;
117 tb->tb_lineno = PyCode_Addr2Line(frame->f_code,
118 frame->f_lasti);
119 PyObject_GC_Track(tb);
120 }
121 return tb;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000122}
123
Guido van Rossum3f5da241990-12-20 15:06:42 +0000124int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000125PyTraceBack_Here(PyFrameObject *frame)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000126{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000127 PyThreadState *tstate = PyThreadState_GET();
128 PyTracebackObject *oldtb = (PyTracebackObject *) tstate->curexc_traceback;
129 PyTracebackObject *tb = newtracebackobject(oldtb, frame);
130 if (tb == NULL)
131 return -1;
132 tstate->curexc_traceback = (PyObject *)tb;
133 Py_XDECREF(oldtb);
134 return 0;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000135}
136
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000137static PyObject *
138_Py_FindSourceFile(PyObject *filename, char* namebuf, size_t namelen, PyObject *io)
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000139{
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000140 Py_ssize_t i;
141 PyObject *binary;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000142 PyObject *v;
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000143 Py_ssize_t npath;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000144 size_t taillen;
145 PyObject *syspath;
146 const char* path;
147 const char* tail;
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000148 const char* filepath;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000149 Py_ssize_t len;
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000150
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000151 filepath = _PyUnicode_AsString(filename);
152 if (filepath == NULL) {
153 PyErr_Clear();
154 return NULL;
155 }
156
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000157 /* Search tail of filename in sys.path before giving up */
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000158 tail = strrchr(filepath, SEP);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000159 if (tail == NULL)
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000160 tail = filepath;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000161 else
162 tail++;
163 taillen = strlen(tail);
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000164
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000165 syspath = PySys_GetObject("path");
166 if (syspath == NULL || !PyList_Check(syspath))
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000167 return NULL;
168 npath = PyList_Size(syspath);
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000169
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000170 for (i = 0; i < npath; i++) {
171 v = PyList_GetItem(syspath, i);
172 if (v == NULL) {
173 PyErr_Clear();
174 break;
175 }
176 if (!PyUnicode_Check(v))
177 continue;
178 path = _PyUnicode_AsStringAndSize(v, &len);
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000179 if (path == NULL) {
180 PyErr_Clear();
181 continue;
182 }
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000183 if (len + 1 + (Py_ssize_t)taillen >= (Py_ssize_t)namelen - 1)
184 continue; /* Too long */
185 strcpy(namebuf, path);
186 if (strlen(namebuf) != len)
187 continue; /* v contains '\0' */
188 if (len > 0 && namebuf[len-1] != SEP)
189 namebuf[len++] = SEP;
190 strcpy(namebuf+len, tail);
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000191
192 binary = PyObject_CallMethod(io, "open", "ss", namebuf, "rb");
193 if (binary != NULL)
194 return binary;
195 PyErr_Clear();
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000196 }
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000197 return NULL;
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000198}
199
Christian Heimes33fe8092008-04-13 13:53:33 +0000200int
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000201_Py_DisplaySourceLine(PyObject *f, PyObject *filename, int lineno, int indent)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000202{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000203 int err = 0;
204 int fd;
205 int i;
206 char *found_encoding;
207 char *encoding;
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000208 PyObject *io;
209 PyObject *binary;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000210 PyObject *fob = NULL;
211 PyObject *lineobj = NULL;
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000212 char buf[MAXPATHLEN+1];
213 Py_UNICODE *u, *p;
214 Py_ssize_t len;
Christian Heimes679db4a2008-01-18 09:56:22 +0000215
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000216 /* open the file */
217 if (filename == NULL)
218 return 0;
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000219
220 io = PyImport_ImportModuleNoBlock("io");
221 if (io == NULL)
222 return -1;
223 binary = PyObject_CallMethod(io, "open", "Os", filename, "rb");
224
225 if (binary == NULL) {
226 binary = _Py_FindSourceFile(filename, buf, sizeof(buf), io);
227 if (binary == NULL) {
228 Py_DECREF(io);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000229 return 0;
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000230 }
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000231 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000232
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000233 /* use the right encoding to decode the file as unicode */
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000234 fd = PyObject_AsFileDescriptor(binary);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000235 found_encoding = PyTokenizer_FindEncoding(fd);
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000236 encoding = (found_encoding != NULL) ? found_encoding : "utf-8";
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000237 lseek(fd, 0, 0); /* Reset position */
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000238 fob = PyObject_CallMethod(io, "TextIOWrapper", "Os", binary, encoding);
239 Py_DECREF(io);
240 Py_DECREF(binary);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000241 PyMem_FREE(found_encoding);
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000242
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000243 if (fob == NULL) {
244 PyErr_Clear();
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000245 return 0;
246 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000247
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000248 /* get the line number lineno */
249 for (i = 0; i < lineno; i++) {
250 Py_XDECREF(lineobj);
251 lineobj = PyFile_GetLine(fob, -1);
252 if (!lineobj) {
253 err = -1;
254 break;
255 }
256 }
257 Py_DECREF(fob);
258 if (!lineobj || !PyUnicode_Check(lineobj)) {
259 Py_XDECREF(lineobj);
260 return err;
261 }
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000262
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000263 /* remove the indentation of the line */
264 u = PyUnicode_AS_UNICODE(lineobj);
265 len = PyUnicode_GET_SIZE(lineobj);
266 for (p=u; *p == ' ' || *p == '\t' || *p == '\014'; p++)
267 len--;
268 if (u != p) {
269 PyObject *truncated;
270 truncated = PyUnicode_FromUnicode(p, len);
271 if (truncated) {
272 Py_DECREF(lineobj);
273 lineobj = truncated;
274 } else {
275 PyErr_Clear();
276 }
277 }
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000278
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000279 /* Write some spaces before the line */
280 strcpy(buf, " ");
281 assert (strlen(buf) == 10);
282 while (indent > 0) {
283 if(indent < 10)
284 buf[indent] = '\0';
285 err = PyFile_WriteString(buf, f);
286 if (err != 0)
287 break;
288 indent -= 10;
289 }
Amaury Forgeot d'Arccf8016a2008-10-09 23:37:48 +0000290
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000291 /* finally display the line */
292 if (err == 0)
293 err = PyFile_WriteObject(lineobj, f, Py_PRINT_RAW);
294 Py_DECREF(lineobj);
295 if (err == 0)
296 err = PyFile_WriteString("\n", f);
297 return err;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000298}
299
Guido van Rossum7e8d26d1997-05-22 22:35:47 +0000300static int
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000301tb_displayline(PyObject *f, PyObject *filename, int lineno, PyObject *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000302{
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000303 int err;
304 PyObject *line;
Christian Heimes33fe8092008-04-13 13:53:33 +0000305
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000306 if (filename == NULL || name == NULL)
307 return -1;
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000308 line = PyUnicode_FromFormat(" File \"%U\", line %d, in %U\n",
309 filename, lineno, name);
310 if (line == NULL)
311 return -1;
312 err = PyFile_WriteObject(line, f, Py_PRINT_RAW);
313 Py_DECREF(line);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000314 if (err != 0)
315 return err;
316 return _Py_DisplaySourceLine(f, filename, lineno, 4);
Christian Heimes33fe8092008-04-13 13:53:33 +0000317}
318
319static int
320tb_printinternal(PyTracebackObject *tb, PyObject *f, long limit)
321{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000322 int err = 0;
323 long depth = 0;
324 PyTracebackObject *tb1 = tb;
325 while (tb1 != NULL) {
326 depth++;
327 tb1 = tb1->tb_next;
328 }
329 while (tb != NULL && err == 0) {
330 if (depth <= limit) {
331 err = tb_displayline(f,
Victor Stinner25bb0fd2010-06-17 23:23:37 +0000332 tb->tb_frame->f_code->co_filename,
333 tb->tb_lineno,
334 tb->tb_frame->f_code->co_name);
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000335 }
336 depth--;
337 tb = tb->tb_next;
338 if (err == 0)
339 err = PyErr_CheckSignals();
340 }
341 return err;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000342}
343
Christian Heimes0fbab7f2007-12-04 21:55:18 +0000344#define PyTraceBack_LIMIT 1000
345
Guido van Rossum3f5da241990-12-20 15:06:42 +0000346int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000347PyTraceBack_Print(PyObject *v, PyObject *f)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000348{
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000349 int err;
350 PyObject *limitv;
351 long limit = PyTraceBack_LIMIT;
Christian Heimes0fbab7f2007-12-04 21:55:18 +0000352
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000353 if (v == NULL)
354 return 0;
355 if (!PyTraceBack_Check(v)) {
356 PyErr_BadInternalCall();
357 return -1;
358 }
359 limitv = PySys_GetObject("tracebacklimit");
360 if (limitv) {
361 PyObject *exc_type, *exc_value, *exc_tb;
Christian Heimes0fbab7f2007-12-04 21:55:18 +0000362
Antoine Pitrou7f14f0d2010-05-09 16:14:21 +0000363 PyErr_Fetch(&exc_type, &exc_value, &exc_tb);
364 limit = PyLong_AsLong(limitv);
365 if (limit == -1 && PyErr_Occurred()) {
366 if (PyErr_ExceptionMatches(PyExc_OverflowError)) {
367 limit = PyTraceBack_LIMIT;
368 }
369 else {
370 Py_XDECREF(exc_type);
371 Py_XDECREF(exc_value);
372 Py_XDECREF(exc_tb);
373 return 0;
374 }
375 }
376 else if (limit <= 0) {
377 limit = PyTraceBack_LIMIT;
378 }
379 PyErr_Restore(exc_type, exc_value, exc_tb);
380 }
381 err = PyFile_WriteString("Traceback (most recent call last):\n", f);
382 if (!err)
383 err = tb_printinternal((PyTracebackObject *)v, f, limit);
384 return err;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000385}