| 
									
										
										
										
											1993-12-24 10:36:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-12 09:34:35 +02:00
										 |  |  | /* Readline interface for the tokenizer and [raw_]input() in bltinmodule.c.
 | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  |    By default, or when stdin is not a tty device, we have a super | 
					
						
							|  |  |  |    simple my_readline function using fgets. | 
					
						
							|  |  |  |    Optionally, we can use the GNU readline library. | 
					
						
							| 
									
										
										
										
											1993-12-24 10:36:57 +00:00
										 |  |  |    my_readline() has a different return value from GNU readline(): | 
					
						
							|  |  |  |    - NULL if an interrupt occurred or if an error occurred | 
					
						
							|  |  |  |    - a malloc'ed empty string if EOF was read | 
					
						
							|  |  |  |    - a malloc'ed string ending in \n normally | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-08-27 19:43:43 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											2021-10-13 15:03:35 +02:00
										 |  |  | #include "pycore_fileutils.h"     // _Py_BEGIN_SUPPRESS_IPH
 | 
					
						
							| 
									
										
										
										
											2020-04-14 17:52:15 +02:00
										 |  |  | #include "pycore_pystate.h"   // _PyThreadState_GET()
 | 
					
						
							| 
									
										
										
										
											2002-07-14 23:12:29 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2023-03-09 22:09:12 +01:00
										 |  |  | #  ifndef WIN32_LEAN_AND_MEAN
 | 
					
						
							| 
									
										
										
										
											2023-09-30 22:06:45 +02:00
										 |  |  | #    define WIN32_LEAN_AND_MEAN
 | 
					
						
							| 
									
										
										
										
											2023-03-09 22:09:12 +01:00
										 |  |  | #  endif
 | 
					
						
							| 
									
										
										
										
											2020-04-14 17:52:15 +02:00
										 |  |  | #  include "windows.h"
 | 
					
						
							| 
									
										
										
										
											2002-07-14 23:12:29 +00:00
										 |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											1993-12-24 10:36:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-30 22:06:45 +02:00
										 |  |  | #ifdef HAVE_UNISTD_H
 | 
					
						
							|  |  |  | #  include <unistd.h>             // isatty()
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-22 16:45:56 +02:00
										 |  |  | // Export the symbol since it's used by the readline shared extension
 | 
					
						
							|  |  |  | PyAPI_DATA(PyThreadState*) _PyOS_ReadlineTState; | 
					
						
							|  |  |  | PyThreadState *_PyOS_ReadlineTState = NULL; | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-06 15:07:08 -04:00
										 |  |  | static PyMutex _PyOS_ReadlineLock; | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-22 19:20:54 +00:00
										 |  |  | int (*PyOS_InputHook)(void) = NULL; | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* This function restarts a fgets() after an EINTR error occurred
 | 
					
						
							| 
									
										
										
										
											2020-06-03 14:39:59 +02:00
										 |  |  |    except if _PyOS_InterruptOccurred() returns true. */ | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  | my_fgets(PyThreadState* tstate, char *buf, int len, FILE *fp) | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2020-06-03 14:39:59 +02:00
										 |  |  |     HANDLE handle; | 
					
						
							|  |  |  |     _Py_BEGIN_SUPPRESS_IPH | 
					
						
							|  |  |  |     handle = (HANDLE)_get_osfhandle(fileno(fp)); | 
					
						
							|  |  |  |     _Py_END_SUPPRESS_IPH | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* bpo-40826: fgets(fp) does crash if fileno(fp) is closed */ | 
					
						
							|  |  |  |     if (handle == INVALID_HANDLE_VALUE) { | 
					
						
							|  |  |  |         return -1; /* EOF */ | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-06-03 14:39:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-09 15:55:44 +02:00
										 |  |  |     while (1) { | 
					
						
							| 
									
										
										
										
											2023-05-22 12:34:34 -07:00
										 |  |  |         if (PyOS_InputHook != NULL && | 
					
						
							|  |  |  |             // GH-104668: See PyOS_ReadlineFunctionPointer's comment below...
 | 
					
						
							|  |  |  |             _Py_IsMainInterpreter(tstate->interp)) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             (void)(PyOS_InputHook)(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |         errno = 0; | 
					
						
							| 
									
										
										
										
											2011-05-30 23:46:00 +02:00
										 |  |  |         clearerr(fp); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         char *p = fgets(buf, len, fp); | 
					
						
							|  |  |  |         if (p != NULL) { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             return 0; /* No error */ | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         int err = errno; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-14 23:12:29 +00:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  |         /* Ctrl-C anywhere on the line or Ctrl-Z if the only character
 | 
					
						
							|  |  |  |            on a line will set ERROR_OPERATION_ABORTED. Under normal | 
					
						
							|  |  |  |            circumstances Ctrl-C will also have caused the SIGINT handler | 
					
						
							|  |  |  |            to fire which will have set the event object returned by | 
					
						
							|  |  |  |            _PyOS_SigintEvent. This signal fires in another thread and | 
					
						
							|  |  |  |            is not guaranteed to have occurred before this point in the | 
					
						
							|  |  |  |            code. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            Therefore: check whether the event is set with a small timeout. | 
					
						
							|  |  |  |            If it is, assume this is a Ctrl-C and reset the event. If it | 
					
						
							|  |  |  |            isn't set assume that this is a Ctrl-Z on its own and drop | 
					
						
							|  |  |  |            through to check for EOF. | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         */ | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |         if (GetLastError()==ERROR_OPERATION_ABORTED) { | 
					
						
							| 
									
										
										
										
											2020-06-03 14:39:59 +02:00
										 |  |  |             HANDLE hInterruptEvent = _PyOS_SigintEvent(); | 
					
						
							| 
									
										
										
										
											2013-01-25 14:25:48 +01:00
										 |  |  |             switch (WaitForSingleObjectEx(hInterruptEvent, 10, FALSE)) { | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  |             case WAIT_OBJECT_0: | 
					
						
							|  |  |  |                 ResetEvent(hInterruptEvent); | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |                 return 1; /* Interrupt */ | 
					
						
							| 
									
										
										
										
											2012-06-29 18:39:26 +01:00
										 |  |  |             case WAIT_FAILED: | 
					
						
							|  |  |  |                 return -2; /* Error */ | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2002-07-14 23:12:29 +00:00
										 |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |         if (feof(fp)) { | 
					
						
							| 
									
										
										
										
											2011-05-10 00:19:53 +02:00
										 |  |  |             clearerr(fp); | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             return -1; /* EOF */ | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | #ifdef EINTR
 | 
					
						
							| 
									
										
										
										
											2011-12-16 12:28:32 +01:00
										 |  |  |         if (err == EINTR) { | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             PyEval_RestoreThread(tstate); | 
					
						
							|  |  |  |             int s = PyErr_CheckSignals(); | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (s < 0) { | 
					
						
							|  |  |  |                 return 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             /* try again */ | 
					
						
							| 
									
										
										
										
											2011-04-09 15:55:44 +02:00
										 |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-03 14:39:59 +02:00
										 |  |  |         if (_PyOS_InterruptOccurred(tstate)) { | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |             return 1; /* Interrupt */ | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return -2; /* Error */ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 16:14:21 +00:00
										 |  |  |     /* NOTREACHED */ | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-09 22:09:12 +01:00
										 |  |  | #ifdef HAVE_WINDOWS_CONSOLE_IO
 | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  | /* Readline implementation using ReadConsoleW */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern char _get_console_type(HANDLE handle); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  | _PyOS_WindowsConsoleReadline(PyThreadState *tstate, HANDLE hStdIn) | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     static wchar_t wbuf_local[1024 * 16]; | 
					
						
							|  |  |  |     const DWORD chunk_size = 1024; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DWORD n_read, total_read, wbuflen, u8len; | 
					
						
							|  |  |  |     wchar_t *wbuf; | 
					
						
							|  |  |  |     char *buf = NULL; | 
					
						
							|  |  |  |     int err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 15:34:03 -07:00
										 |  |  |     n_read = (DWORD)-1; | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |     total_read = 0; | 
					
						
							|  |  |  |     wbuf = wbuf_local; | 
					
						
							|  |  |  |     wbuflen = sizeof(wbuf_local) / sizeof(wbuf_local[0]) - 1; | 
					
						
							|  |  |  |     while (1) { | 
					
						
							| 
									
										
										
										
											2023-05-22 12:34:34 -07:00
										 |  |  |         if (PyOS_InputHook != NULL && | 
					
						
							|  |  |  |             // GH-104668: See PyOS_ReadlineFunctionPointer's comment below...
 | 
					
						
							|  |  |  |             _Py_IsMainInterpreter(tstate->interp)) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2018-06-28 12:29:44 -04:00
										 |  |  |             (void)(PyOS_InputHook)(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |         if (!ReadConsoleW(hStdIn, &wbuf[total_read], wbuflen - total_read, &n_read, NULL)) { | 
					
						
							|  |  |  |             err = GetLastError(); | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-07-19 15:34:03 -07:00
										 |  |  |         if (n_read == (DWORD)-1 && (err = GetLastError()) == ERROR_OPERATION_ABORTED) { | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |         if (n_read == 0) { | 
					
						
							|  |  |  |             int s; | 
					
						
							|  |  |  |             err = GetLastError(); | 
					
						
							|  |  |  |             if (err != ERROR_OPERATION_ABORTED) | 
					
						
							|  |  |  |                 goto exit; | 
					
						
							|  |  |  |             err = 0; | 
					
						
							|  |  |  |             HANDLE hInterruptEvent = _PyOS_SigintEvent(); | 
					
						
							|  |  |  |             if (WaitForSingleObjectEx(hInterruptEvent, 100, FALSE) | 
					
						
							|  |  |  |                     == WAIT_OBJECT_0) { | 
					
						
							|  |  |  |                 ResetEvent(hInterruptEvent); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |                 PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |                 s = PyErr_CheckSignals(); | 
					
						
							|  |  |  |                 PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |                 if (s < 0) { | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |                     goto exit; | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |             } | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         total_read += n_read; | 
					
						
							|  |  |  |         if (total_read == 0 || wbuf[total_read - 1] == L'\n') { | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         wbuflen += chunk_size; | 
					
						
							|  |  |  |         if (wbuf == wbuf_local) { | 
					
						
							|  |  |  |             wbuf[total_read] = '\0'; | 
					
						
							|  |  |  |             wbuf = (wchar_t*)PyMem_RawMalloc(wbuflen * sizeof(wchar_t)); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             if (wbuf) { | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |                 wcscpy_s(wbuf, wbuflen, wbuf_local); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |             else { | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |                 PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |                 PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |                 PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |                 goto exit; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							|  |  |  |             wchar_t *tmp = PyMem_RawRealloc(wbuf, wbuflen * sizeof(wchar_t)); | 
					
						
							|  |  |  |             if (tmp == NULL) { | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |                 PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |                 PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |                 PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |                 goto exit; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             wbuf = tmp; | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (wbuf[0] == '\x1a') { | 
					
						
							|  |  |  |         buf = PyMem_RawMalloc(1); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         if (buf) { | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |             buf[0] = '\0'; | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |         else { | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |             PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |     u8len = WideCharToMultiByte(CP_UTF8, 0, | 
					
						
							|  |  |  |                                 wbuf, total_read, | 
					
						
							|  |  |  |                                 NULL, 0, | 
					
						
							|  |  |  |                                 NULL, NULL); | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |     buf = PyMem_RawMalloc(u8len + 1); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |     if (buf == NULL) { | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |         PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     u8len = WideCharToMultiByte(CP_UTF8, 0, | 
					
						
							|  |  |  |                                 wbuf, total_read, | 
					
						
							|  |  |  |                                 buf, u8len, | 
					
						
							|  |  |  |                                 NULL, NULL); | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |     buf[u8len] = '\0'; | 
					
						
							| 
									
										
										
										
											2016-09-19 22:17:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  | exit: | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |     if (wbuf != wbuf_local) { | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |         PyMem_RawFree(wbuf); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (err) { | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |         PyErr_SetFromWindowsErr(err); | 
					
						
							|  |  |  |         PyEval_SaveThread(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return buf; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-09 22:09:12 +01:00
										 |  |  | #endif /* HAVE_WINDOWS_CONSOLE_IO */
 | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Readline implementation using fgets() */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											2013-10-19 21:03:34 +03:00
										 |  |  | PyOS_StdioReadline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt) | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     size_t n; | 
					
						
							| 
									
										
										
										
											2013-08-06 15:59:16 +02:00
										 |  |  |     char *p, *pr; | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |     PyThreadState *tstate = _PyOS_ReadlineTState; | 
					
						
							|  |  |  |     assert(tstate != NULL); | 
					
						
							| 
									
										
										
										
											2013-10-10 16:18:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-09 22:09:12 +01:00
										 |  |  | #ifdef HAVE_WINDOWS_CONSOLE_IO
 | 
					
						
							| 
									
										
										
										
											2022-06-20 16:10:47 +02:00
										 |  |  |     const PyConfig *config = _PyInterpreterState_GetConfig(tstate->interp); | 
					
						
							|  |  |  |     if (!config->legacy_windows_stdio && sys_stdin == stdin) { | 
					
						
							| 
									
										
										
										
											2016-10-08 12:18:16 -07:00
										 |  |  |         HANDLE hStdIn, hStdErr; | 
					
						
							| 
									
										
										
										
											2016-09-19 22:17:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-24 01:00:27 +03:00
										 |  |  |         hStdIn = _Py_get_osfhandle_noraise(fileno(sys_stdin)); | 
					
						
							|  |  |  |         hStdErr = _Py_get_osfhandle_noraise(fileno(stderr)); | 
					
						
							| 
									
										
										
										
											2016-09-19 22:17:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |         if (_get_console_type(hStdIn) == 'r') { | 
					
						
							|  |  |  |             fflush(sys_stdout); | 
					
						
							| 
									
										
										
										
											2016-10-08 12:18:16 -07:00
										 |  |  |             if (prompt) { | 
					
						
							|  |  |  |                 if (_get_console_type(hStdErr) == 'w') { | 
					
						
							|  |  |  |                     wchar_t *wbuf; | 
					
						
							|  |  |  |                     int wlen; | 
					
						
							|  |  |  |                     wlen = MultiByteToWideChar(CP_UTF8, 0, prompt, -1, | 
					
						
							|  |  |  |                             NULL, 0); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |                     if (wlen) { | 
					
						
							|  |  |  |                         wbuf = PyMem_RawMalloc(wlen * sizeof(wchar_t)); | 
					
						
							|  |  |  |                         if (wbuf == NULL) { | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |                             PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |                             PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |                             PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |                             return NULL; | 
					
						
							|  |  |  |                         } | 
					
						
							| 
									
										
										
										
											2016-10-08 12:18:16 -07:00
										 |  |  |                         wlen = MultiByteToWideChar(CP_UTF8, 0, prompt, -1, | 
					
						
							|  |  |  |                                 wbuf, wlen); | 
					
						
							|  |  |  |                         if (wlen) { | 
					
						
							|  |  |  |                             DWORD n; | 
					
						
							|  |  |  |                             fflush(stderr); | 
					
						
							| 
									
										
										
										
											2016-10-25 11:51:54 -07:00
										 |  |  |                             /* wlen includes null terminator, so subtract 1 */ | 
					
						
							|  |  |  |                             WriteConsoleW(hStdErr, wbuf, wlen - 1, &n, NULL); | 
					
						
							| 
									
										
										
										
											2016-10-08 12:18:16 -07:00
										 |  |  |                         } | 
					
						
							|  |  |  |                         PyMem_RawFree(wbuf); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     fprintf(stderr, "%s", prompt); | 
					
						
							|  |  |  |                     fflush(stderr); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |             clearerr(sys_stdin); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             return _PyOS_WindowsConsoleReadline(tstate, hStdIn); | 
					
						
							| 
									
										
										
										
											2016-08-30 21:22:36 -07:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     fflush(sys_stdout); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |     if (prompt) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         fprintf(stderr, "%s", prompt); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     fflush(stderr); | 
					
						
							| 
									
										
										
										
											2013-10-10 16:18:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-28 17:57:12 -07:00
										 |  |  |     n = 0; | 
					
						
							|  |  |  |     p = NULL; | 
					
						
							|  |  |  |     do { | 
					
						
							|  |  |  |         size_t incr = (n > 0) ? n + 2 : 100; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         if (incr > INT_MAX) { | 
					
						
							| 
									
										
										
										
											2013-10-19 02:40:16 +02:00
										 |  |  |             PyMem_RawFree(p); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             PyErr_SetString(PyExc_OverflowError, "input line too long"); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2013-08-06 15:59:16 +02:00
										 |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-10-10 16:18:20 +02:00
										 |  |  |         pr = (char *)PyMem_RawRealloc(p, n + incr); | 
					
						
							| 
									
										
										
										
											2013-08-06 15:59:16 +02:00
										 |  |  |         if (pr == NULL) { | 
					
						
							| 
									
										
										
										
											2013-10-19 02:40:16 +02:00
										 |  |  |             PyMem_RawFree(p); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2013-08-06 15:59:16 +02:00
										 |  |  |             PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |             PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2013-08-06 15:59:16 +02:00
										 |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-08-06 15:59:16 +02:00
										 |  |  |         p = pr; | 
					
						
							| 
									
										
										
										
											2020-08-04 02:38:16 +02:00
										 |  |  |         int err = my_fgets(tstate, p + n, (int)incr, sys_stdin); | 
					
						
							| 
									
										
										
										
											2020-07-28 17:57:12 -07:00
										 |  |  |         if (err == 1) { | 
					
						
							|  |  |  |             // Interrupt
 | 
					
						
							|  |  |  |             PyMem_RawFree(p); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } else if (err != 0) { | 
					
						
							|  |  |  |             // EOF or error
 | 
					
						
							|  |  |  |             p[n] = '\0'; | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-07-28 17:57:12 -07:00
										 |  |  |         n += strlen(p + n); | 
					
						
							|  |  |  |     } while (p[n-1] != '\n'); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 16:18:20 +02:00
										 |  |  |     pr = (char *)PyMem_RawRealloc(p, n+1); | 
					
						
							| 
									
										
										
										
											2013-08-06 15:59:16 +02:00
										 |  |  |     if (pr == NULL) { | 
					
						
							| 
									
										
										
										
											2013-10-19 02:40:16 +02:00
										 |  |  |         PyMem_RawFree(p); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         PyEval_RestoreThread(tstate); | 
					
						
							| 
									
										
										
										
											2013-08-06 15:59:16 +02:00
										 |  |  |         PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |         PyEval_SaveThread(); | 
					
						
							| 
									
										
										
										
											2013-08-06 15:59:16 +02:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return pr; | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* By initializing this function pointer, systems embedding Python can
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |    override the readline function. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Note: Python expects in return a buffer allocated with PyMem_Malloc. */ | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-31 10:04:13 -08:00
										 |  |  | char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *) = NULL; | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-12 09:34:35 +02:00
										 |  |  | /* Interface used by file_tokenizer.c and bltinmodule.c */ | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | char * | 
					
						
							| 
									
										
										
										
											2013-10-19 21:03:34 +03:00
										 |  |  | PyOS_Readline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt) | 
					
						
							| 
									
										
										
										
											1997-02-18 21:53:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-10 16:18:20 +02:00
										 |  |  |     char *rv, *res; | 
					
						
							|  |  |  |     size_t len; | 
					
						
							| 
									
										
										
										
											2002-10-26 14:39:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-01 20:59:35 +02:00
										 |  |  |     PyThreadState *tstate = _PyThreadState_GET(); | 
					
						
							| 
									
										
										
										
											2024-09-06 15:07:08 -04:00
										 |  |  |     if (_Py_atomic_load_ptr_relaxed(&_PyOS_ReadlineTState) == tstate) { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         PyErr_SetString(PyExc_RuntimeError, | 
					
						
							|  |  |  |                         "can't re-enter readline"); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-06 15:07:08 -04:00
										 |  |  |     // GH-123321: We need to acquire the lock before setting
 | 
					
						
							|  |  |  |     // _PyOS_ReadlineTState, otherwise the variable may be nullified by a
 | 
					
						
							|  |  |  |     // different thread.
 | 
					
						
							|  |  |  |     Py_BEGIN_ALLOW_THREADS | 
					
						
							|  |  |  |     PyMutex_Lock(&_PyOS_ReadlineLock); | 
					
						
							|  |  |  |     _Py_atomic_store_ptr_relaxed(&_PyOS_ReadlineTState, tstate); | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     if (PyOS_ReadlineFunctionPointer == NULL) { | 
					
						
							|  |  |  |         PyOS_ReadlineFunctionPointer = PyOS_StdioReadline; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* This is needed to handle the unlikely case that the
 | 
					
						
							|  |  |  |      * interpreter is in interactive mode *and* stdin/out are not | 
					
						
							|  |  |  |      * a tty.  This can happen, for example if python is run like | 
					
						
							|  |  |  |      * this: python -i < test1.py | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-05-22 12:34:34 -07:00
										 |  |  |     if (!isatty(fileno(sys_stdin)) || !isatty(fileno(sys_stdout)) || | 
					
						
							|  |  |  |         // GH-104668: Don't call global callbacks like PyOS_InputHook or
 | 
					
						
							|  |  |  |         // PyOS_ReadlineFunctionPointer from subinterpreters, since it seems
 | 
					
						
							|  |  |  |         // like there's no good way for users (like readline and tkinter) to
 | 
					
						
							|  |  |  |         // avoid using global state to manage them. Plus, we generally don't
 | 
					
						
							|  |  |  |         // want to cause trouble for libraries that don't know/care about
 | 
					
						
							|  |  |  |         // subinterpreter support. If libraries really need better APIs that
 | 
					
						
							|  |  |  |         // work per-interpreter and have ways to access module state, we can
 | 
					
						
							|  |  |  |         // certainly add them later (but for now we'll cross our fingers and
 | 
					
						
							|  |  |  |         // hope that nobody actually cares):
 | 
					
						
							|  |  |  |         !_Py_IsMainInterpreter(tstate->interp)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         rv = PyOS_StdioReadline(sys_stdin, sys_stdout, prompt); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout, prompt); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-04 18:21:30 +03:00
										 |  |  |     // gh-123321: Must set the variable and then release the lock before
 | 
					
						
							|  |  |  |     // taking the GIL. Otherwise a deadlock or segfault may occur.
 | 
					
						
							| 
									
										
										
										
											2024-09-06 15:07:08 -04:00
										 |  |  |     _Py_atomic_store_ptr_relaxed(&_PyOS_ReadlineTState, NULL); | 
					
						
							|  |  |  |     PyMutex_Unlock(&_PyOS_ReadlineLock); | 
					
						
							| 
									
										
										
										
											2024-09-04 18:21:30 +03:00
										 |  |  |     Py_END_ALLOW_THREADS | 
					
						
							| 
									
										
										
										
											2004-07-07 17:44:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 16:18:20 +02:00
										 |  |  |     if (rv == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     len = strlen(rv) + 1; | 
					
						
							|  |  |  |     res = PyMem_Malloc(len); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |     if (res != NULL) { | 
					
						
							| 
									
										
										
										
											2013-10-10 16:18:20 +02:00
										 |  |  |         memcpy(res, rv, len); | 
					
						
							| 
									
										
										
										
											2018-12-07 03:11:30 -07:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         PyErr_NoMemory(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-10-10 16:18:20 +02:00
										 |  |  |     PyMem_RawFree(rv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return res; | 
					
						
							| 
									
										
										
										
											1993-12-24 10:36:57 +00:00
										 |  |  | } |