Coverage Report

Created: 2026-04-12 06:14

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cpython3/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
54
#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
    ".dll",
42
#else  /* !__CYGWIN__ */
43
    "." SOABI ".so",
44
#ifdef ALT_SOABI
45
    "." ALT_SOABI ".so",
46
#endif
47
#ifndef Py_GIL_DISABLED
48
    ".abi" PYTHON_ABI_STRING ".so",
49
#endif  /* Py_GIL_DISABLED */
50
    ".abi" PYTHON_ABI_STRING "t.so",
51
    ".so",
52
#endif  /* __CYGWIN__ */
53
    NULL,
54
};
55
56
57
dl_funcptr
58
_PyImport_FindSharedFuncptr(const char *prefix,
59
                            const char *shortname,
60
                            const char *pathname, FILE *fp)
61
54
{
62
54
    dl_funcptr p;
63
54
    void *handle;
64
54
    char funcname[258];
65
54
    char pathbuf[260];
66
54
    int dlopenflags=0;
67
68
54
    if (strchr(pathname, '/') == NULL) {
69
        /* Prefix bare filename with "./" */
70
0
        PyOS_snprintf(pathbuf, sizeof(pathbuf), "./%-.255s", pathname);
71
0
        pathname = pathbuf;
72
0
    }
73
74
54
    PyOS_snprintf(funcname, sizeof(funcname),
75
54
                  LEAD_UNDERSCORE "%.20s_%.200s", prefix, shortname);
76
77
54
    if (fp != NULL) {
78
0
        struct _Py_stat_struct status;
79
0
        if (_Py_fstat(fileno(fp), &status) == -1)
80
0
            return NULL;
81
0
    }
82
83
54
    dlopenflags = _PyImport_GetDLOpenFlags(_PyInterpreterState_GET());
84
85
54
    handle = dlopen(pathname, dlopenflags);
86
87
54
    if (handle == NULL) {
88
0
        PyObject *mod_name;
89
0
        PyObject *path;
90
0
        PyObject *error_ob;
91
0
        const char *error = dlerror();
92
0
        if (error == NULL)
93
0
            error = "unknown dlopen() error";
94
0
        error_ob = PyUnicode_DecodeLocale(error, "surrogateescape");
95
0
        if (error_ob == NULL)
96
0
            return NULL;
97
0
        mod_name = PyUnicode_FromString(shortname);
98
0
        if (mod_name == NULL) {
99
0
            Py_DECREF(error_ob);
100
0
            return NULL;
101
0
        }
102
0
        path = PyUnicode_DecodeFSDefault(pathname);
103
0
        if (path == NULL) {
104
0
            Py_DECREF(error_ob);
105
0
            Py_DECREF(mod_name);
106
0
            return NULL;
107
0
        }
108
0
        PyErr_SetImportError(error_ob, mod_name, path);
109
0
        Py_DECREF(error_ob);
110
0
        Py_DECREF(mod_name);
111
0
        Py_DECREF(path);
112
0
        return NULL;
113
0
    }
114
54
    p = (dl_funcptr) dlsym(handle, funcname);
115
54
    return p;
116
54
}