Hash :
217e9b7a
Author :
Date :
2024-06-08T12:27:45
clang-tidy: don't return in void functions Found with readability-redundant-control-flow Signed-off-by: Rosen Penev <rosenp@gmail.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321
/*
* testlimits.c: C program to run libxml2 regression tests checking various
* limits in document size. Will consume a lot of RAM and CPU cycles
*
* To compile on Unixes:
* cc -o testlimits `xml2-config --cflags` testlimits.c `xml2-config --libs` -lpthread
*
* See Copyright for the status of this software.
*
* daniel@veillard.com
*/
#include "libxml.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <time.h>
#include <libxml/catalog.h>
#include <libxml/parser.h>
#include <libxml/parserInternals.h>
#include <libxml/tree.h>
#include <libxml/uri.h>
#ifdef LIBXML_READER_ENABLED
#include <libxml/xmlreader.h>
#endif
static int verbose = 0;
static int tests_quiet = 0;
/************************************************************************
* *
* time handling *
* *
************************************************************************/
/* maximum time for one parsing before declaring a timeout */
#define MAX_TIME 2 /* seconds */
static clock_t t0;
int timeout = 0;
static void reset_timout(void) {
timeout = 0;
t0 = clock();
}
static int check_time(void) {
clock_t tnow = clock();
if (((tnow - t0) / CLOCKS_PER_SEC) > MAX_TIME) {
timeout = 1;
return(0);
}
return(1);
}
/************************************************************************
* *
* Huge document generator *
* *
************************************************************************/
#include <libxml/xmlIO.h>
/*
* Huge documents are built using fixed start and end chunks
* and filling between the two an unconventional amount of char data
*/
typedef struct hugeTest hugeTest;
typedef hugeTest *hugeTestPtr;
struct hugeTest {
const char *description;
const char *name;
const char *start;
const char *end;
};
static struct hugeTest hugeTests[] = {
{ "Huge text node", "huge:textNode", "<foo>", "</foo>" },
{ "Huge attribute node", "huge:attrNode", "<foo bar='", "'/>" },
{ "Huge comment node", "huge:commentNode", "<foo><!--", "--></foo>" },
{ "Huge PI node", "huge:piNode", "<foo><?bar ", "?></foo>" },
};
static const char *current;
static int rlen;
static unsigned int currentTest = 0;
static int instate = 0;
/**
* hugeMatch:
* @URI: an URI to test
*
* Check for an huge: query
*
* Returns 1 if yes and 0 if another Input module should be used
*/
static int
hugeMatch(const char * URI) {
if ((URI != NULL) && (!strncmp(URI, "huge:", 5)))
return(1);
return(0);
}
/**
* hugeOpen:
* @URI: an URI to test
*
* Return a pointer to the huge: query handler, in this example simply
* the current pointer...
*
* Returns an Input context or NULL in case or error
*/
static void *
hugeOpen(const char * URI) {
if ((URI == NULL) || (strncmp(URI, "huge:", 5)))
return(NULL);
for (currentTest = 0;currentTest < sizeof(hugeTests)/sizeof(hugeTests[0]);
currentTest++)
if (!strcmp(hugeTests[currentTest].name, URI))
goto found;
return(NULL);
found:
rlen = strlen(hugeTests[currentTest].start);
current = hugeTests[currentTest].start;
instate = 0;
return((void *) current);
}
/**
* hugeClose:
* @context: the read context
*
* Close the huge: query handler
*
* Returns 0 or -1 in case of error
*/
static int
hugeClose(void * context) {
if (context == NULL) return(-1);
fprintf(stderr, "\n");
return(0);
}
#define CHUNK 4096
char filling[CHUNK + 1];
static void fillFilling(void) {
int i;
for (i = 0;i < CHUNK;i++) {
filling[i] = 'a';
}
filling[CHUNK] = 0;
}
size_t maxlen = 64 * 1024 * 1024;
size_t curlen = 0;
size_t dotlen;
/**
* hugeRead:
* @context: the read context
* @buffer: where to store data
* @len: number of bytes to read
*
* Implement an huge: query read.
*
* Returns the number of bytes read or -1 in case of error
*/
static int
hugeRead(void *context, char *buffer, int len)
{
if ((context == NULL) || (buffer == NULL) || (len < 0))
return (-1);
if (instate == 0) {
if (len >= rlen) {
len = rlen;
rlen = 0;
memcpy(buffer, current, len);
instate = 1;
curlen = 0;
dotlen = maxlen / 10;
} else {
memcpy(buffer, current, len);
rlen -= len;
current += len;
}
} else if (instate == 2) {
if (len >= rlen) {
len = rlen;
rlen = 0;
memcpy(buffer, current, len);
instate = 3;
curlen = 0;
} else {
memcpy(buffer, current, len);
rlen -= len;
current += len;
}
} else if (instate == 1) {
if (len > CHUNK) len = CHUNK;
memcpy(buffer, &filling[0], len);
curlen += len;
if (curlen >= maxlen) {
rlen = strlen(hugeTests[currentTest].end);
current = hugeTests[currentTest].end;
instate = 2;
} else {
if (curlen > dotlen) {
fprintf(stderr, ".");
dotlen += maxlen / 10;
}
}
} else
len = 0;
return (len);
}
/************************************************************************
* *
* Crazy document generator *
* *
************************************************************************/
unsigned int crazy_indx = 0;
const char *crazy = "<?xml version='1.0' encoding='UTF-8'?>\
<?tst ?>\
<!-- tst -->\
<!DOCTYPE foo [\
<?tst ?>\
<!-- tst -->\
<!ELEMENT foo (#PCDATA)>\
<!ELEMENT p (#PCDATA|emph)* >\
]>\
<?tst ?>\
<!-- tst -->\
<foo bar='foo'>\
<?tst ?>\
<!-- tst -->\
foo\
<![CDATA[ ]]>\
</foo>\
<?tst ?>\
<!-- tst -->";
/**
* crazyMatch:
* @URI: an URI to test
*
* Check for a crazy: query
*
* Returns 1 if yes and 0 if another Input module should be used
*/
static int
crazyMatch(const char * URI) {
if ((URI != NULL) && (!strncmp(URI, "crazy:", 6)))
return(1);
return(0);
}
/**
* crazyOpen:
* @URI: an URI to test
*
* Return a pointer to the crazy: query handler, in this example simply
* the current pointer...
*
* Returns an Input context or NULL in case or error
*/
static void *
crazyOpen(const char * URI) {
if ((URI == NULL) || (strncmp(URI, "crazy:", 6)))
return(NULL);
if (crazy_indx > strlen(crazy))
return(NULL);
reset_timout();
rlen = crazy_indx;
current = &crazy[0];
instate = 0;
return((void *) current);
}
/**
* crazyClose:
* @context: the read context
*
* Close the crazy: query handler
*
* Returns 0 or -1 in case of error
*/
static int
crazyClose(void * context) {
if (context == NULL) return(-1);
return(0);
}
/**
* crazyRead:
* @context: the read context
* @buffer: where to store data
* @len: number of bytes to read
*
* Implement an crazy: query read.
*
* Returns the number of bytes read or -1 in case of error
*/
static int
crazyRead(void *context, char *buffer, int len)
{
if ((context == NULL) || (buffer == NULL) || (len < 0))
return (-1);
if ((check_time() <= 0) && (instate == 1)) {
fprintf(stderr, "\ntimeout in crazy(%d)\n", crazy_indx);
rlen = strlen(crazy) - crazy_indx;
current = &crazy[crazy_indx];
instate = 2;
}
if (instate == 0) {
if (len >= rlen) {
len = rlen;
rlen = 0;
memcpy(buffer, current, len);
instate = 1;
curlen = 0;
} else {
memcpy(buffer, current, len);
rlen -= len;
current += len;
}
} else if (instate == 2) {
if (len >= rlen) {
len = rlen;
rlen = 0;
memcpy(buffer, current, len);
instate = 3;
curlen = 0;
} else {
memcpy(buffer, current, len);
rlen -= len;
current += len;
}
} else if (instate == 1) {
if (len > CHUNK) len = CHUNK;
memcpy(buffer, &filling[0], len);
curlen += len;
if (curlen >= maxlen) {
rlen = strlen(crazy) - crazy_indx;
current = &crazy[crazy_indx];
instate = 2;
}
} else
len = 0;
return (len);
}
/************************************************************************
* *
* Libxml2 specific routines *
* *
************************************************************************/
static int nb_tests = 0;
static int nb_errors = 0;
static int nb_leaks = 0;
static void
initializeLibxml2(void) {
xmlMemSetup(xmlMemFree, xmlMemMalloc, xmlMemRealloc, xmlMemoryStrdup);
xmlInitParser();
#ifdef LIBXML_CATALOG_ENABLED
xmlInitializeCatalog();
xmlCatalogSetDefaults(XML_CATA_ALLOW_NONE);
#endif
/*
* register the new I/O handlers
*/
if (xmlRegisterInputCallbacks(hugeMatch, hugeOpen,
hugeRead, hugeClose) < 0) {
fprintf(stderr, "failed to register Huge handlers\n");
exit(1);
}
if (xmlRegisterInputCallbacks(crazyMatch, crazyOpen,
crazyRead, crazyClose) < 0) {
fprintf(stderr, "failed to register Crazy handlers\n");
exit(1);
}
}
/************************************************************************
* *
* SAX empty callbacks *
* *
************************************************************************/
unsigned long callbacks = 0;
/**
* isStandaloneCallback:
* @ctxt: An XML parser context
*
* Is this document tagged standalone ?
*
* Returns 1 if true
*/
static int
isStandaloneCallback(void *ctx ATTRIBUTE_UNUSED)
{
callbacks++;
return (0);
}
/**
* hasInternalSubsetCallback:
* @ctxt: An XML parser context
*
* Does this document has an internal subset
*
* Returns 1 if true
*/
static int
hasInternalSubsetCallback(void *ctx ATTRIBUTE_UNUSED)
{
callbacks++;
return (0);
}
/**
* hasExternalSubsetCallback:
* @ctxt: An XML parser context
*
* Does this document has an external subset
*
* Returns 1 if true
*/
static int
hasExternalSubsetCallback(void *ctx ATTRIBUTE_UNUSED)
{
callbacks++;
return (0);
}
/**
* internalSubsetCallback:
* @ctxt: An XML parser context
*
* Does this document has an internal subset
*/
static void
internalSubsetCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED,
const xmlChar * ExternalID ATTRIBUTE_UNUSED,
const xmlChar * SystemID ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* externalSubsetCallback:
* @ctxt: An XML parser context
*
* Does this document has an external subset
*/
static void
externalSubsetCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED,
const xmlChar * ExternalID ATTRIBUTE_UNUSED,
const xmlChar * SystemID ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* resolveEntityCallback:
* @ctxt: An XML parser context
* @publicId: The public ID of the entity
* @systemId: The system ID of the entity
*
* Special entity resolver, better left to the parser, it has
* more context than the application layer.
* The default behaviour is to NOT resolve the entities, in that case
* the ENTITY_REF nodes are built in the structure (and the parameter
* values).
*
* Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour.
*/
static xmlParserInputPtr
resolveEntityCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * publicId ATTRIBUTE_UNUSED,
const xmlChar * systemId ATTRIBUTE_UNUSED)
{
callbacks++;
return (NULL);
}
/**
* getEntityCallback:
* @ctxt: An XML parser context
* @name: The entity name
*
* Get an entity by name
*
* Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour.
*/
static xmlEntityPtr
getEntityCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED)
{
callbacks++;
return (NULL);
}
/**
* getParameterEntityCallback:
* @ctxt: An XML parser context
* @name: The entity name
*
* Get a parameter entity by name
*
* Returns the xmlParserInputPtr
*/
static xmlEntityPtr
getParameterEntityCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED)
{
callbacks++;
return (NULL);
}
/**
* entityDeclCallback:
* @ctxt: An XML parser context
* @name: the entity name
* @type: the entity type
* @publicId: The public ID of the entity
* @systemId: The system ID of the entity
* @content: the entity value (without processing).
*
* An entity definition has been parsed
*/
static void
entityDeclCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED,
int type ATTRIBUTE_UNUSED,
const xmlChar * publicId ATTRIBUTE_UNUSED,
const xmlChar * systemId ATTRIBUTE_UNUSED,
xmlChar * content ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* attributeDeclCallback:
* @ctxt: An XML parser context
* @name: the attribute name
* @type: the attribute type
*
* An attribute definition has been parsed
*/
static void
attributeDeclCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * elem ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED,
int type ATTRIBUTE_UNUSED, int def ATTRIBUTE_UNUSED,
const xmlChar * defaultValue ATTRIBUTE_UNUSED,
xmlEnumerationPtr tree ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* elementDeclCallback:
* @ctxt: An XML parser context
* @name: the element name
* @type: the element type
* @content: the element value (without processing).
*
* An element definition has been parsed
*/
static void
elementDeclCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED,
int type ATTRIBUTE_UNUSED,
xmlElementContentPtr content ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* notationDeclCallback:
* @ctxt: An XML parser context
* @name: The name of the notation
* @publicId: The public ID of the entity
* @systemId: The system ID of the entity
*
* What to do when a notation declaration has been parsed.
*/
static void
notationDeclCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED,
const xmlChar * publicId ATTRIBUTE_UNUSED,
const xmlChar * systemId ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* unparsedEntityDeclCallback:
* @ctxt: An XML parser context
* @name: The name of the entity
* @publicId: The public ID of the entity
* @systemId: The system ID of the entity
* @notationName: the name of the notation
*
* What to do when an unparsed entity declaration is parsed
*/
static void
unparsedEntityDeclCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED,
const xmlChar * publicId ATTRIBUTE_UNUSED,
const xmlChar * systemId ATTRIBUTE_UNUSED,
const xmlChar * notationName ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* setDocumentLocatorCallback:
* @ctxt: An XML parser context
* @loc: A SAX Locator
*
* Receive the document locator at startup, actually xmlDefaultSAXLocator
* Everything is available on the context, so this is useless in our case.
*/
static void
setDocumentLocatorCallback(void *ctx ATTRIBUTE_UNUSED,
xmlSAXLocatorPtr loc ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* startDocumentCallback:
* @ctxt: An XML parser context
*
* called when the document start being processed.
*/
static void
startDocumentCallback(void *ctx ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* endDocumentCallback:
* @ctxt: An XML parser context
*
* called when the document end has been detected.
*/
static void
endDocumentCallback(void *ctx ATTRIBUTE_UNUSED)
{
callbacks++;
}
#if 0
/**
* startElementCallback:
* @ctxt: An XML parser context
* @name: The element name
*
* called when an opening tag has been processed.
*/
static void
startElementCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED,
const xmlChar ** atts ATTRIBUTE_UNUSED)
{
callbacks++;
return;
}
/**
* endElementCallback:
* @ctxt: An XML parser context
* @name: The element name
*
* called when the end of an element has been detected.
*/
static void
endElementCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED)
{
callbacks++;
return;
}
#endif
/**
* charactersCallback:
* @ctxt: An XML parser context
* @ch: a xmlChar string
* @len: the number of xmlChar
*
* receiving some chars from the parser.
* Question: how much at a time ???
*/
static void
charactersCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * ch ATTRIBUTE_UNUSED,
int len ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* referenceCallback:
* @ctxt: An XML parser context
* @name: The entity name
*
* called when an entity reference is detected.
*/
static void
referenceCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* ignorableWhitespaceCallback:
* @ctxt: An XML parser context
* @ch: a xmlChar string
* @start: the first char in the string
* @len: the number of xmlChar
*
* receiving some ignorable whitespaces from the parser.
* Question: how much at a time ???
*/
static void
ignorableWhitespaceCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * ch ATTRIBUTE_UNUSED,
int len ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* processingInstructionCallback:
* @ctxt: An XML parser context
* @target: the target name
* @data: the PI data's
* @len: the number of xmlChar
*
* A processing instruction has been parsed.
*/
static void
processingInstructionCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * target ATTRIBUTE_UNUSED,
const xmlChar * data ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* cdataBlockCallback:
* @ctx: the user data (XML parser context)
* @value: The pcdata content
* @len: the block length
*
* called when a pcdata block has been parsed
*/
static void
cdataBlockCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * value ATTRIBUTE_UNUSED,
int len ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* commentCallback:
* @ctxt: An XML parser context
* @value: the comment content
*
* A comment has been parsed.
*/
static void
commentCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * value ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* warningCallback:
* @ctxt: An XML parser context
* @msg: the message to display/transmit
* @...: extra parameters for the message display
*
* Display and format a warning messages, gives file, line, position and
* extra parameters.
*/
static void
warningCallback(void *ctx ATTRIBUTE_UNUSED,
const char *msg ATTRIBUTE_UNUSED, ...)
{
callbacks++;
}
/**
* errorCallback:
* @ctxt: An XML parser context
* @msg: the message to display/transmit
* @...: extra parameters for the message display
*
* Display and format a error messages, gives file, line, position and
* extra parameters.
*/
static void
errorCallback(void *ctx ATTRIBUTE_UNUSED, const char *msg ATTRIBUTE_UNUSED,
...)
{
callbacks++;
}
/**
* fatalErrorCallback:
* @ctxt: An XML parser context
* @msg: the message to display/transmit
* @...: extra parameters for the message display
*
* Display and format a fatalError messages, gives file, line, position and
* extra parameters.
*/
static void
fatalErrorCallback(void *ctx ATTRIBUTE_UNUSED,
const char *msg ATTRIBUTE_UNUSED, ...)
{
}
/*
* SAX2 specific callbacks
*/
/**
* startElementNsCallback:
* @ctxt: An XML parser context
* @name: The element name
*
* called when an opening tag has been processed.
*/
static void
startElementNsCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * localname ATTRIBUTE_UNUSED,
const xmlChar * prefix ATTRIBUTE_UNUSED,
const xmlChar * URI ATTRIBUTE_UNUSED,
int nb_namespaces ATTRIBUTE_UNUSED,
const xmlChar ** namespaces ATTRIBUTE_UNUSED,
int nb_attributes ATTRIBUTE_UNUSED,
int nb_defaulted ATTRIBUTE_UNUSED,
const xmlChar ** attributes ATTRIBUTE_UNUSED)
{
callbacks++;
}
/**
* endElementCallback:
* @ctxt: An XML parser context
* @name: The element name
*
* called when the end of an element has been detected.
*/
static void
endElementNsCallback(void *ctx ATTRIBUTE_UNUSED,
const xmlChar * localname ATTRIBUTE_UNUSED,
const xmlChar * prefix ATTRIBUTE_UNUSED,
const xmlChar * URI ATTRIBUTE_UNUSED)
{
callbacks++;
}
static xmlSAXHandler callbackSAX2HandlerStruct = {
internalSubsetCallback,
isStandaloneCallback,
hasInternalSubsetCallback,
hasExternalSubsetCallback,
resolveEntityCallback,
getEntityCallback,
entityDeclCallback,
notationDeclCallback,
attributeDeclCallback,
elementDeclCallback,
unparsedEntityDeclCallback,
setDocumentLocatorCallback,
startDocumentCallback,
endDocumentCallback,
NULL,
NULL,
referenceCallback,
charactersCallback,
ignorableWhitespaceCallback,
processingInstructionCallback,
commentCallback,
warningCallback,
errorCallback,
fatalErrorCallback,
getParameterEntityCallback,
cdataBlockCallback,
externalSubsetCallback,
XML_SAX2_MAGIC,
NULL,
startElementNsCallback,
endElementNsCallback,
NULL
};
static xmlSAXHandlerPtr callbackSAX2Handler = &callbackSAX2HandlerStruct;
/************************************************************************
* *
* The tests front-ends *
* *
************************************************************************/
/**
* readerTest:
* @filename: the file to parse
* @max_size: size of the limit to test
* @options: parsing options
* @fail: should a failure be reported
*
* Parse a memory generated file using SAX
*
* Returns 0 in case of success, an error code otherwise
*/
static int
saxTest(const char *filename, size_t limit, int options, int fail) {
int res = 0;
xmlParserCtxtPtr ctxt;
xmlDocPtr doc;
nb_tests++;
maxlen = limit;
ctxt = xmlNewSAXParserCtxt(callbackSAX2Handler, NULL);
if (ctxt == NULL) {
fprintf(stderr, "Failed to create parser context\n");
return(1);
}
doc = xmlCtxtReadFile(ctxt, filename, NULL, options | XML_PARSE_NOERROR);
if (doc != NULL) {
fprintf(stderr, "SAX parsing generated a document !\n");
xmlFreeDoc(doc);
res = 0;
} else if (ctxt->wellFormed == 0) {
if (fail)
res = 0;
else {
fprintf(stderr, "Failed to parse '%s' %lu\n", filename,
(unsigned long) limit);
res = 1;
}
} else {
if (fail) {
fprintf(stderr, "Failed to get failure for '%s' %lu\n",
filename, (unsigned long) limit);
res = 1;
} else
res = 0;
}
xmlFreeParserCtxt(ctxt);
return(res);
}
#ifdef LIBXML_READER_ENABLED
/**
* readerTest:
* @filename: the file to parse
* @max_size: size of the limit to test
* @options: parsing options
* @fail: should a failure be reported
*
* Parse a memory generated file using the xmlReader
*
* Returns 0 in case of success, an error code otherwise
*/
static int
readerTest(const char *filename, size_t limit, int options, int fail) {
xmlTextReaderPtr reader;
int res = 0;
int ret;
nb_tests++;
maxlen = limit;
reader = xmlReaderForFile(filename , NULL, options | XML_PARSE_NOERROR);
if (reader == NULL) {
fprintf(stderr, "Failed to open '%s' test\n", filename);
return(1);
}
ret = xmlTextReaderRead(reader);
while (ret == 1) {
ret = xmlTextReaderRead(reader);
}
if (ret != 0) {
if (fail)
res = 0;
else {
if (strncmp(filename, "crazy:", 6) == 0)
fprintf(stderr, "Failed to parse '%s' %u\n",
filename, crazy_indx);
else
fprintf(stderr, "Failed to parse '%s' %lu\n",
filename, (unsigned long) limit);
res = 1;
}
} else {
if (fail) {
if (strncmp(filename, "crazy:", 6) == 0)
fprintf(stderr, "Failed to get failure for '%s' %u\n",
filename, crazy_indx);
else
fprintf(stderr, "Failed to get failure for '%s' %lu\n",
filename, (unsigned long) limit);
res = 1;
} else
res = 0;
}
if (timeout)
res = 1;
xmlFreeTextReader(reader);
return(res);
}
#endif
/************************************************************************
* *
* Tests descriptions *
* *
************************************************************************/
typedef int (*functest) (const char *filename, size_t limit, int options,
int fail);
typedef struct limitDesc limitDesc;
typedef limitDesc *limitDescPtr;
struct limitDesc {
const char *name; /* the huge generator name */
size_t limit; /* the limit to test */
int options; /* extra parser options */
int fail; /* whether the test should fail */
};
static limitDesc limitDescriptions[] = {
/* max length of a text node in content */
{"huge:textNode", XML_MAX_TEXT_LENGTH - CHUNK, 0, 0},
{"huge:textNode", XML_MAX_TEXT_LENGTH + CHUNK, 0, 1},
{"huge:textNode", XML_MAX_TEXT_LENGTH + CHUNK, XML_PARSE_HUGE, 0},
/* max length of a text node in content */
{"huge:attrNode", XML_MAX_TEXT_LENGTH - CHUNK, 0, 0},
{"huge:attrNode", XML_MAX_TEXT_LENGTH + CHUNK, 0, 1},
{"huge:attrNode", XML_MAX_TEXT_LENGTH + CHUNK, XML_PARSE_HUGE, 0},
/* max length of a comment node */
{"huge:commentNode", XML_MAX_TEXT_LENGTH - CHUNK, 0, 0},
{"huge:commentNode", XML_MAX_TEXT_LENGTH + CHUNK, 0, 1},
{"huge:commentNode", XML_MAX_TEXT_LENGTH + CHUNK, XML_PARSE_HUGE, 0},
/* max length of a PI node */
{"huge:piNode", XML_MAX_TEXT_LENGTH - CHUNK, 0, 0},
{"huge:piNode", XML_MAX_TEXT_LENGTH + CHUNK, 0, 1},
{"huge:piNode", XML_MAX_TEXT_LENGTH + CHUNK, XML_PARSE_HUGE, 0},
};
typedef struct testDesc testDesc;
typedef testDesc *testDescPtr;
struct testDesc {
const char *desc; /* description of the test */
functest func; /* function implementing the test */
};
static
testDesc testDescriptions[] = {
{ "Parsing of huge files with the sax parser", saxTest},
/* { "Parsing of huge files with the tree parser", treeTest}, */
#ifdef LIBXML_READER_ENABLED
{ "Parsing of huge files with the reader", readerTest},
#endif
{NULL, NULL}
};
typedef struct testException testException;
typedef testException *testExceptionPtr;
struct testException {
unsigned int test; /* the parser test number */
unsigned int limit; /* the limit test number */
int fail; /* new fail value or -1*/
size_t size; /* new limit value or 0 */
};
static
testException testExceptions[] = {
/* the SAX parser doesn't hit a limit of XML_MAX_TEXT_LENGTH text nodes */
{ 0, 1, 0, 0},
};
static int
launchTests(testDescPtr tst, unsigned int test) {
int res = 0, err = 0;
unsigned int i, j;
size_t limit;
int fail;
if (tst == NULL) return(-1);
for (i = 0;i < sizeof(limitDescriptions)/sizeof(limitDescriptions[0]);i++) {
limit = limitDescriptions[i].limit;
fail = limitDescriptions[i].fail;
/*
* Handle exceptions if any
*/
for (j = 0;j < sizeof(testExceptions)/sizeof(testExceptions[0]);j++) {
if ((testExceptions[j].test == test) &&
(testExceptions[j].limit == i)) {
if (testExceptions[j].fail != -1)
fail = testExceptions[j].fail;
if (testExceptions[j].size != 0)
limit = testExceptions[j].size;
break;
}
}
res = tst->func(limitDescriptions[i].name, limit,
limitDescriptions[i].options, fail);
if (res != 0) {
nb_errors++;
err++;
}
}
return(err);
}
static int
runtest(unsigned int i) {
int ret = 0, res;
int old_errors, old_tests, old_leaks;
old_errors = nb_errors;
old_tests = nb_tests;
old_leaks = nb_leaks;
if ((tests_quiet == 0) && (testDescriptions[i].desc != NULL))
printf("## %s\n", testDescriptions[i].desc);
res = launchTests(&testDescriptions[i], i);
if (res != 0)
ret++;
if (verbose) {
if ((nb_errors == old_errors) && (nb_leaks == old_leaks))
printf("Ran %d tests, no errors\n", nb_tests - old_tests);
else
printf("Ran %d tests, %d errors, %d leaks\n",
nb_tests - old_tests,
nb_errors - old_errors,
nb_leaks - old_leaks);
}
return(ret);
}
static int
launchCrazySAX(unsigned int test, int fail) {
int res = 0, err = 0;
crazy_indx = test;
res = saxTest("crazy::test", XML_MAX_LOOKUP_LIMIT - CHUNK, 0, fail);
if (res != 0) {
nb_errors++;
err++;
}
if (tests_quiet == 0)
fprintf(stderr, "%c", crazy[test]);
return(err);
}
#ifdef LIBXML_READER_ENABLED
static int
launchCrazy(unsigned int test, int fail) {
int res = 0, err = 0;
crazy_indx = test;
res = readerTest("crazy::test", XML_MAX_LOOKUP_LIMIT - CHUNK, 0, fail);
if (res != 0) {
nb_errors++;
err++;
}
if (tests_quiet == 0)
fprintf(stderr, "%c", crazy[test]);
return(err);
}
#endif
static int get_crazy_fail(int test) {
/*
* adding 1000000 of character 'a' leads to parser failure mostly
* everywhere except in those special spots. Need to be updated
* each time crazy is updated
*/
int fail = 1;
if ((test == 44) || /* PI in Misc */
((test >= 50) && (test <= 55)) || /* Comment in Misc */
(test == 79) || /* PI in DTD */
((test >= 85) && (test <= 90)) || /* Comment in DTD */
(test == 154) || /* PI in Misc */
((test >= 160) && (test <= 165)) || /* Comment in Misc */
((test >= 178) && (test <= 181)) || /* attribute value */
(test == 183) || /* Text */
(test == 189) || /* PI in Content */
(test == 191) || /* Text */
((test >= 195) && (test <= 200)) || /* Comment in Content */
((test >= 203) && (test <= 206)) || /* Text */
(test == 215) || (test == 216) || /* in CDATA */
(test == 219) || /* Text */
(test == 231) || /* PI in Misc */
((test >= 237) && (test <= 242))) /* Comment in Misc */
fail = 0;
return(fail);
}
static int
runcrazy(void) {
int ret = 0, res = 0;
int old_errors, old_tests, old_leaks;
unsigned int i;
old_errors = nb_errors;
old_tests = nb_tests;
old_leaks = nb_leaks;
#ifdef LIBXML_READER_ENABLED
if (tests_quiet == 0) {
printf("## Crazy tests on reader\n");
}
for (i = 0;i < strlen(crazy);i++) {
res += launchCrazy(i, get_crazy_fail(i));
if (res != 0)
ret++;
}
#endif
if (tests_quiet == 0) {
printf("\n## Crazy tests on SAX\n");
}
for (i = 0;i < strlen(crazy);i++) {
res += launchCrazySAX(i, get_crazy_fail(i));
if (res != 0)
ret++;
}
if (tests_quiet == 0)
fprintf(stderr, "\n");
if (verbose) {
if ((nb_errors == old_errors) && (nb_leaks == old_leaks))
printf("Ran %d tests, no errors\n", nb_tests - old_tests);
else
printf("Ran %d tests, %d errors, %d leaks\n",
nb_tests - old_tests,
nb_errors - old_errors,
nb_leaks - old_leaks);
}
return(ret);
}
int
main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
int i, a, ret = 0;
int subset = 0;
fillFilling();
initializeLibxml2();
for (a = 1; a < argc;a++) {
if (!strcmp(argv[a], "-v"))
verbose = 1;
else if (!strcmp(argv[a], "-quiet"))
tests_quiet = 1;
else if (!strcmp(argv[a], "-crazy"))
subset = 1;
}
if (subset == 0) {
for (i = 0; testDescriptions[i].func != NULL; i++) {
ret += runtest(i);
}
}
ret += runcrazy();
if ((nb_errors == 0) && (nb_leaks == 0)) {
ret = 0;
printf("Total %d tests, no errors\n",
nb_tests);
} else {
ret = 1;
printf("Total %d tests, %d errors, %d leaks\n",
nb_tests, nb_errors, nb_leaks);
}
xmlCleanupParser();
return(ret);
}