Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 2 | /* Error handling */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 4 | #include "Python.h" |
Guido van Rossum | f22120a | 1990-12-20 23:05:40 +0000 | [diff] [blame] | 5 | |
Guido van Rossum | 53e8d44 | 1995-03-09 12:11:31 +0000 | [diff] [blame] | 6 | #ifndef __STDC__ |
Guido van Rossum | 7844e38 | 1997-04-11 20:44:04 +0000 | [diff] [blame] | 7 | #ifndef MS_WINDOWS |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 8 | extern char *strerror(int); |
Guido van Rossum | 53e8d44 | 1995-03-09 12:11:31 +0000 | [diff] [blame] | 9 | #endif |
Guido van Rossum | 7844e38 | 1997-04-11 20:44:04 +0000 | [diff] [blame] | 10 | #endif |
Guido van Rossum | f5401bd | 1990-11-02 17:50:28 +0000 | [diff] [blame] | 11 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 12 | #ifdef MS_WINDOWS |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 13 | #include <windows.h> |
| 14 | #include <winbase.h> |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 15 | #endif |
| 16 | |
Jeremy Hylton | b69a27e | 2000-09-01 03:49:47 +0000 | [diff] [blame] | 17 | #include <ctype.h> |
| 18 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 19 | #ifdef __cplusplus |
| 20 | extern "C" { |
| 21 | #endif |
| 22 | |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 23 | _Py_IDENTIFIER(builtins); |
| 24 | _Py_IDENTIFIER(stderr); |
| 25 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 26 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 27 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 28 | PyErr_Restore(PyObject *type, PyObject *value, PyObject *traceback) |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 29 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 30 | PyThreadState *tstate = PyThreadState_GET(); |
| 31 | PyObject *oldtype, *oldvalue, *oldtraceback; |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 32 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 33 | if (traceback != NULL && !PyTraceBack_Check(traceback)) { |
| 34 | /* XXX Should never happen -- fatal error instead? */ |
| 35 | /* Well, it could be None. */ |
| 36 | Py_DECREF(traceback); |
| 37 | traceback = NULL; |
| 38 | } |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 39 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 40 | /* Save these in locals to safeguard against recursive |
| 41 | invocation through Py_XDECREF */ |
| 42 | oldtype = tstate->curexc_type; |
| 43 | oldvalue = tstate->curexc_value; |
| 44 | oldtraceback = tstate->curexc_traceback; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 45 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 46 | tstate->curexc_type = type; |
| 47 | tstate->curexc_value = value; |
| 48 | tstate->curexc_traceback = traceback; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 49 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 50 | Py_XDECREF(oldtype); |
| 51 | Py_XDECREF(oldvalue); |
| 52 | Py_XDECREF(oldtraceback); |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 56 | PyErr_SetObject(PyObject *exception, PyObject *value) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 57 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 58 | PyThreadState *tstate = PyThreadState_GET(); |
| 59 | PyObject *exc_value; |
| 60 | PyObject *tb = NULL; |
Guido van Rossum | b4fb6e4 | 2008-06-14 20:20:24 +0000 | [diff] [blame] | 61 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 62 | if (exception != NULL && |
| 63 | !PyExceptionClass_Check(exception)) { |
| 64 | PyErr_Format(PyExc_SystemError, |
| 65 | "exception %R not a BaseException subclass", |
| 66 | exception); |
| 67 | return; |
| 68 | } |
| 69 | Py_XINCREF(value); |
| 70 | exc_value = tstate->exc_value; |
| 71 | if (exc_value != NULL && exc_value != Py_None) { |
| 72 | /* Implicit exception chaining */ |
| 73 | Py_INCREF(exc_value); |
| 74 | if (value == NULL || !PyExceptionInstance_Check(value)) { |
| 75 | /* We must normalize the value right now */ |
| 76 | PyObject *args, *fixed_value; |
Victor Stinner | de821be | 2015-03-24 12:41:23 +0100 | [diff] [blame] | 77 | |
| 78 | /* Issue #23571: PyEval_CallObject() must not be called with an |
| 79 | exception set */ |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 80 | PyErr_Clear(); |
Victor Stinner | de821be | 2015-03-24 12:41:23 +0100 | [diff] [blame] | 81 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 82 | if (value == NULL || value == Py_None) |
| 83 | args = PyTuple_New(0); |
| 84 | else if (PyTuple_Check(value)) { |
| 85 | Py_INCREF(value); |
| 86 | args = value; |
| 87 | } |
| 88 | else |
| 89 | args = PyTuple_Pack(1, value); |
| 90 | fixed_value = args ? |
| 91 | PyEval_CallObject(exception, args) : NULL; |
| 92 | Py_XDECREF(args); |
| 93 | Py_XDECREF(value); |
| 94 | if (fixed_value == NULL) |
| 95 | return; |
| 96 | value = fixed_value; |
| 97 | } |
| 98 | /* Avoid reference cycles through the context chain. |
| 99 | This is O(chain length) but context chains are |
| 100 | usually very short. Sensitive readers may try |
| 101 | to inline the call to PyException_GetContext. */ |
| 102 | if (exc_value != value) { |
| 103 | PyObject *o = exc_value, *context; |
| 104 | while ((context = PyException_GetContext(o))) { |
| 105 | Py_DECREF(context); |
| 106 | if (context == value) { |
| 107 | PyException_SetContext(o, NULL); |
| 108 | break; |
| 109 | } |
| 110 | o = context; |
| 111 | } |
| 112 | PyException_SetContext(value, exc_value); |
| 113 | } else { |
| 114 | Py_DECREF(exc_value); |
| 115 | } |
| 116 | } |
| 117 | if (value != NULL && PyExceptionInstance_Check(value)) |
| 118 | tb = PyException_GetTraceback(value); |
| 119 | Py_XINCREF(exception); |
| 120 | PyErr_Restore(exception, value, tb); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 121 | } |
| 122 | |
Raymond Hettinger | 69492da | 2013-09-02 15:59:26 -0700 | [diff] [blame] | 123 | /* Set a key error with the specified argument, wrapping it in a |
| 124 | * tuple automatically so that tuple keys are not unpacked as the |
| 125 | * exception arguments. */ |
| 126 | void |
| 127 | _PyErr_SetKeyError(PyObject *arg) |
| 128 | { |
| 129 | PyObject *tup; |
| 130 | tup = PyTuple_Pack(1, arg); |
| 131 | if (!tup) |
| 132 | return; /* caller will expect error to be set anyway */ |
| 133 | PyErr_SetObject(PyExc_KeyError, tup); |
| 134 | Py_DECREF(tup); |
| 135 | } |
| 136 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 137 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 138 | PyErr_SetNone(PyObject *exception) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 139 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 140 | PyErr_SetObject(exception, (PyObject *)NULL); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 144 | PyErr_SetString(PyObject *exception, const char *string) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 145 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 146 | PyObject *value = PyUnicode_FromString(string); |
| 147 | PyErr_SetObject(exception, value); |
| 148 | Py_XDECREF(value); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Guido van Rossum | 3a24181 | 1994-08-29 12:14:12 +0000 | [diff] [blame] | 151 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 152 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 153 | PyErr_Occurred(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 154 | { |
Victor Stinner | bfd316e | 2016-01-20 11:12:38 +0100 | [diff] [blame] | 155 | PyThreadState *tstate = _PyThreadState_UncheckedGet(); |
Jeffrey Yasskin | 8e0bdfd | 2010-05-13 18:31:05 +0000 | [diff] [blame] | 156 | return tstate == NULL ? NULL : tstate->curexc_type; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 159 | |
| 160 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 161 | PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 162 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 163 | if (err == NULL || exc == NULL) { |
| 164 | /* maybe caused by "import exceptions" that failed early on */ |
| 165 | return 0; |
| 166 | } |
| 167 | if (PyTuple_Check(exc)) { |
| 168 | Py_ssize_t i, n; |
| 169 | n = PyTuple_Size(exc); |
| 170 | for (i = 0; i < n; i++) { |
| 171 | /* Test recursively */ |
| 172 | if (PyErr_GivenExceptionMatches( |
| 173 | err, PyTuple_GET_ITEM(exc, i))) |
| 174 | { |
| 175 | return 1; |
| 176 | } |
| 177 | } |
| 178 | return 0; |
| 179 | } |
| 180 | /* err might be an instance, so check its class. */ |
| 181 | if (PyExceptionInstance_Check(err)) |
| 182 | err = PyExceptionInstance_Class(err); |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 183 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 184 | if (PyExceptionClass_Check(err) && PyExceptionClass_Check(exc)) { |
| 185 | int res = 0; |
| 186 | PyObject *exception, *value, *tb; |
| 187 | PyErr_Fetch(&exception, &value, &tb); |
| 188 | /* PyObject_IsSubclass() can recurse and therefore is |
| 189 | not safe (see test_bad_getattr in test.pickletester). */ |
| 190 | res = PyType_IsSubtype((PyTypeObject *)err, (PyTypeObject *)exc); |
| 191 | /* This function must not fail, so print the error here */ |
| 192 | if (res == -1) { |
| 193 | PyErr_WriteUnraisable(err); |
| 194 | res = 0; |
| 195 | } |
| 196 | PyErr_Restore(exception, value, tb); |
| 197 | return res; |
| 198 | } |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 199 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 200 | return err == exc; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 201 | } |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 202 | |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 203 | |
| 204 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 205 | PyErr_ExceptionMatches(PyObject *exc) |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 206 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 207 | return PyErr_GivenExceptionMatches(PyErr_Occurred(), exc); |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | |
| 211 | /* Used in many places to normalize a raised exception, including in |
| 212 | eval_code2(), do_raise(), and PyErr_Print() |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 213 | |
| 214 | XXX: should PyErr_NormalizeException() also call |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 215 | PyException_SetTraceback() with the resulting value and tb? |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 216 | */ |
| 217 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 218 | PyErr_NormalizeException(PyObject **exc, PyObject **val, PyObject **tb) |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 219 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 220 | PyObject *type = *exc; |
| 221 | PyObject *value = *val; |
| 222 | PyObject *inclass = NULL; |
| 223 | PyObject *initial_tb = NULL; |
| 224 | PyThreadState *tstate = NULL; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 225 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 226 | if (type == NULL) { |
| 227 | /* There was no exception, so nothing to do. */ |
| 228 | return; |
| 229 | } |
Guido van Rossum | ed473a4 | 2000-08-07 19:18:27 +0000 | [diff] [blame] | 230 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 231 | /* If PyErr_SetNone() was used, the value will have been actually |
| 232 | set to NULL. |
| 233 | */ |
| 234 | if (!value) { |
| 235 | value = Py_None; |
| 236 | Py_INCREF(value); |
| 237 | } |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 238 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 239 | if (PyExceptionInstance_Check(value)) |
| 240 | inclass = PyExceptionInstance_Class(value); |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 241 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 242 | /* Normalize the exception so that if the type is a class, the |
| 243 | value will be an instance. |
| 244 | */ |
| 245 | if (PyExceptionClass_Check(type)) { |
Victor Stinner | 74a7fa6 | 2013-07-17 00:44:53 +0200 | [diff] [blame] | 246 | int is_subclass; |
| 247 | if (inclass) { |
| 248 | is_subclass = PyObject_IsSubclass(inclass, type); |
| 249 | if (is_subclass < 0) |
| 250 | goto finally; |
| 251 | } |
| 252 | else |
| 253 | is_subclass = 0; |
| 254 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 255 | /* if the value was not an instance, or is not an instance |
| 256 | whose class is (or is derived from) type, then use the |
| 257 | value as an argument to instantiation of the type |
| 258 | class. |
| 259 | */ |
Victor Stinner | 74a7fa6 | 2013-07-17 00:44:53 +0200 | [diff] [blame] | 260 | if (!inclass || !is_subclass) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 261 | PyObject *args, *res; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 262 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 263 | if (value == Py_None) |
| 264 | args = PyTuple_New(0); |
| 265 | else if (PyTuple_Check(value)) { |
| 266 | Py_INCREF(value); |
| 267 | args = value; |
| 268 | } |
| 269 | else |
| 270 | args = PyTuple_Pack(1, value); |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 271 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 272 | if (args == NULL) |
| 273 | goto finally; |
| 274 | res = PyEval_CallObject(type, args); |
| 275 | Py_DECREF(args); |
| 276 | if (res == NULL) |
| 277 | goto finally; |
| 278 | Py_DECREF(value); |
| 279 | value = res; |
| 280 | } |
| 281 | /* if the class of the instance doesn't exactly match the |
| 282 | class of the type, believe the instance |
| 283 | */ |
| 284 | else if (inclass != type) { |
| 285 | Py_DECREF(type); |
| 286 | type = inclass; |
| 287 | Py_INCREF(type); |
| 288 | } |
| 289 | } |
| 290 | *exc = type; |
| 291 | *val = value; |
| 292 | return; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 293 | finally: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 294 | Py_DECREF(type); |
| 295 | Py_DECREF(value); |
| 296 | /* If the new exception doesn't set a traceback and the old |
| 297 | exception had a traceback, use the old traceback for the |
| 298 | new exception. It's better than nothing. |
| 299 | */ |
| 300 | initial_tb = *tb; |
| 301 | PyErr_Fetch(exc, val, tb); |
| 302 | if (initial_tb != NULL) { |
| 303 | if (*tb == NULL) |
| 304 | *tb = initial_tb; |
| 305 | else |
| 306 | Py_DECREF(initial_tb); |
| 307 | } |
| 308 | /* normalize recursively */ |
| 309 | tstate = PyThreadState_GET(); |
| 310 | if (++tstate->recursion_depth > Py_GetRecursionLimit()) { |
| 311 | --tstate->recursion_depth; |
Serhiy Storchaka | 191321d | 2015-12-27 15:41:34 +0200 | [diff] [blame] | 312 | /* throw away the old exception and use the recursion error instead */ |
| 313 | Py_INCREF(PyExc_RecursionError); |
Serhiy Storchaka | 57a01d3 | 2016-04-10 18:05:40 +0300 | [diff] [blame] | 314 | Py_SETREF(*exc, PyExc_RecursionError); |
Serhiy Storchaka | 191321d | 2015-12-27 15:41:34 +0200 | [diff] [blame] | 315 | Py_INCREF(PyExc_RecursionErrorInst); |
Serhiy Storchaka | 57a01d3 | 2016-04-10 18:05:40 +0300 | [diff] [blame] | 316 | Py_SETREF(*val, PyExc_RecursionErrorInst); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 317 | /* just keeping the old traceback */ |
| 318 | return; |
| 319 | } |
| 320 | PyErr_NormalizeException(exc, val, tb); |
| 321 | --tstate->recursion_depth; |
Barry Warsaw | c0dc92a | 1997-08-22 21:22:58 +0000 | [diff] [blame] | 322 | } |
| 323 | |
| 324 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 325 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 326 | PyErr_Fetch(PyObject **p_type, PyObject **p_value, PyObject **p_traceback) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 327 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 328 | PyThreadState *tstate = PyThreadState_GET(); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 329 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 330 | *p_type = tstate->curexc_type; |
| 331 | *p_value = tstate->curexc_value; |
| 332 | *p_traceback = tstate->curexc_traceback; |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 333 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 334 | tstate->curexc_type = NULL; |
| 335 | tstate->curexc_value = NULL; |
| 336 | tstate->curexc_traceback = NULL; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 340 | PyErr_Clear(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 341 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 342 | PyErr_Restore(NULL, NULL, NULL); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 343 | } |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 344 | |
Martin v. Löwis | aa2efcb | 2012-04-19 14:33:43 +0200 | [diff] [blame] | 345 | void |
| 346 | PyErr_GetExcInfo(PyObject **p_type, PyObject **p_value, PyObject **p_traceback) |
| 347 | { |
| 348 | PyThreadState *tstate = PyThreadState_GET(); |
| 349 | |
| 350 | *p_type = tstate->exc_type; |
| 351 | *p_value = tstate->exc_value; |
| 352 | *p_traceback = tstate->exc_traceback; |
| 353 | |
| 354 | Py_XINCREF(*p_type); |
| 355 | Py_XINCREF(*p_value); |
| 356 | Py_XINCREF(*p_traceback); |
| 357 | } |
| 358 | |
| 359 | void |
| 360 | PyErr_SetExcInfo(PyObject *p_type, PyObject *p_value, PyObject *p_traceback) |
| 361 | { |
| 362 | PyObject *oldtype, *oldvalue, *oldtraceback; |
| 363 | PyThreadState *tstate = PyThreadState_GET(); |
| 364 | |
| 365 | oldtype = tstate->exc_type; |
| 366 | oldvalue = tstate->exc_value; |
| 367 | oldtraceback = tstate->exc_traceback; |
| 368 | |
| 369 | tstate->exc_type = p_type; |
| 370 | tstate->exc_value = p_value; |
| 371 | tstate->exc_traceback = p_traceback; |
| 372 | |
| 373 | Py_XDECREF(oldtype); |
| 374 | Py_XDECREF(oldvalue); |
| 375 | Py_XDECREF(oldtraceback); |
| 376 | } |
| 377 | |
Serhiy Storchaka | e2bd2a7 | 2014-10-08 22:31:52 +0300 | [diff] [blame] | 378 | /* Like PyErr_Restore(), but if an exception is already set, |
| 379 | set the context associated with it. |
| 380 | */ |
| 381 | void |
| 382 | _PyErr_ChainExceptions(PyObject *exc, PyObject *val, PyObject *tb) |
| 383 | { |
| 384 | if (exc == NULL) |
| 385 | return; |
| 386 | |
| 387 | if (PyErr_Occurred()) { |
| 388 | PyObject *exc2, *val2, *tb2; |
| 389 | PyErr_Fetch(&exc2, &val2, &tb2); |
| 390 | PyErr_NormalizeException(&exc, &val, &tb); |
Serhiy Storchaka | 9e373be | 2016-10-21 16:19:59 +0300 | [diff] [blame] | 391 | if (tb != NULL) { |
| 392 | PyException_SetTraceback(val, tb); |
| 393 | Py_DECREF(tb); |
| 394 | } |
Serhiy Storchaka | e2bd2a7 | 2014-10-08 22:31:52 +0300 | [diff] [blame] | 395 | Py_DECREF(exc); |
Serhiy Storchaka | e2bd2a7 | 2014-10-08 22:31:52 +0300 | [diff] [blame] | 396 | PyErr_NormalizeException(&exc2, &val2, &tb2); |
| 397 | PyException_SetContext(val2, val); |
| 398 | PyErr_Restore(exc2, val2, tb2); |
| 399 | } |
| 400 | else { |
| 401 | PyErr_Restore(exc, val, tb); |
| 402 | } |
| 403 | } |
| 404 | |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 405 | /* Convenience functions to set a type error exception and return 0 */ |
| 406 | |
| 407 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 408 | PyErr_BadArgument(void) |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 409 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 410 | PyErr_SetString(PyExc_TypeError, |
| 411 | "bad argument type for built-in operation"); |
| 412 | return 0; |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 413 | } |
| 414 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 415 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 416 | PyErr_NoMemory(void) |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 417 | { |
Victor Stinner | f54a574 | 2013-07-22 22:28:37 +0200 | [diff] [blame] | 418 | if (Py_TYPE(PyExc_MemoryError) == NULL) { |
| 419 | /* PyErr_NoMemory() has been called before PyExc_MemoryError has been |
| 420 | initialized by _PyExc_Init() */ |
| 421 | Py_FatalError("Out of memory and PyExc_MemoryError is not " |
| 422 | "initialized yet"); |
| 423 | } |
Antoine Pitrou | 07e20ef | 2010-10-28 22:56:58 +0000 | [diff] [blame] | 424 | PyErr_SetNone(PyExc_MemoryError); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 425 | return NULL; |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 426 | } |
| 427 | |
Guido van Rossum | 373c869 | 1997-04-29 18:22:47 +0000 | [diff] [blame] | 428 | PyObject * |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 429 | PyErr_SetFromErrnoWithFilenameObject(PyObject *exc, PyObject *filenameObject) |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 430 | { |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 431 | return PyErr_SetFromErrnoWithFilenameObjects(exc, filenameObject, NULL); |
| 432 | } |
| 433 | |
| 434 | PyObject * |
| 435 | PyErr_SetFromErrnoWithFilenameObjects(PyObject *exc, PyObject *filenameObject, PyObject *filenameObject2) |
| 436 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 437 | PyObject *message; |
Antoine Pitrou | 5d6fbe8 | 2011-10-12 19:39:57 +0200 | [diff] [blame] | 438 | PyObject *v, *args; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 439 | int i = errno; |
Victor Stinner | 1f33f2b | 2011-12-17 04:45:09 +0100 | [diff] [blame] | 440 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 441 | WCHAR *s_buf = NULL; |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 442 | #endif /* Unix/Windows */ |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 443 | |
Guido van Rossum | e9fbc09 | 1995-02-18 14:52:19 +0000 | [diff] [blame] | 444 | #ifdef EINTR |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 445 | if (i == EINTR && PyErr_CheckSignals()) |
| 446 | return NULL; |
Guido van Rossum | e9fbc09 | 1995-02-18 14:52:19 +0000 | [diff] [blame] | 447 | #endif |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 448 | |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 449 | #ifndef MS_WINDOWS |
Victor Stinner | 1f33f2b | 2011-12-17 04:45:09 +0100 | [diff] [blame] | 450 | if (i != 0) { |
| 451 | char *s = strerror(i); |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 452 | message = PyUnicode_DecodeLocale(s, "surrogateescape"); |
Victor Stinner | 1f33f2b | 2011-12-17 04:45:09 +0100 | [diff] [blame] | 453 | } |
| 454 | else { |
| 455 | /* Sometimes errno didn't get set */ |
| 456 | message = PyUnicode_FromString("Error"); |
| 457 | } |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 458 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 459 | if (i == 0) |
| 460 | message = PyUnicode_FromString("Error"); /* Sometimes errno didn't get set */ |
| 461 | else |
| 462 | { |
| 463 | /* Note that the Win32 errors do not lineup with the |
| 464 | errno error. So if the error is in the MSVC error |
| 465 | table, we use it, otherwise we assume it really _is_ |
| 466 | a Win32 error code |
| 467 | */ |
| 468 | if (i > 0 && i < _sys_nerr) { |
| 469 | message = PyUnicode_FromString(_sys_errlist[i]); |
| 470 | } |
| 471 | else { |
| 472 | int len = FormatMessageW( |
| 473 | FORMAT_MESSAGE_ALLOCATE_BUFFER | |
| 474 | FORMAT_MESSAGE_FROM_SYSTEM | |
| 475 | FORMAT_MESSAGE_IGNORE_INSERTS, |
| 476 | NULL, /* no message source */ |
| 477 | i, |
| 478 | MAKELANGID(LANG_NEUTRAL, |
| 479 | SUBLANG_DEFAULT), |
| 480 | /* Default language */ |
| 481 | (LPWSTR) &s_buf, |
| 482 | 0, /* size not used */ |
| 483 | NULL); /* no args */ |
| 484 | if (len==0) { |
| 485 | /* Only ever seen this in out-of-mem |
| 486 | situations */ |
| 487 | s_buf = NULL; |
Serhiy Storchaka | f41f8f9 | 2015-04-02 09:47:27 +0300 | [diff] [blame] | 488 | message = PyUnicode_FromFormat("Windows Error 0x%x", i); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 489 | } else { |
| 490 | /* remove trailing cr/lf and dots */ |
| 491 | while (len > 0 && (s_buf[len-1] <= L' ' || s_buf[len-1] == L'.')) |
| 492 | s_buf[--len] = L'\0'; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 493 | message = PyUnicode_FromWideChar(s_buf, len); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 494 | } |
| 495 | } |
| 496 | } |
Martin v. Löwis | 3484a18 | 2002-03-09 12:07:51 +0000 | [diff] [blame] | 497 | #endif /* Unix/Windows */ |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 498 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 499 | if (message == NULL) |
| 500 | { |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 501 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 502 | LocalFree(s_buf); |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 503 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 504 | return NULL; |
| 505 | } |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 506 | |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 507 | if (filenameObject != NULL) { |
| 508 | if (filenameObject2 != NULL) |
| 509 | args = Py_BuildValue("(iOOiO)", i, message, filenameObject, 0, filenameObject2); |
| 510 | else |
| 511 | args = Py_BuildValue("(iOO)", i, message, filenameObject); |
| 512 | } else { |
| 513 | assert(filenameObject2 == NULL); |
Antoine Pitrou | 5d6fbe8 | 2011-10-12 19:39:57 +0200 | [diff] [blame] | 514 | args = Py_BuildValue("(iO)", i, message); |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 515 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 516 | Py_DECREF(message); |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 517 | |
Antoine Pitrou | 5d6fbe8 | 2011-10-12 19:39:57 +0200 | [diff] [blame] | 518 | if (args != NULL) { |
| 519 | v = PyObject_Call(exc, args, NULL); |
| 520 | Py_DECREF(args); |
| 521 | if (v != NULL) { |
| 522 | PyErr_SetObject((PyObject *) Py_TYPE(v), v); |
| 523 | Py_DECREF(v); |
| 524 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 525 | } |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 526 | #ifdef MS_WINDOWS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 527 | LocalFree(s_buf); |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 528 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 529 | return NULL; |
Guido van Rossum | 7d310eb | 1990-10-14 20:00:05 +0000 | [diff] [blame] | 530 | } |
Guido van Rossum | 743007d | 1999-04-21 15:27:31 +0000 | [diff] [blame] | 531 | |
Barry Warsaw | 97d9515 | 1998-07-23 16:05:56 +0000 | [diff] [blame] | 532 | PyObject * |
Neal Norwitz | b382b84 | 2007-08-24 20:00:37 +0000 | [diff] [blame] | 533 | PyErr_SetFromErrnoWithFilename(PyObject *exc, const char *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 534 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 535 | PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 536 | PyObject *result = PyErr_SetFromErrnoWithFilenameObjects(exc, name, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 537 | Py_XDECREF(name); |
| 538 | return result; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 539 | } |
| 540 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 541 | #ifdef MS_WINDOWS |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 542 | PyObject * |
Neal Norwitz | b382b84 | 2007-08-24 20:00:37 +0000 | [diff] [blame] | 543 | PyErr_SetFromErrnoWithUnicodeFilename(PyObject *exc, const Py_UNICODE *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 544 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 545 | PyObject *name = filename ? |
| 546 | PyUnicode_FromUnicode(filename, wcslen(filename)) : |
| 547 | NULL; |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 548 | PyObject *result = PyErr_SetFromErrnoWithFilenameObjects(exc, name, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 549 | Py_XDECREF(name); |
| 550 | return result; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 551 | } |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 552 | #endif /* MS_WINDOWS */ |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 553 | |
| 554 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 555 | PyErr_SetFromErrno(PyObject *exc) |
Barry Warsaw | 97d9515 | 1998-07-23 16:05:56 +0000 | [diff] [blame] | 556 | { |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 557 | return PyErr_SetFromErrnoWithFilenameObjects(exc, NULL, NULL); |
Barry Warsaw | 97d9515 | 1998-07-23 16:05:56 +0000 | [diff] [blame] | 558 | } |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 559 | |
Brett Cannon | bf36409 | 2006-03-01 04:25:17 +0000 | [diff] [blame] | 560 | #ifdef MS_WINDOWS |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 561 | /* Windows specific error code handling */ |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 562 | PyObject *PyErr_SetExcFromWindowsErrWithFilenameObject( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 563 | PyObject *exc, |
| 564 | int ierr, |
| 565 | PyObject *filenameObject) |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 566 | { |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 567 | return PyErr_SetExcFromWindowsErrWithFilenameObjects(exc, ierr, |
| 568 | filenameObject, NULL); |
| 569 | } |
| 570 | |
| 571 | PyObject *PyErr_SetExcFromWindowsErrWithFilenameObjects( |
| 572 | PyObject *exc, |
| 573 | int ierr, |
| 574 | PyObject *filenameObject, |
| 575 | PyObject *filenameObject2) |
| 576 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 577 | int len; |
| 578 | WCHAR *s_buf = NULL; /* Free via LocalFree */ |
| 579 | PyObject *message; |
Victor Stinner | 9ea8e4c | 2011-10-17 20:18:58 +0200 | [diff] [blame] | 580 | PyObject *args, *v; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 581 | DWORD err = (DWORD)ierr; |
| 582 | if (err==0) err = GetLastError(); |
| 583 | len = FormatMessageW( |
| 584 | /* Error API error */ |
| 585 | FORMAT_MESSAGE_ALLOCATE_BUFFER | |
| 586 | FORMAT_MESSAGE_FROM_SYSTEM | |
| 587 | FORMAT_MESSAGE_IGNORE_INSERTS, |
| 588 | NULL, /* no message source */ |
| 589 | err, |
| 590 | MAKELANGID(LANG_NEUTRAL, |
| 591 | SUBLANG_DEFAULT), /* Default language */ |
| 592 | (LPWSTR) &s_buf, |
| 593 | 0, /* size not used */ |
| 594 | NULL); /* no args */ |
| 595 | if (len==0) { |
| 596 | /* Only seen this in out of mem situations */ |
Serhiy Storchaka | f41f8f9 | 2015-04-02 09:47:27 +0300 | [diff] [blame] | 597 | message = PyUnicode_FromFormat("Windows Error 0x%x", err); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 598 | s_buf = NULL; |
| 599 | } else { |
| 600 | /* remove trailing cr/lf and dots */ |
| 601 | while (len > 0 && (s_buf[len-1] <= L' ' || s_buf[len-1] == L'.')) |
| 602 | s_buf[--len] = L'\0'; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 603 | message = PyUnicode_FromWideChar(s_buf, len); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 604 | } |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 605 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 606 | if (message == NULL) |
| 607 | { |
| 608 | LocalFree(s_buf); |
| 609 | return NULL; |
| 610 | } |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 611 | |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 612 | if (filenameObject == NULL) { |
| 613 | assert(filenameObject2 == NULL); |
| 614 | filenameObject = filenameObject2 = Py_None; |
| 615 | } |
| 616 | else if (filenameObject2 == NULL) |
| 617 | filenameObject2 = Py_None; |
| 618 | /* This is the constructor signature for OSError. |
Antoine Pitrou | 6b4883d | 2011-10-12 02:54:14 +0200 | [diff] [blame] | 619 | The POSIX translation will be figured out by the constructor. */ |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 620 | args = Py_BuildValue("(iOOiO)", 0, message, filenameObject, err, filenameObject2); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 621 | Py_DECREF(message); |
Martin v. Löwis | 5d12abe | 2007-09-03 07:40:24 +0000 | [diff] [blame] | 622 | |
Victor Stinner | 9ea8e4c | 2011-10-17 20:18:58 +0200 | [diff] [blame] | 623 | if (args != NULL) { |
| 624 | v = PyObject_Call(exc, args, NULL); |
| 625 | Py_DECREF(args); |
| 626 | if (v != NULL) { |
| 627 | PyErr_SetObject((PyObject *) Py_TYPE(v), v); |
| 628 | Py_DECREF(v); |
| 629 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 630 | } |
| 631 | LocalFree(s_buf); |
| 632 | return NULL; |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 633 | } |
| 634 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 635 | PyObject *PyErr_SetExcFromWindowsErrWithFilename( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 636 | PyObject *exc, |
| 637 | int ierr, |
| 638 | const char *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 639 | { |
Victor Stinner | 92be939 | 2010-12-28 00:28:21 +0000 | [diff] [blame] | 640 | PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 641 | PyObject *ret = PyErr_SetExcFromWindowsErrWithFilenameObjects(exc, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 642 | ierr, |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 643 | name, |
| 644 | NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 645 | Py_XDECREF(name); |
| 646 | return ret; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 647 | } |
| 648 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 649 | PyObject *PyErr_SetExcFromWindowsErrWithUnicodeFilename( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 650 | PyObject *exc, |
| 651 | int ierr, |
| 652 | const Py_UNICODE *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 653 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 654 | PyObject *name = filename ? |
| 655 | PyUnicode_FromUnicode(filename, wcslen(filename)) : |
| 656 | NULL; |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 657 | PyObject *ret = PyErr_SetExcFromWindowsErrWithFilenameObjects(exc, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 658 | ierr, |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 659 | name, |
| 660 | NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 661 | Py_XDECREF(name); |
| 662 | return ret; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 663 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 664 | |
Thomas Heller | 085358a | 2002-07-29 14:27:41 +0000 | [diff] [blame] | 665 | PyObject *PyErr_SetExcFromWindowsErr(PyObject *exc, int ierr) |
| 666 | { |
Larry Hastings | 8f9f0f1 | 2014-02-10 03:43:57 -0800 | [diff] [blame] | 667 | return PyErr_SetExcFromWindowsErrWithFilename(exc, ierr, NULL); |
Thomas Heller | 085358a | 2002-07-29 14:27:41 +0000 | [diff] [blame] | 668 | } |
| 669 | |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 670 | PyObject *PyErr_SetFromWindowsErr(int ierr) |
| 671 | { |
Larry Hastings | 8f9f0f1 | 2014-02-10 03:43:57 -0800 | [diff] [blame] | 672 | return PyErr_SetExcFromWindowsErrWithFilename(PyExc_OSError, |
| 673 | ierr, NULL); |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 674 | } |
| 675 | |
Thomas Heller | 085358a | 2002-07-29 14:27:41 +0000 | [diff] [blame] | 676 | PyObject *PyErr_SetFromWindowsErrWithFilename( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 677 | int ierr, |
| 678 | const char *filename) |
Thomas Heller | 085358a | 2002-07-29 14:27:41 +0000 | [diff] [blame] | 679 | { |
Victor Stinner | 92be939 | 2010-12-28 00:28:21 +0000 | [diff] [blame] | 680 | PyObject *name = filename ? PyUnicode_DecodeFSDefault(filename) : NULL; |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 681 | PyObject *result = PyErr_SetExcFromWindowsErrWithFilenameObjects( |
Andrew Svetlov | 2606a6f | 2012-12-19 14:33:35 +0200 | [diff] [blame] | 682 | PyExc_OSError, |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 683 | ierr, name, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 684 | Py_XDECREF(name); |
| 685 | return result; |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 686 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 687 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 688 | PyObject *PyErr_SetFromWindowsErrWithUnicodeFilename( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 689 | int ierr, |
| 690 | const Py_UNICODE *filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 691 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 692 | PyObject *name = filename ? |
| 693 | PyUnicode_FromUnicode(filename, wcslen(filename)) : |
| 694 | NULL; |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 695 | PyObject *result = PyErr_SetExcFromWindowsErrWithFilenameObjects( |
Andrew Svetlov | 2606a6f | 2012-12-19 14:33:35 +0200 | [diff] [blame] | 696 | PyExc_OSError, |
Larry Hastings | b082731 | 2014-02-09 22:05:19 -0800 | [diff] [blame] | 697 | ierr, name, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 698 | Py_XDECREF(name); |
| 699 | return result; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 700 | } |
Guido van Rossum | 795e189 | 2000-02-17 15:19:15 +0000 | [diff] [blame] | 701 | #endif /* MS_WINDOWS */ |
| 702 | |
Brett Cannon | 79ec55e | 2012-04-12 20:24:54 -0400 | [diff] [blame] | 703 | PyObject * |
Brett Cannon | 82da888 | 2013-07-04 17:48:16 -0400 | [diff] [blame] | 704 | PyErr_SetImportError(PyObject *msg, PyObject *name, PyObject *path) |
Brett Cannon | 79ec55e | 2012-04-12 20:24:54 -0400 | [diff] [blame] | 705 | { |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 706 | PyObject *args, *kwargs, *error; |
| 707 | |
Brett Cannon | 82da888 | 2013-07-04 17:48:16 -0400 | [diff] [blame] | 708 | if (msg == NULL) |
Brian Curtin | 94c001b | 2012-04-18 08:30:51 -0500 | [diff] [blame] | 709 | return NULL; |
| 710 | |
Antoine Pitrou | ec9bac4 | 2012-04-18 16:57:54 +0200 | [diff] [blame] | 711 | args = PyTuple_New(1); |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 712 | if (args == NULL) |
| 713 | return NULL; |
| 714 | |
| 715 | kwargs = PyDict_New(); |
Benjamin Peterson | da20cd2 | 2012-04-18 10:48:00 -0400 | [diff] [blame] | 716 | if (kwargs == NULL) { |
| 717 | Py_DECREF(args); |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 718 | return NULL; |
Benjamin Peterson | da20cd2 | 2012-04-18 10:48:00 -0400 | [diff] [blame] | 719 | } |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 720 | |
Brian Curtin | 94c001b | 2012-04-18 08:30:51 -0500 | [diff] [blame] | 721 | if (name == NULL) { |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 722 | name = Py_None; |
Brian Curtin | 94c001b | 2012-04-18 08:30:51 -0500 | [diff] [blame] | 723 | } |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 724 | |
Brian Curtin | 94c001b | 2012-04-18 08:30:51 -0500 | [diff] [blame] | 725 | if (path == NULL) { |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 726 | path = Py_None; |
Brian Curtin | 94c001b | 2012-04-18 08:30:51 -0500 | [diff] [blame] | 727 | } |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 728 | |
| 729 | Py_INCREF(msg); |
Benjamin Peterson | da20cd2 | 2012-04-18 10:48:00 -0400 | [diff] [blame] | 730 | PyTuple_SET_ITEM(args, 0, msg); |
Victor Stinner | 479054b | 2013-07-17 21:54:25 +0200 | [diff] [blame] | 731 | |
| 732 | if (PyDict_SetItemString(kwargs, "name", name) < 0) |
Berker Peksag | ec766d3 | 2016-05-01 09:06:36 +0300 | [diff] [blame] | 733 | goto done; |
Victor Stinner | 479054b | 2013-07-17 21:54:25 +0200 | [diff] [blame] | 734 | if (PyDict_SetItemString(kwargs, "path", path) < 0) |
Berker Peksag | ec766d3 | 2016-05-01 09:06:36 +0300 | [diff] [blame] | 735 | goto done; |
Brett Cannon | 79ec55e | 2012-04-12 20:24:54 -0400 | [diff] [blame] | 736 | |
Brett Cannon | 82da888 | 2013-07-04 17:48:16 -0400 | [diff] [blame] | 737 | error = PyObject_Call(PyExc_ImportError, args, kwargs); |
Benjamin Peterson | da20cd2 | 2012-04-18 10:48:00 -0400 | [diff] [blame] | 738 | if (error != NULL) { |
| 739 | PyErr_SetObject((PyObject *)Py_TYPE(error), error); |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 740 | Py_DECREF(error); |
Brett Cannon | 79ec55e | 2012-04-12 20:24:54 -0400 | [diff] [blame] | 741 | } |
| 742 | |
Berker Peksag | ec766d3 | 2016-05-01 09:06:36 +0300 | [diff] [blame] | 743 | done: |
Brett Cannon | 79ec55e | 2012-04-12 20:24:54 -0400 | [diff] [blame] | 744 | Py_DECREF(args); |
| 745 | Py_DECREF(kwargs); |
Brian Curtin | 09b86d1 | 2012-04-17 16:57:09 -0500 | [diff] [blame] | 746 | return NULL; |
Brett Cannon | 79ec55e | 2012-04-12 20:24:54 -0400 | [diff] [blame] | 747 | } |
| 748 | |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 749 | void |
Neal Norwitz | b382b84 | 2007-08-24 20:00:37 +0000 | [diff] [blame] | 750 | _PyErr_BadInternalCall(const char *filename, int lineno) |
Fred Drake | 6d63adf | 2000-08-24 22:38:39 +0000 | [diff] [blame] | 751 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 752 | PyErr_Format(PyExc_SystemError, |
| 753 | "%s:%d: bad argument to internal function", |
| 754 | filename, lineno); |
Fred Drake | 6d63adf | 2000-08-24 22:38:39 +0000 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | /* Remove the preprocessor macro for PyErr_BadInternalCall() so that we can |
| 758 | export the entry point for existing object code: */ |
| 759 | #undef PyErr_BadInternalCall |
| 760 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 761 | PyErr_BadInternalCall(void) |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 762 | { |
Victor Stinner | fb3a630 | 2013-07-12 00:37:30 +0200 | [diff] [blame] | 763 | assert(0 && "bad argument to internal function"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 764 | PyErr_Format(PyExc_SystemError, |
| 765 | "bad argument to internal function"); |
Guido van Rossum | 683a072 | 1990-10-21 22:09:12 +0000 | [diff] [blame] | 766 | } |
Fred Drake | 6d63adf | 2000-08-24 22:38:39 +0000 | [diff] [blame] | 767 | #define PyErr_BadInternalCall() _PyErr_BadInternalCall(__FILE__, __LINE__) |
| 768 | |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 769 | |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 770 | PyObject * |
Antoine Pitrou | 0676a40 | 2014-09-30 21:16:27 +0200 | [diff] [blame] | 771 | PyErr_FormatV(PyObject *exception, const char *format, va_list vargs) |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 772 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 773 | PyObject* string; |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 774 | |
Victor Stinner | de821be | 2015-03-24 12:41:23 +0100 | [diff] [blame] | 775 | /* Issue #23571: PyUnicode_FromFormatV() must not be called with an |
| 776 | exception set, it calls arbitrary Python code like PyObject_Repr() */ |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 777 | PyErr_Clear(); |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 778 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 779 | string = PyUnicode_FromFormatV(format, vargs); |
Victor Stinner | de821be | 2015-03-24 12:41:23 +0100 | [diff] [blame] | 780 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 781 | PyErr_SetObject(exception, string); |
| 782 | Py_XDECREF(string); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 783 | return NULL; |
Guido van Rossum | 1548bac | 1997-02-14 17:09:47 +0000 | [diff] [blame] | 784 | } |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 785 | |
| 786 | |
Antoine Pitrou | 0676a40 | 2014-09-30 21:16:27 +0200 | [diff] [blame] | 787 | PyObject * |
| 788 | PyErr_Format(PyObject *exception, const char *format, ...) |
| 789 | { |
| 790 | va_list vargs; |
| 791 | #ifdef HAVE_STDARG_PROTOTYPES |
| 792 | va_start(vargs, format); |
| 793 | #else |
| 794 | va_start(vargs); |
| 795 | #endif |
| 796 | PyErr_FormatV(exception, format, vargs); |
| 797 | va_end(vargs); |
| 798 | return NULL; |
| 799 | } |
| 800 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 801 | |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 802 | PyObject * |
Neal Norwitz | b382b84 | 2007-08-24 20:00:37 +0000 | [diff] [blame] | 803 | PyErr_NewException(const char *name, PyObject *base, PyObject *dict) |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 804 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 805 | const char *dot; |
| 806 | PyObject *modulename = NULL; |
| 807 | PyObject *classname = NULL; |
| 808 | PyObject *mydict = NULL; |
| 809 | PyObject *bases = NULL; |
| 810 | PyObject *result = NULL; |
| 811 | dot = strrchr(name, '.'); |
| 812 | if (dot == NULL) { |
| 813 | PyErr_SetString(PyExc_SystemError, |
| 814 | "PyErr_NewException: name must be module.class"); |
| 815 | return NULL; |
| 816 | } |
| 817 | if (base == NULL) |
| 818 | base = PyExc_Exception; |
| 819 | if (dict == NULL) { |
| 820 | dict = mydict = PyDict_New(); |
| 821 | if (dict == NULL) |
| 822 | goto failure; |
| 823 | } |
| 824 | if (PyDict_GetItemString(dict, "__module__") == NULL) { |
| 825 | modulename = PyUnicode_FromStringAndSize(name, |
| 826 | (Py_ssize_t)(dot-name)); |
| 827 | if (modulename == NULL) |
| 828 | goto failure; |
| 829 | if (PyDict_SetItemString(dict, "__module__", modulename) != 0) |
| 830 | goto failure; |
| 831 | } |
| 832 | if (PyTuple_Check(base)) { |
| 833 | bases = base; |
| 834 | /* INCREF as we create a new ref in the else branch */ |
| 835 | Py_INCREF(bases); |
| 836 | } else { |
| 837 | bases = PyTuple_Pack(1, base); |
| 838 | if (bases == NULL) |
| 839 | goto failure; |
| 840 | } |
Florent Xicluna | aa6c1d2 | 2011-12-12 18:54:29 +0100 | [diff] [blame] | 841 | /* Create a real class. */ |
Victor Stinner | 7eeb5b5 | 2010-06-07 19:57:46 +0000 | [diff] [blame] | 842 | result = PyObject_CallFunction((PyObject *)&PyType_Type, "sOO", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 843 | dot+1, bases, dict); |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 844 | failure: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 845 | Py_XDECREF(bases); |
| 846 | Py_XDECREF(mydict); |
| 847 | Py_XDECREF(classname); |
| 848 | Py_XDECREF(modulename); |
| 849 | return result; |
Guido van Rossum | 7617e05 | 1997-09-16 18:43:50 +0000 | [diff] [blame] | 850 | } |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 851 | |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 852 | |
| 853 | /* Create an exception with docstring */ |
| 854 | PyObject * |
| 855 | PyErr_NewExceptionWithDoc(const char *name, const char *doc, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 856 | PyObject *base, PyObject *dict) |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 857 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 858 | int result; |
| 859 | PyObject *ret = NULL; |
| 860 | PyObject *mydict = NULL; /* points to the dict only if we create it */ |
| 861 | PyObject *docobj; |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 862 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 863 | if (dict == NULL) { |
| 864 | dict = mydict = PyDict_New(); |
| 865 | if (dict == NULL) { |
| 866 | return NULL; |
| 867 | } |
| 868 | } |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 869 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 870 | if (doc != NULL) { |
| 871 | docobj = PyUnicode_FromString(doc); |
| 872 | if (docobj == NULL) |
| 873 | goto failure; |
| 874 | result = PyDict_SetItemString(dict, "__doc__", docobj); |
| 875 | Py_DECREF(docobj); |
| 876 | if (result < 0) |
| 877 | goto failure; |
| 878 | } |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 879 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 880 | ret = PyErr_NewException(name, base, dict); |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 881 | failure: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 882 | Py_XDECREF(mydict); |
| 883 | return ret; |
Georg Brandl | 1e28a27 | 2009-12-28 08:41:01 +0000 | [diff] [blame] | 884 | } |
| 885 | |
| 886 | |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 887 | /* Call when an exception has occurred but there is no way for Python |
| 888 | to handle it. Examples: exception in __del__ or during GC. */ |
| 889 | void |
| 890 | PyErr_WriteUnraisable(PyObject *obj) |
| 891 | { |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 892 | _Py_IDENTIFIER(__module__); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 893 | PyObject *f, *t, *v, *tb; |
Victor Stinner | c82bfd8 | 2013-08-26 14:04:10 +0200 | [diff] [blame] | 894 | PyObject *moduleName = NULL; |
| 895 | char* className; |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 896 | |
Victor Stinner | c82bfd8 | 2013-08-26 14:04:10 +0200 | [diff] [blame] | 897 | PyErr_Fetch(&t, &v, &tb); |
| 898 | |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 899 | f = _PySys_GetObjectId(&PyId_stderr); |
Victor Stinner | c82bfd8 | 2013-08-26 14:04:10 +0200 | [diff] [blame] | 900 | if (f == NULL || f == Py_None) |
| 901 | goto done; |
| 902 | |
| 903 | if (obj) { |
| 904 | if (PyFile_WriteString("Exception ignored in: ", f) < 0) |
| 905 | goto done; |
Martin Panter | 3263f68 | 2016-02-28 03:16:11 +0000 | [diff] [blame] | 906 | if (PyFile_WriteObject(obj, f, 0) < 0) { |
| 907 | PyErr_Clear(); |
| 908 | if (PyFile_WriteString("<object repr() failed>", f) < 0) { |
| 909 | goto done; |
| 910 | } |
| 911 | } |
Victor Stinner | c82bfd8 | 2013-08-26 14:04:10 +0200 | [diff] [blame] | 912 | if (PyFile_WriteString("\n", f) < 0) |
| 913 | goto done; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 914 | } |
Victor Stinner | c82bfd8 | 2013-08-26 14:04:10 +0200 | [diff] [blame] | 915 | |
| 916 | if (PyTraceBack_Print(tb, f) < 0) |
| 917 | goto done; |
| 918 | |
| 919 | if (!t) |
| 920 | goto done; |
| 921 | |
| 922 | assert(PyExceptionClass_Check(t)); |
| 923 | className = PyExceptionClass_Name(t); |
| 924 | if (className != NULL) { |
| 925 | char *dot = strrchr(className, '.'); |
| 926 | if (dot != NULL) |
| 927 | className = dot+1; |
| 928 | } |
| 929 | |
| 930 | moduleName = _PyObject_GetAttrId(t, &PyId___module__); |
| 931 | if (moduleName == NULL) { |
| 932 | PyErr_Clear(); |
| 933 | if (PyFile_WriteString("<unknown>", f) < 0) |
| 934 | goto done; |
| 935 | } |
| 936 | else { |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 937 | if (_PyUnicode_CompareWithId(moduleName, &PyId_builtins) != 0) { |
Victor Stinner | c82bfd8 | 2013-08-26 14:04:10 +0200 | [diff] [blame] | 938 | if (PyFile_WriteObject(moduleName, f, Py_PRINT_RAW) < 0) |
| 939 | goto done; |
| 940 | if (PyFile_WriteString(".", f) < 0) |
| 941 | goto done; |
| 942 | } |
| 943 | } |
| 944 | if (className == NULL) { |
| 945 | if (PyFile_WriteString("<unknown>", f) < 0) |
| 946 | goto done; |
| 947 | } |
| 948 | else { |
| 949 | if (PyFile_WriteString(className, f) < 0) |
| 950 | goto done; |
| 951 | } |
| 952 | |
| 953 | if (v && v != Py_None) { |
| 954 | if (PyFile_WriteString(": ", f) < 0) |
| 955 | goto done; |
Martin Panter | 3263f68 | 2016-02-28 03:16:11 +0000 | [diff] [blame] | 956 | if (PyFile_WriteObject(v, f, Py_PRINT_RAW) < 0) { |
| 957 | PyErr_Clear(); |
| 958 | if (PyFile_WriteString("<exception str() failed>", f) < 0) { |
| 959 | goto done; |
| 960 | } |
| 961 | } |
Victor Stinner | c82bfd8 | 2013-08-26 14:04:10 +0200 | [diff] [blame] | 962 | } |
| 963 | if (PyFile_WriteString("\n", f) < 0) |
| 964 | goto done; |
| 965 | |
| 966 | done: |
| 967 | Py_XDECREF(moduleName); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 968 | Py_XDECREF(t); |
| 969 | Py_XDECREF(v); |
| 970 | Py_XDECREF(tb); |
Victor Stinner | c82bfd8 | 2013-08-26 14:04:10 +0200 | [diff] [blame] | 971 | PyErr_Clear(); /* Just in case */ |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 972 | } |
Guido van Rossum | cfd42b5 | 2000-12-15 21:58:52 +0000 | [diff] [blame] | 973 | |
Armin Rigo | 092381a | 2003-10-25 14:29:27 +0000 | [diff] [blame] | 974 | extern PyObject *PyModule_GetWarningsModule(void); |
Guido van Rossum | cfd42b5 | 2000-12-15 21:58:52 +0000 | [diff] [blame] | 975 | |
Guido van Rossum | 2fd4565 | 2001-02-28 21:46:24 +0000 | [diff] [blame] | 976 | |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 977 | void |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 978 | PyErr_SyntaxLocation(const char *filename, int lineno) |
| 979 | { |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 980 | PyErr_SyntaxLocationEx(filename, lineno, -1); |
| 981 | } |
| 982 | |
| 983 | |
Martin v. Löwis | cfeb3b6 | 2002-03-03 21:30:27 +0000 | [diff] [blame] | 984 | /* Set file and line information for the current exception. |
| 985 | If the exception is not a SyntaxError, also sets additional attributes |
| 986 | to make printing of exceptions believe it is a syntax error. */ |
Guido van Rossum | 2fd4565 | 2001-02-28 21:46:24 +0000 | [diff] [blame] | 987 | |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 988 | void |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 989 | PyErr_SyntaxLocationObject(PyObject *filename, int lineno, int col_offset) |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 990 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 991 | PyObject *exc, *v, *tb, *tmp; |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 992 | _Py_IDENTIFIER(filename); |
| 993 | _Py_IDENTIFIER(lineno); |
| 994 | _Py_IDENTIFIER(msg); |
| 995 | _Py_IDENTIFIER(offset); |
| 996 | _Py_IDENTIFIER(print_file_and_line); |
| 997 | _Py_IDENTIFIER(text); |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 998 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 999 | /* add attributes for the line number and filename for the error */ |
| 1000 | PyErr_Fetch(&exc, &v, &tb); |
| 1001 | PyErr_NormalizeException(&exc, &v, &tb); |
| 1002 | /* XXX check that it is, indeed, a syntax error. It might not |
| 1003 | * be, though. */ |
| 1004 | tmp = PyLong_FromLong(lineno); |
| 1005 | if (tmp == NULL) |
| 1006 | PyErr_Clear(); |
| 1007 | else { |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 1008 | if (_PyObject_SetAttrId(v, &PyId_lineno, tmp)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1009 | PyErr_Clear(); |
| 1010 | Py_DECREF(tmp); |
| 1011 | } |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 1012 | if (col_offset >= 0) { |
| 1013 | tmp = PyLong_FromLong(col_offset); |
| 1014 | if (tmp == NULL) |
| 1015 | PyErr_Clear(); |
| 1016 | else { |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 1017 | if (_PyObject_SetAttrId(v, &PyId_offset, tmp)) |
Benjamin Peterson | 2c53971 | 2010-09-20 22:42:10 +0000 | [diff] [blame] | 1018 | PyErr_Clear(); |
| 1019 | Py_DECREF(tmp); |
| 1020 | } |
| 1021 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1022 | if (filename != NULL) { |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 1023 | if (_PyObject_SetAttrId(v, &PyId_filename, filename)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1024 | PyErr_Clear(); |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 1025 | |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 1026 | tmp = PyErr_ProgramTextObject(filename, lineno); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1027 | if (tmp) { |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 1028 | if (_PyObject_SetAttrId(v, &PyId_text, tmp)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1029 | PyErr_Clear(); |
| 1030 | Py_DECREF(tmp); |
| 1031 | } |
| 1032 | } |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 1033 | if (_PyObject_SetAttrId(v, &PyId_offset, Py_None)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1034 | PyErr_Clear(); |
| 1035 | } |
| 1036 | if (exc != PyExc_SyntaxError) { |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 1037 | if (!_PyObject_HasAttrId(v, &PyId_msg)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1038 | tmp = PyObject_Str(v); |
| 1039 | if (tmp) { |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 1040 | if (_PyObject_SetAttrId(v, &PyId_msg, tmp)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1041 | PyErr_Clear(); |
| 1042 | Py_DECREF(tmp); |
| 1043 | } else { |
| 1044 | PyErr_Clear(); |
| 1045 | } |
| 1046 | } |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 1047 | if (!_PyObject_HasAttrId(v, &PyId_print_file_and_line)) { |
| 1048 | if (_PyObject_SetAttrId(v, &PyId_print_file_and_line, |
| 1049 | Py_None)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1050 | PyErr_Clear(); |
| 1051 | } |
| 1052 | } |
| 1053 | PyErr_Restore(exc, v, tb); |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 1054 | } |
| 1055 | |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 1056 | void |
| 1057 | PyErr_SyntaxLocationEx(const char *filename, int lineno, int col_offset) |
| 1058 | { |
| 1059 | PyObject *fileobj; |
| 1060 | if (filename != NULL) { |
| 1061 | fileobj = PyUnicode_DecodeFSDefault(filename); |
| 1062 | if (fileobj == NULL) |
| 1063 | PyErr_Clear(); |
| 1064 | } |
| 1065 | else |
| 1066 | fileobj = NULL; |
| 1067 | PyErr_SyntaxLocationObject(fileobj, lineno, col_offset); |
| 1068 | Py_XDECREF(fileobj); |
| 1069 | } |
| 1070 | |
Guido van Rossum | ebe8f8a | 2007-10-10 18:53:36 +0000 | [diff] [blame] | 1071 | /* Attempt to load the line of text that the exception refers to. If it |
| 1072 | fails, it will return NULL but will not set an exception. |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 1073 | |
| 1074 | XXX The functionality of this function is quite similar to the |
Guido van Rossum | ebe8f8a | 2007-10-10 18:53:36 +0000 | [diff] [blame] | 1075 | functionality in tb_displayline() in traceback.c. */ |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 1076 | |
Antoine Pitrou | 409b538 | 2013-10-12 22:41:17 +0200 | [diff] [blame] | 1077 | static PyObject * |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 1078 | err_programtext(FILE *fp, int lineno) |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 1079 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1080 | int i; |
| 1081 | char linebuf[1000]; |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 1082 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1083 | if (fp == NULL) |
| 1084 | return NULL; |
| 1085 | for (i = 0; i < lineno; i++) { |
| 1086 | char *pLastChar = &linebuf[sizeof(linebuf) - 2]; |
| 1087 | do { |
| 1088 | *pLastChar = '\0'; |
| 1089 | if (Py_UniversalNewlineFgets(linebuf, sizeof linebuf, |
| 1090 | fp, NULL) == NULL) |
| 1091 | break; |
| 1092 | /* fgets read *something*; if it didn't get as |
| 1093 | far as pLastChar, it must have found a newline |
| 1094 | or hit the end of the file; if pLastChar is \n, |
| 1095 | it obviously found a newline; else we haven't |
| 1096 | yet seen a newline, so must continue */ |
| 1097 | } while (*pLastChar != '\0' && *pLastChar != '\n'); |
| 1098 | } |
| 1099 | fclose(fp); |
| 1100 | if (i == lineno) { |
| 1101 | char *p = linebuf; |
| 1102 | PyObject *res; |
| 1103 | while (*p == ' ' || *p == '\t' || *p == '\014') |
| 1104 | p++; |
| 1105 | res = PyUnicode_FromString(p); |
| 1106 | if (res == NULL) |
| 1107 | PyErr_Clear(); |
| 1108 | return res; |
| 1109 | } |
| 1110 | return NULL; |
Jeremy Hylton | ad3d3f2 | 2001-02-28 17:47:12 +0000 | [diff] [blame] | 1111 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1112 | |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 1113 | PyObject * |
| 1114 | PyErr_ProgramText(const char *filename, int lineno) |
| 1115 | { |
| 1116 | FILE *fp; |
| 1117 | if (filename == NULL || *filename == '\0' || lineno <= 0) |
| 1118 | return NULL; |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1119 | fp = _Py_fopen(filename, "r" PY_STDIOTEXTMODE); |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 1120 | return err_programtext(fp, lineno); |
| 1121 | } |
| 1122 | |
| 1123 | PyObject * |
| 1124 | PyErr_ProgramTextObject(PyObject *filename, int lineno) |
| 1125 | { |
| 1126 | FILE *fp; |
| 1127 | if (filename == NULL || lineno <= 0) |
| 1128 | return NULL; |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1129 | fp = _Py_fopen_obj(filename, "r" PY_STDIOTEXTMODE); |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1130 | if (fp == NULL) { |
| 1131 | PyErr_Clear(); |
| 1132 | return NULL; |
| 1133 | } |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 1134 | return err_programtext(fp, lineno); |
| 1135 | } |
| 1136 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1137 | #ifdef __cplusplus |
| 1138 | } |
| 1139 | #endif |