Coverage Report

Created: 2026-08-13 06:26

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libxml2/entities.c
Line
Count
Source
1
/*
2
 * entities.c : implementation for the XML entities handling
3
 *
4
 * See Copyright for the status of this software.
5
 *
6
 * daniel@veillard.com
7
 */
8
9
/* To avoid EBCDIC trouble when parsing on zOS */
10
#if defined(__MVS__)
11
#pragma convert("ISO8859-1")
12
#endif
13
14
#define IN_LIBXML
15
#include "libxml.h"
16
17
#include <string.h>
18
#include <stdlib.h>
19
20
#include <libxml/xmlmemory.h>
21
#include <libxml/hash.h>
22
#include <libxml/entities.h>
23
#include <libxml/parser.h>
24
#include <libxml/parserInternals.h>
25
#include <libxml/xmlerror.h>
26
#include <libxml/dict.h>
27
#include <libxml/xmlsave.h>
28
29
#include "private/entities.h"
30
#include "private/error.h"
31
32
#ifndef SIZE_MAX
33
  #define SIZE_MAX ((size_t) -1)
34
#endif
35
36
/*
37
 * The XML predefined entities.
38
 */
39
40
static xmlEntity xmlEntityLt = {
41
    NULL, XML_ENTITY_DECL, BAD_CAST "lt",
42
    NULL, NULL, NULL, NULL, NULL, NULL,
43
    BAD_CAST "<", BAD_CAST "<", 1,
44
    XML_INTERNAL_PREDEFINED_ENTITY,
45
    NULL, NULL, NULL, NULL, 0, 0, 0
46
};
47
static xmlEntity xmlEntityGt = {
48
    NULL, XML_ENTITY_DECL, BAD_CAST "gt",
49
    NULL, NULL, NULL, NULL, NULL, NULL,
50
    BAD_CAST ">", BAD_CAST ">", 1,
51
    XML_INTERNAL_PREDEFINED_ENTITY,
52
    NULL, NULL, NULL, NULL, 0, 0, 0
53
};
54
static xmlEntity xmlEntityAmp = {
55
    NULL, XML_ENTITY_DECL, BAD_CAST "amp",
56
    NULL, NULL, NULL, NULL, NULL, NULL,
57
    BAD_CAST "&", BAD_CAST "&", 1,
58
    XML_INTERNAL_PREDEFINED_ENTITY,
59
    NULL, NULL, NULL, NULL, 0, 0, 0
60
};
61
static xmlEntity xmlEntityQuot = {
62
    NULL, XML_ENTITY_DECL, BAD_CAST "quot",
63
    NULL, NULL, NULL, NULL, NULL, NULL,
64
    BAD_CAST "\"", BAD_CAST "\"", 1,
65
    XML_INTERNAL_PREDEFINED_ENTITY,
66
    NULL, NULL, NULL, NULL, 0, 0, 0
67
};
68
static xmlEntity xmlEntityApos = {
69
    NULL, XML_ENTITY_DECL, BAD_CAST "apos",
70
    NULL, NULL, NULL, NULL, NULL, NULL,
71
    BAD_CAST "'", BAD_CAST "'", 1,
72
    XML_INTERNAL_PREDEFINED_ENTITY,
73
    NULL, NULL, NULL, NULL, 0, 0, 0
74
};
75
76
/*
77
 * xmlFreeEntity:
78
 * @entity:  an entity
79
 *
80
 * Frees the entity.
81
 */
82
void
83
xmlFreeEntity(xmlEntityPtr entity)
84
91.9k
{
85
91.9k
    xmlDictPtr dict = NULL;
86
87
91.9k
    if (entity == NULL)
88
0
        return;
89
90
91.9k
    if (entity->doc != NULL)
91
91.8k
        dict = entity->doc->dict;
92
93
94
91.9k
    if ((entity->children) &&
95
1.24k
        (entity == (xmlEntityPtr) entity->children->parent))
96
1.24k
        xmlFreeNodeList(entity->children);
97
91.9k
    if ((entity->name != NULL) &&
98
91.9k
        ((dict == NULL) || (!xmlDictOwns(dict, entity->name))))
99
28.2k
        xmlFree((char *) entity->name);
100
91.9k
    if (entity->ExternalID != NULL)
101
7.47k
        xmlFree((char *) entity->ExternalID);
102
91.9k
    if (entity->SystemID != NULL)
103
29.1k
        xmlFree((char *) entity->SystemID);
104
91.9k
    if (entity->URI != NULL)
105
26.5k
        xmlFree((char *) entity->URI);
106
91.9k
    if (entity->content != NULL)
107
60.9k
        xmlFree((char *) entity->content);
108
91.9k
    if (entity->orig != NULL)
109
48.8k
        xmlFree((char *) entity->orig);
110
91.9k
    xmlFree(entity);
111
91.9k
}
112
113
/*
114
 * xmlCreateEntity:
115
 *
116
 * internal routine doing the entity node structures allocations
117
 */
