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
|
/* POLE - Portable C++ library to access OLE Storage
Copyright (C) 2002-2005 Ariya Hidayat <ariya@kde.org>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the authors nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "ooxml_pole.h"
#include <fstream>
#include <iostream>
#include <list>
#include <string>
#include <vector>
#include <QByteArray>
#include <QIODevice>
#include <string.h>
// enable to activate debugging output
// #define POLE_DEBUG
namespace OOXML_POLE
{
class Header
{
public:
unsigned char id[8]; // signature, or magic identifier
unsigned b_shift; // bbat->blockSize = 1 << b_shift
unsigned s_shift; // sbat->blockSize = 1 << s_shift
unsigned num_bat; // blocks allocated for big bat
unsigned dirent_start; // starting block for directory info
unsigned threshold; // switch from small to big file (usually 4K)
unsigned sbat_start; // starting block index to store small bat
unsigned num_sbat; // blocks allocated for small bat
unsigned mbat_start; // starting block to store meta bat
unsigned num_mbat; // blocks allocated for meta bat
unsigned long bb_blocks[109];
Header();
bool valid();
void load(const unsigned char* buffer);
void save(unsigned char* buffer);
void debug();
};
class AllocTable
{
public:
static const unsigned Eof;
static const unsigned Avail;
static const unsigned Bat;
static const unsigned MetaBat;
unsigned blockSize;
AllocTable();
void clear();
unsigned long count();
void resize(unsigned long newsize);
void preserve(unsigned long n);
void set(unsigned long index, unsigned long val);
unsigned unused();
void setChain(std::vector<unsigned long>);
std::vector<unsigned long> follow(unsigned long start);
unsigned long operator[](unsigned long index);
void load(const unsigned char* buffer, unsigned len);
void save(unsigned char* buffer);
unsigned size();
void debug();
private:
std::vector<unsigned long> data;
AllocTable(const AllocTable&);
AllocTable& operator=(const AllocTable&);
};
class DirEntry
{
public:
bool valid; // false if invalid (should be skipped)
std::string name; // the name, not in unicode anymore
bool dir; // true if directory
unsigned long size; // size (not valid if directory)
unsigned long start; // starting block
unsigned prev; // previous sibling
unsigned next; // next sibling
unsigned child; // first child
};
class DirTree
{
public:
static const unsigned End;
DirTree();
void clear();
unsigned entryCount();
DirEntry* entry(unsigned index);
DirEntry* entry(const std::string& name, bool create = false);
int indexOf(DirEntry* e);
int parent(unsigned index);
std::string fullName(unsigned index);
std::vector<unsigned> children(unsigned index);
void load(unsigned char* buffer, unsigned len);
void save(unsigned char* buffer);
unsigned size();
void debug();
private:
std::vector<DirEntry> entries;
DirTree(const DirTree&);
DirTree& operator=(const DirTree&);
};
class StorageIO
{
public:
Storage* storage; // owner
QIODevice* filename; // filename
QByteArray file;
int result; // result of operation
bool opened; // true if file is opened
unsigned long filesize; // size of the file
Header* header; // storage header
DirTree* dirtree; // directory tree
AllocTable* bbat; // allocation table for big blocks
AllocTable* sbat; // allocation table for small blocks
std::vector<unsigned long> sb_blocks; // blocks for "small" files
std::list<Stream*> streams;
StorageIO(Storage* storage, QIODevice* filename);
~StorageIO();
bool open();
void close();
void flush();
void load();
void create();
unsigned long loadBigBlocks(std::vector<unsigned long> blocks, unsigned char* buffer, unsigned long maxlen);
unsigned long loadBigBlock(unsigned long block, unsigned char* buffer, unsigned long maxlen);
unsigned long loadSmallBlocks(std::vector<unsigned long> blocks, unsigned char* buffer, unsigned long maxlen);
unsigned long loadSmallBlock(unsigned long block, unsigned char* buffer, unsigned long maxlen);
StreamIO* streamIO(const std::string& name);
private:
// no copy or assign
StorageIO(const StorageIO&);
StorageIO& operator=(const StorageIO&);
};
class StreamIO
{
public:
StorageIO* io;
DirEntry* entry;
std::string fullName;
bool eof;
bool fail;
StreamIO(StorageIO* io, DirEntry* entry);
~StreamIO();
unsigned long size();
void seek(unsigned long pos);
unsigned long tell();
int getch();
unsigned long read(unsigned char* data, unsigned long maxlen);
unsigned long read(unsigned long pos, unsigned char* data, unsigned long maxlen);
private:
std::vector<unsigned long> blocks;
// no copy or assign
StreamIO(const StreamIO&);
StreamIO& operator=(const StreamIO&);
// pointer for read
unsigned long m_pos;
// simple cache system to speed-up getch()
unsigned char* cache_data;
unsigned long cache_size;
unsigned long cache_pos;
void updateCache();
};
} // namespace OOXML_POLE
using namespace OOXML_POLE;
static inline unsigned long readU16(const unsigned char* ptr)
{
return ptr[0] + (ptr[1] << 8);
}
static inline unsigned long readU32(const unsigned char* ptr)
{
return ptr[0] + (ptr[1] << 8) + (ptr[2] << 16) + (ptr[3] << 24);
}
static inline void writeU16(unsigned char* ptr, unsigned long data)
{
ptr[0] = (unsigned char)(data & 0xff);
ptr[1] = (unsigned char)((data >> 8) & 0xff);
}
static inline void writeU32(unsigned char* ptr, unsigned long data)
{
ptr[0] = (unsigned char)(data & 0xff);
ptr[1] = (unsigned char)((data >> 8) & 0xff);
ptr[2] = (unsigned char)((data >> 16) & 0xff);
ptr[3] = (unsigned char)((data >> 24) & 0xff);
}
static const unsigned char pole_magic[] = { 0xd0, 0xcf, 0x11, 0xe0, 0xa1, 0xb1, 0x1a, 0xe1 };
// =========== Header ==========
Header::Header()
{
b_shift = 9;
s_shift = 6;
num_bat = 0;
dirent_start = 0;
threshold = 4096;
sbat_start = 0;
num_sbat = 0;
mbat_start = 0;
num_mbat = 0;
for (unsigned i = 0; i < 8; i++)
id[i] = pole_magic[i];
for (unsigned i = 0; i < 109; i++)
bb_blocks[i] = AllocTable::Avail;
}
bool Header::valid()
{
if (threshold != 4096) return false;
if (num_bat == 0) return false;
if ((num_bat > 109) && (num_bat > (num_mbat * 127) + 109)) return false;
if ((num_bat < 109) && (num_mbat != 0)) return false;
if (s_shift > b_shift) return false;
if (b_shift <= 6) return false;
if (b_shift > 12) return false;
return true;
}
void Header::load(const unsigned char* buffer)
{
b_shift = readU16(buffer + 0x1e); // sector shift
s_shift = readU16(buffer + 0x20); // mini sector shift
num_bat = readU32(buffer + 0x2c); // number of fat sectors
dirent_start = readU32(buffer + 0x30); // first directory sector location
threshold = readU32(buffer + 0x38); // transaction signature number
sbat_start = readU32(buffer + 0x3c); // mini stream cutoff size
num_sbat = readU32(buffer + 0x40); // first mini fat sector location
mbat_start = readU32(buffer + 0x44); // first mini difat sector location
num_mbat = readU32(buffer + 0x48); // number of difat sectors
for (unsigned i = 0; i < 8; i++)
id[i] = buffer[i];
for (unsigned i = 0; i < 109; i++)
bb_blocks[i] = readU32(buffer + 0x4C + i * 4);
}
void Header::save(unsigned char* buffer)
{
memset(buffer, 0, 0x4c);
memcpy(buffer, pole_magic, 8); // ole signature
writeU32(buffer + 8, 0); // unknown
writeU32(buffer + 12, 0); // unknown
writeU32(buffer + 16, 0); // unknown
writeU16(buffer + 24, 0x003e); // revision ?
writeU16(buffer + 26, 3); // version ?
writeU16(buffer + 28, 0xfffe); // unknown
writeU16(buffer + 0x1e, b_shift);
writeU16(buffer + 0x20, s_shift);
writeU32(buffer + 0x2c, num_bat);
writeU32(buffer + 0x30, dirent_start);
writeU32(buffer + 0x38, threshold);
writeU32(buffer + 0x3c, sbat_start);
writeU32(buffer + 0x40, num_sbat);
writeU32(buffer + 0x44, mbat_start);
writeU32(buffer + 0x48, num_mbat);
for (unsigned i = 0; i < 109; i++)
writeU32(buffer + 0x4C + i*4, bb_blocks[i]);
}
void Header::debug()
{
std::cout << std::endl;
std::cout << "b_shift " << b_shift << std::endl;
std::cout << "s_shift " << s_shift << std::endl;
std::cout << "num_bat " << num_bat << std::endl;
std::cout << "dirent_start " << dirent_start << std::endl;
std::cout << "threshold " << threshold << std::endl;
std::cout << "sbat_start " << sbat_start << std::endl;
std::cout << "num_sbat " << num_sbat << std::endl;
std::cout << "mbat_start " << mbat_start << std::endl;
std::cout << "num_mbat " << num_mbat << std::endl;
unsigned s = (num_bat <= 109) ? num_bat : 109;
std::cout << "bat blocks: ";
for (unsigned i = 0; i < s; i++)
std::cout << bb_blocks[i] << " ";
std::cout << std::endl;
}
// =========== AllocTable ==========
const unsigned AllocTable::Avail = 0xffffffff;
const unsigned AllocTable::Eof = 0xfffffffe;
const unsigned AllocTable::Bat = 0xfffffffd;
const unsigned AllocTable::MetaBat = 0xfffffffc;
AllocTable::AllocTable()
{
blockSize = 4096;
// initial size
resize(128);
}
unsigned long AllocTable::count()
{
return data.size();
}
void AllocTable::resize(unsigned long newsize)
{
unsigned oldsize = data.size();
data.resize(newsize);
if (newsize > oldsize)
for (unsigned i = oldsize; i < newsize; i++)
data[i] = Avail;
}
// make sure there're still free blocks
void AllocTable::preserve(unsigned long n)
{
std::vector<unsigned long> pre;
for (unsigned i = 0; i < n; i++)
pre.push_back(unused());
}
unsigned long AllocTable::operator[](unsigned long index)
{
unsigned long result;
result = data[index];
return result;
}
void AllocTable::set(unsigned long index, unsigned long value)
{
if (index >= count()) resize(index + 1);
data[ index ] = value;
}
void AllocTable::setChain(std::vector<unsigned long> chain)
{
if (chain.size()) {
for (unsigned i = 0; i < chain.size() - 1; i++)
set(chain[i], chain[i+1]);
set(chain[ chain.size()-1 ], AllocTable::Eof);
}
}
// TODO: optimize this with better search
static bool already_exist(const std::vector<unsigned long>& chain, unsigned long item)
{
for(unsigned i = 0; i < chain.size(); i++)
if(chain[i] == item) return true;
return false;
}
// follow
std::vector<unsigned long> AllocTable::follow(unsigned long start)
{
std::vector<unsigned long> chain;
if (start >= count()) return chain;
unsigned long p = start;
while (p < count()) {
if (p == (unsigned long)Eof) break;
if (p == (unsigned long)Bat) break;
if (p == (unsigned long)MetaBat) break;
if (already_exist(chain, p)) break;
chain.push_back(p);
if (data[p] >= count()) break;
p = data[ p ];
}
return chain;
}
unsigned AllocTable::unused()
{
// find first available block
for (unsigned i = 0; i < data.size(); i++)
if (data[i] == Avail)
return i;
// completely full, so enlarge the table
unsigned block = data.size();
resize(data.size() + 10);
return block;
}
void AllocTable::load(const unsigned char* buffer, unsigned len)
{
resize(len / 4);
for (unsigned i = 0; i < count(); i++)
set(i, readU32(buffer + i*4));
}
// return space required to save this dirtree
unsigned AllocTable::size()
{
return count() * 4;
}
void AllocTable::save(unsigned char* buffer)
{
for (unsigned i = 0; i < count(); i++)
writeU32(buffer + i*4, data[i]);
}
void AllocTable::debug()
{
std::cout << "block size " << data.size() << std::endl;
for (unsigned i = 0; i < data.size(); i++) {
if (data[i] == Avail) continue;
std::cout << i << ": ";
if (data[i] == Eof) std::cout << "[eof]";
else if (data[i] == Bat) std::cout << "[bat]";
else if (data[i] == MetaBat) std::cout << "[metabat]";
else std::cout << data[i];
std::cout << std::endl;
}
}
// =========== DirTree ==========
const unsigned DirTree::End = 0xffffffff;
DirTree::DirTree()
{
clear();
}
void DirTree::clear()
{
// leave only root entry
entries.resize(1);
entries[0].valid = true;
entries[0].name = "Root Entry";
entries[0].dir = true;
entries[0].size = 0;
entries[0].start = End;
entries[0].prev = End;
entries[0].next = End;
entries[0].child = End;
}
unsigned DirTree::entryCount()
{
return entries.size();
}
DirEntry* DirTree::entry(unsigned index)
{
if (index >= entryCount()) return (DirEntry*) 0;
return &entries[ index ];
}
int DirTree::indexOf(DirEntry* e)
{
for (unsigned i = 0; i < entryCount(); i++)
if (entry(i) == e) return i;
return -1;
}
int DirTree::parent(unsigned index)
{
// brute-force, basically we iterate for each entries, find its children
// and check if one of the children is 'index'
for (unsigned j = 0; j < entryCount(); j++) {
std::vector<unsigned> chi = children(j);
for (unsigned i = 0; i < chi.size();i++)
if (chi[i] == index)
return j;
}
return -1;
}
std::string DirTree::fullName(unsigned index)
{
// don't use root name ("Root Entry"), just give "/"
if (index == 0) return "/";
std::string result = entry(index)->name;
result.insert(0, "/");
int p = parent(index);
DirEntry * _entry = 0;
while (p > 0) {
_entry = entry(p);
if (_entry->dir && _entry->valid) {
result.insert(0, _entry->name);
result.insert(0, "/");
}
--p;
index = p;
if (index <= 0) break;
}
return result;
}
// given a fullname (e.g "/ObjectPool/_1020961869"), find the entry
// if not found and create is false, return 0
// if create is true, a new entry is returned
DirEntry* DirTree::entry(const std::string& name, bool create)
{
if (!name.length()) return (DirEntry*)0;
// quick check for "/" (that's root)
if (name == "/") return entry(0);
// split the names, e.g "/ObjectPool/_1020961869" will become:
// "ObjectPool" and "_1020961869"
std::list<std::string> names;
std::string::size_type start = 0, end = 0;
if (name[0] == '/') start++;
while (start < name.length()) {
end = name.find_first_of('/', start);
if (end == std::string::npos) end = name.length();
names.push_back(name.substr(start, end - start));
start = end + 1;
}
// start from root
int index = 0 ;
// trace one by one
std::list<std::string>::iterator it;
for (it = names.begin(); it != names.end(); ++it) {
// find among the children of index
std::vector<unsigned> chi = children(index);
unsigned child = 0;
for (unsigned i = 0; i < chi.size(); i++) {
DirEntry* ce = entry(chi[i]);
if (ce)
if (ce->valid && (ce->name.length() > 1))
if (ce->name == *it)
child = chi[i];
}
// traverse to the child
if (child > 0) index = child;
else {
// not found among children
if (!create) return (DirEntry*)0;
// create a new entry
unsigned parent = index;
entries.push_back(DirEntry());
index = entryCount() - 1;
DirEntry* e = entry(index);
e->valid = true;
e->name = *it;
e->dir = false;
e->size = 0;
e->start = 0;
e->child = End;
e->prev = End;
e->next = entry(parent)->child;
entry(parent)->child = index;
}
}
return entry(index);
}
// helper function: recursively find siblings of index
void dirtree_find_siblings(DirTree* dirtree, std::vector<unsigned>& result,
unsigned index)
{
DirEntry* e = dirtree->entry(index);
if (!e) return;
if (!e->valid) return;
// prevent infinite loop
for (unsigned i = 0; i < result.size(); i++)
if (result[i] == index) return;
// add myself
result.push_back(index);
// visit previous sibling, don't go infinitely
unsigned prev = e->prev;
if ((prev > 0) && (prev < dirtree->entryCount())) {
for (unsigned i = 0; i < result.size(); i++)
if (result[i] == prev) prev = 0;
if (prev) dirtree_find_siblings(dirtree, result, prev);
}
// visit next sibling, don't go infinitely
unsigned next = e->next;
if ((next > 0) && (next < dirtree->entryCount())) {
for (unsigned i = 0; i < result.size(); i++)
if (result[i] == next) next = 0;
if (next) dirtree_find_siblings(dirtree, result, next);
}
}
std::vector<unsigned> DirTree::children(unsigned index)
{
std::vector<unsigned> result;
DirEntry* e = entry(index);
if (e) if (e->valid && e->child < entryCount())
dirtree_find_siblings(this, result, e->child);
return result;
}
void DirTree::load(unsigned char* buffer, unsigned size)
{
entries.clear();
for (unsigned i = 0; i < size / 128; i++) {
unsigned p = i * 128;
// would be < 32 if first char in the name isn't printable
// parse name of this entry, which stored as Unicode 16-bit
std::string name;
int name_len = readU16(buffer + 0x40 + p);
if (name_len > 64) name_len = 64;
for (int j = 0; (buffer[j+p]) && (j < name_len); j += 2)
name.append(1, buffer[j+p]);
// first char isn't printable ? remove it...
if (buffer[p] < 32) {
name.erase(0, 1);
}
// 2 = file (aka stream), 1 = directory (aka storage), 5 = root
unsigned type = buffer[ 0x42 + p];
DirEntry e;
e.valid = true;
e.name = name;
e.start = readU32(buffer + 0x74 + p);
e.size = readU32(buffer + 0x78 + p);
e.prev = readU32(buffer + 0x44 + p);
e.next = readU32(buffer + 0x48 + p);
e.child = readU32(buffer + 0x4C + p);
e.dir = (type != 2);
// sanity checks
if ((type != 2) && (type != 1) && (type != 5)) e.valid = false;
if (name_len < 1) e.valid = false;
// CLSID, contains a object class GUI if this entry is a storage or root
// storage or all zero if not.
#ifdef POLE_DEBUG
printf("DirTree::load name=%s type=%i prev=%i next=%i child=%i start=%i size=%i clsid=%i.%i.%i.%i\n",
name.c_str(),type,e.prev,e.next,e.child,e.start,e.size,readU32(buffer+0x50+p),readU32(buffer+0x54+p),readU32(buffer+0x58+p),readU32(buffer+0x5C+p));
#endif
entries.push_back(e);
}
}
// return space required to save this dirtree
unsigned DirTree::size()
{
return entryCount() * 128;
}
void DirTree::save(unsigned char* buffer)
{
memset(buffer, 0, size());
// root is fixed as "Root Entry"
DirEntry* root = entry(0);
std::string name = "Root Entry";
for (unsigned j = 0; j < name.length(); j++)
buffer[ j*2 ] = name[j];
writeU16(buffer + 0x40, name.length()*2 + 2);
writeU32(buffer + 0x74, 0xffffffff);
writeU32(buffer + 0x78, 0);
writeU32(buffer + 0x44, 0xffffffff);
writeU32(buffer + 0x48, 0xffffffff);
writeU32(buffer + 0x4c, root->child);
buffer[ 0x42 ] = 5;
buffer[ 0x43 ] = 1;
for (unsigned i = 1; i < entryCount(); i++) {
DirEntry* e = entry(i);
if (!e) continue;
if (e->dir) {
e->start = 0xffffffff;
e->size = 0;
}
// max length for name is 32 chars
std::string name = e->name;
if (name.length() > 32)
name.erase(32, name.length());
// write name as Unicode 16-bit
for (unsigned j = 0; j < name.length(); j++)
buffer[ i*128 + j*2 ] = name[j];
writeU16(buffer + i*128 + 0x40, name.length()*2 + 2);
writeU32(buffer + i*128 + 0x74, e->start);
writeU32(buffer + i*128 + 0x78, e->size);
writeU32(buffer + i*128 + 0x44, e->prev);
writeU32(buffer + i*128 + 0x48, e->next);
writeU32(buffer + i*128 + 0x4c, e->child);
buffer[ i*128 + 0x42 ] = e->dir ? 1 : 2;
buffer[ i*128 + 0x43 ] = 1; // always black
}
}
void DirTree::debug()
{
for (unsigned i = 0; i < entryCount(); i++) {
DirEntry* e = entry(i);
if (!e) continue;
std::cout << i << ": ";
if (!e->valid) std::cout << "INVALID ";
std::cout << e->name << " ";
if (e->dir) std::cout << "(Dir) ";
else std::cout << "(File) ";
std::cout << e->size << " ";
std::cout << "s:" << e->start << " ";
std::cout << "(";
if (e->child == End) std::cout << "-"; else std::cout << e->child;
std::cout << " ";
if (e->prev == End) std::cout << "-"; else std::cout << e->prev;
std::cout << ":";
if (e->next == End) std::cout << "-"; else std::cout << e->next;
std::cout << ")";
std::cout << std::endl;
}
}
// =========== StorageIO ==========
StorageIO::StorageIO(Storage* st, QIODevice* fname)
{
storage = st;
filename = fname;
result = Storage::Ok;
opened = false;
header = new Header();
dirtree = new DirTree();
bbat = new AllocTable();
sbat = new AllocTable();
filesize = 0;
bbat->blockSize = 1 << header->b_shift;
sbat->blockSize = 1 << header->s_shift;
}
StorageIO::~StorageIO()
{
if (opened) close();
delete sbat;
delete bbat;
delete dirtree;
delete header;
}
bool StorageIO::open()
{
// already opened ? close first
if (opened) close();
load();
return result == Storage::Ok;
}
void StorageIO::load()
{
unsigned char* buffer = 0;
unsigned long buflen = 0;
std::vector<unsigned long> blocks;
// open the file, check for error
result = Storage::OpenFailed;
//file.open(filename.c_str(), std::ios::binary | std::ios::in);
if (!filename->isReadable()) {
return;
}
// find size of input file
//file.seekg(0, std::ios::end);
//filesize = file.tellg();
// The reason we read QIODevice completely and put it to QByteArray is
// that QIODevice return by KZipEntry does not seem to work very well,
// that is, bytesAvailable, seek and read behave oddly
// This also means that the current solution is not optimal for large files
file = filename->readAll();
filesize = file.length();
// load header
buffer = new unsigned char[512];
//file->seek(0);
//file->read((char*)buffer, 512);
memcpy(buffer, file.mid(0, 512).data(), 512);
if (!filename->isReadable()) {
delete[] buffer;
return;
}
header->load(buffer);
delete[] buffer;
// check OLE magic id
result = Storage::NotOLE;
for (unsigned i = 0; i < 8; i++)
if (header->id[i] != pole_magic[i])
return;
// sanity checks
result = Storage::BadOLE;
if (!header->valid()) return;
if (header->threshold != 4096) return;
// important block size
bbat->blockSize = 1 << header->b_shift;
sbat->blockSize = 1 << header->s_shift;
// find blocks allocated to store big bat
// the first 109 blocks are in header, the rest in meta bat
blocks.clear();
blocks.resize(header->num_bat);
for (unsigned i = 0; i < 109; i++)
if (i >= header->num_bat) break;
else blocks[i] = header->bb_blocks[i];
if ((header->num_bat > 109) && (header->num_mbat > 0)) {
unsigned char* buffer2 = new unsigned char[ bbat->blockSize ];
unsigned k = 109;
unsigned mblock = header->mbat_start;
for (unsigned r = 0; r < header->num_mbat; r++) {
unsigned long rr = loadBigBlock(mblock, buffer2, bbat->blockSize);
if (rr != bbat->blockSize) {
delete[] buffer2;
return;
}
for (unsigned s = 0; s < bbat->blockSize - 4; s += 4) {
if (k >= header->num_bat) break;
else blocks[k++] = readU32(buffer2 + s);
}
mblock = readU32(buffer2 + bbat->blockSize - 4);
}
delete[] buffer2;
}
// load big bat
buflen = blocks.size() * bbat->blockSize;
if (buflen > 0) {
buffer = new unsigned char[ buflen ];
unsigned long r = loadBigBlocks(blocks, buffer, buflen);
if (r != buflen) {
delete[] buffer;
return;
}
bbat->load(buffer, buflen);
delete[] buffer;
}
// load small bat
blocks.clear();
blocks = bbat->follow(header->sbat_start);
buflen = blocks.size() * bbat->blockSize;
if (buflen > 0) {
buffer = new unsigned char[ buflen ];
unsigned long r = loadBigBlocks(blocks, buffer, buflen);
if (r != buflen) {
delete[] buffer;
return;
}
sbat->load(buffer, buflen);
delete[] buffer;
}
// load directory tree
blocks.clear();
blocks = bbat->follow(header->dirent_start);
buflen = blocks.size() * bbat->blockSize;
buffer = new unsigned char[ buflen ];
unsigned long r = loadBigBlocks(blocks, buffer, buflen);
if (r != buflen) {
delete[] buffer;
return;
}
dirtree->load(buffer, buflen);
unsigned sb_start = readU32(buffer + 0x74);
delete[] buffer;
// fetch block chain as data for small-files
sb_blocks = bbat->follow(sb_start); // small files
// for troubleshooting, just enable this block
#ifdef POLE_DEBUG
header->debug();
sbat->debug();
bbat->debug();
dirtree->debug();
#endif
// so far so good
result = Storage::Ok;
opened = true;
}
void StorageIO::create()
{
// std::cout << "Creating " << filename << std::endl;
//file.open(filename.c_str(), std::ios::out | std::ios::binary);
if (!filename->isReadable()) {
//std::cerr << "Can't create " << filename << std::endl;
result = Storage::OpenFailed;
return;
}
// so far so good
opened = true;
result = Storage::Ok;
}
void StorageIO::flush()
{
/* Note on Microsoft implementation:
- directory entries are stored in the last block(s)
- BATs are as second to the last
- Meta BATs are third to the last
*/
}
void StorageIO::close()
{
if (!opened) return;
//file->close();
opened = false;
std::list<Stream*>::iterator it;
for (it = streams.begin(); it != streams.end(); ++it)
delete *it;
}
StreamIO* StorageIO::streamIO(const std::string& name)
{
// sanity check
if (!name.length()) return (StreamIO*)0;
// search in the entries
DirEntry* entry = dirtree->entry(name);
//if( entry) std::cout << "FOUND\n";
if (!entry) return (StreamIO*)0;
//if( !entry->dir ) std::cout << " NOT DIR\n";
if (entry->dir) return (StreamIO*)0;
StreamIO* result = new StreamIO(this, entry);
result->fullName = name;
return result;
}
unsigned long StorageIO::loadBigBlocks(std::vector<unsigned long> blocks,
unsigned char* data, unsigned long maxlen)
{
// sentinel
if (!data) return 0;
if (!filename->isReadable()) return 0;
if (blocks.size() < 1) return 0;
if (maxlen == 0) return 0;
// read block one by one, seems fast enough
unsigned long bytes = 0;
for (unsigned long i = 0; (i < blocks.size()) && (bytes < maxlen); i++) {
unsigned long block = blocks[i];
unsigned long pos = bbat->blockSize * (block + 1);
unsigned long p = (bbat->blockSize < maxlen - bytes) ? bbat->blockSize : maxlen - bytes;
if (pos + p > filesize) p = filesize - pos;
//file->seek(pos);
//file->read((char*)data + bytes, p);
memcpy((char*)data + bytes, file.mid(pos, p), p);
if (!filename->isReadable()) return 0;
bytes += p;
}
return bytes;
}
unsigned long StorageIO::loadBigBlock(unsigned long block,
unsigned char* data, unsigned long maxlen)
{
// sentinel
if (!data) return 0;
if (!filename->isReadable()) return 0;
// wraps call for loadBigBlocks
std::vector<unsigned long> blocks;
blocks.resize(1);
blocks[ 0 ] = block;
return loadBigBlocks(blocks, data, maxlen);
}
// return number of bytes which has been read
unsigned long StorageIO::loadSmallBlocks(std::vector<unsigned long> blocks,
unsigned char* data, unsigned long maxlen)
{
// sentinel
if (!data) return 0;
if (!filename->isReadable()) return 0;
if (blocks.size() < 1) return 0;
if (maxlen == 0) return 0;
// our own local buffer
unsigned char* buf = new unsigned char[ bbat->blockSize ];
// read small block one by one
unsigned long bytes = 0;
for (unsigned long i = 0; (i < blocks.size()) && (bytes < maxlen); i++) {
unsigned long block = blocks[i];
// find where the small-block exactly is
unsigned long pos = block * sbat->blockSize;
unsigned long bbindex = pos / bbat->blockSize;
if (bbindex >= sb_blocks.size()) break;
unsigned long r = loadBigBlock(sb_blocks[ bbindex ], buf, bbat->blockSize);
if (r != bbat->blockSize) {
delete[] buf;
return 0;
}
// copy the data
unsigned offset = pos % bbat->blockSize;
unsigned long p = (maxlen - bytes < bbat->blockSize - offset) ? maxlen - bytes : bbat->blockSize - offset;
p = (sbat->blockSize < p) ? sbat->blockSize : p;
memcpy(data + bytes, buf + offset, p);
bytes += p;
}
delete[] buf;
return bytes;
}
unsigned long StorageIO::loadSmallBlock(unsigned long block,
unsigned char* data, unsigned long maxlen)
{
// sentinel
if (!data) return 0;
if (!filename->isReadable()) return 0;
// wraps call for loadSmallBlocks
std::vector<unsigned long> blocks;
blocks.resize(1);
blocks.assign(1, block);
return loadSmallBlocks(blocks, data, maxlen);
}
// =========== StreamIO ==========
StreamIO::StreamIO(StorageIO* s, DirEntry* e)
{
io = s;
entry = e;
eof = false;
fail = false;
m_pos = 0;
if (entry->size >= io->header->threshold)
blocks = io->bbat->follow(entry->start);
else
blocks = io->sbat->follow(entry->start);
// prepare cache
cache_pos = 0;
cache_size = 4096; // optimal ?
cache_data = new unsigned char[cache_size];
updateCache();
}
// FIXME tell parent we're gone
StreamIO::~StreamIO()
{
delete[] cache_data;
}
void StreamIO::seek(unsigned long pos)
{
m_pos = pos;
}
unsigned long StreamIO::tell()
{
return m_pos;
}
int StreamIO::getch()
{
// past end-of-file ?
if (m_pos > entry->size) return -1;
// need to update cache ?
if (!cache_size || (m_pos < cache_pos) ||
(m_pos >= cache_pos + cache_size))
updateCache();
// something bad if we don't get good cache
if (!cache_size) return -1;
int data = cache_data[m_pos - cache_pos];
m_pos++;
return data;
}
unsigned long StreamIO::read(unsigned long pos, unsigned char* data, unsigned long maxlen)
{
// sanity checks
if (!data) return 0;
if (maxlen == 0) return 0;
unsigned long totalbytes = 0;
if (entry->size < io->header->threshold) {
// small file
unsigned long index = pos / io->sbat->blockSize;
if (index >= blocks.size()) return 0;
unsigned char buf[4096];
unsigned long offset = pos % io->sbat->blockSize;
while (totalbytes < maxlen) {
if (index >= blocks.size()) break;
io->loadSmallBlock(blocks[index], &buf[0], io->bbat->blockSize);
unsigned long count = io->sbat->blockSize - offset;
if (count > maxlen - totalbytes) count = maxlen - totalbytes;
memcpy(data + totalbytes, &buf[0] + offset, count);
totalbytes += count;
offset = 0;
index++;
}
} else {
// big file
unsigned long index = pos / io->bbat->blockSize;
if (index >= blocks.size()) return 0;
unsigned char buf[4096];
unsigned long offset = pos % io->bbat->blockSize;
while (totalbytes < maxlen) {
if (index >= blocks.size()) break;
unsigned long r = io->loadBigBlock(blocks[index], &buf[0], io->bbat->blockSize);
if (r != io->bbat->blockSize) {
return 0;
}
unsigned long count = io->bbat->blockSize - offset;
if (count > maxlen - totalbytes) count = maxlen - totalbytes;
memcpy(data + totalbytes, &buf[0] + offset, count);
totalbytes += count;
index++;
offset = 0;
}
}
return totalbytes;
}
unsigned long StreamIO::read(unsigned char* data, unsigned long maxlen)
{
unsigned long bytes = read(tell(), data, maxlen);
m_pos += bytes;
return bytes;
}
void StreamIO::updateCache()
{
// sanity check
if (!cache_data) return;
cache_pos = m_pos - (m_pos % cache_size);
unsigned long bytes = cache_size;
if (cache_pos + bytes > entry->size) bytes = entry->size - cache_pos;
cache_size = read(cache_pos, cache_data, bytes);
}
// =========== Storage ==========
Storage::Storage(QIODevice* file)
{
io = new StorageIO(this, file);
}
Storage::~Storage()
{
delete io;
}
int Storage::result()
{
return io->result;
}
bool Storage::open()
{
return io->open();
}
void Storage::close()
{
io->close();
}
std::list<std::string> Storage::entries(const std::string& path)
{
std::list<std::string> result;
DirTree* dt = io->dirtree;
DirEntry* e = dt->entry(path, false);
if (e) {
if (e->dir) {
unsigned parent = dt->indexOf(e);
std::vector<unsigned> children = dt->children(parent);
for (unsigned i = 0; i < children.size(); i++)
result.push_back(dt->entry(children[i])->name);
}
}
return result;
}
bool Storage::isDirectory(const std::string& name)
{
DirEntry* e = io->dirtree->entry(name, false);
return e ? e->dir : false;
}
// =========== Stream ==========
Stream::Stream(Storage* storage, const std::string& name)
{
io = storage->io->streamIO(name);
}
// FIXME tell parent we're gone
Stream::~Stream()
{
delete io;
}
std::string Stream::fullName()
{
return io ? io->fullName : std::string();
}
unsigned long Stream::tell()
{
return io ? io->tell() : 0;
}
void Stream::seek(unsigned long newpos)
{
if (io) io->seek(newpos);
}
unsigned long Stream::size()
{
return io ? io->entry->size : 0;
}
int Stream::getch()
{
return io ? io->getch() : 0;
}
unsigned long Stream::read(unsigned char* data, unsigned long maxlen)
{
return io ? io->read(data, maxlen) : 0;
}
bool Stream::eof()
{
return io ? io->eof : false;
}
bool Stream::fail()
{
return io ? io->fail : true;
}
|