blob: b2e6ea1344ba876a066bf44a6f02c1f24626c95d [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
2 * xinclude.c : Code to implement XInclude processing
3 *
Daniel Veillarde74d2e12003-12-09 11:35:37 +00004 * World Wide Web Consortium W3C Last Call Working Draft 10 November 2003
5 * http://www.w3.org/TR/2003/WD-xinclude-20031110
Owen Taylor3473f882001-02-23 17:55:21 +00006 *
7 * See Copyright for the status of this software.
8 *
Daniel Veillardc5d64342001-06-24 12:13:24 +00009 * daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +000010 */
11
Daniel Veillard34ce8be2002-03-18 19:37:11 +000012#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000013#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +000014
Owen Taylor3473f882001-02-23 17:55:21 +000015#include <string.h>
16#include <libxml/xmlmemory.h>
17#include <libxml/tree.h>
18#include <libxml/parser.h>
19#include <libxml/uri.h>
Nicolas Le Cam41586ca2013-06-17 13:01:33 +020020#include <libxml/xpath.h>
Owen Taylor3473f882001-02-23 17:55:21 +000021#include <libxml/xpointer.h>
22#include <libxml/parserInternals.h>
Owen Taylor3473f882001-02-23 17:55:21 +000023#include <libxml/xmlerror.h>
Daniel Veillardd076a202002-11-20 13:28:31 +000024#include <libxml/encoding.h>
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000025#include <libxml/globals.h>
Owen Taylor3473f882001-02-23 17:55:21 +000026
27#ifdef LIBXML_XINCLUDE_ENABLED
28#include <libxml/xinclude.h>
29
Daniel Veillard345ee8b2012-07-16 14:40:37 +080030#include "buf.h"
Owen Taylor3473f882001-02-23 17:55:21 +000031
Daniel Veillardf4b4f982003-02-13 11:02:08 +000032#define XINCLUDE_MAX_DEPTH 40
33
Daniel Veillard98485322003-08-14 15:44:40 +000034/* #define DEBUG_XINCLUDE */
Daniel Veillard017b1082001-06-21 11:20:21 +000035#ifdef DEBUG_XINCLUDE
36#ifdef LIBXML_DEBUG_ENABLED
37#include <libxml/debugXML.h>
38#endif
39#endif
Owen Taylor3473f882001-02-23 17:55:21 +000040
41/************************************************************************
42 * *
William M. Brack72ee48d2003-12-30 08:30:19 +000043 * XInclude context handling *
Owen Taylor3473f882001-02-23 17:55:21 +000044 * *
45 ************************************************************************/
46
47/*
48 * An XInclude context
49 */
Daniel Veillardedac3c92001-02-26 01:36:19 +000050typedef xmlChar *xmlURL;
Daniel Veillardbbc72c32002-09-05 10:52:10 +000051
52typedef struct _xmlXIncludeRef xmlXIncludeRef;
53typedef xmlXIncludeRef *xmlXIncludeRefPtr;
54struct _xmlXIncludeRef {
William M. Brack72ee48d2003-12-30 08:30:19 +000055 xmlChar *URI; /* the fully resolved resource URL */
Daniel Veillardbbc72c32002-09-05 10:52:10 +000056 xmlChar *fragment; /* the fragment in the URI */
57 xmlDocPtr doc; /* the parsed document */
58 xmlNodePtr ref; /* the node making the reference in the source */
59 xmlNodePtr inc; /* the included copy */
60 int xml; /* xml or txt */
61 int count; /* how many refs use that specific doc */
Haibo Huangf0a546b2020-09-01 20:28:19 -070062 int fallback; /* fallback was loaded */
William M. Brack95af5942004-02-08 04:12:49 +000063 int emptyFb; /* flag to show fallback empty */
Daniel Veillardbbc72c32002-09-05 10:52:10 +000064};
65
Owen Taylor3473f882001-02-23 17:55:21 +000066struct _xmlXIncludeCtxt {
67 xmlDocPtr doc; /* the source document */
Daniel Veillardbbc72c32002-09-05 10:52:10 +000068 int incBase; /* the first include for this document */
Owen Taylor3473f882001-02-23 17:55:21 +000069 int incNr; /* number of includes */
70 int incMax; /* size of includes tab */
Daniel Veillardbbc72c32002-09-05 10:52:10 +000071 xmlXIncludeRefPtr *incTab; /* array of included references */
72
Owen Taylor3473f882001-02-23 17:55:21 +000073 int txtNr; /* number of unparsed documents */
74 int txtMax; /* size of unparsed documents tab */
Haibo Huangd23e46c2020-10-28 22:26:09 -070075 xmlChar * *txtTab; /* array of unparsed text strings */
William M. Brack72ee48d2003-12-30 08:30:19 +000076 xmlURL *txturlTab; /* array of unparsed text URLs */
Daniel Veillardd581b7e2003-02-11 18:03:05 +000077
Daniel Veillardf4b4f982003-02-13 11:02:08 +000078 xmlChar * url; /* the current URL processed */
William M. Brack72ee48d2003-12-30 08:30:19 +000079 int urlNr; /* number of URLs stacked */
80 int urlMax; /* size of URL stack */
81 xmlChar * *urlTab; /* URL stack */
Daniel Veillardf4b4f982003-02-13 11:02:08 +000082
Daniel Veillardd581b7e2003-02-11 18:03:05 +000083 int nbErrors; /* the number of errors detected */
Daniel Veillardb5fa0202003-12-08 17:41:29 +000084 int legacy; /* using XINCLUDE_OLD_NS */
Daniel Veillarde74d2e12003-12-09 11:35:37 +000085 int parseFlags; /* the flags used for parsing XML documents */
William M. Brackf7789b12004-06-07 08:57:27 +000086 xmlChar * base; /* the current xml:base */
Daniel Veillard681e9042006-09-29 09:16:00 +000087
88 void *_private; /* application data */
Haibo Huangf0a546b2020-09-01 20:28:19 -070089
90 unsigned long incTotal; /* total number of processed inclusions */
Owen Taylor3473f882001-02-23 17:55:21 +000091};
92
Daniel Veillardd16df9f2001-05-23 13:44:21 +000093static int
Haibo Huangf0a546b2020-09-01 20:28:19 -070094xmlXIncludeDoProcess(xmlXIncludeCtxtPtr ctxt, xmlDocPtr doc, xmlNodePtr tree,
95 int skipRoot);
Owen Taylor3473f882001-02-23 17:55:21 +000096
Daniel Veillard98485322003-08-14 15:44:40 +000097
Daniel Veillardcd6ff282003-10-08 22:38:13 +000098/************************************************************************
99 * *
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800100 * XInclude error handler *
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000101 * *
102 ************************************************************************/
103
Daniel Veillard98485322003-08-14 15:44:40 +0000104/**
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000105 * xmlXIncludeErrMemory:
William M. Brack72ee48d2003-12-30 08:30:19 +0000106 * @extra: extra information
Daniel Veillard98485322003-08-14 15:44:40 +0000107 *
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000108 * Handle an out of memory condition
Daniel Veillard98485322003-08-14 15:44:40 +0000109 */
110static void
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000111xmlXIncludeErrMemory(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node,
112 const char *extra)
Daniel Veillard98485322003-08-14 15:44:40 +0000113{
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000114 if (ctxt != NULL)
115 ctxt->nbErrors++;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000116 __xmlRaiseError(NULL, NULL, NULL, ctxt, node, XML_FROM_XINCLUDE,
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000117 XML_ERR_NO_MEMORY, XML_ERR_ERROR, NULL, 0,
118 extra, NULL, NULL, 0, 0,
119 "Memory allocation failed : %s\n", extra);
120}
Daniel Veillard98485322003-08-14 15:44:40 +0000121
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000122/**
123 * xmlXIncludeErr:
124 * @ctxt: the XInclude context
125 * @node: the context node
126 * @msg: the error message
William M. Brack72ee48d2003-12-30 08:30:19 +0000127 * @extra: extra information
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000128 *
Daniel Veillardb5fa0202003-12-08 17:41:29 +0000129 * Handle an XInclude error
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000130 */
David Kilzer4472c3a2016-05-13 15:13:17 +0800131static void LIBXML_ATTR_FORMAT(4,0)
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000132xmlXIncludeErr(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node, int error,
133 const char *msg, const xmlChar *extra)
134{
135 if (ctxt != NULL)
136 ctxt->nbErrors++;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000137 __xmlRaiseError(NULL, NULL, NULL, ctxt, node, XML_FROM_XINCLUDE,
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000138 error, XML_ERR_ERROR, NULL, 0,
139 (const char *) extra, NULL, NULL, 0, 0,
140 msg, (const char *) extra);
Daniel Veillard98485322003-08-14 15:44:40 +0000141}
142
Daniel Veillardf54cd532004-02-25 11:52:31 +0000143#if 0
Owen Taylor3473f882001-02-23 17:55:21 +0000144/**
Daniel Veillardb5fa0202003-12-08 17:41:29 +0000145 * xmlXIncludeWarn:
146 * @ctxt: the XInclude context
147 * @node: the context node
148 * @msg: the error message
William M. Brack72ee48d2003-12-30 08:30:19 +0000149 * @extra: extra information
Daniel Veillardb5fa0202003-12-08 17:41:29 +0000150 *
151 * Emit an XInclude warning.
152 */
David Kilzer4472c3a2016-05-13 15:13:17 +0800153static void LIBXML_ATTR_FORMAT(4,0)
Daniel Veillardb5fa0202003-12-08 17:41:29 +0000154xmlXIncludeWarn(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node, int error,
155 const char *msg, const xmlChar *extra)
156{
157 __xmlRaiseError(NULL, NULL, NULL, ctxt, node, XML_FROM_XINCLUDE,
158 error, XML_ERR_WARNING, NULL, 0,
159 (const char *) extra, NULL, NULL, 0, 0,
160 msg, (const char *) extra);
161}
Daniel Veillardf54cd532004-02-25 11:52:31 +0000162#endif
Daniel Veillardb5fa0202003-12-08 17:41:29 +0000163
164/**
165 * xmlXIncludeGetProp:
166 * @ctxt: the XInclude context
167 * @cur: the node
168 * @name: the attribute name
169 *
170 * Get an XInclude attribute
171 *
172 * Returns the value (to be freed) or NULL if not found
173 */
174static xmlChar *
175xmlXIncludeGetProp(xmlXIncludeCtxtPtr ctxt, xmlNodePtr cur,
176 const xmlChar *name) {
177 xmlChar *ret;
178
179 ret = xmlGetNsProp(cur, XINCLUDE_NS, name);
180 if (ret != NULL)
181 return(ret);
182 if (ctxt->legacy != 0) {
183 ret = xmlGetNsProp(cur, XINCLUDE_OLD_NS, name);
184 if (ret != NULL)
185 return(ret);
186 }
187 ret = xmlGetProp(cur, name);
188 return(ret);
189}
190/**
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000191 * xmlXIncludeFreeRef:
192 * @ref: the XInclude reference
193 *
194 * Free an XInclude reference
195 */
196static void
197xmlXIncludeFreeRef(xmlXIncludeRefPtr ref) {
198 if (ref == NULL)
199 return;
200#ifdef DEBUG_XINCLUDE
201 xmlGenericError(xmlGenericErrorContext, "Freeing ref\n");
202#endif
203 if (ref->doc != NULL) {
204#ifdef DEBUG_XINCLUDE
205 xmlGenericError(xmlGenericErrorContext, "Freeing doc %s\n", ref->URI);
206#endif
207 xmlFreeDoc(ref->doc);
208 }
209 if (ref->URI != NULL)
210 xmlFree(ref->URI);
211 if (ref->fragment != NULL)
212 xmlFree(ref->fragment);
213 xmlFree(ref);
214}
215
216/**
217 * xmlXIncludeNewRef:
218 * @ctxt: the XInclude context
219 * @URI: the resource URI
220 *
221 * Creates a new reference within an XInclude context
222 *
223 * Returns the new set
224 */
225static xmlXIncludeRefPtr
226xmlXIncludeNewRef(xmlXIncludeCtxtPtr ctxt, const xmlChar *URI,
227 xmlNodePtr ref) {
228 xmlXIncludeRefPtr ret;
229
230#ifdef DEBUG_XINCLUDE
231 xmlGenericError(xmlGenericErrorContext, "New ref %s\n", URI);
232#endif
233 ret = (xmlXIncludeRefPtr) xmlMalloc(sizeof(xmlXIncludeRef));
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000234 if (ret == NULL) {
235 xmlXIncludeErrMemory(ctxt, ref, "growing XInclude context");
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000236 return(NULL);
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000237 }
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000238 memset(ret, 0, sizeof(xmlXIncludeRef));
239 if (URI == NULL)
240 ret->URI = NULL;
241 else
242 ret->URI = xmlStrdup(URI);
243 ret->fragment = NULL;
244 ret->ref = ref;
Daniel Veillard24505b02005-07-28 23:49:35 +0000245 ret->doc = NULL;
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000246 ret->count = 0;
247 ret->xml = 0;
248 ret->inc = NULL;
249 if (ctxt->incMax == 0) {
250 ctxt->incMax = 4;
251 ctxt->incTab = (xmlXIncludeRefPtr *) xmlMalloc(ctxt->incMax *
252 sizeof(ctxt->incTab[0]));
253 if (ctxt->incTab == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000254 xmlXIncludeErrMemory(ctxt, ref, "growing XInclude context");
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000255 xmlXIncludeFreeRef(ret);
256 return(NULL);
257 }
258 }
259 if (ctxt->incNr >= ctxt->incMax) {
260 ctxt->incMax *= 2;
261 ctxt->incTab = (xmlXIncludeRefPtr *) xmlRealloc(ctxt->incTab,
262 ctxt->incMax * sizeof(ctxt->incTab[0]));
263 if (ctxt->incTab == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000264 xmlXIncludeErrMemory(ctxt, ref, "growing XInclude context");
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000265 xmlXIncludeFreeRef(ret);
266 return(NULL);
267 }
268 }
269 ctxt->incTab[ctxt->incNr++] = ret;
270 return(ret);
271}
272
273/**
Owen Taylor3473f882001-02-23 17:55:21 +0000274 * xmlXIncludeNewContext:
275 * @doc: an XML Document
276 *
277 * Creates a new XInclude context
278 *
279 * Returns the new set
280 */
Daniel Veillard7899c5c2003-11-03 12:31:38 +0000281xmlXIncludeCtxtPtr
Owen Taylor3473f882001-02-23 17:55:21 +0000282xmlXIncludeNewContext(xmlDocPtr doc) {
283 xmlXIncludeCtxtPtr ret;
284
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000285#ifdef DEBUG_XINCLUDE
286 xmlGenericError(xmlGenericErrorContext, "New context\n");
287#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000288 if (doc == NULL)
289 return(NULL);
290 ret = (xmlXIncludeCtxtPtr) xmlMalloc(sizeof(xmlXIncludeCtxt));
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000291 if (ret == NULL) {
292 xmlXIncludeErrMemory(NULL, (xmlNodePtr) doc,
293 "creating XInclude context");
Owen Taylor3473f882001-02-23 17:55:21 +0000294 return(NULL);
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000295 }
Owen Taylor3473f882001-02-23 17:55:21 +0000296 memset(ret, 0, sizeof(xmlXIncludeCtxt));
297 ret->doc = doc;
298 ret->incNr = 0;
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000299 ret->incBase = 0;
Owen Taylor3473f882001-02-23 17:55:21 +0000300 ret->incMax = 0;
301 ret->incTab = NULL;
Daniel Veillardd581b7e2003-02-11 18:03:05 +0000302 ret->nbErrors = 0;
Owen Taylor3473f882001-02-23 17:55:21 +0000303 return(ret);
304}
305
306/**
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000307 * xmlXIncludeURLPush:
308 * @ctxt: the parser context
309 * @value: the url
310 *
311 * Pushes a new url on top of the url stack
312 *
313 * Returns -1 in case of error, the index in the stack otherwise
314 */
315static int
316xmlXIncludeURLPush(xmlXIncludeCtxtPtr ctxt,
317 const xmlChar *value)
318{
319 if (ctxt->urlNr > XINCLUDE_MAX_DEPTH) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000320 xmlXIncludeErr(ctxt, NULL, XML_XINCLUDE_RECURSION,
321 "detected a recursion in %s\n", value);
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000322 return(-1);
323 }
324 if (ctxt->urlTab == NULL) {
325 ctxt->urlMax = 4;
326 ctxt->urlNr = 0;
327 ctxt->urlTab = (xmlChar * *) xmlMalloc(
328 ctxt->urlMax * sizeof(ctxt->urlTab[0]));
329 if (ctxt->urlTab == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000330 xmlXIncludeErrMemory(ctxt, NULL, "adding URL");
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000331 return (-1);
332 }
333 }
334 if (ctxt->urlNr >= ctxt->urlMax) {
335 ctxt->urlMax *= 2;
336 ctxt->urlTab =
337 (xmlChar * *) xmlRealloc(ctxt->urlTab,
338 ctxt->urlMax *
339 sizeof(ctxt->urlTab[0]));
340 if (ctxt->urlTab == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000341 xmlXIncludeErrMemory(ctxt, NULL, "adding URL");
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000342 return (-1);
343 }
344 }
345 ctxt->url = ctxt->urlTab[ctxt->urlNr] = xmlStrdup(value);
346 return (ctxt->urlNr++);
347}
348
349/**
350 * xmlXIncludeURLPop:
351 * @ctxt: the parser context
352 *
William M. Brack72ee48d2003-12-30 08:30:19 +0000353 * Pops the top URL from the URL stack
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000354 */
355static void
356xmlXIncludeURLPop(xmlXIncludeCtxtPtr ctxt)
357{
358 xmlChar * ret;
359
360 if (ctxt->urlNr <= 0)
361 return;
362 ctxt->urlNr--;
363 if (ctxt->urlNr > 0)
364 ctxt->url = ctxt->urlTab[ctxt->urlNr - 1];
365 else
366 ctxt->url = NULL;
367 ret = ctxt->urlTab[ctxt->urlNr];
Daniel Veillard24505b02005-07-28 23:49:35 +0000368 ctxt->urlTab[ctxt->urlNr] = NULL;
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000369 if (ret != NULL)
370 xmlFree(ret);
371}
372
373/**
Owen Taylor3473f882001-02-23 17:55:21 +0000374 * xmlXIncludeFreeContext:
375 * @ctxt: the XInclude context
376 *
377 * Free an XInclude context
378 */
Daniel Veillard7899c5c2003-11-03 12:31:38 +0000379void
Owen Taylor3473f882001-02-23 17:55:21 +0000380xmlXIncludeFreeContext(xmlXIncludeCtxtPtr ctxt) {
381 int i;
382
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000383#ifdef DEBUG_XINCLUDE
384 xmlGenericError(xmlGenericErrorContext, "Freeing context\n");
385#endif
Owen Taylor3473f882001-02-23 17:55:21 +0000386 if (ctxt == NULL)
387 return;
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000388 while (ctxt->urlNr > 0)
389 xmlXIncludeURLPop(ctxt);
390 if (ctxt->urlTab != NULL)
391 xmlFree(ctxt->urlTab);
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000392 for (i = 0;i < ctxt->incNr;i++) {
393 if (ctxt->incTab[i] != NULL)
394 xmlXIncludeFreeRef(ctxt->incTab[i]);
Owen Taylor3473f882001-02-23 17:55:21 +0000395 }
Haibo Huangd23e46c2020-10-28 22:26:09 -0700396 if (ctxt->incTab != NULL)
397 xmlFree(ctxt->incTab);
398 if (ctxt->txtTab != NULL) {
399 for (i = 0;i < ctxt->txtNr;i++) {
400 if (ctxt->txtTab[i] != NULL)
401 xmlFree(ctxt->txtTab[i]);
402 }
403 xmlFree(ctxt->txtTab);
404 }
Daniel Veillard11ce4002006-03-10 00:36:23 +0000405 if (ctxt->txturlTab != NULL) {
406 for (i = 0;i < ctxt->txtNr;i++) {
407 if (ctxt->txturlTab[i] != NULL)
408 xmlFree(ctxt->txturlTab[i]);
409 }
Owen Taylor3473f882001-02-23 17:55:21 +0000410 xmlFree(ctxt->txturlTab);
Haibo Huangd23e46c2020-10-28 22:26:09 -0700411 }
Daniel Veillardce244ad2004-11-05 10:03:46 +0000412 if (ctxt->base != NULL) {
413 xmlFree(ctxt->base);
414 }
Owen Taylor3473f882001-02-23 17:55:21 +0000415 xmlFree(ctxt);
416}
417
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000418/**
Daniel Veillard98485322003-08-14 15:44:40 +0000419 * xmlXIncludeParseFile:
420 * @ctxt: the XInclude context
421 * @URL: the URL or file path
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800422 *
William M. Brack72ee48d2003-12-30 08:30:19 +0000423 * parse a document for XInclude
Daniel Veillard98485322003-08-14 15:44:40 +0000424 */
425static xmlDocPtr
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000426xmlXIncludeParseFile(xmlXIncludeCtxtPtr ctxt, const char *URL) {
Daniel Veillard98485322003-08-14 15:44:40 +0000427 xmlDocPtr ret;
428 xmlParserCtxtPtr pctxt;
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000429 xmlParserInputPtr inputStream;
Daniel Veillard98485322003-08-14 15:44:40 +0000430
431 xmlInitParser();
432
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000433 pctxt = xmlNewParserCtxt();
Daniel Veillard98485322003-08-14 15:44:40 +0000434 if (pctxt == NULL) {
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000435 xmlXIncludeErrMemory(ctxt, NULL, "cannot allocate parser context");
Daniel Veillard98485322003-08-14 15:44:40 +0000436 return(NULL);
437 }
Daniel Veillard681e9042006-09-29 09:16:00 +0000438
439 /*
440 * pass in the application data to the parser context.
441 */
442 pctxt->_private = ctxt->_private;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800443
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000444 /*
William M. Brack72ee48d2003-12-30 08:30:19 +0000445 * try to ensure that new documents included are actually
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000446 * built with the same dictionary as the including document.
447 */
Daniel Veillardcb6f5252009-08-25 19:24:15 +0200448 if ((ctxt->doc != NULL) && (ctxt->doc->dict != NULL)) {
449 if (pctxt->dict != NULL)
450 xmlDictFree(pctxt->dict);
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000451 pctxt->dict = ctxt->doc->dict;
452 xmlDictReference(pctxt->dict);
453 }
454
455 xmlCtxtUseOptions(pctxt, ctxt->parseFlags | XML_PARSE_DTDLOAD);
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800456
Haibo Huangcfd91dc2020-07-30 23:01:33 -0700457 /* Don't read from stdin. */
458 if ((URL != NULL) && (strcmp(URL, "-") == 0))
459 URL = "./-";
460
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000461 inputStream = xmlLoadExternalEntity(URL, NULL, pctxt);
462 if (inputStream == NULL) {
463 xmlFreeParserCtxt(pctxt);
464 return(NULL);
465 }
466
467 inputPush(pctxt, inputStream);
Daniel Veillard98485322003-08-14 15:44:40 +0000468
Daniel Veillard37d2d162008-03-14 10:54:00 +0000469 if (pctxt->directory == NULL)
470 pctxt->directory = xmlParserGetDirectory(URL);
Daniel Veillard98485322003-08-14 15:44:40 +0000471
William M. Bracka22da292005-02-12 01:08:22 +0000472 pctxt->loadsubset |= XML_DETECT_IDS;
Daniel Veillard98485322003-08-14 15:44:40 +0000473
474 xmlParseDocument(pctxt);
475
William M. Brack1ff42132003-12-31 14:05:15 +0000476 if (pctxt->wellFormed) {
Daniel Veillard98485322003-08-14 15:44:40 +0000477 ret = pctxt->myDoc;
William M. Brack1ff42132003-12-31 14:05:15 +0000478 }
Daniel Veillard98485322003-08-14 15:44:40 +0000479 else {
480 ret = NULL;
Daniel Veillard500a1de2004-03-22 15:22:58 +0000481 if (pctxt->myDoc != NULL)
Daniel Veillard4773df22004-01-23 13:15:13 +0000482 xmlFreeDoc(pctxt->myDoc);
Daniel Veillard98485322003-08-14 15:44:40 +0000483 pctxt->myDoc = NULL;
484 }
485 xmlFreeParserCtxt(pctxt);
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800486
Daniel Veillard98485322003-08-14 15:44:40 +0000487 return(ret);
488}
489
490/**
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000491 * xmlXIncludeAddNode:
492 * @ctxt: the XInclude context
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000493 * @cur: the new node
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800494 *
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000495 * Add a new node to process to an XInclude context
496 */
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000497static int
498xmlXIncludeAddNode(xmlXIncludeCtxtPtr ctxt, xmlNodePtr cur) {
499 xmlXIncludeRefPtr ref;
500 xmlURIPtr uri;
501 xmlChar *URL;
502 xmlChar *fragment = NULL;
503 xmlChar *href;
504 xmlChar *parse;
505 xmlChar *base;
506 xmlChar *URI;
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000507 int xml = 1, i; /* default Issue 64 */
508 int local = 0;
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000509
510
511 if (ctxt == NULL)
512 return(-1);
513 if (cur == NULL)
514 return(-1);
515
516#ifdef DEBUG_XINCLUDE
517 xmlGenericError(xmlGenericErrorContext, "Add node\n");
518#endif
519 /*
520 * read the attributes
521 */
Daniel Veillardb5fa0202003-12-08 17:41:29 +0000522 href = xmlXIncludeGetProp(ctxt, cur, XINCLUDE_HREF);
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000523 if (href == NULL) {
Daniel Veillardb5fa0202003-12-08 17:41:29 +0000524 href = xmlStrdup(BAD_CAST ""); /* @@@@ href is now optional */
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800525 if (href == NULL)
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000526 return(-1);
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000527 }
Daniel Veillardb242b082008-02-08 09:56:31 +0000528 if ((href[0] == '#') || (href[0] == 0))
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000529 local = 1;
Daniel Veillardb5fa0202003-12-08 17:41:29 +0000530 parse = xmlXIncludeGetProp(ctxt, cur, XINCLUDE_PARSE);
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000531 if (parse != NULL) {
532 if (xmlStrEqual(parse, XINCLUDE_PARSE_XML))
533 xml = 1;
534 else if (xmlStrEqual(parse, XINCLUDE_PARSE_TEXT))
535 xml = 0;
536 else {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000537 xmlXIncludeErr(ctxt, cur, XML_XINCLUDE_PARSE_VALUE,
538 "invalid value %s for 'parse'\n", parse);
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000539 if (href != NULL)
540 xmlFree(href);
541 if (parse != NULL)
542 xmlFree(parse);
543 return(-1);
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000544 }
545 }
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000546
547 /*
548 * compute the URI
549 */
550 base = xmlNodeGetBase(ctxt->doc, cur);
551 if (base == NULL) {
552 URI = xmlBuildURI(href, ctxt->doc->URL);
553 } else {
554 URI = xmlBuildURI(href, base);
555 }
556 if (URI == NULL) {
557 xmlChar *escbase;
558 xmlChar *eschref;
559 /*
560 * Some escaping may be needed
561 */
562 escbase = xmlURIEscape(base);
563 eschref = xmlURIEscape(href);
564 URI = xmlBuildURI(eschref, escbase);
565 if (escbase != NULL)
566 xmlFree(escbase);
567 if (eschref != NULL)
568 xmlFree(eschref);
569 }
570 if (parse != NULL)
571 xmlFree(parse);
572 if (href != NULL)
573 xmlFree(href);
574 if (base != NULL)
575 xmlFree(base);
576 if (URI == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000577 xmlXIncludeErr(ctxt, cur, XML_XINCLUDE_HREF_URI,
578 "failed build URL\n", NULL);
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000579 return(-1);
580 }
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000581 fragment = xmlXIncludeGetProp(ctxt, cur, XINCLUDE_PARSE_XPOINTER);
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000582
583 /*
584 * Check the URL and remove any fragment identifier
585 */
586 uri = xmlParseURI((const char *)URI);
587 if (uri == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000588 xmlXIncludeErr(ctxt, cur, XML_XINCLUDE_HREF_URI,
589 "invalid value URI %s\n", URI);
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000590 if (fragment != NULL)
591 xmlFree(fragment);
592 xmlFree(URI);
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000593 return(-1);
594 }
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000595
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000596 if (uri->fragment != NULL) {
Daniel Veillarde74d2e12003-12-09 11:35:37 +0000597 if (ctxt->legacy != 0) {
598 if (fragment == NULL) {
599 fragment = (xmlChar *) uri->fragment;
600 } else {
601 xmlFree(uri->fragment);
602 }
603 } else {
604 xmlXIncludeErr(ctxt, cur, XML_XINCLUDE_FRAGMENT_ID,
605 "Invalid fragment identifier in URI %s use the xpointer attribute\n",
606 URI);
607 if (fragment != NULL)
608 xmlFree(fragment);
609 xmlFreeURI(uri);
610 xmlFree(URI);
611 return(-1);
612 }
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000613 uri->fragment = NULL;
614 }
615 URL = xmlSaveUri(uri);
616 xmlFreeURI(uri);
617 xmlFree(URI);
618 if (URL == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000619 xmlXIncludeErr(ctxt, cur, XML_XINCLUDE_HREF_URI,
620 "invalid value URI %s\n", URI);
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000621 if (fragment != NULL)
622 xmlFree(fragment);
623 return(-1);
624 }
625
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000626 /*
Daniel Veillardb242b082008-02-08 09:56:31 +0000627 * If local and xml then we need a fragment
628 */
629 if ((local == 1) && (xml == 1) &&
630 ((fragment == NULL) || (fragment[0] == 0))) {
631 xmlXIncludeErr(ctxt, cur, XML_XINCLUDE_RECURSION,
632 "detected a local recursion with no xpointer in %s\n",
633 URL);
Haibo Huangf0a546b2020-09-01 20:28:19 -0700634 xmlFree(URL);
635 xmlFree(fragment);
Daniel Veillardb242b082008-02-08 09:56:31 +0000636 return(-1);
637 }
638
639 /*
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000640 * Check the URL against the stack for recursions
641 */
Daniel Veillardbf630c02006-06-06 08:21:41 +0000642 if ((!local) && (xml == 1)) {
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000643 for (i = 0;i < ctxt->urlNr;i++) {
644 if (xmlStrEqual(URL, ctxt->urlTab[i])) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000645 xmlXIncludeErr(ctxt, cur, XML_XINCLUDE_RECURSION,
646 "detected a recursion in %s\n", URL);
Haibo Huangf0a546b2020-09-01 20:28:19 -0700647 xmlFree(URL);
648 xmlFree(fragment);
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000649 return(-1);
650 }
651 }
652 }
653
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000654 ref = xmlXIncludeNewRef(ctxt, URL, cur);
Haibo Huangf0a546b2020-09-01 20:28:19 -0700655 xmlFree(URL);
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000656 if (ref == NULL) {
657 return(-1);
658 }
659 ref->fragment = fragment;
660 ref->doc = NULL;
661 ref->xml = xml;
662 ref->count = 1;
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000663 return(0);
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000664}
665
666/**
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000667 * xmlXIncludeRecurseDoc:
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000668 * @ctxt: the XInclude context
669 * @doc: the new document
670 * @url: the associated URL
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800671 *
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000672 * The XInclude recursive nature is handled at this point.
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000673 */
674static void
Daniel Veillard118aed72002-09-24 14:13:13 +0000675xmlXIncludeRecurseDoc(xmlXIncludeCtxtPtr ctxt, xmlDocPtr doc,
Daniel Veillarddda8f1b2002-09-26 09:47:36 +0000676 const xmlURL url ATTRIBUTE_UNUSED) {
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000677 xmlXIncludeCtxtPtr newctxt;
678 int i;
679
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000680 /*
Haibo Huangcfd91dc2020-07-30 23:01:33 -0700681 * Avoid recursion in already substituted resources
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000682 for (i = 0;i < ctxt->urlNr;i++) {
683 if (xmlStrEqual(doc->URL, ctxt->urlTab[i]))
684 return;
685 }
686 */
687
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000688#ifdef DEBUG_XINCLUDE
689 xmlGenericError(xmlGenericErrorContext, "Recursing in doc %s\n", doc->URL);
690#endif
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000691 /*
692 * Handle recursion here.
693 */
694
695 newctxt = xmlXIncludeNewContext(doc);
696 if (newctxt != NULL) {
697 /*
Daniel Veillarda6585822006-12-04 09:21:28 +0000698 * Copy the private user data
699 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800700 newctxt->_private = ctxt->_private;
Daniel Veillarda6585822006-12-04 09:21:28 +0000701 /*
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000702 * Copy the existing document set
703 */
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000704 newctxt->incMax = ctxt->incMax;
705 newctxt->incNr = ctxt->incNr;
706 newctxt->incTab = (xmlXIncludeRefPtr *) xmlMalloc(newctxt->incMax *
707 sizeof(newctxt->incTab[0]));
708 if (newctxt->incTab == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000709 xmlXIncludeErrMemory(ctxt, (xmlNodePtr) doc, "processing doc");
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000710 xmlFree(newctxt);
711 return;
712 }
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000713 /*
714 * copy the urlTab
715 */
716 newctxt->urlMax = ctxt->urlMax;
717 newctxt->urlNr = ctxt->urlNr;
718 newctxt->urlTab = ctxt->urlTab;
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000719
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000720 /*
William M. Brackf7789b12004-06-07 08:57:27 +0000721 * Inherit the existing base
722 */
Daniel Veillardce244ad2004-11-05 10:03:46 +0000723 newctxt->base = xmlStrdup(ctxt->base);
William M. Brackf7789b12004-06-07 08:57:27 +0000724
725 /*
William M. Brack72ee48d2003-12-30 08:30:19 +0000726 * Inherit the documents already in use by other includes
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000727 */
728 newctxt->incBase = ctxt->incNr;
729 for (i = 0;i < ctxt->incNr;i++) {
730 newctxt->incTab[i] = ctxt->incTab[i];
731 newctxt->incTab[i]->count++; /* prevent the recursion from
732 freeing it */
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000733 }
William M. Bracka11e4832004-03-07 11:03:43 +0000734 /*
735 * The new context should also inherit the Parse Flags
736 * (bug 132597)
737 */
738 newctxt->parseFlags = ctxt->parseFlags;
Haibo Huangf0a546b2020-09-01 20:28:19 -0700739 newctxt->incTotal = ctxt->incTotal;
740 xmlXIncludeDoProcess(newctxt, doc, xmlDocGetRootElement(doc), 0);
741 ctxt->incTotal = newctxt->incTotal;
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000742 for (i = 0;i < ctxt->incNr;i++) {
743 newctxt->incTab[i]->count--;
744 newctxt->incTab[i] = NULL;
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000745 }
Daniel Veillardd9b72832003-03-27 14:24:00 +0000746
747 /* urlTab may have been reallocated */
748 ctxt->urlTab = newctxt->urlTab;
749 ctxt->urlMax = newctxt->urlMax;
750
Daniel Veillardf4b4f982003-02-13 11:02:08 +0000751 newctxt->urlMax = 0;
752 newctxt->urlNr = 0;
753 newctxt->urlTab = NULL;
754
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000755 xmlXIncludeFreeContext(newctxt);
756 }
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000757#ifdef DEBUG_XINCLUDE
758 xmlGenericError(xmlGenericErrorContext, "Done recursing in doc %s\n", url);
759#endif
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000760}
761
762/**
763 * xmlXIncludeAddTxt:
764 * @ctxt: the XInclude context
765 * @txt: the new text node
766 * @url: the associated URL
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800767 *
Haibo Huangcfd91dc2020-07-30 23:01:33 -0700768 * Add a new text node to the list
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000769 */
770static void
Haibo Huangd23e46c2020-10-28 22:26:09 -0700771xmlXIncludeAddTxt(xmlXIncludeCtxtPtr ctxt, const xmlChar *txt,
772 const xmlURL url) {
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000773#ifdef DEBUG_XINCLUDE
774 xmlGenericError(xmlGenericErrorContext, "Adding text %s\n", url);
775#endif
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000776 if (ctxt->txtMax == 0) {
777 ctxt->txtMax = 4;
Haibo Huangd23e46c2020-10-28 22:26:09 -0700778 ctxt->txtTab = (xmlChar **) xmlMalloc(ctxt->txtMax *
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000779 sizeof(ctxt->txtTab[0]));
780 if (ctxt->txtTab == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000781 xmlXIncludeErrMemory(ctxt, NULL, "processing text");
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000782 return;
783 }
784 ctxt->txturlTab = (xmlURL *) xmlMalloc(ctxt->txtMax *
785 sizeof(ctxt->txturlTab[0]));
786 if (ctxt->txturlTab == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000787 xmlXIncludeErrMemory(ctxt, NULL, "processing text");
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000788 return;
789 }
790 }
791 if (ctxt->txtNr >= ctxt->txtMax) {
792 ctxt->txtMax *= 2;
Haibo Huangd23e46c2020-10-28 22:26:09 -0700793 ctxt->txtTab = (xmlChar **) xmlRealloc(ctxt->txtTab,
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000794 ctxt->txtMax * sizeof(ctxt->txtTab[0]));
795 if (ctxt->txtTab == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000796 xmlXIncludeErrMemory(ctxt, NULL, "processing text");
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000797 return;
798 }
799 ctxt->txturlTab = (xmlURL *) xmlRealloc(ctxt->txturlTab,
Daniel Veillardbbc72c32002-09-05 10:52:10 +0000800 ctxt->txtMax * sizeof(ctxt->txturlTab[0]));
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000801 if (ctxt->txturlTab == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +0000802 xmlXIncludeErrMemory(ctxt, NULL, "processing text");
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000803 return;
804 }
805 }
Haibo Huangd23e46c2020-10-28 22:26:09 -0700806 ctxt->txtTab[ctxt->txtNr] = xmlStrdup(txt);
Daniel Veillardd16df9f2001-05-23 13:44:21 +0000807 ctxt->txturlTab[ctxt->txtNr] = xmlStrdup(url);
808 ctxt->txtNr++;
809}
810
Owen Taylor3473f882001-02-23 17:55:21 +0000811/************************************************************************
812 * *
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000813 * Node copy with specific semantic *
814 * *
815 ************************************************************************/
816
Daniel Veillardcb6f5252009-08-25 19:24:15 +0200817static xmlNodePtr
818xmlXIncludeCopyNodeList(xmlXIncludeCtxtPtr ctxt, xmlDocPtr target,
819 xmlDocPtr source, xmlNodePtr elem);
820
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000821/**
822 * xmlXIncludeCopyNode:
823 * @ctxt: the XInclude context
824 * @target: the document target
825 * @source: the document source
826 * @elem: the element
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800827 *
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000828 * Make a copy of the node while preserving the XInclude semantic
829 * of the Infoset copy
830 */
831static xmlNodePtr
832xmlXIncludeCopyNode(xmlXIncludeCtxtPtr ctxt, xmlDocPtr target,
833 xmlDocPtr source, xmlNodePtr elem) {
834 xmlNodePtr result = NULL;
835
836 if ((ctxt == NULL) || (target == NULL) || (source == NULL) ||
837 (elem == NULL))
838 return(NULL);
839 if (elem->type == XML_DTD_NODE)
840 return(NULL);
Daniel Veillardcb6f5252009-08-25 19:24:15 +0200841 if (elem->type == XML_DOCUMENT_NODE)
842 result = xmlXIncludeCopyNodeList(ctxt, target, source, elem->children);
843 else
844 result = xmlDocCopyNode(elem, target, 1);
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000845 return(result);
846}
847
848/**
849 * xmlXIncludeCopyNodeList:
850 * @ctxt: the XInclude context
851 * @target: the document target
852 * @source: the document source
853 * @elem: the element list
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800854 *
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000855 * Make a copy of the node list while preserving the XInclude semantic
856 * of the Infoset copy
857 */
858static xmlNodePtr
859xmlXIncludeCopyNodeList(xmlXIncludeCtxtPtr ctxt, xmlDocPtr target,
860 xmlDocPtr source, xmlNodePtr elem) {
861 xmlNodePtr cur, res, result = NULL, last = NULL;
862
863 if ((ctxt == NULL) || (target == NULL) || (source == NULL) ||
864 (elem == NULL))
865 return(NULL);
866 cur = elem;
867 while (cur != NULL) {
868 res = xmlXIncludeCopyNode(ctxt, target, source, cur);
869 if (res != NULL) {
870 if (result == NULL) {
871 result = last = res;
872 } else {
873 last->next = res;
874 res->prev = last;
875 last = res;
876 }
877 }
878 cur = cur->next;
879 }
880 return(result);
881}
882
883/**
William M. Brack72ee48d2003-12-30 08:30:19 +0000884 * xmlXIncludeGetNthChild:
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000885 * @cur: the node
886 * @no: the child number
887 *
William M. Brack72ee48d2003-12-30 08:30:19 +0000888 * Returns the @n'th element child of @cur or NULL
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000889 */
890static xmlNodePtr
891xmlXIncludeGetNthChild(xmlNodePtr cur, int no) {
892 int i;
Daniel Veillard3e62adb2012-08-09 14:24:02 +0800893 if ((cur == NULL) || (cur->type == XML_NAMESPACE_DECL))
894 return(NULL);
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000895 cur = cur->children;
896 for (i = 0;i <= no;cur = cur->next) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800897 if (cur == NULL)
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000898 return(cur);
899 if ((cur->type == XML_ELEMENT_NODE) ||
900 (cur->type == XML_DOCUMENT_NODE) ||
901 (cur->type == XML_HTML_DOCUMENT_NODE)) {
902 i++;
903 if (i == no)
904 break;
905 }
906 }
907 return(cur);
908}
909
William M. Brackf7eb7942003-12-31 07:59:17 +0000910xmlNodePtr xmlXPtrAdvanceNode(xmlNodePtr cur, int *level); /* in xpointer.c */
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000911/**
912 * xmlXIncludeCopyRange:
913 * @ctxt: the XInclude context
914 * @target: the document target
915 * @source: the document source
916 * @obj: the XPointer result from the evaluation.
917 *
918 * Build a node list tree copy of the XPointer result.
919 *
920 * Returns an xmlNodePtr list or NULL.
William M. Brack72ee48d2003-12-30 08:30:19 +0000921 * The caller has to free the node tree.
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000922 */
923static xmlNodePtr
924xmlXIncludeCopyRange(xmlXIncludeCtxtPtr ctxt, xmlDocPtr target,
925 xmlDocPtr source, xmlXPathObjectPtr range) {
926 /* pointers to generated nodes */
William M. Brackf7eb7942003-12-31 07:59:17 +0000927 xmlNodePtr list = NULL, last = NULL, listParent = NULL;
928 xmlNodePtr tmp, tmp2;
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000929 /* pointers to traversal nodes */
930 xmlNodePtr start, cur, end;
931 int index1, index2;
William M. Brack6bdacd72004-02-07 08:53:23 +0000932 int level = 0, lastLevel = 0, endLevel = 0, endFlag = 0;
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000933
934 if ((ctxt == NULL) || (target == NULL) || (source == NULL) ||
935 (range == NULL))
936 return(NULL);
937 if (range->type != XPATH_RANGE)
938 return(NULL);
939 start = (xmlNodePtr) range->user;
940
Daniel Veillard3e62adb2012-08-09 14:24:02 +0800941 if ((start == NULL) || (start->type == XML_NAMESPACE_DECL))
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000942 return(NULL);
943 end = range->user2;
944 if (end == NULL)
945 return(xmlDocCopyNode(start, target, 1));
Daniel Veillard3e62adb2012-08-09 14:24:02 +0800946 if (end->type == XML_NAMESPACE_DECL)
947 return(NULL);
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000948
949 cur = start;
950 index1 = range->index;
951 index2 = range->index2;
William M. Brackf7eb7942003-12-31 07:59:17 +0000952 /*
953 * level is depth of the current node under consideration
954 * list is the pointer to the root of the output tree
955 * listParent is a pointer to the parent of output tree (within
956 the included file) in case we need to add another level
957 * last is a pointer to the last node added to the output tree
958 * lastLevel is the depth of last (relative to the root)
959 */
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000960 while (cur != NULL) {
William M. Brackf7eb7942003-12-31 07:59:17 +0000961 /*
962 * Check if our output tree needs a parent
963 */
964 if (level < 0) {
965 while (level < 0) {
William M. Brack57e9e912004-03-09 16:19:02 +0000966 /* copy must include namespaces and properties */
967 tmp2 = xmlDocCopyNode(listParent, target, 2);
William M. Brackf7eb7942003-12-31 07:59:17 +0000968 xmlAddChild(tmp2, list);
969 list = tmp2;
970 listParent = listParent->parent;
971 level++;
972 }
973 last = list;
974 lastLevel = 0;
975 }
976 /*
977 * Check whether we need to change our insertion point
978 */
979 while (level < lastLevel) {
980 last = last->parent;
981 lastLevel --;
982 }
William M. Brack72ee48d2003-12-30 08:30:19 +0000983 if (cur == end) { /* Are we at the end of the range? */
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000984 if (cur->type == XML_TEXT_NODE) {
985 const xmlChar *content = cur->content;
986 int len;
987
988 if (content == NULL) {
989 tmp = xmlNewTextLen(NULL, 0);
990 } else {
991 len = index2;
992 if ((cur == start) && (index1 > 1)) {
993 content += (index1 - 1);
994 len -= (index1 - 1);
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000995 } else {
996 len = index2;
997 }
998 tmp = xmlNewTextLen(content, len);
999 }
1000 /* single sub text node selection */
1001 if (list == NULL)
1002 return(tmp);
1003 /* prune and return full set */
William M. Brackf7eb7942003-12-31 07:59:17 +00001004 if (level == lastLevel)
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001005 xmlAddNextSibling(last, tmp);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001006 else
William M. Brackf7eb7942003-12-31 07:59:17 +00001007 xmlAddChild(last, tmp);
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001008 return(list);
William M. Brack72ee48d2003-12-30 08:30:19 +00001009 } else { /* ending node not a text node */
William M. Brack6bdacd72004-02-07 08:53:23 +00001010 endLevel = level; /* remember the level of the end node */
1011 endFlag = 1;
William M. Brack57e9e912004-03-09 16:19:02 +00001012 /* last node - need to take care of properties + namespaces */
1013 tmp = xmlDocCopyNode(cur, target, 2);
William M. Brackf7eb7942003-12-31 07:59:17 +00001014 if (list == NULL) {
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001015 list = tmp;
William M. Brackf7eb7942003-12-31 07:59:17 +00001016 listParent = cur->parent;
1017 } else {
1018 if (level == lastLevel)
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001019 xmlAddNextSibling(last, tmp);
William M. Brackf7eb7942003-12-31 07:59:17 +00001020 else {
1021 xmlAddChild(last, tmp);
1022 lastLevel = level;
1023 }
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001024 }
William M. Brackf7eb7942003-12-31 07:59:17 +00001025 last = tmp;
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001026
1027 if (index2 > 1) {
1028 end = xmlXIncludeGetNthChild(cur, index2 - 1);
1029 index2 = 0;
1030 }
1031 if ((cur == start) && (index1 > 1)) {
1032 cur = xmlXIncludeGetNthChild(cur, index1 - 1);
1033 index1 = 0;
William M. Brack6bdacd72004-02-07 08:53:23 +00001034 } else {
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001035 cur = cur->children;
1036 }
William M. Brack6bdacd72004-02-07 08:53:23 +00001037 level++; /* increment level to show change */
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001038 /*
1039 * Now gather the remaining nodes from cur to end
1040 */
William M. Brack6bdacd72004-02-07 08:53:23 +00001041 continue; /* while */
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001042 }
William M. Brackf7eb7942003-12-31 07:59:17 +00001043 } else if (cur == start) { /* Not at the end, are we at start? */
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001044 if ((cur->type == XML_TEXT_NODE) ||
1045 (cur->type == XML_CDATA_SECTION_NODE)) {
1046 const xmlChar *content = cur->content;
1047
1048 if (content == NULL) {
1049 tmp = xmlNewTextLen(NULL, 0);
1050 } else {
1051 if (index1 > 1) {
1052 content += (index1 - 1);
William M. Brack72ee48d2003-12-30 08:30:19 +00001053 index1 = 0;
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001054 }
1055 tmp = xmlNewText(content);
1056 }
1057 last = list = tmp;
William M. Brackf7eb7942003-12-31 07:59:17 +00001058 listParent = cur->parent;
William M. Brack72ee48d2003-12-30 08:30:19 +00001059 } else { /* Not text node */
William M. Brack57e9e912004-03-09 16:19:02 +00001060 /*
1061 * start of the range - need to take care of
1062 * properties and namespaces
1063 */
1064 tmp = xmlDocCopyNode(cur, target, 2);
William M. Brackf7eb7942003-12-31 07:59:17 +00001065 list = last = tmp;
1066 listParent = cur->parent;
William M. Brack72ee48d2003-12-30 08:30:19 +00001067 if (index1 > 1) { /* Do we need to position? */
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001068 cur = xmlXIncludeGetNthChild(cur, index1 - 1);
William M. Brackf7eb7942003-12-31 07:59:17 +00001069 level = lastLevel = 1;
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001070 index1 = 0;
1071 /*
1072 * Now gather the remaining nodes from cur to end
1073 */
1074 continue; /* while */
1075 }
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001076 }
1077 } else {
1078 tmp = NULL;
1079 switch (cur->type) {
1080 case XML_DTD_NODE:
1081 case XML_ELEMENT_DECL:
1082 case XML_ATTRIBUTE_DECL:
1083 case XML_ENTITY_NODE:
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001084 /* Do not copy DTD information */
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001085 break;
1086 case XML_ENTITY_DECL:
1087 /* handle crossing entities -> stack needed */
1088 break;
1089 case XML_XINCLUDE_START:
1090 case XML_XINCLUDE_END:
1091 /* don't consider it part of the tree content */
1092 break;
1093 case XML_ATTRIBUTE_NODE:
1094 /* Humm, should not happen ! */
1095 break;
1096 default:
William M. Brack57e9e912004-03-09 16:19:02 +00001097 /*
1098 * Middle of the range - need to take care of
1099 * properties and namespaces
1100 */
1101 tmp = xmlDocCopyNode(cur, target, 2);
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001102 break;
1103 }
1104 if (tmp != NULL) {
William M. Brackf7eb7942003-12-31 07:59:17 +00001105 if (level == lastLevel)
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001106 xmlAddNextSibling(last, tmp);
1107 else {
William M. Brackf7eb7942003-12-31 07:59:17 +00001108 xmlAddChild(last, tmp);
1109 lastLevel = level;
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001110 }
William M. Brackf7eb7942003-12-31 07:59:17 +00001111 last = tmp;
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001112 }
1113 }
1114 /*
1115 * Skip to next node in document order
1116 */
William M. Brackf7eb7942003-12-31 07:59:17 +00001117 cur = xmlXPtrAdvanceNode(cur, &level);
William M. Brack6bdacd72004-02-07 08:53:23 +00001118 if (endFlag && (level >= endLevel))
1119 break;
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001120 }
1121 return(list);
1122}
1123
1124/**
1125 * xmlXIncludeBuildNodeList:
1126 * @ctxt: the XInclude context
1127 * @target: the document target
1128 * @source: the document source
1129 * @obj: the XPointer result from the evaluation.
1130 *
1131 * Build a node list tree copy of the XPointer result.
1132 * This will drop Attributes and Namespace declarations.
1133 *
1134 * Returns an xmlNodePtr list or NULL.
1135 * the caller has to free the node tree.
1136 */
1137static xmlNodePtr
1138xmlXIncludeCopyXPointer(xmlXIncludeCtxtPtr ctxt, xmlDocPtr target,
1139 xmlDocPtr source, xmlXPathObjectPtr obj) {
1140 xmlNodePtr list = NULL, last = NULL;
1141 int i;
1142
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001143 if (source == NULL)
1144 source = ctxt->doc;
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001145 if ((ctxt == NULL) || (target == NULL) || (source == NULL) ||
1146 (obj == NULL))
1147 return(NULL);
1148 switch (obj->type) {
1149 case XPATH_NODESET: {
1150 xmlNodeSetPtr set = obj->nodesetval;
1151 if (set == NULL)
1152 return(NULL);
1153 for (i = 0;i < set->nodeNr;i++) {
1154 if (set->nodeTab[i] == NULL)
1155 continue;
1156 switch (set->nodeTab[i]->type) {
1157 case XML_TEXT_NODE:
1158 case XML_CDATA_SECTION_NODE:
1159 case XML_ELEMENT_NODE:
1160 case XML_ENTITY_REF_NODE:
1161 case XML_ENTITY_NODE:
1162 case XML_PI_NODE:
1163 case XML_COMMENT_NODE:
1164 case XML_DOCUMENT_NODE:
1165 case XML_HTML_DOCUMENT_NODE:
1166#ifdef LIBXML_DOCB_ENABLED
1167 case XML_DOCB_DOCUMENT_NODE:
1168#endif
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001169 case XML_XINCLUDE_END:
1170 break;
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001171 case XML_XINCLUDE_START: {
1172 xmlNodePtr tmp, cur = set->nodeTab[i];
1173
1174 cur = cur->next;
1175 while (cur != NULL) {
1176 switch(cur->type) {
1177 case XML_TEXT_NODE:
1178 case XML_CDATA_SECTION_NODE:
1179 case XML_ELEMENT_NODE:
1180 case XML_ENTITY_REF_NODE:
1181 case XML_ENTITY_NODE:
1182 case XML_PI_NODE:
1183 case XML_COMMENT_NODE:
1184 tmp = xmlXIncludeCopyNode(ctxt, target,
1185 source, cur);
1186 if (last == NULL) {
1187 list = last = tmp;
1188 } else {
1189 xmlAddNextSibling(last, tmp);
1190 last = tmp;
1191 }
1192 cur = cur->next;
1193 continue;
1194 default:
1195 break;
1196 }
1197 break;
1198 }
1199 continue;
1200 }
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001201 case XML_ATTRIBUTE_NODE:
1202 case XML_NAMESPACE_DECL:
1203 case XML_DOCUMENT_TYPE_NODE:
1204 case XML_DOCUMENT_FRAG_NODE:
1205 case XML_NOTATION_NODE:
1206 case XML_DTD_NODE:
1207 case XML_ELEMENT_DECL:
1208 case XML_ATTRIBUTE_DECL:
1209 case XML_ENTITY_DECL:
1210 continue; /* for */
1211 }
1212 if (last == NULL)
1213 list = last = xmlXIncludeCopyNode(ctxt, target, source,
1214 set->nodeTab[i]);
1215 else {
1216 xmlAddNextSibling(last,
1217 xmlXIncludeCopyNode(ctxt, target, source,
1218 set->nodeTab[i]));
1219 if (last->next != NULL)
1220 last = last->next;
1221 }
1222 }
1223 break;
1224 }
Nicolas Le Cam41586ca2013-06-17 13:01:33 +02001225#ifdef LIBXML_XPTR_ENABLED
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001226 case XPATH_LOCATIONSET: {
1227 xmlLocationSetPtr set = (xmlLocationSetPtr) obj->user;
1228 if (set == NULL)
1229 return(NULL);
1230 for (i = 0;i < set->locNr;i++) {
1231 if (last == NULL)
1232 list = last = xmlXIncludeCopyXPointer(ctxt, target, source,
1233 set->locTab[i]);
1234 else
1235 xmlAddNextSibling(last,
1236 xmlXIncludeCopyXPointer(ctxt, target, source,
1237 set->locTab[i]));
1238 if (last != NULL) {
1239 while (last->next != NULL)
1240 last = last->next;
1241 }
1242 }
1243 break;
1244 }
1245 case XPATH_RANGE:
1246 return(xmlXIncludeCopyRange(ctxt, target, source, obj));
Daniel Veillard10acc2f2003-09-01 20:59:40 +00001247#endif
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00001248 case XPATH_POINT:
1249 /* points are ignored in XInclude */
1250 break;
1251 default:
1252 break;
1253 }
1254 return(list);
1255}
1256/************************************************************************
1257 * *
Owen Taylor3473f882001-02-23 17:55:21 +00001258 * XInclude I/O handling *
1259 * *
1260 ************************************************************************/
1261
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001262typedef struct _xmlXIncludeMergeData xmlXIncludeMergeData;
1263typedef xmlXIncludeMergeData *xmlXIncludeMergeDataPtr;
1264struct _xmlXIncludeMergeData {
1265 xmlDocPtr doc;
1266 xmlXIncludeCtxtPtr ctxt;
1267};
1268
Owen Taylor3473f882001-02-23 17:55:21 +00001269/**
Daniel Veillard4287c572003-02-04 22:48:53 +00001270 * xmlXIncludeMergeOneEntity:
1271 * @ent: the entity
1272 * @doc: the including doc
1273 * @nr: the entity name
1274 *
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001275 * Implements the merge of one entity
Daniel Veillard4287c572003-02-04 22:48:53 +00001276 */
1277static void
Nick Wellnhofere03f0a12017-11-09 16:42:47 +01001278xmlXIncludeMergeEntity(void *payload, void *vdata,
1279 const xmlChar *name ATTRIBUTE_UNUSED) {
1280 xmlEntityPtr ent = (xmlEntityPtr) payload;
1281 xmlXIncludeMergeDataPtr data = (xmlXIncludeMergeDataPtr) vdata;
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001282 xmlEntityPtr ret, prev;
1283 xmlDocPtr doc;
1284 xmlXIncludeCtxtPtr ctxt;
Daniel Veillard4287c572003-02-04 22:48:53 +00001285
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001286 if ((ent == NULL) || (data == NULL))
Daniel Veillard4287c572003-02-04 22:48:53 +00001287 return;
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001288 ctxt = data->ctxt;
1289 doc = data->doc;
1290 if ((ctxt == NULL) || (doc == NULL))
1291 return;
1292 switch (ent->etype) {
1293 case XML_INTERNAL_PARAMETER_ENTITY:
1294 case XML_EXTERNAL_PARAMETER_ENTITY:
1295 case XML_INTERNAL_PREDEFINED_ENTITY:
1296 return;
1297 case XML_INTERNAL_GENERAL_ENTITY:
1298 case XML_EXTERNAL_GENERAL_PARSED_ENTITY:
1299 case XML_EXTERNAL_GENERAL_UNPARSED_ENTITY:
1300 break;
1301 }
Daniel Veillard4287c572003-02-04 22:48:53 +00001302 ret = xmlAddDocEntity(doc, ent->name, ent->etype, ent->ExternalID,
1303 ent->SystemID, ent->content);
1304 if (ret != NULL) {
1305 if (ent->URI != NULL)
1306 ret->URI = xmlStrdup(ent->URI);
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001307 } else {
1308 prev = xmlGetDocEntity(doc, ent->name);
1309 if (prev != NULL) {
1310 if (ent->etype != prev->etype)
1311 goto error;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001312
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001313 if ((ent->SystemID != NULL) && (prev->SystemID != NULL)) {
1314 if (!xmlStrEqual(ent->SystemID, prev->SystemID))
1315 goto error;
Daniel Veillardb6c7f412003-03-29 16:41:55 +00001316 } else if ((ent->ExternalID != NULL) &&
1317 (prev->ExternalID != NULL)) {
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001318 if (!xmlStrEqual(ent->ExternalID, prev->ExternalID))
1319 goto error;
Daniel Veillard2406abd2003-02-24 18:16:47 +00001320 } else if ((ent->content != NULL) && (prev->content != NULL)) {
1321 if (!xmlStrEqual(ent->content, prev->content))
1322 goto error;
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001323 } else {
1324 goto error;
1325 }
1326
1327 }
Daniel Veillard4287c572003-02-04 22:48:53 +00001328 }
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001329 return;
1330error:
Daniel Veillarda507fbf2003-03-31 16:09:37 +00001331 switch (ent->etype) {
1332 case XML_INTERNAL_PARAMETER_ENTITY:
1333 case XML_EXTERNAL_PARAMETER_ENTITY:
1334 case XML_INTERNAL_PREDEFINED_ENTITY:
1335 case XML_INTERNAL_GENERAL_ENTITY:
1336 case XML_EXTERNAL_GENERAL_PARSED_ENTITY:
1337 return;
1338 case XML_EXTERNAL_GENERAL_UNPARSED_ENTITY:
1339 break;
1340 }
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001341 xmlXIncludeErr(ctxt, (xmlNodePtr) ent, XML_XINCLUDE_ENTITY_DEF_MISMATCH,
1342 "mismatch in redefinition of entity %s\n",
1343 ent->name);
Daniel Veillard4287c572003-02-04 22:48:53 +00001344}
1345
1346/**
1347 * xmlXIncludeMergeEntities:
1348 * @ctxt: an XInclude context
1349 * @doc: the including doc
1350 * @from: the included doc
1351 *
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001352 * Implements the entity merge
Daniel Veillard4287c572003-02-04 22:48:53 +00001353 *
1354 * Returns 0 if merge succeeded, -1 if some processing failed
1355 */
1356static int
1357xmlXIncludeMergeEntities(xmlXIncludeCtxtPtr ctxt, xmlDocPtr doc,
1358 xmlDocPtr from) {
1359 xmlNodePtr cur;
1360 xmlDtdPtr target, source;
1361
1362 if (ctxt == NULL)
1363 return(-1);
1364
1365 if ((from == NULL) || (from->intSubset == NULL))
1366 return(0);
1367
1368 target = doc->intSubset;
1369 if (target == NULL) {
1370 cur = xmlDocGetRootElement(doc);
1371 if (cur == NULL)
1372 return(-1);
1373 target = xmlCreateIntSubset(doc, cur->name, NULL, NULL);
1374 if (target == NULL)
1375 return(-1);
1376 }
1377
1378 source = from->intSubset;
1379 if ((source != NULL) && (source->entities != NULL)) {
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001380 xmlXIncludeMergeData data;
1381
1382 data.ctxt = ctxt;
1383 data.doc = doc;
1384
Daniel Veillard4287c572003-02-04 22:48:53 +00001385 xmlHashScan((xmlHashTablePtr) source->entities,
Nick Wellnhofere03f0a12017-11-09 16:42:47 +01001386 xmlXIncludeMergeEntity, &data);
Daniel Veillard4287c572003-02-04 22:48:53 +00001387 }
1388 source = from->extSubset;
1389 if ((source != NULL) && (source->entities != NULL)) {
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001390 xmlXIncludeMergeData data;
1391
1392 data.ctxt = ctxt;
1393 data.doc = doc;
1394
Daniel Veillard4287c572003-02-04 22:48:53 +00001395 /*
1396 * don't duplicate existing stuff when external subsets are the same
1397 */
1398 if ((!xmlStrEqual(target->ExternalID, source->ExternalID)) &&
1399 (!xmlStrEqual(target->SystemID, source->SystemID))) {
1400 xmlHashScan((xmlHashTablePtr) source->entities,
Nick Wellnhofere03f0a12017-11-09 16:42:47 +01001401 xmlXIncludeMergeEntity, &data);
Daniel Veillard4287c572003-02-04 22:48:53 +00001402 }
1403 }
1404 return(0);
1405}
1406
1407/**
Owen Taylor3473f882001-02-23 17:55:21 +00001408 * xmlXIncludeLoadDoc:
1409 * @ctxt: the XInclude context
1410 * @url: the associated URL
1411 * @nr: the xinclude node number
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001412 *
Owen Taylor3473f882001-02-23 17:55:21 +00001413 * Load the document, and store the result in the XInclude context
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001414 *
1415 * Returns 0 in case of success, -1 in case of failure
Owen Taylor3473f882001-02-23 17:55:21 +00001416 */
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001417static int
Owen Taylor3473f882001-02-23 17:55:21 +00001418xmlXIncludeLoadDoc(xmlXIncludeCtxtPtr ctxt, const xmlChar *url, int nr) {
1419 xmlDocPtr doc;
1420 xmlURIPtr uri;
1421 xmlChar *URL;
1422 xmlChar *fragment = NULL;
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001423 int i = 0;
William M. Brack4d59e222004-03-08 14:42:31 +00001424#ifdef LIBXML_XPTR_ENABLED
1425 int saveFlags;
1426#endif
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001427
1428#ifdef DEBUG_XINCLUDE
1429 xmlGenericError(xmlGenericErrorContext, "Loading doc %s:%d\n", url, nr);
1430#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001431 /*
1432 * Check the URL and remove any fragment identifier
1433 */
1434 uri = xmlParseURI((const char *)url);
1435 if (uri == NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001436 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001437 XML_XINCLUDE_HREF_URI,
1438 "invalid value URI %s\n", url);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001439 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001440 }
1441 if (uri->fragment != NULL) {
1442 fragment = (xmlChar *) uri->fragment;
1443 uri->fragment = NULL;
1444 }
Daniel Veillardb98d0822003-12-24 11:06:25 +00001445 if ((ctxt->incTab != NULL) && (ctxt->incTab[nr] != NULL) &&
1446 (ctxt->incTab[nr]->fragment != NULL)) {
1447 if (fragment != NULL) xmlFree(fragment);
1448 fragment = xmlStrdup(ctxt->incTab[nr]->fragment);
1449 }
Owen Taylor3473f882001-02-23 17:55:21 +00001450 URL = xmlSaveUri(uri);
1451 xmlFreeURI(uri);
1452 if (URL == NULL) {
Daniel Veillard11ce4002006-03-10 00:36:23 +00001453 if (ctxt->incTab != NULL)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001454 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillard11ce4002006-03-10 00:36:23 +00001455 XML_XINCLUDE_HREF_URI,
1456 "invalid value URI %s\n", url);
1457 else
1458 xmlXIncludeErr(ctxt, NULL,
1459 XML_XINCLUDE_HREF_URI,
1460 "invalid value URI %s\n", url);
Owen Taylor3473f882001-02-23 17:55:21 +00001461 if (fragment != NULL)
1462 xmlFree(fragment);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001463 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001464 }
1465
1466 /*
1467 * Handling of references to the local document are done
1468 * directly through ctxt->doc.
1469 */
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001470 if ((URL[0] == 0) || (URL[0] == '#') ||
1471 ((ctxt->doc != NULL) && (xmlStrEqual(URL, ctxt->doc->URL)))) {
Haibo Huangf0a546b2020-09-01 20:28:19 -07001472 doc = ctxt->doc;
Owen Taylor3473f882001-02-23 17:55:21 +00001473 goto loaded;
1474 }
1475
1476 /*
1477 * Prevent reloading twice the document.
1478 */
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001479 for (i = 0; i < ctxt->incNr; i++) {
1480 if ((xmlStrEqual(URL, ctxt->incTab[i]->URI)) &&
1481 (ctxt->incTab[i]->doc != NULL)) {
1482 doc = ctxt->incTab[i]->doc;
1483#ifdef DEBUG_XINCLUDE
1484 printf("Already loaded %s\n", URL);
1485#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001486 goto loaded;
1487 }
1488 }
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001489
Owen Taylor3473f882001-02-23 17:55:21 +00001490 /*
1491 * Load it.
1492 */
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001493#ifdef DEBUG_XINCLUDE
1494 printf("loading %s\n", URL);
1495#endif
William M. Brack4d59e222004-03-08 14:42:31 +00001496#ifdef LIBXML_XPTR_ENABLED
1497 /*
1498 * If this is an XPointer evaluation, we want to assure that
1499 * all entities have been resolved prior to processing the
1500 * referenced document
1501 */
1502 saveFlags = ctxt->parseFlags;
1503 if (fragment != NULL) { /* if this is an XPointer eval */
1504 ctxt->parseFlags |= XML_PARSE_NOENT;
1505 }
1506#endif
1507
Daniel Veillard98485322003-08-14 15:44:40 +00001508 doc = xmlXIncludeParseFile(ctxt, (const char *)URL);
William M. Brack4d59e222004-03-08 14:42:31 +00001509#ifdef LIBXML_XPTR_ENABLED
1510 ctxt->parseFlags = saveFlags;
1511#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001512 if (doc == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001513 xmlFree(URL);
1514 if (fragment != NULL)
1515 xmlFree(fragment);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001516 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001517 }
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001518 ctxt->incTab[nr]->doc = doc;
William M. Brackb85c9202004-07-26 00:20:13 +00001519 /*
1520 * It's possible that the requested URL has been mapped to a
1521 * completely different location (e.g. through a catalog entry).
1522 * To check for this, we compare the URL with that of the doc
1523 * and change it if they disagree (bug 146988).
1524 */
1525 if (!xmlStrEqual(URL, doc->URL)) {
1526 xmlFree(URL);
1527 URL = xmlStrdup(doc->URL);
1528 }
Daniel Veillard98485322003-08-14 15:44:40 +00001529 for (i = nr + 1; i < ctxt->incNr; i++) {
1530 if (xmlStrEqual(URL, ctxt->incTab[i]->URI)) {
1531 ctxt->incTab[nr]->count++;
1532#ifdef DEBUG_XINCLUDE
1533 printf("Increasing %s count since reused\n", URL);
1534#endif
1535 break;
1536 }
1537 }
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001538
1539 /*
Daniel Veillard4287c572003-02-04 22:48:53 +00001540 * Make sure we have all entities fixed up
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001541 */
Daniel Veillard4287c572003-02-04 22:48:53 +00001542 xmlXIncludeMergeEntities(ctxt, ctxt->doc, doc);
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001543
1544 /*
1545 * We don't need the DTD anymore, free up space
1546 if (doc->intSubset != NULL) {
1547 xmlUnlinkNode((xmlNodePtr) doc->intSubset);
1548 xmlFreeNode((xmlNodePtr) doc->intSubset);
1549 doc->intSubset = NULL;
1550 }
1551 if (doc->extSubset != NULL) {
1552 xmlUnlinkNode((xmlNodePtr) doc->extSubset);
1553 xmlFreeNode((xmlNodePtr) doc->extSubset);
1554 doc->extSubset = NULL;
1555 }
1556 */
1557 xmlXIncludeRecurseDoc(ctxt, doc, URL);
Owen Taylor3473f882001-02-23 17:55:21 +00001558
1559loaded:
1560 if (fragment == NULL) {
1561 /*
1562 * Add the top children list as the replacement copy.
Owen Taylor3473f882001-02-23 17:55:21 +00001563 */
Haibo Huangf0a546b2020-09-01 20:28:19 -07001564 ctxt->incTab[nr]->inc = xmlXIncludeCopyNodeList(ctxt, ctxt->doc,
1565 doc, doc->children);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001566 }
Daniel Veillard10acc2f2003-09-01 20:59:40 +00001567#ifdef LIBXML_XPTR_ENABLED
1568 else {
Owen Taylor3473f882001-02-23 17:55:21 +00001569 /*
1570 * Computes the XPointer expression and make a copy used
1571 * as the replacement copy.
1572 */
1573 xmlXPathObjectPtr xptr;
1574 xmlXPathContextPtr xptrctxt;
Daniel Veillard39196eb2001-06-19 18:09:42 +00001575 xmlNodeSetPtr set;
Owen Taylor3473f882001-02-23 17:55:21 +00001576
Haibo Huangf0a546b2020-09-01 20:28:19 -07001577 xptrctxt = xmlXPtrNewContext(doc, NULL, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001578 if (xptrctxt == NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001579 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001580 XML_XINCLUDE_XPTR_FAILED,
Daniel Veillarda152c4d2003-11-19 16:24:26 +00001581 "could not create XPointer context\n", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001582 xmlFree(URL);
1583 xmlFree(fragment);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001584 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001585 }
1586 xptr = xmlXPtrEval(fragment, xptrctxt);
1587 if (xptr == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001588 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
1589 XML_XINCLUDE_XPTR_FAILED,
1590 "XPointer evaluation failed: #%s\n",
1591 fragment);
Owen Taylor3473f882001-02-23 17:55:21 +00001592 xmlXPathFreeContext(xptrctxt);
1593 xmlFree(URL);
1594 xmlFree(fragment);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001595 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001596 }
Daniel Veillard39196eb2001-06-19 18:09:42 +00001597 switch (xptr->type) {
1598 case XPATH_UNDEFINED:
1599 case XPATH_BOOLEAN:
1600 case XPATH_NUMBER:
1601 case XPATH_STRING:
1602 case XPATH_POINT:
1603 case XPATH_USERS:
1604 case XPATH_XSLT_TREE:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001605 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001606 XML_XINCLUDE_XPTR_RESULT,
1607 "XPointer is not a range: #%s\n",
1608 fragment);
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001609 xmlXPathFreeObject(xptr);
Daniel Veillard39196eb2001-06-19 18:09:42 +00001610 xmlXPathFreeContext(xptrctxt);
1611 xmlFree(URL);
1612 xmlFree(fragment);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001613 return(-1);
Daniel Veillard39196eb2001-06-19 18:09:42 +00001614 case XPATH_NODESET:
Daniel Veillard798ae542003-11-03 17:13:52 +00001615 if ((xptr->nodesetval == NULL) ||
1616 (xptr->nodesetval->nodeNr <= 0)) {
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001617 xmlXPathFreeObject(xptr);
Daniel Veillard798ae542003-11-03 17:13:52 +00001618 xmlXPathFreeContext(xptrctxt);
1619 xmlFree(URL);
1620 xmlFree(fragment);
1621 return(-1);
1622 }
William M. Brackabf598b2004-06-08 02:01:28 +00001623
Daniel Veillard39196eb2001-06-19 18:09:42 +00001624 case XPATH_RANGE:
1625 case XPATH_LOCATIONSET:
1626 break;
1627 }
1628 set = xptr->nodesetval;
1629 if (set != NULL) {
1630 for (i = 0;i < set->nodeNr;i++) {
1631 if (set->nodeTab[i] == NULL)
1632 continue;
1633 switch (set->nodeTab[i]->type) {
William M. Brackb0a94e82007-07-18 18:04:55 +00001634 case XML_ELEMENT_NODE:
Daniel Veillard39196eb2001-06-19 18:09:42 +00001635 case XML_TEXT_NODE:
1636 case XML_CDATA_SECTION_NODE:
Daniel Veillard39196eb2001-06-19 18:09:42 +00001637 case XML_ENTITY_REF_NODE:
1638 case XML_ENTITY_NODE:
1639 case XML_PI_NODE:
1640 case XML_COMMENT_NODE:
1641 case XML_DOCUMENT_NODE:
1642 case XML_HTML_DOCUMENT_NODE:
1643#ifdef LIBXML_DOCB_ENABLED
1644 case XML_DOCB_DOCUMENT_NODE:
1645#endif
1646 continue;
William M. Brackabf598b2004-06-08 02:01:28 +00001647
Daniel Veillard39196eb2001-06-19 18:09:42 +00001648 case XML_ATTRIBUTE_NODE:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001649 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001650 XML_XINCLUDE_XPTR_RESULT,
1651 "XPointer selects an attribute: #%s\n",
1652 fragment);
Daniel Veillard39196eb2001-06-19 18:09:42 +00001653 set->nodeTab[i] = NULL;
1654 continue;
1655 case XML_NAMESPACE_DECL:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001656 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001657 XML_XINCLUDE_XPTR_RESULT,
1658 "XPointer selects a namespace: #%s\n",
1659 fragment);
Daniel Veillard39196eb2001-06-19 18:09:42 +00001660 set->nodeTab[i] = NULL;
1661 continue;
1662 case XML_DOCUMENT_TYPE_NODE:
1663 case XML_DOCUMENT_FRAG_NODE:
1664 case XML_NOTATION_NODE:
1665 case XML_DTD_NODE:
1666 case XML_ELEMENT_DECL:
1667 case XML_ATTRIBUTE_DECL:
1668 case XML_ENTITY_DECL:
1669 case XML_XINCLUDE_START:
1670 case XML_XINCLUDE_END:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001671 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001672 XML_XINCLUDE_XPTR_RESULT,
1673 "XPointer selects unexpected nodes: #%s\n",
1674 fragment);
Daniel Veillard39196eb2001-06-19 18:09:42 +00001675 set->nodeTab[i] = NULL;
1676 set->nodeTab[i] = NULL;
1677 continue; /* for */
1678 }
1679 }
1680 }
Haibo Huangf0a546b2020-09-01 20:28:19 -07001681 ctxt->incTab[nr]->inc =
1682 xmlXIncludeCopyXPointer(ctxt, ctxt->doc, doc, xptr);
1683 xmlXPathFreeObject(xptr);
Owen Taylor3473f882001-02-23 17:55:21 +00001684 xmlXPathFreeContext(xptrctxt);
1685 xmlFree(fragment);
1686 }
Daniel Veillard10acc2f2003-09-01 20:59:40 +00001687#endif
Daniel Veillardc4bad4a2002-08-14 14:45:25 +00001688
1689 /*
1690 * Do the xml:base fixup if needed
1691 */
Alexey Neyman0b865372013-05-06 10:20:18 +08001692 if ((doc != NULL) && (URL != NULL) &&
Daniel Veillard54bd29b2008-08-26 07:26:55 +00001693 (!(ctxt->parseFlags & XML_PARSE_NOBASEFIX)) &&
1694 (!(doc->parseFlags & XML_PARSE_NOBASEFIX))) {
Daniel Veillardc4bad4a2002-08-14 14:45:25 +00001695 xmlNodePtr node;
William M. Brack0b13a092005-06-01 03:37:59 +00001696 xmlChar *base;
William M. Brackabf598b2004-06-08 02:01:28 +00001697 xmlChar *curBase;
Daniel Veillardc4bad4a2002-08-14 14:45:25 +00001698
William M. Brackf7789b12004-06-07 08:57:27 +00001699 /*
William M. Brack0b13a092005-06-01 03:37:59 +00001700 * The base is only adjusted if "necessary", i.e. if the xinclude node
1701 * has a base specified, or the URL is relative
William M. Brackf7789b12004-06-07 08:57:27 +00001702 */
William M. Brack0b13a092005-06-01 03:37:59 +00001703 base = xmlGetNsProp(ctxt->incTab[nr]->ref, BAD_CAST "base",
1704 XML_XML_NAMESPACE);
1705 if (base == NULL) {
1706 /*
1707 * No xml:base on the xinclude node, so we check whether the
1708 * URI base is different than (relative to) the context base
1709 */
1710 curBase = xmlBuildRelativeURI(URL, ctxt->base);
1711 if (curBase == NULL) { /* Error return */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001712 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
William M. Brackf7789b12004-06-07 08:57:27 +00001713 XML_XINCLUDE_HREF_URI,
1714 "trying to build relative URI from %s\n", URL);
William M. Brack0b13a092005-06-01 03:37:59 +00001715 } else {
1716 /* If the URI doesn't contain a slash, it's not relative */
1717 if (!xmlStrchr(curBase, (xmlChar) '/'))
1718 xmlFree(curBase);
1719 else
1720 base = curBase;
William M. Brackf7789b12004-06-07 08:57:27 +00001721 }
William M. Brack0b13a092005-06-01 03:37:59 +00001722 }
1723 if (base != NULL) { /* Adjustment may be needed */
1724 node = ctxt->incTab[nr]->inc;
1725 while (node != NULL) {
1726 /* Only work on element nodes */
1727 if (node->type == XML_ELEMENT_NODE) {
1728 curBase = xmlNodeGetBase(node->doc, node);
1729 /* If no current base, set it */
1730 if (curBase == NULL) {
1731 xmlNodeSetBase(node, base);
1732 } else {
1733 /*
1734 * If the current base is the same as the
1735 * URL of the document, then reset it to be
1736 * the specified xml:base or the relative URI
1737 */
1738 if (xmlStrEqual(curBase, node->doc->URL)) {
1739 xmlNodeSetBase(node, base);
1740 } else {
1741 /*
1742 * If the element already has an xml:base
1743 * set, then relativise it if necessary
1744 */
1745 xmlChar *xmlBase;
1746 xmlBase = xmlGetNsProp(node,
1747 BAD_CAST "base",
1748 XML_XML_NAMESPACE);
1749 if (xmlBase != NULL) {
1750 xmlChar *relBase;
1751 relBase = xmlBuildURI(xmlBase, base);
1752 if (relBase == NULL) { /* error */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001753 xmlXIncludeErr(ctxt,
William M. Brack0b13a092005-06-01 03:37:59 +00001754 ctxt->incTab[nr]->ref,
1755 XML_XINCLUDE_HREF_URI,
1756 "trying to rebuild base from %s\n",
1757 xmlBase);
1758 } else {
1759 xmlNodeSetBase(node, relBase);
1760 xmlFree(relBase);
1761 }
1762 xmlFree(xmlBase);
1763 }
1764 }
1765 xmlFree(curBase);
1766 }
1767 }
1768 node = node->next;
1769 }
1770 xmlFree(base);
Daniel Veillardc4bad4a2002-08-14 14:45:25 +00001771 }
1772 }
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001773 if ((nr < ctxt->incNr) && (ctxt->incTab[nr]->doc != NULL) &&
1774 (ctxt->incTab[nr]->count <= 1)) {
1775#ifdef DEBUG_XINCLUDE
1776 printf("freeing %s\n", ctxt->incTab[nr]->doc->URL);
1777#endif
1778 xmlFreeDoc(ctxt->incTab[nr]->doc);
1779 ctxt->incTab[nr]->doc = NULL;
1780 }
Owen Taylor3473f882001-02-23 17:55:21 +00001781 xmlFree(URL);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001782 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00001783}
1784
1785/**
1786 * xmlXIncludeLoadTxt:
1787 * @ctxt: the XInclude context
1788 * @url: the associated URL
1789 * @nr: the xinclude node number
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001790 *
Owen Taylor3473f882001-02-23 17:55:21 +00001791 * Load the content, and store the result in the XInclude context
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001792 *
1793 * Returns 0 in case of success, -1 in case of failure
Owen Taylor3473f882001-02-23 17:55:21 +00001794 */
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001795static int
Owen Taylor3473f882001-02-23 17:55:21 +00001796xmlXIncludeLoadTxt(xmlXIncludeCtxtPtr ctxt, const xmlChar *url, int nr) {
1797 xmlParserInputBufferPtr buf;
1798 xmlNodePtr node;
1799 xmlURIPtr uri;
1800 xmlChar *URL;
1801 int i;
Daniel Veillardd076a202002-11-20 13:28:31 +00001802 xmlChar *encoding = NULL;
William M. Brack78637da2003-07-31 14:47:38 +00001803 xmlCharEncoding enc = (xmlCharEncoding) 0;
Shaun McCance4cf73252012-05-10 20:59:33 +08001804 xmlParserCtxtPtr pctxt;
1805 xmlParserInputPtr inputStream;
Vitaly Ostanindce1c8b2012-08-17 20:42:52 +08001806 int xinclude_multibyte_fallback_used = 0;
Daniel Veillardd076a202002-11-20 13:28:31 +00001807
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001808 /* Don't read from stdin. */
1809 if (xmlStrcmp(url, BAD_CAST "-") == 0)
1810 url = BAD_CAST "./-";
1811
Owen Taylor3473f882001-02-23 17:55:21 +00001812 /*
1813 * Check the URL and remove any fragment identifier
1814 */
1815 uri = xmlParseURI((const char *)url);
1816 if (uri == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001817 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref, XML_XINCLUDE_HREF_URI,
1818 "invalid value URI %s\n", url);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001819 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001820 }
1821 if (uri->fragment != NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001822 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref, XML_XINCLUDE_TEXT_FRAGMENT,
1823 "fragment identifier forbidden for text: %s\n",
1824 (const xmlChar *) uri->fragment);
Owen Taylor3473f882001-02-23 17:55:21 +00001825 xmlFreeURI(uri);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001826 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001827 }
1828 URL = xmlSaveUri(uri);
1829 xmlFreeURI(uri);
1830 if (URL == NULL) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001831 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref, XML_XINCLUDE_HREF_URI,
1832 "invalid value URI %s\n", url);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001833 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001834 }
1835
1836 /*
1837 * Handling of references to the local document are done
1838 * directly through ctxt->doc.
1839 */
1840 if (URL[0] == 0) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001841 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001842 XML_XINCLUDE_TEXT_DOCUMENT,
1843 "text serialization of document not available\n", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001844 xmlFree(URL);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001845 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001846 }
1847
1848 /*
1849 * Prevent reloading twice the document.
1850 */
1851 for (i = 0; i < ctxt->txtNr; i++) {
1852 if (xmlStrEqual(URL, ctxt->txturlTab[i])) {
Haibo Huangd23e46c2020-10-28 22:26:09 -07001853 node = xmlNewText(ctxt->txtTab[i]);
Owen Taylor3473f882001-02-23 17:55:21 +00001854 goto loaded;
1855 }
1856 }
1857 /*
Daniel Veillardd076a202002-11-20 13:28:31 +00001858 * Try to get the encoding if available
Owen Taylor3473f882001-02-23 17:55:21 +00001859 */
Daniel Veillardd076a202002-11-20 13:28:31 +00001860 if ((ctxt->incTab[nr] != NULL) && (ctxt->incTab[nr]->ref != NULL)) {
1861 encoding = xmlGetProp(ctxt->incTab[nr]->ref, XINCLUDE_PARSE_ENCODING);
1862 }
1863 if (encoding != NULL) {
1864 /*
1865 * TODO: we should not have to remap to the xmlCharEncoding
1866 * predefined set, a better interface than
1867 * xmlParserInputBufferCreateFilename should allow any
1868 * encoding supported by iconv
1869 */
1870 enc = xmlParseCharEncoding((const char *) encoding);
1871 if (enc == XML_CHAR_ENCODING_ERROR) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +00001872 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
1873 XML_XINCLUDE_UNKNOWN_ENCODING,
1874 "encoding %s not supported\n", encoding);
Daniel Veillardd076a202002-11-20 13:28:31 +00001875 xmlFree(encoding);
1876 xmlFree(URL);
1877 return(-1);
1878 }
1879 xmlFree(encoding);
1880 }
1881
1882 /*
1883 * Load it.
1884 */
Shaun McCance4cf73252012-05-10 20:59:33 +08001885 pctxt = xmlNewParserCtxt();
1886 inputStream = xmlLoadExternalEntity((const char*)URL, NULL, pctxt);
1887 if(inputStream == NULL) {
1888 xmlFreeParserCtxt(pctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00001889 xmlFree(URL);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001890 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00001891 }
Shaun McCance4cf73252012-05-10 20:59:33 +08001892 buf = inputStream->buf;
1893 if (buf == NULL) {
1894 xmlFreeInputStream (inputStream);
1895 xmlFreeParserCtxt(pctxt);
1896 xmlFree(URL);
1897 return(-1);
1898 }
1899 if (buf->encoder)
1900 xmlCharEncCloseFunc(buf->encoder);
1901 buf->encoder = xmlGetCharEncodingHandler(enc);
Owen Taylor3473f882001-02-23 17:55:21 +00001902 node = xmlNewText(NULL);
1903
1904 /*
1905 * Scan all chars from the resource and add the to the node
1906 */
Vitaly Ostanindce1c8b2012-08-17 20:42:52 +08001907xinclude_multibyte_fallback:
Owen Taylor3473f882001-02-23 17:55:21 +00001908 while (xmlParserInputBufferRead(buf, 128) > 0) {
1909 int len;
1910 const xmlChar *content;
1911
Daniel Veillard345ee8b2012-07-16 14:40:37 +08001912 content = xmlBufContent(buf->buffer);
1913 len = xmlBufLength(buf->buffer);
Daniel Veillardd076a202002-11-20 13:28:31 +00001914 for (i = 0;i < len;) {
1915 int cur;
1916 int l;
1917
1918 cur = xmlStringCurrentChar(NULL, &content[i], &l);
1919 if (!IS_CHAR(cur)) {
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001920 /* Handle split multibyte char at buffer boundary */
Vitaly Ostanindce1c8b2012-08-17 20:42:52 +08001921 if (((len - i) < 4) && (!xinclude_multibyte_fallback_used)) {
1922 xinclude_multibyte_fallback_used = 1;
1923 xmlBufShrink(buf->buffer, i);
1924 goto xinclude_multibyte_fallback;
1925 } else {
1926 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
1927 XML_XINCLUDE_INVALID_CHAR,
1928 "%s contains invalid char\n", URL);
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001929 xmlFreeParserCtxt(pctxt);
Vitaly Ostanindce1c8b2012-08-17 20:42:52 +08001930 xmlFreeParserInputBuffer(buf);
1931 xmlFree(URL);
1932 return(-1);
1933 }
Owen Taylor3473f882001-02-23 17:55:21 +00001934 } else {
Vitaly Ostanindce1c8b2012-08-17 20:42:52 +08001935 xinclude_multibyte_fallback_used = 0;
Daniel Veillardd076a202002-11-20 13:28:31 +00001936 xmlNodeAddContentLen(node, &content[i], l);
Owen Taylor3473f882001-02-23 17:55:21 +00001937 }
Daniel Veillardd076a202002-11-20 13:28:31 +00001938 i += l;
Owen Taylor3473f882001-02-23 17:55:21 +00001939 }
Daniel Veillard345ee8b2012-07-16 14:40:37 +08001940 xmlBufShrink(buf->buffer, len);
Owen Taylor3473f882001-02-23 17:55:21 +00001941 }
Shaun McCance4cf73252012-05-10 20:59:33 +08001942 xmlFreeParserCtxt(pctxt);
Haibo Huangd23e46c2020-10-28 22:26:09 -07001943 xmlXIncludeAddTxt(ctxt, node->content, URL);
Shaun McCance4cf73252012-05-10 20:59:33 +08001944 xmlFreeInputStream(inputStream);
Owen Taylor3473f882001-02-23 17:55:21 +00001945
1946loaded:
1947 /*
1948 * Add the element as the replacement copy.
1949 */
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001950 ctxt->incTab[nr]->inc = node;
Owen Taylor3473f882001-02-23 17:55:21 +00001951 xmlFree(URL);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001952 return(0);
1953}
1954
1955/**
1956 * xmlXIncludeLoadFallback:
1957 * @ctxt: the XInclude context
1958 * @fallback: the fallback node
1959 * @nr: the xinclude node number
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001960 *
Daniel Veillardbbc72c32002-09-05 10:52:10 +00001961 * Load the content of the fallback node, and store the result
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001962 * in the XInclude context
1963 *
1964 * Returns 0 in case of success, -1 in case of failure
1965 */
1966static int
1967xmlXIncludeLoadFallback(xmlXIncludeCtxtPtr ctxt, xmlNodePtr fallback, int nr) {
William M. Brackaae10522004-01-02 14:59:41 +00001968 xmlXIncludeCtxtPtr newctxt;
1969 int ret = 0;
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001970 int oldNbErrors = ctxt->nbErrors;
Daniel Veillard3e62adb2012-08-09 14:24:02 +08001971
1972 if ((fallback == NULL) || (fallback->type == XML_NAMESPACE_DECL) ||
1973 (ctxt == NULL))
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001974 return(-1);
William M. Brackef245fd2004-02-06 09:33:59 +00001975 if (fallback->children != NULL) {
1976 /*
1977 * It's possible that the fallback also has 'includes'
1978 * (Bug 129969), so we re-process the fallback just in case
1979 */
1980 newctxt = xmlXIncludeNewContext(ctxt->doc);
1981 if (newctxt == NULL)
1982 return (-1);
Daniel Veillarda6585822006-12-04 09:21:28 +00001983 newctxt->_private = ctxt->_private;
Daniel Veillardce244ad2004-11-05 10:03:46 +00001984 newctxt->base = xmlStrdup(ctxt->base); /* Inherit the base from the existing context */
William M. Brackef245fd2004-02-06 09:33:59 +00001985 xmlXIncludeSetFlags(newctxt, ctxt->parseFlags);
Haibo Huangf0a546b2020-09-01 20:28:19 -07001986 newctxt->incTotal = ctxt->incTotal;
1987 if (xmlXIncludeDoProcess(newctxt, ctxt->doc, fallback, 1) < 0)
1988 ret = -1;
1989 ctxt->incTotal = newctxt->incTotal;
Haibo Huangcfd91dc2020-07-30 23:01:33 -07001990 if (ctxt->nbErrors > oldNbErrors)
William M. Brackef245fd2004-02-06 09:33:59 +00001991 ret = -1;
1992 xmlXIncludeFreeContext(newctxt);
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00001993
Daniel Veillard03a53c32004-10-26 16:06:51 +00001994 ctxt->incTab[nr]->inc = xmlDocCopyNodeList(ctxt->doc,
1995 fallback->children);
Haibo Huangf0a546b2020-09-01 20:28:19 -07001996 if (ctxt->incTab[nr]->inc == NULL)
1997 ctxt->incTab[nr]->emptyFb = 1;
William M. Brackef245fd2004-02-06 09:33:59 +00001998 } else {
1999 ctxt->incTab[nr]->inc = NULL;
William M. Brack95af5942004-02-08 04:12:49 +00002000 ctxt->incTab[nr]->emptyFb = 1; /* flag empty callback */
William M. Brackef245fd2004-02-06 09:33:59 +00002001 }
Haibo Huangf0a546b2020-09-01 20:28:19 -07002002 ctxt->incTab[nr]->fallback = 1;
William M. Brackaae10522004-01-02 14:59:41 +00002003 return(ret);
Owen Taylor3473f882001-02-23 17:55:21 +00002004}
2005
2006/************************************************************************
2007 * *
2008 * XInclude Processing *
2009 * *
2010 ************************************************************************/
2011
2012/**
2013 * xmlXIncludePreProcessNode:
2014 * @ctxt: an XInclude context
2015 * @node: an XInclude node
2016 *
Daniel Veillardd16df9f2001-05-23 13:44:21 +00002017 * Implement the XInclude preprocessing, currently just adding the element
2018 * for further processing.
Owen Taylor3473f882001-02-23 17:55:21 +00002019 *
2020 * Returns the result list or NULL in case of error
2021 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002022static xmlNodePtr
Owen Taylor3473f882001-02-23 17:55:21 +00002023xmlXIncludePreProcessNode(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node) {
2024 xmlXIncludeAddNode(ctxt, node);
Daniel Veillard24505b02005-07-28 23:49:35 +00002025 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00002026}
2027
Daniel Veillardbbc72c32002-09-05 10:52:10 +00002028/**
Owen Taylor3473f882001-02-23 17:55:21 +00002029 * xmlXIncludeLoadNode:
2030 * @ctxt: an XInclude context
2031 * @nr: the node number
2032 *
2033 * Find and load the infoset replacement for the given node.
2034 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002035 * Returns 0 if substitution succeeded, -1 if some processing failed
Owen Taylor3473f882001-02-23 17:55:21 +00002036 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002037static int
Owen Taylor3473f882001-02-23 17:55:21 +00002038xmlXIncludeLoadNode(xmlXIncludeCtxtPtr ctxt, int nr) {
2039 xmlNodePtr cur;
2040 xmlChar *href;
2041 xmlChar *parse;
2042 xmlChar *base;
William M. Brackf7789b12004-06-07 08:57:27 +00002043 xmlChar *oldBase;
Owen Taylor3473f882001-02-23 17:55:21 +00002044 xmlChar *URI;
2045 int xml = 1; /* default Issue 64 */
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00002046 int ret;
Owen Taylor3473f882001-02-23 17:55:21 +00002047
2048 if (ctxt == NULL)
2049 return(-1);
2050 if ((nr < 0) || (nr >= ctxt->incNr))
2051 return(-1);
Daniel Veillardbbc72c32002-09-05 10:52:10 +00002052 cur = ctxt->incTab[nr]->ref;
Owen Taylor3473f882001-02-23 17:55:21 +00002053 if (cur == NULL)
2054 return(-1);
2055
Owen Taylor3473f882001-02-23 17:55:21 +00002056 /*
2057 * read the attributes
2058 */
Daniel Veillardb5fa0202003-12-08 17:41:29 +00002059 href = xmlXIncludeGetProp(ctxt, cur, XINCLUDE_HREF);
Owen Taylor3473f882001-02-23 17:55:21 +00002060 if (href == NULL) {
Daniel Veillard03c2f0a2004-01-25 19:54:59 +00002061 href = xmlStrdup(BAD_CAST ""); /* @@@@ href is now optional */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002062 if (href == NULL)
Daniel Veillard03c2f0a2004-01-25 19:54:59 +00002063 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002064 }
Daniel Veillardb5fa0202003-12-08 17:41:29 +00002065 parse = xmlXIncludeGetProp(ctxt, cur, XINCLUDE_PARSE);
Owen Taylor3473f882001-02-23 17:55:21 +00002066 if (parse != NULL) {
2067 if (xmlStrEqual(parse, XINCLUDE_PARSE_XML))
2068 xml = 1;
2069 else if (xmlStrEqual(parse, XINCLUDE_PARSE_TEXT))
2070 xml = 0;
2071 else {
Daniel Veillardcd6ff282003-10-08 22:38:13 +00002072 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
2073 XML_XINCLUDE_PARSE_VALUE,
2074 "invalid value %s for 'parse'\n", parse);
Owen Taylor3473f882001-02-23 17:55:21 +00002075 if (href != NULL)
2076 xmlFree(href);
2077 if (parse != NULL)
2078 xmlFree(parse);
2079 return(-1);
2080 }
2081 }
2082
2083 /*
2084 * compute the URI
2085 */
2086 base = xmlNodeGetBase(ctxt->doc, cur);
2087 if (base == NULL) {
2088 URI = xmlBuildURI(href, ctxt->doc->URL);
2089 } else {
2090 URI = xmlBuildURI(href, base);
2091 }
2092 if (URI == NULL) {
2093 xmlChar *escbase;
2094 xmlChar *eschref;
2095 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002096 * Some escaping may be needed
Owen Taylor3473f882001-02-23 17:55:21 +00002097 */
2098 escbase = xmlURIEscape(base);
2099 eschref = xmlURIEscape(href);
2100 URI = xmlBuildURI(eschref, escbase);
2101 if (escbase != NULL)
2102 xmlFree(escbase);
2103 if (eschref != NULL)
2104 xmlFree(eschref);
2105 }
2106 if (URI == NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002107 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00002108 XML_XINCLUDE_HREF_URI, "failed build URL\n", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00002109 if (parse != NULL)
2110 xmlFree(parse);
2111 if (href != NULL)
2112 xmlFree(href);
2113 if (base != NULL)
2114 xmlFree(base);
2115 return(-1);
2116 }
2117#ifdef DEBUG_XINCLUDE
2118 xmlGenericError(xmlGenericErrorContext, "parse: %s\n",
2119 xml ? "xml": "text");
2120 xmlGenericError(xmlGenericErrorContext, "URI: %s\n", URI);
2121#endif
2122
2123 /*
William M. Brackf7789b12004-06-07 08:57:27 +00002124 * Save the base for this include (saving the current one)
Owen Taylor3473f882001-02-23 17:55:21 +00002125 */
William M. Brackf7789b12004-06-07 08:57:27 +00002126 oldBase = ctxt->base;
2127 ctxt->base = base;
2128
Owen Taylor3473f882001-02-23 17:55:21 +00002129 if (xml) {
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00002130 ret = xmlXIncludeLoadDoc(ctxt, URI, nr);
Owen Taylor3473f882001-02-23 17:55:21 +00002131 /* xmlXIncludeGetFragment(ctxt, cur, URI); */
2132 } else {
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00002133 ret = xmlXIncludeLoadTxt(ctxt, URI, nr);
2134 }
William M. Brackf7789b12004-06-07 08:57:27 +00002135
2136 /*
2137 * Restore the original base before checking for fallback
2138 */
2139 ctxt->base = oldBase;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002140
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00002141 if (ret < 0) {
2142 xmlNodePtr children;
2143
2144 /*
Haibo Huangcfd91dc2020-07-30 23:01:33 -07002145 * Time to try a fallback if available
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00002146 */
2147#ifdef DEBUG_XINCLUDE
2148 xmlGenericError(xmlGenericErrorContext, "error looking for fallback\n");
2149#endif
2150 children = cur->children;
2151 while (children != NULL) {
2152 if ((children->type == XML_ELEMENT_NODE) &&
2153 (children->ns != NULL) &&
2154 (xmlStrEqual(children->name, XINCLUDE_FALLBACK)) &&
Daniel Veillardb5fa0202003-12-08 17:41:29 +00002155 ((xmlStrEqual(children->ns->href, XINCLUDE_NS)) ||
2156 (xmlStrEqual(children->ns->href, XINCLUDE_OLD_NS)))) {
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00002157 ret = xmlXIncludeLoadFallback(ctxt, children, nr);
Haibo Huangf0a546b2020-09-01 20:28:19 -07002158 break;
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00002159 }
2160 children = children->next;
2161 }
2162 }
2163 if (ret < 0) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002164 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00002165 XML_XINCLUDE_NO_FALLBACK,
2166 "could not load %s, and no fallback was found\n",
2167 URI);
Owen Taylor3473f882001-02-23 17:55:21 +00002168 }
2169
2170 /*
2171 * Cleanup
2172 */
2173 if (URI != NULL)
2174 xmlFree(URI);
2175 if (parse != NULL)
2176 xmlFree(parse);
2177 if (href != NULL)
2178 xmlFree(href);
2179 if (base != NULL)
2180 xmlFree(base);
2181 return(0);
2182}
2183
2184/**
2185 * xmlXIncludeIncludeNode:
2186 * @ctxt: an XInclude context
2187 * @nr: the node number
2188 *
Haibo Huangcfd91dc2020-07-30 23:01:33 -07002189 * Implement the infoset replacement for the given node
Owen Taylor3473f882001-02-23 17:55:21 +00002190 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002191 * Returns 0 if substitution succeeded, -1 if some processing failed
Owen Taylor3473f882001-02-23 17:55:21 +00002192 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002193static int
Owen Taylor3473f882001-02-23 17:55:21 +00002194xmlXIncludeIncludeNode(xmlXIncludeCtxtPtr ctxt, int nr) {
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002195 xmlNodePtr cur, end, list, tmp;
Owen Taylor3473f882001-02-23 17:55:21 +00002196
2197 if (ctxt == NULL)
2198 return(-1);
2199 if ((nr < 0) || (nr >= ctxt->incNr))
2200 return(-1);
Daniel Veillardbbc72c32002-09-05 10:52:10 +00002201 cur = ctxt->incTab[nr]->ref;
Daniel Veillard3e62adb2012-08-09 14:24:02 +08002202 if ((cur == NULL) || (cur->type == XML_NAMESPACE_DECL))
Owen Taylor3473f882001-02-23 17:55:21 +00002203 return(-1);
2204
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002205 list = ctxt->incTab[nr]->inc;
2206 ctxt->incTab[nr]->inc = NULL;
Haibo Huangf0a546b2020-09-01 20:28:19 -07002207 ctxt->incTab[nr]->emptyFb = 0;
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002208
2209 /*
2210 * Check against the risk of generating a multi-rooted document
2211 */
2212 if ((cur->parent != NULL) &&
2213 (cur->parent->type != XML_ELEMENT_NODE)) {
2214 int nb_elem = 0;
2215
2216 tmp = list;
2217 while (tmp != NULL) {
2218 if (tmp->type == XML_ELEMENT_NODE)
2219 nb_elem++;
2220 tmp = tmp->next;
2221 }
2222 if (nb_elem > 1) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002223 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
Daniel Veillardcd6ff282003-10-08 22:38:13 +00002224 XML_XINCLUDE_MULTIPLE_ROOT,
2225 "XInclude error: would result in multiple root nodes\n",
2226 NULL);
Haibo Huangf0a546b2020-09-01 20:28:19 -07002227 xmlFreeNodeList(list);
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002228 return(-1);
2229 }
2230 }
2231
Daniel Veillardc14c3892004-08-16 12:34:50 +00002232 if (ctxt->parseFlags & XML_PARSE_NOXINCNODE) {
2233 /*
2234 * Add the list of nodes
2235 */
2236 while (list != NULL) {
2237 end = list;
2238 list = list->next;
Owen Taylor3473f882001-02-23 17:55:21 +00002239
Daniel Veillardc14c3892004-08-16 12:34:50 +00002240 xmlAddPrevSibling(cur, end);
2241 }
2242 xmlUnlinkNode(cur);
2243 xmlFreeNode(cur);
2244 } else {
Haibo Huangf0a546b2020-09-01 20:28:19 -07002245 xmlNodePtr child, next;
2246
Daniel Veillardc14c3892004-08-16 12:34:50 +00002247 /*
2248 * Change the current node as an XInclude start one, and add an
2249 * XInclude end one
2250 */
Haibo Huangf0a546b2020-09-01 20:28:19 -07002251 if (ctxt->incTab[nr]->fallback)
2252 xmlUnsetProp(cur, BAD_CAST "href");
Daniel Veillardc14c3892004-08-16 12:34:50 +00002253 cur->type = XML_XINCLUDE_START;
Haibo Huangf0a546b2020-09-01 20:28:19 -07002254 /* Remove fallback children */
2255 for (child = cur->children; child != NULL; child = next) {
2256 next = child->next;
2257 xmlUnlinkNode(child);
2258 xmlFreeNode(child);
2259 }
Daniel Veillard03a53c32004-10-26 16:06:51 +00002260 end = xmlNewDocNode(cur->doc, cur->ns, cur->name, NULL);
Daniel Veillardc14c3892004-08-16 12:34:50 +00002261 if (end == NULL) {
2262 xmlXIncludeErr(ctxt, ctxt->incTab[nr]->ref,
2263 XML_XINCLUDE_BUILD_FAILED,
2264 "failed to build node\n", NULL);
Haibo Huangf0a546b2020-09-01 20:28:19 -07002265 xmlFreeNodeList(list);
Daniel Veillardc14c3892004-08-16 12:34:50 +00002266 return(-1);
2267 }
2268 end->type = XML_XINCLUDE_END;
2269 xmlAddNextSibling(cur, end);
Owen Taylor3473f882001-02-23 17:55:21 +00002270
Daniel Veillardc14c3892004-08-16 12:34:50 +00002271 /*
2272 * Add the list of nodes
2273 */
2274 while (list != NULL) {
2275 cur = list;
2276 list = list->next;
2277
2278 xmlAddPrevSibling(end, cur);
2279 }
Owen Taylor3473f882001-02-23 17:55:21 +00002280 }
Daniel Veillardc5f05ad2002-02-10 11:57:22 +00002281
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002282
Owen Taylor3473f882001-02-23 17:55:21 +00002283 return(0);
2284}
2285
2286/**
2287 * xmlXIncludeTestNode:
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002288 * @ctxt: the XInclude processing context
Owen Taylor3473f882001-02-23 17:55:21 +00002289 * @node: an XInclude node
2290 *
2291 * test if the node is an XInclude node
2292 *
2293 * Returns 1 true, 0 otherwise
2294 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002295static int
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002296xmlXIncludeTestNode(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node) {
Owen Taylor3473f882001-02-23 17:55:21 +00002297 if (node == NULL)
2298 return(0);
Daniel Veillardffe4f5e2003-07-06 17:35:43 +00002299 if (node->type != XML_ELEMENT_NODE)
2300 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00002301 if (node->ns == NULL)
2302 return(0);
Daniel Veillardb5fa0202003-12-08 17:41:29 +00002303 if ((xmlStrEqual(node->ns->href, XINCLUDE_NS)) ||
2304 (xmlStrEqual(node->ns->href, XINCLUDE_OLD_NS))) {
2305 if (xmlStrEqual(node->ns->href, XINCLUDE_OLD_NS)) {
2306 if (ctxt->legacy == 0) {
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +00002307#if 0 /* wait for the XML Core Working Group to get something stable ! */
Daniel Veillardb5fa0202003-12-08 17:41:29 +00002308 xmlXIncludeWarn(ctxt, node, XML_XINCLUDE_DEPRECATED_NS,
2309 "Deprecated XInclude namespace found, use %s",
2310 XINCLUDE_NS);
Daniel Veillard5bb9ccd2004-02-09 12:39:02 +00002311#endif
Daniel Veillarde74d2e12003-12-09 11:35:37 +00002312 ctxt->legacy = 1;
Daniel Veillardb5fa0202003-12-08 17:41:29 +00002313 }
2314 }
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002315 if (xmlStrEqual(node->name, XINCLUDE_NODE)) {
2316 xmlNodePtr child = node->children;
2317 int nb_fallback = 0;
2318
2319 while (child != NULL) {
2320 if ((child->type == XML_ELEMENT_NODE) &&
2321 (child->ns != NULL) &&
Daniel Veillardb5fa0202003-12-08 17:41:29 +00002322 ((xmlStrEqual(child->ns->href, XINCLUDE_NS)) ||
2323 (xmlStrEqual(child->ns->href, XINCLUDE_OLD_NS)))) {
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002324 if (xmlStrEqual(child->name, XINCLUDE_NODE)) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +00002325 xmlXIncludeErr(ctxt, node,
2326 XML_XINCLUDE_INCLUDE_IN_INCLUDE,
2327 "%s has an 'include' child\n",
2328 XINCLUDE_NODE);
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002329 return(0);
2330 }
2331 if (xmlStrEqual(child->name, XINCLUDE_FALLBACK)) {
2332 nb_fallback++;
2333 }
2334 }
2335 child = child->next;
2336 }
2337 if (nb_fallback > 1) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +00002338 xmlXIncludeErr(ctxt, node, XML_XINCLUDE_FALLBACKS_IN_INCLUDE,
2339 "%s has multiple fallback children\n",
2340 XINCLUDE_NODE);
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002341 return(0);
2342 }
2343 return(1);
2344 }
2345 if (xmlStrEqual(node->name, XINCLUDE_FALLBACK)) {
2346 if ((node->parent == NULL) ||
2347 (node->parent->type != XML_ELEMENT_NODE) ||
2348 (node->parent->ns == NULL) ||
Daniel Veillardb5fa0202003-12-08 17:41:29 +00002349 ((!xmlStrEqual(node->parent->ns->href, XINCLUDE_NS)) &&
2350 (!xmlStrEqual(node->parent->ns->href, XINCLUDE_OLD_NS))) ||
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002351 (!xmlStrEqual(node->parent->name, XINCLUDE_NODE))) {
Daniel Veillardcd6ff282003-10-08 22:38:13 +00002352 xmlXIncludeErr(ctxt, node,
2353 XML_XINCLUDE_FALLBACK_NOT_IN_INCLUDE,
2354 "%s is not the child of an 'include'\n",
2355 XINCLUDE_FALLBACK);
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002356 }
2357 }
2358 }
Owen Taylor3473f882001-02-23 17:55:21 +00002359 return(0);
2360}
2361
2362/**
Daniel Veillardd16df9f2001-05-23 13:44:21 +00002363 * xmlXIncludeDoProcess:
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002364 * @ctxt: the XInclude processing context
Owen Taylor3473f882001-02-23 17:55:21 +00002365 * @doc: an XML document
Daniel Veillard8edf1c52003-07-22 20:52:14 +00002366 * @tree: the top of the tree to process
Haibo Huangf0a546b2020-09-01 20:28:19 -07002367 * @skipRoot: don't process the root node of the tree
Owen Taylor3473f882001-02-23 17:55:21 +00002368 *
2369 * Implement the XInclude substitution on the XML document @doc
2370 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002371 * Returns 0 if no substitution were done, -1 if some processing failed
Owen Taylor3473f882001-02-23 17:55:21 +00002372 * or the number of substitutions done.
2373 */
Daniel Veillardd16df9f2001-05-23 13:44:21 +00002374static int
Haibo Huangf0a546b2020-09-01 20:28:19 -07002375xmlXIncludeDoProcess(xmlXIncludeCtxtPtr ctxt, xmlDocPtr doc, xmlNodePtr tree,
2376 int skipRoot) {
Owen Taylor3473f882001-02-23 17:55:21 +00002377 xmlNodePtr cur;
2378 int ret = 0;
Daniel Veillarde0fd93f2005-08-10 13:39:10 +00002379 int i, start;
Owen Taylor3473f882001-02-23 17:55:21 +00002380
Daniel Veillard3e62adb2012-08-09 14:24:02 +08002381 if ((doc == NULL) || (tree == NULL) || (tree->type == XML_NAMESPACE_DECL))
Owen Taylor3473f882001-02-23 17:55:21 +00002382 return(-1);
Haibo Huangf0a546b2020-09-01 20:28:19 -07002383 if ((skipRoot) && (tree->children == NULL))
2384 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002385 if (ctxt == NULL)
2386 return(-1);
2387
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002388 if (doc->URL != NULL) {
2389 ret = xmlXIncludeURLPush(ctxt, doc->URL);
2390 if (ret < 0)
2391 return(-1);
2392 }
Daniel Veillard11ce4002006-03-10 00:36:23 +00002393 start = ctxt->incNr;
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002394
Owen Taylor3473f882001-02-23 17:55:21 +00002395 /*
Haibo Huangf0a546b2020-09-01 20:28:19 -07002396 * TODO: The phases must run separately for recursive inclusions.
2397 *
2398 * - Phase 1 should start with top-level XInclude nodes, load documents,
2399 * execute XPointer expressions, then process only the result nodes
2400 * (not whole document, see bug #324081) and only for phase 1
2401 * recursively. We will need a backreference from xmlNodes to
2402 * xmlIncludeRefs to detect references that were already visited.
2403 * This can also be used for proper cycle detection, see bug #344240.
2404 *
2405 * - Phase 2 should visit all top-level XInclude nodes and expand
2406 * possible subreferences in the replacement recursively.
2407 *
2408 * - Phase 3 should finally replace the top-level XInclude nodes.
2409 * It could also be run together with phase 2.
2410 */
2411
2412 /*
Owen Taylor3473f882001-02-23 17:55:21 +00002413 * First phase: lookup the elements in the document
2414 */
Haibo Huangf0a546b2020-09-01 20:28:19 -07002415 if (skipRoot)
2416 cur = tree->children;
2417 else
2418 cur = tree;
2419 do {
Owen Taylor3473f882001-02-23 17:55:21 +00002420 /* TODO: need to work on entities -> stack */
Haibo Huangf0a546b2020-09-01 20:28:19 -07002421 if (xmlXIncludeTestNode(ctxt, cur) == 1) {
2422#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
2423 /*
2424 * Avoid superlinear expansion by limiting the total number
2425 * of replacements.
2426 */
2427 if (ctxt->incTotal >= 20)
2428 return(-1);
2429#endif
2430 ctxt->incTotal++;
2431 xmlXIncludePreProcessNode(ctxt, cur);
2432 } else if ((cur->children != NULL) &&
Elliott Hughes5cefca72021-05-06 13:23:15 -07002433 ((cur->type == XML_DOCUMENT_NODE) ||
2434 (cur->type == XML_ELEMENT_NODE))) {
Haibo Huangf0a546b2020-09-01 20:28:19 -07002435 cur = cur->children;
2436 continue;
2437 }
2438 do {
2439 if (cur == tree)
2440 break;
2441 if (cur->next != NULL) {
2442 cur = cur->next;
2443 break;
2444 }
2445 cur = cur->parent;
2446 } while (cur != NULL);
2447 } while ((cur != NULL) && (cur != tree));
Owen Taylor3473f882001-02-23 17:55:21 +00002448
2449 /*
2450 * Second Phase : collect the infosets fragments
2451 */
Daniel Veillarde0fd93f2005-08-10 13:39:10 +00002452 for (i = start;i < ctxt->incNr; i++) {
Owen Taylor3473f882001-02-23 17:55:21 +00002453 xmlXIncludeLoadNode(ctxt, i);
Daniel Veillard97fd5672003-02-07 13:01:54 +00002454 ret++;
Owen Taylor3473f882001-02-23 17:55:21 +00002455 }
2456
2457 /*
2458 * Third phase: extend the original document infoset.
William M. Brack6b1a28d2004-02-06 11:24:44 +00002459 *
2460 * Originally we bypassed the inclusion if there were any errors
2461 * encountered on any of the XIncludes. A bug was raised (bug
2462 * 132588) requesting that we output the XIncludes without error,
2463 * so the check for inc!=NULL || xptr!=NULL was put in. This may
2464 * give some other problems in the future, but for now it seems to
2465 * work ok.
2466 *
Owen Taylor3473f882001-02-23 17:55:21 +00002467 */
William M. Brack6b1a28d2004-02-06 11:24:44 +00002468 for (i = ctxt->incBase;i < ctxt->incNr; i++) {
William M. Brack95af5942004-02-08 04:12:49 +00002469 if ((ctxt->incTab[i]->inc != NULL) ||
Haibo Huangf0a546b2020-09-01 20:28:19 -07002470 (ctxt->incTab[i]->emptyFb != 0)) /* (empty fallback) */
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002471 xmlXIncludeIncludeNode(ctxt, i);
Owen Taylor3473f882001-02-23 17:55:21 +00002472 }
2473
Daniel Veillardf4b4f982003-02-13 11:02:08 +00002474 if (doc->URL != NULL)
2475 xmlXIncludeURLPop(ctxt);
Daniel Veillardd16df9f2001-05-23 13:44:21 +00002476 return(ret);
2477}
2478
2479/**
Daniel Veillarde74d2e12003-12-09 11:35:37 +00002480 * xmlXIncludeSetFlags:
2481 * @ctxt: an XInclude processing context
2482 * @flags: a set of xmlParserOption used for parsing XML includes
2483 *
2484 * Set the flags used for further processing of XML resources.
2485 *
2486 * Returns 0 in case of success and -1 in case of error.
2487 */
2488int
2489xmlXIncludeSetFlags(xmlXIncludeCtxtPtr ctxt, int flags) {
2490 if (ctxt == NULL)
2491 return(-1);
2492 ctxt->parseFlags = flags;
2493 return(0);
2494}
Stefan Behnelb9590e92009-08-24 19:45:54 +02002495
2496/**
2497 * xmlXIncludeProcessTreeFlagsData:
2498 * @tree: an XML node
2499 * @flags: a set of xmlParserOption used for parsing XML includes
2500 * @data: application data that will be passed to the parser context
2501 * in the _private field of the parser context(s)
2502 *
2503 * Implement the XInclude substitution on the XML node @tree
2504 *
2505 * Returns 0 if no substitution were done, -1 if some processing failed
2506 * or the number of substitutions done.
2507 */
2508
2509int
2510xmlXIncludeProcessTreeFlagsData(xmlNodePtr tree, int flags, void *data) {
2511 xmlXIncludeCtxtPtr ctxt;
2512 int ret = 0;
2513
Daniel Veillard3e62adb2012-08-09 14:24:02 +08002514 if ((tree == NULL) || (tree->type == XML_NAMESPACE_DECL) ||
2515 (tree->doc == NULL))
Stefan Behnelb9590e92009-08-24 19:45:54 +02002516 return(-1);
2517
2518 ctxt = xmlXIncludeNewContext(tree->doc);
2519 if (ctxt == NULL)
2520 return(-1);
2521 ctxt->_private = data;
2522 ctxt->base = xmlStrdup((xmlChar *)tree->doc->URL);
2523 xmlXIncludeSetFlags(ctxt, flags);
Haibo Huangf0a546b2020-09-01 20:28:19 -07002524 ret = xmlXIncludeDoProcess(ctxt, tree->doc, tree, 0);
Stefan Behnelb9590e92009-08-24 19:45:54 +02002525 if ((ret >= 0) && (ctxt->nbErrors > 0))
2526 ret = -1;
2527
2528 xmlXIncludeFreeContext(ctxt);
2529 return(ret);
2530}
2531
Daniel Veillarde74d2e12003-12-09 11:35:37 +00002532/**
Daniel Veillard681e9042006-09-29 09:16:00 +00002533 * xmlXIncludeProcessFlagsData:
Daniel Veillardd16df9f2001-05-23 13:44:21 +00002534 * @doc: an XML document
Daniel Veillarde74d2e12003-12-09 11:35:37 +00002535 * @flags: a set of xmlParserOption used for parsing XML includes
Daniel Veillard681e9042006-09-29 09:16:00 +00002536 * @data: application data that will be passed to the parser context
2537 * in the _private field of the parser context(s)
Daniel Veillardd16df9f2001-05-23 13:44:21 +00002538 *
2539 * Implement the XInclude substitution on the XML document @doc
2540 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002541 * Returns 0 if no substitution were done, -1 if some processing failed
Daniel Veillardd16df9f2001-05-23 13:44:21 +00002542 * or the number of substitutions done.
2543 */
2544int
Daniel Veillard681e9042006-09-29 09:16:00 +00002545xmlXIncludeProcessFlagsData(xmlDocPtr doc, int flags, void *data) {
Daniel Veillard8edf1c52003-07-22 20:52:14 +00002546 xmlNodePtr tree;
Daniel Veillardd16df9f2001-05-23 13:44:21 +00002547
2548 if (doc == NULL)
2549 return(-1);
Daniel Veillard8edf1c52003-07-22 20:52:14 +00002550 tree = xmlDocGetRootElement(doc);
2551 if (tree == NULL)
2552 return(-1);
Stefan Behnelb9590e92009-08-24 19:45:54 +02002553 return(xmlXIncludeProcessTreeFlagsData(tree, flags, data));
Daniel Veillard8edf1c52003-07-22 20:52:14 +00002554}
2555
2556/**
Daniel Veillard681e9042006-09-29 09:16:00 +00002557 * xmlXIncludeProcessFlags:
2558 * @doc: an XML document
2559 * @flags: a set of xmlParserOption used for parsing XML includes
2560 *
2561 * Implement the XInclude substitution on the XML document @doc
2562 *
2563 * Returns 0 if no substitution were done, -1 if some processing failed
2564 * or the number of substitutions done.
2565 */
2566int
2567xmlXIncludeProcessFlags(xmlDocPtr doc, int flags) {
2568 return xmlXIncludeProcessFlagsData(doc, flags, NULL);
2569}
2570
2571/**
Daniel Veillarde74d2e12003-12-09 11:35:37 +00002572 * xmlXIncludeProcess:
2573 * @doc: an XML document
2574 *
2575 * Implement the XInclude substitution on the XML document @doc
2576 *
2577 * Returns 0 if no substitution were done, -1 if some processing failed
2578 * or the number of substitutions done.
2579 */
2580int
2581xmlXIncludeProcess(xmlDocPtr doc) {
2582 return(xmlXIncludeProcessFlags(doc, 0));
2583}
2584
2585/**
2586 * xmlXIncludeProcessTreeFlags:
2587 * @tree: a node in an XML document
2588 * @flags: a set of xmlParserOption used for parsing XML includes
2589 *
2590 * Implement the XInclude substitution for the given subtree
2591 *
2592 * Returns 0 if no substitution were done, -1 if some processing failed
2593 * or the number of substitutions done.
2594 */
2595int
2596xmlXIncludeProcessTreeFlags(xmlNodePtr tree, int flags) {
2597 xmlXIncludeCtxtPtr ctxt;
2598 int ret = 0;
2599
Daniel Veillard3e62adb2012-08-09 14:24:02 +08002600 if ((tree == NULL) || (tree->type == XML_NAMESPACE_DECL) ||
2601 (tree->doc == NULL))
Daniel Veillarde74d2e12003-12-09 11:35:37 +00002602 return(-1);
2603 ctxt = xmlXIncludeNewContext(tree->doc);
2604 if (ctxt == NULL)
2605 return(-1);
William M. Brackf7789b12004-06-07 08:57:27 +00002606 ctxt->base = xmlNodeGetBase(tree->doc, tree);
Daniel Veillarde74d2e12003-12-09 11:35:37 +00002607 xmlXIncludeSetFlags(ctxt, flags);
Haibo Huangf0a546b2020-09-01 20:28:19 -07002608 ret = xmlXIncludeDoProcess(ctxt, tree->doc, tree, 0);
Daniel Veillarde74d2e12003-12-09 11:35:37 +00002609 if ((ret >= 0) && (ctxt->nbErrors > 0))
2610 ret = -1;
2611
2612 xmlXIncludeFreeContext(ctxt);
2613 return(ret);
2614}
2615
2616/**
Daniel Veillard8edf1c52003-07-22 20:52:14 +00002617 * xmlXIncludeProcessTree:
2618 * @tree: a node in an XML document
2619 *
2620 * Implement the XInclude substitution for the given subtree
2621 *
2622 * Returns 0 if no substitution were done, -1 if some processing failed
2623 * or the number of substitutions done.
2624 */
2625int
2626xmlXIncludeProcessTree(xmlNodePtr tree) {
Daniel Veillarde74d2e12003-12-09 11:35:37 +00002627 return(xmlXIncludeProcessTreeFlags(tree, 0));
Owen Taylor3473f882001-02-23 17:55:21 +00002628}
2629
Daniel Veillard7899c5c2003-11-03 12:31:38 +00002630/**
2631 * xmlXIncludeProcessNode:
2632 * @ctxt: an existing XInclude context
2633 * @node: a node in an XML document
2634 *
2635 * Implement the XInclude substitution for the given subtree reusing
Haibo Huangcfd91dc2020-07-30 23:01:33 -07002636 * the information and data coming from the given context.
Daniel Veillard7899c5c2003-11-03 12:31:38 +00002637 *
2638 * Returns 0 if no substitution were done, -1 if some processing failed
2639 * or the number of substitutions done.
2640 */
2641int
2642xmlXIncludeProcessNode(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node) {
2643 int ret = 0;
2644
Daniel Veillard3e62adb2012-08-09 14:24:02 +08002645 if ((node == NULL) || (node->type == XML_NAMESPACE_DECL) ||
2646 (node->doc == NULL) || (ctxt == NULL))
Daniel Veillard7899c5c2003-11-03 12:31:38 +00002647 return(-1);
Haibo Huangf0a546b2020-09-01 20:28:19 -07002648 ret = xmlXIncludeDoProcess(ctxt, node->doc, node, 0);
Daniel Veillard7899c5c2003-11-03 12:31:38 +00002649 if ((ret >= 0) && (ctxt->nbErrors > 0))
2650 ret = -1;
2651 return(ret);
2652}
2653
Owen Taylor3473f882001-02-23 17:55:21 +00002654#else /* !LIBXML_XINCLUDE_ENABLED */
2655#endif
Daniel Veillard5d4644e2005-04-01 13:11:58 +00002656#define bottom_xinclude
2657#include "elfgcchack.h"