118
static xmlEntityPtr
119
xmlCreateEntity(xmlDocPtr doc, const xmlChar *name, int type,
120
          const xmlChar *ExternalID, const xmlChar *SystemID,
121
71.1k
          const xmlChar *content) {
122
71.1k
    xmlEntityPtr ret;
123
124
71.1k
    ret = (xmlEntityPtr) xmlMalloc(sizeof(xmlEntity));
125
71.1k
    if (ret == NULL)
126
8
  return(NULL);
127
71.0k
    memset(ret, 0, sizeof(xmlEntity));
128
71.0k
    ret->doc = doc;
129
71.0k
    ret->type = XML_ENTITY_DECL;
130
131
    /*
132
     * fill the structure.
133
     */
134
71.0k
    ret->etype = (xmlEntityType) type;
135
71.0k
    if ((doc == NULL) || (doc->dict == NULL))
136
7.43k
  ret->name = xmlStrdup(name);
137
63.6k
    else
138
63.6k
        ret->name = xmlDictLookup(doc->dict, name, -1);
139
71.0k
    if (ret->name == NULL)
140
3
        goto error;
141
71.0k
    if (ExternalID != NULL) {
142
7.47k
        ret->ExternalID = xmlStrdup(ExternalID);
143
7.47k
        if (ret->ExternalID == NULL)
144
1
            goto error;
145
7.47k
    }
146
71.0k
    if (SystemID != NULL) {
147
26.3k
        ret->SystemID = xmlStrdup(SystemID);
148
26.3k
        if (ret->SystemID == NULL)
149
3
            goto error;
150
26.3k
    }
151
71.0k
    if (content != NULL) {
152
41.9k
        ret->length = xmlStrlen(content);
153
41.9k
  ret->content = xmlStrndup(content, ret->length);
154
41.9k
        if (ret->content == NULL)
155
6
            goto error;
156
41.9k
     } else {
157
29.1k
        ret->length = 0;
158
29.1k
        ret->content = NULL;
159
29.1k
    }
160
71.0k
    ret->URI = NULL; /* to be computed by the layer knowing
161
      the defining entity */
162
71.0k
    ret->orig = NULL;
163
164
71.0k
    return(ret);
165
166
13
error:
167
13
    xmlFreeEntity(ret);
168
13
    return(NULL);
169
71.0k
}
170
171
/**
172
 * xmlAddEntity:
173
 * @doc:  the document
174
 * @extSubset:  add to the external or internal subset
175
 * @name:  the entity name
176
 * @type:  the entity type XML_xxx_yyy_ENTITY
177
 * @ExternalID:  the entity external ID if available
178
 * @SystemID:  the entity system ID if available
179
 * @content:  the entity content
180
 * @out:  pointer to resulting entity (optional)
181
 *
182
 * Register a new entity for this document.
183
 *
184
 * Available since 2.13.0.
185
 *
186
 * Returns an xmlParserErrors error code.
187
 */
