cdf.c 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368
  1. /*-
  2. * Copyright (c) 2008 Christos Zoulas
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
  15. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  16. * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  17. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
  18. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  19. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  20. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  21. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  22. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  23. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  24. * POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. /*
  27. * Parse Composite Document Files, the format used in Microsoft Office
  28. * document files before they switched to zipped XML.
  29. * Info from: http://sc.openoffice.org/compdocfileformat.pdf
  30. *
  31. * N.B. This is the "Composite Document File" format, and not the
  32. * "Compound Document Format", nor the "Channel Definition Format".
  33. */
  34. #include "file.h"
  35. #ifndef lint
  36. FILE_RCSID("@(#)$File: cdf.c,v 1.55 2014/02/27 23:26:17 christos Exp $")
  37. #endif
  38. #include <assert.h>
  39. #ifdef CDF_DEBUG
  40. #include <err.h>
  41. #endif
  42. #include <stdlib.h>
  43. #ifdef PHP_WIN32
  44. #include "win32/unistd.h"
  45. #else
  46. #include <unistd.h>
  47. #endif
  48. #ifndef UINT32_MAX
  49. # define UINT32_MAX (0xffffffff)
  50. #endif
  51. #include <string.h>
  52. #include <time.h>
  53. #include <ctype.h>
  54. #ifdef HAVE_LIMITS_H
  55. #include <limits.h>
  56. #endif
  57. #ifndef EFTYPE
  58. #define EFTYPE EINVAL
  59. #endif
  60. #include "cdf.h"
  61. #ifdef CDF_DEBUG
  62. #define DPRINTF(a) printf a, fflush(stdout)
  63. #else
  64. #define DPRINTF(a)
  65. #endif
  66. static union {
  67. char s[4];
  68. uint32_t u;
  69. } cdf_bo;
  70. #define NEED_SWAP (cdf_bo.u == (uint32_t)0x01020304)
  71. #define CDF_TOLE8(x) ((uint64_t)(NEED_SWAP ? _cdf_tole8(x) : (uint64_t)(x)))
  72. #define CDF_TOLE4(x) ((uint32_t)(NEED_SWAP ? _cdf_tole4(x) : (uint32_t)(x)))
  73. #define CDF_TOLE2(x) ((uint16_t)(NEED_SWAP ? _cdf_tole2(x) : (uint16_t)(x)))
  74. #define CDF_GETUINT32(x, y) cdf_getuint32(x, y)
  75. /*
  76. * swap a short
  77. */
  78. static uint16_t
  79. _cdf_tole2(uint16_t sv)
  80. {
  81. uint16_t rv;
  82. uint8_t *s = (uint8_t *)(void *)&sv;
  83. uint8_t *d = (uint8_t *)(void *)&rv;
  84. d[0] = s[1];
  85. d[1] = s[0];
  86. return rv;
  87. }
  88. /*
  89. * swap an int
  90. */
  91. static uint32_t
  92. _cdf_tole4(uint32_t sv)
  93. {
  94. uint32_t rv;
  95. uint8_t *s = (uint8_t *)(void *)&sv;
  96. uint8_t *d = (uint8_t *)(void *)&rv;
  97. d[0] = s[3];
  98. d[1] = s[2];
  99. d[2] = s[1];
  100. d[3] = s[0];
  101. return rv;
  102. }
  103. /*
  104. * swap a quad
  105. */
  106. static uint64_t
  107. _cdf_tole8(uint64_t sv)
  108. {
  109. uint64_t rv;
  110. uint8_t *s = (uint8_t *)(void *)&sv;
  111. uint8_t *d = (uint8_t *)(void *)&rv;
  112. d[0] = s[7];
  113. d[1] = s[6];
  114. d[2] = s[5];
  115. d[3] = s[4];
  116. d[4] = s[3];
  117. d[5] = s[2];
  118. d[6] = s[1];
  119. d[7] = s[0];
  120. return rv;
  121. }
  122. /*
  123. * grab a uint32_t from a possibly unaligned address, and return it in
  124. * the native host order.
  125. */
  126. static uint32_t
  127. cdf_getuint32(const uint8_t *p, size_t offs)
  128. {
  129. uint32_t rv;
  130. (void)memcpy(&rv, p + offs * sizeof(uint32_t), sizeof(rv));
  131. return CDF_TOLE4(rv);
  132. }
  133. #define CDF_UNPACK(a) \
  134. (void)memcpy(&(a), &buf[len], sizeof(a)), len += sizeof(a)
  135. #define CDF_UNPACKA(a) \
  136. (void)memcpy((a), &buf[len], sizeof(a)), len += sizeof(a)
  137. uint16_t
  138. cdf_tole2(uint16_t sv)
  139. {
  140. return CDF_TOLE2(sv);
  141. }
  142. uint32_t
  143. cdf_tole4(uint32_t sv)
  144. {
  145. return CDF_TOLE4(sv);
  146. }
  147. uint64_t
  148. cdf_tole8(uint64_t sv)
  149. {
  150. return CDF_TOLE8(sv);
  151. }
  152. void
  153. cdf_swap_header(cdf_header_t *h)
  154. {
  155. size_t i;
  156. h->h_magic = CDF_TOLE8(h->h_magic);
  157. h->h_uuid[0] = CDF_TOLE8(h->h_uuid[0]);
  158. h->h_uuid[1] = CDF_TOLE8(h->h_uuid[1]);
  159. h->h_revision = CDF_TOLE2(h->h_revision);
  160. h->h_version = CDF_TOLE2(h->h_version);
  161. h->h_byte_order = CDF_TOLE2(h->h_byte_order);
  162. h->h_sec_size_p2 = CDF_TOLE2(h->h_sec_size_p2);
  163. h->h_short_sec_size_p2 = CDF_TOLE2(h->h_short_sec_size_p2);
  164. h->h_num_sectors_in_sat = CDF_TOLE4(h->h_num_sectors_in_sat);
  165. h->h_secid_first_directory = CDF_TOLE4(h->h_secid_first_directory);
  166. h->h_min_size_standard_stream =
  167. CDF_TOLE4(h->h_min_size_standard_stream);
  168. h->h_secid_first_sector_in_short_sat =
  169. CDF_TOLE4((uint32_t)h->h_secid_first_sector_in_short_sat);
  170. h->h_num_sectors_in_short_sat =
  171. CDF_TOLE4(h->h_num_sectors_in_short_sat);
  172. h->h_secid_first_sector_in_master_sat =
  173. CDF_TOLE4((uint32_t)h->h_secid_first_sector_in_master_sat);
  174. h->h_num_sectors_in_master_sat =
  175. CDF_TOLE4(h->h_num_sectors_in_master_sat);
  176. for (i = 0; i < __arraycount(h->h_master_sat); i++)
  177. h->h_master_sat[i] = CDF_TOLE4((uint32_t)h->h_master_sat[i]);
  178. }
  179. void
  180. cdf_unpack_header(cdf_header_t *h, char *buf)
  181. {
  182. size_t i;
  183. size_t len = 0;
  184. CDF_UNPACK(h->h_magic);
  185. CDF_UNPACKA(h->h_uuid);
  186. CDF_UNPACK(h->h_revision);
  187. CDF_UNPACK(h->h_version);
  188. CDF_UNPACK(h->h_byte_order);
  189. CDF_UNPACK(h->h_sec_size_p2);
  190. CDF_UNPACK(h->h_short_sec_size_p2);
  191. CDF_UNPACKA(h->h_unused0);
  192. CDF_UNPACK(h->h_num_sectors_in_sat);
  193. CDF_UNPACK(h->h_secid_first_directory);
  194. CDF_UNPACKA(h->h_unused1);
  195. CDF_UNPACK(h->h_min_size_standard_stream);
  196. CDF_UNPACK(h->h_secid_first_sector_in_short_sat);
  197. CDF_UNPACK(h->h_num_sectors_in_short_sat);
  198. CDF_UNPACK(h->h_secid_first_sector_in_master_sat);
  199. CDF_UNPACK(h->h_num_sectors_in_master_sat);
  200. for (i = 0; i < __arraycount(h->h_master_sat); i++)
  201. CDF_UNPACK(h->h_master_sat[i]);
  202. }
  203. void
  204. cdf_swap_dir(cdf_directory_t *d)
  205. {
  206. d->d_namelen = CDF_TOLE2(d->d_namelen);
  207. d->d_left_child = CDF_TOLE4((uint32_t)d->d_left_child);
  208. d->d_right_child = CDF_TOLE4((uint32_t)d->d_right_child);
  209. d->d_storage = CDF_TOLE4((uint32_t)d->d_storage);
  210. d->d_storage_uuid[0] = CDF_TOLE8(d->d_storage_uuid[0]);
  211. d->d_storage_uuid[1] = CDF_TOLE8(d->d_storage_uuid[1]);
  212. d->d_flags = CDF_TOLE4(d->d_flags);
  213. d->d_created = CDF_TOLE8((uint64_t)d->d_created);
  214. d->d_modified = CDF_TOLE8((uint64_t)d->d_modified);
  215. d->d_stream_first_sector = CDF_TOLE4((uint32_t)d->d_stream_first_sector);
  216. d->d_size = CDF_TOLE4(d->d_size);
  217. }
  218. void
  219. cdf_swap_class(cdf_classid_t *d)
  220. {
  221. d->cl_dword = CDF_TOLE4(d->cl_dword);
  222. d->cl_word[0] = CDF_TOLE2(d->cl_word[0]);
  223. d->cl_word[1] = CDF_TOLE2(d->cl_word[1]);
  224. }
  225. void
  226. cdf_unpack_dir(cdf_directory_t *d, char *buf)
  227. {
  228. size_t len = 0;
  229. CDF_UNPACKA(d->d_name);
  230. CDF_UNPACK(d->d_namelen);
  231. CDF_UNPACK(d->d_type);
  232. CDF_UNPACK(d->d_color);
  233. CDF_UNPACK(d->d_left_child);
  234. CDF_UNPACK(d->d_right_child);
  235. CDF_UNPACK(d->d_storage);
  236. CDF_UNPACKA(d->d_storage_uuid);
  237. CDF_UNPACK(d->d_flags);
  238. CDF_UNPACK(d->d_created);
  239. CDF_UNPACK(d->d_modified);
  240. CDF_UNPACK(d->d_stream_first_sector);
  241. CDF_UNPACK(d->d_size);
  242. CDF_UNPACK(d->d_unused0);
  243. }
  244. static int
  245. cdf_check_stream_offset(const cdf_stream_t *sst, const cdf_header_t *h,
  246. const void *p, size_t tail, int line)
  247. {
  248. const char *b = (const char *)sst->sst_tab;
  249. const char *e = ((const char *)p) + tail;
  250. size_t ss = sst->sst_dirlen < h->h_min_size_standard_stream ?
  251. CDF_SHORT_SEC_SIZE(h) : CDF_SEC_SIZE(h);
  252. (void)&line;
  253. if (e >= b && (size_t)(e - b) <= ss * sst->sst_len)
  254. return 0;
  255. DPRINTF(("%d: offset begin %p < end %p || %" SIZE_T_FORMAT "u"
  256. " > %" SIZE_T_FORMAT "u [%" SIZE_T_FORMAT "u %"
  257. SIZE_T_FORMAT "u]\n", line, b, e, (size_t)(e - b),
  258. ss * sst->sst_len, ss, sst->sst_len));
  259. errno = EFTYPE;
  260. return -1;
  261. }
  262. static ssize_t
  263. cdf_read(const cdf_info_t *info, off_t off, void *buf, size_t len)
  264. {
  265. size_t siz = (size_t)off + len;
  266. if ((off_t)(off + len) != (off_t)siz) {
  267. errno = EINVAL;
  268. return -1;
  269. }
  270. if (info->i_buf != NULL && info->i_len >= siz) {
  271. (void)memcpy(buf, &info->i_buf[off], len);
  272. return (ssize_t)len;
  273. }
  274. if (info->i_fd == -1)
  275. return -1;
  276. if (FINFO_LSEEK_FUNC(info->i_fd, off, SEEK_SET) == (off_t)-1)
  277. return -1;
  278. if (FINFO_READ_FUNC(info->i_fd, buf, len) != (ssize_t)len)
  279. return -1;
  280. return (ssize_t)len;
  281. }
  282. int
  283. cdf_read_header(const cdf_info_t *info, cdf_header_t *h)
  284. {
  285. char buf[512];
  286. (void)memcpy(cdf_bo.s, "\01\02\03\04", 4);
  287. if (cdf_read(info, (off_t)0, buf, sizeof(buf)) == -1)
  288. return -1;
  289. cdf_unpack_header(h, buf);
  290. cdf_swap_header(h);
  291. if (h->h_magic != CDF_MAGIC) {
  292. DPRINTF(("Bad magic 0x%" INT64_T_FORMAT "x != 0x%"
  293. INT64_T_FORMAT "x\n",
  294. (unsigned long long)h->h_magic,
  295. (unsigned long long)CDF_MAGIC));
  296. goto out;
  297. }
  298. if (h->h_sec_size_p2 > 20) {
  299. DPRINTF(("Bad sector size 0x%u\n", h->h_sec_size_p2));
  300. goto out;
  301. }
  302. if (h->h_short_sec_size_p2 > 20) {
  303. DPRINTF(("Bad short sector size 0x%u\n",
  304. h->h_short_sec_size_p2));
  305. goto out;
  306. }
  307. return 0;
  308. out:
  309. errno = EFTYPE;
  310. return -1;
  311. }
  312. ssize_t
  313. cdf_read_sector(const cdf_info_t *info, void *buf, size_t offs, size_t len,
  314. const cdf_header_t *h, cdf_secid_t id)
  315. {
  316. size_t ss = CDF_SEC_SIZE(h);
  317. size_t pos = CDF_SEC_POS(h, id);
  318. assert(ss == len);
  319. return cdf_read(info, (off_t)pos, ((char *)buf) + offs, len);
  320. }
  321. ssize_t
  322. cdf_read_short_sector(const cdf_stream_t *sst, void *buf, size_t offs,
  323. size_t len, const cdf_header_t *h, cdf_secid_t id)
  324. {
  325. size_t ss = CDF_SHORT_SEC_SIZE(h);
  326. size_t pos = CDF_SHORT_SEC_POS(h, id);
  327. assert(ss == len);
  328. if (pos + len > CDF_SEC_SIZE(h) * sst->sst_len) {
  329. DPRINTF(("Out of bounds read %" SIZE_T_FORMAT "u > %"
  330. SIZE_T_FORMAT "u\n",
  331. pos + len, CDF_SEC_SIZE(h) * sst->sst_len));
  332. return -1;
  333. }
  334. (void)memcpy(((char *)buf) + offs,
  335. ((const char *)sst->sst_tab) + pos, len);
  336. return len;
  337. }
  338. /*
  339. * Read the sector allocation table.
  340. */
  341. int
  342. cdf_read_sat(const cdf_info_t *info, cdf_header_t *h, cdf_sat_t *sat)
  343. {
  344. size_t i, j, k;
  345. size_t ss = CDF_SEC_SIZE(h);
  346. cdf_secid_t *msa, mid, sec;
  347. size_t nsatpersec = (ss / sizeof(mid)) - 1;
  348. for (i = 0; i < __arraycount(h->h_master_sat); i++)
  349. if (h->h_master_sat[i] == CDF_SECID_FREE)
  350. break;
  351. #define CDF_SEC_LIMIT (UINT32_MAX / (4 * ss))
  352. if ((nsatpersec > 0 &&
  353. h->h_num_sectors_in_master_sat > CDF_SEC_LIMIT / nsatpersec) ||
  354. i > CDF_SEC_LIMIT) {
  355. DPRINTF(("Number of sectors in master SAT too big %u %"
  356. SIZE_T_FORMAT "u\n", h->h_num_sectors_in_master_sat, i));
  357. errno = EFTYPE;
  358. return -1;
  359. }
  360. sat->sat_len = h->h_num_sectors_in_master_sat * nsatpersec + i;
  361. DPRINTF(("sat_len = %" SIZE_T_FORMAT "u ss = %" SIZE_T_FORMAT "u\n",
  362. sat->sat_len, ss));
  363. if ((sat->sat_tab = CAST(cdf_secid_t *, calloc(sat->sat_len, ss)))
  364. == NULL)
  365. return -1;
  366. for (i = 0; i < __arraycount(h->h_master_sat); i++) {
  367. if (h->h_master_sat[i] < 0)
  368. break;
  369. if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h,
  370. h->h_master_sat[i]) != (ssize_t)ss) {
  371. DPRINTF(("Reading sector %d", h->h_master_sat[i]));
  372. goto out1;
  373. }
  374. }
  375. if ((msa = CAST(cdf_secid_t *, calloc(1, ss))) == NULL)
  376. goto out1;
  377. mid = h->h_secid_first_sector_in_master_sat;
  378. for (j = 0; j < h->h_num_sectors_in_master_sat; j++) {
  379. if (mid < 0)
  380. goto out;
  381. if (j >= CDF_LOOP_LIMIT) {
  382. DPRINTF(("Reading master sector loop limit"));
  383. errno = EFTYPE;
  384. goto out2;
  385. }
  386. if (cdf_read_sector(info, msa, 0, ss, h, mid) != (ssize_t)ss) {
  387. DPRINTF(("Reading master sector %d", mid));
  388. goto out2;
  389. }
  390. for (k = 0; k < nsatpersec; k++, i++) {
  391. sec = CDF_TOLE4((uint32_t)msa[k]);
  392. if (sec < 0)
  393. goto out;
  394. if (i >= sat->sat_len) {
  395. DPRINTF(("Out of bounds reading MSA %" SIZE_T_FORMAT
  396. "u >= %" SIZE_T_FORMAT "u", i, sat->sat_len));
  397. errno = EFTYPE;
  398. goto out2;
  399. }
  400. if (cdf_read_sector(info, sat->sat_tab, ss * i, ss, h,
  401. sec) != (ssize_t)ss) {
  402. DPRINTF(("Reading sector %d",
  403. CDF_TOLE4(msa[k])));
  404. goto out2;
  405. }
  406. }
  407. mid = CDF_TOLE4((uint32_t)msa[nsatpersec]);
  408. }
  409. out:
  410. sat->sat_len = i;
  411. free(msa);
  412. return 0;
  413. out2:
  414. free(msa);
  415. out1:
  416. free(sat->sat_tab);
  417. return -1;
  418. }
  419. size_t
  420. cdf_count_chain(const cdf_sat_t *sat, cdf_secid_t sid, size_t size)
  421. {
  422. size_t i, j;
  423. cdf_secid_t maxsector = (cdf_secid_t)((sat->sat_len * size)
  424. / sizeof(maxsector));
  425. DPRINTF(("Chain:"));
  426. for (j = i = 0; sid >= 0; i++, j++) {
  427. DPRINTF((" %d", sid));
  428. if (j >= CDF_LOOP_LIMIT) {
  429. DPRINTF(("Counting chain loop limit"));
  430. errno = EFTYPE;
  431. return (size_t)-1;
  432. }
  433. if (sid >= maxsector) {
  434. DPRINTF(("Sector %d >= %d\n", sid, maxsector));
  435. errno = EFTYPE;
  436. return (size_t)-1;
  437. }
  438. sid = CDF_TOLE4((uint32_t)sat->sat_tab[sid]);
  439. }
  440. DPRINTF(("\n"));
  441. return i;
  442. }
  443. int
  444. cdf_read_long_sector_chain(const cdf_info_t *info, const cdf_header_t *h,
  445. const cdf_sat_t *sat, cdf_secid_t sid, size_t len, cdf_stream_t *scn)
  446. {
  447. size_t ss = CDF_SEC_SIZE(h), i, j;
  448. ssize_t nr;
  449. scn->sst_len = cdf_count_chain(sat, sid, ss);
  450. scn->sst_dirlen = len;
  451. if (scn->sst_len == (size_t)-1)
  452. return -1;
  453. scn->sst_tab = calloc(scn->sst_len, ss);
  454. if (scn->sst_tab == NULL)
  455. return -1;
  456. for (j = i = 0; sid >= 0; i++, j++) {
  457. if (j >= CDF_LOOP_LIMIT) {
  458. DPRINTF(("Read long sector chain loop limit"));
  459. errno = EFTYPE;
  460. goto out;
  461. }
  462. if (i >= scn->sst_len) {
  463. DPRINTF(("Out of bounds reading long sector chain "
  464. "%" SIZE_T_FORMAT "u > %" SIZE_T_FORMAT "u\n", i,
  465. scn->sst_len));
  466. errno = EFTYPE;
  467. goto out;
  468. }
  469. if ((nr = cdf_read_sector(info, scn->sst_tab, i * ss, ss, h,
  470. sid)) != (ssize_t)ss) {
  471. if (i == scn->sst_len - 1 && nr > 0) {
  472. /* Last sector might be truncated */
  473. return 0;
  474. }
  475. DPRINTF(("Reading long sector chain %d", sid));
  476. goto out;
  477. }
  478. sid = CDF_TOLE4((uint32_t)sat->sat_tab[sid]);
  479. }
  480. return 0;
  481. out:
  482. free(scn->sst_tab);
  483. return -1;
  484. }
  485. int
  486. cdf_read_short_sector_chain(const cdf_header_t *h,
  487. const cdf_sat_t *ssat, const cdf_stream_t *sst,
  488. cdf_secid_t sid, size_t len, cdf_stream_t *scn)
  489. {
  490. size_t ss = CDF_SHORT_SEC_SIZE(h), i, j;
  491. scn->sst_len = cdf_count_chain(ssat, sid, CDF_SEC_SIZE(h));
  492. scn->sst_dirlen = len;
  493. if (sst->sst_tab == NULL || scn->sst_len == (size_t)-1)
  494. return -1;
  495. scn->sst_tab = calloc(scn->sst_len, ss);
  496. if (scn->sst_tab == NULL)
  497. return -1;
  498. for (j = i = 0; sid >= 0; i++, j++) {
  499. if (j >= CDF_LOOP_LIMIT) {
  500. DPRINTF(("Read short sector chain loop limit"));
  501. errno = EFTYPE;
  502. goto out;
  503. }
  504. if (i >= scn->sst_len) {
  505. DPRINTF(("Out of bounds reading short sector chain "
  506. "%" SIZE_T_FORMAT "u > %" SIZE_T_FORMAT "u\n",
  507. i, scn->sst_len));
  508. errno = EFTYPE;
  509. goto out;
  510. }
  511. if (cdf_read_short_sector(sst, scn->sst_tab, i * ss, ss, h,
  512. sid) != (ssize_t)ss) {
  513. DPRINTF(("Reading short sector chain %d", sid));
  514. goto out;
  515. }
  516. sid = CDF_TOLE4((uint32_t)ssat->sat_tab[sid]);
  517. }
  518. return 0;
  519. out:
  520. free(scn->sst_tab);
  521. return -1;
  522. }
  523. int
  524. cdf_read_sector_chain(const cdf_info_t *info, const cdf_header_t *h,
  525. const cdf_sat_t *sat, const cdf_sat_t *ssat, const cdf_stream_t *sst,
  526. cdf_secid_t sid, size_t len, cdf_stream_t *scn)
  527. {
  528. if (len < h->h_min_size_standard_stream && sst->sst_tab != NULL)
  529. return cdf_read_short_sector_chain(h, ssat, sst, sid, len,
  530. scn);
  531. else
  532. return cdf_read_long_sector_chain(info, h, sat, sid, len, scn);
  533. }
  534. int
  535. cdf_read_dir(const cdf_info_t *info, const cdf_header_t *h,
  536. const cdf_sat_t *sat, cdf_dir_t *dir)
  537. {
  538. size_t i, j;
  539. size_t ss = CDF_SEC_SIZE(h), ns, nd;
  540. char *buf;
  541. cdf_secid_t sid = h->h_secid_first_directory;
  542. ns = cdf_count_chain(sat, sid, ss);
  543. if (ns == (size_t)-1)
  544. return -1;
  545. nd = ss / CDF_DIRECTORY_SIZE;
  546. dir->dir_len = ns * nd;
  547. dir->dir_tab = CAST(cdf_directory_t *,
  548. calloc(dir->dir_len, sizeof(dir->dir_tab[0])));
  549. if (dir->dir_tab == NULL)
  550. return -1;
  551. if ((buf = CAST(char *, malloc(ss))) == NULL) {
  552. free(dir->dir_tab);
  553. return -1;
  554. }
  555. for (j = i = 0; i < ns; i++, j++) {
  556. if (j >= CDF_LOOP_LIMIT) {
  557. DPRINTF(("Read dir loop limit"));
  558. errno = EFTYPE;
  559. goto out;
  560. }
  561. if (cdf_read_sector(info, buf, 0, ss, h, sid) != (ssize_t)ss) {
  562. DPRINTF(("Reading directory sector %d", sid));
  563. goto out;
  564. }
  565. for (j = 0; j < nd; j++) {
  566. cdf_unpack_dir(&dir->dir_tab[i * nd + j],
  567. &buf[j * CDF_DIRECTORY_SIZE]);
  568. }
  569. sid = CDF_TOLE4((uint32_t)sat->sat_tab[sid]);
  570. }
  571. if (NEED_SWAP)
  572. for (i = 0; i < dir->dir_len; i++)
  573. cdf_swap_dir(&dir->dir_tab[i]);
  574. free(buf);
  575. return 0;
  576. out:
  577. free(dir->dir_tab);
  578. free(buf);
  579. return -1;
  580. }
  581. int
  582. cdf_read_ssat(const cdf_info_t *info, const cdf_header_t *h,
  583. const cdf_sat_t *sat, cdf_sat_t *ssat)
  584. {
  585. size_t i, j;
  586. size_t ss = CDF_SEC_SIZE(h);
  587. cdf_secid_t sid = h->h_secid_first_sector_in_short_sat;
  588. ssat->sat_len = cdf_count_chain(sat, sid, CDF_SEC_SIZE(h));
  589. if (ssat->sat_len == (size_t)-1)
  590. return -1;
  591. ssat->sat_tab = CAST(cdf_secid_t *, calloc(ssat->sat_len, ss));
  592. if (ssat->sat_tab == NULL)
  593. return -1;
  594. for (j = i = 0; sid >= 0; i++, j++) {
  595. if (j >= CDF_LOOP_LIMIT) {
  596. DPRINTF(("Read short sat sector loop limit"));
  597. errno = EFTYPE;
  598. goto out;
  599. }
  600. if (i >= ssat->sat_len) {
  601. DPRINTF(("Out of bounds reading short sector chain "
  602. "%" SIZE_T_FORMAT "u > %" SIZE_T_FORMAT "u\n", i,
  603. ssat->sat_len));
  604. errno = EFTYPE;
  605. goto out;
  606. }
  607. if (cdf_read_sector(info, ssat->sat_tab, i * ss, ss, h, sid) !=
  608. (ssize_t)ss) {
  609. DPRINTF(("Reading short sat sector %d", sid));
  610. goto out;
  611. }
  612. sid = CDF_TOLE4((uint32_t)sat->sat_tab[sid]);
  613. }
  614. return 0;
  615. out:
  616. free(ssat->sat_tab);
  617. return -1;
  618. }
  619. int
  620. cdf_read_short_stream(const cdf_info_t *info, const cdf_header_t *h,
  621. const cdf_sat_t *sat, const cdf_dir_t *dir, cdf_stream_t *scn,
  622. const cdf_directory_t **root)
  623. {
  624. size_t i;
  625. const cdf_directory_t *d;
  626. *root = NULL;
  627. for (i = 0; i < dir->dir_len; i++)
  628. if (dir->dir_tab[i].d_type == CDF_DIR_TYPE_ROOT_STORAGE)
  629. break;
  630. /* If the it is not there, just fake it; some docs don't have it */
  631. if (i == dir->dir_len)
  632. goto out;
  633. d = &dir->dir_tab[i];
  634. *root = d;
  635. /* If the it is not there, just fake it; some docs don't have it */
  636. if (d->d_stream_first_sector < 0)
  637. goto out;
  638. return cdf_read_long_sector_chain(info, h, sat,
  639. d->d_stream_first_sector, d->d_size, scn);
  640. out:
  641. scn->sst_tab = NULL;
  642. scn->sst_len = 0;
  643. scn->sst_dirlen = 0;
  644. return 0;
  645. }
  646. static int
  647. cdf_namecmp(const char *d, const uint16_t *s, size_t l)
  648. {
  649. for (; l--; d++, s++)
  650. if (*d != CDF_TOLE2(*s))
  651. return (unsigned char)*d - CDF_TOLE2(*s);
  652. return 0;
  653. }
  654. int
  655. cdf_read_summary_info(const cdf_info_t *info, const cdf_header_t *h,
  656. const cdf_sat_t *sat, const cdf_sat_t *ssat, const cdf_stream_t *sst,
  657. const cdf_dir_t *dir, cdf_stream_t *scn)
  658. {
  659. size_t i;
  660. const cdf_directory_t *d;
  661. static const char name[] = "\05SummaryInformation";
  662. for (i = dir->dir_len; i > 0; i--)
  663. if (dir->dir_tab[i - 1].d_type == CDF_DIR_TYPE_USER_STREAM &&
  664. cdf_namecmp(name, dir->dir_tab[i - 1].d_name, sizeof(name))
  665. == 0)
  666. break;
  667. if (i == 0) {
  668. DPRINTF(("Cannot find summary information section\n"));
  669. errno = ESRCH;
  670. return -1;
  671. }
  672. d = &dir->dir_tab[i - 1];
  673. return cdf_read_sector_chain(info, h, sat, ssat, sst,
  674. d->d_stream_first_sector, d->d_size, scn);
  675. }
  676. int
  677. cdf_read_property_info(const cdf_stream_t *sst, const cdf_header_t *h,
  678. uint32_t offs, cdf_property_info_t **info, size_t *count, size_t *maxcount)
  679. {
  680. const cdf_section_header_t *shp;
  681. cdf_section_header_t sh;
  682. const uint8_t *p, *q, *e;
  683. int16_t s16;
  684. int32_t s32;
  685. uint32_t u32;
  686. int64_t s64;
  687. uint64_t u64;
  688. cdf_timestamp_t tp;
  689. size_t i, o, o4, nelements, j;
  690. cdf_property_info_t *inp;
  691. if (offs > UINT32_MAX / 4) {
  692. errno = EFTYPE;
  693. goto out;
  694. }
  695. shp = CAST(const cdf_section_header_t *, (const void *)
  696. ((const char *)sst->sst_tab + offs));
  697. if (cdf_check_stream_offset(sst, h, shp, sizeof(*shp), __LINE__) == -1)
  698. goto out;
  699. sh.sh_len = CDF_TOLE4(shp->sh_len);
  700. #define CDF_SHLEN_LIMIT (UINT32_MAX / 8)
  701. if (sh.sh_len > CDF_SHLEN_LIMIT) {
  702. errno = EFTYPE;
  703. goto out;
  704. }
  705. sh.sh_properties = CDF_TOLE4(shp->sh_properties);
  706. #define CDF_PROP_LIMIT (UINT32_MAX / (4 * sizeof(*inp)))
  707. if (sh.sh_properties > CDF_PROP_LIMIT)
  708. goto out;
  709. DPRINTF(("section len: %u properties %u\n", sh.sh_len,
  710. sh.sh_properties));
  711. if (*maxcount) {
  712. if (*maxcount > CDF_PROP_LIMIT)
  713. goto out;
  714. *maxcount += sh.sh_properties;
  715. inp = CAST(cdf_property_info_t *,
  716. realloc(*info, *maxcount * sizeof(*inp)));
  717. } else {
  718. *maxcount = sh.sh_properties;
  719. inp = CAST(cdf_property_info_t *,
  720. malloc(*maxcount * sizeof(*inp)));
  721. }
  722. if (inp == NULL)
  723. goto out;
  724. *info = inp;
  725. inp += *count;
  726. *count += sh.sh_properties;
  727. p = CAST(const uint8_t *, (const void *)
  728. ((const char *)(const void *)sst->sst_tab +
  729. offs + sizeof(sh)));
  730. e = CAST(const uint8_t *, (const void *)
  731. (((const char *)(const void *)shp) + sh.sh_len));
  732. if (cdf_check_stream_offset(sst, h, e, 0, __LINE__) == -1)
  733. goto out;
  734. for (i = 0; i < sh.sh_properties; i++) {
  735. size_t ofs, tail = (i << 1) + 1;
  736. if (cdf_check_stream_offset(sst, h, p, tail * sizeof(uint32_t),
  737. __LINE__) == -1)
  738. goto out;
  739. ofs = CDF_GETUINT32(p, tail);
  740. q = (const uint8_t *)(const void *)
  741. ((const char *)(const void *)p + ofs
  742. - 2 * sizeof(uint32_t));
  743. if (q < p || q > e) {
  744. DPRINTF(("Ran of the end %p > %p\n", q, e));
  745. goto out;
  746. }
  747. inp[i].pi_id = CDF_GETUINT32(p, i << 1);
  748. inp[i].pi_type = CDF_GETUINT32(q, 0);
  749. DPRINTF(("%" SIZE_T_FORMAT "u) id=%x type=%x offs=0x%tx,0x%x\n",
  750. i, inp[i].pi_id, inp[i].pi_type, q - p, offs));
  751. if (inp[i].pi_type & CDF_VECTOR) {
  752. nelements = CDF_GETUINT32(q, 1);
  753. if (nelements == 0) {
  754. DPRINTF(("CDF_VECTOR with nelements == 0\n"));
  755. goto out;
  756. }
  757. o = 2;
  758. } else {
  759. nelements = 1;
  760. o = 1;
  761. }
  762. o4 = o * sizeof(uint32_t);
  763. if (inp[i].pi_type & (CDF_ARRAY|CDF_BYREF|CDF_RESERVED))
  764. goto unknown;
  765. switch (inp[i].pi_type & CDF_TYPEMASK) {
  766. case CDF_NULL:
  767. case CDF_EMPTY:
  768. break;
  769. case CDF_SIGNED16:
  770. if (inp[i].pi_type & CDF_VECTOR)
  771. goto unknown;
  772. (void)memcpy(&s16, &q[o4], sizeof(s16));
  773. inp[i].pi_s16 = CDF_TOLE2(s16);
  774. break;
  775. case CDF_SIGNED32:
  776. if (inp[i].pi_type & CDF_VECTOR)
  777. goto unknown;
  778. (void)memcpy(&s32, &q[o4], sizeof(s32));
  779. inp[i].pi_s32 = CDF_TOLE4((uint32_t)s32);
  780. break;
  781. case CDF_BOOL:
  782. case CDF_UNSIGNED32:
  783. if (inp[i].pi_type & CDF_VECTOR)
  784. goto unknown;
  785. (void)memcpy(&u32, &q[o4], sizeof(u32));
  786. inp[i].pi_u32 = CDF_TOLE4(u32);
  787. break;
  788. case CDF_SIGNED64:
  789. if (inp[i].pi_type & CDF_VECTOR)
  790. goto unknown;
  791. (void)memcpy(&s64, &q[o4], sizeof(s64));
  792. inp[i].pi_s64 = CDF_TOLE8((uint64_t)s64);
  793. break;
  794. case CDF_UNSIGNED64:
  795. if (inp[i].pi_type & CDF_VECTOR)
  796. goto unknown;
  797. (void)memcpy(&u64, &q[o4], sizeof(u64));
  798. inp[i].pi_u64 = CDF_TOLE8((uint64_t)u64);
  799. break;
  800. case CDF_FLOAT:
  801. if (inp[i].pi_type & CDF_VECTOR)
  802. goto unknown;
  803. (void)memcpy(&u32, &q[o4], sizeof(u32));
  804. u32 = CDF_TOLE4(u32);
  805. memcpy(&inp[i].pi_f, &u32, sizeof(inp[i].pi_f));
  806. break;
  807. case CDF_DOUBLE:
  808. if (inp[i].pi_type & CDF_VECTOR)
  809. goto unknown;
  810. (void)memcpy(&u64, &q[o4], sizeof(u64));
  811. u64 = CDF_TOLE8((uint64_t)u64);
  812. memcpy(&inp[i].pi_d, &u64, sizeof(inp[i].pi_d));
  813. break;
  814. case CDF_LENGTH32_STRING:
  815. case CDF_LENGTH32_WSTRING:
  816. if (nelements > 1) {
  817. size_t nelem = inp - *info;
  818. if (*maxcount > CDF_PROP_LIMIT
  819. || nelements > CDF_PROP_LIMIT)
  820. goto out;
  821. *maxcount += nelements;
  822. inp = CAST(cdf_property_info_t *,
  823. realloc(*info, *maxcount * sizeof(*inp)));
  824. if (inp == NULL)
  825. goto out;
  826. *info = inp;
  827. inp = *info + nelem;
  828. }
  829. DPRINTF(("nelements = %" SIZE_T_FORMAT "u\n",
  830. nelements));
  831. for (j = 0; j < nelements && i < sh.sh_properties;
  832. j++, i++)
  833. {
  834. uint32_t l = CDF_GETUINT32(q, o);
  835. inp[i].pi_str.s_len = l;
  836. inp[i].pi_str.s_buf = (const char *)
  837. (const void *)(&q[o4 + sizeof(l)]);
  838. DPRINTF(("l = %d, r = %" SIZE_T_FORMAT
  839. "u, s = %s\n", l,
  840. CDF_ROUND(l, sizeof(l)),
  841. inp[i].pi_str.s_buf));
  842. if (l & 1)
  843. l++;
  844. o += l >> 1;
  845. if (q + o >= e)
  846. goto out;
  847. o4 = o * sizeof(uint32_t);
  848. }
  849. i--;
  850. break;
  851. case CDF_FILETIME:
  852. if (inp[i].pi_type & CDF_VECTOR)
  853. goto unknown;
  854. (void)memcpy(&tp, &q[o4], sizeof(tp));
  855. inp[i].pi_tp = CDF_TOLE8((uint64_t)tp);
  856. break;
  857. case CDF_CLIPBOARD:
  858. if (inp[i].pi_type & CDF_VECTOR)
  859. goto unknown;
  860. break;
  861. default:
  862. unknown:
  863. DPRINTF(("Don't know how to deal with %x\n",
  864. inp[i].pi_type));
  865. break;
  866. }
  867. }
  868. return 0;
  869. out:
  870. free(*info);
  871. return -1;
  872. }
  873. int
  874. cdf_unpack_summary_info(const cdf_stream_t *sst, const cdf_header_t *h,
  875. cdf_summary_info_header_t *ssi, cdf_property_info_t **info, size_t *count)
  876. {
  877. size_t maxcount;
  878. const cdf_summary_info_header_t *si =
  879. CAST(const cdf_summary_info_header_t *, sst->sst_tab);
  880. const cdf_section_declaration_t *sd =
  881. CAST(const cdf_section_declaration_t *, (const void *)
  882. ((const char *)sst->sst_tab + CDF_SECTION_DECLARATION_OFFSET));
  883. if (cdf_check_stream_offset(sst, h, si, sizeof(*si), __LINE__) == -1 ||
  884. cdf_check_stream_offset(sst, h, sd, sizeof(*sd), __LINE__) == -1)
  885. return -1;
  886. ssi->si_byte_order = CDF_TOLE2(si->si_byte_order);
  887. ssi->si_os_version = CDF_TOLE2(si->si_os_version);
  888. ssi->si_os = CDF_TOLE2(si->si_os);
  889. ssi->si_class = si->si_class;
  890. cdf_swap_class(&ssi->si_class);
  891. ssi->si_count = CDF_TOLE4(si->si_count);
  892. *count = 0;
  893. maxcount = 0;
  894. *info = NULL;
  895. if (cdf_read_property_info(sst, h, CDF_TOLE4(sd->sd_offset), info,
  896. count, &maxcount) == -1)
  897. return -1;
  898. return 0;
  899. }
  900. int
  901. cdf_print_classid(char *buf, size_t buflen, const cdf_classid_t *id)
  902. {
  903. return snprintf(buf, buflen, "%.8x-%.4x-%.4x-%.2x%.2x-"
  904. "%.2x%.2x%.2x%.2x%.2x%.2x", id->cl_dword, id->cl_word[0],
  905. id->cl_word[1], id->cl_two[0], id->cl_two[1], id->cl_six[0],
  906. id->cl_six[1], id->cl_six[2], id->cl_six[3], id->cl_six[4],
  907. id->cl_six[5]);
  908. }
  909. static const struct {
  910. uint32_t v;
  911. const char *n;
  912. } vn[] = {
  913. { CDF_PROPERTY_CODE_PAGE, "Code page" },
  914. { CDF_PROPERTY_TITLE, "Title" },
  915. { CDF_PROPERTY_SUBJECT, "Subject" },
  916. { CDF_PROPERTY_AUTHOR, "Author" },
  917. { CDF_PROPERTY_KEYWORDS, "Keywords" },
  918. { CDF_PROPERTY_COMMENTS, "Comments" },
  919. { CDF_PROPERTY_TEMPLATE, "Template" },
  920. { CDF_PROPERTY_LAST_SAVED_BY, "Last Saved By" },
  921. { CDF_PROPERTY_REVISION_NUMBER, "Revision Number" },
  922. { CDF_PROPERTY_TOTAL_EDITING_TIME, "Total Editing Time" },
  923. { CDF_PROPERTY_LAST_PRINTED, "Last Printed" },
  924. { CDF_PROPERTY_CREATE_TIME, "Create Time/Date" },
  925. { CDF_PROPERTY_LAST_SAVED_TIME, "Last Saved Time/Date" },
  926. { CDF_PROPERTY_NUMBER_OF_PAGES, "Number of Pages" },
  927. { CDF_PROPERTY_NUMBER_OF_WORDS, "Number of Words" },
  928. { CDF_PROPERTY_NUMBER_OF_CHARACTERS, "Number of Characters" },
  929. { CDF_PROPERTY_THUMBNAIL, "Thumbnail" },
  930. { CDF_PROPERTY_NAME_OF_APPLICATION, "Name of Creating Application" },
  931. { CDF_PROPERTY_SECURITY, "Security" },
  932. { CDF_PROPERTY_LOCALE_ID, "Locale ID" },
  933. };
  934. int
  935. cdf_print_property_name(char *buf, size_t bufsiz, uint32_t p)
  936. {
  937. size_t i;
  938. for (i = 0; i < __arraycount(vn); i++)
  939. if (vn[i].v == p)
  940. return snprintf(buf, bufsiz, "%s", vn[i].n);
  941. return snprintf(buf, bufsiz, "0x%x", p);
  942. }
  943. int
  944. cdf_print_elapsed_time(char *buf, size_t bufsiz, cdf_timestamp_t ts)
  945. {
  946. int len = 0;
  947. int days, hours, mins, secs;
  948. ts /= CDF_TIME_PREC;
  949. secs = (int)(ts % 60);
  950. ts /= 60;
  951. mins = (int)(ts % 60);
  952. ts /= 60;
  953. hours = (int)(ts % 24);
  954. ts /= 24;
  955. days = (int)ts;
  956. if (days) {
  957. len += snprintf(buf + len, bufsiz - len, "%dd+", days);
  958. if ((size_t)len >= bufsiz)
  959. return len;
  960. }
  961. if (days || hours) {
  962. len += snprintf(buf + len, bufsiz - len, "%.2d:", hours);
  963. if ((size_t)len >= bufsiz)
  964. return len;
  965. }
  966. len += snprintf(buf + len, bufsiz - len, "%.2d:", mins);
  967. if ((size_t)len >= bufsiz)
  968. return len;
  969. len += snprintf(buf + len, bufsiz - len, "%.2d", secs);
  970. return len;
  971. }
  972. #ifdef CDF_DEBUG
  973. void
  974. cdf_dump_header(const cdf_header_t *h)
  975. {
  976. size_t i;
  977. #define DUMP(a, b) (void)fprintf(stderr, "%40.40s = " a "\n", # b, h->h_ ## b)
  978. #define DUMP2(a, b) (void)fprintf(stderr, "%40.40s = " a " (" a ")\n", # b, \
  979. h->h_ ## b, 1 << h->h_ ## b)
  980. DUMP("%d", revision);
  981. DUMP("%d", version);
  982. DUMP("0x%x", byte_order);
  983. DUMP2("%d", sec_size_p2);
  984. DUMP2("%d", short_sec_size_p2);
  985. DUMP("%d", num_sectors_in_sat);
  986. DUMP("%d", secid_first_directory);
  987. DUMP("%d", min_size_standard_stream);
  988. DUMP("%d", secid_first_sector_in_short_sat);
  989. DUMP("%d", num_sectors_in_short_sat);
  990. DUMP("%d", secid_first_sector_in_master_sat);
  991. DUMP("%d", num_sectors_in_master_sat);
  992. for (i = 0; i < __arraycount(h->h_master_sat); i++) {
  993. if (h->h_master_sat[i] == CDF_SECID_FREE)
  994. break;
  995. (void)fprintf(stderr, "%35.35s[%.3zu] = %d\n",
  996. "master_sat", i, h->h_master_sat[i]);
  997. }
  998. }
  999. void
  1000. cdf_dump_sat(const char *prefix, const cdf_sat_t *sat, size_t size)
  1001. {
  1002. size_t i, j, s = size / sizeof(cdf_secid_t);
  1003. for (i = 0; i < sat->sat_len; i++) {
  1004. (void)fprintf(stderr, "%s[%" SIZE_T_FORMAT "u]:\n%.6"
  1005. SIZE_T_FORMAT "u: ", prefix, i, i * s);
  1006. for (j = 0; j < s; j++) {
  1007. (void)fprintf(stderr, "%5d, ",
  1008. CDF_TOLE4(sat->sat_tab[s * i + j]));
  1009. if ((j + 1) % 10 == 0)
  1010. (void)fprintf(stderr, "\n%.6" SIZE_T_FORMAT
  1011. "u: ", i * s + j + 1);
  1012. }
  1013. (void)fprintf(stderr, "\n");
  1014. }
  1015. }
  1016. void
  1017. cdf_dump(void *v, size_t len)
  1018. {
  1019. size_t i, j;
  1020. unsigned char *p = v;
  1021. char abuf[16];
  1022. (void)fprintf(stderr, "%.4x: ", 0);
  1023. for (i = 0, j = 0; i < len; i++, p++) {
  1024. (void)fprintf(stderr, "%.2x ", *p);
  1025. abuf[j++] = isprint(*p) ? *p : '.';
  1026. if (j == 16) {
  1027. j = 0;
  1028. abuf[15] = '\0';
  1029. (void)fprintf(stderr, "%s\n%.4" SIZE_T_FORMAT "x: ",
  1030. abuf, i + 1);
  1031. }
  1032. }
  1033. (void)fprintf(stderr, "\n");
  1034. }
  1035. void
  1036. cdf_dump_stream(const cdf_header_t *h, const cdf_stream_t *sst)
  1037. {
  1038. size_t ss = sst->sst_dirlen < h->h_min_size_standard_stream ?
  1039. CDF_SHORT_SEC_SIZE(h) : CDF_SEC_SIZE(h);
  1040. cdf_dump(sst->sst_tab, ss * sst->sst_len);
  1041. }
  1042. void
  1043. cdf_dump_dir(const cdf_info_t *info, const cdf_header_t *h,
  1044. const cdf_sat_t *sat, const cdf_sat_t *ssat, const cdf_stream_t *sst,
  1045. const cdf_dir_t *dir)
  1046. {
  1047. size_t i, j;
  1048. cdf_directory_t *d;
  1049. char name[__arraycount(d->d_name)];
  1050. cdf_stream_t scn;
  1051. struct timeval ts;
  1052. static const char *types[] = { "empty", "user storage",
  1053. "user stream", "lockbytes", "property", "root storage" };
  1054. for (i = 0; i < dir->dir_len; i++) {
  1055. d = &dir->dir_tab[i];
  1056. for (j = 0; j < sizeof(name); j++)
  1057. name[j] = (char)CDF_TOLE2(d->d_name[j]);
  1058. (void)fprintf(stderr, "Directory %" SIZE_T_FORMAT "u: %s\n",
  1059. i, name);
  1060. if (d->d_type < __arraycount(types))
  1061. (void)fprintf(stderr, "Type: %s\n", types[d->d_type]);
  1062. else
  1063. (void)fprintf(stderr, "Type: %d\n", d->d_type);
  1064. (void)fprintf(stderr, "Color: %s\n",
  1065. d->d_color ? "black" : "red");
  1066. (void)fprintf(stderr, "Left child: %d\n", d->d_left_child);
  1067. (void)fprintf(stderr, "Right child: %d\n", d->d_right_child);
  1068. (void)fprintf(stderr, "Flags: 0x%x\n", d->d_flags);
  1069. cdf_timestamp_to_timespec(&ts, d->d_created);
  1070. (void)fprintf(stderr, "Created %s", cdf_ctime(&ts.tv_sec));
  1071. cdf_timestamp_to_timespec(&ts, d->d_modified);
  1072. (void)fprintf(stderr, "Modified %s", cdf_ctime(&ts.tv_sec));
  1073. (void)fprintf(stderr, "Stream %d\n", d->d_stream_first_sector);
  1074. (void)fprintf(stderr, "Size %d\n", d->d_size);
  1075. switch (d->d_type) {
  1076. case CDF_DIR_TYPE_USER_STORAGE:
  1077. (void)fprintf(stderr, "Storage: %d\n", d->d_storage);
  1078. break;
  1079. case CDF_DIR_TYPE_USER_STREAM:
  1080. if (sst == NULL)
  1081. break;
  1082. if (cdf_read_sector_chain(info, h, sat, ssat, sst,
  1083. d->d_stream_first_sector, d->d_size, &scn) == -1) {
  1084. warn("Can't read stream for %s at %d len %d",
  1085. name, d->d_stream_first_sector, d->d_size);
  1086. break;
  1087. }
  1088. cdf_dump_stream(h, &scn);
  1089. free(scn.sst_tab);
  1090. break;
  1091. default:
  1092. break;
  1093. }
  1094. }
  1095. }
  1096. void
  1097. cdf_dump_property_info(const cdf_property_info_t *info, size_t count)
  1098. {
  1099. cdf_timestamp_t tp;
  1100. struct timeval ts;
  1101. char buf[64];
  1102. size_t i, j;
  1103. for (i = 0; i < count; i++) {
  1104. cdf_print_property_name(buf, sizeof(buf), info[i].pi_id);
  1105. (void)fprintf(stderr, "%" SIZE_T_FORMAT "u) %s: ", i, buf);
  1106. switch (info[i].pi_type) {
  1107. case CDF_NULL:
  1108. break;
  1109. case CDF_SIGNED16:
  1110. (void)fprintf(stderr, "signed 16 [%hd]\n",
  1111. info[i].pi_s16);
  1112. break;
  1113. case CDF_SIGNED32:
  1114. (void)fprintf(stderr, "signed 32 [%d]\n",
  1115. info[i].pi_s32);
  1116. break;
  1117. case CDF_UNSIGNED32:
  1118. (void)fprintf(stderr, "unsigned 32 [%u]\n",
  1119. info[i].pi_u32);
  1120. break;
  1121. case CDF_FLOAT:
  1122. (void)fprintf(stderr, "float [%g]\n",
  1123. info[i].pi_f);
  1124. break;
  1125. case CDF_DOUBLE:
  1126. (void)fprintf(stderr, "double [%g]\n",
  1127. info[i].pi_d);
  1128. break;
  1129. case CDF_LENGTH32_STRING:
  1130. (void)fprintf(stderr, "string %u [%.*s]\n",
  1131. info[i].pi_str.s_len,
  1132. info[i].pi_str.s_len, info[i].pi_str.s_buf);
  1133. break;
  1134. case CDF_LENGTH32_WSTRING:
  1135. (void)fprintf(stderr, "string %u [",
  1136. info[i].pi_str.s_len);
  1137. for (j = 0; j < info[i].pi_str.s_len - 1; j++)
  1138. (void)fputc(info[i].pi_str.s_buf[j << 1], stderr);
  1139. (void)fprintf(stderr, "]\n");
  1140. break;
  1141. case CDF_FILETIME:
  1142. tp = info[i].pi_tp;
  1143. #if defined(PHP_WIN32) && _MSC_VER <= 1500
  1144. if (tp < 1000000000000000i64) {
  1145. #else
  1146. if (tp < 1000000000000000LL) {
  1147. #endif
  1148. cdf_print_elapsed_time(buf, sizeof(buf), tp);
  1149. (void)fprintf(stderr, "timestamp %s\n", buf);
  1150. } else {
  1151. cdf_timestamp_to_timespec(&ts, tp);
  1152. (void)fprintf(stderr, "timestamp %s",
  1153. cdf_ctime(&ts.tv_sec));
  1154. }
  1155. break;
  1156. case CDF_CLIPBOARD:
  1157. (void)fprintf(stderr, "CLIPBOARD %u\n", info[i].pi_u32);
  1158. break;
  1159. default:
  1160. DPRINTF(("Don't know how to deal with %x\n",
  1161. info[i].pi_type));
  1162. break;
  1163. }
  1164. }
  1165. }
  1166. void
  1167. cdf_dump_summary_info(const cdf_header_t *h, const cdf_stream_t *sst)
  1168. {
  1169. char buf[128];
  1170. cdf_summary_info_header_t ssi;
  1171. cdf_property_info_t *info;
  1172. size_t count;
  1173. (void)&h;
  1174. if (cdf_unpack_summary_info(sst, h, &ssi, &info, &count) == -1)
  1175. return;
  1176. (void)fprintf(stderr, "Endian: %x\n", ssi.si_byte_order);
  1177. (void)fprintf(stderr, "Os Version %d.%d\n", ssi.si_os_version & 0xff,
  1178. ssi.si_os_version >> 8);
  1179. (void)fprintf(stderr, "Os %d\n", ssi.si_os);
  1180. cdf_print_classid(buf, sizeof(buf), &ssi.si_class);
  1181. (void)fprintf(stderr, "Class %s\n", buf);
  1182. (void)fprintf(stderr, "Count %d\n", ssi.si_count);
  1183. cdf_dump_property_info(info, count);
  1184. free(info);
  1185. }
  1186. #endif
  1187. #ifdef TEST
  1188. int
  1189. main(int argc, char *argv[])
  1190. {
  1191. int i;
  1192. cdf_header_t h;
  1193. cdf_sat_t sat, ssat;
  1194. cdf_stream_t sst, scn;
  1195. cdf_dir_t dir;
  1196. cdf_info_t info;
  1197. if (argc < 2) {
  1198. (void)fprintf(stderr, "Usage: %s <filename>\n", getprogname());
  1199. return -1;
  1200. }
  1201. info.i_buf = NULL;
  1202. info.i_len = 0;
  1203. for (i = 1; i < argc; i++) {
  1204. if ((info.i_fd = open(argv[1], O_RDONLY)) == -1)
  1205. err(1, "Cannot open `%s'", argv[1]);
  1206. if (cdf_read_header(&info, &h) == -1)
  1207. err(1, "Cannot read header");
  1208. #ifdef CDF_DEBUG
  1209. cdf_dump_header(&h);
  1210. #endif
  1211. if (cdf_read_sat(&info, &h, &sat) == -1)
  1212. err(1, "Cannot read sat");
  1213. #ifdef CDF_DEBUG
  1214. cdf_dump_sat("SAT", &sat, CDF_SEC_SIZE(&h));
  1215. #endif
  1216. if (cdf_read_ssat(&info, &h, &sat, &ssat) == -1)
  1217. err(1, "Cannot read ssat");
  1218. #ifdef CDF_DEBUG
  1219. cdf_dump_sat("SSAT", &ssat, CDF_SHORT_SEC_SIZE(&h));
  1220. #endif
  1221. if (cdf_read_dir(&info, &h, &sat, &dir) == -1)
  1222. err(1, "Cannot read dir");
  1223. if (cdf_read_short_stream(&info, &h, &sat, &dir, &sst) == -1)
  1224. err(1, "Cannot read short stream");
  1225. #ifdef CDF_DEBUG
  1226. cdf_dump_stream(&h, &sst);
  1227. #endif
  1228. #ifdef CDF_DEBUG
  1229. cdf_dump_dir(&info, &h, &sat, &ssat, &sst, &dir);
  1230. #endif
  1231. if (cdf_read_summary_info(&info, &h, &sat, &ssat, &sst, &dir,
  1232. &scn) == -1)
  1233. err(1, "Cannot read summary info");
  1234. #ifdef CDF_DEBUG
  1235. cdf_dump_summary_info(&h, &scn);
  1236. #endif
  1237. (void)close(info.i_fd);
  1238. }
  1239. return 0;
  1240. }
  1241. #endif