Coverage Report

Created: 2023-06-07 06:05

/src/libxml2-2.10.3/HTMLparser.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * HTMLparser.c : an HTML 4.0 non-verifying parser
3
 *
4
 * See Copyright for the status of this software.
5
 *
6
 * daniel@veillard.com
7
 */
8
9
#define IN_LIBXML
10
#include "libxml.h"
11
#ifdef LIBXML_HTML_ENABLED
12
13
#include <string.h>
14
#include <ctype.h>
15
#include <stdlib.h>
16
17
#include <libxml/xmlmemory.h>
18
#include <libxml/tree.h>
19
#include <libxml/parser.h>
20
#include <libxml/parserInternals.h>
21
#include <libxml/xmlerror.h>
22
#include <libxml/HTMLparser.h>
23
#include <libxml/HTMLtree.h>
24
#include <libxml/entities.h>
25
#include <libxml/encoding.h>
26
#include <libxml/valid.h>
27
#include <libxml/xmlIO.h>
28
#include <libxml/globals.h>
29
#include <libxml/uri.h>
30
31
#include "buf.h"
32
#include "enc.h"
33
34
#define HTML_MAX_NAMELEN 1000
35
0
#define HTML_PARSER_BIG_BUFFER_SIZE 1000
36
0
#define HTML_PARSER_BUFFER_SIZE 100
37
38
/* #define DEBUG */
39
/* #define DEBUG_PUSH */
40
41
static int htmlOmittedDefaultValue = 1;
42
43
xmlChar * htmlDecodeEntities(htmlParserCtxtPtr ctxt, int len,
44
           xmlChar end, xmlChar  end2, xmlChar end3);
45
static void htmlParseComment(htmlParserCtxtPtr ctxt);
46
47
/************************************************************************
48
 *                  *
49
 *    Some factorized error routines        *
50
 *                  *
51
 ************************************************************************/
52
53
/**
54
 * htmlErrMemory:
55
 * @ctxt:  an HTML parser context
56
 * @extra:  extra information
57
 *
58
 * Handle a redefinition of attribute error
59
 */
60
static void
61
htmlErrMemory(xmlParserCtxtPtr ctxt, const char *extra)
62
0
{
63
0
    if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
64
0
        (ctxt->instate == XML_PARSER_EOF))
65
0
  return;
66
0
    if (ctxt != NULL) {
67
0
        ctxt->errNo = XML_ERR_NO_MEMORY;
68
0
        ctxt->instate = XML_PARSER_EOF;
69
0
        ctxt->disableSAX = 1;
70
0
    }
71
0
    if (extra)
72
0
        __xmlRaiseError(NULL, NULL, NULL, ctxt, NULL, XML_FROM_PARSER,
73
0
                        XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra,
74
0
                        NULL, NULL, 0, 0,
75
0
                        "Memory allocation failed : %s\n", extra);
76
0
    else
77
0
        __xmlRaiseError(NULL, NULL, NULL, ctxt, NULL, XML_FROM_PARSER,
78
0
                        XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, NULL,
79
0
                        NULL, NULL, 0, 0, "Memory allocation failed\n");
80
0
}
81
82
/**
83
 * htmlParseErr:
84
 * @ctxt:  an HTML parser context
85
 * @error:  the error number
86
 * @msg:  the error message
87
 * @str1:  string infor
88
 * @str2:  string infor
89
 *
90
 * Handle a fatal parser error, i.e. violating Well-Formedness constraints
91
 */
92
static void LIBXML_ATTR_FORMAT(3,0)
93
htmlParseErr(xmlParserCtxtPtr ctxt, xmlParserErrors error,
94
             const char *msg, const xmlChar *str1, const xmlChar *str2)
95
0
{
96
0
    if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
97
0
        (ctxt->instate == XML_PARSER_EOF))
98
0
  return;
99
0
    if (ctxt != NULL)
100
0
  ctxt->errNo = error;
101
0
    __xmlRaiseError(NULL, NULL, NULL, ctxt, NULL, XML_FROM_HTML, error,
102
0
                    XML_ERR_ERROR, NULL, 0,
103
0
        (const char *) str1, (const char *) str2,
104
0
        NULL, 0, 0,
105
0
        msg, str1, str2);
106
0
    if (ctxt != NULL)
107
0
  ctxt->wellFormed = 0;
108
0
}
109
110
/**
111
 * htmlParseErrInt:
112
 * @ctxt:  an HTML parser context
113
 * @error:  the error number
114
 * @msg:  the error message
115
 * @val:  integer info
116
 *
117
 * Handle a fatal parser error, i.e. violating Well-Formedness constraints
118
 */
119
static void LIBXML_ATTR_FORMAT(3,0)
120
htmlParseErrInt(xmlParserCtxtPtr ctxt, xmlParserErrors error,
121
             const char *msg, int val)
122
0
{
123
0
    if ((ctxt != NULL) && (ctxt->disableSAX != 0) &&
124
0
        (ctxt->instate == XML_PARSER_EOF))
125
0
  return;
126
0
    if (ctxt != NULL)
127
0
  ctxt->errNo = error;
128
0
    __xmlRaiseError(NULL, NULL, NULL, ctxt, NULL, XML_FROM_HTML, error,
129
0
                    XML_ERR_ERROR, NULL, 0, NULL, NULL,
130
0
        NULL, val, 0, msg, val);
131
0
    if (ctxt != NULL)
132
0
  ctxt->wellFormed = 0;
133
0
}
134
135
/************************************************************************
136
 *                  *
137
 *  Parser stacks related functions and macros    *
138
 *                  *
139
 ************************************************************************/
140
141
/**
142
 * htmlnamePush:
143
 * @ctxt:  an HTML parser context
144
 * @value:  the element name
145
 *
146
 * Pushes a new element name on top of the name stack
147
 *
148
 * Returns 0 in case of error, the index in the stack otherwise
149
 */
150
static int
151
htmlnamePush(htmlParserCtxtPtr ctxt, const xmlChar * value)
152
0
{
153
0
    if ((ctxt->html < 3) && (xmlStrEqual(value, BAD_CAST "head")))
154
0
        ctxt->html = 3;
155
0
    if ((ctxt->html < 10) && (xmlStrEqual(value, BAD_CAST "body")))
156
0
        ctxt->html = 10;
157
0
    if (ctxt->nameNr >= ctxt->nameMax) {
158
0
        ctxt->nameMax *= 2;
159
0
        ctxt->nameTab = (const xmlChar * *)
160
0
                         xmlRealloc((xmlChar * *)ctxt->nameTab,
161
0
                                    ctxt->nameMax *
162
0
                                    sizeof(ctxt->nameTab[0]));
163
0
        if (ctxt->nameTab == NULL) {
164
0
            htmlErrMemory(ctxt, NULL);
165
0
            return (0);
166
0
        }
167
0
    }
168
0
    ctxt->nameTab[ctxt->nameNr] = value;
169
0
    ctxt->name = value;
170
0
    return (ctxt->nameNr++);
171
0
}
172
/**
173
 * htmlnamePop:
174
 * @ctxt: an HTML parser context
175
 *
176
 * Pops the top element name from the name stack
177
 *
178
 * Returns the name just removed
179
 */
180
static const xmlChar *
181
htmlnamePop(htmlParserCtxtPtr ctxt)
182
0
{
183
0
    const xmlChar *ret;
184
185
0
    if (ctxt->nameNr <= 0)
186
0
        return (NULL);
187
0
    ctxt->nameNr--;
188
0
    if (ctxt->nameNr < 0)
189
0
        return (NULL);
190
0
    if (ctxt->nameNr > 0)
191
0
        ctxt->name = ctxt->nameTab[ctxt->nameNr - 1];
192
0
    else
193
0
        ctxt->name = NULL;
194
0
    ret = ctxt->nameTab[ctxt->nameNr];
195
0
    ctxt->nameTab[ctxt->nameNr] = NULL;
196
0
    return (ret);
197
0
}
198
199
/**
200
 * htmlNodeInfoPush:
201
 * @ctxt:  an HTML parser context
202
 * @value:  the node info
203
 *
204
 * Pushes a new element name on top of the node info stack
205
 *
206
 * Returns 0 in case of error, the index in the stack otherwise
207
 */
208
static int
209
htmlNodeInfoPush(htmlParserCtxtPtr ctxt, htmlParserNodeInfo *value)
210
0
{
211
0
    if (ctxt->nodeInfoNr >= ctxt->nodeInfoMax) {
212
0
        if (ctxt->nodeInfoMax == 0)
213
0
                ctxt->nodeInfoMax = 5;
214
0
        ctxt->nodeInfoMax *= 2;
215
0
        ctxt->nodeInfoTab = (htmlParserNodeInfo *)
216
0
                         xmlRealloc((htmlParserNodeInfo *)ctxt->nodeInfoTab,
217
0
                                    ctxt->nodeInfoMax *
218
0
                                    sizeof(ctxt->nodeInfoTab[0]));
219
0
        if (ctxt->nodeInfoTab == NULL) {
220
0
            htmlErrMemory(ctxt, NULL);
221
0
            return (0);
222
0
        }
223
0
    }
224
0
    ctxt->nodeInfoTab[ctxt->nodeInfoNr] = *value;
225
0
    ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr];
226
0
    return (ctxt->nodeInfoNr++);
227
0
}
228
229
/**
230
 * htmlNodeInfoPop:
231
 * @ctxt:  an HTML parser context
232
 *
233
 * Pops the top element name from the node info stack
234
 *
235
 * Returns 0 in case of error, the pointer to NodeInfo otherwise
236
 */
237
static htmlParserNodeInfo *
238
htmlNodeInfoPop(htmlParserCtxtPtr ctxt)
239
0
{
240
0
    if (ctxt->nodeInfoNr <= 0)
241
0
        return (NULL);
242
0
    ctxt->nodeInfoNr--;
243
0
    if (ctxt->nodeInfoNr < 0)
244
0
        return (NULL);
245
0
    if (ctxt->nodeInfoNr > 0)
246
0
        ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr - 1];
247
0
    else
248
0
        ctxt->nodeInfo = NULL;
249
0
    return &ctxt->nodeInfoTab[ctxt->nodeInfoNr];
250
0
}
251
252
/*
253
 * Macros for accessing the content. Those should be used only by the parser,
254
 * and not exported.
255
 *
256
 * Dirty macros, i.e. one need to make assumption on the context to use them
257
 *
258
 *   CUR_PTR return the current pointer to the xmlChar to be parsed.
259
 *   CUR     returns the current xmlChar value, i.e. a 8 bit value if compiled
260
 *           in ISO-Latin or UTF-8, and the current 16 bit value if compiled
261
 *           in UNICODE mode. This should be used internally by the parser
262
 *           only to compare to ASCII values otherwise it would break when
263
 *           running with UTF-8 encoding.
264
 *   NXT(n)  returns the n'th next xmlChar. Same as CUR is should be used only
265
 *           to compare on ASCII based substring.
266
 *   UPP(n)  returns the n'th next xmlChar converted to uppercase. Same as CUR
267
 *           it should be used only to compare on ASCII based substring.
268
 *   SKIP(n) Skip n xmlChar, and must also be used only to skip ASCII defined
269
 *           strings without newlines within the parser.
270
 *
271
 * Clean macros, not dependent of an ASCII context, expect UTF-8 encoding
272
 *
273
 *   CURRENT Returns the current char value, with the full decoding of
274
 *           UTF-8 if we are using this mode. It returns an int.
275
 *   NEXT    Skip to the next character, this does the proper decoding
276
 *           in UTF-8 mode. It also pop-up unfinished entities on the fly.
277
 *   NEXTL(l) Skip the current unicode character of l xmlChars long.
278
 *   COPY(to) copy one char to *to, increment CUR_PTR and to accordingly
279
 */
280
281
0
#define UPPER (toupper(*ctxt->input->cur))
282
283
0
#define SKIP(val) ctxt->input->cur += (val),ctxt->input->col+=(val)
284
285
0
#define NXT(val) ctxt->input->cur[(val)]
286
287
0
#define UPP(val) (toupper(ctxt->input->cur[(val)]))
288
289
0
#define CUR_PTR ctxt->input->cur
290
0
#define BASE_PTR ctxt->input->base
291
292
0
#define SHRINK if ((ctxt->input->cur - ctxt->input->base > 2 * INPUT_CHUNK) && \
293
0
       (ctxt->input->end - ctxt->input->cur < 2 * INPUT_CHUNK)) \
294
0
  xmlParserInputShrink(ctxt->input)
295
296
0
#define GROW if ((ctxt->progressive == 0) &&       \
297
0
     (ctxt->input->end - ctxt->input->cur < INPUT_CHUNK))  \
298
0
  xmlParserInputGrow(ctxt->input, INPUT_CHUNK)
299
300
#define CURRENT ((int) (*ctxt->input->cur))
301
302
0
#define SKIP_BLANKS htmlSkipBlankChars(ctxt)
303
304
/* Imported from XML */
305
306
/* #define CUR (ctxt->token ? ctxt->token : (int) (*ctxt->input->cur)) */
307
0
#define CUR ((int) (*ctxt->input->cur))
308
0
#define NEXT xmlNextChar(ctxt)
309
310
0
#define RAW (ctxt->token ? -1 : (*ctxt->input->cur))
311
312
313
0
#define NEXTL(l) do {             \
314
0
    if (*(ctxt->input->cur) == '\n') {         \
315
0
  ctxt->input->line++; ctxt->input->col = 1;      \
316
0
    } else ctxt->input->col++;           \
317
0
    ctxt->token = 0; ctxt->input->cur += l;       \
318
0
  } while (0)
319
320
/************
321
    \
322
    if (*ctxt->input->cur == '%') xmlParserHandlePEReference(ctxt); \
323
    if (*ctxt->input->cur == '&') xmlParserHandleReference(ctxt);
324
 ************/
325
326
0
#define CUR_CHAR(l) htmlCurrentChar(ctxt, &l)
327
#define CUR_SCHAR(s, l) xmlStringCurrentChar(ctxt, s, &l)
328
329
#define COPY_BUF(l,b,i,v)           \
330
0
    if (l == 1) b[i++] = (xmlChar) v;         \
331
0
    else i += xmlCopyChar(l,&b[i],v)
332
333
/**
334
 * htmlFindEncoding:
335
 * @the HTML parser context
336
 *
337
 * Ty to find and encoding in the current data available in the input
338
 * buffer this is needed to try to switch to the proper encoding when
339
 * one face a character error.
340
 * That's an heuristic, since it's operating outside of parsing it could
341
 * try to use a meta which had been commented out, that's the reason it
342
 * should only be used in case of error, not as a default.
343
 *
344
 * Returns an encoding string or NULL if not found, the string need to
345
 *   be freed
346
 */
347
static xmlChar *
348
0
htmlFindEncoding(xmlParserCtxtPtr ctxt) {
349
0
    const xmlChar *start, *cur, *end;
350
351
0
    if ((ctxt == NULL) || (ctxt->input == NULL) ||
352
0
        (ctxt->input->encoding != NULL) || (ctxt->input->buf == NULL) ||
353
0
        (ctxt->input->buf->encoder != NULL))
354
0
        return(NULL);
355
0
    if ((ctxt->input->cur == NULL) || (ctxt->input->end == NULL))
356
0
        return(NULL);
357
358
0
    start = ctxt->input->cur;
359
0
    end = ctxt->input->end;
360
    /* we also expect the input buffer to be zero terminated */
361
0
    if (*end != 0)
362
0
        return(NULL);
363
364
0
    cur = xmlStrcasestr(start, BAD_CAST "HTTP-EQUIV");
365
0
    if (cur == NULL)
366
0
        return(NULL);
367
0
    cur = xmlStrcasestr(cur, BAD_CAST  "CONTENT");
368
0
    if (cur == NULL)
369
0
        return(NULL);
370
0
    cur = xmlStrcasestr(cur, BAD_CAST  "CHARSET=");
371
0
    if (cur == NULL)
372
0
        return(NULL);
373
0
    cur += 8;
374
0
    start = cur;
375
0
    while (((*cur >= 'A') && (*cur <= 'Z')) ||
376
0
           ((*cur >= 'a') && (*cur <= 'z')) ||
377
0
           ((*cur >= '0') && (*cur <= '9')) ||
378
0
           (*cur == '-') || (*cur == '_') || (*cur == ':') || (*cur == '/'))
379
0
           cur++;
380
0
    if (cur == start)
381
0
        return(NULL);
382
0
    return(xmlStrndup(start, cur - start));
383
0
}
384
385
/**
386
 * htmlCurrentChar:
387
 * @ctxt:  the HTML parser context
388
 * @len:  pointer to the length of the char read
389
 *
390
 * The current char value, if using UTF-8 this may actually span multiple
391
 * bytes in the input buffer. Implement the end of line normalization:
392
 * 2.11 End-of-Line Handling
393
 * If the encoding is unspecified, in the case we find an ISO-Latin-1
394
 * char, then the encoding converter is plugged in automatically.
395
 *
396
 * Returns the current char value and its length
397
 */
398
399
static int
400
0
htmlCurrentChar(xmlParserCtxtPtr ctxt, int *len) {
401
0
    const unsigned char *cur;
402
0
    unsigned char c;
403
0
    unsigned int val;
404
405
0
    if (ctxt->instate == XML_PARSER_EOF)
406
0
  return(0);
407
408
0
    if (ctxt->token != 0) {
409
0
  *len = 0;
410
0
  return(ctxt->token);
411
0
    }
412
0
    if (ctxt->charset != XML_CHAR_ENCODING_UTF8) {
413
0
        xmlChar * guess;
414
0
        xmlCharEncodingHandlerPtr handler;
415
416
        /*
417
         * Assume it's a fixed length encoding (1) with
418
         * a compatible encoding for the ASCII set, since
419
         * HTML constructs only use < 128 chars
420
         */
421
0
        if ((int) *ctxt->input->cur < 0x80) {
422
0
            *len = 1;
423
0
            if ((*ctxt->input->cur == 0) &&
424
0
                (ctxt->input->cur < ctxt->input->end)) {
425
0
                htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
426
0
                                "Char 0x%X out of allowed range\n", 0);
427
0
                return(' ');
428
0
            }
429
0
            return((int) *ctxt->input->cur);
430
0
        }
431
432
        /*
433
         * Humm this is bad, do an automatic flow conversion
434
         */
435
0
        guess = htmlFindEncoding(ctxt);
436
0
        if (guess == NULL) {
437
0
            xmlSwitchEncoding(ctxt, XML_CHAR_ENCODING_8859_1);
438
0
        } else {
439
0
            if (ctxt->input->encoding != NULL)
440
0
                xmlFree((xmlChar *) ctxt->input->encoding);
441
0
            ctxt->input->encoding = guess;
442
0
            handler = xmlFindCharEncodingHandler((const char *) guess);
443
0
            if (handler != NULL) {
444
                /*
445
                 * Don't use UTF-8 encoder which isn't required and
446
                 * can produce invalid UTF-8.
447
                 */
448
0
                if (!xmlStrEqual(BAD_CAST handler->name, BAD_CAST "UTF-8"))
449
0
                    xmlSwitchToEncoding(ctxt, handler);
450
0
            } else {
451
0
                htmlParseErr(ctxt, XML_ERR_INVALID_ENCODING,
452
0
                             "Unsupported encoding %s", guess, NULL);
453
0
            }
454
0
        }
455
0
        ctxt->charset = XML_CHAR_ENCODING_UTF8;
456
0
    }
457
458
    /*
459
     * We are supposed to handle UTF8, check it's valid
460
     * From rfc2044: encoding of the Unicode values on UTF-8:
461
     *
462
     * UCS-4 range (hex.)           UTF-8 octet sequence (binary)
463
     * 0000 0000-0000 007F   0xxxxxxx
464
     * 0000 0080-0000 07FF   110xxxxx 10xxxxxx
465
     * 0000 0800-0000 FFFF   1110xxxx 10xxxxxx 10xxxxxx
466
     *
467
     * Check for the 0x110000 limit too
468
     */
469
0
    cur = ctxt->input->cur;
470
0
    c = *cur;
471
0
    if (c & 0x80) {
472
0
        if ((c & 0x40) == 0)
473
0
            goto encoding_error;
474
0
        if (cur[1] == 0) {
475
0
            xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
476
0
            cur = ctxt->input->cur;
477
0
        }
478
0
        if ((cur[1] & 0xc0) != 0x80)
479
0
            goto encoding_error;
480
0
        if ((c & 0xe0) == 0xe0) {
481
482
0
            if (cur[2] == 0) {
483
0
                xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
484
0
                cur = ctxt->input->cur;
485
0
            }
486
0
            if ((cur[2] & 0xc0) != 0x80)
487
0
                goto encoding_error;
488
0
            if ((c & 0xf0) == 0xf0) {
489
0
                if (cur[3] == 0) {
490
0
                    xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
491
0
                    cur = ctxt->input->cur;
492
0
                }
493
0
                if (((c & 0xf8) != 0xf0) ||
494
0
                    ((cur[3] & 0xc0) != 0x80))
495
0
                    goto encoding_error;
496
                /* 4-byte code */
497
0
                *len = 4;
498
0
                val = (cur[0] & 0x7) << 18;
499
0
                val |= (cur[1] & 0x3f) << 12;
500
0
                val |= (cur[2] & 0x3f) << 6;
501
0
                val |= cur[3] & 0x3f;
502
0
                if (val < 0x10000)
503
0
                    goto encoding_error;
504
0
            } else {
505
              /* 3-byte code */
506
0
                *len = 3;
507
0
                val = (cur[0] & 0xf) << 12;
508
0
                val |= (cur[1] & 0x3f) << 6;
509
0
                val |= cur[2] & 0x3f;
510
0
                if (val < 0x800)
511
0
                    goto encoding_error;
512
0
            }
513
0
        } else {
514
          /* 2-byte code */
515
0
            *len = 2;
516
0
            val = (cur[0] & 0x1f) << 6;
517
0
            val |= cur[1] & 0x3f;
518
0
            if (val < 0x80)
519
0
                goto encoding_error;
520
0
        }
521
0
        if (!IS_CHAR(val)) {
522
0
            htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
523
0
                            "Char 0x%X out of allowed range\n", val);
524
0
        }
525
0
        return(val);
526
0
    } else {
527
0
        if ((*ctxt->input->cur == 0) &&
528
0
            (ctxt->input->cur < ctxt->input->end)) {
529
0
            htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
530
0
                            "Char 0x%X out of allowed range\n", 0);
531
0
            *len = 1;
532
0
            return(' ');
533
0
        }
534
        /* 1-byte code */
535
0
        *len = 1;
536
0
        return((int) *ctxt->input->cur);
537
0
    }
538
539
0
encoding_error:
540
    /*
541
     * If we detect an UTF8 error that probably mean that the
542
     * input encoding didn't get properly advertised in the
543
     * declaration header. Report the error and switch the encoding
544
     * to ISO-Latin-1 (if you don't like this policy, just declare the
545
     * encoding !)
546
     */
547
0
    {
548
0
        char buffer[150];
549
550
0
  if (ctxt->input->end - ctxt->input->cur >= 4) {
551
0
      snprintf(buffer, 149, "Bytes: 0x%02X 0x%02X 0x%02X 0x%02X\n",
552
0
          ctxt->input->cur[0], ctxt->input->cur[1],
553
0
          ctxt->input->cur[2], ctxt->input->cur[3]);
554
0
  } else {
555
0
      snprintf(buffer, 149, "Bytes: 0x%02X\n", ctxt->input->cur[0]);
556
0
  }
557
0
  htmlParseErr(ctxt, XML_ERR_INVALID_ENCODING,
558
0
         "Input is not proper UTF-8, indicate encoding !\n",
559
0
         BAD_CAST buffer, NULL);
560
0
    }
561
562
    /*
563
     * Don't switch encodings twice. Note that if there's an encoder, we
564
     * shouldn't receive invalid UTF-8 anyway.
565
     *
566
     * Note that if ctxt->input->buf == NULL, switching encodings is
567
     * impossible, see Gitlab issue #34.
568
     */
569
0
    if ((ctxt->input->buf != NULL) &&
570
0
        (ctxt->input->buf->encoder == NULL))
571
0
        xmlSwitchEncoding(ctxt, XML_CHAR_ENCODING_8859_1);
572
0
    *len = 1;
573
0
    return((int) *ctxt->input->cur);
574
0
}
575
576
/**
577
 * htmlSkipBlankChars:
578
 * @ctxt:  the HTML parser context
579
 *
580
 * skip all blanks character found at that point in the input streams.
581
 *
582
 * Returns the number of space chars skipped
583
 */
584
585
static int
586
0
htmlSkipBlankChars(xmlParserCtxtPtr ctxt) {
587
0
    int res = 0;
588
589
0
    while (IS_BLANK_CH(*(ctxt->input->cur))) {
590
0
  if ((*ctxt->input->cur == 0) &&
591
0
      (xmlParserInputGrow(ctxt->input, INPUT_CHUNK) <= 0)) {
592
0
    xmlPopInput(ctxt);
593
0
  } else {
594
0
      if (*(ctxt->input->cur) == '\n') {
595
0
    ctxt->input->line++; ctxt->input->col = 1;
596
0
      } else ctxt->input->col++;
597
0
      ctxt->input->cur++;
598
0
      if (*ctxt->input->cur == 0)
599
0
    xmlParserInputGrow(ctxt->input, INPUT_CHUNK);
600
0
  }
601
0
  if (res < INT_MAX)
602
0
      res++;
603
0
    }
604
0
    return(res);
605
0
}
606
607
608
609
/************************************************************************
610
 *                  *
611
 *  The list of HTML elements and their properties    *
612
 *                  *
613
 ************************************************************************/
614
615
/*
616
 *  Start Tag: 1 means the start tag can be omitted
617
 *  End Tag:   1 means the end tag can be omitted
618
 *             2 means it's forbidden (empty elements)
619
 *             3 means the tag is stylistic and should be closed easily
620
 *  Depr:      this element is deprecated
621
 *  DTD:       1 means that this element is valid only in the Loose DTD
622
 *             2 means that this element is valid only in the Frameset DTD
623
 *
624
 * Name,Start Tag,End Tag,Save End,Empty,Deprecated,DTD,inline,Description
625
  , subElements , impliedsubelt , Attributes, userdata
626
 */
627
628
/* Definitions and a couple of vars for HTML Elements */
629
630
#define FONTSTYLE "tt", "i", "b", "u", "s", "strike", "big", "small"
631
#define NB_FONTSTYLE 8
632
#define PHRASE "em", "strong", "dfn", "code", "samp", "kbd", "var", "cite", "abbr", "acronym"
633
#define NB_PHRASE 10
634
#define SPECIAL "a", "img", "applet", "embed", "object", "font", "basefont", "br", "script", "map", "q", "sub", "sup", "span", "bdo", "iframe"
635
#define NB_SPECIAL 16
636
#define INLINE FONTSTYLE, PHRASE, SPECIAL, FORMCTRL
637
#define NB_INLINE NB_PCDATA + NB_FONTSTYLE + NB_PHRASE + NB_SPECIAL + NB_FORMCTRL
638
#define BLOCK HEADING, LIST, "pre", "p", "dl", "div", "center", "noscript", "noframes", "blockquote", "form", "isindex", "hr", "table", "fieldset", "address"
639
#define NB_BLOCK NB_HEADING + NB_LIST + 14
640
#define FORMCTRL "input", "select", "textarea", "label", "button"
641
#define NB_FORMCTRL 5
642
#define PCDATA
643
#define NB_PCDATA 0
644
#define HEADING "h1", "h2", "h3", "h4", "h5", "h6"
645
#define NB_HEADING 6
646
#define LIST "ul", "ol", "dir", "menu"
647
#define NB_LIST 4
648
#define MODIFIER
649
#define NB_MODIFIER 0
650
#define FLOW BLOCK,INLINE
651
#define NB_FLOW NB_BLOCK + NB_INLINE
652
#define EMPTY NULL
653
654
655
static const char* const html_flow[] = { FLOW, NULL } ;
656
static const char* const html_inline[] = { INLINE, NULL } ;
657
658
/* placeholders: elts with content but no subelements */
659
static const char* const html_pcdata[] = { NULL } ;
660
#define html_cdata html_pcdata
661
662
663
/* ... and for HTML Attributes */
664
665
#define COREATTRS "id", "class", "style", "title"
666
#define NB_COREATTRS 4
667
#define I18N "lang", "dir"
668
#define NB_I18N 2
669
#define EVENTS "onclick", "ondblclick", "onmousedown", "onmouseup", "onmouseover", "onmouseout", "onkeypress", "onkeydown", "onkeyup"
670
#define NB_EVENTS 9
671
#define ATTRS COREATTRS,I18N,EVENTS
672
#define NB_ATTRS NB_NB_COREATTRS + NB_I18N + NB_EVENTS
673
#define CELLHALIGN "align", "char", "charoff"
674
#define NB_CELLHALIGN 3
675
#define CELLVALIGN "valign"
676
#define NB_CELLVALIGN 1
677
678
static const char* const html_attrs[] = { ATTRS, NULL } ;
679
static const char* const core_i18n_attrs[] = { COREATTRS, I18N, NULL } ;
680
static const char* const core_attrs[] = { COREATTRS, NULL } ;
681
static const char* const i18n_attrs[] = { I18N, NULL } ;
682
683
684
/* Other declarations that should go inline ... */
685
static const char* const a_attrs[] = { ATTRS, "charset", "type", "name",
686
  "href", "hreflang", "rel", "rev", "accesskey", "shape", "coords",
687
  "tabindex", "onfocus", "onblur", NULL } ;
688
static const char* const target_attr[] = { "target", NULL } ;
689
static const char* const rows_cols_attr[] = { "rows", "cols", NULL } ;
690
static const char* const alt_attr[] = { "alt", NULL } ;
691
static const char* const src_alt_attrs[] = { "src", "alt", NULL } ;
692
static const char* const href_attrs[] = { "href", NULL } ;
693
static const char* const clear_attrs[] = { "clear", NULL } ;
694
static const char* const inline_p[] = { INLINE, "p", NULL } ;
695
696
static const char* const flow_param[] = { FLOW, "param", NULL } ;
697
static const char* const applet_attrs[] = { COREATTRS , "codebase",
698
    "archive", "alt", "name", "height", "width", "align",
699
    "hspace", "vspace", NULL } ;
700
static const char* const area_attrs[] = { "shape", "coords", "href", "nohref",
701
  "tabindex", "accesskey", "onfocus", "onblur", NULL } ;
702
static const char* const basefont_attrs[] =
703
  { "id", "size", "color", "face", NULL } ;
704
static const char* const quote_attrs[] = { ATTRS, "cite", NULL } ;
705
static const char* const body_contents[] = { FLOW, "ins", "del", NULL } ;
706
static const char* const body_attrs[] = { ATTRS, "onload", "onunload", NULL } ;
707
static const char* const body_depr[] = { "background", "bgcolor", "text",
708
  "link", "vlink", "alink", NULL } ;
709
static const char* const button_attrs[] = { ATTRS, "name", "value", "type",
710
  "disabled", "tabindex", "accesskey", "onfocus", "onblur", NULL } ;
711
712
713
static const char* const col_attrs[] = { ATTRS, "span", "width", CELLHALIGN, CELLVALIGN, NULL } ;
714
static const char* const col_elt[] = { "col", NULL } ;
715
static const char* const edit_attrs[] = { ATTRS, "datetime", "cite", NULL } ;
716
static const char* const compact_attrs[] = { ATTRS, "compact", NULL } ;
717
static const char* const dl_contents[] = { "dt", "dd", NULL } ;
718
static const char* const compact_attr[] = { "compact", NULL } ;
719
static const char* const label_attr[] = { "label", NULL } ;
720
static const char* const fieldset_contents[] = { FLOW, "legend" } ;
721
static const char* const font_attrs[] = { COREATTRS, I18N, "size", "color", "face" , NULL } ;
722
static const char* const form_contents[] = { HEADING, LIST, INLINE, "pre", "p", "div", "center", "noscript", "noframes", "blockquote", "isindex", "hr", "table", "fieldset", "address", NULL } ;
723
static const char* const form_attrs[] = { ATTRS, "method", "enctype", "accept", "name", "onsubmit", "onreset", "accept-charset", NULL } ;
724
static const char* const frame_attrs[] = { COREATTRS, "longdesc", "name", "src", "frameborder", "marginwidth", "marginheight", "noresize", "scrolling" , NULL } ;
725
static const char* const frameset_attrs[] = { COREATTRS, "rows", "cols", "onload", "onunload", NULL } ;
726
static const char* const frameset_contents[] = { "frameset", "frame", "noframes", NULL } ;
727
static const char* const head_attrs[] = { I18N, "profile", NULL } ;
728
static const char* const head_contents[] = { "title", "isindex", "base", "script", "style", "meta", "link", "object", NULL } ;
729
static const char* const hr_depr[] = { "align", "noshade", "size", "width", NULL } ;
730
static const char* const version_attr[] = { "version", NULL } ;
731
static const char* const html_content[] = { "head", "body", "frameset", NULL } ;
732
static const char* const iframe_attrs[] = { COREATTRS, "longdesc", "name", "src", "frameborder", "marginwidth", "marginheight", "scrolling", "align", "height", "width", NULL } ;
733
static const char* const img_attrs[] = { ATTRS, "longdesc", "name", "height", "width", "usemap", "ismap", NULL } ;
734
static const char* const embed_attrs[] = { COREATTRS, "align", "alt", "border", "code", "codebase", "frameborder", "height", "hidden", "hspace", "name", "palette", "pluginspace", "pluginurl", "src", "type", "units", "vspace", "width", NULL } ;
735
static const char* const input_attrs[] = { ATTRS, "type", "name", "value", "checked", "disabled", "readonly", "size", "maxlength", "src", "alt", "usemap", "ismap", "tabindex", "accesskey", "onfocus", "onblur", "onselect", "onchange", "accept", NULL } ;
736
static const char* const prompt_attrs[] = { COREATTRS, I18N, "prompt", NULL } ;
737
static const char* const label_attrs[] = { ATTRS, "for", "accesskey", "onfocus", "onblur", NULL } ;
738
static const char* const legend_attrs[] = { ATTRS, "accesskey", NULL } ;
739
static const char* const align_attr[] = { "align", NULL } ;
740
static const char* const link_attrs[] = { ATTRS, "charset", "href", "hreflang", "type", "rel", "rev", "media", NULL } ;
741
static const char* const map_contents[] = { BLOCK, "area", NULL } ;
742
static const char* const name_attr[] = { "name", NULL } ;
743
static const char* const action_attr[] = { "action", NULL } ;
744
static const char* const blockli_elt[] = { BLOCK, "li", NULL } ;
745
static const char* const meta_attrs[] = { I18N, "http-equiv", "name", "scheme", "charset", NULL } ;
746
static const char* const content_attr[] = { "content", NULL } ;
747
static const char* const type_attr[] = { "type", NULL } ;
748
static const char* const noframes_content[] = { "body", FLOW MODIFIER, NULL } ;
749
static const char* const object_contents[] = { FLOW, "param", NULL } ;
750
static const char* const object_attrs[] = { ATTRS, "declare", "classid", "codebase", "data", "type", "codetype", "archive", "standby", "height", "width", "usemap", "name", "tabindex", NULL } ;
751
static const char* const object_depr[] = { "align", "border", "hspace", "vspace", NULL } ;
752
static const char* const ol_attrs[] = { "type", "compact", "start", NULL} ;
753
static const char* const option_elt[] = { "option", NULL } ;
754
static const char* const optgroup_attrs[] = { ATTRS, "disabled", NULL } ;
755
static const char* const option_attrs[] = { ATTRS, "disabled", "label", "selected", "value", NULL } ;
756
static const char* const param_attrs[] = { "id", "value", "valuetype", "type", NULL } ;
757
static const char* const width_attr[] = { "width", NULL } ;
758
static const char* const pre_content[] = { PHRASE, "tt", "i", "b", "u", "s", "strike", "a", "br", "script", "map", "q", "span", "bdo", "iframe", NULL } ;
759
static const char* const script_attrs[] = { "charset", "src", "defer", "event", "for", NULL } ;
760
static const char* const language_attr[] = { "language", NULL } ;
761
static const char* const select_content[] = { "optgroup", "option", NULL } ;
762
static const char* const select_attrs[] = { ATTRS, "name", "size", "multiple", "disabled", "tabindex", "onfocus", "onblur", "onchange", NULL } ;
763
static const char* const style_attrs[] = { I18N, "media", "title", NULL } ;
764
static const char* const table_attrs[] = { ATTRS, "summary", "width", "border", "frame", "rules", "cellspacing", "cellpadding", "datapagesize", NULL } ;
765
static const char* const table_depr[] = { "align", "bgcolor", NULL } ;
766
static const char* const table_contents[] = { "caption", "col", "colgroup", "thead", "tfoot", "tbody", "tr", NULL} ;
767
static const char* const tr_elt[] = { "tr", NULL } ;
768
static const char* const talign_attrs[] = { ATTRS, CELLHALIGN, CELLVALIGN, NULL} ;
769
static const char* const th_td_depr[] = { "nowrap", "bgcolor", "width", "height", NULL } ;
770
static const char* const th_td_attr[] = { ATTRS, "abbr", "axis", "headers", "scope", "rowspan", "colspan", CELLHALIGN, CELLVALIGN, NULL } ;
771
static const char* const textarea_attrs[] = { ATTRS, "name", "disabled", "readonly", "tabindex", "accesskey", "onfocus", "onblur", "onselect", "onchange", NULL } ;
772
static const char* const tr_contents[] = { "th", "td", NULL } ;
773
static const char* const bgcolor_attr[] = { "bgcolor", NULL } ;
774
static const char* const li_elt[] = { "li", NULL } ;
775
static const char* const ul_depr[] = { "type", "compact", NULL} ;
776
static const char* const dir_attr[] = { "dir", NULL} ;
777
778
#define DECL (const char**)
779
780
static const htmlElemDesc
781
html40ElementTable[] = {
782
{ "a",    0, 0, 0, 0, 0, 0, 1, "anchor ",
783
  DECL html_inline , NULL , DECL a_attrs , DECL target_attr, NULL
784
},
785
{ "abbr", 0, 0, 0, 0, 0, 0, 1, "abbreviated form",
786
  DECL html_inline , NULL , DECL html_attrs, NULL, NULL
787
},
788
{ "acronym",  0, 0, 0, 0, 0, 0, 1, "",
789
  DECL html_inline , NULL , DECL html_attrs, NULL, NULL
790
},
791
{ "address",  0, 0, 0, 0, 0, 0, 0, "information on author ",
792
  DECL inline_p  , NULL , DECL html_attrs, NULL, NULL
793
},
794
{ "applet", 0, 0, 0, 0, 1, 1, 2, "java applet ",
795
  DECL flow_param , NULL , NULL , DECL applet_attrs, NULL
796
},
797
{ "area", 0, 2, 2, 1, 0, 0, 0, "client-side image map area ",
798
  EMPTY ,  NULL , DECL area_attrs , DECL target_attr, DECL alt_attr
799
},
800
{ "b",    0, 3, 0, 0, 0, 0, 1, "bold text style",
801
  DECL html_inline , NULL , DECL html_attrs, NULL, NULL
802
},
803
{ "base", 0, 2, 2, 1, 0, 0, 0, "document base uri ",
804
  EMPTY , NULL , NULL , DECL target_attr, DECL href_attrs
805
},
806
{ "basefont", 0, 2, 2, 1, 1, 1, 1, "base font size " ,
807
  EMPTY , NULL , NULL, DECL basefont_attrs, NULL
808
},
809
{ "bdo",  0, 0, 0, 0, 0, 0, 1, "i18n bidi over-ride ",
810
  DECL html_inline , NULL , DECL core_i18n_attrs, NULL, DECL dir_attr
811
},
812
{ "big",  0, 3, 0, 0, 0, 0, 1, "large text style",
813
  DECL html_inline , NULL , DECL html_attrs, NULL, NULL
814
},
815
{ "blockquote", 0, 0, 0, 0, 0, 0, 0, "long quotation ",
816
  DECL html_flow , NULL , DECL quote_attrs , NULL, NULL
817
},
818
{ "body", 1, 1, 0, 0, 0, 0, 0, "document body ",
819
  DECL body_contents , "div" , DECL body_attrs, DECL body_depr, NULL
820
},
821
{ "br",   0, 2, 2, 1, 0, 0, 1, "forced line break ",
822
  EMPTY , NULL , DECL core_attrs, DECL clear_attrs , NULL
823
},
824
{ "button", 0, 0, 0, 0, 0, 0, 2, "push button ",
825
  DECL html_flow MODIFIER , NULL , DECL button_attrs, NULL, NULL
826
},
827
{ "caption",  0, 0, 0, 0, 0, 0, 0, "table caption ",
828
  DECL html_inline , NULL , DECL html_attrs, NULL, NULL
829
},
830
{ "center", 0, 3, 0, 0, 1, 1, 0, "shorthand for div align=center ",
831
  DECL html_flow , NULL , NULL, DECL html_attrs, NULL
832
},
833
{ "cite", 0, 0, 0, 0, 0, 0, 1, "citation",
834
  DECL html_inline , NULL , DECL html_attrs, NULL, NULL
835
},
836
{ "code", 0, 0, 0, 0, 0, 0, 1, "computer code fragment",
837
  DECL html_inline , NULL , DECL html_attrs, NULL, NULL
838
},
839
{ "col",  0, 2, 2, 1, 0, 0, 0, "table column ",
840
  EMPTY , NULL , DECL col_attrs , NULL, NULL
841
},
842
{ "colgroup", 0, 1, 0, 0, 0, 0, 0, "table column group ",
843
  DECL col_elt , "col" , DECL col_attrs , NULL, NULL
844
},
845
{ "dd",   0, 1, 0, 0, 0, 0, 0, "definition description ",
846
  DECL html_flow , NULL , DECL html_attrs, NULL, NULL
847
},
848
{ "del",  0, 0, 0, 0, 0, 0, 2, "deleted text ",
849
  DECL html_flow , NULL , DECL edit_attrs , NULL, NULL
850
},
851
{ "dfn",  0, 0, 0, 0, 0, 0, 1, "instance definition",
852
  DECL html_inline , NULL , DECL html_attrs, NULL, NULL
853
},
854
{ "dir",  0, 0, 0, 0, 1, 1, 0, "directory list",
855
  DECL blockli_elt, "li" , NULL, DECL compact_attrs, NULL
856
},
857
{ "div",  0, 0, 0, 0, 0, 0, 0, "generic language/style container",
858
  DECL html_flow, NULL, DECL html_attrs, DECL align_attr, NULL
859
},
860
{ "dl",   0, 0, 0, 0, 0, 0, 0, "definition list ",
861
  DECL dl_contents , "dd" , DECL html_attrs, DECL compact_attr, NULL
862
},
863
{ "dt",   0, 1, 0, 0, 0, 0, 0, "definition term ",
864
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
865
},
866
{ "em",   0, 3, 0, 0, 0, 0, 1, "emphasis",
867
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
868
},
869
{ "embed",  0, 1, 0, 0, 1, 1, 1, "generic embedded object ",
870
  EMPTY, NULL, DECL embed_attrs, NULL, NULL
871
},
872
{ "fieldset", 0, 0, 0, 0, 0, 0, 0, "form control group ",
873
  DECL fieldset_contents , NULL, DECL html_attrs, NULL, NULL
874
},
875
{ "font", 0, 3, 0, 0, 1, 1, 1, "local change to font ",
876
  DECL html_inline, NULL, NULL, DECL font_attrs, NULL
877
},
878
{ "form", 0, 0, 0, 0, 0, 0, 0, "interactive form ",
879
  DECL form_contents, "fieldset", DECL form_attrs , DECL target_attr, DECL action_attr
880
},
881
{ "frame",  0, 2, 2, 1, 0, 2, 0, "subwindow " ,
882
  EMPTY, NULL, NULL, DECL frame_attrs, NULL
883
},
884
{ "frameset", 0, 0, 0, 0, 0, 2, 0, "window subdivision" ,
885
  DECL frameset_contents, "noframes" , NULL , DECL frameset_attrs, NULL
886
},
887
{ "h1",   0, 0, 0, 0, 0, 0, 0, "heading ",
888
  DECL html_inline, NULL, DECL html_attrs, DECL align_attr, NULL
889
},
890
{ "h2",   0, 0, 0, 0, 0, 0, 0, "heading ",
891
  DECL html_inline, NULL, DECL html_attrs, DECL align_attr, NULL
892
},
893
{ "h3",   0, 0, 0, 0, 0, 0, 0, "heading ",
894
  DECL html_inline, NULL, DECL html_attrs, DECL align_attr, NULL
895
},
896
{ "h4",   0, 0, 0, 0, 0, 0, 0, "heading ",
897
  DECL html_inline, NULL, DECL html_attrs, DECL align_attr, NULL
898
},
899
{ "h5",   0, 0, 0, 0, 0, 0, 0, "heading ",
900
  DECL html_inline, NULL, DECL html_attrs, DECL align_attr, NULL
901
},
902
{ "h6",   0, 0, 0, 0, 0, 0, 0, "heading ",
903
  DECL html_inline, NULL, DECL html_attrs, DECL align_attr, NULL
904
},
905
{ "head", 1, 1, 0, 0, 0, 0, 0, "document head ",
906
  DECL head_contents, NULL, DECL head_attrs, NULL, NULL
907
},
908
{ "hr",   0, 2, 2, 1, 0, 0, 0, "horizontal rule " ,
909
  EMPTY, NULL, DECL html_attrs, DECL hr_depr, NULL
910
},
911
{ "html", 1, 1, 0, 0, 0, 0, 0, "document root element ",
912
  DECL html_content , NULL , DECL i18n_attrs, DECL version_attr, NULL
913
},
914
{ "i",    0, 3, 0, 0, 0, 0, 1, "italic text style",
915
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
916
},
917
{ "iframe", 0, 0, 0, 0, 0, 1, 2, "inline subwindow ",
918
  DECL html_flow, NULL, NULL, DECL iframe_attrs, NULL
919
},
920
{ "img",  0, 2, 2, 1, 0, 0, 1, "embedded image ",
921
  EMPTY, NULL, DECL img_attrs, DECL align_attr, DECL src_alt_attrs
922
},
923
{ "input",  0, 2, 2, 1, 0, 0, 1, "form control ",
924
  EMPTY, NULL, DECL input_attrs , DECL align_attr, NULL
925
},
926
{ "ins",  0, 0, 0, 0, 0, 0, 2, "inserted text",
927
  DECL html_flow, NULL, DECL edit_attrs, NULL, NULL
928
},
929
{ "isindex",  0, 2, 2, 1, 1, 1, 0, "single line prompt ",
930
  EMPTY, NULL, NULL, DECL prompt_attrs, NULL
931
},
932
{ "kbd",  0, 0, 0, 0, 0, 0, 1, "text to be entered by the user",
933
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
934
},
935
{ "label",  0, 0, 0, 0, 0, 0, 1, "form field label text ",
936
  DECL html_inline MODIFIER, NULL, DECL label_attrs , NULL, NULL
937
},
938
{ "legend", 0, 0, 0, 0, 0, 0, 0, "fieldset legend ",
939
  DECL html_inline, NULL, DECL legend_attrs , DECL align_attr, NULL
940
},
941
{ "li",   0, 1, 1, 0, 0, 0, 0, "list item ",
942
  DECL html_flow, NULL, DECL html_attrs, NULL, NULL
943
},
944
{ "link", 0, 2, 2, 1, 0, 0, 0, "a media-independent link ",
945
  EMPTY, NULL, DECL link_attrs, DECL target_attr, NULL
946
},
947
{ "map",  0, 0, 0, 0, 0, 0, 2, "client-side image map ",
948
  DECL map_contents , NULL, DECL html_attrs , NULL, DECL name_attr
949
},
950
{ "menu", 0, 0, 0, 0, 1, 1, 0, "menu list ",
951
  DECL blockli_elt , NULL, NULL, DECL compact_attrs, NULL
952
},
953
{ "meta", 0, 2, 2, 1, 0, 0, 0, "generic metainformation ",
954
  EMPTY, NULL, DECL meta_attrs , NULL , DECL content_attr
955
},
956
{ "noframes", 0, 0, 0, 0, 0, 2, 0, "alternate content container for non frame-based rendering ",
957
  DECL noframes_content, "body" , DECL html_attrs, NULL, NULL
958
},
959
{ "noscript", 0, 0, 0, 0, 0, 0, 0, "alternate content container for non script-based rendering ",
960
  DECL html_flow, "div", DECL html_attrs, NULL, NULL
961
},
962
{ "object", 0, 0, 0, 0, 0, 0, 2, "generic embedded object ",
963
  DECL object_contents , "div" , DECL object_attrs, DECL object_depr, NULL
964
},
965
{ "ol",   0, 0, 0, 0, 0, 0, 0, "ordered list ",
966
  DECL li_elt , "li" , DECL html_attrs, DECL ol_attrs, NULL
967
},
968
{ "optgroup", 0, 0, 0, 0, 0, 0, 0, "option group ",
969
  DECL option_elt , "option", DECL optgroup_attrs, NULL, DECL label_attr
970
},
971
{ "option", 0, 1, 0, 0, 0, 0, 0, "selectable choice " ,
972
  DECL html_pcdata, NULL, DECL option_attrs, NULL, NULL
973
},
974
{ "p",    0, 1, 0, 0, 0, 0, 0, "paragraph ",
975
  DECL html_inline, NULL, DECL html_attrs, DECL align_attr, NULL
976
},
977
{ "param",  0, 2, 2, 1, 0, 0, 0, "named property value ",
978
  EMPTY, NULL, DECL param_attrs, NULL, DECL name_attr
979
},
980
{ "pre",  0, 0, 0, 0, 0, 0, 0, "preformatted text ",
981
  DECL pre_content, NULL, DECL html_attrs, DECL width_attr, NULL
982
},
983
{ "q",    0, 0, 0, 0, 0, 0, 1, "short inline quotation ",
984
  DECL html_inline, NULL, DECL quote_attrs, NULL, NULL
985
},
986
{ "s",    0, 3, 0, 0, 1, 1, 1, "strike-through text style",
987
  DECL html_inline, NULL, NULL, DECL html_attrs, NULL
988
},
989
{ "samp", 0, 0, 0, 0, 0, 0, 1, "sample program output, scripts, etc.",
990
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
991
},
992
{ "script", 0, 0, 0, 0, 0, 0, 2, "script statements ",
993
  DECL html_cdata, NULL, DECL script_attrs, DECL language_attr, DECL type_attr
994
},
995
{ "select", 0, 0, 0, 0, 0, 0, 1, "option selector ",
996
  DECL select_content, NULL, DECL select_attrs, NULL, NULL
997
},
998
{ "small",  0, 3, 0, 0, 0, 0, 1, "small text style",
999
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
1000
},
1001
{ "span", 0, 0, 0, 0, 0, 0, 1, "generic language/style container ",
1002
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
1003
},
1004
{ "strike", 0, 3, 0, 0, 1, 1, 1, "strike-through text",
1005
  DECL html_inline, NULL, NULL, DECL html_attrs, NULL
1006
},
1007
{ "strong", 0, 3, 0, 0, 0, 0, 1, "strong emphasis",
1008
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
1009
},
1010
{ "style",  0, 0, 0, 0, 0, 0, 0, "style info ",
1011
  DECL html_cdata, NULL, DECL style_attrs, NULL, DECL type_attr
1012
},
1013
{ "sub",  0, 3, 0, 0, 0, 0, 1, "subscript",
1014
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
1015
},
1016
{ "sup",  0, 3, 0, 0, 0, 0, 1, "superscript ",
1017
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
1018
},
1019
{ "table",  0, 0, 0, 0, 0, 0, 0, "",
1020
  DECL table_contents , "tr" , DECL table_attrs , DECL table_depr, NULL
1021
},
1022
{ "tbody",  1, 0, 0, 0, 0, 0, 0, "table body ",
1023
  DECL tr_elt , "tr" , DECL talign_attrs, NULL, NULL
1024
},
1025
{ "td",   0, 0, 0, 0, 0, 0, 0, "table data cell",
1026
  DECL html_flow, NULL, DECL th_td_attr, DECL th_td_depr, NULL
1027
},
1028
{ "textarea", 0, 0, 0, 0, 0, 0, 1, "multi-line text field ",
1029
  DECL html_pcdata, NULL, DECL textarea_attrs, NULL, DECL rows_cols_attr
1030
},
1031
{ "tfoot",  0, 1, 0, 0, 0, 0, 0, "table footer ",
1032
  DECL tr_elt , "tr" , DECL talign_attrs, NULL, NULL
1033
},
1034
{ "th",   0, 1, 0, 0, 0, 0, 0, "table header cell",
1035
  DECL html_flow, NULL, DECL th_td_attr, DECL th_td_depr, NULL
1036
},
1037
{ "thead",  0, 1, 0, 0, 0, 0, 0, "table header ",
1038
  DECL tr_elt , "tr" , DECL talign_attrs, NULL, NULL
1039
},
1040
{ "title",  0, 0, 0, 0, 0, 0, 0, "document title ",
1041
  DECL html_pcdata, NULL, DECL i18n_attrs, NULL, NULL
1042
},
1043
{ "tr",   0, 0, 0, 0, 0, 0, 0, "table row ",
1044
  DECL tr_contents , "td" , DECL talign_attrs, DECL bgcolor_attr, NULL
1045
},
1046
{ "tt",   0, 3, 0, 0, 0, 0, 1, "teletype or monospaced text style",
1047
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
1048
},
1049
{ "u",    0, 3, 0, 0, 1, 1, 1, "underlined text style",
1050
  DECL html_inline, NULL, NULL, DECL html_attrs, NULL
1051
},
1052
{ "ul",   0, 0, 0, 0, 0, 0, 0, "unordered list ",
1053
  DECL li_elt , "li" , DECL html_attrs, DECL ul_depr, NULL
1054
},
1055
{ "var",  0, 0, 0, 0, 0, 0, 1, "instance of a variable or program argument",
1056
  DECL html_inline, NULL, DECL html_attrs, NULL, NULL
1057
}
1058
};
1059
1060
typedef struct {
1061
    const char *oldTag;
1062
    const char *newTag;
1063
} htmlStartCloseEntry;
1064
1065
/*
1066
 * start tags that imply the end of current element
1067
 */
1068
static const htmlStartCloseEntry htmlStartClose[] = {
1069
    { "a", "a" },
1070
    { "a", "fieldset" },
1071
    { "a", "table" },
1072
    { "a", "td" },
1073
    { "a", "th" },
1074
    { "address", "dd" },
1075
    { "address", "dl" },
1076
    { "address", "dt" },
1077
    { "address", "form" },
1078
    { "address", "li" },
1079
    { "address", "ul" },
1080
    { "b", "center" },
1081
    { "b", "p" },
1082
    { "b", "td" },
1083
    { "b", "th" },
1084
    { "big", "p" },
1085
    { "caption", "col" },
1086
    { "caption", "colgroup" },
1087
    { "caption", "tbody" },
1088
    { "caption", "tfoot" },
1089
    { "caption", "thead" },
1090
    { "caption", "tr" },
1091
    { "col", "col" },
1092
    { "col", "colgroup" },
1093
    { "col", "tbody" },
1094
    { "col", "tfoot" },
1095
    { "col", "thead" },
1096
    { "col", "tr" },
1097
    { "colgroup", "colgroup" },
1098
    { "colgroup", "tbody" },
1099
    { "colgroup", "tfoot" },
1100
    { "colgroup", "thead" },
1101
    { "colgroup", "tr" },
1102
    { "dd", "dt" },
1103
    { "dir", "dd" },
1104
    { "dir", "dl" },
1105
    { "dir", "dt" },
1106
    { "dir", "form" },
1107
    { "dir", "ul" },
1108
    { "dl", "form" },
1109
    { "dl", "li" },
1110
    { "dt", "dd" },
1111
    { "dt", "dl" },
1112
    { "font", "center" },
1113
    { "font", "td" },
1114
    { "font", "th" },
1115
    { "form", "form" },
1116
    { "h1", "fieldset" },
1117
    { "h1", "form" },
1118
    { "h1", "li" },
1119
    { "h1", "p" },
1120
    { "h1", "table" },
1121
    { "h2", "fieldset" },
1122
    { "h2", "form" },
1123
    { "h2", "li" },
1124
    { "h2", "p" },
1125
    { "h2", "table" },
1126
    { "h3", "fieldset" },
1127
    { "h3", "form" },
1128
    { "h3", "li" },
1129
    { "h3", "p" },
1130
    { "h3", "table" },
1131
    { "h4", "fieldset" },
1132
    { "h4", "form" },
1133
    { "h4", "li" },
1134
    { "h4", "p" },
1135
    { "h4", "table" },
1136
    { "h5", "fieldset" },
1137
    { "h5", "form" },
1138
    { "h5", "li" },
1139
    { "h5", "p" },
1140
    { "h5", "table" },
1141
    { "h6", "fieldset" },
1142
    { "h6", "form" },
1143
    { "h6", "li" },
1144
    { "h6", "p" },
1145
    { "h6", "table" },
1146
    { "head", "a" },
1147
    { "head", "abbr" },
1148
    { "head", "acronym" },
1149
    { "head", "address" },
1150
    { "head", "b" },
1151
    { "head", "bdo" },
1152
    { "head", "big" },
1153
    { "head", "blockquote" },
1154
    { "head", "body" },
1155
    { "head", "br" },
1156
    { "head", "center" },
1157
    { "head", "cite" },
1158
    { "head", "code" },
1159
    { "head", "dd" },
1160
    { "head", "dfn" },
1161
    { "head", "dir" },
1162
    { "head", "div" },
1163
    { "head", "dl" },
1164
    { "head", "dt" },
1165
    { "head", "em" },
1166
    { "head", "fieldset" },
1167
    { "head", "font" },
1168
    { "head", "form" },
1169
    { "head", "frameset" },
1170
    { "head", "h1" },
1171
    { "head", "h2" },
1172
    { "head", "h3" },
1173
    { "head", "h4" },
1174
    { "head", "h5" },
1175
    { "head", "h6" },
1176
    { "head", "hr" },
1177
    { "head", "i" },
1178
    { "head", "iframe" },
1179
    { "head", "img" },
1180
    { "head", "kbd" },
1181
    { "head", "li" },
1182
    { "head", "listing" },
1183
    { "head", "map" },
1184
    { "head", "menu" },
1185
    { "head", "ol" },
1186
    { "head", "p" },
1187
    { "head", "pre" },
1188
    { "head", "q" },
1189
    { "head", "s" },
1190
    { "head", "samp" },
1191
    { "head", "small" },
1192
    { "head", "span" },
1193
    { "head", "strike" },
1194
    { "head", "strong" },
1195
    { "head", "sub" },
1196
    { "head", "sup" },
1197
    { "head", "table" },
1198
    { "head", "tt" },
1199
    { "head", "u" },
1200
    { "head", "ul" },
1201
    { "head", "var" },
1202
    { "head", "xmp" },
1203
    { "hr", "form" },
1204
    { "i", "center" },
1205
    { "i", "p" },
1206
    { "i", "td" },
1207
    { "i", "th" },
1208
    { "legend", "fieldset" },
1209
    { "li", "li" },
1210
    { "link", "body" },
1211
    { "link", "frameset" },
1212
    { "listing", "dd" },
1213
    { "listing", "dl" },
1214
    { "listing", "dt" },
1215
    { "listing", "fieldset" },
1216
    { "listing", "form" },
1217
    { "listing", "li" },
1218
    { "listing", "table" },
1219
    { "listing", "ul" },
1220
    { "menu", "dd" },
1221
    { "menu", "dl" },
1222
    { "menu", "dt" },
1223
    { "menu", "form" },
1224
    { "menu", "ul" },
1225
    { "ol", "form" },
1226
    { "ol", "ul" },
1227
    { "option", "optgroup" },
1228
    { "option", "option" },
1229
    { "p", "address" },
1230
    { "p", "blockquote" },
1231
    { "p", "body" },
1232
    { "p", "caption" },
1233
    { "p", "center" },
1234
    { "p", "col" },
1235
    { "p", "colgroup" },
1236
    { "p", "dd" },
1237
    { "p", "dir" },
1238
    { "p", "div" },
1239
    { "p", "dl" },
1240
    { "p", "dt" },
1241
    { "p", "fieldset" },
1242
    { "p", "form" },
1243
    { "p", "frameset" },
1244
    { "p", "h1" },
1245
    { "p", "h2" },
1246
    { "p", "h3" },
1247
    { "p", "h4" },
1248
    { "p", "h5" },
1249
    { "p", "h6" },
1250
    { "p", "head" },
1251
    { "p", "hr" },
1252
    { "p", "li" },
1253
    { "p", "listing" },
1254
    { "p", "menu" },
1255
    { "p", "ol" },
1256
    { "p", "p" },
1257
    { "p", "pre" },
1258
    { "p", "table" },
1259
    { "p", "tbody" },
1260
    { "p", "td" },
1261
    { "p", "tfoot" },
1262
    { "p", "th" },
1263
    { "p", "title" },
1264
    { "p", "tr" },
1265
    { "p", "ul" },
1266
    { "p", "xmp" },
1267
    { "pre", "dd" },
1268
    { "pre", "dl" },
1269
    { "pre", "dt" },
1270
    { "pre", "fieldset" },
1271
    { "pre", "form" },
1272
    { "pre", "li" },
1273
    { "pre", "table" },
1274
    { "pre", "ul" },
1275
    { "s", "p" },
1276
    { "script", "noscript" },
1277
    { "small", "p" },
1278
    { "span", "td" },
1279
    { "span", "th" },
1280
    { "strike", "p" },
1281
    { "style", "body" },
1282
    { "style", "frameset" },
1283
    { "tbody", "tbody" },
1284
    { "tbody", "tfoot" },
1285
    { "td", "tbody" },
1286
    { "td", "td" },
1287
    { "td", "tfoot" },
1288
    { "td", "th" },
1289
    { "td", "tr" },
1290
    { "tfoot", "tbody" },
1291
    { "th", "tbody" },
1292
    { "th", "td" },
1293
    { "th", "tfoot" },
1294
    { "th", "th" },
1295
    { "th", "tr" },
1296
    { "thead", "tbody" },
1297
    { "thead", "tfoot" },
1298
    { "title", "body" },
1299
    { "title", "frameset" },
1300
    { "tr", "tbody" },
1301
    { "tr", "tfoot" },
1302
    { "tr", "tr" },
1303
    { "tt", "p" },
1304
    { "u", "p" },
1305
    { "u", "td" },
1306
    { "u", "th" },
1307
    { "ul", "address" },
1308
    { "ul", "form" },
1309
    { "ul", "menu" },
1310
    { "ul", "ol" },
1311
    { "ul", "pre" },
1312
    { "xmp", "dd" },
1313
    { "xmp", "dl" },
1314
    { "xmp", "dt" },
1315
    { "xmp", "fieldset" },
1316
    { "xmp", "form" },
1317
    { "xmp", "li" },
1318
    { "xmp", "table" },
1319
    { "xmp", "ul" }
1320
};
1321
1322
/*
1323
 * The list of HTML elements which are supposed not to have
1324
 * CDATA content and where a p element will be implied
1325
 *
1326
 * TODO: extend that list by reading the HTML SGML DTD on
1327
 *       implied paragraph
1328
 */
1329
static const char *const htmlNoContentElements[] = {
1330
    "html",
1331
    "head",
1332
    NULL
1333
};
1334
1335
/*
1336
 * The list of HTML attributes which are of content %Script;
1337
 * NOTE: when adding ones, check htmlIsScriptAttribute() since
1338
 *       it assumes the name starts with 'on'
1339
 */
1340
static const char *const htmlScriptAttributes[] = {
1341
    "onclick",
1342
    "ondblclick",
1343
    "onmousedown",
1344
    "onmouseup",
1345
    "onmouseover",
1346
    "onmousemove",
1347
    "onmouseout",
1348
    "onkeypress",
1349
    "onkeydown",
1350
    "onkeyup",
1351
    "onload",
1352
    "onunload",
1353
    "onfocus",
1354
    "onblur",
1355
    "onsubmit",
1356
    "onreset",
1357
    "onchange",
1358
    "onselect"
1359
};
1360
1361
/*
1362
 * This table is used by the htmlparser to know what to do with
1363
 * broken html pages. By assigning different priorities to different
1364
 * elements the parser can decide how to handle extra endtags.
1365
 * Endtags are only allowed to close elements with lower or equal
1366
 * priority.
1367
 */
1368
1369
typedef struct {
1370
    const char *name;
1371
    int priority;
1372
} elementPriority;
1373
1374
static const elementPriority htmlEndPriority[] = {
1375
    {"div",   150},
1376
    {"td",    160},
1377
    {"th",    160},
1378
    {"tr",    170},
1379
    {"thead", 180},
1380
    {"tbody", 180},
1381
    {"tfoot", 180},
1382
    {"table", 190},
1383
    {"head",  200},
1384
    {"body",  200},
1385
    {"html",  220},
1386
    {NULL,    100} /* Default priority */
1387
};
1388
1389
/************************************************************************
1390
 *                  *
1391
 *  functions to handle HTML specific data      *
1392
 *                  *
1393
 ************************************************************************/
1394
1395
/**
1396
 * htmlInitAutoClose:
1397
 *
1398
 * DEPRECATED: This function will be made private. Call xmlInitParser to
1399
 * initialize the library.
1400
 *
1401
 * This is a no-op now.
1402
 */
1403
void
1404
1
htmlInitAutoClose(void) {
1405
1
}
1406
1407
static int
1408
0
htmlCompareTags(const void *key, const void *member) {
1409
0
    const xmlChar *tag = (const xmlChar *) key;
1410
0
    const htmlElemDesc *desc = (const htmlElemDesc *) member;
1411
1412
0
    return(xmlStrcasecmp(tag, BAD_CAST desc->name));
1413
0
}
1414
1415
/**
1416
 * htmlTagLookup:
1417
 * @tag:  The tag name in lowercase
1418
 *
1419
 * Lookup the HTML tag in the ElementTable
1420
 *
1421
 * Returns the related htmlElemDescPtr or NULL if not found.
1422
 */
1423
const htmlElemDesc *
1424
0
htmlTagLookup(const xmlChar *tag) {
1425
0
    if (tag == NULL)
1426
0
        return(NULL);
1427
1428
0
    return((const htmlElemDesc *) bsearch(tag, html40ElementTable,
1429
0
                sizeof(html40ElementTable) / sizeof(htmlElemDesc),
1430
0
                sizeof(htmlElemDesc), htmlCompareTags));
1431
0
}
1432
1433
/**
1434
 * htmlGetEndPriority:
1435
 * @name: The name of the element to look up the priority for.
1436
 *
1437
 * Return value: The "endtag" priority.
1438
 **/
1439
static int
1440
0
htmlGetEndPriority (const xmlChar *name) {
1441
0
    int i = 0;
1442
1443
0
    while ((htmlEndPriority[i].name != NULL) &&
1444
0
     (!xmlStrEqual((const xmlChar *)htmlEndPriority[i].name, name)))
1445
0
  i++;
1446
1447
0
    return(htmlEndPriority[i].priority);
1448
0
}
1449
1450
1451
static int
1452
0
htmlCompareStartClose(const void *vkey, const void *member) {
1453
0
    const htmlStartCloseEntry *key = (const htmlStartCloseEntry *) vkey;
1454
0
    const htmlStartCloseEntry *entry = (const htmlStartCloseEntry *) member;
1455
0
    int ret;
1456
1457
0
    ret = strcmp(key->oldTag, entry->oldTag);
1458
0
    if (ret == 0)
1459
0
        ret = strcmp(key->newTag, entry->newTag);
1460
1461
0
    return(ret);
1462
0
}
1463
1464
/**
1465
 * htmlCheckAutoClose:
1466
 * @newtag:  The new tag name
1467
 * @oldtag:  The old tag name
1468
 *
1469
 * Checks whether the new tag is one of the registered valid tags for
1470
 * closing old.
1471
 *
1472
 * Returns 0 if no, 1 if yes.
1473
 */
1474
static int
1475
htmlCheckAutoClose(const xmlChar * newtag, const xmlChar * oldtag)
1476
0
{
1477
0
    htmlStartCloseEntry key;
1478
0
    void *res;
1479
1480
0
    key.oldTag = (const char *) oldtag;
1481
0
    key.newTag = (const char *) newtag;
1482
0
    res = bsearch(&key, htmlStartClose,
1483
0
            sizeof(htmlStartClose) / sizeof(htmlStartCloseEntry),
1484
0
            sizeof(htmlStartCloseEntry), htmlCompareStartClose);
1485
0
    return(res != NULL);
1486
0
}
1487
1488
/**
1489
 * htmlAutoCloseOnClose:
1490
 * @ctxt:  an HTML parser context
1491
 * @newtag:  The new tag name
1492
 * @force:  force the tag closure
1493
 *
1494
 * The HTML DTD allows an ending tag to implicitly close other tags.
1495
 */
1496
static void
1497
htmlAutoCloseOnClose(htmlParserCtxtPtr ctxt, const xmlChar * newtag)
1498
0
{
1499
0
    const htmlElemDesc *info;
1500
0
    int i, priority;
1501
1502
0
    priority = htmlGetEndPriority(newtag);
1503
1504
0
    for (i = (ctxt->nameNr - 1); i >= 0; i--) {
1505
1506
0
        if (xmlStrEqual(newtag, ctxt->nameTab[i]))
1507
0
            break;
1508
        /*
1509
         * A misplaced endtag can only close elements with lower
1510
         * or equal priority, so if we find an element with higher
1511
         * priority before we find an element with
1512
         * matching name, we just ignore this endtag
1513
         */
1514
0
        if (htmlGetEndPriority(ctxt->nameTab[i]) > priority)
1515
0
            return;
1516
0
    }
1517
0
    if (i < 0)
1518
0
        return;
1519
1520
0
    while (!xmlStrEqual(newtag, ctxt->name)) {
1521
0
        info = htmlTagLookup(ctxt->name);
1522
0
        if ((info != NULL) && (info->endTag == 3)) {
1523
0
            htmlParseErr(ctxt, XML_ERR_TAG_NAME_MISMATCH,
1524
0
                   "Opening and ending tag mismatch: %s and %s\n",
1525
0
       newtag, ctxt->name);
1526
0
        }
1527
0
        if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
1528
0
            ctxt->sax->endElement(ctxt->userData, ctxt->name);
1529
0
  htmlnamePop(ctxt);
1530
0
    }
1531
0
}
1532
1533
/**
1534
 * htmlAutoCloseOnEnd:
1535
 * @ctxt:  an HTML parser context
1536
 *
1537
 * Close all remaining tags at the end of the stream
1538
 */
1539
static void
1540
htmlAutoCloseOnEnd(htmlParserCtxtPtr ctxt)
1541
0
{
1542
0
    int i;
1543
1544
0
    if (ctxt->nameNr == 0)
1545
0
        return;
1546
0
    for (i = (ctxt->nameNr - 1); i >= 0; i--) {
1547
0
        if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
1548
0
            ctxt->sax->endElement(ctxt->userData, ctxt->name);
1549
0
  htmlnamePop(ctxt);
1550
0
    }
1551
0
}
1552
1553
/**
1554
 * htmlAutoClose:
1555
 * @ctxt:  an HTML parser context
1556
 * @newtag:  The new tag name or NULL
1557
 *
1558
 * The HTML DTD allows a tag to implicitly close other tags.
1559
 * The list is kept in htmlStartClose array. This function is
1560
 * called when a new tag has been detected and generates the
1561
 * appropriates closes if possible/needed.
1562
 * If newtag is NULL this mean we are at the end of the resource
1563
 * and we should check
1564
 */
1565
static void
1566
htmlAutoClose(htmlParserCtxtPtr ctxt, const xmlChar * newtag)
1567
0
{
1568
0
    while ((newtag != NULL) && (ctxt->name != NULL) &&
1569
0
           (htmlCheckAutoClose(newtag, ctxt->name))) {
1570
0
        if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
1571
0
            ctxt->sax->endElement(ctxt->userData, ctxt->name);
1572
0
  htmlnamePop(ctxt);
1573
0
    }
1574
0
    if (newtag == NULL) {
1575
0
        htmlAutoCloseOnEnd(ctxt);
1576
0
        return;
1577
0
    }
1578
0
    while ((newtag == NULL) && (ctxt->name != NULL) &&
1579
0
           ((xmlStrEqual(ctxt->name, BAD_CAST "head")) ||
1580
0
            (xmlStrEqual(ctxt->name, BAD_CAST "body")) ||
1581
0
            (xmlStrEqual(ctxt->name, BAD_CAST "html")))) {
1582
0
        if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
1583
0
            ctxt->sax->endElement(ctxt->userData, ctxt->name);
1584
0
  htmlnamePop(ctxt);
1585
0
    }
1586
0
}
1587
1588
/**
1589
 * htmlAutoCloseTag:
1590
 * @doc:  the HTML document
1591
 * @name:  The tag name
1592
 * @elem:  the HTML element
1593
 *
1594
 * The HTML DTD allows a tag to implicitly close other tags.
1595
 * The list is kept in htmlStartClose array. This function checks
1596
 * if the element or one of it's children would autoclose the
1597
 * given tag.
1598
 *
1599
 * Returns 1 if autoclose, 0 otherwise
1600
 */
1601
int
1602
0
htmlAutoCloseTag(htmlDocPtr doc, const xmlChar *name, htmlNodePtr elem) {
1603
0
    htmlNodePtr child;
1604
1605
0
    if (elem == NULL) return(1);
1606
0
    if (xmlStrEqual(name, elem->name)) return(0);
1607
0
    if (htmlCheckAutoClose(elem->name, name)) return(1);
1608
0
    child = elem->children;
1609
0
    while (child != NULL) {
1610
0
        if (htmlAutoCloseTag(doc, name, child)) return(1);
1611
0
  child = child->next;
1612
0
    }
1613
0
    return(0);
1614
0
}
1615
1616
/**
1617
 * htmlIsAutoClosed:
1618
 * @doc:  the HTML document
1619
 * @elem:  the HTML element
1620
 *
1621
 * The HTML DTD allows a tag to implicitly close other tags.
1622
 * The list is kept in htmlStartClose array. This function checks
1623
 * if a tag is autoclosed by one of it's child
1624
 *
1625
 * Returns 1 if autoclosed, 0 otherwise
1626
 */
1627
int
1628
0
htmlIsAutoClosed(htmlDocPtr doc, htmlNodePtr elem) {
1629
0
    htmlNodePtr child;
1630
1631
0
    if (elem == NULL) return(1);
1632
0
    child = elem->children;
1633
0
    while (child != NULL) {
1634
0
  if (htmlAutoCloseTag(doc, elem->name, child)) return(1);
1635
0
  child = child->next;
1636
0
    }
1637
0
    return(0);
1638
0
}
1639
1640
/**
1641
 * htmlCheckImplied:
1642
 * @ctxt:  an HTML parser context
1643
 * @newtag:  The new tag name
1644
 *
1645
 * The HTML DTD allows a tag to exists only implicitly
1646
 * called when a new tag has been detected and generates the
1647
 * appropriates implicit tags if missing
1648
 */
1649
static void
1650
0
htmlCheckImplied(htmlParserCtxtPtr ctxt, const xmlChar *newtag) {
1651
0
    int i;
1652
1653
0
    if (ctxt->options & HTML_PARSE_NOIMPLIED)
1654
0
        return;
1655
0
    if (!htmlOmittedDefaultValue)
1656
0
  return;
1657
0
    if (xmlStrEqual(newtag, BAD_CAST"html"))
1658
0
  return;
1659
0
    if (ctxt->nameNr <= 0) {
1660
0
  htmlnamePush(ctxt, BAD_CAST"html");
1661
0
  if ((ctxt->sax != NULL) && (ctxt->sax->startElement != NULL))
1662
0
      ctxt->sax->startElement(ctxt->userData, BAD_CAST"html", NULL);
1663
0
    }
1664
0
    if ((xmlStrEqual(newtag, BAD_CAST"body")) || (xmlStrEqual(newtag, BAD_CAST"head")))
1665
0
        return;
1666
0
    if ((ctxt->nameNr <= 1) &&
1667
0
        ((xmlStrEqual(newtag, BAD_CAST"script")) ||
1668
0
   (xmlStrEqual(newtag, BAD_CAST"style")) ||
1669
0
   (xmlStrEqual(newtag, BAD_CAST"meta")) ||
1670
0
   (xmlStrEqual(newtag, BAD_CAST"link")) ||
1671
0
   (xmlStrEqual(newtag, BAD_CAST"title")) ||
1672
0
   (xmlStrEqual(newtag, BAD_CAST"base")))) {
1673
0
        if (ctxt->html >= 3) {
1674
            /* we already saw or generated an <head> before */
1675
0
            return;
1676
0
        }
1677
        /*
1678
         * dropped OBJECT ... i you put it first BODY will be
1679
         * assumed !
1680
         */
1681
0
        htmlnamePush(ctxt, BAD_CAST"head");
1682
0
        if ((ctxt->sax != NULL) && (ctxt->sax->startElement != NULL))
1683
0
            ctxt->sax->startElement(ctxt->userData, BAD_CAST"head", NULL);
1684
0
    } else if ((!xmlStrEqual(newtag, BAD_CAST"noframes")) &&
1685
0
         (!xmlStrEqual(newtag, BAD_CAST"frame")) &&
1686
0
         (!xmlStrEqual(newtag, BAD_CAST"frameset"))) {
1687
0
        if (ctxt->html >= 10) {
1688
            /* we already saw or generated a <body> before */
1689
0
            return;
1690
0
        }
1691
0
  for (i = 0;i < ctxt->nameNr;i++) {
1692
0
      if (xmlStrEqual(ctxt->nameTab[i], BAD_CAST"body")) {
1693
0
    return;
1694
0
      }
1695
0
      if (xmlStrEqual(ctxt->nameTab[i], BAD_CAST"head")) {
1696
0
    return;
1697
0
      }
1698
0
  }
1699
1700
0
  htmlnamePush(ctxt, BAD_CAST"body");
1701
0
  if ((ctxt->sax != NULL) && (ctxt->sax->startElement != NULL))
1702
0
      ctxt->sax->startElement(ctxt->userData, BAD_CAST"body", NULL);
1703
0
    }
1704
0
}
1705
1706
/**
1707
 * htmlCheckParagraph
1708
 * @ctxt:  an HTML parser context
1709
 *
1710
 * Check whether a p element need to be implied before inserting
1711
 * characters in the current element.
1712
 *
1713
 * Returns 1 if a paragraph has been inserted, 0 if not and -1
1714
 *         in case of error.
1715
 */
1716
1717
static int
1718
0
htmlCheckParagraph(htmlParserCtxtPtr ctxt) {
1719
0
    const xmlChar *tag;
1720
0
    int i;
1721
1722
0
    if (ctxt == NULL)
1723
0
  return(-1);
1724
0
    tag = ctxt->name;
1725
0
    if (tag == NULL) {
1726
0
  htmlAutoClose(ctxt, BAD_CAST"p");
1727
0
  htmlCheckImplied(ctxt, BAD_CAST"p");
1728
0
  htmlnamePush(ctxt, BAD_CAST"p");
1729
0
  if ((ctxt->sax != NULL) && (ctxt->sax->startElement != NULL))
1730
0
      ctxt->sax->startElement(ctxt->userData, BAD_CAST"p", NULL);
1731
0
  return(1);
1732
0
    }
1733
0
    if (!htmlOmittedDefaultValue)
1734
0
  return(0);
1735
0
    for (i = 0; htmlNoContentElements[i] != NULL; i++) {
1736
0
  if (xmlStrEqual(tag, BAD_CAST htmlNoContentElements[i])) {
1737
0
      htmlAutoClose(ctxt, BAD_CAST"p");
1738
0
      htmlCheckImplied(ctxt, BAD_CAST"p");
1739
0
      htmlnamePush(ctxt, BAD_CAST"p");
1740
0
      if ((ctxt->sax != NULL) && (ctxt->sax->startElement != NULL))
1741
0
    ctxt->sax->startElement(ctxt->userData, BAD_CAST"p", NULL);
1742
0
      return(1);
1743
0
  }
1744
0
    }
1745
0
    return(0);
1746
0
}
1747
1748
/**
1749
 * htmlIsScriptAttribute:
1750
 * @name:  an attribute name
1751
 *
1752
 * Check if an attribute is of content type Script
1753
 *
1754
 * Returns 1 is the attribute is a script 0 otherwise
1755
 */
1756
int
1757
0
htmlIsScriptAttribute(const xmlChar *name) {
1758
0
    unsigned int i;
1759
1760
0
    if (name == NULL)
1761
0
      return(0);
1762
    /*
1763
     * all script attributes start with 'on'
1764
     */
1765
0
    if ((name[0] != 'o') || (name[1] != 'n'))
1766
0
      return(0);
1767
0
    for (i = 0;
1768
0
   i < sizeof(htmlScriptAttributes)/sizeof(htmlScriptAttributes[0]);
1769
0
   i++) {
1770
0
  if (xmlStrEqual(name, (const xmlChar *) htmlScriptAttributes[i]))
1771
0
      return(1);
1772
0
    }
1773
0
    return(0);
1774
0
}
1775
1776
/************************************************************************
1777
 *                  *
1778
 *  The list of HTML predefined entities      *
1779
 *                  *
1780
 ************************************************************************/
1781
1782
1783
static const htmlEntityDesc  html40EntitiesTable[] = {
1784
/*
1785
 * the 4 absolute ones, plus apostrophe.
1786
 */
1787
{ 34, "quot", "quotation mark = APL quote, U+0022 ISOnum" },
1788
{ 38, "amp",  "ampersand, U+0026 ISOnum" },
1789
{ 39, "apos", "single quote" },
1790
{ 60, "lt", "less-than sign, U+003C ISOnum" },
1791
{ 62, "gt", "greater-than sign, U+003E ISOnum" },
1792
1793
/*
1794
 * A bunch still in the 128-255 range
1795
 * Replacing them depend really on the charset used.
1796
 */
1797
{ 160,  "nbsp", "no-break space = non-breaking space, U+00A0 ISOnum" },
1798
{ 161,  "iexcl","inverted exclamation mark, U+00A1 ISOnum" },
1799
{ 162,  "cent", "cent sign, U+00A2 ISOnum" },
1800
{ 163,  "pound","pound sign, U+00A3 ISOnum" },
1801
{ 164,  "curren","currency sign, U+00A4 ISOnum" },
1802
{ 165,  "yen",  "yen sign = yuan sign, U+00A5 ISOnum" },
1803
{ 166,  "brvbar","broken bar = broken vertical bar, U+00A6 ISOnum" },
1804
{ 167,  "sect", "section sign, U+00A7 ISOnum" },
1805
{ 168,  "uml",  "diaeresis = spacing diaeresis, U+00A8 ISOdia" },
1806
{ 169,  "copy", "copyright sign, U+00A9 ISOnum" },
1807
{ 170,  "ordf", "feminine ordinal indicator, U+00AA ISOnum" },
1808
{ 171,  "laquo","left-pointing double angle quotation mark = left pointing guillemet, U+00AB ISOnum" },
1809
{ 172,  "not",  "not sign, U+00AC ISOnum" },
1810
{ 173,  "shy",  "soft hyphen = discretionary hyphen, U+00AD ISOnum" },
1811
{ 174,  "reg",  "registered sign = registered trade mark sign, U+00AE ISOnum" },
1812
{ 175,  "macr", "macron = spacing macron = overline = APL overbar, U+00AF ISOdia" },
1813
{ 176,  "deg",  "degree sign, U+00B0 ISOnum" },
1814
{ 177,  "plusmn","plus-minus sign = plus-or-minus sign, U+00B1 ISOnum" },
1815
{ 178,  "sup2", "superscript two = superscript digit two = squared, U+00B2 ISOnum" },
1816
{ 179,  "sup3", "superscript three = superscript digit three = cubed, U+00B3 ISOnum" },
1817
{ 180,  "acute","acute accent = spacing acute, U+00B4 ISOdia" },
1818
{ 181,  "micro","micro sign, U+00B5 ISOnum" },
1819
{ 182,  "para", "pilcrow sign = paragraph sign, U+00B6 ISOnum" },
1820
{ 183,  "middot","middle dot = Georgian comma Greek middle dot, U+00B7 ISOnum" },
1821
{ 184,  "cedil","cedilla = spacing cedilla, U+00B8 ISOdia" },
1822
{ 185,  "sup1", "superscript one = superscript digit one, U+00B9 ISOnum" },
1823
{ 186,  "ordm", "masculine ordinal indicator, U+00BA ISOnum" },
1824
{ 187,  "raquo","right-pointing double angle quotation mark right pointing guillemet, U+00BB ISOnum" },
1825
{ 188,  "frac14","vulgar fraction one quarter = fraction one quarter, U+00BC ISOnum" },
1826
{ 189,  "frac12","vulgar fraction one half = fraction one half, U+00BD ISOnum" },
1827
{ 190,  "frac34","vulgar fraction three quarters = fraction three quarters, U+00BE ISOnum" },
1828
{ 191,  "iquest","inverted question mark = turned question mark, U+00BF ISOnum" },
1829
{ 192,  "Agrave","latin capital letter A with grave = latin capital letter A grave, U+00C0 ISOlat1" },
1830
{ 193,  "Aacute","latin capital letter A with acute, U+00C1 ISOlat1" },
1831
{ 194,  "Acirc","latin capital letter A with circumflex, U+00C2 ISOlat1" },
1832
{ 195,  "Atilde","latin capital letter A with tilde, U+00C3 ISOlat1" },
1833
{ 196,  "Auml", "latin capital letter A with diaeresis, U+00C4 ISOlat1" },
1834
{ 197,  "Aring","latin capital letter A with ring above = latin capital letter A ring, U+00C5 ISOlat1" },
1835
{ 198,  "AElig","latin capital letter AE = latin capital ligature AE, U+00C6 ISOlat1" },
1836
{ 199,  "Ccedil","latin capital letter C with cedilla, U+00C7 ISOlat1" },
1837
{ 200,  "Egrave","latin capital letter E with grave, U+00C8 ISOlat1" },
1838
{ 201,  "Eacute","latin capital letter E with acute, U+00C9 ISOlat1" },
1839
{ 202,  "Ecirc","latin capital letter E with circumflex, U+00CA ISOlat1" },
1840
{ 203,  "Euml", "latin capital letter E with diaeresis, U+00CB ISOlat1" },
1841
{ 204,  "Igrave","latin capital letter I with grave, U+00CC ISOlat1" },
1842
{ 205,  "Iacute","latin capital letter I with acute, U+00CD ISOlat1" },
1843
{ 206,  "Icirc","latin capital letter I with circumflex, U+00CE ISOlat1" },
1844
{ 207,  "Iuml", "latin capital letter I with diaeresis, U+00CF ISOlat1" },
1845
{ 208,  "ETH",  "latin capital letter ETH, U+00D0 ISOlat1" },
1846
{ 209,  "Ntilde","latin capital letter N with tilde, U+00D1 ISOlat1" },
1847
{ 210,  "Ograve","latin capital letter O with grave, U+00D2 ISOlat1" },
1848
{ 211,  "Oacute","latin capital letter O with acute, U+00D3 ISOlat1" },
1849
{ 212,  "Ocirc","latin capital letter O with circumflex, U+00D4 ISOlat1" },
1850
{ 213,  "Otilde","latin capital letter O with tilde, U+00D5 ISOlat1" },
1851
{ 214,  "Ouml", "latin capital letter O with diaeresis, U+00D6 ISOlat1" },
1852
{ 215,  "times","multiplication sign, U+00D7 ISOnum" },
1853
{ 216,  "Oslash","latin capital letter O with stroke latin capital letter O slash, U+00D8 ISOlat1" },
1854
{ 217,  "Ugrave","latin capital letter U with grave, U+00D9 ISOlat1" },
1855
{ 218,  "Uacute","latin capital letter U with acute, U+00DA ISOlat1" },
1856
{ 219,  "Ucirc","latin capital letter U with circumflex, U+00DB ISOlat1" },
1857
{ 220,  "Uuml", "latin capital letter U with diaeresis, U+00DC ISOlat1" },
1858
{ 221,  "Yacute","latin capital letter Y with acute, U+00DD ISOlat1" },
1859
{ 222,  "THORN","latin capital letter THORN, U+00DE ISOlat1" },
1860
{ 223,  "szlig","latin small letter sharp s = ess-zed, U+00DF ISOlat1" },
1861
{ 224,  "agrave","latin small letter a with grave = latin small letter a grave, U+00E0 ISOlat1" },
1862
{ 225,  "aacute","latin small letter a with acute, U+00E1 ISOlat1" },
1863
{ 226,  "acirc","latin small letter a with circumflex, U+00E2 ISOlat1" },
1864
{ 227,  "atilde","latin small letter a with tilde, U+00E3 ISOlat1" },
1865
{ 228,  "auml", "latin small letter a with diaeresis, U+00E4 ISOlat1" },
1866
{ 229,  "aring","latin small letter a with ring above = latin small letter a ring, U+00E5 ISOlat1" },
1867
{ 230,  "aelig","latin small letter ae = latin small ligature ae, U+00E6 ISOlat1" },
1868
{ 231,  "ccedil","latin small letter c with cedilla, U+00E7 ISOlat1" },
1869
{ 232,  "egrave","latin small letter e with grave, U+00E8 ISOlat1" },
1870
{ 233,  "eacute","latin small letter e with acute, U+00E9 ISOlat1" },
1871
{ 234,  "ecirc","latin small letter e with circumflex, U+00EA ISOlat1" },
1872
{ 235,  "euml", "latin small letter e with diaeresis, U+00EB ISOlat1" },
1873
{ 236,  "igrave","latin small letter i with grave, U+00EC ISOlat1" },
1874
{ 237,  "iacute","latin small letter i with acute, U+00ED ISOlat1" },
1875
{ 238,  "icirc","latin small letter i with circumflex, U+00EE ISOlat1" },
1876
{ 239,  "iuml", "latin small letter i with diaeresis, U+00EF ISOlat1" },
1877
{ 240,  "eth",  "latin small letter eth, U+00F0 ISOlat1" },
1878
{ 241,  "ntilde","latin small letter n with tilde, U+00F1 ISOlat1" },
1879
{ 242,  "ograve","latin small letter o with grave, U+00F2 ISOlat1" },
1880
{ 243,  "oacute","latin small letter o with acute, U+00F3 ISOlat1" },
1881
{ 244,  "ocirc","latin small letter o with circumflex, U+00F4 ISOlat1" },
1882
{ 245,  "otilde","latin small letter o with tilde, U+00F5 ISOlat1" },
1883
{ 246,  "ouml", "latin small letter o with diaeresis, U+00F6 ISOlat1" },
1884
{ 247,  "divide","division sign, U+00F7 ISOnum" },
1885
{ 248,  "oslash","latin small letter o with stroke, = latin small letter o slash, U+00F8 ISOlat1" },
1886
{ 249,  "ugrave","latin small letter u with grave, U+00F9 ISOlat1" },
1887
{ 250,  "uacute","latin small letter u with acute, U+00FA ISOlat1" },
1888
{ 251,  "ucirc","latin small letter u with circumflex, U+00FB ISOlat1" },
1889
{ 252,  "uuml", "latin small letter u with diaeresis, U+00FC ISOlat1" },
1890
{ 253,  "yacute","latin small letter y with acute, U+00FD ISOlat1" },
1891
{ 254,  "thorn","latin small letter thorn with, U+00FE ISOlat1" },
1892
{ 255,  "yuml", "latin small letter y with diaeresis, U+00FF ISOlat1" },
1893
1894
{ 338,  "OElig","latin capital ligature OE, U+0152 ISOlat2" },
1895
{ 339,  "oelig","latin small ligature oe, U+0153 ISOlat2" },
1896
{ 352,  "Scaron","latin capital letter S with caron, U+0160 ISOlat2" },
1897
{ 353,  "scaron","latin small letter s with caron, U+0161 ISOlat2" },
1898
{ 376,  "Yuml", "latin capital letter Y with diaeresis, U+0178 ISOlat2" },
1899
1900
/*
1901
 * Anything below should really be kept as entities references
1902
 */
1903
{ 402,  "fnof", "latin small f with hook = function = florin, U+0192 ISOtech" },
1904
1905
{ 710,  "circ", "modifier letter circumflex accent, U+02C6 ISOpub" },
1906
{ 732,  "tilde","small tilde, U+02DC ISOdia" },
1907
1908
{ 913,  "Alpha","greek capital letter alpha, U+0391" },
1909
{ 914,  "Beta", "greek capital letter beta, U+0392" },
1910
{ 915,  "Gamma","greek capital letter gamma, U+0393 ISOgrk3" },
1911
{ 916,  "Delta","greek capital letter delta, U+0394 ISOgrk3" },
1912
{ 917,  "Epsilon","greek capital letter epsilon, U+0395" },
1913
{ 918,  "Zeta", "greek capital letter zeta, U+0396" },
1914
{ 919,  "Eta",  "greek capital letter eta, U+0397" },
1915
{ 920,  "Theta","greek capital letter theta, U+0398 ISOgrk3" },
1916
{ 921,  "Iota", "greek capital letter iota, U+0399" },
1917
{ 922,  "Kappa","greek capital letter kappa, U+039A" },
1918
{ 923,  "Lambda", "greek capital letter lambda, U+039B ISOgrk3" },
1919
{ 924,  "Mu", "greek capital letter mu, U+039C" },
1920
{ 925,  "Nu", "greek capital letter nu, U+039D" },
1921
{ 926,  "Xi", "greek capital letter xi, U+039E ISOgrk3" },
1922
{ 927,  "Omicron","greek capital letter omicron, U+039F" },
1923
{ 928,  "Pi", "greek capital letter pi, U+03A0 ISOgrk3" },
1924
{ 929,  "Rho",  "greek capital letter rho, U+03A1" },
1925
{ 931,  "Sigma","greek capital letter sigma, U+03A3 ISOgrk3" },
1926
{ 932,  "Tau",  "greek capital letter tau, U+03A4" },
1927
{ 933,  "Upsilon","greek capital letter upsilon, U+03A5 ISOgrk3" },
1928
{ 934,  "Phi",  "greek capital letter phi, U+03A6 ISOgrk3" },
1929
{ 935,  "Chi",  "greek capital letter chi, U+03A7" },
1930
{ 936,  "Psi",  "greek capital letter psi, U+03A8 ISOgrk3" },
1931
{ 937,  "Omega","greek capital letter omega, U+03A9 ISOgrk3" },
1932
1933
{ 945,  "alpha","greek small letter alpha, U+03B1 ISOgrk3" },
1934
{ 946,  "beta", "greek small letter beta, U+03B2 ISOgrk3" },
1935
{ 947,  "gamma","greek small letter gamma, U+03B3 ISOgrk3" },
1936
{ 948,  "delta","greek small letter delta, U+03B4 ISOgrk3" },
1937
{ 949,  "epsilon","greek small letter epsilon, U+03B5 ISOgrk3" },
1938
{ 950,  "zeta", "greek small letter zeta, U+03B6 ISOgrk3" },
1939
{ 951,  "eta",  "greek small letter eta, U+03B7 ISOgrk3" },
1940
{ 952,  "theta","greek small letter theta, U+03B8 ISOgrk3" },
1941
{ 953,  "iota", "greek small letter iota, U+03B9 ISOgrk3" },
1942
{ 954,  "kappa","greek small letter kappa, U+03BA ISOgrk3" },
1943
{ 955,  "lambda","greek small letter lambda, U+03BB ISOgrk3" },
1944
{ 956,  "mu", "greek small letter mu, U+03BC ISOgrk3" },
1945
{ 957,  "nu", "greek small letter nu, U+03BD ISOgrk3" },
1946
{ 958,  "xi", "greek small letter xi, U+03BE ISOgrk3" },
1947
{ 959,  "omicron","greek small letter omicron, U+03BF NEW" },
1948
{ 960,  "pi", "greek small letter pi, U+03C0 ISOgrk3" },
1949
{ 961,  "rho",  "greek small letter rho, U+03C1 ISOgrk3" },
1950
{ 962,  "sigmaf","greek small letter final sigma, U+03C2 ISOgrk3" },
1951
{ 963,  "sigma","greek small letter sigma, U+03C3 ISOgrk3" },
1952
{ 964,  "tau",  "greek small letter tau, U+03C4 ISOgrk3" },
1953
{ 965,  "upsilon","greek small letter upsilon, U+03C5 ISOgrk3" },
1954
{ 966,  "phi",  "greek small letter phi, U+03C6 ISOgrk3" },
1955
{ 967,  "chi",  "greek small letter chi, U+03C7 ISOgrk3" },
1956
{ 968,  "psi",  "greek small letter psi, U+03C8 ISOgrk3" },
1957
{ 969,  "omega","greek small letter omega, U+03C9 ISOgrk3" },
1958
{ 977,  "thetasym","greek small letter theta symbol, U+03D1 NEW" },
1959
{ 978,  "upsih","greek upsilon with hook symbol, U+03D2 NEW" },
1960
{ 982,  "piv",  "greek pi symbol, U+03D6 ISOgrk3" },
1961
1962
{ 8194, "ensp", "en space, U+2002 ISOpub" },
1963
{ 8195, "emsp", "em space, U+2003 ISOpub" },
1964
{ 8201, "thinsp","thin space, U+2009 ISOpub" },
1965
{ 8204, "zwnj", "zero width non-joiner, U+200C NEW RFC 2070" },
1966
{ 8205, "zwj",  "zero width joiner, U+200D NEW RFC 2070" },
1967
{ 8206, "lrm",  "left-to-right mark, U+200E NEW RFC 2070" },
1968
{ 8207, "rlm",  "right-to-left mark, U+200F NEW RFC 2070" },
1969
{ 8211, "ndash","en dash, U+2013 ISOpub" },
1970
{ 8212, "mdash","em dash, U+2014 ISOpub" },
1971
{ 8216, "lsquo","left single quotation mark, U+2018 ISOnum" },
1972
{ 8217, "rsquo","right single quotation mark, U+2019 ISOnum" },
1973
{ 8218, "sbquo","single low-9 quotation mark, U+201A NEW" },
1974
{ 8220, "ldquo","left double quotation mark, U+201C ISOnum" },
1975
{ 8221, "rdquo","right double quotation mark, U+201D ISOnum" },
1976
{ 8222, "bdquo","double low-9 quotation mark, U+201E NEW" },
1977
{ 8224, "dagger","dagger, U+2020 ISOpub" },
1978
{ 8225, "Dagger","double dagger, U+2021 ISOpub" },
1979
1980
{ 8226, "bull", "bullet = black small circle, U+2022 ISOpub" },
1981
{ 8230, "hellip","horizontal ellipsis = three dot leader, U+2026 ISOpub" },
1982
1983
{ 8240, "permil","per mille sign, U+2030 ISOtech" },
1984
1985
{ 8242, "prime","prime = minutes = feet, U+2032 ISOtech" },
1986
{ 8243, "Prime","double prime = seconds = inches, U+2033 ISOtech" },
1987
1988
{ 8249, "lsaquo","single left-pointing angle quotation mark, U+2039 ISO proposed" },
1989
{ 8250, "rsaquo","single right-pointing angle quotation mark, U+203A ISO proposed" },
1990
1991
{ 8254, "oline","overline = spacing overscore, U+203E NEW" },
1992
{ 8260, "frasl","fraction slash, U+2044 NEW" },
1993
1994
{ 8364, "euro", "euro sign, U+20AC NEW" },
1995
1996
{ 8465, "image","blackletter capital I = imaginary part, U+2111 ISOamso" },
1997
{ 8472, "weierp","script capital P = power set = Weierstrass p, U+2118 ISOamso" },
1998
{ 8476, "real", "blackletter capital R = real part symbol, U+211C ISOamso" },
1999
{ 8482, "trade","trade mark sign, U+2122 ISOnum" },
2000
{ 8501, "alefsym","alef symbol = first transfinite cardinal, U+2135 NEW" },
2001
{ 8592, "larr", "leftwards arrow, U+2190 ISOnum" },
2002
{ 8593, "uarr", "upwards arrow, U+2191 ISOnum" },
2003
{ 8594, "rarr", "rightwards arrow, U+2192 ISOnum" },
2004
{ 8595, "darr", "downwards arrow, U+2193 ISOnum" },
2005
{ 8596, "harr", "left right arrow, U+2194 ISOamsa" },
2006
{ 8629, "crarr","downwards arrow with corner leftwards = carriage return, U+21B5 NEW" },
2007
{ 8656, "lArr", "leftwards double arrow, U+21D0 ISOtech" },
2008
{ 8657, "uArr", "upwards double arrow, U+21D1 ISOamsa" },
2009
{ 8658, "rArr", "rightwards double arrow, U+21D2 ISOtech" },
2010
{ 8659, "dArr", "downwards double arrow, U+21D3 ISOamsa" },
2011
{ 8660, "hArr", "left right double arrow, U+21D4 ISOamsa" },
2012
2013
{ 8704, "forall","for all, U+2200 ISOtech" },
2014
{ 8706, "part", "partial differential, U+2202 ISOtech" },
2015
{ 8707, "exist","there exists, U+2203 ISOtech" },
2016
{ 8709, "empty","empty set = null set = diameter, U+2205 ISOamso" },
2017
{ 8711, "nabla","nabla = backward difference, U+2207 ISOtech" },
2018
{ 8712, "isin", "element of, U+2208 ISOtech" },
2019
{ 8713, "notin","not an element of, U+2209 ISOtech" },
2020
{ 8715, "ni", "contains as member, U+220B ISOtech" },
2021
{ 8719, "prod", "n-ary product = product sign, U+220F ISOamsb" },
2022
{ 8721, "sum",  "n-ary summation, U+2211 ISOamsb" },
2023
{ 8722, "minus","minus sign, U+2212 ISOtech" },
2024
{ 8727, "lowast","asterisk operator, U+2217 ISOtech" },
2025
{ 8730, "radic","square root = radical sign, U+221A ISOtech" },
2026
{ 8733, "prop", "proportional to, U+221D ISOtech" },
2027
{ 8734, "infin","infinity, U+221E ISOtech" },
2028
{ 8736, "ang",  "angle, U+2220 ISOamso" },
2029
{ 8743, "and",  "logical and = wedge, U+2227 ISOtech" },
2030
{ 8744, "or", "logical or = vee, U+2228 ISOtech" },
2031
{ 8745, "cap",  "intersection = cap, U+2229 ISOtech" },
2032
{ 8746, "cup",  "union = cup, U+222A ISOtech" },
2033
{ 8747, "int",  "integral, U+222B ISOtech" },
2034
{ 8756, "there4","therefore, U+2234 ISOtech" },
2035
{ 8764, "sim",  "tilde operator = varies with = similar to, U+223C ISOtech" },
2036
{ 8773, "cong", "approximately equal to, U+2245 ISOtech" },
2037
{ 8776, "asymp","almost equal to = asymptotic to, U+2248 ISOamsr" },
2038
{ 8800, "ne", "not equal to, U+2260 ISOtech" },
2039
{ 8801, "equiv","identical to, U+2261 ISOtech" },
2040
{ 8804, "le", "less-than or equal to, U+2264 ISOtech" },
2041
{ 8805, "ge", "greater-than or equal to, U+2265 ISOtech" },
2042
{ 8834, "sub",  "subset of, U+2282 ISOtech" },
2043
{ 8835, "sup",  "superset of, U+2283 ISOtech" },
2044
{ 8836, "nsub", "not a subset of, U+2284 ISOamsn" },
2045
{ 8838, "sube", "subset of or equal to, U+2286 ISOtech" },
2046
{ 8839, "supe", "superset of or equal to, U+2287 ISOtech" },
2047
{ 8853, "oplus","circled plus = direct sum, U+2295 ISOamsb" },
2048
{ 8855, "otimes","circled times = vector product, U+2297 ISOamsb" },
2049
{ 8869, "perp", "up tack = orthogonal to = perpendicular, U+22A5 ISOtech" },
2050
{ 8901, "sdot", "dot operator, U+22C5 ISOamsb" },
2051
{ 8968, "lceil","left ceiling = apl upstile, U+2308 ISOamsc" },
2052
{ 8969, "rceil","right ceiling, U+2309 ISOamsc" },
2053
{ 8970, "lfloor","left floor = apl downstile, U+230A ISOamsc" },
2054
{ 8971, "rfloor","right floor, U+230B ISOamsc" },
2055
{ 9001, "lang", "left-pointing angle bracket = bra, U+2329 ISOtech" },
2056
{ 9002, "rang", "right-pointing angle bracket = ket, U+232A ISOtech" },
2057
{ 9674, "loz",  "lozenge, U+25CA ISOpub" },
2058
2059
{ 9824, "spades","black spade suit, U+2660 ISOpub" },
2060
{ 9827, "clubs","black club suit = shamrock, U+2663 ISOpub" },
2061
{ 9829, "hearts","black heart suit = valentine, U+2665 ISOpub" },
2062
{ 9830, "diams","black diamond suit, U+2666 ISOpub" },
2063
2064
};
2065
2066
/************************************************************************
2067
 *                  *
2068
 *    Commodity functions to handle entities      *
2069
 *                  *
2070
 ************************************************************************/
2071
2072
/*
2073
 * Macro used to grow the current buffer.
2074
 */
2075
0
#define growBuffer(buffer) {           \
2076
0
    xmlChar *tmp;             \
2077
0
    buffer##_size *= 2;             \
2078
0
    tmp = (xmlChar *) xmlRealloc(buffer, buffer##_size * sizeof(xmlChar)); \
2079
0
    if (tmp == NULL) {           \
2080
0
  htmlErrMemory(ctxt, "growing buffer\n");      \
2081
0
  xmlFree(buffer);            \
2082
0
  return(NULL);             \
2083
0
    }                  \
2084
0
    buffer = tmp;             \
2085
0
}
2086
2087
/**
2088
 * htmlEntityLookup:
2089
 * @name: the entity name
2090
 *
2091
 * Lookup the given entity in EntitiesTable
2092
 *
2093
 * TODO: the linear scan is really ugly, an hash table is really needed.
2094
 *
2095
 * Returns the associated htmlEntityDescPtr if found, NULL otherwise.
2096
 */
2097
const htmlEntityDesc *
2098
0
htmlEntityLookup(const xmlChar *name) {
2099
0
    unsigned int i;
2100
2101
0
    for (i = 0;i < (sizeof(html40EntitiesTable)/
2102
0
                    sizeof(html40EntitiesTable[0]));i++) {
2103
0
        if (xmlStrEqual(name, BAD_CAST html40EntitiesTable[i].name)) {
2104
0
            return((htmlEntityDescPtr) &html40EntitiesTable[i]);
2105
0
  }
2106
0
    }
2107
0
    return(NULL);
2108
0
}
2109
2110
/**
2111
 * htmlEntityValueLookup:
2112
 * @value: the entity's unicode value
2113
 *
2114
 * Lookup the given entity in EntitiesTable
2115
 *
2116
 * TODO: the linear scan is really ugly, an hash table is really needed.
2117
 *
2118
 * Returns the associated htmlEntityDescPtr if found, NULL otherwise.
2119
 */
2120
const htmlEntityDesc *
2121
0
htmlEntityValueLookup(unsigned int value) {
2122
0
    unsigned int i;
2123
2124
0
    for (i = 0;i < (sizeof(html40EntitiesTable)/
2125
0
                    sizeof(html40EntitiesTable[0]));i++) {
2126
0
        if (html40EntitiesTable[i].value >= value) {
2127
0
      if (html40EntitiesTable[i].value > value)
2128
0
    break;
2129
0
            return((htmlEntityDescPtr) &html40EntitiesTable[i]);
2130
0
  }
2131
0
    }
2132
0
    return(NULL);
2133
0
}
2134
2135
/**
2136
 * UTF8ToHtml:
2137
 * @out:  a pointer to an array of bytes to store the result
2138
 * @outlen:  the length of @out
2139
 * @in:  a pointer to an array of UTF-8 chars
2140
 * @inlen:  the length of @in
2141
 *
2142
 * Take a block of UTF-8 chars in and try to convert it to an ASCII
2143
 * plus HTML entities block of chars out.
2144
 *
2145
 * Returns 0 if success, -2 if the transcoding fails, or -1 otherwise
2146
 * The value of @inlen after return is the number of octets consumed
2147
 *     as the return value is positive, else unpredictable.
2148
 * The value of @outlen after return is the number of octets consumed.
2149
 */
2150
int
2151
UTF8ToHtml(unsigned char* out, int *outlen,
2152
0
              const unsigned char* in, int *inlen) {
2153
0
    const unsigned char* processed = in;
2154
0
    const unsigned char* outend;
2155
0
    const unsigned char* outstart = out;
2156
0
    const unsigned char* instart = in;
2157
0
    const unsigned char* inend;
2158
0
    unsigned int c, d;
2159
0
    int trailing;
2160
2161
0
    if ((out == NULL) || (outlen == NULL) || (inlen == NULL)) return(-1);
2162
0
    if (in == NULL) {
2163
        /*
2164
   * initialization nothing to do
2165
   */
2166
0
  *outlen = 0;
2167
0
  *inlen = 0;
2168
0
  return(0);
2169
0
    }
2170
0
    inend = in + (*inlen);
2171
0
    outend = out + (*outlen);
2172
0
    while (in < inend) {
2173
0
  d = *in++;
2174
0
  if      (d < 0x80)  { c= d; trailing= 0; }
2175
0
  else if (d < 0xC0) {
2176
      /* trailing byte in leading position */
2177
0
      *outlen = out - outstart;
2178
0
      *inlen = processed - instart;
2179
0
      return(-2);
2180
0
        } else if (d < 0xE0)  { c= d & 0x1F; trailing= 1; }
2181
0
        else if (d < 0xF0)  { c= d & 0x0F; trailing= 2; }
2182
0
        else if (d < 0xF8)  { c= d & 0x07; trailing= 3; }
2183
0
  else {
2184
      /* no chance for this in Ascii */
2185
0
      *outlen = out - outstart;
2186
0
      *inlen = processed - instart;
2187
0
      return(-2);
2188
0
  }
2189
2190
0
  if (inend - in < trailing) {
2191
0
      break;
2192
0
  }
2193
2194
0
  for ( ; trailing; trailing--) {
2195
0
      if ((in >= inend) || (((d= *in++) & 0xC0) != 0x80))
2196
0
    break;
2197
0
      c <<= 6;
2198
0
      c |= d & 0x3F;
2199
0
  }
2200
2201
  /* assertion: c is a single UTF-4 value */
2202
0
  if (c < 0x80) {
2203
0
      if (out + 1 >= outend)
2204
0
    break;
2205
0
      *out++ = c;
2206
0
  } else {
2207
0
      int len;
2208
0
      const htmlEntityDesc * ent;
2209
0
      const char *cp;
2210
0
      char nbuf[16];
2211
2212
      /*
2213
       * Try to lookup a predefined HTML entity for it
2214
       */
2215
2216
0
      ent = htmlEntityValueLookup(c);
2217
0
      if (ent == NULL) {
2218
0
        snprintf(nbuf, sizeof(nbuf), "#%u", c);
2219
0
        cp = nbuf;
2220
0
      }
2221
0
      else
2222
0
        cp = ent->name;
2223
0
      len = strlen(cp);
2224
0
      if (out + 2 + len >= outend)
2225
0
    break;
2226
0
      *out++ = '&';
2227
0
      memcpy(out, cp, len);
2228
0
      out += len;
2229
0
      *out++ = ';';
2230
0
  }
2231
0
  processed = in;
2232
0
    }
2233
0
    *outlen = out - outstart;
2234
0
    *inlen = processed - instart;
2235
0
    return(0);
2236
0
}
2237
2238
/**
2239
 * htmlEncodeEntities:
2240
 * @out:  a pointer to an array of bytes to store the result
2241
 * @outlen:  the length of @out
2242
 * @in:  a pointer to an array of UTF-8 chars
2243
 * @inlen:  the length of @in
2244
 * @quoteChar: the quote character to escape (' or ") or zero.
2245
 *
2246
 * Take a block of UTF-8 chars in and try to convert it to an ASCII
2247
 * plus HTML entities block of chars out.
2248
 *
2249
 * Returns 0 if success, -2 if the transcoding fails, or -1 otherwise
2250
 * The value of @inlen after return is the number of octets consumed
2251
 *     as the return value is positive, else unpredictable.
2252
 * The value of @outlen after return is the number of octets consumed.
2253
 */
2254
int
2255
htmlEncodeEntities(unsigned char* out, int *outlen,
2256
0
       const unsigned char* in, int *inlen, int quoteChar) {
2257
0
    const unsigned char* processed = in;
2258
0
    const unsigned char* outend;
2259
0
    const unsigned char* outstart = out;
2260
0
    const unsigned char* instart = in;
2261
0
    const unsigned char* inend;
2262
0
    unsigned int c, d;
2263
0
    int trailing;
2264
2265
0
    if ((out == NULL) || (outlen == NULL) || (inlen == NULL) || (in == NULL))
2266
0
        return(-1);
2267
0
    outend = out + (*outlen);
2268
0
    inend = in + (*inlen);
2269
0
    while (in < inend) {
2270
0
  d = *in++;
2271
0
  if      (d < 0x80)  { c= d; trailing= 0; }
2272
0
  else if (d < 0xC0) {
2273
      /* trailing byte in leading position */
2274
0
      *outlen = out - outstart;
2275
0
      *inlen = processed - instart;
2276
0
      return(-2);
2277
0
        } else if (d < 0xE0)  { c= d & 0x1F; trailing= 1; }
2278
0
        else if (d < 0xF0)  { c= d & 0x0F; trailing= 2; }
2279
0
        else if (d < 0xF8)  { c= d & 0x07; trailing= 3; }
2280
0
  else {
2281
      /* no chance for this in Ascii */
2282
0
      *outlen = out - outstart;
2283
0
      *inlen = processed - instart;
2284
0
      return(-2);
2285
0
  }
2286
2287
0
  if (inend - in < trailing)
2288
0
      break;
2289
2290
0
  while (trailing--) {
2291
0
      if (((d= *in++) & 0xC0) != 0x80) {
2292
0
    *outlen = out - outstart;
2293
0
    *inlen = processed - instart;
2294
0
    return(-2);
2295
0
      }
2296
0
      c <<= 6;
2297
0
      c |= d & 0x3F;
2298
0
  }
2299
2300
  /* assertion: c is a single UTF-4 value */
2301
0
  if ((c < 0x80) && (c != (unsigned int) quoteChar) &&
2302
0
      (c != '&') && (c != '<') && (c != '>')) {
2303
0
      if (out >= outend)
2304
0
    break;
2305
0
      *out++ = c;
2306
0
  } else {
2307
0
      const htmlEntityDesc * ent;
2308
0
      const char *cp;
2309
0
      char nbuf[16];
2310
0
      int len;
2311
2312
      /*
2313
       * Try to lookup a predefined HTML entity for it
2314
       */
2315
0
      ent = htmlEntityValueLookup(c);
2316
0
      if (ent == NULL) {
2317
0
    snprintf(nbuf, sizeof(nbuf), "#%u", c);
2318
0
    cp = nbuf;
2319
0
      }
2320
0
      else
2321
0
    cp = ent->name;
2322
0
      len = strlen(cp);
2323
0
      if (out + 2 + len > outend)
2324
0
    break;
2325
0
      *out++ = '&';
2326
0
      memcpy(out, cp, len);
2327
0
      out += len;
2328
0
      *out++ = ';';
2329
0
  }
2330
0
  processed = in;
2331
0
    }
2332
0
    *outlen = out - outstart;
2333
0
    *inlen = processed - instart;
2334
0
    return(0);
2335
0
}
2336
2337
/************************************************************************
2338
 *                  *
2339
 *    Commodity functions to handle streams     *
2340
 *                  *
2341
 ************************************************************************/
2342
2343
#ifdef LIBXML_PUSH_ENABLED
2344
/**
2345
 * htmlNewInputStream:
2346
 * @ctxt:  an HTML parser context
2347
 *
2348
 * Create a new input stream structure
2349
 * Returns the new input stream or NULL
2350
 */
2351
static htmlParserInputPtr
2352
0
htmlNewInputStream(htmlParserCtxtPtr ctxt) {
2353
0
    htmlParserInputPtr input;
2354
2355
0
    input = (xmlParserInputPtr) xmlMalloc(sizeof(htmlParserInput));
2356
0
    if (input == NULL) {
2357
0
        htmlErrMemory(ctxt, "couldn't allocate a new input stream\n");
2358
0
  return(NULL);
2359
0
    }
2360
0
    memset(input, 0, sizeof(htmlParserInput));
2361
0
    input->filename = NULL;
2362
0
    input->directory = NULL;
2363
0
    input->base = NULL;
2364
0
    input->cur = NULL;
2365
0
    input->buf = NULL;
2366
0
    input->line = 1;
2367
0
    input->col = 1;
2368
0
    input->buf = NULL;
2369
0
    input->free = NULL;
2370
0
    input->version = NULL;
2371
0
    input->consumed = 0;
2372
0
    input->length = 0;
2373
0
    return(input);
2374
0
}
2375
#endif
2376
2377
2378
/************************************************************************
2379
 *                  *
2380
 *    Commodity functions, cleanup needed ?     *
2381
 *                  *
2382
 ************************************************************************/
2383
/*
2384
 * all tags allowing pc data from the html 4.01 loose dtd
2385
 * NOTE: it might be more appropriate to integrate this information
2386
 * into the html40ElementTable array but I don't want to risk any
2387
 * binary incompatibility
2388
 */
2389
static const char *allowPCData[] = {
2390
    "a", "abbr", "acronym", "address", "applet", "b", "bdo", "big",
2391
    "blockquote", "body", "button", "caption", "center", "cite", "code",
2392
    "dd", "del", "dfn", "div", "dt", "em", "font", "form", "h1", "h2",
2393
    "h3", "h4", "h5", "h6", "i", "iframe", "ins", "kbd", "label", "legend",
2394
    "li", "noframes", "noscript", "object", "p", "pre", "q", "s", "samp",
2395
    "small", "span", "strike", "strong", "td", "th", "tt", "u", "var"
2396
};
2397
2398
/**
2399
 * areBlanks:
2400
 * @ctxt:  an HTML parser context
2401
 * @str:  a xmlChar *
2402
 * @len:  the size of @str
2403
 *
2404
 * Is this a sequence of blank chars that one can ignore ?
2405
 *
2406
 * Returns 1 if ignorable 0 otherwise.
2407
 */
2408
2409
0
static int areBlanks(htmlParserCtxtPtr ctxt, const xmlChar *str, int len) {
2410
0
    unsigned int i;
2411
0
    int j;
2412
0
    xmlNodePtr lastChild;
2413
0
    xmlDtdPtr dtd;
2414
2415
0
    for (j = 0;j < len;j++)
2416
0
        if (!(IS_BLANK_CH(str[j]))) return(0);
2417
2418
0
    if (CUR == 0) return(1);
2419
0
    if (CUR != '<') return(0);
2420
0
    if (ctxt->name == NULL)
2421
0
  return(1);
2422
0
    if (xmlStrEqual(ctxt->name, BAD_CAST"html"))
2423
0
  return(1);
2424
0
    if (xmlStrEqual(ctxt->name, BAD_CAST"head"))
2425
0
  return(1);
2426
2427
    /* Only strip CDATA children of the body tag for strict HTML DTDs */
2428
0
    if (xmlStrEqual(ctxt->name, BAD_CAST "body") && ctxt->myDoc != NULL) {
2429
0
        dtd = xmlGetIntSubset(ctxt->myDoc);
2430
0
        if (dtd != NULL && dtd->ExternalID != NULL) {
2431
0
            if (!xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4.01//EN") ||
2432
0
                    !xmlStrcasecmp(dtd->ExternalID, BAD_CAST "-//W3C//DTD HTML 4//EN"))
2433
0
                return(1);
2434
0
        }
2435
0
    }
2436
2437
0
    if (ctxt->node == NULL) return(0);
2438
0
    lastChild = xmlGetLastChild(ctxt->node);
2439
0
    while ((lastChild) && (lastChild->type == XML_COMMENT_NODE))
2440
0
  lastChild = lastChild->prev;
2441
0
    if (lastChild == NULL) {
2442
0
        if ((ctxt->node->type != XML_ELEMENT_NODE) &&
2443
0
            (ctxt->node->content != NULL)) return(0);
2444
  /* keep ws in constructs like ...<b> </b>...
2445
     for all tags "b" allowing PCDATA */
2446
0
  for ( i = 0; i < sizeof(allowPCData)/sizeof(allowPCData[0]); i++ ) {
2447
0
      if ( xmlStrEqual(ctxt->name, BAD_CAST allowPCData[i]) ) {
2448
0
    return(0);
2449
0
      }
2450
0
  }
2451
0
    } else if (xmlNodeIsText(lastChild)) {
2452
0
        return(0);
2453
0
    } else {
2454
  /* keep ws in constructs like <p><b>xy</b> <i>z</i><p>
2455
     for all tags "p" allowing PCDATA */
2456
0
  for ( i = 0; i < sizeof(allowPCData)/sizeof(allowPCData[0]); i++ ) {
2457
0
      if ( xmlStrEqual(lastChild->name, BAD_CAST allowPCData[i]) ) {
2458
0
    return(0);
2459
0
      }
2460
0
  }
2461
0
    }
2462
0
    return(1);
2463
0
}
2464
2465
/**
2466
 * htmlNewDocNoDtD:
2467
 * @URI:  URI for the dtd, or NULL
2468
 * @ExternalID:  the external ID of the DTD, or NULL
2469
 *
2470
 * Creates a new HTML document without a DTD node if @URI and @ExternalID
2471
 * are NULL
2472
 *
2473
 * Returns a new document, do not initialize the DTD if not provided
2474
 */
2475
htmlDocPtr
2476
0
htmlNewDocNoDtD(const xmlChar *URI, const xmlChar *ExternalID) {
2477
0
    xmlDocPtr cur;
2478
2479
    /*
2480
     * Allocate a new document and fill the fields.
2481
     */
2482
0
    cur = (xmlDocPtr) xmlMalloc(sizeof(xmlDoc));
2483
0
    if (cur == NULL) {
2484
0
  htmlErrMemory(NULL, "HTML document creation failed\n");
2485
0
  return(NULL);
2486
0
    }
2487
0
    memset(cur, 0, sizeof(xmlDoc));
2488
2489
0
    cur->type = XML_HTML_DOCUMENT_NODE;
2490
0
    cur->version = NULL;
2491
0
    cur->intSubset = NULL;
2492
0
    cur->doc = cur;
2493
0
    cur->name = NULL;
2494
0
    cur->children = NULL;
2495
0
    cur->extSubset = NULL;
2496
0
    cur->oldNs = NULL;
2497
0
    cur->encoding = NULL;
2498
0
    cur->standalone = 1;
2499
0
    cur->compression = 0;
2500
0
    cur->ids = NULL;
2501
0
    cur->refs = NULL;
2502
0
    cur->_private = NULL;
2503
0
    cur->charset = XML_CHAR_ENCODING_UTF8;
2504
0
    cur->properties = XML_DOC_HTML | XML_DOC_USERBUILT;
2505
0
    if ((ExternalID != NULL) ||
2506
0
  (URI != NULL))
2507
0
  xmlCreateIntSubset(cur, BAD_CAST "html", ExternalID, URI);
2508
0
    if ((__xmlRegisterCallbacks) && (xmlRegisterNodeDefaultValue))
2509
0
  xmlRegisterNodeDefaultValue((xmlNodePtr)cur);
2510
0
    return(cur);
2511
0
}
2512
2513
/**
2514
 * htmlNewDoc:
2515
 * @URI:  URI for the dtd, or NULL
2516
 * @ExternalID:  the external ID of the DTD, or NULL
2517
 *
2518
 * Creates a new HTML document
2519
 *
2520
 * Returns a new document
2521
 */
2522
htmlDocPtr
2523
0
htmlNewDoc(const xmlChar *URI, const xmlChar *ExternalID) {
2524
0
    if ((URI == NULL) && (ExternalID == NULL))
2525
0
  return(htmlNewDocNoDtD(
2526
0
        BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd",
2527
0
        BAD_CAST "-//W3C//DTD HTML 4.0 Transitional//EN"));
2528
2529
0
    return(htmlNewDocNoDtD(URI, ExternalID));
2530
0
}
2531
2532
2533
/************************************************************************
2534
 *                  *
2535
 *      The parser itself       *
2536
 *  Relates to http://www.w3.org/TR/html40        *
2537
 *                  *
2538
 ************************************************************************/
2539
2540
/************************************************************************
2541
 *                  *
2542
 *      The parser itself       *
2543
 *                  *
2544
 ************************************************************************/
2545
2546
static const xmlChar * htmlParseNameComplex(xmlParserCtxtPtr ctxt);
2547
2548
static void
2549
0
htmlSkipBogusComment(htmlParserCtxtPtr ctxt) {
2550
0
    int c;
2551
2552
0
    htmlParseErr(ctxt, XML_HTML_INCORRECTLY_OPENED_COMMENT,
2553
0
                 "Incorrectly opened comment\n", NULL, NULL);
2554
2555
0
    do {
2556
0
        c = CUR;
2557
0
        if (c == 0)
2558
0
            break;
2559
0
        NEXT;
2560
0
    } while (c != '>');
2561
0
}
2562
2563
/**
2564
 * htmlParseHTMLName:
2565
 * @ctxt:  an HTML parser context
2566
 *
2567
 * parse an HTML tag or attribute name, note that we convert it to lowercase
2568
 * since HTML names are not case-sensitive.
2569
 *
2570
 * Returns the Tag Name parsed or NULL
2571
 */
2572
2573
static const xmlChar *
2574
0
htmlParseHTMLName(htmlParserCtxtPtr ctxt) {
2575
0
    int i = 0;
2576
0
    xmlChar loc[HTML_PARSER_BUFFER_SIZE];
2577
2578
0
    if (!IS_ASCII_LETTER(CUR) && (CUR != '_') &&
2579
0
        (CUR != ':') && (CUR != '.')) return(NULL);
2580
2581
0
    while ((i < HTML_PARSER_BUFFER_SIZE) &&
2582
0
           ((IS_ASCII_LETTER(CUR)) || (IS_ASCII_DIGIT(CUR)) ||
2583
0
     (CUR == ':') || (CUR == '-') || (CUR == '_') ||
2584
0
           (CUR == '.'))) {
2585
0
  if ((CUR >= 'A') && (CUR <= 'Z')) loc[i] = CUR + 0x20;
2586
0
        else loc[i] = CUR;
2587
0
  i++;
2588
2589
0
  NEXT;
2590
0
    }
2591
2592
0
    return(xmlDictLookup(ctxt->dict, loc, i));
2593
0
}
2594
2595
2596
/**
2597
 * htmlParseHTMLName_nonInvasive:
2598
 * @ctxt:  an HTML parser context
2599
 *
2600
 * parse an HTML tag or attribute name, note that we convert it to lowercase
2601
 * since HTML names are not case-sensitive, this doesn't consume the data
2602
 * from the stream, it's a look-ahead
2603
 *
2604
 * Returns the Tag Name parsed or NULL
2605
 */
2606
2607
static const xmlChar *
2608
0
htmlParseHTMLName_nonInvasive(htmlParserCtxtPtr ctxt) {
2609
0
    int i = 0;
2610
0
    xmlChar loc[HTML_PARSER_BUFFER_SIZE];
2611
2612
0
    if (!IS_ASCII_LETTER(NXT(1)) && (NXT(1) != '_') &&
2613
0
        (NXT(1) != ':')) return(NULL);
2614
2615
0
    while ((i < HTML_PARSER_BUFFER_SIZE) &&
2616
0
           ((IS_ASCII_LETTER(NXT(1+i))) || (IS_ASCII_DIGIT(NXT(1+i))) ||
2617
0
     (NXT(1+i) == ':') || (NXT(1+i) == '-') || (NXT(1+i) == '_'))) {
2618
0
  if ((NXT(1+i) >= 'A') && (NXT(1+i) <= 'Z')) loc[i] = NXT(1+i) + 0x20;
2619
0
        else loc[i] = NXT(1+i);
2620
0
  i++;
2621
0
    }
2622
2623
0
    return(xmlDictLookup(ctxt->dict, loc, i));
2624
0
}
2625
2626
2627
/**
2628
 * htmlParseName:
2629
 * @ctxt:  an HTML parser context
2630
 *
2631
 * parse an HTML name, this routine is case sensitive.
2632
 *
2633
 * Returns the Name parsed or NULL
2634
 */
2635
2636
static const xmlChar *
2637
0
htmlParseName(htmlParserCtxtPtr ctxt) {
2638
0
    const xmlChar *in;
2639
0
    const xmlChar *ret;
2640
0
    int count = 0;
2641
2642
0
    GROW;
2643
2644
    /*
2645
     * Accelerator for simple ASCII names
2646
     */
2647
0
    in = ctxt->input->cur;
2648
0
    if (((*in >= 0x61) && (*in <= 0x7A)) ||
2649
0
  ((*in >= 0x41) && (*in <= 0x5A)) ||
2650
0
  (*in == '_') || (*in == ':')) {
2651
0
  in++;
2652
0
  while (((*in >= 0x61) && (*in <= 0x7A)) ||
2653
0
         ((*in >= 0x41) && (*in <= 0x5A)) ||
2654
0
         ((*in >= 0x30) && (*in <= 0x39)) ||
2655
0
         (*in == '_') || (*in == '-') ||
2656
0
         (*in == ':') || (*in == '.'))
2657
0
      in++;
2658
2659
0
  if (in == ctxt->input->end)
2660
0
      return(NULL);
2661
2662
0
  if ((*in > 0) && (*in < 0x80)) {
2663
0
      count = in - ctxt->input->cur;
2664
0
      ret = xmlDictLookup(ctxt->dict, ctxt->input->cur, count);
2665
0
      ctxt->input->cur = in;
2666
0
      ctxt->input->col += count;
2667
0
      return(ret);
2668
0
  }
2669
0
    }
2670
0
    return(htmlParseNameComplex(ctxt));
2671
0
}
2672
2673
static const xmlChar *
2674
0
htmlParseNameComplex(xmlParserCtxtPtr ctxt) {
2675
0
    int len = 0, l;
2676
0
    int c;
2677
0
    int count = 0;
2678
0
    const xmlChar *base = ctxt->input->base;
2679
2680
    /*
2681
     * Handler for more complex cases
2682
     */
2683
0
    GROW;
2684
0
    c = CUR_CHAR(l);
2685
0
    if ((c == ' ') || (c == '>') || (c == '/') || /* accelerators */
2686
0
  (!IS_LETTER(c) && (c != '_') &&
2687
0
         (c != ':'))) {
2688
0
  return(NULL);
2689
0
    }
2690
2691
0
    while ((c != ' ') && (c != '>') && (c != '/') && /* test bigname.xml */
2692
0
     ((IS_LETTER(c)) || (IS_DIGIT(c)) ||
2693
0
            (c == '.') || (c == '-') ||
2694
0
      (c == '_') || (c == ':') ||
2695
0
      (IS_COMBINING(c)) ||
2696
0
      (IS_EXTENDER(c)))) {
2697
0
  if (count++ > 100) {
2698
0
      count = 0;
2699
0
      GROW;
2700
0
  }
2701
0
  len += l;
2702
0
  NEXTL(l);
2703
0
  c = CUR_CHAR(l);
2704
0
  if (ctxt->input->base != base) {
2705
      /*
2706
       * We changed encoding from an unknown encoding
2707
       * Input buffer changed location, so we better start again
2708
       */
2709
0
      return(htmlParseNameComplex(ctxt));
2710
0
  }
2711
0
    }
2712
2713
0
    if (ctxt->input->cur - ctxt->input->base < len) {
2714
        /* Sanity check */
2715
0
  htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
2716
0
                     "unexpected change of input buffer", NULL, NULL);
2717
0
        return (NULL);
2718
0
    }
2719
2720
0
    return(xmlDictLookup(ctxt->dict, ctxt->input->cur - len, len));
2721
0
}
2722
2723
2724
/**
2725
 * htmlParseHTMLAttribute:
2726
 * @ctxt:  an HTML parser context
2727
 * @stop:  a char stop value
2728
 *
2729
 * parse an HTML attribute value till the stop (quote), if
2730
 * stop is 0 then it stops at the first space
2731
 *
2732
 * Returns the attribute parsed or NULL
2733
 */
2734
2735
static xmlChar *
2736
0
htmlParseHTMLAttribute(htmlParserCtxtPtr ctxt, const xmlChar stop) {
2737
0
    xmlChar *buffer = NULL;
2738
0
    int buffer_size = 0;
2739
0
    xmlChar *out = NULL;
2740
0
    const xmlChar *name = NULL;
2741
0
    const xmlChar *cur = NULL;
2742
0
    const htmlEntityDesc * ent;
2743
2744
    /*
2745
     * allocate a translation buffer.
2746
     */
2747
0
    buffer_size = HTML_PARSER_BUFFER_SIZE;
2748
0
    buffer = (xmlChar *) xmlMallocAtomic(buffer_size * sizeof(xmlChar));
2749
0
    if (buffer == NULL) {
2750
0
  htmlErrMemory(ctxt, "buffer allocation failed\n");
2751
0
  return(NULL);
2752
0
    }
2753
0
    out = buffer;
2754
2755
    /*
2756
     * Ok loop until we reach one of the ending chars
2757
     */
2758
0
    while ((CUR != 0) && (CUR != stop)) {
2759
0
  if ((stop == 0) && (CUR == '>')) break;
2760
0
  if ((stop == 0) && (IS_BLANK_CH(CUR))) break;
2761
0
        if (CUR == '&') {
2762
0
      if (NXT(1) == '#') {
2763
0
    unsigned int c;
2764
0
    int bits;
2765
2766
0
    c = htmlParseCharRef(ctxt);
2767
0
    if      (c <    0x80)
2768
0
            { *out++  = c;                bits= -6; }
2769
0
    else if (c <   0x800)
2770
0
            { *out++  =((c >>  6) & 0x1F) | 0xC0;  bits=  0; }
2771
0
    else if (c < 0x10000)
2772
0
            { *out++  =((c >> 12) & 0x0F) | 0xE0;  bits=  6; }
2773
0
    else
2774
0
            { *out++  =((c >> 18) & 0x07) | 0xF0;  bits= 12; }
2775
2776
0
    for ( ; bits >= 0; bits-= 6) {
2777
0
        *out++  = ((c >> bits) & 0x3F) | 0x80;
2778
0
    }
2779
2780
0
    if (out - buffer > buffer_size - 100) {
2781
0
      int indx = out - buffer;
2782
2783
0
      growBuffer(buffer);
2784
0
      out = &buffer[indx];
2785
0
    }
2786
0
      } else {
2787
0
    ent = htmlParseEntityRef(ctxt, &name);
2788
0
    if (name == NULL) {
2789
0
        *out++ = '&';
2790
0
        if (out - buffer > buffer_size - 100) {
2791
0
      int indx = out - buffer;
2792
2793
0
      growBuffer(buffer);
2794
0
      out = &buffer[indx];
2795
0
        }
2796
0
    } else if (ent == NULL) {
2797
0
        *out++ = '&';
2798
0
        cur = name;
2799
0
        while (*cur != 0) {
2800
0
      if (out - buffer > buffer_size - 100) {
2801
0
          int indx = out - buffer;
2802
2803
0
          growBuffer(buffer);
2804
0
          out = &buffer[indx];
2805
0
      }
2806
0
      *out++ = *cur++;
2807
0
        }
2808
0
    } else {
2809
0
        unsigned int c;
2810
0
        int bits;
2811
2812
0
        if (out - buffer > buffer_size - 100) {
2813
0
      int indx = out - buffer;
2814
2815
0
      growBuffer(buffer);
2816
0
      out = &buffer[indx];
2817
0
        }
2818
0
        c = ent->value;
2819
0
        if      (c <    0x80)
2820
0
      { *out++  = c;                bits= -6; }
2821
0
        else if (c <   0x800)
2822
0
      { *out++  =((c >>  6) & 0x1F) | 0xC0;  bits=  0; }
2823
0
        else if (c < 0x10000)
2824
0
      { *out++  =((c >> 12) & 0x0F) | 0xE0;  bits=  6; }
2825
0
        else
2826
0
      { *out++  =((c >> 18) & 0x07) | 0xF0;  bits= 12; }
2827
2828
0
        for ( ; bits >= 0; bits-= 6) {
2829
0
      *out++  = ((c >> bits) & 0x3F) | 0x80;
2830
0
        }
2831
0
    }
2832
0
      }
2833
0
  } else {
2834
0
      unsigned int c;
2835
0
      int bits, l;
2836
2837
0
      if (out - buffer > buffer_size - 100) {
2838
0
    int indx = out - buffer;
2839
2840
0
    growBuffer(buffer);
2841
0
    out = &buffer[indx];
2842
0
      }
2843
0
      c = CUR_CHAR(l);
2844
0
      if      (c <    0x80)
2845
0
        { *out++  = c;                bits= -6; }
2846
0
      else if (c <   0x800)
2847
0
        { *out++  =((c >>  6) & 0x1F) | 0xC0;  bits=  0; }
2848
0
      else if (c < 0x10000)
2849
0
        { *out++  =((c >> 12) & 0x0F) | 0xE0;  bits=  6; }
2850
0
      else
2851
0
        { *out++  =((c >> 18) & 0x07) | 0xF0;  bits= 12; }
2852
2853
0
      for ( ; bits >= 0; bits-= 6) {
2854
0
    *out++  = ((c >> bits) & 0x3F) | 0x80;
2855
0
      }
2856
0
      NEXT;
2857
0
  }
2858
0
    }
2859
0
    *out = 0;
2860
0
    return(buffer);
2861
0
}
2862
2863
/**
2864
 * htmlParseEntityRef:
2865
 * @ctxt:  an HTML parser context
2866
 * @str:  location to store the entity name
2867
 *
2868
 * parse an HTML ENTITY references
2869
 *
2870
 * [68] EntityRef ::= '&' Name ';'
2871
 *
2872
 * Returns the associated htmlEntityDescPtr if found, or NULL otherwise,
2873
 *         if non-NULL *str will have to be freed by the caller.
2874
 */
2875
const htmlEntityDesc *
2876
0
htmlParseEntityRef(htmlParserCtxtPtr ctxt, const xmlChar **str) {
2877
0
    const xmlChar *name;
2878
0
    const htmlEntityDesc * ent = NULL;
2879
2880
0
    if (str != NULL) *str = NULL;
2881
0
    if ((ctxt == NULL) || (ctxt->input == NULL)) return(NULL);
2882
2883
0
    if (CUR == '&') {
2884
0
        NEXT;
2885
0
        name = htmlParseName(ctxt);
2886
0
  if (name == NULL) {
2887
0
      htmlParseErr(ctxt, XML_ERR_NAME_REQUIRED,
2888
0
                   "htmlParseEntityRef: no name\n", NULL, NULL);
2889
0
  } else {
2890
0
      GROW;
2891
0
      if (CUR == ';') {
2892
0
          if (str != NULL)
2893
0
        *str = name;
2894
2895
    /*
2896
     * Lookup the entity in the table.
2897
     */
2898
0
    ent = htmlEntityLookup(name);
2899
0
    if (ent != NULL) /* OK that's ugly !!! */
2900
0
        NEXT;
2901
0
      } else {
2902
0
    htmlParseErr(ctxt, XML_ERR_ENTITYREF_SEMICOL_MISSING,
2903
0
                 "htmlParseEntityRef: expecting ';'\n",
2904
0
           NULL, NULL);
2905
0
          if (str != NULL)
2906
0
        *str = name;
2907
0
      }
2908
0
  }
2909
0
    }
2910
0
    return(ent);
2911
0
}
2912
2913
/**
2914
 * htmlParseAttValue:
2915
 * @ctxt:  an HTML parser context
2916
 *
2917
 * parse a value for an attribute
2918
 * Note: the parser won't do substitution of entities here, this
2919
 * will be handled later in xmlStringGetNodeList, unless it was
2920
 * asked for ctxt->replaceEntities != 0
2921
 *
2922
 * Returns the AttValue parsed or NULL.
2923
 */
2924
2925
static xmlChar *
2926
0
htmlParseAttValue(htmlParserCtxtPtr ctxt) {
2927
0
    xmlChar *ret = NULL;
2928
2929
0
    if (CUR == '"') {
2930
0
        NEXT;
2931
0
  ret = htmlParseHTMLAttribute(ctxt, '"');
2932
0
        if (CUR != '"') {
2933
0
      htmlParseErr(ctxt, XML_ERR_ATTRIBUTE_NOT_FINISHED,
2934
0
                   "AttValue: \" expected\n", NULL, NULL);
2935
0
  } else
2936
0
      NEXT;
2937
0
    } else if (CUR == '\'') {
2938
0
        NEXT;
2939
0
  ret = htmlParseHTMLAttribute(ctxt, '\'');
2940
0
        if (CUR != '\'') {
2941
0
      htmlParseErr(ctxt, XML_ERR_ATTRIBUTE_NOT_FINISHED,
2942
0
                   "AttValue: ' expected\n", NULL, NULL);
2943
0
  } else
2944
0
      NEXT;
2945
0
    } else {
2946
        /*
2947
   * That's an HTMLism, the attribute value may not be quoted
2948
   */
2949
0
  ret = htmlParseHTMLAttribute(ctxt, 0);
2950
0
  if (ret == NULL) {
2951
0
      htmlParseErr(ctxt, XML_ERR_ATTRIBUTE_WITHOUT_VALUE,
2952
0
                   "AttValue: no value found\n", NULL, NULL);
2953
0
  }
2954
0
    }
2955
0
    return(ret);
2956
0
}
2957
2958
/**
2959
 * htmlParseSystemLiteral:
2960
 * @ctxt:  an HTML parser context
2961
 *
2962
 * parse an HTML Literal
2963
 *
2964
 * [11] SystemLiteral ::= ('"' [^"]* '"') | ("'" [^']* "'")
2965
 *
2966
 * Returns the SystemLiteral parsed or NULL
2967
 */
2968
2969
static xmlChar *
2970
0
htmlParseSystemLiteral(htmlParserCtxtPtr ctxt) {
2971
0
    size_t len = 0, startPosition = 0;
2972
0
    int err = 0;
2973
0
    int quote;
2974
0
    xmlChar *ret = NULL;
2975
2976
0
    if ((CUR != '"') && (CUR != '\'')) {
2977
0
  htmlParseErr(ctxt, XML_ERR_LITERAL_NOT_STARTED,
2978
0
               "SystemLiteral \" or ' expected\n", NULL, NULL);
2979
0
        return(NULL);
2980
0
    }
2981
0
    quote = CUR;
2982
0
    NEXT;
2983
2984
0
    if (CUR_PTR < BASE_PTR)
2985
0
        return(ret);
2986
0
    startPosition = CUR_PTR - BASE_PTR;
2987
2988
0
    while ((CUR != 0) && (CUR != quote)) {
2989
        /* TODO: Handle UTF-8 */
2990
0
        if (!IS_CHAR_CH(CUR)) {
2991
0
            htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
2992
0
                            "Invalid char in SystemLiteral 0x%X\n", CUR);
2993
0
            err = 1;
2994
0
        }
2995
0
        NEXT;
2996
0
        len++;
2997
0
    }
2998
0
    if (CUR != quote) {
2999
0
        htmlParseErr(ctxt, XML_ERR_LITERAL_NOT_FINISHED,
3000
0
                     "Unfinished SystemLiteral\n", NULL, NULL);
3001
0
    } else {
3002
0
        NEXT;
3003
0
        if (err == 0)
3004
0
            ret = xmlStrndup((BASE_PTR+startPosition), len);
3005
0
    }
3006
3007
0
    return(ret);
3008
0
}
3009
3010
/**
3011
 * htmlParsePubidLiteral:
3012
 * @ctxt:  an HTML parser context
3013
 *
3014
 * parse an HTML public literal
3015
 *
3016
 * [12] PubidLiteral ::= '"' PubidChar* '"' | "'" (PubidChar - "'")* "'"
3017
 *
3018
 * Returns the PubidLiteral parsed or NULL.
3019
 */
3020
3021
static xmlChar *
3022
0
htmlParsePubidLiteral(htmlParserCtxtPtr ctxt) {
3023
0
    size_t len = 0, startPosition = 0;
3024
0
    int err = 0;
3025
0
    int quote;
3026
0
    xmlChar *ret = NULL;
3027
3028
0
    if ((CUR != '"') && (CUR != '\'')) {
3029
0
  htmlParseErr(ctxt, XML_ERR_LITERAL_NOT_STARTED,
3030
0
               "PubidLiteral \" or ' expected\n", NULL, NULL);
3031
0
        return(NULL);
3032
0
    }
3033
0
    quote = CUR;
3034
0
    NEXT;
3035
3036
    /*
3037
     * Name ::= (Letter | '_') (NameChar)*
3038
     */
3039
0
    if (CUR_PTR < BASE_PTR)
3040
0
        return(ret);
3041
0
    startPosition = CUR_PTR - BASE_PTR;
3042
3043
0
    while ((CUR != 0) && (CUR != quote)) {
3044
0
        if (!IS_PUBIDCHAR_CH(CUR)) {
3045
0
            htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
3046
0
                            "Invalid char in PubidLiteral 0x%X\n", CUR);
3047
0
            err = 1;
3048
0
        }
3049
0
        len++;
3050
0
        NEXT;
3051
0
    }
3052
3053
0
    if (CUR != quote) {
3054
0
        htmlParseErr(ctxt, XML_ERR_LITERAL_NOT_FINISHED,
3055
0
                     "Unfinished PubidLiteral\n", NULL, NULL);
3056
0
    } else {
3057
0
        NEXT;
3058
0
        if (err == 0)
3059
0
            ret = xmlStrndup((BASE_PTR + startPosition), len);
3060
0
    }
3061
3062
0
    return(ret);
3063
0
}
3064
3065
/**
3066
 * htmlParseScript:
3067
 * @ctxt:  an HTML parser context
3068
 *
3069
 * parse the content of an HTML SCRIPT or STYLE element
3070
 * http://www.w3.org/TR/html4/sgml/dtd.html#Script
3071
 * http://www.w3.org/TR/html4/sgml/dtd.html#StyleSheet
3072
 * http://www.w3.org/TR/html4/types.html#type-script
3073
 * http://www.w3.org/TR/html4/types.html#h-6.15
3074
 * http://www.w3.org/TR/html4/appendix/notes.html#h-B.3.2.1
3075
 *
3076
 * Script data ( %Script; in the DTD) can be the content of the SCRIPT
3077
 * element and the value of intrinsic event attributes. User agents must
3078
 * not evaluate script data as HTML markup but instead must pass it on as
3079
 * data to a script engine.
3080
 * NOTES:
3081
 * - The content is passed like CDATA
3082
 * - the attributes for style and scripting "onXXX" are also described
3083
 *   as CDATA but SGML allows entities references in attributes so their
3084
 *   processing is identical as other attributes
3085
 */
3086
static void
3087
0
htmlParseScript(htmlParserCtxtPtr ctxt) {
3088
0
    xmlChar buf[HTML_PARSER_BIG_BUFFER_SIZE + 5];
3089
0
    int nbchar = 0;
3090
0
    int cur,l;
3091
3092
0
    SHRINK;
3093
0
    cur = CUR_CHAR(l);
3094
0
    while (cur != 0) {
3095
0
  if ((cur == '<') && (NXT(1) == '/')) {
3096
            /*
3097
             * One should break here, the specification is clear:
3098
             * Authors should therefore escape "</" within the content.
3099
             * Escape mechanisms are specific to each scripting or
3100
             * style sheet language.
3101
             *
3102
             * In recovery mode, only break if end tag match the
3103
             * current tag, effectively ignoring all tags inside the
3104
             * script/style block and treating the entire block as
3105
             * CDATA.
3106
             */
3107
0
            if (ctxt->recovery) {
3108
0
                if (xmlStrncasecmp(ctxt->name, ctxt->input->cur+2,
3109
0
           xmlStrlen(ctxt->name)) == 0)
3110
0
                {
3111
0
                    break; /* while */
3112
0
                } else {
3113
0
        htmlParseErr(ctxt, XML_ERR_TAG_NAME_MISMATCH,
3114
0
         "Element %s embeds close tag\n",
3115
0
                     ctxt->name, NULL);
3116
0
    }
3117
0
            } else {
3118
0
                if (((NXT(2) >= 'A') && (NXT(2) <= 'Z')) ||
3119
0
                    ((NXT(2) >= 'a') && (NXT(2) <= 'z')))
3120
0
                {
3121
0
                    break; /* while */
3122
0
                }
3123
0
            }
3124
0
  }
3125
0
        if (IS_CHAR(cur)) {
3126
0
      COPY_BUF(l,buf,nbchar,cur);
3127
0
        } else {
3128
0
            htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
3129
0
                            "Invalid char in CDATA 0x%X\n", cur);
3130
0
        }
3131
0
  if (nbchar >= HTML_PARSER_BIG_BUFFER_SIZE) {
3132
0
            buf[nbchar] = 0;
3133
0
      if (ctxt->sax->cdataBlock!= NULL) {
3134
    /*
3135
     * Insert as CDATA, which is the same as HTML_PRESERVE_NODE
3136
     */
3137
0
    ctxt->sax->cdataBlock(ctxt->userData, buf, nbchar);
3138
0
      } else if (ctxt->sax->characters != NULL) {
3139
0
    ctxt->sax->characters(ctxt->userData, buf, nbchar);
3140
0
      }
3141
0
      nbchar = 0;
3142
0
  }
3143
0
  GROW;
3144
0
  NEXTL(l);
3145
0
  cur = CUR_CHAR(l);
3146
0
    }
3147
3148
0
    if ((nbchar != 0) && (ctxt->sax != NULL) && (!ctxt->disableSAX)) {
3149
0
        buf[nbchar] = 0;
3150
0
  if (ctxt->sax->cdataBlock!= NULL) {
3151
      /*
3152
       * Insert as CDATA, which is the same as HTML_PRESERVE_NODE
3153
       */
3154
0
      ctxt->sax->cdataBlock(ctxt->userData, buf, nbchar);
3155
0
  } else if (ctxt->sax->characters != NULL) {
3156
0
      ctxt->sax->characters(ctxt->userData, buf, nbchar);
3157
0
  }
3158
0
    }
3159
0
}
3160
3161
3162
/**
3163
 * htmlParseCharDataInternal:
3164
 * @ctxt:  an HTML parser context
3165
 * @readahead: optional read ahead character in ascii range
3166
 *
3167
 * parse a CharData section.
3168
 * if we are within a CDATA section ']]>' marks an end of section.
3169
 *
3170
 * [14] CharData ::= [^<&]* - ([^<&]* ']]>' [^<&]*)
3171
 */
3172
3173
static void
3174
0
htmlParseCharDataInternal(htmlParserCtxtPtr ctxt, int readahead) {
3175
0
    xmlChar buf[HTML_PARSER_BIG_BUFFER_SIZE + 6];
3176
0
    int nbchar = 0;
3177
0
    int cur, l;
3178
0
    int chunk = 0;
3179
3180
0
    if (readahead)
3181
0
        buf[nbchar++] = readahead;
3182
3183
0
    SHRINK;
3184
0
    cur = CUR_CHAR(l);
3185
0
    while (((cur != '<') || (ctxt->token == '<')) &&
3186
0
           ((cur != '&') || (ctxt->token == '&')) &&
3187
0
     (cur != 0)) {
3188
0
  if (!(IS_CHAR(cur))) {
3189
0
      htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
3190
0
                  "Invalid char in CDATA 0x%X\n", cur);
3191
0
  } else {
3192
0
      COPY_BUF(l,buf,nbchar,cur);
3193
0
  }
3194
0
  if (nbchar >= HTML_PARSER_BIG_BUFFER_SIZE) {
3195
0
            buf[nbchar] = 0;
3196
3197
      /*
3198
       * Ok the segment is to be consumed as chars.
3199
       */
3200
0
      if ((ctxt->sax != NULL) && (!ctxt->disableSAX)) {
3201
0
    if (areBlanks(ctxt, buf, nbchar)) {
3202
0
        if (ctxt->keepBlanks) {
3203
0
      if (ctxt->sax->characters != NULL)
3204
0
          ctxt->sax->characters(ctxt->userData, buf, nbchar);
3205
0
        } else {
3206
0
      if (ctxt->sax->ignorableWhitespace != NULL)
3207
0
          ctxt->sax->ignorableWhitespace(ctxt->userData,
3208
0
                                         buf, nbchar);
3209
0
        }
3210
0
    } else {
3211
0
        htmlCheckParagraph(ctxt);
3212
0
        if (ctxt->sax->characters != NULL)
3213
0
      ctxt->sax->characters(ctxt->userData, buf, nbchar);
3214
0
    }
3215
0
      }
3216
0
      nbchar = 0;
3217
0
  }
3218
0
  NEXTL(l);
3219
0
        chunk++;
3220
0
        if (chunk > HTML_PARSER_BUFFER_SIZE) {
3221
0
            chunk = 0;
3222
0
            SHRINK;
3223
0
            GROW;
3224
0
        }
3225
0
  cur = CUR_CHAR(l);
3226
0
  if (cur == 0) {
3227
0
      SHRINK;
3228
0
      GROW;
3229
0
      cur = CUR_CHAR(l);
3230
0
  }
3231
0
    }
3232
0
    if (nbchar != 0) {
3233
0
        buf[nbchar] = 0;
3234
3235
  /*
3236
   * Ok the segment is to be consumed as chars.
3237
   */
3238
0
  if ((ctxt->sax != NULL) && (!ctxt->disableSAX)) {
3239
0
      if (areBlanks(ctxt, buf, nbchar)) {
3240
0
    if (ctxt->keepBlanks) {
3241
0
        if (ctxt->sax->characters != NULL)
3242
0
      ctxt->sax->characters(ctxt->userData, buf, nbchar);
3243
0
    } else {
3244
0
        if (ctxt->sax->ignorableWhitespace != NULL)
3245
0
      ctxt->sax->ignorableWhitespace(ctxt->userData,
3246
0
                                     buf, nbchar);
3247
0
    }
3248
0
      } else {
3249
0
    htmlCheckParagraph(ctxt);
3250
0
    if (ctxt->sax->characters != NULL)
3251
0
        ctxt->sax->characters(ctxt->userData, buf, nbchar);
3252
0
      }
3253
0
  }
3254
0
    } else {
3255
  /*
3256
   * Loop detection
3257
   */
3258
0
  if (cur == 0)
3259
0
      ctxt->instate = XML_PARSER_EOF;
3260
0
    }
3261
0
}
3262
3263
/**
3264
 * htmlParseCharData:
3265
 * @ctxt:  an HTML parser context
3266
 *
3267
 * parse a CharData section.
3268
 * if we are within a CDATA section ']]>' marks an end of section.
3269
 *
3270
 * [14] CharData ::= [^<&]* - ([^<&]* ']]>' [^<&]*)
3271
 */
3272
3273
static void
3274
0
htmlParseCharData(htmlParserCtxtPtr ctxt) {
3275
0
    htmlParseCharDataInternal(ctxt, 0);
3276
0
}
3277
3278
/**
3279
 * htmlParseExternalID:
3280
 * @ctxt:  an HTML parser context
3281
 * @publicID:  a xmlChar** receiving PubidLiteral
3282
 *
3283
 * Parse an External ID or a Public ID
3284
 *
3285
 * [75] ExternalID ::= 'SYSTEM' S SystemLiteral
3286
 *                   | 'PUBLIC' S PubidLiteral S SystemLiteral
3287
 *
3288
 * [83] PublicID ::= 'PUBLIC' S PubidLiteral
3289
 *
3290
 * Returns the function returns SystemLiteral and in the second
3291
 *                case publicID receives PubidLiteral, is strict is off
3292
 *                it is possible to return NULL and have publicID set.
3293
 */
3294
3295
static xmlChar *
3296
0
htmlParseExternalID(htmlParserCtxtPtr ctxt, xmlChar **publicID) {
3297
0
    xmlChar *URI = NULL;
3298
3299
0
    if ((UPPER == 'S') && (UPP(1) == 'Y') &&
3300
0
         (UPP(2) == 'S') && (UPP(3) == 'T') &&
3301
0
   (UPP(4) == 'E') && (UPP(5) == 'M')) {
3302
0
        SKIP(6);
3303
0
  if (!IS_BLANK_CH(CUR)) {
3304
0
      htmlParseErr(ctxt, XML_ERR_SPACE_REQUIRED,
3305
0
                   "Space required after 'SYSTEM'\n", NULL, NULL);
3306
0
  }
3307
0
        SKIP_BLANKS;
3308
0
  URI = htmlParseSystemLiteral(ctxt);
3309
0
  if (URI == NULL) {
3310
0
      htmlParseErr(ctxt, XML_ERR_URI_REQUIRED,
3311
0
                   "htmlParseExternalID: SYSTEM, no URI\n", NULL, NULL);
3312
0
        }
3313
0
    } else if ((UPPER == 'P') && (UPP(1) == 'U') &&
3314
0
         (UPP(2) == 'B') && (UPP(3) == 'L') &&
3315
0
         (UPP(4) == 'I') && (UPP(5) == 'C')) {
3316
0
        SKIP(6);
3317
0
  if (!IS_BLANK_CH(CUR)) {
3318
0
      htmlParseErr(ctxt, XML_ERR_SPACE_REQUIRED,
3319
0
                   "Space required after 'PUBLIC'\n", NULL, NULL);
3320
0
  }
3321
0
        SKIP_BLANKS;
3322
0
  *publicID = htmlParsePubidLiteral(ctxt);
3323
0
  if (*publicID == NULL) {
3324
0
      htmlParseErr(ctxt, XML_ERR_PUBID_REQUIRED,
3325
0
                   "htmlParseExternalID: PUBLIC, no Public Identifier\n",
3326
0
       NULL, NULL);
3327
0
  }
3328
0
        SKIP_BLANKS;
3329
0
        if ((CUR == '"') || (CUR == '\'')) {
3330
0
      URI = htmlParseSystemLiteral(ctxt);
3331
0
  }
3332
0
    }
3333
0
    return(URI);
3334
0
}
3335
3336
/**
3337
 * xmlParsePI:
3338
 * @ctxt:  an XML parser context
3339
 *
3340
 * parse an XML Processing Instruction.
3341
 *
3342
 * [16] PI ::= '<?' PITarget (S (Char* - (Char* '?>' Char*)))? '?>'
3343
 */
3344
static void
3345
0
htmlParsePI(htmlParserCtxtPtr ctxt) {
3346
0
    xmlChar *buf = NULL;
3347
0
    int len = 0;
3348
0
    int size = HTML_PARSER_BUFFER_SIZE;
3349
0
    int cur, l;
3350
0
    const xmlChar *target;
3351
0
    xmlParserInputState state;
3352
0
    int count = 0;
3353
3354
0
    if ((RAW == '<') && (NXT(1) == '?')) {
3355
0
  state = ctxt->instate;
3356
0
        ctxt->instate = XML_PARSER_PI;
3357
  /*
3358
   * this is a Processing Instruction.
3359
   */
3360
0
  SKIP(2);
3361
0
  SHRINK;
3362
3363
  /*
3364
   * Parse the target name and check for special support like
3365
   * namespace.
3366
   */
3367
0
        target = htmlParseName(ctxt);
3368
0
  if (target != NULL) {
3369
0
      if (RAW == '>') {
3370
0
    SKIP(1);
3371
3372
    /*
3373
     * SAX: PI detected.
3374
     */
3375
0
    if ((ctxt->sax) && (!ctxt->disableSAX) &&
3376
0
        (ctxt->sax->processingInstruction != NULL))
3377
0
        ctxt->sax->processingInstruction(ctxt->userData,
3378
0
                                         target, NULL);
3379
0
    ctxt->instate = state;
3380
0
    return;
3381
0
      }
3382
0
      buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar));
3383
0
      if (buf == NULL) {
3384
0
    htmlErrMemory(ctxt, NULL);
3385
0
    ctxt->instate = state;
3386
0
    return;
3387
0
      }
3388
0
      cur = CUR;
3389
0
      if (!IS_BLANK(cur)) {
3390
0
    htmlParseErr(ctxt, XML_ERR_SPACE_REQUIRED,
3391
0
        "ParsePI: PI %s space expected\n", target, NULL);
3392
0
      }
3393
0
            SKIP_BLANKS;
3394
0
      cur = CUR_CHAR(l);
3395
0
      while ((cur != 0) && (cur != '>')) {
3396
0
    if (len + 5 >= size) {
3397
0
        xmlChar *tmp;
3398
3399
0
        size *= 2;
3400
0
        tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar));
3401
0
        if (tmp == NULL) {
3402
0
      htmlErrMemory(ctxt, NULL);
3403
0
      xmlFree(buf);
3404
0
      ctxt->instate = state;
3405
0
      return;
3406
0
        }
3407
0
        buf = tmp;
3408
0
    }
3409
0
    count++;
3410
0
    if (count > 50) {
3411
0
        GROW;
3412
0
        count = 0;
3413
0
    }
3414
0
                if (IS_CHAR(cur)) {
3415
0
        COPY_BUF(l,buf,len,cur);
3416
0
                } else {
3417
0
                    htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
3418
0
                                    "Invalid char in processing instruction "
3419
0
                                    "0x%X\n", cur);
3420
0
                }
3421
0
    NEXTL(l);
3422
0
    cur = CUR_CHAR(l);
3423
0
    if (cur == 0) {
3424
0
        SHRINK;
3425
0
        GROW;
3426
0
        cur = CUR_CHAR(l);
3427
0
    }
3428
0
      }
3429
0
      buf[len] = 0;
3430
0
      if (cur != '>') {
3431
0
    htmlParseErr(ctxt, XML_ERR_PI_NOT_FINISHED,
3432
0
          "ParsePI: PI %s never end ...\n", target, NULL);
3433
0
      } else {
3434
0
    SKIP(1);
3435
3436
    /*
3437
     * SAX: PI detected.
3438
     */
3439
0
    if ((ctxt->sax) && (!ctxt->disableSAX) &&
3440
0
        (ctxt->sax->processingInstruction != NULL))
3441
0
        ctxt->sax->processingInstruction(ctxt->userData,
3442
0
                                         target, buf);
3443
0
      }
3444
0
      xmlFree(buf);
3445
0
  } else {
3446
0
      htmlParseErr(ctxt, XML_ERR_PI_NOT_STARTED,
3447
0
                         "PI is not started correctly", NULL, NULL);
3448
0
  }
3449
0
  ctxt->instate = state;
3450
0
    }
3451
0
}
3452
3453
/**
3454
 * htmlParseComment:
3455
 * @ctxt:  an HTML parser context
3456
 *
3457
 * Parse an XML (SGML) comment <!-- .... -->
3458
 *
3459
 * [15] Comment ::= '<!--' ((Char - '-') | ('-' (Char - '-')))* '-->'
3460
 */
3461
static void
3462
0
htmlParseComment(htmlParserCtxtPtr ctxt) {
3463
0
    xmlChar *buf = NULL;
3464
0
    int len;
3465
0
    int size = HTML_PARSER_BUFFER_SIZE;
3466
0
    int q, ql;
3467
0
    int r, rl;
3468
0
    int cur, l;
3469
0
    int next, nl;
3470
0
    xmlParserInputState state;
3471
3472
    /*
3473
     * Check that there is a comment right here.
3474
     */
3475
0
    if ((RAW != '<') || (NXT(1) != '!') ||
3476
0
        (NXT(2) != '-') || (NXT(3) != '-')) return;
3477
3478
0
    state = ctxt->instate;
3479
0
    ctxt->instate = XML_PARSER_COMMENT;
3480
0
    SHRINK;
3481
0
    SKIP(4);
3482
0
    buf = (xmlChar *) xmlMallocAtomic(size * sizeof(xmlChar));
3483
0
    if (buf == NULL) {
3484
0
        htmlErrMemory(ctxt, "buffer allocation failed\n");
3485
0
  ctxt->instate = state;
3486
0
  return;
3487
0
    }
3488
0
    len = 0;
3489
0
    buf[len] = 0;
3490
0
    q = CUR_CHAR(ql);
3491
0
    if (q == 0)
3492
0
        goto unfinished;
3493
0
    if (q == '>') {
3494
0
        htmlParseErr(ctxt, XML_ERR_COMMENT_ABRUPTLY_ENDED, "Comment abruptly ended", NULL, NULL);
3495
0
        cur = '>';
3496
0
        goto finished;
3497
0
    }
3498
0
    NEXTL(ql);
3499
0
    r = CUR_CHAR(rl);
3500
0
    if (r == 0)
3501
0
        goto unfinished;
3502
0
    if (q == '-' && r == '>') {
3503
0
        htmlParseErr(ctxt, XML_ERR_COMMENT_ABRUPTLY_ENDED, "Comment abruptly ended", NULL, NULL);
3504
0
        cur = '>';
3505
0
        goto finished;
3506
0
    }
3507
0
    NEXTL(rl);
3508
0
    cur = CUR_CHAR(l);
3509
0
    while ((cur != 0) &&
3510
0
           ((cur != '>') ||
3511
0
      (r != '-') || (q != '-'))) {
3512
0
  NEXTL(l);
3513
0
  next = CUR_CHAR(nl);
3514
0
  if (next == 0) {
3515
0
      SHRINK;
3516
0
      GROW;
3517
0
      next = CUR_CHAR(nl);
3518
0
  }
3519
3520
0
  if ((q == '-') && (r == '-') && (cur == '!') && (next == '>')) {
3521
0
    htmlParseErr(ctxt, XML_ERR_COMMENT_NOT_FINISHED,
3522
0
           "Comment incorrectly closed by '--!>'", NULL, NULL);
3523
0
    cur = '>';
3524
0
    break;
3525
0
  }
3526
3527
0
  if (len + 5 >= size) {
3528
0
      xmlChar *tmp;
3529
3530
0
      size *= 2;
3531
0
      tmp = (xmlChar *) xmlRealloc(buf, size * sizeof(xmlChar));
3532
0
      if (tmp == NULL) {
3533
0
          xmlFree(buf);
3534
0
          htmlErrMemory(ctxt, "growing buffer failed\n");
3535
0
    ctxt->instate = state;
3536
0
    return;
3537
0
      }
3538
0
      buf = tmp;
3539
0
  }
3540
0
        if (IS_CHAR(q)) {
3541
0
      COPY_BUF(ql,buf,len,q);
3542
0
        } else {
3543
0
            htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
3544
0
                            "Invalid char in comment 0x%X\n", q);
3545
0
        }
3546
3547
0
  q = r;
3548
0
  ql = rl;
3549
0
  r = cur;
3550
0
  rl = l;
3551
0
  cur = next;
3552
0
  l = nl;
3553
0
    }
3554
0
finished:
3555
0
    buf[len] = 0;
3556
0
    if (cur == '>') {
3557
0
        NEXT;
3558
0
  if ((ctxt->sax != NULL) && (ctxt->sax->comment != NULL) &&
3559
0
      (!ctxt->disableSAX))
3560
0
      ctxt->sax->comment(ctxt->userData, buf);
3561
0
  xmlFree(buf);
3562
0
  ctxt->instate = state;
3563
0
  return;
3564
0
    }
3565
3566
0
unfinished:
3567
0
    htmlParseErr(ctxt, XML_ERR_COMMENT_NOT_FINISHED,
3568
0
     "Comment not terminated \n<!--%.50s\n", buf, NULL);
3569
0
    xmlFree(buf);
3570
0
}
3571
3572
/**
3573
 * htmlParseCharRef:
3574
 * @ctxt:  an HTML parser context
3575
 *
3576
 * parse Reference declarations
3577
 *
3578
 * [66] CharRef ::= '&#' [0-9]+ ';' |
3579
 *                  '&#x' [0-9a-fA-F]+ ';'
3580
 *
3581
 * Returns the value parsed (as an int)
3582
 */
3583
int
3584
0
htmlParseCharRef(htmlParserCtxtPtr ctxt) {
3585
0
    int val = 0;
3586
3587
0
    if ((ctxt == NULL) || (ctxt->input == NULL)) {
3588
0
  htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
3589
0
         "htmlParseCharRef: context error\n",
3590
0
         NULL, NULL);
3591
0
        return(0);
3592
0
    }
3593
0
    if ((CUR == '&') && (NXT(1) == '#') &&
3594
0
        ((NXT(2) == 'x') || NXT(2) == 'X')) {
3595
0
  SKIP(3);
3596
0
  while (CUR != ';') {
3597
0
      if ((CUR >= '0') && (CUR <= '9')) {
3598
0
                if (val < 0x110000)
3599
0
              val = val * 16 + (CUR - '0');
3600
0
            } else if ((CUR >= 'a') && (CUR <= 'f')) {
3601
0
                if (val < 0x110000)
3602
0
              val = val * 16 + (CUR - 'a') + 10;
3603
0
            } else if ((CUR >= 'A') && (CUR <= 'F')) {
3604
0
                if (val < 0x110000)
3605
0
              val = val * 16 + (CUR - 'A') + 10;
3606
0
            } else {
3607
0
          htmlParseErr(ctxt, XML_ERR_INVALID_HEX_CHARREF,
3608
0
                 "htmlParseCharRef: missing semicolon\n",
3609
0
           NULL, NULL);
3610
0
    break;
3611
0
      }
3612
0
      NEXT;
3613
0
  }
3614
0
  if (CUR == ';')
3615
0
      NEXT;
3616
0
    } else if  ((CUR == '&') && (NXT(1) == '#')) {
3617
0
  SKIP(2);
3618
0
  while (CUR != ';') {
3619
0
      if ((CUR >= '0') && (CUR <= '9')) {
3620
0
                if (val < 0x110000)
3621
0
              val = val * 10 + (CUR - '0');
3622
0
            } else {
3623
0
          htmlParseErr(ctxt, XML_ERR_INVALID_DEC_CHARREF,
3624
0
                 "htmlParseCharRef: missing semicolon\n",
3625
0
           NULL, NULL);
3626
0
    break;
3627
0
      }
3628
0
      NEXT;
3629
0
  }
3630
0
  if (CUR == ';')
3631
0
      NEXT;
3632
0
    } else {
3633
0
  htmlParseErr(ctxt, XML_ERR_INVALID_CHARREF,
3634
0
               "htmlParseCharRef: invalid value\n", NULL, NULL);
3635
0
    }
3636
    /*
3637
     * Check the value IS_CHAR ...
3638
     */
3639
0
    if (IS_CHAR(val)) {
3640
0
        return(val);
3641
0
    } else if (val >= 0x110000) {
3642
0
  htmlParseErr(ctxt, XML_ERR_INVALID_CHAR,
3643
0
         "htmlParseCharRef: value too large\n", NULL, NULL);
3644
0
    } else {
3645
0
  htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
3646
0
      "htmlParseCharRef: invalid xmlChar value %d\n",
3647
0
      val);
3648
0
    }
3649
0
    return(0);
3650
0
}
3651
3652
3653
/**
3654
 * htmlParseDocTypeDecl:
3655
 * @ctxt:  an HTML parser context
3656
 *
3657
 * parse a DOCTYPE declaration
3658
 *
3659
 * [28] doctypedecl ::= '<!DOCTYPE' S Name (S ExternalID)? S?
3660
 *                      ('[' (markupdecl | PEReference | S)* ']' S?)? '>'
3661
 */
3662
3663
static void
3664
0
htmlParseDocTypeDecl(htmlParserCtxtPtr ctxt) {
3665
0
    const xmlChar *name;
3666
0
    xmlChar *ExternalID = NULL;
3667
0
    xmlChar *URI = NULL;
3668
3669
    /*
3670
     * We know that '<!DOCTYPE' has been detected.
3671
     */
3672
0
    SKIP(9);
3673
3674
0
    SKIP_BLANKS;
3675
3676
    /*
3677
     * Parse the DOCTYPE name.
3678
     */
3679
0
    name = htmlParseName(ctxt);
3680
0
    if (name == NULL) {
3681
0
  htmlParseErr(ctxt, XML_ERR_NAME_REQUIRED,
3682
0
               "htmlParseDocTypeDecl : no DOCTYPE name !\n",
3683
0
         NULL, NULL);
3684
0
    }
3685
    /*
3686
     * Check that upper(name) == "HTML" !!!!!!!!!!!!!
3687
     */
3688
3689
0
    SKIP_BLANKS;
3690
3691
    /*
3692
     * Check for SystemID and ExternalID
3693
     */
3694
0
    URI = htmlParseExternalID(ctxt, &ExternalID);
3695
0
    SKIP_BLANKS;
3696
3697
    /*
3698
     * We should be at the end of the DOCTYPE declaration.
3699
     */
3700
0
    if (CUR != '>') {
3701
0
  htmlParseErr(ctxt, XML_ERR_DOCTYPE_NOT_FINISHED,
3702
0
               "DOCTYPE improperly terminated\n", NULL, NULL);
3703
        /* Ignore bogus content */
3704
0
        while ((CUR != 0) && (CUR != '>'))
3705
0
            NEXT;
3706
0
    }
3707
0
    if (CUR == '>')
3708
0
        NEXT;
3709
3710
    /*
3711
     * Create or update the document accordingly to the DOCTYPE
3712
     */
3713
0
    if ((ctxt->sax != NULL) && (ctxt->sax->internalSubset != NULL) &&
3714
0
  (!ctxt->disableSAX))
3715
0
  ctxt->sax->internalSubset(ctxt->userData, name, ExternalID, URI);
3716
3717
    /*
3718
     * Cleanup, since we don't use all those identifiers
3719
     */
3720
0
    if (URI != NULL) xmlFree(URI);
3721
0
    if (ExternalID != NULL) xmlFree(ExternalID);
3722
0
}
3723
3724
/**
3725
 * htmlParseAttribute:
3726
 * @ctxt:  an HTML parser context
3727
 * @value:  a xmlChar ** used to store the value of the attribute
3728
 *
3729
 * parse an attribute
3730
 *
3731
 * [41] Attribute ::= Name Eq AttValue
3732
 *
3733
 * [25] Eq ::= S? '=' S?
3734
 *
3735
 * With namespace:
3736
 *
3737
 * [NS 11] Attribute ::= QName Eq AttValue
3738
 *
3739
 * Also the case QName == xmlns:??? is handled independently as a namespace
3740
 * definition.
3741
 *
3742
 * Returns the attribute name, and the value in *value.
3743
 */
3744
3745
static const xmlChar *
3746
0
htmlParseAttribute(htmlParserCtxtPtr ctxt, xmlChar **value) {
3747
0
    const xmlChar *name;
3748
0
    xmlChar *val = NULL;
3749
3750
0
    *value = NULL;
3751
0
    name = htmlParseHTMLName(ctxt);
3752
0
    if (name == NULL) {
3753
0
  htmlParseErr(ctxt, XML_ERR_NAME_REQUIRED,
3754
0
               "error parsing attribute name\n", NULL, NULL);
3755
0
        return(NULL);
3756
0
    }
3757
3758
    /*
3759
     * read the value
3760
     */
3761
0
    SKIP_BLANKS;
3762
0
    if (CUR == '=') {
3763
0
        NEXT;
3764
0
  SKIP_BLANKS;
3765
0
  val = htmlParseAttValue(ctxt);
3766
0
    }
3767
3768
0
    *value = val;
3769
0
    return(name);
3770
0
}
3771
3772
/**
3773
 * htmlCheckEncodingDirect:
3774
 * @ctxt:  an HTML parser context
3775
 * @attvalue: the attribute value
3776
 *
3777
 * Checks an attribute value to detect
3778
 * the encoding
3779
 * If a new encoding is detected the parser is switched to decode
3780
 * it and pass UTF8
3781
 */
3782
static void
3783
0
htmlCheckEncodingDirect(htmlParserCtxtPtr ctxt, const xmlChar *encoding) {
3784
3785
0
    if ((ctxt == NULL) || (encoding == NULL) ||
3786
0
        (ctxt->options & HTML_PARSE_IGNORE_ENC))
3787
0
  return;
3788
3789
    /* do not change encoding */
3790
0
    if (ctxt->input->encoding != NULL)
3791
0
        return;
3792
3793
0
    if (encoding != NULL) {
3794
0
  xmlCharEncoding enc;
3795
0
  xmlCharEncodingHandlerPtr handler;
3796
3797
0
  while ((*encoding == ' ') || (*encoding == '\t')) encoding++;
3798
3799
0
  if (ctxt->input->encoding != NULL)
3800
0
      xmlFree((xmlChar *) ctxt->input->encoding);
3801
0
  ctxt->input->encoding = xmlStrdup(encoding);
3802
3803
0
  enc = xmlParseCharEncoding((const char *) encoding);
3804
  /*
3805
   * registered set of known encodings
3806
   */
3807
0
  if (enc != XML_CHAR_ENCODING_ERROR) {
3808
0
      if (((enc == XML_CHAR_ENCODING_UTF16LE) ||
3809
0
           (enc == XML_CHAR_ENCODING_UTF16BE) ||
3810
0
     (enc == XML_CHAR_ENCODING_UCS4LE) ||
3811
0
     (enc == XML_CHAR_ENCODING_UCS4BE)) &&
3812
0
    (ctxt->input->buf != NULL) &&
3813
0
    (ctxt->input->buf->encoder == NULL)) {
3814
0
    htmlParseErr(ctxt, XML_ERR_INVALID_ENCODING,
3815
0
                 "htmlCheckEncoding: wrong encoding meta\n",
3816
0
           NULL, NULL);
3817
0
      } else {
3818
0
    xmlSwitchEncoding(ctxt, enc);
3819
0
      }
3820
0
      ctxt->charset = XML_CHAR_ENCODING_UTF8;
3821
0
  } else {
3822
      /*
3823
       * fallback for unknown encodings
3824
       */
3825
0
      handler = xmlFindCharEncodingHandler((const char *) encoding);
3826
0
      if (handler != NULL) {
3827
0
    xmlSwitchToEncoding(ctxt, handler);
3828
0
    ctxt->charset = XML_CHAR_ENCODING_UTF8;
3829
0
      } else {
3830
0
    htmlParseErr(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
3831
0
                 "htmlCheckEncoding: unknown encoding %s\n",
3832
0
           encoding, NULL);
3833
0
      }
3834
0
  }
3835
3836
0
  if ((ctxt->input->buf != NULL) &&
3837
0
      (ctxt->input->buf->encoder != NULL) &&
3838
0
      (ctxt->input->buf->raw != NULL) &&
3839
0
      (ctxt->input->buf->buffer != NULL)) {
3840
0
      int nbchars;
3841
0
      int processed;
3842
3843
      /*
3844
       * convert as much as possible to the parser reading buffer.
3845
       */
3846
0
      processed = ctxt->input->cur - ctxt->input->base;
3847
0
      xmlBufShrink(ctxt->input->buf->buffer, processed);
3848
0
      nbchars = xmlCharEncInput(ctxt->input->buf, 1);
3849
0
            xmlBufResetInput(ctxt->input->buf->buffer, ctxt->input);
3850
0
      if (nbchars < 0) {
3851
0
    htmlParseErr(ctxt, XML_ERR_INVALID_ENCODING,
3852
0
                 "htmlCheckEncoding: encoder error\n",
3853
0
           NULL, NULL);
3854
0
      }
3855
0
  }
3856
0
    }
3857
0
}
3858
3859
/**
3860
 * htmlCheckEncoding:
3861
 * @ctxt:  an HTML parser context
3862
 * @attvalue: the attribute value
3863
 *
3864
 * Checks an http-equiv attribute from a Meta tag to detect
3865
 * the encoding
3866
 * If a new encoding is detected the parser is switched to decode
3867
 * it and pass UTF8
3868
 */
3869
static void
3870
0
htmlCheckEncoding(htmlParserCtxtPtr ctxt, const xmlChar *attvalue) {
3871
0
    const xmlChar *encoding;
3872
3873
0
    if (!attvalue)
3874
0
  return;
3875
3876
0
    encoding = xmlStrcasestr(attvalue, BAD_CAST"charset");
3877
0
    if (encoding != NULL) {
3878
0
  encoding += 7;
3879
0
    }
3880
    /*
3881
     * skip blank
3882
     */
3883
0
    if (encoding && IS_BLANK_CH(*encoding))
3884
0
  encoding = xmlStrcasestr(attvalue, BAD_CAST"=");
3885
0
    if (encoding && *encoding == '=') {
3886
0
  encoding ++;
3887
0
  htmlCheckEncodingDirect(ctxt, encoding);
3888
0
    }
3889
0
}
3890
3891
/**
3892
 * htmlCheckMeta:
3893
 * @ctxt:  an HTML parser context
3894
 * @atts:  the attributes values
3895
 *
3896
 * Checks an attributes from a Meta tag
3897
 */
3898
static void
3899
0
htmlCheckMeta(htmlParserCtxtPtr ctxt, const xmlChar **atts) {
3900
0
    int i;
3901
0
    const xmlChar *att, *value;
3902
0
    int http = 0;
3903
0
    const xmlChar *content = NULL;
3904
3905
0
    if ((ctxt == NULL) || (atts == NULL))
3906
0
  return;
3907
3908
0
    i = 0;
3909
0
    att = atts[i++];
3910
0
    while (att != NULL) {
3911
0
  value = atts[i++];
3912
0
  if ((value != NULL) && (!xmlStrcasecmp(att, BAD_CAST"http-equiv"))
3913
0
   && (!xmlStrcasecmp(value, BAD_CAST"Content-Type")))
3914
0
      http = 1;
3915
0
  else if ((value != NULL) && (!xmlStrcasecmp(att, BAD_CAST"charset")))
3916
0
      htmlCheckEncodingDirect(ctxt, value);
3917
0
  else if ((value != NULL) && (!xmlStrcasecmp(att, BAD_CAST"content")))
3918
0
      content = value;
3919
0
  att = atts[i++];
3920
0
    }
3921
0
    if ((http) && (content != NULL))
3922
0
  htmlCheckEncoding(ctxt, content);
3923
3924
0
}
3925
3926
/**
3927
 * htmlParseStartTag:
3928
 * @ctxt:  an HTML parser context
3929
 *
3930
 * parse a start of tag either for rule element or
3931
 * EmptyElement. In both case we don't parse the tag closing chars.
3932
 *
3933
 * [40] STag ::= '<' Name (S Attribute)* S? '>'
3934
 *
3935
 * [44] EmptyElemTag ::= '<' Name (S Attribute)* S? '/>'
3936
 *
3937
 * With namespace:
3938
 *
3939
 * [NS 8] STag ::= '<' QName (S Attribute)* S? '>'
3940
 *
3941
 * [NS 10] EmptyElement ::= '<' QName (S Attribute)* S? '/>'
3942
 *
3943
 * Returns 0 in case of success, -1 in case of error and 1 if discarded
3944
 */
3945
3946
static int
3947
0
htmlParseStartTag(htmlParserCtxtPtr ctxt) {
3948
0
    const xmlChar *name;
3949
0
    const xmlChar *attname;
3950
0
    xmlChar *attvalue;
3951
0
    const xmlChar **atts;
3952
0
    int nbatts = 0;
3953
0
    int maxatts;
3954
0
    int meta = 0;
3955
0
    int i;
3956
0
    int discardtag = 0;
3957
3958
0
    if ((ctxt == NULL) || (ctxt->input == NULL)) {
3959
0
  htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
3960
0
         "htmlParseStartTag: context error\n", NULL, NULL);
3961
0
  return -1;
3962
0
    }
3963
0
    if (ctxt->instate == XML_PARSER_EOF)
3964
0
        return(-1);
3965
0
    if (CUR != '<') return -1;
3966
0
    NEXT;
3967
3968
0
    atts = ctxt->atts;
3969
0
    maxatts = ctxt->maxatts;
3970
3971
0
    GROW;
3972
0
    name = htmlParseHTMLName(ctxt);
3973
0
    if (name == NULL) {
3974
0
  htmlParseErr(ctxt, XML_ERR_NAME_REQUIRED,
3975
0
               "htmlParseStartTag: invalid element name\n",
3976
0
         NULL, NULL);
3977
  /* Dump the bogus tag like browsers do */
3978
0
  while ((CUR != 0) && (CUR != '>') &&
3979
0
               (ctxt->instate != XML_PARSER_EOF))
3980
0
      NEXT;
3981
0
        return -1;
3982
0
    }
3983
0
    if (xmlStrEqual(name, BAD_CAST"meta"))
3984
0
  meta = 1;
3985
3986
    /*
3987
     * Check for auto-closure of HTML elements.
3988
     */
3989
0
    htmlAutoClose(ctxt, name);
3990
3991
    /*
3992
     * Check for implied HTML elements.
3993
     */
3994
0
    htmlCheckImplied(ctxt, name);
3995
3996
    /*
3997
     * Avoid html at any level > 0, head at any level != 1
3998
     * or any attempt to recurse body
3999
     */
4000
0
    if ((ctxt->nameNr > 0) && (xmlStrEqual(name, BAD_CAST"html"))) {
4001
0
  htmlParseErr(ctxt, XML_HTML_STRUCURE_ERROR,
4002
0
               "htmlParseStartTag: misplaced <html> tag\n",
4003
0
         name, NULL);
4004
0
  discardtag = 1;
4005
0
  ctxt->depth++;
4006
0
    }
4007
0
    if ((ctxt->nameNr != 1) &&
4008
0
  (xmlStrEqual(name, BAD_CAST"head"))) {
4009
0
  htmlParseErr(ctxt, XML_HTML_STRUCURE_ERROR,
4010
0
               "htmlParseStartTag: misplaced <head> tag\n",
4011
0
         name, NULL);
4012
0
  discardtag = 1;
4013
0
  ctxt->depth++;
4014
0
    }
4015
0
    if (xmlStrEqual(name, BAD_CAST"body")) {
4016
0
  int indx;
4017
0
  for (indx = 0;indx < ctxt->nameNr;indx++) {
4018
0
      if (xmlStrEqual(ctxt->nameTab[indx], BAD_CAST"body")) {
4019
0
    htmlParseErr(ctxt, XML_HTML_STRUCURE_ERROR,
4020
0
                 "htmlParseStartTag: misplaced <body> tag\n",
4021
0
           name, NULL);
4022
0
    discardtag = 1;
4023
0
    ctxt->depth++;
4024
0
      }
4025
0
  }
4026
0
    }
4027
4028
    /*
4029
     * Now parse the attributes, it ends up with the ending
4030
     *
4031
     * (S Attribute)* S?
4032
     */
4033
0
    SKIP_BLANKS;
4034
0
    while ((CUR != 0) &&
4035
0
           (CUR != '>') &&
4036
0
     ((CUR != '/') || (NXT(1) != '>'))) {
4037
0
  GROW;
4038
0
  attname = htmlParseAttribute(ctxt, &attvalue);
4039
0
        if (attname != NULL) {
4040
4041
      /*
4042
       * Well formedness requires at most one declaration of an attribute
4043
       */
4044
0
      for (i = 0; i < nbatts;i += 2) {
4045
0
          if (xmlStrEqual(atts[i], attname)) {
4046
0
        htmlParseErr(ctxt, XML_ERR_ATTRIBUTE_REDEFINED,
4047
0
                     "Attribute %s redefined\n", attname, NULL);
4048
0
        if (attvalue != NULL)
4049
0
      xmlFree(attvalue);
4050
0
        goto failed;
4051
0
    }
4052
0
      }
4053
4054
      /*
4055
       * Add the pair to atts
4056
       */
4057
0
      if (atts == NULL) {
4058
0
          maxatts = 22; /* allow for 10 attrs by default */
4059
0
          atts = (const xmlChar **)
4060
0
           xmlMalloc(maxatts * sizeof(xmlChar *));
4061
0
    if (atts == NULL) {
4062
0
        htmlErrMemory(ctxt, NULL);
4063
0
        if (attvalue != NULL)
4064
0
      xmlFree(attvalue);
4065
0
        goto failed;
4066
0
    }
4067
0
    ctxt->atts = atts;
4068
0
    ctxt->maxatts = maxatts;
4069
0
      } else if (nbatts + 4 > maxatts) {
4070
0
          const xmlChar **n;
4071
4072
0
          maxatts *= 2;
4073
0
          n = (const xmlChar **) xmlRealloc((void *) atts,
4074
0
               maxatts * sizeof(const xmlChar *));
4075
0
    if (n == NULL) {
4076
0
        htmlErrMemory(ctxt, NULL);
4077
0
        if (attvalue != NULL)
4078
0
      xmlFree(attvalue);
4079
0
        goto failed;
4080
0
    }
4081
0
    atts = n;
4082
0
    ctxt->atts = atts;
4083
0
    ctxt->maxatts = maxatts;
4084
0
      }
4085
0
      atts[nbatts++] = attname;
4086
0
      atts[nbatts++] = attvalue;
4087
0
      atts[nbatts] = NULL;
4088
0
      atts[nbatts + 1] = NULL;
4089
0
  }
4090
0
  else {
4091
0
      if (attvalue != NULL)
4092
0
          xmlFree(attvalue);
4093
      /* Dump the bogus attribute string up to the next blank or
4094
       * the end of the tag. */
4095
0
      while ((CUR != 0) &&
4096
0
             !(IS_BLANK_CH(CUR)) && (CUR != '>') &&
4097
0
       ((CUR != '/') || (NXT(1) != '>')))
4098
0
    NEXT;
4099
0
  }
4100
4101
0
failed:
4102
0
  SKIP_BLANKS;
4103
0
    }
4104
4105
    /*
4106
     * Handle specific association to the META tag
4107
     */
4108
0
    if (meta && (nbatts != 0))
4109
0
  htmlCheckMeta(ctxt, atts);
4110
4111
    /*
4112
     * SAX: Start of Element !
4113
     */
4114
0
    if (!discardtag) {
4115
0
  htmlnamePush(ctxt, name);
4116
0
  if ((ctxt->sax != NULL) && (ctxt->sax->startElement != NULL)) {
4117
0
      if (nbatts != 0)
4118
0
    ctxt->sax->startElement(ctxt->userData, name, atts);
4119
0
      else
4120
0
    ctxt->sax->startElement(ctxt->userData, name, NULL);
4121
0
  }
4122
0
    }
4123
4124
0
    if (atts != NULL) {
4125
0
        for (i = 1;i < nbatts;i += 2) {
4126
0
      if (atts[i] != NULL)
4127
0
    xmlFree((xmlChar *) atts[i]);
4128
0
  }
4129
0
    }
4130
4131
0
    return(discardtag);
4132
0
}
4133
4134
/**
4135
 * htmlParseEndTag:
4136
 * @ctxt:  an HTML parser context
4137
 *
4138
 * parse an end of tag
4139
 *
4140
 * [42] ETag ::= '</' Name S? '>'
4141
 *
4142
 * With namespace
4143
 *
4144
 * [NS 9] ETag ::= '</' QName S? '>'
4145
 *
4146
 * Returns 1 if the current level should be closed.
4147
 */
4148
4149
static int
4150
htmlParseEndTag(htmlParserCtxtPtr ctxt)
4151
0
{
4152
0
    const xmlChar *name;
4153
0
    const xmlChar *oldname;
4154
0
    int i, ret;
4155
4156
0
    if ((CUR != '<') || (NXT(1) != '/')) {
4157
0
        htmlParseErr(ctxt, XML_ERR_LTSLASH_REQUIRED,
4158
0
               "htmlParseEndTag: '</' not found\n", NULL, NULL);
4159
0
        return (0);
4160
0
    }
4161
0
    SKIP(2);
4162
4163
0
    name = htmlParseHTMLName(ctxt);
4164
0
    if (name == NULL)
4165
0
        return (0);
4166
    /*
4167
     * We should definitely be at the ending "S? '>'" part
4168
     */
4169
0
    SKIP_BLANKS;
4170
0
    if (CUR != '>') {
4171
0
        htmlParseErr(ctxt, XML_ERR_GT_REQUIRED,
4172
0
               "End tag : expected '>'\n", NULL, NULL);
4173
        /* Skip to next '>' */
4174
0
        while ((CUR != 0) && (CUR != '>'))
4175
0
            NEXT;
4176
0
    }
4177
0
    if (CUR == '>')
4178
0
        NEXT;
4179
4180
    /*
4181
     * if we ignored misplaced tags in htmlParseStartTag don't pop them
4182
     * out now.
4183
     */
4184
0
    if ((ctxt->depth > 0) &&
4185
0
        (xmlStrEqual(name, BAD_CAST "html") ||
4186
0
         xmlStrEqual(name, BAD_CAST "body") ||
4187
0
   xmlStrEqual(name, BAD_CAST "head"))) {
4188
0
  ctxt->depth--;
4189
0
  return (0);
4190
0
    }
4191
4192
    /*
4193
     * If the name read is not one of the element in the parsing stack
4194
     * then return, it's just an error.
4195
     */
4196
0
    for (i = (ctxt->nameNr - 1); i >= 0; i--) {
4197
0
        if (xmlStrEqual(name, ctxt->nameTab[i]))
4198
0
            break;
4199
0
    }
4200
0
    if (i < 0) {
4201
0
        htmlParseErr(ctxt, XML_ERR_TAG_NAME_MISMATCH,
4202
0
               "Unexpected end tag : %s\n", name, NULL);
4203
0
        return (0);
4204
0
    }
4205
4206
4207
    /*
4208
     * Check for auto-closure of HTML elements.
4209
     */
4210
4211
0
    htmlAutoCloseOnClose(ctxt, name);
4212
4213
    /*
4214
     * Well formedness constraints, opening and closing must match.
4215
     * With the exception that the autoclose may have popped stuff out
4216
     * of the stack.
4217
     */
4218
0
    if ((ctxt->name != NULL) && (!xmlStrEqual(ctxt->name, name))) {
4219
0
        htmlParseErr(ctxt, XML_ERR_TAG_NAME_MISMATCH,
4220
0
                     "Opening and ending tag mismatch: %s and %s\n",
4221
0
                     name, ctxt->name);
4222
0
    }
4223
4224
    /*
4225
     * SAX: End of Tag
4226
     */
4227
0
    oldname = ctxt->name;
4228
0
    if ((oldname != NULL) && (xmlStrEqual(oldname, name))) {
4229
0
        if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
4230
0
            ctxt->sax->endElement(ctxt->userData, name);
4231
0
  htmlNodeInfoPop(ctxt);
4232
0
        htmlnamePop(ctxt);
4233
0
        ret = 1;
4234
0
    } else {
4235
0
        ret = 0;
4236
0
    }
4237
4238
0
    return (ret);
4239
0
}
4240
4241
4242
/**
4243
 * htmlParseReference:
4244
 * @ctxt:  an HTML parser context
4245
 *
4246
 * parse and handle entity references in content,
4247
 * this will end-up in a call to character() since this is either a
4248
 * CharRef, or a predefined entity.
4249
 */
4250
static void
4251
0
htmlParseReference(htmlParserCtxtPtr ctxt) {
4252
0
    const htmlEntityDesc * ent;
4253
0
    xmlChar out[6];
4254
0
    const xmlChar *name;
4255
0
    if (CUR != '&') return;
4256
4257
0
    if (NXT(1) == '#') {
4258
0
  unsigned int c;
4259
0
  int bits, i = 0;
4260
4261
0
  c = htmlParseCharRef(ctxt);
4262
0
  if (c == 0)
4263
0
      return;
4264
4265
0
        if      (c <    0x80) { out[i++]= c;                bits= -6; }
4266
0
        else if (c <   0x800) { out[i++]=((c >>  6) & 0x1F) | 0xC0;  bits=  0; }
4267
0
        else if (c < 0x10000) { out[i++]=((c >> 12) & 0x0F) | 0xE0;  bits=  6; }
4268
0
        else                  { out[i++]=((c >> 18) & 0x07) | 0xF0;  bits= 12; }
4269
4270
0
        for ( ; bits >= 0; bits-= 6) {
4271
0
            out[i++]= ((c >> bits) & 0x3F) | 0x80;
4272
0
        }
4273
0
  out[i] = 0;
4274
4275
0
  htmlCheckParagraph(ctxt);
4276
0
  if ((ctxt->sax != NULL) && (ctxt->sax->characters != NULL))
4277
0
      ctxt->sax->characters(ctxt->userData, out, i);
4278
0
    } else {
4279
0
  ent = htmlParseEntityRef(ctxt, &name);
4280
0
  if (name == NULL) {
4281
0
      htmlCheckParagraph(ctxt);
4282
0
      if ((ctxt->sax != NULL) && (ctxt->sax->characters != NULL))
4283
0
          ctxt->sax->characters(ctxt->userData, BAD_CAST "&", 1);
4284
0
      return;
4285
0
  }
4286
0
  if ((ent == NULL) || !(ent->value > 0)) {
4287
0
      htmlCheckParagraph(ctxt);
4288
0
      if ((ctxt->sax != NULL) && (ctxt->sax->characters != NULL)) {
4289
0
    ctxt->sax->characters(ctxt->userData, BAD_CAST "&", 1);
4290
0
    ctxt->sax->characters(ctxt->userData, name, xmlStrlen(name));
4291
    /* ctxt->sax->characters(ctxt->userData, BAD_CAST ";", 1); */
4292
0
      }
4293
0
  } else {
4294
0
      unsigned int c;
4295
0
      int bits, i = 0;
4296
4297
0
      c = ent->value;
4298
0
      if      (c <    0x80)
4299
0
              { out[i++]= c;                bits= -6; }
4300
0
      else if (c <   0x800)
4301
0
              { out[i++]=((c >>  6) & 0x1F) | 0xC0;  bits=  0; }
4302
0
      else if (c < 0x10000)
4303
0
              { out[i++]=((c >> 12) & 0x0F) | 0xE0;  bits=  6; }
4304
0
      else
4305
0
              { out[i++]=((c >> 18) & 0x07) | 0xF0;  bits= 12; }
4306
4307
0
      for ( ; bits >= 0; bits-= 6) {
4308
0
    out[i++]= ((c >> bits) & 0x3F) | 0x80;
4309
0
      }
4310
0
      out[i] = 0;
4311
4312
0
      htmlCheckParagraph(ctxt);
4313
0
      if ((ctxt->sax != NULL) && (ctxt->sax->characters != NULL))
4314
0
    ctxt->sax->characters(ctxt->userData, out, i);
4315
0
  }
4316
0
    }
4317
0
}
4318
4319
/**
4320
 * htmlParseContent:
4321
 * @ctxt:  an HTML parser context
4322
 *
4323
 * Parse a content: comment, sub-element, reference or text.
4324
 * Kept for compatibility with old code
4325
 */
4326
4327
static void
4328
0
htmlParseContent(htmlParserCtxtPtr ctxt) {
4329
0
    xmlChar *currentNode;
4330
0
    int depth;
4331
0
    const xmlChar *name;
4332
4333
0
    currentNode = xmlStrdup(ctxt->name);
4334
0
    depth = ctxt->nameNr;
4335
0
    while (1) {
4336
0
        GROW;
4337
4338
0
        if (ctxt->instate == XML_PARSER_EOF)
4339
0
            break;
4340
4341
  /*
4342
   * Our tag or one of it's parent or children is ending.
4343
   */
4344
0
        if ((CUR == '<') && (NXT(1) == '/')) {
4345
0
      if (htmlParseEndTag(ctxt) &&
4346
0
    ((currentNode != NULL) || (ctxt->nameNr == 0))) {
4347
0
    if (currentNode != NULL)
4348
0
        xmlFree(currentNode);
4349
0
    return;
4350
0
      }
4351
0
      continue; /* while */
4352
0
        }
4353
4354
0
  else if ((CUR == '<') &&
4355
0
           ((IS_ASCII_LETTER(NXT(1))) ||
4356
0
      (NXT(1) == '_') || (NXT(1) == ':'))) {
4357
0
      name = htmlParseHTMLName_nonInvasive(ctxt);
4358
0
      if (name == NULL) {
4359
0
          htmlParseErr(ctxt, XML_ERR_NAME_REQUIRED,
4360
0
       "htmlParseStartTag: invalid element name\n",
4361
0
       NULL, NULL);
4362
          /* Dump the bogus tag like browsers do */
4363
0
                while ((CUR != 0) && (CUR != '>'))
4364
0
              NEXT;
4365
4366
0
          if (currentNode != NULL)
4367
0
              xmlFree(currentNode);
4368
0
          return;
4369
0
      }
4370
4371
0
      if (ctxt->name != NULL) {
4372
0
          if (htmlCheckAutoClose(name, ctxt->name) == 1) {
4373
0
              htmlAutoClose(ctxt, name);
4374
0
              continue;
4375
0
          }
4376
0
      }
4377
0
  }
4378
4379
  /*
4380
   * Has this node been popped out during parsing of
4381
   * the next element
4382
   */
4383
0
        if ((ctxt->nameNr > 0) && (depth >= ctxt->nameNr) &&
4384
0
      (!xmlStrEqual(currentNode, ctxt->name)))
4385
0
       {
4386
0
      if (currentNode != NULL) xmlFree(currentNode);
4387
0
      return;
4388
0
  }
4389
4390
0
  if ((CUR != 0) && ((xmlStrEqual(currentNode, BAD_CAST"script")) ||
4391
0
      (xmlStrEqual(currentNode, BAD_CAST"style")))) {
4392
      /*
4393
       * Handle SCRIPT/STYLE separately
4394
       */
4395
0
      htmlParseScript(ctxt);
4396
0
  }
4397
4398
0
        else if ((CUR == '<') && (NXT(1) == '!')) {
4399
            /*
4400
             * Sometimes DOCTYPE arrives in the middle of the document
4401
             */
4402
0
            if ((UPP(2) == 'D') && (UPP(3) == 'O') &&
4403
0
                (UPP(4) == 'C') && (UPP(5) == 'T') &&
4404
0
                (UPP(6) == 'Y') && (UPP(7) == 'P') &&
4405
0
                (UPP(8) == 'E')) {
4406
0
                htmlParseErr(ctxt, XML_HTML_STRUCURE_ERROR,
4407
0
                             "Misplaced DOCTYPE declaration\n",
4408
0
                             BAD_CAST "DOCTYPE" , NULL);
4409
0
                htmlParseDocTypeDecl(ctxt);
4410
0
            }
4411
            /*
4412
             * First case :  a comment
4413
             */
4414
0
            else if ((NXT(2) == '-') && (NXT(3) == '-')) {
4415
0
                htmlParseComment(ctxt);
4416
0
            }
4417
0
            else {
4418
0
                htmlSkipBogusComment(ctxt);
4419
0
            }
4420
0
        }
4421
4422
        /*
4423
         * Second case : a Processing Instruction.
4424
         */
4425
0
        else if ((CUR == '<') && (NXT(1) == '?')) {
4426
0
            htmlParsePI(ctxt);
4427
0
        }
4428
4429
        /*
4430
         * Third case :  a sub-element.
4431
         */
4432
0
        else if ((CUR == '<') && IS_ASCII_LETTER(NXT(1))) {
4433
0
            htmlParseElement(ctxt);
4434
0
        }
4435
0
        else if (CUR == '<') {
4436
0
            if ((ctxt->sax != NULL) && (!ctxt->disableSAX) &&
4437
0
                (ctxt->sax->characters != NULL))
4438
0
                ctxt->sax->characters(ctxt->userData, BAD_CAST "<", 1);
4439
0
            NEXT;
4440
0
        }
4441
4442
        /*
4443
         * Fourth case : a reference. If if has not been resolved,
4444
         *    parsing returns it's Name, create the node
4445
         */
4446
0
        else if (CUR == '&') {
4447
0
            htmlParseReference(ctxt);
4448
0
        }
4449
4450
        /*
4451
         * Fifth case : end of the resource
4452
         */
4453
0
        else if (CUR == 0) {
4454
0
            htmlAutoCloseOnEnd(ctxt);
4455
0
            break;
4456
0
        }
4457
4458
        /*
4459
         * Last case, text. Note that References are handled directly.
4460
         */
4461
0
        else {
4462
0
            htmlParseCharData(ctxt);
4463
0
        }
4464
0
        GROW;
4465
0
    }
4466
0
    if (currentNode != NULL) xmlFree(currentNode);
4467
0
}
4468
4469
/**
4470
 * htmlParseElement:
4471
 * @ctxt:  an HTML parser context
4472
 *
4473
 * parse an HTML element, this is highly recursive
4474
 * this is kept for compatibility with previous code versions
4475
 *
4476
 * [39] element ::= EmptyElemTag | STag content ETag
4477
 *
4478
 * [41] Attribute ::= Name Eq AttValue
4479
 */
4480
4481
void
4482
0
htmlParseElement(htmlParserCtxtPtr ctxt) {
4483
0
    const xmlChar *name;
4484
0
    xmlChar *currentNode = NULL;
4485
0
    const htmlElemDesc * info;
4486
0
    htmlParserNodeInfo node_info;
4487
0
    int failed;
4488
0
    int depth;
4489
0
    const xmlChar *oldptr;
4490
4491
0
    if ((ctxt == NULL) || (ctxt->input == NULL)) {
4492
0
  htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
4493
0
         "htmlParseElement: context error\n", NULL, NULL);
4494
0
  return;
4495
0
    }
4496
4497
0
    if (ctxt->instate == XML_PARSER_EOF)
4498
0
        return;
4499
4500
    /* Capture start position */
4501
0
    if (ctxt->record_info) {
4502
0
        node_info.begin_pos = ctxt->input->consumed +
4503
0
                          (CUR_PTR - ctxt->input->base);
4504
0
  node_info.begin_line = ctxt->input->line;
4505
0
    }
4506
4507
0
    failed = htmlParseStartTag(ctxt);
4508
0
    name = ctxt->name;
4509
0
    if ((failed == -1) || (name == NULL)) {
4510
0
  if (CUR == '>')
4511
0
      NEXT;
4512
0
        return;
4513
0
    }
4514
4515
    /*
4516
     * Lookup the info for that element.
4517
     */
4518
0
    info = htmlTagLookup(name);
4519
0
    if (info == NULL) {
4520
0
  htmlParseErr(ctxt, XML_HTML_UNKNOWN_TAG,
4521
0
               "Tag %s invalid\n", name, NULL);
4522
0
    }
4523
4524
    /*
4525
     * Check for an Empty Element labeled the XML/SGML way
4526
     */
4527
0
    if ((CUR == '/') && (NXT(1) == '>')) {
4528
0
        SKIP(2);
4529
0
  if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
4530
0
      ctxt->sax->endElement(ctxt->userData, name);
4531
0
  htmlnamePop(ctxt);
4532
0
  return;
4533
0
    }
4534
4535
0
    if (CUR == '>') {
4536
0
        NEXT;
4537
0
    } else {
4538
0
  htmlParseErr(ctxt, XML_ERR_GT_REQUIRED,
4539
0
               "Couldn't find end of Start Tag %s\n", name, NULL);
4540
4541
  /*
4542
   * end of parsing of this node.
4543
   */
4544
0
  if (xmlStrEqual(name, ctxt->name)) {
4545
0
      nodePop(ctxt);
4546
0
      htmlnamePop(ctxt);
4547
0
  }
4548
4549
  /*
4550
   * Capture end position and add node
4551
   */
4552
0
  if (ctxt->record_info) {
4553
0
     node_info.end_pos = ctxt->input->consumed +
4554
0
            (CUR_PTR - ctxt->input->base);
4555
0
     node_info.end_line = ctxt->input->line;
4556
0
     node_info.node = ctxt->node;
4557
0
     xmlParserAddNodeInfo(ctxt, &node_info);
4558
0
  }
4559
0
  return;
4560
0
    }
4561
4562
    /*
4563
     * Check for an Empty Element from DTD definition
4564
     */
4565
0
    if ((info != NULL) && (info->empty)) {
4566
0
  if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
4567
0
      ctxt->sax->endElement(ctxt->userData, name);
4568
0
  htmlnamePop(ctxt);
4569
0
  return;
4570
0
    }
4571
4572
    /*
4573
     * Parse the content of the element:
4574
     */
4575
0
    currentNode = xmlStrdup(ctxt->name);
4576
0
    depth = ctxt->nameNr;
4577
0
    while (CUR != 0) {
4578
0
  oldptr = ctxt->input->cur;
4579
0
  htmlParseContent(ctxt);
4580
0
  if (oldptr==ctxt->input->cur) break;
4581
0
  if (ctxt->nameNr < depth) break;
4582
0
    }
4583
4584
    /*
4585
     * Capture end position and add node
4586
     */
4587
0
    if ( currentNode != NULL && ctxt->record_info ) {
4588
0
       node_info.end_pos = ctxt->input->consumed +
4589
0
                          (CUR_PTR - ctxt->input->base);
4590
0
       node_info.end_line = ctxt->input->line;
4591
0
       node_info.node = ctxt->node;
4592
0
       xmlParserAddNodeInfo(ctxt, &node_info);
4593
0
    }
4594
0
    if (CUR == 0) {
4595
0
  htmlAutoCloseOnEnd(ctxt);
4596
0
    }
4597
4598
0
    if (currentNode != NULL)
4599
0
  xmlFree(currentNode);
4600
0
}
4601
4602
static void
4603
0
htmlParserFinishElementParsing(htmlParserCtxtPtr ctxt) {
4604
    /*
4605
     * Capture end position and add node
4606
     */
4607
0
    if ( ctxt->node != NULL && ctxt->record_info ) {
4608
0
       ctxt->nodeInfo->end_pos = ctxt->input->consumed +
4609
0
                                (CUR_PTR - ctxt->input->base);
4610
0
       ctxt->nodeInfo->end_line = ctxt->input->line;
4611
0
       ctxt->nodeInfo->node = ctxt->node;
4612
0
       xmlParserAddNodeInfo(ctxt, ctxt->nodeInfo);
4613
0
       htmlNodeInfoPop(ctxt);
4614
0
    }
4615
0
    if (CUR == 0) {
4616
0
       htmlAutoCloseOnEnd(ctxt);
4617
0
    }
4618
0
}
4619
4620
/**
4621
 * htmlParseElementInternal:
4622
 * @ctxt:  an HTML parser context
4623
 *
4624
 * parse an HTML element, new version, non recursive
4625
 *
4626
 * [39] element ::= EmptyElemTag | STag content ETag
4627
 *
4628
 * [41] Attribute ::= Name Eq AttValue
4629
 */
4630
4631
static void
4632
0
htmlParseElementInternal(htmlParserCtxtPtr ctxt) {
4633
0
    const xmlChar *name;
4634
0
    const htmlElemDesc * info;
4635
0
    htmlParserNodeInfo node_info = { NULL, 0, 0, 0, 0 };
4636
0
    int failed;
4637
4638
0
    if ((ctxt == NULL) || (ctxt->input == NULL)) {
4639
0
  htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
4640
0
         "htmlParseElementInternal: context error\n", NULL, NULL);
4641
0
  return;
4642
0
    }
4643
4644
0
    if (ctxt->instate == XML_PARSER_EOF)
4645
0
        return;
4646
4647
    /* Capture start position */
4648
0
    if (ctxt->record_info) {
4649
0
        node_info.begin_pos = ctxt->input->consumed +
4650
0
                          (CUR_PTR - ctxt->input->base);
4651
0
  node_info.begin_line = ctxt->input->line;
4652
0
    }
4653
4654
0
    failed = htmlParseStartTag(ctxt);
4655
0
    name = ctxt->name;
4656
0
    if ((failed == -1) || (name == NULL)) {
4657
0
  if (CUR == '>')
4658
0
      NEXT;
4659
0
        return;
4660
0
    }
4661
4662
    /*
4663
     * Lookup the info for that element.
4664
     */
4665
0
    info = htmlTagLookup(name);
4666
0
    if (info == NULL) {
4667
0
  htmlParseErr(ctxt, XML_HTML_UNKNOWN_TAG,
4668
0
               "Tag %s invalid\n", name, NULL);
4669
0
    }
4670
4671
    /*
4672
     * Check for an Empty Element labeled the XML/SGML way
4673
     */
4674
0
    if ((CUR == '/') && (NXT(1) == '>')) {
4675
0
        SKIP(2);
4676
0
  if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
4677
0
      ctxt->sax->endElement(ctxt->userData, name);
4678
0
  htmlnamePop(ctxt);
4679
0
  return;
4680
0
    }
4681
4682
0
    if (CUR == '>') {
4683
0
        NEXT;
4684
0
    } else {
4685
0
  htmlParseErr(ctxt, XML_ERR_GT_REQUIRED,
4686
0
               "Couldn't find end of Start Tag %s\n", name, NULL);
4687
4688
  /*
4689
   * end of parsing of this node.
4690
   */
4691
0
  if (xmlStrEqual(name, ctxt->name)) {
4692
0
      nodePop(ctxt);
4693
0
      htmlnamePop(ctxt);
4694
0
  }
4695
4696
0
        if (ctxt->record_info)
4697
0
            htmlNodeInfoPush(ctxt, &node_info);
4698
0
        htmlParserFinishElementParsing(ctxt);
4699
0
  return;
4700
0
    }
4701
4702
    /*
4703
     * Check for an Empty Element from DTD definition
4704
     */
4705
0
    if ((info != NULL) && (info->empty)) {
4706
0
  if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
4707
0
      ctxt->sax->endElement(ctxt->userData, name);
4708
0
  htmlnamePop(ctxt);
4709
0
  return;
4710
0
    }
4711
4712
0
    if (ctxt->record_info)
4713
0
        htmlNodeInfoPush(ctxt, &node_info);
4714
0
}
4715
4716
/**
4717
 * htmlParseContentInternal:
4718
 * @ctxt:  an HTML parser context
4719
 *
4720
 * Parse a content: comment, sub-element, reference or text.
4721
 * New version for non recursive htmlParseElementInternal
4722
 */
4723
4724
static void
4725
0
htmlParseContentInternal(htmlParserCtxtPtr ctxt) {
4726
0
    xmlChar *currentNode;
4727
0
    int depth;
4728
0
    const xmlChar *name;
4729
4730
0
    currentNode = xmlStrdup(ctxt->name);
4731
0
    depth = ctxt->nameNr;
4732
0
    while (1) {
4733
0
        GROW;
4734
4735
0
        if (ctxt->instate == XML_PARSER_EOF)
4736
0
            break;
4737
4738
  /*
4739
   * Our tag or one of it's parent or children is ending.
4740
   */
4741
0
        if ((CUR == '<') && (NXT(1) == '/')) {
4742
0
      if (htmlParseEndTag(ctxt) &&
4743
0
    ((currentNode != NULL) || (ctxt->nameNr == 0))) {
4744
0
    if (currentNode != NULL)
4745
0
        xmlFree(currentNode);
4746
4747
0
          currentNode = xmlStrdup(ctxt->name);
4748
0
          depth = ctxt->nameNr;
4749
0
      }
4750
0
      continue; /* while */
4751
0
        }
4752
4753
0
  else if ((CUR == '<') &&
4754
0
           ((IS_ASCII_LETTER(NXT(1))) ||
4755
0
      (NXT(1) == '_') || (NXT(1) == ':'))) {
4756
0
      name = htmlParseHTMLName_nonInvasive(ctxt);
4757
0
      if (name == NULL) {
4758
0
          htmlParseErr(ctxt, XML_ERR_NAME_REQUIRED,
4759
0
       "htmlParseStartTag: invalid element name\n",
4760
0
       NULL, NULL);
4761
          /* Dump the bogus tag like browsers do */
4762
0
          while ((CUR == 0) && (CUR != '>'))
4763
0
              NEXT;
4764
4765
0
          htmlParserFinishElementParsing(ctxt);
4766
0
          if (currentNode != NULL)
4767
0
              xmlFree(currentNode);
4768
4769
0
          currentNode = xmlStrdup(ctxt->name);
4770
0
          depth = ctxt->nameNr;
4771
0
          continue;
4772
0
      }
4773
4774
0
      if (ctxt->name != NULL) {
4775
0
          if (htmlCheckAutoClose(name, ctxt->name) == 1) {
4776
0
              htmlAutoClose(ctxt, name);
4777
0
              continue;
4778
0
          }
4779
0
      }
4780
0
  }
4781
4782
  /*
4783
   * Has this node been popped out during parsing of
4784
   * the next element
4785
   */
4786
0
        if ((ctxt->nameNr > 0) && (depth >= ctxt->nameNr) &&
4787
0
      (!xmlStrEqual(currentNode, ctxt->name)))
4788
0
       {
4789
0
      htmlParserFinishElementParsing(ctxt);
4790
0
      if (currentNode != NULL) xmlFree(currentNode);
4791
4792
0
      currentNode = xmlStrdup(ctxt->name);
4793
0
      depth = ctxt->nameNr;
4794
0
      continue;
4795
0
  }
4796
4797
0
  if ((CUR != 0) && ((xmlStrEqual(currentNode, BAD_CAST"script")) ||
4798
0
      (xmlStrEqual(currentNode, BAD_CAST"style")))) {
4799
      /*
4800
       * Handle SCRIPT/STYLE separately
4801
       */
4802
0
      htmlParseScript(ctxt);
4803
0
  }
4804
4805
0
        else if ((CUR == '<') && (NXT(1) == '!')) {
4806
            /*
4807
             * Sometimes DOCTYPE arrives in the middle of the document
4808
             */
4809
0
            if ((UPP(2) == 'D') && (UPP(3) == 'O') &&
4810
0
                (UPP(4) == 'C') && (UPP(5) == 'T') &&
4811
0
                (UPP(6) == 'Y') && (UPP(7) == 'P') &&
4812
0
                (UPP(8) == 'E')) {
4813
0
                htmlParseErr(ctxt, XML_HTML_STRUCURE_ERROR,
4814
0
                             "Misplaced DOCTYPE declaration\n",
4815
0
                             BAD_CAST "DOCTYPE" , NULL);
4816
0
                htmlParseDocTypeDecl(ctxt);
4817
0
            }
4818
            /*
4819
             * First case :  a comment
4820
             */
4821
0
            else if ((NXT(2) == '-') && (NXT(3) == '-')) {
4822
0
                htmlParseComment(ctxt);
4823
0
            }
4824
0
            else {
4825
0
                htmlSkipBogusComment(ctxt);
4826
0
            }
4827
0
        }
4828
4829
        /*
4830
         * Second case : a Processing Instruction.
4831
         */
4832
0
        else if ((CUR == '<') && (NXT(1) == '?')) {
4833
0
            htmlParsePI(ctxt);
4834
0
        }
4835
4836
        /*
4837
         * Third case :  a sub-element.
4838
         */
4839
0
        else if ((CUR == '<') && IS_ASCII_LETTER(NXT(1))) {
4840
0
            htmlParseElementInternal(ctxt);
4841
0
            if (currentNode != NULL) xmlFree(currentNode);
4842
4843
0
            currentNode = xmlStrdup(ctxt->name);
4844
0
            depth = ctxt->nameNr;
4845
0
        }
4846
0
        else if (CUR == '<') {
4847
0
            if ((ctxt->sax != NULL) && (!ctxt->disableSAX) &&
4848
0
                (ctxt->sax->characters != NULL))
4849
0
                ctxt->sax->characters(ctxt->userData, BAD_CAST "<", 1);
4850
0
            NEXT;
4851
0
        }
4852
4853
        /*
4854
         * Fourth case : a reference. If if has not been resolved,
4855
         *    parsing returns it's Name, create the node
4856
         */
4857
0
        else if (CUR == '&') {
4858
0
            htmlParseReference(ctxt);
4859
0
        }
4860
4861
        /*
4862
         * Fifth case : end of the resource
4863
         */
4864
0
        else if (CUR == 0) {
4865
0
            htmlAutoCloseOnEnd(ctxt);
4866
0
            break;
4867
0
        }
4868
4869
        /*
4870
         * Last case, text. Note that References are handled directly.
4871
         */
4872
0
        else {
4873
0
            htmlParseCharData(ctxt);
4874
0
        }
4875
0
        GROW;
4876
0
    }
4877
0
    if (currentNode != NULL) xmlFree(currentNode);
4878
0
}
4879
4880
/**
4881
 * htmlParseContent:
4882
 * @ctxt:  an HTML parser context
4883
 *
4884
 * Parse a content: comment, sub-element, reference or text.
4885
 * This is the entry point when called from parser.c
4886
 */
4887
4888
void
4889
0
__htmlParseContent(void *ctxt) {
4890
0
    if (ctxt != NULL)
4891
0
  htmlParseContentInternal((htmlParserCtxtPtr) ctxt);
4892
0
}
4893
4894
/**
4895
 * htmlParseDocument:
4896
 * @ctxt:  an HTML parser context
4897
 *
4898
 * parse an HTML document (and build a tree if using the standard SAX
4899
 * interface).
4900
 *
4901
 * Returns 0, -1 in case of error. the parser context is augmented
4902
 *                as a result of the parsing.
4903
 */
4904
4905
int
4906
0
htmlParseDocument(htmlParserCtxtPtr ctxt) {
4907
0
    xmlChar start[4];
4908
0
    xmlCharEncoding enc;
4909
0
    xmlDtdPtr dtd;
4910
4911
0
    xmlInitParser();
4912
4913
0
    htmlDefaultSAXHandlerInit();
4914
4915
0
    if ((ctxt == NULL) || (ctxt->input == NULL)) {
4916
0
  htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
4917
0
         "htmlParseDocument: context error\n", NULL, NULL);
4918
0
  return(XML_ERR_INTERNAL_ERROR);
4919
0
    }
4920
0
    ctxt->html = 1;
4921
0
    ctxt->linenumbers = 1;
4922
0
    GROW;
4923
    /*
4924
     * SAX: beginning of the document processing.
4925
     */
4926
0
    if ((ctxt->sax) && (ctxt->sax->setDocumentLocator))
4927
0
        ctxt->sax->setDocumentLocator(ctxt->userData, &xmlDefaultSAXLocator);
4928
4929
0
    if ((ctxt->encoding == (const xmlChar *)XML_CHAR_ENCODING_NONE) &&
4930
0
        ((ctxt->input->end - ctxt->input->cur) >= 4)) {
4931
  /*
4932
   * Get the 4 first bytes and decode the charset
4933
   * if enc != XML_CHAR_ENCODING_NONE
4934
   * plug some encoding conversion routines.
4935
   */
4936
0
  start[0] = RAW;
4937
0
  start[1] = NXT(1);
4938
0
  start[2] = NXT(2);
4939
0
  start[3] = NXT(3);
4940
0
  enc = xmlDetectCharEncoding(&start[0], 4);
4941
0
  if (enc != XML_CHAR_ENCODING_NONE) {
4942
0
      xmlSwitchEncoding(ctxt, enc);
4943
0
  }
4944
0
    }
4945
4946
    /*
4947
     * Wipe out everything which is before the first '<'
4948
     */
4949
0
    SKIP_BLANKS;
4950
0
    if (CUR == 0) {
4951
0
  htmlParseErr(ctxt, XML_ERR_DOCUMENT_EMPTY,
4952
0
               "Document is empty\n", NULL, NULL);
4953
0
    }
4954
4955
0
    if ((ctxt->sax) && (ctxt->sax->startDocument) && (!ctxt->disableSAX))
4956
0
  ctxt->sax->startDocument(ctxt->userData);
4957
4958
4959
    /*
4960
     * Parse possible comments and PIs before any content
4961
     */
4962
0
    while (((CUR == '<') && (NXT(1) == '!') &&
4963
0
            (NXT(2) == '-') && (NXT(3) == '-')) ||
4964
0
     ((CUR == '<') && (NXT(1) == '?'))) {
4965
0
        htmlParseComment(ctxt);
4966
0
        htmlParsePI(ctxt);
4967
0
  SKIP_BLANKS;
4968
0
    }
4969
4970
4971
    /*
4972
     * Then possibly doc type declaration(s) and more Misc
4973
     * (doctypedecl Misc*)?
4974
     */
4975
0
    if ((CUR == '<') && (NXT(1) == '!') &&
4976
0
  (UPP(2) == 'D') && (UPP(3) == 'O') &&
4977
0
  (UPP(4) == 'C') && (UPP(5) == 'T') &&
4978
0
  (UPP(6) == 'Y') && (UPP(7) == 'P') &&
4979
0
  (UPP(8) == 'E')) {
4980
0
  htmlParseDocTypeDecl(ctxt);
4981
0
    }
4982
0
    SKIP_BLANKS;
4983
4984
    /*
4985
     * Parse possible comments and PIs before any content
4986
     */
4987
0
    while (((CUR == '<') && (NXT(1) == '!') &&
4988
0
            (NXT(2) == '-') && (NXT(3) == '-')) ||
4989
0
     ((CUR == '<') && (NXT(1) == '?'))) {
4990
0
        htmlParseComment(ctxt);
4991
0
        htmlParsePI(ctxt);
4992
0
  SKIP_BLANKS;
4993
0
    }
4994
4995
    /*
4996
     * Time to start parsing the tree itself
4997
     */
4998
0
    htmlParseContentInternal(ctxt);
4999
5000
    /*
5001
     * autoclose
5002
     */
5003
0
    if (CUR == 0)
5004
0
  htmlAutoCloseOnEnd(ctxt);
5005
5006
5007
    /*
5008
     * SAX: end of the document processing.
5009
     */
5010
0
    if ((ctxt->sax) && (ctxt->sax->endDocument != NULL))
5011
0
        ctxt->sax->endDocument(ctxt->userData);
5012
5013
0
    if ((!(ctxt->options & HTML_PARSE_NODEFDTD)) && (ctxt->myDoc != NULL)) {
5014
0
  dtd = xmlGetIntSubset(ctxt->myDoc);
5015
0
  if (dtd == NULL)
5016
0
      ctxt->myDoc->intSubset =
5017
0
    xmlCreateIntSubset(ctxt->myDoc, BAD_CAST "html",
5018
0
        BAD_CAST "-//W3C//DTD HTML 4.0 Transitional//EN",
5019
0
        BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd");
5020
0
    }
5021
0
    if (! ctxt->wellFormed) return(-1);
5022
0
    return(0);
5023
0
}
5024
5025
5026
/************************************************************************
5027
 *                  *
5028
 *      Parser contexts handling      *
5029
 *                  *
5030
 ************************************************************************/
5031
5032
/**
5033
 * htmlInitParserCtxt:
5034
 * @ctxt:  an HTML parser context
5035
 *
5036
 * Initialize a parser context
5037
 *
5038
 * Returns 0 in case of success and -1 in case of error
5039
 */
5040
5041
static int
5042
htmlInitParserCtxt(htmlParserCtxtPtr ctxt)
5043
0
{
5044
0
    htmlSAXHandler *sax;
5045
5046
0
    if (ctxt == NULL) return(-1);
5047
0
    memset(ctxt, 0, sizeof(htmlParserCtxt));
5048
5049
0
    ctxt->dict = xmlDictCreate();
5050
0
    if (ctxt->dict == NULL) {
5051
0
        htmlErrMemory(NULL, "htmlInitParserCtxt: out of memory\n");
5052
0
  return(-1);
5053
0
    }
5054
0
    sax = (htmlSAXHandler *) xmlMalloc(sizeof(htmlSAXHandler));
5055
0
    if (sax == NULL) {
5056
0
        htmlErrMemory(NULL, "htmlInitParserCtxt: out of memory\n");
5057
0
  return(-1);
5058
0
    }
5059
0
    memset(sax, 0, sizeof(htmlSAXHandler));
5060
5061
    /* Allocate the Input stack */
5062
0
    ctxt->inputTab = (htmlParserInputPtr *)
5063
0
                      xmlMalloc(5 * sizeof(htmlParserInputPtr));
5064
0
    if (ctxt->inputTab == NULL) {
5065
0
        htmlErrMemory(NULL, "htmlInitParserCtxt: out of memory\n");
5066
0
  ctxt->inputNr = 0;
5067
0
  ctxt->inputMax = 0;
5068
0
  ctxt->input = NULL;
5069
0
  return(-1);
5070
0
    }
5071
0
    ctxt->inputNr = 0;
5072
0
    ctxt->inputMax = 5;
5073
0
    ctxt->input = NULL;
5074
0
    ctxt->version = NULL;
5075
0
    ctxt->encoding = NULL;
5076
0
    ctxt->standalone = -1;
5077
0
    ctxt->instate = XML_PARSER_START;
5078
5079
    /* Allocate the Node stack */
5080
0
    ctxt->nodeTab = (htmlNodePtr *) xmlMalloc(10 * sizeof(htmlNodePtr));
5081
0
    if (ctxt->nodeTab == NULL) {
5082
0
        htmlErrMemory(NULL, "htmlInitParserCtxt: out of memory\n");
5083
0
  ctxt->nodeNr = 0;
5084
0
  ctxt->nodeMax = 0;
5085
0
  ctxt->node = NULL;
5086
0
  ctxt->inputNr = 0;
5087
0
  ctxt->inputMax = 0;
5088
0
  ctxt->input = NULL;
5089
0
  return(-1);
5090
0
    }
5091
0
    ctxt->nodeNr = 0;
5092
0
    ctxt->nodeMax = 10;
5093
0
    ctxt->node = NULL;
5094
5095
    /* Allocate the Name stack */
5096
0
    ctxt->nameTab = (const xmlChar **) xmlMalloc(10 * sizeof(xmlChar *));
5097
0
    if (ctxt->nameTab == NULL) {
5098
0
        htmlErrMemory(NULL, "htmlInitParserCtxt: out of memory\n");
5099
0
  ctxt->nameNr = 0;
5100
0
  ctxt->nameMax = 0;
5101
0
  ctxt->name = NULL;
5102
0
  ctxt->nodeNr = 0;
5103
0
  ctxt->nodeMax = 0;
5104
0
  ctxt->node = NULL;
5105
0
  ctxt->inputNr = 0;
5106
0
  ctxt->inputMax = 0;
5107
0
  ctxt->input = NULL;
5108
0
  return(-1);
5109
0
    }
5110
0
    ctxt->nameNr = 0;
5111
0
    ctxt->nameMax = 10;
5112
0
    ctxt->name = NULL;
5113
5114
0
    ctxt->nodeInfoTab = NULL;
5115
0
    ctxt->nodeInfoNr  = 0;
5116
0
    ctxt->nodeInfoMax = 0;
5117
5118
0
    ctxt->sax = sax;
5119
0
    xmlSAX2InitHtmlDefaultSAXHandler(sax);
5120
5121
0
    ctxt->userData = ctxt;
5122
0
    ctxt->myDoc = NULL;
5123
0
    ctxt->wellFormed = 1;
5124
0
    ctxt->replaceEntities = 0;
5125
0
    ctxt->linenumbers = xmlLineNumbersDefaultValue;
5126
0
    ctxt->keepBlanks = xmlKeepBlanksDefaultValue;
5127
0
    ctxt->html = 1;
5128
0
    ctxt->vctxt.flags = XML_VCTXT_USE_PCTXT;
5129
0
    ctxt->vctxt.userData = ctxt;
5130
0
    ctxt->vctxt.error = xmlParserValidityError;
5131
0
    ctxt->vctxt.warning = xmlParserValidityWarning;
5132
0
    ctxt->record_info = 0;
5133
0
    ctxt->validate = 0;
5134
0
    ctxt->checkIndex = 0;
5135
0
    ctxt->catalogs = NULL;
5136
0
    xmlInitNodeInfoSeq(&ctxt->node_seq);
5137
0
    return(0);
5138
0
}
5139
5140
/**
5141
 * htmlFreeParserCtxt:
5142
 * @ctxt:  an HTML parser context
5143
 *
5144
 * Free all the memory used by a parser context. However the parsed
5145
 * document in ctxt->myDoc is not freed.
5146
 */
5147
5148
void
5149
htmlFreeParserCtxt(htmlParserCtxtPtr ctxt)
5150
0
{
5151
0
    xmlFreeParserCtxt(ctxt);
5152
0
}
5153
5154
/**
5155
 * htmlNewParserCtxt:
5156
 *
5157
 * Allocate and initialize a new parser context.
5158
 *
5159
 * Returns the htmlParserCtxtPtr or NULL in case of allocation error
5160
 */
5161
5162
htmlParserCtxtPtr
5163
htmlNewParserCtxt(void)
5164
0
{
5165
0
    xmlParserCtxtPtr ctxt;
5166
5167
0
    ctxt = (xmlParserCtxtPtr) xmlMalloc(sizeof(xmlParserCtxt));
5168
0
    if (ctxt == NULL) {
5169
0
        htmlErrMemory(NULL, "NewParserCtxt: out of memory\n");
5170
0
  return(NULL);
5171
0
    }
5172
0
    memset(ctxt, 0, sizeof(xmlParserCtxt));
5173
0
    if (htmlInitParserCtxt(ctxt) < 0) {
5174
0
        htmlFreeParserCtxt(ctxt);
5175
0
  return(NULL);
5176
0
    }
5177
0
    return(ctxt);
5178
0
}
5179
5180
/**
5181
 * htmlCreateMemoryParserCtxt:
5182
 * @buffer:  a pointer to a char array
5183
 * @size:  the size of the array
5184
 *
5185
 * Create a parser context for an HTML in-memory document.
5186
 *
5187
 * Returns the new parser context or NULL
5188
 */
5189
htmlParserCtxtPtr
5190
0
htmlCreateMemoryParserCtxt(const char *buffer, int size) {
5191
0
    xmlParserCtxtPtr ctxt;
5192
0
    xmlParserInputPtr input;
5193
0
    xmlParserInputBufferPtr buf;
5194
5195
0
    if (buffer == NULL)
5196
0
  return(NULL);
5197
0
    if (size <= 0)
5198
0
  return(NULL);
5199
5200
0
    ctxt = htmlNewParserCtxt();
5201
0
    if (ctxt == NULL)
5202
0
  return(NULL);
5203
5204
0
    buf = xmlParserInputBufferCreateMem(buffer, size, XML_CHAR_ENCODING_NONE);
5205
0
    if (buf == NULL) return(NULL);
5206
5207
0
    input = xmlNewInputStream(ctxt);
5208
0
    if (input == NULL) {
5209
0
  xmlFreeParserInputBuffer(buf);
5210
0
  xmlFreeParserCtxt(ctxt);
5211
0
  return(NULL);
5212
0
    }
5213
5214
0
    input->filename = NULL;
5215
0
    input->buf = buf;
5216
0
    xmlBufResetInput(buf->buffer, input);
5217
5218
0
    inputPush(ctxt, input);
5219
0
    return(ctxt);
5220
0
}
5221
5222
/**
5223
 * htmlCreateDocParserCtxt:
5224
 * @cur:  a pointer to an array of xmlChar
5225
 * @encoding:  a free form C string describing the HTML document encoding, or NULL
5226
 *
5227
 * Create a parser context for an HTML document.
5228
 *
5229
 * TODO: check the need to add encoding handling there
5230
 *
5231
 * Returns the new parser context or NULL
5232
 */
5233
static htmlParserCtxtPtr
5234
0
htmlCreateDocParserCtxt(const xmlChar *cur, const char *encoding) {
5235
0
    int len;
5236
0
    htmlParserCtxtPtr ctxt;
5237
5238
0
    if (cur == NULL)
5239
0
  return(NULL);
5240
0
    len = xmlStrlen(cur);
5241
0
    ctxt = htmlCreateMemoryParserCtxt((char *)cur, len);
5242
0
    if (ctxt == NULL)
5243
0
  return(NULL);
5244
5245
0
    if (encoding != NULL) {
5246
0
  xmlCharEncoding enc;
5247
0
  xmlCharEncodingHandlerPtr handler;
5248
5249
0
  if (ctxt->input->encoding != NULL)
5250
0
      xmlFree((xmlChar *) ctxt->input->encoding);
5251
0
  ctxt->input->encoding = xmlStrdup((const xmlChar *) encoding);
5252
5253
0
  enc = xmlParseCharEncoding(encoding);
5254
  /*
5255
   * registered set of known encodings
5256
   */
5257
0
  if (enc != XML_CHAR_ENCODING_ERROR) {
5258
0
      xmlSwitchEncoding(ctxt, enc);
5259
0
      if (ctxt->errNo == XML_ERR_UNSUPPORTED_ENCODING) {
5260
0
    htmlParseErr(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
5261
0
                 "Unsupported encoding %s\n",
5262
0
           (const xmlChar *) encoding, NULL);
5263
0
      }
5264
0
  } else {
5265
      /*
5266
       * fallback for unknown encodings
5267
       */
5268
0
      handler = xmlFindCharEncodingHandler((const char *) encoding);
5269
0
      if (handler != NULL) {
5270
0
    xmlSwitchToEncoding(ctxt, handler);
5271
0
      } else {
5272
0
    htmlParseErr(ctxt, XML_ERR_UNSUPPORTED_ENCODING,
5273
0
                 "Unsupported encoding %s\n",
5274
0
           (const xmlChar *) encoding, NULL);
5275
0
      }
5276
0
  }
5277
0
    }
5278
0
    return(ctxt);
5279
0
}
5280
5281
#ifdef LIBXML_PUSH_ENABLED
5282
/************************************************************************
5283
 *                  *
5284
 *  Progressive parsing interfaces        *
5285
 *                  *
5286
 ************************************************************************/
5287
5288
/**
5289
 * htmlParseLookupSequence:
5290
 * @ctxt:  an HTML parser context
5291
 * @first:  the first char to lookup
5292
 * @next:  the next char to lookup or zero
5293
 * @third:  the next char to lookup or zero
5294
 * @ignoreattrval: skip over attribute values
5295
 *
5296
 * Try to find if a sequence (first, next, third) or  just (first next) or
5297
 * (first) is available in the input stream.
5298
 * This function has a side effect of (possibly) incrementing ctxt->checkIndex
5299
 * to avoid rescanning sequences of bytes, it DOES change the state of the
5300
 * parser, do not use liberally.
5301
 * This is basically similar to xmlParseLookupSequence()
5302
 *
5303
 * Returns the index to the current parsing point if the full sequence
5304
 *      is available, -1 otherwise.
5305
 */
5306
static int
5307
htmlParseLookupSequence(htmlParserCtxtPtr ctxt, xmlChar first,
5308
                        xmlChar next, xmlChar third, int ignoreattrval)
5309
0
{
5310
0
    int base, len;
5311
0
    htmlParserInputPtr in;
5312
0
    const xmlChar *buf;
5313
0
    int invalue = 0;
5314
0
    char valdellim = 0x0;
5315
5316
0
    in = ctxt->input;
5317
0
    if (in == NULL)
5318
0
        return (-1);
5319
5320
0
    base = in->cur - in->base;
5321
0
    if (base < 0)
5322
0
        return (-1);
5323
5324
0
    if (ctxt->checkIndex > base) {
5325
0
        base = ctxt->checkIndex;
5326
        /* Abuse hasPErefs member to restore current state. */
5327
0
        invalue = ctxt->hasPErefs & 1 ? 1 : 0;
5328
0
    }
5329
5330
0
    if (in->buf == NULL) {
5331
0
        buf = in->base;
5332
0
        len = in->length;
5333
0
    } else {
5334
0
        buf = xmlBufContent(in->buf->buffer);
5335
0
        len = xmlBufUse(in->buf->buffer);
5336
0
    }
5337
5338
    /* take into account the sequence length */
5339
0
    if (third)
5340
0
        len -= 2;
5341
0
    else if (next)
5342
0
        len--;
5343
0
    for (; base < len; base++) {
5344
0
        if (ignoreattrval) {
5345
0
            if (buf[base] == '"' || buf[base] == '\'') {
5346
0
                if (invalue) {
5347
0
                    if (buf[base] == valdellim) {
5348
0
                        invalue = 0;
5349
0
                        continue;
5350
0
                    }
5351
0
                } else {
5352
0
                    valdellim = buf[base];
5353
0
                    invalue = 1;
5354
0
                    continue;
5355
0
                }
5356
0
            } else if (invalue) {
5357
0
                continue;
5358
0
            }
5359
0
        }
5360
0
        if (buf[base] == first) {
5361
0
            if (third != 0) {
5362
0
                if ((buf[base + 1] != next) || (buf[base + 2] != third))
5363
0
                    continue;
5364
0
            } else if (next != 0) {
5365
0
                if (buf[base + 1] != next)
5366
0
                    continue;
5367
0
            }
5368
0
            ctxt->checkIndex = 0;
5369
#ifdef DEBUG_PUSH
5370
            if (next == 0)
5371
                xmlGenericError(xmlGenericErrorContext,
5372
                                "HPP: lookup '%c' found at %d\n",
5373
                                first, base);
5374
            else if (third == 0)
5375
                xmlGenericError(xmlGenericErrorContext,
5376
                                "HPP: lookup '%c%c' found at %d\n",
5377
                                first, next, base);
5378
            else
5379
                xmlGenericError(xmlGenericErrorContext,
5380
                                "HPP: lookup '%c%c%c' found at %d\n",
5381
                                first, next, third, base);
5382
#endif
5383
0
            return (base - (in->cur - in->base));
5384
0
        }
5385
0
    }
5386
0
    ctxt->checkIndex = base;
5387
    /* Abuse hasPErefs member to track current state. */
5388
0
    if (invalue)
5389
0
        ctxt->hasPErefs |= 1;
5390
0
    else
5391
0
        ctxt->hasPErefs &= ~1;
5392
#ifdef DEBUG_PUSH
5393
    if (next == 0)
5394
        xmlGenericError(xmlGenericErrorContext,
5395
                        "HPP: lookup '%c' failed\n", first);
5396
    else if (third == 0)
5397
        xmlGenericError(xmlGenericErrorContext,
5398
                        "HPP: lookup '%c%c' failed\n", first, next);
5399
    else
5400
        xmlGenericError(xmlGenericErrorContext,
5401
                        "HPP: lookup '%c%c%c' failed\n", first, next,
5402
                        third);
5403
#endif
5404
0
    return (-1);
5405
0
}
5406
5407
/**
5408
 * htmlParseLookupCommentEnd:
5409
 * @ctxt: an HTML parser context
5410
 *
5411
 * Try to find a comment end tag in the input stream
5412
 * The search includes "-->" as well as WHATWG-recommended incorrectly-closed tags.
5413
 * (See https://html.spec.whatwg.org/multipage/parsing.html#parse-error-incorrectly-closed-comment)
5414
 * This function has a side effect of (possibly) incrementing ctxt->checkIndex
5415
 * to avoid rescanning sequences of bytes, it DOES change the state of the
5416
 * parser, do not use liberally.
5417
 * This wraps to htmlParseLookupSequence()
5418
 *
5419
 * Returns the index to the current parsing point if the full sequence is available, -1 otherwise.
5420
 */
5421
static int
5422
htmlParseLookupCommentEnd(htmlParserCtxtPtr ctxt)
5423
0
{
5424
0
    int mark = 0;
5425
0
    int cur = CUR_PTR - BASE_PTR;
5426
5427
0
    while (mark >= 0) {
5428
0
  mark = htmlParseLookupSequence(ctxt, '-', '-', 0, 0);
5429
0
  if ((mark < 0) ||
5430
0
      (NXT(mark+2) == '>') ||
5431
0
      ((NXT(mark+2) == '!') && (NXT(mark+3) == '>'))) {
5432
0
      return mark;
5433
0
  }
5434
0
  ctxt->checkIndex = cur + mark + 1;
5435
0
    }
5436
0
    return mark;
5437
0
}
5438
5439
5440
/**
5441
 * htmlParseTryOrFinish:
5442
 * @ctxt:  an HTML parser context
5443
 * @terminate:  last chunk indicator
5444
 *
5445
 * Try to progress on parsing
5446
 *
5447
 * Returns zero if no parsing was possible
5448
 */
5449
static int
5450
0
htmlParseTryOrFinish(htmlParserCtxtPtr ctxt, int terminate) {
5451
0
    int ret = 0;
5452
0
    htmlParserInputPtr in;
5453
0
    ptrdiff_t avail = 0;
5454
0
    xmlChar cur, next;
5455
5456
0
    htmlParserNodeInfo node_info;
5457
5458
#ifdef DEBUG_PUSH
5459
    switch (ctxt->instate) {
5460
  case XML_PARSER_EOF:
5461
      xmlGenericError(xmlGenericErrorContext,
5462
        "HPP: try EOF\n"); break;
5463
  case XML_PARSER_START:
5464
      xmlGenericError(xmlGenericErrorContext,
5465
        "HPP: try START\n"); break;
5466
  case XML_PARSER_MISC:
5467
      xmlGenericError(xmlGenericErrorContext,
5468
        "HPP: try MISC\n");break;
5469
  case XML_PARSER_COMMENT:
5470
      xmlGenericError(xmlGenericErrorContext,
5471
        "HPP: try COMMENT\n");break;
5472
  case XML_PARSER_PROLOG:
5473
      xmlGenericError(xmlGenericErrorContext,
5474
        "HPP: try PROLOG\n");break;
5475
  case XML_PARSER_START_TAG:
5476
      xmlGenericError(xmlGenericErrorContext,
5477
        "HPP: try START_TAG\n");break;
5478
  case XML_PARSER_CONTENT:
5479
      xmlGenericError(xmlGenericErrorContext,
5480
        "HPP: try CONTENT\n");break;
5481
  case XML_PARSER_CDATA_SECTION:
5482
      xmlGenericError(xmlGenericErrorContext,
5483
        "HPP: try CDATA_SECTION\n");break;
5484
  case XML_PARSER_END_TAG:
5485
      xmlGenericError(xmlGenericErrorContext,
5486
        "HPP: try END_TAG\n");break;
5487
  case XML_PARSER_ENTITY_DECL:
5488
      xmlGenericError(xmlGenericErrorContext,
5489
        "HPP: try ENTITY_DECL\n");break;
5490
  case XML_PARSER_ENTITY_VALUE:
5491
      xmlGenericError(xmlGenericErrorContext,
5492
        "HPP: try ENTITY_VALUE\n");break;
5493
  case XML_PARSER_ATTRIBUTE_VALUE:
5494
      xmlGenericError(xmlGenericErrorContext,
5495
        "HPP: try ATTRIBUTE_VALUE\n");break;
5496
  case XML_PARSER_DTD:
5497
      xmlGenericError(xmlGenericErrorContext,
5498
        "HPP: try DTD\n");break;
5499
  case XML_PARSER_EPILOG:
5500
      xmlGenericError(xmlGenericErrorContext,
5501
        "HPP: try EPILOG\n");break;
5502
  case XML_PARSER_PI:
5503
      xmlGenericError(xmlGenericErrorContext,
5504
        "HPP: try PI\n");break;
5505
  case XML_PARSER_SYSTEM_LITERAL:
5506
      xmlGenericError(xmlGenericErrorContext,
5507
        "HPP: try SYSTEM_LITERAL\n");break;
5508
    }
5509
#endif
5510
5511
0
    while (1) {
5512
5513
0
  in = ctxt->input;
5514
0
  if (in == NULL) break;
5515
0
  if (in->buf == NULL)
5516
0
      avail = in->length - (in->cur - in->base);
5517
0
  else
5518
0
      avail = (ptrdiff_t)xmlBufUse(in->buf->buffer) -
5519
0
                    (in->cur - in->base);
5520
0
  if ((avail == 0) && (terminate)) {
5521
0
      htmlAutoCloseOnEnd(ctxt);
5522
0
      if ((ctxt->nameNr == 0) && (ctxt->instate != XML_PARSER_EOF)) {
5523
    /*
5524
     * SAX: end of the document processing.
5525
     */
5526
0
    ctxt->instate = XML_PARSER_EOF;
5527
0
    if ((ctxt->sax) && (ctxt->sax->endDocument != NULL))
5528
0
        ctxt->sax->endDocument(ctxt->userData);
5529
0
      }
5530
0
  }
5531
0
        if (avail < 1)
5532
0
      goto done;
5533
        /*
5534
         * This is done to make progress and avoid an infinite loop
5535
         * if a parsing attempt was aborted by hitting a NUL byte. After
5536
         * changing htmlCurrentChar, this probably isn't necessary anymore.
5537
         * We should consider removing this check.
5538
         */
5539
0
  cur = in->cur[0];
5540
0
  if (cur == 0) {
5541
0
      SKIP(1);
5542
0
      continue;
5543
0
  }
5544
5545
0
        switch (ctxt->instate) {
5546
0
            case XML_PARSER_EOF:
5547
          /*
5548
     * Document parsing is done !
5549
     */
5550
0
          goto done;
5551
0
            case XML_PARSER_START:
5552
          /*
5553
     * Very first chars read from the document flow.
5554
     */
5555
0
    cur = in->cur[0];
5556
0
    if (IS_BLANK_CH(cur)) {
5557
0
        SKIP_BLANKS;
5558
0
        if (in->buf == NULL)
5559
0
      avail = in->length - (in->cur - in->base);
5560
0
        else
5561
0
      avail = (ptrdiff_t)xmlBufUse(in->buf->buffer) -
5562
0
                                (in->cur - in->base);
5563
0
    }
5564
0
    if ((ctxt->sax) && (ctxt->sax->setDocumentLocator))
5565
0
        ctxt->sax->setDocumentLocator(ctxt->userData,
5566
0
              &xmlDefaultSAXLocator);
5567
0
    if ((ctxt->sax) && (ctxt->sax->startDocument) &&
5568
0
              (!ctxt->disableSAX))
5569
0
        ctxt->sax->startDocument(ctxt->userData);
5570
5571
0
    cur = in->cur[0];
5572
0
    next = in->cur[1];
5573
0
    if ((cur == '<') && (next == '!') &&
5574
0
        (UPP(2) == 'D') && (UPP(3) == 'O') &&
5575
0
        (UPP(4) == 'C') && (UPP(5) == 'T') &&
5576
0
        (UPP(6) == 'Y') && (UPP(7) == 'P') &&
5577
0
        (UPP(8) == 'E')) {
5578
0
        if ((!terminate) &&
5579
0
            (htmlParseLookupSequence(ctxt, '>', 0, 0, 1) < 0))
5580
0
      goto done;
5581
#ifdef DEBUG_PUSH
5582
        xmlGenericError(xmlGenericErrorContext,
5583
          "HPP: Parsing internal subset\n");
5584
#endif
5585
0
        htmlParseDocTypeDecl(ctxt);
5586
0
        ctxt->instate = XML_PARSER_PROLOG;
5587
#ifdef DEBUG_PUSH
5588
        xmlGenericError(xmlGenericErrorContext,
5589
          "HPP: entering PROLOG\n");
5590
#endif
5591
0
                } else {
5592
0
        ctxt->instate = XML_PARSER_MISC;
5593
#ifdef DEBUG_PUSH
5594
        xmlGenericError(xmlGenericErrorContext,
5595
          "HPP: entering MISC\n");
5596
#endif
5597
0
    }
5598
0
    break;
5599
0
            case XML_PARSER_MISC:
5600
0
    SKIP_BLANKS;
5601
0
    if (in->buf == NULL)
5602
0
        avail = in->length - (in->cur - in->base);
5603
0
    else
5604
0
        avail = (ptrdiff_t)xmlBufUse(in->buf->buffer) -
5605
0
                            (in->cur - in->base);
5606
    /*
5607
     * no chars in buffer
5608
     */
5609
0
    if (avail < 1)
5610
0
        goto done;
5611
    /*
5612
     * not enough chars in buffer
5613
     */
5614
0
    if (avail < 2) {
5615
0
        if (!terminate)
5616
0
      goto done;
5617
0
        else
5618
0
      next = ' ';
5619
0
    } else {
5620
0
        next = in->cur[1];
5621
0
    }
5622
0
    cur = in->cur[0];
5623
0
          if ((cur == '<') && (next == '!') &&
5624
0
        (in->cur[2] == '-') && (in->cur[3] == '-')) {
5625
0
        if ((!terminate) && (htmlParseLookupCommentEnd(ctxt) < 0))
5626
0
      goto done;
5627
#ifdef DEBUG_PUSH
5628
        xmlGenericError(xmlGenericErrorContext,
5629
          "HPP: Parsing Comment\n");
5630
#endif
5631
0
        htmlParseComment(ctxt);
5632
0
        ctxt->instate = XML_PARSER_MISC;
5633
0
          } else if ((cur == '<') && (next == '?')) {
5634
0
        if ((!terminate) &&
5635
0
            (htmlParseLookupSequence(ctxt, '>', 0, 0, 0) < 0))
5636
0
      goto done;
5637
#ifdef DEBUG_PUSH
5638
        xmlGenericError(xmlGenericErrorContext,
5639
          "HPP: Parsing PI\n");
5640
#endif
5641
0
        htmlParsePI(ctxt);
5642
0
        ctxt->instate = XML_PARSER_MISC;
5643
0
    } else if ((cur == '<') && (next == '!') &&
5644
0
        (UPP(2) == 'D') && (UPP(3) == 'O') &&
5645
0
        (UPP(4) == 'C') && (UPP(5) == 'T') &&
5646
0
        (UPP(6) == 'Y') && (UPP(7) == 'P') &&
5647
0
        (UPP(8) == 'E')) {
5648
0
        if ((!terminate) &&
5649
0
            (htmlParseLookupSequence(ctxt, '>', 0, 0, 1) < 0))
5650
0
      goto done;
5651
#ifdef DEBUG_PUSH
5652
        xmlGenericError(xmlGenericErrorContext,
5653
          "HPP: Parsing internal subset\n");
5654
#endif
5655
0
        htmlParseDocTypeDecl(ctxt);
5656
0
        ctxt->instate = XML_PARSER_PROLOG;
5657
#ifdef DEBUG_PUSH
5658
        xmlGenericError(xmlGenericErrorContext,
5659
          "HPP: entering PROLOG\n");
5660
#endif
5661
0
    } else if ((cur == '<') && (next == '!') &&
5662
0
               (avail < 9)) {
5663
0
        goto done;
5664
0
    } else {
5665
0
        ctxt->instate = XML_PARSER_CONTENT;
5666
#ifdef DEBUG_PUSH
5667
        xmlGenericError(xmlGenericErrorContext,
5668
          "HPP: entering START_TAG\n");
5669
#endif
5670
0
    }
5671
0
    break;
5672
0
            case XML_PARSER_PROLOG:
5673
0
    SKIP_BLANKS;
5674
0
    if (in->buf == NULL)
5675
0
        avail = in->length - (in->cur - in->base);
5676
0
    else
5677
0
        avail = (ptrdiff_t)xmlBufUse(in->buf->buffer) -
5678
0
                            (in->cur - in->base);
5679
0
    if (avail < 2)
5680
0
        goto done;
5681
0
    cur = in->cur[0];
5682
0
    next = in->cur[1];
5683
0
    if ((cur == '<') && (next == '!') &&
5684
0
        (in->cur[2] == '-') && (in->cur[3] == '-')) {
5685
0
        if ((!terminate) && (htmlParseLookupCommentEnd(ctxt) < 0))
5686
0
      goto done;
5687
#ifdef DEBUG_PUSH
5688
        xmlGenericError(xmlGenericErrorContext,
5689
          "HPP: Parsing Comment\n");
5690
#endif
5691
0
        htmlParseComment(ctxt);
5692
0
        ctxt->instate = XML_PARSER_PROLOG;
5693
0
          } else if ((cur == '<') && (next == '?')) {
5694
0
        if ((!terminate) &&
5695
0
            (htmlParseLookupSequence(ctxt, '>', 0, 0, 0) < 0))
5696
0
      goto done;
5697
#ifdef DEBUG_PUSH
5698
        xmlGenericError(xmlGenericErrorContext,
5699
          "HPP: Parsing PI\n");
5700
#endif
5701
0
        htmlParsePI(ctxt);
5702
0
        ctxt->instate = XML_PARSER_PROLOG;
5703
0
    } else if ((cur == '<') && (next == '!') &&
5704
0
               (avail < 4)) {
5705
0
        goto done;
5706
0
    } else {
5707
0
        ctxt->instate = XML_PARSER_CONTENT;
5708
#ifdef DEBUG_PUSH
5709
        xmlGenericError(xmlGenericErrorContext,
5710
          "HPP: entering START_TAG\n");
5711
#endif
5712
0
    }
5713
0
    break;
5714
0
            case XML_PARSER_EPILOG:
5715
0
    if (in->buf == NULL)
5716
0
        avail = in->length - (in->cur - in->base);
5717
0
    else
5718
0
        avail = (ptrdiff_t)xmlBufUse(in->buf->buffer) -
5719
0
                            (in->cur - in->base);
5720
0
    if (avail < 1)
5721
0
        goto done;
5722
0
    cur = in->cur[0];
5723
0
    if (IS_BLANK_CH(cur)) {
5724
0
        htmlParseCharData(ctxt);
5725
0
        goto done;
5726
0
    }
5727
0
    if (avail < 2)
5728
0
        goto done;
5729
0
    next = in->cur[1];
5730
0
          if ((cur == '<') && (next == '!') &&
5731
0
        (in->cur[2] == '-') && (in->cur[3] == '-')) {
5732
0
        if ((!terminate) && (htmlParseLookupCommentEnd(ctxt) < 0))
5733
0
      goto done;
5734
#ifdef DEBUG_PUSH
5735
        xmlGenericError(xmlGenericErrorContext,
5736
          "HPP: Parsing Comment\n");
5737
#endif
5738
0
        htmlParseComment(ctxt);
5739
0
        ctxt->instate = XML_PARSER_EPILOG;
5740
0
          } else if ((cur == '<') && (next == '?')) {
5741
0
        if ((!terminate) &&
5742
0
            (htmlParseLookupSequence(ctxt, '>', 0, 0, 0) < 0))
5743
0
      goto done;
5744
#ifdef DEBUG_PUSH
5745
        xmlGenericError(xmlGenericErrorContext,
5746
          "HPP: Parsing PI\n");
5747
#endif
5748
0
        htmlParsePI(ctxt);
5749
0
        ctxt->instate = XML_PARSER_EPILOG;
5750
0
    } else if ((cur == '<') && (next == '!') &&
5751
0
               (avail < 4)) {
5752
0
        goto done;
5753
0
    } else {
5754
0
        ctxt->errNo = XML_ERR_DOCUMENT_END;
5755
0
        ctxt->wellFormed = 0;
5756
0
        ctxt->instate = XML_PARSER_EOF;
5757
#ifdef DEBUG_PUSH
5758
        xmlGenericError(xmlGenericErrorContext,
5759
          "HPP: entering EOF\n");
5760
#endif
5761
0
        if ((ctxt->sax) && (ctxt->sax->endDocument != NULL))
5762
0
      ctxt->sax->endDocument(ctxt->userData);
5763
0
        goto done;
5764
0
    }
5765
0
    break;
5766
0
            case XML_PARSER_START_TAG: {
5767
0
          const xmlChar *name;
5768
0
    int failed;
5769
0
    const htmlElemDesc * info;
5770
5771
    /*
5772
     * no chars in buffer
5773
     */
5774
0
    if (avail < 1)
5775
0
        goto done;
5776
    /*
5777
     * not enough chars in buffer
5778
     */
5779
0
    if (avail < 2) {
5780
0
        if (!terminate)
5781
0
      goto done;
5782
0
        else
5783
0
      next = ' ';
5784
0
    } else {
5785
0
        next = in->cur[1];
5786
0
    }
5787
0
    cur = in->cur[0];
5788
0
          if (cur != '<') {
5789
0
        ctxt->instate = XML_PARSER_CONTENT;
5790
#ifdef DEBUG_PUSH
5791
        xmlGenericError(xmlGenericErrorContext,
5792
          "HPP: entering CONTENT\n");
5793
#endif
5794
0
        break;
5795
0
    }
5796
0
    if (next == '/') {
5797
0
        ctxt->instate = XML_PARSER_END_TAG;
5798
0
        ctxt->checkIndex = 0;
5799
#ifdef DEBUG_PUSH
5800
        xmlGenericError(xmlGenericErrorContext,
5801
          "HPP: entering END_TAG\n");
5802
#endif
5803
0
        break;
5804
0
    }
5805
0
    if ((!terminate) &&
5806
0
        (htmlParseLookupSequence(ctxt, '>', 0, 0, 1) < 0))
5807
0
        goto done;
5808
5809
                /* Capture start position */
5810
0
          if (ctxt->record_info) {
5811
0
               node_info.begin_pos = ctxt->input->consumed +
5812
0
                                  (CUR_PTR - ctxt->input->base);
5813
0
               node_info.begin_line = ctxt->input->line;
5814
0
          }
5815
5816
5817
0
    failed = htmlParseStartTag(ctxt);
5818
0
    name = ctxt->name;
5819
0
    if ((failed == -1) ||
5820
0
        (name == NULL)) {
5821
0
        if (CUR == '>')
5822
0
      NEXT;
5823
0
        break;
5824
0
    }
5825
5826
    /*
5827
     * Lookup the info for that element.
5828
     */
5829
0
    info = htmlTagLookup(name);
5830
0
    if (info == NULL) {
5831
0
        htmlParseErr(ctxt, XML_HTML_UNKNOWN_TAG,
5832
0
                     "Tag %s invalid\n", name, NULL);
5833
0
    }
5834
5835
    /*
5836
     * Check for an Empty Element labeled the XML/SGML way
5837
     */
5838
0
    if ((CUR == '/') && (NXT(1) == '>')) {
5839
0
        SKIP(2);
5840
0
        if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
5841
0
      ctxt->sax->endElement(ctxt->userData, name);
5842
0
        htmlnamePop(ctxt);
5843
0
        ctxt->instate = XML_PARSER_CONTENT;
5844
#ifdef DEBUG_PUSH
5845
        xmlGenericError(xmlGenericErrorContext,
5846
          "HPP: entering CONTENT\n");
5847
#endif
5848
0
        break;
5849
0
    }
5850
5851
0
    if (CUR == '>') {
5852
0
        NEXT;
5853
0
    } else {
5854
0
        htmlParseErr(ctxt, XML_ERR_GT_REQUIRED,
5855
0
                     "Couldn't find end of Start Tag %s\n",
5856
0
         name, NULL);
5857
5858
        /*
5859
         * end of parsing of this node.
5860
         */
5861
0
        if (xmlStrEqual(name, ctxt->name)) {
5862
0
      nodePop(ctxt);
5863
0
      htmlnamePop(ctxt);
5864
0
        }
5865
5866
0
        if (ctxt->record_info)
5867
0
            htmlNodeInfoPush(ctxt, &node_info);
5868
5869
0
        ctxt->instate = XML_PARSER_CONTENT;
5870
#ifdef DEBUG_PUSH
5871
        xmlGenericError(xmlGenericErrorContext,
5872
          "HPP: entering CONTENT\n");
5873
#endif
5874
0
        break;
5875
0
    }
5876
5877
    /*
5878
     * Check for an Empty Element from DTD definition
5879
     */
5880
0
    if ((info != NULL) && (info->empty)) {
5881
0
        if ((ctxt->sax != NULL) && (ctxt->sax->endElement != NULL))
5882
0
      ctxt->sax->endElement(ctxt->userData, name);
5883
0
        htmlnamePop(ctxt);
5884
0
    }
5885
5886
0
                if (ctxt->record_info)
5887
0
              htmlNodeInfoPush(ctxt, &node_info);
5888
5889
0
    ctxt->instate = XML_PARSER_CONTENT;
5890
#ifdef DEBUG_PUSH
5891
    xmlGenericError(xmlGenericErrorContext,
5892
      "HPP: entering CONTENT\n");
5893
#endif
5894
0
                break;
5895
0
      }
5896
0
            case XML_PARSER_CONTENT: {
5897
0
    xmlChar chr[2] = { 0, 0 };
5898
5899
                /*
5900
     * Handle preparsed entities and charRef
5901
     */
5902
0
    if (ctxt->token != 0) {
5903
0
        chr[0] = (xmlChar) ctxt->token;
5904
0
        htmlCheckParagraph(ctxt);
5905
0
        if ((ctxt->sax != NULL) && (ctxt->sax->characters != NULL))
5906
0
      ctxt->sax->characters(ctxt->userData, chr, 1);
5907
0
        ctxt->token = 0;
5908
0
        ctxt->checkIndex = 0;
5909
0
    }
5910
0
    if ((avail == 1) && (terminate)) {
5911
0
        cur = in->cur[0];
5912
0
        if ((cur != '<') && (cur != '&')) {
5913
0
      if (ctxt->sax != NULL) {
5914
0
                            chr[0] = cur;
5915
0
          if (IS_BLANK_CH(cur)) {
5916
0
        if (ctxt->keepBlanks) {
5917
0
            if (ctxt->sax->characters != NULL)
5918
0
          ctxt->sax->characters(
5919
0
            ctxt->userData, chr, 1);
5920
0
        } else {
5921
0
            if (ctxt->sax->ignorableWhitespace != NULL)
5922
0
          ctxt->sax->ignorableWhitespace(
5923
0
            ctxt->userData, chr, 1);
5924
0
        }
5925
0
          } else {
5926
0
        htmlCheckParagraph(ctxt);
5927
0
        if (ctxt->sax->characters != NULL)
5928
0
            ctxt->sax->characters(
5929
0
              ctxt->userData, chr, 1);
5930
0
          }
5931
0
      }
5932
0
      ctxt->token = 0;
5933
0
      ctxt->checkIndex = 0;
5934
0
      in->cur++;
5935
0
      break;
5936
0
        }
5937
0
    }
5938
0
    if (avail < 2)
5939
0
        goto done;
5940
0
    cur = in->cur[0];
5941
0
    next = in->cur[1];
5942
0
    if ((xmlStrEqual(ctxt->name, BAD_CAST"script")) ||
5943
0
        (xmlStrEqual(ctxt->name, BAD_CAST"style"))) {
5944
        /*
5945
         * Handle SCRIPT/STYLE separately
5946
         */
5947
0
        if (!terminate) {
5948
0
            int idx;
5949
0
      xmlChar val;
5950
5951
0
      idx = htmlParseLookupSequence(ctxt, '<', '/', 0, 0);
5952
0
      if (idx < 0)
5953
0
          goto done;
5954
0
            val = in->cur[idx + 2];
5955
0
      if (val == 0) /* bad cut of input */
5956
0
          goto done;
5957
0
        }
5958
0
        htmlParseScript(ctxt);
5959
0
        if ((cur == '<') && (next == '/')) {
5960
0
      ctxt->instate = XML_PARSER_END_TAG;
5961
0
      ctxt->checkIndex = 0;
5962
#ifdef DEBUG_PUSH
5963
      xmlGenericError(xmlGenericErrorContext,
5964
        "HPP: entering END_TAG\n");
5965
#endif
5966
0
      break;
5967
0
        }
5968
0
    } else if ((cur == '<') && (next == '!')) {
5969
                    /*
5970
                     * Sometimes DOCTYPE arrives in the middle of the document
5971
                     */
5972
0
                    if ((UPP(2) == 'D') && (UPP(3) == 'O') &&
5973
0
                        (UPP(4) == 'C') && (UPP(5) == 'T') &&
5974
0
                        (UPP(6) == 'Y') && (UPP(7) == 'P') &&
5975
0
                        (UPP(8) == 'E')) {
5976
0
                        if ((!terminate) &&
5977
0
                            (htmlParseLookupSequence(ctxt, '>', 0, 0, 1) < 0))
5978
0
                            goto done;
5979
0
                        htmlParseErr(ctxt, XML_HTML_STRUCURE_ERROR,
5980
0
                                     "Misplaced DOCTYPE declaration\n",
5981
0
                                     BAD_CAST "DOCTYPE" , NULL);
5982
0
                        htmlParseDocTypeDecl(ctxt);
5983
0
                    } else if ((in->cur[2] == '-') && (in->cur[3] == '-')) {
5984
0
                        if ((!terminate) &&
5985
0
                            (htmlParseLookupCommentEnd(ctxt) < 0))
5986
0
                            goto done;
5987
#ifdef DEBUG_PUSH
5988
                        xmlGenericError(xmlGenericErrorContext,
5989
                                "HPP: Parsing Comment\n");
5990
#endif
5991
0
                        htmlParseComment(ctxt);
5992
0
                        ctxt->instate = XML_PARSER_CONTENT;
5993
0
                    } else {
5994
0
                        if ((!terminate) &&
5995
0
                            (htmlParseLookupSequence(ctxt, '>', 0, 0, 0) < 0))
5996
0
                            goto done;
5997
0
                        htmlSkipBogusComment(ctxt);
5998
0
                    }
5999
0
                } else if ((cur == '<') && (next == '?')) {
6000
0
                    if ((!terminate) &&
6001
0
                        (htmlParseLookupSequence(ctxt, '>', 0, 0, 0) < 0))
6002
0
                        goto done;
6003
#ifdef DEBUG_PUSH
6004
                    xmlGenericError(xmlGenericErrorContext,
6005
                            "HPP: Parsing PI\n");
6006
#endif
6007
0
                    htmlParsePI(ctxt);
6008
0
                    ctxt->instate = XML_PARSER_CONTENT;
6009
0
                } else if ((cur == '<') && (next == '!') && (avail < 4)) {
6010
0
                    goto done;
6011
0
                } else if ((cur == '<') && (next == '/')) {
6012
0
                    ctxt->instate = XML_PARSER_END_TAG;
6013
0
                    ctxt->checkIndex = 0;
6014
#ifdef DEBUG_PUSH
6015
                    xmlGenericError(xmlGenericErrorContext,
6016
                            "HPP: entering END_TAG\n");
6017
#endif
6018
0
                    break;
6019
0
                } else if ((cur == '<') && IS_ASCII_LETTER(next)) {
6020
0
                    if ((!terminate) && (next == 0))
6021
0
                        goto done;
6022
0
                    ctxt->instate = XML_PARSER_START_TAG;
6023
0
                    ctxt->checkIndex = 0;
6024
#ifdef DEBUG_PUSH
6025
                    xmlGenericError(xmlGenericErrorContext,
6026
                            "HPP: entering START_TAG\n");
6027
#endif
6028
0
                    break;
6029
0
                } else if (cur == '<') {
6030
0
                    if ((ctxt->sax != NULL) && (!ctxt->disableSAX) &&
6031
0
                        (ctxt->sax->characters != NULL))
6032
0
                        ctxt->sax->characters(ctxt->userData,
6033
0
                                              BAD_CAST "<", 1);
6034
0
                    NEXT;
6035
0
                } else {
6036
                    /*
6037
                     * check that the text sequence is complete
6038
                     * before handing out the data to the parser
6039
                     * to avoid problems with erroneous end of
6040
                     * data detection.
6041
                     */
6042
0
                    if ((!terminate) &&
6043
0
                        (htmlParseLookupSequence(ctxt, '<', 0, 0, 0) < 0))
6044
0
                        goto done;
6045
0
                    ctxt->checkIndex = 0;
6046
#ifdef DEBUG_PUSH
6047
                    xmlGenericError(xmlGenericErrorContext,
6048
                            "HPP: Parsing char data\n");
6049
#endif
6050
0
                    while ((ctxt->instate != XML_PARSER_EOF) &&
6051
0
                           (cur != '<') && (in->cur < in->end)) {
6052
0
                        if (cur == '&') {
6053
0
                            htmlParseReference(ctxt);
6054
0
                        } else {
6055
0
                            htmlParseCharData(ctxt);
6056
0
                        }
6057
0
                        cur = in->cur[0];
6058
0
                    }
6059
0
    }
6060
6061
0
    break;
6062
0
      }
6063
0
            case XML_PARSER_END_TAG:
6064
0
    if (avail < 2)
6065
0
        goto done;
6066
0
    if ((!terminate) &&
6067
0
        (htmlParseLookupSequence(ctxt, '>', 0, 0, 0) < 0))
6068
0
        goto done;
6069
0
    htmlParseEndTag(ctxt);
6070
0
    if (ctxt->nameNr == 0) {
6071
0
        ctxt->instate = XML_PARSER_EPILOG;
6072
0
    } else {
6073
0
        ctxt->instate = XML_PARSER_CONTENT;
6074
0
    }
6075
0
    ctxt->checkIndex = 0;
6076
#ifdef DEBUG_PUSH
6077
    xmlGenericError(xmlGenericErrorContext,
6078
      "HPP: entering CONTENT\n");
6079
#endif
6080
0
          break;
6081
0
            case XML_PARSER_CDATA_SECTION:
6082
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6083
0
      "HPP: internal error, state == CDATA\n",
6084
0
           NULL, NULL);
6085
0
    ctxt->instate = XML_PARSER_CONTENT;
6086
0
    ctxt->checkIndex = 0;
6087
#ifdef DEBUG_PUSH
6088
    xmlGenericError(xmlGenericErrorContext,
6089
      "HPP: entering CONTENT\n");
6090
#endif
6091
0
    break;
6092
0
            case XML_PARSER_DTD:
6093
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6094
0
      "HPP: internal error, state == DTD\n",
6095
0
           NULL, NULL);
6096
0
    ctxt->instate = XML_PARSER_CONTENT;
6097
0
    ctxt->checkIndex = 0;
6098
#ifdef DEBUG_PUSH
6099
    xmlGenericError(xmlGenericErrorContext,
6100
      "HPP: entering CONTENT\n");
6101
#endif
6102
0
    break;
6103
0
            case XML_PARSER_COMMENT:
6104
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6105
0
      "HPP: internal error, state == COMMENT\n",
6106
0
           NULL, NULL);
6107
0
    ctxt->instate = XML_PARSER_CONTENT;
6108
0
    ctxt->checkIndex = 0;
6109
#ifdef DEBUG_PUSH
6110
    xmlGenericError(xmlGenericErrorContext,
6111
      "HPP: entering CONTENT\n");
6112
#endif
6113
0
    break;
6114
0
            case XML_PARSER_PI:
6115
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6116
0
      "HPP: internal error, state == PI\n",
6117
0
           NULL, NULL);
6118
0
    ctxt->instate = XML_PARSER_CONTENT;
6119
0
    ctxt->checkIndex = 0;
6120
#ifdef DEBUG_PUSH
6121
    xmlGenericError(xmlGenericErrorContext,
6122
      "HPP: entering CONTENT\n");
6123
#endif
6124
0
    break;
6125
0
            case XML_PARSER_ENTITY_DECL:
6126
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6127
0
      "HPP: internal error, state == ENTITY_DECL\n",
6128
0
           NULL, NULL);
6129
0
    ctxt->instate = XML_PARSER_CONTENT;
6130
0
    ctxt->checkIndex = 0;
6131
#ifdef DEBUG_PUSH
6132
    xmlGenericError(xmlGenericErrorContext,
6133
      "HPP: entering CONTENT\n");
6134
#endif
6135
0
    break;
6136
0
            case XML_PARSER_ENTITY_VALUE:
6137
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6138
0
      "HPP: internal error, state == ENTITY_VALUE\n",
6139
0
           NULL, NULL);
6140
0
    ctxt->instate = XML_PARSER_CONTENT;
6141
0
    ctxt->checkIndex = 0;
6142
#ifdef DEBUG_PUSH
6143
    xmlGenericError(xmlGenericErrorContext,
6144
      "HPP: entering DTD\n");
6145
#endif
6146
0
    break;
6147
0
            case XML_PARSER_ATTRIBUTE_VALUE:
6148
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6149
0
      "HPP: internal error, state == ATTRIBUTE_VALUE\n",
6150
0
           NULL, NULL);
6151
0
    ctxt->instate = XML_PARSER_START_TAG;
6152
0
    ctxt->checkIndex = 0;
6153
#ifdef DEBUG_PUSH
6154
    xmlGenericError(xmlGenericErrorContext,
6155
      "HPP: entering START_TAG\n");
6156
#endif
6157
0
    break;
6158
0
      case XML_PARSER_SYSTEM_LITERAL:
6159
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6160
0
        "HPP: internal error, state == XML_PARSER_SYSTEM_LITERAL\n",
6161
0
           NULL, NULL);
6162
0
    ctxt->instate = XML_PARSER_CONTENT;
6163
0
    ctxt->checkIndex = 0;
6164
#ifdef DEBUG_PUSH
6165
    xmlGenericError(xmlGenericErrorContext,
6166
      "HPP: entering CONTENT\n");
6167
#endif
6168
0
    break;
6169
0
      case XML_PARSER_IGNORE:
6170
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6171
0
      "HPP: internal error, state == XML_PARSER_IGNORE\n",
6172
0
           NULL, NULL);
6173
0
    ctxt->instate = XML_PARSER_CONTENT;
6174
0
    ctxt->checkIndex = 0;
6175
#ifdef DEBUG_PUSH
6176
    xmlGenericError(xmlGenericErrorContext,
6177
      "HPP: entering CONTENT\n");
6178
#endif
6179
0
    break;
6180
0
      case XML_PARSER_PUBLIC_LITERAL:
6181
0
    htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6182
0
      "HPP: internal error, state == XML_PARSER_LITERAL\n",
6183
0
           NULL, NULL);
6184
0
    ctxt->instate = XML_PARSER_CONTENT;
6185
0
    ctxt->checkIndex = 0;
6186
#ifdef DEBUG_PUSH
6187
    xmlGenericError(xmlGenericErrorContext,
6188
      "HPP: entering CONTENT\n");
6189
#endif
6190
0
    break;
6191
6192
0
  }
6193
0
    }
6194
0
done:
6195
0
    if ((avail == 0) && (terminate)) {
6196
0
  htmlAutoCloseOnEnd(ctxt);
6197
0
  if ((ctxt->nameNr == 0) && (ctxt->instate != XML_PARSER_EOF)) {
6198
      /*
6199
       * SAX: end of the document processing.
6200
       */
6201
0
      ctxt->instate = XML_PARSER_EOF;
6202
0
      if ((ctxt->sax) && (ctxt->sax->endDocument != NULL))
6203
0
    ctxt->sax->endDocument(ctxt->userData);
6204
0
  }
6205
0
    }
6206
0
    if ((!(ctxt->options & HTML_PARSE_NODEFDTD)) && (ctxt->myDoc != NULL) &&
6207
0
  ((terminate) || (ctxt->instate == XML_PARSER_EOF) ||
6208
0
   (ctxt->instate == XML_PARSER_EPILOG))) {
6209
0
  xmlDtdPtr dtd;
6210
0
  dtd = xmlGetIntSubset(ctxt->myDoc);
6211
0
  if (dtd == NULL)
6212
0
      ctxt->myDoc->intSubset =
6213
0
    xmlCreateIntSubset(ctxt->myDoc, BAD_CAST "html",
6214
0
        BAD_CAST "-//W3C//DTD HTML 4.0 Transitional//EN",
6215
0
        BAD_CAST "http://www.w3.org/TR/REC-html40/loose.dtd");
6216
0
    }
6217
#ifdef DEBUG_PUSH
6218
    xmlGenericError(xmlGenericErrorContext, "HPP: done %d\n", ret);
6219
#endif
6220
0
    return(ret);
6221
0
}
6222
6223
/**
6224
 * htmlParseChunk:
6225
 * @ctxt:  an HTML parser context
6226
 * @chunk:  an char array
6227
 * @size:  the size in byte of the chunk
6228
 * @terminate:  last chunk indicator
6229
 *
6230
 * Parse a Chunk of memory
6231
 *
6232
 * Returns zero if no error, the xmlParserErrors otherwise.
6233
 */
6234
int
6235
htmlParseChunk(htmlParserCtxtPtr ctxt, const char *chunk, int size,
6236
0
              int terminate) {
6237
0
    if ((ctxt == NULL) || (ctxt->input == NULL)) {
6238
0
  htmlParseErr(ctxt, XML_ERR_INTERNAL_ERROR,
6239
0
         "htmlParseChunk: context error\n", NULL, NULL);
6240
0
  return(XML_ERR_INTERNAL_ERROR);
6241
0
    }
6242
0
    if ((size > 0) && (chunk != NULL) && (ctxt->input != NULL) &&
6243
0
        (ctxt->input->buf != NULL) && (ctxt->instate != XML_PARSER_EOF))  {
6244
0
  size_t base = xmlBufGetInputBase(ctxt->input->buf->buffer, ctxt->input);
6245
0
  size_t cur = ctxt->input->cur - ctxt->input->base;
6246
0
  int res;
6247
6248
0
  res = xmlParserInputBufferPush(ctxt->input->buf, size, chunk);
6249
0
        xmlBufSetInputBaseCur(ctxt->input->buf->buffer, ctxt->input, base, cur);
6250
0
  if (res < 0) {
6251
0
      ctxt->errNo = XML_PARSER_EOF;
6252
0
      ctxt->disableSAX = 1;
6253
0
      return (XML_PARSER_EOF);
6254
0
  }
6255
#ifdef DEBUG_PUSH
6256
  xmlGenericError(xmlGenericErrorContext, "HPP: pushed %d\n", size);
6257
#endif
6258
6259
#if 0
6260
  if ((terminate) || (ctxt->input->buf->buffer->use > 80))
6261
      htmlParseTryOrFinish(ctxt, terminate);
6262
#endif
6263
0
    } else if (ctxt->instate != XML_PARSER_EOF) {
6264
0
  if ((ctxt->input != NULL) && ctxt->input->buf != NULL) {
6265
0
      xmlParserInputBufferPtr in = ctxt->input->buf;
6266
0
      if ((in->encoder != NULL) && (in->buffer != NULL) &&
6267
0
        (in->raw != NULL)) {
6268
0
    int nbchars;
6269
0
    size_t base = xmlBufGetInputBase(in->buffer, ctxt->input);
6270
0
    size_t current = ctxt->input->cur - ctxt->input->base;
6271
6272
0
    nbchars = xmlCharEncInput(in, terminate);
6273
0
    xmlBufSetInputBaseCur(in->buffer, ctxt->input, base, current);
6274
0
    if (nbchars < 0) {
6275
0
        htmlParseErr(ctxt, XML_ERR_INVALID_ENCODING,
6276
0
               "encoder error\n", NULL, NULL);
6277
0
        return(XML_ERR_INVALID_ENCODING);
6278
0
    }
6279
0
      }
6280
0
  }
6281
0
    }
6282
0
    htmlParseTryOrFinish(ctxt, terminate);
6283
0
    if (terminate) {
6284
0
  if ((ctxt->instate != XML_PARSER_EOF) &&
6285
0
      (ctxt->instate != XML_PARSER_EPILOG) &&
6286
0
      (ctxt->instate != XML_PARSER_MISC)) {
6287
0
      ctxt->errNo = XML_ERR_DOCUMENT_END;
6288
0
      ctxt->wellFormed = 0;
6289
0
  }
6290
0
  if (ctxt->instate != XML_PARSER_EOF) {
6291
0
      if ((ctxt->sax) && (ctxt->sax->endDocument != NULL))
6292
0
    ctxt->sax->endDocument(ctxt->userData);
6293
0
  }
6294
0
  ctxt->instate = XML_PARSER_EOF;
6295
0
    }
6296
0
    return((xmlParserErrors) ctxt->errNo);
6297
0
}
6298
6299
/************************************************************************
6300
 *                  *
6301
 *      User entry points       *
6302
 *                  *
6303
 ************************************************************************/
6304
6305
/**
6306
 * htmlCreatePushParserCtxt:
6307
 * @sax:  a SAX handler
6308
 * @user_data:  The user data returned on SAX callbacks
6309
 * @chunk:  a pointer to an array of chars
6310
 * @size:  number of chars in the array
6311
 * @filename:  an optional file name or URI
6312
 * @enc:  an optional encoding
6313
 *
6314
 * Create a parser context for using the HTML parser in push mode
6315
 * The value of @filename is used for fetching external entities
6316
 * and error/warning reports.
6317
 *
6318
 * Returns the new parser context or NULL
6319
 */
6320
htmlParserCtxtPtr
6321
htmlCreatePushParserCtxt(htmlSAXHandlerPtr sax, void *user_data,
6322
                         const char *chunk, int size, const char *filename,
6323
0
       xmlCharEncoding enc) {
6324
0
    htmlParserCtxtPtr ctxt;
6325
0
    htmlParserInputPtr inputStream;
6326
0
    xmlParserInputBufferPtr buf;
6327
6328
0
    xmlInitParser();
6329
6330
0
    buf = xmlAllocParserInputBuffer(enc);
6331
0
    if (buf == NULL) return(NULL);
6332
6333
0
    ctxt = htmlNewParserCtxt();
6334
0
    if (ctxt == NULL) {
6335
0
  xmlFreeParserInputBuffer(buf);
6336
0
  return(NULL);
6337
0
    }
6338
0
    if(enc==XML_CHAR_ENCODING_UTF8 || buf->encoder)
6339
0
  ctxt->charset=XML_CHAR_ENCODING_UTF8;
6340
0
    if (sax != NULL) {
6341
0
  if (ctxt->sax != (xmlSAXHandlerPtr) &htmlDefaultSAXHandler)
6342
0
      xmlFree(ctxt->sax);
6343
0
  ctxt->sax = (htmlSAXHandlerPtr) xmlMalloc(sizeof(htmlSAXHandler));
6344
0
  if (ctxt->sax == NULL) {
6345
0
      xmlFree(buf);
6346
0
      xmlFree(ctxt);
6347
0
      return(NULL);
6348
0
  }
6349
0
  memcpy(ctxt->sax, sax, sizeof(htmlSAXHandler));
6350
0
  if (user_data != NULL)
6351
0
      ctxt->userData = user_data;
6352
0
    }
6353
0
    if (filename == NULL) {
6354
0
  ctxt->directory = NULL;
6355
0
    } else {
6356
0
        ctxt->directory = xmlParserGetDirectory(filename);
6357
0
    }
6358
6359
0
    inputStream = htmlNewInputStream(ctxt);
6360
0
    if (inputStream == NULL) {
6361
0
  xmlFreeParserCtxt(ctxt);
6362
0
  xmlFree(buf);
6363
0
  return(NULL);
6364
0
    }
6365
6366
0
    if (filename == NULL)
6367
0
  inputStream->filename = NULL;
6368
0
    else
6369
0
  inputStream->filename = (char *)
6370
0
      xmlCanonicPath((const xmlChar *) filename);
6371
0
    inputStream->buf = buf;
6372
0
    xmlBufResetInput(buf->buffer, inputStream);
6373
6374
0
    inputPush(ctxt, inputStream);
6375
6376
0
    if ((size > 0) && (chunk != NULL) && (ctxt->input != NULL) &&
6377
0
        (ctxt->input->buf != NULL))  {
6378
0
  size_t base = xmlBufGetInputBase(ctxt->input->buf->buffer, ctxt->input);
6379
0
  size_t cur = ctxt->input->cur - ctxt->input->base;
6380
6381
0
  xmlParserInputBufferPush(ctxt->input->buf, size, chunk);
6382
6383
0
        xmlBufSetInputBaseCur(ctxt->input->buf->buffer, ctxt->input, base, cur);
6384
#ifdef DEBUG_PUSH
6385
  xmlGenericError(xmlGenericErrorContext, "HPP: pushed %d\n", size);
6386
#endif
6387
0
    }
6388
0
    ctxt->progressive = 1;
6389
6390
0
    return(ctxt);
6391
0
}
6392
#endif /* LIBXML_PUSH_ENABLED */
6393
6394
/**
6395
 * htmlSAXParseDoc:
6396
 * @cur:  a pointer to an array of xmlChar
6397
 * @encoding:  a free form C string describing the HTML document encoding, or NULL
6398
 * @sax:  the SAX handler block
6399
 * @userData: if using SAX, this pointer will be provided on callbacks.
6400
 *
6401
 * Parse an HTML in-memory document. If sax is not NULL, use the SAX callbacks
6402
 * to handle parse events. If sax is NULL, fallback to the default DOM
6403
 * behavior and return a tree.
6404
 *
6405
 * Returns the resulting document tree unless SAX is NULL or the document is
6406
 *     not well formed.
6407
 */
6408
6409
htmlDocPtr
6410
htmlSAXParseDoc(const xmlChar *cur, const char *encoding,
6411
0
                htmlSAXHandlerPtr sax, void *userData) {
6412
0
    htmlDocPtr ret;
6413
0
    htmlParserCtxtPtr ctxt;
6414
6415
0
    xmlInitParser();
6416
6417
0
    if (cur == NULL) return(NULL);
6418
6419
6420
0
    ctxt = htmlCreateDocParserCtxt(cur, encoding);
6421
0
    if (ctxt == NULL) return(NULL);
6422
0
    if (sax != NULL) {
6423
0
        if (ctxt->sax != NULL) xmlFree (ctxt->sax);
6424
0
        ctxt->sax = sax;
6425
0
        ctxt->userData = userData;
6426
0
    }
6427
6428
0
    htmlParseDocument(ctxt);
6429
0
    ret = ctxt->myDoc;
6430
0
    if (sax != NULL) {
6431
0
  ctxt->sax = NULL;
6432
0
  ctxt->userData = NULL;
6433
0
    }
6434
0
    htmlFreeParserCtxt(ctxt);
6435
6436
0
    return(ret);
6437
0
}
6438
6439
/**
6440
 * htmlParseDoc:
6441
 * @cur:  a pointer to an array of xmlChar
6442
 * @encoding:  a free form C string describing the HTML document encoding, or NULL
6443
 *
6444
 * parse an HTML in-memory document and build a tree.
6445
 *
6446
 * Returns the resulting document tree
6447
 */
6448
6449
htmlDocPtr
6450
0
htmlParseDoc(const xmlChar *cur, const char *encoding) {
6451
0
    return(htmlSAXParseDoc(cur, encoding, NULL, NULL));
6452
0
}
6453
6454
6455
/**
6456
 * htmlCreateFileParserCtxt:
6457
 * @filename:  the filename
6458
 * @encoding:  a free form C string describing the HTML document encoding, or NULL
6459
 *
6460
 * Create a parser context for a file content.
6461
 * Automatic support for ZLIB/Compress compressed document is provided
6462
 * by default if found at compile-time.
6463
 *
6464
 * Returns the new parser context or NULL
6465
 */
6466
htmlParserCtxtPtr
6467
htmlCreateFileParserCtxt(const char *filename, const char *encoding)
6468
0
{
6469
0
    htmlParserCtxtPtr ctxt;
6470
0
    htmlParserInputPtr inputStream;
6471
0
    char *canonicFilename;
6472
    /* htmlCharEncoding enc; */
6473
0
    xmlChar *content, *content_line = (xmlChar *) "charset=";
6474
6475
0
    if (filename == NULL)
6476
0
        return(NULL);
6477
6478
0
    ctxt = htmlNewParserCtxt();
6479
0
    if (ctxt == NULL) {
6480
0
  return(NULL);
6481
0
    }
6482
0
    canonicFilename = (char *) xmlCanonicPath((const xmlChar *) filename);
6483
0
    if (canonicFilename == NULL) {
6484
0
#ifdef LIBXML_SAX1_ENABLED
6485
0
  if (xmlDefaultSAXHandler.error != NULL) {
6486
0
      xmlDefaultSAXHandler.error(NULL, "out of memory\n");
6487
0
  }
6488
0
#endif
6489
0
  xmlFreeParserCtxt(ctxt);
6490
0
  return(NULL);
6491
0
    }
6492
6493
0
    inputStream = xmlLoadExternalEntity(canonicFilename, NULL, ctxt);
6494
0
    xmlFree(canonicFilename);
6495
0
    if (inputStream == NULL) {
6496
0
  xmlFreeParserCtxt(ctxt);
6497
0
  return(NULL);
6498
0
    }
6499
6500
0
    inputPush(ctxt, inputStream);
6501
6502
    /* set encoding */
6503
0
    if (encoding) {
6504
0
        size_t l = strlen(encoding);
6505
6506
0
  if (l < 1000) {
6507
0
      content = xmlMallocAtomic (xmlStrlen(content_line) + l + 1);
6508
0
      if (content) {
6509
0
    strcpy ((char *)content, (char *)content_line);
6510
0
    strcat ((char *)content, (char *)encoding);
6511
0
    htmlCheckEncoding (ctxt, content);
6512
0
    xmlFree (content);
6513
0
      }
6514
0
  }
6515
0
    }
6516
6517
0
    return(ctxt);
6518
0
}
6519
6520
/**
6521
 * htmlSAXParseFile:
6522
 * @filename:  the filename
6523
 * @encoding:  a free form C string describing the HTML document encoding, or NULL
6524
 * @sax:  the SAX handler block
6525
 * @userData: if using SAX, this pointer will be provided on callbacks.
6526
 *
6527
 * parse an HTML file and build a tree. Automatic support for ZLIB/Compress
6528
 * compressed document is provided by default if found at compile-time.
6529
 * It use the given SAX function block to handle the parsing callback.
6530
 * If sax is NULL, fallback to the default DOM tree building routines.
6531
 *
6532
 * Returns the resulting document tree unless SAX is NULL or the document is
6533
 *     not well formed.
6534
 */
6535
6536
htmlDocPtr
6537
htmlSAXParseFile(const char *filename, const char *encoding, htmlSAXHandlerPtr sax,
6538
0
                 void *userData) {
6539
0
    htmlDocPtr ret;
6540
0
    htmlParserCtxtPtr ctxt;
6541
0
    htmlSAXHandlerPtr oldsax = NULL;
6542
6543
0
    xmlInitParser();
6544
6545
0
    ctxt = htmlCreateFileParserCtxt(filename, encoding);
6546
0
    if (ctxt == NULL) return(NULL);
6547
0
    if (sax != NULL) {
6548
0
  oldsax = ctxt->sax;
6549
0
        ctxt->sax = sax;
6550
0
        ctxt->userData = userData;
6551
0
    }
6552
6553
0
    htmlParseDocument(ctxt);
6554
6555
0
    ret = ctxt->myDoc;
6556
0
    if (sax != NULL) {
6557
0
        ctxt->sax = oldsax;
6558
0
        ctxt->userData = NULL;
6559
0
    }
6560
0
    htmlFreeParserCtxt(ctxt);
6561
6562
0
    return(ret);
6563
0
}
6564
6565
/**
6566
 * htmlParseFile:
6567
 * @filename:  the filename
6568
 * @encoding:  a free form C string describing the HTML document encoding, or NULL
6569
 *
6570
 * parse an HTML file and build a tree. Automatic support for ZLIB/Compress
6571
 * compressed document is provided by default if found at compile-time.
6572
 *
6573
 * Returns the resulting document tree
6574
 */
6575
6576
htmlDocPtr
6577
0
htmlParseFile(const char *filename, const char *encoding) {
6578
0
    return(htmlSAXParseFile(filename, encoding, NULL, NULL));
6579
0
}
6580
6581
/**
6582
 * htmlHandleOmittedElem:
6583
 * @val:  int 0 or 1
6584
 *
6585
 * Set and return the previous value for handling HTML omitted tags.
6586
 *
6587
 * Returns the last value for 0 for no handling, 1 for auto insertion.
6588
 */
6589
6590
int
6591
0
htmlHandleOmittedElem(int val) {
6592
0
    int old = htmlOmittedDefaultValue;
6593
6594
0
    htmlOmittedDefaultValue = val;
6595
0
    return(old);
6596
0
}
6597
6598
/**
6599
 * htmlElementAllowedHere:
6600
 * @parent: HTML parent element
6601
 * @elt: HTML element
6602
 *
6603
 * Checks whether an HTML element may be a direct child of a parent element.
6604
 * Note - doesn't check for deprecated elements
6605
 *
6606
 * Returns 1 if allowed; 0 otherwise.
6607
 */
6608
int
6609
0
htmlElementAllowedHere(const htmlElemDesc* parent, const xmlChar* elt) {
6610
0
  const char** p ;
6611
6612
0
  if ( ! elt || ! parent || ! parent->subelts )
6613
0
  return 0 ;
6614
6615
0
  for ( p = parent->subelts; *p; ++p )
6616
0
    if ( !xmlStrcmp((const xmlChar *)*p, elt) )
6617
0
      return 1 ;
6618
6619
0
  return 0 ;
6620
0
}
6621
/**
6622
 * htmlElementStatusHere:
6623
 * @parent: HTML parent element
6624
 * @elt: HTML element
6625
 *
6626
 * Checks whether an HTML element may be a direct child of a parent element.
6627
 * and if so whether it is valid or deprecated.
6628
 *
6629
 * Returns one of HTML_VALID, HTML_DEPRECATED, HTML_INVALID
6630
 */
6631
htmlStatus
6632
0
htmlElementStatusHere(const htmlElemDesc* parent, const htmlElemDesc* elt) {
6633
0
  if ( ! parent || ! elt )
6634
0
    return HTML_INVALID ;
6635
0
  if ( ! htmlElementAllowedHere(parent, (const xmlChar*) elt->name ) )
6636
0
    return HTML_INVALID ;
6637
6638
0
  return ( elt->dtd == 0 ) ? HTML_VALID : HTML_DEPRECATED ;
6639
0
}
6640
/**
6641
 * htmlAttrAllowed:
6642
 * @elt: HTML element
6643
 * @attr: HTML attribute
6644
 * @legacy: whether to allow deprecated attributes
6645
 *
6646
 * Checks whether an attribute is valid for an element
6647
 * Has full knowledge of Required and Deprecated attributes
6648
 *
6649
 * Returns one of HTML_REQUIRED, HTML_VALID, HTML_DEPRECATED, HTML_INVALID
6650
 */
6651
htmlStatus
6652
0
htmlAttrAllowed(const htmlElemDesc* elt, const xmlChar* attr, int legacy) {
6653
0
  const char** p ;
6654
6655
0
  if ( !elt || ! attr )
6656
0
  return HTML_INVALID ;
6657
6658
0
  if ( elt->attrs_req )
6659
0
    for ( p = elt->attrs_req; *p; ++p)
6660
0
      if ( !xmlStrcmp((const xmlChar*)*p, attr) )
6661
0
        return HTML_REQUIRED ;
6662
6663
0
  if ( elt->attrs_opt )
6664
0
    for ( p = elt->attrs_opt; *p; ++p)
6665
0
      if ( !xmlStrcmp((const xmlChar*)*p, attr) )
6666
0
        return HTML_VALID ;
6667
6668
0
  if ( legacy && elt->attrs_depr )
6669
0
    for ( p = elt->attrs_depr; *p; ++p)
6670
0
      if ( !xmlStrcmp((const xmlChar*)*p, attr) )
6671
0
        return HTML_DEPRECATED ;
6672
6673
0
  return HTML_INVALID ;
6674
0
}
6675
/**
6676
 * htmlNodeStatus:
6677
 * @node: an htmlNodePtr in a tree
6678
 * @legacy: whether to allow deprecated elements (YES is faster here
6679
 *  for Element nodes)
6680
 *
6681
 * Checks whether the tree node is valid.  Experimental (the author
6682
 *     only uses the HTML enhancements in a SAX parser)
6683
 *
6684
 * Return: for Element nodes, a return from htmlElementAllowedHere (if
6685
 *  legacy allowed) or htmlElementStatusHere (otherwise).
6686
 *  for Attribute nodes, a return from htmlAttrAllowed
6687
 *  for other nodes, HTML_NA (no checks performed)
6688
 */
6689
htmlStatus
6690
0
htmlNodeStatus(const htmlNodePtr node, int legacy) {
6691
0
  if ( ! node )
6692
0
    return HTML_INVALID ;
6693
6694
0
  switch ( node->type ) {
6695
0
    case XML_ELEMENT_NODE:
6696
0
      return legacy
6697
0
  ? ( htmlElementAllowedHere (
6698
0
    htmlTagLookup(node->parent->name) , node->name
6699
0
    ) ? HTML_VALID : HTML_INVALID )
6700
0
  : htmlElementStatusHere(
6701
0
    htmlTagLookup(node->parent->name) ,
6702
0
    htmlTagLookup(node->name) )
6703
0
  ;
6704
0
    case XML_ATTRIBUTE_NODE:
6705
0
      return htmlAttrAllowed(
6706
0
  htmlTagLookup(node->parent->name) , node->name, legacy) ;
6707
0
    default: return HTML_NA ;
6708
0
  }
6709
0
}
6710
/************************************************************************
6711
 *                  *
6712
 *  New set (2.6.0) of simpler and more flexible APIs   *
6713
 *                  *
6714
 ************************************************************************/
6715
/**
6716
 * DICT_FREE:
6717
 * @str:  a string
6718
 *
6719
 * Free a string if it is not owned by the "dict" dictionary in the
6720
 * current scope
6721
 */
6722
#define DICT_FREE(str)            \
6723
0
  if ((str) && ((!dict) ||       \
6724
0
      (xmlDictOwns(dict, (const xmlChar *)(str)) == 0)))  \
6725
0
      xmlFree((char *)(str));
6726
6727
/**
6728
 * htmlCtxtReset:
6729
 * @ctxt: an HTML parser context
6730
 *
6731
 * Reset a parser context
6732
 */
6733
void
6734
htmlCtxtReset(htmlParserCtxtPtr ctxt)
6735
0
{
6736
0
    xmlParserInputPtr input;
6737
0
    xmlDictPtr dict;
6738
6739
0
    if (ctxt == NULL)
6740
0
        return;
6741
6742
0
    xmlInitParser();
6743
0
    dict = ctxt->dict;
6744
6745
0
    while ((input = inputPop(ctxt)) != NULL) { /* Non consuming */
6746
0
        xmlFreeInputStream(input);
6747
0
    }
6748
0
    ctxt->inputNr = 0;
6749
0
    ctxt->input = NULL;
6750
6751
0
    ctxt->spaceNr = 0;
6752
0
    if (ctxt->spaceTab != NULL) {
6753
0
  ctxt->spaceTab[0] = -1;
6754
0
  ctxt->space = &ctxt->spaceTab[0];
6755
0
    } else {
6756
0
  ctxt->space = NULL;
6757
0
    }
6758
6759
6760
0
    ctxt->nodeNr = 0;
6761
0
    ctxt->node = NULL;
6762
6763
0
    ctxt->nameNr = 0;
6764
0
    ctxt->name = NULL;
6765
6766
0
    ctxt->nsNr = 0;
6767
6768
0
    DICT_FREE(ctxt->version);
6769
0
    ctxt->version = NULL;
6770
0
    DICT_FREE(ctxt->encoding);
6771
0
    ctxt->encoding = NULL;
6772
0
    DICT_FREE(ctxt->directory);
6773
0
    ctxt->directory = NULL;
6774
0
    DICT_FREE(ctxt->extSubURI);
6775
0
    ctxt->extSubURI = NULL;
6776
0
    DICT_FREE(ctxt->extSubSystem);
6777
0
    ctxt->extSubSystem = NULL;
6778
0
    if (ctxt->myDoc != NULL)
6779
0
        xmlFreeDoc(ctxt->myDoc);
6780
0
    ctxt->myDoc = NULL;
6781
6782
0
    ctxt->standalone = -1;
6783
0
    ctxt->hasExternalSubset = 0;
6784
0
    ctxt->hasPErefs = 0;
6785
0
    ctxt->html = 1;
6786
0
    ctxt->external = 0;
6787
0
    ctxt->instate = XML_PARSER_START;
6788
0
    ctxt->token = 0;
6789
6790
0
    ctxt->wellFormed = 1;
6791
0
    ctxt->nsWellFormed = 1;
6792
0
    ctxt->disableSAX = 0;
6793
0
    ctxt->valid = 1;
6794
0
    ctxt->vctxt.userData = ctxt;
6795
0
    ctxt->vctxt.error = xmlParserValidityError;
6796
0
    ctxt->vctxt.warning = xmlParserValidityWarning;
6797
0
    ctxt->record_info = 0;
6798
0
    ctxt->checkIndex = 0;
6799
0
    ctxt->inSubset = 0;
6800
0
    ctxt->errNo = XML_ERR_OK;
6801
0
    ctxt->depth = 0;
6802
0
    ctxt->charset = XML_CHAR_ENCODING_NONE;
6803
0
    ctxt->catalogs = NULL;
6804
0
    xmlInitNodeInfoSeq(&ctxt->node_seq);
6805
6806
0
    if (ctxt->attsDefault != NULL) {
6807
0
        xmlHashFree(ctxt->attsDefault, xmlHashDefaultDeallocator);
6808
0
        ctxt->attsDefault = NULL;
6809
0
    }
6810
0
    if (ctxt->attsSpecial != NULL) {
6811
0
        xmlHashFree(ctxt->attsSpecial, NULL);
6812
0
        ctxt->attsSpecial = NULL;
6813
0
    }
6814
0
}
6815
6816
/**
6817
 * htmlCtxtUseOptions:
6818
 * @ctxt: an HTML parser context
6819
 * @options:  a combination of htmlParserOption(s)
6820
 *
6821
 * Applies the options to the parser context
6822
 *
6823
 * Returns 0 in case of success, the set of unknown or unimplemented options
6824
 *         in case of error.
6825
 */
6826
int
6827
htmlCtxtUseOptions(htmlParserCtxtPtr ctxt, int options)
6828
0
{
6829
0
    if (ctxt == NULL)
6830
0
        return(-1);
6831
6832
0
    if (options & HTML_PARSE_NOWARNING) {
6833
0
        ctxt->sax->warning = NULL;
6834
0
        ctxt->vctxt.warning = NULL;
6835
0
        options -= XML_PARSE_NOWARNING;
6836
0
  ctxt->options |= XML_PARSE_NOWARNING;
6837
0
    }
6838
0
    if (options & HTML_PARSE_NOERROR) {
6839
0
        ctxt->sax->error = NULL;
6840
0
        ctxt->vctxt.error = NULL;
6841
0
        ctxt->sax->fatalError = NULL;
6842
0
        options -= XML_PARSE_NOERROR;
6843
0
  ctxt->options |= XML_PARSE_NOERROR;
6844
0
    }
6845
0
    if (options & HTML_PARSE_PEDANTIC) {
6846
0
        ctxt->pedantic = 1;
6847
0
        options -= XML_PARSE_PEDANTIC;
6848
0
  ctxt->options |= XML_PARSE_PEDANTIC;
6849
0
    } else
6850
0
        ctxt->pedantic = 0;
6851
0
    if (options & XML_PARSE_NOBLANKS) {
6852
0
        ctxt->keepBlanks = 0;
6853
0
        ctxt->sax->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
6854
0
        options -= XML_PARSE_NOBLANKS;
6855
0
  ctxt->options |= XML_PARSE_NOBLANKS;
6856
0
    } else
6857
0
        ctxt->keepBlanks = 1;
6858
0
    if (options & HTML_PARSE_RECOVER) {
6859
0
        ctxt->recovery = 1;
6860
0
  options -= HTML_PARSE_RECOVER;
6861
0
    } else
6862
0
        ctxt->recovery = 0;
6863
0
    if (options & HTML_PARSE_COMPACT) {
6864
0
  ctxt->options |= HTML_PARSE_COMPACT;
6865
0
        options -= HTML_PARSE_COMPACT;
6866
0
    }
6867
0
    if (options & XML_PARSE_HUGE) {
6868
0
  ctxt->options |= XML_PARSE_HUGE;
6869
0
        options -= XML_PARSE_HUGE;
6870
0
    }
6871
0
    if (options & HTML_PARSE_NODEFDTD) {
6872
0
  ctxt->options |= HTML_PARSE_NODEFDTD;
6873
0
        options -= HTML_PARSE_NODEFDTD;
6874
0
    }
6875
0
    if (options & HTML_PARSE_IGNORE_ENC) {
6876
0
  ctxt->options |= HTML_PARSE_IGNORE_ENC;
6877
0
        options -= HTML_PARSE_IGNORE_ENC;
6878
0
    }
6879
0
    if (options & HTML_PARSE_NOIMPLIED) {
6880
0
        ctxt->options |= HTML_PARSE_NOIMPLIED;
6881
0
        options -= HTML_PARSE_NOIMPLIED;
6882
0
    }
6883
0
    ctxt->dictNames = 0;
6884
0
    return (options);
6885
0
}
6886
6887
/**
6888
 * htmlDoRead:
6889
 * @ctxt:  an HTML parser context
6890
 * @URL:  the base URL to use for the document
6891
 * @encoding:  the document encoding, or NULL
6892
 * @options:  a combination of htmlParserOption(s)
6893
 * @reuse:  keep the context for reuse
6894
 *
6895
 * Common front-end for the htmlRead functions
6896
 *
6897
 * Returns the resulting document tree or NULL
6898
 */
6899
static htmlDocPtr
6900
htmlDoRead(htmlParserCtxtPtr ctxt, const char *URL, const char *encoding,
6901
          int options, int reuse)
6902
0
{
6903
0
    htmlDocPtr ret;
6904
6905
0
    htmlCtxtUseOptions(ctxt, options);
6906
0
    ctxt->html = 1;
6907
0
    if (encoding != NULL) {
6908
0
        xmlCharEncodingHandlerPtr hdlr;
6909
6910
0
  hdlr = xmlFindCharEncodingHandler(encoding);
6911
0
  if (hdlr != NULL) {
6912
0
      xmlSwitchToEncoding(ctxt, hdlr);
6913
0
      if (ctxt->input->encoding != NULL)
6914
0
        xmlFree((xmlChar *) ctxt->input->encoding);
6915
0
            ctxt->input->encoding = xmlStrdup((xmlChar *)encoding);
6916
0
        }
6917
0
    }
6918
0
    if ((URL != NULL) && (ctxt->input != NULL) &&
6919
0
        (ctxt->input->filename == NULL))
6920
0
        ctxt->input->filename = (char *) xmlStrdup((const xmlChar *) URL);
6921
0
    htmlParseDocument(ctxt);
6922
0
    ret = ctxt->myDoc;
6923
0
    ctxt->myDoc = NULL;
6924
0
    if (!reuse) {
6925
0
        if ((ctxt->dictNames) &&
6926
0
      (ret != NULL) &&
6927
0
      (ret->dict == ctxt->dict))
6928
0
      ctxt->dict = NULL;
6929
0
  xmlFreeParserCtxt(ctxt);
6930
0
    }
6931
0
    return (ret);
6932
0
}
6933
6934
/**
6935
 * htmlReadDoc:
6936
 * @cur:  a pointer to a zero terminated string
6937
 * @URL:  the base URL to use for the document
6938
 * @encoding:  the document encoding, or NULL
6939
 * @options:  a combination of htmlParserOption(s)
6940
 *
6941
 * parse an XML in-memory document and build a tree.
6942
 *
6943
 * Returns the resulting document tree
6944
 */
6945
htmlDocPtr
6946
htmlReadDoc(const xmlChar * cur, const char *URL, const char *encoding, int options)
6947
0
{
6948
0
    htmlParserCtxtPtr ctxt;
6949
6950
0
    if (cur == NULL)
6951
0
        return (NULL);
6952
6953
0
    xmlInitParser();
6954
0
    ctxt = htmlCreateDocParserCtxt(cur, NULL);
6955
0
    if (ctxt == NULL)
6956
0
        return (NULL);
6957
0
    return (htmlDoRead(ctxt, URL, encoding, options, 0));
6958
0
}
6959
6960
/**
6961
 * htmlReadFile:
6962
 * @filename:  a file or URL
6963
 * @encoding:  the document encoding, or NULL
6964
 * @options:  a combination of htmlParserOption(s)
6965
 *
6966
 * parse an XML file from the filesystem or the network.
6967
 *
6968
 * Returns the resulting document tree
6969
 */
6970
htmlDocPtr
6971
htmlReadFile(const char *filename, const char *encoding, int options)
6972
0
{
6973
0
    htmlParserCtxtPtr ctxt;
6974
6975
0
    xmlInitParser();
6976
0
    ctxt = htmlCreateFileParserCtxt(filename, encoding);
6977
0
    if (ctxt == NULL)
6978
0
        return (NULL);
6979
0
    return (htmlDoRead(ctxt, NULL, NULL, options, 0));
6980
0
}
6981
6982
/**
6983
 * htmlReadMemory:
6984
 * @buffer:  a pointer to a char array
6985
 * @size:  the size of the array
6986
 * @URL:  the base URL to use for the document
6987
 * @encoding:  the document encoding, or NULL
6988
 * @options:  a combination of htmlParserOption(s)
6989
 *
6990
 * parse an XML in-memory document and build a tree.
6991
 *
6992
 * Returns the resulting document tree
6993
 */
6994
htmlDocPtr
6995
htmlReadMemory(const char *buffer, int size, const char *URL, const char *encoding, int options)
6996
0
{
6997
0
    htmlParserCtxtPtr ctxt;
6998
6999
0
    xmlInitParser();
7000
0
    ctxt = xmlCreateMemoryParserCtxt(buffer, size);
7001
0
    if (ctxt == NULL)
7002
0
        return (NULL);
7003
0
    htmlDefaultSAXHandlerInit();
7004
0
    if (ctxt->sax != NULL)
7005
0
        memcpy(ctxt->sax, &htmlDefaultSAXHandler, sizeof(xmlSAXHandlerV1));
7006
0
    return (htmlDoRead(ctxt, URL, encoding, options, 0));
7007
0
}
7008
7009
/**
7010
 * htmlReadFd:
7011
 * @fd:  an open file descriptor
7012
 * @URL:  the base URL to use for the document
7013
 * @encoding:  the document encoding, or NULL
7014
 * @options:  a combination of htmlParserOption(s)
7015
 *
7016
 * parse an HTML from a file descriptor and build a tree.
7017
 * NOTE that the file descriptor will not be closed when the
7018
 *      reader is closed or reset.
7019
 *
7020
 * Returns the resulting document tree
7021
 */
7022
htmlDocPtr
7023
htmlReadFd(int fd, const char *URL, const char *encoding, int options)
7024
0
{
7025
0
    htmlParserCtxtPtr ctxt;
7026
0
    xmlParserInputBufferPtr input;
7027
0
    htmlParserInputPtr stream;
7028
7029
0
    if (fd < 0)
7030
0
        return (NULL);
7031
7032
0
    xmlInitParser();
7033
0
    input = xmlParserInputBufferCreateFd(fd, XML_CHAR_ENCODING_NONE);
7034
0
    if (input == NULL)
7035
0
        return (NULL);
7036
0
    input->closecallback = NULL;
7037
0
    ctxt = htmlNewParserCtxt();
7038
0
    if (ctxt == NULL) {
7039
0
        xmlFreeParserInputBuffer(input);
7040
0
        return (NULL);
7041
0
    }
7042
0
    stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
7043
0
    if (stream == NULL) {
7044
0
        xmlFreeParserInputBuffer(input);
7045
0
  htmlFreeParserCtxt(ctxt);
7046
0
        return (NULL);
7047
0
    }
7048
0
    inputPush(ctxt, stream);
7049
0
    return (htmlDoRead(ctxt, URL, encoding, options, 0));
7050
0
}
7051
7052
/**
7053
 * htmlReadIO:
7054
 * @ioread:  an I/O read function
7055
 * @ioclose:  an I/O close function
7056
 * @ioctx:  an I/O handler
7057
 * @URL:  the base URL to use for the document
7058
 * @encoding:  the document encoding, or NULL
7059
 * @options:  a combination of htmlParserOption(s)
7060
 *
7061
 * parse an HTML document from I/O functions and source and build a tree.
7062
 *
7063
 * Returns the resulting document tree
7064
 */
7065
htmlDocPtr
7066
htmlReadIO(xmlInputReadCallback ioread, xmlInputCloseCallback ioclose,
7067
          void *ioctx, const char *URL, const char *encoding, int options)
7068
0
{
7069
0
    htmlParserCtxtPtr ctxt;
7070
0
    xmlParserInputBufferPtr input;
7071
0
    xmlParserInputPtr stream;
7072
7073
0
    if (ioread == NULL)
7074
0
        return (NULL);
7075
0
    xmlInitParser();
7076
7077
0
    input = xmlParserInputBufferCreateIO(ioread, ioclose, ioctx,
7078
0
                                         XML_CHAR_ENCODING_NONE);
7079
0
    if (input == NULL) {
7080
0
        if (ioclose != NULL)
7081
0
            ioclose(ioctx);
7082
0
        return (NULL);
7083
0
    }
7084
0
    ctxt = htmlNewParserCtxt();
7085
0
    if (ctxt == NULL) {
7086
0
        xmlFreeParserInputBuffer(input);
7087
0
        return (NULL);
7088
0
    }
7089
0
    stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
7090
0
    if (stream == NULL) {
7091
0
        xmlFreeParserInputBuffer(input);
7092
0
  xmlFreeParserCtxt(ctxt);
7093
0
        return (NULL);
7094
0
    }
7095
0
    inputPush(ctxt, stream);
7096
0
    return (htmlDoRead(ctxt, URL, encoding, options, 0));
7097
0
}
7098
7099
/**
7100
 * htmlCtxtReadDoc:
7101
 * @ctxt:  an HTML parser context
7102
 * @cur:  a pointer to a zero terminated string
7103
 * @URL:  the base URL to use for the document
7104
 * @encoding:  the document encoding, or NULL
7105
 * @options:  a combination of htmlParserOption(s)
7106
 *
7107
 * parse an XML in-memory document and build a tree.
7108
 * This reuses the existing @ctxt parser context
7109
 *
7110
 * Returns the resulting document tree
7111
 */
7112
htmlDocPtr
7113
htmlCtxtReadDoc(htmlParserCtxtPtr ctxt, const xmlChar * cur,
7114
               const char *URL, const char *encoding, int options)
7115
0
{
7116
0
    if (cur == NULL)
7117
0
        return (NULL);
7118
0
    return (htmlCtxtReadMemory(ctxt, (const char *) cur, xmlStrlen(cur), URL,
7119
0
                               encoding, options));
7120
0
}
7121
7122
/**
7123
 * htmlCtxtReadFile:
7124
 * @ctxt:  an HTML parser context
7125
 * @filename:  a file or URL
7126
 * @encoding:  the document encoding, or NULL
7127
 * @options:  a combination of htmlParserOption(s)
7128
 *
7129
 * parse an XML file from the filesystem or the network.
7130
 * This reuses the existing @ctxt parser context
7131
 *
7132
 * Returns the resulting document tree
7133
 */
7134
htmlDocPtr
7135
htmlCtxtReadFile(htmlParserCtxtPtr ctxt, const char *filename,
7136
                const char *encoding, int options)
7137
0
{
7138
0
    xmlParserInputPtr stream;
7139
7140
0
    if (filename == NULL)
7141
0
        return (NULL);
7142
0
    if (ctxt == NULL)
7143
0
        return (NULL);
7144
0
    xmlInitParser();
7145
7146
0
    htmlCtxtReset(ctxt);
7147
7148
0
    stream = xmlLoadExternalEntity(filename, NULL, ctxt);
7149
0
    if (stream == NULL) {
7150
0
        return (NULL);
7151
0
    }
7152
0
    inputPush(ctxt, stream);
7153
0
    return (htmlDoRead(ctxt, NULL, encoding, options, 1));
7154
0
}
7155
7156
/**
7157
 * htmlCtxtReadMemory:
7158
 * @ctxt:  an HTML parser context
7159
 * @buffer:  a pointer to a char array
7160
 * @size:  the size of the array
7161
 * @URL:  the base URL to use for the document
7162
 * @encoding:  the document encoding, or NULL
7163
 * @options:  a combination of htmlParserOption(s)
7164
 *
7165
 * parse an XML in-memory document and build a tree.
7166
 * This reuses the existing @ctxt parser context
7167
 *
7168
 * Returns the resulting document tree
7169
 */
7170
htmlDocPtr
7171
htmlCtxtReadMemory(htmlParserCtxtPtr ctxt, const char *buffer, int size,
7172
                  const char *URL, const char *encoding, int options)
7173
0
{
7174
0
    xmlParserInputBufferPtr input;
7175
0
    xmlParserInputPtr stream;
7176
7177
0
    if (ctxt == NULL)
7178
0
        return (NULL);
7179
0
    if (buffer == NULL)
7180
0
        return (NULL);
7181
0
    xmlInitParser();
7182
7183
0
    htmlCtxtReset(ctxt);
7184
7185
0
    input = xmlParserInputBufferCreateMem(buffer, size, XML_CHAR_ENCODING_NONE);
7186
0
    if (input == NULL) {
7187
0
  return(NULL);
7188
0
    }
7189
7190
0
    stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
7191
0
    if (stream == NULL) {
7192
0
  xmlFreeParserInputBuffer(input);
7193
0
  return(NULL);
7194
0
    }
7195
7196
0
    inputPush(ctxt, stream);
7197
0
    return (htmlDoRead(ctxt, URL, encoding, options, 1));
7198
0
}
7199
7200
/**
7201
 * htmlCtxtReadFd:
7202
 * @ctxt:  an HTML parser context
7203
 * @fd:  an open file descriptor
7204
 * @URL:  the base URL to use for the document
7205
 * @encoding:  the document encoding, or NULL
7206
 * @options:  a combination of htmlParserOption(s)
7207
 *
7208
 * parse an XML from a file descriptor and build a tree.
7209
 * This reuses the existing @ctxt parser context
7210
 *
7211
 * Returns the resulting document tree
7212
 */
7213
htmlDocPtr
7214
htmlCtxtReadFd(htmlParserCtxtPtr ctxt, int fd,
7215
              const char *URL, const char *encoding, int options)
7216
0
{
7217
0
    xmlParserInputBufferPtr input;
7218
0
    xmlParserInputPtr stream;
7219
7220
0
    if (fd < 0)
7221
0
        return (NULL);
7222
0
    if (ctxt == NULL)
7223
0
        return (NULL);
7224
0
    xmlInitParser();
7225
7226
0
    htmlCtxtReset(ctxt);
7227
7228
7229
0
    input = xmlParserInputBufferCreateFd(fd, XML_CHAR_ENCODING_NONE);
7230
0
    if (input == NULL)
7231
0
        return (NULL);
7232
0
    stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
7233
0
    if (stream == NULL) {
7234
0
        xmlFreeParserInputBuffer(input);
7235
0
        return (NULL);
7236
0
    }
7237
0
    inputPush(ctxt, stream);
7238
0
    return (htmlDoRead(ctxt, URL, encoding, options, 1));
7239
0
}
7240
7241
/**
7242
 * htmlCtxtReadIO:
7243
 * @ctxt:  an HTML parser context
7244
 * @ioread:  an I/O read function
7245
 * @ioclose:  an I/O close function
7246
 * @ioctx:  an I/O handler
7247
 * @URL:  the base URL to use for the document
7248
 * @encoding:  the document encoding, or NULL
7249
 * @options:  a combination of htmlParserOption(s)
7250
 *
7251
 * parse an HTML document from I/O functions and source and build a tree.
7252
 * This reuses the existing @ctxt parser context
7253
 *
7254
 * Returns the resulting document tree
7255
 */
7256
htmlDocPtr
7257
htmlCtxtReadIO(htmlParserCtxtPtr ctxt, xmlInputReadCallback ioread,
7258
              xmlInputCloseCallback ioclose, void *ioctx,
7259
        const char *URL,
7260
              const char *encoding, int options)
7261
0
{
7262
0
    xmlParserInputBufferPtr input;
7263
0
    xmlParserInputPtr stream;
7264
7265
0
    if (ioread == NULL)
7266
0
        return (NULL);
7267
0
    if (ctxt == NULL)
7268
0
        return (NULL);
7269
0
    xmlInitParser();
7270
7271
0
    htmlCtxtReset(ctxt);
7272
7273
0
    input = xmlParserInputBufferCreateIO(ioread, ioclose, ioctx,
7274
0
                                         XML_CHAR_ENCODING_NONE);
7275
0
    if (input == NULL) {
7276
0
        if (ioclose != NULL)
7277
0
            ioclose(ioctx);
7278
0
        return (NULL);
7279
0
    }
7280
0
    stream = xmlNewIOInputStream(ctxt, input, XML_CHAR_ENCODING_NONE);
7281
0
    if (stream == NULL) {
7282
0
        xmlFreeParserInputBuffer(input);
7283
0
        return (NULL);
7284
0
    }
7285
0
    inputPush(ctxt, stream);
7286
0
    return (htmlDoRead(ctxt, URL, encoding, options, 1));
7287
0
}
7288
7289
#endif /* LIBXML_HTML_ENABLED */