2008-05-17 01:28:26 +00:00
|
|
|
/*
|
2010-03-03 19:10:29 +00:00
|
|
|
* $PostgreSQL: pgsql/contrib/xml2/xslt_proc.c,v 1.15.2.5 2010/03/03 19:10:29 tgl Exp $
|
2008-05-17 01:28:26 +00:00
|
|
|
*
|
2009-01-07 13:44:37 +00:00
|
|
|
* XSLT processing functions (requiring libxslt)
|
|
|
|
*
|
|
|
|
* John Gray, for Torchbox 2003-04-01
|
|
|
|
*/
|
2004-03-05 03:24:50 +00:00
|
|
|
#include "postgres.h"
|
2009-01-07 13:44:37 +00:00
|
|
|
|
2004-03-05 03:24:50 +00:00
|
|
|
#include "executor/spi.h"
|
2009-01-07 13:44:37 +00:00
|
|
|
#include "fmgr.h"
|
2004-03-05 03:24:50 +00:00
|
|
|
#include "funcapi.h"
|
|
|
|
#include "miscadmin.h"
|
2009-01-07 13:44:37 +00:00
|
|
|
#include "utils/builtins.h"
|
2010-03-03 19:10:29 +00:00
|
|
|
#include "utils/xml.h"
|
2004-03-05 03:24:50 +00:00
|
|
|
|
2010-03-01 18:08:07 +00:00
|
|
|
#ifdef USE_LIBXSLT
|
|
|
|
|
2004-03-05 03:24:50 +00:00
|
|
|
/* libxml includes */
|
|
|
|
|
|
|
|
#include <libxml/xpath.h>
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
#include <libxml/xmlmemory.h>
|
|
|
|
|
|
|
|
/* libxslt includes */
|
|
|
|
|
|
|
|
#include <libxslt/xslt.h>
|
|
|
|
#include <libxslt/xsltInternals.h>
|
2012-08-14 18:28:53 -04:00
|
|
|
#include <libxslt/security.h>
|
2004-03-05 03:24:50 +00:00
|
|
|
#include <libxslt/transform.h>
|
|
|
|
#include <libxslt/xsltutils.h>
|
|
|
|
|
2010-03-01 18:08:07 +00:00
|
|
|
#endif /* USE_LIBXSLT */
|
|
|
|
|
2004-03-05 03:24:50 +00:00
|
|
|
|
2010-03-01 03:41:04 +00:00
|
|
|
/* externally accessible functions */
|
|
|
|
|
|
|
|
Datum xslt_process(PG_FUNCTION_ARGS);
|
|
|
|
|
2010-03-01 18:08:07 +00:00
|
|
|
#ifdef USE_LIBXSLT
|
|
|
|
|
2004-03-05 03:24:50 +00:00
|
|
|
/* declarations to come from xpath.c */
|
2010-03-01 03:41:04 +00:00
|
|
|
extern void pgxml_parser_init(void);
|
2004-03-05 03:24:50 +00:00
|
|
|
|
|
|
|
/* local defs */
|
|
|
|
static void parse_params(const char **params, text *paramstr);
|
|
|
|
|
2009-07-10 00:32:06 +00:00
|
|
|
#define MAXPARAMS 20 /* must be even, see parse_params() */
|
|
|
|
|
2010-03-01 18:08:07 +00:00
|
|
|
#endif /* USE_LIBXSLT */
|
|
|
|
|
2004-03-05 03:24:50 +00:00
|
|
|
|
|
|
|
PG_FUNCTION_INFO_V1(xslt_process);
|
|
|
|
|
2004-08-29 05:07:03 +00:00
|
|
|
Datum
|
|
|
|
xslt_process(PG_FUNCTION_ARGS)
|
|
|
|
{
|
2010-03-01 18:08:07 +00:00
|
|
|
#ifdef USE_LIBXSLT
|
|
|
|
|
2008-05-04 16:42:41 +00:00
|
|
|
text *doct = PG_GETARG_TEXT_P(0);
|
|
|
|
text *ssheet = PG_GETARG_TEXT_P(1);
|
2012-06-04 20:13:04 -04:00
|
|
|
text *result;
|
2008-05-04 16:42:41 +00:00
|
|
|
text *paramstr;
|
2004-08-29 05:07:03 +00:00
|
|
|
const char *params[MAXPARAMS + 1]; /* +1 for the terminator */
|
|
|
|
xsltStylesheetPtr stylesheet = NULL;
|
|
|
|
xmlDocPtr doctree;
|
|
|
|
xmlDocPtr restree;
|
2012-08-14 18:28:53 -04:00
|
|
|
xmlDocPtr ssdoc;
|
|
|
|
xsltSecurityPrefsPtr xslt_sec_prefs;
|
|
|
|
bool xslt_sec_prefs_error;
|
|
|
|
xsltTransformContextPtr xslt_ctxt;
|
2004-08-29 05:07:03 +00:00
|
|
|
xmlChar *resstr;
|
|
|
|
int resstat;
|
|
|
|
int reslen;
|
|
|
|
|
|
|
|
if (fcinfo->nargs == 3)
|
|
|
|
{
|
|
|
|
paramstr = PG_GETARG_TEXT_P(2);
|
|
|
|
parse_params(params, paramstr);
|
|
|
|
}
|
|
|
|
else
|
2005-10-15 02:49:52 +00:00
|
|
|
/* No parameters */
|
2004-08-29 05:07:03 +00:00
|
|
|
params[0] = NULL;
|
|
|
|
|
|
|
|
/* Setup parser */
|
|
|
|
pgxml_parser_init();
|
|
|
|
|
2012-08-14 18:28:53 -04:00
|
|
|
/* Parse document */
|
|
|
|
doctree = xmlParseMemory((char *) VARDATA(doct),
|
|
|
|
VARSIZE(doct) - VARHDRSZ);
|
2004-08-29 05:07:03 +00:00
|
|
|
|
|
|
|
if (doctree == NULL)
|
2010-03-03 19:10:29 +00:00
|
|
|
xml_ereport(ERROR, ERRCODE_EXTERNAL_ROUTINE_EXCEPTION,
|
|
|
|
"error parsing XML document");
|
2004-08-29 05:07:03 +00:00
|
|
|
|
|
|
|
/* Same for stylesheet */
|
2012-08-14 18:28:53 -04:00
|
|
|
ssdoc = xmlParseMemory((char *) VARDATA(ssheet),
|
|
|
|
VARSIZE(ssheet) - VARHDRSZ);
|
|
|
|
|
|
|
|
if (ssdoc == NULL)
|
2004-03-05 03:24:50 +00:00
|
|
|
{
|
2012-08-14 18:28:53 -04:00
|
|
|
xmlFreeDoc(doctree);
|
|
|
|
xml_ereport(ERROR, ERRCODE_EXTERNAL_ROUTINE_EXCEPTION,
|
|
|
|
"error parsing stylesheet as XML document");
|
2004-03-05 03:24:50 +00:00
|
|
|
}
|
|
|
|
|
2012-08-14 18:28:53 -04:00
|
|
|
/* After this call we need not free ssdoc separately */
|
|
|
|
stylesheet = xsltParseStylesheetDoc(ssdoc);
|
2004-08-29 05:07:03 +00:00
|
|
|
|
|
|
|
if (stylesheet == NULL)
|
|
|
|
{
|
|
|
|
xmlFreeDoc(doctree);
|
|
|
|
xsltCleanupGlobals();
|
2010-03-03 19:10:29 +00:00
|
|
|
xml_ereport(ERROR, ERRCODE_EXTERNAL_ROUTINE_EXCEPTION,
|
|
|
|
"failed to parse stylesheet");
|
2004-08-29 05:07:03 +00:00
|
|
|
}
|
|
|
|
|
2012-08-14 18:28:53 -04:00
|
|
|
xslt_ctxt = xsltNewTransformContext(stylesheet, doctree);
|
|
|
|
|
|
|
|
xslt_sec_prefs_error = false;
|
|
|
|
if ((xslt_sec_prefs = xsltNewSecurityPrefs()) == NULL)
|
|
|
|
xslt_sec_prefs_error = true;
|
|
|
|
|
|
|
|
if (xsltSetSecurityPrefs(xslt_sec_prefs, XSLT_SECPREF_READ_FILE,
|
|
|
|
xsltSecurityForbid) != 0)
|
|
|
|
xslt_sec_prefs_error = true;
|
|
|
|
if (xsltSetSecurityPrefs(xslt_sec_prefs, XSLT_SECPREF_WRITE_FILE,
|
|
|
|
xsltSecurityForbid) != 0)
|
|
|
|
xslt_sec_prefs_error = true;
|
|
|
|
if (xsltSetSecurityPrefs(xslt_sec_prefs, XSLT_SECPREF_CREATE_DIRECTORY,
|
|
|
|
xsltSecurityForbid) != 0)
|
|
|
|
xslt_sec_prefs_error = true;
|
|
|
|
if (xsltSetSecurityPrefs(xslt_sec_prefs, XSLT_SECPREF_READ_NETWORK,
|
|
|
|
xsltSecurityForbid) != 0)
|
|
|
|
xslt_sec_prefs_error = true;
|
|
|
|
if (xsltSetSecurityPrefs(xslt_sec_prefs, XSLT_SECPREF_WRITE_NETWORK,
|
|
|
|
xsltSecurityForbid) != 0)
|
|
|
|
xslt_sec_prefs_error = true;
|
|
|
|
if (xsltSetCtxtSecurityPrefs(xslt_sec_prefs, xslt_ctxt) != 0)
|
|
|
|
xslt_sec_prefs_error = true;
|
|
|
|
|
|
|
|
if (xslt_sec_prefs_error)
|
|
|
|
{
|
|
|
|
xsltFreeStylesheet(stylesheet);
|
|
|
|
xmlFreeDoc(doctree);
|
|
|
|
xsltFreeSecurityPrefs(xslt_sec_prefs);
|
|
|
|
xsltFreeTransformContext(xslt_ctxt);
|
|
|
|
xsltCleanupGlobals();
|
|
|
|
xml_ereport(ERROR, ERRCODE_EXTERNAL_ROUTINE_EXCEPTION,
|
|
|
|
"could not set libxslt security preferences");
|
|
|
|
}
|
|
|
|
|
|
|
|
restree = xsltApplyStylesheetUser(stylesheet, doctree, params,
|
|
|
|
NULL, NULL, xslt_ctxt);
|
2012-06-04 20:13:04 -04:00
|
|
|
|
|
|
|
if (restree == NULL)
|
|
|
|
{
|
|
|
|
xsltFreeStylesheet(stylesheet);
|
|
|
|
xmlFreeDoc(doctree);
|
2012-08-14 18:28:53 -04:00
|
|
|
xsltFreeSecurityPrefs(xslt_sec_prefs);
|
|
|
|
xsltFreeTransformContext(xslt_ctxt);
|
2012-06-04 20:13:04 -04:00
|
|
|
xsltCleanupGlobals();
|
|
|
|
xml_ereport(ERROR, ERRCODE_EXTERNAL_ROUTINE_EXCEPTION,
|
|
|
|
"failed to apply stylesheet");
|
|
|
|
}
|
|
|
|
|
2004-08-29 05:07:03 +00:00
|
|
|
resstat = xsltSaveResultToString(&resstr, &reslen, restree, stylesheet);
|
|
|
|
|
|
|
|
xsltFreeStylesheet(stylesheet);
|
|
|
|
xmlFreeDoc(restree);
|
|
|
|
xmlFreeDoc(doctree);
|
2012-08-14 18:28:53 -04:00
|
|
|
xsltFreeSecurityPrefs(xslt_sec_prefs);
|
|
|
|
xsltFreeTransformContext(xslt_ctxt);
|
2004-08-29 05:07:03 +00:00
|
|
|
|
|
|
|
xsltCleanupGlobals();
|
|
|
|
|
2012-06-04 20:13:04 -04:00
|
|
|
/* XXX this is pretty dubious, really ought to throw error instead */
|
2004-08-29 05:07:03 +00:00
|
|
|
if (resstat < 0)
|
|
|
|
PG_RETURN_NULL();
|
|
|
|
|
2012-06-04 20:13:04 -04:00
|
|
|
result = cstring_to_text_with_len((char *) resstr, reslen);
|
|
|
|
|
|
|
|
if (resstr)
|
|
|
|
xmlFree(resstr);
|
|
|
|
|
|
|
|
PG_RETURN_TEXT_P(result);
|
2010-03-01 18:08:07 +00:00
|
|
|
|
|
|
|
#else /* !USE_LIBXSLT */
|
|
|
|
|
|
|
|
ereport(ERROR,
|
|
|
|
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
|
|
|
|
errmsg("xslt_process() is not available without libxslt")));
|
|
|
|
PG_RETURN_NULL();
|
|
|
|
|
|
|
|
#endif /* USE_LIBXSLT */
|
2004-03-05 03:24:50 +00:00
|
|
|
}
|
|
|
|
|
2010-03-01 18:08:07 +00:00
|
|
|
#ifdef USE_LIBXSLT
|
2004-03-05 03:24:50 +00:00
|
|
|
|
2009-07-10 00:32:06 +00:00
|
|
|
static void
|
2004-08-29 05:07:03 +00:00
|
|
|
parse_params(const char **params, text *paramstr)
|
2004-03-05 03:24:50 +00:00
|
|
|
{
|
2004-08-29 05:07:03 +00:00
|
|
|
char *pos;
|
|
|
|
char *pstr;
|
|
|
|
int i;
|
|
|
|
char *nvsep = "=";
|
|
|
|
char *itsep = ",";
|
|
|
|
|
2008-03-25 22:42:46 +00:00
|
|
|
pstr = text_to_cstring(paramstr);
|
2004-08-29 05:07:03 +00:00
|
|
|
|
|
|
|
pos = pstr;
|
|
|
|
|
|
|
|
for (i = 0; i < MAXPARAMS; i++)
|
|
|
|
{
|
|
|
|
params[i] = pos;
|
|
|
|
pos = strstr(pos, nvsep);
|
|
|
|
if (pos != NULL)
|
|
|
|
{
|
|
|
|
*pos = '\0';
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-07-10 00:32:06 +00:00
|
|
|
/* No equal sign, so ignore this "parameter" */
|
|
|
|
/* We'll reset params[i] to NULL below the loop */
|
2004-08-29 05:07:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Value */
|
|
|
|
i++;
|
2009-07-10 00:32:06 +00:00
|
|
|
/* since MAXPARAMS is even, we still have i < MAXPARAMS */
|
2004-08-29 05:07:03 +00:00
|
|
|
params[i] = pos;
|
|
|
|
pos = strstr(pos, itsep);
|
|
|
|
if (pos != NULL)
|
|
|
|
{
|
|
|
|
*pos = '\0';
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
else
|
2009-07-10 00:32:06 +00:00
|
|
|
{
|
|
|
|
i++;
|
2004-08-29 05:07:03 +00:00
|
|
|
break;
|
2009-07-10 00:32:06 +00:00
|
|
|
}
|
2004-08-29 05:07:03 +00:00
|
|
|
}
|
2009-07-10 00:32:06 +00:00
|
|
|
|
|
|
|
params[i] = NULL;
|
2004-03-05 03:24:50 +00:00
|
|
|
}
|
2010-03-01 18:08:07 +00:00
|
|
|
|
|
|
|
#endif /* USE_LIBXSLT */
|