188
int
189
xmlAddEntity(xmlDocPtr doc, int extSubset, const xmlChar *name, int type,
190
    const xmlChar *ExternalID, const xmlChar *SystemID,
191
78.7k
    const xmlChar *content, xmlEntityPtr *out) {
192
78.7k
    xmlDtdPtr dtd;
193
78.7k
    xmlDictPtr dict = NULL;
194
78.7k
    xmlEntitiesTablePtr table = NULL;
195
78.7k
    xmlEntityPtr ret, predef;
196
78.7k
    int res;
197
198
78.7k
    if (out != NULL)
199
78.7k
        *out = NULL;
200
78.7k
    if ((doc == NULL) || (name == NULL))
201
0
  return(XML_ERR_ARGUMENT);
202
78.7k
    dict = doc->dict;
203
204
78.7k
    if (extSubset)
205
4.68k
        dtd = doc->extSubset;
206
74.0k
    else
207
74.0k
        dtd = doc->intSubset;
208
78.7k
    if (dtd == NULL)
209
0
        return(XML_DTD_NO_DTD);
210
211
78.7k
    switch (type) {
212
28.2k
        case XML_INTERNAL_GENERAL_ENTITY:
213
38.1k
        case XML_EXTERNAL_GENERAL_PARSED_ENTITY:
214
38.5k
        case XML_EXTERNAL_GENERAL_UNPARSED_ENTITY:
215
38.5k
            predef = xmlGetPredefinedEntity(name);
216
38.5k
            if (predef != NULL) {
217
10.8k
                int valid = 0;
218
219
                /* 4.6 Predefined Entities */
220
10.8k
                if ((type == XML_INTERNAL_GENERAL_ENTITY) &&
221
10.1k
                    (content != NULL)) {
222
9.91k
                    int c = predef->content[0];
223
224
9.91k
                    if (((content[0] == c) && (content[1] == 0)) &&
225
1.01k
                        ((c == '>') || (c == '\'') || (c == '"'))) {
226
995
                        valid = 1;
227
8.91k
                    } else if ((content[0] == '&') && (content[1] == '#')) {
228
4.99k
                        if (content[2] == 'x') {
229
3.85k
                            xmlChar *hex = BAD_CAST "0123456789ABCDEF";
230
3.85k
                            xmlChar ref[] = "00;";
231
232
3.85k
                            ref[0] = hex[c / 16 % 16];
233
3.85k
                            ref[1] = hex[c % 16];
234
3.85k
                            if (xmlStrcasecmp(&content[3], ref) == 0)
235
1.57k
                                valid = 1;
236
3.85k
                        } else {
237
1.14k
                            xmlChar ref[] = "00;";
238
239
1.14k
                            ref[0] = '0' + c / 10 % 10;
240
1.14k
                            ref[1] = '0' + c % 10;
241
1.14k
                            if (xmlStrEqual(&content[2], ref))
242
723
                                valid = 1;
243
1.14k
                        }
244
4.99k
                    }
245
9.91k
                }
246
10.8k
                if (!valid)
247
7.60k
                    return(XML_ERR_REDECL_PREDEF_ENTITY);
248
10.8k
            }
249
30.9k
      if (dtd->entities == NULL) {
250
16.6k
    dtd->entities = xmlHashCreateDict(0, dict);
251
16.6k
                if (dtd->entities == NULL)
252
2
                    return(XML_ERR_NO_MEMORY);
253
16.6k
            }
254
30.9k
      table = dtd->entities;
255
30.9k
      break;
256
20.9k
        case XML_INTERNAL_PARAMETER_ENTITY:
257
40.1k
        case XML_EXTERNAL_PARAMETER_ENTITY:
258
40.1k
      if (dtd->pentities == NULL) {
259
14.6k
    dtd->pentities = xmlHashCreateDict(0, dict);
260
14.6k
                if (dtd->pentities == NULL)
261
3
                    return(XML_ERR_NO_MEMORY);
262
14.6k
            }
263
40.1k
      table = dtd->pentities;
264
40.1k
      break;
265
0
        default:
266
0
      return(XML_ERR_ARGUMENT);
267
78.7k
    }
268
71.1k
    ret = xmlCreateEntity(dtd->doc, name, type, ExternalID, SystemID, content);
269
71.1k
    if (ret == NULL)
270
21
        return(XML_ERR_NO_MEMORY);
271
272
71.0k
    res = xmlHashAdd(table, name, ret);
273
71.0k
    if (res < 0) {
274
5
        xmlFreeEntity(ret);
275
5
        return(XML_ERR_NO_MEMORY);
276
71.0k
    } else if (res == 0) {
277
  /*
278
   * entity was already defined at another level.
279
   */
280
14.0k
        xmlFreeEntity(ret);
281
14.0k
  return(XML_WAR_ENTITY_REDEFINED);
282
14.0k
    }
283
284
    /*
285
     * Link it to the DTD
286
     */
287
57.0k
    ret->parent = dtd;
288
57.0k
    ret->doc = dtd->doc;
289
57.0k
    if (dtd->last == NULL) {
290
22.3k
  dtd->children = dtd->last = (xmlNodePtr) ret;
291
34.7k
    } else {
292
34.7k
  dtd->last->next = (xmlNodePtr) ret;
293
34.7k
  ret->prev = dtd->last;
294
34.7k
  dtd->last = (xmlNodePtr) ret;
295
34.7k
    }
296
297
57.0k
    if (out != NULL)
298
57.0k
        *out = ret;
299
57.0k
    return(0);
300
71.0k
}
301
302
/**
303
 * xmlGetPredefinedEntity:
304
 * @name:  the entity name
305
 *
306
 * Check whether this name is an predefined entity.
307
 *
308
 * Returns NULL if not, otherwise the entity
309
 */
310
xmlEntityPtr
311
1.28M
xmlGetPredefinedEntity(const xmlChar *name) {
312
1.28M
    if (name == NULL) return(NULL);
313
1.28M
    switch (name[0]) {
314
12.9k
        case 'l':
315
12.9k
      if (xmlStrEqual(name, BAD_CAST "lt"))
316
7.57k
          return(&xmlEntityLt);
317
5.37k
      break;
318
34.3k
        case 'g':
319
34.3k
      if (xmlStrEqual(name, BAD_CAST "gt"))
320
28.7k
          return(&xmlEntityGt);
321
5.63k
      break;
322
522k
        case 'a':
323
522k
      if (xmlStrEqual(name, BAD_CAST "amp"))
324
51.1k
          return(&xmlEntityAmp);
325
470k
      if (xmlStrEqual(name, BAD_CAST "apos"))
326
2.59k
          return(&xmlEntityApos);
327
468k
      break;
328
468k
        case 'q':
329
236k
      if (xmlStrEqual(name, BAD_CAST "quot"))
330
5.28k
          return(&xmlEntityQuot);
331
231k
      break;
332
481k
  default:
333
481k
      break;
334
1.28M
    }
335
1.19M
    return(NULL);
336
1.28M
}
337
338
/**
339
 * xmlAddDtdEntity:
340
 * @doc:  the document
341
 * @name:  the entity name
342
 * @type:  the entity type XML_xxx_yyy_ENTITY
343
 * @ExternalID:  the entity external ID if available
344
 * @SystemID:  the entity system ID if available
345
 * @content:  the entity content
346
 *
347
 * Register a new entity for this document DTD external subset.
348
 *
349
 * Returns a pointer to the entity or NULL in case of error
350
 */
351
xmlEntityPtr
352
xmlAddDtdEntity(xmlDocPtr doc, const xmlChar *name, int type,
353
          const xmlChar *ExternalID, const xmlChar *SystemID,
354
0
    const xmlChar *content) {
355
0
    xmlEntityPtr ret;
356
357
0
    xmlAddEntity(doc, 1, name, type, ExternalID, SystemID, content, &ret);
358
0
    return(ret);
359
0
}
360
361
/**
362
 * xmlAddDocEntity:
363
 * @doc:  the document
364
 * @name:  the entity name
365
 * @type:  the entity type XML_xxx_yyy_ENTITY
366
 * @ExternalID:  the entity external ID if available
367
 * @SystemID:  the entity system ID if available
368
 * @content:  the entity content
369
 *
370
 * Register a new entity for this document.
371
 *
372
 * Returns a pointer to the entity or NULL in case of error
373
 */
