summaryrefslogtreecommitdiff
path: root/src/if_python3.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-02-07 13:54:01 +0000
committerBram Moolenaar <Bram@vim.org>2022-02-07 13:54:01 +0000
commit63ff72aab91679725077eab5c5405267792268bd (patch)
treebdf2dba219e7c49b3504e957d5576bd9462b5950 /src/if_python3.c
parentb247e0622ef16b7819f5dadefd3e3f0a803b4021 (diff)
downloadvim-git-63ff72aab91679725077eab5c5405267792268bd.tar.gz
patch 8.2.4317: MS-Windows: Vim exits when Python 3 initialisation failsv8.2.4317
Problem: MS-Windows: Vim exits when Python 3 initialisation fails. Solution: Hook into the exit() function to recover from the failure. (Ken Takata, closes #9710)
Diffstat (limited to 'src/if_python3.c')
-rw-r--r--src/if_python3.c93
1 files changed, 83 insertions, 10 deletions
diff --git a/src/if_python3.c b/src/if_python3.c
index c8ca3c379..0b05857d5 100644
--- a/src/if_python3.c
+++ b/src/if_python3.c
@@ -112,12 +112,18 @@ typedef PyObject PySliceObject_T;
typedef PySliceObject PySliceObject_T;
#endif
+#ifndef MSWIN
+# define HINSTANCE void *
+#endif
+#if defined(DYNAMIC_PYTHON3) || defined(MSWIN)
+static HINSTANCE hinstPy3 = 0; // Instance of python.dll
+#endif
+
#if defined(DYNAMIC_PYTHON3) || defined(PROTO)
# ifndef MSWIN
# include <dlfcn.h>
# define FARPROC void*
-# define HINSTANCE void*
# if defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)
# define load_dll(n) dlopen((n), RTLD_LAZY)
# else
@@ -459,8 +465,6 @@ static void(*py3_PyObject_GC_Del)(void *);
static void(*py3_PyObject_GC_UnTrack)(void *);
static int (*py3_PyType_IsSubtype)(PyTypeObject *, PyTypeObject *);
-static HINSTANCE hinstPy3 = 0; // Instance of python.dll
-
// Imported exception objects
static PyObject *p3imp_PyExc_AttributeError;
static PyObject *p3imp_PyExc_IndexError;
@@ -1032,13 +1036,8 @@ reset_stdin(void)
{
FILE *(*py__acrt_iob_func)(unsigned) = NULL;
FILE *(*pyfreopen)(const char *, const char *, FILE *) = NULL;
- HINSTANCE hinst;
+ HINSTANCE hinst = hinstPy3;
-# ifdef DYNAMIC_PYTHON3
- hinst = hinstPy3;
-# else
- hinst = GetModuleHandle(PYTHON3_DLL);
-# endif
if (hinst == NULL || is_stdin_readable())
return;
@@ -1063,6 +1062,57 @@ reset_stdin(void)
# define reset_stdin()
#endif
+// Python 3.2 or later will abort inside Py_Initialize() when mandatory
+// modules cannot be loaded (e.g. 'pythonthreehome' is wrongly set.).
+// Install a hook to python dll's exit() and recover from it.
+#if defined(MSWIN) && (PY_VERSION_HEX >= 0x030200f0)
+# define HOOK_EXIT
+# include <setjmp.h>
+
+static jmp_buf exit_hook_jump_buf;
+static void *orig_exit = NULL;
+
+/*
+ * Function that replaces exit() while calling Py_Initialize().
+ */
+ static void
+hooked_exit(int ret)
+{
+ // Recover from exit.
+ longjmp(exit_hook_jump_buf, 1);
+}
+
+/*
+ * Install a hook to python dll's exit().
+ */
+ static void
+hook_py_exit(void)
+{
+ HINSTANCE hinst = hinstPy3;
+
+ if (hinst == NULL || orig_exit != NULL)
+ return;
+
+ orig_exit = hook_dll_import_func(hinst, "exit", (void *)hooked_exit);
+}
+
+/*
+ * Remove the hook installed by hook_py_exit().
+ */
+ static void
+restore_py_exit(void)
+{
+ HINSTANCE hinst = hinstPy3;
+
+ if (hinst == NULL)
+ return;
+
+ if (orig_exit != NULL)
+ hook_dll_import_func(hinst, "exit", orig_exit);
+ orig_exit = NULL;
+}
+#endif
+
static int
Python3_Init(void)
{
@@ -1095,8 +1145,31 @@ Python3_Init(void)
PyImport_AppendInittab("vim", Py3Init_vim);
+#if !defined(DYNAMIC_PYTHON3) && defined(MSWIN)
+ hinstPy3 = GetModuleHandle(PYTHON3_DLL);
+#endif
reset_stdin();
- Py_Initialize();
+
+#ifdef HOOK_EXIT
+ // Catch exit() called in Py_Initialize().
+ hook_py_exit();
+ if (setjmp(exit_hook_jump_buf) == 0)
+#endif
+ {
+ Py_Initialize();
+#ifdef HOOK_EXIT
+ restore_py_exit();
+#endif
+ }
+#ifdef HOOK_EXIT
+ else
+ {
+ // exit() was called in Py_Initialize().
+ restore_py_exit();
+ emsg(_(e_critical_error_in_python3_initialization_check_your_installation));
+ goto fail;
+ }
+#endif
#if PY_VERSION_HEX < 0x03090000
// Initialise threads. This is deprecated since Python 3.9.