blob: c04ce666348ff3722c4962baa3e06a22a26c6996 [file] [log] [blame]
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001/*
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002 * "Canonical XML" implementation
Daniel Veillard044fc6b2002-03-04 17:09:44 +00003 * http://www.w3.org/TR/xml-c14n
Daniel Veillardf8e3db02012-09-11 13:26:36 +08004 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +00005 * "Exclusive XML Canonicalization" implementation
6 * http://www.w3.org/TR/xml-exc-c14n
7 *
8 * See Copyright for the status of this software.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08009 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +000010 * Author: Aleksey Sanin <aleksey@aleksey.com>
11 */
Daniel Veillard34ce8be2002-03-18 19:37:11 +000012#define IN_LIBXML
Daniel Veillard044fc6b2002-03-04 17:09:44 +000013#include "libxml.h"
14#ifdef LIBXML_C14N_ENABLED
Daniel Veillarda9cce9c2003-09-29 13:20:24 +000015#ifdef LIBXML_OUTPUT_ENABLED
Daniel Veillard044fc6b2002-03-04 17:09:44 +000016
17#ifdef HAVE_STDLIB_H
18#include <stdlib.h>
19#endif
20#include <string.h>
21
22#include <libxml/tree.h>
23#include <libxml/parser.h>
Daniel Veillard9ff88172002-03-11 09:15:32 +000024#include <libxml/uri.h>
Daniel Veillard044fc6b2002-03-04 17:09:44 +000025#include <libxml/xmlerror.h>
26#include <libxml/globals.h>
27#include <libxml/xpathInternals.h>
28#include <libxml/c14n.h>
29
Daniel Veillard53aa2932012-07-16 14:37:00 +080030#include "buf.h"
31
Daniel Veillard044fc6b2002-03-04 17:09:44 +000032/************************************************************************
33 * *
34 * Some declaration better left private ATM *
35 * *
36 ************************************************************************/
37
Daniel Veillard9ff88172002-03-11 09:15:32 +000038typedef enum {
39 XMLC14N_BEFORE_DOCUMENT_ELEMENT = 0,
40 XMLC14N_INSIDE_DOCUMENT_ELEMENT = 1,
41 XMLC14N_AFTER_DOCUMENT_ELEMENT = 2
Daniel Veillard044fc6b2002-03-04 17:09:44 +000042} xmlC14NPosition;
43
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +000044typedef struct _xmlC14NVisibleNsStack {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +000045 int nsCurEnd; /* number of nodes in the set */
46 int nsPrevStart; /* the begginning of the stack for previous visible node */
47 int nsPrevEnd; /* the end of the stack for previous visible node */
48 int nsMax; /* size of the array as allocated */
Daniel Veillardf8e3db02012-09-11 13:26:36 +080049 xmlNsPtr *nsTab; /* array of ns in no particular order */
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +000050 xmlNodePtr *nodeTab; /* array of nodes in no particular order */
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +000051} xmlC14NVisibleNsStack, *xmlC14NVisibleNsStackPtr;
Aleksey Sanindffd5c82002-05-31 04:24:13 +000052
Daniel Veillard044fc6b2002-03-04 17:09:44 +000053typedef struct _xmlC14NCtx {
54 /* input parameters */
Daniel Veillard9ff88172002-03-11 09:15:32 +000055 xmlDocPtr doc;
Aleksey Sanin2c135a12002-08-01 06:31:50 +000056 xmlC14NIsVisibleCallback is_visible_callback;
Daniel Veillardf8e3db02012-09-11 13:26:36 +080057 void* user_data;
Daniel Veillard9ff88172002-03-11 09:15:32 +000058 int with_comments;
59 xmlOutputBufferPtr buf;
Daniel Veillard044fc6b2002-03-04 17:09:44 +000060
61 /* position in the XML document */
Daniel Veillard9ff88172002-03-11 09:15:32 +000062 xmlC14NPosition pos;
63 int parent_is_doc;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +000064 xmlC14NVisibleNsStackPtr ns_rendered;
Daniel Veillardf8e3db02012-09-11 13:26:36 +080065
Aleksey Sanin83868242009-07-09 10:26:22 +020066 /* C14N mode */
67 xmlC14NMode mode;
Daniel Veillard044fc6b2002-03-04 17:09:44 +000068
69 /* exclusive canonicalization */
Daniel Veillard9ff88172002-03-11 09:15:32 +000070 xmlChar **inclusive_ns_prefixes;
Daniel Veillardd96cce12003-10-10 12:30:37 +000071
72 /* error number */
73 int error;
Daniel Veillard044fc6b2002-03-04 17:09:44 +000074} xmlC14NCtx, *xmlC14NCtxPtr;
75
Aleksey Sanin2c135a12002-08-01 06:31:50 +000076static xmlC14NVisibleNsStackPtr xmlC14NVisibleNsStackCreate (void);
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +000077static void xmlC14NVisibleNsStackDestroy (xmlC14NVisibleNsStackPtr cur);
Daniel Veillardf8e3db02012-09-11 13:26:36 +080078static void xmlC14NVisibleNsStackAdd (xmlC14NVisibleNsStackPtr cur,
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +000079 xmlNsPtr ns,
80 xmlNodePtr node);
Daniel Veillardf8e3db02012-09-11 13:26:36 +080081static void xmlC14NVisibleNsStackSave (xmlC14NVisibleNsStackPtr cur,
Aleksey Sanin2c135a12002-08-01 06:31:50 +000082 xmlC14NVisibleNsStackPtr state);
Daniel Veillardf8e3db02012-09-11 13:26:36 +080083static void xmlC14NVisibleNsStackRestore (xmlC14NVisibleNsStackPtr cur,
Aleksey Sanin2c135a12002-08-01 06:31:50 +000084 xmlC14NVisibleNsStackPtr state);
Daniel Veillardf8e3db02012-09-11 13:26:36 +080085static void xmlC14NVisibleNsStackShift (xmlC14NVisibleNsStackPtr cur);
86static int xmlC14NVisibleNsStackFind (xmlC14NVisibleNsStackPtr cur,
Aleksey Sanin2c135a12002-08-01 06:31:50 +000087 xmlNsPtr ns);
Daniel Veillardf8e3db02012-09-11 13:26:36 +080088static int xmlExcC14NVisibleNsStackFind (xmlC14NVisibleNsStackPtr cur,
Aleksey Sanin2c135a12002-08-01 06:31:50 +000089 xmlNsPtr ns,
90 xmlC14NCtxPtr ctx);
91
Nick Wellnhofere5f33e52017-11-09 17:29:22 +010092static int xmlC14NIsNodeInNodeset (void *user_data,
Aleksey Sanin2c135a12002-08-01 06:31:50 +000093 xmlNodePtr node,
94 xmlNodePtr parent);
95
96
Daniel Veillard044fc6b2002-03-04 17:09:44 +000097
Daniel Veillard9ff88172002-03-11 09:15:32 +000098static int xmlC14NProcessNode(xmlC14NCtxPtr ctx, xmlNodePtr cur);
99static int xmlC14NProcessNodeList(xmlC14NCtxPtr ctx, xmlNodePtr cur);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000100typedef enum {
Daniel Veillard9ff88172002-03-11 09:15:32 +0000101 XMLC14N_NORMALIZE_ATTR = 0,
102 XMLC14N_NORMALIZE_COMMENT = 1,
103 XMLC14N_NORMALIZE_PI = 2,
104 XMLC14N_NORMALIZE_TEXT = 3
105} xmlC14NNormalizationMode;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000106
Daniel Veillard9ff88172002-03-11 09:15:32 +0000107static xmlChar *xmlC11NNormalizeString(const xmlChar * input,
108 xmlC14NNormalizationMode mode);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000109
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800110#define xmlC11NNormalizeAttr( a ) \
Daniel Veillard9ff88172002-03-11 09:15:32 +0000111 xmlC11NNormalizeString((a), XMLC14N_NORMALIZE_ATTR)
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800112#define xmlC11NNormalizeComment( a ) \
Daniel Veillard9ff88172002-03-11 09:15:32 +0000113 xmlC11NNormalizeString((a), XMLC14N_NORMALIZE_COMMENT)
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800114#define xmlC11NNormalizePI( a ) \
Daniel Veillard9ff88172002-03-11 09:15:32 +0000115 xmlC11NNormalizeString((a), XMLC14N_NORMALIZE_PI)
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800116#define xmlC11NNormalizeText( a ) \
Daniel Veillard9ff88172002-03-11 09:15:32 +0000117 xmlC11NNormalizeString((a), XMLC14N_NORMALIZE_TEXT)
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000118
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800119#define xmlC14NIsVisible( ctx, node, parent ) \
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000120 (((ctx)->is_visible_callback != NULL) ? \
121 (ctx)->is_visible_callback((ctx)->user_data, \
122 (xmlNodePtr)(node), (xmlNodePtr)(parent)) : 1)
Daniel Veillardd96cce12003-10-10 12:30:37 +0000123
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800124#define xmlC14NIsExclusive( ctx ) \
Aleksey Sanin83868242009-07-09 10:26:22 +0200125 ( (ctx)->mode == XML_C14N_EXCLUSIVE_1_0 )
126
Daniel Veillardd96cce12003-10-10 12:30:37 +0000127/************************************************************************
128 * *
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800129 * Some factorized error routines *
Daniel Veillardd96cce12003-10-10 12:30:37 +0000130 * *
131 ************************************************************************/
132
133/**
134 * xmlC14NErrMemory:
135 * @extra: extra informations
136 *
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000137 * Handle a redefinition of memory error
Daniel Veillardd96cce12003-10-10 12:30:37 +0000138 */
139static void
140xmlC14NErrMemory(const char *extra)
141{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000142 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
Daniel Veillardd96cce12003-10-10 12:30:37 +0000143 XML_ERR_NO_MEMORY, XML_ERR_ERROR, NULL, 0, extra,
144 NULL, NULL, 0, 0,
145 "Memory allocation failed : %s\n", extra);
146}
147
148/**
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000149 * xmlC14NErrParam:
150 * @extra: extra informations
151 *
152 * Handle a redefinition of param error
153 */
154static void
155xmlC14NErrParam(const char *extra)
156{
157 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
158 XML_ERR_INTERNAL_ERROR, XML_ERR_ERROR, NULL, 0, extra,
159 NULL, NULL, 0, 0,
160 "Invalid parameter : %s\n", extra);
161}
162
163/**
164 * xmlC14NErrInternal:
165 * @extra: extra informations
166 *
167 * Handle a redefinition of internal error
168 */
169static void
170xmlC14NErrInternal(const char *extra)
171{
172 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
173 XML_ERR_INTERNAL_ERROR, XML_ERR_ERROR, NULL, 0, extra,
174 NULL, NULL, 0, 0,
175 "Internal error : %s\n", extra);
176}
177
178/**
179 * xmlC14NErrInvalidNode:
180 * @extra: extra informations
181 *
182 * Handle a redefinition of invalid node error
183 */
184static void
185xmlC14NErrInvalidNode(const char *node_type, const char *extra)
186{
187 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
188 XML_C14N_INVALID_NODE, XML_ERR_ERROR, NULL, 0, extra,
189 NULL, NULL, 0, 0,
190 "Node %s is invalid here : %s\n", node_type, extra);
191}
192
193/**
194 * xmlC14NErrUnknownNode:
195 * @extra: extra informations
196 *
197 * Handle a redefinition of unknown node error
198 */
199static void
200xmlC14NErrUnknownNode(int node_type, const char *extra)
201{
202 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
203 XML_C14N_UNKNOW_NODE, XML_ERR_ERROR, NULL, 0, extra,
204 NULL, NULL, 0, 0,
205 "Unknown node type %d found : %s\n", node_type, extra);
206}
207
208/**
209 * xmlC14NErrRelativeNamespace:
210 * @extra: extra informations
211 *
212 * Handle a redefinition of relative namespace error
213 */
214static void
215xmlC14NErrRelativeNamespace(const char *ns_uri)
216{
217 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
218 XML_C14N_RELATIVE_NAMESPACE, XML_ERR_ERROR, NULL, 0, NULL,
219 NULL, NULL, 0, 0,
220 "Relative namespace UR is invalid here : %s\n", ns_uri);
221}
222
223
224
225/**
Daniel Veillardd96cce12003-10-10 12:30:37 +0000226 * xmlC14NErr:
227 * @ctxt: a C14N evaluation context
228 * @node: the context node
229 * @error: the erorr code
230 * @msg: the message
231 * @extra: extra informations
232 *
233 * Handle a redefinition of attribute error
234 */
235static void
236xmlC14NErr(xmlC14NCtxPtr ctxt, xmlNodePtr node, int error,
237 const char * msg)
238{
239 if (ctxt != NULL)
240 ctxt->error = error;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000241 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardd96cce12003-10-10 12:30:37 +0000242 ctxt, node, XML_FROM_C14N, error,
243 XML_ERR_ERROR, NULL, 0,
Daniel Veillardbccae2d2009-06-04 11:22:45 +0200244 NULL, NULL, NULL, 0, 0, "%s", msg);
Daniel Veillardd96cce12003-10-10 12:30:37 +0000245}
246
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000247/************************************************************************
248 * *
249 * The implementation internals *
250 * *
251 ************************************************************************/
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000252#define XML_NAMESPACES_DEFAULT 16
253
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800254static int
Nick Wellnhofere5f33e52017-11-09 17:29:22 +0100255xmlC14NIsNodeInNodeset(void *user_data, xmlNodePtr node, xmlNodePtr parent) {
256 xmlNodeSetPtr nodes = (xmlNodeSetPtr) user_data;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000257 if((nodes != NULL) && (node != NULL)) {
258 if(node->type != XML_NAMESPACE_DECL) {
259 return(xmlXPathNodeSetContains(nodes, node));
260 } else {
261 xmlNs ns;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800262
263 memcpy(&ns, node, sizeof(ns));
264
Aleksey Sanin6de6f972004-04-20 02:05:30 +0000265 /* this is a libxml hack! check xpath.c for details */
266 if((parent != NULL) && (parent->type == XML_ATTRIBUTE_NODE)) {
267 ns.next = (xmlNsPtr)parent->parent;
268 } else {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800269 ns.next = (xmlNsPtr)parent;
Aleksey Sanin6de6f972004-04-20 02:05:30 +0000270 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000271
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800272 /*
273 * If the input is an XPath node-set, then the node-set must explicitly
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000274 * contain every node to be rendered to the canonical form.
275 */
276 return(xmlXPathNodeSetContains(nodes, (xmlNodePtr)&ns));
277 }
278 }
279 return(1);
280}
281
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000282static xmlC14NVisibleNsStackPtr
283xmlC14NVisibleNsStackCreate(void) {
284 xmlC14NVisibleNsStackPtr ret;
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000285
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000286 ret = (xmlC14NVisibleNsStackPtr) xmlMalloc(sizeof(xmlC14NVisibleNsStack));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000287 if (ret == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000288 xmlC14NErrMemory("creating namespaces stack");
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000289 return(NULL);
290 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000291 memset(ret, 0 , (size_t) sizeof(xmlC14NVisibleNsStack));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000292 return(ret);
293}
294
295static void
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000296xmlC14NVisibleNsStackDestroy(xmlC14NVisibleNsStackPtr cur) {
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000297 if(cur == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000298 xmlC14NErrParam("destroying namespaces stack");
299 return;
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000300 }
301 if(cur->nsTab != NULL) {
302 memset(cur->nsTab, 0, cur->nsMax * sizeof(xmlNsPtr));
303 xmlFree(cur->nsTab);
304 }
Aleksey Saninea4272a2002-08-02 23:50:03 +0000305 if(cur->nodeTab != NULL) {
306 memset(cur->nodeTab, 0, cur->nsMax * sizeof(xmlNodePtr));
307 xmlFree(cur->nodeTab);
308 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000309 memset(cur, 0, sizeof(xmlC14NVisibleNsStack));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000310 xmlFree(cur);
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800311
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000312}
313
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800314static void
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000315xmlC14NVisibleNsStackAdd(xmlC14NVisibleNsStackPtr cur, xmlNsPtr ns, xmlNodePtr node) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800316 if((cur == NULL) ||
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000317 ((cur->nsTab == NULL) && (cur->nodeTab != NULL)) ||
318 ((cur->nsTab != NULL) && (cur->nodeTab == NULL))) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000319 xmlC14NErrParam("adding namespace to stack");
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000320 return;
321 }
322
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000323 if ((cur->nsTab == NULL) && (cur->nodeTab == NULL)) {
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000324 cur->nsTab = (xmlNsPtr*) xmlMalloc(XML_NAMESPACES_DEFAULT * sizeof(xmlNsPtr));
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000325 cur->nodeTab = (xmlNodePtr*) xmlMalloc(XML_NAMESPACES_DEFAULT * sizeof(xmlNodePtr));
326 if ((cur->nsTab == NULL) || (cur->nodeTab == NULL)) {
Daniel Veillardd96cce12003-10-10 12:30:37 +0000327 xmlC14NErrMemory("adding node to stack");
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000328 return;
329 }
330 memset(cur->nsTab, 0 , XML_NAMESPACES_DEFAULT * sizeof(xmlNsPtr));
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000331 memset(cur->nodeTab, 0 , XML_NAMESPACES_DEFAULT * sizeof(xmlNodePtr));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000332 cur->nsMax = XML_NAMESPACES_DEFAULT;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000333 } else if(cur->nsMax == cur->nsCurEnd) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800334 void *tmp;
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000335 int tmpSize;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800336
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000337 tmpSize = 2 * cur->nsMax;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000338 tmp = xmlRealloc(cur->nsTab, tmpSize * sizeof(xmlNsPtr));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000339 if (tmp == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +0000340 xmlC14NErrMemory("adding node to stack");
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000341 return;
342 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000343 cur->nsTab = (xmlNsPtr*)tmp;
344
345 tmp = xmlRealloc(cur->nodeTab, tmpSize * sizeof(xmlNodePtr));
346 if (tmp == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +0000347 xmlC14NErrMemory("adding node to stack");
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000348 return;
349 }
350 cur->nodeTab = (xmlNodePtr*)tmp;
351
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000352 cur->nsMax = tmpSize;
353 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000354 cur->nsTab[cur->nsCurEnd] = ns;
355 cur->nodeTab[cur->nsCurEnd] = node;
356
357 ++cur->nsCurEnd;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000358}
359
360static void
361xmlC14NVisibleNsStackSave(xmlC14NVisibleNsStackPtr cur, xmlC14NVisibleNsStackPtr state) {
362 if((cur == NULL) || (state == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000363 xmlC14NErrParam("saving namespaces stack");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000364 return;
365 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800366
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000367 state->nsCurEnd = cur->nsCurEnd;
368 state->nsPrevStart = cur->nsPrevStart;
369 state->nsPrevEnd = cur->nsPrevEnd;
370}
371
372static void
373xmlC14NVisibleNsStackRestore(xmlC14NVisibleNsStackPtr cur, xmlC14NVisibleNsStackPtr state) {
374 if((cur == NULL) || (state == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000375 xmlC14NErrParam("restoring namespaces stack");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000376 return;
377 }
378 cur->nsCurEnd = state->nsCurEnd;
379 cur->nsPrevStart = state->nsPrevStart;
380 cur->nsPrevEnd = state->nsPrevEnd;
381}
382
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800383static void
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000384xmlC14NVisibleNsStackShift(xmlC14NVisibleNsStackPtr cur) {
385 if(cur == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000386 xmlC14NErrParam("shifting namespaces stack");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000387 return;
388 }
389 cur->nsPrevStart = cur->nsPrevEnd;
390 cur->nsPrevEnd = cur->nsCurEnd;
391}
392
393static int
394xmlC14NStrEqual(const xmlChar *str1, const xmlChar *str2) {
395 if (str1 == str2) return(1);
396 if (str1 == NULL) return((*str2) == '\0');
397 if (str2 == NULL) return((*str1) == '\0');
398 do {
399 if (*str1++ != *str2) return(0);
400 } while (*str2++);
401 return(1);
402}
403
404/**
405 * xmlC14NVisibleNsStackFind:
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800406 * @ctx: the C14N context
Daniel Veillard01c13b52002-12-10 15:19:08 +0000407 * @ns: the namespace to check
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000408 *
409 * Checks whether the given namespace was already rendered or not
410 *
411 * Returns 1 if we already wrote this namespace or 0 otherwise
412 */
413static int
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000414xmlC14NVisibleNsStackFind(xmlC14NVisibleNsStackPtr cur, xmlNsPtr ns)
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000415{
416 int i;
417 const xmlChar *prefix;
418 const xmlChar *href;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000419 int has_empty_ns;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800420
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000421 if(cur == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000422 xmlC14NErrParam("searching namespaces stack (c14n)");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000423 return (0);
424 }
425
426 /*
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800427 * if the default namespace xmlns="" is not defined yet then
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000428 * we do not want to print it out
429 */
430 prefix = ((ns == NULL) || (ns->prefix == NULL)) ? BAD_CAST "" : ns->prefix;
431 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000432 has_empty_ns = (xmlC14NStrEqual(prefix, NULL) && xmlC14NStrEqual(href, NULL));
433
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000434 if (cur->nsTab != NULL) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000435 int start = (has_empty_ns) ? 0 : cur->nsPrevStart;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000436 for (i = cur->nsCurEnd - 1; i >= start; --i) {
437 xmlNsPtr ns1 = cur->nsTab[i];
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800438
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000439 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
440 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL));
441 }
442 }
443 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000444 return(has_empty_ns);
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000445}
446
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800447static int
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000448xmlExcC14NVisibleNsStackFind(xmlC14NVisibleNsStackPtr cur, xmlNsPtr ns, xmlC14NCtxPtr ctx) {
449 int i;
450 const xmlChar *prefix;
451 const xmlChar *href;
452 int has_empty_ns;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800453
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000454 if(cur == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000455 xmlC14NErrParam("searching namespaces stack (exc c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000456 return (0);
457 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000458
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000459 /*
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800460 * if the default namespace xmlns="" is not defined yet then
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000461 * we do not want to print it out
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000462 */
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000463 prefix = ((ns == NULL) || (ns->prefix == NULL)) ? BAD_CAST "" : ns->prefix;
464 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href;
465 has_empty_ns = (xmlC14NStrEqual(prefix, NULL) && xmlC14NStrEqual(href, NULL));
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000466
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000467 if (cur->nsTab != NULL) {
468 int start = 0;
469 for (i = cur->nsCurEnd - 1; i >= start; --i) {
470 xmlNsPtr ns1 = cur->nsTab[i];
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800471
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000472 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
473 if(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL)) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800474 return(xmlC14NIsVisible(ctx, ns1, cur->nodeTab[i]));
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000475 } else {
476 return(0);
477 }
478 }
479 }
480 }
481 return(has_empty_ns);
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000482}
483
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000484
485
486
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000487/**
488 * xmlC14NIsXmlNs:
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800489 * @ns: the namespace to check
490 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000491 * Checks whether the given namespace is a default "xml:" namespace
492 * with href="http://www.w3.org/XML/1998/namespace"
493 *
494 * Returns 1 if the node is default or 0 otherwise
495 */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000496
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000497/* todo: make it a define? */
498static int
Daniel Veillard9ff88172002-03-11 09:15:32 +0000499xmlC14NIsXmlNs(xmlNsPtr ns)
500{
501 return ((ns != NULL) &&
502 (xmlStrEqual(ns->prefix, BAD_CAST "xml")) &&
Aleksey Sanin83868242009-07-09 10:26:22 +0200503 (xmlStrEqual(ns->href, XML_XML_NAMESPACE)));
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000504}
505
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000506
507/**
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000508 * xmlC14NNsCompare:
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000509 * @ns1: the pointer to first namespace
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800510 * @ns2: the pointer to second namespace
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000511 *
512 * Compares the namespaces by names (prefixes).
513 *
514 * Returns -1 if ns1 < ns2, 0 if ns1 == ns2 or 1 if ns1 > ns2.
515 */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000516static int
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100517xmlC14NNsCompare(const void *data1, const void *data2)
Daniel Veillard9ff88172002-03-11 09:15:32 +0000518{
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100519 const xmlNsPtr ns1 = (const xmlNsPtr) data1;
520 const xmlNsPtr ns2 = (const xmlNsPtr) data2;
Daniel Veillard9ff88172002-03-11 09:15:32 +0000521 if (ns1 == ns2)
522 return (0);
523 if (ns1 == NULL)
524 return (-1);
525 if (ns2 == NULL)
526 return (1);
527
528 return (xmlStrcmp(ns1->prefix, ns2->prefix));
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000529}
530
531
532/**
533 * xmlC14NPrintNamespaces:
534 * @ns: the pointer to namespace
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800535 * @ctx: the C14N context
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000536 *
537 * Prints the given namespace to the output buffer from C14N context.
538 *
539 * Returns 1 on success or 0 on fail.
540 */
541static int
Daniel Veillard9ff88172002-03-11 09:15:32 +0000542xmlC14NPrintNamespaces(const xmlNsPtr ns, xmlC14NCtxPtr ctx)
543{
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000544
Daniel Veillard9ff88172002-03-11 09:15:32 +0000545 if ((ns == NULL) || (ctx == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000546 xmlC14NErrParam("writing namespaces");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000547 return 0;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000548 }
549
Daniel Veillard9ff88172002-03-11 09:15:32 +0000550 if (ns->prefix != NULL) {
551 xmlOutputBufferWriteString(ctx->buf, " xmlns:");
552 xmlOutputBufferWriteString(ctx->buf, (const char *) ns->prefix);
Aleksey Sanin1ba80b72013-05-09 16:02:16 +0000553 xmlOutputBufferWriteString(ctx->buf, "=");
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000554 } else {
Aleksey Sanin1ba80b72013-05-09 16:02:16 +0000555 xmlOutputBufferWriteString(ctx->buf, " xmlns=");
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000556 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000557 if(ns->href != NULL) {
Aleksey Sanin1ba80b72013-05-09 16:02:16 +0000558 xmlBufWriteQuotedString(ctx->buf->buffer, ns->href);
559 } else {
560 xmlOutputBufferWriteString(ctx->buf, "\"\"");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000561 }
Daniel Veillard9ff88172002-03-11 09:15:32 +0000562 return (1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000563}
564
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100565static int
566xmlC14NPrintNamespacesWalker(const void *ns, void *ctx) {
567 return xmlC14NPrintNamespaces((const xmlNsPtr) ns, (xmlC14NCtxPtr) ctx);
568}
569
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000570/**
571 * xmlC14NProcessNamespacesAxis:
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800572 * @ctx: the C14N context
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000573 * @node: the current node
574 *
575 * Prints out canonical namespace axis of the current node to the
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800576 * buffer from C14N context as follows
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000577 *
578 * Canonical XML v 1.0 (http://www.w3.org/TR/xml-c14n)
579 *
580 * Namespace Axis
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800581 * Consider a list L containing only namespace nodes in the
582 * axis and in the node-set in lexicographic order (ascending). To begin
583 * processing L, if the first node is not the default namespace node (a node
584 * with no namespace URI and no local name), then generate a space followed
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000585 * by xmlns="" if and only if the following conditions are met:
586 * - the element E that owns the axis is in the node-set
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800587 * - The nearest ancestor element of E in the node-set has a default
588 * namespace node in the node-set (default namespace nodes always
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000589 * have non-empty values in XPath)
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800590 * The latter condition eliminates unnecessary occurrences of xmlns="" in
591 * the canonical form since an element only receives an xmlns="" if its
592 * default namespace is empty and if it has an immediate parent in the
593 * canonical form that has a non-empty default namespace. To finish
594 * processing L, simply process every namespace node in L, except omit
595 * namespace node with local name xml, which defines the xml prefix,
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000596 * if its string value is http://www.w3.org/XML/1998/namespace.
597 *
598 * Exclusive XML Canonicalization v 1.0 (http://www.w3.org/TR/xml-exc-c14n)
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800599 * Canonical XML applied to a document subset requires the search of the
600 * ancestor nodes of each orphan element node for attributes in the xml
601 * namespace, such as xml:lang and xml:space. These are copied into the
602 * element node except if a declaration of the same attribute is already
603 * in the attribute axis of the element (whether or not it is included in
604 * the document subset). This search and copying are omitted from the
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000605 * Exclusive XML Canonicalization method.
606 *
607 * Returns 0 on success or -1 on fail.
608 */
609static int
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000610xmlC14NProcessNamespacesAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible)
Daniel Veillard9ff88172002-03-11 09:15:32 +0000611{
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000612 xmlNodePtr n;
613 xmlNsPtr ns, tmp;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000614 xmlListPtr list;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000615 int already_rendered;
616 int has_empty_ns = 0;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800617
Daniel Veillard9ff88172002-03-11 09:15:32 +0000618 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000619 xmlC14NErrParam("processing namespaces axis (c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000620 return (-1);
621 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000622
623 /*
624 * Create a sorted list to store element namespaces
625 */
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100626 list = xmlListCreate(NULL, xmlC14NNsCompare);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000627 if (list == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000628 xmlC14NErrInternal("creating namespaces list (c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000629 return (-1);
630 }
631
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000632 /* check all namespaces */
633 for(n = cur; n != NULL; n = n->parent) {
634 for(ns = n->nsDef; ns != NULL; ns = ns->next) {
635 tmp = xmlSearchNs(cur->doc, cur, ns->prefix);
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800636
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000637 if((tmp == ns) && !xmlC14NIsXmlNs(ns) && xmlC14NIsVisible(ctx, ns, cur)) {
638 already_rendered = xmlC14NVisibleNsStackFind(ctx->ns_rendered, ns);
639 if(visible) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800640 xmlC14NVisibleNsStackAdd(ctx->ns_rendered, ns, cur);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000641 }
642 if(!already_rendered) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800643 xmlListInsert(list, ns);
Aleksey Saninc57f9c12002-05-31 19:14:57 +0000644 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800645 if(xmlStrlen(ns->prefix) == 0) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000646 has_empty_ns = 1;
647 }
Aleksey Saninc57f9c12002-05-31 19:14:57 +0000648 }
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000649 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000650 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800651
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000652 /**
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800653 * if the first node is not the default namespace node (a node with no
654 * namespace URI and no local name), then generate a space followed by
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000655 * xmlns="" if and only if the following conditions are met:
656 * - the element E that owns the axis is in the node-set
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800657 * - the nearest ancestor element of E in the node-set has a default
658 * namespace node in the node-set (default namespace nodes always
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000659 * have non-empty values in XPath)
660 */
661 if(visible && !has_empty_ns) {
662 static xmlNs ns_default;
663
664 memset(&ns_default, 0, sizeof(ns_default));
665 if(!xmlC14NVisibleNsStackFind(ctx->ns_rendered, &ns_default)) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800666 xmlC14NPrintNamespaces(&ns_default, ctx);
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000667 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000668 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800669
670
671 /*
672 * print out all elements from list
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000673 */
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100674 xmlListWalk(list, xmlC14NPrintNamespacesWalker, (void *) ctx);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000675
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800676 /*
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000677 * Cleanup
678 */
679 xmlListDelete(list);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000680 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000681}
682
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000683
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000684/**
685 * xmlExcC14NProcessNamespacesAxis:
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800686 * @ctx: the C14N context
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000687 * @node: the current node
688 *
689 * Prints out exclusive canonical namespace axis of the current node to the
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800690 * buffer from C14N context as follows
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000691 *
692 * Exclusive XML Canonicalization
693 * http://www.w3.org/TR/xml-exc-c14n
694 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800695 * If the element node is in the XPath subset then output the node in
696 * accordance with Canonical XML except for namespace nodes which are
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000697 * rendered as follows:
698 *
699 * 1. Render each namespace node iff:
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800700 * * it is visibly utilized by the immediate parent element or one of
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000701 * its attributes, or is present in InclusiveNamespaces PrefixList, and
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800702 * * its prefix and value do not appear in ns_rendered. ns_rendered is
703 * obtained by popping the state stack in order to obtain a list of
704 * prefixes and their values which have already been rendered by
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000705 * an output ancestor of the namespace node's parent element.
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800706 * 2. Append the rendered namespace node to the list ns_rendered of namespace
707 * nodes rendered by output ancestors. Push ns_rendered on state stack and
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000708 * recurse.
709 * 3. After the recursion returns, pop thestate stack.
710 *
711 *
712 * Returns 0 on success or -1 on fail.
713 */
714static int
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000715xmlExcC14NProcessNamespacesAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible)
Daniel Veillard9ff88172002-03-11 09:15:32 +0000716{
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000717 xmlNsPtr ns;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000718 xmlListPtr list;
719 xmlAttrPtr attr;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000720 int already_rendered;
721 int has_empty_ns = 0;
722 int has_visibly_utilized_empty_ns = 0;
723 int has_empty_ns_in_inclusive_list = 0;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800724
Daniel Veillard9ff88172002-03-11 09:15:32 +0000725 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000726 xmlC14NErrParam("processing namespaces axis (exc c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000727 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000728 }
Daniel Veillard9ff88172002-03-11 09:15:32 +0000729
Aleksey Sanin83868242009-07-09 10:26:22 +0200730 if(!xmlC14NIsExclusive(ctx)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000731 xmlC14NErrParam("processing namespaces axis (exc c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000732 return (-1);
733
734 }
735
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000736 /*
737 * Create a sorted list to store element namespaces
738 */
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100739 list = xmlListCreate(NULL, xmlC14NNsCompare);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000740 if (list == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000741 xmlC14NErrInternal("creating namespaces list (exc c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000742 return (-1);
743 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000744
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800745 /*
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000746 * process inclusive namespaces:
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800747 * All namespace nodes appearing on inclusive ns list are
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000748 * handled as provided in Canonical XML
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000749 */
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000750 if(ctx->inclusive_ns_prefixes != NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800751 xmlChar *prefix;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000752 int i;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800753
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000754 for (i = 0; ctx->inclusive_ns_prefixes[i] != NULL; ++i) {
755 prefix = ctx->inclusive_ns_prefixes[i];
756 /*
757 * Special values for namespace with empty prefix
758 */
759 if (xmlStrEqual(prefix, BAD_CAST "#default")
760 || xmlStrEqual(prefix, BAD_CAST "")) {
761 prefix = NULL;
762 has_empty_ns_in_inclusive_list = 1;
763 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800764
765 ns = xmlSearchNs(cur->doc, cur, prefix);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000766 if((ns != NULL) && !xmlC14NIsXmlNs(ns) && xmlC14NIsVisible(ctx, ns, cur)) {
767 already_rendered = xmlC14NVisibleNsStackFind(ctx->ns_rendered, ns);
768 if(visible) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800769 xmlC14NVisibleNsStackAdd(ctx->ns_rendered, ns, cur);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000770 }
771 if(!already_rendered) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800772 xmlListInsert(list, ns);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000773 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800774 if(xmlStrlen(ns->prefix) == 0) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000775 has_empty_ns = 1;
776 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000777 }
Aleksey Saninc57f9c12002-05-31 19:14:57 +0000778 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000779 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800780
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000781 /* add node namespace */
782 if(cur->ns != NULL) {
783 ns = cur->ns;
784 } else {
785 ns = xmlSearchNs(cur->doc, cur, NULL);
786 has_visibly_utilized_empty_ns = 1;
787 }
788 if((ns != NULL) && !xmlC14NIsXmlNs(ns)) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800789 if(visible && xmlC14NIsVisible(ctx, ns, cur)) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000790 if(!xmlExcC14NVisibleNsStackFind(ctx->ns_rendered, ns, ctx)) {
791 xmlListInsert(list, ns);
792 }
793 }
794 if(visible) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800795 xmlC14NVisibleNsStackAdd(ctx->ns_rendered, ns, cur);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000796 }
797 if(xmlStrlen(ns->prefix) == 0) {
798 has_empty_ns = 1;
799 }
800 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800801
802
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000803 /* add attributes */
804 for(attr = cur->properties; attr != NULL; attr = attr->next) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800805 /*
Daniel Veillard2d347fa2002-03-17 10:34:11 +0000806 * we need to check that attribute is visible and has non
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800807 * default namespace (XML Namespaces: "default namespaces
808 * do not apply directly to attributes")
Daniel Veillard9ff88172002-03-11 09:15:32 +0000809 */
Aleksey Sanin2650df12005-06-06 17:16:50 +0000810 if((attr->ns != NULL) && !xmlC14NIsXmlNs(attr->ns) && xmlC14NIsVisible(ctx, attr, cur)) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000811 already_rendered = xmlExcC14NVisibleNsStackFind(ctx->ns_rendered, attr->ns, ctx);
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800812 xmlC14NVisibleNsStackAdd(ctx->ns_rendered, attr->ns, cur);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000813 if(!already_rendered && visible) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800814 xmlListInsert(list, attr->ns);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000815 }
816 if(xmlStrlen(attr->ns->prefix) == 0) {
817 has_empty_ns = 1;
818 }
Aleksey Saninb2eabc02005-10-28 03:15:18 +0000819 } else if((attr->ns != NULL) && (xmlStrlen(attr->ns->prefix) == 0) && (xmlStrlen(attr->ns->href) == 0)) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000820 has_visibly_utilized_empty_ns = 1;
821 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000822 }
Daniel Veillard9ff88172002-03-11 09:15:32 +0000823
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000824 /*
825 * Process xmlns=""
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000826 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800827 if(visible && has_visibly_utilized_empty_ns &&
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000828 !has_empty_ns && !has_empty_ns_in_inclusive_list) {
829 static xmlNs ns_default;
Daniel Veillard9ff88172002-03-11 09:15:32 +0000830
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000831 memset(&ns_default, 0, sizeof(ns_default));
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800832
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000833 already_rendered = xmlExcC14NVisibleNsStackFind(ctx->ns_rendered, &ns_default, ctx);
834 if(!already_rendered) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800835 xmlC14NPrintNamespaces(&ns_default, ctx);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000836 }
837 } else if(visible && !has_empty_ns && has_empty_ns_in_inclusive_list) {
838 static xmlNs ns_default;
839
840 memset(&ns_default, 0, sizeof(ns_default));
841 if(!xmlC14NVisibleNsStackFind(ctx->ns_rendered, &ns_default)) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800842 xmlC14NPrintNamespaces(&ns_default, ctx);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000843 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000844 }
Daniel Veillard9ff88172002-03-11 09:15:32 +0000845
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000846
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800847
848 /*
849 * print out all elements from list
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000850 */
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100851 xmlListWalk(list, xmlC14NPrintNamespacesWalker, (void *) ctx);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000852
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800853 /*
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000854 * Cleanup
855 */
856 xmlListDelete(list);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000857 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000858}
859
860
861/**
Aleksey Sanin83868242009-07-09 10:26:22 +0200862 * xmlC14NIsXmlAttr:
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800863 * @attr: the attr to check
864 *
Aleksey Sanin83868242009-07-09 10:26:22 +0200865 * Checks whether the given attribute is a default "xml:" namespace
866 * with href="http://www.w3.org/XML/1998/namespace"
867 *
868 * Returns 1 if the node is default or 0 otherwise
869 */
870
871/* todo: make it a define? */
872static int
873xmlC14NIsXmlAttr(xmlAttrPtr attr)
874{
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800875 return ((attr->ns != NULL) &&
Aleksey Sanin83868242009-07-09 10:26:22 +0200876 (xmlC14NIsXmlNs(attr->ns) != 0));
877}
878
879
880/**
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000881 * xmlC14NAttrsCompare:
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000882 * @attr1: the pointer tls o first attr
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800883 * @attr2: the pointer to second attr
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000884 *
885 * Prints the given attribute to the output buffer from C14N context.
886 *
887 * Returns -1 if attr1 < attr2, 0 if attr1 == attr2 or 1 if attr1 > attr2.
888 */
889static int
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100890xmlC14NAttrsCompare(const void *data1, const void *data2)
Daniel Veillard9ff88172002-03-11 09:15:32 +0000891{
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100892 const xmlAttrPtr attr1 = (const xmlAttrPtr) data1;
893 const xmlAttrPtr attr2 = (const xmlAttrPtr) data2;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000894 int ret = 0;
895
896 /*
897 * Simple cases
898 */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000899 if (attr1 == attr2)
900 return (0);
901 if (attr1 == NULL)
902 return (-1);
903 if (attr2 == NULL)
904 return (1);
905 if (attr1->ns == attr2->ns) {
906 return (xmlStrcmp(attr1->name, attr2->name));
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000907 }
908
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800909 /*
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000910 * Attributes in the default namespace are first
911 * because the default namespace is not applied to
912 * unqualified attributes
913 */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000914 if (attr1->ns == NULL)
915 return (-1);
916 if (attr2->ns == NULL)
917 return (1);
918 if (attr1->ns->prefix == NULL)
919 return (-1);
920 if (attr2->ns->prefix == NULL)
921 return (1);
922
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000923 ret = xmlStrcmp(attr1->ns->href, attr2->ns->href);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000924 if (ret == 0) {
925 ret = xmlStrcmp(attr1->name, attr2->name);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000926 }
Daniel Veillard9ff88172002-03-11 09:15:32 +0000927 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000928}
929
930
931/**
932 * xmlC14NPrintAttrs:
933 * @attr: the pointer to attr
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800934 * @ctx: the C14N context
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000935 *
936 * Prints out canonical attribute urrent node to the
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800937 * buffer from C14N context as follows
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000938 *
939 * Canonical XML v 1.0 (http://www.w3.org/TR/xml-c14n)
940 *
941 * Returns 1 on success or 0 on fail.
942 */
943static int
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100944xmlC14NPrintAttrs(const void *data, void *user)
Daniel Veillard9ff88172002-03-11 09:15:32 +0000945{
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +0100946 const xmlAttrPtr attr = (const xmlAttrPtr) data;
947 xmlC14NCtxPtr ctx = (xmlC14NCtxPtr) user;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000948 xmlChar *value;
949 xmlChar *buffer;
950
Daniel Veillard9ff88172002-03-11 09:15:32 +0000951 if ((attr == NULL) || (ctx == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000952 xmlC14NErrParam("writing attributes");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000953 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000954 }
955
956 xmlOutputBufferWriteString(ctx->buf, " ");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000957 if (attr->ns != NULL && xmlStrlen(attr->ns->prefix) > 0) {
958 xmlOutputBufferWriteString(ctx->buf,
959 (const char *) attr->ns->prefix);
960 xmlOutputBufferWriteString(ctx->buf, ":");
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000961 }
962 xmlOutputBufferWriteString(ctx->buf, (const char *) attr->name);
963 xmlOutputBufferWriteString(ctx->buf, "=\"");
964
Aleksey Sanin83868242009-07-09 10:26:22 +0200965 value = xmlNodeListGetString(ctx->doc, attr->children, 1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000966 /* todo: should we log an error if value==NULL ? */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000967 if (value != NULL) {
968 buffer = xmlC11NNormalizeAttr(value);
969 xmlFree(value);
970 if (buffer != NULL) {
971 xmlOutputBufferWriteString(ctx->buf, (const char *) buffer);
972 xmlFree(buffer);
973 } else {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000974 xmlC14NErrInternal("normalizing attributes axis");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000975 return (0);
976 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000977 }
978 xmlOutputBufferWriteString(ctx->buf, "\"");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000979 return (1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000980}
981
982/**
Aleksey Sanin83868242009-07-09 10:26:22 +0200983 * xmlC14NFindHiddenParentAttr:
984 *
985 * Finds an attribute in a hidden parent node.
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800986 *
Aleksey Sanin83868242009-07-09 10:26:22 +0200987 * Returns a pointer to the attribute node (if found) or NULL otherwise.
988 */
989static xmlAttrPtr
990xmlC14NFindHiddenParentAttr(xmlC14NCtxPtr ctx, xmlNodePtr cur, const xmlChar * name, const xmlChar * ns)
991{
992 xmlAttrPtr res;
993 while((cur != NULL) && (!xmlC14NIsVisible(ctx, cur, cur->parent))) {
994 res = xmlHasNsProp(cur, name, ns);
995 if(res != NULL) {
996 return res;
997 }
998
999 cur = cur->parent;
1000 }
1001
1002 return NULL;
1003}
1004
1005/**
1006 * xmlC14NFixupBaseAttr:
1007 *
1008 * Fixes up the xml:base attribute
1009 *
1010 * Returns the newly created attribute or NULL
1011 */
1012static xmlAttrPtr
1013xmlC14NFixupBaseAttr(xmlC14NCtxPtr ctx, xmlAttrPtr xml_base_attr)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001014{
Aleksey Sanin83868242009-07-09 10:26:22 +02001015 xmlChar * res = NULL;
1016 xmlNodePtr cur;
1017 xmlAttrPtr attr;
1018 xmlChar * tmp_str;
1019 xmlChar * tmp_str2;
1020 int tmp_str_len;
1021
1022 if ((ctx == NULL) || (xml_base_attr == NULL) || (xml_base_attr->parent == NULL)) {
1023 xmlC14NErrParam("processing xml:base attribute");
1024 return (NULL);
1025 }
1026
1027 /* start from current value */
1028 res = xmlNodeListGetString(ctx->doc, xml_base_attr->children, 1);
1029 if(res == NULL) {
1030 xmlC14NErrInternal("processing xml:base attribute - can't get attr value");
1031 return (NULL);
1032 }
1033
1034 /* go up the stack until we find a node that we rendered already */
1035 cur = xml_base_attr->parent->parent;
1036 while((cur != NULL) && (!xmlC14NIsVisible(ctx, cur, cur->parent))) {
1037 attr = xmlHasNsProp(cur, BAD_CAST "base", XML_XML_NAMESPACE);
1038 if(attr != NULL) {
1039 /* get attr value */
1040 tmp_str = xmlNodeListGetString(ctx->doc, attr->children, 1);
1041 if(tmp_str == NULL) {
1042 xmlFree(res);
1043
1044 xmlC14NErrInternal("processing xml:base attribute - can't get attr value");
1045 return (NULL);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001046 }
Aleksey Sanin83868242009-07-09 10:26:22 +02001047
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001048 /* we need to add '/' if our current base uri ends with '..' or '.'
Aleksey Sanin83868242009-07-09 10:26:22 +02001049 to ensure that we are forced to go "up" all the time */
1050 tmp_str_len = xmlStrlen(tmp_str);
1051 if(tmp_str_len > 1 && tmp_str[tmp_str_len - 2] == '.') {
1052 tmp_str2 = xmlStrcat(tmp_str, BAD_CAST "/");
1053 if(tmp_str2 == NULL) {
1054 xmlFree(tmp_str);
1055 xmlFree(res);
1056
1057 xmlC14NErrInternal("processing xml:base attribute - can't modify uri");
1058 return (NULL);
1059 }
1060
1061 tmp_str = tmp_str2;
1062 }
1063
1064 /* build uri */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001065 tmp_str2 = xmlBuildURI(res, tmp_str);
Aleksey Sanin83868242009-07-09 10:26:22 +02001066 if(tmp_str2 == NULL) {
1067 xmlFree(tmp_str);
1068 xmlFree(res);
1069
1070 xmlC14NErrInternal("processing xml:base attribute - can't construct uri");
1071 return (NULL);
1072 }
1073
1074 /* cleanup and set the new res */
1075 xmlFree(tmp_str);
1076 xmlFree(res);
1077 res = tmp_str2;
1078 }
1079
1080 /* next */
1081 cur = cur->parent;
1082 }
1083
1084 /* check if result uri is empty or not */
1085 if((res == NULL) || xmlStrEqual(res, BAD_CAST "")) {
1086 xmlFree(res);
1087 return (NULL);
1088 }
1089
1090 /* create and return the new attribute node */
1091 attr = xmlNewNsProp(NULL, xml_base_attr->ns, BAD_CAST "base", res);
1092 if(attr == NULL) {
1093 xmlFree(res);
1094
1095 xmlC14NErrInternal("processing xml:base attribute - can't construct attribute");
1096 return (NULL);
1097 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001098
Aleksey Sanin83868242009-07-09 10:26:22 +02001099 /* done */
1100 xmlFree(res);
1101 return (attr);
1102}
1103
1104/**
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001105 * xmlC14NProcessAttrsAxis:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001106 * @ctx: the C14N context
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001107 * @cur: the current node
Aleksey Sanin3ea201c2005-06-07 16:53:57 +00001108 * @parent_visible: the visibility of parent node
Aleksey Sanin83868242009-07-09 10:26:22 +02001109 * @all_parents_visible: the visibility of all parent nodes
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001110 *
1111 * Prints out canonical attribute axis of the current node to the
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001112 * buffer from C14N context as follows
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001113 *
1114 * Canonical XML v 1.0 (http://www.w3.org/TR/xml-c14n)
1115 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001116 * Attribute Axis
1117 * In lexicographic order (ascending), process each node that
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001118 * is in the element's attribute axis and in the node-set.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001119 *
1120 * The processing of an element node E MUST be modified slightly
1121 * when an XPath node-set is given as input and the element's
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001122 * parent is omitted from the node-set.
1123 *
1124 *
1125 * Exclusive XML Canonicalization v 1.0 (http://www.w3.org/TR/xml-exc-c14n)
1126 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001127 * Canonical XML applied to a document subset requires the search of the
1128 * ancestor nodes of each orphan element node for attributes in the xml
1129 * namespace, such as xml:lang and xml:space. These are copied into the
1130 * element node except if a declaration of the same attribute is already
1131 * in the attribute axis of the element (whether or not it is included in
1132 * the document subset). This search and copying are omitted from the
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001133 * Exclusive XML Canonicalization method.
1134 *
1135 * Returns 0 on success or -1 on fail.
1136 */
1137static int
Aleksey Sanin3ea201c2005-06-07 16:53:57 +00001138xmlC14NProcessAttrsAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int parent_visible)
Daniel Veillard9ff88172002-03-11 09:15:32 +00001139{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001140 xmlAttrPtr attr;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001141 xmlListPtr list;
Aleksey Sanin83868242009-07-09 10:26:22 +02001142 xmlAttrPtr attrs_to_delete = NULL;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001143
Aleksey Sanin83868242009-07-09 10:26:22 +02001144 /* special processing for 1.1 spec */
1145 xmlAttrPtr xml_base_attr = NULL;
1146 xmlAttrPtr xml_lang_attr = NULL;
1147 xmlAttrPtr xml_space_attr = NULL;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001148
1149 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001150 xmlC14NErrParam("processing attributes axis");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001151 return (-1);
1152 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001153
1154 /*
1155 * Create a sorted list to store element attributes
1156 */
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +01001157 list = xmlListCreate(NULL, xmlC14NAttrsCompare);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001158 if (list == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001159 xmlC14NErrInternal("creating attributes list");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001160 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001161 }
1162
Aleksey Sanin83868242009-07-09 10:26:22 +02001163 switch(ctx->mode) {
1164 case XML_C14N_1_0:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001165 /* The processing of an element node E MUST be modified slightly when an XPath node-set is
1166 * given as input and the element's parent is omitted from the node-set. The method for processing
1167 * the attribute axis of an element E in the node-set is enhanced. All element nodes along E's
1168 * ancestor axis are examined for nearest occurrences of attributes in the xml namespace, such
1169 * as xml:lang and xml:space (whether or not they are in the node-set). From this list of attributes,
1170 * remove any that are in E's attribute axis (whether or not they are in the node-set). Then,
1171 * lexicographically merge this attribute list with the nodes of E's attribute axis that are in
1172 * the node-set. The result of visiting the attribute axis is computed by processing the attribute
1173 * nodes in this merged attribute list.
Daniel Veillard9ff88172002-03-11 09:15:32 +00001174 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001175
1176 /*
1177 * Add all visible attributes from current node.
Aleksey Sanin83868242009-07-09 10:26:22 +02001178 */
1179 attr = cur->properties;
1180 while (attr != NULL) {
1181 /* check that attribute is visible */
1182 if (xmlC14NIsVisible(ctx, attr, cur)) {
1183 xmlListInsert(list, attr);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001184 }
Aleksey Sanin83868242009-07-09 10:26:22 +02001185 attr = attr->next;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001186 }
Aleksey Sanin83868242009-07-09 10:26:22 +02001187
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001188 /*
Aleksey Sanin83868242009-07-09 10:26:22 +02001189 * Handle xml attributes
1190 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001191 if (parent_visible && (cur->parent != NULL) &&
1192 (!xmlC14NIsVisible(ctx, cur->parent, cur->parent->parent)))
Aleksey Sanin83868242009-07-09 10:26:22 +02001193 {
1194 xmlNodePtr tmp;
1195
1196 /*
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001197 * If XPath node-set is not specified then the parent is always
Aleksey Sanin83868242009-07-09 10:26:22 +02001198 * visible!
1199 */
1200 tmp = cur->parent;
1201 while (tmp != NULL) {
1202 attr = tmp->properties;
1203 while (attr != NULL) {
1204 if (xmlC14NIsXmlAttr(attr) != 0) {
1205 if (xmlListSearch(list, attr) == NULL) {
1206 xmlListInsert(list, attr);
1207 }
1208 }
1209 attr = attr->next;
1210 }
1211 tmp = tmp->parent;
1212 }
1213 }
1214
1215 /* done */
1216 break;
1217 case XML_C14N_EXCLUSIVE_1_0:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001218 /* attributes in the XML namespace, such as xml:lang and xml:space
1219 * are not imported into orphan nodes of the document subset
Aleksey Sanin83868242009-07-09 10:26:22 +02001220 */
1221
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001222 /*
1223 * Add all visible attributes from current node.
Aleksey Sanin83868242009-07-09 10:26:22 +02001224 */
1225 attr = cur->properties;
1226 while (attr != NULL) {
1227 /* check that attribute is visible */
1228 if (xmlC14NIsVisible(ctx, attr, cur)) {
1229 xmlListInsert(list, attr);
1230 }
1231 attr = attr->next;
1232 }
1233
1234 /* do nothing special for xml attributes */
1235 break;
1236 case XML_C14N_1_1:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001237 /* The processing of an element node E MUST be modified slightly when an XPath node-set is
1238 * given as input and some of the element's ancestors are omitted from the node-set.
Aleksey Sanin83868242009-07-09 10:26:22 +02001239 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001240 * Simple inheritable attributes are attributes that have a value that requires at most a simple
1241 * redeclaration. This redeclaration is done by supplying a new value in the child axis. The
1242 * redeclaration of a simple inheritable attribute A contained in one of E's ancestors is done
1243 * by supplying a value to an attribute Ae inside E with the same name. Simple inheritable attributes
Aleksey Sanin83868242009-07-09 10:26:22 +02001244 * are xml:lang and xml:space.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001245 *
1246 * The method for processing the attribute axis of an element E in the node-set is hence enhanced.
1247 * All element nodes along E's ancestor axis are examined for the nearest occurrences of simple
1248 * inheritable attributes in the xml namespace, such as xml:lang and xml:space (whether or not they
1249 * are in the node-set). From this list of attributes, any simple inheritable attributes that are
1250 * already in E's attribute axis (whether or not they are in the node-set) are removed. Then,
1251 * lexicographically merge this attribute list with the nodes of E's attribute axis that are in
1252 * the node-set. The result of visiting the attribute axis is computed by processing the attribute
Aleksey Sanin83868242009-07-09 10:26:22 +02001253 * nodes in this merged attribute list.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001254 *
1255 * The xml:id attribute is not a simple inheritable attribute and no processing of these attributes is
Aleksey Sanin83868242009-07-09 10:26:22 +02001256 * performed.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001257 *
1258 * The xml:base attribute is not a simple inheritable attribute and requires special processing beyond
Aleksey Sanin83868242009-07-09 10:26:22 +02001259 * a simple redeclaration.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001260 *
1261 * Attributes in the XML namespace other than xml:base, xml:id, xml:lang, and xml:space MUST be processed
Aleksey Sanin83868242009-07-09 10:26:22 +02001262 * as ordinary attributes.
1263 */
1264
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001265 /*
1266 * Add all visible attributes from current node.
Aleksey Sanin83868242009-07-09 10:26:22 +02001267 */
1268 attr = cur->properties;
1269 while (attr != NULL) {
1270 /* special processing for XML attribute kiks in only when we have invisible parents */
1271 if ((!parent_visible) || (xmlC14NIsXmlAttr(attr) == 0)) {
1272 /* check that attribute is visible */
1273 if (xmlC14NIsVisible(ctx, attr, cur)) {
1274 xmlListInsert(list, attr);
1275 }
1276 } else {
1277 int matched = 0;
1278
1279 /* check for simple inheritance attributes */
1280 if((!matched) && (xml_lang_attr == NULL) && xmlStrEqual(attr->name, BAD_CAST "lang")) {
1281 xml_lang_attr = attr;
1282 matched = 1;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001283 }
Aleksey Sanin83868242009-07-09 10:26:22 +02001284 if((!matched) && (xml_space_attr == NULL) && xmlStrEqual(attr->name, BAD_CAST "space")) {
1285 xml_space_attr = attr;
1286 matched = 1;
1287 }
1288
1289 /* check for base attr */
1290 if((!matched) && (xml_base_attr == NULL) && xmlStrEqual(attr->name, BAD_CAST "base")) {
1291 xml_base_attr = attr;
1292 matched = 1;
1293 }
1294
1295 /* otherwise, it is a normal attribute, so just check if it is visible */
1296 if((!matched) && xmlC14NIsVisible(ctx, attr, cur)) {
1297 xmlListInsert(list, attr);
1298 }
1299 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001300
Aleksey Sanin83868242009-07-09 10:26:22 +02001301 /* move to the next one */
1302 attr = attr->next;
1303 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001304
Aleksey Sanin83868242009-07-09 10:26:22 +02001305 /* special processing for XML attribute kiks in only when we have invisible parents */
1306 if ((parent_visible)) {
1307
1308 /* simple inheritance attributes - copy */
1309 if(xml_lang_attr == NULL) {
1310 xml_lang_attr = xmlC14NFindHiddenParentAttr(ctx, cur->parent, BAD_CAST "lang", XML_XML_NAMESPACE);
1311 }
1312 if(xml_lang_attr != NULL) {
1313 xmlListInsert(list, xml_lang_attr);
1314 }
1315 if(xml_space_attr == NULL) {
1316 xml_space_attr = xmlC14NFindHiddenParentAttr(ctx, cur->parent, BAD_CAST "space", XML_XML_NAMESPACE);
1317 }
1318 if(xml_space_attr != NULL) {
1319 xmlListInsert(list, xml_space_attr);
1320 }
1321
1322 /* base uri attribute - fix up */
1323 if(xml_base_attr == NULL) {
1324 /* if we don't have base uri attribute, check if we have a "hidden" one above */
1325 xml_base_attr = xmlC14NFindHiddenParentAttr(ctx, cur->parent, BAD_CAST "base", XML_XML_NAMESPACE);
1326 }
1327 if(xml_base_attr != NULL) {
1328 xml_base_attr = xmlC14NFixupBaseAttr(ctx, xml_base_attr);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001329 if(xml_base_attr != NULL) {
Aleksey Sanin83868242009-07-09 10:26:22 +02001330 xmlListInsert(list, xml_base_attr);
1331
1332 /* note that we MUST delete returned attr node ourselves! */
1333 xml_base_attr->next = attrs_to_delete;
1334 attrs_to_delete = xml_base_attr;
1335 }
1336 }
1337 }
1338
1339 /* done */
1340 break;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001341 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001342
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001343 /*
1344 * print out all elements from list
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001345 */
Nick Wellnhofer4dd6d7a2017-11-09 17:28:00 +01001346 xmlListWalk(list, xmlC14NPrintAttrs, (void *) ctx);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001347
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001348 /*
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001349 * Cleanup
1350 */
Aleksey Sanin83868242009-07-09 10:26:22 +02001351 xmlFreePropList(attrs_to_delete);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001352 xmlListDelete(list);
1353 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001354}
1355
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001356/**
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001357 * xmlC14NCheckForRelativeNamespaces:
1358 * @ctx: the C14N context
1359 * @cur: the current element node
1360 *
1361 * Checks that current element node has no relative namespaces defined
1362 *
1363 * Returns 0 if the node has no relative namespaces or -1 otherwise.
1364 */
1365static int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001366xmlC14NCheckForRelativeNamespaces(xmlC14NCtxPtr ctx, xmlNodePtr cur)
1367{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001368 xmlNsPtr ns;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001369
Daniel Veillard9ff88172002-03-11 09:15:32 +00001370 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001371 xmlC14NErrParam("checking for relative namespaces");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001372 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001373 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001374
1375 ns = cur->nsDef;
1376 while (ns != NULL) {
1377 if (xmlStrlen(ns->href) > 0) {
1378 xmlURIPtr uri;
1379
1380 uri = xmlParseURI((const char *) ns->href);
1381 if (uri == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001382 xmlC14NErrInternal("parsing namespace uri");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001383 return (-1);
1384 }
1385 if (xmlStrlen((const xmlChar *) uri->scheme) == 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001386 xmlC14NErrRelativeNamespace(uri->scheme);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001387 xmlFreeURI(uri);
1388 return (-1);
1389 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001390 xmlFreeURI(uri);
1391 }
1392 ns = ns->next;
1393 }
1394 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001395}
1396
1397/**
1398 * xmlC14NProcessElementNode:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001399 * @ctx: the pointer to C14N context object
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001400 * @cur: the node to process
Aleksey Sanin83868242009-07-09 10:26:22 +02001401 * @visible: this node is visible
1402 * @all_parents_visible: whether all the parents of this node are visible
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001403 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001404 * Canonical XML v 1.0 (http://www.w3.org/TR/xml-c14n)
1405 *
1406 * Element Nodes
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001407 * If the element is not in the node-set, then the result is obtained
1408 * by processing the namespace axis, then the attribute axis, then
1409 * processing the child nodes of the element that are in the node-set
1410 * (in document order). If the element is in the node-set, then the result
1411 * is an open angle bracket (<), the element QName, the result of
1412 * processing the namespace axis, the result of processing the attribute
1413 * axis, a close angle bracket (>), the result of processing the child
1414 * nodes of the element that are in the node-set (in document order), an
1415 * open angle bracket, a forward slash (/), the element QName, and a close
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001416 * angle bracket.
1417 *
1418 * Returns non-negative value on success or negative value on fail
1419 */
1420static int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001421xmlC14NProcessElementNode(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible)
1422{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001423 int ret;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001424 xmlC14NVisibleNsStack state;
Daniel Veillard6f293b12002-03-15 09:42:33 +00001425 int parent_is_doc = 0;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001426
Daniel Veillard9ff88172002-03-11 09:15:32 +00001427 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001428 xmlC14NErrParam("processing element node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001429 return (-1);
1430 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001431
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001432 /*
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001433 * Check relative relative namespaces:
1434 * implementations of XML canonicalization MUST report an operation
1435 * failure on documents containing relative namespace URIs.
1436 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001437 if (xmlC14NCheckForRelativeNamespaces(ctx, cur) < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001438 xmlC14NErrInternal("checking for relative namespaces");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001439 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001440 }
1441
1442
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001443 /*
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001444 * Save ns_rendered stack position
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001445 */
Daniel Veillardaac7c682006-03-10 13:40:16 +00001446 memset(&state, 0, sizeof(state));
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001447 xmlC14NVisibleNsStackSave(ctx->ns_rendered, &state);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001448
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001449 if (visible) {
Daniel Veillard9ff88172002-03-11 09:15:32 +00001450 if (ctx->parent_is_doc) {
Daniel Veillard6f293b12002-03-15 09:42:33 +00001451 /* save this flag into the stack */
1452 parent_is_doc = ctx->parent_is_doc;
1453 ctx->parent_is_doc = 0;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001454 ctx->pos = XMLC14N_INSIDE_DOCUMENT_ELEMENT;
1455 }
1456 xmlOutputBufferWriteString(ctx->buf, "<");
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001457
Daniel Veillard9ff88172002-03-11 09:15:32 +00001458 if ((cur->ns != NULL) && (xmlStrlen(cur->ns->prefix) > 0)) {
1459 xmlOutputBufferWriteString(ctx->buf,
1460 (const char *) cur->ns->prefix);
1461 xmlOutputBufferWriteString(ctx->buf, ":");
1462 }
1463 xmlOutputBufferWriteString(ctx->buf, (const char *) cur->name);
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001464 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001465
Aleksey Sanin83868242009-07-09 10:26:22 +02001466 if (!xmlC14NIsExclusive(ctx)) {
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001467 ret = xmlC14NProcessNamespacesAxis(ctx, cur, visible);
1468 } else {
1469 ret = xmlExcC14NProcessNamespacesAxis(ctx, cur, visible);
1470 }
1471 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001472 xmlC14NErrInternal("processing namespaces axis");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001473 return (-1);
1474 }
1475 /* todo: shouldn't this go to "visible only"? */
1476 if(visible) {
1477 xmlC14NVisibleNsStackShift(ctx->ns_rendered);
1478 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001479
Aleksey Sanin3ea201c2005-06-07 16:53:57 +00001480 ret = xmlC14NProcessAttrsAxis(ctx, cur, visible);
1481 if (ret < 0) {
1482 xmlC14NErrInternal("processing attributes axis");
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001483 return (-1);
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001484 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001485
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001486 if (visible) {
Daniel Veillard9ff88172002-03-11 09:15:32 +00001487 xmlOutputBufferWriteString(ctx->buf, ">");
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001488 }
1489 if (cur->children != NULL) {
Daniel Veillard9ff88172002-03-11 09:15:32 +00001490 ret = xmlC14NProcessNodeList(ctx, cur->children);
1491 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001492 xmlC14NErrInternal("processing childrens list");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001493 return (-1);
1494 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001495 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001496 if (visible) {
1497 xmlOutputBufferWriteString(ctx->buf, "</");
1498 if ((cur->ns != NULL) && (xmlStrlen(cur->ns->prefix) > 0)) {
1499 xmlOutputBufferWriteString(ctx->buf,
1500 (const char *) cur->ns->prefix);
1501 xmlOutputBufferWriteString(ctx->buf, ":");
1502 }
1503 xmlOutputBufferWriteString(ctx->buf, (const char *) cur->name);
1504 xmlOutputBufferWriteString(ctx->buf, ">");
Daniel Veillard6f293b12002-03-15 09:42:33 +00001505 if (parent_is_doc) {
1506 /* restore this flag from the stack for next node */
1507 ctx->parent_is_doc = parent_is_doc;
1508 ctx->pos = XMLC14N_AFTER_DOCUMENT_ELEMENT;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001509 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001510 }
1511
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001512 /*
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001513 * Restore ns_rendered stack position
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001514 */
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001515 xmlC14NVisibleNsStackRestore(ctx->ns_rendered, &state);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001516 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001517}
1518
1519/**
1520 * xmlC14NProcessNode:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001521 * @ctx: the pointer to C14N context object
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001522 * @cur: the node to process
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001523 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001524 * Processes the given node
1525 *
1526 * Returns non-negative value on success or negative value on fail
1527 */
1528static int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001529xmlC14NProcessNode(xmlC14NCtxPtr ctx, xmlNodePtr cur)
1530{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001531 int ret = 0;
1532 int visible;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001533
1534 if ((ctx == NULL) || (cur == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001535 xmlC14NErrParam("processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001536 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001537 }
1538
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001539 visible = xmlC14NIsVisible(ctx, cur, cur->parent);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001540 switch (cur->type) {
1541 case XML_ELEMENT_NODE:
1542 ret = xmlC14NProcessElementNode(ctx, cur, visible);
1543 break;
1544 case XML_CDATA_SECTION_NODE:
1545 case XML_TEXT_NODE:
1546 /*
1547 * Text Nodes
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001548 * the string value, except all ampersands are replaced
1549 * by &amp;, all open angle brackets (<) are replaced by &lt;, all closing
1550 * angle brackets (>) are replaced by &gt;, and all #xD characters are
Daniel Veillard9ff88172002-03-11 09:15:32 +00001551 * replaced by &#xD;.
1552 */
1553 /* cdata sections are processed as text nodes */
1554 /* todo: verify that cdata sections are included in XPath nodes set */
1555 if ((visible) && (cur->content != NULL)) {
1556 xmlChar *buffer;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001557
Daniel Veillard9ff88172002-03-11 09:15:32 +00001558 buffer = xmlC11NNormalizeText(cur->content);
1559 if (buffer != NULL) {
1560 xmlOutputBufferWriteString(ctx->buf,
1561 (const char *) buffer);
1562 xmlFree(buffer);
1563 } else {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001564 xmlC14NErrInternal("normalizing text node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001565 return (-1);
1566 }
1567 }
1568 break;
1569 case XML_PI_NODE:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001570 /*
1571 * Processing Instruction (PI) Nodes-
1572 * The opening PI symbol (<?), the PI target name of the node,
1573 * a leading space and the string value if it is not empty, and
1574 * the closing PI symbol (?>). If the string value is empty,
1575 * then the leading space is not added. Also, a trailing #xA is
1576 * rendered after the closing PI symbol for PI children of the
1577 * root node with a lesser document order than the document
1578 * element, and a leading #xA is rendered before the opening PI
1579 * symbol of PI children of the root node with a greater document
Daniel Veillard9ff88172002-03-11 09:15:32 +00001580 * order than the document element.
1581 */
1582 if (visible) {
1583 if (ctx->pos == XMLC14N_AFTER_DOCUMENT_ELEMENT) {
1584 xmlOutputBufferWriteString(ctx->buf, "\x0A<?");
1585 } else {
1586 xmlOutputBufferWriteString(ctx->buf, "<?");
1587 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001588
Daniel Veillard9ff88172002-03-11 09:15:32 +00001589 xmlOutputBufferWriteString(ctx->buf,
1590 (const char *) cur->name);
1591 if ((cur->content != NULL) && (*(cur->content) != '\0')) {
1592 xmlChar *buffer;
1593
1594 xmlOutputBufferWriteString(ctx->buf, " ");
1595
1596 /* todo: do we need to normalize pi? */
1597 buffer = xmlC11NNormalizePI(cur->content);
1598 if (buffer != NULL) {
1599 xmlOutputBufferWriteString(ctx->buf,
1600 (const char *) buffer);
1601 xmlFree(buffer);
1602 } else {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001603 xmlC14NErrInternal("normalizing pi node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001604 return (-1);
1605 }
1606 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001607
Daniel Veillard9ff88172002-03-11 09:15:32 +00001608 if (ctx->pos == XMLC14N_BEFORE_DOCUMENT_ELEMENT) {
1609 xmlOutputBufferWriteString(ctx->buf, "?>\x0A");
1610 } else {
1611 xmlOutputBufferWriteString(ctx->buf, "?>");
1612 }
1613 }
1614 break;
1615 case XML_COMMENT_NODE:
1616 /*
1617 * Comment Nodes
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001618 * Nothing if generating canonical XML without comments. For
1619 * canonical XML with comments, generate the opening comment
1620 * symbol (<!--), the string value of the node, and the
1621 * closing comment symbol (-->). Also, a trailing #xA is rendered
1622 * after the closing comment symbol for comment children of the
1623 * root node with a lesser document order than the document
1624 * element, and a leading #xA is rendered before the opening
1625 * comment symbol of comment children of the root node with a
1626 * greater document order than the document element. (Comment
1627 * children of the root node represent comments outside of the
1628 * top-level document element and outside of the document type
Daniel Veillard9ff88172002-03-11 09:15:32 +00001629 * declaration).
1630 */
1631 if (visible && ctx->with_comments) {
1632 if (ctx->pos == XMLC14N_AFTER_DOCUMENT_ELEMENT) {
1633 xmlOutputBufferWriteString(ctx->buf, "\x0A<!--");
1634 } else {
1635 xmlOutputBufferWriteString(ctx->buf, "<!--");
1636 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001637
Daniel Veillard9ff88172002-03-11 09:15:32 +00001638 if (cur->content != NULL) {
1639 xmlChar *buffer;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001640
Daniel Veillard9ff88172002-03-11 09:15:32 +00001641 /* todo: do we need to normalize comment? */
1642 buffer = xmlC11NNormalizeComment(cur->content);
1643 if (buffer != NULL) {
1644 xmlOutputBufferWriteString(ctx->buf,
1645 (const char *) buffer);
1646 xmlFree(buffer);
1647 } else {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001648 xmlC14NErrInternal("normalizing comment node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001649 return (-1);
1650 }
1651 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001652
Daniel Veillard9ff88172002-03-11 09:15:32 +00001653 if (ctx->pos == XMLC14N_BEFORE_DOCUMENT_ELEMENT) {
1654 xmlOutputBufferWriteString(ctx->buf, "-->\x0A");
1655 } else {
1656 xmlOutputBufferWriteString(ctx->buf, "-->");
1657 }
1658 }
1659 break;
1660 case XML_DOCUMENT_NODE:
1661 case XML_DOCUMENT_FRAG_NODE: /* should be processed as document? */
Daniel Veillard1840ef02002-03-21 08:05:23 +00001662#ifdef LIBXML_DOCB_ENABLED
Daniel Veillard9ff88172002-03-11 09:15:32 +00001663 case XML_DOCB_DOCUMENT_NODE: /* should be processed as document? */
Daniel Veillard1840ef02002-03-21 08:05:23 +00001664#endif
1665#ifdef LIBXML_HTML_ENABLED
Daniel Veillard9ff88172002-03-11 09:15:32 +00001666 case XML_HTML_DOCUMENT_NODE: /* should be processed as document? */
Daniel Veillard1840ef02002-03-21 08:05:23 +00001667#endif
Daniel Veillard9ff88172002-03-11 09:15:32 +00001668 if (cur->children != NULL) {
1669 ctx->pos = XMLC14N_BEFORE_DOCUMENT_ELEMENT;
1670 ctx->parent_is_doc = 1;
1671 ret = xmlC14NProcessNodeList(ctx, cur->children);
1672 }
1673 break;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001674
Daniel Veillard9ff88172002-03-11 09:15:32 +00001675 case XML_ATTRIBUTE_NODE:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001676 xmlC14NErrInvalidNode("XML_ATTRIBUTE_NODE", "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001677 return (-1);
1678 case XML_NAMESPACE_DECL:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001679 xmlC14NErrInvalidNode("XML_NAMESPACE_DECL", "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001680 return (-1);
1681 case XML_ENTITY_REF_NODE:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001682 xmlC14NErrInvalidNode("XML_ENTITY_REF_NODE", "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001683 return (-1);
1684 case XML_ENTITY_NODE:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001685 xmlC14NErrInvalidNode("XML_ENTITY_NODE", "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001686 return (-1);
1687
1688 case XML_DOCUMENT_TYPE_NODE:
1689 case XML_NOTATION_NODE:
1690 case XML_DTD_NODE:
1691 case XML_ELEMENT_DECL:
1692 case XML_ATTRIBUTE_DECL:
1693 case XML_ENTITY_DECL:
Daniel Veillard1840ef02002-03-21 08:05:23 +00001694#ifdef LIBXML_XINCLUDE_ENABLED
Daniel Veillard9ff88172002-03-11 09:15:32 +00001695 case XML_XINCLUDE_START:
1696 case XML_XINCLUDE_END:
Daniel Veillard1840ef02002-03-21 08:05:23 +00001697#endif
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001698 /*
1699 * should be ignored according to "W3C Canonical XML"
Daniel Veillard9ff88172002-03-11 09:15:32 +00001700 */
1701 break;
1702 default:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001703 xmlC14NErrUnknownNode(cur->type, "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001704 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001705 }
1706
Daniel Veillard9ff88172002-03-11 09:15:32 +00001707 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001708}
1709
1710/**
1711 * xmlC14NProcessNodeList:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001712 * @ctx: the pointer to C14N context object
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001713 * @cur: the node to start from
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001714 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001715 * Processes all nodes in the row starting from cur.
1716 *
1717 * Returns non-negative value on success or negative value on fail
1718 */
1719static int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001720xmlC14NProcessNodeList(xmlC14NCtxPtr ctx, xmlNodePtr cur)
1721{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001722 int ret;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001723
1724 if (ctx == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001725 xmlC14NErrParam("processing node list");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001726 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001727 }
1728
Daniel Veillard9ff88172002-03-11 09:15:32 +00001729 for (ret = 0; cur != NULL && ret >= 0; cur = cur->next) {
1730 ret = xmlC14NProcessNode(ctx, cur);
1731 }
1732 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001733}
1734
1735
1736/**
1737 * xmlC14NFreeCtx:
1738 * @ctx: the pointer to C14N context object
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001739 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001740 * Cleanups the C14N context object.
1741 */
1742
1743static void
Daniel Veillard9ff88172002-03-11 09:15:32 +00001744xmlC14NFreeCtx(xmlC14NCtxPtr ctx)
1745{
1746 if (ctx == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001747 xmlC14NErrParam("freeing context");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001748 return;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001749 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001750
1751 if (ctx->ns_rendered != NULL) {
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001752 xmlC14NVisibleNsStackDestroy(ctx->ns_rendered);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001753 }
1754 xmlFree(ctx);
1755}
1756
1757/**
1758 * xmlC14NNewCtx:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001759 * @doc: the XML document for canonization
1760 * @is_visible_callback:the function to use to determine is node visible
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001761 * or not
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001762 * @user_data: the first parameter for @is_visible_callback function
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001763 * (in most cases, it is nodes set)
Aleksey Sanin83868242009-07-09 10:26:22 +02001764 * @mode: the c14n mode (see @xmlC14NMode)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001765 * @inclusive_ns_prefixe the list of inclusive namespace prefixes
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001766 * ended with a NULL or NULL if there is no
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001767 * inclusive namespaces (only for `
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001768 * canonicalization)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001769 * @with_comments: include comments in the result (!=0) or not (==0)
1770 * @buf: the output buffer to store canonical XML; this
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001771 * buffer MUST have encoder==NULL because C14N requires
1772 * UTF-8 output
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001773 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001774 * Creates new C14N context object to store C14N parameters.
1775 *
1776 * Returns pointer to newly created object (success) or NULL (fail)
1777 */
1778static xmlC14NCtxPtr
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001779xmlC14NNewCtx(xmlDocPtr doc,
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001780 xmlC14NIsVisibleCallback is_visible_callback, void* user_data,
Aleksey Sanin83868242009-07-09 10:26:22 +02001781 xmlC14NMode mode, xmlChar ** inclusive_ns_prefixes,
Daniel Veillard9ff88172002-03-11 09:15:32 +00001782 int with_comments, xmlOutputBufferPtr buf)
1783{
Daniel Veillard659e71e2003-10-10 14:10:40 +00001784 xmlC14NCtxPtr ctx = NULL;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001785
Daniel Veillard9ff88172002-03-11 09:15:32 +00001786 if ((doc == NULL) || (buf == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001787 xmlC14NErrParam("creating new context");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001788 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001789 }
1790
1791 /*
1792 * Validate the encoding output buffer encoding
1793 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001794 if (buf->encoder != NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001795 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1796"xmlC14NNewCtx: output buffer encoder != NULL but C14N requires UTF8 output\n");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001797 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001798 }
1799
1800 /*
1801 * Validate the XML document encoding value, if provided.
1802 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001803 if (doc->charset != XML_CHAR_ENCODING_UTF8) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001804 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1805 "xmlC14NNewCtx: source document not in UTF8\n");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001806 return (NULL);
1807 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001808
1809 /*
1810 * Allocate a new xmlC14NCtxPtr and fill the fields.
1811 */
1812 ctx = (xmlC14NCtxPtr) xmlMalloc(sizeof(xmlC14NCtx));
1813 if (ctx == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001814 xmlC14NErrMemory("creating context");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001815 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001816 }
1817 memset(ctx, 0, sizeof(xmlC14NCtx));
1818
1819 /*
1820 * initialize C14N context
Daniel Veillard9ff88172002-03-11 09:15:32 +00001821 */
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001822 ctx->doc = doc;
1823 ctx->with_comments = with_comments;
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001824 ctx->is_visible_callback = is_visible_callback;
1825 ctx->user_data = user_data;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001826 ctx->buf = buf;
1827 ctx->parent_is_doc = 1;
1828 ctx->pos = XMLC14N_BEFORE_DOCUMENT_ELEMENT;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001829 ctx->ns_rendered = xmlC14NVisibleNsStackCreate();
1830
1831 if(ctx->ns_rendered == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001832 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_CREATE_STACK,
1833 "xmlC14NNewCtx: xmlC14NVisibleNsStackCreate failed\n");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001834 xmlC14NFreeCtx(ctx);
1835 return (NULL);
1836 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001837
1838 /*
Aleksey Sanin83868242009-07-09 10:26:22 +02001839 * Set "mode" flag and remember list of incluseve prefixes
1840 * for exclusive c14n
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001841 */
Aleksey Sanin83868242009-07-09 10:26:22 +02001842 ctx->mode = mode;
1843 if(xmlC14NIsExclusive(ctx)) {
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001844 ctx->inclusive_ns_prefixes = inclusive_ns_prefixes;
1845 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001846 return (ctx);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001847}
1848
1849/**
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001850 * xmlC14NExecute:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001851 * @doc: the XML document for canonization
1852 * @is_visible_callback:the function to use to determine is node visible
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001853 * or not
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001854 * @user_data: the first parameter for @is_visible_callback function
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001855 * (in most cases, it is nodes set)
Aleksey Sanin83868242009-07-09 10:26:22 +02001856 * @mode: the c14n mode (see @xmlC14NMode)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001857 * @inclusive_ns_prefixes: the list of inclusive namespace prefixes
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001858 * ended with a NULL or NULL if there is no
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001859 * inclusive namespaces (only for exclusive
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001860 * canonicalization, ignored otherwise)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001861 * @with_comments: include comments in the result (!=0) or not (==0)
1862 * @buf: the output buffer to store canonical XML; this
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001863 * buffer MUST have encoder==NULL because C14N requires
1864 * UTF-8 output
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001865 *
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001866 * Dumps the canonized image of given XML document into the provided buffer.
1867 * For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or
1868 * "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)
1869 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001870 * Returns non-negative value on success or a negative value on fail
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001871 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001872int
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001873xmlC14NExecute(xmlDocPtr doc, xmlC14NIsVisibleCallback is_visible_callback,
Aleksey Sanin175beba2009-07-09 22:54:00 +02001874 void* user_data, int mode, xmlChar **inclusive_ns_prefixes,
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001875 int with_comments, xmlOutputBufferPtr buf) {
1876
1877 xmlC14NCtxPtr ctx;
Aleksey Sanin175beba2009-07-09 22:54:00 +02001878 xmlC14NMode c14n_mode = XML_C14N_1_0;
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001879 int ret;
1880
1881 if ((buf == NULL) || (doc == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001882 xmlC14NErrParam("executing c14n");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001883 return (-1);
1884 }
1885
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001886 /* for backward compatibility, we have to have "mode" as "int"
Aleksey Sanin175beba2009-07-09 22:54:00 +02001887 and here we check that user gives valid value */
1888 switch(mode) {
1889 case XML_C14N_1_0:
1890 case XML_C14N_EXCLUSIVE_1_0:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001891 case XML_C14N_1_1:
Aleksey Sanin175beba2009-07-09 22:54:00 +02001892 c14n_mode = (xmlC14NMode)mode;
1893 break;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001894 default:
Aleksey Sanin175beba2009-07-09 22:54:00 +02001895 xmlC14NErrParam("invalid mode for executing c14n");
1896 return (-1);
1897 }
1898
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001899 /*
1900 * Validate the encoding output buffer encoding
1901 */
1902 if (buf->encoder != NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001903 xmlC14NErr(NULL, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1904"xmlC14NExecute: output buffer encoder != NULL but C14N requires UTF8 output\n");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001905 return (-1);
1906 }
1907
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001908 ctx = xmlC14NNewCtx(doc, is_visible_callback, user_data,
Aleksey Sanin175beba2009-07-09 22:54:00 +02001909 c14n_mode, inclusive_ns_prefixes,
1910 with_comments, buf);
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001911 if (ctx == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001912 xmlC14NErr(NULL, (xmlNodePtr) doc, XML_C14N_CREATE_CTXT,
1913 "xmlC14NExecute: unable to create C14N context\n");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001914 return (-1);
1915 }
1916
1917
1918
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001919 /*
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001920 * Root Node
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001921 * The root node is the parent of the top-level document element. The
1922 * result of processing each of its child nodes that is in the node-set
1923 * in document order. The root node does not generate a byte order mark,
1924 * XML declaration, nor anything from within the document type
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001925 * declaration.
1926 */
1927 if (doc->children != NULL) {
1928 ret = xmlC14NProcessNodeList(ctx, doc->children);
1929 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001930 xmlC14NErrInternal("processing docs children list");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001931 xmlC14NFreeCtx(ctx);
1932 return (-1);
1933 }
1934 }
1935
1936 /*
1937 * Flush buffer to get number of bytes written
1938 */
1939 ret = xmlOutputBufferFlush(buf);
1940 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001941 xmlC14NErrInternal("flushing output buffer");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001942 xmlC14NFreeCtx(ctx);
1943 return (-1);
1944 }
1945
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001946 /*
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001947 * Cleanup
1948 */
1949 xmlC14NFreeCtx(ctx);
1950 return (ret);
1951}
1952
1953/**
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001954 * xmlC14NDocSaveTo:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001955 * @doc: the XML document for canonization
1956 * @nodes: the nodes set to be included in the canonized image
1957 * or NULL if all document nodes should be included
Aleksey Sanin83868242009-07-09 10:26:22 +02001958 * @mode: the c14n mode (see @xmlC14NMode)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001959 * @inclusive_ns_prefixes: the list of inclusive namespace prefixes
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001960 * ended with a NULL or NULL if there is no
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001961 * inclusive namespaces (only for exclusive
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001962 * canonicalization, ignored otherwise)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001963 * @with_comments: include comments in the result (!=0) or not (==0)
1964 * @buf: the output buffer to store canonical XML; this
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001965 * buffer MUST have encoder==NULL because C14N requires
1966 * UTF-8 output
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001967 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001968 * Dumps the canonized image of given XML document into the provided buffer.
1969 * For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or
1970 * "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)
1971 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001972 * Returns non-negative value on success or a negative value on fail
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001973 */
1974int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001975xmlC14NDocSaveTo(xmlDocPtr doc, xmlNodeSetPtr nodes,
Aleksey Sanin83868242009-07-09 10:26:22 +02001976 int mode, xmlChar ** inclusive_ns_prefixes,
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001977 int with_comments, xmlOutputBufferPtr buf) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001978 return(xmlC14NExecute(doc,
Nick Wellnhofere5f33e52017-11-09 17:29:22 +01001979 xmlC14NIsNodeInNodeset,
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001980 nodes,
Aleksey Sanin83868242009-07-09 10:26:22 +02001981 mode,
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001982 inclusive_ns_prefixes,
1983 with_comments,
1984 buf));
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001985}
1986
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001987
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001988/**
1989 * xmlC14NDocDumpMemory:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001990 * @doc: the XML document for canonization
1991 * @nodes: the nodes set to be included in the canonized image
1992 * or NULL if all document nodes should be included
Aleksey Sanin83868242009-07-09 10:26:22 +02001993 * @mode: the c14n mode (see @xmlC14NMode)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001994 * @inclusive_ns_prefixes: the list of inclusive namespace prefixes
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001995 * ended with a NULL or NULL if there is no
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001996 * inclusive namespaces (only for exclusive
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001997 * canonicalization, ignored otherwise)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001998 * @with_comments: include comments in the result (!=0) or not (==0)
1999 * @doc_txt_ptr: the memory pointer for allocated canonical XML text;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002000 * the caller of this functions is responsible for calling
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002001 * xmlFree() to free allocated memory
2002 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002003 * Dumps the canonized image of given XML document into memory.
2004 * For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or
2005 * "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)
2006 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002007 * Returns the number of bytes written on success or a negative value on fail
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002008 */
2009int
Daniel Veillard9ff88172002-03-11 09:15:32 +00002010xmlC14NDocDumpMemory(xmlDocPtr doc, xmlNodeSetPtr nodes,
Aleksey Sanin175beba2009-07-09 22:54:00 +02002011 int mode, xmlChar ** inclusive_ns_prefixes,
Daniel Veillard9ff88172002-03-11 09:15:32 +00002012 int with_comments, xmlChar ** doc_txt_ptr)
2013{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002014 int ret;
2015 xmlOutputBufferPtr buf;
2016
2017 if (doc_txt_ptr == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00002018 xmlC14NErrParam("dumping doc to memory");
Daniel Veillard9ff88172002-03-11 09:15:32 +00002019 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002020 }
2021
2022 *doc_txt_ptr = NULL;
Daniel Veillard9ff88172002-03-11 09:15:32 +00002023
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002024 /*
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002025 * create memory buffer with UTF8 (default) encoding
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002026 */
2027 buf = xmlAllocOutputBuffer(NULL);
Daniel Veillard9ff88172002-03-11 09:15:32 +00002028 if (buf == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00002029 xmlC14NErrMemory("creating output buffer");
Daniel Veillard9ff88172002-03-11 09:15:32 +00002030 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002031 }
2032
2033 /*
2034 * canonize document and write to buffer
2035 */
Aleksey Sanin83868242009-07-09 10:26:22 +02002036 ret = xmlC14NDocSaveTo(doc, nodes, mode, inclusive_ns_prefixes,
Daniel Veillard9ff88172002-03-11 09:15:32 +00002037 with_comments, buf);
2038 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00002039 xmlC14NErrInternal("saving doc to output buffer");
Daniel Veillard9ff88172002-03-11 09:15:32 +00002040 (void) xmlOutputBufferClose(buf);
2041 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002042 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002043
Daniel Veillard53aa2932012-07-16 14:37:00 +08002044 ret = xmlBufUse(buf->buffer);
Daniel Veillard9ff88172002-03-11 09:15:32 +00002045 if (ret > 0) {
Daniel Veillard53aa2932012-07-16 14:37:00 +08002046 *doc_txt_ptr = xmlStrndup(xmlBufContent(buf->buffer), ret);
Daniel Veillard9ff88172002-03-11 09:15:32 +00002047 }
2048 (void) xmlOutputBufferClose(buf);
2049
2050 if ((*doc_txt_ptr == NULL) && (ret > 0)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00002051 xmlC14NErrMemory("coping canonicanized document");
Daniel Veillard9ff88172002-03-11 09:15:32 +00002052 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002053 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00002054 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002055}
2056
2057/**
2058 * xmlC14NDocSave:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002059 * @doc: the XML document for canonization
2060 * @nodes: the nodes set to be included in the canonized image
2061 * or NULL if all document nodes should be included
Aleksey Sanin83868242009-07-09 10:26:22 +02002062 * @mode: the c14n mode (see @xmlC14NMode)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002063 * @inclusive_ns_prefixes: the list of inclusive namespace prefixes
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002064 * ended with a NULL or NULL if there is no
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002065 * inclusive namespaces (only for exclusive
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002066 * canonicalization, ignored otherwise)
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002067 * @with_comments: include comments in the result (!=0) or not (==0)
2068 * @filename: the filename to store canonical XML image
2069 * @compression: the compression level (zlib requred):
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002070 * -1 - libxml default,
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002071 * 0 - uncompressed,
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002072 * >0 - compression level
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002073 *
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002074 * Dumps the canonized image of given XML document into the file.
2075 * For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or
2076 * "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)
2077 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002078 * Returns the number of bytes written success or a negative value on fail
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002079 */
2080int
Daniel Veillard9ff88172002-03-11 09:15:32 +00002081xmlC14NDocSave(xmlDocPtr doc, xmlNodeSetPtr nodes,
Aleksey Sanin175beba2009-07-09 22:54:00 +02002082 int mode, xmlChar ** inclusive_ns_prefixes,
Daniel Veillard9ff88172002-03-11 09:15:32 +00002083 int with_comments, const char *filename, int compression)
2084{
2085 xmlOutputBufferPtr buf;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002086 int ret;
2087
Daniel Veillard9ff88172002-03-11 09:15:32 +00002088 if (filename == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00002089 xmlC14NErrParam("saving doc");
Daniel Veillard9ff88172002-03-11 09:15:32 +00002090 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002091 }
Nick Wellnhofercb5541c2017-11-13 17:08:38 +01002092#ifdef LIBXML_ZLIB_ENABLED
Daniel Veillard9ff88172002-03-11 09:15:32 +00002093 if (compression < 0)
2094 compression = xmlGetCompressMode();
2095#endif
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002096
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002097 /*
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002098 * save the content to a temp buffer, use default UTF8 encoding.
2099 */
2100 buf = xmlOutputBufferCreateFilename(filename, NULL, compression);
2101 if (buf == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00002102 xmlC14NErrInternal("creating temporary filename");
Daniel Veillard9ff88172002-03-11 09:15:32 +00002103 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002104 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00002105
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002106 /*
2107 * canonize document and write to buffer
2108 */
Aleksey Sanin83868242009-07-09 10:26:22 +02002109 ret = xmlC14NDocSaveTo(doc, nodes, mode, inclusive_ns_prefixes,
Daniel Veillard9ff88172002-03-11 09:15:32 +00002110 with_comments, buf);
2111 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00002112 xmlC14NErrInternal("cannicanize document to buffer");
Daniel Veillard9ff88172002-03-11 09:15:32 +00002113 (void) xmlOutputBufferClose(buf);
2114 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002115 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00002116
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002117 /*
2118 * get the numbers of bytes written
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002119 */
2120 ret = xmlOutputBufferClose(buf);
Daniel Veillard9ff88172002-03-11 09:15:32 +00002121 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002122}
2123
2124
2125
2126/*
2127 * Macro used to grow the current buffer.
2128 */
2129#define growBufferReentrant() { \
2130 buffer_size *= 2; \
2131 buffer = (xmlChar *) \
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002132 xmlRealloc(buffer, buffer_size * sizeof(xmlChar)); \
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002133 if (buffer == NULL) { \
Daniel Veillardd96cce12003-10-10 12:30:37 +00002134 xmlC14NErrMemory("growing buffer"); \
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002135 return(NULL); \
2136 } \
2137}
2138
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002139/**
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002140 * xmlC11NNormalizeString:
2141 * @input: the input string
2142 * @mode: the normalization mode (attribute, comment, PI or text)
2143 *
2144 * Converts a string to a canonical (normalized) format. The code is stolen
2145 * from xmlEncodeEntitiesReentrant(). Added normalization of \x09, \x0a, \x0A
2146 * and the @mode parameter
2147 *
2148 * Returns a normalized string (caller is responsible for calling xmlFree())
2149 * or NULL if an error occurs
2150 */
2151static xmlChar *
Daniel Veillard9ff88172002-03-11 09:15:32 +00002152xmlC11NNormalizeString(const xmlChar * input,
2153 xmlC14NNormalizationMode mode)
2154{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002155 const xmlChar *cur = input;
2156 xmlChar *buffer = NULL;
2157 xmlChar *out = NULL;
2158 int buffer_size = 0;
2159
Daniel Veillard9ff88172002-03-11 09:15:32 +00002160 if (input == NULL)
2161 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002162
2163 /*
2164 * allocate an translation buffer.
2165 */
2166 buffer_size = 1000;
Daniel Veillard3c908dc2003-04-19 00:07:51 +00002167 buffer = (xmlChar *) xmlMallocAtomic(buffer_size * sizeof(xmlChar));
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002168 if (buffer == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00002169 xmlC14NErrMemory("allocating buffer");
Daniel Veillard9ff88172002-03-11 09:15:32 +00002170 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002171 }
2172 out = buffer;
2173
2174 while (*cur != '\0') {
Daniel Veillard9ff88172002-03-11 09:15:32 +00002175 if ((out - buffer) > (buffer_size - 10)) {
2176 int indx = out - buffer;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002177
Daniel Veillard9ff88172002-03-11 09:15:32 +00002178 growBufferReentrant();
2179 out = &buffer[indx];
2180 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002181
Daniel Veillard9ff88172002-03-11 09:15:32 +00002182 if ((*cur == '<') && ((mode == XMLC14N_NORMALIZE_ATTR) ||
2183 (mode == XMLC14N_NORMALIZE_TEXT))) {
2184 *out++ = '&';
2185 *out++ = 'l';
2186 *out++ = 't';
2187 *out++ = ';';
2188 } else if ((*cur == '>') && (mode == XMLC14N_NORMALIZE_TEXT)) {
2189 *out++ = '&';
2190 *out++ = 'g';
2191 *out++ = 't';
2192 *out++ = ';';
2193 } else if ((*cur == '&') && ((mode == XMLC14N_NORMALIZE_ATTR) ||
2194 (mode == XMLC14N_NORMALIZE_TEXT))) {
2195 *out++ = '&';
2196 *out++ = 'a';
2197 *out++ = 'm';
2198 *out++ = 'p';
2199 *out++ = ';';
2200 } else if ((*cur == '"') && (mode == XMLC14N_NORMALIZE_ATTR)) {
2201 *out++ = '&';
2202 *out++ = 'q';
2203 *out++ = 'u';
2204 *out++ = 'o';
2205 *out++ = 't';
2206 *out++ = ';';
2207 } else if ((*cur == '\x09') && (mode == XMLC14N_NORMALIZE_ATTR)) {
2208 *out++ = '&';
2209 *out++ = '#';
2210 *out++ = 'x';
2211 *out++ = '9';
2212 *out++ = ';';
2213 } else if ((*cur == '\x0A') && (mode == XMLC14N_NORMALIZE_ATTR)) {
2214 *out++ = '&';
2215 *out++ = '#';
2216 *out++ = 'x';
2217 *out++ = 'A';
2218 *out++ = ';';
2219 } else if ((*cur == '\x0D') && ((mode == XMLC14N_NORMALIZE_ATTR) ||
2220 (mode == XMLC14N_NORMALIZE_TEXT) ||
2221 (mode == XMLC14N_NORMALIZE_COMMENT) ||
2222 (mode == XMLC14N_NORMALIZE_PI))) {
2223 *out++ = '&';
2224 *out++ = '#';
2225 *out++ = 'x';
2226 *out++ = 'D';
2227 *out++ = ';';
2228 } else {
2229 /*
2230 * Works because on UTF-8, all extended sequences cannot
2231 * result in bytes in the ASCII range.
2232 */
2233 *out++ = *cur;
2234 }
2235 cur++;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002236 }
Daniel Veillard13cee4e2009-09-05 14:52:55 +02002237 *out = 0;
Daniel Veillard9ff88172002-03-11 09:15:32 +00002238 return (buffer);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002239}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002240#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillard5d4644e2005-04-01 13:11:58 +00002241#define bottom_c14n
2242#include "elfgcchack.h"
Daniel Veillard044fc6b2002-03-04 17:09:44 +00002243#endif /* LIBXML_C14N_ENABLED */