374
xmlEntityPtr
375
xmlAddDocEntity(xmlDocPtr doc, const xmlChar *name, int type,
376
          const xmlChar *ExternalID, const xmlChar *SystemID,
377
0
          const xmlChar *content) {
378
0
    xmlEntityPtr ret;
379
380
0
    xmlAddEntity(doc, 0, name, type, ExternalID, SystemID, content, &ret);
381
0
    return(ret);
382
0
}
383
384
/**
385
 * xmlNewEntity:
386
 * @doc:  the document
387
 * @name:  the entity name
388
 * @type:  the entity type XML_xxx_yyy_ENTITY
389
 * @ExternalID:  the entity external ID if available
390
 * @SystemID:  the entity system ID if available
391
 * @content:  the entity content
392
 *
393
 * Create a new entity, this differs from xmlAddDocEntity() that if
394
 * the document is NULL or has no internal subset defined, then an
395
 * unlinked entity structure will be returned, it is then the responsibility
396
 * of the caller to link it to the document later or free it when not needed
397
 * anymore.
398
 *
399
 * Returns a pointer to the entity or NULL in case of error
400
 */
401
xmlEntityPtr
402
xmlNewEntity(xmlDocPtr doc, const xmlChar *name, int type,
403
       const xmlChar *ExternalID, const xmlChar *SystemID,
404
0
       const xmlChar *content) {
405
0
    if ((doc != NULL) && (doc->intSubset != NULL)) {
406
0
  return(xmlAddDocEntity(doc, name, type, ExternalID, SystemID, content));
407
0
    }
408
0
    if (name == NULL)
409
0
        return(NULL);
410
0
    return(xmlCreateEntity(doc, name, type, ExternalID, SystemID, content));
411
0
}
412
413
/**
414
 * xmlGetEntityFromTable:
415
 * @table:  an entity table
416
 * @name:  the entity name
417
 * @parameter:  look for parameter entities
418
 *
419
 * Do an entity lookup in the table.
420
 * returns the corresponding parameter entity, if found.
421
 *
422
 * Returns A pointer to the entity structure or NULL if not found.
423
 */
424
static xmlEntityPtr
425
684k
xmlGetEntityFromTable(xmlEntitiesTablePtr table, const xmlChar *name) {
426
684k
    return((xmlEntityPtr) xmlHashLookup(table, name));
427
684k
}
428
429
/**
430
 * xmlGetParameterEntity:
431
 * @doc:  the document referencing the entity
432
 * @name:  the entity name
433
 *
434
 * Do an entity lookup in the internal and external subsets and
435
 * returns the corresponding parameter entity, if found.
436
 *
437
 * Returns A pointer to the entity structure or NULL if not found.
438
 */
439
xmlEntityPtr
440
89.3k
xmlGetParameterEntity(xmlDocPtr doc, const xmlChar *name) {
441
89.3k
    xmlEntitiesTablePtr table;
442
89.3k
    xmlEntityPtr ret;
443
444
89.3k
    if (doc == NULL)
445
72
  return(NULL);
446
89.3k
    if ((doc->intSubset != NULL) && (doc->intSubset->pentities != NULL)) {
447
85.2k
  table = (xmlEntitiesTablePtr) doc->intSubset->pentities;
448
85.2k
  ret = xmlGetEntityFromTable(table, name);
449
85.2k
  if (ret != NULL)
450
69.9k
      return(ret);
451
85.2k
    }
452
19.3k
    if ((doc->extSubset != NULL) && (doc->extSubset->pentities != NULL)) {
453
5.32k
  table = (xmlEntitiesTablePtr) doc->extSubset->pentities;
454
5.32k
  return(xmlGetEntityFromTable(table, name));
455
5.32k
    }
456
14.0k
    return(NULL);
457
19.3k
}
458
459
/**
460
 * xmlGetDtdEntity:
461
 * @doc:  the document referencing the entity
462
 * @name:  the entity name
463
 *
464
 * Do an entity lookup in the DTD entity hash table and
465
 * returns the corresponding entity, if found.
466
 * Note: the first argument is the document node, not the DTD node.
467
 *
468
 * Returns A pointer to the entity structure or NULL if not found.
469
 */
470
xmlEntityPtr
471
0
xmlGetDtdEntity(xmlDocPtr doc, const xmlChar *name) {
472
0
    xmlEntitiesTablePtr table;
473
474
0
    if (doc == NULL)
475
0
  return(NULL);
476
0
    if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) {
477
0
  table = (xmlEntitiesTablePtr) doc->extSubset->entities;
478
0
  return(xmlGetEntityFromTable(table, name));
479
0
    }
480
0
    return(NULL);
481
0
}
482
483
/**
484
 * xmlGetDocEntity:
485
 * @doc:  the document referencing the entity
486
 * @name:  the entity name
487
 *
488
 * Do an entity lookup in the document entity hash table and
489
 * returns the corresponding entity, otherwise a lookup is done
490
 * in the predefined entities too.
491
 *
492
 * Returns A pointer to the entity structure or NULL if not found.
493
 */
