Coverage Report

Created: 2026-05-16 06:46

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cpython/Python/dynload_shlib.c
Line
Count
Source
1
2
/* Support for dynamic loading of extension modules */
3
4
#include "Python.h"
5
#include "pycore_fileutils.h"     // struct _Py_stat_struct
6
#include "pycore_import.h"        // _PyImport_GetDLOpenFlags()
7
#include "pycore_importdl.h"
8
#include "pycore_interp.h"        // _PyInterpreterState.dlopenflags
9
#include "pycore_pystate.h"       // _PyInterpreterState_GET()
10
11
#include <sys/types.h>
12
#include <sys/stat.h>
13
14
#if defined(__NetBSD__)
15
#include <sys/param.h>
16
#if (NetBSD < 199712)
17
#include <nlist.h>
18
#include <link.h>
19
#define dlerror() "error in dynamic linking"
20
#endif
21
#endif /* NetBSD */
22
23
#ifdef HAVE_DLFCN_H
24
#include <dlfcn.h>
25
#endif
26
27
#if (defined(__OpenBSD__) || defined(__NetBSD__)) && !defined(__ELF__)
28
#define LEAD_UNDERSCORE "_"
29
#else
30
414
#define LEAD_UNDERSCORE ""
31
#endif
32
33
/* The .so extension module ABI tag, supplied by the Makefile via
34
   Makefile.pre.in and configure.  This is used to discriminate between
35
   incompatible .so files so that extensions for different Python builds can
36
   live in the same directory.  E.g. foomodule.cpython-32.so
37
*/
38
39
const char *_PyImport_DynLoadFiletab[] = {
40
#ifdef __CYGWIN__
41
    "." SOABI ".dll",
42
    ".dll",
43
#else  /* !__CYGWIN__ */
44
    "." SOABI ".so",
45
#ifdef ALT_SOABI
46
    "." ALT_SOABI ".so",
47
#endif
48
#ifndef Py_GIL_DISABLED
49
    ".abi" PYTHON_ABI_STRING ".so",
50
#endif  /* Py_GIL_DISABLED */
51
    ".abi" PYTHON_ABI_STRING "t.so",
52
    ".so",
53
#endif  /* __CYGWIN__ */
54
    NULL,
55
};
56
57
58
dl_funcptr
59
_PyImport_FindSharedFuncptr(const char *prefix,
60
                            const char *shortname,
61
                            const char *pathname, FILE *fp)
62
414
{
63
414
    dl_funcptr p;
64
414
    void *handle;
65
414
    char funcname[258];
66
414
    char pathbuf[260];
67
414
    int dlopenflags=0;
68
69
414
    if (strchr(pathname, '/') == NULL) {
70
        /* Prefix bare filename with "./" */
71
0
        PyOS_snprintf(pathbuf, sizeof(pathbuf), "./%-.255s", pathname);
72
0
        pathname = pathbuf;
73
0
    }
74
75
414
    PyOS_snprintf(funcname, sizeof(funcname),
76
414
                  LEAD_UNDERSCORE "%.20s_%.200s", prefix, shortname);
77
78
414
    if (fp != NULL) {
79
0
        struct _Py_stat_struct status;
80
0
        if (_Py_fstat(fileno(fp), &status) == -1)
81
0
            return NULL;
82
0
    }
83
84
414
    dlopenflags = _PyImport_GetDLOpenFlags(_PyInterpreterState_GET());
85
86
414
    handle = dlopen(pathname, dlopenflags);
87
88
414
    if (handle == NULL) {
89
4
        PyObject *mod_name;
90
4
        PyObject *path;
91
4
        PyObject *error_ob;
92
4
        const char *error = dlerror();
93
4
        if (error == NULL)
94
0
            error = "unknown dlopen() error";
95
4
        error_ob = PyUnicode_DecodeLocale(error, "surrogateescape");
96
4
        if (error_ob == NULL)
97
0
            return NULL;
98
4
        mod_name = PyUnicode_FromString(shortname);
99
4
        if (mod_name == NULL) {
100
0
            Py_DECREF(error_ob);
101
0
            return NULL;
102
0
        }
103
4
        path = PyUnicode_DecodeFSDefault(pathname);
104
4
        if (path == NULL) {
105
0
            Py_DECREF(error_ob);
106
0
            Py_DECREF(mod_name);
107
0
            return NULL;
108
0
        }
109
4
        PyErr_SetImportError(error_ob, mod_name, path);
110
4
        Py_DECREF(error_ob);
111
4
        Py_DECREF(mod_name);
112
4
        Py_DECREF(path);
113
4
        return NULL;
114
4
    }
115
410
    p = (dl_funcptr) dlsym(handle, funcname);
116
410
    return p;
117
414
}