blob: aee6f40f4324863da0a7f0719761295b00c47a61 [file] [log] [blame]
Owen Taylor3473f882001-02-23 17:55:21 +00001/*
2 * valid.c : part of the code use to do the DTD handling and the validity
3 * checking
4 *
5 * See Copyright for the status of this software.
6 *
Daniel Veillardc5d64342001-06-24 12:13:24 +00007 * daniel@veillard.com
Owen Taylor3473f882001-02-23 17:55:21 +00008 */
9
Daniel Veillard34ce8be2002-03-18 19:37:11 +000010#define IN_LIBXML
Bjorn Reese70a9da52001-04-21 16:57:29 +000011#include "libxml.h"
Owen Taylor3473f882001-02-23 17:55:21 +000012
Owen Taylor3473f882001-02-23 17:55:21 +000013#include <string.h>
14
15#ifdef HAVE_STDLIB_H
16#include <stdlib.h>
17#endif
18
19#include <libxml/xmlmemory.h>
20#include <libxml/hash.h>
Daniel Veillard29b17482004-08-16 00:39:03 +000021#include <libxml/uri.h>
Owen Taylor3473f882001-02-23 17:55:21 +000022#include <libxml/valid.h>
23#include <libxml/parser.h>
24#include <libxml/parserInternals.h>
25#include <libxml/xmlerror.h>
26#include <libxml/list.h>
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000027#include <libxml/globals.h>
Owen Taylor3473f882001-02-23 17:55:21 +000028
Daniel Veillard4432df22003-09-28 18:58:27 +000029static xmlElementPtr xmlGetDtdElementDesc2(xmlDtdPtr dtd, const xmlChar *name,
30 int create);
Daniel Veillarde62d36c2001-05-15 08:53:16 +000031/* #define DEBUG_VALID_ALGO */
Daniel Veillard5acfd6b2002-09-18 16:29:02 +000032/* #define DEBUG_REGEXP_ALGO */
Daniel Veillarde62d36c2001-05-15 08:53:16 +000033
Daniel Veillardf8e3db02012-09-11 13:26:36 +080034#define TODO \
Daniel Veillarda646cfd2002-09-17 21:50:03 +000035 xmlGenericError(xmlGenericErrorContext, \
36 "Unimplemented block at %s:%d\n", \
37 __FILE__, __LINE__);
Owen Taylor3473f882001-02-23 17:55:21 +000038
Daniel Veillardae0765b2008-07-31 19:54:59 +000039#ifdef LIBXML_VALID_ENABLED
40static int
41xmlValidateAttributeValueInternal(xmlDocPtr doc, xmlAttributeType type,
42 const xmlChar *value);
43#endif
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000044/************************************************************************
45 * *
46 * Error handling routines *
47 * *
48 ************************************************************************/
49
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000050/**
Daniel Veillardce9457f2003-10-05 21:33:18 +000051 * xmlVErrMemory:
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000052 * @ctxt: an XML validation parser context
53 * @extra: extra informations
54 *
55 * Handle an out of memory error
56 */
57static void
Daniel Veillardce9457f2003-10-05 21:33:18 +000058xmlVErrMemory(xmlValidCtxtPtr ctxt, const char *extra)
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000059{
Daniel Veillardbb5abab2003-10-03 22:21:51 +000060 xmlGenericErrorFunc channel = NULL;
61 xmlParserCtxtPtr pctxt = NULL;
62 void *data = NULL;
63
64 if (ctxt != NULL) {
65 channel = ctxt->error;
66 data = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +000067 /* Use the special values to detect if it is part of a parsing
68 context */
69 if ((ctxt->finishDtd == XML_CTXT_FINISH_DTD_0) ||
70 (ctxt->finishDtd == XML_CTXT_FINISH_DTD_1)) {
Daniel Veillardb2dc5672006-08-22 14:45:40 +000071 long delta = (char *) ctxt - (char *) ctxt->userData;
72 if ((delta > 0) && (delta < 250))
73 pctxt = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +000074 }
Daniel Veillardbb5abab2003-10-03 22:21:51 +000075 }
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000076 if (extra)
Daniel Veillard73000572003-10-11 11:26:42 +000077 __xmlRaiseError(NULL, channel, data,
Daniel Veillard72b9e292003-10-28 15:44:17 +000078 pctxt, NULL, XML_FROM_VALID, XML_ERR_NO_MEMORY,
Daniel Veillardbb5abab2003-10-03 22:21:51 +000079 XML_ERR_FATAL, NULL, 0, extra, NULL, NULL, 0, 0,
80 "Memory allocation failed : %s\n", extra);
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000081 else
Daniel Veillard73000572003-10-11 11:26:42 +000082 __xmlRaiseError(NULL, channel, data,
Daniel Veillard72b9e292003-10-28 15:44:17 +000083 pctxt, NULL, XML_FROM_VALID, XML_ERR_NO_MEMORY,
Daniel Veillardbb5abab2003-10-03 22:21:51 +000084 XML_ERR_FATAL, NULL, 0, NULL, NULL, NULL, 0, 0,
85 "Memory allocation failed\n");
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000086}
87
88/**
89 * xmlErrValid:
90 * @ctxt: an XML validation parser context
Daniel Veillardbb5abab2003-10-03 22:21:51 +000091 * @error: the error number
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000092 * @extra: extra informations
93 *
94 * Handle a validation error
95 */
Xin Li28c53d32017-03-07 00:33:02 +000096static void LIBXML_ATTR_FORMAT(3,0)
Daniel Veillardf88d8cf2003-12-08 10:25:02 +000097xmlErrValid(xmlValidCtxtPtr ctxt, xmlParserErrors error,
Daniel Veillardbb5abab2003-10-03 22:21:51 +000098 const char *msg, const char *extra)
Daniel Veillard2b8c4a12003-10-02 22:28:19 +000099{
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000100 xmlGenericErrorFunc channel = NULL;
101 xmlParserCtxtPtr pctxt = NULL;
102 void *data = NULL;
103
104 if (ctxt != NULL) {
105 channel = ctxt->error;
106 data = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +0000107 /* Use the special values to detect if it is part of a parsing
108 context */
109 if ((ctxt->finishDtd == XML_CTXT_FINISH_DTD_0) ||
110 (ctxt->finishDtd == XML_CTXT_FINISH_DTD_1)) {
Daniel Veillardb2dc5672006-08-22 14:45:40 +0000111 long delta = (char *) ctxt - (char *) ctxt->userData;
112 if ((delta > 0) && (delta < 250))
113 pctxt = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +0000114 }
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000115 }
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000116 if (extra)
Daniel Veillard73000572003-10-11 11:26:42 +0000117 __xmlRaiseError(NULL, channel, data,
Daniel Veillard72b9e292003-10-28 15:44:17 +0000118 pctxt, NULL, XML_FROM_VALID, error,
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000119 XML_ERR_ERROR, NULL, 0, extra, NULL, NULL, 0, 0,
120 msg, extra);
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000121 else
Daniel Veillard73000572003-10-11 11:26:42 +0000122 __xmlRaiseError(NULL, channel, data,
Daniel Veillard72b9e292003-10-28 15:44:17 +0000123 pctxt, NULL, XML_FROM_VALID, error,
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000124 XML_ERR_ERROR, NULL, 0, NULL, NULL, NULL, 0, 0,
Daniel Veillardbccae2d2009-06-04 11:22:45 +0200125 "%s", msg);
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000126}
127
Daniel Veillardf54cd532004-02-25 11:52:31 +0000128#if defined(LIBXML_VALID_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
129/**
130 * xmlErrValidNode:
131 * @ctxt: an XML validation parser context
132 * @node: the node raising the error
133 * @error: the error number
134 * @str1: extra informations
135 * @str2: extra informations
136 * @str3: extra informations
137 *
138 * Handle a validation error, provide contextual informations
139 */
Xin Li28c53d32017-03-07 00:33:02 +0000140static void LIBXML_ATTR_FORMAT(4,0)
Daniel Veillardf54cd532004-02-25 11:52:31 +0000141xmlErrValidNode(xmlValidCtxtPtr ctxt,
142 xmlNodePtr node, xmlParserErrors error,
143 const char *msg, const xmlChar * str1,
144 const xmlChar * str2, const xmlChar * str3)
145{
146 xmlStructuredErrorFunc schannel = NULL;
147 xmlGenericErrorFunc channel = NULL;
148 xmlParserCtxtPtr pctxt = NULL;
149 void *data = NULL;
150
151 if (ctxt != NULL) {
152 channel = ctxt->error;
153 data = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +0000154 /* Use the special values to detect if it is part of a parsing
155 context */
156 if ((ctxt->finishDtd == XML_CTXT_FINISH_DTD_0) ||
157 (ctxt->finishDtd == XML_CTXT_FINISH_DTD_1)) {
Daniel Veillardb2dc5672006-08-22 14:45:40 +0000158 long delta = (char *) ctxt - (char *) ctxt->userData;
159 if ((delta > 0) && (delta < 250))
160 pctxt = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +0000161 }
Daniel Veillardf54cd532004-02-25 11:52:31 +0000162 }
163 __xmlRaiseError(schannel, channel, data, pctxt, node, XML_FROM_VALID, error,
164 XML_ERR_ERROR, NULL, 0,
165 (const char *) str1,
166 (const char *) str1,
167 (const char *) str3, 0, 0, msg, str1, str2, str3);
168}
169#endif /* LIBXML_VALID_ENABLED or LIBXML_SCHEMAS_ENABLED */
170
Daniel Veillardd61e8fb2003-10-19 21:59:17 +0000171#ifdef LIBXML_VALID_ENABLED
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000172/**
173 * xmlErrValidNodeNr:
174 * @ctxt: an XML validation parser context
175 * @node: the node raising the error
176 * @error: the error number
177 * @str1: extra informations
178 * @int2: extra informations
179 * @str3: extra informations
180 *
181 * Handle a validation error, provide contextual informations
182 */
Xin Li28c53d32017-03-07 00:33:02 +0000183static void LIBXML_ATTR_FORMAT(4,0)
Daniel Veillard72b9e292003-10-28 15:44:17 +0000184xmlErrValidNodeNr(xmlValidCtxtPtr ctxt,
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000185 xmlNodePtr node, xmlParserErrors error,
186 const char *msg, const xmlChar * str1,
187 int int2, const xmlChar * str3)
188{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000189 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000190 xmlGenericErrorFunc channel = NULL;
191 xmlParserCtxtPtr pctxt = NULL;
192 void *data = NULL;
193
194 if (ctxt != NULL) {
195 channel = ctxt->error;
196 data = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +0000197 /* Use the special values to detect if it is part of a parsing
198 context */
199 if ((ctxt->finishDtd == XML_CTXT_FINISH_DTD_0) ||
200 (ctxt->finishDtd == XML_CTXT_FINISH_DTD_1)) {
Daniel Veillardb2dc5672006-08-22 14:45:40 +0000201 long delta = (char *) ctxt - (char *) ctxt->userData;
202 if ((delta > 0) && (delta < 250))
203 pctxt = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +0000204 }
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000205 }
Daniel Veillard72b9e292003-10-28 15:44:17 +0000206 __xmlRaiseError(schannel, channel, data, pctxt, node, XML_FROM_VALID, error,
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000207 XML_ERR_ERROR, NULL, 0,
208 (const char *) str1,
209 (const char *) str3,
210 NULL, int2, 0, msg, str1, int2, str3);
211}
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000212
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000213/**
214 * xmlErrValidWarning:
215 * @ctxt: an XML validation parser context
216 * @node: the node raising the error
217 * @error: the error number
William M. Brackedb65a72004-02-06 07:36:04 +0000218 * @str1: extra information
219 * @str2: extra information
220 * @str3: extra information
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000221 *
William M. Brackedb65a72004-02-06 07:36:04 +0000222 * Handle a validation error, provide contextual information
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000223 */
Xin Li28c53d32017-03-07 00:33:02 +0000224static void LIBXML_ATTR_FORMAT(4,0)
William M. Brackedb65a72004-02-06 07:36:04 +0000225xmlErrValidWarning(xmlValidCtxtPtr ctxt,
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000226 xmlNodePtr node, xmlParserErrors error,
227 const char *msg, const xmlChar * str1,
228 const xmlChar * str2, const xmlChar * str3)
229{
Daniel Veillard659e71e2003-10-10 14:10:40 +0000230 xmlStructuredErrorFunc schannel = NULL;
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000231 xmlGenericErrorFunc channel = NULL;
232 xmlParserCtxtPtr pctxt = NULL;
233 void *data = NULL;
234
235 if (ctxt != NULL) {
William M. Bracke4d526f2004-12-18 00:01:21 +0000236 channel = ctxt->warning;
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000237 data = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +0000238 /* Use the special values to detect if it is part of a parsing
239 context */
240 if ((ctxt->finishDtd == XML_CTXT_FINISH_DTD_0) ||
241 (ctxt->finishDtd == XML_CTXT_FINISH_DTD_1)) {
Daniel Veillardb2dc5672006-08-22 14:45:40 +0000242 long delta = (char *) ctxt - (char *) ctxt->userData;
243 if ((delta > 0) && (delta < 250))
244 pctxt = ctxt->userData;
Daniel Veillardeff45a92004-10-29 12:10:55 +0000245 }
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000246 }
Daniel Veillard72b9e292003-10-28 15:44:17 +0000247 __xmlRaiseError(schannel, channel, data, pctxt, node, XML_FROM_VALID, error,
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000248 XML_ERR_WARNING, NULL, 0,
249 (const char *) str1,
250 (const char *) str1,
251 (const char *) str3, 0, 0, msg, str1, str2, str3);
252}
253
254
Daniel Veillardea7751d2002-12-20 00:16:24 +0000255
256#ifdef LIBXML_REGEXP_ENABLED
257/*
258 * If regexp are enabled we can do continuous validation without the
259 * need of a tree to validate the content model. this is done in each
260 * callbacks.
261 * Each xmlValidState represent the validation state associated to the
262 * set of nodes currently open from the document root to the current element.
263 */
264
265
266typedef struct _xmlValidState {
267 xmlElementPtr elemDecl; /* pointer to the content model */
268 xmlNodePtr node; /* pointer to the current node */
269 xmlRegExecCtxtPtr exec; /* regexp runtime */
270} _xmlValidState;
271
272
273static int
274vstateVPush(xmlValidCtxtPtr ctxt, xmlElementPtr elemDecl, xmlNodePtr node) {
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000275 if ((ctxt->vstateMax == 0) || (ctxt->vstateTab == NULL)) {
Daniel Veillardea7751d2002-12-20 00:16:24 +0000276 ctxt->vstateMax = 10;
277 ctxt->vstateTab = (xmlValidState *) xmlMalloc(ctxt->vstateMax *
278 sizeof(ctxt->vstateTab[0]));
279 if (ctxt->vstateTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000280 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillardea7751d2002-12-20 00:16:24 +0000281 return(-1);
282 }
283 }
284
285 if (ctxt->vstateNr >= ctxt->vstateMax) {
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000286 xmlValidState *tmp;
287
288 tmp = (xmlValidState *) xmlRealloc(ctxt->vstateTab,
289 2 * ctxt->vstateMax * sizeof(ctxt->vstateTab[0]));
290 if (tmp == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000291 xmlVErrMemory(ctxt, "realloc failed");
Daniel Veillardea7751d2002-12-20 00:16:24 +0000292 return(-1);
293 }
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000294 ctxt->vstateMax *= 2;
295 ctxt->vstateTab = tmp;
Daniel Veillardea7751d2002-12-20 00:16:24 +0000296 }
297 ctxt->vstate = &ctxt->vstateTab[ctxt->vstateNr];
298 ctxt->vstateTab[ctxt->vstateNr].elemDecl = elemDecl;
299 ctxt->vstateTab[ctxt->vstateNr].node = node;
300 if ((elemDecl != NULL) && (elemDecl->etype == XML_ELEMENT_TYPE_ELEMENT)) {
301 if (elemDecl->contModel == NULL)
302 xmlValidBuildContentModel(ctxt, elemDecl);
303 if (elemDecl->contModel != NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800304 ctxt->vstateTab[ctxt->vstateNr].exec =
Daniel Veillardea7751d2002-12-20 00:16:24 +0000305 xmlRegNewExecCtxt(elemDecl->contModel, NULL, NULL);
306 } else {
307 ctxt->vstateTab[ctxt->vstateNr].exec = NULL;
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000308 xmlErrValidNode(ctxt, (xmlNodePtr) elemDecl,
309 XML_ERR_INTERNAL_ERROR,
310 "Failed to build content model regexp for %s\n",
311 node->name, NULL, NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +0000312 }
313 }
314 return(ctxt->vstateNr++);
315}
316
317static int
318vstateVPop(xmlValidCtxtPtr ctxt) {
319 xmlElementPtr elemDecl;
320
Daniel Veillard336fc7d2002-12-27 19:37:04 +0000321 if (ctxt->vstateNr < 1) return(-1);
Daniel Veillardea7751d2002-12-20 00:16:24 +0000322 ctxt->vstateNr--;
323 elemDecl = ctxt->vstateTab[ctxt->vstateNr].elemDecl;
324 ctxt->vstateTab[ctxt->vstateNr].elemDecl = NULL;
325 ctxt->vstateTab[ctxt->vstateNr].node = NULL;
326 if ((elemDecl != NULL) && (elemDecl->etype == XML_ELEMENT_TYPE_ELEMENT)) {
327 xmlRegFreeExecCtxt(ctxt->vstateTab[ctxt->vstateNr].exec);
328 }
329 ctxt->vstateTab[ctxt->vstateNr].exec = NULL;
330 if (ctxt->vstateNr >= 1)
331 ctxt->vstate = &ctxt->vstateTab[ctxt->vstateNr - 1];
332 else
333 ctxt->vstate = NULL;
334 return(ctxt->vstateNr);
335}
336
337#else /* not LIBXML_REGEXP_ENABLED */
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000338/*
Daniel Veillard1c732d22002-11-30 11:22:59 +0000339 * If regexp are not enabled, it uses a home made algorithm less
340 * complex and easier to
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000341 * debug/maintain than a generic NFA -> DFA state based algo. The
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000342 * only restriction is on the deepness of the tree limited by the
343 * size of the occurs bitfield
344 *
345 * this is the content of a saved state for rollbacks
346 */
347
348#define ROLLBACK_OR 0
349#define ROLLBACK_PARENT 1
350
Daniel Veillardb44025c2001-10-11 22:55:55 +0000351typedef struct _xmlValidState {
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000352 xmlElementContentPtr cont; /* pointer to the content model subtree */
353 xmlNodePtr node; /* pointer to the current node in the list */
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000354 long occurs;/* bitfield for multiple occurrences */
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000355 unsigned char depth; /* current depth in the overall tree */
356 unsigned char state; /* ROLLBACK_XXX */
357} _xmlValidState;
358
Daniel Veillardfc57b412002-04-29 15:50:14 +0000359#define MAX_RECURSE 25000
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000360#define MAX_DEPTH ((sizeof(_xmlValidState.occurs)) * 8)
361#define CONT ctxt->vstate->cont
362#define NODE ctxt->vstate->node
363#define DEPTH ctxt->vstate->depth
364#define OCCURS ctxt->vstate->occurs
365#define STATE ctxt->vstate->state
366
Daniel Veillard5344c602001-12-31 16:37:34 +0000367#define OCCURRENCE (ctxt->vstate->occurs & (1 << DEPTH))
368#define PARENT_OCCURRENCE (ctxt->vstate->occurs & ((1 << DEPTH) - 1))
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000369
Daniel Veillard5344c602001-12-31 16:37:34 +0000370#define SET_OCCURRENCE ctxt->vstate->occurs |= (1 << DEPTH)
371#define RESET_OCCURRENCE ctxt->vstate->occurs &= ((1 << DEPTH) - 1)
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000372
373static int
374vstateVPush(xmlValidCtxtPtr ctxt, xmlElementContentPtr cont,
375 xmlNodePtr node, unsigned char depth, long occurs,
376 unsigned char state) {
Daniel Veillardbed7b052001-05-19 14:59:49 +0000377 int i = ctxt->vstateNr - 1;
378
Daniel Veillard940492d2002-04-15 10:15:25 +0000379 if (ctxt->vstateNr > MAX_RECURSE) {
380 return(-1);
381 }
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000382 if (ctxt->vstateTab == NULL) {
383 ctxt->vstateMax = 8;
384 ctxt->vstateTab = (xmlValidState *) xmlMalloc(
385 ctxt->vstateMax * sizeof(ctxt->vstateTab[0]));
386 if (ctxt->vstateTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000387 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000388 return(-1);
389 }
390 }
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000391 if (ctxt->vstateNr >= ctxt->vstateMax) {
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000392 xmlValidState *tmp;
393
394 tmp = (xmlValidState *) xmlRealloc(ctxt->vstateTab,
395 2 * ctxt->vstateMax * sizeof(ctxt->vstateTab[0]));
396 if (tmp == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000397 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillard940492d2002-04-15 10:15:25 +0000398 return(-1);
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000399 }
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000400 ctxt->vstateMax *= 2;
401 ctxt->vstateTab = tmp;
Daniel Veillard06803992001-04-22 10:35:56 +0000402 ctxt->vstate = &ctxt->vstateTab[0];
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000403 }
Daniel Veillardbed7b052001-05-19 14:59:49 +0000404 /*
405 * Don't push on the stack a state already here
406 */
407 if ((i >= 0) && (ctxt->vstateTab[i].cont == cont) &&
408 (ctxt->vstateTab[i].node == node) &&
409 (ctxt->vstateTab[i].depth == depth) &&
410 (ctxt->vstateTab[i].occurs == occurs) &&
411 (ctxt->vstateTab[i].state == state))
412 return(ctxt->vstateNr);
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000413 ctxt->vstateTab[ctxt->vstateNr].cont = cont;
414 ctxt->vstateTab[ctxt->vstateNr].node = node;
415 ctxt->vstateTab[ctxt->vstateNr].depth = depth;
416 ctxt->vstateTab[ctxt->vstateNr].occurs = occurs;
417 ctxt->vstateTab[ctxt->vstateNr].state = state;
418 return(ctxt->vstateNr++);
419}
420
421static int
422vstateVPop(xmlValidCtxtPtr ctxt) {
423 if (ctxt->vstateNr <= 1) return(-1);
424 ctxt->vstateNr--;
425 ctxt->vstate = &ctxt->vstateTab[0];
426 ctxt->vstate->cont = ctxt->vstateTab[ctxt->vstateNr].cont;
427 ctxt->vstate->node = ctxt->vstateTab[ctxt->vstateNr].node;
428 ctxt->vstate->depth = ctxt->vstateTab[ctxt->vstateNr].depth;
429 ctxt->vstate->occurs = ctxt->vstateTab[ctxt->vstateNr].occurs;
430 ctxt->vstate->state = ctxt->vstateTab[ctxt->vstateNr].state;
431 return(ctxt->vstateNr);
432}
433
Daniel Veillard118aed72002-09-24 14:13:13 +0000434#endif /* LIBXML_REGEXP_ENABLED */
435
Daniel Veillard1c732d22002-11-30 11:22:59 +0000436static int
437nodeVPush(xmlValidCtxtPtr ctxt, xmlNodePtr value)
438{
439 if (ctxt->nodeMax <= 0) {
440 ctxt->nodeMax = 4;
441 ctxt->nodeTab =
442 (xmlNodePtr *) xmlMalloc(ctxt->nodeMax *
443 sizeof(ctxt->nodeTab[0]));
444 if (ctxt->nodeTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000445 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillard1c732d22002-11-30 11:22:59 +0000446 ctxt->nodeMax = 0;
447 return (0);
448 }
449 }
450 if (ctxt->nodeNr >= ctxt->nodeMax) {
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000451 xmlNodePtr *tmp;
452 tmp = (xmlNodePtr *) xmlRealloc(ctxt->nodeTab,
453 ctxt->nodeMax * 2 * sizeof(ctxt->nodeTab[0]));
454 if (tmp == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000455 xmlVErrMemory(ctxt, "realloc failed");
Daniel Veillard1c732d22002-11-30 11:22:59 +0000456 return (0);
457 }
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000458 ctxt->nodeMax *= 2;
459 ctxt->nodeTab = tmp;
Daniel Veillard1c732d22002-11-30 11:22:59 +0000460 }
461 ctxt->nodeTab[ctxt->nodeNr] = value;
462 ctxt->node = value;
463 return (ctxt->nodeNr++);
464}
465static xmlNodePtr
466nodeVPop(xmlValidCtxtPtr ctxt)
467{
468 xmlNodePtr ret;
469
470 if (ctxt->nodeNr <= 0)
Daniel Veillard24505b02005-07-28 23:49:35 +0000471 return (NULL);
Daniel Veillard1c732d22002-11-30 11:22:59 +0000472 ctxt->nodeNr--;
473 if (ctxt->nodeNr > 0)
474 ctxt->node = ctxt->nodeTab[ctxt->nodeNr - 1];
475 else
476 ctxt->node = NULL;
477 ret = ctxt->nodeTab[ctxt->nodeNr];
Daniel Veillard24505b02005-07-28 23:49:35 +0000478 ctxt->nodeTab[ctxt->nodeNr] = NULL;
Daniel Veillard1c732d22002-11-30 11:22:59 +0000479 return (ret);
480}
Owen Taylor3473f882001-02-23 17:55:21 +0000481
Owen Taylor3473f882001-02-23 17:55:21 +0000482#ifdef DEBUG_VALID_ALGO
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000483static void
484xmlValidPrintNode(xmlNodePtr cur) {
485 if (cur == NULL) {
486 xmlGenericError(xmlGenericErrorContext, "null");
487 return;
488 }
489 switch (cur->type) {
490 case XML_ELEMENT_NODE:
491 xmlGenericError(xmlGenericErrorContext, "%s ", cur->name);
492 break;
493 case XML_TEXT_NODE:
494 xmlGenericError(xmlGenericErrorContext, "text ");
495 break;
496 case XML_CDATA_SECTION_NODE:
497 xmlGenericError(xmlGenericErrorContext, "cdata ");
498 break;
499 case XML_ENTITY_REF_NODE:
500 xmlGenericError(xmlGenericErrorContext, "&%s; ", cur->name);
501 break;
502 case XML_PI_NODE:
503 xmlGenericError(xmlGenericErrorContext, "pi(%s) ", cur->name);
504 break;
505 case XML_COMMENT_NODE:
506 xmlGenericError(xmlGenericErrorContext, "comment ");
507 break;
508 case XML_ATTRIBUTE_NODE:
509 xmlGenericError(xmlGenericErrorContext, "?attr? ");
510 break;
511 case XML_ENTITY_NODE:
512 xmlGenericError(xmlGenericErrorContext, "?ent? ");
513 break;
514 case XML_DOCUMENT_NODE:
515 xmlGenericError(xmlGenericErrorContext, "?doc? ");
516 break;
517 case XML_DOCUMENT_TYPE_NODE:
518 xmlGenericError(xmlGenericErrorContext, "?doctype? ");
519 break;
520 case XML_DOCUMENT_FRAG_NODE:
521 xmlGenericError(xmlGenericErrorContext, "?frag? ");
522 break;
523 case XML_NOTATION_NODE:
524 xmlGenericError(xmlGenericErrorContext, "?nota? ");
525 break;
526 case XML_HTML_DOCUMENT_NODE:
527 xmlGenericError(xmlGenericErrorContext, "?html? ");
528 break;
Daniel Veillardce2c2f02001-10-18 14:57:24 +0000529#ifdef LIBXML_DOCB_ENABLED
530 case XML_DOCB_DOCUMENT_NODE:
531 xmlGenericError(xmlGenericErrorContext, "?docb? ");
532 break;
533#endif
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000534 case XML_DTD_NODE:
535 xmlGenericError(xmlGenericErrorContext, "?dtd? ");
536 break;
537 case XML_ELEMENT_DECL:
538 xmlGenericError(xmlGenericErrorContext, "?edecl? ");
539 break;
540 case XML_ATTRIBUTE_DECL:
541 xmlGenericError(xmlGenericErrorContext, "?adecl? ");
542 break;
543 case XML_ENTITY_DECL:
544 xmlGenericError(xmlGenericErrorContext, "?entdecl? ");
545 break;
546 case XML_NAMESPACE_DECL:
547 xmlGenericError(xmlGenericErrorContext, "?nsdecl? ");
548 break;
549 case XML_XINCLUDE_START:
550 xmlGenericError(xmlGenericErrorContext, "incstart ");
551 break;
552 case XML_XINCLUDE_END:
553 xmlGenericError(xmlGenericErrorContext, "incend ");
554 break;
555 }
556}
557
558static void
559xmlValidPrintNodeList(xmlNodePtr cur) {
Owen Taylor3473f882001-02-23 17:55:21 +0000560 if (cur == NULL)
561 xmlGenericError(xmlGenericErrorContext, "null ");
562 while (cur != NULL) {
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000563 xmlValidPrintNode(cur);
Owen Taylor3473f882001-02-23 17:55:21 +0000564 cur = cur->next;
565 }
566}
567
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000568static void
569xmlValidDebug(xmlNodePtr cur, xmlElementContentPtr cont) {
Daniel Veillard83391282003-03-06 21:37:30 +0000570 char expr[5000];
Owen Taylor3473f882001-02-23 17:55:21 +0000571
572 expr[0] = 0;
573 xmlGenericError(xmlGenericErrorContext, "valid: ");
574 xmlValidPrintNodeList(cur);
575 xmlGenericError(xmlGenericErrorContext, "against ");
Daniel Veillardd3d06722001-08-15 12:06:36 +0000576 xmlSnprintfElementContent(expr, 5000, cont, 1);
Owen Taylor3473f882001-02-23 17:55:21 +0000577 xmlGenericError(xmlGenericErrorContext, "%s\n", expr);
578}
579
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000580static void
581xmlValidDebugState(xmlValidStatePtr state) {
582 xmlGenericError(xmlGenericErrorContext, "(");
583 if (state->cont == NULL)
584 xmlGenericError(xmlGenericErrorContext, "null,");
585 else
586 switch (state->cont->type) {
587 case XML_ELEMENT_CONTENT_PCDATA:
588 xmlGenericError(xmlGenericErrorContext, "pcdata,");
589 break;
590 case XML_ELEMENT_CONTENT_ELEMENT:
591 xmlGenericError(xmlGenericErrorContext, "%s,",
592 state->cont->name);
593 break;
594 case XML_ELEMENT_CONTENT_SEQ:
595 xmlGenericError(xmlGenericErrorContext, "seq,");
596 break;
597 case XML_ELEMENT_CONTENT_OR:
598 xmlGenericError(xmlGenericErrorContext, "or,");
599 break;
600 }
601 xmlValidPrintNode(state->node);
602 xmlGenericError(xmlGenericErrorContext, ",%d,%X,%d)",
603 state->depth, state->occurs, state->state);
604}
605
606static void
607xmlValidStateDebug(xmlValidCtxtPtr ctxt) {
608 int i, j;
609
610 xmlGenericError(xmlGenericErrorContext, "state: ");
611 xmlValidDebugState(ctxt->vstate);
612 xmlGenericError(xmlGenericErrorContext, " stack: %d ",
613 ctxt->vstateNr - 1);
614 for (i = 0, j = ctxt->vstateNr - 1;(i < 3) && (j > 0);i++,j--)
615 xmlValidDebugState(&ctxt->vstateTab[j]);
616 xmlGenericError(xmlGenericErrorContext, "\n");
617}
618
619/*****
Owen Taylor3473f882001-02-23 17:55:21 +0000620#define DEBUG_VALID_STATE(n,c) xmlValidDebug(n,c);
Daniel Veillarddab4cb32001-04-20 13:03:48 +0000621 *****/
622
623#define DEBUG_VALID_STATE(n,c) xmlValidStateDebug(ctxt);
Daniel Veillarde356c282001-03-10 12:32:04 +0000624#define DEBUG_VALID_MSG(m) \
625 xmlGenericError(xmlGenericErrorContext, "%s\n", m);
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800626
Owen Taylor3473f882001-02-23 17:55:21 +0000627#else
628#define DEBUG_VALID_STATE(n,c)
Daniel Veillarde356c282001-03-10 12:32:04 +0000629#define DEBUG_VALID_MSG(m)
Owen Taylor3473f882001-02-23 17:55:21 +0000630#endif
631
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000632/* TODO: use hash table for accesses to elem and attribute definitions */
Owen Taylor3473f882001-02-23 17:55:21 +0000633
Daniel Veillardb9cd8b42002-09-05 10:58:49 +0000634
Owen Taylor3473f882001-02-23 17:55:21 +0000635#define CHECK_DTD \
636 if (doc == NULL) return(0); \
637 else if ((doc->intSubset == NULL) && \
638 (doc->extSubset == NULL)) return(0)
639
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000640#ifdef LIBXML_REGEXP_ENABLED
641
642/************************************************************************
643 * *
644 * Content model validation based on the regexps *
645 * *
646 ************************************************************************/
647
648/**
649 * xmlValidBuildAContentModel:
650 * @content: the content model
651 * @ctxt: the schema parser context
652 * @name: the element name whose content is being built
653 *
654 * Generate the automata sequence needed for that type
655 *
Daniel Veillard84d70a42002-09-16 10:51:38 +0000656 * Returns 1 if successful or 0 in case of error.
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000657 */
658static int
659xmlValidBuildAContentModel(xmlElementContentPtr content,
660 xmlValidCtxtPtr ctxt,
661 const xmlChar *name) {
662 if (content == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000663 xmlErrValidNode(ctxt, NULL, XML_ERR_INTERNAL_ERROR,
664 "Found NULL content in content model of %s\n",
665 name, NULL, NULL);
Daniel Veillard84d70a42002-09-16 10:51:38 +0000666 return(0);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000667 }
668 switch (content->type) {
669 case XML_ELEMENT_CONTENT_PCDATA:
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000670 xmlErrValidNode(ctxt, NULL, XML_ERR_INTERNAL_ERROR,
671 "Found PCDATA in content model of %s\n",
672 name, NULL, NULL);
Daniel Veillard84d70a42002-09-16 10:51:38 +0000673 return(0);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000674 break;
675 case XML_ELEMENT_CONTENT_ELEMENT: {
676 xmlAutomataStatePtr oldstate = ctxt->state;
Daniel Veillardc00cda82003-04-07 10:22:39 +0000677 xmlChar fn[50];
678 xmlChar *fullname;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800679
Daniel Veillardc00cda82003-04-07 10:22:39 +0000680 fullname = xmlBuildQName(content->name, content->prefix, fn, 50);
681 if (fullname == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000682 xmlVErrMemory(ctxt, "Building content model");
Daniel Veillardc00cda82003-04-07 10:22:39 +0000683 return(0);
Daniel Veillarda646cfd2002-09-17 21:50:03 +0000684 }
685
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000686 switch (content->ocur) {
687 case XML_ELEMENT_CONTENT_ONCE:
688 ctxt->state = xmlAutomataNewTransition(ctxt->am,
Daniel Veillardc00cda82003-04-07 10:22:39 +0000689 ctxt->state, NULL, fullname, NULL);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000690 break;
691 case XML_ELEMENT_CONTENT_OPT:
692 ctxt->state = xmlAutomataNewTransition(ctxt->am,
Daniel Veillardc00cda82003-04-07 10:22:39 +0000693 ctxt->state, NULL, fullname, NULL);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000694 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state);
695 break;
696 case XML_ELEMENT_CONTENT_PLUS:
697 ctxt->state = xmlAutomataNewTransition(ctxt->am,
Daniel Veillardc00cda82003-04-07 10:22:39 +0000698 ctxt->state, NULL, fullname, NULL);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000699 xmlAutomataNewTransition(ctxt->am, ctxt->state,
Daniel Veillardc00cda82003-04-07 10:22:39 +0000700 ctxt->state, fullname, NULL);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000701 break;
702 case XML_ELEMENT_CONTENT_MULT:
William M. Brack8b0cbb02004-04-17 13:31:06 +0000703 ctxt->state = xmlAutomataNewEpsilon(ctxt->am,
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800704 ctxt->state, NULL);
William M. Brack8b0cbb02004-04-17 13:31:06 +0000705 xmlAutomataNewTransition(ctxt->am,
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800706 ctxt->state, ctxt->state, fullname, NULL);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000707 break;
708 }
Daniel Veillardc00cda82003-04-07 10:22:39 +0000709 if ((fullname != fn) && (fullname != content->name))
710 xmlFree(fullname);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000711 break;
712 }
713 case XML_ELEMENT_CONTENT_SEQ: {
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000714 xmlAutomataStatePtr oldstate, oldend;
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000715 xmlElementContentOccur ocur;
716
717 /*
718 * Simply iterate over the content
719 */
720 oldstate = ctxt->state;
721 ocur = content->ocur;
Daniel Veillardf4be0182003-02-24 19:54:33 +0000722 if (ocur != XML_ELEMENT_CONTENT_ONCE) {
723 ctxt->state = xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL);
724 oldstate = ctxt->state;
725 }
Daniel Veillarda646cfd2002-09-17 21:50:03 +0000726 do {
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000727 xmlValidBuildAContentModel(content->c1, ctxt, name);
728 content = content->c2;
Daniel Veillarda646cfd2002-09-17 21:50:03 +0000729 } while ((content->type == XML_ELEMENT_CONTENT_SEQ) &&
730 (content->ocur == XML_ELEMENT_CONTENT_ONCE));
731 xmlValidBuildAContentModel(content, ctxt, name);
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000732 oldend = ctxt->state;
733 ctxt->state = xmlAutomataNewEpsilon(ctxt->am, oldend, NULL);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000734 switch (ocur) {
735 case XML_ELEMENT_CONTENT_ONCE:
736 break;
737 case XML_ELEMENT_CONTENT_OPT:
738 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state);
739 break;
740 case XML_ELEMENT_CONTENT_MULT:
741 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state);
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000742 xmlAutomataNewEpsilon(ctxt->am, oldend, oldstate);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000743 break;
744 case XML_ELEMENT_CONTENT_PLUS:
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000745 xmlAutomataNewEpsilon(ctxt->am, oldend, oldstate);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000746 break;
747 }
748 break;
749 }
750 case XML_ELEMENT_CONTENT_OR: {
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000751 xmlAutomataStatePtr oldstate, oldend;
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000752 xmlElementContentOccur ocur;
753
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000754 ocur = content->ocur;
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800755 if ((ocur == XML_ELEMENT_CONTENT_PLUS) ||
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000756 (ocur == XML_ELEMENT_CONTENT_MULT)) {
757 ctxt->state = xmlAutomataNewEpsilon(ctxt->am,
758 ctxt->state, NULL);
759 }
760 oldstate = ctxt->state;
761 oldend = xmlAutomataNewState(ctxt->am);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000762
763 /*
764 * iterate over the subtypes and remerge the end with an
765 * epsilon transition
766 */
Daniel Veillarda646cfd2002-09-17 21:50:03 +0000767 do {
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000768 ctxt->state = oldstate;
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000769 xmlValidBuildAContentModel(content->c1, ctxt, name);
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000770 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldend);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000771 content = content->c2;
Daniel Veillarda646cfd2002-09-17 21:50:03 +0000772 } while ((content->type == XML_ELEMENT_CONTENT_OR) &&
773 (content->ocur == XML_ELEMENT_CONTENT_ONCE));
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000774 ctxt->state = oldstate;
Daniel Veillarda646cfd2002-09-17 21:50:03 +0000775 xmlValidBuildAContentModel(content, ctxt, name);
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000776 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldend);
777 ctxt->state = xmlAutomataNewEpsilon(ctxt->am, oldend, NULL);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000778 switch (ocur) {
779 case XML_ELEMENT_CONTENT_ONCE:
780 break;
781 case XML_ELEMENT_CONTENT_OPT:
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000782 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000783 break;
784 case XML_ELEMENT_CONTENT_MULT:
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000785 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state);
786 xmlAutomataNewEpsilon(ctxt->am, oldend, oldstate);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000787 break;
788 case XML_ELEMENT_CONTENT_PLUS:
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000789 xmlAutomataNewEpsilon(ctxt->am, oldend, oldstate);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000790 break;
791 }
792 break;
793 }
794 default:
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000795 xmlErrValid(ctxt, XML_ERR_INTERNAL_ERROR,
796 "ContentModel broken for element %s\n",
797 (const char *) name);
Daniel Veillard84d70a42002-09-16 10:51:38 +0000798 return(0);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000799 }
Daniel Veillard84d70a42002-09-16 10:51:38 +0000800 return(1);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000801}
802/**
803 * xmlValidBuildContentModel:
804 * @ctxt: a validation context
805 * @elem: an element declaration node
806 *
807 * (Re)Build the automata associated to the content model of this
808 * element
809 *
Daniel Veillard84d70a42002-09-16 10:51:38 +0000810 * Returns 1 in case of success, 0 in case of error
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000811 */
812int
813xmlValidBuildContentModel(xmlValidCtxtPtr ctxt, xmlElementPtr elem) {
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000814
815 if ((ctxt == NULL) || (elem == NULL))
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000816 return(0);
Daniel Veillard84d70a42002-09-16 10:51:38 +0000817 if (elem->type != XML_ELEMENT_DECL)
818 return(0);
819 if (elem->etype != XML_ELEMENT_TYPE_ELEMENT)
820 return(1);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000821 /* TODO: should we rebuild in this case ? */
Daniel Veillardec498e12003-02-05 11:01:50 +0000822 if (elem->contModel != NULL) {
823 if (!xmlRegexpIsDeterminist(elem->contModel)) {
824 ctxt->valid = 0;
825 return(0);
826 }
Daniel Veillard84d70a42002-09-16 10:51:38 +0000827 return(1);
Daniel Veillardec498e12003-02-05 11:01:50 +0000828 }
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000829
830 ctxt->am = xmlNewAutomata();
831 if (ctxt->am == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000832 xmlErrValidNode(ctxt, (xmlNodePtr) elem,
833 XML_ERR_INTERNAL_ERROR,
834 "Cannot create automata for element %s\n",
835 elem->name, NULL, NULL);
Daniel Veillard84d70a42002-09-16 10:51:38 +0000836 return(0);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000837 }
William M. Brack78637da2003-07-31 14:47:38 +0000838 ctxt->state = xmlAutomataGetInitState(ctxt->am);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000839 xmlValidBuildAContentModel(elem->content, ctxt, elem->name);
840 xmlAutomataSetFinalState(ctxt->am, ctxt->state);
Daniel Veillard84d70a42002-09-16 10:51:38 +0000841 elem->contModel = xmlAutomataCompile(ctxt->am);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000842 if (xmlRegexpIsDeterminist(elem->contModel) != 1) {
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000843 char expr[5000];
844 expr[0] = 0;
845 xmlSnprintfElementContent(expr, 5000, elem->content, 1);
Daniel Veillardbb5abab2003-10-03 22:21:51 +0000846 xmlErrValidNode(ctxt, (xmlNodePtr) elem,
847 XML_DTD_CONTENT_NOT_DETERMINIST,
848 "Content model of %s is not determinist: %s\n",
849 elem->name, BAD_CAST expr, NULL);
Daniel Veillard5acfd6b2002-09-18 16:29:02 +0000850#ifdef DEBUG_REGEXP_ALGO
851 xmlRegexpPrint(stderr, elem->contModel);
852#endif
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000853 ctxt->valid = 0;
Daniel Veillardec498e12003-02-05 11:01:50 +0000854 ctxt->state = NULL;
855 xmlFreeAutomata(ctxt->am);
856 ctxt->am = NULL;
857 return(0);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000858 }
859 ctxt->state = NULL;
860 xmlFreeAutomata(ctxt->am);
861 ctxt->am = NULL;
Daniel Veillard84d70a42002-09-16 10:51:38 +0000862 return(1);
Daniel Veillardaeb258a2002-09-13 14:48:12 +0000863}
864
865#endif /* LIBXML_REGEXP_ENABLED */
866
Owen Taylor3473f882001-02-23 17:55:21 +0000867/****************************************************************
868 * *
869 * Util functions for data allocation/deallocation *
870 * *
871 ****************************************************************/
872
873/**
Daniel Veillarda37aab82003-06-09 09:10:36 +0000874 * xmlNewValidCtxt:
875 *
876 * Allocate a validation context structure.
877 *
878 * Returns NULL if not, otherwise the new validation context structure
879 */
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000880xmlValidCtxtPtr xmlNewValidCtxt(void) {
Daniel Veillarda37aab82003-06-09 09:10:36 +0000881 xmlValidCtxtPtr ret;
882
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000883 if ((ret = xmlMalloc(sizeof (xmlValidCtxt))) == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000884 xmlVErrMemory(NULL, "malloc failed");
Daniel Veillarda37aab82003-06-09 09:10:36 +0000885 return (NULL);
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000886 }
Daniel Veillarda37aab82003-06-09 09:10:36 +0000887
888 (void) memset(ret, 0, sizeof (xmlValidCtxt));
889
890 return (ret);
891}
892
893/**
894 * xmlFreeValidCtxt:
895 * @cur: the validation context to free
896 *
897 * Free a validation context structure.
898 */
899void
900xmlFreeValidCtxt(xmlValidCtxtPtr cur) {
Daniel Veillardc0be74b2004-11-03 19:16:55 +0000901 if (cur->vstateTab != NULL)
902 xmlFree(cur->vstateTab);
903 if (cur->nodeTab != NULL)
904 xmlFree(cur->nodeTab);
Daniel Veillarda37aab82003-06-09 09:10:36 +0000905 xmlFree(cur);
906}
907
Daniel Veillard4432df22003-09-28 18:58:27 +0000908#endif /* LIBXML_VALID_ENABLED */
909
Daniel Veillarda37aab82003-06-09 09:10:36 +0000910/**
Daniel Veillardcee2b3a2005-01-25 00:22:52 +0000911 * xmlNewDocElementContent:
912 * @doc: the document
Owen Taylor3473f882001-02-23 17:55:21 +0000913 * @name: the subelement name or NULL
914 * @type: the type of element content decl
915 *
Daniel Veillardcee2b3a2005-01-25 00:22:52 +0000916 * Allocate an element content structure for the document.
Owen Taylor3473f882001-02-23 17:55:21 +0000917 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000918 * Returns NULL if not, otherwise the new element content structure
Owen Taylor3473f882001-02-23 17:55:21 +0000919 */
920xmlElementContentPtr
Daniel Veillardcee2b3a2005-01-25 00:22:52 +0000921xmlNewDocElementContent(xmlDocPtr doc, const xmlChar *name,
922 xmlElementContentType type) {
Owen Taylor3473f882001-02-23 17:55:21 +0000923 xmlElementContentPtr ret;
Daniel Veillardcee2b3a2005-01-25 00:22:52 +0000924 xmlDictPtr dict = NULL;
925
926 if (doc != NULL)
927 dict = doc->dict;
Owen Taylor3473f882001-02-23 17:55:21 +0000928
929 switch(type) {
930 case XML_ELEMENT_CONTENT_ELEMENT:
931 if (name == NULL) {
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000932 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
933 "xmlNewElementContent : name == NULL !\n",
934 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000935 }
936 break;
937 case XML_ELEMENT_CONTENT_PCDATA:
938 case XML_ELEMENT_CONTENT_SEQ:
939 case XML_ELEMENT_CONTENT_OR:
940 if (name != NULL) {
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000941 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
942 "xmlNewElementContent : name != NULL !\n",
943 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000944 }
945 break;
946 default:
Daniel Veillardf8e3db02012-09-11 13:26:36 +0800947 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +0000948 "Internal: ELEMENT content corrupted invalid type\n",
949 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +0000950 return(NULL);
951 }
952 ret = (xmlElementContentPtr) xmlMalloc(sizeof(xmlElementContent));
953 if (ret == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +0000954 xmlVErrMemory(NULL, "malloc failed");
Owen Taylor3473f882001-02-23 17:55:21 +0000955 return(NULL);
956 }
Daniel Veillardd54fa3e2002-02-20 16:48:52 +0000957 memset(ret, 0, sizeof(xmlElementContent));
Owen Taylor3473f882001-02-23 17:55:21 +0000958 ret->type = type;
959 ret->ocur = XML_ELEMENT_CONTENT_ONCE;
Daniel Veillardbe480fb2001-11-08 23:36:42 +0000960 if (name != NULL) {
Daniel Veillardcee2b3a2005-01-25 00:22:52 +0000961 int l;
962 const xmlChar *tmp;
963
964 tmp = xmlSplitQName3(name, &l);
965 if (tmp == NULL) {
966 if (dict == NULL)
967 ret->name = xmlStrdup(name);
968 else
969 ret->name = xmlDictLookup(dict, name, -1);
970 } else {
971 if (dict == NULL) {
972 ret->prefix = xmlStrndup(name, l);
973 ret->name = xmlStrdup(tmp);
974 } else {
975 ret->prefix = xmlDictLookup(dict, name, l);
976 ret->name = xmlDictLookup(dict, tmp, -1);
977 }
978 }
Daniel Veillardbe480fb2001-11-08 23:36:42 +0000979 }
Daniel Veillardcee2b3a2005-01-25 00:22:52 +0000980 return(ret);
981}
982
983/**
984 * xmlNewElementContent:
985 * @name: the subelement name or NULL
986 * @type: the type of element content decl
987 *
988 * Allocate an element content structure.
989 * Deprecated in favor of xmlNewDocElementContent
990 *
991 * Returns NULL if not, otherwise the new element content structure
992 */
993xmlElementContentPtr
994xmlNewElementContent(const xmlChar *name, xmlElementContentType type) {
995 return(xmlNewDocElementContent(NULL, name, type));
996}
997
998/**
999 * xmlCopyDocElementContent:
1000 * @doc: the document owning the element declaration
1001 * @cur: An element content pointer.
1002 *
1003 * Build a copy of an element content description.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001004 *
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001005 * Returns the new xmlElementContentPtr or NULL in case of error.
1006 */
1007xmlElementContentPtr
1008xmlCopyDocElementContent(xmlDocPtr doc, xmlElementContentPtr cur) {
1009 xmlElementContentPtr ret = NULL, prev = NULL, tmp;
1010 xmlDictPtr dict = NULL;
1011
1012 if (cur == NULL) return(NULL);
1013
1014 if (doc != NULL)
1015 dict = doc->dict;
1016
1017 ret = (xmlElementContentPtr) xmlMalloc(sizeof(xmlElementContent));
1018 if (ret == NULL) {
1019 xmlVErrMemory(NULL, "malloc failed");
1020 return(NULL);
1021 }
1022 memset(ret, 0, sizeof(xmlElementContent));
1023 ret->type = cur->type;
1024 ret->ocur = cur->ocur;
1025 if (cur->name != NULL) {
1026 if (dict)
1027 ret->name = xmlDictLookup(dict, cur->name, -1);
1028 else
1029 ret->name = xmlStrdup(cur->name);
1030 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001031
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001032 if (cur->prefix != NULL) {
1033 if (dict)
1034 ret->prefix = xmlDictLookup(dict, cur->prefix, -1);
1035 else
1036 ret->prefix = xmlStrdup(cur->prefix);
1037 }
1038 if (cur->c1 != NULL)
1039 ret->c1 = xmlCopyDocElementContent(doc, cur->c1);
1040 if (ret->c1 != NULL)
1041 ret->c1->parent = ret;
1042 if (cur->c2 != NULL) {
1043 prev = ret;
1044 cur = cur->c2;
1045 while (cur != NULL) {
1046 tmp = (xmlElementContentPtr) xmlMalloc(sizeof(xmlElementContent));
1047 if (tmp == NULL) {
1048 xmlVErrMemory(NULL, "malloc failed");
1049 return(ret);
1050 }
1051 memset(tmp, 0, sizeof(xmlElementContent));
1052 tmp->type = cur->type;
1053 tmp->ocur = cur->ocur;
1054 prev->c2 = tmp;
1055 if (cur->name != NULL) {
1056 if (dict)
1057 tmp->name = xmlDictLookup(dict, cur->name, -1);
1058 else
1059 tmp->name = xmlStrdup(cur->name);
1060 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001061
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001062 if (cur->prefix != NULL) {
1063 if (dict)
1064 tmp->prefix = xmlDictLookup(dict, cur->prefix, -1);
1065 else
1066 tmp->prefix = xmlStrdup(cur->prefix);
1067 }
1068 if (cur->c1 != NULL)
1069 tmp->c1 = xmlCopyDocElementContent(doc,cur->c1);
1070 if (tmp->c1 != NULL)
1071 tmp->c1->parent = ret;
1072 prev = tmp;
1073 cur = cur->c2;
1074 }
1075 }
Owen Taylor3473f882001-02-23 17:55:21 +00001076 return(ret);
1077}
1078
1079/**
1080 * xmlCopyElementContent:
Daniel Veillard01c13b52002-12-10 15:19:08 +00001081 * @cur: An element content pointer.
Owen Taylor3473f882001-02-23 17:55:21 +00001082 *
1083 * Build a copy of an element content description.
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001084 * Deprecated, use xmlCopyDocElementContent instead
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001085 *
Owen Taylor3473f882001-02-23 17:55:21 +00001086 * Returns the new xmlElementContentPtr or NULL in case of error.
1087 */
1088xmlElementContentPtr
1089xmlCopyElementContent(xmlElementContentPtr cur) {
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001090 return(xmlCopyDocElementContent(NULL, cur));
1091}
Owen Taylor3473f882001-02-23 17:55:21 +00001092
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001093/**
1094 * xmlFreeDocElementContent:
1095 * @doc: the document owning the element declaration
1096 * @cur: the element content tree to free
1097 *
1098 * Free an element content structure. The whole subtree is removed.
1099 */
1100void
1101xmlFreeDocElementContent(xmlDocPtr doc, xmlElementContentPtr cur) {
1102 xmlElementContentPtr next;
1103 xmlDictPtr dict = NULL;
1104
1105 if (doc != NULL)
1106 dict = doc->dict;
1107
1108 while (cur != NULL) {
1109 next = cur->c2;
1110 switch (cur->type) {
1111 case XML_ELEMENT_CONTENT_PCDATA:
1112 case XML_ELEMENT_CONTENT_ELEMENT:
1113 case XML_ELEMENT_CONTENT_SEQ:
1114 case XML_ELEMENT_CONTENT_OR:
1115 break;
1116 default:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001117 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001118 "Internal: ELEMENT content corrupted invalid type\n",
1119 NULL);
1120 return;
1121 }
1122 if (cur->c1 != NULL) xmlFreeDocElementContent(doc, cur->c1);
1123 if (dict) {
1124 if ((cur->name != NULL) && (!xmlDictOwns(dict, cur->name)))
1125 xmlFree((xmlChar *) cur->name);
1126 if ((cur->prefix != NULL) && (!xmlDictOwns(dict, cur->prefix)))
1127 xmlFree((xmlChar *) cur->prefix);
1128 } else {
1129 if (cur->name != NULL) xmlFree((xmlChar *) cur->name);
1130 if (cur->prefix != NULL) xmlFree((xmlChar *) cur->prefix);
1131 }
1132 xmlFree(cur);
1133 cur = next;
Owen Taylor3473f882001-02-23 17:55:21 +00001134 }
Owen Taylor3473f882001-02-23 17:55:21 +00001135}
1136
1137/**
1138 * xmlFreeElementContent:
1139 * @cur: the element content tree to free
1140 *
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001141 * Free an element content structure. The whole subtree is removed.
1142 * Deprecated, use xmlFreeDocElementContent instead
Owen Taylor3473f882001-02-23 17:55:21 +00001143 */
1144void
1145xmlFreeElementContent(xmlElementContentPtr cur) {
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001146 xmlFreeDocElementContent(NULL, cur);
Owen Taylor3473f882001-02-23 17:55:21 +00001147}
1148
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001149#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001150/**
1151 * xmlDumpElementContent:
1152 * @buf: An XML buffer
1153 * @content: An element table
1154 * @glob: 1 if one must print the englobing parenthesis, 0 otherwise
1155 *
1156 * This will dump the content of the element table as an XML DTD definition
1157 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001158static void
Owen Taylor3473f882001-02-23 17:55:21 +00001159xmlDumpElementContent(xmlBufferPtr buf, xmlElementContentPtr content, int glob) {
1160 if (content == NULL) return;
1161
1162 if (glob) xmlBufferWriteChar(buf, "(");
1163 switch (content->type) {
1164 case XML_ELEMENT_CONTENT_PCDATA:
1165 xmlBufferWriteChar(buf, "#PCDATA");
1166 break;
1167 case XML_ELEMENT_CONTENT_ELEMENT:
Daniel Veillardbe480fb2001-11-08 23:36:42 +00001168 if (content->prefix != NULL) {
1169 xmlBufferWriteCHAR(buf, content->prefix);
1170 xmlBufferWriteChar(buf, ":");
1171 }
Owen Taylor3473f882001-02-23 17:55:21 +00001172 xmlBufferWriteCHAR(buf, content->name);
1173 break;
1174 case XML_ELEMENT_CONTENT_SEQ:
1175 if ((content->c1->type == XML_ELEMENT_CONTENT_OR) ||
1176 (content->c1->type == XML_ELEMENT_CONTENT_SEQ))
1177 xmlDumpElementContent(buf, content->c1, 1);
1178 else
1179 xmlDumpElementContent(buf, content->c1, 0);
1180 xmlBufferWriteChar(buf, " , ");
William M. Brack4119d1c2004-06-24 02:24:44 +00001181 if ((content->c2->type == XML_ELEMENT_CONTENT_OR) ||
1182 ((content->c2->type == XML_ELEMENT_CONTENT_SEQ) &&
1183 (content->c2->ocur != XML_ELEMENT_CONTENT_ONCE)))
Owen Taylor3473f882001-02-23 17:55:21 +00001184 xmlDumpElementContent(buf, content->c2, 1);
1185 else
1186 xmlDumpElementContent(buf, content->c2, 0);
1187 break;
1188 case XML_ELEMENT_CONTENT_OR:
1189 if ((content->c1->type == XML_ELEMENT_CONTENT_OR) ||
1190 (content->c1->type == XML_ELEMENT_CONTENT_SEQ))
1191 xmlDumpElementContent(buf, content->c1, 1);
1192 else
1193 xmlDumpElementContent(buf, content->c1, 0);
1194 xmlBufferWriteChar(buf, " | ");
William M. Brack4119d1c2004-06-24 02:24:44 +00001195 if ((content->c2->type == XML_ELEMENT_CONTENT_SEQ) ||
1196 ((content->c2->type == XML_ELEMENT_CONTENT_OR) &&
1197 (content->c2->ocur != XML_ELEMENT_CONTENT_ONCE)))
Owen Taylor3473f882001-02-23 17:55:21 +00001198 xmlDumpElementContent(buf, content->c2, 1);
1199 else
1200 xmlDumpElementContent(buf, content->c2, 0);
1201 break;
1202 default:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001203 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001204 "Internal: ELEMENT content corrupted invalid type\n",
1205 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001206 }
1207 if (glob)
1208 xmlBufferWriteChar(buf, ")");
1209 switch (content->ocur) {
1210 case XML_ELEMENT_CONTENT_ONCE:
1211 break;
1212 case XML_ELEMENT_CONTENT_OPT:
1213 xmlBufferWriteChar(buf, "?");
1214 break;
1215 case XML_ELEMENT_CONTENT_MULT:
1216 xmlBufferWriteChar(buf, "*");
1217 break;
1218 case XML_ELEMENT_CONTENT_PLUS:
1219 xmlBufferWriteChar(buf, "+");
1220 break;
1221 }
1222}
1223
1224/**
1225 * xmlSprintfElementContent:
1226 * @buf: an output buffer
1227 * @content: An element table
Daniel Veillard1b75c3b2005-06-26 21:49:08 +00001228 * @englob: 1 if one must print the englobing parenthesis, 0 otherwise
Owen Taylor3473f882001-02-23 17:55:21 +00001229 *
Daniel Veillardd3d06722001-08-15 12:06:36 +00001230 * Deprecated, unsafe, use xmlSnprintfElementContent
1231 */
1232void
1233xmlSprintfElementContent(char *buf ATTRIBUTE_UNUSED,
1234 xmlElementContentPtr content ATTRIBUTE_UNUSED,
Daniel Veillard1b75c3b2005-06-26 21:49:08 +00001235 int englob ATTRIBUTE_UNUSED) {
Daniel Veillardd3d06722001-08-15 12:06:36 +00001236}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001237#endif /* LIBXML_OUTPUT_ENABLED */
Daniel Veillardd3d06722001-08-15 12:06:36 +00001238
1239/**
1240 * xmlSnprintfElementContent:
1241 * @buf: an output buffer
1242 * @size: the buffer size
1243 * @content: An element table
Daniel Veillard1b75c3b2005-06-26 21:49:08 +00001244 * @englob: 1 if one must print the englobing parenthesis, 0 otherwise
Daniel Veillardd3d06722001-08-15 12:06:36 +00001245 *
Owen Taylor3473f882001-02-23 17:55:21 +00001246 * This will dump the content of the element content definition
1247 * Intended just for the debug routine
1248 */
1249void
Daniel Veillard1b75c3b2005-06-26 21:49:08 +00001250xmlSnprintfElementContent(char *buf, int size, xmlElementContentPtr content, int englob) {
Daniel Veillardd3d06722001-08-15 12:06:36 +00001251 int len;
1252
Owen Taylor3473f882001-02-23 17:55:21 +00001253 if (content == NULL) return;
Daniel Veillardd3d06722001-08-15 12:06:36 +00001254 len = strlen(buf);
1255 if (size - len < 50) {
1256 if ((size - len > 4) && (buf[len - 1] != '.'))
1257 strcat(buf, " ...");
1258 return;
1259 }
Daniel Veillard1b75c3b2005-06-26 21:49:08 +00001260 if (englob) strcat(buf, "(");
Owen Taylor3473f882001-02-23 17:55:21 +00001261 switch (content->type) {
1262 case XML_ELEMENT_CONTENT_PCDATA:
1263 strcat(buf, "#PCDATA");
1264 break;
1265 case XML_ELEMENT_CONTENT_ELEMENT:
Daniel Veillardbe480fb2001-11-08 23:36:42 +00001266 if (content->prefix != NULL) {
Daniel Veillard4b3a84f2002-03-19 14:36:46 +00001267 if (size - len < xmlStrlen(content->prefix) + 10) {
Daniel Veillardbe480fb2001-11-08 23:36:42 +00001268 strcat(buf, " ...");
1269 return;
1270 }
1271 strcat(buf, (char *) content->prefix);
1272 strcat(buf, ":");
1273 }
Daniel Veillard4b3a84f2002-03-19 14:36:46 +00001274 if (size - len < xmlStrlen(content->name) + 10) {
Daniel Veillardd3d06722001-08-15 12:06:36 +00001275 strcat(buf, " ...");
1276 return;
1277 }
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001278 if (content->name != NULL)
1279 strcat(buf, (char *) content->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001280 break;
1281 case XML_ELEMENT_CONTENT_SEQ:
1282 if ((content->c1->type == XML_ELEMENT_CONTENT_OR) ||
1283 (content->c1->type == XML_ELEMENT_CONTENT_SEQ))
Daniel Veillardd3d06722001-08-15 12:06:36 +00001284 xmlSnprintfElementContent(buf, size, content->c1, 1);
Owen Taylor3473f882001-02-23 17:55:21 +00001285 else
Daniel Veillardd3d06722001-08-15 12:06:36 +00001286 xmlSnprintfElementContent(buf, size, content->c1, 0);
1287 len = strlen(buf);
1288 if (size - len < 50) {
1289 if ((size - len > 4) && (buf[len - 1] != '.'))
1290 strcat(buf, " ...");
1291 return;
1292 }
Owen Taylor3473f882001-02-23 17:55:21 +00001293 strcat(buf, " , ");
Daniel Veillard5acfd6b2002-09-18 16:29:02 +00001294 if (((content->c2->type == XML_ELEMENT_CONTENT_OR) ||
1295 (content->c2->ocur != XML_ELEMENT_CONTENT_ONCE)) &&
1296 (content->c2->type != XML_ELEMENT_CONTENT_ELEMENT))
Daniel Veillardd3d06722001-08-15 12:06:36 +00001297 xmlSnprintfElementContent(buf, size, content->c2, 1);
Owen Taylor3473f882001-02-23 17:55:21 +00001298 else
Daniel Veillardd3d06722001-08-15 12:06:36 +00001299 xmlSnprintfElementContent(buf, size, content->c2, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00001300 break;
1301 case XML_ELEMENT_CONTENT_OR:
1302 if ((content->c1->type == XML_ELEMENT_CONTENT_OR) ||
1303 (content->c1->type == XML_ELEMENT_CONTENT_SEQ))
Daniel Veillardd3d06722001-08-15 12:06:36 +00001304 xmlSnprintfElementContent(buf, size, content->c1, 1);
Owen Taylor3473f882001-02-23 17:55:21 +00001305 else
Daniel Veillardd3d06722001-08-15 12:06:36 +00001306 xmlSnprintfElementContent(buf, size, content->c1, 0);
1307 len = strlen(buf);
1308 if (size - len < 50) {
1309 if ((size - len > 4) && (buf[len - 1] != '.'))
1310 strcat(buf, " ...");
1311 return;
1312 }
Owen Taylor3473f882001-02-23 17:55:21 +00001313 strcat(buf, " | ");
Daniel Veillard5acfd6b2002-09-18 16:29:02 +00001314 if (((content->c2->type == XML_ELEMENT_CONTENT_SEQ) ||
1315 (content->c2->ocur != XML_ELEMENT_CONTENT_ONCE)) &&
1316 (content->c2->type != XML_ELEMENT_CONTENT_ELEMENT))
Daniel Veillardd3d06722001-08-15 12:06:36 +00001317 xmlSnprintfElementContent(buf, size, content->c2, 1);
Owen Taylor3473f882001-02-23 17:55:21 +00001318 else
Daniel Veillardd3d06722001-08-15 12:06:36 +00001319 xmlSnprintfElementContent(buf, size, content->c2, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00001320 break;
1321 }
Daniel Veillard1b75c3b2005-06-26 21:49:08 +00001322 if (englob)
Owen Taylor3473f882001-02-23 17:55:21 +00001323 strcat(buf, ")");
1324 switch (content->ocur) {
1325 case XML_ELEMENT_CONTENT_ONCE:
1326 break;
1327 case XML_ELEMENT_CONTENT_OPT:
1328 strcat(buf, "?");
1329 break;
1330 case XML_ELEMENT_CONTENT_MULT:
1331 strcat(buf, "*");
1332 break;
1333 case XML_ELEMENT_CONTENT_PLUS:
1334 strcat(buf, "+");
1335 break;
1336 }
1337}
1338
1339/****************************************************************
1340 * *
1341 * Registration of DTD declarations *
1342 * *
1343 ****************************************************************/
1344
1345/**
Owen Taylor3473f882001-02-23 17:55:21 +00001346 * xmlFreeElement:
1347 * @elem: An element
1348 *
1349 * Deallocate the memory used by an element definition
1350 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001351static void
Owen Taylor3473f882001-02-23 17:55:21 +00001352xmlFreeElement(xmlElementPtr elem) {
1353 if (elem == NULL) return;
1354 xmlUnlinkNode((xmlNodePtr) elem);
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001355 xmlFreeDocElementContent(elem->doc, elem->content);
Owen Taylor3473f882001-02-23 17:55:21 +00001356 if (elem->name != NULL)
1357 xmlFree((xmlChar *) elem->name);
1358 if (elem->prefix != NULL)
1359 xmlFree((xmlChar *) elem->prefix);
Daniel Veillard84d70a42002-09-16 10:51:38 +00001360#ifdef LIBXML_REGEXP_ENABLED
1361 if (elem->contModel != NULL)
1362 xmlRegFreeRegexp(elem->contModel);
1363#endif
Owen Taylor3473f882001-02-23 17:55:21 +00001364 xmlFree(elem);
1365}
1366
1367
1368/**
1369 * xmlAddElementDecl:
1370 * @ctxt: the validation context
1371 * @dtd: pointer to the DTD
1372 * @name: the entity name
1373 * @type: the element type
1374 * @content: the element content tree or NULL
1375 *
1376 * Register a new element declaration
1377 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001378 * Returns NULL if not, otherwise the entity
Owen Taylor3473f882001-02-23 17:55:21 +00001379 */
1380xmlElementPtr
William M. Brackedb65a72004-02-06 07:36:04 +00001381xmlAddElementDecl(xmlValidCtxtPtr ctxt,
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001382 xmlDtdPtr dtd, const xmlChar *name,
Owen Taylor3473f882001-02-23 17:55:21 +00001383 xmlElementTypeVal type,
1384 xmlElementContentPtr content) {
1385 xmlElementPtr ret;
1386 xmlElementTablePtr table;
Daniel Veillarda10efa82001-04-18 13:09:01 +00001387 xmlAttributePtr oldAttributes = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001388 xmlChar *ns, *uqname;
1389
1390 if (dtd == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001391 return(NULL);
1392 }
1393 if (name == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001394 return(NULL);
1395 }
Daniel Veillard316a5c32005-01-23 22:56:39 +00001396
Owen Taylor3473f882001-02-23 17:55:21 +00001397 switch (type) {
1398 case XML_ELEMENT_TYPE_EMPTY:
1399 if (content != NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001400 xmlErrValid(ctxt, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001401 "xmlAddElementDecl: content != NULL for EMPTY\n",
1402 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001403 return(NULL);
1404 }
1405 break;
1406 case XML_ELEMENT_TYPE_ANY:
1407 if (content != NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001408 xmlErrValid(ctxt, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001409 "xmlAddElementDecl: content != NULL for ANY\n",
1410 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001411 return(NULL);
1412 }
1413 break;
1414 case XML_ELEMENT_TYPE_MIXED:
1415 if (content == NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001416 xmlErrValid(ctxt, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001417 "xmlAddElementDecl: content == NULL for MIXED\n",
1418 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001419 return(NULL);
1420 }
1421 break;
1422 case XML_ELEMENT_TYPE_ELEMENT:
1423 if (content == NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001424 xmlErrValid(ctxt, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001425 "xmlAddElementDecl: content == NULL for ELEMENT\n",
1426 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001427 return(NULL);
1428 }
1429 break;
1430 default:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001431 xmlErrValid(ctxt, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001432 "Internal: ELEMENT decl corrupted invalid type\n",
1433 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001434 return(NULL);
1435 }
1436
1437 /*
1438 * check if name is a QName
1439 */
1440 uqname = xmlSplitQName2(name, &ns);
1441 if (uqname != NULL)
1442 name = uqname;
1443
1444 /*
1445 * Create the Element table if needed.
1446 */
1447 table = (xmlElementTablePtr) dtd->elements;
1448 if (table == NULL) {
Daniel Veillard316a5c32005-01-23 22:56:39 +00001449 xmlDictPtr dict = NULL;
1450
1451 if (dtd->doc != NULL)
1452 dict = dtd->doc->dict;
1453 table = xmlHashCreateDict(0, dict);
Owen Taylor3473f882001-02-23 17:55:21 +00001454 dtd->elements = (void *) table;
1455 }
1456 if (table == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001457 xmlVErrMemory(ctxt,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001458 "xmlAddElementDecl: Table creation failed!\n");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001459 if (uqname != NULL)
1460 xmlFree(uqname);
1461 if (ns != NULL)
1462 xmlFree(ns);
Owen Taylor3473f882001-02-23 17:55:21 +00001463 return(NULL);
1464 }
1465
Daniel Veillarda10efa82001-04-18 13:09:01 +00001466 /*
1467 * lookup old attributes inserted on an undefined element in the
1468 * internal subset.
1469 */
1470 if ((dtd->doc != NULL) && (dtd->doc->intSubset != NULL)) {
1471 ret = xmlHashLookup2(dtd->doc->intSubset->elements, name, ns);
1472 if ((ret != NULL) && (ret->etype == XML_ELEMENT_TYPE_UNDEFINED)) {
1473 oldAttributes = ret->attributes;
1474 ret->attributes = NULL;
1475 xmlHashRemoveEntry2(dtd->doc->intSubset->elements, name, ns, NULL);
1476 xmlFreeElement(ret);
1477 }
Owen Taylor3473f882001-02-23 17:55:21 +00001478 }
Owen Taylor3473f882001-02-23 17:55:21 +00001479
1480 /*
Daniel Veillarda10efa82001-04-18 13:09:01 +00001481 * The element may already be present if one of its attribute
1482 * was registered first
1483 */
1484 ret = xmlHashLookup2(table, name, ns);
1485 if (ret != NULL) {
1486 if (ret->etype != XML_ELEMENT_TYPE_UNDEFINED) {
Daniel Veillard4432df22003-09-28 18:58:27 +00001487#ifdef LIBXML_VALID_ENABLED
Daniel Veillarda10efa82001-04-18 13:09:01 +00001488 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001489 * The element is already defined in this DTD.
Daniel Veillarda10efa82001-04-18 13:09:01 +00001490 */
Daniel Veillardbb5abab2003-10-03 22:21:51 +00001491 xmlErrValidNode(ctxt, (xmlNodePtr) dtd, XML_DTD_ELEM_REDEFINED,
1492 "Redefinition of element %s\n",
1493 name, NULL, NULL);
Daniel Veillard4432df22003-09-28 18:58:27 +00001494#endif /* LIBXML_VALID_ENABLED */
Daniel Veillarda10efa82001-04-18 13:09:01 +00001495 if (uqname != NULL)
1496 xmlFree(uqname);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001497 if (ns != NULL)
1498 xmlFree(ns);
Daniel Veillarda10efa82001-04-18 13:09:01 +00001499 return(NULL);
1500 }
William M. Brackd6e347e2005-04-15 01:34:41 +00001501 if (ns != NULL) {
1502 xmlFree(ns);
1503 ns = NULL;
1504 }
Daniel Veillarda10efa82001-04-18 13:09:01 +00001505 } else {
1506 ret = (xmlElementPtr) xmlMalloc(sizeof(xmlElement));
1507 if (ret == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001508 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001509 if (uqname != NULL)
1510 xmlFree(uqname);
1511 if (ns != NULL)
1512 xmlFree(ns);
Daniel Veillarda10efa82001-04-18 13:09:01 +00001513 return(NULL);
1514 }
1515 memset(ret, 0, sizeof(xmlElement));
1516 ret->type = XML_ELEMENT_DECL;
1517
1518 /*
1519 * fill the structure.
1520 */
1521 ret->name = xmlStrdup(name);
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001522 if (ret->name == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001523 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00001524 if (uqname != NULL)
1525 xmlFree(uqname);
1526 if (ns != NULL)
1527 xmlFree(ns);
1528 xmlFree(ret);
1529 return(NULL);
1530 }
Daniel Veillarda10efa82001-04-18 13:09:01 +00001531 ret->prefix = ns;
1532
1533 /*
1534 * Validity Check:
1535 * Insertion must not fail
1536 */
1537 if (xmlHashAddEntry2(table, name, ns, ret)) {
Daniel Veillard4432df22003-09-28 18:58:27 +00001538#ifdef LIBXML_VALID_ENABLED
Daniel Veillarda10efa82001-04-18 13:09:01 +00001539 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001540 * The element is already defined in this DTD.
Daniel Veillarda10efa82001-04-18 13:09:01 +00001541 */
Daniel Veillardbb5abab2003-10-03 22:21:51 +00001542 xmlErrValidNode(ctxt, (xmlNodePtr) dtd, XML_DTD_ELEM_REDEFINED,
1543 "Redefinition of element %s\n",
1544 name, NULL, NULL);
Daniel Veillard4432df22003-09-28 18:58:27 +00001545#endif /* LIBXML_VALID_ENABLED */
Daniel Veillarda10efa82001-04-18 13:09:01 +00001546 xmlFreeElement(ret);
1547 if (uqname != NULL)
1548 xmlFree(uqname);
1549 return(NULL);
1550 }
William M. Brack4e52f2f2003-09-14 18:07:39 +00001551 /*
1552 * For new element, may have attributes from earlier
1553 * definition in internal subset
1554 */
1555 ret->attributes = oldAttributes;
Daniel Veillarda10efa82001-04-18 13:09:01 +00001556 }
1557
1558 /*
1559 * Finish to fill the structure.
Owen Taylor3473f882001-02-23 17:55:21 +00001560 */
1561 ret->etype = type;
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001562 /*
1563 * Avoid a stupid copy when called by the parser
1564 * and flag it by setting a special parent value
1565 * so the parser doesn't unallocate it.
1566 */
Daniel Veillardc394f732005-01-26 00:04:52 +00001567 if ((ctxt != NULL) &&
1568 ((ctxt->finishDtd == XML_CTXT_FINISH_DTD_0) ||
1569 (ctxt->finishDtd == XML_CTXT_FINISH_DTD_1))) {
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001570 ret->content = content;
1571 if (content != NULL)
1572 content->parent = (xmlElementContentPtr) 1;
1573 } else {
1574 ret->content = xmlCopyDocElementContent(dtd->doc, content);
1575 }
Owen Taylor3473f882001-02-23 17:55:21 +00001576
1577 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001578 * Link it to the DTD
Owen Taylor3473f882001-02-23 17:55:21 +00001579 */
1580 ret->parent = dtd;
1581 ret->doc = dtd->doc;
1582 if (dtd->last == NULL) {
1583 dtd->children = dtd->last = (xmlNodePtr) ret;
1584 } else {
1585 dtd->last->next = (xmlNodePtr) ret;
1586 ret->prev = dtd->last;
1587 dtd->last = (xmlNodePtr) ret;
1588 }
1589 if (uqname != NULL)
1590 xmlFree(uqname);
1591 return(ret);
1592}
1593
1594/**
1595 * xmlFreeElementTable:
1596 * @table: An element table
1597 *
1598 * Deallocate the memory used by an element hash table.
1599 */
1600void
1601xmlFreeElementTable(xmlElementTablePtr table) {
1602 xmlHashFree(table, (xmlHashDeallocator) xmlFreeElement);
1603}
1604
Daniel Veillard652327a2003-09-29 18:02:38 +00001605#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001606/**
1607 * xmlCopyElement:
1608 * @elem: An element
1609 *
1610 * Build a copy of an element.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001611 *
Owen Taylor3473f882001-02-23 17:55:21 +00001612 * Returns the new xmlElementPtr or NULL in case of error.
1613 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001614static xmlElementPtr
Owen Taylor3473f882001-02-23 17:55:21 +00001615xmlCopyElement(xmlElementPtr elem) {
1616 xmlElementPtr cur;
1617
1618 cur = (xmlElementPtr) xmlMalloc(sizeof(xmlElement));
1619 if (cur == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001620 xmlVErrMemory(NULL, "malloc failed");
Owen Taylor3473f882001-02-23 17:55:21 +00001621 return(NULL);
1622 }
1623 memset(cur, 0, sizeof(xmlElement));
1624 cur->type = XML_ELEMENT_DECL;
1625 cur->etype = elem->etype;
1626 if (elem->name != NULL)
1627 cur->name = xmlStrdup(elem->name);
1628 else
1629 cur->name = NULL;
1630 if (elem->prefix != NULL)
1631 cur->prefix = xmlStrdup(elem->prefix);
1632 else
1633 cur->prefix = NULL;
1634 cur->content = xmlCopyElementContent(elem->content);
1635 /* TODO : rebuild the attribute list on the copy */
1636 cur->attributes = NULL;
1637 return(cur);
1638}
1639
1640/**
1641 * xmlCopyElementTable:
1642 * @table: An element table
1643 *
1644 * Build a copy of an element table.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001645 *
Owen Taylor3473f882001-02-23 17:55:21 +00001646 * Returns the new xmlElementTablePtr or NULL in case of error.
1647 */
1648xmlElementTablePtr
1649xmlCopyElementTable(xmlElementTablePtr table) {
1650 return((xmlElementTablePtr) xmlHashCopy(table,
1651 (xmlHashCopier) xmlCopyElement));
1652}
Daniel Veillard652327a2003-09-29 18:02:38 +00001653#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001654
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001655#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001656/**
1657 * xmlDumpElementDecl:
1658 * @buf: the XML buffer output
1659 * @elem: An element table
1660 *
1661 * This will dump the content of the element declaration as an XML
1662 * DTD definition
1663 */
1664void
1665xmlDumpElementDecl(xmlBufferPtr buf, xmlElementPtr elem) {
Daniel Veillardce682bc2004-11-05 17:22:25 +00001666 if ((buf == NULL) || (elem == NULL))
1667 return;
Owen Taylor3473f882001-02-23 17:55:21 +00001668 switch (elem->etype) {
1669 case XML_ELEMENT_TYPE_EMPTY:
1670 xmlBufferWriteChar(buf, "<!ELEMENT ");
Daniel Veillardbe480fb2001-11-08 23:36:42 +00001671 if (elem->prefix != NULL) {
1672 xmlBufferWriteCHAR(buf, elem->prefix);
1673 xmlBufferWriteChar(buf, ":");
1674 }
Owen Taylor3473f882001-02-23 17:55:21 +00001675 xmlBufferWriteCHAR(buf, elem->name);
1676 xmlBufferWriteChar(buf, " EMPTY>\n");
1677 break;
1678 case XML_ELEMENT_TYPE_ANY:
1679 xmlBufferWriteChar(buf, "<!ELEMENT ");
Daniel Veillardbe480fb2001-11-08 23:36:42 +00001680 if (elem->prefix != NULL) {
1681 xmlBufferWriteCHAR(buf, elem->prefix);
1682 xmlBufferWriteChar(buf, ":");
1683 }
Owen Taylor3473f882001-02-23 17:55:21 +00001684 xmlBufferWriteCHAR(buf, elem->name);
1685 xmlBufferWriteChar(buf, " ANY>\n");
1686 break;
1687 case XML_ELEMENT_TYPE_MIXED:
1688 xmlBufferWriteChar(buf, "<!ELEMENT ");
Daniel Veillardbe480fb2001-11-08 23:36:42 +00001689 if (elem->prefix != NULL) {
1690 xmlBufferWriteCHAR(buf, elem->prefix);
1691 xmlBufferWriteChar(buf, ":");
1692 }
Owen Taylor3473f882001-02-23 17:55:21 +00001693 xmlBufferWriteCHAR(buf, elem->name);
1694 xmlBufferWriteChar(buf, " ");
1695 xmlDumpElementContent(buf, elem->content, 1);
1696 xmlBufferWriteChar(buf, ">\n");
1697 break;
1698 case XML_ELEMENT_TYPE_ELEMENT:
1699 xmlBufferWriteChar(buf, "<!ELEMENT ");
Daniel Veillardbe480fb2001-11-08 23:36:42 +00001700 if (elem->prefix != NULL) {
1701 xmlBufferWriteCHAR(buf, elem->prefix);
1702 xmlBufferWriteChar(buf, ":");
1703 }
Owen Taylor3473f882001-02-23 17:55:21 +00001704 xmlBufferWriteCHAR(buf, elem->name);
1705 xmlBufferWriteChar(buf, " ");
1706 xmlDumpElementContent(buf, elem->content, 1);
1707 xmlBufferWriteChar(buf, ">\n");
1708 break;
1709 default:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001710 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001711 "Internal: ELEMENT struct corrupted invalid type\n",
1712 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001713 }
1714}
1715
1716/**
William M. Brack9e660592003-10-20 14:56:06 +00001717 * xmlDumpElementDeclScan:
1718 * @elem: An element table
1719 * @buf: the XML buffer output
1720 *
1721 * This routine is used by the hash scan function. It just reverses
1722 * the arguments.
1723 */
1724static void
1725xmlDumpElementDeclScan(xmlElementPtr elem, xmlBufferPtr buf) {
1726 xmlDumpElementDecl(buf, elem);
1727}
1728
1729/**
Owen Taylor3473f882001-02-23 17:55:21 +00001730 * xmlDumpElementTable:
1731 * @buf: the XML buffer output
1732 * @table: An element table
1733 *
1734 * This will dump the content of the element table as an XML DTD definition
1735 */
1736void
1737xmlDumpElementTable(xmlBufferPtr buf, xmlElementTablePtr table) {
Daniel Veillardce682bc2004-11-05 17:22:25 +00001738 if ((buf == NULL) || (table == NULL))
1739 return;
William M. Brack9e660592003-10-20 14:56:06 +00001740 xmlHashScan(table, (xmlHashScanner) xmlDumpElementDeclScan, buf);
Owen Taylor3473f882001-02-23 17:55:21 +00001741}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001742#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001743
1744/**
1745 * xmlCreateEnumeration:
1746 * @name: the enumeration name or NULL
1747 *
1748 * create and initialize an enumeration attribute node.
1749 *
1750 * Returns the xmlEnumerationPtr just created or NULL in case
1751 * of error.
1752 */
1753xmlEnumerationPtr
Daniel Veillard2fdbd322003-08-18 12:15:38 +00001754xmlCreateEnumeration(const xmlChar *name) {
Owen Taylor3473f882001-02-23 17:55:21 +00001755 xmlEnumerationPtr ret;
1756
1757 ret = (xmlEnumerationPtr) xmlMalloc(sizeof(xmlEnumeration));
1758 if (ret == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00001759 xmlVErrMemory(NULL, "malloc failed");
Owen Taylor3473f882001-02-23 17:55:21 +00001760 return(NULL);
1761 }
1762 memset(ret, 0, sizeof(xmlEnumeration));
1763
1764 if (name != NULL)
1765 ret->name = xmlStrdup(name);
1766 return(ret);
1767}
1768
1769/**
1770 * xmlFreeEnumeration:
1771 * @cur: the tree to free.
1772 *
1773 * free an enumeration attribute node (recursive).
1774 */
1775void
1776xmlFreeEnumeration(xmlEnumerationPtr cur) {
1777 if (cur == NULL) return;
1778
1779 if (cur->next != NULL) xmlFreeEnumeration(cur->next);
1780
1781 if (cur->name != NULL) xmlFree((xmlChar *) cur->name);
Owen Taylor3473f882001-02-23 17:55:21 +00001782 xmlFree(cur);
1783}
1784
Daniel Veillard652327a2003-09-29 18:02:38 +00001785#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001786/**
1787 * xmlCopyEnumeration:
1788 * @cur: the tree to copy.
1789 *
1790 * Copy an enumeration attribute node (recursive).
1791 *
1792 * Returns the xmlEnumerationPtr just created or NULL in case
1793 * of error.
1794 */
1795xmlEnumerationPtr
1796xmlCopyEnumeration(xmlEnumerationPtr cur) {
1797 xmlEnumerationPtr ret;
1798
1799 if (cur == NULL) return(NULL);
1800 ret = xmlCreateEnumeration((xmlChar *) cur->name);
Gaurav Gupta658b86c2014-08-07 11:19:03 +08001801 if (ret == NULL) return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001802
1803 if (cur->next != NULL) ret->next = xmlCopyEnumeration(cur->next);
1804 else ret->next = NULL;
1805
1806 return(ret);
1807}
Daniel Veillard652327a2003-09-29 18:02:38 +00001808#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001809
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001810#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001811/**
1812 * xmlDumpEnumeration:
1813 * @buf: the XML buffer output
1814 * @enum: An enumeration
1815 *
1816 * This will dump the content of the enumeration
1817 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001818static void
Owen Taylor3473f882001-02-23 17:55:21 +00001819xmlDumpEnumeration(xmlBufferPtr buf, xmlEnumerationPtr cur) {
Daniel Veillardce682bc2004-11-05 17:22:25 +00001820 if ((buf == NULL) || (cur == NULL))
1821 return;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001822
Owen Taylor3473f882001-02-23 17:55:21 +00001823 xmlBufferWriteCHAR(buf, cur->name);
1824 if (cur->next == NULL)
1825 xmlBufferWriteChar(buf, ")");
1826 else {
1827 xmlBufferWriteChar(buf, " | ");
1828 xmlDumpEnumeration(buf, cur->next);
1829 }
1830}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001831#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001832
Daniel Veillard4432df22003-09-28 18:58:27 +00001833#ifdef LIBXML_VALID_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001834/**
Owen Taylor3473f882001-02-23 17:55:21 +00001835 * xmlScanIDAttributeDecl:
1836 * @ctxt: the validation context
1837 * @elem: the element name
Daniel Veillarddbee0f12005-06-27 13:42:57 +00001838 * @err: whether to raise errors here
Owen Taylor3473f882001-02-23 17:55:21 +00001839 *
1840 * Verify that the element don't have too many ID attributes
1841 * declared.
1842 *
1843 * Returns the number of ID attributes found.
1844 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001845static int
Daniel Veillarddbee0f12005-06-27 13:42:57 +00001846xmlScanIDAttributeDecl(xmlValidCtxtPtr ctxt, xmlElementPtr elem, int err) {
Owen Taylor3473f882001-02-23 17:55:21 +00001847 xmlAttributePtr cur;
1848 int ret = 0;
1849
1850 if (elem == NULL) return(0);
1851 cur = elem->attributes;
1852 while (cur != NULL) {
1853 if (cur->atype == XML_ATTRIBUTE_ID) {
1854 ret ++;
Daniel Veillarddbee0f12005-06-27 13:42:57 +00001855 if ((ret > 1) && (err))
Daniel Veillardbb5abab2003-10-03 22:21:51 +00001856 xmlErrValidNode(ctxt, (xmlNodePtr) elem, XML_DTD_MULTIPLE_ID,
Daniel Veillarda10efa82001-04-18 13:09:01 +00001857 "Element %s has too many ID attributes defined : %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00001858 elem->name, cur->name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001859 }
1860 cur = cur->nexth;
1861 }
1862 return(ret);
1863}
Daniel Veillard4432df22003-09-28 18:58:27 +00001864#endif /* LIBXML_VALID_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001865
1866/**
1867 * xmlFreeAttribute:
1868 * @elem: An attribute
1869 *
1870 * Deallocate the memory used by an attribute definition
1871 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00001872static void
Owen Taylor3473f882001-02-23 17:55:21 +00001873xmlFreeAttribute(xmlAttributePtr attr) {
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001874 xmlDictPtr dict;
1875
Owen Taylor3473f882001-02-23 17:55:21 +00001876 if (attr == NULL) return;
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001877 if (attr->doc != NULL)
1878 dict = attr->doc->dict;
1879 else
1880 dict = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001881 xmlUnlinkNode((xmlNodePtr) attr);
1882 if (attr->tree != NULL)
1883 xmlFreeEnumeration(attr->tree);
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001884 if (dict) {
1885 if ((attr->elem != NULL) && (!xmlDictOwns(dict, attr->elem)))
1886 xmlFree((xmlChar *) attr->elem);
1887 if ((attr->name != NULL) && (!xmlDictOwns(dict, attr->name)))
1888 xmlFree((xmlChar *) attr->name);
1889 if ((attr->prefix != NULL) && (!xmlDictOwns(dict, attr->prefix)))
1890 xmlFree((xmlChar *) attr->prefix);
1891 if ((attr->defaultValue != NULL) &&
1892 (!xmlDictOwns(dict, attr->defaultValue)))
1893 xmlFree((xmlChar *) attr->defaultValue);
1894 } else {
1895 if (attr->elem != NULL)
1896 xmlFree((xmlChar *) attr->elem);
1897 if (attr->name != NULL)
1898 xmlFree((xmlChar *) attr->name);
1899 if (attr->defaultValue != NULL)
1900 xmlFree((xmlChar *) attr->defaultValue);
1901 if (attr->prefix != NULL)
1902 xmlFree((xmlChar *) attr->prefix);
1903 }
Owen Taylor3473f882001-02-23 17:55:21 +00001904 xmlFree(attr);
1905}
1906
1907
1908/**
1909 * xmlAddAttributeDecl:
1910 * @ctxt: the validation context
1911 * @dtd: pointer to the DTD
1912 * @elem: the element name
1913 * @name: the attribute name
1914 * @ns: the attribute namespace prefix
1915 * @type: the attribute type
1916 * @def: the attribute default type
1917 * @defaultValue: the attribute default value
1918 * @tree: if it's an enumeration, the associated list
1919 *
1920 * Register a new attribute declaration
1921 * Note that @tree becomes the ownership of the DTD
1922 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00001923 * Returns NULL if not new, otherwise the attribute decl
Owen Taylor3473f882001-02-23 17:55:21 +00001924 */
1925xmlAttributePtr
William M. Brackedb65a72004-02-06 07:36:04 +00001926xmlAddAttributeDecl(xmlValidCtxtPtr ctxt,
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00001927 xmlDtdPtr dtd, const xmlChar *elem,
Owen Taylor3473f882001-02-23 17:55:21 +00001928 const xmlChar *name, const xmlChar *ns,
1929 xmlAttributeType type, xmlAttributeDefault def,
1930 const xmlChar *defaultValue, xmlEnumerationPtr tree) {
1931 xmlAttributePtr ret;
1932 xmlAttributeTablePtr table;
1933 xmlElementPtr elemDef;
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001934 xmlDictPtr dict = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00001935
1936 if (dtd == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001937 xmlFreeEnumeration(tree);
1938 return(NULL);
1939 }
1940 if (name == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001941 xmlFreeEnumeration(tree);
1942 return(NULL);
1943 }
1944 if (elem == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00001945 xmlFreeEnumeration(tree);
1946 return(NULL);
1947 }
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00001948 if (dtd->doc != NULL)
1949 dict = dtd->doc->dict;
Daniel Veillardd85f4f42002-03-25 10:48:46 +00001950
Daniel Veillard4432df22003-09-28 18:58:27 +00001951#ifdef LIBXML_VALID_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00001952 /*
1953 * Check the type and possibly the default value.
1954 */
1955 switch (type) {
1956 case XML_ATTRIBUTE_CDATA:
1957 break;
1958 case XML_ATTRIBUTE_ID:
1959 break;
1960 case XML_ATTRIBUTE_IDREF:
1961 break;
1962 case XML_ATTRIBUTE_IDREFS:
1963 break;
1964 case XML_ATTRIBUTE_ENTITY:
1965 break;
1966 case XML_ATTRIBUTE_ENTITIES:
1967 break;
1968 case XML_ATTRIBUTE_NMTOKEN:
1969 break;
1970 case XML_ATTRIBUTE_NMTOKENS:
1971 break;
1972 case XML_ATTRIBUTE_ENUMERATION:
1973 break;
1974 case XML_ATTRIBUTE_NOTATION:
1975 break;
1976 default:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001977 xmlErrValid(ctxt, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00001978 "Internal: ATTRIBUTE struct corrupted invalid type\n",
1979 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00001980 xmlFreeEnumeration(tree);
1981 return(NULL);
1982 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08001983 if ((defaultValue != NULL) &&
Daniel Veillardae0765b2008-07-31 19:54:59 +00001984 (!xmlValidateAttributeValueInternal(dtd->doc, type, defaultValue))) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00001985 xmlErrValidNode(ctxt, (xmlNodePtr) dtd, XML_DTD_ATTRIBUTE_DEFAULT,
1986 "Attribute %s of %s: invalid default value\n",
1987 elem, name, defaultValue);
Owen Taylor3473f882001-02-23 17:55:21 +00001988 defaultValue = NULL;
Daniel Veillard42595322004-11-08 10:52:06 +00001989 if (ctxt != NULL)
1990 ctxt->valid = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00001991 }
Daniel Veillard4432df22003-09-28 18:58:27 +00001992#endif /* LIBXML_VALID_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00001993
1994 /*
Daniel Veillardd85f4f42002-03-25 10:48:46 +00001995 * Check first that an attribute defined in the external subset wasn't
1996 * already defined in the internal subset
1997 */
1998 if ((dtd->doc != NULL) && (dtd->doc->extSubset == dtd) &&
1999 (dtd->doc->intSubset != NULL) &&
2000 (dtd->doc->intSubset->attributes != NULL)) {
2001 ret = xmlHashLookup3(dtd->doc->intSubset->attributes, name, ns, elem);
Daniel Veillardae0765b2008-07-31 19:54:59 +00002002 if (ret != NULL) {
2003 xmlFreeEnumeration(tree);
Daniel Veillardd85f4f42002-03-25 10:48:46 +00002004 return(NULL);
Daniel Veillardae0765b2008-07-31 19:54:59 +00002005 }
Daniel Veillardd85f4f42002-03-25 10:48:46 +00002006 }
2007
2008 /*
Owen Taylor3473f882001-02-23 17:55:21 +00002009 * Create the Attribute table if needed.
2010 */
2011 table = (xmlAttributeTablePtr) dtd->attributes;
2012 if (table == NULL) {
Daniel Veillard316a5c32005-01-23 22:56:39 +00002013 table = xmlHashCreateDict(0, dict);
Owen Taylor3473f882001-02-23 17:55:21 +00002014 dtd->attributes = (void *) table;
2015 }
2016 if (table == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002017 xmlVErrMemory(ctxt,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00002018 "xmlAddAttributeDecl: Table creation failed!\n");
Daniel Veillardae0765b2008-07-31 19:54:59 +00002019 xmlFreeEnumeration(tree);
Owen Taylor3473f882001-02-23 17:55:21 +00002020 return(NULL);
2021 }
2022
2023
2024 ret = (xmlAttributePtr) xmlMalloc(sizeof(xmlAttribute));
2025 if (ret == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002026 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillardae0765b2008-07-31 19:54:59 +00002027 xmlFreeEnumeration(tree);
Owen Taylor3473f882001-02-23 17:55:21 +00002028 return(NULL);
2029 }
2030 memset(ret, 0, sizeof(xmlAttribute));
2031 ret->type = XML_ATTRIBUTE_DECL;
2032
2033 /*
2034 * fill the structure.
2035 */
2036 ret->atype = type;
William M. Brackf810de02005-07-06 22:48:41 +00002037 /*
2038 * doc must be set before possible error causes call
2039 * to xmlFreeAttribute (because it's used to check on
2040 * dict use)
2041 */
2042 ret->doc = dtd->doc;
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00002043 if (dict) {
2044 ret->name = xmlDictLookup(dict, name, -1);
2045 ret->prefix = xmlDictLookup(dict, ns, -1);
2046 ret->elem = xmlDictLookup(dict, elem, -1);
2047 } else {
2048 ret->name = xmlStrdup(name);
2049 ret->prefix = xmlStrdup(ns);
2050 ret->elem = xmlStrdup(elem);
2051 }
Owen Taylor3473f882001-02-23 17:55:21 +00002052 ret->def = def;
2053 ret->tree = tree;
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00002054 if (defaultValue != NULL) {
2055 if (dict)
2056 ret->defaultValue = xmlDictLookup(dict, defaultValue, -1);
2057 else
2058 ret->defaultValue = xmlStrdup(defaultValue);
2059 }
Owen Taylor3473f882001-02-23 17:55:21 +00002060
2061 /*
2062 * Validity Check:
2063 * Search the DTD for previous declarations of the ATTLIST
2064 */
Daniel Veillardcee2b3a2005-01-25 00:22:52 +00002065 if (xmlHashAddEntry3(table, ret->name, ret->prefix, ret->elem, ret) < 0) {
Daniel Veillard4432df22003-09-28 18:58:27 +00002066#ifdef LIBXML_VALID_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002067 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002068 * The attribute is already defined in this DTD.
Owen Taylor3473f882001-02-23 17:55:21 +00002069 */
Daniel Veillardbb5abab2003-10-03 22:21:51 +00002070 xmlErrValidWarning(ctxt, (xmlNodePtr) dtd, XML_DTD_ATTRIBUTE_REDEFINED,
Daniel Veillard58e44c92002-08-02 22:19:49 +00002071 "Attribute %s of element %s: already defined\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00002072 name, elem, NULL);
Daniel Veillard4432df22003-09-28 18:58:27 +00002073#endif /* LIBXML_VALID_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002074 xmlFreeAttribute(ret);
2075 return(NULL);
2076 }
2077
2078 /*
2079 * Validity Check:
2080 * Multiple ID per element
2081 */
Daniel Veillarda10efa82001-04-18 13:09:01 +00002082 elemDef = xmlGetDtdElementDesc2(dtd, elem, 1);
Owen Taylor3473f882001-02-23 17:55:21 +00002083 if (elemDef != NULL) {
Daniel Veillard48da9102001-08-07 01:10:10 +00002084
Daniel Veillard4432df22003-09-28 18:58:27 +00002085#ifdef LIBXML_VALID_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002086 if ((type == XML_ATTRIBUTE_ID) &&
Daniel Veillarddbee0f12005-06-27 13:42:57 +00002087 (xmlScanIDAttributeDecl(NULL, elemDef, 1) != 0)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00002088 xmlErrValidNode(ctxt, (xmlNodePtr) dtd, XML_DTD_MULTIPLE_ID,
Owen Taylor3473f882001-02-23 17:55:21 +00002089 "Element %s has too may ID attributes defined : %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00002090 elem, name, NULL);
Daniel Veillard42595322004-11-08 10:52:06 +00002091 if (ctxt != NULL)
2092 ctxt->valid = 0;
Daniel Veillardc7612992002-02-17 22:47:37 +00002093 }
Daniel Veillard4432df22003-09-28 18:58:27 +00002094#endif /* LIBXML_VALID_ENABLED */
Daniel Veillardc7612992002-02-17 22:47:37 +00002095
Daniel Veillard48da9102001-08-07 01:10:10 +00002096 /*
2097 * Insert namespace default def first they need to be
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002098 * processed first.
Daniel Veillard48da9102001-08-07 01:10:10 +00002099 */
2100 if ((xmlStrEqual(ret->name, BAD_CAST "xmlns")) ||
2101 ((ret->prefix != NULL &&
2102 (xmlStrEqual(ret->prefix, BAD_CAST "xmlns"))))) {
2103 ret->nexth = elemDef->attributes;
2104 elemDef->attributes = ret;
2105 } else {
2106 xmlAttributePtr tmp = elemDef->attributes;
2107
2108 while ((tmp != NULL) &&
2109 ((xmlStrEqual(tmp->name, BAD_CAST "xmlns")) ||
2110 ((ret->prefix != NULL &&
2111 (xmlStrEqual(ret->prefix, BAD_CAST "xmlns")))))) {
2112 if (tmp->nexth == NULL)
2113 break;
2114 tmp = tmp->nexth;
2115 }
2116 if (tmp != NULL) {
2117 ret->nexth = tmp->nexth;
2118 tmp->nexth = ret;
2119 } else {
2120 ret->nexth = elemDef->attributes;
2121 elemDef->attributes = ret;
2122 }
2123 }
Owen Taylor3473f882001-02-23 17:55:21 +00002124 }
2125
2126 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002127 * Link it to the DTD
Owen Taylor3473f882001-02-23 17:55:21 +00002128 */
2129 ret->parent = dtd;
Owen Taylor3473f882001-02-23 17:55:21 +00002130 if (dtd->last == NULL) {
2131 dtd->children = dtd->last = (xmlNodePtr) ret;
2132 } else {
2133 dtd->last->next = (xmlNodePtr) ret;
2134 ret->prev = dtd->last;
2135 dtd->last = (xmlNodePtr) ret;
2136 }
2137 return(ret);
2138}
2139
2140/**
2141 * xmlFreeAttributeTable:
2142 * @table: An attribute table
2143 *
2144 * Deallocate the memory used by an entities hash table.
2145 */
2146void
2147xmlFreeAttributeTable(xmlAttributeTablePtr table) {
2148 xmlHashFree(table, (xmlHashDeallocator) xmlFreeAttribute);
2149}
2150
Daniel Veillard652327a2003-09-29 18:02:38 +00002151#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002152/**
2153 * xmlCopyAttribute:
2154 * @attr: An attribute
2155 *
2156 * Build a copy of an attribute.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002157 *
Owen Taylor3473f882001-02-23 17:55:21 +00002158 * Returns the new xmlAttributePtr or NULL in case of error.
2159 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002160static xmlAttributePtr
Owen Taylor3473f882001-02-23 17:55:21 +00002161xmlCopyAttribute(xmlAttributePtr attr) {
2162 xmlAttributePtr cur;
2163
2164 cur = (xmlAttributePtr) xmlMalloc(sizeof(xmlAttribute));
2165 if (cur == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002166 xmlVErrMemory(NULL, "malloc failed");
Owen Taylor3473f882001-02-23 17:55:21 +00002167 return(NULL);
2168 }
2169 memset(cur, 0, sizeof(xmlAttribute));
Daniel Veillard36065812002-01-24 15:02:46 +00002170 cur->type = XML_ATTRIBUTE_DECL;
Owen Taylor3473f882001-02-23 17:55:21 +00002171 cur->atype = attr->atype;
2172 cur->def = attr->def;
2173 cur->tree = xmlCopyEnumeration(attr->tree);
2174 if (attr->elem != NULL)
2175 cur->elem = xmlStrdup(attr->elem);
2176 if (attr->name != NULL)
2177 cur->name = xmlStrdup(attr->name);
Daniel Veillard36065812002-01-24 15:02:46 +00002178 if (attr->prefix != NULL)
2179 cur->prefix = xmlStrdup(attr->prefix);
Owen Taylor3473f882001-02-23 17:55:21 +00002180 if (attr->defaultValue != NULL)
2181 cur->defaultValue = xmlStrdup(attr->defaultValue);
2182 return(cur);
2183}
2184
2185/**
2186 * xmlCopyAttributeTable:
2187 * @table: An attribute table
2188 *
2189 * Build a copy of an attribute table.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002190 *
Owen Taylor3473f882001-02-23 17:55:21 +00002191 * Returns the new xmlAttributeTablePtr or NULL in case of error.
2192 */
2193xmlAttributeTablePtr
2194xmlCopyAttributeTable(xmlAttributeTablePtr table) {
2195 return((xmlAttributeTablePtr) xmlHashCopy(table,
2196 (xmlHashCopier) xmlCopyAttribute));
2197}
Daniel Veillard652327a2003-09-29 18:02:38 +00002198#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002199
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002200#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002201/**
2202 * xmlDumpAttributeDecl:
2203 * @buf: the XML buffer output
2204 * @attr: An attribute declaration
2205 *
2206 * This will dump the content of the attribute declaration as an XML
2207 * DTD definition
2208 */
2209void
2210xmlDumpAttributeDecl(xmlBufferPtr buf, xmlAttributePtr attr) {
Daniel Veillardce682bc2004-11-05 17:22:25 +00002211 if ((buf == NULL) || (attr == NULL))
2212 return;
Owen Taylor3473f882001-02-23 17:55:21 +00002213 xmlBufferWriteChar(buf, "<!ATTLIST ");
2214 xmlBufferWriteCHAR(buf, attr->elem);
2215 xmlBufferWriteChar(buf, " ");
2216 if (attr->prefix != NULL) {
2217 xmlBufferWriteCHAR(buf, attr->prefix);
2218 xmlBufferWriteChar(buf, ":");
2219 }
2220 xmlBufferWriteCHAR(buf, attr->name);
2221 switch (attr->atype) {
2222 case XML_ATTRIBUTE_CDATA:
2223 xmlBufferWriteChar(buf, " CDATA");
2224 break;
2225 case XML_ATTRIBUTE_ID:
2226 xmlBufferWriteChar(buf, " ID");
2227 break;
2228 case XML_ATTRIBUTE_IDREF:
2229 xmlBufferWriteChar(buf, " IDREF");
2230 break;
2231 case XML_ATTRIBUTE_IDREFS:
2232 xmlBufferWriteChar(buf, " IDREFS");
2233 break;
2234 case XML_ATTRIBUTE_ENTITY:
2235 xmlBufferWriteChar(buf, " ENTITY");
2236 break;
2237 case XML_ATTRIBUTE_ENTITIES:
2238 xmlBufferWriteChar(buf, " ENTITIES");
2239 break;
2240 case XML_ATTRIBUTE_NMTOKEN:
2241 xmlBufferWriteChar(buf, " NMTOKEN");
2242 break;
2243 case XML_ATTRIBUTE_NMTOKENS:
2244 xmlBufferWriteChar(buf, " NMTOKENS");
2245 break;
2246 case XML_ATTRIBUTE_ENUMERATION:
2247 xmlBufferWriteChar(buf, " (");
2248 xmlDumpEnumeration(buf, attr->tree);
2249 break;
2250 case XML_ATTRIBUTE_NOTATION:
2251 xmlBufferWriteChar(buf, " NOTATION (");
2252 xmlDumpEnumeration(buf, attr->tree);
2253 break;
2254 default:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002255 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00002256 "Internal: ATTRIBUTE struct corrupted invalid type\n",
2257 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00002258 }
2259 switch (attr->def) {
2260 case XML_ATTRIBUTE_NONE:
2261 break;
2262 case XML_ATTRIBUTE_REQUIRED:
2263 xmlBufferWriteChar(buf, " #REQUIRED");
2264 break;
2265 case XML_ATTRIBUTE_IMPLIED:
2266 xmlBufferWriteChar(buf, " #IMPLIED");
2267 break;
2268 case XML_ATTRIBUTE_FIXED:
2269 xmlBufferWriteChar(buf, " #FIXED");
2270 break;
2271 default:
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002272 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00002273 "Internal: ATTRIBUTE struct corrupted invalid def\n",
2274 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00002275 }
2276 if (attr->defaultValue != NULL) {
2277 xmlBufferWriteChar(buf, " ");
2278 xmlBufferWriteQuotedString(buf, attr->defaultValue);
2279 }
2280 xmlBufferWriteChar(buf, ">\n");
2281}
2282
2283/**
William M. Brack9e660592003-10-20 14:56:06 +00002284 * xmlDumpAttributeDeclScan:
2285 * @attr: An attribute declaration
2286 * @buf: the XML buffer output
2287 *
2288 * This is used with the hash scan function - just reverses arguments
2289 */
2290static void
2291xmlDumpAttributeDeclScan(xmlAttributePtr attr, xmlBufferPtr buf) {
2292 xmlDumpAttributeDecl(buf, attr);
2293}
2294
2295/**
Owen Taylor3473f882001-02-23 17:55:21 +00002296 * xmlDumpAttributeTable:
2297 * @buf: the XML buffer output
2298 * @table: An attribute table
2299 *
2300 * This will dump the content of the attribute table as an XML DTD definition
2301 */
2302void
2303xmlDumpAttributeTable(xmlBufferPtr buf, xmlAttributeTablePtr table) {
Daniel Veillardce682bc2004-11-05 17:22:25 +00002304 if ((buf == NULL) || (table == NULL))
2305 return;
William M. Brack9e660592003-10-20 14:56:06 +00002306 xmlHashScan(table, (xmlHashScanner) xmlDumpAttributeDeclScan, buf);
Owen Taylor3473f882001-02-23 17:55:21 +00002307}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002308#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002309
2310/************************************************************************
2311 * *
2312 * NOTATIONs *
2313 * *
2314 ************************************************************************/
2315/**
Owen Taylor3473f882001-02-23 17:55:21 +00002316 * xmlFreeNotation:
2317 * @not: A notation
2318 *
2319 * Deallocate the memory used by an notation definition
2320 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002321static void
Owen Taylor3473f882001-02-23 17:55:21 +00002322xmlFreeNotation(xmlNotationPtr nota) {
2323 if (nota == NULL) return;
2324 if (nota->name != NULL)
2325 xmlFree((xmlChar *) nota->name);
2326 if (nota->PublicID != NULL)
2327 xmlFree((xmlChar *) nota->PublicID);
2328 if (nota->SystemID != NULL)
2329 xmlFree((xmlChar *) nota->SystemID);
Owen Taylor3473f882001-02-23 17:55:21 +00002330 xmlFree(nota);
2331}
2332
2333
2334/**
2335 * xmlAddNotationDecl:
2336 * @dtd: pointer to the DTD
2337 * @ctxt: the validation context
2338 * @name: the entity name
2339 * @PublicID: the public identifier or NULL
2340 * @SystemID: the system identifier or NULL
2341 *
2342 * Register a new notation declaration
2343 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002344 * Returns NULL if not, otherwise the entity
Owen Taylor3473f882001-02-23 17:55:21 +00002345 */
2346xmlNotationPtr
William M. Brackedb65a72004-02-06 07:36:04 +00002347xmlAddNotationDecl(xmlValidCtxtPtr ctxt, xmlDtdPtr dtd,
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002348 const xmlChar *name,
Owen Taylor3473f882001-02-23 17:55:21 +00002349 const xmlChar *PublicID, const xmlChar *SystemID) {
2350 xmlNotationPtr ret;
2351 xmlNotationTablePtr table;
2352
2353 if (dtd == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002354 return(NULL);
2355 }
2356 if (name == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002357 return(NULL);
2358 }
2359 if ((PublicID == NULL) && (SystemID == NULL)) {
Daniel Veillard7aea52d2002-02-17 23:07:47 +00002360 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00002361 }
2362
2363 /*
2364 * Create the Notation table if needed.
2365 */
2366 table = (xmlNotationTablePtr) dtd->notations;
Daniel Veillard316a5c32005-01-23 22:56:39 +00002367 if (table == NULL) {
2368 xmlDictPtr dict = NULL;
2369 if (dtd->doc != NULL)
2370 dict = dtd->doc->dict;
2371
2372 dtd->notations = table = xmlHashCreateDict(0, dict);
2373 }
Owen Taylor3473f882001-02-23 17:55:21 +00002374 if (table == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002375 xmlVErrMemory(ctxt,
Owen Taylor3473f882001-02-23 17:55:21 +00002376 "xmlAddNotationDecl: Table creation failed!\n");
2377 return(NULL);
2378 }
2379
2380 ret = (xmlNotationPtr) xmlMalloc(sizeof(xmlNotation));
2381 if (ret == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002382 xmlVErrMemory(ctxt, "malloc failed");
Owen Taylor3473f882001-02-23 17:55:21 +00002383 return(NULL);
2384 }
2385 memset(ret, 0, sizeof(xmlNotation));
2386
2387 /*
2388 * fill the structure.
2389 */
2390 ret->name = xmlStrdup(name);
2391 if (SystemID != NULL)
2392 ret->SystemID = xmlStrdup(SystemID);
2393 if (PublicID != NULL)
2394 ret->PublicID = xmlStrdup(PublicID);
2395
2396 /*
2397 * Validity Check:
2398 * Check the DTD for previous declarations of the ATTLIST
2399 */
2400 if (xmlHashAddEntry(table, name, ret)) {
Daniel Veillard4432df22003-09-28 18:58:27 +00002401#ifdef LIBXML_VALID_ENABLED
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002402 xmlErrValid(NULL, XML_DTD_NOTATION_REDEFINED,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00002403 "xmlAddNotationDecl: %s already defined\n",
2404 (const char *) name);
Daniel Veillard4432df22003-09-28 18:58:27 +00002405#endif /* LIBXML_VALID_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002406 xmlFreeNotation(ret);
2407 return(NULL);
2408 }
2409 return(ret);
2410}
2411
2412/**
2413 * xmlFreeNotationTable:
2414 * @table: An notation table
2415 *
2416 * Deallocate the memory used by an entities hash table.
2417 */
2418void
2419xmlFreeNotationTable(xmlNotationTablePtr table) {
2420 xmlHashFree(table, (xmlHashDeallocator) xmlFreeNotation);
2421}
2422
Daniel Veillard652327a2003-09-29 18:02:38 +00002423#ifdef LIBXML_TREE_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002424/**
2425 * xmlCopyNotation:
2426 * @nota: A notation
2427 *
2428 * Build a copy of a notation.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002429 *
Owen Taylor3473f882001-02-23 17:55:21 +00002430 * Returns the new xmlNotationPtr or NULL in case of error.
2431 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002432static xmlNotationPtr
Owen Taylor3473f882001-02-23 17:55:21 +00002433xmlCopyNotation(xmlNotationPtr nota) {
2434 xmlNotationPtr cur;
2435
2436 cur = (xmlNotationPtr) xmlMalloc(sizeof(xmlNotation));
2437 if (cur == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002438 xmlVErrMemory(NULL, "malloc failed");
Owen Taylor3473f882001-02-23 17:55:21 +00002439 return(NULL);
2440 }
2441 if (nota->name != NULL)
2442 cur->name = xmlStrdup(nota->name);
2443 else
2444 cur->name = NULL;
2445 if (nota->PublicID != NULL)
2446 cur->PublicID = xmlStrdup(nota->PublicID);
2447 else
2448 cur->PublicID = NULL;
2449 if (nota->SystemID != NULL)
2450 cur->SystemID = xmlStrdup(nota->SystemID);
2451 else
2452 cur->SystemID = NULL;
2453 return(cur);
2454}
2455
2456/**
2457 * xmlCopyNotationTable:
2458 * @table: A notation table
2459 *
2460 * Build a copy of a notation table.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002461 *
Owen Taylor3473f882001-02-23 17:55:21 +00002462 * Returns the new xmlNotationTablePtr or NULL in case of error.
2463 */
2464xmlNotationTablePtr
2465xmlCopyNotationTable(xmlNotationTablePtr table) {
2466 return((xmlNotationTablePtr) xmlHashCopy(table,
2467 (xmlHashCopier) xmlCopyNotation));
2468}
Daniel Veillard652327a2003-09-29 18:02:38 +00002469#endif /* LIBXML_TREE_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002470
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002471#ifdef LIBXML_OUTPUT_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002472/**
2473 * xmlDumpNotationDecl:
2474 * @buf: the XML buffer output
2475 * @nota: A notation declaration
2476 *
2477 * This will dump the content the notation declaration as an XML DTD definition
2478 */
2479void
2480xmlDumpNotationDecl(xmlBufferPtr buf, xmlNotationPtr nota) {
Daniel Veillardce682bc2004-11-05 17:22:25 +00002481 if ((buf == NULL) || (nota == NULL))
2482 return;
Owen Taylor3473f882001-02-23 17:55:21 +00002483 xmlBufferWriteChar(buf, "<!NOTATION ");
2484 xmlBufferWriteCHAR(buf, nota->name);
2485 if (nota->PublicID != NULL) {
2486 xmlBufferWriteChar(buf, " PUBLIC ");
2487 xmlBufferWriteQuotedString(buf, nota->PublicID);
2488 if (nota->SystemID != NULL) {
2489 xmlBufferWriteChar(buf, " ");
Daniel Veillard41c4a752004-09-08 20:55:38 +00002490 xmlBufferWriteQuotedString(buf, nota->SystemID);
Owen Taylor3473f882001-02-23 17:55:21 +00002491 }
2492 } else {
2493 xmlBufferWriteChar(buf, " SYSTEM ");
Daniel Veillard41c4a752004-09-08 20:55:38 +00002494 xmlBufferWriteQuotedString(buf, nota->SystemID);
Owen Taylor3473f882001-02-23 17:55:21 +00002495 }
2496 xmlBufferWriteChar(buf, " >\n");
2497}
2498
2499/**
William M. Brack9e660592003-10-20 14:56:06 +00002500 * xmlDumpNotationDeclScan:
2501 * @nota: A notation declaration
2502 * @buf: the XML buffer output
2503 *
2504 * This is called with the hash scan function, and just reverses args
2505 */
2506static void
2507xmlDumpNotationDeclScan(xmlNotationPtr nota, xmlBufferPtr buf) {
2508 xmlDumpNotationDecl(buf, nota);
2509}
2510
2511/**
Owen Taylor3473f882001-02-23 17:55:21 +00002512 * xmlDumpNotationTable:
2513 * @buf: the XML buffer output
2514 * @table: A notation table
2515 *
2516 * This will dump the content of the notation table as an XML DTD definition
2517 */
2518void
2519xmlDumpNotationTable(xmlBufferPtr buf, xmlNotationTablePtr table) {
Daniel Veillardce682bc2004-11-05 17:22:25 +00002520 if ((buf == NULL) || (table == NULL))
2521 return;
William M. Brack9e660592003-10-20 14:56:06 +00002522 xmlHashScan(table, (xmlHashScanner) xmlDumpNotationDeclScan, buf);
Owen Taylor3473f882001-02-23 17:55:21 +00002523}
Daniel Veillarda9cce9c2003-09-29 13:20:24 +00002524#endif /* LIBXML_OUTPUT_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002525
2526/************************************************************************
2527 * *
2528 * IDs *
2529 * *
2530 ************************************************************************/
2531/**
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002532 * DICT_FREE:
2533 * @str: a string
2534 *
Xin Li28c53d32017-03-07 00:33:02 +00002535 * Free a string if it is not owned by the "dict" dictionary in the
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002536 * current scope
2537 */
2538#define DICT_FREE(str) \
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002539 if ((str) && ((!dict) || \
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002540 (xmlDictOwns(dict, (const xmlChar *)(str)) == 0))) \
2541 xmlFree((char *)(str));
2542
2543/**
Owen Taylor3473f882001-02-23 17:55:21 +00002544 * xmlFreeID:
2545 * @not: A id
2546 *
2547 * Deallocate the memory used by an id definition
2548 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00002549static void
Owen Taylor3473f882001-02-23 17:55:21 +00002550xmlFreeID(xmlIDPtr id) {
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002551 xmlDictPtr dict = NULL;
2552
Owen Taylor3473f882001-02-23 17:55:21 +00002553 if (id == NULL) return;
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002554
2555 if (id->doc != NULL)
2556 dict = id->doc->dict;
2557
Owen Taylor3473f882001-02-23 17:55:21 +00002558 if (id->value != NULL)
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002559 DICT_FREE(id->value)
Daniel Veillardea7751d2002-12-20 00:16:24 +00002560 if (id->name != NULL)
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002561 DICT_FREE(id->name)
Owen Taylor3473f882001-02-23 17:55:21 +00002562 xmlFree(id);
2563}
2564
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002565
Owen Taylor3473f882001-02-23 17:55:21 +00002566/**
2567 * xmlAddID:
2568 * @ctxt: the validation context
2569 * @doc: pointer to the document
2570 * @value: the value name
2571 * @attr: the attribute holding the ID
2572 *
2573 * Register a new id declaration
2574 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002575 * Returns NULL if not, otherwise the new xmlIDPtr
Owen Taylor3473f882001-02-23 17:55:21 +00002576 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002577xmlIDPtr
Owen Taylor3473f882001-02-23 17:55:21 +00002578xmlAddID(xmlValidCtxtPtr ctxt, xmlDocPtr doc, const xmlChar *value,
2579 xmlAttrPtr attr) {
2580 xmlIDPtr ret;
2581 xmlIDTablePtr table;
2582
2583 if (doc == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002584 return(NULL);
2585 }
2586 if (value == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002587 return(NULL);
2588 }
2589 if (attr == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002590 return(NULL);
2591 }
2592
2593 /*
2594 * Create the ID table if needed.
2595 */
2596 table = (xmlIDTablePtr) doc->ids;
Daniel Veillard316a5c32005-01-23 22:56:39 +00002597 if (table == NULL) {
2598 doc->ids = table = xmlHashCreateDict(0, doc->dict);
2599 }
Owen Taylor3473f882001-02-23 17:55:21 +00002600 if (table == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002601 xmlVErrMemory(ctxt,
Owen Taylor3473f882001-02-23 17:55:21 +00002602 "xmlAddID: Table creation failed!\n");
2603 return(NULL);
2604 }
2605
2606 ret = (xmlIDPtr) xmlMalloc(sizeof(xmlID));
2607 if (ret == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002608 xmlVErrMemory(ctxt, "malloc failed");
Owen Taylor3473f882001-02-23 17:55:21 +00002609 return(NULL);
2610 }
2611
2612 /*
2613 * fill the structure.
2614 */
2615 ret->value = xmlStrdup(value);
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002616 ret->doc = doc;
Daniel Veillardea7751d2002-12-20 00:16:24 +00002617 if ((ctxt != NULL) && (ctxt->vstateNr != 0)) {
2618 /*
2619 * Operating in streaming mode, attr is gonna disapear
2620 */
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002621 if (doc->dict != NULL)
2622 ret->name = xmlDictLookup(doc->dict, attr->name, -1);
2623 else
2624 ret->name = xmlStrdup(attr->name);
Daniel Veillardea7751d2002-12-20 00:16:24 +00002625 ret->attr = NULL;
2626 } else {
2627 ret->attr = attr;
2628 ret->name = NULL;
2629 }
2630 ret->lineno = xmlGetLineNo(attr->parent);
Owen Taylor3473f882001-02-23 17:55:21 +00002631
2632 if (xmlHashAddEntry(table, value, ret) < 0) {
Daniel Veillard4432df22003-09-28 18:58:27 +00002633#ifdef LIBXML_VALID_ENABLED
Owen Taylor3473f882001-02-23 17:55:21 +00002634 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002635 * The id is already defined in this DTD.
Owen Taylor3473f882001-02-23 17:55:21 +00002636 */
Xin Li28c53d32017-03-07 00:33:02 +00002637 if (ctxt != NULL) {
2638 xmlErrValidNode(ctxt, attr->parent, XML_DTD_ID_REDEFINED,
2639 "ID %s already defined\n", value, NULL, NULL);
2640 }
Daniel Veillard4432df22003-09-28 18:58:27 +00002641#endif /* LIBXML_VALID_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00002642 xmlFreeID(ret);
2643 return(NULL);
2644 }
Daniel Veillard249d7bb2003-03-19 21:02:29 +00002645 if (attr != NULL)
2646 attr->atype = XML_ATTRIBUTE_ID;
Owen Taylor3473f882001-02-23 17:55:21 +00002647 return(ret);
2648}
2649
2650/**
2651 * xmlFreeIDTable:
2652 * @table: An id table
2653 *
2654 * Deallocate the memory used by an ID hash table.
2655 */
2656void
2657xmlFreeIDTable(xmlIDTablePtr table) {
2658 xmlHashFree(table, (xmlHashDeallocator) xmlFreeID);
2659}
2660
2661/**
2662 * xmlIsID:
2663 * @doc: the document
2664 * @elem: the element carrying the attribute
2665 * @attr: the attribute
2666 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002667 * Determine whether an attribute is of type ID. In case we have DTD(s)
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00002668 * then this is done if DTD loading has been requested. In the case
2669 * of HTML documents parsed with the HTML parser, then ID detection is
2670 * done systematically.
Owen Taylor3473f882001-02-23 17:55:21 +00002671 *
2672 * Returns 0 or 1 depending on the lookup result
2673 */
2674int
2675xmlIsID(xmlDocPtr doc, xmlNodePtr elem, xmlAttrPtr attr) {
Daniel Veillard54f9a4f2005-09-03 13:28:24 +00002676 if ((attr == NULL) || (attr->name == NULL)) return(0);
2677 if ((attr->ns != NULL) && (attr->ns->prefix != NULL) &&
2678 (!strcmp((char *) attr->name, "id")) &&
2679 (!strcmp((char *) attr->ns->prefix, "xml")))
2680 return(1);
Owen Taylor3473f882001-02-23 17:55:21 +00002681 if (doc == NULL) return(0);
Daniel Veillardf3c06692009-10-16 16:47:58 +02002682 if ((doc->intSubset == NULL) && (doc->extSubset == NULL) &&
2683 (doc->type != XML_HTML_DOCUMENT_NODE)) {
Owen Taylor3473f882001-02-23 17:55:21 +00002684 return(0);
2685 } else if (doc->type == XML_HTML_DOCUMENT_NODE) {
Rob Richards04bffc02006-03-03 16:44:37 +00002686 if ((xmlStrEqual(BAD_CAST "id", attr->name)) ||
2687 ((xmlStrEqual(BAD_CAST "name", attr->name)) &&
Daniel Veillard38431c32007-06-12 16:20:09 +00002688 ((elem == NULL) || (xmlStrEqual(elem->name, BAD_CAST "a")))))
Owen Taylor3473f882001-02-23 17:55:21 +00002689 return(1);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002690 return(0);
Daniel Veillard379a3b72005-08-12 10:18:14 +00002691 } else if (elem == NULL) {
2692 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00002693 } else {
Daniel Veillard465a0002005-08-22 12:07:04 +00002694 xmlAttributePtr attrDecl = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00002695
Daniel Veillard379a3b72005-08-12 10:18:14 +00002696 xmlChar felem[50], fattr[50];
2697 xmlChar *fullelemname, *fullattrname;
2698
2699 fullelemname = (elem->ns != NULL && elem->ns->prefix != NULL) ?
2700 xmlBuildQName(elem->name, elem->ns->prefix, felem, 50) :
2701 (xmlChar *)elem->name;
2702
2703 fullattrname = (attr->ns != NULL && attr->ns->prefix != NULL) ?
2704 xmlBuildQName(attr->name, attr->ns->prefix, fattr, 50) :
2705 (xmlChar *)attr->name;
2706
2707 if (fullelemname != NULL && fullattrname != NULL) {
2708 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullelemname,
2709 fullattrname);
Daniel Veillard37f961d2002-07-06 17:53:56 +00002710 if ((attrDecl == NULL) && (doc->extSubset != NULL))
Daniel Veillard379a3b72005-08-12 10:18:14 +00002711 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullelemname,
2712 fullattrname);
Daniel Veillard37f961d2002-07-06 17:53:56 +00002713 }
Owen Taylor3473f882001-02-23 17:55:21 +00002714
Daniel Veillard379a3b72005-08-12 10:18:14 +00002715 if ((fullattrname != fattr) && (fullattrname != attr->name))
2716 xmlFree(fullattrname);
2717 if ((fullelemname != felem) && (fullelemname != elem->name))
2718 xmlFree(fullelemname);
2719
Owen Taylor3473f882001-02-23 17:55:21 +00002720 if ((attrDecl != NULL) && (attrDecl->atype == XML_ATTRIBUTE_ID))
2721 return(1);
2722 }
2723 return(0);
2724}
2725
2726/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00002727 * xmlRemoveID:
Owen Taylor3473f882001-02-23 17:55:21 +00002728 * @doc: the document
2729 * @attr: the attribute
2730 *
2731 * Remove the given attribute from the ID table maintained internally.
2732 *
2733 * Returns -1 if the lookup failed and 0 otherwise
2734 */
2735int
2736xmlRemoveID(xmlDocPtr doc, xmlAttrPtr attr) {
Owen Taylor3473f882001-02-23 17:55:21 +00002737 xmlIDTablePtr table;
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002738 xmlIDPtr id;
Owen Taylor3473f882001-02-23 17:55:21 +00002739 xmlChar *ID;
2740
2741 if (doc == NULL) return(-1);
2742 if (attr == NULL) return(-1);
Denis Pauk01461792013-08-06 09:55:55 +03002743
Owen Taylor3473f882001-02-23 17:55:21 +00002744 table = (xmlIDTablePtr) doc->ids;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002745 if (table == NULL)
Owen Taylor3473f882001-02-23 17:55:21 +00002746 return(-1);
2747
Owen Taylor3473f882001-02-23 17:55:21 +00002748 ID = xmlNodeListGetString(doc, attr->children, 1);
2749 if (ID == NULL)
Denis Pauk01461792013-08-06 09:55:55 +03002750 return(-1);
2751
Daniel Veillard8d7b5c72003-11-15 18:24:36 +00002752 id = xmlHashLookup(table, ID);
2753 if (id == NULL || id->attr != attr) {
Denis Pauk01461792013-08-06 09:55:55 +03002754 xmlFree(ID);
2755 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00002756 }
Denis Pauk01461792013-08-06 09:55:55 +03002757
Daniel Veillard91b955c2004-12-10 10:26:42 +00002758 xmlHashRemoveEntry(table, ID, (xmlHashDeallocator) xmlFreeID);
Owen Taylor3473f882001-02-23 17:55:21 +00002759 xmlFree(ID);
Denis Pauk01461792013-08-06 09:55:55 +03002760 attr->atype = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00002761 return(0);
2762}
2763
2764/**
2765 * xmlGetID:
2766 * @doc: pointer to the document
2767 * @ID: the ID value
2768 *
2769 * Search the attribute declaring the given ID
2770 *
2771 * Returns NULL if not found, otherwise the xmlAttrPtr defining the ID
2772 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002773xmlAttrPtr
Owen Taylor3473f882001-02-23 17:55:21 +00002774xmlGetID(xmlDocPtr doc, const xmlChar *ID) {
2775 xmlIDTablePtr table;
2776 xmlIDPtr id;
2777
2778 if (doc == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002779 return(NULL);
2780 }
2781
2782 if (ID == NULL) {
Owen Taylor3473f882001-02-23 17:55:21 +00002783 return(NULL);
2784 }
2785
2786 table = (xmlIDTablePtr) doc->ids;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002787 if (table == NULL)
Owen Taylor3473f882001-02-23 17:55:21 +00002788 return(NULL);
2789
2790 id = xmlHashLookup(table, ID);
2791 if (id == NULL)
2792 return(NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00002793 if (id->attr == NULL) {
2794 /*
2795 * We are operating on a stream, return a well known reference
2796 * since the attribute node doesn't exist anymore
2797 */
2798 return((xmlAttrPtr) doc);
2799 }
Owen Taylor3473f882001-02-23 17:55:21 +00002800 return(id->attr);
2801}
2802
2803/************************************************************************
2804 * *
2805 * Refs *
2806 * *
2807 ************************************************************************/
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002808typedef struct xmlRemoveMemo_t
Owen Taylor3473f882001-02-23 17:55:21 +00002809{
2810 xmlListPtr l;
2811 xmlAttrPtr ap;
Daniel Veillard8730c562001-02-26 10:49:57 +00002812} xmlRemoveMemo;
2813
2814typedef xmlRemoveMemo *xmlRemoveMemoPtr;
2815
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002816typedef struct xmlValidateMemo_t
Daniel Veillard8730c562001-02-26 10:49:57 +00002817{
2818 xmlValidCtxtPtr ctxt;
2819 const xmlChar *name;
2820} xmlValidateMemo;
2821
2822typedef xmlValidateMemo *xmlValidateMemoPtr;
Owen Taylor3473f882001-02-23 17:55:21 +00002823
2824/**
Owen Taylor3473f882001-02-23 17:55:21 +00002825 * xmlFreeRef:
2826 * @lk: A list link
2827 *
2828 * Deallocate the memory used by a ref definition
2829 */
2830static void
2831xmlFreeRef(xmlLinkPtr lk) {
Daniel Veillard37721922001-05-04 15:21:12 +00002832 xmlRefPtr ref = (xmlRefPtr)xmlLinkGetData(lk);
2833 if (ref == NULL) return;
2834 if (ref->value != NULL)
2835 xmlFree((xmlChar *)ref->value);
Daniel Veillardea7751d2002-12-20 00:16:24 +00002836 if (ref->name != NULL)
2837 xmlFree((xmlChar *)ref->name);
Daniel Veillard37721922001-05-04 15:21:12 +00002838 xmlFree(ref);
Owen Taylor3473f882001-02-23 17:55:21 +00002839}
2840
2841/**
2842 * xmlFreeRefList:
2843 * @list_ref: A list of references.
2844 *
2845 * Deallocate the memory used by a list of references
2846 */
2847static void
2848xmlFreeRefList(xmlListPtr list_ref) {
Daniel Veillard37721922001-05-04 15:21:12 +00002849 if (list_ref == NULL) return;
2850 xmlListDelete(list_ref);
Owen Taylor3473f882001-02-23 17:55:21 +00002851}
2852
2853/**
2854 * xmlWalkRemoveRef:
2855 * @data: Contents of current link
2856 * @user: Value supplied by the user
2857 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002858 * Returns 0 to abort the walk or 1 to continue
Owen Taylor3473f882001-02-23 17:55:21 +00002859 */
2860static int
2861xmlWalkRemoveRef(const void *data, const void *user)
2862{
Daniel Veillard37721922001-05-04 15:21:12 +00002863 xmlAttrPtr attr0 = ((xmlRefPtr)data)->attr;
2864 xmlAttrPtr attr1 = ((xmlRemoveMemoPtr)user)->ap;
2865 xmlListPtr ref_list = ((xmlRemoveMemoPtr)user)->l;
Owen Taylor3473f882001-02-23 17:55:21 +00002866
Daniel Veillard37721922001-05-04 15:21:12 +00002867 if (attr0 == attr1) { /* Matched: remove and terminate walk */
2868 xmlListRemoveFirst(ref_list, (void *)data);
2869 return 0;
2870 }
2871 return 1;
Owen Taylor3473f882001-02-23 17:55:21 +00002872}
2873
2874/**
Daniel Veillard770075b2004-02-25 10:44:30 +00002875 * xmlDummyCompare
2876 * @data0: Value supplied by the user
2877 * @data1: Value supplied by the user
2878 *
2879 * Do nothing, return 0. Used to create unordered lists.
2880 */
2881static int
Daniel Veillardf54cd532004-02-25 11:52:31 +00002882xmlDummyCompare(const void *data0 ATTRIBUTE_UNUSED,
2883 const void *data1 ATTRIBUTE_UNUSED)
Daniel Veillard770075b2004-02-25 10:44:30 +00002884{
2885 return (0);
2886}
2887
2888/**
Owen Taylor3473f882001-02-23 17:55:21 +00002889 * xmlAddRef:
2890 * @ctxt: the validation context
2891 * @doc: pointer to the document
2892 * @value: the value name
2893 * @attr: the attribute holding the Ref
2894 *
2895 * Register a new ref declaration
2896 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00002897 * Returns NULL if not, otherwise the new xmlRefPtr
Owen Taylor3473f882001-02-23 17:55:21 +00002898 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08002899xmlRefPtr
William M. Brackedb65a72004-02-06 07:36:04 +00002900xmlAddRef(xmlValidCtxtPtr ctxt, xmlDocPtr doc, const xmlChar *value,
Owen Taylor3473f882001-02-23 17:55:21 +00002901 xmlAttrPtr attr) {
Daniel Veillard37721922001-05-04 15:21:12 +00002902 xmlRefPtr ret;
2903 xmlRefTablePtr table;
2904 xmlListPtr ref_list;
Owen Taylor3473f882001-02-23 17:55:21 +00002905
Daniel Veillard37721922001-05-04 15:21:12 +00002906 if (doc == NULL) {
Daniel Veillard37721922001-05-04 15:21:12 +00002907 return(NULL);
2908 }
2909 if (value == NULL) {
Daniel Veillard37721922001-05-04 15:21:12 +00002910 return(NULL);
2911 }
2912 if (attr == NULL) {
Daniel Veillard37721922001-05-04 15:21:12 +00002913 return(NULL);
2914 }
Owen Taylor3473f882001-02-23 17:55:21 +00002915
Daniel Veillard37721922001-05-04 15:21:12 +00002916 /*
Owen Taylor3473f882001-02-23 17:55:21 +00002917 * Create the Ref table if needed.
2918 */
Daniel Veillard37721922001-05-04 15:21:12 +00002919 table = (xmlRefTablePtr) doc->refs;
Daniel Veillard316a5c32005-01-23 22:56:39 +00002920 if (table == NULL) {
2921 doc->refs = table = xmlHashCreateDict(0, doc->dict);
2922 }
Daniel Veillard37721922001-05-04 15:21:12 +00002923 if (table == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002924 xmlVErrMemory(ctxt,
Daniel Veillard37721922001-05-04 15:21:12 +00002925 "xmlAddRef: Table creation failed!\n");
2926 return(NULL);
2927 }
Owen Taylor3473f882001-02-23 17:55:21 +00002928
Daniel Veillard37721922001-05-04 15:21:12 +00002929 ret = (xmlRefPtr) xmlMalloc(sizeof(xmlRef));
2930 if (ret == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00002931 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillard37721922001-05-04 15:21:12 +00002932 return(NULL);
2933 }
Owen Taylor3473f882001-02-23 17:55:21 +00002934
Daniel Veillard37721922001-05-04 15:21:12 +00002935 /*
Owen Taylor3473f882001-02-23 17:55:21 +00002936 * fill the structure.
2937 */
Daniel Veillard37721922001-05-04 15:21:12 +00002938 ret->value = xmlStrdup(value);
Daniel Veillardea7751d2002-12-20 00:16:24 +00002939 if ((ctxt != NULL) && (ctxt->vstateNr != 0)) {
2940 /*
2941 * Operating in streaming mode, attr is gonna disapear
2942 */
2943 ret->name = xmlStrdup(attr->name);
2944 ret->attr = NULL;
2945 } else {
2946 ret->name = NULL;
2947 ret->attr = attr;
2948 }
2949 ret->lineno = xmlGetLineNo(attr->parent);
Owen Taylor3473f882001-02-23 17:55:21 +00002950
Daniel Veillard37721922001-05-04 15:21:12 +00002951 /* To add a reference :-
2952 * References are maintained as a list of references,
2953 * Lookup the entry, if no entry create new nodelist
2954 * Add the owning node to the NodeList
2955 * Return the ref
2956 */
Owen Taylor3473f882001-02-23 17:55:21 +00002957
Daniel Veillard37721922001-05-04 15:21:12 +00002958 if (NULL == (ref_list = xmlHashLookup(table, value))) {
Daniel Veillard770075b2004-02-25 10:44:30 +00002959 if (NULL == (ref_list = xmlListCreate(xmlFreeRef, xmlDummyCompare))) {
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00002960 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
2961 "xmlAddRef: Reference list creation failed!\n",
2962 NULL);
Daniel Veillardf6cf57a2007-05-09 23:53:30 +00002963 goto failed;
Daniel Veillard37721922001-05-04 15:21:12 +00002964 }
2965 if (xmlHashAddEntry(table, value, ref_list) < 0) {
2966 xmlListDelete(ref_list);
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00002967 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
2968 "xmlAddRef: Reference list insertion failed!\n",
2969 NULL);
Daniel Veillardf6cf57a2007-05-09 23:53:30 +00002970 goto failed;
Daniel Veillard37721922001-05-04 15:21:12 +00002971 }
2972 }
Daniel Veillardf6cf57a2007-05-09 23:53:30 +00002973 if (xmlListAppend(ref_list, ret) != 0) {
2974 xmlErrValid(NULL, XML_ERR_INTERNAL_ERROR,
2975 "xmlAddRef: Reference list insertion failed!\n",
2976 NULL);
2977 goto failed;
2978 }
Daniel Veillard37721922001-05-04 15:21:12 +00002979 return(ret);
Daniel Veillardf6cf57a2007-05-09 23:53:30 +00002980failed:
2981 if (ret != NULL) {
2982 if (ret->value != NULL)
2983 xmlFree((char *)ret->value);
2984 if (ret->name != NULL)
2985 xmlFree((char *)ret->name);
2986 xmlFree(ret);
2987 }
2988 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00002989}
2990
2991/**
2992 * xmlFreeRefTable:
2993 * @table: An ref table
2994 *
2995 * Deallocate the memory used by an Ref hash table.
2996 */
2997void
2998xmlFreeRefTable(xmlRefTablePtr table) {
Daniel Veillard37721922001-05-04 15:21:12 +00002999 xmlHashFree(table, (xmlHashDeallocator) xmlFreeRefList);
Owen Taylor3473f882001-02-23 17:55:21 +00003000}
3001
3002/**
3003 * xmlIsRef:
3004 * @doc: the document
3005 * @elem: the element carrying the attribute
3006 * @attr: the attribute
3007 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003008 * Determine whether an attribute is of type Ref. In case we have DTD(s)
Owen Taylor3473f882001-02-23 17:55:21 +00003009 * then this is simple, otherwise we use an heuristic: name Ref (upper
3010 * or lowercase).
3011 *
3012 * Returns 0 or 1 depending on the lookup result
3013 */
3014int
3015xmlIsRef(xmlDocPtr doc, xmlNodePtr elem, xmlAttrPtr attr) {
Daniel Veillardce244ad2004-11-05 10:03:46 +00003016 if (attr == NULL)
3017 return(0);
3018 if (doc == NULL) {
3019 doc = attr->doc;
3020 if (doc == NULL) return(0);
3021 }
3022
Daniel Veillard37721922001-05-04 15:21:12 +00003023 if ((doc->intSubset == NULL) && (doc->extSubset == NULL)) {
3024 return(0);
3025 } else if (doc->type == XML_HTML_DOCUMENT_NODE) {
3026 /* TODO @@@ */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003027 return(0);
Daniel Veillard37721922001-05-04 15:21:12 +00003028 } else {
3029 xmlAttributePtr attrDecl;
Owen Taylor3473f882001-02-23 17:55:21 +00003030
Daniel Veillardce244ad2004-11-05 10:03:46 +00003031 if (elem == NULL) return(0);
Daniel Veillard37721922001-05-04 15:21:12 +00003032 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, elem->name, attr->name);
3033 if ((attrDecl == NULL) && (doc->extSubset != NULL))
3034 attrDecl = xmlGetDtdAttrDesc(doc->extSubset,
3035 elem->name, attr->name);
Owen Taylor3473f882001-02-23 17:55:21 +00003036
Daniel Veillard37721922001-05-04 15:21:12 +00003037 if ((attrDecl != NULL) &&
3038 (attrDecl->atype == XML_ATTRIBUTE_IDREF ||
3039 attrDecl->atype == XML_ATTRIBUTE_IDREFS))
3040 return(1);
3041 }
3042 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00003043}
3044
3045/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00003046 * xmlRemoveRef:
Owen Taylor3473f882001-02-23 17:55:21 +00003047 * @doc: the document
3048 * @attr: the attribute
3049 *
3050 * Remove the given attribute from the Ref table maintained internally.
3051 *
3052 * Returns -1 if the lookup failed and 0 otherwise
3053 */
3054int
3055xmlRemoveRef(xmlDocPtr doc, xmlAttrPtr attr) {
Daniel Veillard37721922001-05-04 15:21:12 +00003056 xmlListPtr ref_list;
3057 xmlRefTablePtr table;
3058 xmlChar *ID;
3059 xmlRemoveMemo target;
Owen Taylor3473f882001-02-23 17:55:21 +00003060
Daniel Veillard37721922001-05-04 15:21:12 +00003061 if (doc == NULL) return(-1);
3062 if (attr == NULL) return(-1);
Denis Pauk01461792013-08-06 09:55:55 +03003063
Daniel Veillard37721922001-05-04 15:21:12 +00003064 table = (xmlRefTablePtr) doc->refs;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003065 if (table == NULL)
Daniel Veillard37721922001-05-04 15:21:12 +00003066 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00003067
Daniel Veillard37721922001-05-04 15:21:12 +00003068 ID = xmlNodeListGetString(doc, attr->children, 1);
3069 if (ID == NULL)
3070 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00003071
Denis Pauk01461792013-08-06 09:55:55 +03003072 ref_list = xmlHashLookup(table, ID);
Daniel Veillard37721922001-05-04 15:21:12 +00003073 if(ref_list == NULL) {
3074 xmlFree(ID);
3075 return (-1);
3076 }
Denis Pauk01461792013-08-06 09:55:55 +03003077
Daniel Veillard37721922001-05-04 15:21:12 +00003078 /* At this point, ref_list refers to a list of references which
3079 * have the same key as the supplied attr. Our list of references
3080 * is ordered by reference address and we don't have that information
3081 * here to use when removing. We'll have to walk the list and
3082 * check for a matching attribute, when we find one stop the walk
3083 * and remove the entry.
3084 * The list is ordered by reference, so that means we don't have the
3085 * key. Passing the list and the reference to the walker means we
3086 * will have enough data to be able to remove the entry.
3087 */
3088 target.l = ref_list;
3089 target.ap = attr;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003090
Daniel Veillard37721922001-05-04 15:21:12 +00003091 /* Remove the supplied attr from our list */
3092 xmlListWalk(ref_list, xmlWalkRemoveRef, &target);
Owen Taylor3473f882001-02-23 17:55:21 +00003093
Daniel Veillard37721922001-05-04 15:21:12 +00003094 /*If the list is empty then remove the list entry in the hash */
3095 if (xmlListEmpty(ref_list))
3096 xmlHashUpdateEntry(table, ID, NULL, (xmlHashDeallocator)
3097 xmlFreeRefList);
3098 xmlFree(ID);
3099 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00003100}
3101
3102/**
3103 * xmlGetRefs:
3104 * @doc: pointer to the document
3105 * @ID: the ID value
3106 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003107 * Find the set of references for the supplied ID.
Owen Taylor3473f882001-02-23 17:55:21 +00003108 *
3109 * Returns NULL if not found, otherwise node set for the ID.
3110 */
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003111xmlListPtr
Owen Taylor3473f882001-02-23 17:55:21 +00003112xmlGetRefs(xmlDocPtr doc, const xmlChar *ID) {
Daniel Veillard37721922001-05-04 15:21:12 +00003113 xmlRefTablePtr table;
Owen Taylor3473f882001-02-23 17:55:21 +00003114
Daniel Veillard37721922001-05-04 15:21:12 +00003115 if (doc == NULL) {
Daniel Veillard37721922001-05-04 15:21:12 +00003116 return(NULL);
3117 }
Owen Taylor3473f882001-02-23 17:55:21 +00003118
Daniel Veillard37721922001-05-04 15:21:12 +00003119 if (ID == NULL) {
Daniel Veillard37721922001-05-04 15:21:12 +00003120 return(NULL);
3121 }
Owen Taylor3473f882001-02-23 17:55:21 +00003122
Daniel Veillard37721922001-05-04 15:21:12 +00003123 table = (xmlRefTablePtr) doc->refs;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003124 if (table == NULL)
Daniel Veillard37721922001-05-04 15:21:12 +00003125 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003126
Daniel Veillard37721922001-05-04 15:21:12 +00003127 return (xmlHashLookup(table, ID));
Owen Taylor3473f882001-02-23 17:55:21 +00003128}
3129
3130/************************************************************************
3131 * *
3132 * Routines for validity checking *
3133 * *
3134 ************************************************************************/
3135
3136/**
3137 * xmlGetDtdElementDesc:
3138 * @dtd: a pointer to the DtD to search
3139 * @name: the element name
3140 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003141 * Search the DTD for the description of this element
Owen Taylor3473f882001-02-23 17:55:21 +00003142 *
3143 * returns the xmlElementPtr if found or NULL
3144 */
3145
3146xmlElementPtr
3147xmlGetDtdElementDesc(xmlDtdPtr dtd, const xmlChar *name) {
3148 xmlElementTablePtr table;
3149 xmlElementPtr cur;
3150 xmlChar *uqname = NULL, *prefix = NULL;
3151
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00003152 if ((dtd == NULL) || (name == NULL)) return(NULL);
Daniel Veillarda10efa82001-04-18 13:09:01 +00003153 if (dtd->elements == NULL)
3154 return(NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003155 table = (xmlElementTablePtr) dtd->elements;
3156
3157 uqname = xmlSplitQName2(name, &prefix);
Daniel Veillarda10efa82001-04-18 13:09:01 +00003158 if (uqname != NULL)
3159 name = uqname;
3160 cur = xmlHashLookup2(table, name, prefix);
3161 if (prefix != NULL) xmlFree(prefix);
3162 if (uqname != NULL) xmlFree(uqname);
3163 return(cur);
3164}
3165/**
3166 * xmlGetDtdElementDesc2:
3167 * @dtd: a pointer to the DtD to search
3168 * @name: the element name
3169 * @create: create an empty description if not found
3170 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003171 * Search the DTD for the description of this element
Daniel Veillarda10efa82001-04-18 13:09:01 +00003172 *
3173 * returns the xmlElementPtr if found or NULL
3174 */
3175
Daniel Veillard86fd5a72001-12-13 14:55:21 +00003176static xmlElementPtr
Daniel Veillarda10efa82001-04-18 13:09:01 +00003177xmlGetDtdElementDesc2(xmlDtdPtr dtd, const xmlChar *name, int create) {
3178 xmlElementTablePtr table;
3179 xmlElementPtr cur;
3180 xmlChar *uqname = NULL, *prefix = NULL;
3181
3182 if (dtd == NULL) return(NULL);
3183 if (dtd->elements == NULL) {
Daniel Veillard316a5c32005-01-23 22:56:39 +00003184 xmlDictPtr dict = NULL;
3185
3186 if (dtd->doc != NULL)
3187 dict = dtd->doc->dict;
3188
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003189 if (!create)
Daniel Veillarda10efa82001-04-18 13:09:01 +00003190 return(NULL);
3191 /*
3192 * Create the Element table if needed.
3193 */
3194 table = (xmlElementTablePtr) dtd->elements;
3195 if (table == NULL) {
Daniel Veillard316a5c32005-01-23 22:56:39 +00003196 table = xmlHashCreateDict(0, dict);
Daniel Veillarda10efa82001-04-18 13:09:01 +00003197 dtd->elements = (void *) table;
3198 }
3199 if (table == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00003200 xmlVErrMemory(NULL, "element table allocation failed");
Daniel Veillarda10efa82001-04-18 13:09:01 +00003201 return(NULL);
3202 }
3203 }
3204 table = (xmlElementTablePtr) dtd->elements;
3205
3206 uqname = xmlSplitQName2(name, &prefix);
3207 if (uqname != NULL)
3208 name = uqname;
3209 cur = xmlHashLookup2(table, name, prefix);
3210 if ((cur == NULL) && (create)) {
3211 cur = (xmlElementPtr) xmlMalloc(sizeof(xmlElement));
3212 if (cur == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00003213 xmlVErrMemory(NULL, "malloc failed");
Daniel Veillarda10efa82001-04-18 13:09:01 +00003214 return(NULL);
3215 }
3216 memset(cur, 0, sizeof(xmlElement));
3217 cur->type = XML_ELEMENT_DECL;
3218
3219 /*
3220 * fill the structure.
3221 */
3222 cur->name = xmlStrdup(name);
3223 cur->prefix = xmlStrdup(prefix);
3224 cur->etype = XML_ELEMENT_TYPE_UNDEFINED;
3225
3226 xmlHashAddEntry2(table, name, prefix, cur);
3227 }
3228 if (prefix != NULL) xmlFree(prefix);
3229 if (uqname != NULL) xmlFree(uqname);
Owen Taylor3473f882001-02-23 17:55:21 +00003230 return(cur);
3231}
3232
3233/**
3234 * xmlGetDtdQElementDesc:
3235 * @dtd: a pointer to the DtD to search
3236 * @name: the element name
3237 * @prefix: the element namespace prefix
3238 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003239 * Search the DTD for the description of this element
Owen Taylor3473f882001-02-23 17:55:21 +00003240 *
3241 * returns the xmlElementPtr if found or NULL
3242 */
3243
Daniel Veillard48da9102001-08-07 01:10:10 +00003244xmlElementPtr
Owen Taylor3473f882001-02-23 17:55:21 +00003245xmlGetDtdQElementDesc(xmlDtdPtr dtd, const xmlChar *name,
3246 const xmlChar *prefix) {
3247 xmlElementTablePtr table;
3248
3249 if (dtd == NULL) return(NULL);
3250 if (dtd->elements == NULL) return(NULL);
3251 table = (xmlElementTablePtr) dtd->elements;
3252
3253 return(xmlHashLookup2(table, name, prefix));
3254}
3255
3256/**
3257 * xmlGetDtdAttrDesc:
3258 * @dtd: a pointer to the DtD to search
3259 * @elem: the element name
3260 * @name: the attribute name
3261 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003262 * Search the DTD for the description of this attribute on
Owen Taylor3473f882001-02-23 17:55:21 +00003263 * this element.
3264 *
3265 * returns the xmlAttributePtr if found or NULL
3266 */
3267
3268xmlAttributePtr
3269xmlGetDtdAttrDesc(xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name) {
3270 xmlAttributeTablePtr table;
3271 xmlAttributePtr cur;
3272 xmlChar *uqname = NULL, *prefix = NULL;
3273
3274 if (dtd == NULL) return(NULL);
3275 if (dtd->attributes == NULL) return(NULL);
3276
3277 table = (xmlAttributeTablePtr) dtd->attributes;
3278 if (table == NULL)
3279 return(NULL);
3280
3281 uqname = xmlSplitQName2(name, &prefix);
3282
3283 if (uqname != NULL) {
3284 cur = xmlHashLookup3(table, uqname, prefix, elem);
3285 if (prefix != NULL) xmlFree(prefix);
3286 if (uqname != NULL) xmlFree(uqname);
3287 } else
3288 cur = xmlHashLookup3(table, name, NULL, elem);
3289 return(cur);
3290}
3291
3292/**
3293 * xmlGetDtdQAttrDesc:
3294 * @dtd: a pointer to the DtD to search
3295 * @elem: the element name
3296 * @name: the attribute name
3297 * @prefix: the attribute namespace prefix
3298 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003299 * Search the DTD for the description of this qualified attribute on
Owen Taylor3473f882001-02-23 17:55:21 +00003300 * this element.
3301 *
3302 * returns the xmlAttributePtr if found or NULL
3303 */
3304
Daniel Veillard48da9102001-08-07 01:10:10 +00003305xmlAttributePtr
Owen Taylor3473f882001-02-23 17:55:21 +00003306xmlGetDtdQAttrDesc(xmlDtdPtr dtd, const xmlChar *elem, const xmlChar *name,
3307 const xmlChar *prefix) {
3308 xmlAttributeTablePtr table;
3309
3310 if (dtd == NULL) return(NULL);
3311 if (dtd->attributes == NULL) return(NULL);
3312 table = (xmlAttributeTablePtr) dtd->attributes;
3313
3314 return(xmlHashLookup3(table, name, prefix, elem));
3315}
3316
3317/**
3318 * xmlGetDtdNotationDesc:
3319 * @dtd: a pointer to the DtD to search
3320 * @name: the notation name
3321 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003322 * Search the DTD for the description of this notation
Owen Taylor3473f882001-02-23 17:55:21 +00003323 *
3324 * returns the xmlNotationPtr if found or NULL
3325 */
3326
3327xmlNotationPtr
3328xmlGetDtdNotationDesc(xmlDtdPtr dtd, const xmlChar *name) {
3329 xmlNotationTablePtr table;
3330
3331 if (dtd == NULL) return(NULL);
3332 if (dtd->notations == NULL) return(NULL);
3333 table = (xmlNotationTablePtr) dtd->notations;
3334
3335 return(xmlHashLookup(table, name));
3336}
3337
Daniel Veillardf54cd532004-02-25 11:52:31 +00003338#if defined(LIBXML_VALID_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED)
Owen Taylor3473f882001-02-23 17:55:21 +00003339/**
3340 * xmlValidateNotationUse:
3341 * @ctxt: the validation context
3342 * @doc: the document
3343 * @notationName: the notation name to check
3344 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003345 * Validate that the given name match a notation declaration.
Owen Taylor3473f882001-02-23 17:55:21 +00003346 * - [ VC: Notation Declared ]
3347 *
3348 * returns 1 if valid or 0 otherwise
3349 */
3350
3351int
3352xmlValidateNotationUse(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
3353 const xmlChar *notationName) {
3354 xmlNotationPtr notaDecl;
Daniel Veillardeab3ac92009-08-12 10:39:29 +02003355 if ((doc == NULL) || (doc->intSubset == NULL) ||
3356 (notationName == NULL)) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00003357
3358 notaDecl = xmlGetDtdNotationDesc(doc->intSubset, notationName);
3359 if ((notaDecl == NULL) && (doc->extSubset != NULL))
3360 notaDecl = xmlGetDtdNotationDesc(doc->extSubset, notationName);
3361
Daniel Veillarde637c4a2003-03-30 21:10:09 +00003362 if ((notaDecl == NULL) && (ctxt != NULL)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003363 xmlErrValidNode(ctxt, (xmlNodePtr) doc, XML_DTD_UNKNOWN_NOTATION,
3364 "NOTATION %s is not declared\n",
3365 notationName, NULL, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003366 return(0);
3367 }
3368 return(1);
3369}
Daniel Veillardf54cd532004-02-25 11:52:31 +00003370#endif /* LIBXML_VALID_ENABLED or LIBXML_SCHEMAS_ENABLED */
Owen Taylor3473f882001-02-23 17:55:21 +00003371
3372/**
Daniel Veillard01c13b52002-12-10 15:19:08 +00003373 * xmlIsMixedElement:
Owen Taylor3473f882001-02-23 17:55:21 +00003374 * @doc: the document
3375 * @name: the element name
3376 *
3377 * Search in the DtDs whether an element accept Mixed content (or ANY)
3378 * basically if it is supposed to accept text childs
3379 *
3380 * returns 0 if no, 1 if yes, and -1 if no element description is available
3381 */
3382
3383int
3384xmlIsMixedElement(xmlDocPtr doc, const xmlChar *name) {
3385 xmlElementPtr elemDecl;
3386
3387 if ((doc == NULL) || (doc->intSubset == NULL)) return(-1);
3388
3389 elemDecl = xmlGetDtdElementDesc(doc->intSubset, name);
3390 if ((elemDecl == NULL) && (doc->extSubset != NULL))
3391 elemDecl = xmlGetDtdElementDesc(doc->extSubset, name);
3392 if (elemDecl == NULL) return(-1);
3393 switch (elemDecl->etype) {
Daniel Veillarda10efa82001-04-18 13:09:01 +00003394 case XML_ELEMENT_TYPE_UNDEFINED:
3395 return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00003396 case XML_ELEMENT_TYPE_ELEMENT:
3397 return(0);
3398 case XML_ELEMENT_TYPE_EMPTY:
3399 /*
3400 * return 1 for EMPTY since we want VC error to pop up
3401 * on <empty> </empty> for example
3402 */
3403 case XML_ELEMENT_TYPE_ANY:
3404 case XML_ELEMENT_TYPE_MIXED:
3405 return(1);
3406 }
3407 return(1);
3408}
3409
Daniel Veillard4432df22003-09-28 18:58:27 +00003410#ifdef LIBXML_VALID_ENABLED
Daniel Veillardae0765b2008-07-31 19:54:59 +00003411
3412static int
3413xmlIsDocNameStartChar(xmlDocPtr doc, int c) {
3414 if ((doc == NULL) || (doc->properties & XML_DOC_OLD10) == 0) {
3415 /*
3416 * Use the new checks of production [4] [4a] amd [5] of the
3417 * Update 5 of XML-1.0
3418 */
3419 if (((c >= 'a') && (c <= 'z')) ||
3420 ((c >= 'A') && (c <= 'Z')) ||
3421 (c == '_') || (c == ':') ||
3422 ((c >= 0xC0) && (c <= 0xD6)) ||
3423 ((c >= 0xD8) && (c <= 0xF6)) ||
3424 ((c >= 0xF8) && (c <= 0x2FF)) ||
3425 ((c >= 0x370) && (c <= 0x37D)) ||
3426 ((c >= 0x37F) && (c <= 0x1FFF)) ||
3427 ((c >= 0x200C) && (c <= 0x200D)) ||
3428 ((c >= 0x2070) && (c <= 0x218F)) ||
3429 ((c >= 0x2C00) && (c <= 0x2FEF)) ||
3430 ((c >= 0x3001) && (c <= 0xD7FF)) ||
3431 ((c >= 0xF900) && (c <= 0xFDCF)) ||
3432 ((c >= 0xFDF0) && (c <= 0xFFFD)) ||
3433 ((c >= 0x10000) && (c <= 0xEFFFF)))
3434 return(1);
3435 } else {
3436 if (IS_LETTER(c) || (c == '_') || (c == ':'))
3437 return(1);
3438 }
3439 return(0);
3440}
3441
3442static int
3443xmlIsDocNameChar(xmlDocPtr doc, int c) {
3444 if ((doc == NULL) || (doc->properties & XML_DOC_OLD10) == 0) {
3445 /*
3446 * Use the new checks of production [4] [4a] amd [5] of the
3447 * Update 5 of XML-1.0
3448 */
3449 if (((c >= 'a') && (c <= 'z')) ||
3450 ((c >= 'A') && (c <= 'Z')) ||
3451 ((c >= '0') && (c <= '9')) || /* !start */
3452 (c == '_') || (c == ':') ||
3453 (c == '-') || (c == '.') || (c == 0xB7) || /* !start */
3454 ((c >= 0xC0) && (c <= 0xD6)) ||
3455 ((c >= 0xD8) && (c <= 0xF6)) ||
3456 ((c >= 0xF8) && (c <= 0x2FF)) ||
3457 ((c >= 0x300) && (c <= 0x36F)) || /* !start */
3458 ((c >= 0x370) && (c <= 0x37D)) ||
3459 ((c >= 0x37F) && (c <= 0x1FFF)) ||
3460 ((c >= 0x200C) && (c <= 0x200D)) ||
3461 ((c >= 0x203F) && (c <= 0x2040)) || /* !start */
3462 ((c >= 0x2070) && (c <= 0x218F)) ||
3463 ((c >= 0x2C00) && (c <= 0x2FEF)) ||
3464 ((c >= 0x3001) && (c <= 0xD7FF)) ||
3465 ((c >= 0xF900) && (c <= 0xFDCF)) ||
3466 ((c >= 0xFDF0) && (c <= 0xFFFD)) ||
3467 ((c >= 0x10000) && (c <= 0xEFFFF)))
3468 return(1);
3469 } else {
3470 if ((IS_LETTER(c)) || (IS_DIGIT(c)) ||
3471 (c == '.') || (c == '-') ||
3472 (c == '_') || (c == ':') ||
3473 (IS_COMBINING(c)) ||
3474 (IS_EXTENDER(c)))
3475 return(1);
3476 }
3477 return(0);
3478}
3479
3480/**
3481 * xmlValidateNameValue:
3482 * @doc: pointer to the document or NULL
3483 * @value: an Name value
3484 *
3485 * Validate that the given value match Name production
3486 *
3487 * returns 1 if valid or 0 otherwise
3488 */
3489
3490static int
3491xmlValidateNameValueInternal(xmlDocPtr doc, const xmlChar *value) {
3492 const xmlChar *cur;
3493 int val, len;
3494
3495 if (value == NULL) return(0);
3496 cur = value;
3497 val = xmlStringCurrentChar(NULL, cur, &len);
3498 cur += len;
3499 if (!xmlIsDocNameStartChar(doc, val))
3500 return(0);
3501
3502 val = xmlStringCurrentChar(NULL, cur, &len);
3503 cur += len;
3504 while (xmlIsDocNameChar(doc, val)) {
3505 val = xmlStringCurrentChar(NULL, cur, &len);
3506 cur += len;
3507 }
3508
3509 if (val != 0) return(0);
3510
3511 return(1);
3512}
3513
Owen Taylor3473f882001-02-23 17:55:21 +00003514/**
3515 * xmlValidateNameValue:
3516 * @value: an Name value
3517 *
3518 * Validate that the given value match Name production
3519 *
3520 * returns 1 if valid or 0 otherwise
3521 */
3522
Daniel Veillard9b731d72002-04-14 12:56:08 +00003523int
Owen Taylor3473f882001-02-23 17:55:21 +00003524xmlValidateNameValue(const xmlChar *value) {
Daniel Veillardae0765b2008-07-31 19:54:59 +00003525 return(xmlValidateNameValueInternal(NULL, value));
3526}
3527
3528/**
3529 * xmlValidateNamesValueInternal:
3530 * @doc: pointer to the document or NULL
3531 * @value: an Names value
3532 *
3533 * Validate that the given value match Names production
3534 *
3535 * returns 1 if valid or 0 otherwise
3536 */
3537
3538static int
3539xmlValidateNamesValueInternal(xmlDocPtr doc, const xmlChar *value) {
Owen Taylor3473f882001-02-23 17:55:21 +00003540 const xmlChar *cur;
Daniel Veillardd8224e02002-01-13 15:43:22 +00003541 int val, len;
Owen Taylor3473f882001-02-23 17:55:21 +00003542
3543 if (value == NULL) return(0);
3544 cur = value;
Daniel Veillardd8224e02002-01-13 15:43:22 +00003545 val = xmlStringCurrentChar(NULL, cur, &len);
3546 cur += len;
Daniel Veillardae0765b2008-07-31 19:54:59 +00003547
3548 if (!xmlIsDocNameStartChar(doc, val))
Owen Taylor3473f882001-02-23 17:55:21 +00003549 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00003550
Daniel Veillardd8224e02002-01-13 15:43:22 +00003551 val = xmlStringCurrentChar(NULL, cur, &len);
3552 cur += len;
Daniel Veillardae0765b2008-07-31 19:54:59 +00003553 while (xmlIsDocNameChar(doc, val)) {
Daniel Veillardd8224e02002-01-13 15:43:22 +00003554 val = xmlStringCurrentChar(NULL, cur, &len);
3555 cur += len;
3556 }
Owen Taylor3473f882001-02-23 17:55:21 +00003557
Daniel Veillardae0765b2008-07-31 19:54:59 +00003558 /* Should not test IS_BLANK(val) here -- see erratum E20*/
3559 while (val == 0x20) {
3560 while (val == 0x20) {
3561 val = xmlStringCurrentChar(NULL, cur, &len);
3562 cur += len;
3563 }
3564
3565 if (!xmlIsDocNameStartChar(doc, val))
3566 return(0);
3567
3568 val = xmlStringCurrentChar(NULL, cur, &len);
3569 cur += len;
3570
3571 while (xmlIsDocNameChar(doc, val)) {
3572 val = xmlStringCurrentChar(NULL, cur, &len);
3573 cur += len;
3574 }
3575 }
3576
Daniel Veillardd8224e02002-01-13 15:43:22 +00003577 if (val != 0) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00003578
3579 return(1);
3580}
3581
3582/**
3583 * xmlValidateNamesValue:
3584 * @value: an Names value
3585 *
3586 * Validate that the given value match Names production
3587 *
3588 * returns 1 if valid or 0 otherwise
3589 */
3590
Daniel Veillard9b731d72002-04-14 12:56:08 +00003591int
Owen Taylor3473f882001-02-23 17:55:21 +00003592xmlValidateNamesValue(const xmlChar *value) {
Daniel Veillardae0765b2008-07-31 19:54:59 +00003593 return(xmlValidateNamesValueInternal(NULL, value));
3594}
3595
3596/**
3597 * xmlValidateNmtokenValueInternal:
3598 * @doc: pointer to the document or NULL
3599 * @value: an Nmtoken value
3600 *
3601 * Validate that the given value match Nmtoken production
3602 *
3603 * [ VC: Name Token ]
3604 *
3605 * returns 1 if valid or 0 otherwise
3606 */
3607
3608static int
3609xmlValidateNmtokenValueInternal(xmlDocPtr doc, const xmlChar *value) {
Owen Taylor3473f882001-02-23 17:55:21 +00003610 const xmlChar *cur;
Daniel Veillardd8224e02002-01-13 15:43:22 +00003611 int val, len;
Owen Taylor3473f882001-02-23 17:55:21 +00003612
3613 if (value == NULL) return(0);
3614 cur = value;
Daniel Veillardd8224e02002-01-13 15:43:22 +00003615 val = xmlStringCurrentChar(NULL, cur, &len);
3616 cur += len;
Daniel Veillardae0765b2008-07-31 19:54:59 +00003617
3618 if (!xmlIsDocNameChar(doc, val))
Owen Taylor3473f882001-02-23 17:55:21 +00003619 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00003620
Daniel Veillardd8224e02002-01-13 15:43:22 +00003621 val = xmlStringCurrentChar(NULL, cur, &len);
3622 cur += len;
Daniel Veillardae0765b2008-07-31 19:54:59 +00003623 while (xmlIsDocNameChar(doc, val)) {
Daniel Veillardd8224e02002-01-13 15:43:22 +00003624 val = xmlStringCurrentChar(NULL, cur, &len);
3625 cur += len;
Owen Taylor3473f882001-02-23 17:55:21 +00003626 }
3627
Daniel Veillardd8224e02002-01-13 15:43:22 +00003628 if (val != 0) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00003629
3630 return(1);
3631}
3632
3633/**
3634 * xmlValidateNmtokenValue:
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003635 * @value: an Nmtoken value
Owen Taylor3473f882001-02-23 17:55:21 +00003636 *
3637 * Validate that the given value match Nmtoken production
3638 *
3639 * [ VC: Name Token ]
Daniel Veillardae0765b2008-07-31 19:54:59 +00003640 *
Owen Taylor3473f882001-02-23 17:55:21 +00003641 * returns 1 if valid or 0 otherwise
3642 */
3643
Daniel Veillard9b731d72002-04-14 12:56:08 +00003644int
Owen Taylor3473f882001-02-23 17:55:21 +00003645xmlValidateNmtokenValue(const xmlChar *value) {
Daniel Veillardae0765b2008-07-31 19:54:59 +00003646 return(xmlValidateNmtokenValueInternal(NULL, value));
3647}
3648
3649/**
3650 * xmlValidateNmtokensValueInternal:
3651 * @doc: pointer to the document or NULL
3652 * @value: an Nmtokens value
3653 *
3654 * Validate that the given value match Nmtokens production
3655 *
3656 * [ VC: Name Token ]
3657 *
3658 * returns 1 if valid or 0 otherwise
3659 */
3660
3661static int
3662xmlValidateNmtokensValueInternal(xmlDocPtr doc, const xmlChar *value) {
Owen Taylor3473f882001-02-23 17:55:21 +00003663 const xmlChar *cur;
Daniel Veillardd8224e02002-01-13 15:43:22 +00003664 int val, len;
Owen Taylor3473f882001-02-23 17:55:21 +00003665
3666 if (value == NULL) return(0);
3667 cur = value;
Daniel Veillardd8224e02002-01-13 15:43:22 +00003668 val = xmlStringCurrentChar(NULL, cur, &len);
3669 cur += len;
Owen Taylor3473f882001-02-23 17:55:21 +00003670
Daniel Veillardae0765b2008-07-31 19:54:59 +00003671 while (IS_BLANK(val)) {
Daniel Veillardd8224e02002-01-13 15:43:22 +00003672 val = xmlStringCurrentChar(NULL, cur, &len);
3673 cur += len;
3674 }
Owen Taylor3473f882001-02-23 17:55:21 +00003675
Daniel Veillardae0765b2008-07-31 19:54:59 +00003676 if (!xmlIsDocNameChar(doc, val))
3677 return(0);
3678
3679 while (xmlIsDocNameChar(doc, val)) {
3680 val = xmlStringCurrentChar(NULL, cur, &len);
3681 cur += len;
3682 }
3683
3684 /* Should not test IS_BLANK(val) here -- see erratum E20*/
3685 while (val == 0x20) {
3686 while (val == 0x20) {
3687 val = xmlStringCurrentChar(NULL, cur, &len);
3688 cur += len;
3689 }
3690 if (val == 0) return(1);
3691
3692 if (!xmlIsDocNameChar(doc, val))
3693 return(0);
3694
3695 val = xmlStringCurrentChar(NULL, cur, &len);
3696 cur += len;
3697
3698 while (xmlIsDocNameChar(doc, val)) {
3699 val = xmlStringCurrentChar(NULL, cur, &len);
3700 cur += len;
3701 }
3702 }
3703
Daniel Veillardd8224e02002-01-13 15:43:22 +00003704 if (val != 0) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00003705
3706 return(1);
3707}
3708
3709/**
3710 * xmlValidateNmtokensValue:
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003711 * @value: an Nmtokens value
Owen Taylor3473f882001-02-23 17:55:21 +00003712 *
3713 * Validate that the given value match Nmtokens production
3714 *
3715 * [ VC: Name Token ]
Daniel Veillardae0765b2008-07-31 19:54:59 +00003716 *
Owen Taylor3473f882001-02-23 17:55:21 +00003717 * returns 1 if valid or 0 otherwise
3718 */
3719
Daniel Veillard9b731d72002-04-14 12:56:08 +00003720int
Owen Taylor3473f882001-02-23 17:55:21 +00003721xmlValidateNmtokensValue(const xmlChar *value) {
Daniel Veillardae0765b2008-07-31 19:54:59 +00003722 return(xmlValidateNmtokensValueInternal(NULL, value));
Owen Taylor3473f882001-02-23 17:55:21 +00003723}
3724
3725/**
3726 * xmlValidateNotationDecl:
3727 * @ctxt: the validation context
3728 * @doc: a document instance
3729 * @nota: a notation definition
3730 *
3731 * Try to validate a single notation definition
3732 * basically it does the following checks as described by the
3733 * XML-1.0 recommendation:
Daniel Veillardcbaf3992001-12-31 16:16:02 +00003734 * - it seems that no validity constraint exists on notation declarations
Owen Taylor3473f882001-02-23 17:55:21 +00003735 * But this function get called anyway ...
3736 *
3737 * returns 1 if valid or 0 otherwise
3738 */
3739
3740int
Daniel Veillardc86a4fa2001-03-26 16:28:29 +00003741xmlValidateNotationDecl(xmlValidCtxtPtr ctxt ATTRIBUTE_UNUSED, xmlDocPtr doc ATTRIBUTE_UNUSED,
3742 xmlNotationPtr nota ATTRIBUTE_UNUSED) {
Owen Taylor3473f882001-02-23 17:55:21 +00003743 int ret = 1;
3744
3745 return(ret);
3746}
3747
3748/**
Daniel Veillardbe2bd6a2008-11-27 15:26:28 +00003749 * xmlValidateAttributeValueInternal:
3750 * @doc: the document
Owen Taylor3473f882001-02-23 17:55:21 +00003751 * @type: an attribute type
3752 * @value: an attribute value
3753 *
3754 * Validate that the given attribute value match the proper production
3755 *
Owen Taylor3473f882001-02-23 17:55:21 +00003756 * returns 1 if valid or 0 otherwise
3757 */
3758
Daniel Veillardae0765b2008-07-31 19:54:59 +00003759static int
3760xmlValidateAttributeValueInternal(xmlDocPtr doc, xmlAttributeType type,
3761 const xmlChar *value) {
Owen Taylor3473f882001-02-23 17:55:21 +00003762 switch (type) {
3763 case XML_ATTRIBUTE_ENTITIES:
3764 case XML_ATTRIBUTE_IDREFS:
Daniel Veillardae0765b2008-07-31 19:54:59 +00003765 return(xmlValidateNamesValueInternal(doc, value));
Owen Taylor3473f882001-02-23 17:55:21 +00003766 case XML_ATTRIBUTE_ENTITY:
3767 case XML_ATTRIBUTE_IDREF:
3768 case XML_ATTRIBUTE_ID:
3769 case XML_ATTRIBUTE_NOTATION:
Daniel Veillardae0765b2008-07-31 19:54:59 +00003770 return(xmlValidateNameValueInternal(doc, value));
Owen Taylor3473f882001-02-23 17:55:21 +00003771 case XML_ATTRIBUTE_NMTOKENS:
3772 case XML_ATTRIBUTE_ENUMERATION:
Daniel Veillardae0765b2008-07-31 19:54:59 +00003773 return(xmlValidateNmtokensValueInternal(doc, value));
Owen Taylor3473f882001-02-23 17:55:21 +00003774 case XML_ATTRIBUTE_NMTOKEN:
Daniel Veillardae0765b2008-07-31 19:54:59 +00003775 return(xmlValidateNmtokenValueInternal(doc, value));
Owen Taylor3473f882001-02-23 17:55:21 +00003776 case XML_ATTRIBUTE_CDATA:
3777 break;
3778 }
3779 return(1);
3780}
3781
Daniel Veillardbe2bd6a2008-11-27 15:26:28 +00003782/**
3783 * xmlValidateAttributeValue:
3784 * @type: an attribute type
3785 * @value: an attribute value
3786 *
3787 * Validate that the given attribute value match the proper production
3788 *
3789 * [ VC: ID ]
3790 * Values of type ID must match the Name production....
3791 *
3792 * [ VC: IDREF ]
3793 * Values of type IDREF must match the Name production, and values
3794 * of type IDREFS must match Names ...
3795 *
3796 * [ VC: Entity Name ]
3797 * Values of type ENTITY must match the Name production, values
3798 * of type ENTITIES must match Names ...
3799 *
3800 * [ VC: Name Token ]
3801 * Values of type NMTOKEN must match the Nmtoken production; values
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003802 * of type NMTOKENS must match Nmtokens.
Daniel Veillardbe2bd6a2008-11-27 15:26:28 +00003803 *
3804 * returns 1 if valid or 0 otherwise
3805 */
Daniel Veillardae0765b2008-07-31 19:54:59 +00003806int
3807xmlValidateAttributeValue(xmlAttributeType type, const xmlChar *value) {
3808 return(xmlValidateAttributeValueInternal(NULL, type, value));
3809}
3810
Owen Taylor3473f882001-02-23 17:55:21 +00003811/**
3812 * xmlValidateAttributeValue2:
3813 * @ctxt: the validation context
3814 * @doc: the document
3815 * @name: the attribute name (used for error reporting only)
3816 * @type: the attribute type
3817 * @value: the attribute value
3818 *
3819 * Validate that the given attribute value match a given type.
3820 * This typically cannot be done before having finished parsing
3821 * the subsets.
3822 *
3823 * [ VC: IDREF ]
3824 * Values of type IDREF must match one of the declared IDs
3825 * Values of type IDREFS must match a sequence of the declared IDs
3826 * each Name must match the value of an ID attribute on some element
3827 * in the XML document; i.e. IDREF values must match the value of
3828 * some ID attribute
3829 *
3830 * [ VC: Entity Name ]
3831 * Values of type ENTITY must match one declared entity
3832 * Values of type ENTITIES must match a sequence of declared entities
3833 *
3834 * [ VC: Notation Attributes ]
3835 * all notation names in the declaration must be declared.
3836 *
3837 * returns 1 if valid or 0 otherwise
3838 */
3839
Daniel Veillard56a4cb82001-03-24 17:00:36 +00003840static int
Owen Taylor3473f882001-02-23 17:55:21 +00003841xmlValidateAttributeValue2(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
3842 const xmlChar *name, xmlAttributeType type, const xmlChar *value) {
3843 int ret = 1;
3844 switch (type) {
3845 case XML_ATTRIBUTE_IDREFS:
3846 case XML_ATTRIBUTE_IDREF:
3847 case XML_ATTRIBUTE_ID:
3848 case XML_ATTRIBUTE_NMTOKENS:
3849 case XML_ATTRIBUTE_ENUMERATION:
3850 case XML_ATTRIBUTE_NMTOKEN:
3851 case XML_ATTRIBUTE_CDATA:
3852 break;
3853 case XML_ATTRIBUTE_ENTITY: {
3854 xmlEntityPtr ent;
3855
3856 ent = xmlGetDocEntity(doc, value);
Daniel Veillard62998c02003-09-15 12:56:36 +00003857 /* yeah it's a bit messy... */
Daniel Veillard878eab02002-02-19 13:46:09 +00003858 if ((ent == NULL) && (doc->standalone == 1)) {
3859 doc->standalone = 0;
3860 ent = xmlGetDocEntity(doc, value);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003861 }
Owen Taylor3473f882001-02-23 17:55:21 +00003862 if (ent == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003863 xmlErrValidNode(ctxt, (xmlNodePtr) doc,
3864 XML_DTD_UNKNOWN_ENTITY,
Owen Taylor3473f882001-02-23 17:55:21 +00003865 "ENTITY attribute %s reference an unknown entity \"%s\"\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003866 name, value, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003867 ret = 0;
3868 } else if (ent->etype != XML_EXTERNAL_GENERAL_UNPARSED_ENTITY) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003869 xmlErrValidNode(ctxt, (xmlNodePtr) doc,
3870 XML_DTD_ENTITY_TYPE,
Owen Taylor3473f882001-02-23 17:55:21 +00003871 "ENTITY attribute %s reference an entity \"%s\" of wrong type\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003872 name, value, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003873 ret = 0;
3874 }
3875 break;
3876 }
3877 case XML_ATTRIBUTE_ENTITIES: {
3878 xmlChar *dup, *nam = NULL, *cur, save;
3879 xmlEntityPtr ent;
3880
3881 dup = xmlStrdup(value);
3882 if (dup == NULL)
3883 return(0);
3884 cur = dup;
3885 while (*cur != 0) {
3886 nam = cur;
William M. Brack76e95df2003-10-18 16:20:14 +00003887 while ((*cur != 0) && (!IS_BLANK_CH(*cur))) cur++;
Owen Taylor3473f882001-02-23 17:55:21 +00003888 save = *cur;
3889 *cur = 0;
3890 ent = xmlGetDocEntity(doc, nam);
3891 if (ent == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003892 xmlErrValidNode(ctxt, (xmlNodePtr) doc,
3893 XML_DTD_UNKNOWN_ENTITY,
Owen Taylor3473f882001-02-23 17:55:21 +00003894 "ENTITIES attribute %s reference an unknown entity \"%s\"\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003895 name, nam, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003896 ret = 0;
3897 } else if (ent->etype != XML_EXTERNAL_GENERAL_UNPARSED_ENTITY) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003898 xmlErrValidNode(ctxt, (xmlNodePtr) doc,
3899 XML_DTD_ENTITY_TYPE,
Owen Taylor3473f882001-02-23 17:55:21 +00003900 "ENTITIES attribute %s reference an entity \"%s\" of wrong type\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003901 name, nam, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003902 ret = 0;
3903 }
3904 if (save == 0)
3905 break;
3906 *cur = save;
William M. Brack76e95df2003-10-18 16:20:14 +00003907 while (IS_BLANK_CH(*cur)) cur++;
Owen Taylor3473f882001-02-23 17:55:21 +00003908 }
3909 xmlFree(dup);
3910 break;
3911 }
3912 case XML_ATTRIBUTE_NOTATION: {
3913 xmlNotationPtr nota;
3914
3915 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
3916 if ((nota == NULL) && (doc->extSubset != NULL))
3917 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
3918
3919 if (nota == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003920 xmlErrValidNode(ctxt, (xmlNodePtr) doc,
3921 XML_DTD_UNKNOWN_NOTATION,
Owen Taylor3473f882001-02-23 17:55:21 +00003922 "NOTATION attribute %s reference an unknown notation \"%s\"\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00003923 name, value, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00003924 ret = 0;
3925 }
3926 break;
3927 }
3928 }
3929 return(ret);
3930}
3931
3932/**
Daniel Veillard8dc16a62002-02-19 21:08:48 +00003933 * xmlValidCtxtNormalizeAttributeValue:
3934 * @ctxt: the validation context
3935 * @doc: the document
3936 * @elem: the parent
3937 * @name: the attribute name
3938 * @value: the attribute value
3939 * @ctxt: the validation context or NULL
3940 *
3941 * Does the validation related extra step of the normalization of attribute
3942 * values:
3943 *
3944 * If the declared value is not CDATA, then the XML processor must further
3945 * process the normalized attribute value by discarding any leading and
3946 * trailing space (#x20) characters, and by replacing sequences of space
3947 * (#x20) characters by single space (#x20) character.
3948 *
3949 * Also check VC: Standalone Document Declaration in P32, and update
3950 * ctxt->valid accordingly
3951 *
3952 * returns a new normalized string if normalization is needed, NULL otherwise
3953 * the caller must free the returned value.
3954 */
3955
3956xmlChar *
3957xmlValidCtxtNormalizeAttributeValue(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
3958 xmlNodePtr elem, const xmlChar *name, const xmlChar *value) {
3959 xmlChar *ret, *dst;
3960 const xmlChar *src;
3961 xmlAttributePtr attrDecl = NULL;
3962 int extsubset = 0;
3963
3964 if (doc == NULL) return(NULL);
3965 if (elem == NULL) return(NULL);
3966 if (name == NULL) return(NULL);
3967 if (value == NULL) return(NULL);
3968
3969 if ((elem->ns != NULL) && (elem->ns->prefix != NULL)) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00003970 xmlChar fn[50];
3971 xmlChar *fullname;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08003972
Daniel Veillardc00cda82003-04-07 10:22:39 +00003973 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
3974 if (fullname == NULL)
Daniel Veillard24505b02005-07-28 23:49:35 +00003975 return(NULL);
Daniel Veillardc00cda82003-04-07 10:22:39 +00003976 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, name);
Daniel Veillard8dc16a62002-02-19 21:08:48 +00003977 if ((attrDecl == NULL) && (doc->extSubset != NULL)) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00003978 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname, name);
Daniel Veillard8dc16a62002-02-19 21:08:48 +00003979 if (attrDecl != NULL)
3980 extsubset = 1;
3981 }
Daniel Veillardc00cda82003-04-07 10:22:39 +00003982 if ((fullname != fn) && (fullname != elem->name))
3983 xmlFree(fullname);
Daniel Veillard8dc16a62002-02-19 21:08:48 +00003984 }
3985 if ((attrDecl == NULL) && (doc->intSubset != NULL))
3986 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, elem->name, name);
3987 if ((attrDecl == NULL) && (doc->extSubset != NULL)) {
3988 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, elem->name, name);
3989 if (attrDecl != NULL)
3990 extsubset = 1;
3991 }
3992
3993 if (attrDecl == NULL)
3994 return(NULL);
3995 if (attrDecl->atype == XML_ATTRIBUTE_CDATA)
3996 return(NULL);
3997
3998 ret = xmlStrdup(value);
3999 if (ret == NULL)
4000 return(NULL);
4001 src = value;
4002 dst = ret;
4003 while (*src == 0x20) src++;
4004 while (*src != 0) {
4005 if (*src == 0x20) {
4006 while (*src == 0x20) src++;
4007 if (*src != 0)
4008 *dst++ = 0x20;
4009 } else {
4010 *dst++ = *src++;
4011 }
4012 }
4013 *dst = 0;
4014 if ((doc->standalone) && (extsubset == 1) && (!xmlStrEqual(value, ret))) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004015 xmlErrValidNode(ctxt, elem, XML_DTD_NOT_STANDALONE,
Daniel Veillard8dc16a62002-02-19 21:08:48 +00004016"standalone: %s on %s value had to be normalized based on external subset declaration\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004017 name, elem->name, NULL);
Daniel Veillard8dc16a62002-02-19 21:08:48 +00004018 ctxt->valid = 0;
4019 }
4020 return(ret);
4021}
4022
4023/**
Owen Taylor3473f882001-02-23 17:55:21 +00004024 * xmlValidNormalizeAttributeValue:
4025 * @doc: the document
4026 * @elem: the parent
4027 * @name: the attribute name
4028 * @value: the attribute value
4029 *
4030 * Does the validation related extra step of the normalization of attribute
4031 * values:
4032 *
4033 * If the declared value is not CDATA, then the XML processor must further
4034 * process the normalized attribute value by discarding any leading and
4035 * trailing space (#x20) characters, and by replacing sequences of space
4036 * (#x20) characters by single space (#x20) character.
4037 *
Daniel Veillard652327a2003-09-29 18:02:38 +00004038 * Returns a new normalized string if normalization is needed, NULL otherwise
Owen Taylor3473f882001-02-23 17:55:21 +00004039 * the caller must free the returned value.
4040 */
4041
4042xmlChar *
4043xmlValidNormalizeAttributeValue(xmlDocPtr doc, xmlNodePtr elem,
4044 const xmlChar *name, const xmlChar *value) {
4045 xmlChar *ret, *dst;
4046 const xmlChar *src;
4047 xmlAttributePtr attrDecl = NULL;
4048
4049 if (doc == NULL) return(NULL);
4050 if (elem == NULL) return(NULL);
4051 if (name == NULL) return(NULL);
4052 if (value == NULL) return(NULL);
4053
4054 if ((elem->ns != NULL) && (elem->ns->prefix != NULL)) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00004055 xmlChar fn[50];
4056 xmlChar *fullname;
Daniel Veillard594e5df2009-09-07 14:58:47 +02004057
Daniel Veillardc00cda82003-04-07 10:22:39 +00004058 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
4059 if (fullname == NULL)
Daniel Veillard24505b02005-07-28 23:49:35 +00004060 return(NULL);
Daniel Veillardc00cda82003-04-07 10:22:39 +00004061 if ((fullname != fn) && (fullname != elem->name))
4062 xmlFree(fullname);
Owen Taylor3473f882001-02-23 17:55:21 +00004063 }
4064 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, elem->name, name);
4065 if ((attrDecl == NULL) && (doc->extSubset != NULL))
4066 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, elem->name, name);
4067
4068 if (attrDecl == NULL)
4069 return(NULL);
4070 if (attrDecl->atype == XML_ATTRIBUTE_CDATA)
4071 return(NULL);
4072
4073 ret = xmlStrdup(value);
4074 if (ret == NULL)
4075 return(NULL);
4076 src = value;
4077 dst = ret;
4078 while (*src == 0x20) src++;
4079 while (*src != 0) {
4080 if (*src == 0x20) {
4081 while (*src == 0x20) src++;
4082 if (*src != 0)
4083 *dst++ = 0x20;
4084 } else {
4085 *dst++ = *src++;
4086 }
4087 }
4088 *dst = 0;
4089 return(ret);
4090}
4091
Daniel Veillard56a4cb82001-03-24 17:00:36 +00004092static void
Owen Taylor3473f882001-02-23 17:55:21 +00004093xmlValidateAttributeIdCallback(xmlAttributePtr attr, int *count,
Daniel Veillardc86a4fa2001-03-26 16:28:29 +00004094 const xmlChar* name ATTRIBUTE_UNUSED) {
Owen Taylor3473f882001-02-23 17:55:21 +00004095 if (attr->atype == XML_ATTRIBUTE_ID) (*count)++;
4096}
4097
4098/**
4099 * xmlValidateAttributeDecl:
4100 * @ctxt: the validation context
4101 * @doc: a document instance
4102 * @attr: an attribute definition
4103 *
4104 * Try to validate a single attribute definition
4105 * basically it does the following checks as described by the
4106 * XML-1.0 recommendation:
4107 * - [ VC: Attribute Default Legal ]
4108 * - [ VC: Enumeration ]
4109 * - [ VC: ID Attribute Default ]
4110 *
4111 * The ID/IDREF uniqueness and matching are done separately
4112 *
4113 * returns 1 if valid or 0 otherwise
4114 */
4115
4116int
4117xmlValidateAttributeDecl(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
4118 xmlAttributePtr attr) {
4119 int ret = 1;
4120 int val;
4121 CHECK_DTD;
4122 if(attr == NULL) return(1);
Daniel Veillardae0765b2008-07-31 19:54:59 +00004123
Owen Taylor3473f882001-02-23 17:55:21 +00004124 /* Attribute Default Legal */
4125 /* Enumeration */
4126 if (attr->defaultValue != NULL) {
Daniel Veillardae0765b2008-07-31 19:54:59 +00004127 val = xmlValidateAttributeValueInternal(doc, attr->atype,
4128 attr->defaultValue);
Owen Taylor3473f882001-02-23 17:55:21 +00004129 if (val == 0) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004130 xmlErrValidNode(ctxt, (xmlNodePtr) attr, XML_DTD_ATTRIBUTE_DEFAULT,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004131 "Syntax of default value for attribute %s of %s is not valid\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004132 attr->name, attr->elem, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00004133 }
4134 ret &= val;
4135 }
4136
4137 /* ID Attribute Default */
4138 if ((attr->atype == XML_ATTRIBUTE_ID)&&
4139 (attr->def != XML_ATTRIBUTE_IMPLIED) &&
4140 (attr->def != XML_ATTRIBUTE_REQUIRED)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004141 xmlErrValidNode(ctxt, (xmlNodePtr) attr, XML_DTD_ID_FIXED,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004142 "ID attribute %s of %s is not valid must be #IMPLIED or #REQUIRED\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004143 attr->name, attr->elem, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00004144 ret = 0;
4145 }
4146
4147 /* One ID per Element Type */
4148 if (attr->atype == XML_ATTRIBUTE_ID) {
4149 int nbId;
4150
Daniel Veillardcbaf3992001-12-31 16:16:02 +00004151 /* the trick is that we parse DtD as their own internal subset */
Owen Taylor3473f882001-02-23 17:55:21 +00004152 xmlElementPtr elem = xmlGetDtdElementDesc(doc->intSubset,
4153 attr->elem);
4154 if (elem != NULL) {
Daniel Veillarddbee0f12005-06-27 13:42:57 +00004155 nbId = xmlScanIDAttributeDecl(NULL, elem, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00004156 } else {
4157 xmlAttributeTablePtr table;
4158
4159 /*
4160 * The attribute may be declared in the internal subset and the
4161 * element in the external subset.
4162 */
4163 nbId = 0;
Daniel Veillard11ce4002006-03-10 00:36:23 +00004164 if (doc->intSubset != NULL) {
4165 table = (xmlAttributeTablePtr) doc->intSubset->attributes;
4166 xmlHashScan3(table, NULL, NULL, attr->elem, (xmlHashScanner)
4167 xmlValidateAttributeIdCallback, &nbId);
4168 }
Owen Taylor3473f882001-02-23 17:55:21 +00004169 }
4170 if (nbId > 1) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08004171
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004172 xmlErrValidNodeNr(ctxt, (xmlNodePtr) attr, XML_DTD_ID_SUBSET,
Owen Taylor3473f882001-02-23 17:55:21 +00004173 "Element %s has %d ID attribute defined in the internal subset : %s\n",
4174 attr->elem, nbId, attr->name);
4175 } else if (doc->extSubset != NULL) {
4176 int extId = 0;
4177 elem = xmlGetDtdElementDesc(doc->extSubset, attr->elem);
4178 if (elem != NULL) {
Daniel Veillarddbee0f12005-06-27 13:42:57 +00004179 extId = xmlScanIDAttributeDecl(NULL, elem, 0);
Owen Taylor3473f882001-02-23 17:55:21 +00004180 }
4181 if (extId > 1) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004182 xmlErrValidNodeNr(ctxt, (xmlNodePtr) attr, XML_DTD_ID_SUBSET,
Owen Taylor3473f882001-02-23 17:55:21 +00004183 "Element %s has %d ID attribute defined in the external subset : %s\n",
4184 attr->elem, extId, attr->name);
4185 } else if (extId + nbId > 1) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004186 xmlErrValidNode(ctxt, (xmlNodePtr) attr, XML_DTD_ID_SUBSET,
Owen Taylor3473f882001-02-23 17:55:21 +00004187"Element %s has ID attributes defined in the internal and external subset : %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004188 attr->elem, attr->name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00004189 }
4190 }
4191 }
4192
4193 /* Validity Constraint: Enumeration */
4194 if ((attr->defaultValue != NULL) && (attr->tree != NULL)) {
4195 xmlEnumerationPtr tree = attr->tree;
4196 while (tree != NULL) {
4197 if (xmlStrEqual(tree->name, attr->defaultValue)) break;
4198 tree = tree->next;
4199 }
4200 if (tree == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004201 xmlErrValidNode(ctxt, (xmlNodePtr) attr, XML_DTD_ATTRIBUTE_VALUE,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004202"Default value \"%s\" for attribute %s of %s is not among the enumerated set\n",
Owen Taylor3473f882001-02-23 17:55:21 +00004203 attr->defaultValue, attr->name, attr->elem);
4204 ret = 0;
4205 }
4206 }
4207
4208 return(ret);
4209}
4210
4211/**
4212 * xmlValidateElementDecl:
4213 * @ctxt: the validation context
4214 * @doc: a document instance
4215 * @elem: an element definition
4216 *
4217 * Try to validate a single element definition
4218 * basically it does the following checks as described by the
4219 * XML-1.0 recommendation:
4220 * - [ VC: One ID per Element Type ]
4221 * - [ VC: No Duplicate Types ]
4222 * - [ VC: Unique Element Type Declaration ]
4223 *
4224 * returns 1 if valid or 0 otherwise
4225 */
4226
4227int
4228xmlValidateElementDecl(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
4229 xmlElementPtr elem) {
4230 int ret = 1;
4231 xmlElementPtr tst;
4232
4233 CHECK_DTD;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08004234
Owen Taylor3473f882001-02-23 17:55:21 +00004235 if (elem == NULL) return(1);
4236
Daniel Veillard5acfd6b2002-09-18 16:29:02 +00004237#if 0
Daniel Veillard84d70a42002-09-16 10:51:38 +00004238#ifdef LIBXML_REGEXP_ENABLED
4239 /* Build the regexp associated to the content model */
4240 ret = xmlValidBuildContentModel(ctxt, elem);
4241#endif
Daniel Veillard5acfd6b2002-09-18 16:29:02 +00004242#endif
Daniel Veillard84d70a42002-09-16 10:51:38 +00004243
Owen Taylor3473f882001-02-23 17:55:21 +00004244 /* No Duplicate Types */
4245 if (elem->etype == XML_ELEMENT_TYPE_MIXED) {
4246 xmlElementContentPtr cur, next;
4247 const xmlChar *name;
4248
4249 cur = elem->content;
4250 while (cur != NULL) {
4251 if (cur->type != XML_ELEMENT_CONTENT_OR) break;
4252 if (cur->c1 == NULL) break;
4253 if (cur->c1->type == XML_ELEMENT_CONTENT_ELEMENT) {
4254 name = cur->c1->name;
4255 next = cur->c2;
4256 while (next != NULL) {
4257 if (next->type == XML_ELEMENT_CONTENT_ELEMENT) {
Daniel Veillard7b68df92003-08-03 22:58:54 +00004258 if ((xmlStrEqual(next->name, name)) &&
Daniel Veillarda7216122009-08-21 18:22:58 +02004259 (xmlStrEqual(next->prefix, cur->c1->prefix))) {
4260 if (cur->c1->prefix == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004261 xmlErrValidNode(ctxt, (xmlNodePtr) elem, XML_DTD_CONTENT_ERROR,
Owen Taylor3473f882001-02-23 17:55:21 +00004262 "Definition of %s has duplicate references of %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004263 elem->name, name, NULL);
Daniel Veillard7b68df92003-08-03 22:58:54 +00004264 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004265 xmlErrValidNode(ctxt, (xmlNodePtr) elem, XML_DTD_CONTENT_ERROR,
Daniel Veillard7b68df92003-08-03 22:58:54 +00004266 "Definition of %s has duplicate references of %s:%s\n",
Daniel Veillarda7216122009-08-21 18:22:58 +02004267 elem->name, cur->c1->prefix, name);
Daniel Veillard7b68df92003-08-03 22:58:54 +00004268 }
Owen Taylor3473f882001-02-23 17:55:21 +00004269 ret = 0;
4270 }
4271 break;
4272 }
4273 if (next->c1 == NULL) break;
4274 if (next->c1->type != XML_ELEMENT_CONTENT_ELEMENT) break;
Daniel Veillard7b68df92003-08-03 22:58:54 +00004275 if ((xmlStrEqual(next->c1->name, name)) &&
Daniel Veillarda7216122009-08-21 18:22:58 +02004276 (xmlStrEqual(next->c1->prefix, cur->c1->prefix))) {
4277 if (cur->c1->prefix == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004278 xmlErrValidNode(ctxt, (xmlNodePtr) elem, XML_DTD_CONTENT_ERROR,
Daniel Veillard7b68df92003-08-03 22:58:54 +00004279 "Definition of %s has duplicate references to %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004280 elem->name, name, NULL);
Daniel Veillard7b68df92003-08-03 22:58:54 +00004281 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004282 xmlErrValidNode(ctxt, (xmlNodePtr) elem, XML_DTD_CONTENT_ERROR,
Daniel Veillard7b68df92003-08-03 22:58:54 +00004283 "Definition of %s has duplicate references to %s:%s\n",
Daniel Veillarda7216122009-08-21 18:22:58 +02004284 elem->name, cur->c1->prefix, name);
Daniel Veillard7b68df92003-08-03 22:58:54 +00004285 }
Owen Taylor3473f882001-02-23 17:55:21 +00004286 ret = 0;
4287 }
4288 next = next->c2;
4289 }
4290 }
4291 cur = cur->c2;
4292 }
4293 }
4294
4295 /* VC: Unique Element Type Declaration */
4296 tst = xmlGetDtdElementDesc(doc->intSubset, elem->name);
Daniel Veillarda10efa82001-04-18 13:09:01 +00004297 if ((tst != NULL ) && (tst != elem) &&
Daniel Veillardbe480fb2001-11-08 23:36:42 +00004298 ((tst->prefix == elem->prefix) ||
4299 (xmlStrEqual(tst->prefix, elem->prefix))) &&
Daniel Veillarda10efa82001-04-18 13:09:01 +00004300 (tst->etype != XML_ELEMENT_TYPE_UNDEFINED)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004301 xmlErrValidNode(ctxt, (xmlNodePtr) elem, XML_DTD_ELEM_REDEFINED,
4302 "Redefinition of element %s\n",
4303 elem->name, NULL, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00004304 ret = 0;
4305 }
4306 tst = xmlGetDtdElementDesc(doc->extSubset, elem->name);
Daniel Veillarda10efa82001-04-18 13:09:01 +00004307 if ((tst != NULL ) && (tst != elem) &&
Daniel Veillardbe480fb2001-11-08 23:36:42 +00004308 ((tst->prefix == elem->prefix) ||
4309 (xmlStrEqual(tst->prefix, elem->prefix))) &&
Daniel Veillarda10efa82001-04-18 13:09:01 +00004310 (tst->etype != XML_ELEMENT_TYPE_UNDEFINED)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004311 xmlErrValidNode(ctxt, (xmlNodePtr) elem, XML_DTD_ELEM_REDEFINED,
4312 "Redefinition of element %s\n",
4313 elem->name, NULL, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00004314 ret = 0;
4315 }
Daniel Veillarda10efa82001-04-18 13:09:01 +00004316 /* One ID per Element Type
4317 * already done when registering the attribute
Owen Taylor3473f882001-02-23 17:55:21 +00004318 if (xmlScanIDAttributeDecl(ctxt, elem) > 1) {
4319 ret = 0;
Daniel Veillarda10efa82001-04-18 13:09:01 +00004320 } */
Owen Taylor3473f882001-02-23 17:55:21 +00004321 return(ret);
4322}
4323
4324/**
4325 * xmlValidateOneAttribute:
4326 * @ctxt: the validation context
4327 * @doc: a document instance
4328 * @elem: an element instance
4329 * @attr: an attribute instance
4330 * @value: the attribute value (without entities processing)
4331 *
4332 * Try to validate a single attribute for an element
4333 * basically it does the following checks as described by the
4334 * XML-1.0 recommendation:
4335 * - [ VC: Attribute Value Type ]
4336 * - [ VC: Fixed Attribute Default ]
4337 * - [ VC: Entity Name ]
4338 * - [ VC: Name Token ]
4339 * - [ VC: ID ]
4340 * - [ VC: IDREF ]
4341 * - [ VC: Entity Name ]
4342 * - [ VC: Notation Attributes ]
4343 *
4344 * The ID/IDREF uniqueness and matching are done separately
4345 *
4346 * returns 1 if valid or 0 otherwise
4347 */
4348
4349int
4350xmlValidateOneAttribute(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
Daniel Veillardf8e3db02012-09-11 13:26:36 +08004351 xmlNodePtr elem, xmlAttrPtr attr, const xmlChar *value)
Daniel Veillard07cb8222003-09-10 10:51:05 +00004352{
Owen Taylor3473f882001-02-23 17:55:21 +00004353 xmlAttributePtr attrDecl = NULL;
4354 int val;
4355 int ret = 1;
4356
4357 CHECK_DTD;
4358 if ((elem == NULL) || (elem->name == NULL)) return(0);
4359 if ((attr == NULL) || (attr->name == NULL)) return(0);
4360
4361 if ((elem->ns != NULL) && (elem->ns->prefix != NULL)) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00004362 xmlChar fn[50];
4363 xmlChar *fullname;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08004364
Daniel Veillardc00cda82003-04-07 10:22:39 +00004365 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
4366 if (fullname == NULL)
4367 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00004368 if (attr->ns != NULL) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00004369 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
Owen Taylor3473f882001-02-23 17:55:21 +00004370 attr->name, attr->ns->prefix);
4371 if ((attrDecl == NULL) && (doc->extSubset != NULL))
Daniel Veillardc00cda82003-04-07 10:22:39 +00004372 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
Owen Taylor3473f882001-02-23 17:55:21 +00004373 attr->name, attr->ns->prefix);
4374 } else {
Daniel Veillardc00cda82003-04-07 10:22:39 +00004375 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, attr->name);
Owen Taylor3473f882001-02-23 17:55:21 +00004376 if ((attrDecl == NULL) && (doc->extSubset != NULL))
4377 attrDecl = xmlGetDtdAttrDesc(doc->extSubset,
Daniel Veillardc00cda82003-04-07 10:22:39 +00004378 fullname, attr->name);
Owen Taylor3473f882001-02-23 17:55:21 +00004379 }
Daniel Veillardc00cda82003-04-07 10:22:39 +00004380 if ((fullname != fn) && (fullname != elem->name))
4381 xmlFree(fullname);
Owen Taylor3473f882001-02-23 17:55:21 +00004382 }
4383 if (attrDecl == NULL) {
4384 if (attr->ns != NULL) {
4385 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elem->name,
4386 attr->name, attr->ns->prefix);
4387 if ((attrDecl == NULL) && (doc->extSubset != NULL))
4388 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elem->name,
4389 attr->name, attr->ns->prefix);
4390 } else {
4391 attrDecl = xmlGetDtdAttrDesc(doc->intSubset,
4392 elem->name, attr->name);
4393 if ((attrDecl == NULL) && (doc->extSubset != NULL))
4394 attrDecl = xmlGetDtdAttrDesc(doc->extSubset,
4395 elem->name, attr->name);
4396 }
4397 }
4398
4399
4400 /* Validity Constraint: Attribute Value Type */
4401 if (attrDecl == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004402 xmlErrValidNode(ctxt, elem, XML_DTD_UNKNOWN_ATTRIBUTE,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004403 "No declaration for attribute %s of element %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004404 attr->name, elem->name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00004405 return(0);
4406 }
4407 attr->atype = attrDecl->atype;
4408
Daniel Veillardae0765b2008-07-31 19:54:59 +00004409 val = xmlValidateAttributeValueInternal(doc, attrDecl->atype, value);
Owen Taylor3473f882001-02-23 17:55:21 +00004410 if (val == 0) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004411 xmlErrValidNode(ctxt, elem, XML_DTD_ATTRIBUTE_VALUE,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004412 "Syntax of value for attribute %s of %s is not valid\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004413 attr->name, elem->name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00004414 ret = 0;
4415 }
4416
4417 /* Validity constraint: Fixed Attribute Default */
4418 if (attrDecl->def == XML_ATTRIBUTE_FIXED) {
4419 if (!xmlStrEqual(value, attrDecl->defaultValue)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004420 xmlErrValidNode(ctxt, elem, XML_DTD_ATTRIBUTE_DEFAULT,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004421 "Value for attribute %s of %s is different from default \"%s\"\n",
Owen Taylor3473f882001-02-23 17:55:21 +00004422 attr->name, elem->name, attrDecl->defaultValue);
4423 ret = 0;
4424 }
4425 }
4426
4427 /* Validity Constraint: ID uniqueness */
4428 if (attrDecl->atype == XML_ATTRIBUTE_ID) {
4429 if (xmlAddID(ctxt, doc, value, attr) == NULL)
4430 ret = 0;
4431 }
4432
4433 if ((attrDecl->atype == XML_ATTRIBUTE_IDREF) ||
4434 (attrDecl->atype == XML_ATTRIBUTE_IDREFS)) {
4435 if (xmlAddRef(ctxt, doc, value, attr) == NULL)
4436 ret = 0;
4437 }
4438
4439 /* Validity Constraint: Notation Attributes */
4440 if (attrDecl->atype == XML_ATTRIBUTE_NOTATION) {
4441 xmlEnumerationPtr tree = attrDecl->tree;
4442 xmlNotationPtr nota;
4443
4444 /* First check that the given NOTATION was declared */
4445 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4446 if (nota == NULL)
4447 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08004448
Owen Taylor3473f882001-02-23 17:55:21 +00004449 if (nota == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004450 xmlErrValidNode(ctxt, elem, XML_DTD_UNKNOWN_NOTATION,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004451 "Value \"%s\" for attribute %s of %s is not a declared Notation\n",
Owen Taylor3473f882001-02-23 17:55:21 +00004452 value, attr->name, elem->name);
4453 ret = 0;
4454 }
4455
4456 /* Second, verify that it's among the list */
4457 while (tree != NULL) {
4458 if (xmlStrEqual(tree->name, value)) break;
4459 tree = tree->next;
4460 }
4461 if (tree == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004462 xmlErrValidNode(ctxt, elem, XML_DTD_NOTATION_VALUE,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004463"Value \"%s\" for attribute %s of %s is not among the enumerated notations\n",
Owen Taylor3473f882001-02-23 17:55:21 +00004464 value, attr->name, elem->name);
4465 ret = 0;
4466 }
4467 }
4468
4469 /* Validity Constraint: Enumeration */
4470 if (attrDecl->atype == XML_ATTRIBUTE_ENUMERATION) {
4471 xmlEnumerationPtr tree = attrDecl->tree;
4472 while (tree != NULL) {
4473 if (xmlStrEqual(tree->name, value)) break;
4474 tree = tree->next;
4475 }
4476 if (tree == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004477 xmlErrValidNode(ctxt, elem, XML_DTD_ATTRIBUTE_VALUE,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004478 "Value \"%s\" for attribute %s of %s is not among the enumerated set\n",
Owen Taylor3473f882001-02-23 17:55:21 +00004479 value, attr->name, elem->name);
4480 ret = 0;
4481 }
4482 }
4483
4484 /* Fixed Attribute Default */
4485 if ((attrDecl->def == XML_ATTRIBUTE_FIXED) &&
4486 (!xmlStrEqual(attrDecl->defaultValue, value))) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004487 xmlErrValidNode(ctxt, elem, XML_DTD_ATTRIBUTE_VALUE,
Daniel Veillard58e44c92002-08-02 22:19:49 +00004488 "Value for attribute %s of %s must be \"%s\"\n",
Owen Taylor3473f882001-02-23 17:55:21 +00004489 attr->name, elem->name, attrDecl->defaultValue);
4490 ret = 0;
4491 }
4492
4493 /* Extra check for the attribute value */
4494 ret &= xmlValidateAttributeValue2(ctxt, doc, attr->name,
4495 attrDecl->atype, value);
4496
4497 return(ret);
4498}
4499
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004500/**
4501 * xmlValidateOneNamespace:
4502 * @ctxt: the validation context
4503 * @doc: a document instance
4504 * @elem: an element instance
Daniel Veillarda9b66d02002-12-11 14:23:49 +00004505 * @prefix: the namespace prefix
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004506 * @ns: an namespace declaration instance
4507 * @value: the attribute value (without entities processing)
4508 *
4509 * Try to validate a single namespace declaration for an element
4510 * basically it does the following checks as described by the
4511 * XML-1.0 recommendation:
4512 * - [ VC: Attribute Value Type ]
4513 * - [ VC: Fixed Attribute Default ]
4514 * - [ VC: Entity Name ]
4515 * - [ VC: Name Token ]
4516 * - [ VC: ID ]
4517 * - [ VC: IDREF ]
4518 * - [ VC: Entity Name ]
4519 * - [ VC: Notation Attributes ]
4520 *
4521 * The ID/IDREF uniqueness and matching are done separately
4522 *
4523 * returns 1 if valid or 0 otherwise
4524 */
4525
4526int
4527xmlValidateOneNamespace(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
4528xmlNodePtr elem, const xmlChar *prefix, xmlNsPtr ns, const xmlChar *value) {
4529 /* xmlElementPtr elemDecl; */
4530 xmlAttributePtr attrDecl = NULL;
4531 int val;
4532 int ret = 1;
4533
4534 CHECK_DTD;
4535 if ((elem == NULL) || (elem->name == NULL)) return(0);
4536 if ((ns == NULL) || (ns->href == NULL)) return(0);
4537
4538 if (prefix != NULL) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00004539 xmlChar fn[50];
4540 xmlChar *fullname;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08004541
Daniel Veillardc00cda82003-04-07 10:22:39 +00004542 fullname = xmlBuildQName(elem->name, prefix, fn, 50);
4543 if (fullname == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00004544 xmlVErrMemory(ctxt, "Validating namespace");
Daniel Veillardc00cda82003-04-07 10:22:39 +00004545 return(0);
4546 }
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004547 if (ns->prefix != NULL) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00004548 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004549 ns->prefix, BAD_CAST "xmlns");
4550 if ((attrDecl == NULL) && (doc->extSubset != NULL))
Daniel Veillardc00cda82003-04-07 10:22:39 +00004551 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004552 ns->prefix, BAD_CAST "xmlns");
4553 } else {
Daniel Veillardc00cda82003-04-07 10:22:39 +00004554 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004555 BAD_CAST "xmlns");
4556 if ((attrDecl == NULL) && (doc->extSubset != NULL))
Daniel Veillardc00cda82003-04-07 10:22:39 +00004557 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004558 BAD_CAST "xmlns");
4559 }
Daniel Veillardc00cda82003-04-07 10:22:39 +00004560 if ((fullname != fn) && (fullname != elem->name))
4561 xmlFree(fullname);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004562 }
4563 if (attrDecl == NULL) {
4564 if (ns->prefix != NULL) {
4565 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elem->name,
4566 ns->prefix, BAD_CAST "xmlns");
4567 if ((attrDecl == NULL) && (doc->extSubset != NULL))
4568 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elem->name,
4569 ns->prefix, BAD_CAST "xmlns");
4570 } else {
4571 attrDecl = xmlGetDtdAttrDesc(doc->intSubset,
4572 elem->name, BAD_CAST "xmlns");
4573 if ((attrDecl == NULL) && (doc->extSubset != NULL))
4574 attrDecl = xmlGetDtdAttrDesc(doc->extSubset,
4575 elem->name, BAD_CAST "xmlns");
4576 }
4577 }
4578
4579
4580 /* Validity Constraint: Attribute Value Type */
4581 if (attrDecl == NULL) {
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004582 if (ns->prefix != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004583 xmlErrValidNode(ctxt, elem, XML_DTD_UNKNOWN_ATTRIBUTE,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004584 "No declaration for attribute xmlns:%s of element %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004585 ns->prefix, elem->name, NULL);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004586 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004587 xmlErrValidNode(ctxt, elem, XML_DTD_UNKNOWN_ATTRIBUTE,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004588 "No declaration for attribute xmlns of element %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004589 elem->name, NULL, NULL);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004590 }
4591 return(0);
4592 }
4593
Daniel Veillardae0765b2008-07-31 19:54:59 +00004594 val = xmlValidateAttributeValueInternal(doc, attrDecl->atype, value);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004595 if (val == 0) {
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004596 if (ns->prefix != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004597 xmlErrValidNode(ctxt, elem, XML_DTD_INVALID_DEFAULT,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004598 "Syntax of value for attribute xmlns:%s of %s is not valid\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004599 ns->prefix, elem->name, NULL);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004600 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004601 xmlErrValidNode(ctxt, elem, XML_DTD_INVALID_DEFAULT,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004602 "Syntax of value for attribute xmlns of %s is not valid\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004603 elem->name, NULL, NULL);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004604 }
4605 ret = 0;
4606 }
4607
4608 /* Validity constraint: Fixed Attribute Default */
4609 if (attrDecl->def == XML_ATTRIBUTE_FIXED) {
4610 if (!xmlStrEqual(value, attrDecl->defaultValue)) {
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004611 if (ns->prefix != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004612 xmlErrValidNode(ctxt, elem, XML_DTD_ATTRIBUTE_DEFAULT,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004613 "Value for attribute xmlns:%s of %s is different from default \"%s\"\n",
4614 ns->prefix, elem->name, attrDecl->defaultValue);
4615 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004616 xmlErrValidNode(ctxt, elem, XML_DTD_ATTRIBUTE_DEFAULT,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004617 "Value for attribute xmlns of %s is different from default \"%s\"\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004618 elem->name, attrDecl->defaultValue, NULL);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004619 }
4620 ret = 0;
4621 }
4622 }
4623
4624 /* Validity Constraint: ID uniqueness */
4625 if (attrDecl->atype == XML_ATTRIBUTE_ID) {
Brian C. Young0dc8c632017-04-06 17:02:29 -07004626 if (xmlAddID(ctxt, doc, value, (xmlAttrPtr) attrDecl) == NULL)
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004627 ret = 0;
4628 }
4629
4630 if ((attrDecl->atype == XML_ATTRIBUTE_IDREF) ||
4631 (attrDecl->atype == XML_ATTRIBUTE_IDREFS)) {
Brian C. Young0dc8c632017-04-06 17:02:29 -07004632 if (xmlAddRef(ctxt, doc, value, (xmlAttrPtr) attrDecl) == NULL)
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004633 ret = 0;
4634 }
4635
4636 /* Validity Constraint: Notation Attributes */
4637 if (attrDecl->atype == XML_ATTRIBUTE_NOTATION) {
4638 xmlEnumerationPtr tree = attrDecl->tree;
4639 xmlNotationPtr nota;
4640
4641 /* First check that the given NOTATION was declared */
4642 nota = xmlGetDtdNotationDesc(doc->intSubset, value);
4643 if (nota == NULL)
4644 nota = xmlGetDtdNotationDesc(doc->extSubset, value);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08004645
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004646 if (nota == NULL) {
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004647 if (ns->prefix != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004648 xmlErrValidNode(ctxt, elem, XML_DTD_UNKNOWN_NOTATION,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004649 "Value \"%s\" for attribute xmlns:%s of %s is not a declared Notation\n",
4650 value, ns->prefix, elem->name);
4651 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004652 xmlErrValidNode(ctxt, elem, XML_DTD_UNKNOWN_NOTATION,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004653 "Value \"%s\" for attribute xmlns of %s is not a declared Notation\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004654 value, elem->name, NULL);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004655 }
4656 ret = 0;
4657 }
4658
4659 /* Second, verify that it's among the list */
4660 while (tree != NULL) {
4661 if (xmlStrEqual(tree->name, value)) break;
4662 tree = tree->next;
4663 }
4664 if (tree == NULL) {
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004665 if (ns->prefix != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004666 xmlErrValidNode(ctxt, elem, XML_DTD_NOTATION_VALUE,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004667"Value \"%s\" for attribute xmlns:%s of %s is not among the enumerated notations\n",
4668 value, ns->prefix, elem->name);
4669 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004670 xmlErrValidNode(ctxt, elem, XML_DTD_NOTATION_VALUE,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004671"Value \"%s\" for attribute xmlns of %s is not among the enumerated notations\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004672 value, elem->name, NULL);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004673 }
4674 ret = 0;
4675 }
4676 }
4677
4678 /* Validity Constraint: Enumeration */
4679 if (attrDecl->atype == XML_ATTRIBUTE_ENUMERATION) {
4680 xmlEnumerationPtr tree = attrDecl->tree;
4681 while (tree != NULL) {
4682 if (xmlStrEqual(tree->name, value)) break;
4683 tree = tree->next;
4684 }
4685 if (tree == NULL) {
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004686 if (ns->prefix != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004687 xmlErrValidNode(ctxt, elem, XML_DTD_ATTRIBUTE_VALUE,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004688"Value \"%s\" for attribute xmlns:%s of %s is not among the enumerated set\n",
4689 value, ns->prefix, elem->name);
4690 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004691 xmlErrValidNode(ctxt, elem, XML_DTD_ATTRIBUTE_VALUE,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004692"Value \"%s\" for attribute xmlns of %s is not among the enumerated set\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004693 value, elem->name, NULL);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004694 }
4695 ret = 0;
4696 }
4697 }
4698
4699 /* Fixed Attribute Default */
4700 if ((attrDecl->def == XML_ATTRIBUTE_FIXED) &&
4701 (!xmlStrEqual(attrDecl->defaultValue, value))) {
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004702 if (ns->prefix != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004703 xmlErrValidNode(ctxt, elem, XML_DTD_ELEM_NAMESPACE,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004704 "Value for attribute xmlns:%s of %s must be \"%s\"\n",
4705 ns->prefix, elem->name, attrDecl->defaultValue);
4706 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004707 xmlErrValidNode(ctxt, elem, XML_DTD_ELEM_NAMESPACE,
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004708 "Value for attribute xmlns of %s must be \"%s\"\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00004709 elem->name, attrDecl->defaultValue, NULL);
Daniel Veillard90d68fb2002-09-26 16:10:21 +00004710 }
4711 ret = 0;
4712 }
4713
4714 /* Extra check for the attribute value */
4715 if (ns->prefix != NULL) {
4716 ret &= xmlValidateAttributeValue2(ctxt, doc, ns->prefix,
4717 attrDecl->atype, value);
4718 } else {
4719 ret &= xmlValidateAttributeValue2(ctxt, doc, BAD_CAST "xmlns",
4720 attrDecl->atype, value);
4721 }
4722
4723 return(ret);
4724}
4725
Daniel Veillard118aed72002-09-24 14:13:13 +00004726#ifndef LIBXML_REGEXP_ENABLED
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004727/**
4728 * xmlValidateSkipIgnorable:
4729 * @ctxt: the validation context
4730 * @child: the child list
4731 *
4732 * Skip ignorable elements w.r.t. the validation process
4733 *
4734 * returns the first element to consider for validation of the content model
4735 */
4736
4737static xmlNodePtr
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00004738xmlValidateSkipIgnorable(xmlNodePtr child) {
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004739 while (child != NULL) {
4740 switch (child->type) {
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004741 /* These things are ignored (skipped) during validation. */
4742 case XML_PI_NODE:
4743 case XML_COMMENT_NODE:
4744 case XML_XINCLUDE_START:
4745 case XML_XINCLUDE_END:
4746 child = child->next;
4747 break;
4748 case XML_TEXT_NODE:
4749 if (xmlIsBlankNode(child))
4750 child = child->next;
4751 else
4752 return(child);
4753 break;
4754 /* keep current node */
4755 default:
4756 return(child);
4757 }
4758 }
4759 return(child);
4760}
4761
4762/**
4763 * xmlValidateElementType:
4764 * @ctxt: the validation context
4765 *
4766 * Try to validate the content model of an element internal function
4767 *
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00004768 * returns 1 if valid or 0 ,-1 in case of error, -2 if an entity
4769 * reference is found and -3 if the validation succeeded but
4770 * the content model is not determinist.
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004771 */
4772
4773static int
4774xmlValidateElementType(xmlValidCtxtPtr ctxt) {
Daniel Veillardb4545fd2001-11-20 09:37:09 +00004775 int ret = -1;
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00004776 int determinist = 1;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004777
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00004778 NODE = xmlValidateSkipIgnorable(NODE);
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004779 if ((NODE == NULL) && (CONT == NULL))
4780 return(1);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08004781 if ((NODE == NULL) &&
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004782 ((CONT->ocur == XML_ELEMENT_CONTENT_MULT) ||
4783 (CONT->ocur == XML_ELEMENT_CONTENT_OPT))) {
4784 return(1);
4785 }
4786 if (CONT == NULL) return(-1);
Daniel Veillard7533cc82001-04-24 15:52:00 +00004787 if ((NODE != NULL) && (NODE->type == XML_ENTITY_REF_NODE))
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00004788 return(-2);
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004789
4790 /*
4791 * We arrive here when more states need to be examined
4792 */
4793cont:
4794
4795 /*
4796 * We just recovered from a rollback generated by a possible
4797 * epsilon transition, go directly to the analysis phase
4798 */
4799 if (STATE == ROLLBACK_PARENT) {
Daniel Veillardcbaf3992001-12-31 16:16:02 +00004800 DEBUG_VALID_MSG("restored parent branch");
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004801 DEBUG_VALID_STATE(NODE, CONT)
4802 ret = 1;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004803 goto analyze;
4804 }
4805
4806 DEBUG_VALID_STATE(NODE, CONT)
4807 /*
4808 * we may have to save a backup state here. This is the equivalent
4809 * of handling epsilon transition in NFAs.
4810 */
Daniel Veillarde62d36c2001-05-15 08:53:16 +00004811 if ((CONT != NULL) &&
Daniel Veillardce2c2f02001-10-18 14:57:24 +00004812 ((CONT->parent == NULL) ||
4813 (CONT->parent->type != XML_ELEMENT_CONTENT_OR)) &&
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004814 ((CONT->ocur == XML_ELEMENT_CONTENT_MULT) ||
Daniel Veillardca1f1722001-04-20 15:47:35 +00004815 (CONT->ocur == XML_ELEMENT_CONTENT_OPT) ||
Daniel Veillard5344c602001-12-31 16:37:34 +00004816 ((CONT->ocur == XML_ELEMENT_CONTENT_PLUS) && (OCCURRENCE)))) {
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004817 DEBUG_VALID_MSG("saving parent branch");
Daniel Veillard940492d2002-04-15 10:15:25 +00004818 if (vstateVPush(ctxt, CONT, NODE, DEPTH, OCCURS, ROLLBACK_PARENT) < 0)
4819 return(0);
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004820 }
4821
4822
4823 /*
4824 * Check first if the content matches
4825 */
4826 switch (CONT->type) {
4827 case XML_ELEMENT_CONTENT_PCDATA:
4828 if (NODE == NULL) {
4829 DEBUG_VALID_MSG("pcdata failed no node");
4830 ret = 0;
4831 break;
4832 }
4833 if (NODE->type == XML_TEXT_NODE) {
4834 DEBUG_VALID_MSG("pcdata found, skip to next");
4835 /*
4836 * go to next element in the content model
4837 * skipping ignorable elems
4838 */
4839 do {
4840 NODE = NODE->next;
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00004841 NODE = xmlValidateSkipIgnorable(NODE);
4842 if ((NODE != NULL) &&
4843 (NODE->type == XML_ENTITY_REF_NODE))
4844 return(-2);
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004845 } while ((NODE != NULL) &&
4846 ((NODE->type != XML_ELEMENT_NODE) &&
Daniel Veillardd6dc4cb2002-02-19 14:18:08 +00004847 (NODE->type != XML_TEXT_NODE) &&
4848 (NODE->type != XML_CDATA_SECTION_NODE)));
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004849 ret = 1;
4850 break;
4851 } else {
4852 DEBUG_VALID_MSG("pcdata failed");
4853 ret = 0;
4854 break;
4855 }
4856 break;
4857 case XML_ELEMENT_CONTENT_ELEMENT:
4858 if (NODE == NULL) {
4859 DEBUG_VALID_MSG("element failed no node");
4860 ret = 0;
4861 break;
4862 }
Daniel Veillard8bdd2202001-06-11 12:47:59 +00004863 ret = ((NODE->type == XML_ELEMENT_NODE) &&
4864 (xmlStrEqual(NODE->name, CONT->name)));
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004865 if (ret == 1) {
Daniel Veillardbe480fb2001-11-08 23:36:42 +00004866 if ((NODE->ns == NULL) || (NODE->ns->prefix == NULL)) {
4867 ret = (CONT->prefix == NULL);
4868 } else if (CONT->prefix == NULL) {
4869 ret = 0;
4870 } else {
4871 ret = xmlStrEqual(NODE->ns->prefix, CONT->prefix);
4872 }
4873 }
4874 if (ret == 1) {
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004875 DEBUG_VALID_MSG("element found, skip to next");
4876 /*
4877 * go to next element in the content model
4878 * skipping ignorable elems
4879 */
4880 do {
4881 NODE = NODE->next;
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00004882 NODE = xmlValidateSkipIgnorable(NODE);
4883 if ((NODE != NULL) &&
4884 (NODE->type == XML_ENTITY_REF_NODE))
4885 return(-2);
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004886 } while ((NODE != NULL) &&
4887 ((NODE->type != XML_ELEMENT_NODE) &&
Daniel Veillardd6dc4cb2002-02-19 14:18:08 +00004888 (NODE->type != XML_TEXT_NODE) &&
4889 (NODE->type != XML_CDATA_SECTION_NODE)));
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004890 } else {
4891 DEBUG_VALID_MSG("element failed");
4892 ret = 0;
4893 break;
4894 }
4895 break;
4896 case XML_ELEMENT_CONTENT_OR:
4897 /*
Daniel Veillard85349052001-04-20 13:48:21 +00004898 * Small optimization.
4899 */
4900 if (CONT->c1->type == XML_ELEMENT_CONTENT_ELEMENT) {
4901 if ((NODE == NULL) ||
4902 (!xmlStrEqual(NODE->name, CONT->c1->name))) {
4903 DEPTH++;
4904 CONT = CONT->c2;
4905 goto cont;
4906 }
Daniel Veillardbe480fb2001-11-08 23:36:42 +00004907 if ((NODE->ns == NULL) || (NODE->ns->prefix == NULL)) {
4908 ret = (CONT->c1->prefix == NULL);
4909 } else if (CONT->c1->prefix == NULL) {
4910 ret = 0;
4911 } else {
4912 ret = xmlStrEqual(NODE->ns->prefix, CONT->c1->prefix);
4913 }
4914 if (ret == 0) {
4915 DEPTH++;
4916 CONT = CONT->c2;
4917 goto cont;
4918 }
Daniel Veillard85349052001-04-20 13:48:21 +00004919 }
4920
4921 /*
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004922 * save the second branch 'or' branch
4923 */
4924 DEBUG_VALID_MSG("saving 'or' branch");
Daniel Veillard940492d2002-04-15 10:15:25 +00004925 if (vstateVPush(ctxt, CONT->c2, NODE, (unsigned char)(DEPTH + 1),
4926 OCCURS, ROLLBACK_OR) < 0)
4927 return(-1);
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004928 DEPTH++;
4929 CONT = CONT->c1;
4930 goto cont;
4931 case XML_ELEMENT_CONTENT_SEQ:
Daniel Veillard1d047672001-06-09 16:41:01 +00004932 /*
4933 * Small optimization.
4934 */
4935 if ((CONT->c1->type == XML_ELEMENT_CONTENT_ELEMENT) &&
4936 ((CONT->c1->ocur == XML_ELEMENT_CONTENT_OPT) ||
4937 (CONT->c1->ocur == XML_ELEMENT_CONTENT_MULT))) {
4938 if ((NODE == NULL) ||
4939 (!xmlStrEqual(NODE->name, CONT->c1->name))) {
4940 DEPTH++;
4941 CONT = CONT->c2;
4942 goto cont;
4943 }
Daniel Veillardbe480fb2001-11-08 23:36:42 +00004944 if ((NODE->ns == NULL) || (NODE->ns->prefix == NULL)) {
4945 ret = (CONT->c1->prefix == NULL);
4946 } else if (CONT->c1->prefix == NULL) {
4947 ret = 0;
4948 } else {
4949 ret = xmlStrEqual(NODE->ns->prefix, CONT->c1->prefix);
4950 }
4951 if (ret == 0) {
4952 DEPTH++;
4953 CONT = CONT->c2;
4954 goto cont;
4955 }
Daniel Veillard1d047672001-06-09 16:41:01 +00004956 }
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004957 DEPTH++;
4958 CONT = CONT->c1;
4959 goto cont;
4960 }
4961
4962 /*
4963 * At this point handle going up in the tree
4964 */
4965 if (ret == -1) {
4966 DEBUG_VALID_MSG("error found returning");
4967 return(ret);
4968 }
4969analyze:
4970 while (CONT != NULL) {
4971 /*
Daniel Veillardcbaf3992001-12-31 16:16:02 +00004972 * First do the analysis depending on the occurrence model at
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004973 * this level.
4974 */
4975 if (ret == 0) {
4976 switch (CONT->ocur) {
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00004977 xmlNodePtr cur;
4978
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004979 case XML_ELEMENT_CONTENT_ONCE:
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00004980 cur = ctxt->vstate->node;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004981 DEBUG_VALID_MSG("Once branch failed, rollback");
4982 if (vstateVPop(ctxt) < 0 ) {
4983 DEBUG_VALID_MSG("exhaustion, failed");
4984 return(0);
4985 }
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00004986 if (cur != ctxt->vstate->node)
4987 determinist = -3;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004988 goto cont;
4989 case XML_ELEMENT_CONTENT_PLUS:
Daniel Veillard5344c602001-12-31 16:37:34 +00004990 if (OCCURRENCE == 0) {
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00004991 cur = ctxt->vstate->node;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004992 DEBUG_VALID_MSG("Plus branch failed, rollback");
4993 if (vstateVPop(ctxt) < 0 ) {
4994 DEBUG_VALID_MSG("exhaustion, failed");
4995 return(0);
4996 }
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00004997 if (cur != ctxt->vstate->node)
4998 determinist = -3;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00004999 goto cont;
5000 }
5001 DEBUG_VALID_MSG("Plus branch found");
5002 ret = 1;
5003 break;
5004 case XML_ELEMENT_CONTENT_MULT:
5005#ifdef DEBUG_VALID_ALGO
Daniel Veillard5344c602001-12-31 16:37:34 +00005006 if (OCCURRENCE == 0) {
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005007 DEBUG_VALID_MSG("Mult branch failed");
5008 } else {
5009 DEBUG_VALID_MSG("Mult branch found");
5010 }
5011#endif
5012 ret = 1;
5013 break;
5014 case XML_ELEMENT_CONTENT_OPT:
5015 DEBUG_VALID_MSG("Option branch failed");
5016 ret = 1;
5017 break;
5018 }
5019 } else {
5020 switch (CONT->ocur) {
5021 case XML_ELEMENT_CONTENT_OPT:
5022 DEBUG_VALID_MSG("Option branch succeeded");
5023 ret = 1;
5024 break;
5025 case XML_ELEMENT_CONTENT_ONCE:
5026 DEBUG_VALID_MSG("Once branch succeeded");
5027 ret = 1;
5028 break;
5029 case XML_ELEMENT_CONTENT_PLUS:
5030 if (STATE == ROLLBACK_PARENT) {
5031 DEBUG_VALID_MSG("Plus branch rollback");
5032 ret = 1;
5033 break;
5034 }
5035 if (NODE == NULL) {
5036 DEBUG_VALID_MSG("Plus branch exhausted");
5037 ret = 1;
5038 break;
5039 }
5040 DEBUG_VALID_MSG("Plus branch succeeded, continuing");
Daniel Veillard5344c602001-12-31 16:37:34 +00005041 SET_OCCURRENCE;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005042 goto cont;
5043 case XML_ELEMENT_CONTENT_MULT:
5044 if (STATE == ROLLBACK_PARENT) {
5045 DEBUG_VALID_MSG("Mult branch rollback");
5046 ret = 1;
5047 break;
5048 }
5049 if (NODE == NULL) {
5050 DEBUG_VALID_MSG("Mult branch exhausted");
5051 ret = 1;
5052 break;
5053 }
5054 DEBUG_VALID_MSG("Mult branch succeeded, continuing");
Daniel Veillard5344c602001-12-31 16:37:34 +00005055 /* SET_OCCURRENCE; */
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005056 goto cont;
5057 }
5058 }
5059 STATE = 0;
5060
5061 /*
5062 * Then act accordingly at the parent level
5063 */
Daniel Veillard5344c602001-12-31 16:37:34 +00005064 RESET_OCCURRENCE;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005065 if (CONT->parent == NULL)
5066 break;
5067
5068 switch (CONT->parent->type) {
5069 case XML_ELEMENT_CONTENT_PCDATA:
5070 DEBUG_VALID_MSG("Error: parent pcdata");
5071 return(-1);
5072 case XML_ELEMENT_CONTENT_ELEMENT:
5073 DEBUG_VALID_MSG("Error: parent element");
5074 return(-1);
5075 case XML_ELEMENT_CONTENT_OR:
5076 if (ret == 1) {
5077 DEBUG_VALID_MSG("Or succeeded");
5078 CONT = CONT->parent;
5079 DEPTH--;
5080 } else {
5081 DEBUG_VALID_MSG("Or failed");
5082 CONT = CONT->parent;
5083 DEPTH--;
5084 }
5085 break;
5086 case XML_ELEMENT_CONTENT_SEQ:
5087 if (ret == 0) {
5088 DEBUG_VALID_MSG("Sequence failed");
5089 CONT = CONT->parent;
5090 DEPTH--;
5091 } else if (CONT == CONT->parent->c1) {
5092 DEBUG_VALID_MSG("Sequence testing 2nd branch");
5093 CONT = CONT->parent->c2;
5094 goto cont;
5095 } else {
5096 DEBUG_VALID_MSG("Sequence succeeded");
5097 CONT = CONT->parent;
5098 DEPTH--;
5099 }
5100 }
5101 }
5102 if (NODE != NULL) {
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00005103 xmlNodePtr cur;
5104
5105 cur = ctxt->vstate->node;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005106 DEBUG_VALID_MSG("Failed, remaining input, rollback");
5107 if (vstateVPop(ctxt) < 0 ) {
5108 DEBUG_VALID_MSG("exhaustion, failed");
5109 return(0);
5110 }
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00005111 if (cur != ctxt->vstate->node)
5112 determinist = -3;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005113 goto cont;
5114 }
5115 if (ret == 0) {
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00005116 xmlNodePtr cur;
5117
5118 cur = ctxt->vstate->node;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005119 DEBUG_VALID_MSG("Failure, rollback");
5120 if (vstateVPop(ctxt) < 0 ) {
5121 DEBUG_VALID_MSG("exhaustion, failed");
5122 return(0);
5123 }
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00005124 if (cur != ctxt->vstate->node)
5125 determinist = -3;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005126 goto cont;
5127 }
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00005128 return(determinist);
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005129}
Daniel Veillard23e73572002-09-19 19:56:43 +00005130#endif
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005131
5132/**
Daniel Veillardd3d06722001-08-15 12:06:36 +00005133 * xmlSnprintfElements:
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005134 * @buf: an output buffer
Daniel Veillardd3d06722001-08-15 12:06:36 +00005135 * @size: the size of the buffer
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005136 * @content: An element
5137 * @glob: 1 if one must print the englobing parenthesis, 0 otherwise
5138 *
5139 * This will dump the list of elements to the buffer
5140 * Intended just for the debug routine
5141 */
5142static void
Daniel Veillardd3d06722001-08-15 12:06:36 +00005143xmlSnprintfElements(char *buf, int size, xmlNodePtr node, int glob) {
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005144 xmlNodePtr cur;
Daniel Veillardd3d06722001-08-15 12:06:36 +00005145 int len;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005146
5147 if (node == NULL) return;
5148 if (glob) strcat(buf, "(");
5149 cur = node;
5150 while (cur != NULL) {
Daniel Veillardd3d06722001-08-15 12:06:36 +00005151 len = strlen(buf);
5152 if (size - len < 50) {
5153 if ((size - len > 4) && (buf[len - 1] != '.'))
5154 strcat(buf, " ...");
5155 return;
5156 }
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005157 switch (cur->type) {
5158 case XML_ELEMENT_NODE:
Daniel Veillardbe480fb2001-11-08 23:36:42 +00005159 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
Daniel Veillard4b3a84f2002-03-19 14:36:46 +00005160 if (size - len < xmlStrlen(cur->ns->prefix) + 10) {
Daniel Veillardbe480fb2001-11-08 23:36:42 +00005161 if ((size - len > 4) && (buf[len - 1] != '.'))
5162 strcat(buf, " ...");
5163 return;
5164 }
5165 strcat(buf, (char *) cur->ns->prefix);
5166 strcat(buf, ":");
5167 }
Daniel Veillard4b3a84f2002-03-19 14:36:46 +00005168 if (size - len < xmlStrlen(cur->name) + 10) {
Daniel Veillardd3d06722001-08-15 12:06:36 +00005169 if ((size - len > 4) && (buf[len - 1] != '.'))
5170 strcat(buf, " ...");
5171 return;
5172 }
5173 strcat(buf, (char *) cur->name);
5174 if (cur->next != NULL)
5175 strcat(buf, " ");
5176 break;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005177 case XML_TEXT_NODE:
Daniel Veillardd3d06722001-08-15 12:06:36 +00005178 if (xmlIsBlankNode(cur))
5179 break;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005180 case XML_CDATA_SECTION_NODE:
5181 case XML_ENTITY_REF_NODE:
Daniel Veillardd3d06722001-08-15 12:06:36 +00005182 strcat(buf, "CDATA");
5183 if (cur->next != NULL)
5184 strcat(buf, " ");
5185 break;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005186 case XML_ATTRIBUTE_NODE:
5187 case XML_DOCUMENT_NODE:
Daniel Veillardeae522a2001-04-23 13:41:34 +00005188#ifdef LIBXML_DOCB_ENABLED
5189 case XML_DOCB_DOCUMENT_NODE:
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005190#endif
5191 case XML_HTML_DOCUMENT_NODE:
5192 case XML_DOCUMENT_TYPE_NODE:
5193 case XML_DOCUMENT_FRAG_NODE:
5194 case XML_NOTATION_NODE:
5195 case XML_NAMESPACE_DECL:
Daniel Veillardd3d06722001-08-15 12:06:36 +00005196 strcat(buf, "???");
5197 if (cur->next != NULL)
5198 strcat(buf, " ");
5199 break;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005200 case XML_ENTITY_NODE:
5201 case XML_PI_NODE:
5202 case XML_DTD_NODE:
5203 case XML_COMMENT_NODE:
5204 case XML_ELEMENT_DECL:
5205 case XML_ATTRIBUTE_DECL:
5206 case XML_ENTITY_DECL:
5207 case XML_XINCLUDE_START:
5208 case XML_XINCLUDE_END:
Daniel Veillardd3d06722001-08-15 12:06:36 +00005209 break;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005210 }
5211 cur = cur->next;
5212 }
5213 if (glob) strcat(buf, ")");
5214}
5215
5216/**
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005217 * xmlValidateElementContent:
5218 * @ctxt: the validation context
5219 * @child: the child list
Daniel Veillardbe480fb2001-11-08 23:36:42 +00005220 * @elemDecl: pointer to the element declaration
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005221 * @warn: emit the error message
Daniel Veillardb9cd8b42002-09-05 10:58:49 +00005222 * @parent: the parent element (for error reporting)
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005223 *
5224 * Try to validate the content model of an element
5225 *
5226 * returns 1 if valid or 0 if not and -1 in case of error
5227 */
5228
5229static int
5230xmlValidateElementContent(xmlValidCtxtPtr ctxt, xmlNodePtr child,
Daniel Veillardb9cd8b42002-09-05 10:58:49 +00005231 xmlElementPtr elemDecl, int warn, xmlNodePtr parent) {
Daniel Veillard5acfd6b2002-09-18 16:29:02 +00005232 int ret = 1;
Daniel Veillard23e73572002-09-19 19:56:43 +00005233#ifndef LIBXML_REGEXP_ENABLED
Daniel Veillard01992e02002-10-09 10:20:30 +00005234 xmlNodePtr repl = NULL, last = NULL, tmp;
Daniel Veillard23e73572002-09-19 19:56:43 +00005235#endif
Daniel Veillard01992e02002-10-09 10:20:30 +00005236 xmlNodePtr cur;
Daniel Veillardbe480fb2001-11-08 23:36:42 +00005237 xmlElementContentPtr cont;
5238 const xmlChar *name;
5239
Gauravc570b372013-09-30 10:43:47 +08005240 if ((elemDecl == NULL) || (parent == NULL) || (ctxt == NULL))
Daniel Veillardbe480fb2001-11-08 23:36:42 +00005241 return(-1);
5242 cont = elemDecl->content;
5243 name = elemDecl->name;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005244
Daniel Veillarda646cfd2002-09-17 21:50:03 +00005245#ifdef LIBXML_REGEXP_ENABLED
5246 /* Build the regexp associated to the content model */
5247 if (elemDecl->contModel == NULL)
5248 ret = xmlValidBuildContentModel(ctxt, elemDecl);
5249 if (elemDecl->contModel == NULL) {
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00005250 return(-1);
Daniel Veillarda646cfd2002-09-17 21:50:03 +00005251 } else {
5252 xmlRegExecCtxtPtr exec;
5253
Daniel Veillardec498e12003-02-05 11:01:50 +00005254 if (!xmlRegexpIsDeterminist(elemDecl->contModel)) {
5255 return(-1);
5256 }
Daniel Veillard01992e02002-10-09 10:20:30 +00005257 ctxt->nodeMax = 0;
5258 ctxt->nodeNr = 0;
5259 ctxt->nodeTab = NULL;
Daniel Veillarda646cfd2002-09-17 21:50:03 +00005260 exec = xmlRegNewExecCtxt(elemDecl->contModel, NULL, NULL);
5261 if (exec != NULL) {
5262 cur = child;
5263 while (cur != NULL) {
5264 switch (cur->type) {
5265 case XML_ENTITY_REF_NODE:
5266 /*
5267 * Push the current node to be able to roll back
5268 * and process within the entity
5269 */
5270 if ((cur->children != NULL) &&
5271 (cur->children->children != NULL)) {
5272 nodeVPush(ctxt, cur);
5273 cur = cur->children->children;
5274 continue;
5275 }
5276 break;
5277 case XML_TEXT_NODE:
5278 if (xmlIsBlankNode(cur))
5279 break;
5280 ret = 0;
5281 goto fail;
5282 case XML_CDATA_SECTION_NODE:
Daniel Veillardea7751d2002-12-20 00:16:24 +00005283 /* TODO */
Daniel Veillarda646cfd2002-09-17 21:50:03 +00005284 ret = 0;
5285 goto fail;
5286 case XML_ELEMENT_NODE:
5287 if ((cur->ns != NULL) && (cur->ns->prefix != NULL)) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00005288 xmlChar fn[50];
5289 xmlChar *fullname;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08005290
Daniel Veillardc00cda82003-04-07 10:22:39 +00005291 fullname = xmlBuildQName(cur->name,
5292 cur->ns->prefix, fn, 50);
5293 if (fullname == NULL) {
Daniel Veillarda646cfd2002-09-17 21:50:03 +00005294 ret = -1;
5295 goto fail;
5296 }
Daniel Veillardc00cda82003-04-07 10:22:39 +00005297 ret = xmlRegExecPushString(exec, fullname, NULL);
5298 if ((fullname != fn) && (fullname != cur->name))
5299 xmlFree(fullname);
Daniel Veillarda646cfd2002-09-17 21:50:03 +00005300 } else {
5301 ret = xmlRegExecPushString(exec, cur->name, NULL);
5302 }
5303 break;
5304 default:
5305 break;
5306 }
5307 /*
5308 * Switch to next element
5309 */
5310 cur = cur->next;
5311 while (cur == NULL) {
5312 cur = nodeVPop(ctxt);
5313 if (cur == NULL)
5314 break;
5315 cur = cur->next;
5316 }
5317 }
5318 ret = xmlRegExecPushString(exec, NULL, NULL);
5319fail:
5320 xmlRegFreeExecCtxt(exec);
5321 }
5322 }
5323#else /* LIBXML_REGEXP_ENABLED */
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005324 /*
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005325 * Allocate the stack
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005326 */
5327 ctxt->vstateMax = 8;
5328 ctxt->vstateTab = (xmlValidState *) xmlMalloc(
5329 ctxt->vstateMax * sizeof(ctxt->vstateTab[0]));
5330 if (ctxt->vstateTab == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00005331 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005332 return(-1);
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005333 }
5334 /*
5335 * The first entry in the stack is reserved to the current state
5336 */
Daniel Veillarda9142e72001-06-19 11:07:54 +00005337 ctxt->nodeMax = 0;
5338 ctxt->nodeNr = 0;
Daniel Veillard61b33d52001-04-24 13:55:12 +00005339 ctxt->nodeTab = NULL;
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005340 ctxt->vstate = &ctxt->vstateTab[0];
5341 ctxt->vstateNr = 1;
5342 CONT = cont;
5343 NODE = child;
5344 DEPTH = 0;
5345 OCCURS = 0;
5346 STATE = 0;
5347 ret = xmlValidateElementType(ctxt);
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00005348 if ((ret == -3) && (warn)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005349 xmlErrValidWarning(ctxt, child, XML_DTD_CONTENT_NOT_DETERMINIST,
5350 "Content model for Element %s is ambiguous\n",
Daniel Veillard0cc72772003-10-13 14:00:21 +00005351 name, NULL, NULL);
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00005352 } else if (ret == -2) {
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005353 /*
5354 * An entities reference appeared at this level.
5355 * Buid a minimal representation of this node content
5356 * sufficient to run the validation process on it
5357 */
5358 DEBUG_VALID_MSG("Found an entity reference, linearizing");
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005359 cur = child;
5360 while (cur != NULL) {
5361 switch (cur->type) {
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005362 case XML_ENTITY_REF_NODE:
5363 /*
5364 * Push the current node to be able to roll back
5365 * and process within the entity
5366 */
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005367 if ((cur->children != NULL) &&
5368 (cur->children->children != NULL)) {
5369 nodeVPush(ctxt, cur);
5370 cur = cur->children->children;
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005371 continue;
5372 }
Daniel Veillard64b98c02001-06-17 17:20:21 +00005373 break;
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005374 case XML_TEXT_NODE:
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005375 if (xmlIsBlankNode(cur))
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005376 break;
Daniel Veillard04e2dae2001-07-09 20:07:25 +00005377 /* no break on purpose */
Daniel Veillardd6dc4cb2002-02-19 14:18:08 +00005378 case XML_CDATA_SECTION_NODE:
5379 /* no break on purpose */
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005380 case XML_ELEMENT_NODE:
5381 /*
5382 * Allocate a new node and minimally fills in
5383 * what's required
5384 */
5385 tmp = (xmlNodePtr) xmlMalloc(sizeof(xmlNode));
5386 if (tmp == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00005387 xmlVErrMemory(ctxt, "malloc failed");
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005388 xmlFreeNodeList(repl);
5389 ret = -1;
5390 goto done;
5391 }
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005392 tmp->type = cur->type;
5393 tmp->name = cur->name;
5394 tmp->ns = cur->ns;
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005395 tmp->next = NULL;
Daniel Veillarded472f32001-12-13 08:48:14 +00005396 tmp->content = NULL;
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005397 if (repl == NULL)
5398 repl = last = tmp;
5399 else {
5400 last->next = tmp;
5401 last = tmp;
5402 }
Daniel Veillardd6dc4cb2002-02-19 14:18:08 +00005403 if (cur->type == XML_CDATA_SECTION_NODE) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08005404 /*
Daniel Veillardd6dc4cb2002-02-19 14:18:08 +00005405 * E59 spaces in CDATA does not match the
5406 * nonterminal S
5407 */
5408 tmp->content = xmlStrdup(BAD_CAST "CDATA");
5409 }
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005410 break;
5411 default:
5412 break;
5413 }
5414 /*
5415 * Switch to next element
5416 */
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005417 cur = cur->next;
5418 while (cur == NULL) {
5419 cur = nodeVPop(ctxt);
5420 if (cur == NULL)
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005421 break;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005422 cur = cur->next;
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005423 }
5424 }
5425
5426 /*
5427 * Relaunch the validation
5428 */
5429 ctxt->vstate = &ctxt->vstateTab[0];
5430 ctxt->vstateNr = 1;
5431 CONT = cont;
5432 NODE = repl;
5433 DEPTH = 0;
5434 OCCURS = 0;
5435 STATE = 0;
5436 ret = xmlValidateElementType(ctxt);
5437 }
Daniel Veillarda646cfd2002-09-17 21:50:03 +00005438#endif /* LIBXML_REGEXP_ENABLED */
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00005439 if ((warn) && ((ret != 1) && (ret != -3))) {
Daniel Veillard6ad5c4a2006-10-11 16:43:06 +00005440 if (ctxt != NULL) {
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005441 char expr[5000];
5442 char list[5000];
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005443
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005444 expr[0] = 0;
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00005445 xmlSnprintfElementContent(&expr[0], 5000, cont, 1);
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005446 list[0] = 0;
Daniel Veillard01992e02002-10-09 10:20:30 +00005447#ifndef LIBXML_REGEXP_ENABLED
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005448 if (repl != NULL)
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00005449 xmlSnprintfElements(&list[0], 5000, repl, 1);
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005450 else
Daniel Veillard01992e02002-10-09 10:20:30 +00005451#endif /* LIBXML_REGEXP_ENABLED */
Daniel Veillarda76fe5c2003-04-24 16:06:47 +00005452 xmlSnprintfElements(&list[0], 5000, child, 1);
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005453
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005454 if (name != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005455 xmlErrValidNode(ctxt, parent, XML_DTD_CONTENT_MODEL,
5456 "Element %s content does not follow the DTD, expecting %s, got %s\n",
5457 name, BAD_CAST expr, BAD_CAST list);
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005458 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005459 xmlErrValidNode(ctxt, parent, XML_DTD_CONTENT_MODEL,
5460 "Element content does not follow the DTD, expecting %s, got %s\n",
5461 BAD_CAST expr, BAD_CAST list, NULL);
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005462 }
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005463 } else {
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005464 if (name != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005465 xmlErrValidNode(ctxt, parent, XML_DTD_CONTENT_MODEL,
Daniel Veillard58e44c92002-08-02 22:19:49 +00005466 "Element %s content does not follow the DTD\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005467 name, NULL, NULL);
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005468 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005469 xmlErrValidNode(ctxt, parent, XML_DTD_CONTENT_MODEL,
5470 "Element content does not follow the DTD\n",
5471 NULL, NULL, NULL);
Daniel Veillardb4545fd2001-11-20 09:37:09 +00005472 }
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005473 }
5474 ret = 0;
5475 }
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00005476 if (ret == -3)
5477 ret = 1;
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005478
Daniel Veillard23e73572002-09-19 19:56:43 +00005479#ifndef LIBXML_REGEXP_ENABLED
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005480done:
5481 /*
5482 * Deallocate the copy if done, and free up the validation stack
5483 */
5484 while (repl != NULL) {
5485 tmp = repl->next;
5486 xmlFree(repl);
5487 repl = tmp;
5488 }
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005489 ctxt->vstateMax = 0;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005490 if (ctxt->vstateTab != NULL) {
5491 xmlFree(ctxt->vstateTab);
5492 ctxt->vstateTab = NULL;
5493 }
Daniel Veillard01992e02002-10-09 10:20:30 +00005494#endif
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005495 ctxt->nodeMax = 0;
Daniel Veillarda9142e72001-06-19 11:07:54 +00005496 ctxt->nodeNr = 0;
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00005497 if (ctxt->nodeTab != NULL) {
5498 xmlFree(ctxt->nodeTab);
5499 ctxt->nodeTab = NULL;
5500 }
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005501 return(ret);
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00005502
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005503}
Daniel Veillarddab4cb32001-04-20 13:03:48 +00005504
Owen Taylor3473f882001-02-23 17:55:21 +00005505/**
Daniel Veillard04e2dae2001-07-09 20:07:25 +00005506 * xmlValidateCdataElement:
5507 * @ctxt: the validation context
5508 * @doc: a document instance
5509 * @elem: an element instance
5510 *
5511 * Check that an element follows #CDATA
5512 *
5513 * returns 1 if valid or 0 otherwise
5514 */
5515static int
5516xmlValidateOneCdataElement(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
5517 xmlNodePtr elem) {
5518 int ret = 1;
5519 xmlNodePtr cur, child;
5520
Daniel Veillard3e62adb2012-08-09 14:24:02 +08005521 if ((ctxt == NULL) || (doc == NULL) || (elem == NULL) ||
5522 (elem->type != XML_ELEMENT_NODE))
Daniel Veillard04e2dae2001-07-09 20:07:25 +00005523 return(0);
5524
5525 child = elem->children;
5526
5527 cur = child;
5528 while (cur != NULL) {
5529 switch (cur->type) {
5530 case XML_ENTITY_REF_NODE:
5531 /*
5532 * Push the current node to be able to roll back
5533 * and process within the entity
5534 */
5535 if ((cur->children != NULL) &&
5536 (cur->children->children != NULL)) {
5537 nodeVPush(ctxt, cur);
5538 cur = cur->children->children;
5539 continue;
5540 }
5541 break;
5542 case XML_COMMENT_NODE:
5543 case XML_PI_NODE:
5544 case XML_TEXT_NODE:
5545 case XML_CDATA_SECTION_NODE:
5546 break;
5547 default:
5548 ret = 0;
5549 goto done;
5550 }
5551 /*
5552 * Switch to next element
5553 */
5554 cur = cur->next;
5555 while (cur == NULL) {
5556 cur = nodeVPop(ctxt);
5557 if (cur == NULL)
5558 break;
5559 cur = cur->next;
5560 }
5561 }
5562done:
5563 ctxt->nodeMax = 0;
5564 ctxt->nodeNr = 0;
5565 if (ctxt->nodeTab != NULL) {
5566 xmlFree(ctxt->nodeTab);
5567 ctxt->nodeTab = NULL;
5568 }
5569 return(ret);
5570}
5571
5572/**
Daniel Veillardea7751d2002-12-20 00:16:24 +00005573 * xmlValidateCheckMixed:
5574 * @ctxt: the validation context
5575 * @cont: the mixed content model
5576 * @qname: the qualified name as appearing in the serialization
5577 *
5578 * Check if the given node is part of the content model.
5579 *
5580 * Returns 1 if yes, 0 if no, -1 in case of error
5581 */
5582static int
William M. Brackedb65a72004-02-06 07:36:04 +00005583xmlValidateCheckMixed(xmlValidCtxtPtr ctxt,
Daniel Veillardea7751d2002-12-20 00:16:24 +00005584 xmlElementContentPtr cont, const xmlChar *qname) {
Daniel Veillard8d73bcb2003-08-04 01:06:15 +00005585 const xmlChar *name;
5586 int plen;
5587 name = xmlSplitQName3(qname, &plen);
5588
5589 if (name == NULL) {
5590 while (cont != NULL) {
5591 if (cont->type == XML_ELEMENT_CONTENT_ELEMENT) {
5592 if ((cont->prefix == NULL) && (xmlStrEqual(cont->name, qname)))
5593 return(1);
5594 } else if ((cont->type == XML_ELEMENT_CONTENT_OR) &&
5595 (cont->c1 != NULL) &&
5596 (cont->c1->type == XML_ELEMENT_CONTENT_ELEMENT)){
5597 if ((cont->c1->prefix == NULL) &&
5598 (xmlStrEqual(cont->c1->name, qname)))
5599 return(1);
5600 } else if ((cont->type != XML_ELEMENT_CONTENT_OR) ||
5601 (cont->c1 == NULL) ||
5602 (cont->c1->type != XML_ELEMENT_CONTENT_PCDATA)){
Daniel Veillardf8e3db02012-09-11 13:26:36 +08005603 xmlErrValid(NULL, XML_DTD_MIXED_CORRUPT,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00005604 "Internal: MIXED struct corrupted\n",
5605 NULL);
Daniel Veillard8d73bcb2003-08-04 01:06:15 +00005606 break;
5607 }
5608 cont = cont->c2;
Daniel Veillardea7751d2002-12-20 00:16:24 +00005609 }
Daniel Veillard8d73bcb2003-08-04 01:06:15 +00005610 } else {
5611 while (cont != NULL) {
5612 if (cont->type == XML_ELEMENT_CONTENT_ELEMENT) {
5613 if ((cont->prefix != NULL) &&
5614 (xmlStrncmp(cont->prefix, qname, plen) == 0) &&
5615 (xmlStrEqual(cont->name, name)))
5616 return(1);
5617 } else if ((cont->type == XML_ELEMENT_CONTENT_OR) &&
5618 (cont->c1 != NULL) &&
5619 (cont->c1->type == XML_ELEMENT_CONTENT_ELEMENT)){
5620 if ((cont->c1->prefix != NULL) &&
5621 (xmlStrncmp(cont->c1->prefix, qname, plen) == 0) &&
5622 (xmlStrEqual(cont->c1->name, name)))
5623 return(1);
5624 } else if ((cont->type != XML_ELEMENT_CONTENT_OR) ||
5625 (cont->c1 == NULL) ||
5626 (cont->c1->type != XML_ELEMENT_CONTENT_PCDATA)){
Daniel Veillardf8e3db02012-09-11 13:26:36 +08005627 xmlErrValid(ctxt, XML_DTD_MIXED_CORRUPT,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00005628 "Internal: MIXED struct corrupted\n",
5629 NULL);
Daniel Veillard8d73bcb2003-08-04 01:06:15 +00005630 break;
5631 }
5632 cont = cont->c2;
5633 }
Daniel Veillardea7751d2002-12-20 00:16:24 +00005634 }
5635 return(0);
5636}
5637
5638/**
5639 * xmlValidGetElemDecl:
5640 * @ctxt: the validation context
5641 * @doc: a document instance
5642 * @elem: an element instance
5643 * @extsubset: pointer, (out) indicate if the declaration was found
5644 * in the external subset.
5645 *
5646 * Finds a declaration associated to an element in the document.
5647 *
5648 * returns the pointer to the declaration or NULL if not found.
5649 */
5650static xmlElementPtr
5651xmlValidGetElemDecl(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
5652 xmlNodePtr elem, int *extsubset) {
5653 xmlElementPtr elemDecl = NULL;
5654 const xmlChar *prefix = NULL;
5655
Daniel Veillardf8e3db02012-09-11 13:26:36 +08005656 if ((ctxt == NULL) || (doc == NULL) ||
Daniel Veillardc0be74b2004-11-03 19:16:55 +00005657 (elem == NULL) || (elem->name == NULL))
5658 return(NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005659 if (extsubset != NULL)
5660 *extsubset = 0;
5661
5662 /*
5663 * Fetch the declaration for the qualified name
5664 */
5665 if ((elem->ns != NULL) && (elem->ns->prefix != NULL))
5666 prefix = elem->ns->prefix;
5667
5668 if (prefix != NULL) {
5669 elemDecl = xmlGetDtdQElementDesc(doc->intSubset,
5670 elem->name, prefix);
5671 if ((elemDecl == NULL) && (doc->extSubset != NULL)) {
5672 elemDecl = xmlGetDtdQElementDesc(doc->extSubset,
5673 elem->name, prefix);
5674 if ((elemDecl != NULL) && (extsubset != NULL))
5675 *extsubset = 1;
5676 }
5677 }
5678
5679 /*
5680 * Fetch the declaration for the non qualified name
5681 * This is "non-strict" validation should be done on the
5682 * full QName but in that case being flexible makes sense.
5683 */
5684 if (elemDecl == NULL) {
5685 elemDecl = xmlGetDtdElementDesc(doc->intSubset, elem->name);
5686 if ((elemDecl == NULL) && (doc->extSubset != NULL)) {
5687 elemDecl = xmlGetDtdElementDesc(doc->extSubset, elem->name);
5688 if ((elemDecl != NULL) && (extsubset != NULL))
5689 *extsubset = 1;
5690 }
5691 }
5692 if (elemDecl == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005693 xmlErrValidNode(ctxt, elem,
5694 XML_DTD_UNKNOWN_ELEM,
5695 "No declaration for element %s\n",
5696 elem->name, NULL, NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005697 }
5698 return(elemDecl);
5699}
5700
Daniel Veillard0e298ad2003-02-04 16:14:33 +00005701#ifdef LIBXML_REGEXP_ENABLED
Daniel Veillardea7751d2002-12-20 00:16:24 +00005702/**
5703 * xmlValidatePushElement:
5704 * @ctxt: the validation context
5705 * @doc: a document instance
5706 * @elem: an element instance
5707 * @qname: the qualified name as appearing in the serialization
5708 *
5709 * Push a new element start on the validation stack.
5710 *
5711 * returns 1 if no validation problem was found or 0 otherwise
5712 */
5713int
5714xmlValidatePushElement(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
5715 xmlNodePtr elem, const xmlChar *qname) {
5716 int ret = 1;
5717 xmlElementPtr eDecl;
5718 int extsubset = 0;
5719
Daniel Veillardc0be74b2004-11-03 19:16:55 +00005720 if (ctxt == NULL)
5721 return(0);
Daniel Veillardef8dd7b2003-03-23 12:02:56 +00005722/* printf("PushElem %s\n", qname); */
Daniel Veillardea7751d2002-12-20 00:16:24 +00005723 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) {
5724 xmlValidStatePtr state = ctxt->vstate;
5725 xmlElementPtr elemDecl;
5726
5727 /*
5728 * Check the new element agaisnt the content model of the new elem.
5729 */
5730 if (state->elemDecl != NULL) {
5731 elemDecl = state->elemDecl;
5732
5733 switch(elemDecl->etype) {
5734 case XML_ELEMENT_TYPE_UNDEFINED:
5735 ret = 0;
5736 break;
5737 case XML_ELEMENT_TYPE_EMPTY:
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005738 xmlErrValidNode(ctxt, state->node,
5739 XML_DTD_NOT_EMPTY,
Daniel Veillardea7751d2002-12-20 00:16:24 +00005740 "Element %s was declared EMPTY this one has content\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005741 state->node->name, NULL, NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005742 ret = 0;
5743 break;
5744 case XML_ELEMENT_TYPE_ANY:
5745 /* I don't think anything is required then */
5746 break;
5747 case XML_ELEMENT_TYPE_MIXED:
5748 /* simple case of declared as #PCDATA */
5749 if ((elemDecl->content != NULL) &&
5750 (elemDecl->content->type ==
5751 XML_ELEMENT_CONTENT_PCDATA)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005752 xmlErrValidNode(ctxt, state->node,
5753 XML_DTD_NOT_PCDATA,
Daniel Veillardea7751d2002-12-20 00:16:24 +00005754 "Element %s was declared #PCDATA but contains non text nodes\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005755 state->node->name, NULL, NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005756 ret = 0;
5757 } else {
5758 ret = xmlValidateCheckMixed(ctxt, elemDecl->content,
5759 qname);
5760 if (ret != 1) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005761 xmlErrValidNode(ctxt, state->node,
5762 XML_DTD_INVALID_CHILD,
Daniel Veillardea7751d2002-12-20 00:16:24 +00005763 "Element %s is not declared in %s list of possible children\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005764 qname, state->node->name, NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005765 }
5766 }
5767 break;
5768 case XML_ELEMENT_TYPE_ELEMENT:
5769 /*
5770 * TODO:
5771 * VC: Standalone Document Declaration
5772 * - element types with element content, if white space
5773 * occurs directly within any instance of those types.
5774 */
5775 if (state->exec != NULL) {
5776 ret = xmlRegExecPushString(state->exec, qname, NULL);
5777 if (ret < 0) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005778 xmlErrValidNode(ctxt, state->node,
5779 XML_DTD_CONTENT_MODEL,
5780 "Element %s content does not follow the DTD, Misplaced %s\n",
5781 state->node->name, qname, NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005782 ret = 0;
5783 } else {
5784 ret = 1;
5785 }
5786 }
5787 break;
5788 }
5789 }
5790 }
5791 eDecl = xmlValidGetElemDecl(ctxt, doc, elem, &extsubset);
5792 vstateVPush(ctxt, eDecl, elem);
5793 return(ret);
5794}
5795
5796/**
5797 * xmlValidatePushCData:
5798 * @ctxt: the validation context
5799 * @data: some character data read
Michael Woodfb27e2c2012-09-28 08:59:33 +02005800 * @len: the length of the data
Daniel Veillardea7751d2002-12-20 00:16:24 +00005801 *
5802 * check the CData parsed for validation in the current stack
5803 *
5804 * returns 1 if no validation problem was found or 0 otherwise
5805 */
5806int
5807xmlValidatePushCData(xmlValidCtxtPtr ctxt, const xmlChar *data, int len) {
5808 int ret = 1;
5809
Daniel Veillardef8dd7b2003-03-23 12:02:56 +00005810/* printf("CDATA %s %d\n", data, len); */
Daniel Veillardc0be74b2004-11-03 19:16:55 +00005811 if (ctxt == NULL)
5812 return(0);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005813 if (len <= 0)
5814 return(ret);
5815 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) {
5816 xmlValidStatePtr state = ctxt->vstate;
5817 xmlElementPtr elemDecl;
5818
5819 /*
5820 * Check the new element agaisnt the content model of the new elem.
5821 */
5822 if (state->elemDecl != NULL) {
5823 elemDecl = state->elemDecl;
5824
5825 switch(elemDecl->etype) {
5826 case XML_ELEMENT_TYPE_UNDEFINED:
5827 ret = 0;
5828 break;
5829 case XML_ELEMENT_TYPE_EMPTY:
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005830 xmlErrValidNode(ctxt, state->node,
5831 XML_DTD_NOT_EMPTY,
Daniel Veillardea7751d2002-12-20 00:16:24 +00005832 "Element %s was declared EMPTY this one has content\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005833 state->node->name, NULL, NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005834 ret = 0;
5835 break;
5836 case XML_ELEMENT_TYPE_ANY:
5837 break;
5838 case XML_ELEMENT_TYPE_MIXED:
5839 break;
5840 case XML_ELEMENT_TYPE_ELEMENT:
5841 if (len > 0) {
5842 int i;
5843
5844 for (i = 0;i < len;i++) {
William M. Brack76e95df2003-10-18 16:20:14 +00005845 if (!IS_BLANK_CH(data[i])) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005846 xmlErrValidNode(ctxt, state->node,
5847 XML_DTD_CONTENT_MODEL,
5848 "Element %s content does not follow the DTD, Text not allowed\n",
5849 state->node->name, NULL, NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005850 ret = 0;
5851 goto done;
5852 }
5853 }
5854 /*
5855 * TODO:
5856 * VC: Standalone Document Declaration
5857 * element types with element content, if white space
5858 * occurs directly within any instance of those types.
5859 */
5860 }
5861 break;
5862 }
5863 }
5864 }
5865done:
5866 return(ret);
5867}
5868
5869/**
5870 * xmlValidatePopElement:
5871 * @ctxt: the validation context
5872 * @doc: a document instance
5873 * @elem: an element instance
5874 * @qname: the qualified name as appearing in the serialization
5875 *
5876 * Pop the element end from the validation stack.
5877 *
5878 * returns 1 if no validation problem was found or 0 otherwise
5879 */
5880int
5881xmlValidatePopElement(xmlValidCtxtPtr ctxt, xmlDocPtr doc ATTRIBUTE_UNUSED,
Daniel Veillard580ced82003-03-21 21:22:48 +00005882 xmlNodePtr elem ATTRIBUTE_UNUSED,
5883 const xmlChar *qname ATTRIBUTE_UNUSED) {
Daniel Veillardea7751d2002-12-20 00:16:24 +00005884 int ret = 1;
5885
Daniel Veillardc0be74b2004-11-03 19:16:55 +00005886 if (ctxt == NULL)
5887 return(0);
Daniel Veillardef8dd7b2003-03-23 12:02:56 +00005888/* printf("PopElem %s\n", qname); */
Daniel Veillardea7751d2002-12-20 00:16:24 +00005889 if ((ctxt->vstateNr > 0) && (ctxt->vstate != NULL)) {
5890 xmlValidStatePtr state = ctxt->vstate;
5891 xmlElementPtr elemDecl;
5892
5893 /*
5894 * Check the new element agaisnt the content model of the new elem.
5895 */
5896 if (state->elemDecl != NULL) {
5897 elemDecl = state->elemDecl;
5898
5899 if (elemDecl->etype == XML_ELEMENT_TYPE_ELEMENT) {
5900 if (state->exec != NULL) {
5901 ret = xmlRegExecPushString(state->exec, NULL, NULL);
5902 if (ret == 0) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005903 xmlErrValidNode(ctxt, state->node,
5904 XML_DTD_CONTENT_MODEL,
5905 "Element %s content does not follow the DTD, Expecting more child\n",
5906 state->node->name, NULL,NULL);
Daniel Veillardea7751d2002-12-20 00:16:24 +00005907 } else {
5908 /*
5909 * previous validation errors should not generate
5910 * a new one here
5911 */
5912 ret = 1;
5913 }
5914 }
5915 }
5916 }
5917 vstateVPop(ctxt);
5918 }
5919 return(ret);
5920}
Daniel Veillard0e298ad2003-02-04 16:14:33 +00005921#endif /* LIBXML_REGEXP_ENABLED */
Daniel Veillardea7751d2002-12-20 00:16:24 +00005922
5923/**
Owen Taylor3473f882001-02-23 17:55:21 +00005924 * xmlValidateOneElement:
5925 * @ctxt: the validation context
5926 * @doc: a document instance
5927 * @elem: an element instance
5928 *
5929 * Try to validate a single element and it's attributes,
5930 * basically it does the following checks as described by the
5931 * XML-1.0 recommendation:
5932 * - [ VC: Element Valid ]
5933 * - [ VC: Required Attribute ]
5934 * Then call xmlValidateOneAttribute() for each attribute present.
5935 *
5936 * The ID/IDREF checkings are done separately
5937 *
5938 * returns 1 if valid or 0 otherwise
5939 */
5940
5941int
5942xmlValidateOneElement(xmlValidCtxtPtr ctxt, xmlDocPtr doc,
5943 xmlNodePtr elem) {
5944 xmlElementPtr elemDecl = NULL;
5945 xmlElementContentPtr cont;
5946 xmlAttributePtr attr;
5947 xmlNodePtr child;
Daniel Veillard8dc16a62002-02-19 21:08:48 +00005948 int ret = 1, tmp;
Owen Taylor3473f882001-02-23 17:55:21 +00005949 const xmlChar *name;
Daniel Veillard8dc16a62002-02-19 21:08:48 +00005950 int extsubset = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00005951
5952 CHECK_DTD;
5953
5954 if (elem == NULL) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00005955 switch (elem->type) {
5956 case XML_ATTRIBUTE_NODE:
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005957 xmlErrValidNode(ctxt, elem, XML_ERR_INTERNAL_ERROR,
5958 "Attribute element not expected\n", NULL, NULL ,NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005959 return(0);
5960 case XML_TEXT_NODE:
5961 if (elem->children != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005962 xmlErrValidNode(ctxt, elem, XML_ERR_INTERNAL_ERROR,
5963 "Text element has children !\n",
5964 NULL,NULL,NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005965 return(0);
5966 }
Owen Taylor3473f882001-02-23 17:55:21 +00005967 if (elem->ns != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005968 xmlErrValidNode(ctxt, elem, XML_ERR_INTERNAL_ERROR,
5969 "Text element has namespace !\n",
5970 NULL,NULL,NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005971 return(0);
5972 }
Owen Taylor3473f882001-02-23 17:55:21 +00005973 if (elem->content == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005974 xmlErrValidNode(ctxt, elem, XML_ERR_INTERNAL_ERROR,
5975 "Text element has no content !\n",
5976 NULL,NULL,NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005977 return(0);
5978 }
5979 return(1);
5980 case XML_XINCLUDE_START:
5981 case XML_XINCLUDE_END:
5982 return(1);
5983 case XML_CDATA_SECTION_NODE:
5984 case XML_ENTITY_REF_NODE:
5985 case XML_PI_NODE:
5986 case XML_COMMENT_NODE:
5987 return(1);
5988 case XML_ENTITY_NODE:
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005989 xmlErrValidNode(ctxt, elem, XML_ERR_INTERNAL_ERROR,
5990 "Entity element not expected\n", NULL, NULL ,NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005991 return(0);
5992 case XML_NOTATION_NODE:
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005993 xmlErrValidNode(ctxt, elem, XML_ERR_INTERNAL_ERROR,
5994 "Notation element not expected\n", NULL, NULL ,NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00005995 return(0);
5996 case XML_DOCUMENT_NODE:
5997 case XML_DOCUMENT_TYPE_NODE:
5998 case XML_DOCUMENT_FRAG_NODE:
Daniel Veillardbb5abab2003-10-03 22:21:51 +00005999 xmlErrValidNode(ctxt, elem, XML_ERR_INTERNAL_ERROR,
6000 "Document element not expected\n", NULL, NULL ,NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006001 return(0);
6002 case XML_HTML_DOCUMENT_NODE:
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006003 xmlErrValidNode(ctxt, elem, XML_ERR_INTERNAL_ERROR,
6004 "HTML Document not expected\n", NULL, NULL ,NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006005 return(0);
6006 case XML_ELEMENT_NODE:
6007 break;
6008 default:
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006009 xmlErrValidNode(ctxt, elem, XML_ERR_INTERNAL_ERROR,
6010 "unknown element type\n", NULL, NULL ,NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006011 return(0);
6012 }
Owen Taylor3473f882001-02-23 17:55:21 +00006013
6014 /*
Daniel Veillardea7751d2002-12-20 00:16:24 +00006015 * Fetch the declaration
Owen Taylor3473f882001-02-23 17:55:21 +00006016 */
Daniel Veillardea7751d2002-12-20 00:16:24 +00006017 elemDecl = xmlValidGetElemDecl(ctxt, doc, elem, &extsubset);
6018 if (elemDecl == NULL)
Owen Taylor3473f882001-02-23 17:55:21 +00006019 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006020
Daniel Veillardea7751d2002-12-20 00:16:24 +00006021 /*
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006022 * If vstateNr is not zero that means continuous validation is
Daniel Veillardea7751d2002-12-20 00:16:24 +00006023 * activated, do not try to check the content model at that level.
6024 */
6025 if (ctxt->vstateNr == 0) {
Daniel Veillardcbaf3992001-12-31 16:16:02 +00006026 /* Check that the element content matches the definition */
Owen Taylor3473f882001-02-23 17:55:21 +00006027 switch (elemDecl->etype) {
Daniel Veillarda10efa82001-04-18 13:09:01 +00006028 case XML_ELEMENT_TYPE_UNDEFINED:
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006029 xmlErrValidNode(ctxt, elem, XML_DTD_UNKNOWN_ELEM,
6030 "No declaration for element %s\n",
6031 elem->name, NULL, NULL);
Daniel Veillarda10efa82001-04-18 13:09:01 +00006032 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006033 case XML_ELEMENT_TYPE_EMPTY:
6034 if (elem->children != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006035 xmlErrValidNode(ctxt, elem, XML_DTD_NOT_EMPTY,
Owen Taylor3473f882001-02-23 17:55:21 +00006036 "Element %s was declared EMPTY this one has content\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006037 elem->name, NULL, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006038 ret = 0;
6039 }
6040 break;
6041 case XML_ELEMENT_TYPE_ANY:
6042 /* I don't think anything is required then */
6043 break;
6044 case XML_ELEMENT_TYPE_MIXED:
Daniel Veillard8dc16a62002-02-19 21:08:48 +00006045
Daniel Veillard04e2dae2001-07-09 20:07:25 +00006046 /* simple case of declared as #PCDATA */
6047 if ((elemDecl->content != NULL) &&
6048 (elemDecl->content->type == XML_ELEMENT_CONTENT_PCDATA)) {
6049 ret = xmlValidateOneCdataElement(ctxt, doc, elem);
6050 if (!ret) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006051 xmlErrValidNode(ctxt, elem, XML_DTD_NOT_PCDATA,
Daniel Veillard04e2dae2001-07-09 20:07:25 +00006052 "Element %s was declared #PCDATA but contains non text nodes\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006053 elem->name, NULL, NULL);
Daniel Veillard04e2dae2001-07-09 20:07:25 +00006054 }
6055 break;
6056 }
Owen Taylor3473f882001-02-23 17:55:21 +00006057 child = elem->children;
Daniel Veillard04e2dae2001-07-09 20:07:25 +00006058 /* Hum, this start to get messy */
Owen Taylor3473f882001-02-23 17:55:21 +00006059 while (child != NULL) {
6060 if (child->type == XML_ELEMENT_NODE) {
6061 name = child->name;
6062 if ((child->ns != NULL) && (child->ns->prefix != NULL)) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00006063 xmlChar fn[50];
6064 xmlChar *fullname;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006065
Daniel Veillardc00cda82003-04-07 10:22:39 +00006066 fullname = xmlBuildQName(child->name, child->ns->prefix,
6067 fn, 50);
6068 if (fullname == NULL)
6069 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006070 cont = elemDecl->content;
6071 while (cont != NULL) {
6072 if (cont->type == XML_ELEMENT_CONTENT_ELEMENT) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00006073 if (xmlStrEqual(cont->name, fullname))
6074 break;
Owen Taylor3473f882001-02-23 17:55:21 +00006075 } else if ((cont->type == XML_ELEMENT_CONTENT_OR) &&
6076 (cont->c1 != NULL) &&
6077 (cont->c1->type == XML_ELEMENT_CONTENT_ELEMENT)){
Daniel Veillardc00cda82003-04-07 10:22:39 +00006078 if (xmlStrEqual(cont->c1->name, fullname))
6079 break;
Owen Taylor3473f882001-02-23 17:55:21 +00006080 } else if ((cont->type != XML_ELEMENT_CONTENT_OR) ||
6081 (cont->c1 == NULL) ||
6082 (cont->c1->type != XML_ELEMENT_CONTENT_PCDATA)){
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006083 xmlErrValid(NULL, XML_DTD_MIXED_CORRUPT,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00006084 "Internal: MIXED struct corrupted\n",
6085 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006086 break;
6087 }
6088 cont = cont->c2;
6089 }
Daniel Veillardc00cda82003-04-07 10:22:39 +00006090 if ((fullname != fn) && (fullname != child->name))
6091 xmlFree(fullname);
Owen Taylor3473f882001-02-23 17:55:21 +00006092 if (cont != NULL)
6093 goto child_ok;
6094 }
6095 cont = elemDecl->content;
6096 while (cont != NULL) {
6097 if (cont->type == XML_ELEMENT_CONTENT_ELEMENT) {
6098 if (xmlStrEqual(cont->name, name)) break;
6099 } else if ((cont->type == XML_ELEMENT_CONTENT_OR) &&
6100 (cont->c1 != NULL) &&
6101 (cont->c1->type == XML_ELEMENT_CONTENT_ELEMENT)) {
6102 if (xmlStrEqual(cont->c1->name, name)) break;
6103 } else if ((cont->type != XML_ELEMENT_CONTENT_OR) ||
6104 (cont->c1 == NULL) ||
6105 (cont->c1->type != XML_ELEMENT_CONTENT_PCDATA)) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006106 xmlErrValid(ctxt, XML_DTD_MIXED_CORRUPT,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00006107 "Internal: MIXED struct corrupted\n",
6108 NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006109 break;
6110 }
6111 cont = cont->c2;
6112 }
6113 if (cont == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006114 xmlErrValidNode(ctxt, elem, XML_DTD_INVALID_CHILD,
Daniel Veillard5e5c2d02002-02-09 18:03:01 +00006115 "Element %s is not declared in %s list of possible children\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006116 name, elem->name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006117 ret = 0;
6118 }
6119 }
6120child_ok:
6121 child = child->next;
6122 }
6123 break;
6124 case XML_ELEMENT_TYPE_ELEMENT:
Daniel Veillard8dc16a62002-02-19 21:08:48 +00006125 if ((doc->standalone == 1) && (extsubset == 1)) {
6126 /*
6127 * VC: Standalone Document Declaration
6128 * - element types with element content, if white space
6129 * occurs directly within any instance of those types.
6130 */
6131 child = elem->children;
6132 while (child != NULL) {
6133 if (child->type == XML_TEXT_NODE) {
6134 const xmlChar *content = child->content;
6135
William M. Brack76e95df2003-10-18 16:20:14 +00006136 while (IS_BLANK_CH(*content))
Daniel Veillard8dc16a62002-02-19 21:08:48 +00006137 content++;
6138 if (*content == 0) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006139 xmlErrValidNode(ctxt, elem,
6140 XML_DTD_STANDALONE_WHITE_SPACE,
Daniel Veillard8dc16a62002-02-19 21:08:48 +00006141"standalone: %s declared in the external subset contains white spaces nodes\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006142 elem->name, NULL, NULL);
Daniel Veillard8dc16a62002-02-19 21:08:48 +00006143 ret = 0;
6144 break;
6145 }
6146 }
6147 child =child->next;
6148 }
6149 }
Owen Taylor3473f882001-02-23 17:55:21 +00006150 child = elem->children;
6151 cont = elemDecl->content;
Daniel Veillardb9cd8b42002-09-05 10:58:49 +00006152 tmp = xmlValidateElementContent(ctxt, child, elemDecl, 1, elem);
Daniel Veillard8dc16a62002-02-19 21:08:48 +00006153 if (tmp <= 0)
6154 ret = tmp;
Owen Taylor3473f882001-02-23 17:55:21 +00006155 break;
6156 }
Daniel Veillardea7751d2002-12-20 00:16:24 +00006157 } /* not continuous */
Owen Taylor3473f882001-02-23 17:55:21 +00006158
6159 /* [ VC: Required Attribute ] */
6160 attr = elemDecl->attributes;
6161 while (attr != NULL) {
6162 if (attr->def == XML_ATTRIBUTE_REQUIRED) {
Owen Taylor3473f882001-02-23 17:55:21 +00006163 int qualified = -1;
Owen Taylor3473f882001-02-23 17:55:21 +00006164
Daniel Veillarde4301c82002-02-13 13:32:35 +00006165 if ((attr->prefix == NULL) &&
6166 (xmlStrEqual(attr->name, BAD_CAST "xmlns"))) {
6167 xmlNsPtr ns;
6168
6169 ns = elem->nsDef;
6170 while (ns != NULL) {
6171 if (ns->prefix == NULL)
Owen Taylor3473f882001-02-23 17:55:21 +00006172 goto found;
Daniel Veillarde4301c82002-02-13 13:32:35 +00006173 ns = ns->next;
Owen Taylor3473f882001-02-23 17:55:21 +00006174 }
Daniel Veillarde4301c82002-02-13 13:32:35 +00006175 } else if (xmlStrEqual(attr->prefix, BAD_CAST "xmlns")) {
6176 xmlNsPtr ns;
6177
6178 ns = elem->nsDef;
6179 while (ns != NULL) {
6180 if (xmlStrEqual(attr->name, ns->prefix))
6181 goto found;
6182 ns = ns->next;
6183 }
6184 } else {
6185 xmlAttrPtr attrib;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006186
Daniel Veillarde4301c82002-02-13 13:32:35 +00006187 attrib = elem->properties;
6188 while (attrib != NULL) {
6189 if (xmlStrEqual(attrib->name, attr->name)) {
6190 if (attr->prefix != NULL) {
6191 xmlNsPtr nameSpace = attrib->ns;
6192
6193 if (nameSpace == NULL)
6194 nameSpace = elem->ns;
6195 /*
6196 * qualified names handling is problematic, having a
6197 * different prefix should be possible but DTDs don't
6198 * allow to define the URI instead of the prefix :-(
6199 */
6200 if (nameSpace == NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006201 if (qualified < 0)
Daniel Veillarde4301c82002-02-13 13:32:35 +00006202 qualified = 0;
6203 } else if (!xmlStrEqual(nameSpace->prefix,
6204 attr->prefix)) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006205 if (qualified < 1)
Daniel Veillarde4301c82002-02-13 13:32:35 +00006206 qualified = 1;
6207 } else
6208 goto found;
6209 } else {
6210 /*
6211 * We should allow applications to define namespaces
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006212 * for their application even if the DTD doesn't
Daniel Veillarde4301c82002-02-13 13:32:35 +00006213 * carry one, otherwise, basically we would always
6214 * break.
6215 */
6216 goto found;
6217 }
6218 }
6219 attrib = attrib->next;
6220 }
Owen Taylor3473f882001-02-23 17:55:21 +00006221 }
6222 if (qualified == -1) {
6223 if (attr->prefix == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006224 xmlErrValidNode(ctxt, elem, XML_DTD_MISSING_ATTRIBUTE,
Daniel Veillard58e44c92002-08-02 22:19:49 +00006225 "Element %s does not carry attribute %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006226 elem->name, attr->name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006227 ret = 0;
6228 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006229 xmlErrValidNode(ctxt, elem, XML_DTD_MISSING_ATTRIBUTE,
Daniel Veillard58e44c92002-08-02 22:19:49 +00006230 "Element %s does not carry attribute %s:%s\n",
Owen Taylor3473f882001-02-23 17:55:21 +00006231 elem->name, attr->prefix,attr->name);
6232 ret = 0;
6233 }
6234 } else if (qualified == 0) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006235 xmlErrValidWarning(ctxt, elem, XML_DTD_NO_PREFIX,
Owen Taylor3473f882001-02-23 17:55:21 +00006236 "Element %s required attribute %s:%s has no prefix\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006237 elem->name, attr->prefix, attr->name);
Owen Taylor3473f882001-02-23 17:55:21 +00006238 } else if (qualified == 1) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006239 xmlErrValidWarning(ctxt, elem, XML_DTD_DIFFERENT_PREFIX,
Owen Taylor3473f882001-02-23 17:55:21 +00006240 "Element %s required attribute %s:%s has different prefix\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006241 elem->name, attr->prefix, attr->name);
Owen Taylor3473f882001-02-23 17:55:21 +00006242 }
Daniel Veillarde4301c82002-02-13 13:32:35 +00006243 } else if (attr->def == XML_ATTRIBUTE_FIXED) {
6244 /*
6245 * Special tests checking #FIXED namespace declarations
6246 * have the right value since this is not done as an
6247 * attribute checking
6248 */
6249 if ((attr->prefix == NULL) &&
6250 (xmlStrEqual(attr->name, BAD_CAST "xmlns"))) {
6251 xmlNsPtr ns;
6252
6253 ns = elem->nsDef;
6254 while (ns != NULL) {
6255 if (ns->prefix == NULL) {
6256 if (!xmlStrEqual(attr->defaultValue, ns->href)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006257 xmlErrValidNode(ctxt, elem,
6258 XML_DTD_ELEM_DEFAULT_NAMESPACE,
Daniel Veillarde4301c82002-02-13 13:32:35 +00006259 "Element %s namespace name for default namespace does not match the DTD\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006260 elem->name, NULL, NULL);
Daniel Veillardc7612992002-02-17 22:47:37 +00006261 ret = 0;
Daniel Veillarde4301c82002-02-13 13:32:35 +00006262 }
6263 goto found;
6264 }
6265 ns = ns->next;
6266 }
6267 } else if (xmlStrEqual(attr->prefix, BAD_CAST "xmlns")) {
6268 xmlNsPtr ns;
6269
6270 ns = elem->nsDef;
6271 while (ns != NULL) {
6272 if (xmlStrEqual(attr->name, ns->prefix)) {
6273 if (!xmlStrEqual(attr->defaultValue, ns->href)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006274 xmlErrValidNode(ctxt, elem, XML_DTD_ELEM_NAMESPACE,
Daniel Veillard58e44c92002-08-02 22:19:49 +00006275 "Element %s namespace name for %s does not match the DTD\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006276 elem->name, ns->prefix, NULL);
Daniel Veillardc7612992002-02-17 22:47:37 +00006277 ret = 0;
Daniel Veillarde4301c82002-02-13 13:32:35 +00006278 }
6279 goto found;
6280 }
6281 ns = ns->next;
6282 }
6283 }
Owen Taylor3473f882001-02-23 17:55:21 +00006284 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006285found:
Owen Taylor3473f882001-02-23 17:55:21 +00006286 attr = attr->nexth;
6287 }
6288 return(ret);
6289}
6290
6291/**
6292 * xmlValidateRoot:
6293 * @ctxt: the validation context
6294 * @doc: a document instance
6295 *
6296 * Try to validate a the root element
6297 * basically it does the following check as described by the
6298 * XML-1.0 recommendation:
6299 * - [ VC: Root Element Type ]
6300 * it doesn't try to recurse or apply other check to the element
6301 *
6302 * returns 1 if valid or 0 otherwise
6303 */
6304
6305int
6306xmlValidateRoot(xmlValidCtxtPtr ctxt, xmlDocPtr doc) {
6307 xmlNodePtr root;
Daniel Veillardc00cda82003-04-07 10:22:39 +00006308 int ret;
6309
Owen Taylor3473f882001-02-23 17:55:21 +00006310 if (doc == NULL) return(0);
6311
6312 root = xmlDocGetRootElement(doc);
6313 if ((root == NULL) || (root->name == NULL)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006314 xmlErrValid(ctxt, XML_DTD_NO_ROOT,
6315 "no root element\n", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006316 return(0);
6317 }
6318
6319 /*
6320 * When doing post validation against a separate DTD, those may
6321 * no internal subset has been generated
6322 */
6323 if ((doc->intSubset != NULL) &&
6324 (doc->intSubset->name != NULL)) {
6325 /*
6326 * Check first the document root against the NQName
6327 */
6328 if (!xmlStrEqual(doc->intSubset->name, root->name)) {
6329 if ((root->ns != NULL) && (root->ns->prefix != NULL)) {
Daniel Veillardc00cda82003-04-07 10:22:39 +00006330 xmlChar fn[50];
6331 xmlChar *fullname;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006332
Daniel Veillardc00cda82003-04-07 10:22:39 +00006333 fullname = xmlBuildQName(root->name, root->ns->prefix, fn, 50);
6334 if (fullname == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00006335 xmlVErrMemory(ctxt, NULL);
Daniel Veillardc00cda82003-04-07 10:22:39 +00006336 return(0);
6337 }
6338 ret = xmlStrEqual(doc->intSubset->name, fullname);
6339 if ((fullname != fn) && (fullname != root->name))
6340 xmlFree(fullname);
6341 if (ret == 1)
Owen Taylor3473f882001-02-23 17:55:21 +00006342 goto name_ok;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006343 }
Owen Taylor3473f882001-02-23 17:55:21 +00006344 if ((xmlStrEqual(doc->intSubset->name, BAD_CAST "HTML")) &&
6345 (xmlStrEqual(root->name, BAD_CAST "html")))
6346 goto name_ok;
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006347 xmlErrValidNode(ctxt, root, XML_DTD_ROOT_NAME,
6348 "root and DTD name do not match '%s' and '%s'\n",
6349 root->name, doc->intSubset->name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006350 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006351 }
6352 }
6353name_ok:
6354 return(1);
6355}
6356
6357
6358/**
6359 * xmlValidateElement:
6360 * @ctxt: the validation context
6361 * @doc: a document instance
6362 * @elem: an element instance
6363 *
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006364 * Try to validate the subtree under an element
Owen Taylor3473f882001-02-23 17:55:21 +00006365 *
6366 * returns 1 if valid or 0 otherwise
6367 */
6368
6369int
6370xmlValidateElement(xmlValidCtxtPtr ctxt, xmlDocPtr doc, xmlNodePtr elem) {
6371 xmlNodePtr child;
6372 xmlAttrPtr attr;
Daniel Veillarde133dd82003-10-30 10:42:20 +00006373 xmlNsPtr ns;
Daniel Veillarda8ff65d2003-11-03 16:20:10 +00006374 const xmlChar *value;
Owen Taylor3473f882001-02-23 17:55:21 +00006375 int ret = 1;
6376
6377 if (elem == NULL) return(0);
6378
6379 /*
6380 * XInclude elements were added after parsing in the infoset,
6381 * they don't really mean anything validation wise.
6382 */
6383 if ((elem->type == XML_XINCLUDE_START) ||
Daniel Veillard3e62adb2012-08-09 14:24:02 +08006384 (elem->type == XML_XINCLUDE_END) ||
6385 (elem->type == XML_NAMESPACE_DECL))
Owen Taylor3473f882001-02-23 17:55:21 +00006386 return(1);
6387
6388 CHECK_DTD;
6389
Daniel Veillard10ea86c2001-06-20 13:55:33 +00006390 /*
6391 * Entities references have to be handled separately
6392 */
6393 if (elem->type == XML_ENTITY_REF_NODE) {
6394 return(1);
6395 }
6396
Owen Taylor3473f882001-02-23 17:55:21 +00006397 ret &= xmlValidateOneElement(ctxt, doc, elem);
Daniel Veillard8874b942005-08-25 13:19:21 +00006398 if (elem->type == XML_ELEMENT_NODE) {
6399 attr = elem->properties;
6400 while (attr != NULL) {
6401 value = xmlNodeListGetString(doc, attr->children, 0);
6402 ret &= xmlValidateOneAttribute(ctxt, doc, elem, attr, value);
6403 if (value != NULL)
6404 xmlFree((char *)value);
6405 attr= attr->next;
6406 }
6407 ns = elem->nsDef;
6408 while (ns != NULL) {
6409 if (elem->ns == NULL)
6410 ret &= xmlValidateOneNamespace(ctxt, doc, elem, NULL,
6411 ns, ns->href);
6412 else
6413 ret &= xmlValidateOneNamespace(ctxt, doc, elem,
6414 elem->ns->prefix, ns, ns->href);
6415 ns = ns->next;
6416 }
Daniel Veillarde133dd82003-10-30 10:42:20 +00006417 }
Owen Taylor3473f882001-02-23 17:55:21 +00006418 child = elem->children;
6419 while (child != NULL) {
6420 ret &= xmlValidateElement(ctxt, doc, child);
6421 child = child->next;
6422 }
6423
6424 return(ret);
6425}
6426
Daniel Veillard8730c562001-02-26 10:49:57 +00006427/**
6428 * xmlValidateRef:
6429 * @ref: A reference to be validated
6430 * @ctxt: Validation context
6431 * @name: Name of ID we are searching for
6432 *
6433 */
Daniel Veillard56a4cb82001-03-24 17:00:36 +00006434static void
Daniel Veillard8730c562001-02-26 10:49:57 +00006435xmlValidateRef(xmlRefPtr ref, xmlValidCtxtPtr ctxt,
Owen Taylor3473f882001-02-23 17:55:21 +00006436 const xmlChar *name) {
6437 xmlAttrPtr id;
6438 xmlAttrPtr attr;
6439
6440 if (ref == NULL)
6441 return;
Daniel Veillardea7751d2002-12-20 00:16:24 +00006442 if ((ref->attr == NULL) && (ref->name == NULL))
Owen Taylor3473f882001-02-23 17:55:21 +00006443 return;
Daniel Veillardea7751d2002-12-20 00:16:24 +00006444 attr = ref->attr;
6445 if (attr == NULL) {
6446 xmlChar *dup, *str = NULL, *cur, save;
6447
6448 dup = xmlStrdup(name);
6449 if (dup == NULL) {
6450 ctxt->valid = 0;
6451 return;
6452 }
6453 cur = dup;
6454 while (*cur != 0) {
6455 str = cur;
William M. Brack76e95df2003-10-18 16:20:14 +00006456 while ((*cur != 0) && (!IS_BLANK_CH(*cur))) cur++;
Daniel Veillardea7751d2002-12-20 00:16:24 +00006457 save = *cur;
6458 *cur = 0;
6459 id = xmlGetID(ctxt->doc, str);
6460 if (id == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006461 xmlErrValidNodeNr(ctxt, NULL, XML_DTD_UNKNOWN_ID,
Daniel Veillardea7751d2002-12-20 00:16:24 +00006462 "attribute %s line %d references an unknown ID \"%s\"\n",
6463 ref->name, ref->lineno, str);
6464 ctxt->valid = 0;
6465 }
6466 if (save == 0)
6467 break;
6468 *cur = save;
William M. Brack76e95df2003-10-18 16:20:14 +00006469 while (IS_BLANK_CH(*cur)) cur++;
Daniel Veillardea7751d2002-12-20 00:16:24 +00006470 }
6471 xmlFree(dup);
6472 } else if (attr->atype == XML_ATTRIBUTE_IDREF) {
Owen Taylor3473f882001-02-23 17:55:21 +00006473 id = xmlGetID(ctxt->doc, name);
6474 if (id == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006475 xmlErrValidNode(ctxt, attr->parent, XML_DTD_UNKNOWN_ID,
Daniel Veillardea7751d2002-12-20 00:16:24 +00006476 "IDREF attribute %s references an unknown ID \"%s\"\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006477 attr->name, name, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006478 ctxt->valid = 0;
6479 }
6480 } else if (attr->atype == XML_ATTRIBUTE_IDREFS) {
6481 xmlChar *dup, *str = NULL, *cur, save;
6482
6483 dup = xmlStrdup(name);
6484 if (dup == NULL) {
Daniel Veillardce9457f2003-10-05 21:33:18 +00006485 xmlVErrMemory(ctxt, "IDREFS split");
Owen Taylor3473f882001-02-23 17:55:21 +00006486 ctxt->valid = 0;
6487 return;
6488 }
6489 cur = dup;
6490 while (*cur != 0) {
6491 str = cur;
William M. Brack76e95df2003-10-18 16:20:14 +00006492 while ((*cur != 0) && (!IS_BLANK_CH(*cur))) cur++;
Owen Taylor3473f882001-02-23 17:55:21 +00006493 save = *cur;
6494 *cur = 0;
6495 id = xmlGetID(ctxt->doc, str);
6496 if (id == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006497 xmlErrValidNode(ctxt, attr->parent, XML_DTD_UNKNOWN_ID,
Daniel Veillardea7751d2002-12-20 00:16:24 +00006498 "IDREFS attribute %s references an unknown ID \"%s\"\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006499 attr->name, str, NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006500 ctxt->valid = 0;
6501 }
6502 if (save == 0)
6503 break;
6504 *cur = save;
William M. Brack76e95df2003-10-18 16:20:14 +00006505 while (IS_BLANK_CH(*cur)) cur++;
Owen Taylor3473f882001-02-23 17:55:21 +00006506 }
6507 xmlFree(dup);
6508 }
6509}
6510
6511/**
Daniel Veillard8730c562001-02-26 10:49:57 +00006512 * xmlWalkValidateList:
6513 * @data: Contents of current link
6514 * @user: Value supplied by the user
6515 *
Daniel Veillardcbaf3992001-12-31 16:16:02 +00006516 * Returns 0 to abort the walk or 1 to continue
Daniel Veillard8730c562001-02-26 10:49:57 +00006517 */
6518static int
6519xmlWalkValidateList(const void *data, const void *user)
6520{
6521 xmlValidateMemoPtr memo = (xmlValidateMemoPtr)user;
6522 xmlValidateRef((xmlRefPtr)data, memo->ctxt, memo->name);
6523 return 1;
6524}
6525
6526/**
6527 * xmlValidateCheckRefCallback:
6528 * @ref_list: List of references
6529 * @ctxt: Validation context
6530 * @name: Name of ID we are searching for
6531 *
6532 */
6533static void
6534xmlValidateCheckRefCallback(xmlListPtr ref_list, xmlValidCtxtPtr ctxt,
6535 const xmlChar *name) {
6536 xmlValidateMemo memo;
6537
6538 if (ref_list == NULL)
6539 return;
6540 memo.ctxt = ctxt;
6541 memo.name = name;
6542
6543 xmlListWalk(ref_list, xmlWalkValidateList, &memo);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006544
Daniel Veillard8730c562001-02-26 10:49:57 +00006545}
6546
6547/**
Owen Taylor3473f882001-02-23 17:55:21 +00006548 * xmlValidateDocumentFinal:
6549 * @ctxt: the validation context
6550 * @doc: a document instance
6551 *
6552 * Does the final step for the document validation once all the
6553 * incremental validation steps have been completed
6554 *
6555 * basically it does the following checks described by the XML Rec
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006556 *
Daniel Veillardc3da18a2003-03-18 00:31:04 +00006557 * Check all the IDREF/IDREFS attributes definition for validity
Owen Taylor3473f882001-02-23 17:55:21 +00006558 *
6559 * returns 1 if valid or 0 otherwise
6560 */
6561
6562int
6563xmlValidateDocumentFinal(xmlValidCtxtPtr ctxt, xmlDocPtr doc) {
6564 xmlRefTablePtr table;
Daniel Veillardcb3549e2011-11-11 11:25:07 +08006565 unsigned int save;
Owen Taylor3473f882001-02-23 17:55:21 +00006566
Daniel Veillardc0be74b2004-11-03 19:16:55 +00006567 if (ctxt == NULL)
6568 return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006569 if (doc == NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006570 xmlErrValid(ctxt, XML_DTD_NO_DOC,
Daniel Veillard2b8c4a12003-10-02 22:28:19 +00006571 "xmlValidateDocumentFinal: doc == NULL\n", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006572 return(0);
6573 }
6574
Daniel Veillardcb3549e2011-11-11 11:25:07 +08006575 /* trick to get correct line id report */
6576 save = ctxt->finishDtd;
6577 ctxt->finishDtd = 0;
6578
Owen Taylor3473f882001-02-23 17:55:21 +00006579 /*
6580 * Check all the NOTATION/NOTATIONS attributes
6581 */
6582 /*
6583 * Check all the ENTITY/ENTITIES attributes definition for validity
6584 */
6585 /*
6586 * Check all the IDREF/IDREFS attributes definition for validity
6587 */
6588 table = (xmlRefTablePtr) doc->refs;
6589 ctxt->doc = doc;
6590 ctxt->valid = 1;
6591 xmlHashScan(table, (xmlHashScanner) xmlValidateCheckRefCallback, ctxt);
Daniel Veillardcb3549e2011-11-11 11:25:07 +08006592
6593 ctxt->finishDtd = save;
Owen Taylor3473f882001-02-23 17:55:21 +00006594 return(ctxt->valid);
6595}
6596
6597/**
6598 * xmlValidateDtd:
6599 * @ctxt: the validation context
6600 * @doc: a document instance
6601 * @dtd: a dtd instance
6602 *
6603 * Try to validate the document against the dtd instance
6604 *
William M. Brack367df6e2004-10-23 18:14:36 +00006605 * Basically it does check all the definitions in the DtD.
6606 * Note the the internal subset (if present) is de-coupled
6607 * (i.e. not used), which could give problems if ID or IDREF
6608 * is present.
Owen Taylor3473f882001-02-23 17:55:21 +00006609 *
6610 * returns 1 if valid or 0 otherwise
6611 */
6612
6613int
6614xmlValidateDtd(xmlValidCtxtPtr ctxt, xmlDocPtr doc, xmlDtdPtr dtd) {
6615 int ret;
William M. Brack367df6e2004-10-23 18:14:36 +00006616 xmlDtdPtr oldExt, oldInt;
Owen Taylor3473f882001-02-23 17:55:21 +00006617 xmlNodePtr root;
6618
6619 if (dtd == NULL) return(0);
6620 if (doc == NULL) return(0);
6621 oldExt = doc->extSubset;
William M. Brack367df6e2004-10-23 18:14:36 +00006622 oldInt = doc->intSubset;
Owen Taylor3473f882001-02-23 17:55:21 +00006623 doc->extSubset = dtd;
William M. Brack367df6e2004-10-23 18:14:36 +00006624 doc->intSubset = NULL;
Owen Taylor3473f882001-02-23 17:55:21 +00006625 ret = xmlValidateRoot(ctxt, doc);
6626 if (ret == 0) {
6627 doc->extSubset = oldExt;
William M. Brack367df6e2004-10-23 18:14:36 +00006628 doc->intSubset = oldInt;
Owen Taylor3473f882001-02-23 17:55:21 +00006629 return(ret);
6630 }
6631 if (doc->ids != NULL) {
6632 xmlFreeIDTable(doc->ids);
6633 doc->ids = NULL;
6634 }
6635 if (doc->refs != NULL) {
6636 xmlFreeRefTable(doc->refs);
6637 doc->refs = NULL;
6638 }
6639 root = xmlDocGetRootElement(doc);
6640 ret = xmlValidateElement(ctxt, doc, root);
6641 ret &= xmlValidateDocumentFinal(ctxt, doc);
6642 doc->extSubset = oldExt;
William M. Brack367df6e2004-10-23 18:14:36 +00006643 doc->intSubset = oldInt;
Owen Taylor3473f882001-02-23 17:55:21 +00006644 return(ret);
6645}
6646
Daniel Veillard56a4cb82001-03-24 17:00:36 +00006647static void
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006648xmlValidateNotationCallback(xmlEntityPtr cur, xmlValidCtxtPtr ctxt,
6649 const xmlChar *name ATTRIBUTE_UNUSED) {
6650 if (cur == NULL)
6651 return;
6652 if (cur->etype == XML_EXTERNAL_GENERAL_UNPARSED_ENTITY) {
6653 xmlChar *notation = cur->content;
6654
Daniel Veillard878eab02002-02-19 13:46:09 +00006655 if (notation != NULL) {
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006656 int ret;
6657
6658 ret = xmlValidateNotationUse(ctxt, cur->doc, notation);
6659 if (ret != 1) {
Daniel Veillard878eab02002-02-19 13:46:09 +00006660 ctxt->valid = 0;
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006661 }
6662 }
6663 }
6664}
6665
6666static void
Owen Taylor3473f882001-02-23 17:55:21 +00006667xmlValidateAttributeCallback(xmlAttributePtr cur, xmlValidCtxtPtr ctxt,
Daniel Veillardc86a4fa2001-03-26 16:28:29 +00006668 const xmlChar *name ATTRIBUTE_UNUSED) {
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006669 int ret;
Daniel Veillard878eab02002-02-19 13:46:09 +00006670 xmlDocPtr doc;
Daniel Veillarda8ff65d2003-11-03 16:20:10 +00006671 xmlElementPtr elem = NULL;
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006672
Owen Taylor3473f882001-02-23 17:55:21 +00006673 if (cur == NULL)
6674 return;
6675 switch (cur->atype) {
6676 case XML_ATTRIBUTE_CDATA:
6677 case XML_ATTRIBUTE_ID:
6678 case XML_ATTRIBUTE_IDREF :
6679 case XML_ATTRIBUTE_IDREFS:
6680 case XML_ATTRIBUTE_NMTOKEN:
6681 case XML_ATTRIBUTE_NMTOKENS:
6682 case XML_ATTRIBUTE_ENUMERATION:
6683 break;
6684 case XML_ATTRIBUTE_ENTITY:
6685 case XML_ATTRIBUTE_ENTITIES:
6686 case XML_ATTRIBUTE_NOTATION:
6687 if (cur->defaultValue != NULL) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006688
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006689 ret = xmlValidateAttributeValue2(ctxt, ctxt->doc, cur->name,
6690 cur->atype, cur->defaultValue);
6691 if ((ret == 0) && (ctxt->valid == 1))
6692 ctxt->valid = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00006693 }
6694 if (cur->tree != NULL) {
6695 xmlEnumerationPtr tree = cur->tree;
6696 while (tree != NULL) {
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006697 ret = xmlValidateAttributeValue2(ctxt, ctxt->doc,
Owen Taylor3473f882001-02-23 17:55:21 +00006698 cur->name, cur->atype, tree->name);
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006699 if ((ret == 0) && (ctxt->valid == 1))
6700 ctxt->valid = 0;
Owen Taylor3473f882001-02-23 17:55:21 +00006701 tree = tree->next;
6702 }
6703 }
6704 }
Daniel Veillard878eab02002-02-19 13:46:09 +00006705 if (cur->atype == XML_ATTRIBUTE_NOTATION) {
6706 doc = cur->doc;
Daniel Veillarda8ff65d2003-11-03 16:20:10 +00006707 if (cur->elem == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006708 xmlErrValid(ctxt, XML_ERR_INTERNAL_ERROR,
Daniel Veillard878eab02002-02-19 13:46:09 +00006709 "xmlValidateAttributeCallback(%s): internal error\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006710 (const char *) cur->name);
Daniel Veillard878eab02002-02-19 13:46:09 +00006711 return;
6712 }
Daniel Veillarda8ff65d2003-11-03 16:20:10 +00006713
6714 if (doc != NULL)
6715 elem = xmlGetDtdElementDesc(doc->intSubset, cur->elem);
6716 if ((elem == NULL) && (doc != NULL))
Daniel Veillard878eab02002-02-19 13:46:09 +00006717 elem = xmlGetDtdElementDesc(doc->extSubset, cur->elem);
Daniel Veillarda8ff65d2003-11-03 16:20:10 +00006718 if ((elem == NULL) && (cur->parent != NULL) &&
6719 (cur->parent->type == XML_DTD_NODE))
6720 elem = xmlGetDtdElementDesc((xmlDtdPtr) cur->parent, cur->elem);
Daniel Veillard878eab02002-02-19 13:46:09 +00006721 if (elem == NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006722 xmlErrValidNode(ctxt, NULL, XML_DTD_UNKNOWN_ELEM,
Daniel Veillard878eab02002-02-19 13:46:09 +00006723 "attribute %s: could not find decl for element %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006724 cur->name, cur->elem, NULL);
Daniel Veillard878eab02002-02-19 13:46:09 +00006725 return;
6726 }
6727 if (elem->etype == XML_ELEMENT_TYPE_EMPTY) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006728 xmlErrValidNode(ctxt, NULL, XML_DTD_EMPTY_NOTATION,
Daniel Veillard58e44c92002-08-02 22:19:49 +00006729 "NOTATION attribute %s declared for EMPTY element %s\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006730 cur->name, cur->elem, NULL);
Daniel Veillard878eab02002-02-19 13:46:09 +00006731 ctxt->valid = 0;
6732 }
6733 }
Owen Taylor3473f882001-02-23 17:55:21 +00006734}
6735
6736/**
6737 * xmlValidateDtdFinal:
6738 * @ctxt: the validation context
6739 * @doc: a document instance
6740 *
6741 * Does the final step for the dtds validation once all the
6742 * subsets have been parsed
6743 *
6744 * basically it does the following checks described by the XML Rec
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006745 * - check that ENTITY and ENTITIES type attributes default or
Owen Taylor3473f882001-02-23 17:55:21 +00006746 * possible values matches one of the defined entities.
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006747 * - check that NOTATION type attributes default or
Owen Taylor3473f882001-02-23 17:55:21 +00006748 * possible values matches one of the defined notations.
6749 *
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006750 * returns 1 if valid or 0 if invalid and -1 if not well-formed
Owen Taylor3473f882001-02-23 17:55:21 +00006751 */
6752
6753int
6754xmlValidateDtdFinal(xmlValidCtxtPtr ctxt, xmlDocPtr doc) {
Owen Taylor3473f882001-02-23 17:55:21 +00006755 xmlDtdPtr dtd;
6756 xmlAttributeTablePtr table;
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006757 xmlEntitiesTablePtr entities;
Owen Taylor3473f882001-02-23 17:55:21 +00006758
Daniel Veillard2cba4152008-08-27 11:45:41 +00006759 if ((doc == NULL) || (ctxt == NULL)) return(0);
Owen Taylor3473f882001-02-23 17:55:21 +00006760 if ((doc->intSubset == NULL) && (doc->extSubset == NULL))
6761 return(0);
6762 ctxt->doc = doc;
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006763 ctxt->valid = 1;
Owen Taylor3473f882001-02-23 17:55:21 +00006764 dtd = doc->intSubset;
6765 if ((dtd != NULL) && (dtd->attributes != NULL)) {
6766 table = (xmlAttributeTablePtr) dtd->attributes;
6767 xmlHashScan(table, (xmlHashScanner) xmlValidateAttributeCallback, ctxt);
Daniel Veillard878eab02002-02-19 13:46:09 +00006768 }
6769 if ((dtd != NULL) && (dtd->entities != NULL)) {
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006770 entities = (xmlEntitiesTablePtr) dtd->entities;
6771 xmlHashScan(entities, (xmlHashScanner) xmlValidateNotationCallback,
6772 ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00006773 }
6774 dtd = doc->extSubset;
6775 if ((dtd != NULL) && (dtd->attributes != NULL)) {
6776 table = (xmlAttributeTablePtr) dtd->attributes;
6777 xmlHashScan(table, (xmlHashScanner) xmlValidateAttributeCallback, ctxt);
Daniel Veillard878eab02002-02-19 13:46:09 +00006778 }
6779 if ((dtd != NULL) && (dtd->entities != NULL)) {
Daniel Veillard8ab0f582002-02-18 18:31:38 +00006780 entities = (xmlEntitiesTablePtr) dtd->entities;
6781 xmlHashScan(entities, (xmlHashScanner) xmlValidateNotationCallback,
6782 ctxt);
Owen Taylor3473f882001-02-23 17:55:21 +00006783 }
6784 return(ctxt->valid);
6785}
6786
6787/**
6788 * xmlValidateDocument:
6789 * @ctxt: the validation context
6790 * @doc: a document instance
6791 *
6792 * Try to validate the document instance
6793 *
6794 * basically it does the all the checks described by the XML Rec
6795 * i.e. validates the internal and external subset (if present)
6796 * and validate the document tree.
6797 *
6798 * returns 1 if valid or 0 otherwise
6799 */
6800
6801int
6802xmlValidateDocument(xmlValidCtxtPtr ctxt, xmlDocPtr doc) {
6803 int ret;
6804 xmlNodePtr root;
6805
Daniel Veillardc0be74b2004-11-03 19:16:55 +00006806 if (doc == NULL)
6807 return(0);
Daniel Veillard2fd85422002-10-16 14:32:41 +00006808 if ((doc->intSubset == NULL) && (doc->extSubset == NULL)) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006809 xmlErrValid(ctxt, XML_DTD_NO_DTD,
6810 "no DTD found!\n", NULL);
Owen Taylor3473f882001-02-23 17:55:21 +00006811 return(0);
Daniel Veillard2fd85422002-10-16 14:32:41 +00006812 }
Owen Taylor3473f882001-02-23 17:55:21 +00006813 if ((doc->intSubset != NULL) && ((doc->intSubset->SystemID != NULL) ||
6814 (doc->intSubset->ExternalID != NULL)) && (doc->extSubset == NULL)) {
William M. Brack8c22f9f2004-08-06 16:23:27 +00006815 xmlChar *sysID;
6816 if (doc->intSubset->SystemID != NULL) {
William M. Brackbebe7302004-08-05 06:46:47 +00006817 sysID = xmlBuildURI(doc->intSubset->SystemID,
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006818 doc->URL);
William M. Brack8c22f9f2004-08-06 16:23:27 +00006819 if (sysID == NULL) {
6820 xmlErrValid(ctxt, XML_DTD_LOAD_ERROR,
6821 "Could not build URI for external subset \"%s\"\n",
6822 (const char *) doc->intSubset->SystemID);
6823 return 0;
6824 }
6825 } else
William M. Brackbebe7302004-08-05 06:46:47 +00006826 sysID = NULL;
William M. Brack8c22f9f2004-08-06 16:23:27 +00006827 doc->extSubset = xmlParseDTD(doc->intSubset->ExternalID,
William M. Brackbebe7302004-08-05 06:46:47 +00006828 (const xmlChar *)sysID);
William M. Brackbebe7302004-08-05 06:46:47 +00006829 if (sysID != NULL)
6830 xmlFree(sysID);
Owen Taylor3473f882001-02-23 17:55:21 +00006831 if (doc->extSubset == NULL) {
6832 if (doc->intSubset->SystemID != NULL) {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006833 xmlErrValid(ctxt, XML_DTD_LOAD_ERROR,
Owen Taylor3473f882001-02-23 17:55:21 +00006834 "Could not load the external subset \"%s\"\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006835 (const char *) doc->intSubset->SystemID);
Owen Taylor3473f882001-02-23 17:55:21 +00006836 } else {
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006837 xmlErrValid(ctxt, XML_DTD_LOAD_ERROR,
Owen Taylor3473f882001-02-23 17:55:21 +00006838 "Could not load the external subset \"%s\"\n",
Daniel Veillardbb5abab2003-10-03 22:21:51 +00006839 (const char *) doc->intSubset->ExternalID);
Owen Taylor3473f882001-02-23 17:55:21 +00006840 }
6841 return(0);
6842 }
6843 }
6844
6845 if (doc->ids != NULL) {
6846 xmlFreeIDTable(doc->ids);
6847 doc->ids = NULL;
6848 }
6849 if (doc->refs != NULL) {
6850 xmlFreeRefTable(doc->refs);
6851 doc->refs = NULL;
6852 }
6853 ret = xmlValidateDtdFinal(ctxt, doc);
6854 if (!xmlValidateRoot(ctxt, doc)) return(0);
6855
6856 root = xmlDocGetRootElement(doc);
6857 ret &= xmlValidateElement(ctxt, doc, root);
6858 ret &= xmlValidateDocumentFinal(ctxt, doc);
6859 return(ret);
6860}
6861
Owen Taylor3473f882001-02-23 17:55:21 +00006862/************************************************************************
6863 * *
6864 * Routines for dynamic validation editing *
6865 * *
6866 ************************************************************************/
6867
6868/**
6869 * xmlValidGetPotentialChildren:
6870 * @ctree: an element content tree
Daniel Veillard7802ba52005-10-27 11:56:20 +00006871 * @names: an array to store the list of child names
Owen Taylor3473f882001-02-23 17:55:21 +00006872 * @len: a pointer to the number of element in the list
6873 * @max: the size of the array
6874 *
6875 * Build/extend a list of potential children allowed by the content tree
6876 *
6877 * returns the number of element in the list, or -1 in case of error.
6878 */
6879
6880int
Daniel Veillard7802ba52005-10-27 11:56:20 +00006881xmlValidGetPotentialChildren(xmlElementContent *ctree,
6882 const xmlChar **names,
Owen Taylor3473f882001-02-23 17:55:21 +00006883 int *len, int max) {
6884 int i;
6885
Daniel Veillard7802ba52005-10-27 11:56:20 +00006886 if ((ctree == NULL) || (names == NULL) || (len == NULL))
Owen Taylor3473f882001-02-23 17:55:21 +00006887 return(-1);
6888 if (*len >= max) return(*len);
6889
6890 switch (ctree->type) {
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006891 case XML_ELEMENT_CONTENT_PCDATA:
Owen Taylor3473f882001-02-23 17:55:21 +00006892 for (i = 0; i < *len;i++)
Daniel Veillard7802ba52005-10-27 11:56:20 +00006893 if (xmlStrEqual(BAD_CAST "#PCDATA", names[i])) return(*len);
6894 names[(*len)++] = BAD_CAST "#PCDATA";
Owen Taylor3473f882001-02-23 17:55:21 +00006895 break;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006896 case XML_ELEMENT_CONTENT_ELEMENT:
Owen Taylor3473f882001-02-23 17:55:21 +00006897 for (i = 0; i < *len;i++)
Daniel Veillard7802ba52005-10-27 11:56:20 +00006898 if (xmlStrEqual(ctree->name, names[i])) return(*len);
6899 names[(*len)++] = ctree->name;
Owen Taylor3473f882001-02-23 17:55:21 +00006900 break;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006901 case XML_ELEMENT_CONTENT_SEQ:
Daniel Veillard7802ba52005-10-27 11:56:20 +00006902 xmlValidGetPotentialChildren(ctree->c1, names, len, max);
6903 xmlValidGetPotentialChildren(ctree->c2, names, len, max);
Owen Taylor3473f882001-02-23 17:55:21 +00006904 break;
6905 case XML_ELEMENT_CONTENT_OR:
Daniel Veillard7802ba52005-10-27 11:56:20 +00006906 xmlValidGetPotentialChildren(ctree->c1, names, len, max);
6907 xmlValidGetPotentialChildren(ctree->c2, names, len, max);
Owen Taylor3473f882001-02-23 17:55:21 +00006908 break;
6909 }
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006910
Owen Taylor3473f882001-02-23 17:55:21 +00006911 return(*len);
6912}
6913
William M. Brack9333cc22004-06-24 08:33:40 +00006914/*
6915 * Dummy function to suppress messages while we try out valid elements
6916 */
Daniel Veillardffa3c742005-07-21 13:24:09 +00006917static void XMLCDECL xmlNoValidityErr(void *ctx ATTRIBUTE_UNUSED,
William M. Brack9333cc22004-06-24 08:33:40 +00006918 const char *msg ATTRIBUTE_UNUSED, ...) {
6919 return;
6920}
6921
Owen Taylor3473f882001-02-23 17:55:21 +00006922/**
6923 * xmlValidGetValidElements:
6924 * @prev: an element to insert after
6925 * @next: an element to insert next
Daniel Veillardaecc0dc2004-05-08 02:32:07 +00006926 * @names: an array to store the list of child names
Owen Taylor3473f882001-02-23 17:55:21 +00006927 * @max: the size of the array
6928 *
6929 * This function returns the list of authorized children to insert
6930 * within an existing tree while respecting the validity constraints
6931 * forced by the Dtd. The insertion point is defined using @prev and
6932 * @next in the following ways:
6933 * to insert before 'node': xmlValidGetValidElements(node->prev, node, ...
6934 * to insert next 'node': xmlValidGetValidElements(node, node->next, ...
6935 * to replace 'node': xmlValidGetValidElements(node->prev, node->next, ...
6936 * to prepend a child to 'node': xmlValidGetValidElements(NULL, node->childs,
6937 * to append a child to 'node': xmlValidGetValidElements(node->last, NULL, ...
6938 *
6939 * pointers to the element names are inserted at the beginning of the array
6940 * and do not need to be freed.
6941 *
6942 * returns the number of element in the list, or -1 in case of error. If
6943 * the function returns the value @max the caller is invited to grow the
6944 * receiving array and retry.
6945 */
6946
6947int
Daniel Veillardaecc0dc2004-05-08 02:32:07 +00006948xmlValidGetValidElements(xmlNode *prev, xmlNode *next, const xmlChar **names,
Owen Taylor3473f882001-02-23 17:55:21 +00006949 int max) {
Daniel Veillardf69bb4b2001-05-19 13:24:56 +00006950 xmlValidCtxt vctxt;
Owen Taylor3473f882001-02-23 17:55:21 +00006951 int nb_valid_elements = 0;
Daniel Veillarde18bce02014-02-06 10:47:20 +01006952 const xmlChar *elements[256]={0};
Owen Taylor3473f882001-02-23 17:55:21 +00006953 int nb_elements = 0, i;
Daniel Veillard5e5c2d02002-02-09 18:03:01 +00006954 const xmlChar *name;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006955
Owen Taylor3473f882001-02-23 17:55:21 +00006956 xmlNode *ref_node;
6957 xmlNode *parent;
6958 xmlNode *test_node;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006959
Owen Taylor3473f882001-02-23 17:55:21 +00006960 xmlNode *prev_next;
6961 xmlNode *next_prev;
6962 xmlNode *parent_childs;
6963 xmlNode *parent_last;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006964
Owen Taylor3473f882001-02-23 17:55:21 +00006965 xmlElement *element_desc;
6966
6967 if (prev == NULL && next == NULL)
6968 return(-1);
6969
Daniel Veillardaecc0dc2004-05-08 02:32:07 +00006970 if (names == NULL) return(-1);
Owen Taylor3473f882001-02-23 17:55:21 +00006971 if (max <= 0) return(-1);
6972
William M. Brack9333cc22004-06-24 08:33:40 +00006973 memset(&vctxt, 0, sizeof (xmlValidCtxt));
6974 vctxt.error = xmlNoValidityErr; /* this suppresses err/warn output */
6975
Owen Taylor3473f882001-02-23 17:55:21 +00006976 nb_valid_elements = 0;
6977 ref_node = prev ? prev : next;
6978 parent = ref_node->parent;
6979
6980 /*
6981 * Retrieves the parent element declaration
6982 */
6983 element_desc = xmlGetDtdElementDesc(parent->doc->intSubset,
6984 parent->name);
6985 if ((element_desc == NULL) && (parent->doc->extSubset != NULL))
6986 element_desc = xmlGetDtdElementDesc(parent->doc->extSubset,
6987 parent->name);
6988 if (element_desc == NULL) return(-1);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08006989
Owen Taylor3473f882001-02-23 17:55:21 +00006990 /*
6991 * Do a backup of the current tree structure
6992 */
6993 prev_next = prev ? prev->next : NULL;
6994 next_prev = next ? next->prev : NULL;
6995 parent_childs = parent->children;
6996 parent_last = parent->last;
6997
6998 /*
6999 * Creates a dummy node and insert it into the tree
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007000 */
Daniel Veillard95ddcd32004-10-26 21:53:55 +00007001 test_node = xmlNewDocNode (ref_node->doc, NULL, BAD_CAST "<!dummy?>", NULL);
Gaurav Gupta658b86c2014-08-07 11:19:03 +08007002 if (test_node == NULL)
7003 return(-1);
7004
Owen Taylor3473f882001-02-23 17:55:21 +00007005 test_node->parent = parent;
7006 test_node->prev = prev;
7007 test_node->next = next;
Daniel Veillardd455d792002-02-08 13:37:46 +00007008 name = test_node->name;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007009
Owen Taylor3473f882001-02-23 17:55:21 +00007010 if (prev) prev->next = test_node;
7011 else parent->children = test_node;
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007012
Owen Taylor3473f882001-02-23 17:55:21 +00007013 if (next) next->prev = test_node;
7014 else parent->last = test_node;
7015
7016 /*
7017 * Insert each potential child node and check if the parent is
7018 * still valid
7019 */
7020 nb_elements = xmlValidGetPotentialChildren(element_desc->content,
7021 elements, &nb_elements, 256);
Daniel Veillardf8e3db02012-09-11 13:26:36 +08007022
Owen Taylor3473f882001-02-23 17:55:21 +00007023 for (i = 0;i < nb_elements;i++) {
7024 test_node->name = elements[i];
Daniel Veillardf69bb4b2001-05-19 13:24:56 +00007025 if (xmlValidateOneElement(&vctxt, parent->doc, parent)) {
Owen Taylor3473f882001-02-23 17:55:21 +00007026 int j;
7027
7028 for (j = 0; j < nb_valid_elements;j++)
Daniel Veillardaecc0dc2004-05-08 02:32:07 +00007029 if (xmlStrEqual(elements[i], names[j])) break;
7030 names[nb_valid_elements++] = elements[i];
Owen Taylor3473f882001-02-23 17:55:21 +00007031 if (nb_valid_elements >= max) break;
7032 }
7033 }
7034
7035 /*
7036 * Restore the tree structure
7037 */
7038 if (prev) prev->next = prev_next;
7039 if (next) next->prev = next_prev;
7040 parent->children = parent_childs;
7041 parent->last = parent_last;
Daniel Veillardd455d792002-02-08 13:37:46 +00007042
7043 /*
7044 * Free up the dummy node
7045 */
7046 test_node->name = name;
7047 xmlFreeNode(test_node);
7048
Owen Taylor3473f882001-02-23 17:55:21 +00007049 return(nb_valid_elements);
7050}
Daniel Veillard4432df22003-09-28 18:58:27 +00007051#endif /* LIBXML_VALID_ENABLED */
7052
Daniel Veillard5d4644e2005-04-01 13:11:58 +00007053#define bottom_valid
7054#include "elfgcchack.h"