494
xmlEntityPtr
495
607k
xmlGetDocEntity(const xmlDoc *doc, const xmlChar *name) {
496
607k
    xmlEntityPtr cur;
497
607k
    xmlEntitiesTablePtr table;
498
499
607k
    if (doc != NULL) {
500
605k
  if ((doc->intSubset != NULL) && (doc->intSubset->entities != NULL)) {
501
551k
      table = (xmlEntitiesTablePtr) doc->intSubset->entities;
502
551k
      cur = xmlGetEntityFromTable(table, name);
503
551k
      if (cur != NULL)
504
488k
    return(cur);
505
551k
  }
506
117k
  if (doc->standalone != 1) {
507
116k
      if ((doc->extSubset != NULL) &&
508
42.4k
    (doc->extSubset->entities != NULL)) {
509
42.0k
    table = (xmlEntitiesTablePtr) doc->extSubset->entities;
510
42.0k
    cur = xmlGetEntityFromTable(table, name);
511
42.0k
    if (cur != NULL)
512
296
        return(cur);
513
42.0k
      }
514
116k
  }
515
117k
    }
516
118k
    return(xmlGetPredefinedEntity(name));
517
607k
}
518
519
/*
520
 * xmlSerializeHexCharRef:
521
 * @buf:  a char buffer
522
 * @val:  a codepoint
523
 *
524
 * Serializes a hex char ref like &#xA0;
525
 *
526
 * Writes at most 9 bytes. Does not include a terminating zero byte.
527
 *
528
 * Returns the number of bytes written.
529
 */
530
int
531
1.35k
xmlSerializeHexCharRef(char *buf, int val) {
532
1.35k
    char *out = buf;
533
1.35k
    int shift = 0, bits;
534
535
1.35k
    *out++ = '&';
536
1.35k
    *out++ = '#';
537
1.35k
    *out++ = 'x';
538
539
1.35k
    bits = val;
540
1.35k
    if (bits & 0xFF0000) {
541
132
        shift = 16;
542
132
        bits &= 0xFF0000;
543
1.22k
    } else if (bits & 0x00FF00) {
544
484
        shift = 8;
545
484
        bits &= 0x00FF00;
546
484
    }
547
1.35k
    if (bits & 0xF0F0F0) {
548
817
        shift += 4;
549
817
    }
550
551
3.66k
    do {
552
3.66k
        int d = (val >> shift) & 0x0F;
553
554
3.66k
        if (d < 10)
555
2.46k
            *out++ = '0' + d;
556
1.20k
        else
557
1.20k
            *out++ = 'A' + (d - 10);
558
559
3.66k
  shift -= 4;
560
3.66k
    } while (shift >= 0);
561
562
1.35k
    *out++ = ';';
563
564
1.35k
    return(out - buf);
565
1.35k
}
566
567
/*
568
 * xmlSerializeDecCharRef:
569
 * @buf:  a char buffer
570
 * @val:  a codepoint
571
 *
572
 * Serializes a decimal char ref like &#38;
573
 *
574
 * Writes at most 10 bytes. Does not include a terminating zero byte.
575
 *
576
 * Returns the number of bytes written.
577
 */
578
int
579
48.5M
xmlSerializeDecCharRef(char *buf, int val) {
580
48.5M
    char *out = buf;
581
48.5M
    int len, i;
582
583
48.5M
    *out++ = '&';
584
48.5M
    *out++ = '#';
585
586
48.5M
    if (val < 100) {
587
373
        len = (val < 10) ? 1 : 2;
588
48.5M
    } else if (val < 10000) {
589
48.5M
        len = (val < 1000) ? 3 : 4;
590
48.5M
    } else if (val < 1000000) {
591
1.74k
        len = (val < 100000) ? 5 : 6;
592
1.74k
    } else {
593
1.22k
        len = 7;
594
1.22k
    }
595
596
201M
    for (i = len - 1; i >= 0; i--) {
597
152M
        out[i] = '0' + val % 10;
598
152M
        val /= 10;
599
152M
    }
600
601
48.5M
    out[len] = ';';
602
603
48.5M
    return(len + 3);
604
48.5M
}
605
606
static const char xmlEscapeSafe[128] = {
607
    0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0,
608
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
609
    1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
610
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1,
611
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
612
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
613
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
614
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
615
};
616
617
/*
618
 * xmlEscapeText:
619
 * @text:  input text
620
 * @flags:  XML_ESCAPE flags
621
 *
622
 * Escapes certain characters with char refs.
623
 *
624
 * XML_ESCAPE_ATTR: for attribute content.
625
 * XML_ESCAPE_NON_ASCII: escape non-ASCII chars.
626
 * XML_ESCAPE_HTML: for HTML content.
627
 * XML_ESCAPE_QUOT: escape double quotes.
628
 * XML_ESCAPE_ALLOW_INVALID: allow invalid characters.
629
 *
630
 * Returns an escaped string or NULL if a memory allocation failed.
631
 */
