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 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820
|
/*
* TIFF Library
*
* The purpose of this test file is to test the correctness of
* TIFFWriteDirectory() when an already written IFD is extended with additional
* tags or the IFD data size is increased. The IFD must then be re-written to a
* different location in the file. On the other hand, the IFD should be
* overwritten if its size has not grown.
*/
#include "tif_config.h"
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "tiffio.h"
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifndef TRUE
#define TRUE 1
#define FALSE 0
#endif
#ifndef TIFFmin
#define TIFFmax(A, B) ((A) > (B) ? (A) : (B))
#define TIFFmin(A, B) ((A) < (B) ? (A) : (B))
#endif
/* Global settings -not save to change- */
#define SPP 3 /* samples per pixel */
#define BPS 8 /* bits per sample */
char *modeStrings[] = {"wl", "wb", "w8l", "w8b"};
/* Writes some pixel data as scanline or tiles to file.
*/
int write_image_data(TIFF *tif, uint16_t width, uint16_t length, bool tiled,
unsigned int pixval, unsigned char *plastlinedata,
unsigned int lastlinebytesmax)
{
size_t bufLen;
unsigned char *pbufLine = NULL;
unsigned int bpsmod = (1 << BPS);
int tlwidth;
int tllength;
tmsize_t tlsize;
assert(SPP == 3);
if (tiled)
{
int ret = TIFFGetField(tif, TIFFTAG_TILEWIDTH, &tlwidth);
ret += TIFFGetField(tif, TIFFTAG_TILELENGTH, &tllength);
if (ret < 2)
{
fprintf(stderr,
"Can't get TIFFTAG_TILEWIDTH/_LENGTH tags. Testline %d\n",
__LINE__);
return 1;
}
/* For tiled mode get size of a tile in bytes */
tlsize = TIFFTileSize(tif);
bufLen = (size_t)tlsize;
}
else
{
/* For strip mode get size of a row in bytes */
bufLen = (((size_t)width * SPP * BPS) + 7) / 8;
}
pbufLine = _TIFFmalloc(bufLen);
if (pbufLine == NULL)
return 1;
/* Fill image buffer. */
pbufLine[0] = (unsigned char)((pixval * 100) % bpsmod);
pbufLine[1] = 127 % bpsmod;
pbufLine[2] = 255 % bpsmod;
for (size_t x = SPP; x < bufLen; x += SPP)
{
pbufLine[x] = 10 % bpsmod;
pbufLine[x + 1] = (unsigned char)((x * 40) % bpsmod);
pbufLine[x + 2] = (unsigned char)((x * 70) % bpsmod);
}
/* Write dummy pixel data. */
if (tiled)
{
uint32_t numtiles = TIFFNumberOfTiles(tif);
for (uint32_t i = 0; i < numtiles; i++)
{
if (TIFFWriteEncodedTile(tif, i, pbufLine, 0) == -1)
{
fprintf(stderr, "Can't write image data tile. Testline %d\n",
__LINE__);
return 1;
}
if ((plastlinedata != NULL) && (i == (numtiles - 1)))
{
memcpy(plastlinedata, pbufLine,
TIFFmin(bufLen, (size_t)lastlinebytesmax));
}
/* Change something for next row. */
pbufLine[0] = (pbufLine[0] + 35) % bpsmod;
}
}
else
{
for (int i = 0; i < length; i++)
{
if (TIFFWriteScanline(tif, pbufLine, i, 0) == -1)
{
fprintf(stderr,
"Can't write image data scanline. Testline %d\n",
__LINE__);
return 1;
}
if ((plastlinedata != NULL) && (i == (length - 1)))
{
memcpy(plastlinedata, pbufLine,
TIFFmin(bufLen, (size_t)lastlinebytesmax));
}
/* Change something for next row. */
pbufLine[0] = (pbufLine[0] + 30) % bpsmod;
}
}
_TIFFfree(pbufLine);
return 0;
} /*-- write_image_data() --*/
/* Fills the active IFD with some default values and writes
* an image with given number of lines as strips (scanlines) or tiles to file.
*/
int write_data_to_current_directory(TIFF *tif, uint16_t width, uint16_t length,
bool tiled, int ifd_page_num,
bool write_data,
unsigned char *plastlinedata,
unsigned int lastlinebytesmax)
{
const uint16_t photometric = PHOTOMETRIC_RGB;
const uint16_t rows_per_strip = 1;
const uint16_t planarconfig = PLANARCONFIG_CONTIG;
char auxString[128];
if (!tif)
{
fprintf(stderr, "Invalid TIFF handle.\n");
return 1;
}
if (!TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, width))
{
fprintf(stderr, "Can't set ImageWidth tag.\n");
return 1;
}
if (!TIFFSetField(tif, TIFFTAG_IMAGELENGTH, length))
{
fprintf(stderr, "Can't set ImageLength tag.\n");
return 1;
}
if (!TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, BPS))
{
fprintf(stderr, "Can't set BitsPerSample tag.\n");
return 1;
}
if (!TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, SPP))
{
fprintf(stderr, "Can't set SamplesPerPixel tag.\n");
return 1;
}
if (tiled)
{
/* Tilesizes must be multiple of 16. */
int ret = TIFFSetField(tif, TIFFTAG_TILEWIDTH, 16);
ret += TIFFSetField(tif, TIFFTAG_TILELENGTH, 16);
if (ret < 2)
{
fprintf(stderr, "Can't set TIFFTAG_TILEWIDTH/_LENGTH tags.\n");
return 1;
}
}
else
{
if (!TIFFSetField(tif, TIFFTAG_ROWSPERSTRIP, rows_per_strip))
{
fprintf(stderr, "Can't set SamplesPerPixel tag.\n");
return 1;
}
}
if (!TIFFSetField(tif, TIFFTAG_PLANARCONFIG, planarconfig))
{
fprintf(stderr, "Can't set PlanarConfiguration tag.\n");
return 1;
}
if (!TIFFSetField(tif, TIFFTAG_PHOTOMETRIC, photometric))
{
fprintf(stderr, "Can't set PhotometricInterpretation tag.\n");
return 1;
}
/* Write IFD identification number to ASCII string of PageName tag. */
sprintf(auxString, "%d th. IFD", ifd_page_num);
if (!TIFFSetField(tif, TIFFTAG_PAGENAME, auxString))
{
fprintf(stderr, "Can't set TIFFTAG_PAGENAME tag.\n");
return 1;
}
/* Write dummy pixel data. */
if (write_data)
{
if (write_image_data(tif, width, length, tiled, ifd_page_num,
plastlinedata, lastlinebytesmax))
{
fprintf(stderr, "Can't write image data. Testline %d\n", __LINE__);
return 1;
}
}
return 0;
} /*-- write_data_to_current_directory() --*/
/* Adds an EXIF IFD with some default values to the active IFD.
*/
int write_EXIF_data_to_current_directory(TIFF *tif, int i,
uint64_t *dir_offset_EXIF)
{
char auxString[128];
if (!tif)
{
fprintf(stderr, "Invalid TIFF handle.\n");
return 1;
}
/*-- Now create an EXIF directory. */
if (TIFFCreateEXIFDirectory(tif) != 0)
{
fprintf(stderr, "TIFFCreateEXIFDirectory() failed.\n");
return 1;
}
if (!TIFFSetField(tif, EXIFTAG_EXIFVERSION, "0231"))
{
fprintf(stderr, "Can't write EXIFTAG_EXIFVERSION\n");
return 1;
}
/* Write IFD identification number to ASCII string of SUBSECTIMEORIGINAL
* tag. */
sprintf(auxString, "EXIF-%d-EXIF", i);
if (!TIFFSetField(tif, EXIFTAG_SUBSECTIMEORIGINAL, auxString))
{
fprintf(stderr, "Can't set EXIFTAG_SUBSECTIMEORIGINAL tag.\n");
return 1;
}
if (!TIFFWriteCustomDirectory(tif, dir_offset_EXIF))
{
fprintf(stderr, "TIFFWriteCustomDirectory() with EXIF failed.\n");
return 1;
}
return 0;
} /*-- write_EXIF_data_to_current_directory() --*/
/* Compare 'requested_dir_number' with number written in PageName tag
* into the IFD to identify that IFD. */
int is_requested_directory(TIFF *tif, int requested_dir_number,
const char *filename)
{
char *ptr = NULL;
char *auxStr = NULL;
if (!TIFFGetField(tif, TIFFTAG_PAGENAME, &ptr))
{
fprintf(stderr, "Can't get TIFFTAG_PAGENAME tag. Testline %d\n",
__LINE__);
return 0;
}
/* Check for reading errors */
if (ptr != NULL)
auxStr = strchr(ptr, ' ');
if (ptr == NULL || auxStr == NULL || strncmp(auxStr, " th.", 4))
{
ptr = ptr == NULL ? "(null)" : ptr;
fprintf(stderr,
"Error reading IFD directory number from PageName tag: %s. "
"Testline %d\n",
ptr, __LINE__);
return 0;
}
/* Retrieve IFD identification number from ASCII string */
const int nthIFD = atoi(ptr);
if (nthIFD == requested_dir_number)
{
return 1;
}
fprintf(
stderr,
"Expected directory %d from %s was not loaded but: %s. Testline %d\n",
requested_dir_number, filename, ptr, __LINE__);
return 0;
}
/* Checks that IFDs on file can be overwritten if they have not grown and
* were re-written to an other location if IFD size has been grown.
*/
int test_IFD_enlargement(const char *filename, unsigned int openMode,
bool is_strile_array_writing, int numIFDs,
uint16_t width, uint16_t length, bool tiled)
{
#define NUMIFDsMAX 4
uint64_t auxUint64;
TIFFErrorHandler errHandler = NULL;
uint64_t offsetBase[NUMIFDsMAX] = {0};
uint64_t offsetNew[NUMIFDsMAX];
unsigned char bufLine[NUMIFDsMAX + 1][1024];
assert(numIFDs <= NUMIFDsMAX);
assert(openMode < (sizeof(modeStrings) / sizeof(modeStrings[0])));
/*-- Create a file and write numIFDs IFDs directly to it --*/
TIFF *tif = TIFFOpen(filename, modeStrings[openMode]);
if (!tif)
{
fprintf(stderr, "Can't create %s. Testline %d\n", filename, __LINE__);
return 1;
}
for (int i = 0; i < numIFDs; i++)
{
/* Writing baseline images (IFDs) to file. */
if (write_data_to_current_directory(tif, width, length, tiled, i,
!is_strile_array_writing,
&bufLine[i][0], sizeof(bufLine[i])))
{
fprintf(
stderr,
"Can't write data to current directory in %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* xmldata need to be 9 bytes (17 bytes for BigTIFF, respectively) thus
* not to fit into the entry itself and have space to cover two
* strip-/tile-offsets when XMLPACKET tag contents is reduced. */
char xmldata[20];
if (TIFFIsBigTIFF(tif))
strcpy(xmldata, "XML-ABCDEABCDEFGH");
else
strcpy(xmldata, "XML-ABCDE");
uint32_t xmlpacketLength = (uint32_t)strlen(xmldata);
if (!TIFFSetField(tif, TIFFTAG_XMLPACKET, xmlpacketLength, xmldata))
{
fprintf(stderr, "Can't set TIFFTAG_XMLPACKET tag. Testline %d\n",
__LINE__);
goto failure;
}
if (is_strile_array_writing)
{
/* Set flag for deferred strile-array writing. */
if (!TIFFDeferStrileArrayWriting(tif))
{
fprintf(
stderr,
"TIFFDeferStrileArrayWriting failed for %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Set flag, that image writing has started and freeze relevant IFD
* tags. */
if (!TIFFWriteCheck(tif, tiled, NULL))
{
fprintf(stderr, "TIFFWriteCheck failed for %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
}
/* Write IFD tags to file (and setup new empty IFD). */
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
} /*-- for (numIFDs) --*/
/* Retrieve IFD offset values to read IFDs before image data has been
* written when is_strile_array_writing is true. */
for (int i = numIFDs - 1; i >= 0; i--)
{
TIFFSetDirectory(tif, i);
offsetBase[i] = TIFFCurrentDirOffset(tif);
}
/* For TIFFDeferStrileArrayWriting write now image data to file.*/
if (is_strile_array_writing)
{
for (int i = 0; i < numIFDs; i++)
{
/* Reset to written IFD to write strile arrays with dummy content to
* file and update StripOffset tag within IFD on file.
* First TIFFForceStrileArrayWriting() prepares internal flags and
* memory for next writing after switching back to the already
* written IFD. */
TIFFSetDirectory(tif, i);
if (!TIFFForceStrileArrayWriting(tif))
{
fprintf(
stderr,
"TIFFForceStrileArrayWriting failed for %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Then write image pixels. */
if (write_image_data(tif, width, length, tiled, 5 * i,
&bufLine[i][0], sizeof(bufLine[i])))
{
fprintf(stderr, "Can't write image data. Testline %d\n",
__LINE__);
return 1;
}
/* Last image data need to be flushed to file. */
if (!TIFFFlushData(tif))
{
fprintf(stderr, "TIFFFlushData failed for %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Fill (overwrite) strile array with final offsets after image data
* has been written. Would also be called by TIFFClose(). */
if (!TIFFForceStrileArrayWriting(tif))
{
fprintf(
stderr,
"TIFFForceStrileArrayWriting failed for %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
}
}
/* Retrieve IFD offset values for later checking. Should not be changed. */
for (int i = numIFDs - 1; i >= 0; i--)
{
TIFFSetDirectory(tif, i);
auxUint64 = TIFFCurrentDirOffset(tif);
if (offsetBase[i] != auxUint64)
{
fprintf(stderr, "Unexpected change of offset IFD %d. Testline %d\n",
i, __LINE__);
goto failure;
}
}
/* Test over-writing with less bytes.
* This leaves some bytes of the larger previous IFD at EOF or before the
* next IFD. */
TIFFSetDirectory(tif, 0);
char xmldata0[] = "XMLb";
uint32_t xmlpacketLength = (uint32_t)strlen(xmldata0);
if (!TIFFSetField(tif, TIFFTAG_XMLPACKET, xmlpacketLength, xmldata0))
{
fprintf(stderr, "Can't set TIFFTAG_XMLPACKET tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't overwrite directory to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Re-read IFD and check its offset, which should not have been changed at
* this point, except for strile_array_writing because then the stripoffsets
* are now written within IFD space. However, for only one IFD (numIFDs=1)
* the strile array data is written straight behind the IFD and thus can be
* overwritten.
* Furthermore, strile_array size of <= 9 (<=17 for BigTIFF) can also be
* written within the IFD space, because 9 (17 for BigTIFF) byte are gained
* by downsizing the XMLPACKET. */
TIFFSetDirectory(tif, 0);
auxUint64 = TIFFCurrentDirOffset(tif);
if (!is_strile_array_writing && offsetBase[0] != auxUint64)
{
fprintf(stderr,
"Failure: Directory 0 offset has changed from 0x%" PRIx64
" (%" PRIu64 ") to 0x %" PRIx64 " (%" PRIu64
"). Testline %d\n ",
offsetBase[0], offsetBase[0], auxUint64, auxUint64, __LINE__);
goto failure;
}
else if (is_strile_array_writing && !tiled)
{
if (numIFDs > 1 && TIFFNumberOfStrips(tif) > 2)
{
if (offsetBase[0] == auxUint64)
{
fprintf(stderr,
"Failure with strile array writing: Directory 0 offset "
"has now "
"NOT changed from 0x%" PRIx64 " (%" PRIu64
"). Testline %d\n ",
offsetBase[0], offsetBase[0], __LINE__);
goto failure;
}
}
else if (offsetBase[0] != auxUint64)
{
fprintf(stderr,
"Failure with strile array writing: Directory 0 offset has "
"changed from 0x%" PRIx64 " (%" PRIu64 ") to 0x %" PRIx64
" (%" PRIu64 "). Testline %d\n ",
offsetBase[0], offsetBase[0], auxUint64, auxUint64,
__LINE__);
goto failure;
}
}
else if (is_strile_array_writing && tiled)
{
if (numIFDs > 1 && TIFFNumberOfTiles(tif) > 2)
{
if (offsetBase[0] == auxUint64)
{
fprintf(stderr,
"Failure with tiled strile array writing: Directory 0 "
"offset has now NOT changed from 0x%" PRIx64
" (%" PRIu64 "). Testline %d\n ",
offsetBase[0], offsetBase[0], __LINE__);
goto failure;
}
}
else if (offsetBase[0] != auxUint64)
{
fprintf(stderr,
"Failure with tiled strile array writing: Directory 0 "
"offset has "
"changed from 0x%" PRIx64 " (%" PRIu64 ") to 0x %" PRIx64
" (%" PRIu64 "). Testline %d\n ",
offsetBase[0], offsetBase[0], auxUint64, auxUint64,
__LINE__);
goto failure;
}
}
/*-- Enlarge IFD 0 with enlarged tag data and write it again. --*/
char xmldata1[] = "XML data package";
xmlpacketLength = (uint32_t)strlen(xmldata1);
if (!TIFFSetField(tif, TIFFTAG_XMLPACKET, xmlpacketLength, xmldata1))
{
fprintf(stderr, "Can't set TIFFTAG_XMLPACKET tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't re-write directory 0 to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Check IFD 0 offset, which should have been changed.
* (Because of unused bytes before EOF generated by downsizing of XMLPACKET
* before enlarging IFD will be re-written even for numIFDs==1) */
if (!TIFFSetDirectory(tif, 0))
{
fprintf(stderr, "Can't set directory 0 of %s. Testline %d\n", filename,
__LINE__);
goto failure;
}
offsetNew[0] = TIFFCurrentDirOffset(tif);
if (offsetBase[0] == offsetNew[0])
{
fprintf(
stderr,
"Failure: Directory 0 offset has now NOT changed from 0x%" PRIx64
" (%" PRIu64 ").Testline %d\n ",
offsetNew[0], offsetNew[0], __LINE__);
goto failure;
}
if (numIFDs > 1)
{
/*-- Read next directory IFD=1 and re-write that. --*/
if (!TIFFReadDirectory(tif))
{
fprintf(stderr, "Can't read directory from %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Enlarge IFD 1 by adding new tag. */
if (!TIFFSetField(tif, TIFFTAG_IMAGEDESCRIPTION,
"WGS 84 / UTM zone 1N|WGS 84|"))
{
fprintf(stderr,
"Can't set TIFFTAG_IMAGEDESCRIPTION tag. Testline %d\n",
__LINE__);
goto failure;
}
auxUint64 = TIFFCurrentDirOffset(tif);
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't re-write directory 1 to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
TIFFSetDirectory(tif, 1);
offsetNew[1] = TIFFCurrentDirOffset(tif);
if (auxUint64 == offsetNew[1])
{
fprintf(stderr,
"Failure: Directory 1 offset has now NOT changed from "
"0x%" PRIx64 " (%" PRIu64 ").Testline %d\n ",
offsetNew[1], offsetNew[1], __LINE__);
goto failure;
}
}
/* Use TIFFSetSubDirectory() for old IFD 0 and just overwrite it.
* Just overwriting invalid directory works. For strile array writing it
* shall fail, because now the striles are tried to be written within the
* IFD space. However, for only one IFD (numIFDs=1) the strile array data is
* written straight behind the IFD and thus can be overwritten.
* The same is true for tiled images, however if the number of tiles
* is one (TIFFNumberOfTiles==1), the tile offset fits into the tag entry
* and thus can also be overwritten.
*/
if (!TIFFSetSubDirectory(tif, offsetBase[0]))
{
fprintf(stderr,
"Can't set sub-directory at offset 0x%" PRIx64 " (%" PRIu64
") within %s. Testline %d\n",
offsetBase[0], offsetBase[0], filename, __LINE__);
goto failure;
}
if (!tiled)
{
if (!is_strile_array_writing || numIFDs <= 1)
{
if (!TIFFWriteDirectory(
tif)) /* just overwriting invalid directory works!!*/
{
fprintf(stderr,
"Can't overwrite directory to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
}
else
{
/* Because XMLPACKET is 9 byte reduced, small strilearrays can be
* overwritten. */
if (TIFFNumberOfStrips(tif) > 2)
/* Suppress error message from 'TIFFRewriteDirectory()' like
* 'Error fetching directory link' or 'Sanity check...'. */
errHandler = TIFFSetErrorHandler(NULL);
if (TIFFWriteDirectory(tif) && TIFFNumberOfStrips(tif) > 2)
{
fprintf(stderr,
"Was expected to fail but succeeded. %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
if (TIFFNumberOfStrips(tif) > 2)
TIFFSetErrorHandler(errHandler);
}
}
else
{
if (!is_strile_array_writing || numIFDs <= 1 ||
TIFFNumberOfTiles(tif) <= 1)
{
if (!TIFFWriteDirectory(
tif)) /* just overwriting invalid directory works!!*/
{
fprintf(stderr,
"Can't overwrite directory to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
}
else
{
/* Because XMLPACKET is 9 byte reduced, small strilearrays can be
* overwritten. */
if (TIFFNumberOfTiles(tif) > 2)
/* Suppress error message from 'TIFFRewriteDirectory()' like
* 'Error fetching directory link' or 'Sanity check...'. */
errHandler = TIFFSetErrorHandler(NULL);
if (TIFFWriteDirectory(tif) && TIFFNumberOfTiles(tif) > 2)
{
fprintf(stderr,
"Was expected to fail but succeeded. %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
if (TIFFNumberOfTiles(tif) > 2)
TIFFSetErrorHandler(errHandler);
}
}
/* Re-read the already re-written and thus invalidated IFD 0 with
* TIFFSetSubDirectory() and try to re-write it.
* Re-writing an invalid IFD should fail. */
if (!TIFFSetSubDirectory(tif, offsetBase[0]))
{
fprintf(stderr,
"Can't set sub-directory at offset 0x%" PRIx64 " (%" PRIu64
") within %s. Testline %d\n",
offsetBase[0], offsetBase[0], filename, __LINE__);
goto failure;
}
if (!TIFFSetField(tif, TIFFTAG_XMLPACKET, (uint32_t)strlen(xmldata1),
xmldata1))
{
fprintf(stderr, "Can't set TIFFTAG_XMLPACKET tag. Testline %d\n",
__LINE__);
goto failure;
}
/* Suppress error message from 'TIFFRewriteDirectory()' like
* 'Error fetching directory link' or 'Sanity check...'. */
errHandler = TIFFSetErrorHandler(NULL);
if (TIFFWriteDirectory(tif))
{
fprintf(stderr, "Was expected to fail but succeeded. %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
TIFFSetErrorHandler(errHandler);
/*-- Now with a valid IFD: Re-read IFD with TIFFSetSubDirectory() and
* re-write it. If it is at the end of the file, it will be overwritten.
* This is the case for numIFD==1. */
if (!TIFFSetSubDirectory(tif, offsetNew[0]))
{
fprintf(stderr,
"Can't set sub-directory at offset 0x%" PRIx64 " (%" PRIu64
") within %s. Testline %d\n",
offsetNew[0], offsetNew[0], filename, __LINE__);
goto failure;
}
char xmldata2[] = "XML data package even longer";
if (!TIFFSetField(tif, TIFFTAG_XMLPACKET, (uint32_t)strlen(xmldata2),
xmldata2))
{
fprintf(stderr, "Can't set TIFFTAG_XMLPACKET tag.. Testline %d\n",
__LINE__);
goto failure;
}
auxUint64 = TIFFCurrentDirOffset(tif);
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't re-write directory 0 to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
TIFFSetDirectory(tif, 0);
offsetNew[0] = TIFFCurrentDirOffset(tif);
if (numIFDs > 1 && auxUint64 == offsetNew[0])
{
fprintf(stderr,
"Failure: Directory %d offset has NOT changed from 0x%" PRIx64
" (%" PRIu64 ").Testline %d\n ",
0, offsetNew[0], offsetNew[0], __LINE__);
goto failure;
}
/*-- Make a little check. --*/
/* Reopen prepared testfile */
TIFFClose(tif);
tif = TIFFOpen(filename, "r+");
if (!tif)
{
fprintf(stderr, "Can't open %s\n", filename);
goto failure;
}
for (int i = 0; i < numIFDs; i++)
{
if (!TIFFSetDirectory(tif, i))
{
fprintf(stderr, "Can't set directory %d of %s. Testline %d\n", i,
filename, __LINE__);
goto failure;
}
if (i < 2)
{
auxUint64 = TIFFCurrentDirOffset(tif);
if (auxUint64 != offsetNew[i])
{
fprintf(
stderr,
"Failure: Directory 0 offset has changed from 0x%" PRIx64
" (%" PRIu64 ") to 0x %" PRIx64 " (%" PRIu64
").Testline %d\n ",
offsetNew[i], offsetNew[i], auxUint64, auxUint64, __LINE__);
goto failure;
}
}
if (!is_requested_directory(tif, i, filename))
{
goto failure;
}
/* Check last image line or last tile. */
tmsize_t bytesRead;
if (tiled)
{
uint32_t numtiles = TIFFNumberOfTiles(tif);
uint64_t tileSize = TIFFTileSize64(tif);
if (tileSize > sizeof(bufLine[NUMIFDsMAX]))
{
fprintf(
stderr,
"Failure: Read buffer for tile too small.Testline %d\n ",
__LINE__);
goto failure;
}
bytesRead = TIFFReadEncodedTile(
tif, numtiles - 1, &bufLine[NUMIFDsMAX][0], sizeof(bufLine[0]));
}
else
{
uint64_t scanlineSize = TIFFScanlineSize64(tif);
if (scanlineSize > sizeof(bufLine[NUMIFDsMAX]))
{
fprintf(stderr,
"Failure: Read buffer for scanline too small.Testline "
"%d\n ",
__LINE__);
goto failure;
}
bytesRead =
TIFFReadScanline(tif, &bufLine[NUMIFDsMAX][0], length - 1, 0);
}
if (bytesRead > 0)
{
for (int k = 0; k < bytesRead; k++)
{
if (bufLine[NUMIFDsMAX][k] != bufLine[i][k])
{
fprintf(
stderr,
"Failure: Read IFD %d last line pixel %d value %d is "
"different to written value %d .Testline %d\n ",
i, k, bufLine[i][k], bufLine[NUMIFDsMAX][k], __LINE__);
goto failure;
}
}
}
else
{
fprintf(stderr,
"Failure: Reading IFD %d last line %d .Testline %d\n ", i,
length - 1, __LINE__);
goto failure;
}
}
TIFFClose(tif);
unlink(filename);
return 0;
failure:
if (tif)
{
TIFFClose(tif);
}
return 1;
} /*-- test_IFD_enlargement --*/
/* Width and length for the next test functions can be adapted here. */
#define WIDTH 1
#define LENGTH 2
/* Checks that Custom-IFDs like EXIF-IFD in file can be overwritten if they have
* not grown and were re-written to an other location if IFD size has been
* grown.
*/
int test_EXIF_enlargement(const char *filename, bool is_big_tiff)
{
char auxString[128];
uint64_t offsetEXIFBase[2];
uint64_t offsetEXIFNew[2];
/*-- Create a file and write two EXIF-IFDs directly to it --*/
TIFF *tif = TIFFOpen(filename, is_big_tiff ? "w8" : "w");
if (!tif)
{
fprintf(stderr, "Can't create %s. Testline %d\n", filename, __LINE__);
return 1;
}
/* Write baseline test image. */
for (int i = 0; i < 2; i++)
{
/* Writing baseline images (IFDs) and EXIF-IFDs to file. */
if (write_data_to_current_directory(tif, WIDTH, LENGTH, FALSE, i, true,
NULL, 0))
{
fprintf(
stderr,
"Can't write data to current directory in %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Set EXIFIFD tag with dummy value to reserve space in IFD. */
if (!TIFFSetField(tif, TIFFTAG_EXIFIFD, (uint64_t)0))
{
fprintf(stderr, "Can't set TIFFTAG_EXIFIFD tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
if (write_EXIF_data_to_current_directory(tif, i, &offsetEXIFBase[i]))
{
fprintf(stderr,
"Can't write EXIF data to current directory in %s. "
"Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Go back to current main-IFD and update EXIF-IFD offset. */
if (!TIFFSetDirectory(tif, i))
{
fprintf(stderr, "Can't set directory %d of %s. Testline %d\n", i,
filename, __LINE__);
goto failure;
}
if (!TIFFSetField(tif, TIFFTAG_EXIFIFD, offsetEXIFBase[i]))
{
fprintf(stderr, "Can't set TIFFTAG_EXIFIFD tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
}
/* Test over-writing the EXIF directory without change or with less bytes.
*/
int retCode;
char *pAscii0;
char *pAscii1;
if (!TIFFReadEXIFDirectory(tif, offsetEXIFBase[0]))
{
fprintf(stderr,
"Can't read EXIF directory at offset 0x%" PRIx64 " (%" PRIu64
") within %s. Testline %d\n",
offsetEXIFBase[0], offsetEXIFBase[0], filename, __LINE__);
goto failure;
}
retCode = TIFFGetField(tif, EXIFTAG_EXIFVERSION, &pAscii0);
retCode += TIFFGetField(tif, EXIFTAG_SUBSECTIMEORIGINAL, &pAscii1);
if (retCode != 2)
{
fprintf(stderr, "Can't read EXIF tags. Testline %d\n", __LINE__);
return 1;
}
/* Use shorter string thus EXIF-IFD should be overwritten. */
sprintf(auxString, "EXIF-%d-XX", 0);
if (!TIFFSetField(tif, EXIFTAG_SUBSECTIMEORIGINAL, auxString))
{
fprintf(stderr,
"Can't set EXIFTAG_SUBSECTIMEORIGINAL tag. Testline %d\n",
__LINE__);
return 1;
}
if (!TIFFWriteCustomDirectory(tif, &offsetEXIFNew[0]))
{
fprintf(stderr,
"TIFFWriteCustomDirectory() with EXIF failed. Testline %d\n",
__LINE__);
return 1;
}
/* Check for overwriting. */
if (offsetEXIFBase[0] != offsetEXIFNew[0])
{
fprintf(stderr,
"Failure: EXIF IFD 0 offset has changed from 0x%" PRIx64
" (%" PRIu64 ") to 0x %" PRIx64 " (%" PRIu64 ").Testline %d\n ",
offsetEXIFBase[0], offsetEXIFBase[0], offsetEXIFNew[0],
offsetEXIFNew[0], __LINE__);
goto failure;
}
else
{
/*EXIF has been overwritten. Check that. */
if (!TIFFReadEXIFDirectory(tif, offsetEXIFNew[0]))
{
fprintf(stderr,
"Can't read EXIF directory at offset 0x%" PRIx64
" (%" PRIu64 ") within %s. Testline %d\n",
offsetEXIFBase[0], offsetEXIFBase[0], filename, __LINE__);
goto failure;
}
if (!TIFFGetField(tif, EXIFTAG_SUBSECTIMEORIGINAL, &pAscii1))
{
fprintf(stderr,
"Can't read tag EXIFTAG_SUBSECTIMEORIGINAL of %s. Testline "
"%d\n",
filename, __LINE__);
goto failure;
}
if (strcmp(pAscii1, auxString))
{
fprintf(stderr,
"Read contents of EXIFTAG_SUBSECTIMEORIGINAL %s is not as "
"expected %s of %s. Testline "
"%d\n",
pAscii1, auxString, filename, __LINE__);
goto failure;
}
}
/* Enlarging and re-writing EXIF IFD 1. Since EXIF IFD 1 is at EOF,
* even an enlargement should overwrite it. */
if (!TIFFReadEXIFDirectory(tif, offsetEXIFBase[1]))
{
fprintf(stderr,
"Can't read EXIF directory 1 at offset 0x%" PRIx64 " (%" PRIu64
") within %s. Testline %d\n",
offsetEXIFBase[1], offsetEXIFBase[1], filename, __LINE__);
goto failure;
}
retCode = TIFFGetField(tif, EXIFTAG_EXIFVERSION, &pAscii0);
retCode += TIFFGetField(tif, EXIFTAG_SUBSECTIMEORIGINAL, &pAscii1);
if (retCode != 2)
{
fprintf(stderr, "Can't read EXIF tags. Testline %d\n", __LINE__);
return 1;
}
/* Enlarge EXIF IFD 1 with additional tag to provoke re-writing. */
if (!TIFFSetField(tif, EXIFTAG_FLASH, 44))
{
fprintf(stderr, "Can't set EXIFTAG_FLASH tag. Testline %d\n", __LINE__);
goto failure;
}
if (!TIFFWriteCustomDirectory(tif, &offsetEXIFNew[1]))
{
fprintf(stderr,
"TIFFWriteCustomDirectory() with EXIF failed. Testline %d\n",
__LINE__);
goto failure;
}
/* Check: EXIF IFD 1 should be overwritten because should be at EOF. */
if (offsetEXIFBase[1] != offsetEXIFNew[1])
{
fprintf(stderr,
"Failure: EXIF IFD 1 offset has changed from 0x%" PRIx64
" (%" PRIu64 ") to 0x %" PRIx64 " (%" PRIu64 ").Testline %d\n ",
offsetEXIFBase[1], offsetEXIFBase[1], offsetEXIFNew[1],
offsetEXIFNew[1], __LINE__);
goto failure;
}
/* Now enlarge and re-write EXIF IFD 0. */
if (!TIFFReadEXIFDirectory(tif, offsetEXIFBase[0]))
{
fprintf(stderr,
"Can't read EXIF directory at offset 0x%" PRIx64 " (%" PRIu64
") within %s. Testline %d\n",
offsetEXIFBase[0], offsetEXIFBase[0], filename, __LINE__);
goto failure;
}
/* Enlarge EXIF IFD 0 with additional tag to provoke re-writing. */
if (!TIFFSetField(tif, EXIFTAG_SPECTRALSENSITIVITY,
"EXIF-0-enlargement-EXIF"))
{
fprintf(stderr,
"Can't set EXIFTAG_SPECTRALSENSITIVITY tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFWriteCustomDirectory(tif, &offsetEXIFNew[0]))
{
fprintf(stderr,
"TIFFWriteCustomDirectory() with EXIF failed. Testline %d\n",
__LINE__);
goto failure;
}
/* Check: EXIF-IFD 0 shall now be re-written. */
if (offsetEXIFBase[0] == offsetEXIFNew[0])
{
fprintf(stderr,
"Failure: EXIF IFD 0 offset has NOT changed from 0x%" PRIx64
" (%" PRIu64 "). Testline %d\n ",
offsetEXIFBase[0], offsetEXIFBase[0], __LINE__);
goto failure;
}
else
{
/* EXIF-IFD has been re-written, thus offset in main-IFD needs
* update. */
if (!TIFFSetDirectory(tif, 1))
{
fprintf(stderr, "Can't set directory %d of %s. Testline %d\n", 1,
filename, __LINE__);
goto failure;
}
if (!TIFFSetField(tif, TIFFTAG_EXIFIFD, offsetEXIFNew[0]))
{
fprintf(stderr, "Can't set TIFFTAG_EXIFIFD tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
}
/*-- Make a little check. --*/
if (!TIFFSetDirectory(tif, 1))
{
fprintf(stderr, "Can't set directory 1 of %s. Testline %d\n", filename,
__LINE__);
goto failure;
}
if (!is_requested_directory(tif, 1, filename))
{
goto failure;
}
if (!TIFFSetDirectory(tif, 0))
{
fprintf(stderr, "Can't set directory 0 of %s. Line %d\n", filename,
__LINE__);
goto failure;
}
if (!is_requested_directory(tif, 0, filename))
{
goto failure;
}
TIFFClose(tif);
unlink(filename);
return 0;
failure:
if (tif)
{
TIFFClose(tif);
}
return 1;
} /*-- test_EXIF_enlargement --*/
/* Checks that SubIFDs on file can be overwritten if they have not grown.
* But SubIFDs cannot be re-written to another location in the file,
* because TIFFWriteDirectory() cannot determine from which main-IFD the SubIFD
* offset was taken for TIFFSetSubDirectory(). This shall result in an error
* return of TIFFWriteDirectory().
*/
int test_SubIFD_enlargement(const char *filename, bool is_big_tiff)
{
/* Define the number of sub-IFDs you are going to write */
#define NUMBER_OF_DIRS 2
#define NUMBER_OF_SUBIFDs 3
uint16_t number_of_sub_IFDs = NUMBER_OF_SUBIFDs;
toff_t sub_IFDs_offsets[NUMBER_OF_SUBIFDs] = {
0UL}; /* array for SubIFD tag */
int i;
int blnWriteSubIFD = 0;
int iIFD = 0, iSubIFD = 0;
TIFFErrorHandler errHandler = NULL;
uint64_t offsetBase[NUMBER_OF_DIRS];
/*-- Create a file and write NUMBER_OF_DIRS IFDs with
* NUMBER_OF_SUBIFDs SubIFDs to this file. --*/
TIFF *tif = TIFFOpen(filename, is_big_tiff ? "w8" : "w");
if (!tif)
{
fprintf(stderr, "Can't create %s. Testline %d\n", filename, __LINE__);
return 1;
}
for (i = 0; i < NUMBER_OF_DIRS + NUMBER_OF_SUBIFDs; i++)
{
if (write_data_to_current_directory(
tif, WIDTH, LENGTH, FALSE,
blnWriteSubIFD ? 200 + iSubIFD++ : iIFD++, true, NULL, 0))
{
fprintf(
stderr,
"Can't write data to current directory in %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
if (blnWriteSubIFD)
{
/* SUBFILETYPE tag is not mandatory for SubIFD writing, but a
* good idea to indicate thumbnails */
if (!TIFFSetField(tif, TIFFTAG_SUBFILETYPE, FILETYPE_REDUCEDIMAGE))
goto failure;
}
/* For the first multi-page image, trigger TIFFWriteDirectory() to
* switch for the next number_of_sub_IFDs calls to add those as SubIFDs
* e.g. for thumbnails */
if (0 == i)
{
blnWriteSubIFD = 1;
/* Now here is the trick: the next n directories written
* will be sub-IFDs of the main-IFD (where n is number_of_sub_IFDs
* specified when you set the TIFFTAG_SUBIFD field.
* The SubIFD offset array sub_IFDs_offsets is filled automatically
* with the proper offset values by the following number_of_sub_IFDs
* TIFFWriteDirectory() calls and are updated in the related
* main-IFD with the last call.
*/
if (!TIFFSetField(tif, TIFFTAG_SUBIFD, number_of_sub_IFDs,
sub_IFDs_offsets))
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
if (iSubIFD >= number_of_sub_IFDs)
blnWriteSubIFD = 0;
}
TIFFClose(tif);
/* Reopen prepared testfile */
tif = TIFFOpen(filename, "r+");
if (!tif)
{
fprintf(stderr, "Can't create %s\n", filename);
goto failure;
}
tdir_t numberOfMainIFDs = TIFFNumberOfDirectories(tif);
if (numberOfMainIFDs !=
(tdir_t)(NUMBER_OF_DIRS + NUMBER_OF_SUBIFDs) - number_of_sub_IFDs)
{
fprintf(stderr,
"Unexpected number of directories in %s. Expected %i, "
"found %i.\n",
filename, NUMBER_OF_DIRS - number_of_sub_IFDs,
numberOfMainIFDs);
goto failure;
}
/* Retrieve IFD offset values for later checking. */
TIFFSetDirectory(tif, 1);
offsetBase[1] = TIFFCurrentDirOffset(tif);
TIFFSetDirectory(tif, 0);
offsetBase[0] = TIFFCurrentDirOffset(tif);
/* The first directory is now read. */
/* Check if there are SubIFD subfiles */
void *ptr;
if (TIFFGetField(tif, TIFFTAG_SUBIFD, &number_of_sub_IFDs, &ptr))
{
/* Copy SubIFD array from pointer */
memcpy(sub_IFDs_offsets, ptr,
number_of_sub_IFDs * sizeof(sub_IFDs_offsets[0]));
}
/* Read first SubIFD directory */
if (!TIFFSetSubDirectory(tif, sub_IFDs_offsets[0]))
goto failure;
if (!is_requested_directory(tif, 200 + 0, filename))
{
goto failure;
}
/* Just overwrite SubIFD with smaller text. */
if (!TIFFSetField(tif, TIFFTAG_PAGENAME, "99 th. X"))
{
fprintf(stderr, "Can't set TIFFTAG_PAGENAME tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n", filename,
__LINE__);
goto failure;
}
/* Enlarging and re-writing SubIFD 1 shall fail.
* TIFFWriteDirectory() cannot determine from which main-IFD the SubIFD
* offset was taken for TIFFSetSubDirectory().
* Therefore, SubIFD can be overwritten but cannot be re-written to another
* location in the file.
*/
if (!TIFFSetSubDirectory(tif, sub_IFDs_offsets[1]))
goto failure;
if (!TIFFSetField(tif, TIFFTAG_PAGENAME,
"Long Pagename to trigger re-writing"))
{
fprintf(stderr, "Can't set TIFFTAG_PAGENAME tag. Testline %d\n",
__LINE__);
goto failure;
}
/* Suppress error message from 'TIFFRewriteDirectory()' like
* 'Error fetching directory link' or 'Sanity check...'. */
errHandler = TIFFSetErrorHandler(NULL);
if (TIFFWriteDirectory(tif))
{
fprintf(stderr, "Was expected to fail but succeeded. %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
TIFFSetErrorHandler(errHandler);
/*-- Make a little check. --*/
if (!TIFFSetDirectory(tif, 1))
{
fprintf(stderr, "Can't set directory 1 of %s. Testline %d\n", filename,
__LINE__);
goto failure;
}
if (!is_requested_directory(tif, 1, filename))
{
goto failure;
}
if (offsetBase[1] != TIFFCurrentDirOffset(tif))
{
fprintf(stderr, "IFD 1 offset has moved. %s. Line %d\n", filename,
__LINE__);
goto failure;
}
if (!TIFFSetDirectory(tif, 0))
{
fprintf(stderr, "Can't set directory 0 of %s. Line %d\n", filename,
__LINE__);
goto failure;
}
if (!is_requested_directory(tif, 0, filename))
{
goto failure;
}
if (offsetBase[0] != TIFFCurrentDirOffset(tif))
{
fprintf(stderr, "IFD 0 offset has moved. %s. Line %d\n", filename,
__LINE__);
goto failure;
}
/* Check SubIFDs */
for (i = 0; i < NUMBER_OF_SUBIFDs; i++)
{
if (!TIFFSetSubDirectory(tif, sub_IFDs_offsets[i]))
goto failure;
int k = (i == 0 ? 99 : 200 + i);
if (!is_requested_directory(tif, k, filename))
{
fprintf(stderr, "Can't read SubIFD %d of %s correctly. Line %d\n",
k, filename, __LINE__);
goto failure;
}
}
TIFFClose(tif);
unlink(filename);
return 0;
failure:
if (tif)
{
TIFFClose(tif);
}
return 1;
} /*-- test_SubIFD_enlargement --*/
/* Checks that sequences that use TIFFCheckpointDirectory() to store the current
* IFD in a file overwrite it if it has not grown, and write it to another
* location if the IFD size has grown.
*/
int test_CheckpointDirectory(const char *filename, bool is_big_tiff)
{
uint64_t auxUint64;
uint64_t offsetBase[2];
uint64_t offsetNew[2];
char auxString[128];
/*-- Create a file and write two IFDs directly to it --*/
TIFF *tif = TIFFOpen(filename, is_big_tiff ? "w8" : "w");
if (!tif)
{
fprintf(stderr, "Can't create %s. Testline %d\n", filename, __LINE__);
return 1;
}
for (int i = 0; i < 2; i++)
{
/* Writing baseline images (IFDs) to file. */
if (write_data_to_current_directory(tif, WIDTH, LENGTH, FALSE, i, true,
NULL, 0))
{
fprintf(
stderr,
"Can't write data to current directory in %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* CheckpointDirectory testing */
if (!TIFFCheckpointDirectory(tif))
{
fprintf(stderr,
"Can't checkpoint directory %d of %s. Testline %d\n", i,
filename, __LINE__);
goto failure;
}
offsetBase[i] = offsetNew[i] = TIFFCurrentDirOffset(tif);
if (i == 1)
{
/* Provoke checkpointed IFD to be re-written by TIFFWriteDirectory()
* below. */
sprintf(auxString, "%d th. IMG", i);
if (!TIFFSetField(tif, TIFFTAG_IMAGEDESCRIPTION, auxString))
{
fprintf(stderr,
"Can't set TIFFTAG_IMAGEDESCRIPTION tag. Testline %d\n",
__LINE__);
goto failure;
}
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Check IFD offsets:
* First IFD shall be overwritten (same offset) and second IFD shall be
* re-written (different offset). */
if (!TIFFSetDirectory(tif, i))
{
fprintf(stderr, "Can't set directory %d of %s. Testline %d\n", i,
filename, __LINE__);
goto failure;
}
auxUint64 = TIFFCurrentDirOffset(tif);
if ((i == 0) && (auxUint64 != offsetBase[i]))
{
fprintf(stderr,
"Checkpointed offset 0x%" PRIx64
" is different to finally written offset 0x%" PRIx64
" Testline %d\n",
auxUint64, offsetBase[i], __LINE__);
goto failure;
}
else if ((i == 1) && (auxUint64 == offsetBase[i]))
{
fprintf(stderr,
"Checkpointed offset 0x%" PRIx64
" is not different to finally written offset 0x%" PRIx64
" Testline %d\n",
auxUint64, offsetBase[i], __LINE__);
goto failure;
}
/* Update offsetNew for later use. */
offsetNew[i] = TIFFCurrentDirOffset(tif);
/* Because of TIFFSetDirectory() prepare now new empty IFD for next
* loop. */
TIFFCreateDirectory(tif);
}
TIFFClose(tif);
/* Reopen prepared testfile */
tif = TIFFOpen(filename, "r+");
if (!tif)
{
fprintf(stderr, "Can't create %s\n", filename);
goto failure;
}
/* First IFD is read. Change something and checkpoint it several times. */
/* Change IFD identification number string of PageName tag. */
sprintf(auxString, "%d th. IFD", 9);
if (!TIFFSetField(tif, TIFFTAG_PAGENAME, auxString))
{
fprintf(stderr, "Can't set TIFFTAG_PAGENAME tag.\n");
return 1;
}
if (!TIFFCheckpointDirectory(tif))
{
fprintf(stderr, "Can't checkpoint directory %d of %s. Testline %d\n", 0,
filename, __LINE__);
goto failure;
}
auxUint64 = TIFFCurrentDirOffset(tif);
if (auxUint64 != offsetBase[0])
{
fprintf(stderr,
"Checkpointed offset 0x%" PRIx64
" is different to finally written offset 0x%" PRIx64
" Testline %d\n",
auxUint64, offsetBase[0], __LINE__);
goto failure;
}
/* Provoke checkpointed IFD to be re-written due to additional tag in IFD 0.
*/
sprintf(auxString, "%d th. IMG YYY", 9);
if (!TIFFSetField(tif, TIFFTAG_IMAGEDESCRIPTION, auxString))
{
fprintf(stderr, "Can't set TIFFTAG_IMAGEDESCRIPTION tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFCheckpointDirectory(tif))
{
fprintf(stderr, "Can't checkpoint directory %d of %s. Testline %d\n", 0,
filename, __LINE__);
goto failure;
}
auxUint64 = TIFFCurrentDirOffset(tif);
if (auxUint64 == offsetBase[0])
{
fprintf(stderr,
"Checkpointed offset 0x%" PRIx64
" is NOT different to finally written offset 0x%" PRIx64
" Testline %d\n",
auxUint64, offsetBase[0], __LINE__);
goto failure;
}
offsetNew[0] = TIFFCurrentDirOffset(tif);
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n", filename,
__LINE__);
goto failure;
}
/* Close and reopen prepared testfile */
TIFFClose(tif);
tif = TIFFOpen(filename, "r+");
if (!tif)
{
fprintf(stderr, "Can't create %s\n", filename);
goto failure;
}
/*-- Make a little check. --*/
if (!TIFFSetDirectory(tif, 1))
{
fprintf(stderr, "Can't set directory 1 of %s. Testline %d\n", filename,
__LINE__);
goto failure;
}
if (!is_requested_directory(tif, 1, filename))
{
goto failure;
}
if (!TIFFSetDirectory(tif, 0))
{
fprintf(stderr, "Can't set directory 0 of %s. Line %d\n", filename,
__LINE__);
goto failure;
}
if (!is_requested_directory(tif, 9, filename))
{
goto failure;
}
TIFFClose(tif);
unlink(filename);
return 0;
failure:
if (tif)
{
TIFFClose(tif);
}
return 1;
} /*-- test_CheckpointDirectory --*/
/* LibTIFF increments IFD write-pointer always to even addresses, thus leaving 1
* byte gaps in the data space for data outside IFD entries. This routine
* checks correct handling for that.
*/
int test_OddDataSizes(const char *filename, unsigned int openMode)
{
uint64_t auxUint64;
uint64_t offsetBase;
assert(openMode < (sizeof(modeStrings) / sizeof(modeStrings[0])));
/*-- Create a file and write IFDs directly to it --*/
TIFF *tif = TIFFOpen(filename, modeStrings[openMode]);
if (!tif)
{
fprintf(stderr, "Can't create %s. Testline %d\n", filename, __LINE__);
return 1;
}
/* Write 15 byte field (14 byte + zero).
* Set it before other tags, otherwise it will be directly at EOF,
* because custom tag data are written in the sequence they are set.
* At EOF no gap will be inserted!*/
if (!TIFFSetField(tif, TIFFTAG_IMAGEDESCRIPTION, "123456789ABCDE"))
{
fprintf(stderr, "Can't set TIFFTAG_IMAGEDESCRIPTION tag. Testline %d\n",
__LINE__);
goto failure;
}
/* Writing baseline images (IFDs) to file. */
if (write_data_to_current_directory(tif, WIDTH, LENGTH, FALSE, 0, TRUE,
NULL, 0))
{
fprintf(stderr,
"Can't write data to current directory in %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n", filename,
__LINE__);
goto failure;
}
/* Now write some data so that IFD 0 ends not at EOF. */
if (write_data_to_current_directory(tif, WIDTH, LENGTH, FALSE, 1, TRUE,
NULL, 0))
{
fprintf(stderr,
"Can't write data to current directory in %s. Testline %d\n",
filename, __LINE__);
goto failure;
}
/* Now start odd / even data size testing with IFD 0 ...*/
if (!TIFFSetDirectory(tif, 0))
{
fprintf(stderr, "Can't set directory %d of %s. Testline %d\n", 0,
filename, __LINE__);
goto failure;
}
offsetBase = TIFFCurrentDirOffset(tif);
/* Write now 16 byte field (15 byte + zero), which shall be overwritten,
* because 1 byte "gap" could be used. */
if (!TIFFSetField(tif, TIFFTAG_IMAGEDESCRIPTION, "123456789ABCDEF"))
{
fprintf(stderr, "Can't set TIFFTAG_IMAGEDESCRIPTION tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n", filename,
__LINE__);
goto failure;
}
/* Check IFD offset: IFD shall be overwritten (same offset). */
if (!TIFFSetDirectory(tif, 0))
{
fprintf(stderr, "Can't set directory %d of %s. Testline %d\n", 0,
filename, __LINE__);
goto failure;
}
auxUint64 = TIFFCurrentDirOffset(tif);
if (auxUint64 != offsetBase)
{
fprintf(stderr,
"Odd to even data size: Offset 0x%" PRIx64
" is different to first written offset 0x%" PRIx64
" Testline %d\n",
auxUint64, offsetBase, __LINE__);
goto failure;
}
/* Write now 17 byte field (16 byte + zero), which shall be re-written. */
if (!TIFFSetField(tif, TIFFTAG_IMAGEDESCRIPTION, "123456789ABCDEFX"))
{
fprintf(stderr, "Can't set TIFFTAG_IMAGEDESCRIPTION tag. Testline %d\n",
__LINE__);
goto failure;
}
if (!TIFFWriteDirectory(tif))
{
fprintf(stderr, "Can't write directory to %s. Testline %d\n", filename,
__LINE__);
goto failure;
}
/* Check IFD offset: IFD shall be re-written (different offset). */
if (!TIFFSetDirectory(tif, 0))
{
fprintf(stderr, "Can't set directory %d of %s. Testline %d\n", 0,
filename, __LINE__);
goto failure;
}
auxUint64 = TIFFCurrentDirOffset(tif);
if (auxUint64 == offsetBase)
{
fprintf(stderr,
"Odd to even data size: Offset 0x%" PRIx64 " has NOT changed."
" Testline %d\n",
auxUint64, __LINE__);
goto failure;
}
TIFFClose(tif);
unlink(filename);
return 0;
failure:
if (tif)
{
TIFFClose(tif);
}
return 1;
} /*-- test_OddDataSizes --*/
int main()
{
int retval = 0;
int retvalLast = 0;
int ntest = 0;
char filename[128] = {0};
/* clang-format off */
fprintf(stderr,"==== Testing IFD enlargement (overwriting or re-writing of IFD). ====\n");
for (int tiled = 0; tiled <= 1; tiled++)
{
for (int strileWriting = 0; strileWriting <= 1; strileWriting++)
{
for (unsigned int openMode = 0; openMode < 4; openMode++)
{
sprintf(filename, "test_ifd_enlargement_%02d_%s_%s%s.tif", ntest,
modeStrings[openMode], (tiled ? "TL" : "ST"),
(strileWriting ? "_strileW" : ""));
/* clang-format off */
retval += test_IFD_enlargement(filename, openMode, strileWriting, 1, 1, 2, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
retval += test_IFD_enlargement(filename, openMode, strileWriting, 1, 6, 12, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
retval += test_IFD_enlargement(filename, openMode, strileWriting, 2, 1, 2, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
retval += test_IFD_enlargement(filename, openMode, strileWriting, 2, 6, 12, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
retval += test_IFD_enlargement(filename, openMode, strileWriting, 3, 1, 2, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
retval += test_IFD_enlargement(filename, openMode, strileWriting, 3, 6, 12, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
retval += test_IFD_enlargement(filename, openMode, strileWriting, 3, 40, 22, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
retval += test_IFD_enlargement(filename, openMode, strileWriting, 1, 20, 10, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
retval += test_IFD_enlargement(filename, openMode, strileWriting, 2, 20, 10, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
retval += test_IFD_enlargement(filename, openMode, strileWriting, 3, 20, 10, tiled); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED (openMode %s; strileWriting=%d; tiled=%d). <<<<\n\n", ntest, modeStrings[openMode], strileWriting, tiled); retvalLast = retval; }
/* clang-format on */
}
}
}
/* clang-format off */
/* test EXIF IFD, SubIFD and IFD checkpointing */
retval += test_EXIF_enlargement("test_ifd_EXIF_enlargement.tif", FALSE); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED. <<<<\n\n", ntest); retvalLast = retval; }
retval += test_EXIF_enlargement("test_ifd_EXIF_enlargementBig.tif", TRUE); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED. <<<<\n\n", ntest); retvalLast = retval; }
retval += test_SubIFD_enlargement("test_SubIFD_enlargement.tif", FALSE); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED. <<<<\n\n", ntest); retvalLast = retval; }
retval += test_SubIFD_enlargement("test_SubIFD_enlargementBig.tif", TRUE); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED. <<<<\n\n", ntest); retvalLast = retval; }
retval += test_CheckpointDirectory("test_CheckpointDirectory.tif", FALSE); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED. <<<<\n\n", ntest); retvalLast = retval; }
retval += test_CheckpointDirectory("test_CheckpointDirectoryBig.tif", TRUE); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED. <<<<\n\n", ntest); retvalLast = retval; }
retval += test_OddDataSizes("test_OddDataSizes.tif", 0); ntest++;
if (retval != retvalLast) { fprintf(stderr, " >>>> Test %d FAILED. <<<<\n\n", ntest); retvalLast = retval; }
if (!retval)
{
fprintf(stderr, "==== Testing IFD enlargement finished OK. ====\n");
}
else
{
fprintf(stderr, "==== Testing IFD enlargement finished with ERROR. ====\n");
}
return retval;
}
|