blob: ba70127eb429825555aaf0d85ce983518c9a5113 [file] [log] [blame]
Daniel Veillard044fc6b2002-03-04 17:09:44 +00001/*
2 * Canonical XML implementation test program
3 * (http://www.w3.org/TR/2001/REC-xml-c14n-20010315)
4 *
5 * See Copyright for the status of this software.
6 *
7 * Author: Aleksey Sanin <aleksey@aleksey.com>
8 */
9#include "libxml.h"
Daniel Veillarda9cce9c2003-09-29 13:20:24 +000010#if defined(LIBXML_C14N_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
Daniel Veillard044fc6b2002-03-04 17:09:44 +000011
12#include <stdio.h>
13#include <string.h>
14#ifdef HAVE_UNISTD_H
15#include <unistd.h>
16#endif
17#ifdef HAVE_STDLIB_H
18#include <stdlib.h>
19#endif
20
21#include <libxml/xmlmemory.h>
22#include <libxml/parser.h>
23#include <libxml/xpath.h>
24#include <libxml/xpathInternals.h>
25
26#include <libxml/c14n.h>
27
28
29static void usage(const char *name) {
30 fprintf(stderr,
31 "Usage: %s <mode> <xml-file> [<xpath-expr>] [<inclusive-ns-list>]\n",
32 name);
33 fprintf(stderr, "where <mode> is one of following:\n");
34 fprintf(stderr,
Aleksey Sanin83868242009-07-09 10:26:22 +020035 "--with-comments \t XML file canonicalization v1.0 w comments \n");
Daniel Veillard044fc6b2002-03-04 17:09:44 +000036 fprintf(stderr,
Aleksey Sanin83868242009-07-09 10:26:22 +020037 "--without-comments \t XML file canonicalization v1.0 w/o comments\n");
Daniel Veillard044fc6b2002-03-04 17:09:44 +000038 fprintf(stderr,
Aleksey Sanin83868242009-07-09 10:26:22 +020039 "--1-1-with-comments \t XML file canonicalization v1.1 w comments\n");
Daniel Veillard044fc6b2002-03-04 17:09:44 +000040 fprintf(stderr,
Aleksey Sanin83868242009-07-09 10:26:22 +020041 "--1-1-without-comments \t XML file canonicalization v1.1 w/o comments\n");
42 fprintf(stderr,
43 "--exc-with-comments \t Exclusive XML file canonicalization v1.0 w comments\n");
44 fprintf(stderr,
45 "--exc-without-comments\t Exclusive XML file canonicalization v1.0 w/o comments\n");
Daniel Veillard044fc6b2002-03-04 17:09:44 +000046}
47
Daniel Veillardfe8aab92002-12-22 10:25:41 +000048static xmlXPathObjectPtr
Daniel Veillard044fc6b2002-03-04 17:09:44 +000049load_xpath_expr (xmlDocPtr parent_doc, const char* filename);
50
Daniel Veillardfe8aab92002-12-22 10:25:41 +000051static xmlChar **parse_list(xmlChar *str);
Daniel Veillard044fc6b2002-03-04 17:09:44 +000052
William M. Brackc1939562003-08-05 15:52:22 +000053/* static void print_xpath_nodes(xmlNodeSetPtr nodes); */
Daniel Veillard044fc6b2002-03-04 17:09:44 +000054
55static int
Aleksey Sanin83868242009-07-09 10:26:22 +020056test_c14n(const char* xml_filename, int with_comments, int mode,
Daniel Veillard044fc6b2002-03-04 17:09:44 +000057 const char* xpath_filename, xmlChar **inclusive_namespaces) {
58 xmlDocPtr doc;
59 xmlXPathObjectPtr xpath = NULL;
60 xmlChar *result = NULL;
61 int ret;
62
63 /*
64 * build an XML tree from a the file; we need to add default
65 * attributes and resolve all character and entities references
66 */
67 xmlLoadExtDtdDefaultValue = XML_DETECT_IDS | XML_COMPLETE_ATTRS;
68 xmlSubstituteEntitiesDefault(1);
69
Daniel Veillardbca3ad22005-08-23 22:14:02 +000070 doc = xmlReadFile(xml_filename, NULL, XML_PARSE_DTDATTR | XML_PARSE_NOENT);
Daniel Veillard044fc6b2002-03-04 17:09:44 +000071 if (doc == NULL) {
72 fprintf(stderr, "Error: unable to parse file \"%s\"\n", xml_filename);
73 return(-1);
74 }
75
76 /*
77 * Check the document is of the right kind
78 */
79 if(xmlDocGetRootElement(doc) == NULL) {
80 fprintf(stderr,"Error: empty document for file \"%s\"\n", xml_filename);
81 xmlFreeDoc(doc);
82 return(-1);
83 }
84
85 /*
86 * load xpath file if specified
87 */
88 if(xpath_filename) {
89 xpath = load_xpath_expr(doc, xpath_filename);
90 if(xpath == NULL) {
91 fprintf(stderr,"Error: unable to evaluate xpath expression\n");
92 xmlFreeDoc(doc);
93 return(-1);
94 }
95 }
96
97 /*
98 * Canonical form
99 */
100 /* fprintf(stderr,"File \"%s\" loaded: start canonization\n", xml_filename); */
101 ret = xmlC14NDocDumpMemory(doc,
102 (xpath) ? xpath->nodesetval : NULL,
Aleksey Sanin83868242009-07-09 10:26:22 +0200103 mode, inclusive_namespaces,
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000104 with_comments, &result);
105 if(ret >= 0) {
106 if(result != NULL) {
107 write(1, result, ret);
108 xmlFree(result);
109 }
110 } else {
111 fprintf(stderr,"Error: failed to canonicalize XML file \"%s\" (ret=%d)\n", xml_filename, ret);
112 if(result != NULL) xmlFree(result);
113 xmlFreeDoc(doc);
114 return(-1);
115 }
116
117 /*
118 * Cleanup
119 */
120 if(xpath != NULL) xmlXPathFreeObject(xpath);
121 xmlFreeDoc(doc);
122
123 return(ret);
124}
125
126int main(int argc, char **argv) {
127 int ret = -1;
128
129 /*
130 * Init libxml
131 */
132 xmlInitParser();
133 LIBXML_TEST_VERSION
134
135 /*
136 * Parse command line and process file
137 */
138 if( argc < 3 ) {
139 fprintf(stderr, "Error: wrong number of arguments.\n");
140 usage(argv[0]);
141 } else if(strcmp(argv[1], "--with-comments") == 0) {
Aleksey Sanin83868242009-07-09 10:26:22 +0200142 ret = test_c14n(argv[2], 1, XML_C14N_1_0, (argc > 3) ? argv[3] : NULL, NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000143 } else if(strcmp(argv[1], "--without-comments") == 0) {
Aleksey Sanin83868242009-07-09 10:26:22 +0200144 ret = test_c14n(argv[2], 0, XML_C14N_1_0, (argc > 3) ? argv[3] : NULL, NULL);
145 } else if(strcmp(argv[1], "--1-1-with-comments") == 0) {
146 ret = test_c14n(argv[2], 1, XML_C14N_1_1, (argc > 3) ? argv[3] : NULL, NULL);
147 } else if(strcmp(argv[1], "--1-1-without-comments") == 0) {
148 ret = test_c14n(argv[2], 0, XML_C14N_1_1, (argc > 3) ? argv[3] : NULL, NULL);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000149 } else if(strcmp(argv[1], "--exc-with-comments") == 0) {
150 xmlChar **list;
151
152 /* load exclusive namespace from command line */
153 list = (argc > 4) ? parse_list((xmlChar *)argv[4]) : NULL;
Aleksey Sanin83868242009-07-09 10:26:22 +0200154 ret = test_c14n(argv[2], 1, XML_C14N_EXCLUSIVE_1_0, (argc > 3) ? argv[3] : NULL, list);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000155 if(list != NULL) xmlFree(list);
156 } else if(strcmp(argv[1], "--exc-without-comments") == 0) {
157 xmlChar **list;
158
159 /* load exclusive namespace from command line */
160 list = (argc > 4) ? parse_list((xmlChar *)argv[4]) : NULL;
Aleksey Sanin83868242009-07-09 10:26:22 +0200161 ret = test_c14n(argv[2], 0, XML_C14N_EXCLUSIVE_1_0, (argc > 3) ? argv[3] : NULL, list);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000162 if(list != NULL) xmlFree(list);
163 } else {
164 fprintf(stderr, "Error: bad option.\n");
165 usage(argv[0]);
166 }
167
168 /*
169 * Shutdown libxml
170 */
171 xmlCleanupParser();
172 xmlMemoryDump();
173
174 return((ret >= 0) ? 0 : 1);
175}
176
177/*
178 * Macro used to grow the current buffer.
179 */
180#define growBufferReentrant() { \
181 buffer_size *= 2; \
182 buffer = (xmlChar **) \
183 xmlRealloc(buffer, buffer_size * sizeof(xmlChar*)); \
184 if (buffer == NULL) { \
185 perror("realloc failed"); \
186 return(NULL); \
187 } \
188}
189
Daniel Veillard01c13b52002-12-10 15:19:08 +0000190static xmlChar **
191parse_list(xmlChar *str) {
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000192 xmlChar **buffer;
193 xmlChar **out = NULL;
194 int buffer_size = 0;
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000195 int len;
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000196
197 if(str == NULL) {
198 return(NULL);
199 }
200
Daniel Veillard118aed72002-09-24 14:13:13 +0000201 len = xmlStrlen(str);
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000202 if((str[0] == '\'') && (str[len - 1] == '\'')) {
203 str[len - 1] = '\0';
204 str++;
205 len -= 2;
206 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000207 /*
208 * allocate an translation buffer.
209 */
210 buffer_size = 1000;
211 buffer = (xmlChar **) xmlMalloc(buffer_size * sizeof(xmlChar*));
212 if (buffer == NULL) {
213 perror("malloc failed");
214 return(NULL);
215 }
216 out = buffer;
217
218 while(*str != '\0') {
219 if (out - buffer > buffer_size - 10) {
220 int indx = out - buffer;
221
222 growBufferReentrant();
223 out = &buffer[indx];
224 }
225 (*out++) = str;
226 while(*str != ',' && *str != '\0') ++str;
227 if(*str == ',') *(str++) = '\0';
228 }
229 (*out) = NULL;
230 return buffer;
231}
232
Daniel Veillard01c13b52002-12-10 15:19:08 +0000233static xmlXPathObjectPtr
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000234load_xpath_expr (xmlDocPtr parent_doc, const char* filename) {
235 xmlXPathObjectPtr xpath;
236 xmlDocPtr doc;
237 xmlChar *expr;
238 xmlXPathContextPtr ctx;
239 xmlNodePtr node;
240 xmlNsPtr ns;
241
242 /*
243 * load XPath expr as a file
244 */
245 xmlLoadExtDtdDefaultValue = XML_DETECT_IDS | XML_COMPLETE_ATTRS;
246 xmlSubstituteEntitiesDefault(1);
247
Daniel Veillardbca3ad22005-08-23 22:14:02 +0000248 doc = xmlReadFile(filename, NULL, XML_PARSE_DTDATTR | XML_PARSE_NOENT);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000249 if (doc == NULL) {
250 fprintf(stderr, "Error: unable to parse file \"%s\"\n", filename);
251 return(NULL);
252 }
253
254 /*
255 * Check the document is of the right kind
256 */
257 if(xmlDocGetRootElement(doc) == NULL) {
258 fprintf(stderr,"Error: empty document for file \"%s\"\n", filename);
259 xmlFreeDoc(doc);
260 return(NULL);
261 }
262
263 node = doc->children;
264 while(node != NULL && !xmlStrEqual(node->name, (const xmlChar *)"XPath")) {
265 node = node->next;
266 }
267
268 if(node == NULL) {
269 fprintf(stderr,"Error: XPath element expected in the file \"%s\"\n", filename);
270 xmlFreeDoc(doc);
271 return(NULL);
272 }
273
274 expr = xmlNodeGetContent(node);
275 if(expr == NULL) {
276 fprintf(stderr,"Error: XPath content element is NULL \"%s\"\n", filename);
277 xmlFreeDoc(doc);
278 return(NULL);
279 }
280
281 ctx = xmlXPathNewContext(parent_doc);
282 if(ctx == NULL) {
283 fprintf(stderr,"Error: unable to create new context\n");
284 xmlFree(expr);
285 xmlFreeDoc(doc);
286 return(NULL);
287 }
288
289 /*
290 * Register namespaces
291 */
292 ns = node->nsDef;
293 while(ns != NULL) {
294 if(xmlXPathRegisterNs(ctx, ns->prefix, ns->href) != 0) {
295 fprintf(stderr,"Error: unable to register NS with prefix=\"%s\" and href=\"%s\"\n", ns->prefix, ns->href);
296 xmlFree(expr);
297 xmlXPathFreeContext(ctx);
298 xmlFreeDoc(doc);
299 return(NULL);
300 }
301 ns = ns->next;
302 }
303
304 /*
305 * Evaluate xpath
306 */
307 xpath = xmlXPathEvalExpression(expr, ctx);
308 if(xpath == NULL) {
309 fprintf(stderr,"Error: unable to evaluate xpath expression\n");
310 xmlFree(expr);
311 xmlXPathFreeContext(ctx);
312 xmlFreeDoc(doc);
313 return(NULL);
314 }
315
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000316 /* print_xpath_nodes(xpath->nodesetval); */
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000317
318 xmlFree(expr);
319 xmlXPathFreeContext(ctx);
320 xmlFreeDoc(doc);
321 return(xpath);
322}
323
William M. Brackc1939562003-08-05 15:52:22 +0000324/*
Daniel Veillard01c13b52002-12-10 15:19:08 +0000325static void
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000326print_xpath_nodes(xmlNodeSetPtr nodes) {
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000327 xmlNodePtr cur;
328 int i;
329
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000330 if(nodes == NULL ){
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000331 fprintf(stderr, "Error: no nodes set defined\n");
332 return;
333 }
334
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000335 fprintf(stderr, "Nodes Set:\n-----\n");
336 for(i = 0; i < nodes->nodeNr; ++i) {
337 if(nodes->nodeTab[i]->type == XML_NAMESPACE_DECL) {
338 xmlNsPtr ns;
339
340 ns = (xmlNsPtr)nodes->nodeTab[i];
341 cur = (xmlNodePtr)ns->next;
342 fprintf(stderr, "namespace \"%s\"=\"%s\" for node %s:%s\n",
343 ns->prefix, ns->href,
344 (cur->ns) ? cur->ns->prefix : BAD_CAST "", cur->name);
345 } else if(nodes->nodeTab[i]->type == XML_ELEMENT_NODE) {
346 cur = nodes->nodeTab[i];
347 fprintf(stderr, "element node \"%s:%s\"\n",
348 (cur->ns) ? cur->ns->prefix : BAD_CAST "", cur->name);
349 } else {
350 cur = nodes->nodeTab[i];
351 fprintf(stderr, "node \"%s\": type %d\n", cur->name, cur->type);
352 }
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000353 }
354}
William M. Brackc1939562003-08-05 15:52:22 +0000355*/
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +0000356
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000357#else
358#include <stdio.h>
Daniel Veillarda9cce9c2003-09-29 13:20:24 +0000359int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
360 printf("%s : XPath/Canonicalization and output support not compiled in\n", argv[0]);
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000361 return(0);
362}
363#endif /* LIBXML_C14N_ENABLED */
364
365