632
xmlChar *
633
19.2k
xmlEscapeText(const xmlChar *text, int flags) {
634
19.2k
    const xmlChar *cur;
635
19.2k
    xmlChar *buffer;
636
19.2k
    xmlChar *out;
637
19.2k
    const xmlChar *unescaped;
638
19.2k
    size_t size = 50;
639
640
19.2k
    buffer = xmlMalloc(size + 1);
641
19.2k
    if (buffer == NULL)
642
63
        return(NULL);
643
19.1k
    out = buffer;
644
645
19.1k
    cur = text;
646
19.1k
    unescaped = cur;
647
648
573k
    while (*cur != '\0') {
649
554k
        char buf[12];
650
554k
  const xmlChar *end;
651
554k
        const xmlChar *repl;
652
554k
        size_t used;
653
554k
        size_t replSize;
654
554k
        size_t unescapedSize;
655
554k
        size_t totalSize;
656
554k
        int chunkSize = 1;
657
554k
        int c;
658
659
        /* accelerator */
660
171M
  while (1) {
661
171M
            c = *cur;
662
663
171M
            if (c < 0x80) {
664
99.6M
                if (!xmlEscapeSafe[*cur])
665
554k
                    break;
666
99.6M
            } else {
667
72.1M
               if (flags & XML_ESCAPE_NON_ASCII)
668
0
                   break;
669
72.1M
            }
670
171M
            cur += 1;
671
171M
        }
672
673
554k
        if (c == 0) {
674
17.0k
            chunkSize = 0;
675
17.0k
            repl = BAD_CAST "";
676
17.0k
            replSize = 0;
677
537k
        } else if (c == '<') {
678
      /*
679
       * Special handling of server side include in HTML attributes
680
       */
681
284k
      if ((flags & XML_ESCAPE_HTML) && (flags & XML_ESCAPE_ATTR) &&
682
284k
          (cur[1] == '!') && (cur[2] == '-') && (cur[3] == '-') &&
683
1.57k
          ((end = xmlStrstr(cur, BAD_CAST "-->")) != NULL)) {
684
1.44k
                chunkSize = (end - cur) + 3;
685
1.44k
                repl = cur;
686
1.44k
                replSize = chunkSize;
687
283k
      } else {
688
283k
                repl = BAD_CAST "&lt;";
689
283k
                replSize = 4;
690
283k
            }
691
284k
  } else if (c == '>') {
692
192k
            repl = BAD_CAST "&gt;";
693
192k
            replSize = 4;
694
192k
  } else if (c == '&') {
695
      /*
696
       * Special handling of &{...} construct from HTML 4, see
697
       * http://www.w3.org/TR/html401/appendix/notes.html#h-B.7.1
698
       */
699
14.0k
      if ((flags & XML_ESCAPE_HTML) && (flags & XML_ESCAPE_ATTR) &&
700
12.3k
                (cur[1] == '{') && (end = xmlStrchr(cur, '}'))) {
701
1.37k
                chunkSize = (end - cur) + 1;
702
1.37k
                repl = cur;
703
1.37k
                replSize = chunkSize;
704
12.6k
      } else {
705
12.6k
                repl = BAD_CAST "&amp;";
706
12.6k
                replSize = 5;
707
12.6k
            }
708
45.8k
  } else if ((flags & XML_ESCAPE_QUOT) && (c == '"')) {
709
0
            repl = BAD_CAST "&quot;";
710
0
            replSize = 6;
711
45.8k
  } else if (((flags & XML_ESCAPE_HTML) == 0) && (c == '\r')) {
712
0
      repl = BAD_CAST "&#13;";
713
0
            replSize = 5;
714
45.8k
  } else if ((flags & XML_ESCAPE_NON_ASCII) && (c >= 0x80)) {
715
0
            int val;
716
717
0
            chunkSize = 4;
718
0
            val = xmlGetUTF8Char(cur, &chunkSize);
719
0
            if (val < 0) {
720
0
                val = 0xFFFD;
721
0
                chunkSize = 1;
722
0
            } else if (((flags & XML_ESCAPE_ALLOW_INVALID) == 0) &&
723
0
                       (!IS_CHAR(val))) {
724
0
                val = 0xFFFD;
725
0
            }
726
727
0
            replSize = xmlSerializeHexCharRef(buf, val);
728
0
            repl = BAD_CAST buf;
729
45.8k
  } else if ((flags & (XML_ESCAPE_ALLOW_INVALID | XML_ESCAPE_HTML)) ||
730
0
                   (c >= 0x20) ||
731
45.8k
             (c == '\n') || (c == '\t') || (c == '\r')) {
732
      /* default case, just copy */
733
45.8k
            cur += 1;
734
45.8k
            if (*cur != 0)
735
44.9k
                continue;
736
737
977
            chunkSize = 0;
738
977
            repl = BAD_CAST "";
739
977
            replSize = 0;
740
977
  } else {
741
            /* ignore */
742
0
            repl = BAD_CAST "";
743
0
            replSize = 0;
744
0
        }
745
746
509k
        used = out - buffer;
747
509k
        unescapedSize = cur - unescaped;
748
509k
        totalSize = unescapedSize + replSize;
749
750
509k
  cur += chunkSize;
751
752
509k
        if (totalSize > size - used) {
753
7.41k
            xmlChar *tmp;
754
7.41k
            int newSize;
755
756
7.41k
            if ((size > (SIZE_MAX - 1) / 2) ||
757
7.41k
                (totalSize > (SIZE_MAX - 1) / 2 - size)) {
758
0
                xmlFree(buffer);
759
0
                return(NULL);
760
0
            }
761
7.41k
            newSize = size + totalSize;
762
7.41k
            if (*cur != 0)
763
5.06k
                newSize *= 2;
764
7.41k
            tmp = xmlRealloc(buffer, newSize + 1);
765
7.41k
            if (tmp == NULL) {
766
4
                xmlFree(buffer);
767
4
                return(NULL);
768
4
            }
769
7.41k
            buffer = tmp;
770
7.41k
            size = newSize;
771
7.41k
            out = buffer + used;
772
7.41k
        }
773
774
509k
        memcpy(out, unescaped, unescapedSize);
775
509k
        out += unescapedSize;
776
509k
        memcpy(out, repl, replSize);
777
509k
        out += replSize;
778
779
509k
        unescaped = cur;
780
509k
    }
781
782
19.1k
    *out = 0;
783
19.1k
    return(buffer);
784
19.1k
}
785
786
/**
787
 * xmlEncodeEntitiesInternal:
788
 * @doc:  the document containing the string
789
 * @input:  A string to convert to XML.
790
 * @flags:  XML_ESCAPE flags
791
 *
792
 * Do a global encoding of a string, replacing the predefined entities
793
 * and non ASCII values with their entities and CharRef counterparts.
794
 * Contrary to xmlEncodeEntities, this routine is reentrant, and result
795
 * must be deallocated.
796
 *
797
 * Returns A newly allocated string with the substitution done.
798
 */
