Staging
v0.5.1
https://github.com/python/cpython
Revision 05d9f30f9612cb8bbed8f2224840027c3e027e03 authored by Georg Brandl on 15 May 2007, 20:19:42 UTC, committed by Georg Brandl on 15 May 2007, 20:19:42 UTC
the traceback inadvertently or maliciously closing the comment and
injecting HTML into the error page.
 (backport from rev. 55348)
1 parent 0c0d949
Raw File
Tip revision: 05d9f30f9612cb8bbed8f2224840027c3e027e03 authored by Georg Brandl on 15 May 2007, 20:19:42 UTC
HTML-escape the plain traceback in cgitb's HTML output, to prevent
Tip revision: 05d9f30
dynload_hpux.c

/* Support for dynamic loading of extension modules */

#include "dl.h"
#include <errno.h>

#include "Python.h"
#include "importdl.h"

#if defined(__hp9000s300)
#define FUNCNAME_PATTERN "_init%.200s"
#else
#define FUNCNAME_PATTERN "init%.200s"
#endif

const struct filedescr _PyImport_DynLoadFiletab[] = {
	{".sl", "rb", C_EXTENSION},
	{"module.sl", "rb", C_EXTENSION},
	{0, 0}
};

dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
				    const char *pathname, FILE *fp)
{
	dl_funcptr p;
	shl_t lib;
	int flags;
	char funcname[258];

	flags = BIND_FIRST | BIND_DEFERRED;
	if (Py_VerboseFlag) {
		flags = BIND_FIRST | BIND_IMMEDIATE |
			BIND_NONFATAL | BIND_VERBOSE;
		printf("shl_load %s\n",pathname);
	}
	lib = shl_load(pathname, flags, 0);
	/* XXX Chuck Blake once wrote that 0 should be BIND_NOSTART? */
	if (lib == NULL) {
		char buf[256];
		if (Py_VerboseFlag)
			perror(pathname);
		PyOS_snprintf(buf, sizeof(buf), "Failed to load %.200s",
			      pathname);
		PyErr_SetString(PyExc_ImportError, buf);
		return NULL;
	}
	PyOS_snprintf(funcname, sizeof(funcname), FUNCNAME_PATTERN, shortname);
	if (Py_VerboseFlag)
		printf("shl_findsym %s\n", funcname);
	if (shl_findsym(&lib, funcname, TYPE_UNDEFINED, (void *) &p) == -1) {
		shl_unload(lib);
		p = NULL;
	}
	if (p == NULL && Py_VerboseFlag)
		perror(funcname);

	return p;
}
back to top