blob: bb7c9ba83ff1da1a505b5d846990e9bcb5926cda [file] [log] [blame]
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001/*
2 * "Canonical XML" implementation
3 * http://www.w3.org/TR/xml-c14n
4 *
5 * "Exclusive XML Canonicalization" implementation
6 * http://www.w3.org/TR/xml-exc-c14n
7 *
8 * See Copyright for the status of this software.
9 *
10 * 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
30/************************************************************************
31 * *
32 * Some declaration better left private ATM *
33 * *
34 ************************************************************************/
35
Daniel Veillard9ff88172002-03-11 09:15:32 +000036typedef enum {
37 XMLC14N_BEFORE_DOCUMENT_ELEMENT = 0,
38 XMLC14N_INSIDE_DOCUMENT_ELEMENT = 1,
39 XMLC14N_AFTER_DOCUMENT_ELEMENT = 2
Daniel Veillard044fc6b2002-03-04 17:09:44 +000040} xmlC14NPosition;
41
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +000042typedef struct _xmlC14NVisibleNsStack {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +000043 int nsCurEnd; /* number of nodes in the set */
44 int nsPrevStart; /* the begginning of the stack for previous visible node */
45 int nsPrevEnd; /* the end of the stack for previous visible node */
46 int nsMax; /* size of the array as allocated */
47 xmlNsPtr *nsTab; /* array of ns in no particular order */
48 xmlNodePtr *nodeTab; /* array of nodes in no particular order */
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +000049} xmlC14NVisibleNsStack, *xmlC14NVisibleNsStackPtr;
Aleksey Sanindffd5c82002-05-31 04:24:13 +000050
Daniel Veillard044fc6b2002-03-04 17:09:44 +000051typedef struct _xmlC14NCtx {
52 /* input parameters */
Daniel Veillard9ff88172002-03-11 09:15:32 +000053 xmlDocPtr doc;
Aleksey Sanin2c135a12002-08-01 06:31:50 +000054 xmlC14NIsVisibleCallback is_visible_callback;
55 void* user_data;
Daniel Veillard9ff88172002-03-11 09:15:32 +000056 int with_comments;
57 xmlOutputBufferPtr buf;
Daniel Veillard044fc6b2002-03-04 17:09:44 +000058
59 /* position in the XML document */
Daniel Veillard9ff88172002-03-11 09:15:32 +000060 xmlC14NPosition pos;
61 int parent_is_doc;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +000062 xmlC14NVisibleNsStackPtr ns_rendered;
Daniel Veillard044fc6b2002-03-04 17:09:44 +000063
64 /* exclusive canonicalization */
Daniel Veillard9ff88172002-03-11 09:15:32 +000065 int exclusive;
Daniel Veillard9ff88172002-03-11 09:15:32 +000066 xmlChar **inclusive_ns_prefixes;
Daniel Veillardd96cce12003-10-10 12:30:37 +000067
68 /* error number */
69 int error;
Daniel Veillard044fc6b2002-03-04 17:09:44 +000070} xmlC14NCtx, *xmlC14NCtxPtr;
71
Aleksey Sanin2c135a12002-08-01 06:31:50 +000072static xmlC14NVisibleNsStackPtr xmlC14NVisibleNsStackCreate (void);
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +000073static void xmlC14NVisibleNsStackDestroy (xmlC14NVisibleNsStackPtr cur);
74static void xmlC14NVisibleNsStackAdd (xmlC14NVisibleNsStackPtr cur,
75 xmlNsPtr ns,
76 xmlNodePtr node);
Aleksey Sanin2c135a12002-08-01 06:31:50 +000077static void xmlC14NVisibleNsStackSave (xmlC14NVisibleNsStackPtr cur,
78 xmlC14NVisibleNsStackPtr state);
79static void xmlC14NVisibleNsStackRestore (xmlC14NVisibleNsStackPtr cur,
80 xmlC14NVisibleNsStackPtr state);
81static void xmlC14NVisibleNsStackShift (xmlC14NVisibleNsStackPtr cur);
82static int xmlC14NVisibleNsStackFind (xmlC14NVisibleNsStackPtr cur,
83 xmlNsPtr ns);
84static int xmlExcC14NVisibleNsStackFind (xmlC14NVisibleNsStackPtr cur,
85 xmlNsPtr ns,
86 xmlC14NCtxPtr ctx);
87
88static int xmlC14NIsNodeInNodeset (xmlNodeSetPtr nodes,
89 xmlNodePtr node,
90 xmlNodePtr parent);
91
92
Daniel Veillard044fc6b2002-03-04 17:09:44 +000093
Daniel Veillard9ff88172002-03-11 09:15:32 +000094static int xmlC14NProcessNode(xmlC14NCtxPtr ctx, xmlNodePtr cur);
95static int xmlC14NProcessNodeList(xmlC14NCtxPtr ctx, xmlNodePtr cur);
Daniel Veillard044fc6b2002-03-04 17:09:44 +000096typedef enum {
Daniel Veillard9ff88172002-03-11 09:15:32 +000097 XMLC14N_NORMALIZE_ATTR = 0,
98 XMLC14N_NORMALIZE_COMMENT = 1,
99 XMLC14N_NORMALIZE_PI = 2,
100 XMLC14N_NORMALIZE_TEXT = 3
101} xmlC14NNormalizationMode;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000102
Daniel Veillard9ff88172002-03-11 09:15:32 +0000103static xmlChar *xmlC11NNormalizeString(const xmlChar * input,
104 xmlC14NNormalizationMode mode);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000105
106#define xmlC11NNormalizeAttr( a ) \
Daniel Veillard9ff88172002-03-11 09:15:32 +0000107 xmlC11NNormalizeString((a), XMLC14N_NORMALIZE_ATTR)
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000108#define xmlC11NNormalizeComment( a ) \
Daniel Veillard9ff88172002-03-11 09:15:32 +0000109 xmlC11NNormalizeString((a), XMLC14N_NORMALIZE_COMMENT)
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000110#define xmlC11NNormalizePI( a ) \
Daniel Veillard9ff88172002-03-11 09:15:32 +0000111 xmlC11NNormalizeString((a), XMLC14N_NORMALIZE_PI)
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000112#define xmlC11NNormalizeText( a ) \
Daniel Veillard9ff88172002-03-11 09:15:32 +0000113 xmlC11NNormalizeString((a), XMLC14N_NORMALIZE_TEXT)
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000114
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000115#define xmlC14NIsVisible( ctx, node, parent ) \
116 (((ctx)->is_visible_callback != NULL) ? \
117 (ctx)->is_visible_callback((ctx)->user_data, \
118 (xmlNodePtr)(node), (xmlNodePtr)(parent)) : 1)
Daniel Veillardd96cce12003-10-10 12:30:37 +0000119
120/************************************************************************
121 * *
122 * Some factorized error routines *
123 * *
124 ************************************************************************/
125
126/**
127 * xmlC14NErrMemory:
128 * @extra: extra informations
129 *
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000130 * Handle a redefinition of memory error
Daniel Veillardd96cce12003-10-10 12:30:37 +0000131 */
132static void
133xmlC14NErrMemory(const char *extra)
134{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000135 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
Daniel Veillardd96cce12003-10-10 12:30:37 +0000136 XML_ERR_NO_MEMORY, XML_ERR_ERROR, NULL, 0, extra,
137 NULL, NULL, 0, 0,
138 "Memory allocation failed : %s\n", extra);
139}
140
141/**
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000142 * xmlC14NErrParam:
143 * @extra: extra informations
144 *
145 * Handle a redefinition of param error
146 */
147static void
148xmlC14NErrParam(const char *extra)
149{
150 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
151 XML_ERR_INTERNAL_ERROR, XML_ERR_ERROR, NULL, 0, extra,
152 NULL, NULL, 0, 0,
153 "Invalid parameter : %s\n", extra);
154}
155
156/**
157 * xmlC14NErrInternal:
158 * @extra: extra informations
159 *
160 * Handle a redefinition of internal error
161 */
162static void
163xmlC14NErrInternal(const char *extra)
164{
165 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
166 XML_ERR_INTERNAL_ERROR, XML_ERR_ERROR, NULL, 0, extra,
167 NULL, NULL, 0, 0,
168 "Internal error : %s\n", extra);
169}
170
171/**
172 * xmlC14NErrInvalidNode:
173 * @extra: extra informations
174 *
175 * Handle a redefinition of invalid node error
176 */
177static void
178xmlC14NErrInvalidNode(const char *node_type, const char *extra)
179{
180 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
181 XML_C14N_INVALID_NODE, XML_ERR_ERROR, NULL, 0, extra,
182 NULL, NULL, 0, 0,
183 "Node %s is invalid here : %s\n", node_type, extra);
184}
185
186/**
187 * xmlC14NErrUnknownNode:
188 * @extra: extra informations
189 *
190 * Handle a redefinition of unknown node error
191 */
192static void
193xmlC14NErrUnknownNode(int node_type, const char *extra)
194{
195 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
196 XML_C14N_UNKNOW_NODE, XML_ERR_ERROR, NULL, 0, extra,
197 NULL, NULL, 0, 0,
198 "Unknown node type %d found : %s\n", node_type, extra);
199}
200
201/**
202 * xmlC14NErrRelativeNamespace:
203 * @extra: extra informations
204 *
205 * Handle a redefinition of relative namespace error
206 */
207static void
208xmlC14NErrRelativeNamespace(const char *ns_uri)
209{
210 __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_C14N,
211 XML_C14N_RELATIVE_NAMESPACE, XML_ERR_ERROR, NULL, 0, NULL,
212 NULL, NULL, 0, 0,
213 "Relative namespace UR is invalid here : %s\n", ns_uri);
214}
215
216
217
218/**
Daniel Veillardd96cce12003-10-10 12:30:37 +0000219 * xmlC14NErr:
220 * @ctxt: a C14N evaluation context
221 * @node: the context node
222 * @error: the erorr code
223 * @msg: the message
224 * @extra: extra informations
225 *
226 * Handle a redefinition of attribute error
227 */
228static void
229xmlC14NErr(xmlC14NCtxPtr ctxt, xmlNodePtr node, int error,
230 const char * msg)
231{
232 if (ctxt != NULL)
233 ctxt->error = error;
Daniel Veillard659e71e2003-10-10 14:10:40 +0000234 __xmlRaiseError(NULL, NULL, NULL,
Daniel Veillardd96cce12003-10-10 12:30:37 +0000235 ctxt, node, XML_FROM_C14N, error,
236 XML_ERR_ERROR, NULL, 0,
237 NULL, NULL, NULL, 0, 0, msg);
238}
239
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000240/************************************************************************
241 * *
242 * The implementation internals *
243 * *
244 ************************************************************************/
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000245#define XML_NAMESPACES_DEFAULT 16
246
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000247static int
248xmlC14NIsNodeInNodeset(xmlNodeSetPtr nodes, xmlNodePtr node, xmlNodePtr parent) {
249 if((nodes != NULL) && (node != NULL)) {
250 if(node->type != XML_NAMESPACE_DECL) {
251 return(xmlXPathNodeSetContains(nodes, node));
252 } else {
253 xmlNs ns;
254
255 memcpy(&ns, node, sizeof(ns));
Aleksey Sanin6de6f972004-04-20 02:05:30 +0000256
257 /* this is a libxml hack! check xpath.c for details */
258 if((parent != NULL) && (parent->type == XML_ATTRIBUTE_NODE)) {
259 ns.next = (xmlNsPtr)parent->parent;
260 } else {
261 ns.next = (xmlNsPtr)parent;
262 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000263
264 /*
265 * If the input is an XPath node-set, then the node-set must explicitly
266 * contain every node to be rendered to the canonical form.
267 */
268 return(xmlXPathNodeSetContains(nodes, (xmlNodePtr)&ns));
269 }
270 }
271 return(1);
272}
273
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000274static xmlC14NVisibleNsStackPtr
275xmlC14NVisibleNsStackCreate(void) {
276 xmlC14NVisibleNsStackPtr ret;
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000277
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000278 ret = (xmlC14NVisibleNsStackPtr) xmlMalloc(sizeof(xmlC14NVisibleNsStack));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000279 if (ret == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000280 xmlC14NErrMemory("creating namespaces stack");
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000281 return(NULL);
282 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000283 memset(ret, 0 , (size_t) sizeof(xmlC14NVisibleNsStack));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000284 return(ret);
285}
286
287static void
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000288xmlC14NVisibleNsStackDestroy(xmlC14NVisibleNsStackPtr cur) {
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000289 if(cur == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000290 xmlC14NErrParam("destroying namespaces stack");
291 return;
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000292 }
293 if(cur->nsTab != NULL) {
294 memset(cur->nsTab, 0, cur->nsMax * sizeof(xmlNsPtr));
295 xmlFree(cur->nsTab);
296 }
Aleksey Saninea4272a2002-08-02 23:50:03 +0000297 if(cur->nodeTab != NULL) {
298 memset(cur->nodeTab, 0, cur->nsMax * sizeof(xmlNodePtr));
299 xmlFree(cur->nodeTab);
300 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000301 memset(cur, 0, sizeof(xmlC14NVisibleNsStack));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000302 xmlFree(cur);
303
304}
305
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000306static void
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000307xmlC14NVisibleNsStackAdd(xmlC14NVisibleNsStackPtr cur, xmlNsPtr ns, xmlNodePtr node) {
308 if((cur == NULL) ||
309 ((cur->nsTab == NULL) && (cur->nodeTab != NULL)) ||
310 ((cur->nsTab != NULL) && (cur->nodeTab == NULL))) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000311 xmlC14NErrParam("adding namespace to stack");
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000312 return;
313 }
314
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000315 if ((cur->nsTab == NULL) && (cur->nodeTab == NULL)) {
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000316 cur->nsTab = (xmlNsPtr*) xmlMalloc(XML_NAMESPACES_DEFAULT * sizeof(xmlNsPtr));
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000317 cur->nodeTab = (xmlNodePtr*) xmlMalloc(XML_NAMESPACES_DEFAULT * sizeof(xmlNodePtr));
318 if ((cur->nsTab == NULL) || (cur->nodeTab == NULL)) {
Daniel Veillardd96cce12003-10-10 12:30:37 +0000319 xmlC14NErrMemory("adding node to stack");
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000320 return;
321 }
322 memset(cur->nsTab, 0 , XML_NAMESPACES_DEFAULT * sizeof(xmlNsPtr));
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000323 memset(cur->nodeTab, 0 , XML_NAMESPACES_DEFAULT * sizeof(xmlNodePtr));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000324 cur->nsMax = XML_NAMESPACES_DEFAULT;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000325 } else if(cur->nsMax == cur->nsCurEnd) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000326 void *tmp;
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000327 int tmpSize;
328
329 tmpSize = 2 * cur->nsMax;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000330 tmp = xmlRealloc(cur->nsTab, tmpSize * sizeof(xmlNsPtr));
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000331 if (tmp == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +0000332 xmlC14NErrMemory("adding node to stack");
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000333 return;
334 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000335 cur->nsTab = (xmlNsPtr*)tmp;
336
337 tmp = xmlRealloc(cur->nodeTab, tmpSize * sizeof(xmlNodePtr));
338 if (tmp == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +0000339 xmlC14NErrMemory("adding node to stack");
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000340 return;
341 }
342 cur->nodeTab = (xmlNodePtr*)tmp;
343
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000344 cur->nsMax = tmpSize;
345 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000346 cur->nsTab[cur->nsCurEnd] = ns;
347 cur->nodeTab[cur->nsCurEnd] = node;
348
349 ++cur->nsCurEnd;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000350}
351
352static void
353xmlC14NVisibleNsStackSave(xmlC14NVisibleNsStackPtr cur, xmlC14NVisibleNsStackPtr state) {
354 if((cur == NULL) || (state == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000355 xmlC14NErrParam("saving namespaces stack");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000356 return;
357 }
358
359 state->nsCurEnd = cur->nsCurEnd;
360 state->nsPrevStart = cur->nsPrevStart;
361 state->nsPrevEnd = cur->nsPrevEnd;
362}
363
364static void
365xmlC14NVisibleNsStackRestore(xmlC14NVisibleNsStackPtr cur, xmlC14NVisibleNsStackPtr state) {
366 if((cur == NULL) || (state == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000367 xmlC14NErrParam("restoring namespaces stack");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000368 return;
369 }
370 cur->nsCurEnd = state->nsCurEnd;
371 cur->nsPrevStart = state->nsPrevStart;
372 cur->nsPrevEnd = state->nsPrevEnd;
373}
374
375static void
376xmlC14NVisibleNsStackShift(xmlC14NVisibleNsStackPtr cur) {
377 if(cur == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000378 xmlC14NErrParam("shifting namespaces stack");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000379 return;
380 }
381 cur->nsPrevStart = cur->nsPrevEnd;
382 cur->nsPrevEnd = cur->nsCurEnd;
383}
384
385static int
386xmlC14NStrEqual(const xmlChar *str1, const xmlChar *str2) {
387 if (str1 == str2) return(1);
388 if (str1 == NULL) return((*str2) == '\0');
389 if (str2 == NULL) return((*str1) == '\0');
390 do {
391 if (*str1++ != *str2) return(0);
392 } while (*str2++);
393 return(1);
394}
395
396/**
397 * xmlC14NVisibleNsStackFind:
Daniel Veillard01c13b52002-12-10 15:19:08 +0000398 * @ctx: the C14N context
399 * @ns: the namespace to check
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000400 *
401 * Checks whether the given namespace was already rendered or not
402 *
403 * Returns 1 if we already wrote this namespace or 0 otherwise
404 */
405static int
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000406xmlC14NVisibleNsStackFind(xmlC14NVisibleNsStackPtr cur, xmlNsPtr ns)
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000407{
408 int i;
409 const xmlChar *prefix;
410 const xmlChar *href;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000411 int has_empty_ns;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000412
413 if(cur == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000414 xmlC14NErrParam("searching namespaces stack (c14n)");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000415 return (0);
416 }
417
418 /*
419 * if the default namespace xmlns="" is not defined yet then
420 * we do not want to print it out
421 */
422 prefix = ((ns == NULL) || (ns->prefix == NULL)) ? BAD_CAST "" : ns->prefix;
423 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000424 has_empty_ns = (xmlC14NStrEqual(prefix, NULL) && xmlC14NStrEqual(href, NULL));
425
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000426 if (cur->nsTab != NULL) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000427 int start = (has_empty_ns) ? 0 : cur->nsPrevStart;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000428 for (i = cur->nsCurEnd - 1; i >= start; --i) {
429 xmlNsPtr ns1 = cur->nsTab[i];
430
431 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
432 return(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL));
433 }
434 }
435 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000436 return(has_empty_ns);
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000437}
438
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000439static int
440xmlExcC14NVisibleNsStackFind(xmlC14NVisibleNsStackPtr cur, xmlNsPtr ns, xmlC14NCtxPtr ctx) {
441 int i;
442 const xmlChar *prefix;
443 const xmlChar *href;
444 int has_empty_ns;
445
446 if(cur == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000447 xmlC14NErrParam("searching namespaces stack (exc c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000448 return (0);
449 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000450
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000451 /*
452 * if the default namespace xmlns="" is not defined yet then
453 * we do not want to print it out
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000454 */
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000455 prefix = ((ns == NULL) || (ns->prefix == NULL)) ? BAD_CAST "" : ns->prefix;
456 href = ((ns == NULL) || (ns->href == NULL)) ? BAD_CAST "" : ns->href;
457 has_empty_ns = (xmlC14NStrEqual(prefix, NULL) && xmlC14NStrEqual(href, NULL));
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000458
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000459 if (cur->nsTab != NULL) {
460 int start = 0;
461 for (i = cur->nsCurEnd - 1; i >= start; --i) {
462 xmlNsPtr ns1 = cur->nsTab[i];
463
464 if(xmlC14NStrEqual(prefix, (ns1 != NULL) ? ns1->prefix : NULL)) {
465 if(xmlC14NStrEqual(href, (ns1 != NULL) ? ns1->href : NULL)) {
466 return(xmlC14NIsVisible(ctx, ns1, cur->nodeTab[i]));
467 } else {
468 return(0);
469 }
470 }
471 }
472 }
473 return(has_empty_ns);
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000474}
475
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000476
477
478
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000479/**
480 * xmlC14NIsXmlNs:
481 * @ns: the namespace to check
482 *
483 * Checks whether the given namespace is a default "xml:" namespace
484 * with href="http://www.w3.org/XML/1998/namespace"
485 *
486 * Returns 1 if the node is default or 0 otherwise
487 */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000488
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000489/* todo: make it a define? */
490static int
Daniel Veillard9ff88172002-03-11 09:15:32 +0000491xmlC14NIsXmlNs(xmlNsPtr ns)
492{
493 return ((ns != NULL) &&
494 (xmlStrEqual(ns->prefix, BAD_CAST "xml")) &&
495 (xmlStrEqual(ns->href,
496 BAD_CAST
497 "http://www.w3.org/XML/1998/namespace")));
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000498}
499
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000500
501/**
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000502 * xmlC14NNsCompare:
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000503 * @ns1: the pointer to first namespace
504 * @ns2: the pointer to second namespace
505 *
506 * Compares the namespaces by names (prefixes).
507 *
508 * Returns -1 if ns1 < ns2, 0 if ns1 == ns2 or 1 if ns1 > ns2.
509 */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000510static int
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000511xmlC14NNsCompare(xmlNsPtr ns1, xmlNsPtr ns2)
Daniel Veillard9ff88172002-03-11 09:15:32 +0000512{
513 if (ns1 == ns2)
514 return (0);
515 if (ns1 == NULL)
516 return (-1);
517 if (ns2 == NULL)
518 return (1);
519
520 return (xmlStrcmp(ns1->prefix, ns2->prefix));
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000521}
522
523
524/**
525 * xmlC14NPrintNamespaces:
526 * @ns: the pointer to namespace
527 * @ctx: the C14N context
528 *
529 * Prints the given namespace to the output buffer from C14N context.
530 *
531 * Returns 1 on success or 0 on fail.
532 */
533static int
Daniel Veillard9ff88172002-03-11 09:15:32 +0000534xmlC14NPrintNamespaces(const xmlNsPtr ns, xmlC14NCtxPtr ctx)
535{
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000536
Daniel Veillard9ff88172002-03-11 09:15:32 +0000537 if ((ns == NULL) || (ctx == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000538 xmlC14NErrParam("writing namespaces");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000539 return 0;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000540 }
541
Daniel Veillard9ff88172002-03-11 09:15:32 +0000542 if (ns->prefix != NULL) {
543 xmlOutputBufferWriteString(ctx->buf, " xmlns:");
544 xmlOutputBufferWriteString(ctx->buf, (const char *) ns->prefix);
545 xmlOutputBufferWriteString(ctx->buf, "=\"");
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000546 } else {
Daniel Veillard9ff88172002-03-11 09:15:32 +0000547 xmlOutputBufferWriteString(ctx->buf, " xmlns=\"");
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000548 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000549 if(ns->href != NULL) {
550 xmlOutputBufferWriteString(ctx->buf, (const char *) ns->href);
551 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000552 xmlOutputBufferWriteString(ctx->buf, "\"");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000553 return (1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000554}
555
556/**
557 * xmlC14NProcessNamespacesAxis:
558 * @ctx: the C14N context
559 * @node: the current node
560 *
561 * Prints out canonical namespace axis of the current node to the
562 * buffer from C14N context as follows
563 *
564 * Canonical XML v 1.0 (http://www.w3.org/TR/xml-c14n)
565 *
566 * Namespace Axis
567 * Consider a list L containing only namespace nodes in the
568 * axis and in the node-set in lexicographic order (ascending). To begin
569 * processing L, if the first node is not the default namespace node (a node
570 * with no namespace URI and no local name), then generate a space followed
571 * by xmlns="" if and only if the following conditions are met:
572 * - the element E that owns the axis is in the node-set
573 * - The nearest ancestor element of E in the node-set has a default
574 * namespace node in the node-set (default namespace nodes always
575 * have non-empty values in XPath)
576 * The latter condition eliminates unnecessary occurrences of xmlns="" in
577 * the canonical form since an element only receives an xmlns="" if its
578 * default namespace is empty and if it has an immediate parent in the
579 * canonical form that has a non-empty default namespace. To finish
580 * processing L, simply process every namespace node in L, except omit
581 * namespace node with local name xml, which defines the xml prefix,
582 * if its string value is http://www.w3.org/XML/1998/namespace.
583 *
584 * Exclusive XML Canonicalization v 1.0 (http://www.w3.org/TR/xml-exc-c14n)
585 * Canonical XML applied to a document subset requires the search of the
586 * ancestor nodes of each orphan element node for attributes in the xml
587 * namespace, such as xml:lang and xml:space. These are copied into the
588 * element node except if a declaration of the same attribute is already
589 * in the attribute axis of the element (whether or not it is included in
590 * the document subset). This search and copying are omitted from the
591 * Exclusive XML Canonicalization method.
592 *
593 * Returns 0 on success or -1 on fail.
594 */
595static int
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000596xmlC14NProcessNamespacesAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible)
Daniel Veillard9ff88172002-03-11 09:15:32 +0000597{
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000598 xmlNodePtr n;
599 xmlNsPtr ns, tmp;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000600 xmlListPtr list;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000601 int already_rendered;
602 int has_empty_ns = 0;
Daniel Veillard5c396542002-03-15 07:57:50 +0000603
Daniel Veillard9ff88172002-03-11 09:15:32 +0000604 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000605 xmlC14NErrParam("processing namespaces axis (c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000606 return (-1);
607 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000608
609 /*
610 * Create a sorted list to store element namespaces
611 */
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000612 list = xmlListCreate(NULL, (xmlListDataCompare) xmlC14NNsCompare);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000613 if (list == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000614 xmlC14NErrInternal("creating namespaces list (c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000615 return (-1);
616 }
617
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000618 /* check all namespaces */
619 for(n = cur; n != NULL; n = n->parent) {
620 for(ns = n->nsDef; ns != NULL; ns = ns->next) {
621 tmp = xmlSearchNs(cur->doc, cur, ns->prefix);
622
623 if((tmp == ns) && !xmlC14NIsXmlNs(ns) && xmlC14NIsVisible(ctx, ns, cur)) {
624 already_rendered = xmlC14NVisibleNsStackFind(ctx->ns_rendered, ns);
625 if(visible) {
626 xmlC14NVisibleNsStackAdd(ctx->ns_rendered, ns, cur);
627 }
628 if(!already_rendered) {
Aleksey Saninc57f9c12002-05-31 19:14:57 +0000629 xmlListInsert(list, ns);
630 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000631 if(xmlStrlen(ns->prefix) == 0) {
632 has_empty_ns = 1;
633 }
Aleksey Saninc57f9c12002-05-31 19:14:57 +0000634 }
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000635 }
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000636 }
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000637
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000638 /**
639 * if the first node is not the default namespace node (a node with no
640 * namespace URI and no local name), then generate a space followed by
641 * xmlns="" if and only if the following conditions are met:
642 * - the element E that owns the axis is in the node-set
643 * - the nearest ancestor element of E in the node-set has a default
644 * namespace node in the node-set (default namespace nodes always
645 * have non-empty values in XPath)
646 */
647 if(visible && !has_empty_ns) {
648 static xmlNs ns_default;
649
650 memset(&ns_default, 0, sizeof(ns_default));
651 if(!xmlC14NVisibleNsStackFind(ctx->ns_rendered, &ns_default)) {
652 xmlC14NPrintNamespaces(&ns_default, ctx);
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000653 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000654 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000655
656
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000657 /*
658 * print out all elements from list
659 */
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000660 xmlListWalk(list, (xmlListWalker) xmlC14NPrintNamespaces, (const void *) ctx);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000661
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000662 /*
663 * Cleanup
664 */
665 xmlListDelete(list);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000666 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000667}
668
Aleksey Sanindffd5c82002-05-31 04:24:13 +0000669
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000670/**
671 * xmlExcC14NProcessNamespacesAxis:
672 * @ctx: the C14N context
673 * @node: the current node
674 *
675 * Prints out exclusive canonical namespace axis of the current node to the
676 * buffer from C14N context as follows
677 *
678 * Exclusive XML Canonicalization
679 * http://www.w3.org/TR/xml-exc-c14n
680 *
681 * If the element node is in the XPath subset then output the node in
682 * accordance with Canonical XML except for namespace nodes which are
683 * rendered as follows:
684 *
685 * 1. Render each namespace node iff:
686 * * it is visibly utilized by the immediate parent element or one of
687 * its attributes, or is present in InclusiveNamespaces PrefixList, and
688 * * its prefix and value do not appear in ns_rendered. ns_rendered is
689 * obtained by popping the state stack in order to obtain a list of
690 * prefixes and their values which have already been rendered by
691 * an output ancestor of the namespace node's parent element.
692 * 2. Append the rendered namespace node to the list ns_rendered of namespace
693 * nodes rendered by output ancestors. Push ns_rendered on state stack and
694 * recurse.
695 * 3. After the recursion returns, pop thestate stack.
696 *
697 *
698 * Returns 0 on success or -1 on fail.
699 */
700static int
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000701xmlExcC14NProcessNamespacesAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible)
Daniel Veillard9ff88172002-03-11 09:15:32 +0000702{
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000703 xmlNsPtr ns;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000704 xmlListPtr list;
705 xmlAttrPtr attr;
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000706 int already_rendered;
707 int has_empty_ns = 0;
708 int has_visibly_utilized_empty_ns = 0;
709 int has_empty_ns_in_inclusive_list = 0;
710
Daniel Veillard9ff88172002-03-11 09:15:32 +0000711 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000712 xmlC14NErrParam("processing namespaces axis (exc c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000713 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000714 }
Daniel Veillard9ff88172002-03-11 09:15:32 +0000715
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000716 if(!ctx->exclusive) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000717 xmlC14NErrParam("processing namespaces axis (exc c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000718 return (-1);
719
720 }
721
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000722 /*
723 * Create a sorted list to store element namespaces
724 */
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000725 list = xmlListCreate(NULL, (xmlListDataCompare) xmlC14NNsCompare);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000726 if (list == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000727 xmlC14NErrInternal("creating namespaces list (exc c14n)");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000728 return (-1);
729 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000730
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000731 /*
732 * process inclusive namespaces:
733 * All namespace nodes appearing on inclusive ns list are
734 * handled as provided in Canonical XML
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000735 */
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000736 if(ctx->inclusive_ns_prefixes != NULL) {
737 xmlChar *prefix;
738 int i;
739
740 for (i = 0; ctx->inclusive_ns_prefixes[i] != NULL; ++i) {
741 prefix = ctx->inclusive_ns_prefixes[i];
742 /*
743 * Special values for namespace with empty prefix
744 */
745 if (xmlStrEqual(prefix, BAD_CAST "#default")
746 || xmlStrEqual(prefix, BAD_CAST "")) {
747 prefix = NULL;
748 has_empty_ns_in_inclusive_list = 1;
749 }
750
751 ns = xmlSearchNs(cur->doc, cur, prefix);
752 if((ns != NULL) && !xmlC14NIsXmlNs(ns) && xmlC14NIsVisible(ctx, ns, cur)) {
753 already_rendered = xmlC14NVisibleNsStackFind(ctx->ns_rendered, ns);
754 if(visible) {
755 xmlC14NVisibleNsStackAdd(ctx->ns_rendered, ns, cur);
756 }
757 if(!already_rendered) {
758 xmlListInsert(list, ns);
759 }
760 if(xmlStrlen(ns->prefix) == 0) {
761 has_empty_ns = 1;
762 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000763 }
Aleksey Saninc57f9c12002-05-31 19:14:57 +0000764 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000765 }
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000766
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000767 /* add node namespace */
768 if(cur->ns != NULL) {
769 ns = cur->ns;
770 } else {
771 ns = xmlSearchNs(cur->doc, cur, NULL);
772 has_visibly_utilized_empty_ns = 1;
773 }
774 if((ns != NULL) && !xmlC14NIsXmlNs(ns)) {
775 if(visible && xmlC14NIsVisible(ctx, ns, cur)) {
776 if(!xmlExcC14NVisibleNsStackFind(ctx->ns_rendered, ns, ctx)) {
777 xmlListInsert(list, ns);
778 }
779 }
780 if(visible) {
781 xmlC14NVisibleNsStackAdd(ctx->ns_rendered, ns, cur);
782 }
783 if(xmlStrlen(ns->prefix) == 0) {
784 has_empty_ns = 1;
785 }
786 }
787
788
789 /* add attributes */
790 for(attr = cur->properties; attr != NULL; attr = attr->next) {
Daniel Veillard9ff88172002-03-11 09:15:32 +0000791 /*
Daniel Veillard2d347fa2002-03-17 10:34:11 +0000792 * we need to check that attribute is visible and has non
793 * default namespace (XML Namespaces: "default namespaces
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000794 * do not apply directly to attributes")
Daniel Veillard9ff88172002-03-11 09:15:32 +0000795 */
Aleksey Sanin2650df12005-06-06 17:16:50 +0000796 if((attr->ns != NULL) && !xmlC14NIsXmlNs(attr->ns) && xmlC14NIsVisible(ctx, attr, cur)) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000797 already_rendered = xmlExcC14NVisibleNsStackFind(ctx->ns_rendered, attr->ns, ctx);
Aleksey Sanin64453bc2004-05-25 17:39:48 +0000798 xmlC14NVisibleNsStackAdd(ctx->ns_rendered, attr->ns, cur);
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000799 if(!already_rendered && visible) {
800 xmlListInsert(list, attr->ns);
801 }
802 if(xmlStrlen(attr->ns->prefix) == 0) {
803 has_empty_ns = 1;
804 }
Aleksey Saninb2eabc02005-10-28 03:15:18 +0000805 } else if((attr->ns != NULL) && (xmlStrlen(attr->ns->prefix) == 0) && (xmlStrlen(attr->ns->href) == 0)) {
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000806 has_visibly_utilized_empty_ns = 1;
807 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000808 }
Daniel Veillard9ff88172002-03-11 09:15:32 +0000809
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000810 /*
811 * Process xmlns=""
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000812 */
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000813 if(visible && has_visibly_utilized_empty_ns &&
814 !has_empty_ns && !has_empty_ns_in_inclusive_list) {
815 static xmlNs ns_default;
Daniel Veillard9ff88172002-03-11 09:15:32 +0000816
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000817 memset(&ns_default, 0, sizeof(ns_default));
818
819 already_rendered = xmlExcC14NVisibleNsStackFind(ctx->ns_rendered, &ns_default, ctx);
820 if(!already_rendered) {
821 xmlC14NPrintNamespaces(&ns_default, ctx);
822 }
823 } else if(visible && !has_empty_ns && has_empty_ns_in_inclusive_list) {
824 static xmlNs ns_default;
825
826 memset(&ns_default, 0, sizeof(ns_default));
827 if(!xmlC14NVisibleNsStackFind(ctx->ns_rendered, &ns_default)) {
828 xmlC14NPrintNamespaces(&ns_default, ctx);
829 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000830 }
Daniel Veillard9ff88172002-03-11 09:15:32 +0000831
Aleksey Sanin2c135a12002-08-01 06:31:50 +0000832
833
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000834 /*
835 * print out all elements from list
836 */
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000837 xmlListWalk(list, (xmlListWalker) xmlC14NPrintNamespaces, (const void *) ctx);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000838
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000839 /*
840 * Cleanup
841 */
842 xmlListDelete(list);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000843 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000844}
845
846
847/**
848 * xmlC14NAttrsCompare:
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000849 * @attr1: the pointer tls o first attr
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000850 * @attr2: the pointer to second attr
851 *
852 * Prints the given attribute to the output buffer from C14N context.
853 *
854 * Returns -1 if attr1 < attr2, 0 if attr1 == attr2 or 1 if attr1 > attr2.
855 */
856static int
Daniel Veillard9ff88172002-03-11 09:15:32 +0000857xmlC14NAttrsCompare(xmlAttrPtr attr1, xmlAttrPtr attr2)
858{
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000859 int ret = 0;
860
861 /*
862 * Simple cases
863 */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000864 if (attr1 == attr2)
865 return (0);
866 if (attr1 == NULL)
867 return (-1);
868 if (attr2 == NULL)
869 return (1);
870 if (attr1->ns == attr2->ns) {
871 return (xmlStrcmp(attr1->name, attr2->name));
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000872 }
873
874 /*
875 * Attributes in the default namespace are first
876 * because the default namespace is not applied to
877 * unqualified attributes
878 */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000879 if (attr1->ns == NULL)
880 return (-1);
881 if (attr2->ns == NULL)
882 return (1);
883 if (attr1->ns->prefix == NULL)
884 return (-1);
885 if (attr2->ns->prefix == NULL)
886 return (1);
887
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000888 ret = xmlStrcmp(attr1->ns->href, attr2->ns->href);
Daniel Veillard9ff88172002-03-11 09:15:32 +0000889 if (ret == 0) {
890 ret = xmlStrcmp(attr1->name, attr2->name);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000891 }
Daniel Veillard9ff88172002-03-11 09:15:32 +0000892 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000893}
894
895
896/**
897 * xmlC14NPrintAttrs:
898 * @attr: the pointer to attr
899 * @ctx: the C14N context
900 *
901 * Prints out canonical attribute urrent node to the
902 * buffer from C14N context as follows
903 *
904 * Canonical XML v 1.0 (http://www.w3.org/TR/xml-c14n)
905 *
906 * Returns 1 on success or 0 on fail.
907 */
908static int
Daniel Veillard9ff88172002-03-11 09:15:32 +0000909xmlC14NPrintAttrs(const xmlAttrPtr attr, xmlC14NCtxPtr ctx)
910{
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000911 xmlChar *value;
912 xmlChar *buffer;
913
Daniel Veillard9ff88172002-03-11 09:15:32 +0000914 if ((attr == NULL) || (ctx == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000915 xmlC14NErrParam("writing attributes");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000916 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000917 }
918
919 xmlOutputBufferWriteString(ctx->buf, " ");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000920 if (attr->ns != NULL && xmlStrlen(attr->ns->prefix) > 0) {
921 xmlOutputBufferWriteString(ctx->buf,
922 (const char *) attr->ns->prefix);
923 xmlOutputBufferWriteString(ctx->buf, ":");
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000924 }
925 xmlOutputBufferWriteString(ctx->buf, (const char *) attr->name);
926 xmlOutputBufferWriteString(ctx->buf, "=\"");
927
928 value = xmlNodeListGetString(attr->doc, attr->children, 1);
929 /* todo: should we log an error if value==NULL ? */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000930 if (value != NULL) {
931 buffer = xmlC11NNormalizeAttr(value);
932 xmlFree(value);
933 if (buffer != NULL) {
934 xmlOutputBufferWriteString(ctx->buf, (const char *) buffer);
935 xmlFree(buffer);
936 } else {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000937 xmlC14NErrInternal("normalizing attributes axis");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000938 return (0);
939 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000940 }
941 xmlOutputBufferWriteString(ctx->buf, "\"");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000942 return (1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000943}
944
945/**
946 * xmlC14NProcessAttrsAxis:
947 * @ctx: the C14N context
948 * @cur: the current node
Aleksey Sanin3ea201c2005-06-07 16:53:57 +0000949 * @parent_visible: the visibility of parent node
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000950 *
951 * Prints out canonical attribute axis of the current node to the
952 * buffer from C14N context as follows
953 *
954 * Canonical XML v 1.0 (http://www.w3.org/TR/xml-c14n)
955 *
956 * Attribute Axis
957 * In lexicographic order (ascending), process each node that
958 * is in the element's attribute axis and in the node-set.
959 *
960 * The processing of an element node E MUST be modified slightly
961 * when an XPath node-set is given as input and the element's
962 * parent is omitted from the node-set.
963 *
964 *
965 * Exclusive XML Canonicalization v 1.0 (http://www.w3.org/TR/xml-exc-c14n)
966 *
967 * Canonical XML applied to a document subset requires the search of the
968 * ancestor nodes of each orphan element node for attributes in the xml
969 * namespace, such as xml:lang and xml:space. These are copied into the
970 * element node except if a declaration of the same attribute is already
971 * in the attribute axis of the element (whether or not it is included in
972 * the document subset). This search and copying are omitted from the
973 * Exclusive XML Canonicalization method.
974 *
975 * Returns 0 on success or -1 on fail.
976 */
977static int
Aleksey Sanin3ea201c2005-06-07 16:53:57 +0000978xmlC14NProcessAttrsAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int parent_visible)
Daniel Veillard9ff88172002-03-11 09:15:32 +0000979{
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000980 xmlAttrPtr attr;
981 xmlListPtr list;
Daniel Veillard9ff88172002-03-11 09:15:32 +0000982
983 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000984 xmlC14NErrParam("processing attributes axis");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000985 return (-1);
986 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000987
988 /*
989 * Create a sorted list to store element attributes
990 */
Daniel Veillard9ff88172002-03-11 09:15:32 +0000991 list = xmlListCreate(NULL, (xmlListDataCompare) xmlC14NAttrsCompare);
992 if (list == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +0000993 xmlC14NErrInternal("creating attributes list");
Daniel Veillard9ff88172002-03-11 09:15:32 +0000994 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000995 }
996
997 /*
998 * Add all visible attributes from current node.
999 */
1000 attr = cur->properties;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001001 while (attr != NULL) {
1002 /* check that attribute is visible */
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001003 if (xmlC14NIsVisible(ctx, attr, cur)) {
Daniel Veillard9ff88172002-03-11 09:15:32 +00001004 xmlListInsert(list, attr);
1005 }
1006 attr = attr->next;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001007 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001008
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001009 /*
1010 * include attributes in "xml" namespace defined in ancestors
1011 * (only for non-exclusive XML Canonicalization)
1012 */
Aleksey Sanin3ea201c2005-06-07 16:53:57 +00001013 if (parent_visible && (!ctx->exclusive) && (cur->parent != NULL)
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001014 && (!xmlC14NIsVisible(ctx, cur->parent, cur->parent->parent))) {
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001015 /*
Daniel Veillard9ff88172002-03-11 09:15:32 +00001016 * If XPath node-set is not specified then the parent is always
1017 * visible!
1018 */
1019 cur = cur->parent;
1020 while (cur != NULL) {
1021 attr = cur->properties;
1022 while (attr != NULL) {
1023 if ((attr->ns != NULL)
1024 && (xmlStrEqual(attr->ns->prefix, BAD_CAST "xml"))) {
1025 if (xmlListSearch(list, attr) == NULL) {
1026 xmlListInsert(list, attr);
1027 }
1028 }
1029 attr = attr->next;
1030 }
1031 cur = cur->parent;
1032 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001033 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001034
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001035 /*
1036 * print out all elements from list
1037 */
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001038 xmlListWalk(list, (xmlListWalker) xmlC14NPrintAttrs, (const void *) ctx);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001039
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001040 /*
1041 * Cleanup
1042 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001043 xmlListDelete(list);
1044 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001045}
1046
1047/**
1048 * xmlC14NCheckForRelativeNamespaces:
1049 * @ctx: the C14N context
1050 * @cur: the current element node
1051 *
1052 * Checks that current element node has no relative namespaces defined
1053 *
1054 * Returns 0 if the node has no relative namespaces or -1 otherwise.
1055 */
1056static int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001057xmlC14NCheckForRelativeNamespaces(xmlC14NCtxPtr ctx, xmlNodePtr cur)
1058{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001059 xmlNsPtr ns;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001060
Daniel Veillard9ff88172002-03-11 09:15:32 +00001061 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001062 xmlC14NErrParam("checking for relative namespaces");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001063 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001064 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001065
1066 ns = cur->nsDef;
1067 while (ns != NULL) {
1068 if (xmlStrlen(ns->href) > 0) {
1069 xmlURIPtr uri;
1070
1071 uri = xmlParseURI((const char *) ns->href);
1072 if (uri == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001073 xmlC14NErrInternal("parsing namespace uri");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001074 return (-1);
1075 }
1076 if (xmlStrlen((const xmlChar *) uri->scheme) == 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001077 xmlC14NErrRelativeNamespace(uri->scheme);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001078 xmlFreeURI(uri);
1079 return (-1);
1080 }
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001081 if ((xmlStrcasecmp((const xmlChar *) uri->scheme, BAD_CAST "urn") != 0)
1082 && (xmlStrcasecmp((const xmlChar *) uri->scheme, BAD_CAST "dav") !=0)
Daniel Veillard9ff88172002-03-11 09:15:32 +00001083 && (xmlStrlen((const xmlChar *) uri->server) == 0)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001084 xmlC14NErrRelativeNamespace(uri->scheme);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001085 xmlFreeURI(uri);
1086 return (-1);
1087 }
1088 xmlFreeURI(uri);
1089 }
1090 ns = ns->next;
1091 }
1092 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001093}
1094
1095/**
1096 * xmlC14NProcessElementNode:
1097 * @ctx: the pointer to C14N context object
1098 * @cur: the node to process
1099 *
1100 * Canonical XML v 1.0 (http://www.w3.org/TR/xml-c14n)
1101 *
1102 * Element Nodes
1103 * If the element is not in the node-set, then the result is obtained
1104 * by processing the namespace axis, then the attribute axis, then
1105 * processing the child nodes of the element that are in the node-set
1106 * (in document order). If the element is in the node-set, then the result
1107 * is an open angle bracket (<), the element QName, the result of
1108 * processing the namespace axis, the result of processing the attribute
1109 * axis, a close angle bracket (>), the result of processing the child
1110 * nodes of the element that are in the node-set (in document order), an
1111 * open angle bracket, a forward slash (/), the element QName, and a close
1112 * angle bracket.
1113 *
1114 * Returns non-negative value on success or negative value on fail
1115 */
1116static int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001117xmlC14NProcessElementNode(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible)
1118{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001119 int ret;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001120 xmlC14NVisibleNsStack state;
Daniel Veillard6f293b12002-03-15 09:42:33 +00001121 int parent_is_doc = 0;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001122
Daniel Veillard9ff88172002-03-11 09:15:32 +00001123 if ((ctx == NULL) || (cur == NULL) || (cur->type != XML_ELEMENT_NODE)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001124 xmlC14NErrParam("processing element node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001125 return (-1);
1126 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001127
1128 /*
1129 * Check relative relative namespaces:
1130 * implementations of XML canonicalization MUST report an operation
1131 * failure on documents containing relative namespace URIs.
1132 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001133 if (xmlC14NCheckForRelativeNamespaces(ctx, cur) < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001134 xmlC14NErrInternal("checking for relative namespaces");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001135 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001136 }
1137
1138
1139 /*
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001140 * Save ns_rendered stack position
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001141 */
Daniel Veillardaac7c682006-03-10 13:40:16 +00001142 memset(&state, 0, sizeof(state));
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001143 xmlC14NVisibleNsStackSave(ctx->ns_rendered, &state);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001144
Daniel Veillard6f293b12002-03-15 09:42:33 +00001145 if (visible) {
Daniel Veillard9ff88172002-03-11 09:15:32 +00001146 if (ctx->parent_is_doc) {
Daniel Veillard6f293b12002-03-15 09:42:33 +00001147 /* save this flag into the stack */
1148 parent_is_doc = ctx->parent_is_doc;
1149 ctx->parent_is_doc = 0;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001150 ctx->pos = XMLC14N_INSIDE_DOCUMENT_ELEMENT;
1151 }
1152 xmlOutputBufferWriteString(ctx->buf, "<");
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001153
Daniel Veillard9ff88172002-03-11 09:15:32 +00001154 if ((cur->ns != NULL) && (xmlStrlen(cur->ns->prefix) > 0)) {
1155 xmlOutputBufferWriteString(ctx->buf,
1156 (const char *) cur->ns->prefix);
1157 xmlOutputBufferWriteString(ctx->buf, ":");
1158 }
1159 xmlOutputBufferWriteString(ctx->buf, (const char *) cur->name);
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001160 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001161
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001162 if (!ctx->exclusive) {
1163 ret = xmlC14NProcessNamespacesAxis(ctx, cur, visible);
1164 } else {
1165 ret = xmlExcC14NProcessNamespacesAxis(ctx, cur, visible);
1166 }
1167 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001168 xmlC14NErrInternal("processing namespaces axis");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001169 return (-1);
1170 }
1171 /* todo: shouldn't this go to "visible only"? */
1172 if(visible) {
1173 xmlC14NVisibleNsStackShift(ctx->ns_rendered);
1174 }
1175
Aleksey Sanin3ea201c2005-06-07 16:53:57 +00001176 ret = xmlC14NProcessAttrsAxis(ctx, cur, visible);
1177 if (ret < 0) {
1178 xmlC14NErrInternal("processing attributes axis");
1179 return (-1);
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001180 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001181
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001182 if (visible) {
Daniel Veillard9ff88172002-03-11 09:15:32 +00001183 xmlOutputBufferWriteString(ctx->buf, ">");
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001184 }
1185 if (cur->children != NULL) {
Daniel Veillard9ff88172002-03-11 09:15:32 +00001186 ret = xmlC14NProcessNodeList(ctx, cur->children);
1187 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001188 xmlC14NErrInternal("processing childrens list");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001189 return (-1);
1190 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001191 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001192 if (visible) {
1193 xmlOutputBufferWriteString(ctx->buf, "</");
1194 if ((cur->ns != NULL) && (xmlStrlen(cur->ns->prefix) > 0)) {
1195 xmlOutputBufferWriteString(ctx->buf,
1196 (const char *) cur->ns->prefix);
1197 xmlOutputBufferWriteString(ctx->buf, ":");
1198 }
1199 xmlOutputBufferWriteString(ctx->buf, (const char *) cur->name);
1200 xmlOutputBufferWriteString(ctx->buf, ">");
Daniel Veillard6f293b12002-03-15 09:42:33 +00001201 if (parent_is_doc) {
1202 /* restore this flag from the stack for next node */
1203 ctx->parent_is_doc = parent_is_doc;
1204 ctx->pos = XMLC14N_AFTER_DOCUMENT_ELEMENT;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001205 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001206 }
1207
1208 /*
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001209 * Restore ns_rendered stack position
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001210 */
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001211 xmlC14NVisibleNsStackRestore(ctx->ns_rendered, &state);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001212 return (0);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001213}
1214
1215/**
1216 * xmlC14NProcessNode:
1217 * @ctx: the pointer to C14N context object
1218 * @cur: the node to process
1219 *
1220 * Processes the given node
1221 *
1222 * Returns non-negative value on success or negative value on fail
1223 */
1224static int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001225xmlC14NProcessNode(xmlC14NCtxPtr ctx, xmlNodePtr cur)
1226{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001227 int ret = 0;
1228 int visible;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001229
1230 if ((ctx == NULL) || (cur == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001231 xmlC14NErrParam("processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001232 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001233 }
1234
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001235 visible = xmlC14NIsVisible(ctx, cur, cur->parent);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001236 switch (cur->type) {
1237 case XML_ELEMENT_NODE:
1238 ret = xmlC14NProcessElementNode(ctx, cur, visible);
1239 break;
1240 case XML_CDATA_SECTION_NODE:
1241 case XML_TEXT_NODE:
1242 /*
1243 * Text Nodes
1244 * the string value, except all ampersands are replaced
1245 * by &amp;, all open angle brackets (<) are replaced by &lt;, all closing
1246 * angle brackets (>) are replaced by &gt;, and all #xD characters are
1247 * replaced by &#xD;.
1248 */
1249 /* cdata sections are processed as text nodes */
1250 /* todo: verify that cdata sections are included in XPath nodes set */
1251 if ((visible) && (cur->content != NULL)) {
1252 xmlChar *buffer;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001253
Daniel Veillard9ff88172002-03-11 09:15:32 +00001254 buffer = xmlC11NNormalizeText(cur->content);
1255 if (buffer != NULL) {
1256 xmlOutputBufferWriteString(ctx->buf,
1257 (const char *) buffer);
1258 xmlFree(buffer);
1259 } else {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001260 xmlC14NErrInternal("normalizing text node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001261 return (-1);
1262 }
1263 }
1264 break;
1265 case XML_PI_NODE:
1266 /*
1267 * Processing Instruction (PI) Nodes-
1268 * The opening PI symbol (<?), the PI target name of the node,
1269 * a leading space and the string value if it is not empty, and
1270 * the closing PI symbol (?>). If the string value is empty,
1271 * then the leading space is not added. Also, a trailing #xA is
1272 * rendered after the closing PI symbol for PI children of the
1273 * root node with a lesser document order than the document
1274 * element, and a leading #xA is rendered before the opening PI
1275 * symbol of PI children of the root node with a greater document
1276 * order than the document element.
1277 */
1278 if (visible) {
1279 if (ctx->pos == XMLC14N_AFTER_DOCUMENT_ELEMENT) {
1280 xmlOutputBufferWriteString(ctx->buf, "\x0A<?");
1281 } else {
1282 xmlOutputBufferWriteString(ctx->buf, "<?");
1283 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001284
Daniel Veillard9ff88172002-03-11 09:15:32 +00001285 xmlOutputBufferWriteString(ctx->buf,
1286 (const char *) cur->name);
1287 if ((cur->content != NULL) && (*(cur->content) != '\0')) {
1288 xmlChar *buffer;
1289
1290 xmlOutputBufferWriteString(ctx->buf, " ");
1291
1292 /* todo: do we need to normalize pi? */
1293 buffer = xmlC11NNormalizePI(cur->content);
1294 if (buffer != NULL) {
1295 xmlOutputBufferWriteString(ctx->buf,
1296 (const char *) buffer);
1297 xmlFree(buffer);
1298 } else {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001299 xmlC14NErrInternal("normalizing pi node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001300 return (-1);
1301 }
1302 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001303
Daniel Veillard9ff88172002-03-11 09:15:32 +00001304 if (ctx->pos == XMLC14N_BEFORE_DOCUMENT_ELEMENT) {
1305 xmlOutputBufferWriteString(ctx->buf, "?>\x0A");
1306 } else {
1307 xmlOutputBufferWriteString(ctx->buf, "?>");
1308 }
1309 }
1310 break;
1311 case XML_COMMENT_NODE:
1312 /*
1313 * Comment Nodes
1314 * Nothing if generating canonical XML without comments. For
1315 * canonical XML with comments, generate the opening comment
1316 * symbol (<!--), the string value of the node, and the
1317 * closing comment symbol (-->). Also, a trailing #xA is rendered
1318 * after the closing comment symbol for comment children of the
1319 * root node with a lesser document order than the document
1320 * element, and a leading #xA is rendered before the opening
1321 * comment symbol of comment children of the root node with a
1322 * greater document order than the document element. (Comment
1323 * children of the root node represent comments outside of the
1324 * top-level document element and outside of the document type
1325 * declaration).
1326 */
1327 if (visible && ctx->with_comments) {
1328 if (ctx->pos == XMLC14N_AFTER_DOCUMENT_ELEMENT) {
1329 xmlOutputBufferWriteString(ctx->buf, "\x0A<!--");
1330 } else {
1331 xmlOutputBufferWriteString(ctx->buf, "<!--");
1332 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001333
Daniel Veillard9ff88172002-03-11 09:15:32 +00001334 if (cur->content != NULL) {
1335 xmlChar *buffer;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001336
Daniel Veillard9ff88172002-03-11 09:15:32 +00001337 /* todo: do we need to normalize comment? */
1338 buffer = xmlC11NNormalizeComment(cur->content);
1339 if (buffer != NULL) {
1340 xmlOutputBufferWriteString(ctx->buf,
1341 (const char *) buffer);
1342 xmlFree(buffer);
1343 } else {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001344 xmlC14NErrInternal("normalizing comment node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001345 return (-1);
1346 }
1347 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001348
Daniel Veillard9ff88172002-03-11 09:15:32 +00001349 if (ctx->pos == XMLC14N_BEFORE_DOCUMENT_ELEMENT) {
1350 xmlOutputBufferWriteString(ctx->buf, "-->\x0A");
1351 } else {
1352 xmlOutputBufferWriteString(ctx->buf, "-->");
1353 }
1354 }
1355 break;
1356 case XML_DOCUMENT_NODE:
1357 case XML_DOCUMENT_FRAG_NODE: /* should be processed as document? */
Daniel Veillard1840ef02002-03-21 08:05:23 +00001358#ifdef LIBXML_DOCB_ENABLED
Daniel Veillard9ff88172002-03-11 09:15:32 +00001359 case XML_DOCB_DOCUMENT_NODE: /* should be processed as document? */
Daniel Veillard1840ef02002-03-21 08:05:23 +00001360#endif
1361#ifdef LIBXML_HTML_ENABLED
Daniel Veillard9ff88172002-03-11 09:15:32 +00001362 case XML_HTML_DOCUMENT_NODE: /* should be processed as document? */
Daniel Veillard1840ef02002-03-21 08:05:23 +00001363#endif
Daniel Veillard9ff88172002-03-11 09:15:32 +00001364 if (cur->children != NULL) {
1365 ctx->pos = XMLC14N_BEFORE_DOCUMENT_ELEMENT;
1366 ctx->parent_is_doc = 1;
1367 ret = xmlC14NProcessNodeList(ctx, cur->children);
1368 }
1369 break;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001370
Daniel Veillard9ff88172002-03-11 09:15:32 +00001371 case XML_ATTRIBUTE_NODE:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001372 xmlC14NErrInvalidNode("XML_ATTRIBUTE_NODE", "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001373 return (-1);
1374 case XML_NAMESPACE_DECL:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001375 xmlC14NErrInvalidNode("XML_NAMESPACE_DECL", "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001376 return (-1);
1377 case XML_ENTITY_REF_NODE:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001378 xmlC14NErrInvalidNode("XML_ENTITY_REF_NODE", "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001379 return (-1);
1380 case XML_ENTITY_NODE:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001381 xmlC14NErrInvalidNode("XML_ENTITY_NODE", "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001382 return (-1);
1383
1384 case XML_DOCUMENT_TYPE_NODE:
1385 case XML_NOTATION_NODE:
1386 case XML_DTD_NODE:
1387 case XML_ELEMENT_DECL:
1388 case XML_ATTRIBUTE_DECL:
1389 case XML_ENTITY_DECL:
Daniel Veillard1840ef02002-03-21 08:05:23 +00001390#ifdef LIBXML_XINCLUDE_ENABLED
Daniel Veillard9ff88172002-03-11 09:15:32 +00001391 case XML_XINCLUDE_START:
1392 case XML_XINCLUDE_END:
Daniel Veillard1840ef02002-03-21 08:05:23 +00001393#endif
Daniel Veillard9ff88172002-03-11 09:15:32 +00001394 /*
1395 * should be ignored according to "W3C Canonical XML"
1396 */
1397 break;
1398 default:
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001399 xmlC14NErrUnknownNode(cur->type, "processing node");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001400 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001401 }
1402
Daniel Veillard9ff88172002-03-11 09:15:32 +00001403 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001404}
1405
1406/**
1407 * xmlC14NProcessNodeList:
1408 * @ctx: the pointer to C14N context object
1409 * @cur: the node to start from
1410 *
1411 * Processes all nodes in the row starting from cur.
1412 *
1413 * Returns non-negative value on success or negative value on fail
1414 */
1415static int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001416xmlC14NProcessNodeList(xmlC14NCtxPtr ctx, xmlNodePtr cur)
1417{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001418 int ret;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001419
1420 if (ctx == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001421 xmlC14NErrParam("processing node list");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001422 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001423 }
1424
Daniel Veillard9ff88172002-03-11 09:15:32 +00001425 for (ret = 0; cur != NULL && ret >= 0; cur = cur->next) {
1426 ret = xmlC14NProcessNode(ctx, cur);
1427 }
1428 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001429}
1430
1431
1432/**
1433 * xmlC14NFreeCtx:
1434 * @ctx: the pointer to C14N context object
1435 *
1436 * Cleanups the C14N context object.
1437 */
1438
1439static void
Daniel Veillard9ff88172002-03-11 09:15:32 +00001440xmlC14NFreeCtx(xmlC14NCtxPtr ctx)
1441{
1442 if (ctx == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001443 xmlC14NErrParam("freeing context");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001444 return;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001445 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001446
1447 if (ctx->ns_rendered != NULL) {
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001448 xmlC14NVisibleNsStackDestroy(ctx->ns_rendered);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001449 }
1450 xmlFree(ctx);
1451}
1452
1453/**
1454 * xmlC14NNewCtx:
1455 * @doc: the XML document for canonization
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001456 * @is_visible_callback:the function to use to determine is node visible
1457 * or not
1458 * @user_data: the first parameter for @is_visible_callback function
1459 * (in most cases, it is nodes set)
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001460 * @inclusive_ns_prefixe the list of inclusive namespace prefixes
1461 * ended with a NULL or NULL if there is no
1462 * inclusive namespaces (only for exclusive
1463 * canonicalization)
1464 * @with_comments: include comments in the result (!=0) or not (==0)
1465 * @buf: the output buffer to store canonical XML; this
1466 * buffer MUST have encoder==NULL because C14N requires
1467 * UTF-8 output
1468 *
1469 * Creates new C14N context object to store C14N parameters.
1470 *
1471 * Returns pointer to newly created object (success) or NULL (fail)
1472 */
1473static xmlC14NCtxPtr
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001474xmlC14NNewCtx(xmlDocPtr doc,
1475 xmlC14NIsVisibleCallback is_visible_callback, void* user_data,
Daniel Veillard9ff88172002-03-11 09:15:32 +00001476 int exclusive, xmlChar ** inclusive_ns_prefixes,
1477 int with_comments, xmlOutputBufferPtr buf)
1478{
Daniel Veillard659e71e2003-10-10 14:10:40 +00001479 xmlC14NCtxPtr ctx = NULL;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001480
Daniel Veillard9ff88172002-03-11 09:15:32 +00001481 if ((doc == NULL) || (buf == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001482 xmlC14NErrParam("creating new context");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001483 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001484 }
1485
1486 /*
1487 * Validate the encoding output buffer encoding
1488 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001489 if (buf->encoder != NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001490 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1491"xmlC14NNewCtx: output buffer encoder != NULL but C14N requires UTF8 output\n");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001492 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001493 }
1494
1495 /*
1496 * Validate the XML document encoding value, if provided.
1497 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001498 if (doc->charset != XML_CHAR_ENCODING_UTF8) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001499 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1500 "xmlC14NNewCtx: source document not in UTF8\n");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001501 return (NULL);
1502 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001503
1504 /*
1505 * Allocate a new xmlC14NCtxPtr and fill the fields.
1506 */
1507 ctx = (xmlC14NCtxPtr) xmlMalloc(sizeof(xmlC14NCtx));
1508 if (ctx == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001509 xmlC14NErrMemory("creating context");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001510 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001511 }
1512 memset(ctx, 0, sizeof(xmlC14NCtx));
1513
1514 /*
1515 * initialize C14N context
Daniel Veillard9ff88172002-03-11 09:15:32 +00001516 */
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001517 ctx->doc = doc;
1518 ctx->with_comments = with_comments;
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001519 ctx->is_visible_callback = is_visible_callback;
1520 ctx->user_data = user_data;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001521 ctx->buf = buf;
1522 ctx->parent_is_doc = 1;
1523 ctx->pos = XMLC14N_BEFORE_DOCUMENT_ELEMENT;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001524 ctx->ns_rendered = xmlC14NVisibleNsStackCreate();
1525
1526 if(ctx->ns_rendered == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001527 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_CREATE_STACK,
1528 "xmlC14NNewCtx: xmlC14NVisibleNsStackCreate failed\n");
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00001529 xmlC14NFreeCtx(ctx);
1530 return (NULL);
1531 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001532
1533 /*
1534 * Set "exclusive" flag, create a nodes set for namespaces
1535 * stack and remember list of incluseve prefixes
1536 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001537 if (exclusive) {
1538 ctx->exclusive = 1;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001539 ctx->inclusive_ns_prefixes = inclusive_ns_prefixes;
1540 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001541 return (ctx);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001542}
1543
1544/**
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001545 * xmlC14NExecute:
1546 * @doc: the XML document for canonization
1547 * @is_visible_callback:the function to use to determine is node visible
1548 * or not
1549 * @user_data: the first parameter for @is_visible_callback function
1550 * (in most cases, it is nodes set)
1551 * @exclusive: the exclusive flag (0 - non-exclusive canonicalization;
1552 * otherwise - exclusive canonicalization)
1553 * @inclusive_ns_prefixes: the list of inclusive namespace prefixes
1554 * ended with a NULL or NULL if there is no
1555 * inclusive namespaces (only for exclusive
1556 * canonicalization, ignored otherwise)
1557 * @with_comments: include comments in the result (!=0) or not (==0)
1558 * @buf: the output buffer to store canonical XML; this
1559 * buffer MUST have encoder==NULL because C14N requires
1560 * UTF-8 output
1561 *
1562 * Dumps the canonized image of given XML document into the provided buffer.
1563 * For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or
1564 * "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)
1565 *
1566 * Returns non-negative value on success or a negative value on fail
1567 */
1568int
1569xmlC14NExecute(xmlDocPtr doc, xmlC14NIsVisibleCallback is_visible_callback,
1570 void* user_data, int exclusive, xmlChar **inclusive_ns_prefixes,
1571 int with_comments, xmlOutputBufferPtr buf) {
1572
1573 xmlC14NCtxPtr ctx;
1574 int ret;
1575
1576 if ((buf == NULL) || (doc == NULL)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001577 xmlC14NErrParam("executing c14n");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001578 return (-1);
1579 }
1580
1581 /*
1582 * Validate the encoding output buffer encoding
1583 */
1584 if (buf->encoder != NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001585 xmlC14NErr(NULL, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1586"xmlC14NExecute: output buffer encoder != NULL but C14N requires UTF8 output\n");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001587 return (-1);
1588 }
1589
1590 ctx = xmlC14NNewCtx(doc, is_visible_callback, user_data,
1591 exclusive, inclusive_ns_prefixes,
1592 with_comments, buf);
1593 if (ctx == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001594 xmlC14NErr(NULL, (xmlNodePtr) doc, XML_C14N_CREATE_CTXT,
1595 "xmlC14NExecute: unable to create C14N context\n");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001596 return (-1);
1597 }
1598
1599
1600
1601 /*
1602 * Root Node
1603 * The root node is the parent of the top-level document element. The
1604 * result of processing each of its child nodes that is in the node-set
1605 * in document order. The root node does not generate a byte order mark,
1606 * XML declaration, nor anything from within the document type
1607 * declaration.
1608 */
1609 if (doc->children != NULL) {
1610 ret = xmlC14NProcessNodeList(ctx, doc->children);
1611 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001612 xmlC14NErrInternal("processing docs children list");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001613 xmlC14NFreeCtx(ctx);
1614 return (-1);
1615 }
1616 }
1617
1618 /*
1619 * Flush buffer to get number of bytes written
1620 */
1621 ret = xmlOutputBufferFlush(buf);
1622 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001623 xmlC14NErrInternal("flushing output buffer");
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001624 xmlC14NFreeCtx(ctx);
1625 return (-1);
1626 }
1627
1628 /*
1629 * Cleanup
1630 */
1631 xmlC14NFreeCtx(ctx);
1632 return (ret);
1633}
1634
1635/**
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001636 * xmlC14NDocSaveTo:
1637 * @doc: the XML document for canonization
1638 * @nodes: the nodes set to be included in the canonized image
1639 * or NULL if all document nodes should be included
1640 * @exclusive: the exclusive flag (0 - non-exclusive canonicalization;
1641 * otherwise - exclusive canonicalization)
Daniel Veillarddb1bdba2002-03-09 14:13:11 +00001642 * @inclusive_ns_prefixes: the list of inclusive namespace prefixes
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001643 * ended with a NULL or NULL if there is no
1644 * inclusive namespaces (only for exclusive
1645 * canonicalization, ignored otherwise)
1646 * @with_comments: include comments in the result (!=0) or not (==0)
1647 * @buf: the output buffer to store canonical XML; this
1648 * buffer MUST have encoder==NULL because C14N requires
1649 * UTF-8 output
1650 *
1651 * Dumps the canonized image of given XML document into the provided buffer.
1652 * For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or
1653 * "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)
1654 *
1655 * Returns non-negative value on success or a negative value on fail
1656 */
1657int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001658xmlC14NDocSaveTo(xmlDocPtr doc, xmlNodeSetPtr nodes,
1659 int exclusive, xmlChar ** inclusive_ns_prefixes,
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001660 int with_comments, xmlOutputBufferPtr buf) {
1661 return(xmlC14NExecute(doc,
1662 (xmlC14NIsVisibleCallback)xmlC14NIsNodeInNodeset,
1663 nodes,
1664 exclusive,
1665 inclusive_ns_prefixes,
1666 with_comments,
1667 buf));
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001668}
1669
Aleksey Sanin2c135a12002-08-01 06:31:50 +00001670
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001671/**
1672 * xmlC14NDocDumpMemory:
1673 * @doc: the XML document for canonization
1674 * @nodes: the nodes set to be included in the canonized image
1675 * or NULL if all document nodes should be included
1676 * @exclusive: the exclusive flag (0 - non-exclusive canonicalization;
1677 * otherwise - exclusive canonicalization)
Daniel Veillarddb1bdba2002-03-09 14:13:11 +00001678 * @inclusive_ns_prefixes: the list of inclusive namespace prefixes
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001679 * ended with a NULL or NULL if there is no
1680 * inclusive namespaces (only for exclusive
1681 * canonicalization, ignored otherwise)
1682 * @with_comments: include comments in the result (!=0) or not (==0)
1683 * @doc_txt_ptr: the memory pointer for allocated canonical XML text;
1684 * the caller of this functions is responsible for calling
1685 * xmlFree() to free allocated memory
1686 *
1687 * Dumps the canonized image of given XML document into memory.
1688 * For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or
1689 * "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)
1690 *
1691 * Returns the number of bytes written on success or a negative value on fail
1692 */
1693int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001694xmlC14NDocDumpMemory(xmlDocPtr doc, xmlNodeSetPtr nodes,
1695 int exclusive, xmlChar ** inclusive_ns_prefixes,
1696 int with_comments, xmlChar ** doc_txt_ptr)
1697{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001698 int ret;
1699 xmlOutputBufferPtr buf;
1700
1701 if (doc_txt_ptr == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001702 xmlC14NErrParam("dumping doc to memory");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001703 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001704 }
1705
1706 *doc_txt_ptr = NULL;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001707
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001708 /*
1709 * create memory buffer with UTF8 (default) encoding
1710 */
1711 buf = xmlAllocOutputBuffer(NULL);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001712 if (buf == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001713 xmlC14NErrMemory("creating output buffer");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001714 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001715 }
1716
1717 /*
1718 * canonize document and write to buffer
1719 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001720 ret = xmlC14NDocSaveTo(doc, nodes, exclusive, inclusive_ns_prefixes,
1721 with_comments, buf);
1722 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001723 xmlC14NErrInternal("saving doc to output buffer");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001724 (void) xmlOutputBufferClose(buf);
1725 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001726 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001727
Daniel Veillard9ff88172002-03-11 09:15:32 +00001728 ret = buf->buffer->use;
1729 if (ret > 0) {
1730 *doc_txt_ptr = xmlStrndup(buf->buffer->content, ret);
1731 }
1732 (void) xmlOutputBufferClose(buf);
1733
1734 if ((*doc_txt_ptr == NULL) && (ret > 0)) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001735 xmlC14NErrMemory("coping canonicanized document");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001736 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001737 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001738 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001739}
1740
1741/**
1742 * xmlC14NDocSave:
1743 * @doc: the XML document for canonization
1744 * @nodes: the nodes set to be included in the canonized image
1745 * or NULL if all document nodes should be included
1746 * @exclusive: the exclusive flag (0 - non-exclusive canonicalization;
1747 * otherwise - exclusive canonicalization)
Daniel Veillarddb1bdba2002-03-09 14:13:11 +00001748 * @inclusive_ns_prefixes: the list of inclusive namespace prefixes
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001749 * ended with a NULL or NULL if there is no
1750 * inclusive namespaces (only for exclusive
1751 * canonicalization, ignored otherwise)
1752 * @with_comments: include comments in the result (!=0) or not (==0)
1753 * @filename: the filename to store canonical XML image
1754 * @compression: the compression level (zlib requred):
1755 * -1 - libxml default,
1756 * 0 - uncompressed,
1757 * >0 - compression level
1758 *
1759 * Dumps the canonized image of given XML document into the file.
1760 * For details see "Canonical XML" (http://www.w3.org/TR/xml-c14n) or
1761 * "Exclusive XML Canonicalization" (http://www.w3.org/TR/xml-exc-c14n)
1762 *
1763 * Returns the number of bytes written success or a negative value on fail
1764 */
1765int
Daniel Veillard9ff88172002-03-11 09:15:32 +00001766xmlC14NDocSave(xmlDocPtr doc, xmlNodeSetPtr nodes,
1767 int exclusive, xmlChar ** inclusive_ns_prefixes,
1768 int with_comments, const char *filename, int compression)
1769{
1770 xmlOutputBufferPtr buf;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001771 int ret;
1772
Daniel Veillard9ff88172002-03-11 09:15:32 +00001773 if (filename == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001774 xmlC14NErrParam("saving doc");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001775 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001776 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001777#ifdef HAVE_ZLIB_H
Daniel Veillard9ff88172002-03-11 09:15:32 +00001778 if (compression < 0)
1779 compression = xmlGetCompressMode();
1780#endif
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001781
1782 /*
1783 * save the content to a temp buffer, use default UTF8 encoding.
1784 */
1785 buf = xmlOutputBufferCreateFilename(filename, NULL, compression);
1786 if (buf == NULL) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001787 xmlC14NErrInternal("creating temporary filename");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001788 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001789 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001790
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001791 /*
1792 * canonize document and write to buffer
1793 */
Daniel Veillard9ff88172002-03-11 09:15:32 +00001794 ret = xmlC14NDocSaveTo(doc, nodes, exclusive, inclusive_ns_prefixes,
1795 with_comments, buf);
1796 if (ret < 0) {
Aleksey Sanin9e75e9f2005-03-20 19:16:47 +00001797 xmlC14NErrInternal("cannicanize document to buffer");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001798 (void) xmlOutputBufferClose(buf);
1799 return (-1);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001800 }
Daniel Veillard9ff88172002-03-11 09:15:32 +00001801
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001802 /*
1803 * get the numbers of bytes written
1804 */
1805 ret = xmlOutputBufferClose(buf);
Daniel Veillard9ff88172002-03-11 09:15:32 +00001806 return (ret);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001807}
1808
1809
1810
1811/*
1812 * Macro used to grow the current buffer.
1813 */
1814#define growBufferReentrant() { \
1815 buffer_size *= 2; \
1816 buffer = (xmlChar *) \
1817 xmlRealloc(buffer, buffer_size * sizeof(xmlChar)); \
1818 if (buffer == NULL) { \
Daniel Veillardd96cce12003-10-10 12:30:37 +00001819 xmlC14NErrMemory("growing buffer"); \
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001820 return(NULL); \
1821 } \
1822}
1823
1824/**
1825 * xmlC11NNormalizeString:
1826 * @input: the input string
1827 * @mode: the normalization mode (attribute, comment, PI or text)
1828 *
1829 * Converts a string to a canonical (normalized) format. The code is stolen
1830 * from xmlEncodeEntitiesReentrant(). Added normalization of \x09, \x0a, \x0A
1831 * and the @mode parameter
1832 *
1833 * Returns a normalized string (caller is responsible for calling xmlFree())
1834 * or NULL if an error occurs
1835 */
1836static xmlChar *
Daniel Veillard9ff88172002-03-11 09:15:32 +00001837xmlC11NNormalizeString(const xmlChar * input,
1838 xmlC14NNormalizationMode mode)
1839{
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001840 const xmlChar *cur = input;
1841 xmlChar *buffer = NULL;
1842 xmlChar *out = NULL;
1843 int buffer_size = 0;
1844
Daniel Veillard9ff88172002-03-11 09:15:32 +00001845 if (input == NULL)
1846 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001847
1848 /*
1849 * allocate an translation buffer.
1850 */
1851 buffer_size = 1000;
Daniel Veillard3c908dc2003-04-19 00:07:51 +00001852 buffer = (xmlChar *) xmlMallocAtomic(buffer_size * sizeof(xmlChar));
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001853 if (buffer == NULL) {
Daniel Veillardd96cce12003-10-10 12:30:37 +00001854 xmlC14NErrMemory("allocating buffer");
Daniel Veillard9ff88172002-03-11 09:15:32 +00001855 return (NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001856 }
1857 out = buffer;
1858
1859 while (*cur != '\0') {
Daniel Veillard9ff88172002-03-11 09:15:32 +00001860 if ((out - buffer) > (buffer_size - 10)) {
1861 int indx = out - buffer;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001862
Daniel Veillard9ff88172002-03-11 09:15:32 +00001863 growBufferReentrant();
1864 out = &buffer[indx];
1865 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001866
Daniel Veillard9ff88172002-03-11 09:15:32 +00001867 if ((*cur == '<') && ((mode == XMLC14N_NORMALIZE_ATTR) ||
1868 (mode == XMLC14N_NORMALIZE_TEXT))) {
1869 *out++ = '&';
1870 *out++ = 'l';
1871 *out++ = 't';
1872 *out++ = ';';
1873 } else if ((*cur == '>') && (mode == XMLC14N_NORMALIZE_TEXT)) {
1874 *out++ = '&';
1875 *out++ = 'g';
1876 *out++ = 't';
1877 *out++ = ';';
1878 } else if ((*cur == '&') && ((mode == XMLC14N_NORMALIZE_ATTR) ||
1879 (mode == XMLC14N_NORMALIZE_TEXT))) {
1880 *out++ = '&';
1881 *out++ = 'a';
1882 *out++ = 'm';
1883 *out++ = 'p';
1884 *out++ = ';';
1885 } else if ((*cur == '"') && (mode == XMLC14N_NORMALIZE_ATTR)) {
1886 *out++ = '&';
1887 *out++ = 'q';
1888 *out++ = 'u';
1889 *out++ = 'o';
1890 *out++ = 't';
1891 *out++ = ';';
1892 } else if ((*cur == '\x09') && (mode == XMLC14N_NORMALIZE_ATTR)) {
1893 *out++ = '&';
1894 *out++ = '#';
1895 *out++ = 'x';
1896 *out++ = '9';
1897 *out++ = ';';
1898 } else if ((*cur == '\x0A') && (mode == XMLC14N_NORMALIZE_ATTR)) {
1899 *out++ = '&';
1900 *out++ = '#';
1901 *out++ = 'x';
1902 *out++ = 'A';
1903 *out++ = ';';
1904 } else if ((*cur == '\x0D') && ((mode == XMLC14N_NORMALIZE_ATTR) ||
1905 (mode == XMLC14N_NORMALIZE_TEXT) ||
1906 (mode == XMLC14N_NORMALIZE_COMMENT) ||
1907 (mode == XMLC14N_NORMALIZE_PI))) {
1908 *out++ = '&';
1909 *out++ = '#';
1910 *out++ = 'x';
1911 *out++ = 'D';
1912 *out++ = ';';
1913 } else {
1914 /*
1915 * Works because on UTF-8, all extended sequences cannot
1916 * result in bytes in the ASCII range.
1917 */
1918 *out++ = *cur;
1919 }
1920 cur++;
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001921 }
1922 *out++ = 0;
Daniel Veillard9ff88172002-03-11 09:15:32 +00001923 return (buffer);
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001924}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001925#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillard5d4644e2005-04-01 13:11:58 +00001926#define bottom_c14n
1927#include "elfgcchack.h"
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001928#endif /* LIBXML_C14N_ENABLED */