799
xmlChar *
800
xmlEncodeEntitiesInternal(xmlDocPtr doc, const xmlChar *input,
801
19.2k
                          unsigned flags) {
802
19.2k
    if (input == NULL)
803
0
        return(NULL);
804
805
19.2k
    if ((doc != NULL) && (doc->type == XML_HTML_DOCUMENT_NODE))
806
19.2k
        flags |= XML_ESCAPE_HTML;
807
0
    else if ((doc == NULL) || (doc->encoding == NULL))
808
0
        flags |= XML_ESCAPE_NON_ASCII;
809
810
19.2k
    return(xmlEscapeText(input, flags));
811
19.2k
}
812
813
/**
814
 * xmlEncodeEntitiesReentrant:
815
 * @doc:  the document containing the string
816
 * @input:  A string to convert to XML.
817
 *
818
 * Do a global encoding of a string, replacing the predefined entities
819
 * and non ASCII values with their entities and CharRef counterparts.
820
 * Contrary to xmlEncodeEntities, this routine is reentrant, and result
821
 * must be deallocated.
822
 *
823
 * This escapes '<', '>', '&' and '\r'. If the document has no encoding,
824
 * non-ASCII codepoints are escaped. There is some special handling for
825
 * HTML documents.
826
 *
827
 * Returns A newly allocated string with the substitution done.
828
 */
829
xmlChar *
830
11.5k
xmlEncodeEntitiesReentrant(xmlDocPtr doc, const xmlChar *input) {
831
11.5k
    return xmlEncodeEntitiesInternal(doc, input, 0);
832
11.5k
}
833
834
/**
835
 * xmlEncodeSpecialChars:
836
 * @doc:  unused
837
 * @input:  A string to convert to XML.
838
 *
839
 * Do a global encoding of a string, replacing the predefined entities
840
 * this routine is reentrant, and result must be deallocated.
841
 *
842
 * This escapes '<', '>', '&', '"' and '\r' chars.
843
 *
844
 * Returns A newly allocated string with the substitution done.
845
 */
846
xmlChar *
847
xmlEncodeSpecialChars(const xmlDoc *doc ATTRIBUTE_UNUSED,
848
0
                      const xmlChar *input) {
849
0
    if (input == NULL)
850
0
        return(NULL);
851
852
0
    return(xmlEscapeText(input, XML_ESCAPE_QUOT | XML_ESCAPE_ALLOW_INVALID));
853
0
}
854
855
/**
856
 * xmlCreateEntitiesTable:
857
 *
858
 * create and initialize an empty entities hash table.
859
 * This really doesn't make sense and should be deprecated
860
 *
861
 * Returns the xmlEntitiesTablePtr just created or NULL in case of error.
862
 */
863
xmlEntitiesTablePtr
864
0
xmlCreateEntitiesTable(void) {
865
0
    return((xmlEntitiesTablePtr) xmlHashCreate(0));
866
0
}
867
868
/**
869
 * xmlFreeEntityWrapper:
870
 * @entity:  An entity
871
 * @name:  its name
872
 *
873
 * Deallocate the memory used by an entities in the hash table.
874
 */
875
static void
876
77.9k
xmlFreeEntityWrapper(void *entity, const xmlChar *name ATTRIBUTE_UNUSED) {
877
77.9k
    if (entity != NULL)
878
77.9k
  xmlFreeEntity((xmlEntityPtr) entity);
879
77.9k
}
880
881
/**
882
 * xmlFreeEntitiesTable:
883
 * @table:  An entity table
884
 *
885
 * Deallocate the memory used by an entities hash table.
886
 */
