Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* System module */ |
| 3 | |
| 4 | /* |
| 5 | Various bits of information used by the interpreter are collected in |
| 6 | module 'sys'. |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 7 | Function member: |
Guido van Rossum | cc8914f | 1995-03-20 15:09:40 +0000 | [diff] [blame] | 8 | - exit(sts): raise SystemExit |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 9 | Data members: |
| 10 | - stdin, stdout, stderr: standard file objects |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 11 | - modules: the table of modules (dictionary) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 12 | - path: module search path (list of strings) |
| 13 | - argv: script arguments (list of strings) |
| 14 | - ps1, ps2: optional primary and secondary prompts (strings) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 17 | #include "Python.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 18 | #include "code.h" |
Barry Warsaw | b6a54d2 | 2000-12-06 21:47:46 +0000 | [diff] [blame] | 19 | #include "frameobject.h" |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 20 | #include "pycore_initconfig.h" |
Victor Stinner | 621cebe | 2018-11-12 16:53:38 +0100 | [diff] [blame] | 21 | #include "pycore_pylifecycle.h" |
| 22 | #include "pycore_pymem.h" |
Victor Stinner | a1c249c | 2018-11-01 03:15:58 +0100 | [diff] [blame] | 23 | #include "pycore_pathconfig.h" |
Victor Stinner | 621cebe | 2018-11-12 16:53:38 +0100 | [diff] [blame] | 24 | #include "pycore_pystate.h" |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 25 | #include "pycore_tupleobject.h" |
Victor Stinner | d5c355c | 2011-04-30 14:53:09 +0200 | [diff] [blame] | 26 | #include "pythread.h" |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 27 | #include "pydtrace.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 28 | |
Guido van Rossum | e2437a1 | 1992-03-23 18:20:18 +0000 | [diff] [blame] | 29 | #include "osdefs.h" |
Stefan Krah | 1845d14 | 2016-04-25 21:38:53 +0200 | [diff] [blame] | 30 | #include <locale.h> |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 31 | |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 32 | #ifdef MS_WINDOWS |
| 33 | #define WIN32_LEAN_AND_MEAN |
Amaury Forgeot d'Arc | 06cfe95 | 2007-11-10 13:55:44 +0000 | [diff] [blame] | 34 | #include <windows.h> |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 35 | #endif /* MS_WINDOWS */ |
| 36 | |
Guido van Rossum | 9b38a14 | 1996-09-11 23:12:24 +0000 | [diff] [blame] | 37 | #ifdef MS_COREDLL |
Guido van Rossum | c606fe1 | 1996-04-09 02:37:57 +0000 | [diff] [blame] | 38 | extern void *PyWin_DLLhModule; |
Guido van Rossum | 6c1e5f2 | 1997-09-29 23:34:23 +0000 | [diff] [blame] | 39 | /* A string loaded from the DLL at startup: */ |
| 40 | extern const char *PyWin_DLLVersionString; |
Guido van Rossum | c606fe1 | 1996-04-09 02:37:57 +0000 | [diff] [blame] | 41 | #endif |
| 42 | |
Nathaniel J. Smith | fc2f407 | 2018-01-21 06:44:07 -0800 | [diff] [blame] | 43 | /*[clinic input] |
| 44 | module sys |
| 45 | [clinic start generated code]*/ |
| 46 | /*[clinic end generated code: output=da39a3ee5e6b4b0d input=3726b388feee8cea]*/ |
| 47 | |
| 48 | #include "clinic/sysmodule.c.h" |
| 49 | |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 50 | _Py_IDENTIFIER(_); |
| 51 | _Py_IDENTIFIER(__sizeof__); |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 52 | _Py_IDENTIFIER(_xoptions); |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 53 | _Py_IDENTIFIER(buffer); |
| 54 | _Py_IDENTIFIER(builtins); |
| 55 | _Py_IDENTIFIER(encoding); |
| 56 | _Py_IDENTIFIER(path); |
| 57 | _Py_IDENTIFIER(stdout); |
| 58 | _Py_IDENTIFIER(stderr); |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 59 | _Py_IDENTIFIER(warnoptions); |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 60 | _Py_IDENTIFIER(write); |
| 61 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 62 | PyObject * |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 63 | _PySys_GetObjectId(_Py_Identifier *key) |
| 64 | { |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 65 | PyObject *sd = _PyInterpreterState_GET_UNSAFE()->sysdict; |
| 66 | if (sd == NULL) { |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 67 | return NULL; |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 68 | } |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 69 | return _PyDict_GetItemId(sd, key); |
| 70 | } |
| 71 | |
| 72 | PyObject * |
Neal Norwitz | f308132 | 2007-08-25 00:32:45 +0000 | [diff] [blame] | 73 | PySys_GetObject(const char *name) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 74 | { |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 75 | PyObject *sd = _PyInterpreterState_GET_UNSAFE()->sysdict; |
| 76 | if (sd == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 77 | return NULL; |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 78 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 79 | return PyDict_GetItemString(sd, name); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 80 | } |
| 81 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 82 | int |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 83 | _PySys_SetObjectId(_Py_Identifier *key, PyObject *v) |
| 84 | { |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 85 | PyObject *sd = _PyInterpreterState_GET_UNSAFE()->sysdict; |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 86 | if (v == NULL) { |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 87 | if (_PyDict_GetItemId(sd, key) == NULL) { |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 88 | return 0; |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 89 | } |
| 90 | else { |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 91 | return _PyDict_DelItemId(sd, key); |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 92 | } |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 93 | } |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 94 | else { |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 95 | return _PyDict_SetItemId(sd, key, v); |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 96 | } |
Victor Stinner | d67bd45 | 2013-11-06 22:36:40 +0100 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | int |
Neal Norwitz | f308132 | 2007-08-25 00:32:45 +0000 | [diff] [blame] | 100 | PySys_SetObject(const char *name, PyObject *v) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 101 | { |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 102 | PyObject *sd = _PyInterpreterState_GET_UNSAFE()->sysdict; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 103 | if (v == NULL) { |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 104 | if (PyDict_GetItemString(sd, name) == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 105 | return 0; |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 106 | } |
| 107 | else { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 108 | return PyDict_DelItemString(sd, name); |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 109 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 110 | } |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 111 | else { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 112 | return PyDict_SetItemString(sd, name, v); |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 113 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 116 | static int |
| 117 | should_audit(void) |
| 118 | { |
| 119 | PyThreadState *ts = _PyThreadState_GET(); |
| 120 | if (!ts) { |
| 121 | return 0; |
| 122 | } |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 123 | PyInterpreterState *is = ts ? ts->interp : NULL; |
| 124 | return _PyRuntime.audit_hook_head |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 125 | || (is && is->audit_hooks) |
| 126 | || PyDTrace_AUDIT_ENABLED(); |
| 127 | } |
| 128 | |
| 129 | int |
| 130 | PySys_Audit(const char *event, const char *argFormat, ...) |
| 131 | { |
| 132 | PyObject *eventName = NULL; |
| 133 | PyObject *eventArgs = NULL; |
| 134 | PyObject *hooks = NULL; |
| 135 | PyObject *hook = NULL; |
| 136 | int res = -1; |
| 137 | |
| 138 | /* N format is inappropriate, because you do not know |
| 139 | whether the reference is consumed by the call. |
| 140 | Assert rather than exception for perf reasons */ |
| 141 | assert(!argFormat || !strchr(argFormat, 'N')); |
| 142 | |
| 143 | /* Early exit when no hooks are registered */ |
| 144 | if (!should_audit()) { |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | _Py_AuditHookEntry *e = _PyRuntime.audit_hook_head; |
| 149 | PyThreadState *ts = _PyThreadState_GET(); |
| 150 | PyInterpreterState *is = ts ? ts->interp : NULL; |
| 151 | int dtrace = PyDTrace_AUDIT_ENABLED(); |
| 152 | |
| 153 | PyObject *exc_type, *exc_value, *exc_tb; |
| 154 | if (ts) { |
| 155 | PyErr_Fetch(&exc_type, &exc_value, &exc_tb); |
| 156 | } |
| 157 | |
| 158 | /* Initialize event args now */ |
| 159 | if (argFormat && argFormat[0]) { |
| 160 | va_list args; |
| 161 | va_start(args, argFormat); |
| 162 | eventArgs = Py_VaBuildValue(argFormat, args); |
| 163 | if (eventArgs && !PyTuple_Check(eventArgs)) { |
| 164 | PyObject *argTuple = PyTuple_Pack(1, eventArgs); |
| 165 | Py_DECREF(eventArgs); |
| 166 | eventArgs = argTuple; |
| 167 | } |
| 168 | } else { |
| 169 | eventArgs = PyTuple_New(0); |
| 170 | } |
| 171 | if (!eventArgs) { |
| 172 | goto exit; |
| 173 | } |
| 174 | |
| 175 | /* Call global hooks */ |
| 176 | for (; e; e = e->next) { |
| 177 | if (e->hookCFunction(event, eventArgs, e->userData) < 0) { |
| 178 | goto exit; |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | /* Dtrace USDT point */ |
| 183 | if (dtrace) { |
| 184 | PyDTrace_AUDIT(event, (void *)eventArgs); |
| 185 | } |
| 186 | |
| 187 | /* Call interpreter hooks */ |
| 188 | if (is && is->audit_hooks) { |
| 189 | eventName = PyUnicode_FromString(event); |
| 190 | if (!eventName) { |
| 191 | goto exit; |
| 192 | } |
| 193 | |
| 194 | hooks = PyObject_GetIter(is->audit_hooks); |
| 195 | if (!hooks) { |
| 196 | goto exit; |
| 197 | } |
| 198 | |
| 199 | /* Disallow tracing in hooks unless explicitly enabled */ |
| 200 | ts->tracing++; |
| 201 | ts->use_tracing = 0; |
| 202 | while ((hook = PyIter_Next(hooks)) != NULL) { |
| 203 | PyObject *o; |
| 204 | int canTrace = -1; |
| 205 | o = PyObject_GetAttrString(hook, "__cantrace__"); |
| 206 | if (o) { |
| 207 | canTrace = PyObject_IsTrue(o); |
| 208 | Py_DECREF(o); |
| 209 | } else if (PyErr_Occurred() && |
| 210 | PyErr_ExceptionMatches(PyExc_AttributeError)) { |
| 211 | PyErr_Clear(); |
| 212 | canTrace = 0; |
| 213 | } |
| 214 | if (canTrace < 0) { |
| 215 | break; |
| 216 | } |
| 217 | if (canTrace) { |
| 218 | ts->use_tracing = (ts->c_tracefunc || ts->c_profilefunc); |
| 219 | ts->tracing--; |
| 220 | } |
| 221 | o = PyObject_CallFunctionObjArgs(hook, eventName, |
| 222 | eventArgs, NULL); |
| 223 | if (canTrace) { |
| 224 | ts->tracing++; |
| 225 | ts->use_tracing = 0; |
| 226 | } |
| 227 | if (!o) { |
| 228 | break; |
| 229 | } |
| 230 | Py_DECREF(o); |
| 231 | Py_CLEAR(hook); |
| 232 | } |
| 233 | ts->use_tracing = (ts->c_tracefunc || ts->c_profilefunc); |
| 234 | ts->tracing--; |
| 235 | if (PyErr_Occurred()) { |
| 236 | goto exit; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | res = 0; |
| 241 | |
| 242 | exit: |
| 243 | Py_XDECREF(hook); |
| 244 | Py_XDECREF(hooks); |
| 245 | Py_XDECREF(eventName); |
| 246 | Py_XDECREF(eventArgs); |
| 247 | |
| 248 | if (ts) { |
| 249 | if (!res) { |
| 250 | PyErr_Restore(exc_type, exc_value, exc_tb); |
| 251 | } else { |
| 252 | assert(PyErr_Occurred()); |
| 253 | Py_XDECREF(exc_type); |
| 254 | Py_XDECREF(exc_value); |
| 255 | Py_XDECREF(exc_tb); |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | return res; |
| 260 | } |
| 261 | |
| 262 | /* We expose this function primarily for our own cleanup during |
| 263 | * finalization. In general, it should not need to be called, |
| 264 | * and as such it is not defined in any header files. |
| 265 | */ |
| 266 | void _PySys_ClearAuditHooks(void) { |
| 267 | /* Must be finalizing to clear hooks */ |
| 268 | _PyRuntimeState *runtime = &_PyRuntime; |
| 269 | PyThreadState *ts = _PyRuntimeState_GetThreadState(runtime); |
| 270 | assert(!ts || _Py_CURRENTLY_FINALIZING(runtime, ts)); |
| 271 | if (!ts || !_Py_CURRENTLY_FINALIZING(runtime, ts)) |
| 272 | return; |
| 273 | |
| 274 | if (Py_VerboseFlag) { |
| 275 | PySys_WriteStderr("# clear sys.audit hooks\n"); |
| 276 | } |
| 277 | |
| 278 | /* Hooks can abort later hooks for this event, but cannot |
| 279 | abort the clear operation itself. */ |
| 280 | PySys_Audit("cpython._PySys_ClearAuditHooks", NULL); |
| 281 | PyErr_Clear(); |
| 282 | |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 283 | _Py_AuditHookEntry *e = _PyRuntime.audit_hook_head, *n; |
| 284 | _PyRuntime.audit_hook_head = NULL; |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 285 | while (e) { |
| 286 | n = e->next; |
| 287 | PyMem_RawFree(e); |
| 288 | e = n; |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | int |
| 293 | PySys_AddAuditHook(Py_AuditHookFunction hook, void *userData) |
| 294 | { |
| 295 | /* Invoke existing audit hooks to allow them an opportunity to abort. */ |
| 296 | /* Cannot invoke hooks until we are initialized */ |
| 297 | if (Py_IsInitialized()) { |
| 298 | if (PySys_Audit("sys.addaudithook", NULL) < 0) { |
| 299 | if (PyErr_ExceptionMatches(PyExc_Exception)) { |
| 300 | /* We do not report errors derived from Exception */ |
| 301 | PyErr_Clear(); |
| 302 | return 0; |
| 303 | } |
| 304 | return -1; |
| 305 | } |
| 306 | } |
| 307 | |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 308 | _Py_AuditHookEntry *e = _PyRuntime.audit_hook_head; |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 309 | if (!e) { |
| 310 | e = (_Py_AuditHookEntry*)PyMem_RawMalloc(sizeof(_Py_AuditHookEntry)); |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 311 | _PyRuntime.audit_hook_head = e; |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 312 | } else { |
| 313 | while (e->next) |
| 314 | e = e->next; |
| 315 | e = e->next = (_Py_AuditHookEntry*)PyMem_RawMalloc( |
| 316 | sizeof(_Py_AuditHookEntry)); |
| 317 | } |
| 318 | |
| 319 | if (!e) { |
| 320 | if (Py_IsInitialized()) |
| 321 | PyErr_NoMemory(); |
| 322 | return -1; |
| 323 | } |
| 324 | |
| 325 | e->next = NULL; |
| 326 | e->hookCFunction = (Py_AuditHookFunction)hook; |
| 327 | e->userData = userData; |
| 328 | |
| 329 | return 0; |
| 330 | } |
| 331 | |
| 332 | /*[clinic input] |
| 333 | sys.addaudithook |
| 334 | |
| 335 | hook: object |
| 336 | |
| 337 | Adds a new audit hook callback. |
| 338 | [clinic start generated code]*/ |
| 339 | |
| 340 | static PyObject * |
| 341 | sys_addaudithook_impl(PyObject *module, PyObject *hook) |
| 342 | /*[clinic end generated code: output=4f9c17aaeb02f44e input=0f3e191217a45e34]*/ |
| 343 | { |
| 344 | /* Invoke existing audit hooks to allow them an opportunity to abort. */ |
| 345 | if (PySys_Audit("sys.addaudithook", NULL) < 0) { |
| 346 | if (PyErr_ExceptionMatches(PyExc_Exception)) { |
| 347 | /* We do not report errors derived from Exception */ |
| 348 | PyErr_Clear(); |
| 349 | Py_RETURN_NONE; |
| 350 | } |
| 351 | return NULL; |
| 352 | } |
| 353 | |
| 354 | PyInterpreterState *is = _PyInterpreterState_Get(); |
| 355 | |
| 356 | if (is->audit_hooks == NULL) { |
| 357 | is->audit_hooks = PyList_New(0); |
| 358 | if (is->audit_hooks == NULL) { |
| 359 | return NULL; |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | if (PyList_Append(is->audit_hooks, hook) < 0) { |
| 364 | return NULL; |
| 365 | } |
| 366 | |
| 367 | Py_RETURN_NONE; |
| 368 | } |
| 369 | |
| 370 | PyDoc_STRVAR(audit_doc, |
| 371 | "audit(event, *args)\n\ |
| 372 | \n\ |
| 373 | Passes the event to any audit hooks that are attached."); |
| 374 | |
| 375 | static PyObject * |
| 376 | sys_audit(PyObject *self, PyObject *const *args, Py_ssize_t argc) |
| 377 | { |
| 378 | if (argc == 0) { |
| 379 | PyErr_SetString(PyExc_TypeError, "audit() missing 1 required positional argument: 'event'"); |
| 380 | return NULL; |
| 381 | } |
| 382 | |
| 383 | if (!should_audit()) { |
| 384 | Py_RETURN_NONE; |
| 385 | } |
| 386 | |
| 387 | PyObject *auditEvent = args[0]; |
| 388 | if (!auditEvent) { |
| 389 | PyErr_SetString(PyExc_TypeError, "expected str for argument 'event'"); |
| 390 | return NULL; |
| 391 | } |
| 392 | if (!PyUnicode_Check(auditEvent)) { |
| 393 | PyErr_Format(PyExc_TypeError, "expected str for argument 'event', not %.200s", |
| 394 | Py_TYPE(auditEvent)->tp_name); |
| 395 | return NULL; |
| 396 | } |
| 397 | const char *event = PyUnicode_AsUTF8(auditEvent); |
| 398 | if (!event) { |
| 399 | return NULL; |
| 400 | } |
| 401 | |
| 402 | PyObject *auditArgs = _PyTuple_FromArray(args + 1, argc - 1); |
| 403 | if (!auditArgs) { |
| 404 | return NULL; |
| 405 | } |
| 406 | |
| 407 | int res = PySys_Audit(event, "O", auditArgs); |
| 408 | Py_DECREF(auditArgs); |
| 409 | |
| 410 | if (res < 0) { |
| 411 | return NULL; |
| 412 | } |
| 413 | |
| 414 | Py_RETURN_NONE; |
| 415 | } |
| 416 | |
| 417 | |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 418 | static PyObject * |
Serhiy Storchaka | a5552f0 | 2017-12-15 13:11:11 +0200 | [diff] [blame] | 419 | sys_breakpointhook(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *keywords) |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 420 | { |
| 421 | assert(!PyErr_Occurred()); |
Serhiy Storchaka | f60bf0e | 2018-07-09 21:46:51 +0300 | [diff] [blame] | 422 | char *envar = Py_GETENV("PYTHONBREAKPOINT"); |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 423 | |
| 424 | if (envar == NULL || strlen(envar) == 0) { |
| 425 | envar = "pdb.set_trace"; |
| 426 | } |
| 427 | else if (!strcmp(envar, "0")) { |
| 428 | /* The breakpoint is explicitly no-op'd. */ |
| 429 | Py_RETURN_NONE; |
| 430 | } |
Serhiy Storchaka | f60bf0e | 2018-07-09 21:46:51 +0300 | [diff] [blame] | 431 | /* According to POSIX the string returned by getenv() might be invalidated |
| 432 | * or the string content might be overwritten by a subsequent call to |
| 433 | * getenv(). Since importing a module can performs the getenv() calls, |
| 434 | * we need to save a copy of envar. */ |
| 435 | envar = _PyMem_RawStrdup(envar); |
| 436 | if (envar == NULL) { |
| 437 | PyErr_NoMemory(); |
| 438 | return NULL; |
| 439 | } |
Serhiy Storchaka | 4ae06c5 | 2017-12-12 13:55:04 +0200 | [diff] [blame] | 440 | const char *last_dot = strrchr(envar, '.'); |
| 441 | const char *attrname = NULL; |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 442 | PyObject *modulepath = NULL; |
| 443 | |
| 444 | if (last_dot == NULL) { |
| 445 | /* The breakpoint is a built-in, e.g. PYTHONBREAKPOINT=int */ |
| 446 | modulepath = PyUnicode_FromString("builtins"); |
| 447 | attrname = envar; |
| 448 | } |
Serhiy Storchaka | 3607ef4 | 2019-01-15 13:26:38 +0200 | [diff] [blame] | 449 | else if (last_dot != envar) { |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 450 | /* Split on the last dot; */ |
| 451 | modulepath = PyUnicode_FromStringAndSize(envar, last_dot - envar); |
| 452 | attrname = last_dot + 1; |
| 453 | } |
Serhiy Storchaka | 3607ef4 | 2019-01-15 13:26:38 +0200 | [diff] [blame] | 454 | else { |
| 455 | goto warn; |
| 456 | } |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 457 | if (modulepath == NULL) { |
Serhiy Storchaka | f60bf0e | 2018-07-09 21:46:51 +0300 | [diff] [blame] | 458 | PyMem_RawFree(envar); |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 459 | return NULL; |
| 460 | } |
| 461 | |
Anthony Sottile | dce345c | 2018-11-01 10:25:05 -0700 | [diff] [blame] | 462 | PyObject *module = PyImport_Import(modulepath); |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 463 | Py_DECREF(modulepath); |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 464 | |
| 465 | if (module == NULL) { |
Serhiy Storchaka | 3607ef4 | 2019-01-15 13:26:38 +0200 | [diff] [blame] | 466 | if (PyErr_ExceptionMatches(PyExc_ImportError)) { |
| 467 | goto warn; |
| 468 | } |
| 469 | PyMem_RawFree(envar); |
| 470 | return NULL; |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 471 | } |
| 472 | |
| 473 | PyObject *hook = PyObject_GetAttrString(module, attrname); |
| 474 | Py_DECREF(module); |
| 475 | |
| 476 | if (hook == NULL) { |
Serhiy Storchaka | 3607ef4 | 2019-01-15 13:26:38 +0200 | [diff] [blame] | 477 | if (PyErr_ExceptionMatches(PyExc_AttributeError)) { |
| 478 | goto warn; |
| 479 | } |
| 480 | PyMem_RawFree(envar); |
| 481 | return NULL; |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 482 | } |
Serhiy Storchaka | f60bf0e | 2018-07-09 21:46:51 +0300 | [diff] [blame] | 483 | PyMem_RawFree(envar); |
Jeroen Demeyer | aacc77f | 2019-05-29 20:31:52 +0200 | [diff] [blame] | 484 | PyObject *retval = _PyObject_Vectorcall(hook, args, nargs, keywords); |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 485 | Py_DECREF(hook); |
| 486 | return retval; |
| 487 | |
Serhiy Storchaka | 3607ef4 | 2019-01-15 13:26:38 +0200 | [diff] [blame] | 488 | warn: |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 489 | /* If any of the imports went wrong, then warn and ignore. */ |
| 490 | PyErr_Clear(); |
| 491 | int status = PyErr_WarnFormat( |
| 492 | PyExc_RuntimeWarning, 0, |
| 493 | "Ignoring unimportable $PYTHONBREAKPOINT: \"%s\"", envar); |
Serhiy Storchaka | f60bf0e | 2018-07-09 21:46:51 +0300 | [diff] [blame] | 494 | PyMem_RawFree(envar); |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 495 | if (status < 0) { |
| 496 | /* Printing the warning raised an exception. */ |
| 497 | return NULL; |
| 498 | } |
| 499 | /* The warning was (probably) issued. */ |
| 500 | Py_RETURN_NONE; |
| 501 | } |
| 502 | |
| 503 | PyDoc_STRVAR(breakpointhook_doc, |
| 504 | "breakpointhook(*args, **kws)\n" |
| 505 | "\n" |
| 506 | "This hook function is called by built-in breakpoint().\n" |
| 507 | ); |
| 508 | |
Victor Stinner | 13d49ee | 2010-12-04 17:24:33 +0000 | [diff] [blame] | 509 | /* Write repr(o) to sys.stdout using sys.stdout.encoding and 'backslashreplace' |
| 510 | error handler. If sys.stdout has a buffer attribute, use |
| 511 | sys.stdout.buffer.write(encoded), otherwise redecode the string and use |
| 512 | sys.stdout.write(redecoded). |
| 513 | |
| 514 | Helper function for sys_displayhook(). */ |
| 515 | static int |
| 516 | sys_displayhook_unencodable(PyObject *outf, PyObject *o) |
| 517 | { |
| 518 | PyObject *stdout_encoding = NULL; |
| 519 | PyObject *encoded, *escaped_str, *repr_str, *buffer, *result; |
Serhiy Storchaka | 85b0f5b | 2016-11-20 10:16:47 +0200 | [diff] [blame] | 520 | const char *stdout_encoding_str; |
Victor Stinner | 13d49ee | 2010-12-04 17:24:33 +0000 | [diff] [blame] | 521 | int ret; |
| 522 | |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 523 | stdout_encoding = _PyObject_GetAttrId(outf, &PyId_encoding); |
Victor Stinner | 13d49ee | 2010-12-04 17:24:33 +0000 | [diff] [blame] | 524 | if (stdout_encoding == NULL) |
| 525 | goto error; |
Serhiy Storchaka | 0651583 | 2016-11-20 09:13:07 +0200 | [diff] [blame] | 526 | stdout_encoding_str = PyUnicode_AsUTF8(stdout_encoding); |
Victor Stinner | 13d49ee | 2010-12-04 17:24:33 +0000 | [diff] [blame] | 527 | if (stdout_encoding_str == NULL) |
| 528 | goto error; |
| 529 | |
| 530 | repr_str = PyObject_Repr(o); |
| 531 | if (repr_str == NULL) |
| 532 | goto error; |
| 533 | encoded = PyUnicode_AsEncodedString(repr_str, |
| 534 | stdout_encoding_str, |
| 535 | "backslashreplace"); |
| 536 | Py_DECREF(repr_str); |
| 537 | if (encoded == NULL) |
| 538 | goto error; |
| 539 | |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 540 | buffer = _PyObject_GetAttrId(outf, &PyId_buffer); |
Victor Stinner | 13d49ee | 2010-12-04 17:24:33 +0000 | [diff] [blame] | 541 | if (buffer) { |
Victor Stinner | 7e42541 | 2016-12-09 00:36:19 +0100 | [diff] [blame] | 542 | result = _PyObject_CallMethodIdObjArgs(buffer, &PyId_write, encoded, NULL); |
Victor Stinner | 13d49ee | 2010-12-04 17:24:33 +0000 | [diff] [blame] | 543 | Py_DECREF(buffer); |
| 544 | Py_DECREF(encoded); |
| 545 | if (result == NULL) |
| 546 | goto error; |
| 547 | Py_DECREF(result); |
| 548 | } |
| 549 | else { |
| 550 | PyErr_Clear(); |
| 551 | escaped_str = PyUnicode_FromEncodedObject(encoded, |
| 552 | stdout_encoding_str, |
| 553 | "strict"); |
| 554 | Py_DECREF(encoded); |
| 555 | if (PyFile_WriteObject(escaped_str, outf, Py_PRINT_RAW) != 0) { |
| 556 | Py_DECREF(escaped_str); |
| 557 | goto error; |
| 558 | } |
| 559 | Py_DECREF(escaped_str); |
| 560 | } |
| 561 | ret = 0; |
| 562 | goto finally; |
| 563 | |
| 564 | error: |
| 565 | ret = -1; |
| 566 | finally: |
| 567 | Py_XDECREF(stdout_encoding); |
| 568 | return ret; |
| 569 | } |
| 570 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 571 | /*[clinic input] |
| 572 | sys.displayhook |
| 573 | |
| 574 | object as o: object |
| 575 | / |
| 576 | |
| 577 | Print an object to sys.stdout and also save it in builtins._ |
| 578 | [clinic start generated code]*/ |
| 579 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 580 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 581 | sys_displayhook(PyObject *module, PyObject *o) |
| 582 | /*[clinic end generated code: output=347477d006df92ed input=08ba730166d7ef72]*/ |
Moshe Zadka | f68f2fe | 2001-01-11 05:41:27 +0000 | [diff] [blame] | 583 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 584 | PyObject *outf; |
Victor Stinner | d02fbb8 | 2013-11-06 18:27:13 +0100 | [diff] [blame] | 585 | PyObject *builtins; |
| 586 | static PyObject *newline = NULL; |
Victor Stinner | 13d49ee | 2010-12-04 17:24:33 +0000 | [diff] [blame] | 587 | int err; |
Moshe Zadka | f68f2fe | 2001-01-11 05:41:27 +0000 | [diff] [blame] | 588 | |
Eric Snow | 3f9eee6 | 2017-09-15 16:35:20 -0600 | [diff] [blame] | 589 | builtins = _PyImport_GetModuleId(&PyId_builtins); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 590 | if (builtins == NULL) { |
Stefan Krah | 027b09c | 2019-03-25 21:50:58 +0100 | [diff] [blame] | 591 | if (!PyErr_Occurred()) { |
| 592 | PyErr_SetString(PyExc_RuntimeError, "lost builtins module"); |
| 593 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 594 | return NULL; |
| 595 | } |
Eric Snow | 3f9eee6 | 2017-09-15 16:35:20 -0600 | [diff] [blame] | 596 | Py_DECREF(builtins); |
Moshe Zadka | 03897ea | 2001-07-23 13:32:43 +0000 | [diff] [blame] | 597 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 598 | /* Print value except if None */ |
| 599 | /* After printing, also assign to '_' */ |
| 600 | /* Before, set '_' to None to avoid recursion */ |
| 601 | if (o == Py_None) { |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 602 | Py_RETURN_NONE; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 603 | } |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 604 | if (_PyObject_SetAttrId(builtins, &PyId__, Py_None) != 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 605 | return NULL; |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 606 | outf = _PySys_GetObjectId(&PyId_stdout); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 607 | if (outf == NULL || outf == Py_None) { |
| 608 | PyErr_SetString(PyExc_RuntimeError, "lost sys.stdout"); |
| 609 | return NULL; |
| 610 | } |
Victor Stinner | 13d49ee | 2010-12-04 17:24:33 +0000 | [diff] [blame] | 611 | if (PyFile_WriteObject(o, outf, 0) != 0) { |
| 612 | if (PyErr_ExceptionMatches(PyExc_UnicodeEncodeError)) { |
| 613 | /* repr(o) is not encodable to sys.stdout.encoding with |
| 614 | * sys.stdout.errors error handler (which is probably 'strict') */ |
| 615 | PyErr_Clear(); |
| 616 | err = sys_displayhook_unencodable(outf, o); |
| 617 | if (err) |
| 618 | return NULL; |
| 619 | } |
| 620 | else { |
| 621 | return NULL; |
| 622 | } |
| 623 | } |
Victor Stinner | d02fbb8 | 2013-11-06 18:27:13 +0100 | [diff] [blame] | 624 | if (newline == NULL) { |
| 625 | newline = PyUnicode_FromString("\n"); |
| 626 | if (newline == NULL) |
| 627 | return NULL; |
| 628 | } |
| 629 | if (PyFile_WriteObject(newline, outf, Py_PRINT_RAW) != 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 630 | return NULL; |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 631 | if (_PyObject_SetAttrId(builtins, &PyId__, o) != 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 632 | return NULL; |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 633 | Py_RETURN_NONE; |
Moshe Zadka | f68f2fe | 2001-01-11 05:41:27 +0000 | [diff] [blame] | 634 | } |
| 635 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 636 | |
| 637 | /*[clinic input] |
| 638 | sys.excepthook |
| 639 | |
| 640 | exctype: object |
| 641 | value: object |
| 642 | traceback: object |
| 643 | / |
| 644 | |
| 645 | Handle an exception by displaying it with a traceback on sys.stderr. |
| 646 | [clinic start generated code]*/ |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 647 | |
| 648 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 649 | sys_excepthook_impl(PyObject *module, PyObject *exctype, PyObject *value, |
| 650 | PyObject *traceback) |
| 651 | /*[clinic end generated code: output=18d99fdda21b6b5e input=ecf606fa826f19d9]*/ |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 652 | { |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 653 | PyErr_Display(exctype, value, traceback); |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 654 | Py_RETURN_NONE; |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 655 | } |
| 656 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 657 | |
| 658 | /*[clinic input] |
| 659 | sys.exc_info |
| 660 | |
| 661 | Return current exception information: (type, value, traceback). |
| 662 | |
| 663 | Return information about the most recent exception caught by an except |
| 664 | clause in the current stack frame or in an older stack frame. |
| 665 | [clinic start generated code]*/ |
Moshe Zadka | f68f2fe | 2001-01-11 05:41:27 +0000 | [diff] [blame] | 666 | |
| 667 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 668 | sys_exc_info_impl(PyObject *module) |
| 669 | /*[clinic end generated code: output=3afd0940cf3a4d30 input=b5c5bf077788a3e5]*/ |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 670 | { |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 671 | _PyErr_StackItem *err_info = _PyErr_GetTopmostException(_PyThreadState_GET()); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 672 | return Py_BuildValue( |
| 673 | "(OOO)", |
Mark Shannon | ae3087c | 2017-10-22 22:41:51 +0100 | [diff] [blame] | 674 | err_info->exc_type != NULL ? err_info->exc_type : Py_None, |
| 675 | err_info->exc_value != NULL ? err_info->exc_value : Py_None, |
| 676 | err_info->exc_traceback != NULL ? |
| 677 | err_info->exc_traceback : Py_None); |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 678 | } |
| 679 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 680 | |
| 681 | /*[clinic input] |
Victor Stinner | ef9d9b6 | 2019-05-22 11:28:22 +0200 | [diff] [blame] | 682 | sys.unraisablehook |
| 683 | |
| 684 | unraisable: object |
| 685 | / |
| 686 | |
| 687 | Handle an unraisable exception. |
| 688 | |
| 689 | The unraisable argument has the following attributes: |
| 690 | |
| 691 | * exc_type: Exception type. |
Victor Stinner | 71c52e3 | 2019-05-27 08:57:14 +0200 | [diff] [blame] | 692 | * exc_value: Exception value, can be None. |
| 693 | * exc_traceback: Exception traceback, can be None. |
| 694 | * err_msg: Error message, can be None. |
| 695 | * object: Object causing the exception, can be None. |
Victor Stinner | ef9d9b6 | 2019-05-22 11:28:22 +0200 | [diff] [blame] | 696 | [clinic start generated code]*/ |
| 697 | |
| 698 | static PyObject * |
| 699 | sys_unraisablehook(PyObject *module, PyObject *unraisable) |
Victor Stinner | 71c52e3 | 2019-05-27 08:57:14 +0200 | [diff] [blame] | 700 | /*[clinic end generated code: output=bb92838b32abaa14 input=ec3af148294af8d3]*/ |
Victor Stinner | ef9d9b6 | 2019-05-22 11:28:22 +0200 | [diff] [blame] | 701 | { |
| 702 | return _PyErr_WriteUnraisableDefaultHook(unraisable); |
| 703 | } |
| 704 | |
| 705 | |
| 706 | /*[clinic input] |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 707 | sys.exit |
| 708 | |
| 709 | status: object = NULL |
| 710 | / |
| 711 | |
| 712 | Exit the interpreter by raising SystemExit(status). |
| 713 | |
| 714 | If the status is omitted or None, it defaults to zero (i.e., success). |
| 715 | If the status is an integer, it will be used as the system exit status. |
| 716 | If it is another kind of object, it will be printed and the system |
| 717 | exit status will be one (i.e., failure). |
| 718 | [clinic start generated code]*/ |
Guido van Rossum | 46d3dc3 | 2003-03-01 03:20:41 +0000 | [diff] [blame] | 719 | |
| 720 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 721 | sys_exit_impl(PyObject *module, PyObject *status) |
| 722 | /*[clinic end generated code: output=13870986c1ab2ec0 input=a737351f86685e9c]*/ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 723 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 724 | /* Raise SystemExit so callers may catch it or clean up. */ |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 725 | PyErr_SetObject(PyExc_SystemExit, status); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 726 | return NULL; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 727 | } |
| 728 | |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 729 | |
Martin v. Löwis | 107b7da | 2001-11-09 20:59:39 +0000 | [diff] [blame] | 730 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 731 | /*[clinic input] |
| 732 | sys.getdefaultencoding |
| 733 | |
| 734 | Return the current default encoding used by the Unicode implementation. |
| 735 | [clinic start generated code]*/ |
| 736 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 737 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 738 | sys_getdefaultencoding_impl(PyObject *module) |
| 739 | /*[clinic end generated code: output=256d19dfcc0711e6 input=d416856ddbef6909]*/ |
Fred Drake | 8b4d01d | 2000-05-09 19:57:01 +0000 | [diff] [blame] | 740 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 741 | return PyUnicode_FromString(PyUnicode_GetDefaultEncoding()); |
Fred Drake | 8b4d01d | 2000-05-09 19:57:01 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 744 | /*[clinic input] |
| 745 | sys.getfilesystemencoding |
| 746 | |
| 747 | Return the encoding used to convert Unicode filenames to OS filenames. |
| 748 | [clinic start generated code]*/ |
Fred Drake | 8b4d01d | 2000-05-09 19:57:01 +0000 | [diff] [blame] | 749 | |
| 750 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 751 | sys_getfilesystemencoding_impl(PyObject *module) |
| 752 | /*[clinic end generated code: output=1dc4bdbe9be44aa7 input=8475f8649b8c7d8c]*/ |
Martin v. Löwis | 73d538b | 2003-03-05 15:13:47 +0000 | [diff] [blame] | 753 | { |
Victor Stinner | b2457ef | 2018-08-29 13:25:36 +0200 | [diff] [blame] | 754 | PyInterpreterState *interp = _PyInterpreterState_GET_UNSAFE(); |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 755 | const PyConfig *config = &interp->config; |
Victor Stinner | 709d23d | 2019-05-02 14:56:30 -0400 | [diff] [blame] | 756 | return PyUnicode_FromWideChar(config->filesystem_encoding, -1); |
Martin v. Löwis | 73d538b | 2003-03-05 15:13:47 +0000 | [diff] [blame] | 757 | } |
| 758 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 759 | /*[clinic input] |
| 760 | sys.getfilesystemencodeerrors |
| 761 | |
| 762 | Return the error mode used Unicode to OS filename conversion. |
| 763 | [clinic start generated code]*/ |
Martin v. Löwis | 73d538b | 2003-03-05 15:13:47 +0000 | [diff] [blame] | 764 | |
Martin v. Löwis | 04dc25c | 2008-10-03 16:09:28 +0000 | [diff] [blame] | 765 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 766 | sys_getfilesystemencodeerrors_impl(PyObject *module) |
| 767 | /*[clinic end generated code: output=ba77b36bbf7c96f5 input=22a1e8365566f1e5]*/ |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 768 | { |
Victor Stinner | b2457ef | 2018-08-29 13:25:36 +0200 | [diff] [blame] | 769 | PyInterpreterState *interp = _PyInterpreterState_GET_UNSAFE(); |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 770 | const PyConfig *config = &interp->config; |
Victor Stinner | 709d23d | 2019-05-02 14:56:30 -0400 | [diff] [blame] | 771 | return PyUnicode_FromWideChar(config->filesystem_errors, -1); |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 772 | } |
| 773 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 774 | /*[clinic input] |
| 775 | sys.intern |
| 776 | |
| 777 | string as s: unicode |
| 778 | / |
| 779 | |
| 780 | ``Intern'' the given string. |
| 781 | |
| 782 | This enters the string in the (global) table of interned strings whose |
| 783 | purpose is to speed up dictionary lookups. Return the string itself or |
| 784 | the previously interned string object with the same value. |
| 785 | [clinic start generated code]*/ |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 786 | |
| 787 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 788 | sys_intern_impl(PyObject *module, PyObject *s) |
| 789 | /*[clinic end generated code: output=be680c24f5c9e5d6 input=849483c006924e2f]*/ |
Georg Brandl | 66a796e | 2006-12-19 20:50:34 +0000 | [diff] [blame] | 790 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 791 | if (PyUnicode_CheckExact(s)) { |
| 792 | Py_INCREF(s); |
| 793 | PyUnicode_InternInPlace(&s); |
| 794 | return s; |
| 795 | } |
| 796 | else { |
| 797 | PyErr_Format(PyExc_TypeError, |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 798 | "can't intern %.400s", s->ob_type->tp_name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 799 | return NULL; |
| 800 | } |
Georg Brandl | 66a796e | 2006-12-19 20:50:34 +0000 | [diff] [blame] | 801 | } |
| 802 | |
Georg Brandl | 66a796e | 2006-12-19 20:50:34 +0000 | [diff] [blame] | 803 | |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 804 | /* |
| 805 | * Cached interned string objects used for calling the profile and |
| 806 | * trace functions. Initialized by trace_init(). |
| 807 | */ |
Nick Coghlan | 5a85167 | 2017-09-08 10:14:16 +1000 | [diff] [blame] | 808 | static PyObject *whatstrings[8] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL}; |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 809 | |
| 810 | static int |
| 811 | trace_init(void) |
| 812 | { |
Nick Coghlan | 5a85167 | 2017-09-08 10:14:16 +1000 | [diff] [blame] | 813 | static const char * const whatnames[8] = { |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 814 | "call", "exception", "line", "return", |
Nick Coghlan | 5a85167 | 2017-09-08 10:14:16 +1000 | [diff] [blame] | 815 | "c_call", "c_exception", "c_return", |
| 816 | "opcode" |
Serhiy Storchaka | 2d06e84 | 2015-12-25 19:53:18 +0200 | [diff] [blame] | 817 | }; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 818 | PyObject *name; |
| 819 | int i; |
Nick Coghlan | 5a85167 | 2017-09-08 10:14:16 +1000 | [diff] [blame] | 820 | for (i = 0; i < 8; ++i) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 821 | if (whatstrings[i] == NULL) { |
| 822 | name = PyUnicode_InternFromString(whatnames[i]); |
| 823 | if (name == NULL) |
| 824 | return -1; |
| 825 | whatstrings[i] = name; |
| 826 | } |
| 827 | } |
| 828 | return 0; |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 829 | } |
| 830 | |
| 831 | |
| 832 | static PyObject * |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 833 | call_trampoline(PyObject* callback, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 834 | PyFrameObject *frame, int what, PyObject *arg) |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 835 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 836 | PyObject *result; |
Victor Stinner | 78da82b | 2016-08-20 01:22:57 +0200 | [diff] [blame] | 837 | PyObject *stack[3]; |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 838 | |
Victor Stinner | 78da82b | 2016-08-20 01:22:57 +0200 | [diff] [blame] | 839 | if (PyFrame_FastToLocalsWithError(frame) < 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 840 | return NULL; |
Victor Stinner | 78da82b | 2016-08-20 01:22:57 +0200 | [diff] [blame] | 841 | } |
Victor Stinner | 41bb43a | 2013-10-29 01:19:37 +0100 | [diff] [blame] | 842 | |
Victor Stinner | 78da82b | 2016-08-20 01:22:57 +0200 | [diff] [blame] | 843 | stack[0] = (PyObject *)frame; |
| 844 | stack[1] = whatstrings[what]; |
| 845 | stack[2] = (arg != NULL) ? arg : Py_None; |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 846 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 847 | /* call the Python-level function */ |
Victor Stinner | 559bb6a | 2016-08-22 22:48:54 +0200 | [diff] [blame] | 848 | result = _PyObject_FastCall(callback, stack, 3); |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 849 | |
Victor Stinner | 78da82b | 2016-08-20 01:22:57 +0200 | [diff] [blame] | 850 | PyFrame_LocalsToFast(frame, 1); |
| 851 | if (result == NULL) { |
| 852 | PyTraceBack_Here(frame); |
| 853 | } |
| 854 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 855 | return result; |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 856 | } |
| 857 | |
| 858 | static int |
| 859 | profile_trampoline(PyObject *self, PyFrameObject *frame, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 860 | int what, PyObject *arg) |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 861 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 862 | PyObject *result; |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 863 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 864 | if (arg == NULL) |
| 865 | arg = Py_None; |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 866 | result = call_trampoline(self, frame, what, arg); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 867 | if (result == NULL) { |
| 868 | PyEval_SetProfile(NULL, NULL); |
| 869 | return -1; |
| 870 | } |
| 871 | Py_DECREF(result); |
| 872 | return 0; |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 873 | } |
| 874 | |
| 875 | static int |
| 876 | trace_trampoline(PyObject *self, PyFrameObject *frame, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 877 | int what, PyObject *arg) |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 878 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 879 | PyObject *callback; |
| 880 | PyObject *result; |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 881 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 882 | if (what == PyTrace_CALL) |
| 883 | callback = self; |
| 884 | else |
| 885 | callback = frame->f_trace; |
| 886 | if (callback == NULL) |
| 887 | return 0; |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 888 | result = call_trampoline(callback, frame, what, arg); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 889 | if (result == NULL) { |
| 890 | PyEval_SetTrace(NULL, NULL); |
Serhiy Storchaka | 505ff75 | 2014-02-09 13:33:53 +0200 | [diff] [blame] | 891 | Py_CLEAR(frame->f_trace); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 892 | return -1; |
| 893 | } |
| 894 | if (result != Py_None) { |
Serhiy Storchaka | ec39756 | 2016-04-06 09:50:03 +0300 | [diff] [blame] | 895 | Py_XSETREF(frame->f_trace, result); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 896 | } |
| 897 | else { |
| 898 | Py_DECREF(result); |
| 899 | } |
| 900 | return 0; |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 901 | } |
Fred Drake | d083839 | 2001-06-16 21:02:31 +0000 | [diff] [blame] | 902 | |
Fred Drake | 8b4d01d | 2000-05-09 19:57:01 +0000 | [diff] [blame] | 903 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 904 | sys_settrace(PyObject *self, PyObject *args) |
Guido van Rossum | e2437a1 | 1992-03-23 18:20:18 +0000 | [diff] [blame] | 905 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 906 | if (trace_init() == -1) |
| 907 | return NULL; |
| 908 | if (args == Py_None) |
| 909 | PyEval_SetTrace(NULL, NULL); |
| 910 | else |
| 911 | PyEval_SetTrace(trace_trampoline, args); |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 912 | Py_RETURN_NONE; |
Guido van Rossum | e2437a1 | 1992-03-23 18:20:18 +0000 | [diff] [blame] | 913 | } |
| 914 | |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 915 | PyDoc_STRVAR(settrace_doc, |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 916 | "settrace(function)\n\ |
| 917 | \n\ |
| 918 | Set the global debug tracing function. It will be called on each\n\ |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 919 | function call. See the debugger chapter in the library manual." |
| 920 | ); |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 921 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 922 | /*[clinic input] |
| 923 | sys.gettrace |
| 924 | |
| 925 | Return the global debug tracing function set with sys.settrace. |
| 926 | |
| 927 | See the debugger chapter in the library manual. |
| 928 | [clinic start generated code]*/ |
| 929 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 930 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 931 | sys_gettrace_impl(PyObject *module) |
| 932 | /*[clinic end generated code: output=e97e3a4d8c971b6e input=373b51bb2147f4d8]*/ |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 933 | { |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 934 | PyThreadState *tstate = _PyThreadState_GET(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 935 | PyObject *temp = tstate->c_traceobj; |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 936 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 937 | if (temp == NULL) |
| 938 | temp = Py_None; |
| 939 | Py_INCREF(temp); |
| 940 | return temp; |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 941 | } |
| 942 | |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 943 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 944 | sys_setprofile(PyObject *self, PyObject *args) |
Guido van Rossum | e2437a1 | 1992-03-23 18:20:18 +0000 | [diff] [blame] | 945 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 946 | if (trace_init() == -1) |
| 947 | return NULL; |
| 948 | if (args == Py_None) |
| 949 | PyEval_SetProfile(NULL, NULL); |
| 950 | else |
| 951 | PyEval_SetProfile(profile_trampoline, args); |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 952 | Py_RETURN_NONE; |
Guido van Rossum | e2437a1 | 1992-03-23 18:20:18 +0000 | [diff] [blame] | 953 | } |
| 954 | |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 955 | PyDoc_STRVAR(setprofile_doc, |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 956 | "setprofile(function)\n\ |
| 957 | \n\ |
| 958 | Set the profiling function. It will be called on each function call\n\ |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 959 | and return. See the profiler chapter in the library manual." |
| 960 | ); |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 961 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 962 | /*[clinic input] |
| 963 | sys.getprofile |
| 964 | |
| 965 | Return the profiling function set with sys.setprofile. |
| 966 | |
| 967 | See the profiler chapter in the library manual. |
| 968 | [clinic start generated code]*/ |
| 969 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 970 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 971 | sys_getprofile_impl(PyObject *module) |
| 972 | /*[clinic end generated code: output=579b96b373448188 input=1b3209d89a32965d]*/ |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 973 | { |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 974 | PyThreadState *tstate = _PyThreadState_GET(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 975 | PyObject *temp = tstate->c_profileobj; |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 976 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 977 | if (temp == NULL) |
| 978 | temp = Py_None; |
| 979 | Py_INCREF(temp); |
| 980 | return temp; |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 981 | } |
| 982 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 983 | /*[clinic input] |
| 984 | sys.setcheckinterval |
| 985 | |
| 986 | n: int |
| 987 | / |
| 988 | |
| 989 | Set the async event check interval to n instructions. |
| 990 | |
| 991 | This tells the Python interpreter to check for asynchronous events |
| 992 | every n instructions. |
| 993 | |
| 994 | This also affects how often thread switches occur. |
| 995 | [clinic start generated code]*/ |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 996 | |
| 997 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 998 | sys_setcheckinterval_impl(PyObject *module, int n) |
| 999 | /*[clinic end generated code: output=3f686cef07e6e178 input=7a35b17bf22a6227]*/ |
Guido van Rossum | a0d7a23 | 1995-01-09 17:46:13 +0000 | [diff] [blame] | 1000 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1001 | if (PyErr_WarnEx(PyExc_DeprecationWarning, |
| 1002 | "sys.getcheckinterval() and sys.setcheckinterval() " |
| 1003 | "are deprecated. Use sys.setswitchinterval() " |
| 1004 | "instead.", 1) < 0) |
| 1005 | return NULL; |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 1006 | |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 1007 | PyInterpreterState *interp = _PyInterpreterState_Get(); |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1008 | interp->check_interval = n; |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 1009 | Py_RETURN_NONE; |
Guido van Rossum | a0d7a23 | 1995-01-09 17:46:13 +0000 | [diff] [blame] | 1010 | } |
| 1011 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1012 | /*[clinic input] |
| 1013 | sys.getcheckinterval |
| 1014 | |
| 1015 | Return the current check interval; see sys.setcheckinterval(). |
| 1016 | [clinic start generated code]*/ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 1017 | |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 1018 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1019 | sys_getcheckinterval_impl(PyObject *module) |
| 1020 | /*[clinic end generated code: output=1b5060bf2b23a47c input=4b6589cbcca1db4e]*/ |
Tim Peters | e5e065b | 2003-07-06 18:36:54 +0000 | [diff] [blame] | 1021 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1022 | if (PyErr_WarnEx(PyExc_DeprecationWarning, |
| 1023 | "sys.getcheckinterval() and sys.setcheckinterval() " |
| 1024 | "are deprecated. Use sys.getswitchinterval() " |
| 1025 | "instead.", 1) < 0) |
| 1026 | return NULL; |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 1027 | PyInterpreterState *interp = _PyInterpreterState_Get(); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 1028 | return PyLong_FromLong(interp->check_interval); |
Tim Peters | e5e065b | 2003-07-06 18:36:54 +0000 | [diff] [blame] | 1029 | } |
| 1030 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1031 | /*[clinic input] |
| 1032 | sys.setswitchinterval |
| 1033 | |
| 1034 | interval: double |
| 1035 | / |
| 1036 | |
| 1037 | Set the ideal thread switching delay inside the Python interpreter. |
| 1038 | |
| 1039 | The actual frequency of switching threads can be lower if the |
| 1040 | interpreter executes long sequences of uninterruptible code |
| 1041 | (this is implementation-specific and workload-dependent). |
| 1042 | |
| 1043 | The parameter must represent the desired switching delay in seconds |
| 1044 | A typical value is 0.005 (5 milliseconds). |
| 1045 | [clinic start generated code]*/ |
Tim Peters | e5e065b | 2003-07-06 18:36:54 +0000 | [diff] [blame] | 1046 | |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 1047 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1048 | sys_setswitchinterval_impl(PyObject *module, double interval) |
| 1049 | /*[clinic end generated code: output=65a19629e5153983 input=561b477134df91d9]*/ |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 1050 | { |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1051 | if (interval <= 0.0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1052 | PyErr_SetString(PyExc_ValueError, |
| 1053 | "switch interval must be strictly positive"); |
| 1054 | return NULL; |
| 1055 | } |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1056 | _PyEval_SetSwitchInterval((unsigned long) (1e6 * interval)); |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 1057 | Py_RETURN_NONE; |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 1058 | } |
| 1059 | |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 1060 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1061 | /*[clinic input] |
| 1062 | sys.getswitchinterval -> double |
| 1063 | |
| 1064 | Return the current thread switch interval; see sys.setswitchinterval(). |
| 1065 | [clinic start generated code]*/ |
| 1066 | |
| 1067 | static double |
| 1068 | sys_getswitchinterval_impl(PyObject *module) |
| 1069 | /*[clinic end generated code: output=a38c277c85b5096d input=bdf9d39c0ebbbb6f]*/ |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 1070 | { |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1071 | return 1e-6 * _PyEval_GetSwitchInterval(); |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 1072 | } |
| 1073 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1074 | /*[clinic input] |
| 1075 | sys.setrecursionlimit |
| 1076 | |
| 1077 | limit as new_limit: int |
| 1078 | / |
| 1079 | |
| 1080 | Set the maximum depth of the Python interpreter stack to n. |
| 1081 | |
| 1082 | This limit prevents infinite recursion from causing an overflow of the C |
| 1083 | stack and crashing Python. The highest possible limit is platform- |
| 1084 | dependent. |
| 1085 | [clinic start generated code]*/ |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 1086 | |
Tim Peters | e5e065b | 2003-07-06 18:36:54 +0000 | [diff] [blame] | 1087 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1088 | sys_setrecursionlimit_impl(PyObject *module, int new_limit) |
| 1089 | /*[clinic end generated code: output=35e1c64754800ace input=b0f7a23393924af3]*/ |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 1090 | { |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1091 | int mark; |
Victor Stinner | 50856d5 | 2015-10-13 00:11:21 +0200 | [diff] [blame] | 1092 | PyThreadState *tstate; |
| 1093 | |
Victor Stinner | 50856d5 | 2015-10-13 00:11:21 +0200 | [diff] [blame] | 1094 | if (new_limit < 1) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1095 | PyErr_SetString(PyExc_ValueError, |
Victor Stinner | 50856d5 | 2015-10-13 00:11:21 +0200 | [diff] [blame] | 1096 | "recursion limit must be greater or equal than 1"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1097 | return NULL; |
| 1098 | } |
Victor Stinner | 50856d5 | 2015-10-13 00:11:21 +0200 | [diff] [blame] | 1099 | |
| 1100 | /* Issue #25274: When the recursion depth hits the recursion limit in |
| 1101 | _Py_CheckRecursiveCall(), the overflowed flag of the thread state is |
| 1102 | set to 1 and a RecursionError is raised. The overflowed flag is reset |
| 1103 | to 0 when the recursion depth goes below the low-water mark: see |
| 1104 | Py_LeaveRecursiveCall(). |
| 1105 | |
| 1106 | Reject too low new limit if the current recursion depth is higher than |
| 1107 | the new low-water mark. Otherwise it may not be possible anymore to |
| 1108 | reset the overflowed flag to 0. */ |
| 1109 | mark = _Py_RecursionLimitLowerWaterMark(new_limit); |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 1110 | tstate = _PyThreadState_GET(); |
Victor Stinner | 50856d5 | 2015-10-13 00:11:21 +0200 | [diff] [blame] | 1111 | if (tstate->recursion_depth >= mark) { |
| 1112 | PyErr_Format(PyExc_RecursionError, |
| 1113 | "cannot set the recursion limit to %i at " |
| 1114 | "the recursion depth %i: the limit is too low", |
| 1115 | new_limit, tstate->recursion_depth); |
| 1116 | return NULL; |
| 1117 | } |
| 1118 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1119 | Py_SetRecursionLimit(new_limit); |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 1120 | Py_RETURN_NONE; |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 1121 | } |
| 1122 | |
Nathaniel J. Smith | fc2f407 | 2018-01-21 06:44:07 -0800 | [diff] [blame] | 1123 | /*[clinic input] |
| 1124 | sys.set_coroutine_origin_tracking_depth |
| 1125 | |
| 1126 | depth: int |
| 1127 | |
| 1128 | Enable or disable origin tracking for coroutine objects in this thread. |
| 1129 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1130 | Coroutine objects will track 'depth' frames of traceback information |
| 1131 | about where they came from, available in their cr_origin attribute. |
| 1132 | |
| 1133 | Set a depth of 0 to disable. |
Nathaniel J. Smith | fc2f407 | 2018-01-21 06:44:07 -0800 | [diff] [blame] | 1134 | [clinic start generated code]*/ |
| 1135 | |
| 1136 | static PyObject * |
| 1137 | sys_set_coroutine_origin_tracking_depth_impl(PyObject *module, int depth) |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1138 | /*[clinic end generated code: output=0a2123c1cc6759c5 input=a1d0a05f89d2c426]*/ |
Nathaniel J. Smith | fc2f407 | 2018-01-21 06:44:07 -0800 | [diff] [blame] | 1139 | { |
| 1140 | if (depth < 0) { |
| 1141 | PyErr_SetString(PyExc_ValueError, "depth must be >= 0"); |
| 1142 | return NULL; |
| 1143 | } |
| 1144 | _PyEval_SetCoroutineOriginTrackingDepth(depth); |
| 1145 | Py_RETURN_NONE; |
| 1146 | } |
| 1147 | |
| 1148 | /*[clinic input] |
| 1149 | sys.get_coroutine_origin_tracking_depth -> int |
| 1150 | |
| 1151 | Check status of origin tracking for coroutine objects in this thread. |
| 1152 | [clinic start generated code]*/ |
| 1153 | |
| 1154 | static int |
| 1155 | sys_get_coroutine_origin_tracking_depth_impl(PyObject *module) |
| 1156 | /*[clinic end generated code: output=3699f7be95a3afb8 input=335266a71205b61a]*/ |
| 1157 | { |
| 1158 | return _PyEval_GetCoroutineOriginTrackingDepth(); |
| 1159 | } |
| 1160 | |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 1161 | static PyTypeObject AsyncGenHooksType; |
| 1162 | |
| 1163 | PyDoc_STRVAR(asyncgen_hooks_doc, |
| 1164 | "asyncgen_hooks\n\ |
| 1165 | \n\ |
| 1166 | A struct sequence providing information about asynhronous\n\ |
| 1167 | generators hooks. The attributes are read only."); |
| 1168 | |
| 1169 | static PyStructSequence_Field asyncgen_hooks_fields[] = { |
| 1170 | {"firstiter", "Hook to intercept first iteration"}, |
| 1171 | {"finalizer", "Hook to intercept finalization"}, |
| 1172 | {0} |
| 1173 | }; |
| 1174 | |
| 1175 | static PyStructSequence_Desc asyncgen_hooks_desc = { |
| 1176 | "asyncgen_hooks", /* name */ |
| 1177 | asyncgen_hooks_doc, /* doc */ |
| 1178 | asyncgen_hooks_fields , /* fields */ |
| 1179 | 2 |
| 1180 | }; |
| 1181 | |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 1182 | static PyObject * |
| 1183 | sys_set_asyncgen_hooks(PyObject *self, PyObject *args, PyObject *kw) |
| 1184 | { |
| 1185 | static char *keywords[] = {"firstiter", "finalizer", NULL}; |
| 1186 | PyObject *firstiter = NULL; |
| 1187 | PyObject *finalizer = NULL; |
| 1188 | |
| 1189 | if (!PyArg_ParseTupleAndKeywords( |
| 1190 | args, kw, "|OO", keywords, |
| 1191 | &firstiter, &finalizer)) { |
| 1192 | return NULL; |
| 1193 | } |
| 1194 | |
| 1195 | if (finalizer && finalizer != Py_None) { |
| 1196 | if (!PyCallable_Check(finalizer)) { |
| 1197 | PyErr_Format(PyExc_TypeError, |
| 1198 | "callable finalizer expected, got %.50s", |
| 1199 | Py_TYPE(finalizer)->tp_name); |
| 1200 | return NULL; |
| 1201 | } |
| 1202 | _PyEval_SetAsyncGenFinalizer(finalizer); |
| 1203 | } |
| 1204 | else if (finalizer == Py_None) { |
| 1205 | _PyEval_SetAsyncGenFinalizer(NULL); |
| 1206 | } |
| 1207 | |
| 1208 | if (firstiter && firstiter != Py_None) { |
| 1209 | if (!PyCallable_Check(firstiter)) { |
| 1210 | PyErr_Format(PyExc_TypeError, |
| 1211 | "callable firstiter expected, got %.50s", |
| 1212 | Py_TYPE(firstiter)->tp_name); |
| 1213 | return NULL; |
| 1214 | } |
| 1215 | _PyEval_SetAsyncGenFirstiter(firstiter); |
| 1216 | } |
| 1217 | else if (firstiter == Py_None) { |
| 1218 | _PyEval_SetAsyncGenFirstiter(NULL); |
| 1219 | } |
| 1220 | |
| 1221 | Py_RETURN_NONE; |
| 1222 | } |
| 1223 | |
| 1224 | PyDoc_STRVAR(set_asyncgen_hooks_doc, |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1225 | "set_asyncgen_hooks(* [, firstiter] [, finalizer])\n\ |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 1226 | \n\ |
| 1227 | Set a finalizer for async generators objects." |
| 1228 | ); |
| 1229 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1230 | /*[clinic input] |
| 1231 | sys.get_asyncgen_hooks |
| 1232 | |
| 1233 | Return the installed asynchronous generators hooks. |
| 1234 | |
| 1235 | This returns a namedtuple of the form (firstiter, finalizer). |
| 1236 | [clinic start generated code]*/ |
| 1237 | |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 1238 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1239 | sys_get_asyncgen_hooks_impl(PyObject *module) |
| 1240 | /*[clinic end generated code: output=53a253707146f6cf input=3676b9ea62b14625]*/ |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 1241 | { |
| 1242 | PyObject *res; |
| 1243 | PyObject *firstiter = _PyEval_GetAsyncGenFirstiter(); |
| 1244 | PyObject *finalizer = _PyEval_GetAsyncGenFinalizer(); |
| 1245 | |
| 1246 | res = PyStructSequence_New(&AsyncGenHooksType); |
| 1247 | if (res == NULL) { |
| 1248 | return NULL; |
| 1249 | } |
| 1250 | |
| 1251 | if (firstiter == NULL) { |
| 1252 | firstiter = Py_None; |
| 1253 | } |
| 1254 | |
| 1255 | if (finalizer == NULL) { |
| 1256 | finalizer = Py_None; |
| 1257 | } |
| 1258 | |
| 1259 | Py_INCREF(firstiter); |
| 1260 | PyStructSequence_SET_ITEM(res, 0, firstiter); |
| 1261 | |
| 1262 | Py_INCREF(finalizer); |
| 1263 | PyStructSequence_SET_ITEM(res, 1, finalizer); |
| 1264 | |
| 1265 | return res; |
| 1266 | } |
| 1267 | |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 1268 | |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1269 | static PyTypeObject Hash_InfoType; |
| 1270 | |
| 1271 | PyDoc_STRVAR(hash_info_doc, |
| 1272 | "hash_info\n\ |
| 1273 | \n\ |
| 1274 | A struct sequence providing parameters used for computing\n\ |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 1275 | hashes. The attributes are read only."); |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1276 | |
| 1277 | static PyStructSequence_Field hash_info_fields[] = { |
| 1278 | {"width", "width of the type used for hashing, in bits"}, |
| 1279 | {"modulus", "prime number giving the modulus on which the hash " |
| 1280 | "function is based"}, |
| 1281 | {"inf", "value to be used for hash of a positive infinity"}, |
| 1282 | {"nan", "value to be used for hash of a nan"}, |
| 1283 | {"imag", "multiplier used for the imaginary part of a complex number"}, |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 1284 | {"algorithm", "name of the algorithm for hashing of str, bytes and " |
| 1285 | "memoryviews"}, |
| 1286 | {"hash_bits", "internal output size of hash algorithm"}, |
| 1287 | {"seed_bits", "seed size of hash algorithm"}, |
| 1288 | {"cutoff", "small string optimization cutoff"}, |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1289 | {NULL, NULL} |
| 1290 | }; |
| 1291 | |
| 1292 | static PyStructSequence_Desc hash_info_desc = { |
| 1293 | "sys.hash_info", |
| 1294 | hash_info_doc, |
| 1295 | hash_info_fields, |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 1296 | 9, |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1297 | }; |
| 1298 | |
Matthias Klose | d885e95 | 2010-07-06 10:53:30 +0000 | [diff] [blame] | 1299 | static PyObject * |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1300 | get_hash_info(void) |
| 1301 | { |
| 1302 | PyObject *hash_info; |
| 1303 | int field = 0; |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 1304 | PyHash_FuncDef *hashfunc; |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1305 | hash_info = PyStructSequence_New(&Hash_InfoType); |
| 1306 | if (hash_info == NULL) |
| 1307 | return NULL; |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 1308 | hashfunc = PyHash_GetFuncDef(); |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1309 | PyStructSequence_SET_ITEM(hash_info, field++, |
Benjamin Peterson | 8f67d08 | 2010-10-17 20:54:53 +0000 | [diff] [blame] | 1310 | PyLong_FromLong(8*sizeof(Py_hash_t))); |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1311 | PyStructSequence_SET_ITEM(hash_info, field++, |
Benjamin Peterson | 8035bc5 | 2010-10-23 16:20:50 +0000 | [diff] [blame] | 1312 | PyLong_FromSsize_t(_PyHASH_MODULUS)); |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1313 | PyStructSequence_SET_ITEM(hash_info, field++, |
| 1314 | PyLong_FromLong(_PyHASH_INF)); |
| 1315 | PyStructSequence_SET_ITEM(hash_info, field++, |
| 1316 | PyLong_FromLong(_PyHASH_NAN)); |
| 1317 | PyStructSequence_SET_ITEM(hash_info, field++, |
| 1318 | PyLong_FromLong(_PyHASH_IMAG)); |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 1319 | PyStructSequence_SET_ITEM(hash_info, field++, |
| 1320 | PyUnicode_FromString(hashfunc->name)); |
| 1321 | PyStructSequence_SET_ITEM(hash_info, field++, |
| 1322 | PyLong_FromLong(hashfunc->hash_bits)); |
| 1323 | PyStructSequence_SET_ITEM(hash_info, field++, |
| 1324 | PyLong_FromLong(hashfunc->seed_bits)); |
| 1325 | PyStructSequence_SET_ITEM(hash_info, field++, |
| 1326 | PyLong_FromLong(Py_HASH_CUTOFF)); |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1327 | if (PyErr_Occurred()) { |
| 1328 | Py_CLEAR(hash_info); |
| 1329 | return NULL; |
| 1330 | } |
| 1331 | return hash_info; |
| 1332 | } |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1333 | /*[clinic input] |
| 1334 | sys.getrecursionlimit |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1335 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1336 | Return the current value of the recursion limit. |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 1337 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1338 | The recursion limit is the maximum depth of the Python interpreter |
| 1339 | stack. This limit prevents infinite recursion from causing an overflow |
| 1340 | of the C stack and crashing Python. |
| 1341 | [clinic start generated code]*/ |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 1342 | |
| 1343 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1344 | sys_getrecursionlimit_impl(PyObject *module) |
| 1345 | /*[clinic end generated code: output=d571fb6b4549ef2e input=1c6129fd2efaeea8]*/ |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 1346 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1347 | return PyLong_FromLong(Py_GetRecursionLimit()); |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 1348 | } |
| 1349 | |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 1350 | #ifdef MS_WINDOWS |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 1351 | |
Eric Smith | f7bb578 | 2010-01-27 00:44:57 +0000 | [diff] [blame] | 1352 | static PyTypeObject WindowsVersionType = {0, 0, 0, 0, 0, 0}; |
| 1353 | |
| 1354 | static PyStructSequence_Field windows_version_fields[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1355 | {"major", "Major version number"}, |
| 1356 | {"minor", "Minor version number"}, |
| 1357 | {"build", "Build number"}, |
| 1358 | {"platform", "Operating system platform"}, |
| 1359 | {"service_pack", "Latest Service Pack installed on the system"}, |
| 1360 | {"service_pack_major", "Service Pack major version number"}, |
| 1361 | {"service_pack_minor", "Service Pack minor version number"}, |
| 1362 | {"suite_mask", "Bit mask identifying available product suites"}, |
| 1363 | {"product_type", "System product type"}, |
Steve Dower | 74f4af7 | 2016-09-17 17:27:48 -0700 | [diff] [blame] | 1364 | {"platform_version", "Diagnostic version number"}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1365 | {0} |
Eric Smith | f7bb578 | 2010-01-27 00:44:57 +0000 | [diff] [blame] | 1366 | }; |
| 1367 | |
| 1368 | static PyStructSequence_Desc windows_version_desc = { |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1369 | "sys.getwindowsversion", /* name */ |
| 1370 | sys_getwindowsversion__doc__, /* doc */ |
| 1371 | windows_version_fields, /* fields */ |
| 1372 | 5 /* For backward compatibility, |
| 1373 | only the first 5 items are accessible |
| 1374 | via indexing, the rest are name only */ |
Eric Smith | f7bb578 | 2010-01-27 00:44:57 +0000 | [diff] [blame] | 1375 | }; |
| 1376 | |
Steve Dower | 3e96f32 | 2015-03-02 08:01:10 -0800 | [diff] [blame] | 1377 | /* Disable deprecation warnings about GetVersionEx as the result is |
| 1378 | being passed straight through to the caller, who is responsible for |
| 1379 | using it correctly. */ |
| 1380 | #pragma warning(push) |
| 1381 | #pragma warning(disable:4996) |
| 1382 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1383 | /*[clinic input] |
| 1384 | sys.getwindowsversion |
| 1385 | |
| 1386 | Return info about the running version of Windows as a named tuple. |
| 1387 | |
| 1388 | The members are named: major, minor, build, platform, service_pack, |
| 1389 | service_pack_major, service_pack_minor, suite_mask, product_type and |
| 1390 | platform_version. For backward compatibility, only the first 5 items |
| 1391 | are available by indexing. All elements are numbers, except |
| 1392 | service_pack and platform_type which are strings, and platform_version |
| 1393 | which is a 3-tuple. Platform is always 2. Product_type may be 1 for a |
| 1394 | workstation, 2 for a domain controller, 3 for a server. |
| 1395 | Platform_version is a 3-tuple containing a version number that is |
| 1396 | intended for identifying the OS rather than feature detection. |
| 1397 | [clinic start generated code]*/ |
| 1398 | |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 1399 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1400 | sys_getwindowsversion_impl(PyObject *module) |
| 1401 | /*[clinic end generated code: output=1ec063280b932857 input=73a228a328fee63a]*/ |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 1402 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1403 | PyObject *version; |
| 1404 | int pos = 0; |
Minmin Gong | 8ebc645 | 2019-02-02 20:26:55 -0800 | [diff] [blame] | 1405 | OSVERSIONINFOEXW ver; |
Steve Dower | 74f4af7 | 2016-09-17 17:27:48 -0700 | [diff] [blame] | 1406 | DWORD realMajor, realMinor, realBuild; |
| 1407 | HANDLE hKernel32; |
| 1408 | wchar_t kernel32_path[MAX_PATH]; |
| 1409 | LPVOID verblock; |
| 1410 | DWORD verblock_size; |
| 1411 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1412 | ver.dwOSVersionInfoSize = sizeof(ver); |
Minmin Gong | 8ebc645 | 2019-02-02 20:26:55 -0800 | [diff] [blame] | 1413 | if (!GetVersionExW((OSVERSIONINFOW*) &ver)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1414 | return PyErr_SetFromWindowsErr(0); |
Eric Smith | f7bb578 | 2010-01-27 00:44:57 +0000 | [diff] [blame] | 1415 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1416 | version = PyStructSequence_New(&WindowsVersionType); |
| 1417 | if (version == NULL) |
| 1418 | return NULL; |
Eric Smith | f7bb578 | 2010-01-27 00:44:57 +0000 | [diff] [blame] | 1419 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1420 | PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.dwMajorVersion)); |
| 1421 | PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.dwMinorVersion)); |
| 1422 | PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.dwBuildNumber)); |
| 1423 | PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.dwPlatformId)); |
Minmin Gong | 8ebc645 | 2019-02-02 20:26:55 -0800 | [diff] [blame] | 1424 | PyStructSequence_SET_ITEM(version, pos++, PyUnicode_FromWideChar(ver.szCSDVersion, -1)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1425 | PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.wServicePackMajor)); |
| 1426 | PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.wServicePackMinor)); |
| 1427 | PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.wSuiteMask)); |
| 1428 | PyStructSequence_SET_ITEM(version, pos++, PyLong_FromLong(ver.wProductType)); |
Eric Smith | f7bb578 | 2010-01-27 00:44:57 +0000 | [diff] [blame] | 1429 | |
Steve Dower | 74f4af7 | 2016-09-17 17:27:48 -0700 | [diff] [blame] | 1430 | realMajor = ver.dwMajorVersion; |
| 1431 | realMinor = ver.dwMinorVersion; |
| 1432 | realBuild = ver.dwBuildNumber; |
| 1433 | |
| 1434 | // GetVersion will lie if we are running in a compatibility mode. |
| 1435 | // We need to read the version info from a system file resource |
| 1436 | // to accurately identify the OS version. If we fail for any reason, |
| 1437 | // just return whatever GetVersion said. |
Tony Roberts | 4860f01 | 2019-02-02 18:16:42 +0100 | [diff] [blame] | 1438 | Py_BEGIN_ALLOW_THREADS |
Steve Dower | 74f4af7 | 2016-09-17 17:27:48 -0700 | [diff] [blame] | 1439 | hKernel32 = GetModuleHandleW(L"kernel32.dll"); |
Tony Roberts | 4860f01 | 2019-02-02 18:16:42 +0100 | [diff] [blame] | 1440 | Py_END_ALLOW_THREADS |
Steve Dower | 74f4af7 | 2016-09-17 17:27:48 -0700 | [diff] [blame] | 1441 | if (hKernel32 && GetModuleFileNameW(hKernel32, kernel32_path, MAX_PATH) && |
| 1442 | (verblock_size = GetFileVersionInfoSizeW(kernel32_path, NULL)) && |
| 1443 | (verblock = PyMem_RawMalloc(verblock_size))) { |
| 1444 | VS_FIXEDFILEINFO *ffi; |
| 1445 | UINT ffi_len; |
| 1446 | |
| 1447 | if (GetFileVersionInfoW(kernel32_path, 0, verblock_size, verblock) && |
| 1448 | VerQueryValueW(verblock, L"", (LPVOID)&ffi, &ffi_len)) { |
| 1449 | realMajor = HIWORD(ffi->dwProductVersionMS); |
| 1450 | realMinor = LOWORD(ffi->dwProductVersionMS); |
| 1451 | realBuild = HIWORD(ffi->dwProductVersionLS); |
| 1452 | } |
| 1453 | PyMem_RawFree(verblock); |
| 1454 | } |
Segev Finer | 48fb766 | 2017-06-04 20:52:27 +0300 | [diff] [blame] | 1455 | PyStructSequence_SET_ITEM(version, pos++, Py_BuildValue("(kkk)", |
| 1456 | realMajor, |
| 1457 | realMinor, |
| 1458 | realBuild |
Steve Dower | 74f4af7 | 2016-09-17 17:27:48 -0700 | [diff] [blame] | 1459 | )); |
| 1460 | |
Serhiy Storchaka | 48d761e | 2013-12-17 15:11:24 +0200 | [diff] [blame] | 1461 | if (PyErr_Occurred()) { |
| 1462 | Py_DECREF(version); |
| 1463 | return NULL; |
| 1464 | } |
Steve Dower | 74f4af7 | 2016-09-17 17:27:48 -0700 | [diff] [blame] | 1465 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1466 | return version; |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 1467 | } |
| 1468 | |
Steve Dower | 3e96f32 | 2015-03-02 08:01:10 -0800 | [diff] [blame] | 1469 | #pragma warning(pop) |
| 1470 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1471 | /*[clinic input] |
| 1472 | sys._enablelegacywindowsfsencoding |
| 1473 | |
| 1474 | Changes the default filesystem encoding to mbcs:replace. |
| 1475 | |
| 1476 | This is done for consistency with earlier versions of Python. See PEP |
| 1477 | 529 for more information. |
| 1478 | |
| 1479 | This is equivalent to defining the PYTHONLEGACYWINDOWSFSENCODING |
| 1480 | environment variable before launching Python. |
| 1481 | [clinic start generated code]*/ |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 1482 | |
| 1483 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1484 | sys__enablelegacywindowsfsencoding_impl(PyObject *module) |
| 1485 | /*[clinic end generated code: output=f5c3855b45e24fe9 input=2bfa931a20704492]*/ |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 1486 | { |
Victor Stinner | 709d23d | 2019-05-02 14:56:30 -0400 | [diff] [blame] | 1487 | if (_PyUnicode_EnableLegacyWindowsFSEncoding() < 0) { |
Victor Stinner | b2457ef | 2018-08-29 13:25:36 +0200 | [diff] [blame] | 1488 | return NULL; |
| 1489 | } |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 1490 | Py_RETURN_NONE; |
| 1491 | } |
| 1492 | |
Mark Hammond | 8696ebc | 2002-10-08 02:44:31 +0000 | [diff] [blame] | 1493 | #endif /* MS_WINDOWS */ |
| 1494 | |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 1495 | #ifdef HAVE_DLOPEN |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1496 | |
| 1497 | /*[clinic input] |
| 1498 | sys.setdlopenflags |
| 1499 | |
| 1500 | flags as new_val: int |
| 1501 | / |
| 1502 | |
| 1503 | Set the flags used by the interpreter for dlopen calls. |
| 1504 | |
| 1505 | This is used, for example, when the interpreter loads extension |
| 1506 | modules. Among other things, this will enable a lazy resolving of |
| 1507 | symbols when importing a module, if called as sys.setdlopenflags(0). |
| 1508 | To share symbols across extension modules, call as |
| 1509 | sys.setdlopenflags(os.RTLD_GLOBAL). Symbolic names for the flag |
| 1510 | modules can be found in the os module (RTLD_xxx constants, e.g. |
| 1511 | os.RTLD_LAZY). |
| 1512 | [clinic start generated code]*/ |
| 1513 | |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 1514 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1515 | sys_setdlopenflags_impl(PyObject *module, int new_val) |
| 1516 | /*[clinic end generated code: output=ec918b7fe0a37281 input=4c838211e857a77f]*/ |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 1517 | { |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 1518 | PyInterpreterState *interp = _PyInterpreterState_Get(); |
| 1519 | interp->dlopenflags = new_val; |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 1520 | Py_RETURN_NONE; |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 1521 | } |
| 1522 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1523 | |
| 1524 | /*[clinic input] |
| 1525 | sys.getdlopenflags |
| 1526 | |
| 1527 | Return the current value of the flags that are used for dlopen calls. |
| 1528 | |
| 1529 | The flag constants are defined in the os module. |
| 1530 | [clinic start generated code]*/ |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 1531 | |
| 1532 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1533 | sys_getdlopenflags_impl(PyObject *module) |
| 1534 | /*[clinic end generated code: output=e92cd1bc5005da6e input=dc4ea0899c53b4b6]*/ |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 1535 | { |
Victor Stinner | caba55b | 2018-08-03 15:33:52 +0200 | [diff] [blame] | 1536 | PyInterpreterState *interp = _PyInterpreterState_Get(); |
| 1537 | return PyLong_FromLong(interp->dlopenflags); |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 1538 | } |
| 1539 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1540 | #endif /* HAVE_DLOPEN */ |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 1541 | |
Guido van Rossum | 14b4adb | 1992-09-03 20:25:30 +0000 | [diff] [blame] | 1542 | #ifdef USE_MALLOPT |
| 1543 | /* Link with -lmalloc (or -lmpc) on an SGI */ |
| 1544 | #include <malloc.h> |
| 1545 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1546 | /*[clinic input] |
| 1547 | sys.mdebug |
| 1548 | |
| 1549 | flag: int |
| 1550 | / |
| 1551 | [clinic start generated code]*/ |
| 1552 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 1553 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1554 | sys_mdebug_impl(PyObject *module, int flag) |
| 1555 | /*[clinic end generated code: output=5431d545847c3637 input=151d150ae1636f8a]*/ |
Guido van Rossum | 14b4adb | 1992-09-03 20:25:30 +0000 | [diff] [blame] | 1556 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1557 | int flag; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1558 | mallopt(M_DEBUG, flag); |
Serhiy Storchaka | 228b12e | 2017-01-23 09:47:21 +0200 | [diff] [blame] | 1559 | Py_RETURN_NONE; |
Guido van Rossum | 14b4adb | 1992-09-03 20:25:30 +0000 | [diff] [blame] | 1560 | } |
| 1561 | #endif /* USE_MALLOPT */ |
| 1562 | |
Serhiy Storchaka | 547d3bc | 2014-08-14 22:21:18 +0300 | [diff] [blame] | 1563 | size_t |
| 1564 | _PySys_GetSizeOf(PyObject *o) |
Martin v. Löwis | 00709aa | 2008-06-04 14:18:43 +0000 | [diff] [blame] | 1565 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1566 | PyObject *res = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1567 | PyObject *method; |
Serhiy Storchaka | 030e92d | 2014-11-15 13:21:37 +0200 | [diff] [blame] | 1568 | Py_ssize_t size; |
Benjamin Peterson | a5758c0 | 2009-05-09 18:15:04 +0000 | [diff] [blame] | 1569 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1570 | /* Make sure the type is initialized. float gets initialized late */ |
| 1571 | if (PyType_Ready(Py_TYPE(o)) < 0) |
Serhiy Storchaka | 547d3bc | 2014-08-14 22:21:18 +0300 | [diff] [blame] | 1572 | return (size_t)-1; |
Robert Schuppenies | fbe94c5 | 2008-07-14 10:13:31 +0000 | [diff] [blame] | 1573 | |
Benjamin Peterson | ce79852 | 2012-01-22 11:24:29 -0500 | [diff] [blame] | 1574 | method = _PyObject_LookupSpecial(o, &PyId___sizeof__); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1575 | if (method == NULL) { |
| 1576 | if (!PyErr_Occurred()) |
| 1577 | PyErr_Format(PyExc_TypeError, |
| 1578 | "Type %.100s doesn't define __sizeof__", |
| 1579 | Py_TYPE(o)->tp_name); |
| 1580 | } |
| 1581 | else { |
Victor Stinner | f17c3de | 2016-12-06 18:46:19 +0100 | [diff] [blame] | 1582 | res = _PyObject_CallNoArg(method); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1583 | Py_DECREF(method); |
| 1584 | } |
| 1585 | |
Serhiy Storchaka | 547d3bc | 2014-08-14 22:21:18 +0300 | [diff] [blame] | 1586 | if (res == NULL) |
| 1587 | return (size_t)-1; |
| 1588 | |
Serhiy Storchaka | 030e92d | 2014-11-15 13:21:37 +0200 | [diff] [blame] | 1589 | size = PyLong_AsSsize_t(res); |
Serhiy Storchaka | 547d3bc | 2014-08-14 22:21:18 +0300 | [diff] [blame] | 1590 | Py_DECREF(res); |
Serhiy Storchaka | 030e92d | 2014-11-15 13:21:37 +0200 | [diff] [blame] | 1591 | if (size == -1 && PyErr_Occurred()) |
Serhiy Storchaka | 547d3bc | 2014-08-14 22:21:18 +0300 | [diff] [blame] | 1592 | return (size_t)-1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1593 | |
Serhiy Storchaka | 030e92d | 2014-11-15 13:21:37 +0200 | [diff] [blame] | 1594 | if (size < 0) { |
| 1595 | PyErr_SetString(PyExc_ValueError, "__sizeof__() should return >= 0"); |
| 1596 | return (size_t)-1; |
| 1597 | } |
| 1598 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1599 | /* add gc_head size */ |
Serhiy Storchaka | 547d3bc | 2014-08-14 22:21:18 +0300 | [diff] [blame] | 1600 | if (PyObject_IS_GC(o)) |
Serhiy Storchaka | 030e92d | 2014-11-15 13:21:37 +0200 | [diff] [blame] | 1601 | return ((size_t)size) + sizeof(PyGC_Head); |
| 1602 | return (size_t)size; |
Serhiy Storchaka | 547d3bc | 2014-08-14 22:21:18 +0300 | [diff] [blame] | 1603 | } |
| 1604 | |
| 1605 | static PyObject * |
| 1606 | sys_getsizeof(PyObject *self, PyObject *args, PyObject *kwds) |
| 1607 | { |
| 1608 | static char *kwlist[] = {"object", "default", 0}; |
| 1609 | size_t size; |
| 1610 | PyObject *o, *dflt = NULL; |
| 1611 | |
| 1612 | if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O:getsizeof", |
| 1613 | kwlist, &o, &dflt)) |
| 1614 | return NULL; |
| 1615 | |
| 1616 | size = _PySys_GetSizeOf(o); |
| 1617 | |
| 1618 | if (size == (size_t)-1 && PyErr_Occurred()) { |
| 1619 | /* Has a default value been given */ |
| 1620 | if (dflt != NULL && PyErr_ExceptionMatches(PyExc_TypeError)) { |
| 1621 | PyErr_Clear(); |
| 1622 | Py_INCREF(dflt); |
| 1623 | return dflt; |
| 1624 | } |
| 1625 | else |
| 1626 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1627 | } |
Serhiy Storchaka | 547d3bc | 2014-08-14 22:21:18 +0300 | [diff] [blame] | 1628 | |
| 1629 | return PyLong_FromSize_t(size); |
Martin v. Löwis | 00709aa | 2008-06-04 14:18:43 +0000 | [diff] [blame] | 1630 | } |
| 1631 | |
| 1632 | PyDoc_STRVAR(getsizeof_doc, |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1633 | "getsizeof(object [, default]) -> int\n\ |
Martin v. Löwis | 00709aa | 2008-06-04 14:18:43 +0000 | [diff] [blame] | 1634 | \n\ |
| 1635 | Return the size of object in bytes."); |
| 1636 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1637 | /*[clinic input] |
| 1638 | sys.getrefcount -> Py_ssize_t |
| 1639 | |
| 1640 | object: object |
| 1641 | / |
| 1642 | |
| 1643 | Return the reference count of object. |
| 1644 | |
| 1645 | The count returned is generally one higher than you might expect, |
| 1646 | because it includes the (temporary) reference as an argument to |
| 1647 | getrefcount(). |
| 1648 | [clinic start generated code]*/ |
| 1649 | |
| 1650 | static Py_ssize_t |
| 1651 | sys_getrefcount_impl(PyObject *module, PyObject *object) |
| 1652 | /*[clinic end generated code: output=5fd477f2264b85b2 input=bf474efd50a21535]*/ |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1653 | { |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1654 | return object->ob_refcnt; |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1655 | } |
| 1656 | |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 1657 | #ifdef Py_REF_DEBUG |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1658 | /*[clinic input] |
| 1659 | sys.gettotalrefcount -> Py_ssize_t |
| 1660 | [clinic start generated code]*/ |
| 1661 | |
| 1662 | static Py_ssize_t |
| 1663 | sys_gettotalrefcount_impl(PyObject *module) |
| 1664 | /*[clinic end generated code: output=4103886cf17c25bc input=53b744faa5d2e4f6]*/ |
Mark Hammond | 440d898 | 2000-06-20 08:12:48 +0000 | [diff] [blame] | 1665 | { |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1666 | return _Py_GetRefTotal(); |
Mark Hammond | 440d898 | 2000-06-20 08:12:48 +0000 | [diff] [blame] | 1667 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1668 | #endif /* Py_REF_DEBUG */ |
Mark Hammond | 440d898 | 2000-06-20 08:12:48 +0000 | [diff] [blame] | 1669 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1670 | /*[clinic input] |
| 1671 | sys.getallocatedblocks -> Py_ssize_t |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 1672 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1673 | Return the number of memory blocks currently allocated. |
| 1674 | [clinic start generated code]*/ |
| 1675 | |
| 1676 | static Py_ssize_t |
| 1677 | sys_getallocatedblocks_impl(PyObject *module) |
| 1678 | /*[clinic end generated code: output=f0c4e873f0b6dcf7 input=dab13ee346a0673e]*/ |
Antoine Pitrou | f9d0b12 | 2012-12-09 14:28:26 +0100 | [diff] [blame] | 1679 | { |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1680 | return _Py_GetAllocatedBlocks(); |
Antoine Pitrou | f9d0b12 | 2012-12-09 14:28:26 +0100 | [diff] [blame] | 1681 | } |
| 1682 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1683 | #ifdef COUNT_ALLOCS |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1684 | /*[clinic input] |
| 1685 | sys.getcounts |
| 1686 | [clinic start generated code]*/ |
| 1687 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1688 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1689 | sys_getcounts_impl(PyObject *module) |
| 1690 | /*[clinic end generated code: output=20df00bc164f43cb input=ad2ec7bda5424953]*/ |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1691 | { |
Pablo Galindo | 49c75a8 | 2018-10-28 15:02:17 +0000 | [diff] [blame] | 1692 | extern PyObject *_Py_get_counts(void); |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1693 | |
Pablo Galindo | 49c75a8 | 2018-10-28 15:02:17 +0000 | [diff] [blame] | 1694 | return _Py_get_counts(); |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1695 | } |
| 1696 | #endif |
| 1697 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1698 | /*[clinic input] |
| 1699 | sys._getframe |
| 1700 | |
| 1701 | depth: int = 0 |
| 1702 | / |
| 1703 | |
| 1704 | Return a frame object from the call stack. |
| 1705 | |
| 1706 | If optional integer depth is given, return the frame object that many |
| 1707 | calls below the top of the stack. If that is deeper than the call |
| 1708 | stack, ValueError is raised. The default for depth is zero, returning |
| 1709 | the frame at the top of the call stack. |
| 1710 | |
| 1711 | This function should be used for internal and specialized purposes |
| 1712 | only. |
| 1713 | [clinic start generated code]*/ |
Barry Warsaw | b6a54d2 | 2000-12-06 21:47:46 +0000 | [diff] [blame] | 1714 | |
| 1715 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1716 | sys__getframe_impl(PyObject *module, int depth) |
| 1717 | /*[clinic end generated code: output=d438776c04d59804 input=c1be8a6464b11ee5]*/ |
Barry Warsaw | b6a54d2 | 2000-12-06 21:47:46 +0000 | [diff] [blame] | 1718 | { |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 1719 | PyFrameObject *f = _PyThreadState_GET()->frame; |
Barry Warsaw | b6a54d2 | 2000-12-06 21:47:46 +0000 | [diff] [blame] | 1720 | |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 1721 | if (PySys_Audit("sys._getframe", "O", f) < 0) { |
| 1722 | return NULL; |
| 1723 | } |
| 1724 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1725 | while (depth > 0 && f != NULL) { |
| 1726 | f = f->f_back; |
| 1727 | --depth; |
| 1728 | } |
| 1729 | if (f == NULL) { |
| 1730 | PyErr_SetString(PyExc_ValueError, |
| 1731 | "call stack is not deep enough"); |
| 1732 | return NULL; |
| 1733 | } |
| 1734 | Py_INCREF(f); |
| 1735 | return (PyObject*)f; |
Barry Warsaw | b6a54d2 | 2000-12-06 21:47:46 +0000 | [diff] [blame] | 1736 | } |
| 1737 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1738 | /*[clinic input] |
| 1739 | sys._current_frames |
| 1740 | |
| 1741 | Return a dict mapping each thread's thread id to its current stack frame. |
| 1742 | |
| 1743 | This function should be used for specialized purposes only. |
| 1744 | [clinic start generated code]*/ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1745 | |
| 1746 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1747 | sys__current_frames_impl(PyObject *module) |
| 1748 | /*[clinic end generated code: output=d2a41ac0a0a3809a input=2a9049c5f5033691]*/ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1749 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1750 | return _PyThread_CurrentFrames(); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1751 | } |
| 1752 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1753 | /*[clinic input] |
| 1754 | sys.call_tracing |
| 1755 | |
| 1756 | func: object |
| 1757 | args as funcargs: object(subclass_of='&PyTuple_Type') |
| 1758 | / |
| 1759 | |
| 1760 | Call func(*args), while tracing is enabled. |
| 1761 | |
| 1762 | The tracing state is saved, and restored afterwards. This is intended |
| 1763 | to be called from a debugger from a checkpoint, to recursively debug |
| 1764 | some other code. |
| 1765 | [clinic start generated code]*/ |
Guido van Rossum | a12fe4e | 2003-04-09 19:06:21 +0000 | [diff] [blame] | 1766 | |
| 1767 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1768 | sys_call_tracing_impl(PyObject *module, PyObject *func, PyObject *funcargs) |
| 1769 | /*[clinic end generated code: output=7e4999853cd4e5a6 input=5102e8b11049f92f]*/ |
Guido van Rossum | a12fe4e | 2003-04-09 19:06:21 +0000 | [diff] [blame] | 1770 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1771 | return _PyEval_CallTracing(func, funcargs); |
Guido van Rossum | a12fe4e | 2003-04-09 19:06:21 +0000 | [diff] [blame] | 1772 | } |
| 1773 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1774 | /*[clinic input] |
| 1775 | sys.callstats |
| 1776 | |
| 1777 | Return a tuple of function call statistics. |
| 1778 | |
| 1779 | A tuple is returned only if CALL_PROFILE was defined when Python was |
| 1780 | built. Otherwise, this returns None. |
| 1781 | |
| 1782 | When enabled, this function returns detailed, implementation-specific |
| 1783 | details about the number of function calls executed. The return value |
| 1784 | is a 11-tuple where the entries in the tuple are counts of: |
| 1785 | 0. all function calls |
| 1786 | 1. calls to PyFunction_Type objects |
| 1787 | 2. PyFunction calls that do not create an argument tuple |
| 1788 | 3. PyFunction calls that do not create an argument tuple |
| 1789 | and bypass PyEval_EvalCodeEx() |
| 1790 | 4. PyMethod calls |
| 1791 | 5. PyMethod calls on bound methods |
| 1792 | 6. PyType calls |
| 1793 | 7. PyCFunction calls |
| 1794 | 8. generator calls |
| 1795 | 9. All other calls |
| 1796 | 10. Number of stack pops performed by call_function() |
| 1797 | [clinic start generated code]*/ |
Barry Warsaw | b6a54d2 | 2000-12-06 21:47:46 +0000 | [diff] [blame] | 1798 | |
Victor Stinner | 048afd9 | 2016-11-28 11:59:04 +0100 | [diff] [blame] | 1799 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1800 | sys_callstats_impl(PyObject *module) |
| 1801 | /*[clinic end generated code: output=edc4a74957fa8def input=d447d8d224d5d175]*/ |
Victor Stinner | 048afd9 | 2016-11-28 11:59:04 +0100 | [diff] [blame] | 1802 | { |
| 1803 | if (PyErr_WarnEx(PyExc_DeprecationWarning, |
| 1804 | "sys.callstats() has been deprecated in Python 3.7 " |
| 1805 | "and will be removed in the future", 1) < 0) { |
| 1806 | return NULL; |
| 1807 | } |
| 1808 | |
| 1809 | Py_RETURN_NONE; |
| 1810 | } |
| 1811 | |
| 1812 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1813 | #ifdef __cplusplus |
| 1814 | extern "C" { |
| 1815 | #endif |
| 1816 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1817 | /*[clinic input] |
| 1818 | sys._debugmallocstats |
| 1819 | |
| 1820 | Print summary info to stderr about the state of pymalloc's structures. |
| 1821 | |
| 1822 | In Py_DEBUG mode, also perform some expensive internal consistency |
| 1823 | checks. |
| 1824 | [clinic start generated code]*/ |
| 1825 | |
David Malcolm | 49526f4 | 2012-06-22 14:55:41 -0400 | [diff] [blame] | 1826 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1827 | sys__debugmallocstats_impl(PyObject *module) |
| 1828 | /*[clinic end generated code: output=ec3565f8c7cee46a input=33c0c9c416f98424]*/ |
David Malcolm | 49526f4 | 2012-06-22 14:55:41 -0400 | [diff] [blame] | 1829 | { |
| 1830 | #ifdef WITH_PYMALLOC |
Victor Stinner | 6bf992a | 2017-12-06 17:26:10 +0100 | [diff] [blame] | 1831 | if (_PyObject_DebugMallocStats(stderr)) { |
Victor Stinner | 34be807 | 2016-03-14 12:04:26 +0100 | [diff] [blame] | 1832 | fputc('\n', stderr); |
| 1833 | } |
David Malcolm | 49526f4 | 2012-06-22 14:55:41 -0400 | [diff] [blame] | 1834 | #endif |
| 1835 | _PyObject_DebugTypeStats(stderr); |
| 1836 | |
| 1837 | Py_RETURN_NONE; |
| 1838 | } |
David Malcolm | 49526f4 | 2012-06-22 14:55:41 -0400 | [diff] [blame] | 1839 | |
Guido van Rossum | 7f3f2c1 | 1996-05-23 22:45:41 +0000 | [diff] [blame] | 1840 | #ifdef Py_TRACE_REFS |
Guido van Rossum | ded690f | 1996-05-24 20:48:31 +0000 | [diff] [blame] | 1841 | /* Defined in objects.c because it uses static globals if that file */ |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 1842 | extern PyObject *_Py_GetObjects(PyObject *, PyObject *); |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1843 | #endif |
Guido van Rossum | ded690f | 1996-05-24 20:48:31 +0000 | [diff] [blame] | 1844 | |
Guido van Rossum | 43f1b8d | 1997-01-24 04:07:45 +0000 | [diff] [blame] | 1845 | #ifdef DYNAMIC_EXECUTION_PROFILE |
| 1846 | /* Defined in ceval.c because it uses static globals if that file */ |
Tim Peters | dbd9ba6 | 2000-07-09 03:09:57 +0000 | [diff] [blame] | 1847 | extern PyObject *_Py_GetDXProfile(PyObject *, PyObject *); |
Guido van Rossum | 43f1b8d | 1997-01-24 04:07:45 +0000 | [diff] [blame] | 1848 | #endif |
| 1849 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1850 | #ifdef __cplusplus |
| 1851 | } |
| 1852 | #endif |
| 1853 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1854 | |
| 1855 | /*[clinic input] |
| 1856 | sys._clear_type_cache |
| 1857 | |
| 1858 | Clear the internal type lookup cache. |
| 1859 | [clinic start generated code]*/ |
| 1860 | |
Christian Heimes | 15ebc88 | 2008-02-04 18:48:49 +0000 | [diff] [blame] | 1861 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1862 | sys__clear_type_cache_impl(PyObject *module) |
| 1863 | /*[clinic end generated code: output=20e48ca54a6f6971 input=127f3e04a8d9b555]*/ |
Christian Heimes | 15ebc88 | 2008-02-04 18:48:49 +0000 | [diff] [blame] | 1864 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1865 | PyType_ClearCache(); |
| 1866 | Py_RETURN_NONE; |
Christian Heimes | 15ebc88 | 2008-02-04 18:48:49 +0000 | [diff] [blame] | 1867 | } |
| 1868 | |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1869 | /*[clinic input] |
| 1870 | sys.is_finalizing |
| 1871 | |
| 1872 | Return True if Python is exiting. |
| 1873 | [clinic start generated code]*/ |
| 1874 | |
Antoine Pitrou | 5db1bb8 | 2014-12-07 01:28:27 +0100 | [diff] [blame] | 1875 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1876 | sys_is_finalizing_impl(PyObject *module) |
| 1877 | /*[clinic end generated code: output=735b5ff7962ab281 input=f0df747a039948a5]*/ |
Antoine Pitrou | 5db1bb8 | 2014-12-07 01:28:27 +0100 | [diff] [blame] | 1878 | { |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 1879 | return PyBool_FromLong(_Py_IsFinalizing()); |
Antoine Pitrou | 5db1bb8 | 2014-12-07 01:28:27 +0100 | [diff] [blame] | 1880 | } |
| 1881 | |
Victor Stinner | d6958ac | 2016-12-02 01:13:46 +0100 | [diff] [blame] | 1882 | #ifdef ANDROID_API_LEVEL |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1883 | /*[clinic input] |
| 1884 | sys.getandroidapilevel |
| 1885 | |
| 1886 | Return the build time API version of Android as an integer. |
| 1887 | [clinic start generated code]*/ |
Victor Stinner | d6958ac | 2016-12-02 01:13:46 +0100 | [diff] [blame] | 1888 | |
| 1889 | static PyObject * |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1890 | sys_getandroidapilevel_impl(PyObject *module) |
| 1891 | /*[clinic end generated code: output=214abf183a1c70c1 input=3e6d6c9fcdd24ac6]*/ |
Victor Stinner | d6958ac | 2016-12-02 01:13:46 +0100 | [diff] [blame] | 1892 | { |
| 1893 | return PyLong_FromLong(ANDROID_API_LEVEL); |
| 1894 | } |
| 1895 | #endif /* ANDROID_API_LEVEL */ |
| 1896 | |
| 1897 | |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 1898 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 1899 | static PyMethodDef sys_methods[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1900 | /* Might as well keep this in alphabetic order */ |
Steve Dower | b82e17e | 2019-05-23 08:45:22 -0700 | [diff] [blame] | 1901 | SYS_ADDAUDITHOOK_METHODDEF |
| 1902 | {"audit", (PyCFunction)(void(*)(void))sys_audit, METH_FASTCALL, audit_doc }, |
Serhiy Storchaka | 62be742 | 2018-11-27 13:27:31 +0200 | [diff] [blame] | 1903 | {"breakpointhook", (PyCFunction)(void(*)(void))sys_breakpointhook, |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 1904 | METH_FASTCALL | METH_KEYWORDS, breakpointhook_doc}, |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1905 | SYS_CALLSTATS_METHODDEF |
| 1906 | SYS__CLEAR_TYPE_CACHE_METHODDEF |
| 1907 | SYS__CURRENT_FRAMES_METHODDEF |
| 1908 | SYS_DISPLAYHOOK_METHODDEF |
| 1909 | SYS_EXC_INFO_METHODDEF |
| 1910 | SYS_EXCEPTHOOK_METHODDEF |
| 1911 | SYS_EXIT_METHODDEF |
| 1912 | SYS_GETDEFAULTENCODING_METHODDEF |
| 1913 | SYS_GETDLOPENFLAGS_METHODDEF |
| 1914 | SYS_GETALLOCATEDBLOCKS_METHODDEF |
| 1915 | SYS_GETCOUNTS_METHODDEF |
Guido van Rossum | 43f1b8d | 1997-01-24 04:07:45 +0000 | [diff] [blame] | 1916 | #ifdef DYNAMIC_EXECUTION_PROFILE |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1917 | {"getdxp", _Py_GetDXProfile, METH_VARARGS}, |
Guido van Rossum | 43f1b8d | 1997-01-24 04:07:45 +0000 | [diff] [blame] | 1918 | #endif |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1919 | SYS_GETFILESYSTEMENCODING_METHODDEF |
| 1920 | SYS_GETFILESYSTEMENCODEERRORS_METHODDEF |
Guido van Rossum | 7f3f2c1 | 1996-05-23 22:45:41 +0000 | [diff] [blame] | 1921 | #ifdef Py_TRACE_REFS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1922 | {"getobjects", _Py_GetObjects, METH_VARARGS}, |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 1923 | #endif |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1924 | SYS_GETTOTALREFCOUNT_METHODDEF |
| 1925 | SYS_GETREFCOUNT_METHODDEF |
| 1926 | SYS_GETRECURSIONLIMIT_METHODDEF |
Serhiy Storchaka | 62be742 | 2018-11-27 13:27:31 +0200 | [diff] [blame] | 1927 | {"getsizeof", (PyCFunction)(void(*)(void))sys_getsizeof, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1928 | METH_VARARGS | METH_KEYWORDS, getsizeof_doc}, |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1929 | SYS__GETFRAME_METHODDEF |
| 1930 | SYS_GETWINDOWSVERSION_METHODDEF |
| 1931 | SYS__ENABLELEGACYWINDOWSFSENCODING_METHODDEF |
| 1932 | SYS_INTERN_METHODDEF |
| 1933 | SYS_IS_FINALIZING_METHODDEF |
| 1934 | SYS_MDEBUG_METHODDEF |
| 1935 | SYS_SETCHECKINTERVAL_METHODDEF |
| 1936 | SYS_GETCHECKINTERVAL_METHODDEF |
| 1937 | SYS_SETSWITCHINTERVAL_METHODDEF |
| 1938 | SYS_GETSWITCHINTERVAL_METHODDEF |
| 1939 | SYS_SETDLOPENFLAGS_METHODDEF |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1940 | {"setprofile", sys_setprofile, METH_O, setprofile_doc}, |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1941 | SYS_GETPROFILE_METHODDEF |
| 1942 | SYS_SETRECURSIONLIMIT_METHODDEF |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1943 | {"settrace", sys_settrace, METH_O, settrace_doc}, |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1944 | SYS_GETTRACE_METHODDEF |
| 1945 | SYS_CALL_TRACING_METHODDEF |
| 1946 | SYS__DEBUGMALLOCSTATS_METHODDEF |
Nathaniel J. Smith | fc2f407 | 2018-01-21 06:44:07 -0800 | [diff] [blame] | 1947 | SYS_SET_COROUTINE_ORIGIN_TRACKING_DEPTH_METHODDEF |
| 1948 | SYS_GET_COROUTINE_ORIGIN_TRACKING_DEPTH_METHODDEF |
Serhiy Storchaka | 62be742 | 2018-11-27 13:27:31 +0200 | [diff] [blame] | 1949 | {"set_asyncgen_hooks", (PyCFunction)(void(*)(void))sys_set_asyncgen_hooks, |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 1950 | METH_VARARGS | METH_KEYWORDS, set_asyncgen_hooks_doc}, |
Tal Einat | ede0b6f | 2018-12-31 17:12:08 +0200 | [diff] [blame] | 1951 | SYS_GET_ASYNCGEN_HOOKS_METHODDEF |
| 1952 | SYS_GETANDROIDAPILEVEL_METHODDEF |
Victor Stinner | ef9d9b6 | 2019-05-22 11:28:22 +0200 | [diff] [blame] | 1953 | SYS_UNRAISABLEHOOK_METHODDEF |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1954 | {NULL, NULL} /* sentinel */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1955 | }; |
| 1956 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 1957 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 1958 | list_builtin_module_names(void) |
Guido van Rossum | 34679b7 | 1993-01-26 13:33:44 +0000 | [diff] [blame] | 1959 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1960 | PyObject *list = PyList_New(0); |
| 1961 | int i; |
| 1962 | if (list == NULL) |
| 1963 | return NULL; |
| 1964 | for (i = 0; PyImport_Inittab[i].name != NULL; i++) { |
| 1965 | PyObject *name = PyUnicode_FromString( |
| 1966 | PyImport_Inittab[i].name); |
| 1967 | if (name == NULL) |
| 1968 | break; |
| 1969 | PyList_Append(list, name); |
| 1970 | Py_DECREF(name); |
| 1971 | } |
| 1972 | if (PyList_Sort(list) != 0) { |
| 1973 | Py_DECREF(list); |
| 1974 | list = NULL; |
| 1975 | } |
| 1976 | if (list) { |
| 1977 | PyObject *v = PyList_AsTuple(list); |
| 1978 | Py_DECREF(list); |
| 1979 | list = v; |
| 1980 | } |
| 1981 | return list; |
Guido van Rossum | 34679b7 | 1993-01-26 13:33:44 +0000 | [diff] [blame] | 1982 | } |
| 1983 | |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 1984 | /* Pre-initialization support for sys.warnoptions and sys._xoptions |
| 1985 | * |
| 1986 | * Modern internal code paths: |
| 1987 | * These APIs get called after _Py_InitializeCore and get to use the |
| 1988 | * regular CPython list, dict, and unicode APIs. |
| 1989 | * |
| 1990 | * Legacy embedding code paths: |
| 1991 | * The multi-phase initialization API isn't public yet, so embedding |
| 1992 | * apps still need to be able configure sys.warnoptions and sys._xoptions |
| 1993 | * before they call Py_Initialize. To support this, we stash copies of |
| 1994 | * the supplied wchar * sequences in linked lists, and then migrate the |
| 1995 | * contents of those lists to the sys module in _PyInitializeCore. |
| 1996 | * |
| 1997 | */ |
| 1998 | |
| 1999 | struct _preinit_entry { |
| 2000 | wchar_t *value; |
| 2001 | struct _preinit_entry *next; |
| 2002 | }; |
| 2003 | |
| 2004 | typedef struct _preinit_entry *_Py_PreInitEntry; |
| 2005 | |
| 2006 | static _Py_PreInitEntry _preinit_warnoptions = NULL; |
| 2007 | static _Py_PreInitEntry _preinit_xoptions = NULL; |
| 2008 | |
| 2009 | static _Py_PreInitEntry |
| 2010 | _alloc_preinit_entry(const wchar_t *value) |
| 2011 | { |
| 2012 | /* To get this to work, we have to initialize the runtime implicitly */ |
| 2013 | _PyRuntime_Initialize(); |
| 2014 | |
| 2015 | /* Force default allocator, so we can ensure that it also gets used to |
| 2016 | * destroy the linked list in _clear_preinit_entries. |
| 2017 | */ |
| 2018 | PyMemAllocatorEx old_alloc; |
| 2019 | _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc); |
| 2020 | |
| 2021 | _Py_PreInitEntry node = PyMem_RawCalloc(1, sizeof(*node)); |
| 2022 | if (node != NULL) { |
| 2023 | node->value = _PyMem_RawWcsdup(value); |
| 2024 | if (node->value == NULL) { |
| 2025 | PyMem_RawFree(node); |
| 2026 | node = NULL; |
| 2027 | }; |
| 2028 | }; |
| 2029 | |
| 2030 | PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc); |
| 2031 | return node; |
Zackery Spytz | 1a2252e | 2019-05-06 10:56:51 -0600 | [diff] [blame] | 2032 | } |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2033 | |
| 2034 | static int |
| 2035 | _append_preinit_entry(_Py_PreInitEntry *optionlist, const wchar_t *value) |
| 2036 | { |
| 2037 | _Py_PreInitEntry new_entry = _alloc_preinit_entry(value); |
| 2038 | if (new_entry == NULL) { |
| 2039 | return -1; |
| 2040 | } |
| 2041 | /* We maintain the linked list in this order so it's easy to play back |
| 2042 | * the add commands in the same order later on in _Py_InitializeCore |
| 2043 | */ |
| 2044 | _Py_PreInitEntry last_entry = *optionlist; |
| 2045 | if (last_entry == NULL) { |
| 2046 | *optionlist = new_entry; |
| 2047 | } else { |
| 2048 | while (last_entry->next != NULL) { |
| 2049 | last_entry = last_entry->next; |
| 2050 | } |
| 2051 | last_entry->next = new_entry; |
| 2052 | } |
| 2053 | return 0; |
Zackery Spytz | 1a2252e | 2019-05-06 10:56:51 -0600 | [diff] [blame] | 2054 | } |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2055 | |
| 2056 | static void |
| 2057 | _clear_preinit_entries(_Py_PreInitEntry *optionlist) |
| 2058 | { |
| 2059 | _Py_PreInitEntry current = *optionlist; |
| 2060 | *optionlist = NULL; |
| 2061 | /* Deallocate the nodes and their contents using the default allocator */ |
| 2062 | PyMemAllocatorEx old_alloc; |
| 2063 | _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc); |
| 2064 | while (current != NULL) { |
| 2065 | _Py_PreInitEntry next = current->next; |
| 2066 | PyMem_RawFree(current->value); |
| 2067 | PyMem_RawFree(current); |
| 2068 | current = next; |
| 2069 | } |
| 2070 | PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc); |
Zackery Spytz | 1a2252e | 2019-05-06 10:56:51 -0600 | [diff] [blame] | 2071 | } |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2072 | |
| 2073 | static void |
| 2074 | _clear_all_preinit_options(void) |
| 2075 | { |
| 2076 | _clear_preinit_entries(&_preinit_warnoptions); |
| 2077 | _clear_preinit_entries(&_preinit_xoptions); |
| 2078 | } |
| 2079 | |
| 2080 | static int |
| 2081 | _PySys_ReadPreInitOptions(void) |
| 2082 | { |
| 2083 | /* Rerun the add commands with the actual sys module available */ |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 2084 | PyThreadState *tstate = _PyThreadState_GET(); |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2085 | if (tstate == NULL) { |
| 2086 | /* Still don't have a thread state, so something is wrong! */ |
| 2087 | return -1; |
| 2088 | } |
| 2089 | _Py_PreInitEntry entry = _preinit_warnoptions; |
| 2090 | while (entry != NULL) { |
| 2091 | PySys_AddWarnOption(entry->value); |
| 2092 | entry = entry->next; |
| 2093 | } |
| 2094 | entry = _preinit_xoptions; |
| 2095 | while (entry != NULL) { |
| 2096 | PySys_AddXOption(entry->value); |
| 2097 | entry = entry->next; |
| 2098 | } |
| 2099 | |
| 2100 | _clear_all_preinit_options(); |
| 2101 | return 0; |
Zackery Spytz | 1a2252e | 2019-05-06 10:56:51 -0600 | [diff] [blame] | 2102 | } |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2103 | |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 2104 | static PyObject * |
| 2105 | get_warnoptions(void) |
| 2106 | { |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 2107 | PyObject *warnoptions = _PySys_GetObjectId(&PyId_warnoptions); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 2108 | if (warnoptions == NULL || !PyList_Check(warnoptions)) { |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2109 | /* PEP432 TODO: we can reach this if warnoptions is NULL in the main |
| 2110 | * interpreter config. When that happens, we need to properly set |
| 2111 | * the `warnoptions` reference in the main interpreter config as well. |
| 2112 | * |
| 2113 | * For Python 3.7, we shouldn't be able to get here due to the |
| 2114 | * combination of how _PyMainInterpreter_ReadConfig and _PySys_EndInit |
| 2115 | * work, but we expect 3.8+ to make the _PyMainInterpreter_ReadConfig |
| 2116 | * call optional for embedding applications, thus making this |
| 2117 | * reachable again. |
| 2118 | */ |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 2119 | warnoptions = PyList_New(0); |
| 2120 | if (warnoptions == NULL) |
| 2121 | return NULL; |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 2122 | if (_PySys_SetObjectId(&PyId_warnoptions, warnoptions)) { |
| 2123 | Py_DECREF(warnoptions); |
| 2124 | return NULL; |
| 2125 | } |
| 2126 | Py_DECREF(warnoptions); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 2127 | } |
| 2128 | return warnoptions; |
| 2129 | } |
Guido van Rossum | 23fff91 | 2000-12-15 22:02:05 +0000 | [diff] [blame] | 2130 | |
| 2131 | void |
| 2132 | PySys_ResetWarnOptions(void) |
| 2133 | { |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 2134 | PyThreadState *tstate = _PyThreadState_GET(); |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2135 | if (tstate == NULL) { |
| 2136 | _clear_preinit_entries(&_preinit_warnoptions); |
| 2137 | return; |
| 2138 | } |
| 2139 | |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 2140 | PyObject *warnoptions = _PySys_GetObjectId(&PyId_warnoptions); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2141 | if (warnoptions == NULL || !PyList_Check(warnoptions)) |
| 2142 | return; |
| 2143 | PyList_SetSlice(warnoptions, 0, PyList_GET_SIZE(warnoptions), NULL); |
Guido van Rossum | 23fff91 | 2000-12-15 22:02:05 +0000 | [diff] [blame] | 2144 | } |
| 2145 | |
Victor Stinner | e1b2995 | 2018-10-30 14:31:42 +0100 | [diff] [blame] | 2146 | static int |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2147 | _PySys_AddWarnOptionWithError(PyObject *option) |
Guido van Rossum | 23fff91 | 2000-12-15 22:02:05 +0000 | [diff] [blame] | 2148 | { |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 2149 | PyObject *warnoptions = get_warnoptions(); |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2150 | if (warnoptions == NULL) { |
| 2151 | return -1; |
| 2152 | } |
| 2153 | if (PyList_Append(warnoptions, option)) { |
| 2154 | return -1; |
| 2155 | } |
| 2156 | return 0; |
| 2157 | } |
| 2158 | |
| 2159 | void |
| 2160 | PySys_AddWarnOptionUnicode(PyObject *option) |
| 2161 | { |
Victor Stinner | e1b2995 | 2018-10-30 14:31:42 +0100 | [diff] [blame] | 2162 | if (_PySys_AddWarnOptionWithError(option) < 0) { |
| 2163 | /* No return value, therefore clear error state if possible */ |
| 2164 | if (_PyThreadState_UncheckedGet()) { |
| 2165 | PyErr_Clear(); |
| 2166 | } |
| 2167 | } |
Victor Stinner | 9ca9c25 | 2010-05-19 16:53:30 +0000 | [diff] [blame] | 2168 | } |
| 2169 | |
| 2170 | void |
| 2171 | PySys_AddWarnOption(const wchar_t *s) |
| 2172 | { |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 2173 | PyThreadState *tstate = _PyThreadState_GET(); |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2174 | if (tstate == NULL) { |
| 2175 | _append_preinit_entry(&_preinit_warnoptions, s); |
| 2176 | return; |
| 2177 | } |
Victor Stinner | 9ca9c25 | 2010-05-19 16:53:30 +0000 | [diff] [blame] | 2178 | PyObject *unicode; |
| 2179 | unicode = PyUnicode_FromWideChar(s, -1); |
| 2180 | if (unicode == NULL) |
| 2181 | return; |
| 2182 | PySys_AddWarnOptionUnicode(unicode); |
| 2183 | Py_DECREF(unicode); |
Guido van Rossum | 23fff91 | 2000-12-15 22:02:05 +0000 | [diff] [blame] | 2184 | } |
| 2185 | |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 2186 | int |
| 2187 | PySys_HasWarnOptions(void) |
| 2188 | { |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 2189 | PyObject *warnoptions = _PySys_GetObjectId(&PyId_warnoptions); |
Serhiy Storchaka | dffccc6 | 2018-12-10 13:50:22 +0200 | [diff] [blame] | 2190 | return (warnoptions != NULL && PyList_Check(warnoptions) |
| 2191 | && PyList_GET_SIZE(warnoptions) > 0); |
Christian Heimes | 33fe809 | 2008-04-13 13:53:33 +0000 | [diff] [blame] | 2192 | } |
| 2193 | |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2194 | static PyObject * |
| 2195 | get_xoptions(void) |
| 2196 | { |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 2197 | PyObject *xoptions = _PySys_GetObjectId(&PyId__xoptions); |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2198 | if (xoptions == NULL || !PyDict_Check(xoptions)) { |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2199 | /* PEP432 TODO: we can reach this if xoptions is NULL in the main |
| 2200 | * interpreter config. When that happens, we need to properly set |
| 2201 | * the `xoptions` reference in the main interpreter config as well. |
| 2202 | * |
| 2203 | * For Python 3.7, we shouldn't be able to get here due to the |
| 2204 | * combination of how _PyMainInterpreter_ReadConfig and _PySys_EndInit |
| 2205 | * work, but we expect 3.8+ to make the _PyMainInterpreter_ReadConfig |
| 2206 | * call optional for embedding applications, thus making this |
| 2207 | * reachable again. |
| 2208 | */ |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2209 | xoptions = PyDict_New(); |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 2210 | if (xoptions == NULL) |
| 2211 | return NULL; |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 2212 | if (_PySys_SetObjectId(&PyId__xoptions, xoptions)) { |
| 2213 | Py_DECREF(xoptions); |
| 2214 | return NULL; |
| 2215 | } |
| 2216 | Py_DECREF(xoptions); |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2217 | } |
| 2218 | return xoptions; |
| 2219 | } |
| 2220 | |
Victor Stinner | e1b2995 | 2018-10-30 14:31:42 +0100 | [diff] [blame] | 2221 | static int |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2222 | _PySys_AddXOptionWithError(const wchar_t *s) |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2223 | { |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2224 | PyObject *name = NULL, *value = NULL; |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2225 | |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2226 | PyObject *opts = get_xoptions(); |
| 2227 | if (opts == NULL) { |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2228 | goto error; |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2229 | } |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2230 | |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2231 | const wchar_t *name_end = wcschr(s, L'='); |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2232 | if (!name_end) { |
| 2233 | name = PyUnicode_FromWideChar(s, -1); |
| 2234 | value = Py_True; |
| 2235 | Py_INCREF(value); |
| 2236 | } |
| 2237 | else { |
| 2238 | name = PyUnicode_FromWideChar(s, name_end - s); |
| 2239 | value = PyUnicode_FromWideChar(name_end + 1, -1); |
| 2240 | } |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2241 | if (name == NULL || value == NULL) { |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2242 | goto error; |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2243 | } |
| 2244 | if (PyDict_SetItem(opts, name, value) < 0) { |
| 2245 | goto error; |
| 2246 | } |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2247 | Py_DECREF(name); |
| 2248 | Py_DECREF(value); |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2249 | return 0; |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2250 | |
| 2251 | error: |
| 2252 | Py_XDECREF(name); |
| 2253 | Py_XDECREF(value); |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2254 | return -1; |
| 2255 | } |
| 2256 | |
| 2257 | void |
| 2258 | PySys_AddXOption(const wchar_t *s) |
| 2259 | { |
Victor Stinner | 50b4857 | 2018-11-01 01:51:40 +0100 | [diff] [blame] | 2260 | PyThreadState *tstate = _PyThreadState_GET(); |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2261 | if (tstate == NULL) { |
| 2262 | _append_preinit_entry(&_preinit_xoptions, s); |
| 2263 | return; |
| 2264 | } |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2265 | if (_PySys_AddXOptionWithError(s) < 0) { |
| 2266 | /* No return value, therefore clear error state if possible */ |
| 2267 | if (_PyThreadState_UncheckedGet()) { |
| 2268 | PyErr_Clear(); |
| 2269 | } |
Victor Stinner | 0cae609 | 2016-11-11 01:43:56 +0100 | [diff] [blame] | 2270 | } |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2271 | } |
| 2272 | |
| 2273 | PyObject * |
| 2274 | PySys_GetXOptions(void) |
| 2275 | { |
| 2276 | return get_xoptions(); |
| 2277 | } |
| 2278 | |
Guido van Rossum | 40552d0 | 1998-08-06 03:34:39 +0000 | [diff] [blame] | 2279 | /* XXX This doc string is too long to be a single string literal in VC++ 5.0. |
| 2280 | Two literals concatenated works just fine. If you have a K&R compiler |
| 2281 | or other abomination that however *does* understand longer strings, |
| 2282 | get rid of the !!! comment in the middle and the quotes that surround it. */ |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 2283 | PyDoc_VAR(sys_doc) = |
| 2284 | PyDoc_STR( |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2285 | "This module provides access to some objects used or maintained by the\n\ |
| 2286 | interpreter and to functions that interact strongly with the interpreter.\n\ |
| 2287 | \n\ |
| 2288 | Dynamic objects:\n\ |
| 2289 | \n\ |
| 2290 | argv -- command line arguments; argv[0] is the script pathname if known\n\ |
| 2291 | path -- module search path; path[0] is the script directory, else ''\n\ |
| 2292 | modules -- dictionary of loaded modules\n\ |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 2293 | \n\ |
| 2294 | displayhook -- called to show results in an interactive session\n\ |
| 2295 | excepthook -- called to handle any uncaught exception other than SystemExit\n\ |
| 2296 | To customize printing in an interactive session or to install a custom\n\ |
| 2297 | top-level exception handler, assign other functions to replace these.\n\ |
| 2298 | \n\ |
Benjamin Peterson | 06157a4 | 2008-07-15 00:28:36 +0000 | [diff] [blame] | 2299 | stdin -- standard input file object; used by input()\n\ |
Georg Brandl | 88fc664 | 2007-02-09 21:28:07 +0000 | [diff] [blame] | 2300 | stdout -- standard output file object; used by print()\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2301 | stderr -- standard error object; used for error messages\n\ |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 2302 | By assigning other file objects (or objects that behave like files)\n\ |
| 2303 | to these, it is possible to redirect all of the interpreter's I/O.\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2304 | \n\ |
| 2305 | last_type -- type of last uncaught exception\n\ |
| 2306 | last_value -- value of last uncaught exception\n\ |
| 2307 | last_traceback -- traceback of last uncaught exception\n\ |
| 2308 | These three are only available in an interactive session after a\n\ |
| 2309 | traceback has been printed.\n\ |
Guido van Rossum | a71b5f4 | 1999-01-14 19:07:00 +0000 | [diff] [blame] | 2310 | " |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 2311 | ) |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 2312 | /* concatenating string here */ |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 2313 | PyDoc_STR( |
Guido van Rossum | a71b5f4 | 1999-01-14 19:07:00 +0000 | [diff] [blame] | 2314 | "\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2315 | Static objects:\n\ |
| 2316 | \n\ |
Victor Stinner | d5c355c | 2011-04-30 14:53:09 +0200 | [diff] [blame] | 2317 | builtin_module_names -- tuple of module names built into this interpreter\n\ |
| 2318 | copyright -- copyright notice pertaining to this interpreter\n\ |
| 2319 | exec_prefix -- prefix used to find the machine-specific Python library\n\ |
Petri Lehtinen | 4b0eab6 | 2012-02-02 21:23:15 +0200 | [diff] [blame] | 2320 | executable -- absolute path of the executable binary of the Python interpreter\n\ |
Victor Stinner | d5c355c | 2011-04-30 14:53:09 +0200 | [diff] [blame] | 2321 | float_info -- a struct sequence with information about the float implementation.\n\ |
| 2322 | float_repr_style -- string indicating the style of repr() output for floats\n\ |
Christian Heimes | 985ecdc | 2013-11-20 11:46:18 +0100 | [diff] [blame] | 2323 | hash_info -- a struct sequence with information about the hash algorithm.\n\ |
Victor Stinner | d5c355c | 2011-04-30 14:53:09 +0200 | [diff] [blame] | 2324 | hexversion -- version information encoded as a single integer\n\ |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 2325 | implementation -- Python implementation information.\n\ |
Mark Dickinson | bd79264 | 2009-03-18 20:06:12 +0000 | [diff] [blame] | 2326 | int_info -- a struct sequence with information about the int implementation.\n\ |
Thomas Wouters | d2cf20e | 2007-08-30 22:57:53 +0000 | [diff] [blame] | 2327 | maxsize -- the largest supported length of containers.\n\ |
Serhiy Storchaka | d3faf43 | 2015-01-18 11:28:37 +0200 | [diff] [blame] | 2328 | maxunicode -- the value of the largest Unicode code point\n\ |
Victor Stinner | d5c355c | 2011-04-30 14:53:09 +0200 | [diff] [blame] | 2329 | platform -- platform identifier\n\ |
| 2330 | prefix -- prefix used to find the Python library\n\ |
| 2331 | thread_info -- a struct sequence with information about the thread implementation.\n\ |
Fred Drake | 801c08d | 2000-04-13 15:29:10 +0000 | [diff] [blame] | 2332 | version -- the version of this interpreter as a string\n\ |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2333 | version_info -- version information as a named tuple\n\ |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 2334 | " |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 2335 | ) |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 2336 | #ifdef MS_COREDLL |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 2337 | /* concatenating string here */ |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 2338 | PyDoc_STR( |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 2339 | "dllhandle -- [Windows only] integer handle of the Python DLL\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2340 | winver -- [Windows only] version number of the Python DLL\n\ |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 2341 | " |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 2342 | ) |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 2343 | #endif /* MS_COREDLL */ |
| 2344 | #ifdef MS_WINDOWS |
| 2345 | /* concatenating string here */ |
| 2346 | PyDoc_STR( |
oldk | aa0735f | 2018-02-02 16:52:55 +0800 | [diff] [blame] | 2347 | "_enablelegacywindowsfsencoding -- [Windows only]\n\ |
Steve Dower | cc16be8 | 2016-09-08 10:35:16 -0700 | [diff] [blame] | 2348 | " |
| 2349 | ) |
| 2350 | #endif |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 2351 | PyDoc_STR( |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 2352 | "__stdin__ -- the original stdin; don't touch!\n\ |
| 2353 | __stdout__ -- the original stdout; don't touch!\n\ |
| 2354 | __stderr__ -- the original stderr; don't touch!\n\ |
| 2355 | __displayhook__ -- the original displayhook; don't touch!\n\ |
| 2356 | __excepthook__ -- the original excepthook; don't touch!\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2357 | \n\ |
| 2358 | Functions:\n\ |
| 2359 | \n\ |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 2360 | displayhook() -- print an object to the screen, and save it in builtins._\n\ |
Ka-Ping Yee | b5c5132 | 2001-03-23 02:46:52 +0000 | [diff] [blame] | 2361 | excepthook() -- print an exception and its traceback to sys.stderr\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2362 | exc_info() -- return thread-safe information about the current exception\n\ |
| 2363 | exit() -- exit the interpreter by raising SystemExit\n\ |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 2364 | getdlopenflags() -- returns flags to be used for dlopen() calls\n\ |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 2365 | getprofile() -- get the global profiling function\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2366 | getrefcount() -- return the reference count for an object (plus one :-)\n\ |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 2367 | getrecursionlimit() -- return the max recursion depth for the interpreter\n\ |
Martin v. Löwis | 00709aa | 2008-06-04 14:18:43 +0000 | [diff] [blame] | 2368 | getsizeof() -- return the size of an object in bytes\n\ |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 2369 | gettrace() -- get the global debug tracing function\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2370 | setcheckinterval() -- control how often the interpreter checks for events\n\ |
Martin v. Löwis | f0473d5 | 2001-07-18 16:17:16 +0000 | [diff] [blame] | 2371 | setdlopenflags() -- set the flags to be used for dlopen() calls\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2372 | setprofile() -- set the global profiling function\n\ |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 2373 | setrecursionlimit() -- set the max recursion depth for the interpreter\n\ |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2374 | settrace() -- set the global debug tracing function\n\ |
Fred Drake | ccede59 | 2000-08-14 20:59:57 +0000 | [diff] [blame] | 2375 | " |
Martin v. Löwis | a3fb4f7 | 2002-06-09 13:33:54 +0000 | [diff] [blame] | 2376 | ) |
Fred Drake | ccede59 | 2000-08-14 20:59:57 +0000 | [diff] [blame] | 2377 | /* end of sys_doc */ ; |
Guido van Rossum | c3bc31e | 1998-06-27 19:43:25 +0000 | [diff] [blame] | 2378 | |
Christian Heimes | d32ed6f | 2008-01-14 18:49:24 +0000 | [diff] [blame] | 2379 | |
| 2380 | PyDoc_STRVAR(flags__doc__, |
| 2381 | "sys.flags\n\ |
| 2382 | \n\ |
| 2383 | Flags provided through command line arguments or environment vars."); |
| 2384 | |
| 2385 | static PyTypeObject FlagsType; |
| 2386 | |
| 2387 | static PyStructSequence_Field flags_fields[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2388 | {"debug", "-d"}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2389 | {"inspect", "-i"}, |
| 2390 | {"interactive", "-i"}, |
| 2391 | {"optimize", "-O or -OO"}, |
| 2392 | {"dont_write_bytecode", "-B"}, |
| 2393 | {"no_user_site", "-s"}, |
| 2394 | {"no_site", "-S"}, |
| 2395 | {"ignore_environment", "-E"}, |
| 2396 | {"verbose", "-v"}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2397 | /* {"unbuffered", "-u"}, */ |
| 2398 | /* {"skip_first", "-x"}, */ |
Georg Brandl | 8aa7e99 | 2010-12-28 18:30:18 +0000 | [diff] [blame] | 2399 | {"bytes_warning", "-b"}, |
| 2400 | {"quiet", "-q"}, |
Georg Brandl | 09a7c72 | 2012-02-20 21:31:46 +0100 | [diff] [blame] | 2401 | {"hash_randomization", "-R"}, |
Christian Heimes | ad73a9c | 2013-08-10 16:36:18 +0200 | [diff] [blame] | 2402 | {"isolated", "-I"}, |
Victor Stinner | 5e3806f | 2017-11-30 11:40:24 +0100 | [diff] [blame] | 2403 | {"dev_mode", "-X dev"}, |
Victor Stinner | 91106cd | 2017-12-13 12:29:09 +0100 | [diff] [blame] | 2404 | {"utf8_mode", "-X utf8"}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2405 | {0} |
Christian Heimes | d32ed6f | 2008-01-14 18:49:24 +0000 | [diff] [blame] | 2406 | }; |
| 2407 | |
| 2408 | static PyStructSequence_Desc flags_desc = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2409 | "sys.flags", /* name */ |
| 2410 | flags__doc__, /* doc */ |
| 2411 | flags_fields, /* fields */ |
Victor Stinner | 91106cd | 2017-12-13 12:29:09 +0100 | [diff] [blame] | 2412 | 15 |
Christian Heimes | d32ed6f | 2008-01-14 18:49:24 +0000 | [diff] [blame] | 2413 | }; |
| 2414 | |
| 2415 | static PyObject* |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 2416 | make_flags(_PyRuntimeState *runtime, PyInterpreterState *interp) |
Christian Heimes | d32ed6f | 2008-01-14 18:49:24 +0000 | [diff] [blame] | 2417 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2418 | int pos = 0; |
| 2419 | PyObject *seq; |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2420 | const PyPreConfig *preconfig = &runtime->preconfig; |
| 2421 | const PyConfig *config = &interp->config; |
Christian Heimes | d32ed6f | 2008-01-14 18:49:24 +0000 | [diff] [blame] | 2422 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2423 | seq = PyStructSequence_New(&FlagsType); |
| 2424 | if (seq == NULL) |
| 2425 | return NULL; |
Christian Heimes | d32ed6f | 2008-01-14 18:49:24 +0000 | [diff] [blame] | 2426 | |
| 2427 | #define SetFlag(flag) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2428 | PyStructSequence_SET_ITEM(seq, pos++, PyLong_FromLong(flag)) |
Christian Heimes | d32ed6f | 2008-01-14 18:49:24 +0000 | [diff] [blame] | 2429 | |
Victor Stinner | fbca908 | 2018-08-30 00:50:45 +0200 | [diff] [blame] | 2430 | SetFlag(config->parser_debug); |
| 2431 | SetFlag(config->inspect); |
| 2432 | SetFlag(config->interactive); |
| 2433 | SetFlag(config->optimization_level); |
| 2434 | SetFlag(!config->write_bytecode); |
| 2435 | SetFlag(!config->user_site_directory); |
| 2436 | SetFlag(!config->site_import); |
Victor Stinner | 2000495 | 2019-03-26 02:31:11 +0100 | [diff] [blame] | 2437 | SetFlag(!config->use_environment); |
Victor Stinner | fbca908 | 2018-08-30 00:50:45 +0200 | [diff] [blame] | 2438 | SetFlag(config->verbose); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2439 | /* SetFlag(saw_unbuffered_flag); */ |
| 2440 | /* SetFlag(skipfirstline); */ |
Victor Stinner | fbca908 | 2018-08-30 00:50:45 +0200 | [diff] [blame] | 2441 | SetFlag(config->bytes_warning); |
| 2442 | SetFlag(config->quiet); |
| 2443 | SetFlag(config->use_hash_seed == 0 || config->hash_seed != 0); |
Victor Stinner | 2000495 | 2019-03-26 02:31:11 +0100 | [diff] [blame] | 2444 | SetFlag(config->isolated); |
| 2445 | PyStructSequence_SET_ITEM(seq, pos++, PyBool_FromLong(config->dev_mode)); |
| 2446 | SetFlag(preconfig->utf8_mode); |
Victor Stinner | 91106cd | 2017-12-13 12:29:09 +0100 | [diff] [blame] | 2447 | #undef SetFlag |
Christian Heimes | d32ed6f | 2008-01-14 18:49:24 +0000 | [diff] [blame] | 2448 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2449 | if (PyErr_Occurred()) { |
Serhiy Storchaka | 87a854d | 2013-12-17 14:59:42 +0200 | [diff] [blame] | 2450 | Py_DECREF(seq); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2451 | return NULL; |
| 2452 | } |
| 2453 | return seq; |
Christian Heimes | d32ed6f | 2008-01-14 18:49:24 +0000 | [diff] [blame] | 2454 | } |
| 2455 | |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2456 | PyDoc_STRVAR(version_info__doc__, |
| 2457 | "sys.version_info\n\ |
| 2458 | \n\ |
| 2459 | Version information as a named tuple."); |
| 2460 | |
| 2461 | static PyTypeObject VersionInfoType; |
| 2462 | |
| 2463 | static PyStructSequence_Field version_info_fields[] = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2464 | {"major", "Major release number"}, |
| 2465 | {"minor", "Minor release number"}, |
| 2466 | {"micro", "Patch release number"}, |
Ned Deily | da4887a | 2016-11-04 17:03:34 -0400 | [diff] [blame] | 2467 | {"releaselevel", "'alpha', 'beta', 'candidate', or 'final'"}, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2468 | {"serial", "Serial release number"}, |
| 2469 | {0} |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2470 | }; |
| 2471 | |
| 2472 | static PyStructSequence_Desc version_info_desc = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2473 | "sys.version_info", /* name */ |
| 2474 | version_info__doc__, /* doc */ |
| 2475 | version_info_fields, /* fields */ |
| 2476 | 5 |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2477 | }; |
| 2478 | |
| 2479 | static PyObject * |
| 2480 | make_version_info(void) |
| 2481 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2482 | PyObject *version_info; |
| 2483 | char *s; |
| 2484 | int pos = 0; |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2485 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2486 | version_info = PyStructSequence_New(&VersionInfoType); |
| 2487 | if (version_info == NULL) { |
| 2488 | return NULL; |
| 2489 | } |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2490 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2491 | /* |
| 2492 | * These release level checks are mutually exclusive and cover |
| 2493 | * the field, so don't get too fancy with the pre-processor! |
| 2494 | */ |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2495 | #if PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_ALPHA |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2496 | s = "alpha"; |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2497 | #elif PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_BETA |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2498 | s = "beta"; |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2499 | #elif PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_GAMMA |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2500 | s = "candidate"; |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2501 | #elif PY_RELEASE_LEVEL == PY_RELEASE_LEVEL_FINAL |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2502 | s = "final"; |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2503 | #endif |
| 2504 | |
| 2505 | #define SetIntItem(flag) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2506 | PyStructSequence_SET_ITEM(version_info, pos++, PyLong_FromLong(flag)) |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2507 | #define SetStrItem(flag) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2508 | PyStructSequence_SET_ITEM(version_info, pos++, PyUnicode_FromString(flag)) |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2509 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2510 | SetIntItem(PY_MAJOR_VERSION); |
| 2511 | SetIntItem(PY_MINOR_VERSION); |
| 2512 | SetIntItem(PY_MICRO_VERSION); |
| 2513 | SetStrItem(s); |
| 2514 | SetIntItem(PY_RELEASE_SERIAL); |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2515 | #undef SetIntItem |
| 2516 | #undef SetStrItem |
| 2517 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2518 | if (PyErr_Occurred()) { |
| 2519 | Py_CLEAR(version_info); |
| 2520 | return NULL; |
| 2521 | } |
| 2522 | return version_info; |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2523 | } |
| 2524 | |
Brett Cannon | 3adc7b7 | 2012-07-09 14:22:12 -0400 | [diff] [blame] | 2525 | /* sys.implementation values */ |
| 2526 | #define NAME "cpython" |
| 2527 | const char *_PySys_ImplName = NAME; |
Victor Stinner | cf01b68 | 2015-11-05 11:21:38 +0100 | [diff] [blame] | 2528 | #define MAJOR Py_STRINGIFY(PY_MAJOR_VERSION) |
| 2529 | #define MINOR Py_STRINGIFY(PY_MINOR_VERSION) |
Ned Deily | 529ea5d | 2014-06-30 23:31:14 -0700 | [diff] [blame] | 2530 | #define TAG NAME "-" MAJOR MINOR |
Brett Cannon | 3adc7b7 | 2012-07-09 14:22:12 -0400 | [diff] [blame] | 2531 | const char *_PySys_ImplCacheTag = TAG; |
| 2532 | #undef NAME |
Brett Cannon | 3adc7b7 | 2012-07-09 14:22:12 -0400 | [diff] [blame] | 2533 | #undef MAJOR |
| 2534 | #undef MINOR |
| 2535 | #undef TAG |
| 2536 | |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 2537 | static PyObject * |
| 2538 | make_impl_info(PyObject *version_info) |
| 2539 | { |
| 2540 | int res; |
| 2541 | PyObject *impl_info, *value, *ns; |
| 2542 | |
| 2543 | impl_info = PyDict_New(); |
| 2544 | if (impl_info == NULL) |
| 2545 | return NULL; |
| 2546 | |
| 2547 | /* populate the dict */ |
| 2548 | |
Brett Cannon | 3adc7b7 | 2012-07-09 14:22:12 -0400 | [diff] [blame] | 2549 | value = PyUnicode_FromString(_PySys_ImplName); |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 2550 | if (value == NULL) |
| 2551 | goto error; |
| 2552 | res = PyDict_SetItemString(impl_info, "name", value); |
| 2553 | Py_DECREF(value); |
| 2554 | if (res < 0) |
| 2555 | goto error; |
| 2556 | |
Brett Cannon | 3adc7b7 | 2012-07-09 14:22:12 -0400 | [diff] [blame] | 2557 | value = PyUnicode_FromString(_PySys_ImplCacheTag); |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 2558 | if (value == NULL) |
| 2559 | goto error; |
| 2560 | res = PyDict_SetItemString(impl_info, "cache_tag", value); |
| 2561 | Py_DECREF(value); |
| 2562 | if (res < 0) |
| 2563 | goto error; |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 2564 | |
| 2565 | res = PyDict_SetItemString(impl_info, "version", version_info); |
| 2566 | if (res < 0) |
| 2567 | goto error; |
| 2568 | |
| 2569 | value = PyLong_FromLong(PY_VERSION_HEX); |
| 2570 | if (value == NULL) |
| 2571 | goto error; |
| 2572 | res = PyDict_SetItemString(impl_info, "hexversion", value); |
| 2573 | Py_DECREF(value); |
| 2574 | if (res < 0) |
| 2575 | goto error; |
| 2576 | |
doko@ubuntu.com | 5553231 | 2016-06-14 08:55:19 +0200 | [diff] [blame] | 2577 | #ifdef MULTIARCH |
| 2578 | value = PyUnicode_FromString(MULTIARCH); |
| 2579 | if (value == NULL) |
| 2580 | goto error; |
| 2581 | res = PyDict_SetItemString(impl_info, "_multiarch", value); |
| 2582 | Py_DECREF(value); |
| 2583 | if (res < 0) |
| 2584 | goto error; |
| 2585 | #endif |
| 2586 | |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 2587 | /* dict ready */ |
| 2588 | |
| 2589 | ns = _PyNamespace_New(impl_info); |
| 2590 | Py_DECREF(impl_info); |
| 2591 | return ns; |
| 2592 | |
| 2593 | error: |
| 2594 | Py_CLEAR(impl_info); |
| 2595 | return NULL; |
| 2596 | } |
| 2597 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 2598 | static struct PyModuleDef sysmodule = { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2599 | PyModuleDef_HEAD_INIT, |
| 2600 | "sys", |
| 2601 | sys_doc, |
| 2602 | -1, /* multiple "initialization" just copies the module dict. */ |
| 2603 | sys_methods, |
| 2604 | NULL, |
| 2605 | NULL, |
| 2606 | NULL, |
| 2607 | NULL |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 2608 | }; |
| 2609 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2610 | /* Updating the sys namespace, returning NULL pointer on error */ |
Victor Stinner | 8fea252 | 2013-10-27 17:15:42 +0100 | [diff] [blame] | 2611 | #define SET_SYS_FROM_STRING_BORROW(key, value) \ |
Victor Stinner | 5804960 | 2013-07-22 22:40:00 +0200 | [diff] [blame] | 2612 | do { \ |
Victor Stinner | 5804960 | 2013-07-22 22:40:00 +0200 | [diff] [blame] | 2613 | PyObject *v = (value); \ |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2614 | if (v == NULL) { \ |
| 2615 | goto err_occurred; \ |
| 2616 | } \ |
Victor Stinner | 5804960 | 2013-07-22 22:40:00 +0200 | [diff] [blame] | 2617 | res = PyDict_SetItemString(sysdict, key, v); \ |
| 2618 | if (res < 0) { \ |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2619 | goto err_occurred; \ |
Victor Stinner | 8fea252 | 2013-10-27 17:15:42 +0100 | [diff] [blame] | 2620 | } \ |
| 2621 | } while (0) |
| 2622 | #define SET_SYS_FROM_STRING(key, value) \ |
| 2623 | do { \ |
Victor Stinner | 8fea252 | 2013-10-27 17:15:42 +0100 | [diff] [blame] | 2624 | PyObject *v = (value); \ |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2625 | if (v == NULL) { \ |
| 2626 | goto err_occurred; \ |
| 2627 | } \ |
Victor Stinner | 8fea252 | 2013-10-27 17:15:42 +0100 | [diff] [blame] | 2628 | res = PyDict_SetItemString(sysdict, key, v); \ |
| 2629 | Py_DECREF(v); \ |
| 2630 | if (res < 0) { \ |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2631 | goto err_occurred; \ |
Victor Stinner | 5804960 | 2013-07-22 22:40:00 +0200 | [diff] [blame] | 2632 | } \ |
| 2633 | } while (0) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 2634 | |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2635 | static PyStatus |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 2636 | _PySys_InitCore(_PyRuntimeState *runtime, PyInterpreterState *interp, |
| 2637 | PyObject *sysdict) |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2638 | { |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2639 | PyObject *version_info; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2640 | int res; |
| 2641 | |
Nick Coghlan | d600951 | 2014-11-20 21:39:37 +1000 | [diff] [blame] | 2642 | /* stdin/stdout/stderr are set in pylifecycle.c */ |
Martin v. Löwis | 5467d4c | 2003-05-10 07:10:12 +0000 | [diff] [blame] | 2643 | |
Victor Stinner | 8fea252 | 2013-10-27 17:15:42 +0100 | [diff] [blame] | 2644 | SET_SYS_FROM_STRING_BORROW("__displayhook__", |
| 2645 | PyDict_GetItemString(sysdict, "displayhook")); |
| 2646 | SET_SYS_FROM_STRING_BORROW("__excepthook__", |
| 2647 | PyDict_GetItemString(sysdict, "excepthook")); |
Barry Warsaw | 36c1d1f | 2017-10-05 12:11:18 -0400 | [diff] [blame] | 2648 | SET_SYS_FROM_STRING_BORROW( |
| 2649 | "__breakpointhook__", |
| 2650 | PyDict_GetItemString(sysdict, "breakpointhook")); |
Victor Stinner | ef9d9b6 | 2019-05-22 11:28:22 +0200 | [diff] [blame] | 2651 | SET_SYS_FROM_STRING_BORROW("__unraisablehook__", |
| 2652 | PyDict_GetItemString(sysdict, "unraisablehook")); |
| 2653 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2654 | SET_SYS_FROM_STRING("version", |
| 2655 | PyUnicode_FromString(Py_GetVersion())); |
| 2656 | SET_SYS_FROM_STRING("hexversion", |
| 2657 | PyLong_FromLong(PY_VERSION_HEX)); |
Ned Deily | 5c4b0d0 | 2017-03-04 00:19:55 -0500 | [diff] [blame] | 2658 | SET_SYS_FROM_STRING("_git", |
| 2659 | Py_BuildValue("(szz)", "CPython", _Py_gitidentifier(), |
| 2660 | _Py_gitversion())); |
INADA Naoki | 6b42eb1 | 2017-06-29 15:31:38 +0900 | [diff] [blame] | 2661 | SET_SYS_FROM_STRING("_framework", PyUnicode_FromString(_PYTHONFRAMEWORK)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2662 | SET_SYS_FROM_STRING("api_version", |
| 2663 | PyLong_FromLong(PYTHON_API_VERSION)); |
| 2664 | SET_SYS_FROM_STRING("copyright", |
| 2665 | PyUnicode_FromString(Py_GetCopyright())); |
| 2666 | SET_SYS_FROM_STRING("platform", |
| 2667 | PyUnicode_FromString(Py_GetPlatform())); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2668 | SET_SYS_FROM_STRING("maxsize", |
| 2669 | PyLong_FromSsize_t(PY_SSIZE_T_MAX)); |
| 2670 | SET_SYS_FROM_STRING("float_info", |
| 2671 | PyFloat_GetInfo()); |
| 2672 | SET_SYS_FROM_STRING("int_info", |
| 2673 | PyLong_GetInfo()); |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 2674 | /* initialize hash_info */ |
Victor Stinner | 1c8f059 | 2013-07-22 22:24:54 +0200 | [diff] [blame] | 2675 | if (Hash_InfoType.tp_name == NULL) { |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2676 | if (PyStructSequence_InitType2(&Hash_InfoType, &hash_info_desc) < 0) { |
| 2677 | goto type_init_failed; |
| 2678 | } |
Victor Stinner | 1c8f059 | 2013-07-22 22:24:54 +0200 | [diff] [blame] | 2679 | } |
Mark Dickinson | dc787d2 | 2010-05-23 13:33:13 +0000 | [diff] [blame] | 2680 | SET_SYS_FROM_STRING("hash_info", |
| 2681 | get_hash_info()); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2682 | SET_SYS_FROM_STRING("maxunicode", |
Ezio Melotti | 48a2f8f | 2011-09-29 00:18:19 +0300 | [diff] [blame] | 2683 | PyLong_FromLong(0x10FFFF)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2684 | SET_SYS_FROM_STRING("builtin_module_names", |
| 2685 | list_builtin_module_names()); |
Christian Heimes | 743e0cd | 2012-10-17 23:52:17 +0200 | [diff] [blame] | 2686 | #if PY_BIG_ENDIAN |
| 2687 | SET_SYS_FROM_STRING("byteorder", |
| 2688 | PyUnicode_FromString("big")); |
| 2689 | #else |
| 2690 | SET_SYS_FROM_STRING("byteorder", |
| 2691 | PyUnicode_FromString("little")); |
| 2692 | #endif |
Fred Drake | 099325e | 2000-08-14 15:47:03 +0000 | [diff] [blame] | 2693 | |
Guido van Rossum | 8b9ea87 | 1996-08-23 18:14:47 +0000 | [diff] [blame] | 2694 | #ifdef MS_COREDLL |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2695 | SET_SYS_FROM_STRING("dllhandle", |
| 2696 | PyLong_FromVoidPtr(PyWin_DLLhModule)); |
| 2697 | SET_SYS_FROM_STRING("winver", |
| 2698 | PyUnicode_FromString(PyWin_DLLVersionString)); |
Guido van Rossum | c606fe1 | 1996-04-09 02:37:57 +0000 | [diff] [blame] | 2699 | #endif |
Barry Warsaw | 8cf4eae | 2010-10-16 01:04:07 +0000 | [diff] [blame] | 2700 | #ifdef ABIFLAGS |
| 2701 | SET_SYS_FROM_STRING("abiflags", |
| 2702 | PyUnicode_FromString(ABIFLAGS)); |
| 2703 | #endif |
Antoine Pitrou | 9583cac | 2010-10-21 13:42:28 +0000 | [diff] [blame] | 2704 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2705 | /* version_info */ |
Victor Stinner | 1c8f059 | 2013-07-22 22:24:54 +0200 | [diff] [blame] | 2706 | if (VersionInfoType.tp_name == NULL) { |
| 2707 | if (PyStructSequence_InitType2(&VersionInfoType, |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2708 | &version_info_desc) < 0) { |
| 2709 | goto type_init_failed; |
| 2710 | } |
Victor Stinner | 1c8f059 | 2013-07-22 22:24:54 +0200 | [diff] [blame] | 2711 | } |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 2712 | version_info = make_version_info(); |
| 2713 | SET_SYS_FROM_STRING("version_info", version_info); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2714 | /* prevent user from creating new instances */ |
| 2715 | VersionInfoType.tp_init = NULL; |
| 2716 | VersionInfoType.tp_new = NULL; |
Antoine Pitrou | 871dfc4 | 2014-04-28 13:07:06 +0200 | [diff] [blame] | 2717 | res = PyDict_DelItemString(VersionInfoType.tp_dict, "__new__"); |
| 2718 | if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError)) |
| 2719 | PyErr_Clear(); |
Eric Smith | 0e5b562 | 2009-02-06 01:32:42 +0000 | [diff] [blame] | 2720 | |
Barry Warsaw | 409da15 | 2012-06-03 16:18:47 -0400 | [diff] [blame] | 2721 | /* implementation */ |
| 2722 | SET_SYS_FROM_STRING("implementation", make_impl_info(version_info)); |
| 2723 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2724 | /* flags */ |
Victor Stinner | 1c8f059 | 2013-07-22 22:24:54 +0200 | [diff] [blame] | 2725 | if (FlagsType.tp_name == 0) { |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2726 | if (PyStructSequence_InitType2(&FlagsType, &flags_desc) < 0) { |
| 2727 | goto type_init_failed; |
| 2728 | } |
Victor Stinner | 1c8f059 | 2013-07-22 22:24:54 +0200 | [diff] [blame] | 2729 | } |
Victor Stinner | 4312522 | 2019-04-24 18:23:53 +0200 | [diff] [blame] | 2730 | /* Set flags to their default values (updated by _PySys_InitMain()) */ |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 2731 | SET_SYS_FROM_STRING("flags", make_flags(runtime, interp)); |
Eric Smith | f7bb578 | 2010-01-27 00:44:57 +0000 | [diff] [blame] | 2732 | |
| 2733 | #if defined(MS_WINDOWS) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2734 | /* getwindowsversion */ |
| 2735 | if (WindowsVersionType.tp_name == 0) |
Victor Stinner | 1c8f059 | 2013-07-22 22:24:54 +0200 | [diff] [blame] | 2736 | if (PyStructSequence_InitType2(&WindowsVersionType, |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2737 | &windows_version_desc) < 0) { |
| 2738 | goto type_init_failed; |
| 2739 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2740 | /* prevent user from creating new instances */ |
| 2741 | WindowsVersionType.tp_init = NULL; |
| 2742 | WindowsVersionType.tp_new = NULL; |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2743 | assert(!PyErr_Occurred()); |
Antoine Pitrou | 871dfc4 | 2014-04-28 13:07:06 +0200 | [diff] [blame] | 2744 | res = PyDict_DelItemString(WindowsVersionType.tp_dict, "__new__"); |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2745 | if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError)) { |
Antoine Pitrou | 871dfc4 | 2014-04-28 13:07:06 +0200 | [diff] [blame] | 2746 | PyErr_Clear(); |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2747 | } |
Eric Smith | f7bb578 | 2010-01-27 00:44:57 +0000 | [diff] [blame] | 2748 | #endif |
| 2749 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2750 | /* float repr style: 0.03 (short) vs 0.029999999999999999 (legacy) */ |
Mark Dickinson | b08a53a | 2009-04-16 19:52:09 +0000 | [diff] [blame] | 2751 | #ifndef PY_NO_SHORT_FLOAT_REPR |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2752 | SET_SYS_FROM_STRING("float_repr_style", |
| 2753 | PyUnicode_FromString("short")); |
Mark Dickinson | b08a53a | 2009-04-16 19:52:09 +0000 | [diff] [blame] | 2754 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2755 | SET_SYS_FROM_STRING("float_repr_style", |
| 2756 | PyUnicode_FromString("legacy")); |
Mark Dickinson | b08a53a | 2009-04-16 19:52:09 +0000 | [diff] [blame] | 2757 | #endif |
| 2758 | |
Victor Stinner | d5c355c | 2011-04-30 14:53:09 +0200 | [diff] [blame] | 2759 | SET_SYS_FROM_STRING("thread_info", PyThread_GetInfo()); |
Victor Stinner | d5c355c | 2011-04-30 14:53:09 +0200 | [diff] [blame] | 2760 | |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 2761 | /* initialize asyncgen_hooks */ |
| 2762 | if (AsyncGenHooksType.tp_name == NULL) { |
| 2763 | if (PyStructSequence_InitType2( |
| 2764 | &AsyncGenHooksType, &asyncgen_hooks_desc) < 0) { |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2765 | goto type_init_failed; |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 2766 | } |
| 2767 | } |
| 2768 | |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2769 | if (PyErr_Occurred()) { |
| 2770 | goto err_occurred; |
| 2771 | } |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2772 | return _PyStatus_OK(); |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2773 | |
| 2774 | type_init_failed: |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2775 | return _PyStatus_ERR("failed to initialize a type"); |
Victor Stinner | f7e5b56 | 2017-11-15 15:48:08 -0800 | [diff] [blame] | 2776 | |
| 2777 | err_occurred: |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2778 | return _PyStatus_ERR("can't initialize sys module"); |
Guido van Rossum | 5b3138b | 1990-11-18 17:41:40 +0000 | [diff] [blame] | 2779 | } |
| 2780 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2781 | #undef SET_SYS_FROM_STRING |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2782 | |
| 2783 | /* Updating the sys namespace, returning integer error codes */ |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2784 | #define SET_SYS_FROM_STRING_INT_RESULT(key, value) \ |
| 2785 | do { \ |
| 2786 | PyObject *v = (value); \ |
| 2787 | if (v == NULL) \ |
| 2788 | return -1; \ |
| 2789 | res = PyDict_SetItemString(sysdict, key, v); \ |
| 2790 | Py_DECREF(v); \ |
| 2791 | if (res < 0) { \ |
| 2792 | return res; \ |
| 2793 | } \ |
| 2794 | } while (0) |
| 2795 | |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2796 | |
| 2797 | static int |
| 2798 | sys_add_xoption(PyObject *opts, const wchar_t *s) |
| 2799 | { |
| 2800 | PyObject *name, *value; |
| 2801 | |
| 2802 | const wchar_t *name_end = wcschr(s, L'='); |
| 2803 | if (!name_end) { |
| 2804 | name = PyUnicode_FromWideChar(s, -1); |
| 2805 | value = Py_True; |
| 2806 | Py_INCREF(value); |
| 2807 | } |
| 2808 | else { |
| 2809 | name = PyUnicode_FromWideChar(s, name_end - s); |
| 2810 | value = PyUnicode_FromWideChar(name_end + 1, -1); |
| 2811 | } |
| 2812 | if (name == NULL || value == NULL) { |
| 2813 | goto error; |
| 2814 | } |
| 2815 | if (PyDict_SetItem(opts, name, value) < 0) { |
| 2816 | goto error; |
| 2817 | } |
| 2818 | Py_DECREF(name); |
| 2819 | Py_DECREF(value); |
| 2820 | return 0; |
| 2821 | |
| 2822 | error: |
| 2823 | Py_XDECREF(name); |
| 2824 | Py_XDECREF(value); |
| 2825 | return -1; |
| 2826 | } |
| 2827 | |
| 2828 | |
| 2829 | static PyObject* |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2830 | sys_create_xoptions_dict(const PyConfig *config) |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2831 | { |
| 2832 | Py_ssize_t nxoption = config->xoptions.length; |
| 2833 | wchar_t * const * xoptions = config->xoptions.items; |
| 2834 | PyObject *dict = PyDict_New(); |
| 2835 | if (dict == NULL) { |
| 2836 | return NULL; |
| 2837 | } |
| 2838 | |
| 2839 | for (Py_ssize_t i=0; i < nxoption; i++) { |
| 2840 | const wchar_t *option = xoptions[i]; |
| 2841 | if (sys_add_xoption(dict, option) < 0) { |
| 2842 | Py_DECREF(dict); |
| 2843 | return NULL; |
| 2844 | } |
| 2845 | } |
| 2846 | |
| 2847 | return dict; |
| 2848 | } |
| 2849 | |
| 2850 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2851 | int |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 2852 | _PySys_InitMain(_PyRuntimeState *runtime, PyInterpreterState *interp) |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2853 | { |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2854 | PyObject *sysdict = interp->sysdict; |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2855 | const PyConfig *config = &interp->config; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2856 | int res; |
| 2857 | |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2858 | #define COPY_LIST(KEY, VALUE) \ |
Victor Stinner | 37cd982 | 2018-11-16 11:55:35 +0100 | [diff] [blame] | 2859 | do { \ |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2860 | PyObject *list = _PyWideStringList_AsList(&(VALUE)); \ |
Victor Stinner | 37cd982 | 2018-11-16 11:55:35 +0100 | [diff] [blame] | 2861 | if (list == NULL) { \ |
| 2862 | return -1; \ |
| 2863 | } \ |
| 2864 | SET_SYS_FROM_STRING_BORROW(KEY, list); \ |
| 2865 | Py_DECREF(list); \ |
| 2866 | } while (0) |
| 2867 | |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2868 | #define SET_SYS_FROM_WSTR(KEY, VALUE) \ |
| 2869 | do { \ |
| 2870 | PyObject *str = PyUnicode_FromWideChar(VALUE, -1); \ |
| 2871 | if (str == NULL) { \ |
| 2872 | return -1; \ |
| 2873 | } \ |
| 2874 | SET_SYS_FROM_STRING_BORROW(KEY, str); \ |
| 2875 | Py_DECREF(str); \ |
| 2876 | } while (0) |
Victor Stinner | 37cd982 | 2018-11-16 11:55:35 +0100 | [diff] [blame] | 2877 | |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2878 | COPY_LIST("path", config->module_search_paths); |
| 2879 | |
| 2880 | SET_SYS_FROM_WSTR("executable", config->executable); |
| 2881 | SET_SYS_FROM_WSTR("prefix", config->prefix); |
| 2882 | SET_SYS_FROM_WSTR("base_prefix", config->base_prefix); |
| 2883 | SET_SYS_FROM_WSTR("exec_prefix", config->exec_prefix); |
| 2884 | SET_SYS_FROM_WSTR("base_exec_prefix", config->base_exec_prefix); |
Victor Stinner | 41264f1 | 2017-12-15 02:05:29 +0100 | [diff] [blame] | 2885 | |
Carl Meyer | b193fa9 | 2018-06-15 22:40:56 -0600 | [diff] [blame] | 2886 | if (config->pycache_prefix != NULL) { |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2887 | SET_SYS_FROM_WSTR("pycache_prefix", config->pycache_prefix); |
Carl Meyer | b193fa9 | 2018-06-15 22:40:56 -0600 | [diff] [blame] | 2888 | } else { |
| 2889 | PyDict_SetItemString(sysdict, "pycache_prefix", Py_None); |
| 2890 | } |
| 2891 | |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2892 | COPY_LIST("argv", config->argv); |
| 2893 | COPY_LIST("warnoptions", config->warnoptions); |
| 2894 | |
| 2895 | PyObject *xoptions = sys_create_xoptions_dict(config); |
| 2896 | if (xoptions == NULL) { |
| 2897 | return -1; |
Victor Stinner | 41264f1 | 2017-12-15 02:05:29 +0100 | [diff] [blame] | 2898 | } |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2899 | SET_SYS_FROM_STRING_BORROW("_xoptions", xoptions); |
Pablo Galindo | 34ef64f | 2019-03-27 12:43:47 +0000 | [diff] [blame] | 2900 | Py_DECREF(xoptions); |
Victor Stinner | 41264f1 | 2017-12-15 02:05:29 +0100 | [diff] [blame] | 2901 | |
Victor Stinner | 37cd982 | 2018-11-16 11:55:35 +0100 | [diff] [blame] | 2902 | #undef COPY_LIST |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2903 | #undef SET_SYS_FROM_WSTR |
Victor Stinner | 37cd982 | 2018-11-16 11:55:35 +0100 | [diff] [blame] | 2904 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2905 | /* Set flags to their final values */ |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 2906 | SET_SYS_FROM_STRING_INT_RESULT("flags", make_flags(runtime, interp)); |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2907 | /* prevent user from creating new instances */ |
| 2908 | FlagsType.tp_init = NULL; |
| 2909 | FlagsType.tp_new = NULL; |
| 2910 | res = PyDict_DelItemString(FlagsType.tp_dict, "__new__"); |
| 2911 | if (res < 0) { |
| 2912 | if (!PyErr_ExceptionMatches(PyExc_KeyError)) { |
| 2913 | return res; |
| 2914 | } |
| 2915 | PyErr_Clear(); |
| 2916 | } |
| 2917 | |
| 2918 | SET_SYS_FROM_STRING_INT_RESULT("dont_write_bytecode", |
Victor Stinner | 8b9dbc0 | 2019-03-27 01:36:16 +0100 | [diff] [blame] | 2919 | PyBool_FromLong(!config->write_bytecode)); |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2920 | |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 2921 | if (get_warnoptions() == NULL) |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 2922 | return -1; |
Victor Stinner | 865de27 | 2017-06-08 13:27:47 +0200 | [diff] [blame] | 2923 | |
Eric Snow | dae0276 | 2017-09-14 00:35:58 -0700 | [diff] [blame] | 2924 | if (get_xoptions() == NULL) |
Eric Snow | 2ebc5ce | 2017-09-07 23:51:28 -0600 | [diff] [blame] | 2925 | return -1; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2926 | |
Nick Coghlan | bc77eff | 2018-03-25 20:44:30 +1000 | [diff] [blame] | 2927 | /* Transfer any sys.warnoptions and sys._xoptions set directly |
| 2928 | * by an embedding application from the linked list to the module. */ |
| 2929 | if (_PySys_ReadPreInitOptions() != 0) |
| 2930 | return -1; |
| 2931 | |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2932 | if (PyErr_Occurred()) |
| 2933 | return -1; |
| 2934 | return 0; |
Victor Stinner | 41264f1 | 2017-12-15 02:05:29 +0100 | [diff] [blame] | 2935 | |
| 2936 | err_occurred: |
| 2937 | return -1; |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2938 | } |
| 2939 | |
Victor Stinner | 41264f1 | 2017-12-15 02:05:29 +0100 | [diff] [blame] | 2940 | #undef SET_SYS_FROM_STRING_BORROW |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2941 | #undef SET_SYS_FROM_STRING_INT_RESULT |
Eric Snow | 6b4be19 | 2017-05-22 21:36:03 -0700 | [diff] [blame] | 2942 | |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2943 | |
| 2944 | /* Set up a preliminary stderr printer until we have enough |
| 2945 | infrastructure for the io module in place. |
| 2946 | |
| 2947 | Use UTF-8/surrogateescape and ignore EAGAIN errors. */ |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2948 | PyStatus |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2949 | _PySys_SetPreliminaryStderr(PyObject *sysdict) |
| 2950 | { |
| 2951 | PyObject *pstderr = PyFile_NewStdPrinter(fileno(stderr)); |
| 2952 | if (pstderr == NULL) { |
| 2953 | goto error; |
| 2954 | } |
| 2955 | if (_PyDict_SetItemId(sysdict, &PyId_stderr, pstderr) < 0) { |
| 2956 | goto error; |
| 2957 | } |
| 2958 | if (PyDict_SetItemString(sysdict, "__stderr__", pstderr) < 0) { |
| 2959 | goto error; |
| 2960 | } |
| 2961 | Py_DECREF(pstderr); |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2962 | return _PyStatus_OK(); |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2963 | |
| 2964 | error: |
| 2965 | Py_XDECREF(pstderr); |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2966 | return _PyStatus_ERR("can't set preliminary stderr"); |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2967 | } |
| 2968 | |
| 2969 | |
| 2970 | /* Create sys module without all attributes: _PySys_InitMain() should be called |
| 2971 | later to add remaining attributes. */ |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2972 | PyStatus |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 2973 | _PySys_Create(_PyRuntimeState *runtime, PyInterpreterState *interp, |
| 2974 | PyObject **sysmod_p) |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2975 | { |
| 2976 | PyObject *modules = PyDict_New(); |
| 2977 | if (modules == NULL) { |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2978 | return _PyStatus_ERR("can't make modules dictionary"); |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2979 | } |
| 2980 | interp->modules = modules; |
| 2981 | |
| 2982 | PyObject *sysmod = _PyModule_CreateInitialized(&sysmodule, PYTHON_API_VERSION); |
| 2983 | if (sysmod == NULL) { |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2984 | return _PyStatus_ERR("failed to create a module object"); |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2985 | } |
| 2986 | |
| 2987 | PyObject *sysdict = PyModule_GetDict(sysmod); |
| 2988 | if (sysdict == NULL) { |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2989 | return _PyStatus_ERR("can't initialize sys dict"); |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2990 | } |
| 2991 | Py_INCREF(sysdict); |
| 2992 | interp->sysdict = sysdict; |
| 2993 | |
| 2994 | if (PyDict_SetItemString(sysdict, "modules", interp->modules) < 0) { |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2995 | return _PyStatus_ERR("can't initialize sys module"); |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 2996 | } |
| 2997 | |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 2998 | PyStatus status = _PySys_SetPreliminaryStderr(sysdict); |
| 2999 | if (_PyStatus_EXCEPTION(status)) { |
| 3000 | return status; |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 3001 | } |
| 3002 | |
Victor Stinner | 0fd2c30 | 2019-06-04 03:15:09 +0200 | [diff] [blame] | 3003 | status = _PySys_InitCore(runtime, interp, sysdict); |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 3004 | if (_PyStatus_EXCEPTION(status)) { |
| 3005 | return status; |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 3006 | } |
| 3007 | |
| 3008 | _PyImport_FixupBuiltin(sysmod, "sys", interp->modules); |
| 3009 | |
| 3010 | *sysmod_p = sysmod; |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 3011 | return _PyStatus_OK(); |
Victor Stinner | ab67281 | 2019-01-23 15:04:40 +0100 | [diff] [blame] | 3012 | } |
| 3013 | |
| 3014 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 3015 | static PyObject * |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 3016 | makepathobject(const wchar_t *path, wchar_t delim) |
Guido van Rossum | 5b3138b | 1990-11-18 17:41:40 +0000 | [diff] [blame] | 3017 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3018 | int i, n; |
| 3019 | const wchar_t *p; |
| 3020 | PyObject *v, *w; |
Tim Peters | 216b78b | 2006-01-06 02:40:53 +0000 | [diff] [blame] | 3021 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3022 | n = 1; |
| 3023 | p = path; |
| 3024 | while ((p = wcschr(p, delim)) != NULL) { |
| 3025 | n++; |
| 3026 | p++; |
| 3027 | } |
| 3028 | v = PyList_New(n); |
| 3029 | if (v == NULL) |
| 3030 | return NULL; |
| 3031 | for (i = 0; ; i++) { |
| 3032 | p = wcschr(path, delim); |
| 3033 | if (p == NULL) |
| 3034 | p = path + wcslen(path); /* End of string */ |
| 3035 | w = PyUnicode_FromWideChar(path, (Py_ssize_t)(p - path)); |
| 3036 | if (w == NULL) { |
| 3037 | Py_DECREF(v); |
| 3038 | return NULL; |
| 3039 | } |
Zackery Spytz | 99d56b5 | 2018-12-08 07:16:55 -0700 | [diff] [blame] | 3040 | PyList_SET_ITEM(v, i, w); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3041 | if (*p == '\0') |
| 3042 | break; |
| 3043 | path = p+1; |
| 3044 | } |
| 3045 | return v; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3046 | } |
| 3047 | |
| 3048 | void |
Martin v. Löwis | 790465f | 2008-04-05 20:41:37 +0000 | [diff] [blame] | 3049 | PySys_SetPath(const wchar_t *path) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3050 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3051 | PyObject *v; |
| 3052 | if ((v = makepathobject(path, DELIM)) == NULL) |
| 3053 | Py_FatalError("can't create sys.path"); |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 3054 | if (_PySys_SetObjectId(&PyId_path, v) != 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3055 | Py_FatalError("can't assign sys.path"); |
| 3056 | Py_DECREF(v); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 3057 | } |
| 3058 | |
Guido van Rossum | 65bf9f2 | 1997-04-29 18:33:38 +0000 | [diff] [blame] | 3059 | static PyObject * |
Victor Stinner | 74f6568 | 2019-03-15 15:08:05 +0100 | [diff] [blame] | 3060 | make_sys_argv(int argc, wchar_t * const * argv) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 3061 | { |
Victor Stinner | 74f6568 | 2019-03-15 15:08:05 +0100 | [diff] [blame] | 3062 | PyObject *list = PyList_New(argc); |
| 3063 | if (list == NULL) { |
| 3064 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3065 | } |
Victor Stinner | 74f6568 | 2019-03-15 15:08:05 +0100 | [diff] [blame] | 3066 | |
| 3067 | for (Py_ssize_t i = 0; i < argc; i++) { |
| 3068 | PyObject *v = PyUnicode_FromWideChar(argv[i], -1); |
| 3069 | if (v == NULL) { |
| 3070 | Py_DECREF(list); |
| 3071 | return NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3072 | } |
Victor Stinner | 74f6568 | 2019-03-15 15:08:05 +0100 | [diff] [blame] | 3073 | PyList_SET_ITEM(list, i, v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3074 | } |
Victor Stinner | 74f6568 | 2019-03-15 15:08:05 +0100 | [diff] [blame] | 3075 | return list; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 3076 | } |
| 3077 | |
Victor Stinner | 11a247d | 2017-12-13 21:05:57 +0100 | [diff] [blame] | 3078 | void |
| 3079 | PySys_SetArgvEx(int argc, wchar_t **argv, int updatepath) |
Victor Stinner | d5dda98 | 2017-12-13 17:31:16 +0100 | [diff] [blame] | 3080 | { |
Victor Stinner | 74f6568 | 2019-03-15 15:08:05 +0100 | [diff] [blame] | 3081 | if (argc < 1 || argv == NULL) { |
| 3082 | /* Ensure at least one (empty) argument is seen */ |
| 3083 | wchar_t* empty_argv[1] = {L""}; |
| 3084 | argv = empty_argv; |
| 3085 | argc = 1; |
| 3086 | } |
| 3087 | |
| 3088 | PyObject *av = make_sys_argv(argc, argv); |
Victor Stinner | d5dda98 | 2017-12-13 17:31:16 +0100 | [diff] [blame] | 3089 | if (av == NULL) { |
Victor Stinner | 11a247d | 2017-12-13 21:05:57 +0100 | [diff] [blame] | 3090 | Py_FatalError("no mem for sys.argv"); |
Victor Stinner | d5dda98 | 2017-12-13 17:31:16 +0100 | [diff] [blame] | 3091 | } |
| 3092 | if (PySys_SetObject("argv", av) != 0) { |
| 3093 | Py_DECREF(av); |
Victor Stinner | 11a247d | 2017-12-13 21:05:57 +0100 | [diff] [blame] | 3094 | Py_FatalError("can't assign sys.argv"); |
Victor Stinner | d5dda98 | 2017-12-13 17:31:16 +0100 | [diff] [blame] | 3095 | } |
| 3096 | Py_DECREF(av); |
| 3097 | |
| 3098 | if (updatepath) { |
| 3099 | /* If argv[0] is not '-c' nor '-m', prepend argv[0] to sys.path. |
| 3100 | If argv[0] is a symlink, use the real path. */ |
Victor Stinner | 331a6a5 | 2019-05-27 16:39:22 +0200 | [diff] [blame] | 3101 | const PyWideStringList argv_list = {.length = argc, .items = argv}; |
Victor Stinner | dcf6171 | 2019-03-19 16:09:27 +0100 | [diff] [blame] | 3102 | PyObject *path0 = NULL; |
| 3103 | if (_PyPathConfig_ComputeSysPath0(&argv_list, &path0)) { |
| 3104 | if (path0 == NULL) { |
| 3105 | Py_FatalError("can't compute path0 from argv"); |
Victor Stinner | 11a247d | 2017-12-13 21:05:57 +0100 | [diff] [blame] | 3106 | } |
Victor Stinner | dcf6171 | 2019-03-19 16:09:27 +0100 | [diff] [blame] | 3107 | |
| 3108 | PyObject *sys_path = _PySys_GetObjectId(&PyId_path); |
| 3109 | if (sys_path != NULL) { |
| 3110 | if (PyList_Insert(sys_path, 0, path0) < 0) { |
| 3111 | Py_DECREF(path0); |
| 3112 | Py_FatalError("can't prepend path0 to sys.path"); |
| 3113 | } |
| 3114 | } |
| 3115 | Py_DECREF(path0); |
Victor Stinner | 11a247d | 2017-12-13 21:05:57 +0100 | [diff] [blame] | 3116 | } |
Victor Stinner | d5dda98 | 2017-12-13 17:31:16 +0100 | [diff] [blame] | 3117 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3118 | } |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3119 | |
Antoine Pitrou | f978fac | 2010-05-21 17:25:34 +0000 | [diff] [blame] | 3120 | void |
| 3121 | PySys_SetArgv(int argc, wchar_t **argv) |
| 3122 | { |
Christian Heimes | ad73a9c | 2013-08-10 16:36:18 +0200 | [diff] [blame] | 3123 | PySys_SetArgvEx(argc, argv, Py_IsolatedFlag == 0); |
Antoine Pitrou | f978fac | 2010-05-21 17:25:34 +0000 | [diff] [blame] | 3124 | } |
| 3125 | |
Victor Stinner | 14284c2 | 2010-04-23 12:02:30 +0000 | [diff] [blame] | 3126 | /* Reimplementation of PyFile_WriteString() no calling indirectly |
| 3127 | PyErr_CheckSignals(): avoid the call to PyObject_Str(). */ |
| 3128 | |
| 3129 | static int |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3130 | sys_pyfile_write_unicode(PyObject *unicode, PyObject *file) |
Victor Stinner | 14284c2 | 2010-04-23 12:02:30 +0000 | [diff] [blame] | 3131 | { |
Victor Stinner | c3ccaae | 2016-08-20 01:24:22 +0200 | [diff] [blame] | 3132 | PyObject *writer = NULL, *result = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3133 | int err; |
Victor Stinner | 14284c2 | 2010-04-23 12:02:30 +0000 | [diff] [blame] | 3134 | |
Victor Stinner | ecccc4f | 2010-06-08 20:46:00 +0000 | [diff] [blame] | 3135 | if (file == NULL) |
| 3136 | return -1; |
| 3137 | |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 3138 | writer = _PyObject_GetAttrId(file, &PyId_write); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3139 | if (writer == NULL) |
| 3140 | goto error; |
Victor Stinner | 14284c2 | 2010-04-23 12:02:30 +0000 | [diff] [blame] | 3141 | |
Victor Stinner | 7bfb42d | 2016-12-05 17:04:32 +0100 | [diff] [blame] | 3142 | result = PyObject_CallFunctionObjArgs(writer, unicode, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3143 | if (result == NULL) { |
| 3144 | goto error; |
| 3145 | } else { |
| 3146 | err = 0; |
| 3147 | goto finally; |
| 3148 | } |
Victor Stinner | 14284c2 | 2010-04-23 12:02:30 +0000 | [diff] [blame] | 3149 | |
| 3150 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3151 | err = -1; |
Victor Stinner | 14284c2 | 2010-04-23 12:02:30 +0000 | [diff] [blame] | 3152 | finally: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3153 | Py_XDECREF(writer); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3154 | Py_XDECREF(result); |
| 3155 | return err; |
Victor Stinner | 14284c2 | 2010-04-23 12:02:30 +0000 | [diff] [blame] | 3156 | } |
| 3157 | |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3158 | static int |
| 3159 | sys_pyfile_write(const char *text, PyObject *file) |
| 3160 | { |
| 3161 | PyObject *unicode = NULL; |
| 3162 | int err; |
| 3163 | |
| 3164 | if (file == NULL) |
| 3165 | return -1; |
| 3166 | |
| 3167 | unicode = PyUnicode_FromString(text); |
| 3168 | if (unicode == NULL) |
| 3169 | return -1; |
| 3170 | |
| 3171 | err = sys_pyfile_write_unicode(unicode, file); |
| 3172 | Py_DECREF(unicode); |
| 3173 | return err; |
| 3174 | } |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3175 | |
| 3176 | /* APIs to write to sys.stdout or sys.stderr using a printf-like interface. |
| 3177 | Adapted from code submitted by Just van Rossum. |
| 3178 | |
| 3179 | PySys_WriteStdout(format, ...) |
| 3180 | PySys_WriteStderr(format, ...) |
| 3181 | |
| 3182 | The first function writes to sys.stdout; the second to sys.stderr. When |
| 3183 | there is a problem, they write to the real (C level) stdout or stderr; |
Guido van Rossum | 8442af3 | 1998-10-12 18:22:10 +0000 | [diff] [blame] | 3184 | no exceptions are raised. |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3185 | |
Victor Stinner | 14284c2 | 2010-04-23 12:02:30 +0000 | [diff] [blame] | 3186 | PyErr_CheckSignals() is not called to avoid the execution of the Python |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3187 | signal handlers: they may raise a new exception whereas sys_write() |
| 3188 | ignores all exceptions. |
Victor Stinner | 14284c2 | 2010-04-23 12:02:30 +0000 | [diff] [blame] | 3189 | |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3190 | Both take a printf-style format string as their first argument followed |
| 3191 | by a variable length argument list determined by the format string. |
| 3192 | |
| 3193 | *** WARNING *** |
| 3194 | |
| 3195 | The format should limit the total size of the formatted output string to |
| 3196 | 1000 bytes. In particular, this means that no unrestricted "%s" formats |
| 3197 | should occur; these should be limited using "%.<N>s where <N> is a |
| 3198 | decimal number calculated so that <N> plus the maximum size of other |
| 3199 | formatted text does not exceed 1000 bytes. Also watch out for "%f", |
| 3200 | which can print hundreds of digits for very large numbers. |
| 3201 | |
| 3202 | */ |
| 3203 | |
| 3204 | static void |
Victor Stinner | 0905437 | 2013-11-06 22:41:44 +0100 | [diff] [blame] | 3205 | sys_write(_Py_Identifier *key, FILE *fp, const char *format, va_list va) |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3206 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3207 | PyObject *file; |
| 3208 | PyObject *error_type, *error_value, *error_traceback; |
| 3209 | char buffer[1001]; |
| 3210 | int written; |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3211 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3212 | PyErr_Fetch(&error_type, &error_value, &error_traceback); |
Victor Stinner | 0905437 | 2013-11-06 22:41:44 +0100 | [diff] [blame] | 3213 | file = _PySys_GetObjectId(key); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3214 | written = PyOS_vsnprintf(buffer, sizeof(buffer), format, va); |
| 3215 | if (sys_pyfile_write(buffer, file) != 0) { |
| 3216 | PyErr_Clear(); |
| 3217 | fputs(buffer, fp); |
| 3218 | } |
| 3219 | if (written < 0 || (size_t)written >= sizeof(buffer)) { |
| 3220 | const char *truncated = "... truncated"; |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3221 | if (sys_pyfile_write(truncated, file) != 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3222 | fputs(truncated, fp); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3223 | } |
| 3224 | PyErr_Restore(error_type, error_value, error_traceback); |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3225 | } |
| 3226 | |
| 3227 | void |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3228 | PySys_WriteStdout(const char *format, ...) |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3229 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3230 | va_list va; |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3231 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3232 | va_start(va, format); |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 3233 | sys_write(&PyId_stdout, stdout, format, va); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3234 | va_end(va); |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3235 | } |
| 3236 | |
| 3237 | void |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3238 | PySys_WriteStderr(const char *format, ...) |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3239 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3240 | va_list va; |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3241 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3242 | va_start(va, format); |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 3243 | sys_write(&PyId_stderr, stderr, format, va); |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3244 | va_end(va); |
| 3245 | } |
| 3246 | |
| 3247 | static void |
Victor Stinner | 0905437 | 2013-11-06 22:41:44 +0100 | [diff] [blame] | 3248 | sys_format(_Py_Identifier *key, FILE *fp, const char *format, va_list va) |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3249 | { |
| 3250 | PyObject *file, *message; |
| 3251 | PyObject *error_type, *error_value, *error_traceback; |
Serhiy Storchaka | 85b0f5b | 2016-11-20 10:16:47 +0200 | [diff] [blame] | 3252 | const char *utf8; |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3253 | |
| 3254 | PyErr_Fetch(&error_type, &error_value, &error_traceback); |
Victor Stinner | 0905437 | 2013-11-06 22:41:44 +0100 | [diff] [blame] | 3255 | file = _PySys_GetObjectId(key); |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3256 | message = PyUnicode_FromFormatV(format, va); |
| 3257 | if (message != NULL) { |
| 3258 | if (sys_pyfile_write_unicode(message, file) != 0) { |
| 3259 | PyErr_Clear(); |
Serhiy Storchaka | 0651583 | 2016-11-20 09:13:07 +0200 | [diff] [blame] | 3260 | utf8 = PyUnicode_AsUTF8(message); |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3261 | if (utf8 != NULL) |
| 3262 | fputs(utf8, fp); |
| 3263 | } |
| 3264 | Py_DECREF(message); |
| 3265 | } |
| 3266 | PyErr_Restore(error_type, error_value, error_traceback); |
| 3267 | } |
| 3268 | |
| 3269 | void |
| 3270 | PySys_FormatStdout(const char *format, ...) |
| 3271 | { |
| 3272 | va_list va; |
| 3273 | |
| 3274 | va_start(va, format); |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 3275 | sys_format(&PyId_stdout, stdout, format, va); |
Victor Stinner | 7976663 | 2010-08-16 17:36:42 +0000 | [diff] [blame] | 3276 | va_end(va); |
| 3277 | } |
| 3278 | |
| 3279 | void |
| 3280 | PySys_FormatStderr(const char *format, ...) |
| 3281 | { |
| 3282 | va_list va; |
| 3283 | |
| 3284 | va_start(va, format); |
Victor Stinner | bd303c1 | 2013-11-07 23:07:29 +0100 | [diff] [blame] | 3285 | sys_format(&PyId_stderr, stderr, format, va); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3286 | va_end(va); |
Guido van Rossum | a890e68 | 1998-05-12 14:59:24 +0000 | [diff] [blame] | 3287 | } |