887
void
888
39.2k
xmlFreeEntitiesTable(xmlEntitiesTablePtr table) {
889
39.2k
    xmlHashFree(table, xmlFreeEntityWrapper);
890
39.2k
}
891
892
/**
893
 * xmlCopyEntity:
894
 * @ent:  An entity
895
 *
896
 * Build a copy of an entity
897
 *
898
 * Returns the new xmlEntitiesPtr or NULL in case of error.
899
 */
900
static void *
901
20.8k
xmlCopyEntity(void *payload, const xmlChar *name ATTRIBUTE_UNUSED) {
902
20.8k
    xmlEntityPtr ent = (xmlEntityPtr) payload;
903
20.8k
    xmlEntityPtr cur;
904
905
20.8k
    cur = (xmlEntityPtr) xmlMalloc(sizeof(xmlEntity));
906
20.8k
    if (cur == NULL)
907
6
  return(NULL);
908
20.8k
    memset(cur, 0, sizeof(xmlEntity));
909
20.8k
    cur->type = XML_ENTITY_DECL;
910
911
20.8k
    cur->etype = ent->etype;
912
20.8k
    if (ent->name != NULL) {
913
20.8k
  cur->name = xmlStrdup(ent->name);
914
20.8k
        if (cur->name == NULL)
915
2
            goto error;
916
20.8k
    }
917
20.8k
    if (ent->ExternalID != NULL) {
918
0
  cur->ExternalID = xmlStrdup(ent->ExternalID);
919
0
        if (cur->ExternalID == NULL)
920
0
            goto error;
921
0
    }
922
20.8k
    if (ent->SystemID != NULL) {
923
2.85k
  cur->SystemID = xmlStrdup(ent->SystemID);
924
2.85k
        if (cur->SystemID == NULL)
925
1
            goto error;
926
2.85k
    }
927
20.8k
    if (ent->content != NULL) {
928
18.0k
  cur->content = xmlStrdup(ent->content);
929
18.0k
        if (cur->content == NULL)
930
3
            goto error;
931
18.0k
    }
932
20.8k
    if (ent->orig != NULL) {
933
17.9k
  cur->orig = xmlStrdup(ent->orig);
934
17.9k
        if (cur->orig == NULL)
935
2
            goto error;
936
17.9k
    }
937
20.8k
    if (ent->URI != NULL) {
938
1.61k
  cur->URI = xmlStrdup(ent->URI);
939
1.61k
        if (cur->URI == NULL)
940
1
            goto error;
941
1.61k
    }
942
20.8k
    return(cur);
943
944
9
error:
945
9
    xmlFreeEntity(cur);
946
9
    return(NULL);
947
20.8k
}
948
949
/**
950
 * xmlCopyEntitiesTable:
951
 * @table:  An entity table
952
 *
953
 * Build a copy of an entity table.
954
 *
955
 * Returns the new xmlEntitiesTablePtr or NULL in case of error.
956
 */
957
xmlEntitiesTablePtr
958
8.01k
xmlCopyEntitiesTable(xmlEntitiesTablePtr table) {
959
8.01k
    return(xmlHashCopySafe(table, xmlCopyEntity, xmlFreeEntityWrapper));
960
8.01k
}
961
962
#ifdef LIBXML_OUTPUT_ENABLED
963
964
/**
965
 * xmlDumpEntityDecl:
966
 * @buf:  An XML buffer.
967
 * @ent:  An entity table
968
 *
969
 * This will dump the content of the entity table as an XML DTD definition
970
 */
971
void
972
0
xmlDumpEntityDecl(xmlBufferPtr buf, xmlEntityPtr ent) {
973
0
    xmlSaveCtxtPtr save;
974
975
0
    if ((buf == NULL) || (ent == NULL))
976
0
        return;
977
978
0
    save = xmlSaveToBuffer(buf, NULL, 0);
979
0
    xmlSaveTree(save, (xmlNodePtr) ent);
980
0
    if (xmlSaveFinish(save) != XML_ERR_OK)
981
0
        xmlFree(xmlBufferDetach(buf));
982
0
}
983
984
/**
985
 * xmlDumpEntityDeclScan:
986
 * @ent:  An entity table
987
 * @buf:  An XML buffer.
988
 *
989
 * When using the hash table scan function, arguments need to be reversed
990
 */
991
static void
992
xmlDumpEntityDeclScan(void *ent, void *save,
993
0
                      const xmlChar *name ATTRIBUTE_UNUSED) {
994
0
    xmlSaveTree(save, ent);
995
0
}
996
997
/**
998
 * xmlDumpEntitiesTable:
999
 * @buf:  An XML buffer.
1000
 * @table:  An entity table
1001
 *
1002
 * This will dump the content of the entity table as an XML DTD definition
1003
 */
1004
void
1005
0
xmlDumpEntitiesTable(xmlBufferPtr buf, xmlEntitiesTablePtr table) {
1006
0
    xmlSaveCtxtPtr save;
1007
1008
0
    if ((buf == NULL) || (table == NULL))
1009
0
        return;
1010
1011
0
    save = xmlSaveToBuffer(buf, NULL, 0);
1012
0
    xmlHashScan(table, xmlDumpEntityDeclScan, save);
1013
0
    if (xmlSaveFinish(save) != XML_ERR_OK)
1014
0
        xmlFree(xmlBufferDetach(buf));
1015
0
}
1016
#endif /* LIBXML_OUTPUT_ENABLED */