Mercurial > libpst
annotate src/libpst.c @ 47:5fb8d997feed
more fixes for 64 bit format
author | carl |
---|---|
date | Sun, 13 Jan 2008 12:55:59 -0800 |
parents | b2a7f2e0926a |
children | f66078abed38 |
rev | line source |
---|---|
16 | 1 /*** |
2 * libpst.c | |
3 * Part of the LibPST project | |
4 * Written by David Smith | |
43 | 5 * dave.s@earthcorp.com |
16 | 6 */ |
7 #include <stdio.h> | |
8 #include <stdlib.h> | |
9 #include <time.h> | |
10 #include <string.h> | |
11 #include <ctype.h> | |
12 #include <limits.h> | |
13 #include <wchar.h> | |
43 | 14 #include <signal.h> |
16 | 15 #include <errno.h> |
43 | 16 #include <sys/stat.h> // mkdir |
17 #include <fcntl.h> // for Win32 definition of _O_BINARY | |
16 | 18 #include "define.h" |
19 #include "libstrfunc.h" | |
43 | 20 #include "vbuf.h" |
21 | |
22 #define ASSERT(x) { if(!(x)) raise( SIGSEGV ); } | |
16 | 23 |
24 #ifdef _MSC_VER | |
25 # include <windows.h> | |
26 #else | |
27 # include <unistd.h> | |
28 #endif //ifdef _MSC_VER | |
29 | |
30 #include "libpst.h" | |
31 #include "timeconv.h" | |
44 | 32 //efine INDEX_DEPTH 0x4C |
33 //efine SECOND_DEPTH 0x5C | |
43 | 34 #define INDEX_TYPE32 0x0E |
35 #define INDEX_TYPE64 0x17 | |
36 | |
46 | 37 #define FILE_SIZE_POINTER32 (off_t)0xA8 |
38 #define INDEX_POINTER32 (off_t)0xC4 | |
39 #define INDEX_BACK32 (off_t)0xC0 | |
40 #define SECOND_POINTER32 (off_t)0xBC | |
41 #define SECOND_BACK32 (off_t)0xB8 | |
42 #define INDEX_TYPE_OFFSET32 (off_t)0x0A | |
43 #define ENC_OFFSET32 (off_t)0x1CD | |
44 | |
45 #define FILE_SIZE_POINTER64 (off_t)0xB8 | |
46 #define INDEX_POINTER64 (off_t)0xF0 | |
47 #define INDEX_BACK64 (off_t)0xE8 | |
48 #define SECOND_POINTER64 (off_t)0xE0 | |
49 #define SECOND_BACK64 (off_t)0xD8 | |
50 #define INDEX_TYPE_OFFSET64 (off_t)0x0A | |
51 #define ENC_OFFSET64 (off_t)0x201 | |
52 | |
53 #define FILE_SIZE_POINTER ((pf->do_read64) ? FILE_SIZE_POINTER64 : FILE_SIZE_POINTER32) | |
54 #define INDEX_POINTER ((pf->do_read64) ? INDEX_POINTER64 : INDEX_POINTER32) | |
55 #define INDEX_BACK ((pf->do_read64) ? INDEX_BACK64 : INDEX_BACK32) | |
56 #define SECOND_POINTER ((pf->do_read64) ? SECOND_POINTER64 : SECOND_POINTER32) | |
57 #define SECOND_BACK ((pf->do_read64) ? SECOND_BACK64 : SECOND_BACK32) | |
58 #define INDEX_TYPE_OFFSET ((pf->do_read64) ? INDEX_TYPE_OFFSET64 : INDEX_TYPE_OFFSET32) | |
59 #define INDEX_TYPE ((pf->do_read64) ? INDEX_TYPE64 : INDEX_TYPE32) | |
60 #define ENC_OFFSET ((pf->do_read64) ? ENC_OFFSET64 : ENC_OFFSET32) | |
16 | 61 |
62 #define PST_SIGNATURE 0x4E444221 | |
63 | |
46 | 64 |
65 struct pst_table_ptr_struct32{ | |
66 uint32_t start; | |
67 uint32_t u1; | |
68 uint32_t offset; | |
43 | 69 }; |
46 | 70 struct pst_table_ptr_structn{ |
71 uint64_t start; | |
72 uint64_t u1; | |
73 uint64_t offset; | |
16 | 74 }; |
75 | |
46 | 76 typedef struct pst_block_header { |
77 uint16_t type; | |
78 uint16_t count; | |
16 | 79 } pst_block_header; |
80 | |
46 | 81 typedef struct pst_id2_assoc32 { |
43 | 82 uint32_t id2; |
83 uint32_t id; | |
46 | 84 uint32_t table2; |
85 } pst_id2_assoc32; | |
86 | |
87 typedef struct pst_id2_assoc { | |
88 uint64_t id2; | |
89 uint64_t id; | |
90 uint64_t table2; | |
16 | 91 } pst_id2_assoc; |
92 | |
35 | 93 // this is an array of the un-encrypted values. the un-encrypted value is in the position |
16 | 94 // of the encrypted value. ie the encrypted value 0x13 represents 0x02 |
43 | 95 // 0 1 2 3 4 5 6 7 |
96 // 8 9 a b c d e f | |
46 | 97 static unsigned char comp_enc [] = |
16 | 98 { 0x47, 0xf1, 0xb4, 0xe6, 0x0b, 0x6a, 0x72, 0x48, |
43 | 99 0x85, 0x4e, 0x9e, 0xeb, 0xe2, 0xf8, 0x94, 0x53, /*0x0f*/ |
100 0xe0, 0xbb, 0xa0, 0x02, 0xe8, 0x5a, 0x09, 0xab, | |
101 0xdb, 0xe3, 0xba, 0xc6, 0x7c, 0xc3, 0x10, 0xdd, /*0x1f*/ | |
102 0x39, 0x05, 0x96, 0x30, 0xf5, 0x37, 0x60, 0x82, | |
103 0x8c, 0xc9, 0x13, 0x4a, 0x6b, 0x1d, 0xf3, 0xfb, /*0x2f*/ | |
104 0x8f, 0x26, 0x97, 0xca, 0x91, 0x17, 0x01, 0xc4, | |
105 0x32, 0x2d, 0x6e, 0x31, 0x95, 0xff, 0xd9, 0x23, /*0x3f*/ | |
106 0xd1, 0x00, 0x5e, 0x79, 0xdc, 0x44, 0x3b, 0x1a, | |
107 0x28, 0xc5, 0x61, 0x57, 0x20, 0x90, 0x3d, 0x83, /*0x4f*/ | |
108 0xb9, 0x43, 0xbe, 0x67, 0xd2, 0x46, 0x42, 0x76, | |
109 0xc0, 0x6d, 0x5b, 0x7e, 0xb2, 0x0f, 0x16, 0x29, /*0x5f*/ | |
110 0x3c, 0xa9, 0x03, 0x54, 0x0d, 0xda, 0x5d, 0xdf, | |
111 0xf6, 0xb7, 0xc7, 0x62, 0xcd, 0x8d, 0x06, 0xd3, /*0x6f*/ | |
112 0x69, 0x5c, 0x86, 0xd6, 0x14, 0xf7, 0xa5, 0x66, | |
113 0x75, 0xac, 0xb1, 0xe9, 0x45, 0x21, 0x70, 0x0c, /*0x7f*/ | |
114 0x87, 0x9f, 0x74, 0xa4, 0x22, 0x4c, 0x6f, 0xbf, | |
115 0x1f, 0x56, 0xaa, 0x2e, 0xb3, 0x78, 0x33, 0x50, /*0x8f*/ | |
116 0xb0, 0xa3, 0x92, 0xbc, 0xcf, 0x19, 0x1c, 0xa7, | |
117 0x63, 0xcb, 0x1e, 0x4d, 0x3e, 0x4b, 0x1b, 0x9b, /*0x9f*/ | |
118 0x4f, 0xe7, 0xf0, 0xee, 0xad, 0x3a, 0xb5, 0x59, | |
119 0x04, 0xea, 0x40, 0x55, 0x25, 0x51, 0xe5, 0x7a, /*0xaf*/ | |
120 0x89, 0x38, 0x68, 0x52, 0x7b, 0xfc, 0x27, 0xae, | |
121 0xd7, 0xbd, 0xfa, 0x07, 0xf4, 0xcc, 0x8e, 0x5f, /*0xbf*/ | |
122 0xef, 0x35, 0x9c, 0x84, 0x2b, 0x15, 0xd5, 0x77, | |
123 0x34, 0x49, 0xb6, 0x12, 0x0a, 0x7f, 0x71, 0x88, /*0xcf*/ | |
124 0xfd, 0x9d, 0x18, 0x41, 0x7d, 0x93, 0xd8, 0x58, | |
125 0x2c, 0xce, 0xfe, 0x24, 0xaf, 0xde, 0xb8, 0x36, /*0xdf*/ | |
126 0xc8, 0xa1, 0x80, 0xa6, 0x99, 0x98, 0xa8, 0x2f, | |
127 0x0e, 0x81, 0x65, 0x73, 0xe4, 0xc2, 0xa2, 0x8a, /*0xef*/ | |
128 0xd4, 0xe1, 0x11, 0xd0, 0x08, 0x8b, 0x2a, 0xf2, | |
129 0xed, 0x9a, 0x64, 0x3f, 0xc1, 0x6c, 0xf9, 0xec}; /*0xff*/ | |
130 | |
131 | |
46 | 132 int pst_open(pst_file *pf, char *name, char *mode) { |
133 int32_t sig; | |
43 | 134 |
45 | 135 unicode_init(); |
136 | |
43 | 137 DEBUG_ENT("pst_open"); |
138 | |
139 if (!pf) { | |
140 WARN (("cannot be passed a NULL pst_file\n")); | |
141 DEBUG_RET(); | |
142 return -1; | |
143 } | |
46 | 144 memset(pf, 0, sizeof(*pf)); |
16 | 145 |
31 | 146 #ifdef _MSC_VER |
43 | 147 // set the default open mode for windows |
148 _fmode = _O_BINARY; | |
31 | 149 #endif //_MSC_VER |
43 | 150 if ((pf->fp = fopen(name, mode)) == NULL) { |
151 WARN(("cannot open PST file. Error\n")); | |
152 DEBUG_RET(); | |
153 return -1; | |
154 } | |
155 | |
156 // Check pst file magic | |
46 | 157 if (fread(&sig, sizeof(sig), (size_t)1, pf->fp) == 0) { |
158 (void)fclose(pf->fp); | |
43 | 159 WARN(("cannot read signature from PST file. Closing on error\n")); |
160 DEBUG_RET(); | |
161 return -1; | |
162 } | |
163 LE32_CPU(sig); | |
164 DEBUG_INFO(("sig = %X\n", sig)); | |
46 | 165 if (sig != (int32_t)PST_SIGNATURE) { |
166 (void)fclose(pf->fp); | |
43 | 167 WARN(("not a PST file that I know. Closing with error\n")); |
168 DEBUG_RET(); | |
169 return -1; | |
170 } | |
171 | |
172 // read index type | |
46 | 173 pf->do_read64 = 0; // start with 32 bit format |
174 (void)pst_getAtPos(pf->fp, INDEX_TYPE_OFFSET, &(pf->ind_type), sizeof(pf->ind_type)); | |
43 | 175 DEBUG_INFO(("index_type = %i\n", pf->ind_type)); |
176 if (pf->ind_type != INDEX_TYPE) { | |
177 // try with 64 bit format | |
46 | 178 pf->do_read64 = 1; |
43 | 179 if (pf->ind_type != INDEX_TYPE) { |
180 WARN(("unknown .pst format, possibly newer than Outlook 2003 PST file?\n")); | |
181 DEBUG_RET(); | |
182 return -1; | |
183 } | |
44 | 184 else { |
185 WARN(("switching to 64 bit format...\n")); | |
186 } | |
43 | 187 } |
188 | |
189 // read encryption setting | |
46 | 190 (void)pst_getAtPos(pf->fp, ENC_OFFSET, &(pf->encryption), sizeof(pf->encryption)); |
43 | 191 DEBUG_INFO(("encrypt = %i\n", pf->encryption)); |
192 | |
46 | 193 pf->index2_back = pst_getIntAtPos(pf, SECOND_BACK); |
194 pf->index2 = pst_getIntAtPos(pf, SECOND_POINTER); | |
195 pf->size = pst_getIntAtPos(pf, FILE_SIZE_POINTER); | |
196 DEBUG_INFO(("Pointer2 is %#llx, count %lli[%#llx]\n", pf->index2, pf->index2_back, pf->index2_back)); | |
197 | |
198 pf->index1_back = pst_getIntAtPos(pf, INDEX_BACK); | |
199 pf->index1 = pst_getIntAtPos(pf, INDEX_POINTER); | |
200 DEBUG_INFO(("Pointer1 is %#llx, count %lli[%#llx]\n", pf->index1, pf->index1_back, pf->index1_back)); | |
43 | 201 |
202 DEBUG_RET(); | |
203 return 0; | |
16 | 204 } |
205 | |
206 | |
46 | 207 int pst_close(pst_file *pf) { |
43 | 208 DEBUG_ENT("pst_close"); |
209 if (!pf->fp) { | |
210 WARN(("cannot close NULL fp\n")); | |
211 DEBUG_RET(); | |
212 return -1; | |
213 } | |
214 if (fclose(pf->fp)) { | |
215 WARN(("fclose returned non-zero value\n")); | |
216 DEBUG_RET(); | |
217 return -1; | |
218 } | |
219 // we must free the id linklist and the desc tree | |
46 | 220 pst_free_id (pf->i_head); |
221 pst_free_desc (pf->d_head); | |
222 pst_free_xattrib (pf->x_head); | |
43 | 223 DEBUG_RET(); |
224 return 0; | |
16 | 225 } |
226 | |
227 | |
228 pst_desc_ll* pst_getTopOfFolders(pst_file *pf, pst_item *root) { | |
43 | 229 pst_desc_ll *ret; |
230 DEBUG_ENT("pst_getTopOfFolders"); | |
231 if (!root || !root->message_store) { | |
232 DEBUG_INDEX(("There isn't a top of folder record here.\n")); | |
233 ret = NULL; | |
234 } else if (!root->message_store->top_of_personal_folder) { | |
235 // this is the OST way | |
236 // ASSUMPTION: Top Of Folders record in PST files is *always* descid 0x2142 | |
46 | 237 ret = pst_getDptr(pf, (uint64_t)0x2142); |
43 | 238 } else { |
46 | 239 ret = pst_getDptr(pf, root->message_store->top_of_personal_folder->id); |
43 | 240 } |
241 DEBUG_RET(); | |
242 return ret; | |
16 | 243 } |
244 | |
245 | |
46 | 246 size_t pst_attach_to_mem(pst_file *pf, pst_item_attach *attach, unsigned char **b){ |
247 size_t size=0; | |
43 | 248 pst_index_ll *ptr; |
249 struct holder h = {b, NULL, 0, "", 0}; | |
250 DEBUG_ENT("pst_attach_to_mem"); | |
46 | 251 if (attach->id_val != (uint64_t)-1) { |
252 ptr = pst_getID(pf, attach->id_val); | |
43 | 253 if (ptr) { |
46 | 254 size = pst_ff_getID2data(pf, ptr, &h); |
43 | 255 } else { |
256 DEBUG_WARN(("Couldn't find ID pointer. Cannot handle attachment\n")); | |
257 size = 0; | |
258 } | |
259 attach->size = size; // may as well update it to what is correct for this instance | |
260 } else { | |
261 size = attach->size; | |
262 } | |
263 DEBUG_RET(); | |
264 return size; | |
16 | 265 } |
266 | |
267 | |
46 | 268 size_t pst_attach_to_file(pst_file *pf, pst_item_attach *attach, FILE* fp) { |
43 | 269 pst_index_ll *ptr; |
270 struct holder h = {NULL, fp, 0, "", 0}; | |
46 | 271 size_t size; |
43 | 272 DEBUG_ENT("pst_attach_to_file"); |
46 | 273 if (attach->id_val != (uint64_t)-1) { |
274 ptr = pst_getID(pf, attach->id_val); | |
43 | 275 if (ptr) { |
46 | 276 size = pst_ff_getID2data(pf, ptr, &h); |
43 | 277 } else { |
278 DEBUG_WARN(("Couldn't find ID pointer. Cannot save attachment to file\n")); | |
279 size = 0; | |
280 } | |
281 attach->size = size; | |
282 } else { | |
283 // save the attachment to file | |
284 size = attach->size; | |
46 | 285 (void)pst_fwrite(attach->data, (size_t)1, size, fp); |
43 | 286 } |
287 DEBUG_RET(); | |
46 | 288 return size; |
16 | 289 } |
290 | |
291 | |
46 | 292 size_t pst_attach_to_file_base64(pst_file *pf, pst_item_attach *attach, FILE* fp) { |
43 | 293 pst_index_ll *ptr; |
294 struct holder h = {NULL, fp, 1, "", 0}; | |
46 | 295 size_t size; |
43 | 296 char *c; |
297 DEBUG_ENT("pst_attach_to_file_base64"); | |
46 | 298 if (attach->id_val != (uint64_t)-1) { |
299 ptr = pst_getID(pf, attach->id_val); | |
43 | 300 if (ptr) { |
46 | 301 size = pst_ff_getID2data(pf, ptr, &h); |
43 | 302 // will need to encode any bytes left over |
46 | 303 c = base64_encode(h.base64_extra_chars, (size_t)h.base64_extra); |
43 | 304 if (c) { |
46 | 305 (void)pst_fwrite(c, (size_t)1, strlen(c), fp); |
43 | 306 free(c); // caught by valgrind |
307 } | |
308 } else { | |
309 DEBUG_WARN (("Couldn't find ID pointer. Cannot save attachment to Base64\n")); | |
310 size = 0; | |
311 } | |
312 attach->size = size; | |
313 } else { | |
314 // encode the attachment to the file | |
315 c = base64_encode(attach->data, attach->size); | |
316 if (c) { | |
46 | 317 (void)pst_fwrite(c, (size_t)1, strlen(c), fp); |
43 | 318 free(c); // caught by valgrind |
319 } | |
320 size = attach->size; | |
321 } | |
322 DEBUG_RET(); | |
46 | 323 return size; |
16 | 324 } |
325 | |
326 | |
46 | 327 int pst_load_index (pst_file *pf) { |
328 int x; | |
43 | 329 uint64_t y; |
330 DEBUG_ENT("pst_load_index"); | |
331 if (!pf) { | |
332 WARN(("Cannot load index for a NULL pst_file\n")); | |
333 DEBUG_RET(); | |
334 return -1; | |
335 } | |
336 | |
46 | 337 x = pst_build_id_ptr(pf, pf->index1, 0, pf->index1_back, 0, UINT64_MAX); |
43 | 338 DEBUG_INDEX(("build id ptr returns %i\n", x)); |
339 | |
340 y = 0; | |
46 | 341 x = pst_build_desc_ptr(pf, pf->index2, 0, pf->index2_back, &y, (uint64_t)0x21, UINT64_MAX); |
43 | 342 DEBUG_INDEX(("build desc ptr returns %i\n", x)); |
343 | |
46 | 344 DEBUG_CODE((void)pst_printDptr(pf);); |
43 | 345 DEBUG_RET(); |
346 return 0; | |
16 | 347 } |
348 | |
349 | |
350 pst_desc_ll* pst_getNextDptr(pst_desc_ll* d) { | |
43 | 351 pst_desc_ll* r = NULL; |
352 DEBUG_ENT("pst_getNextDptr"); | |
353 if (d) { | |
354 if ((r = d->child) == NULL) { | |
355 while (!d->next && d->parent) d = d->parent; | |
356 r = d->next; | |
357 } | |
358 } | |
359 DEBUG_RET(); | |
360 return r; | |
16 | 361 } |
362 | |
363 | |
46 | 364 typedef struct pst_x_attrib { |
43 | 365 uint16_t extended; |
366 uint16_t zero; | |
367 uint16_t type; | |
368 uint16_t map; | |
16 | 369 } pst_x_attrib; |
370 | |
371 | |
46 | 372 int pst_load_extended_attributes(pst_file *pf) { |
43 | 373 // for PST files this will load up ID2 0x61 and check it's "list" attribute. |
374 pst_desc_ll *p; | |
375 pst_num_array *na; | |
46 | 376 pst_index2_ll *id2_head = NULL; |
377 unsigned char *buffer=NULL, *headerbuffer=NULL; | |
378 size_t bsize=0, hsize=0, bptr=0; | |
43 | 379 pst_x_attrib xattrib; |
46 | 380 int32_t tint, err=0, x; |
43 | 381 pst_x_attrib_ll *ptr, *p_head=NULL, *p_sh=NULL, *p_sh2=NULL; |
382 | |
383 DEBUG_ENT("pst_loadExtendedAttributes"); | |
46 | 384 if ((p = pst_getDptr(pf, (uint64_t)0x61)) == NULL) { |
43 | 385 DEBUG_WARN(("Cannot find DescID 0x61 for loading the Extended Attributes\n")); |
386 DEBUG_RET(); | |
387 return 0; | |
388 } | |
389 | |
390 if (!p->desc) { | |
391 DEBUG_WARN(("desc is NULL for item 0x61. Cannot load Extended Attributes\n")); | |
392 DEBUG_RET(); | |
393 return 0; | |
394 } | |
395 | |
396 if (p->list_index) { | |
46 | 397 id2_head = pst_build_id2(pf, p->list_index, NULL); |
398 (void)pst_printID2ptr(id2_head); | |
43 | 399 } else { |
400 DEBUG_WARN(("Have not been able to fetch any id2 values for item 0x61. Brace yourself!\n")); | |
401 } | |
402 | |
46 | 403 na = pst_parse_block(pf, p->desc->id, id2_head); |
43 | 404 if (!na) { |
405 DEBUG_WARN(("Cannot process desc block for item 0x61. Not loading extended Attributes\n")); | |
46 | 406 if (id2_head) pst_free_id2(id2_head); |
43 | 407 DEBUG_RET(); |
408 return 0; | |
409 } | |
410 | |
411 x = 0; | |
412 while (x < na->count_item) { | |
46 | 413 if (na->items[x]->id == (uint32_t)0x0003) { |
43 | 414 buffer = na->items[x]->data; |
415 bsize = na->items[x]->size; | |
46 | 416 } else if (na->items[x]->id == (uint32_t)0x0004) { |
43 | 417 headerbuffer = na->items[x]->data; |
418 hsize = na->items[x]->size; | |
46 | 419 } else { |
420 // leave them null | |
43 | 421 } |
422 x++; | |
423 } | |
424 | |
425 if (!buffer) { | |
46 | 426 if (na) pst_free_list(na); |
43 | 427 DEBUG_WARN(("No extended attributes buffer found. Not processing\n")); |
428 DEBUG_RET(); | |
429 return 0; | |
430 } | |
431 | |
432 memcpy(&xattrib, &(buffer[bptr]), sizeof(xattrib)); | |
433 LE16_CPU(xattrib.extended); | |
434 LE16_CPU(xattrib.zero); | |
435 LE16_CPU(xattrib.type); | |
436 LE16_CPU(xattrib.map); | |
437 bptr += sizeof(xattrib); | |
438 | |
439 while (xattrib.type != 0 && bptr < bsize) { | |
46 | 440 ptr = (pst_x_attrib_ll*) xmalloc(sizeof(*ptr)); |
441 memset(ptr, 0, sizeof(*ptr)); | |
43 | 442 ptr->type = xattrib.type; |
46 | 443 ptr->map = xattrib.map+0x8000; |
43 | 444 ptr->next = NULL; |
445 DEBUG_INDEX(("xattrib: ext = %#hx, zero = %#hx, type = %#hx, map = %#hx\n", | |
446 xattrib.extended, xattrib.zero, xattrib.type, xattrib.map)); | |
447 err=0; | |
448 if (xattrib.type & 0x0001) { // if the Bit 1 is set | |
449 // pointer to Unicode field in buffer | |
450 if (xattrib.extended < hsize) { | |
451 char *wt; | |
452 // copy the size of the header. It is 32 bit int | |
453 memcpy(&tint, &(headerbuffer[xattrib.extended]), sizeof(tint)); | |
454 LE32_CPU(tint); | |
46 | 455 wt = (char*) xmalloc((size_t)(tint+2)); // plus 2 for a uni-code zero |
456 memset(wt, 0, (size_t)(tint+2)); | |
457 memcpy(wt, &(headerbuffer[xattrib.extended+sizeof(tint)]), (size_t)tint); | |
47 | 458 ptr->data = pst_wide_to_single(wt, (size_t)tint); |
43 | 459 free(wt); |
460 DEBUG_INDEX(("Read string (converted from UTF-16): %s\n", ptr->data)); | |
461 } else { | |
462 DEBUG_INDEX(("Cannot read outside of buffer [%i !< %i]\n", xattrib.extended, hsize)); | |
463 } | |
464 ptr->mytype = PST_MAP_HEADER; | |
465 } else { | |
466 // contains the attribute code to map to. | |
46 | 467 ptr->data = (uint32_t*)xmalloc(sizeof(uint32_t)); |
468 memset(ptr->data, 0, sizeof(uint32_t)); | |
469 *((uint32_t*)ptr->data) = xattrib.extended; | |
43 | 470 ptr->mytype = PST_MAP_ATTRIB; |
471 DEBUG_INDEX(("Mapped attribute %#x to %#x\n", ptr->map, *((int32_t*)ptr->data))); | |
472 } | |
473 | |
474 if (err==0) { | |
475 // add it to the list | |
476 p_sh = p_head; | |
477 p_sh2 = NULL; | |
478 while (p_sh && ptr->map > p_sh->map) { | |
479 p_sh2 = p_sh; | |
480 p_sh = p_sh->next; | |
481 } | |
482 if (!p_sh2) { | |
483 // needs to go before first item | |
484 ptr->next = p_head; | |
485 p_head = ptr; | |
486 } else { | |
487 // it will go after p_sh2 | |
488 ptr->next = p_sh2->next; | |
489 p_sh2->next = ptr; | |
490 } | |
491 } else { | |
492 free(ptr); | |
493 ptr = NULL; | |
494 } | |
495 memcpy(&xattrib, &(buffer[bptr]), sizeof(xattrib)); | |
496 LE16_CPU(xattrib.extended); | |
497 LE16_CPU(xattrib.zero); | |
498 LE16_CPU(xattrib.type); | |
499 LE16_CPU(xattrib.map); | |
500 bptr += sizeof(xattrib); | |
501 } | |
46 | 502 if (id2_head) pst_free_id2(id2_head); |
503 if (na) pst_free_list(na); | |
43 | 504 pf->x_head = p_head; |
505 DEBUG_RET(); | |
506 return 1; | |
16 | 507 } |
508 | |
44 | 509 #define BLOCK_SIZE32 516 // index blocks |
510 #define DESC_BLOCK_SIZE32 516 // descriptor blocks | |
511 #define ITEM_COUNT_OFFSET32 0x1f0 // count byte | |
512 #define LEVEL_INDICATOR_OFFSET32 0x1f3 // node or leaf | |
513 #define BACKLINK_OFFSET32 0x1f8 // backlink u1 value | |
514 #define ITEM_SIZE32 12 | |
515 #define DESC_SIZE32 16 | |
516 #define INDEX_COUNT_MAX32 41 // max active items | |
517 #define DESC_COUNT_MAX32 31 // max active items | |
518 | |
519 #define BLOCK_SIZE64 512 // index blocks | |
520 #define DESC_BLOCK_SIZE64 512 // descriptor blocks | |
521 #define ITEM_COUNT_OFFSET64 0x1e8 // count byte | |
522 #define LEVEL_INDICATOR_OFFSET64 0x1eb // node or leaf | |
523 #define BACKLINK_OFFSET64 0x1f8 // backlink u1 value | |
524 #define ITEM_SIZE64 24 | |
525 #define DESC_SIZE64 32 | |
526 #define INDEX_COUNT_MAX64 20 // max active items | |
527 #define DESC_COUNT_MAX64 15 // max active items | |
528 | |
46 | 529 #define BLOCK_SIZE (size_t)((pf->do_read64) ? BLOCK_SIZE64 : BLOCK_SIZE32) |
530 #define DESC_BLOCK_SIZE (size_t)((pf->do_read64) ? DESC_BLOCK_SIZE64 : DESC_BLOCK_SIZE32) | |
531 #define ITEM_COUNT_OFFSET (size_t)((pf->do_read64) ? ITEM_COUNT_OFFSET64 : ITEM_COUNT_OFFSET32) | |
532 #define LEVEL_INDICATOR_OFFSET (size_t)((pf->do_read64) ? LEVEL_INDICATOR_OFFSET64 : LEVEL_INDICATOR_OFFSET32) | |
533 #define BACKLINK_OFFSET (size_t)((pf->do_read64) ? BACKLINK_OFFSET64 : BACKLINK_OFFSET32) | |
534 #define ITEM_SIZE (size_t)((pf->do_read64) ? ITEM_SIZE64 : ITEM_SIZE32) | |
535 #define DESC_SIZE (size_t)((pf->do_read64) ? DESC_SIZE64 : DESC_SIZE32) | |
536 #define INDEX_COUNT_MAX (int32_t)((pf->do_read64) ? INDEX_COUNT_MAX64 : INDEX_COUNT_MAX32) | |
537 #define DESC_COUNT_MAX (int32_t)((pf->do_read64) ? DESC_COUNT_MAX64 : DESC_COUNT_MAX32) | |
538 | |
539 | |
540 static size_t pst_decode_desc(pst_file *pf, pst_descn *desc, char *buf); | |
541 static size_t pst_decode_desc(pst_file *pf, pst_descn *desc, char *buf) { | |
542 size_t r; | |
543 if (pf->do_read64) { | |
44 | 544 DEBUG_INDEX(("Decoding desc64\n")); |
43 | 545 DEBUG_HEXDUMPC(buf, sizeof(pst_descn), 0x10); |
546 memcpy(desc, buf, sizeof(pst_descn)); | |
547 LE64_CPU(desc->d_id); | |
548 LE64_CPU(desc->desc_id); | |
549 LE64_CPU(desc->list_id); | |
550 LE32_CPU(desc->parent_id); | |
551 LE32_CPU(desc->u1); | |
552 r = sizeof(pst_descn); | |
553 } | |
554 else { | |
555 pst_desc32 d32; | |
44 | 556 DEBUG_INDEX(("Decoding desc32\n")); |
43 | 557 DEBUG_HEXDUMPC(buf, sizeof(pst_desc32), 0x10); |
558 memcpy(&d32, buf, sizeof(pst_desc32)); | |
559 LE32_CPU(d32.d_id); | |
560 LE32_CPU(d32.desc_id); | |
561 LE32_CPU(d32.list_id); | |
562 LE32_CPU(d32.parent_id); | |
563 desc->d_id = d32.d_id; | |
564 desc->desc_id = d32.desc_id; | |
565 desc->list_id = d32.list_id; | |
566 desc->parent_id = d32.parent_id; | |
567 desc->u1 = 0; | |
568 r = sizeof(pst_desc32); | |
569 } | |
570 return r; | |
571 } | |
572 | |
573 | |
46 | 574 static size_t pst_decode_table(pst_file *pf, struct pst_table_ptr_structn *table, char *buf); |
575 static size_t pst_decode_table(pst_file *pf, struct pst_table_ptr_structn *table, char *buf) { | |
576 size_t r; | |
577 if (pf->do_read64) { | |
44 | 578 DEBUG_INDEX(("Decoding table64\n")); |
46 | 579 DEBUG_HEXDUMPC(buf, sizeof(struct pst_table_ptr_structn), 0x10); |
580 memcpy(table, buf, sizeof(struct pst_table_ptr_structn)); | |
43 | 581 LE64_CPU(table->start); |
582 LE64_CPU(table->u1); | |
583 LE64_CPU(table->offset); | |
46 | 584 r =sizeof(struct pst_table_ptr_structn); |
43 | 585 } |
586 else { | |
46 | 587 struct pst_table_ptr_struct32 t32; |
44 | 588 DEBUG_INDEX(("Decoding table32\n")); |
46 | 589 DEBUG_HEXDUMPC(buf, sizeof( struct pst_table_ptr_struct32), 0x10); |
590 memcpy(&t32, buf, sizeof(struct pst_table_ptr_struct32)); | |
43 | 591 LE32_CPU(t32.start); |
592 LE32_CPU(t32.u1); | |
593 LE32_CPU(t32.offset); | |
594 table->start = t32.start; | |
595 table->u1 = t32.u1; | |
596 table->offset = t32.offset; | |
46 | 597 r = sizeof(struct pst_table_ptr_struct32); |
43 | 598 } |
599 return r; | |
600 } | |
601 | |
602 | |
46 | 603 static size_t pst_decode_index(pst_file *pf, pst_index *index, char *buf); |
604 static size_t pst_decode_index(pst_file *pf, pst_index *index, char *buf) { | |
605 size_t r; | |
606 if (pf->do_read64) { | |
44 | 607 DEBUG_INDEX(("Decoding index64\n")); |
43 | 608 DEBUG_HEXDUMPC(buf, sizeof(pst_index), 0x10); |
609 memcpy(index, buf, sizeof(pst_index)); | |
610 LE64_CPU(index->id); | |
611 LE64_CPU(index->offset); | |
612 LE16_CPU(index->size); | |
613 LE16_CPU(index->u0); | |
614 LE16_CPU(index->u1); | |
615 r = sizeof(pst_index); | |
616 } else { | |
617 pst_index32 index32; | |
44 | 618 DEBUG_INDEX(("Decoding index32\n")); |
43 | 619 DEBUG_HEXDUMPC(buf, sizeof(pst_index32), 0x10); |
620 memcpy(&index32, buf, sizeof(pst_index32)); | |
46 | 621 LE32_CPU(index32.id); |
622 LE32_CPU(index32.offset); | |
623 LE16_CPU(index32.size); | |
624 LE16_CPU(index32.u1); | |
43 | 625 index->id = index32.id; |
626 index->offset = index32.offset; | |
627 index->size = index32.size; | |
628 index->u1 = index32.u1; | |
629 r = sizeof(pst_index32); | |
630 } | |
631 return r; | |
632 } | |
633 | |
634 | |
46 | 635 static size_t pst_decode_assoc(pst_file *pf, pst_id2_assoc *assoc, char *buf); |
636 static size_t pst_decode_assoc(pst_file *pf, pst_id2_assoc *assoc, char *buf) { | |
637 size_t r; | |
638 if (pf->do_read64) { | |
639 DEBUG_INDEX(("Decoding assoc64\n")); | |
640 DEBUG_HEXDUMPC(buf, sizeof(pst_id2_assoc), 0x10); | |
641 memcpy(assoc, buf, sizeof(pst_id2_assoc)); | |
642 LE64_CPU(assoc->id2); | |
643 LE64_CPU(assoc->id); | |
644 LE64_CPU(assoc->table2); | |
645 r = sizeof(pst_id2_assoc); | |
646 } else { | |
647 pst_id2_assoc32 assoc32; | |
648 DEBUG_INDEX(("Decoding assoc32\n")); | |
649 DEBUG_HEXDUMPC(buf, sizeof(pst_id2_assoc32), 0x10); | |
650 memcpy(&assoc32, buf, sizeof(pst_id2_assoc32)); | |
651 LE32_CPU(assoc32.id2); | |
652 LE32_CPU(assoc32.id); | |
653 LE32_CPU(assoc32.table2); | |
654 assoc->id2 = assoc32.id2; | |
655 assoc->id = assoc32.id; | |
656 assoc->table2 = assoc32.table2; | |
657 r = sizeof(pst_id2_assoc32); | |
658 } | |
659 return r; | |
660 } | |
661 | |
662 | |
663 int pst_build_id_ptr(pst_file *pf, off_t offset, int32_t depth, uint64_t linku1, uint64_t start_val, uint64_t end_val) { | |
664 struct pst_table_ptr_structn table, table2; | |
43 | 665 pst_index_ll *i_ptr=NULL; |
666 pst_index index; | |
667 int32_t x, item_count; | |
668 uint64_t old = start_val; | |
669 char *buf = NULL, *bptr; | |
670 | |
46 | 671 DEBUG_ENT("pst_build_id_ptr"); |
43 | 672 DEBUG_INDEX(("offset %x depth %i linku1 %llx start %llx end %llx\n", offset, depth, linku1, start_val, end_val)); |
673 if (end_val <= start_val) { | |
674 DEBUG_WARN(("The end value is BEFORE the start value. This function will quit. Soz. [start:%#llx, end:%#llx]\n", start_val, end_val)); | |
675 DEBUG_RET(); | |
676 return -1; | |
677 } | |
678 DEBUG_INDEX(("Reading index block\n")); | |
46 | 679 if (pst_read_block_size(pf, offset, BLOCK_SIZE, &buf, 0, 0) < BLOCK_SIZE) { |
43 | 680 DEBUG_WARN(("Failed to read %i bytes\n", BLOCK_SIZE)); |
681 if (buf) free(buf); | |
682 DEBUG_RET(); | |
683 return -1; | |
684 } | |
685 bptr = buf; | |
44 | 686 DEBUG_HEXDUMPC(buf, BLOCK_SIZE, ITEM_SIZE32); |
46 | 687 item_count = (int32_t)(unsigned)(buf[ITEM_COUNT_OFFSET]); |
43 | 688 if (item_count > INDEX_COUNT_MAX) { |
689 DEBUG_WARN(("Item count %i too large, max is %i\n", item_count, INDEX_COUNT_MAX)); | |
690 if (buf) free(buf); | |
691 DEBUG_RET(); | |
692 return -1; | |
693 } | |
46 | 694 index.id = pst_getIntAt(pf, buf+BACKLINK_OFFSET); |
43 | 695 if (index.id != linku1) { |
696 DEBUG_WARN(("Backlink %#llx in this node does not match required %#llx\n", index.id, linku1)); | |
697 if (buf) free(buf); | |
698 DEBUG_RET(); | |
699 return -1; | |
700 } | |
701 | |
702 if (buf[LEVEL_INDICATOR_OFFSET] == '\0') { | |
703 // this node contains leaf pointers | |
704 x = 0; | |
705 while (x < item_count) { | |
46 | 706 bptr += pst_decode_index(pf, &index, bptr); |
43 | 707 x++; |
708 if (index.id == 0) break; | |
46 | 709 DEBUG_INDEX(("[%i]%i Item [id = %#llx, offset = %#llx, u1 = %#x, size = %i(%#x)]\n", |
43 | 710 depth, x, index.id, index.offset, index.u1, index.size, index.size)); |
711 // if (index.id & 0x02) DEBUG_INDEX(("two-bit set!!\n")); | |
712 if ((index.id >= end_val) || (index.id < old)) { | |
713 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n")); | |
714 if (buf) free(buf); | |
715 DEBUG_RET(); | |
716 return -1; | |
717 } | |
718 old = index.id; | |
46 | 719 if (x == (int32_t)1) { // first entry |
43 | 720 if ((start_val) && (index.id != start_val)) { |
721 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n")); | |
722 if (buf) free(buf); | |
723 DEBUG_RET(); | |
724 return -1; | |
725 } | |
726 } | |
727 i_ptr = (pst_index_ll*) xmalloc(sizeof(pst_index_ll)); | |
728 i_ptr->id = index.id; | |
729 i_ptr->offset = index.offset; | |
730 i_ptr->u1 = index.u1; | |
731 i_ptr->size = index.size; | |
732 i_ptr->next = NULL; | |
733 if (pf->i_tail) pf->i_tail->next = i_ptr; | |
734 if (!pf->i_head) pf->i_head = i_ptr; | |
735 pf->i_tail = i_ptr; | |
736 } | |
737 } else { | |
738 // this node contains node pointers | |
739 x = 0; | |
740 while (x < item_count) { | |
46 | 741 bptr += pst_decode_table(pf, &table, bptr); |
43 | 742 x++; |
743 if (table.start == 0) break; | |
744 if (x < item_count) { | |
46 | 745 (void)pst_decode_table(pf, &table2, bptr); |
43 | 746 } |
747 else { | |
748 table2.start = end_val; | |
749 } | |
46 | 750 DEBUG_INDEX(("[%i] %i Index Table [start id = %#llx, u1 = %#llx, offset = %#llx, end id = %#llx]\n", |
43 | 751 depth, x, table.start, table.u1, table.offset, table2.start)); |
752 if ((table.start >= end_val) || (table.start < old)) { | |
753 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n")); | |
754 if (buf) free(buf); | |
755 DEBUG_RET(); | |
756 return -1; | |
757 } | |
758 old = table.start; | |
46 | 759 if (x == (int32_t)1) { // first entry |
43 | 760 if ((start_val) && (table.start != start_val)) { |
761 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n")); | |
762 if (buf) free(buf); | |
763 DEBUG_RET(); | |
764 return -1; | |
765 } | |
766 } | |
46 | 767 (void)pst_build_id_ptr(pf, table.offset, depth+1, table.u1, table.start, table2.start); |
43 | 768 } |
769 } | |
770 if (buf) free (buf); | |
771 DEBUG_RET(); | |
772 return 0; | |
16 | 773 } |
774 | |
775 | |
35 | 776 /** this list node type is used for a quick cache |
43 | 777 of the descriptor tree nodes (rooted at pf->d_head) |
778 and for a "lost and found" list. | |
779 If the parent isn't found yet, put it on the lost and found | |
780 list and check it each time you read a new item. | |
35 | 781 */ |
782 struct cache_list_node { | |
43 | 783 pst_desc_ll *ptr; |
784 /** only used for lost and found lists */ | |
44 | 785 uint64_t parent; |
43 | 786 struct cache_list_node *next; |
787 struct cache_list_node *prev; | |
35 | 788 }; |
46 | 789 static struct cache_list_node *cache_head; |
790 static struct cache_list_node *cache_tail; | |
791 static struct cache_list_node *lostfound_head; | |
792 static int cache_count; | |
35 | 793 |
794 | |
795 /** | |
43 | 796 add the d_ptr descriptor into the global tree |
35 | 797 */ |
46 | 798 static void record_descriptor(pst_file *pf, pst_desc_ll *d_ptr, uint64_t parent_id); |
799 static void record_descriptor(pst_file *pf, pst_desc_ll *d_ptr, uint64_t parent_id) { | |
43 | 800 struct cache_list_node *lostfound_ptr = NULL; |
801 struct cache_list_node *cache_ptr = NULL; | |
802 pst_desc_ll *parent = NULL; | |
803 | |
804 if (parent_id == 0 || parent_id == d_ptr->id) { | |
805 // add top level node to the descriptor tree | |
806 if (parent_id == 0) { | |
807 DEBUG_INDEX(("No Parent\n")); | |
808 } else { | |
809 DEBUG_INDEX(("Record is its own parent. What is this world coming to?\n")); | |
810 } | |
811 if (pf->d_tail) pf->d_tail->next = d_ptr; | |
812 if (!pf->d_head) pf->d_head = d_ptr; | |
813 d_ptr->prev = pf->d_tail; | |
814 pf->d_tail = d_ptr; | |
815 } else { | |
816 DEBUG_INDEX(("Searching for parent\n")); | |
817 // check in the cache for the parent | |
818 cache_ptr = cache_head; | |
819 while (cache_ptr && (cache_ptr->ptr->id != parent_id)) { | |
820 cache_ptr = cache_ptr->next; | |
821 } | |
46 | 822 if (!cache_ptr && (parent = pst_getDptr(pf, parent_id)) == NULL) { |
43 | 823 // check in the lost/found list |
824 lostfound_ptr = lostfound_head; | |
825 while (lostfound_ptr && (lostfound_ptr->ptr->id != parent_id)) { | |
826 lostfound_ptr = lostfound_ptr->next; | |
827 } | |
828 if (!lostfound_ptr) { | |
46 | 829 DEBUG_WARN(("ERROR -- cannot find parent with id %#llx. Adding to lost/found\n", parent_id)); |
43 | 830 lostfound_ptr = (struct cache_list_node*) xmalloc(sizeof(struct cache_list_node)); |
831 lostfound_ptr->prev = NULL; | |
832 lostfound_ptr->next = lostfound_head; | |
833 lostfound_ptr->parent = parent_id; | |
834 lostfound_ptr->ptr = d_ptr; | |
835 lostfound_head = lostfound_ptr; | |
836 } else { | |
837 parent = lostfound_ptr->ptr; | |
46 | 838 DEBUG_INDEX(("Found parent (%#llx) in Lost and Found\n", parent->id)); |
43 | 839 } |
840 } | |
841 | |
842 if (cache_ptr || parent) { | |
843 if (cache_ptr) | |
844 // parent is already in the cache | |
845 parent = cache_ptr->ptr; | |
846 else { | |
847 //add the parent to the cache | |
848 DEBUG_INDEX(("Cache addition\n")); | |
849 cache_ptr = (struct cache_list_node*) xmalloc(sizeof(struct cache_list_node)); | |
850 cache_ptr->prev = NULL; | |
851 cache_ptr->next = cache_head; | |
852 cache_ptr->ptr = parent; | |
853 cache_head = cache_ptr; | |
854 if (!cache_tail) cache_tail = cache_ptr; | |
855 cache_count++; | |
856 if (cache_count > 100) { | |
857 DEBUG_INDEX(("trimming quick cache\n")); | |
858 //remove one from the end | |
859 cache_ptr = cache_tail; | |
860 cache_tail = cache_ptr->prev; | |
861 free (cache_ptr); | |
862 cache_count--; | |
863 } | |
864 } | |
865 DEBUG_INDEX(("Found a parent\n")); | |
866 parent->no_child++; | |
867 d_ptr->parent = parent; | |
868 if (parent->child_tail) parent->child_tail->next = d_ptr; | |
869 if (!parent->child) parent->child = d_ptr; | |
870 d_ptr->prev = parent->child_tail; | |
871 parent->child_tail = d_ptr; | |
872 } | |
873 } | |
35 | 874 } |
875 | |
46 | 876 int pst_build_desc_ptr (pst_file *pf, off_t offset, int32_t depth, uint64_t linku1, uint64_t *high_id, uint64_t start_val, uint64_t end_val) { |
877 struct pst_table_ptr_structn table, table2; | |
43 | 878 pst_descn desc_rec; |
879 pst_desc_ll *d_ptr=NULL, *parent=NULL; | |
880 int32_t x, item_count; | |
881 uint32_t old = start_val; | |
882 char *buf = NULL, *bptr; | |
883 struct cache_list_node *cache_ptr = NULL; | |
884 struct cache_list_node *lostfound_ptr = NULL; | |
885 struct cache_list_node *lostfound_shd = NULL; | |
886 struct cache_list_node *lostfound_tmp = NULL; | |
887 | |
888 if (depth == 0) { | |
889 // initialize the linked list and lost/found list. | |
890 cache_head = NULL; | |
891 cache_tail = NULL; | |
892 lostfound_head = NULL; | |
893 cache_count = 0; | |
894 } | |
895 | |
46 | 896 DEBUG_ENT("pst_build_desc_ptr"); |
897 DEBUG_INDEX(("offset %llx depth %i linku1 %llx start %llx end %llx\n", offset, depth, linku1, start_val, end_val)); | |
43 | 898 if (end_val <= start_val) { |
46 | 899 DEBUG_WARN(("The end value is BEFORE the start value. This function will quit. Soz. [start:%#llx, end:%#llx]\n", start_val, end_val)); |
43 | 900 DEBUG_RET(); |
901 return -1; | |
902 } | |
903 DEBUG_INDEX(("Reading desc block\n")); | |
46 | 904 if (pst_read_block_size(pf, offset, DESC_BLOCK_SIZE, &buf, 0, 0) < DESC_BLOCK_SIZE) { |
43 | 905 DEBUG_WARN(("Failed to read %i bytes\n", DESC_BLOCK_SIZE)); |
906 if (buf) free(buf); | |
907 DEBUG_RET(); | |
908 return -1; | |
909 } | |
910 bptr = buf; | |
46 | 911 item_count = (int32_t)(unsigned)(buf[ITEM_COUNT_OFFSET]); |
912 | |
913 desc_rec.d_id = pst_getIntAt(pf, buf+BACKLINK_OFFSET); | |
43 | 914 if (desc_rec.d_id != linku1) { |
46 | 915 DEBUG_WARN(("Backlink %#llx in this node does not match required %#llx\n", desc_rec.d_id, linku1)); |
43 | 916 if (buf) free(buf); |
917 DEBUG_RET(); | |
918 return -1; | |
919 } | |
920 if (buf[LEVEL_INDICATOR_OFFSET] == '\0') { | |
921 // this node contains leaf pointers | |
44 | 922 DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, DESC_SIZE32); |
43 | 923 if (item_count > DESC_COUNT_MAX) { |
924 DEBUG_WARN(("Item count %i too large, max is %i\n", item_count, DESC_COUNT_MAX)); | |
925 if (buf) free(buf); | |
926 DEBUG_RET(); | |
927 return -1; | |
928 } | |
929 x = 0; | |
930 while (x < item_count) { | |
46 | 931 bptr += pst_decode_desc(pf, &desc_rec, bptr); |
43 | 932 x++; |
933 if (desc_rec.d_id == 0) break; | |
46 | 934 DEBUG_INDEX(("[%i] Item(%#x) = [d_id = %#llx, desc_id = %#llx, list_id = %#llx, parent_id = %#x]\n", |
43 | 935 depth, x, desc_rec.d_id, desc_rec.desc_id, desc_rec.list_id, desc_rec.parent_id)); |
936 if ((desc_rec.d_id >= end_val) || (desc_rec.d_id < old)) { | |
937 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n")); | |
938 DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, 16); | |
939 if (buf) free(buf); | |
940 DEBUG_RET(); | |
941 return -1; | |
942 } | |
943 old = desc_rec.d_id; | |
46 | 944 if (x == (int32_t)1) { // first entry |
43 | 945 if (start_val && (desc_rec.d_id != start_val)) { |
946 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n")); | |
947 if (buf) free(buf); | |
948 DEBUG_RET(); | |
949 return -1; | |
950 } | |
951 } | |
952 // When duplicates found, just update the info.... perhaps this is correct functionality | |
953 DEBUG_INDEX(("Searching for existing record\n")); | |
46 | 954 if (desc_rec.d_id <= *high_id && (d_ptr = pst_getDptr(pf, desc_rec.d_id))) { |
43 | 955 DEBUG_INDEX(("Updating Existing Values\n")); |
46 | 956 d_ptr->list_index = pst_getID(pf, desc_rec.list_id); |
957 d_ptr->desc = pst_getID(pf, desc_rec.desc_id); | |
958 DEBUG_INDEX(("\tdesc = %#llx\tlist_index=%#llx\n", | |
959 (d_ptr->desc==NULL?0LL:d_ptr->desc->id), | |
960 (d_ptr->list_index==NULL?0LL:d_ptr->list_index->id))); | |
43 | 961 if (d_ptr->parent && desc_rec.parent_id != d_ptr->parent->id) { |
962 DEBUG_INDEX(("WARNING -- Parent of record has changed. Moving it\n")); | |
963 //hmmm, we must move the record. | |
964 // first we must remove from current location | |
965 // change previous record to point next to our next | |
966 // if no previous, then use parent's child | |
967 // if no parent then change pf->d_head; | |
968 // change next's prev to our prev | |
969 // if no next then change parent's child_tail | |
970 // if no parent then change pf->d_tail | |
971 if (d_ptr->prev) | |
972 d_ptr->prev->next = d_ptr->next; | |
973 else if (d_ptr->parent) | |
974 d_ptr->parent->child = d_ptr->next; | |
975 else | |
976 pf->d_head = d_ptr->next; | |
977 | |
978 if (d_ptr->next) | |
979 d_ptr->next->prev = d_ptr->prev; | |
980 else if (d_ptr->parent) | |
981 d_ptr->parent->child_tail = d_ptr->prev; | |
982 else | |
983 pf->d_tail = d_ptr->prev; | |
984 | |
985 d_ptr->prev = NULL; | |
986 d_ptr->next = NULL; | |
987 d_ptr->parent = NULL; | |
988 record_descriptor(pf, d_ptr, desc_rec.parent_id); // add to the global tree | |
989 } | |
990 } else { | |
991 if (*high_id < desc_rec.d_id) { | |
992 DEBUG_INDEX(("Updating New High\n")); | |
993 *high_id = desc_rec.d_id; | |
994 } | |
995 DEBUG_INDEX(("New Record\n")); | |
996 d_ptr = (pst_desc_ll*) xmalloc(sizeof(pst_desc_ll)); | |
997 d_ptr->id = desc_rec.d_id; | |
46 | 998 d_ptr->list_index = pst_getID(pf, desc_rec.list_id); |
999 d_ptr->desc = pst_getID(pf, desc_rec.desc_id); | |
43 | 1000 d_ptr->prev = NULL; |
1001 d_ptr->next = NULL; | |
1002 d_ptr->parent = NULL; | |
1003 d_ptr->child = NULL; | |
1004 d_ptr->child_tail = NULL; | |
1005 d_ptr->no_child = 0; | |
1006 record_descriptor(pf, d_ptr, desc_rec.parent_id); // add to the global tree | |
1007 | |
1008 } | |
1009 // check here to see if d_ptr is the parent of any of the items in the lost / found list | |
1010 lostfound_ptr = lostfound_head; | |
1011 lostfound_shd = NULL; | |
1012 while (lostfound_ptr) { | |
1013 if (lostfound_ptr->parent == d_ptr->id) { | |
46 | 1014 DEBUG_INDEX(("Found a child (%#llx) of the current record. Joining to main structure.\n", lostfound_ptr->ptr->id)); |
43 | 1015 parent = d_ptr; |
1016 d_ptr = lostfound_ptr->ptr; | |
1017 parent->no_child++; | |
1018 d_ptr->parent = parent; | |
1019 if (parent->child_tail) parent->child_tail->next = d_ptr; | |
1020 if (!parent->child) parent->child = d_ptr; | |
1021 d_ptr->prev = parent->child_tail; | |
1022 parent->child_tail = d_ptr; | |
1023 if (!lostfound_shd) lostfound_head = lostfound_ptr->next; | |
1024 else lostfound_shd->next = lostfound_ptr->next; | |
1025 lostfound_tmp = lostfound_ptr->next; | |
1026 free(lostfound_ptr); | |
1027 lostfound_ptr = lostfound_tmp; | |
1028 } else { | |
1029 lostfound_shd = lostfound_ptr; | |
1030 lostfound_ptr = lostfound_ptr->next; | |
1031 } | |
1032 } | |
1033 } | |
1034 } else { | |
1035 // this node contains node pointers | |
44 | 1036 DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, ITEM_SIZE32); |
43 | 1037 if (item_count > INDEX_COUNT_MAX) { |
1038 DEBUG_WARN(("Item count %i too large, max is %i\n", item_count, INDEX_COUNT_MAX)); | |
1039 if (buf) free(buf); | |
1040 DEBUG_RET(); | |
1041 return -1; | |
1042 } | |
1043 x = 0; | |
1044 while (x < item_count) { | |
46 | 1045 bptr += pst_decode_table(pf, &table, bptr); |
43 | 1046 x++; |
1047 if (table.start == 0) break; | |
1048 if (x < item_count) { | |
46 | 1049 (void)pst_decode_table(pf, &table2, bptr); |
43 | 1050 } |
1051 else { | |
1052 table2.start = end_val; | |
1053 } | |
46 | 1054 DEBUG_INDEX(("[%i] %i Descriptor Table [start id = %#llx, u1 = %#llx, offset = %#llx, end id = %#llx]\n", |
43 | 1055 depth, x, table.start, table.u1, table.offset, table2.start)); |
1056 if ((table.start >= end_val) || (table.start < old)) { | |
1057 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n")); | |
1058 if (buf) free(buf); | |
1059 DEBUG_RET(); | |
1060 return -1; | |
1061 } | |
1062 old = table.start; | |
46 | 1063 if (x == (int32_t)1) { // first entry |
1064 if (start_val && (table.start != start_val)) { | |
43 | 1065 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n")); |
1066 if (buf) free(buf); | |
1067 DEBUG_RET(); | |
1068 return -1; | |
1069 } | |
1070 } | |
46 | 1071 (void)pst_build_desc_ptr(pf, table.offset, depth+1, table.u1, high_id, table.start, table2.start); |
43 | 1072 } |
1073 } | |
1074 if (depth == 0) { | |
1075 // free the quick cache | |
1076 while (cache_head) { | |
1077 cache_ptr = cache_head->next; | |
1078 free(cache_head); | |
1079 cache_head = cache_ptr; | |
1080 } | |
1081 // free the lost and found | |
1082 while (lostfound_head) { | |
1083 lostfound_ptr = lostfound_head->next; | |
46 | 1084 WARN(("unused lost/found item with parent %lld))", lostfound_head->parent)); |
43 | 1085 free(lostfound_head); |
1086 lostfound_head = lostfound_ptr; | |
1087 } | |
1088 } | |
1089 if (buf) free(buf); | |
1090 DEBUG_RET(); | |
1091 return 0; | |
16 | 1092 } |
1093 | |
1094 | |
46 | 1095 pst_item* pst_parse_item(pst_file *pf, pst_desc_ll *d_ptr) { |
43 | 1096 pst_num_array * list; |
1097 pst_index2_ll *id2_head = NULL; | |
1098 pst_index_ll *id_ptr = NULL; | |
1099 pst_item *item = NULL; | |
1100 pst_item_attach *attach = NULL; | |
46 | 1101 int32_t x; |
1102 DEBUG_ENT("pst_parse_item"); | |
43 | 1103 if (!d_ptr) { |
1104 DEBUG_WARN(("you cannot pass me a NULL! I don't want it!\n")); | |
1105 DEBUG_RET(); | |
1106 return NULL; | |
1107 } | |
1108 | |
1109 if (!d_ptr->desc) { | |
1110 DEBUG_WARN(("why is d_ptr->desc == NULL? I don't want to do anything else with this record\n")); | |
1111 DEBUG_RET(); | |
1112 return NULL; | |
1113 } | |
1114 | |
1115 if (d_ptr->list_index) { | |
46 | 1116 id2_head = pst_build_id2(pf, d_ptr->list_index, NULL); |
1117 (void)pst_printID2ptr(id2_head); | |
43 | 1118 } else { |
1119 DEBUG_WARN(("Have not been able to fetch any id2 values for this item. Brace yourself!\n")); | |
1120 } | |
1121 | |
46 | 1122 list = pst_parse_block(pf, d_ptr->desc->id, id2_head); |
43 | 1123 if (!list) { |
46 | 1124 DEBUG_WARN(("pst_parse_block() returned an error for d_ptr->desc->id [%#llx]\n", d_ptr->desc->id)); |
1125 if (id2_head) pst_free_id2(id2_head); | |
43 | 1126 DEBUG_RET(); |
1127 return NULL; | |
1128 } | |
1129 | |
1130 item = (pst_item*) xmalloc(sizeof(pst_item)); | |
1131 memset(item, 0, sizeof(pst_item)); | |
1132 | |
46 | 1133 if (pst_process(list, item, NULL)) { |
1134 DEBUG_WARN(("pst_process() returned non-zero value. That is an error\n")); | |
1135 if (item) pst_freeItem(item); | |
1136 if (list) pst_free_list(list); | |
1137 if (id2_head) pst_free_id2(id2_head); | |
43 | 1138 DEBUG_RET(); |
1139 return NULL; | |
1140 } | |
46 | 1141 if (list) pst_free_list(list); |
1142 list = NULL; //pst_process will free the items in the list | |
1143 | |
1144 if ((id_ptr = pst_getID2(id2_head, (uint64_t)0x671))) { | |
43 | 1145 // attachments exist - so we will process them |
1146 while (item->attach) { | |
1147 attach = item->attach->next; | |
1148 free(item->attach); | |
1149 item->attach = attach; | |
1150 } | |
1151 | |
1152 DEBUG_EMAIL(("ATTACHMENT processing attachment\n")); | |
46 | 1153 if ((list = pst_parse_block(pf, id_ptr->id, id2_head)) == NULL) { |
43 | 1154 DEBUG_WARN(("ERROR error processing main attachment record\n")); |
46 | 1155 if (item) pst_freeItem(item); |
1156 if (id2_head) pst_free_id2(id2_head); | |
43 | 1157 DEBUG_RET(); |
1158 return NULL; | |
1159 } | |
1160 else { | |
1161 x = 0; | |
1162 while (x < list->count_array) { | |
1163 attach = (pst_item_attach*) xmalloc (sizeof(pst_item_attach)); | |
1164 memset (attach, 0, sizeof(pst_item_attach)); | |
1165 attach->next = item->attach; | |
1166 item->attach = attach; | |
1167 x++; | |
1168 } | |
1169 | |
46 | 1170 if (pst_process(list, item, item->attach)) { |
1171 DEBUG_WARN(("ERROR pst_process() failed with attachments\n")); | |
1172 if (item) pst_freeItem(item); | |
1173 if (list) pst_free_list(list); | |
1174 if (id2_head) pst_free_id2(id2_head); | |
43 | 1175 DEBUG_RET(); |
1176 return NULL; | |
1177 } | |
46 | 1178 if (list) pst_free_list(list); |
43 | 1179 list = NULL; |
1180 | |
1181 // now we will have initial information of each attachment stored in item->attach... | |
1182 // we must now read the secondary record for each based on the id2 val associated with | |
1183 // each attachment | |
1184 attach = item->attach; | |
1185 while (attach) { | |
46 | 1186 if ((id_ptr = pst_getID2(id2_head, attach->id2_val))) { |
43 | 1187 // id_ptr is a record describing the attachment |
1188 // we pass NULL instead of id2_head cause we don't want it to | |
1189 // load all the extra stuff here. | |
46 | 1190 if ((list = pst_parse_block(pf, id_ptr->id, NULL)) == NULL) { |
43 | 1191 DEBUG_WARN(("ERROR error processing an attachment record\n")); |
1192 attach = attach->next; | |
1193 continue; | |
1194 } | |
46 | 1195 if (pst_process(list, item, attach)) { |
1196 DEBUG_WARN(("ERROR pst_process() failed with an attachment\n")); | |
1197 if (list) pst_free_list(list); | |
43 | 1198 list = NULL; |
1199 attach = attach->next; | |
1200 continue; | |
1201 } | |
46 | 1202 if (list) pst_free_list(list); |
43 | 1203 list = NULL; |
46 | 1204 id_ptr = pst_getID2(id2_head, attach->id2_val); |
43 | 1205 if (id_ptr) { |
1206 // id2_val has been updated to the ID2 value of the datablock containing the | |
1207 // attachment data | |
1208 attach->id_val = id_ptr->id; | |
1209 } else { | |
46 | 1210 DEBUG_WARN(("have not located the correct value for the attachment [%#llx]\n", attach->id2_val)); |
43 | 1211 } |
1212 } else { | |
46 | 1213 DEBUG_WARN(("ERROR cannot locate id2 value %#llx\n", attach->id2_val)); |
43 | 1214 } |
1215 attach = attach->next; | |
1216 } | |
1217 } | |
1218 } | |
1219 | |
46 | 1220 if (id2_head) pst_free_id2(id2_head); |
43 | 1221 DEBUG_RET(); |
1222 return item; | |
16 | 1223 } |
1224 | |
1225 | |
46 | 1226 static void freeall(unsigned char *buf, pst_block_offset_pointer *p1, |
1227 pst_block_offset_pointer *p2, | |
1228 pst_block_offset_pointer *p3, | |
1229 pst_block_offset_pointer *p4, | |
1230 pst_block_offset_pointer *p5, | |
1231 pst_block_offset_pointer *p6, | |
1232 pst_block_offset_pointer *p7); | |
1233 static void freeall(unsigned char *buf, pst_block_offset_pointer *p1, | |
1234 pst_block_offset_pointer *p2, | |
1235 pst_block_offset_pointer *p3, | |
1236 pst_block_offset_pointer *p4, | |
1237 pst_block_offset_pointer *p5, | |
1238 pst_block_offset_pointer *p6, | |
1239 pst_block_offset_pointer *p7) { | |
43 | 1240 if (buf) free(buf); |
1241 if (p1->needfree) free(p1->from); | |
1242 if (p2->needfree) free(p2->from); | |
1243 if (p3->needfree) free(p3->from); | |
1244 if (p4->needfree) free(p4->from); | |
1245 if (p5->needfree) free(p5->from); | |
1246 if (p6->needfree) free(p6->from); | |
1247 if (p7->needfree) free(p7->from); | |
35 | 1248 } |
1249 | |
1250 | |
46 | 1251 pst_num_array * pst_parse_block(pst_file *pf, uint64_t block_id, pst_index2_ll *i2_head) { |
43 | 1252 unsigned char *buf = NULL; |
1253 pst_num_array *na_ptr = NULL, *na_head = NULL; | |
1254 pst_block_offset_pointer block_offset1; | |
1255 pst_block_offset_pointer block_offset2; | |
1256 pst_block_offset_pointer block_offset3; | |
1257 pst_block_offset_pointer block_offset4; | |
1258 pst_block_offset_pointer block_offset5; | |
1259 pst_block_offset_pointer block_offset6; | |
1260 pst_block_offset_pointer block_offset7; | |
46 | 1261 int32_t x; |
1262 int num_recs; | |
1263 int count_rec; | |
1264 int32_t num_list; | |
1265 int32_t cur_list; | |
47 | 1266 int block_type; |
43 | 1267 uint32_t rec_size = 0; |
1268 uint32_t ind_ptr; | |
1269 unsigned char* list_start; | |
1270 unsigned char* fr_ptr; | |
1271 unsigned char* to_ptr; | |
46 | 1272 unsigned char* ind2_end = NULL; |
43 | 1273 unsigned char* ind2_ptr = NULL; |
1274 size_t read_size=0; | |
1275 pst_x_attrib_ll *mapptr; | |
1276 | |
1277 struct { | |
1278 uint16_t type; | |
1279 uint16_t ref_type; | |
1280 uint32_t value; | |
1281 } table_rec; //for type 1 (0xBCEC) blocks | |
1282 struct { | |
1283 uint16_t ref_type; | |
1284 uint16_t type; | |
1285 uint16_t ind2_off; | |
1286 uint8_t size; | |
1287 uint8_t slot; | |
1288 } table2_rec; //for type 2 (0x7CEC) blocks | |
1289 struct { | |
1290 uint32_t id; | |
1291 } table3_rec; //for type 3 (0x0101) blocks | |
1292 struct { | |
1293 uint16_t index_offset; | |
1294 uint16_t type; | |
1295 uint32_t offset; | |
1296 } block_hdr; | |
1297 struct { | |
1298 unsigned char seven_c; | |
1299 unsigned char item_count; | |
1300 uint16_t u1; | |
1301 uint16_t u2; | |
1302 uint16_t u3; | |
1303 uint16_t rec_size; | |
1304 uint32_t b_five_offset; | |
1305 uint32_t ind2_offset; | |
1306 uint16_t u7; | |
1307 uint16_t u8; | |
1308 } seven_c_blk; | |
1309 struct _type_d_rec { | |
1310 uint32_t id; | |
1311 uint32_t u1; | |
1312 } * type_d_rec; | |
1313 | |
46 | 1314 DEBUG_ENT("pst_parse_block"); |
1315 if ((read_size = pst_ff_getIDblock_dec(pf, block_id, &buf)) == 0) { | |
1316 WARN(("Error reading block id %#llx\n", block_id)); | |
43 | 1317 if (buf) free (buf); |
1318 DEBUG_RET(); | |
1319 return NULL; | |
1320 } | |
1321 | |
1322 block_offset1.needfree = 0; | |
1323 block_offset2.needfree = 0; | |
1324 block_offset3.needfree = 0; | |
1325 block_offset4.needfree = 0; | |
1326 block_offset5.needfree = 0; | |
1327 block_offset6.needfree = 0; | |
1328 block_offset7.needfree = 0; | |
1329 | |
1330 memcpy(&block_hdr, buf, sizeof(block_hdr)); | |
1331 LE16_CPU(block_hdr.index_offset); | |
1332 LE16_CPU(block_hdr.type); | |
1333 LE32_CPU(block_hdr.offset); | |
1334 DEBUG_EMAIL(("block header (index_offset=%#hx, type=%#hx, offset=%#hx\n", block_hdr.index_offset, block_hdr.type, block_hdr.offset)); | |
1335 | |
1336 ind_ptr = block_hdr.index_offset; | |
1337 | |
46 | 1338 if (block_hdr.type == (uint16_t)0xBCEC) { //type 1 |
43 | 1339 block_type = 1; |
1340 | |
46 | 1341 if (pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, block_hdr.offset, &block_offset1)) { |
43 | 1342 DEBUG_WARN(("internal error (bc.b5 offset %#x) in reading block id %#x\n", block_hdr.offset, block_id)); |
1343 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1344 DEBUG_RET(); | |
1345 return NULL; | |
1346 } | |
1347 memcpy(&table_rec, block_offset1.from, sizeof(table_rec)); | |
1348 LE16_CPU(table_rec.type); | |
1349 LE16_CPU(table_rec.ref_type); | |
1350 LE32_CPU(table_rec.value); | |
1351 DEBUG_EMAIL(("table_rec (type=%#hx, ref_type=%#hx, value=%#x)\n", table_rec.type, table_rec.ref_type, table_rec.value)); | |
1352 | |
46 | 1353 if (table_rec.type != (uint16_t)0x02B5) { |
1354 WARN(("Unknown second block constant - %#hx for id %#llx\n", table_rec.type, block_id)); | |
43 | 1355 DEBUG_HEXDUMPC(buf, sizeof(table_rec), 0x10); |
1356 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1357 DEBUG_RET(); | |
1358 return NULL; | |
1359 } | |
1360 | |
46 | 1361 if (pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, table_rec.value, &block_offset2)) { |
43 | 1362 DEBUG_WARN(("internal error (bc.b5.desc offset) in reading block id %#x\n", table_rec.value, block_id)); |
1363 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1364 DEBUG_RET(); | |
1365 return NULL; | |
1366 } | |
1367 list_start = block_offset2.from; | |
1368 to_ptr = block_offset2.to; | |
1369 num_list = (to_ptr - list_start)/sizeof(table_rec); | |
1370 num_recs = 1; // only going to be one object in these blocks | |
1371 } | |
46 | 1372 else if (block_hdr.type == (uint16_t)0x7CEC) { //type 2 |
43 | 1373 block_type = 2; |
1374 | |
46 | 1375 if (pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, block_hdr.offset, &block_offset3)) { |
43 | 1376 DEBUG_WARN(("internal error (7c.7c offset %#x) in reading block id %#x\n", block_hdr.offset, block_id)); |
1377 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1378 DEBUG_RET(); | |
1379 return NULL; | |
1380 } | |
1381 fr_ptr = block_offset3.from; //now got pointer to "7C block" | |
1382 memset(&seven_c_blk, 0, sizeof(seven_c_blk)); | |
1383 memcpy(&seven_c_blk, fr_ptr, sizeof(seven_c_blk)); | |
1384 LE16_CPU(seven_c_blk.u1); | |
1385 LE16_CPU(seven_c_blk.u2); | |
1386 LE16_CPU(seven_c_blk.u3); | |
1387 LE16_CPU(seven_c_blk.rec_size); | |
1388 LE32_CPU(seven_c_blk.b_five_offset); | |
1389 LE32_CPU(seven_c_blk.ind2_offset); | |
1390 LE16_CPU(seven_c_blk.u7); | |
1391 LE16_CPU(seven_c_blk.u8); | |
1392 | |
1393 list_start = fr_ptr + sizeof(seven_c_blk); // the list of item numbers start after this record | |
1394 | |
1395 if (seven_c_blk.seven_c != 0x7C) { // this would mean it isn't a 7C block! | |
1396 WARN(("Error. There isn't a 7C where I want to see 7C!\n")); | |
1397 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1398 DEBUG_RET(); | |
1399 return NULL; | |
1400 } | |
1401 | |
1402 rec_size = seven_c_blk.rec_size; | |
47 | 1403 num_list = (int32_t)(unsigned)seven_c_blk.item_count; |
43 | 1404 |
46 | 1405 if (pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, seven_c_blk.b_five_offset, &block_offset4)) { |
43 | 1406 DEBUG_WARN(("internal error (7c.b5 offset %#x) in reading block id %#x\n", seven_c_blk.b_five_offset, block_id)); |
1407 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1408 DEBUG_RET(); | |
1409 return NULL; | |
1410 } | |
1411 memcpy(&table_rec, block_offset4.from, sizeof(table_rec)); | |
1412 LE16_CPU(table_rec.type); | |
1413 LE16_CPU(table_rec.ref_type); | |
1414 LE32_CPU(table_rec.value); | |
1415 | |
46 | 1416 if (table_rec.type != (uint16_t)0x04B5) { // different constant than a type 1 record |
1417 WARN(("Unknown second block constant - %#hx for id %#llx\n", table_rec.type, block_id)); | |
43 | 1418 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); |
1419 DEBUG_RET(); | |
1420 return NULL; | |
1421 } | |
1422 | |
46 | 1423 if (pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, table_rec.value, &block_offset5)) { |
1424 DEBUG_WARN(("internal error (7c.5b.desc offset %#x) in reading block id %#llx\n", table_rec.value, block_id)); | |
43 | 1425 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); |
1426 DEBUG_RET(); | |
1427 return NULL; | |
1428 } | |
1429 num_recs = (block_offset5.to - block_offset5.from) / 6; // this will give the number of records in this block | |
1430 | |
46 | 1431 if (pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, seven_c_blk.ind2_offset, &block_offset6)) { |
43 | 1432 DEBUG_WARN(("internal error (7c.ind2 offset %#x) in reading block id %#x\n", seven_c_blk.ind2_offset, block_id)); |
1433 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1434 DEBUG_RET(); | |
1435 return NULL; | |
1436 } | |
1437 ind2_ptr = block_offset6.from; | |
1438 ind2_end = block_offset6.to; | |
1439 } | |
46 | 1440 else if (block_hdr.index_offset == (uint16_t)0x0101) { //type 3 |
43 | 1441 unsigned char *buf2 = NULL; |
46 | 1442 uint16_t n = block_hdr.type; // count |
1443 size_t m = sizeof(table3_rec); | |
1444 uint16_t i; | |
43 | 1445 block_type = 3; |
1446 for (i=0; i<n; i++) { | |
1447 memcpy(&table3_rec, buf+8+i*m, m); | |
1448 LE32_CPU(table3_rec.id); | |
46 | 1449 (void)pst_ff_getIDblock_dec(pf, table3_rec.id, &buf2); |
43 | 1450 if (buf2) free(buf2); |
1451 buf2 = NULL; | |
1452 } | |
1453 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1454 DEBUG_RET(); | |
1455 return NULL; | |
1456 } else { | |
46 | 1457 WARN(("ERROR: Unknown block constant - %#hx for id %#llx\n", block_hdr.type, block_id)); |
43 | 1458 DEBUG_HEXDUMPC(buf, read_size,0x10); |
1459 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1460 DEBUG_RET(); | |
1461 return NULL; | |
1462 } | |
1463 | |
1464 DEBUG_EMAIL(("Mallocing number of records %i\n", num_recs)); | |
1465 for (count_rec=0; count_rec<num_recs; count_rec++) { | |
1466 na_ptr = (pst_num_array*) xmalloc(sizeof(pst_num_array)); | |
1467 memset(na_ptr, 0, sizeof(pst_num_array)); | |
1468 na_ptr->next = na_head; | |
1469 na_head = na_ptr; | |
46 | 1470 // allocate an array of count num_recs to contain sizeof(structpst_num_item) |
1471 na_ptr->items = (struct pst_num_item**) xmalloc(sizeof(struct pst_num_item)*num_list); | |
43 | 1472 na_ptr->count_item = num_list; |
1473 na_ptr->orig_count = num_list; | |
47 | 1474 na_ptr->count_array = (int32_t)num_recs; // each record will have a record of the total number of records |
43 | 1475 for (x=0; x<num_list; x++) na_ptr->items[x] = NULL; |
1476 x = 0; | |
1477 | |
1478 DEBUG_EMAIL(("going to read %i (%#x) items\n", na_ptr->count_item, na_ptr->count_item)); | |
1479 | |
1480 fr_ptr = list_start; // initialize fr_ptr to the start of the list. | |
1481 for (cur_list=0; cur_list<num_list; cur_list++) { //we will increase fr_ptr as we progress through index | |
1482 unsigned char* value_pointer = NULL; // needed for block type 2 with values larger than 4 bytes | |
46 | 1483 size_t value_size = 0; |
47 | 1484 if (block_type == 1) { |
43 | 1485 memcpy(&table_rec, fr_ptr, sizeof(table_rec)); |
1486 LE16_CPU(table_rec.type); | |
1487 LE16_CPU(table_rec.ref_type); | |
1488 //LE32_CPU(table_rec.value); // done later, some may be order invariant | |
1489 fr_ptr += sizeof(table_rec); | |
47 | 1490 } else if (block_type == 2) { |
43 | 1491 // we will copy the table2_rec values into a table_rec record so that we can keep the rest of the code |
1492 memcpy(&table2_rec, fr_ptr, sizeof(table2_rec)); | |
1493 LE16_CPU(table2_rec.ref_type); | |
1494 LE16_CPU(table2_rec.type); | |
1495 LE16_CPU(table2_rec.ind2_off); | |
1496 | |
1497 // table_rec and table2_rec are arranged differently, so assign the values across | |
1498 table_rec.type = table2_rec.type; | |
1499 table_rec.ref_type = table2_rec.ref_type; | |
1500 table_rec.value = 0; | |
1501 if ((ind2_end - ind2_ptr) >= (table2_rec.ind2_off + table2_rec.size)) { | |
46 | 1502 size_t n = table2_rec.size; |
1503 size_t m = sizeof(table_rec.value); | |
43 | 1504 if (n <= m) { |
1505 memcpy(&table_rec.value, ind2_ptr + table2_rec.ind2_off, n); | |
1506 } | |
1507 else { | |
1508 value_pointer = ind2_ptr + table2_rec.ind2_off; | |
1509 value_size = n; | |
1510 } | |
1511 //LE32_CPU(table_rec.value); // done later, some may be order invariant | |
1512 } | |
1513 else { | |
1514 DEBUG_WARN (("Trying to read outside buffer, buffer size %#x, offset %#x, data size %#x\n", | |
1515 read_size, ind2_end-ind2_ptr+table2_rec.ind2_off, table2_rec.size)); | |
1516 } | |
1517 fr_ptr += sizeof(table2_rec); | |
1518 } else { | |
1519 WARN(("Missing code for block_type %i\n", block_type)); | |
1520 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
46 | 1521 if (na_head) pst_free_list(na_head); |
43 | 1522 DEBUG_RET(); |
1523 return NULL; | |
1524 } | |
1525 DEBUG_EMAIL(("reading block %i (type=%#x, ref_type=%#x, value=%#x)\n", | |
1526 x, table_rec.type, table_rec.ref_type, table_rec.value)); | |
1527 | |
1528 if (!na_ptr->items[x]) { | |
46 | 1529 na_ptr->items[x] = (struct pst_num_item*) xmalloc(sizeof(struct pst_num_item)); |
43 | 1530 } |
46 | 1531 memset(na_ptr->items[x], 0, sizeof(struct pst_num_item)); //init it |
43 | 1532 |
1533 // check here to see if the id of the attribute is a mapped one | |
1534 mapptr = pf->x_head; | |
1535 while (mapptr && (mapptr->map < table_rec.type)) mapptr = mapptr->next; | |
1536 if (mapptr && (mapptr->map == table_rec.type)) { | |
1537 if (mapptr->mytype == PST_MAP_ATTRIB) { | |
46 | 1538 na_ptr->items[x]->id = *((uint32_t*)mapptr->data); |
43 | 1539 DEBUG_EMAIL(("Mapped attrib %#x to %#x\n", table_rec.type, na_ptr->items[x]->id)); |
1540 } else if (mapptr->mytype == PST_MAP_HEADER) { | |
1541 DEBUG_EMAIL(("Internet Header mapping found %#x\n", table_rec.type)); | |
46 | 1542 na_ptr->items[x]->id = (uint32_t)PST_ATTRIB_HEADER; |
43 | 1543 na_ptr->items[x]->extra = mapptr->data; |
1544 } | |
46 | 1545 else { |
1546 // nothing, should be assertion failure here | |
1547 } | |
43 | 1548 } else { |
1549 na_ptr->items[x]->id = table_rec.type; | |
1550 } | |
1551 na_ptr->items[x]->type = 0; // checked later before it is set | |
1552 /* Reference Types | |
1553 0x0002 - Signed 16bit value | |
1554 0x0003 - Signed 32bit value | |
1555 0x0004 - 4-byte floating point | |
1556 0x0005 - Floating point double | |
1557 0x0006 - Signed 64-bit int | |
1558 0x0007 - Application Time | |
1559 0x000A - 32-bit error value | |
1560 0x000B - Boolean (non-zero = true) | |
1561 0x000D - Embedded Object | |
1562 0x0014 - 8-byte signed integer (64-bit) | |
1563 0x001E - Null terminated String | |
1564 0x001F - Unicode string | |
1565 0x0040 - Systime - Filetime structure | |
1566 0x0048 - OLE Guid | |
1567 0x0102 - Binary data | |
1568 0x1003 - Array of 32bit values | |
1569 0x1014 - Array of 64bit values | |
1570 0x101E - Array of Strings | |
1571 0x1102 - Array of Binary data | |
1572 */ | |
1573 | |
46 | 1574 if (table_rec.ref_type == (uint16_t)0x0002 || |
1575 table_rec.ref_type == (uint16_t)0x0003 || | |
1576 table_rec.ref_type == (uint16_t)0x000b) { | |
43 | 1577 //contains 32 bits of data |
1578 na_ptr->items[x]->size = sizeof(int32_t); | |
1579 na_ptr->items[x]->type = table_rec.ref_type; | |
1580 na_ptr->items[x]->data = xmalloc(sizeof(int32_t)); | |
1581 memcpy(na_ptr->items[x]->data, &(table_rec.value), sizeof(int32_t)); | |
1582 | |
46 | 1583 } else if (table_rec.ref_type == (uint16_t)0x0005 || |
1584 table_rec.ref_type == (uint16_t)0x000d || | |
1585 table_rec.ref_type == (uint16_t)0x0014 || | |
1586 table_rec.ref_type == (uint16_t)0x001e || | |
1587 table_rec.ref_type == (uint16_t)0x001f || | |
1588 table_rec.ref_type == (uint16_t)0x0040 || | |
1589 table_rec.ref_type == (uint16_t)0x0048 || | |
1590 table_rec.ref_type == (uint16_t)0x0102 || | |
1591 table_rec.ref_type == (uint16_t)0x1003 || | |
1592 table_rec.ref_type == (uint16_t)0x1014 || | |
1593 table_rec.ref_type == (uint16_t)0x101e || | |
1594 table_rec.ref_type == (uint16_t)0x1102) { | |
43 | 1595 //contains index reference to data |
1596 LE32_CPU(table_rec.value); | |
1597 if (value_pointer) { | |
1598 // in a type 2 block, with a value that is more than 4 bytes | |
1599 // directly stored in this block. | |
1600 na_ptr->items[x]->size = value_size; | |
1601 na_ptr->items[x]->type = table_rec.ref_type; | |
1602 na_ptr->items[x]->data = xmalloc(value_size); | |
1603 memcpy(na_ptr->items[x]->data, value_pointer, value_size); | |
1604 } | |
46 | 1605 else if (pst_getBlockOffsetPointer(pf, i2_head, buf, read_size, ind_ptr, table_rec.value, &block_offset7)) { |
1606 if ((table_rec.value & 0xf) == (uint32_t)0xf) { | |
43 | 1607 DEBUG_WARN(("failed to get block offset for table_rec.value of %#x to be read later.\n", table_rec.value)); |
1608 na_ptr->items[x]->size = 0; | |
1609 na_ptr->items[x]->data = NULL; | |
1610 na_ptr->items[x]->type = table_rec.value; | |
1611 } | |
1612 else { | |
1613 if (table_rec.value) { | |
1614 DEBUG_WARN(("failed to get block offset for table_rec.value of %#x\n", table_rec.value)); | |
1615 } | |
1616 na_ptr->count_item --; //we will be skipping a row | |
1617 continue; | |
1618 } | |
1619 } | |
1620 else { | |
1621 value_size = block_offset7.to - block_offset7.from; | |
1622 na_ptr->items[x]->size = value_size; | |
1623 na_ptr->items[x]->type = table_rec.ref_type; | |
1624 na_ptr->items[x]->data = xmalloc(value_size+1); | |
1625 memcpy(na_ptr->items[x]->data, block_offset7.from, value_size); | |
1626 na_ptr->items[x]->data[value_size] = '\0'; // it might be a string, null terminate it. | |
1627 } | |
46 | 1628 if (table_rec.ref_type == (uint16_t)0xd) { |
43 | 1629 // there is still more to do for the type of 0xD embedded objects |
1630 type_d_rec = (struct _type_d_rec*) na_ptr->items[x]->data; | |
1631 LE32_CPU(type_d_rec->id); | |
46 | 1632 na_ptr->items[x]->size = pst_ff_getID2block(pf, type_d_rec->id, i2_head, &(na_ptr->items[x]->data)); |
43 | 1633 if (!na_ptr->items[x]->size){ |
1634 DEBUG_WARN(("not able to read the ID2 data. Setting to be read later. %#x\n", type_d_rec->id)); | |
1635 na_ptr->items[x]->type = type_d_rec->id; // fetch before freeing data, alias pointer | |
1636 free(na_ptr->items[x]->data); | |
1637 na_ptr->items[x]->data = NULL; | |
1638 } | |
1639 } | |
46 | 1640 if (table_rec.ref_type == (uint16_t)0x1f) { |
43 | 1641 // there is more to do for the type 0x1f unicode strings |
46 | 1642 static vbuf *strbuf = NULL; |
1643 static vbuf *unibuf = NULL; | |
1644 if (!strbuf) strbuf=vballoc((size_t)1024); | |
1645 if (!unibuf) unibuf=vballoc((size_t)1024); | |
1646 | |
1647 // splint barfed on the following lines | |
1648 //VBUF_STATIC(strbuf, 1024); | |
1649 //VBUF_STATIC(unibuf, 1024); | |
1650 | |
43 | 1651 //need UTF-16 zero-termination |
1652 vbset(strbuf, na_ptr->items[x]->data, na_ptr->items[x]->size); | |
46 | 1653 vbappend(strbuf, "\0\0", (size_t)2); |
44 | 1654 DEBUG_INDEX(("Iconv in:\n")); |
43 | 1655 DEBUG_HEXDUMPC(strbuf->b, strbuf->dlen, 0x10); |
46 | 1656 (void)vb_utf16to8(unibuf, strbuf->b, strbuf->dlen); |
43 | 1657 free(na_ptr->items[x]->data); |
1658 na_ptr->items[x]->size = unibuf->dlen; | |
1659 na_ptr->items[x]->data = xmalloc(unibuf->dlen); | |
1660 memcpy(na_ptr->items[x]->data, unibuf->b, unibuf->dlen); | |
44 | 1661 DEBUG_INDEX(("Iconv out:\n")); |
43 | 1662 DEBUG_HEXDUMPC(na_ptr->items[x]->data, na_ptr->items[x]->size, 0x10); |
1663 } | |
1664 if (na_ptr->items[x]->type == 0) na_ptr->items[x]->type = table_rec.ref_type; | |
1665 } else { | |
46 | 1666 WARN(("ERROR Unknown ref_type %#hx\n", table_rec.ref_type)); |
43 | 1667 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); |
46 | 1668 if (na_head) pst_free_list(na_head); |
43 | 1669 DEBUG_RET(); |
1670 return NULL; | |
1671 } | |
1672 x++; | |
1673 } | |
1674 DEBUG_EMAIL(("increasing ind2_ptr by %i [%#x] bytes. Was %#x, Now %#x\n", rec_size, rec_size, ind2_ptr, ind2_ptr+rec_size)); | |
1675 ind2_ptr += rec_size; | |
1676 } | |
1677 freeall(buf, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); | |
1678 DEBUG_RET(); | |
1679 return na_head; | |
16 | 1680 } |
1681 | |
1682 | |
1683 // check if item->email is NULL, and init if so | |
43 | 1684 #define MALLOC_EMAIL(x) { if (!x->email) { x->email = (pst_item_email*) xmalloc(sizeof(pst_item_email)); memset(x->email, 0, sizeof(pst_item_email) );} } |
1685 #define MALLOC_FOLDER(x) { if (!x->folder) { x->folder = (pst_item_folder*) xmalloc(sizeof(pst_item_folder)); memset(x->folder, 0, sizeof(pst_item_folder) );} } | |
1686 #define MALLOC_CONTACT(x) { if (!x->contact) { x->contact = (pst_item_contact*) xmalloc(sizeof(pst_item_contact)); memset(x->contact, 0, sizeof(pst_item_contact) );} } | |
16 | 1687 #define MALLOC_MESSAGESTORE(x) { if (!x->message_store) { x->message_store = (pst_item_message_store*) xmalloc(sizeof(pst_item_message_store)); memset(x->message_store, 0, sizeof(pst_item_message_store));} } |
43 | 1688 #define MALLOC_JOURNAL(x) { if (!x->journal) { x->journal = (pst_item_journal*) xmalloc(sizeof(pst_item_journal)); memset(x->journal, 0, sizeof(pst_item_journal) );} } |
1689 #define MALLOC_APPOINTMENT(x) { if (!x->appointment) { x->appointment = (pst_item_appointment*) xmalloc(sizeof(pst_item_appointment)); memset(x->appointment, 0, sizeof(pst_item_appointment) );} } | |
41
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
1690 // malloc space and copy the current item's data null terminated |
43 | 1691 #define LIST_COPY(targ, type) { \ |
1692 targ = type realloc(targ, list->items[x]->size+1); \ | |
1693 memcpy(targ, list->items[x]->data, list->items[x]->size); \ | |
46 | 1694 memset(((char*)targ)+list->items[x]->size, 0, (size_t)1); \ |
41
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
1695 } |
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
1696 // malloc space and copy the current item's data and size |
43 | 1697 #define LIST_COPY_SIZE(targ, type, mysize) { \ |
1698 mysize = list->items[x]->size; \ | |
1699 targ = type realloc(targ, mysize); \ | |
1700 memcpy(targ, list->items[x]->data, mysize); \ | |
16 | 1701 } |
1702 | |
1703 #define NULL_CHECK(x) { if (!x) { DEBUG_EMAIL(("NULL_CHECK: Null Found\n")); break;} } | |
1704 | |
1705 #define MOVE_NEXT(targ) { \ | |
43 | 1706 if (next){\ |
1707 if (!targ) {\ | |
1708 DEBUG_EMAIL(("MOVE_NEXT: Target is NULL. Will stop processing this option\n"));\ | |
1709 break;\ | |
1710 }\ | |
1711 targ = targ->next;\ | |
1712 if (!targ) {\ | |
1713 DEBUG_EMAIL(("MOVE_NEXT: Target is NULL after next. Will stop processing this option\n"));\ | |
1714 break;\ | |
1715 }\ | |
1716 next=0;\ | |
1717 }\ | |
16 | 1718 } |
1719 | |
1720 | |
46 | 1721 int pst_process(pst_num_array *list , pst_item *item, pst_item_attach *attach) { |
43 | 1722 int32_t x, t; |
47 | 1723 int next = 0; |
43 | 1724 pst_item_extra_field *ef; |
1725 | |
46 | 1726 DEBUG_ENT("pst_process"); |
43 | 1727 if (!item) { |
1728 DEBUG_EMAIL(("item cannot be NULL.\n")); | |
1729 DEBUG_RET(); | |
1730 return -1; | |
1731 } | |
1732 | |
1733 while (list) { | |
1734 x = 0; | |
1735 while (x < list->count_item) { | |
1736 // check here to see if the id is one that is mapped. | |
1737 DEBUG_EMAIL(("#%d - id: %#x type: %#x length: %#x\n", x, list->items[x]->id, list->items[x]->type, list->items[x]->size)); | |
1738 | |
1739 switch (list->items[x]->id) { | |
1740 case PST_ATTRIB_HEADER: // CUSTOM attribute for saying the Extra Headers | |
1741 DEBUG_EMAIL(("Extra Field - ")); | |
1742 ef = (pst_item_extra_field*) xmalloc(sizeof(pst_item_extra_field)); | |
1743 memset(ef, 0, sizeof(pst_item_extra_field)); | |
1744 ef->field_name = (char*) xmalloc(strlen(list->items[x]->extra)+1); | |
1745 strcpy(ef->field_name, list->items[x]->extra); | |
1746 LIST_COPY(ef->value, (char*)); | |
1747 ef->next = item->extra_fields; | |
1748 item->extra_fields = ef; | |
1749 DEBUG_EMAIL(("\"%s\" = \"%s\"\n", ef->field_name, ef->value)); | |
1750 break; | |
1751 case 0x0002: // PR_ALTERNATE_RECIPIENT_ALLOWED | |
1752 // If set to true, the sender allows this email to be autoforwarded | |
1753 DEBUG_EMAIL(("AutoForward allowed - ")); | |
1754 MALLOC_EMAIL(item); | |
47 | 1755 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 1756 DEBUG_EMAIL(("True\n")); |
1757 item->email->autoforward = 1; | |
1758 } else { | |
1759 DEBUG_EMAIL(("False\n")); | |
1760 item->email->autoforward = -1; | |
1761 } | |
1762 break; | |
1763 case 0x0003: // Extended Attributes table | |
1764 DEBUG_EMAIL(("Extended Attributes Table - NOT PROCESSED\n")); | |
1765 break; | |
1766 case 0x0017: // PR_IMPORTANCE | |
1767 // How important the sender deems it to be | |
1768 // 0 - Low | |
1769 // 1 - Normal | |
1770 // 2 - High | |
1771 | |
1772 DEBUG_EMAIL(("Importance Level - ")); | |
1773 MALLOC_EMAIL(item); | |
1774 memcpy(&(item->email->importance), list->items[x]->data, sizeof(item->email->importance)); | |
1775 LE32_CPU(item->email->importance); | |
1776 t = item->email->importance; | |
47 | 1777 DEBUG_EMAIL(("%s [%i]\n", ((int)t==0?"Low":((int)t==1?"Normal":"High")), t)); |
43 | 1778 break; |
1779 case 0x001A: // PR_MESSAGE_CLASS Ascii type of messages - NOT FOLDERS | |
1780 // must be case insensitive | |
1781 DEBUG_EMAIL(("IPM.x - ")); | |
1782 LIST_COPY(item->ascii_type, (char*)); | |
1783 if (pst_strincmp("IPM.Note", item->ascii_type, 8) == 0) | |
1784 // the string begins with IPM.Note... | |
1785 item->type = PST_TYPE_NOTE; | |
1786 else if (pst_stricmp("IPM", item->ascii_type) == 0) | |
1787 // the whole string is just IPM | |
1788 item->type = PST_TYPE_NOTE; | |
1789 else if (pst_strincmp("IPM.Contact", item->ascii_type, 11) == 0) | |
1790 // the string begins with IPM.Contact... | |
1791 item->type = PST_TYPE_CONTACT; | |
1792 else if (pst_strincmp("REPORT.IPM.Note", item->ascii_type, 15) == 0) | |
1793 // the string begins with the above | |
1794 item->type = PST_TYPE_REPORT; | |
1795 else if (pst_strincmp("IPM.Activity", item->ascii_type, 12) == 0) | |
1796 item->type = PST_TYPE_JOURNAL; | |
1797 else if (pst_strincmp("IPM.Appointment", item->ascii_type, 15) == 0) | |
1798 item->type = PST_TYPE_APPOINTMENT; | |
1799 else | |
1800 item->type = PST_TYPE_OTHER; | |
1801 | |
1802 DEBUG_EMAIL(("%s\n", item->ascii_type)); | |
1803 break; | |
1804 case 0x0023: // PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED | |
1805 // set if the sender wants a delivery report from all recipients | |
1806 DEBUG_EMAIL(("Global Delivery Report - ")); | |
1807 MALLOC_EMAIL(item); | |
1808 if (*(int16_t*)list->items[x]->data != 0) { | |
1809 DEBUG_EMAIL(("True\n")); | |
1810 item->email->delivery_report = 1; | |
1811 } else { | |
1812 DEBUG_EMAIL(("False\n")); | |
1813 item->email->delivery_report = 0; | |
1814 } | |
1815 break; | |
1816 case 0x0026: // PR_PRIORITY | |
1817 // Priority of a message | |
1818 // -1 NonUrgent | |
1819 // 0 Normal | |
1820 // 1 Urgent | |
1821 DEBUG_EMAIL(("Priority - ")); | |
1822 MALLOC_EMAIL(item); | |
1823 memcpy(&(item->email->priority), list->items[x]->data, sizeof(item->email->priority)); | |
1824 LE32_CPU(item->email->priority); | |
1825 t = item->email->priority; | |
1826 DEBUG_EMAIL(("%s [%i]\n", (t<0?"NonUrgent":(t==0?"Normal":"Urgent")), t)); | |
1827 break; | |
1828 case 0x0029:// PR_READ_RECEIPT_REQUESTED | |
1829 DEBUG_EMAIL(("Read Receipt - ")); | |
1830 MALLOC_EMAIL(item); | |
47 | 1831 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 1832 DEBUG_EMAIL(("True\n")); |
1833 item->email->read_receipt = 1; | |
1834 } else { | |
1835 DEBUG_EMAIL(("False\n")); | |
1836 item->email->read_receipt = 0; | |
1837 } | |
1838 break; | |
1839 case 0x002B: // PR_RECIPIENT_REASSIGNMENT_PROHIBITED | |
1840 DEBUG_EMAIL(("Reassignment Prohibited (Private) - ")); | |
47 | 1841 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 1842 DEBUG_EMAIL(("True\n")); |
1843 item->private_member = 1; | |
1844 } else { | |
1845 DEBUG_EMAIL(("False\n")); | |
1846 item->private_member = 0; | |
1847 } | |
1848 break; | |
1849 case 0x002E: // PR_ORIGINAL_SENSITIVITY | |
1850 // the sensitivity of the message before being replied to or forwarded | |
1851 // 0 - None | |
1852 // 1 - Personal | |
1853 // 2 - Private | |
1854 // 3 - Company Confidential | |
1855 DEBUG_EMAIL(("Original Sensitivity - ")); | |
1856 MALLOC_EMAIL(item); | |
1857 memcpy(&(item->email->orig_sensitivity), list->items[x]->data, sizeof(item->email->orig_sensitivity)); | |
1858 LE32_CPU(item->email->orig_sensitivity); | |
1859 t = item->email->orig_sensitivity; | |
47 | 1860 DEBUG_EMAIL(("%s [%i]\n", ((int)t==0?"None":((int)t==1?"Personal": |
1861 ((int)t==2?"Private":"Company Confidential"))), t)); | |
43 | 1862 break; |
1863 case 0x0036: // PR_SENSITIVITY | |
1864 // sender's opinion of the sensitivity of an email | |
1865 // 0 - None | |
1866 // 1 - Personal | |
1867 // 2 - Private | |
1868 // 3 - Company Confidiential | |
1869 DEBUG_EMAIL(("Sensitivity - ")); | |
1870 MALLOC_EMAIL(item); | |
1871 memcpy(&(item->email->sensitivity), list->items[x]->data, sizeof(item->email->sensitivity)); | |
1872 LE32_CPU(item->email->sensitivity); | |
1873 t = item->email->sensitivity; | |
47 | 1874 DEBUG_EMAIL(("%s [%i]\n", ((int)t==0?"None":((int)t==1?"Personal": |
1875 ((int)t==2?"Private":"Company Confidential"))), t)); | |
43 | 1876 break; |
1877 case 0x0037: // PR_SUBJECT raw subject | |
1878 DEBUG_EMAIL(("Raw Subject - ")); | |
1879 MALLOC_EMAIL(item); | |
1880 item->email->subject = (pst_item_email_subject*) realloc(item->email->subject, sizeof(pst_item_email_subject)); | |
1881 memset(item->email->subject, 0, sizeof(pst_item_email_subject)); | |
1882 DEBUG_EMAIL((" [size = %i] ", list->items[x]->size)); | |
1883 if (list->items[x]->size > 0) { | |
1884 if (isprint(list->items[x]->data[0])) { | |
1885 // then there are no control bytes at the front | |
1886 item->email->subject->off1 = 0; | |
1887 item->email->subject->off2 = 0; | |
1888 item->email->subject->subj = realloc(item->email->subject->subj, list->items[x]->size+1); | |
1889 memset(item->email->subject->subj, 0, list->items[x]->size+1); | |
1890 memcpy(item->email->subject->subj, list->items[x]->data, list->items[x]->size); | |
1891 } else { | |
1892 DEBUG_EMAIL(("Raw Subject has control codes\n")); | |
1893 // there might be some control bytes in the first and second bytes | |
47 | 1894 item->email->subject->off1 = (int)(unsigned)list->items[x]->data[0]; |
1895 item->email->subject->off2 = (int)(unsigned)list->items[x]->data[1]; | |
1896 item->email->subject->subj = realloc(item->email->subject->subj, list->items[x]->size-1); | |
43 | 1897 memset(item->email->subject->subj, 0, list->items[x]->size-1); |
1898 memcpy(item->email->subject->subj, &(list->items[x]->data[2]), list->items[x]->size-2); | |
1899 } | |
1900 DEBUG_EMAIL(("%s\n", item->email->subject->subj)); | |
1901 } else { | |
1902 // obviously outlook has decided not to be straight with this one. | |
1903 item->email->subject->off1 = 0; | |
1904 item->email->subject->off2 = 0; | |
1905 item->email->subject = NULL; | |
1906 DEBUG_EMAIL(("NULL subject detected\n")); | |
1907 } | |
1908 break; | |
1909 case 0x0039: // PR_CLIENT_SUBMIT_TIME Date Email Sent/Created | |
1910 DEBUG_EMAIL(("Date sent - ")); | |
1911 MALLOC_EMAIL(item); | |
1912 LIST_COPY(item->email->sent_date, (FILETIME*)); | |
1913 LE32_CPU(item->email->sent_date->dwLowDateTime); | |
1914 LE32_CPU(item->email->sent_date->dwHighDateTime); | |
1915 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->sent_date))); | |
1916 break; | |
1917 case 0x003B: // PR_SENT_REPRESENTING_SEARCH_KEY Sender address 1 | |
1918 DEBUG_EMAIL(("Sent on behalf of address 1 - ")); | |
1919 MALLOC_EMAIL(item); | |
1920 LIST_COPY(item->email->outlook_sender, (char*)); | |
1921 DEBUG_EMAIL(("%s\n", item->email->outlook_sender)); | |
1922 break; | |
1923 case 0x003F: // PR_RECEIVED_BY_ENTRYID Structure containing Recipient | |
1924 DEBUG_EMAIL(("Recipient Structure 1 -- NOT HANDLED\n")); | |
1925 break; | |
1926 case 0x0040: // PR_RECEIVED_BY_NAME Name of Recipient Structure | |
1927 DEBUG_EMAIL(("Received By Name 1 -- NOT HANDLED\n")); | |
1928 break; | |
1929 case 0x0041: // PR_SENT_REPRESENTING_ENTRYID Structure containing Sender | |
1930 DEBUG_EMAIL(("Sent on behalf of Structure 1 -- NOT HANDLED\n")); | |
1931 break; | |
1932 case 0x0042: // PR_SENT_REPRESENTING_NAME Name of Sender Structure | |
1933 DEBUG_EMAIL(("Sent on behalf of Structure Name - ")); | |
1934 MALLOC_EMAIL(item); | |
1935 LIST_COPY(item->email->outlook_sender_name, (char*)); | |
1936 DEBUG_EMAIL(("%s\n", item->email->outlook_sender_name)); | |
1937 break; | |
1938 case 0x0043: // PR_RCVD_REPRESENTING_ENTRYID Recipient Structure 2 | |
1939 DEBUG_EMAIL(("Received on behalf of Structure -- NOT HANDLED\n")); | |
1940 break; | |
1941 case 0x0044: // PR_RCVD_REPRESENTING_NAME Name of Recipient Structure 2 | |
1942 DEBUG_EMAIL(("Received on behalf of Structure Name -- NOT HANDLED\n")); | |
1943 break; | |
1944 case 0x004F: // PR_REPLY_RECIPIENT_ENTRIES Reply-To Structure | |
1945 DEBUG_EMAIL(("Reply-To Structure -- NOT HANDLED\n")); | |
1946 break; | |
1947 case 0x0050: // PR_REPLY_RECIPIENT_NAMES Name of Reply-To Structure | |
1948 DEBUG_EMAIL(("Name of Reply-To Structure -")); | |
1949 MALLOC_EMAIL(item); | |
1950 LIST_COPY(item->email->reply_to, (char*)); | |
1951 DEBUG_EMAIL(("%s\n", item->email->reply_to)); | |
1952 break; | |
1953 case 0x0051: // PR_RECEIVED_BY_SEARCH_KEY Recipient Address 1 | |
1954 DEBUG_EMAIL(("Recipient's Address 1 (Search Key) - ")); | |
1955 MALLOC_EMAIL(item); | |
1956 LIST_COPY (item->email->outlook_recipient, (char*)); | |
1957 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient)); | |
1958 break; | |
1959 case 0x0052: // PR_RCVD_REPRESENTING_SEARCH_KEY Recipient Address 2 | |
1960 DEBUG_EMAIL(("Received on behalf of Address (Search Key) - ")); | |
1961 MALLOC_EMAIL(item); | |
1962 LIST_COPY(item->email->outlook_recipient2, (char*)); | |
1963 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient2)); | |
1964 break; | |
1965 case 0x0057: // PR_MESSAGE_TO_ME | |
1966 // this user is listed explicitly in the TO address | |
1967 DEBUG_EMAIL(("My address in TO field - ")); | |
1968 MALLOC_EMAIL(item); | |
1969 if (*(int16_t*)list->items[x]->data != 0) { | |
1970 DEBUG_EMAIL(("True\n")); | |
1971 item->email->message_to_me = 1; | |
1972 } else { | |
1973 DEBUG_EMAIL(("False\n")); | |
1974 item->email->message_to_me = 0; | |
1975 } | |
1976 break; | |
1977 case 0x0058: // PR_MESSAGE_CC_ME | |
1978 // this user is listed explicitly in the CC address | |
1979 DEBUG_EMAIL(("My address in CC field - ")); | |
1980 MALLOC_EMAIL(item); | |
1981 if (*(int16_t*)list->items[x]->data != 0) { | |
1982 DEBUG_EMAIL(("True\n")); | |
1983 item->email->message_cc_me = 1; | |
1984 } else { | |
1985 DEBUG_EMAIL(("False\n")); | |
1986 item->email->message_cc_me = 0; | |
1987 } | |
1988 break; | |
1989 case 0x0059: //PR_MESSAGE_RECIP_ME | |
1990 // this user appears in TO, CC or BCC address list | |
1991 DEBUG_EMAIL(("Message addressed to me - ")); | |
1992 MALLOC_EMAIL(item); | |
1993 if (*(int16_t*)list->items[x]->data != 0) { | |
1994 DEBUG_EMAIL(("True\n")); | |
1995 item->email->message_recip_me = 1; | |
1996 } else { | |
1997 DEBUG_EMAIL(("False\n")); | |
1998 item->email->message_recip_me = 0; | |
1999 } | |
2000 break; | |
2001 case 0x0063: // PR_RESPONSE_REQUESTED | |
2002 DEBUG_EMAIL(("Response requested - ")); | |
2003 if (*(int16_t*)list->items[x]->data != 0) { | |
2004 DEBUG_EMAIL(("True\n")); | |
2005 item->response_requested = 1; | |
2006 } else { | |
2007 DEBUG_EMAIL(("False\n")); | |
2008 item->response_requested = 0; | |
2009 } | |
2010 break; | |
2011 case 0x0064: // PR_SENT_REPRESENTING_ADDRTYPE Access method for Sender Address | |
2012 DEBUG_EMAIL(("Sent on behalf of address type - ")); | |
2013 MALLOC_EMAIL(item); | |
2014 LIST_COPY(item->email->sender_access, (char*)); | |
2015 DEBUG_EMAIL(("%s\n", item->email->sender_access)); | |
2016 break; | |
2017 case 0x0065: // PR_SENT_REPRESENTING_EMAIL_ADDRESS Sender Address | |
2018 DEBUG_EMAIL(("Sent on behalf of Address - ")); | |
2019 MALLOC_EMAIL(item); | |
2020 LIST_COPY(item->email->sender_address, (char*)); | |
2021 DEBUG_EMAIL(("%s\n", item->email->sender_address)); | |
2022 break; | |
2023 case 0x0070: // PR_CONVERSATION_TOPIC Processed Subject | |
2024 DEBUG_EMAIL(("Processed Subject (Conversation Topic) - ")); | |
2025 MALLOC_EMAIL(item); | |
2026 LIST_COPY(item->email->proc_subject, (char*)); | |
2027 DEBUG_EMAIL(("%s\n", item->email->proc_subject)); | |
2028 break; | |
2029 case 0x0071: // PR_CONVERSATION_INDEX Date 2 | |
2030 DEBUG_EMAIL(("Conversation Index - ")); | |
2031 MALLOC_EMAIL(item); | |
2032 memcpy(&(item->email->conv_index), list->items[x]->data, sizeof(item->email->conv_index)); | |
2033 DEBUG_EMAIL(("%i\n", item->email->conv_index)); | |
2034 break; | |
2035 case 0x0075: // PR_RECEIVED_BY_ADDRTYPE Recipient Access Method | |
2036 DEBUG_EMAIL(("Received by Address type - ")); | |
2037 MALLOC_EMAIL(item); | |
2038 LIST_COPY(item->email->recip_access, (char*)); | |
2039 DEBUG_EMAIL(("%s\n", item->email->recip_access)); | |
2040 break; | |
2041 case 0x0076: // PR_RECEIVED_BY_EMAIL_ADDRESS Recipient Address | |
2042 DEBUG_EMAIL(("Received by Address - ")); | |
2043 MALLOC_EMAIL(item); | |
2044 LIST_COPY(item->email->recip_address, (char*)); | |
2045 DEBUG_EMAIL(("%s\n", item->email->recip_address)); | |
2046 break; | |
2047 case 0x0077: // PR_RCVD_REPRESENTING_ADDRTYPE Recipient Access Method 2 | |
2048 DEBUG_EMAIL(("Received on behalf of Address type - ")); | |
2049 MALLOC_EMAIL(item); | |
2050 LIST_COPY(item->email->recip2_access, (char*)); | |
2051 DEBUG_EMAIL(("%s\n", item->email->recip2_access)); | |
2052 break; | |
2053 case 0x0078: // PR_RCVD_REPRESENTING_EMAIL_ADDRESS Recipient Address 2 | |
2054 DEBUG_EMAIL(("Received on behalf of Address -")); | |
2055 MALLOC_EMAIL(item); | |
2056 LIST_COPY(item->email->recip2_address, (char*)); | |
2057 DEBUG_EMAIL(("%s\n", item->email->recip2_address)); | |
2058 break; | |
2059 case 0x007D: // PR_TRANSPORT_MESSAGE_HEADERS Internet Header | |
2060 DEBUG_EMAIL(("Internet Header - ")); | |
2061 MALLOC_EMAIL(item); | |
2062 LIST_COPY(item->email->header, (char*)); | |
46 | 2063 DEBUG_EMAIL(("%s\n", item->email->header)); |
43 | 2064 DEBUG_EMAIL(("NOT PRINTED\n")); |
2065 break; | |
2066 case 0x0C17: // PR_REPLY_REQUESTED | |
2067 DEBUG_EMAIL(("Reply Requested - ")); | |
2068 MALLOC_EMAIL(item); | |
2069 if (*(int16_t*)list->items[x]->data != 0) { | |
2070 DEBUG_EMAIL(("True\n")); | |
2071 item->email->reply_requested = 1; | |
2072 } else { | |
2073 DEBUG_EMAIL(("False\n")); | |
2074 item->email->reply_requested = 0; | |
2075 } | |
2076 break; | |
2077 case 0x0C19: // PR_SENDER_ENTRYID Sender Structure 2 | |
2078 DEBUG_EMAIL(("Sender Structure 2 -- NOT HANDLED\n")); | |
2079 break; | |
2080 case 0x0C1A: // PR_SENDER_NAME Name of Sender Structure 2 | |
2081 DEBUG_EMAIL(("Name of Sender Structure 2 -- NOT HANDLED\n")); | |
2082 break; | |
2083 case 0x0C1D: // PR_SENDER_SEARCH_KEY Name of Sender Address 2 | |
2084 DEBUG_EMAIL(("Name of Sender Address 2 (Sender search key) - ")); | |
2085 MALLOC_EMAIL(item); | |
2086 LIST_COPY(item->email->outlook_sender2, (char*)); | |
2087 DEBUG_EMAIL(("%s\n", item->email->outlook_sender2)); | |
2088 break; | |
2089 case 0x0C1E: // PR_SENDER_ADDRTYPE Sender Address 2 access method | |
2090 DEBUG_EMAIL(("Sender Address type - ")); | |
2091 MALLOC_EMAIL(item); | |
2092 LIST_COPY(item->email->sender2_access, (char*)); | |
2093 DEBUG_EMAIL(("%s\n", item->email->sender2_access)); | |
2094 break; | |
2095 case 0x0C1F: // PR_SENDER_EMAIL_ADDRESS Sender Address 2 | |
2096 DEBUG_EMAIL(("Sender Address - ")); | |
2097 MALLOC_EMAIL(item); | |
2098 LIST_COPY(item->email->sender2_address, (char*)); | |
2099 DEBUG_EMAIL(("%s\n", item->email->sender2_address)); | |
2100 break; | |
2101 case 0x0E01: // PR_DELETE_AFTER_SUBMIT | |
2102 // I am not too sure how this works | |
2103 DEBUG_EMAIL(("Delete after submit - ")); | |
2104 MALLOC_EMAIL(item); | |
47 | 2105 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 2106 DEBUG_EMAIL(("True\n")); |
2107 item->email->delete_after_submit = 1; | |
2108 } else { | |
2109 DEBUG_EMAIL(("False\n")); | |
2110 item->email->delete_after_submit = 0; | |
2111 } | |
2112 break; | |
2113 case 0x0E03: // PR_DISPLAY_CC CC Addresses | |
2114 DEBUG_EMAIL(("Display CC Addresses - ")); | |
2115 MALLOC_EMAIL(item); | |
2116 LIST_COPY(item->email->cc_address, (char*)); | |
2117 DEBUG_EMAIL(("%s\n", item->email->cc_address)); | |
2118 break; | |
2119 case 0x0E04: // PR_DISPLAY_TO Address Sent-To | |
2120 DEBUG_EMAIL(("Display Sent-To Address - ")); | |
2121 MALLOC_EMAIL(item); | |
2122 LIST_COPY(item->email->sentto_address, (char*)); | |
2123 DEBUG_EMAIL(("%s\n", item->email->sentto_address)); | |
2124 break; | |
2125 case 0x0E06: // PR_MESSAGE_DELIVERY_TIME Date 3 - Email Arrival Date | |
2126 DEBUG_EMAIL(("Date 3 (Delivery Time) - ")); | |
2127 MALLOC_EMAIL(item); | |
2128 LIST_COPY(item->email->arrival_date, (FILETIME*)); | |
2129 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->arrival_date))); | |
2130 break; | |
2131 case 0x0E07: // PR_MESSAGE_FLAGS Email Flag | |
2132 // 0x01 - Read | |
2133 // 0x02 - Unmodified | |
2134 // 0x04 - Submit | |
2135 // 0x08 - Unsent | |
2136 // 0x10 - Has Attachments | |
2137 // 0x20 - From Me | |
2138 // 0x40 - Associated | |
2139 // 0x80 - Resend | |
2140 // 0x100 - RN Pending | |
2141 // 0x200 - NRN Pending | |
2142 DEBUG_EMAIL(("Message Flags - ")); | |
2143 MALLOC_EMAIL(item); | |
2144 memcpy(&(item->email->flag), list->items[x]->data, sizeof(item->email->flag)); | |
2145 LE32_CPU(item->email->flag); | |
2146 DEBUG_EMAIL(("%i\n", item->email->flag)); | |
2147 break; | |
2148 case 0x0E08: // PR_MESSAGE_SIZE Total size of a message object | |
2149 DEBUG_EMAIL(("Message Size - ")); | |
2150 memcpy(&(item->message_size), list->items[x]->data, sizeof(item->message_size)); | |
2151 LE32_CPU(item->message_size); | |
2152 DEBUG_EMAIL(("%i [%#x]\n", item->message_size, item->message_size)); | |
2153 break; | |
2154 case 0x0E0A: // PR_SENTMAIL_ENTRYID | |
2155 // folder that this message is sent to after submission | |
2156 DEBUG_EMAIL(("Sentmail EntryID - ")); | |
2157 MALLOC_EMAIL(item); | |
2158 LIST_COPY(item->email->sentmail_folder, (pst_entryid*)); | |
2159 LE32_CPU(item->email->sentmail_folder->id); | |
2160 DEBUG_EMAIL(("[id = %#x]\n", item->email->sentmail_folder->id)); | |
2161 break; | |
2162 case 0x0E1F: // PR_RTF_IN_SYNC | |
2163 // True means that the rtf version is same as text body | |
2164 // False means rtf version is more up-to-date than text body | |
2165 // if this value doesn't exist, text body is more up-to-date than rtf and | |
2166 // cannot update to the rtf | |
2167 DEBUG_EMAIL(("Compressed RTF in Sync - ")); | |
2168 MALLOC_EMAIL(item); | |
2169 if (*(int16_t*)list->items[x]->data != 0) { | |
2170 DEBUG_EMAIL(("True\n")); | |
2171 item->email->rtf_in_sync = 1; | |
2172 } else { | |
2173 DEBUG_EMAIL(("False\n")); | |
2174 item->email->rtf_in_sync = 0; | |
2175 } | |
2176 break; | |
2177 case 0x0E20: // PR_ATTACH_SIZE binary Attachment data in record | |
2178 DEBUG_EMAIL(("Attachment Size - ")); | |
2179 NULL_CHECK(attach); | |
2180 MOVE_NEXT(attach); | |
2181 memcpy(&(attach->size), list->items[x]->data, sizeof(attach->size)); | |
2182 DEBUG_EMAIL(("%i\n", attach->size)); | |
2183 break; | |
2184 case 0x0FF9: // PR_RECORD_KEY Record Header 1 | |
2185 DEBUG_EMAIL(("Record Key 1 - ")); | |
2186 LIST_COPY(item->record_key, (char*)); | |
2187 item->record_key_size = list->items[x]->size; | |
2188 DEBUG_EMAIL_HEXPRINT(item->record_key, item->record_key_size); | |
2189 DEBUG_EMAIL(("\n")); | |
2190 break; | |
2191 case 0x1000: // PR_BODY Plain Text body | |
2192 DEBUG_EMAIL(("Plain Text body - ")); | |
2193 MALLOC_EMAIL(item); | |
2194 LIST_COPY(item->email->body, (char*)); | |
2195 //DEBUG_EMAIL("%s\n", item->email->body); | |
2196 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2197 break; | |
2198 case 0x1006: // PR_RTF_SYNC_BODY_CRC | |
2199 DEBUG_EMAIL(("RTF Sync Body CRC - ")); | |
2200 MALLOC_EMAIL(item); | |
2201 memcpy(&(item->email->rtf_body_crc), list->items[x]->data, sizeof(item->email->rtf_body_crc)); | |
2202 LE32_CPU(item->email->rtf_body_crc); | |
2203 DEBUG_EMAIL(("%#x\n", item->email->rtf_body_crc)); | |
2204 break; | |
2205 case 0x1007: // PR_RTF_SYNC_BODY_COUNT | |
2206 // a count of the *significant* charcters in the rtf body. Doesn't count | |
2207 // whitespace and other ignorable characters | |
2208 DEBUG_EMAIL(("RTF Sync Body character count - ")); | |
2209 MALLOC_EMAIL(item); | |
2210 memcpy(&(item->email->rtf_body_char_count), list->items[x]->data, sizeof(item->email->rtf_body_char_count)); | |
2211 LE32_CPU(item->email->rtf_body_char_count); | |
2212 DEBUG_EMAIL(("%i [%#x]\n", item->email->rtf_body_char_count, item->email->rtf_body_char_count)); | |
2213 break; | |
2214 case 0x1008: // PR_RTF_SYNC_BODY_TAG | |
2215 // the first couple of lines of RTF body so that after modification, then beginning can | |
2216 // once again be found | |
2217 DEBUG_EMAIL(("RTF Sync body tag - ")); | |
2218 MALLOC_EMAIL(item); | |
2219 LIST_COPY(item->email->rtf_body_tag, (char*)); | |
2220 DEBUG_EMAIL(("%s\n", item->email->rtf_body_tag)); | |
2221 break; | |
2222 case 0x1009: // PR_RTF_COMPRESSED | |
2223 // some compression algorithm has been applied to this. At present | |
2224 // it is unknown | |
2225 DEBUG_EMAIL(("RTF Compressed body - ")); | |
2226 MALLOC_EMAIL(item); | |
2227 LIST_COPY_SIZE(item->email->rtf_compressed, (char*), item->email->rtf_compressed_size); | |
2228 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2229 break; | |
2230 case 0x1010: // PR_RTF_SYNC_PREFIX_COUNT | |
2231 // a count of the ignored characters before the first significant character | |
2232 DEBUG_EMAIL(("RTF whitespace prefix count - ")); | |
2233 MALLOC_EMAIL(item); | |
2234 memcpy(&(item->email->rtf_ws_prefix_count), list->items[x]->data, sizeof(item->email->rtf_ws_prefix_count)); | |
2235 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_prefix_count)); | |
2236 break; | |
2237 case 0x1011: // PR_RTF_SYNC_TRAILING_COUNT | |
2238 // a count of the ignored characters after the last significant character | |
2239 DEBUG_EMAIL(("RTF whitespace tailing count - ")); | |
2240 MALLOC_EMAIL(item); | |
2241 memcpy(&(item->email->rtf_ws_trailing_count), list->items[x]->data, sizeof(item->email->rtf_ws_trailing_count)); | |
2242 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_trailing_count)); | |
2243 break; | |
2244 case 0x1013: // HTML body | |
2245 DEBUG_EMAIL(("HTML body - ")); | |
2246 MALLOC_EMAIL(item); | |
2247 LIST_COPY(item->email->htmlbody, (char*)); | |
2248 // DEBUG_EMAIL(("%s\n", item->email->htmlbody)); | |
2249 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2250 break; | |
2251 case 0x1035: // Message ID | |
2252 DEBUG_EMAIL(("Message ID - ")); | |
2253 MALLOC_EMAIL(item); | |
2254 LIST_COPY(item->email->messageid, (char*)); | |
2255 DEBUG_EMAIL(("%s\n", item->email->messageid)); | |
2256 break; | |
2257 case 0x1042: // in-reply-to | |
2258 DEBUG_EMAIL(("In-Reply-To - ")); | |
2259 MALLOC_EMAIL(item); | |
2260 LIST_COPY(item->email->in_reply_to, (char*)); | |
2261 DEBUG_EMAIL(("%s\n", item->email->in_reply_to)); | |
2262 break; | |
2263 case 0x1046: // Return Path | |
2264 DEBUG_EMAIL(("Return Path - ")); | |
2265 MALLOC_EMAIL(item); | |
2266 LIST_COPY(item->email->return_path_address, (char*)); | |
2267 DEBUG_EMAIL(("%s\n", item->email->return_path_address)); | |
2268 break; | |
2269 case 0x3001: // PR_DISPLAY_NAME File As | |
2270 DEBUG_EMAIL(("Display Name - ")); | |
2271 LIST_COPY(item->file_as, (char*)); | |
2272 DEBUG_EMAIL(("%s\n", item->file_as)); | |
2273 break; | |
2274 case 0x3002: // PR_ADDRTYPE | |
2275 DEBUG_EMAIL(("Address Type - ")); | |
2276 MALLOC_CONTACT(item); | |
2277 LIST_COPY(item->contact->address1_transport, (char*)); | |
2278 DEBUG_EMAIL(("|%s|\n", item->contact->address1_transport)); | |
2279 break; | |
2280 case 0x3003: // PR_EMAIL_ADDRESS | |
2281 // Contact's email address | |
2282 DEBUG_EMAIL(("Contact Address - ")); | |
2283 MALLOC_CONTACT(item); | |
2284 LIST_COPY(item->contact->address1, (char*)); | |
2285 DEBUG_EMAIL(("|%s|\n", item->contact->address1)); | |
2286 break; | |
2287 case 0x3004: // PR_COMMENT Comment for item - usually folders | |
2288 DEBUG_EMAIL(("Comment - ")); | |
2289 LIST_COPY(item->comment, (char*)); | |
2290 DEBUG_EMAIL(("%s\n", item->comment)); | |
2291 break; | |
2292 case 0x3007: // PR_CREATION_TIME Date 4 - Creation Date? | |
2293 DEBUG_EMAIL(("Date 4 (Item Creation Date) - ")); | |
2294 LIST_COPY(item->create_date, (FILETIME*)); | |
2295 DEBUG_EMAIL(("%s", fileTimeToAscii(item->create_date))); | |
2296 break; | |
2297 case 0x3008: // PR_LAST_MODIFICATION_TIME Date 5 - Modify Date | |
2298 DEBUG_EMAIL(("Date 5 (Modify Date) - ")); | |
2299 LIST_COPY(item->modify_date, (FILETIME*)); | |
2300 DEBUG_EMAIL(("%s", fileTimeToAscii(item->modify_date))); | |
2301 break; | |
2302 case 0x300B: // PR_SEARCH_KEY Record Header 2 | |
2303 DEBUG_EMAIL(("Record Search 2 -- NOT HANDLED\n")); | |
2304 break; | |
2305 case 0x35DF: // PR_VALID_FOLDER_MASK | |
2306 // States which folders are valid for this message store | |
2307 // FOLDER_IPM_SUBTREE_VALID 0x1 | |
2308 // FOLDER_IPM_INBOX_VALID 0x2 | |
2309 // FOLDER_IPM_OUTBOX_VALID 0x4 | |
2310 // FOLDER_IPM_WASTEBOX_VALID 0x8 | |
2311 // FOLDER_IPM_SENTMAIL_VALID 0x10 | |
2312 // FOLDER_VIEWS_VALID 0x20 | |
2313 // FOLDER_COMMON_VIEWS_VALID 0x40 | |
2314 // FOLDER_FINDER_VALID 0x80 | |
2315 DEBUG_EMAIL(("Valid Folder Mask - ")); | |
2316 MALLOC_MESSAGESTORE(item); | |
2317 memcpy(&(item->message_store->valid_mask), list->items[x]->data, sizeof(int)); | |
2318 LE32_CPU(item->message_store->valid_mask); | |
2319 DEBUG_EMAIL(("%i\n", item->message_store->valid_mask)); | |
2320 break; | |
2321 case 0x35E0: // PR_IPM_SUBTREE_ENTRYID Top of Personal Folder Record | |
2322 DEBUG_EMAIL(("Top of Personal Folder Record - ")); | |
2323 MALLOC_MESSAGESTORE(item); | |
2324 LIST_COPY(item->message_store->top_of_personal_folder, (pst_entryid*)); | |
2325 LE32_CPU(item->message_store->top_of_personal_folder->id); | |
2326 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->top_of_personal_folder->id)); | |
2327 break; | |
2328 case 0x35E3: // PR_IPM_WASTEBASKET_ENTRYID Deleted Items Folder Record | |
2329 DEBUG_EMAIL(("Deleted Items Folder record - ")); | |
2330 MALLOC_MESSAGESTORE(item); | |
2331 LIST_COPY(item->message_store->deleted_items_folder, (pst_entryid*)); | |
2332 LE32_CPU(item->message_store->deleted_items_folder->id); | |
2333 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->deleted_items_folder->id)); | |
2334 break; | |
2335 case 0x35E7: // PR_FINDER_ENTRYID Search Root Record | |
2336 DEBUG_EMAIL(("Search Root record - ")); | |
2337 MALLOC_MESSAGESTORE(item); | |
2338 LIST_COPY(item->message_store->search_root_folder, (pst_entryid*)); | |
2339 LE32_CPU(item->message_store->search_root_folder->id); | |
2340 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->search_root_folder->id)); | |
2341 break; | |
2342 case 0x3602: // PR_CONTENT_COUNT Number of emails stored in a folder | |
2343 DEBUG_EMAIL(("Folder Email Count - ")); | |
2344 MALLOC_FOLDER(item); | |
2345 memcpy(&(item->folder->email_count), list->items[x]->data, sizeof(item->folder->email_count)); | |
2346 LE32_CPU(item->folder->email_count); | |
2347 DEBUG_EMAIL(("%i\n", item->folder->email_count)); | |
2348 break; | |
2349 case 0x3603: // PR_CONTENT_UNREAD Number of unread emails | |
2350 DEBUG_EMAIL(("Unread Email Count - ")); | |
2351 MALLOC_FOLDER(item); | |
2352 memcpy(&(item->folder->unseen_email_count), list->items[x]->data, sizeof(item->folder->unseen_email_count)); | |
2353 LE32_CPU(item->folder->unseen_email_count); | |
2354 DEBUG_EMAIL(("%i\n", item->folder->unseen_email_count)); | |
2355 break; | |
2356 case 0x360A: // PR_SUBFOLDERS Has children | |
2357 DEBUG_EMAIL(("Has Subfolders - ")); | |
2358 MALLOC_FOLDER(item); | |
47 | 2359 if (*(int32_t*)list->items[x]->data != 0) { |
43 | 2360 DEBUG_EMAIL(("True\n")); |
2361 item->folder->subfolder = 1; | |
2362 } else { | |
2363 DEBUG_EMAIL(("False\n")); | |
2364 item->folder->subfolder = 0; | |
2365 } | |
2366 break; | |
2367 case 0x3613: // PR_CONTAINER_CLASS IPF.x | |
2368 DEBUG_EMAIL(("IPF.x - ")); | |
2369 LIST_COPY(item->ascii_type, (char*)); | |
2370 if (strncmp("IPF.Note", item->ascii_type, 8) == 0) | |
2371 item->type = PST_TYPE_NOTE; | |
2372 else if (strncmp("IPF.Contact", item->ascii_type, 11) == 0) | |
2373 item->type = PST_TYPE_CONTACT; | |
2374 else if (strncmp("IPF.Journal", item->ascii_type, 11) == 0) | |
2375 item->type = PST_TYPE_JOURNAL; | |
2376 else if (strncmp("IPF.Appointment", item->ascii_type, 15) == 0) | |
2377 item->type = PST_TYPE_APPOINTMENT; | |
2378 else if (strncmp("IPF.StickyNote", item->ascii_type, 14) == 0) | |
2379 item->type = PST_TYPE_STICKYNOTE; | |
2380 else if (strncmp("IPF.Task", item->ascii_type, 8) == 0) | |
2381 item->type = PST_TYPE_TASK; | |
2382 else | |
2383 item->type = PST_TYPE_OTHER; | |
2384 | |
2385 DEBUG_EMAIL(("%s [%i]\n", item->ascii_type, item->type)); | |
2386 break; | |
2387 case 0x3617: // PR_ASSOC_CONTENT_COUNT | |
2388 // associated content are items that are attached to this folder | |
2389 // but are hidden from users | |
2390 DEBUG_EMAIL(("Associate Content count - ")); | |
2391 MALLOC_FOLDER(item); | |
2392 memcpy(&(item->folder->assoc_count), list->items[x]->data, sizeof(item->folder->assoc_count)); | |
2393 LE32_CPU(item->folder->assoc_count); | |
2394 DEBUG_EMAIL(("%i [%#x]\n", item->folder->assoc_count, item->folder->assoc_count)); | |
2395 break; | |
2396 case 0x3701: // PR_ATTACH_DATA_OBJ binary data of attachment | |
2397 DEBUG_EMAIL(("Binary Data [Size %i] - ", list->items[x]->size)); | |
2398 NULL_CHECK(attach); | |
2399 MOVE_NEXT(attach); | |
2400 if (!list->items[x]->data) { //special case | |
2401 attach->id2_val = list->items[x]->type; | |
46 | 2402 DEBUG_EMAIL(("Seen a Reference. The data hasn't been loaded yet. [%#llx][%#x]\n", |
43 | 2403 attach->id2_val, list->items[x]->type)); |
2404 } else { | |
2405 LIST_COPY(attach->data, (char*)); | |
2406 attach->size = list->items[x]->size; | |
2407 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2408 } | |
2409 break; | |
2410 case 0x3704: // PR_ATTACH_FILENAME Attachment filename (8.3) | |
2411 DEBUG_EMAIL(("Attachment Filename - ")); | |
2412 NULL_CHECK(attach); | |
2413 MOVE_NEXT(attach); | |
2414 LIST_COPY(attach->filename1, (char*)); | |
2415 DEBUG_EMAIL(("%s\n", attach->filename1)); | |
2416 break; | |
2417 case 0x3705: // PR_ATTACH_METHOD | |
2418 // 0 - No Attachment | |
2419 // 1 - Attach by Value | |
2420 // 2 - Attach by reference | |
2421 // 3 - Attach by ref resolve | |
2422 // 4 - Attach by ref only | |
2423 // 5 - Embedded Message | |
2424 // 6 - OLE | |
2425 DEBUG_EMAIL(("Attachment method - ")); | |
2426 NULL_CHECK(attach); | |
2427 MOVE_NEXT(attach); | |
2428 memcpy(&(attach->method), list->items[x]->data, sizeof(attach->method)); | |
2429 LE32_CPU(attach->method); | |
2430 t = attach->method; | |
2431 DEBUG_EMAIL(("%s [%i]\n", (t==0?"No Attachment": | |
2432 (t==1?"Attach By Value": | |
2433 (t==2?"Attach By Reference": | |
2434 (t==3?"Attach by Ref. Resolve": | |
2435 (t==4?"Attach by Ref. Only": | |
2436 (t==5?"Embedded Message":"OLE")))))),t)); | |
2437 break; | |
2438 case 0x3707: // PR_ATTACH_LONG_FILENAME Attachment filename (long?) | |
2439 DEBUG_EMAIL(("Attachment Filename long - ")); | |
2440 NULL_CHECK(attach); | |
2441 MOVE_NEXT(attach); | |
2442 LIST_COPY(attach->filename2, (char*)); | |
2443 DEBUG_EMAIL(("%s\n", attach->filename2)); | |
2444 break; | |
2445 case 0x370B: // PR_RENDERING_POSITION | |
2446 // position in characters that the attachment appears in the plain text body | |
2447 DEBUG_EMAIL(("Attachment Position - ")); | |
2448 NULL_CHECK(attach); | |
2449 MOVE_NEXT(attach); | |
2450 memcpy(&(attach->position), list->items[x]->data, sizeof(attach->position)); | |
2451 LE32_CPU(attach->position); | |
2452 DEBUG_EMAIL(("%i [%#x]\n", attach->position)); | |
2453 break; | |
2454 case 0x370E: // PR_ATTACH_MIME_TAG Mime type of encoding | |
2455 DEBUG_EMAIL(("Attachment mime encoding - ")); | |
2456 NULL_CHECK(attach); | |
2457 MOVE_NEXT(attach); | |
2458 LIST_COPY(attach->mimetype, (char*)); | |
2459 DEBUG_EMAIL(("%s\n", attach->mimetype)); | |
2460 break; | |
2461 case 0x3710: // PR_ATTACH_MIME_SEQUENCE | |
2462 // sequence number for mime parts. Includes body | |
2463 DEBUG_EMAIL(("Attachment Mime Sequence - ")); | |
2464 NULL_CHECK(attach); | |
2465 MOVE_NEXT(attach); | |
2466 memcpy(&(attach->sequence), list->items[x]->data, sizeof(attach->sequence)); | |
2467 LE32_CPU(attach->sequence); | |
2468 DEBUG_EMAIL(("%i\n", attach->sequence)); | |
2469 break; | |
2470 case 0x3A00: // PR_ACCOUNT | |
2471 DEBUG_EMAIL(("Contact's Account name - ")); | |
2472 MALLOC_CONTACT(item); | |
2473 LIST_COPY(item->contact->account_name, (char*)); | |
2474 DEBUG_EMAIL(("%s\n", item->contact->account_name)); | |
2475 break; | |
2476 case 0x3A01: // PR_ALTERNATE_RECIPIENT | |
2477 DEBUG_EMAIL(("Contact Alternate Recipient - NOT PROCESSED\n")); | |
2478 break; | |
2479 case 0x3A02: // PR_CALLBACK_TELEPHONE_NUMBER | |
2480 DEBUG_EMAIL(("Callback telephone number - ")); | |
2481 MALLOC_CONTACT(item); | |
2482 LIST_COPY(item->contact->callback_phone, (char*)); | |
2483 DEBUG_EMAIL(("%s\n", item->contact->callback_phone)); | |
2484 break; | |
2485 case 0x3A03: // PR_CONVERSION_PROHIBITED | |
2486 DEBUG_EMAIL(("Message Conversion Prohibited - ")); | |
2487 MALLOC_EMAIL(item); | |
2488 if (*(int16_t*)list->items[x]->data != 0) { | |
2489 DEBUG_EMAIL(("True\n")); | |
2490 item->email->conversion_prohib = 1; | |
2491 } else { | |
2492 DEBUG_EMAIL(("False\n")); | |
2493 item->email->conversion_prohib = 0; | |
2494 } | |
2495 break; | |
2496 case 0x3A05: // PR_GENERATION suffix | |
2497 DEBUG_EMAIL(("Contacts Suffix - ")); | |
2498 MALLOC_CONTACT(item); | |
2499 LIST_COPY(item->contact->suffix, (char*)); | |
2500 DEBUG_EMAIL(("%s\n", item->contact->suffix)); | |
2501 break; | |
2502 case 0x3A06: // PR_GIVEN_NAME Contact's first name | |
2503 DEBUG_EMAIL(("Contacts First Name - ")); | |
2504 MALLOC_CONTACT(item); | |
2505 LIST_COPY(item->contact->first_name, (char*)); | |
2506 DEBUG_EMAIL(("%s\n", item->contact->first_name)); | |
2507 break; | |
2508 case 0x3A07: // PR_GOVERNMENT_ID_NUMBER | |
2509 DEBUG_EMAIL(("Contacts Government ID Number - ")); | |
2510 MALLOC_CONTACT(item); | |
2511 LIST_COPY(item->contact->gov_id, (char*)); | |
2512 DEBUG_EMAIL(("%s\n", item->contact->gov_id)); | |
2513 break; | |
2514 case 0x3A08: // PR_BUSINESS_TELEPHONE_NUMBER | |
2515 DEBUG_EMAIL(("Business Telephone Number - ")); | |
2516 MALLOC_CONTACT(item); | |
2517 LIST_COPY(item->contact->business_phone, (char*)); | |
2518 DEBUG_EMAIL(("%s\n", item->contact->business_phone)); | |
2519 break; | |
2520 case 0x3A09: // PR_HOME_TELEPHONE_NUMBER | |
2521 DEBUG_EMAIL(("Home Telephone Number - ")); | |
2522 MALLOC_CONTACT(item); | |
2523 LIST_COPY(item->contact->home_phone, (char*)); | |
2524 DEBUG_EMAIL(("%s\n", item->contact->home_phone)); | |
2525 break; | |
2526 case 0x3A0A: // PR_INITIALS Contact's Initials | |
2527 DEBUG_EMAIL(("Contacts Initials - ")); | |
2528 MALLOC_CONTACT(item); | |
2529 LIST_COPY(item->contact->initials, (char*)); | |
2530 DEBUG_EMAIL(("%s\n", item->contact->initials)); | |
2531 break; | |
2532 case 0x3A0B: // PR_KEYWORD | |
2533 DEBUG_EMAIL(("Keyword - ")); | |
2534 MALLOC_CONTACT(item); | |
2535 LIST_COPY(item->contact->keyword, (char*)); | |
2536 DEBUG_EMAIL(("%s\n", item->contact->keyword)); | |
2537 break; | |
2538 case 0x3A0C: // PR_LANGUAGE | |
2539 DEBUG_EMAIL(("Contact's Language - ")); | |
2540 MALLOC_CONTACT(item); | |
2541 LIST_COPY(item->contact->language, (char*)); | |
2542 DEBUG_EMAIL(("%s\n", item->contact->language)); | |
2543 break; | |
2544 case 0x3A0D: // PR_LOCATION | |
2545 DEBUG_EMAIL(("Contact's Location - ")); | |
2546 MALLOC_CONTACT(item); | |
2547 LIST_COPY(item->contact->location, (char*)); | |
2548 DEBUG_EMAIL(("%s\n", item->contact->location)); | |
2549 break; | |
2550 case 0x3A0E: // PR_MAIL_PERMISSION - Can the recipient receive and send email | |
2551 DEBUG_EMAIL(("Mail Permission - ")); | |
2552 MALLOC_CONTACT(item); | |
2553 if (*(int16_t*)list->items[x]->data != 0) { | |
2554 DEBUG_EMAIL(("True\n")); | |
2555 item->contact->mail_permission = 1; | |
2556 } else { | |
2557 DEBUG_EMAIL(("False\n")); | |
2558 item->contact->mail_permission = 0; | |
2559 } | |
2560 break; | |
2561 case 0x3A0F: // PR_MHS_COMMON_NAME | |
2562 DEBUG_EMAIL(("MHS Common Name - ")); | |
2563 MALLOC_EMAIL(item); | |
2564 LIST_COPY(item->email->common_name, (char*)); | |
2565 DEBUG_EMAIL(("%s\n", item->email->common_name)); | |
2566 break; | |
2567 case 0x3A10: // PR_ORGANIZATIONAL_ID_NUMBER | |
2568 DEBUG_EMAIL(("Organizational ID # - ")); | |
2569 MALLOC_CONTACT(item); | |
2570 LIST_COPY(item->contact->org_id, (char*)); | |
2571 DEBUG_EMAIL(("%s\n", item->contact->org_id)); | |
2572 break; | |
2573 case 0x3A11: // PR_SURNAME Contact's Surname | |
2574 DEBUG_EMAIL(("Contacts Surname - ")); | |
2575 MALLOC_CONTACT(item); | |
2576 LIST_COPY(item->contact->surname, (char*)); | |
2577 DEBUG_EMAIL(("%s\n", item->contact->surname)); | |
2578 break; | |
2579 case 0x3A12: // PR_ORIGINAL_ENTRY_ID | |
2580 DEBUG_EMAIL(("Original Entry ID - NOT PROCESSED\n")); | |
2581 break; | |
2582 case 0x3A13: // PR_ORIGINAL_DISPLAY_NAME | |
2583 DEBUG_EMAIL(("Original Display Name - NOT PROCESSED\n")); | |
2584 break; | |
2585 case 0x3A14: // PR_ORIGINAL_SEARCH_KEY | |
2586 DEBUG_EMAIL(("Original Search Key - NOT PROCESSED\n")); | |
2587 break; | |
2588 case 0x3A15: // PR_POSTAL_ADDRESS | |
2589 DEBUG_EMAIL(("Default Postal Address - ")); | |
2590 MALLOC_CONTACT(item); | |
2591 LIST_COPY(item->contact->def_postal_address, (char*)); | |
2592 DEBUG_EMAIL(("%s\n", item->contact->def_postal_address)); | |
2593 break; | |
2594 case 0x3A16: // PR_COMPANY_NAME | |
2595 DEBUG_EMAIL(("Company Name - ")); | |
2596 MALLOC_CONTACT(item); | |
2597 LIST_COPY(item->contact->company_name, (char*)); | |
2598 DEBUG_EMAIL(("%s\n", item->contact->company_name)); | |
2599 break; | |
2600 case 0x3A17: // PR_TITLE - Job Title | |
2601 DEBUG_EMAIL(("Job Title - ")); | |
2602 MALLOC_CONTACT(item); | |
2603 LIST_COPY(item->contact->job_title, (char*)); | |
2604 DEBUG_EMAIL(("%s\n", item->contact->job_title)); | |
2605 break; | |
2606 case 0x3A18: // PR_DEPARTMENT_NAME | |
2607 DEBUG_EMAIL(("Department Name - ")); | |
2608 MALLOC_CONTACT(item); | |
2609 LIST_COPY(item->contact->department, (char*)); | |
2610 DEBUG_EMAIL(("%s\n", item->contact->department)); | |
2611 break; | |
2612 case 0x3A19: // PR_OFFICE_LOCATION | |
2613 DEBUG_EMAIL(("Office Location - ")); | |
2614 MALLOC_CONTACT(item); | |
2615 LIST_COPY(item->contact->office_loc, (char*)); | |
2616 DEBUG_EMAIL(("%s\n", item->contact->office_loc)); | |
2617 break; | |
2618 case 0x3A1A: // PR_PRIMARY_TELEPHONE_NUMBER | |
2619 DEBUG_EMAIL(("Primary Telephone - ")); | |
2620 MALLOC_CONTACT(item); | |
2621 LIST_COPY(item->contact->primary_phone, (char*)); | |
2622 DEBUG_EMAIL(("%s\n", item->contact->primary_phone)); | |
2623 break; | |
2624 case 0x3A1B: // PR_BUSINESS2_TELEPHONE_NUMBER | |
2625 DEBUG_EMAIL(("Business Phone Number 2 - ")); | |
2626 MALLOC_CONTACT(item); | |
2627 LIST_COPY(item->contact->business_phone2, (char*)); | |
2628 DEBUG_EMAIL(("%s\n", item->contact->business_phone2)); | |
2629 break; | |
2630 case 0x3A1C: // PR_MOBILE_TELEPHONE_NUMBER | |
2631 DEBUG_EMAIL(("Mobile Phone Number - ")); | |
2632 MALLOC_CONTACT(item); | |
2633 LIST_COPY(item->contact->mobile_phone, (char*)); | |
2634 DEBUG_EMAIL(("%s\n", item->contact->mobile_phone)); | |
2635 break; | |
2636 case 0x3A1D: // PR_RADIO_TELEPHONE_NUMBER | |
2637 DEBUG_EMAIL(("Radio Phone Number - ")); | |
2638 MALLOC_CONTACT(item); | |
2639 LIST_COPY(item->contact->radio_phone, (char*)); | |
2640 DEBUG_EMAIL(("%s\n", item->contact->radio_phone)); | |
2641 break; | |
2642 case 0x3A1E: // PR_CAR_TELEPHONE_NUMBER | |
2643 DEBUG_EMAIL(("Car Phone Number - ")); | |
2644 MALLOC_CONTACT(item); | |
2645 LIST_COPY(item->contact->car_phone, (char*)); | |
2646 DEBUG_EMAIL(("%s\n", item->contact->car_phone)); | |
2647 break; | |
2648 case 0x3A1F: // PR_OTHER_TELEPHONE_NUMBER | |
2649 DEBUG_EMAIL(("Other Phone Number - ")); | |
2650 MALLOC_CONTACT(item); | |
2651 LIST_COPY(item->contact->other_phone, (char*)); | |
2652 DEBUG_EMAIL(("%s\n", item->contact->other_phone)); | |
2653 break; | |
2654 case 0x3A20: // PR_TRANSMITTABLE_DISPLAY_NAME | |
2655 DEBUG_EMAIL(("Transmittable Display Name - ")); | |
2656 MALLOC_CONTACT(item); | |
2657 LIST_COPY(item->contact->transmittable_display_name, (char*)); | |
2658 DEBUG_EMAIL(("%s\n", item->contact->transmittable_display_name)); | |
2659 break; | |
2660 case 0x3A21: // PR_PAGER_TELEPHONE_NUMBER | |
2661 DEBUG_EMAIL(("Pager Phone Number - ")); | |
2662 MALLOC_CONTACT(item); | |
2663 LIST_COPY(item->contact->pager_phone, (char*)); | |
2664 DEBUG_EMAIL(("%s\n", item->contact->pager_phone)); | |
2665 break; | |
2666 case 0x3A22: // PR_USER_CERTIFICATE | |
2667 DEBUG_EMAIL(("User Certificate - NOT PROCESSED")); | |
2668 break; | |
2669 case 0x3A23: // PR_PRIMARY_FAX_NUMBER | |
2670 DEBUG_EMAIL(("Primary Fax Number - ")); | |
2671 MALLOC_CONTACT(item); | |
2672 LIST_COPY(item->contact->primary_fax, (char*)); | |
2673 DEBUG_EMAIL(("%s\n", item->contact->primary_fax)); | |
2674 break; | |
2675 case 0x3A24: // PR_BUSINESS_FAX_NUMBER | |
2676 DEBUG_EMAIL(("Business Fax Number - ")); | |
2677 MALLOC_CONTACT(item); | |
2678 LIST_COPY(item->contact->business_fax, (char*)); | |
2679 DEBUG_EMAIL(("%s\n", item->contact->business_fax)); | |
2680 break; | |
2681 case 0x3A25: // PR_HOME_FAX_NUMBER | |
2682 DEBUG_EMAIL(("Home Fax Number - ")); | |
2683 MALLOC_CONTACT(item); | |
2684 LIST_COPY(item->contact->home_fax, (char*)); | |
2685 DEBUG_EMAIL(("%s\n", item->contact->home_fax)); | |
2686 break; | |
2687 case 0x3A26: // PR_BUSINESS_ADDRESS_COUNTRY | |
2688 DEBUG_EMAIL(("Business Address Country - ")); | |
2689 MALLOC_CONTACT(item); | |
2690 LIST_COPY(item->contact->business_country, (char*)); | |
2691 DEBUG_EMAIL(("%s\n", item->contact->business_country)); | |
2692 break; | |
2693 case 0x3A27: // PR_BUSINESS_ADDRESS_CITY | |
2694 DEBUG_EMAIL(("Business Address City - ")); | |
2695 MALLOC_CONTACT(item); | |
2696 LIST_COPY(item->contact->business_city, (char*)); | |
2697 DEBUG_EMAIL(("%s\n", item->contact->business_city)); | |
2698 break; | |
2699 case 0x3A28: // PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE | |
2700 DEBUG_EMAIL(("Business Address State - ")); | |
2701 MALLOC_CONTACT(item); | |
2702 LIST_COPY(item->contact->business_state, (char*)); | |
2703 DEBUG_EMAIL(("%s\n", item->contact->business_state)); | |
2704 break; | |
2705 case 0x3A29: // PR_BUSINESS_ADDRESS_STREET | |
2706 DEBUG_EMAIL(("Business Address Street - ")); | |
2707 MALLOC_CONTACT(item); | |
2708 LIST_COPY(item->contact->business_street, (char*)); | |
2709 DEBUG_EMAIL(("%s\n", item->contact->business_street)); | |
2710 break; | |
2711 case 0x3A2A: // PR_BUSINESS_POSTAL_CODE | |
2712 DEBUG_EMAIL(("Business Postal Code - ")); | |
2713 MALLOC_CONTACT(item); | |
2714 LIST_COPY(item->contact->business_postal_code, (char*)); | |
2715 DEBUG_EMAIL(("%s\n", item->contact->business_postal_code)); | |
2716 break; | |
2717 case 0x3A2B: // PR_BUSINESS_PO_BOX | |
2718 DEBUG_EMAIL(("Business PO Box - ")); | |
2719 MALLOC_CONTACT(item); | |
2720 LIST_COPY(item->contact->business_po_box, (char*)); | |
2721 DEBUG_EMAIL(("%s\n", item->contact->business_po_box)); | |
2722 break; | |
2723 case 0x3A2C: // PR_TELEX_NUMBER | |
2724 DEBUG_EMAIL(("Telex Number - ")); | |
2725 MALLOC_CONTACT(item); | |
2726 LIST_COPY(item->contact->telex, (char*)); | |
2727 DEBUG_EMAIL(("%s\n", item->contact->telex)); | |
2728 break; | |
2729 case 0x3A2D: // PR_ISDN_NUMBER | |
2730 DEBUG_EMAIL(("ISDN Number - ")); | |
2731 MALLOC_CONTACT(item); | |
2732 LIST_COPY(item->contact->isdn_phone, (char*)); | |
2733 DEBUG_EMAIL(("%s\n", item->contact->isdn_phone)); | |
2734 break; | |
2735 case 0x3A2E: // PR_ASSISTANT_TELEPHONE_NUMBER | |
2736 DEBUG_EMAIL(("Assistant Phone Number - ")); | |
2737 MALLOC_CONTACT(item); | |
2738 LIST_COPY(item->contact->assistant_phone, (char*)); | |
2739 DEBUG_EMAIL(("%s\n", item->contact->assistant_phone)); | |
2740 break; | |
2741 case 0x3A2F: // PR_HOME2_TELEPHONE_NUMBER | |
2742 DEBUG_EMAIL(("Home Phone 2 - ")); | |
2743 MALLOC_CONTACT(item); | |
2744 LIST_COPY(item->contact->home_phone2, (char*)); | |
2745 DEBUG_EMAIL(("%s\n", item->contact->home_phone2)); | |
2746 break; | |
2747 case 0x3A30: // PR_ASSISTANT | |
2748 DEBUG_EMAIL(("Assistant's Name - ")); | |
2749 MALLOC_CONTACT(item); | |
2750 LIST_COPY(item->contact->assistant_name, (char*)); | |
2751 DEBUG_EMAIL(("%s\n", item->contact->assistant_name)); | |
2752 break; | |
2753 case 0x3A40: // PR_SEND_RICH_INFO | |
2754 DEBUG_EMAIL(("Can receive Rich Text - ")); | |
2755 MALLOC_CONTACT(item); | |
47 | 2756 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 2757 DEBUG_EMAIL(("True\n")); |
2758 item->contact->rich_text = 1; | |
2759 } else { | |
2760 DEBUG_EMAIL(("False\n")); | |
2761 item->contact->rich_text = 0; | |
2762 } | |
2763 break; | |
2764 case 0x3A41: // PR_WEDDING_ANNIVERSARY | |
2765 DEBUG_EMAIL(("Wedding Anniversary - ")); | |
2766 MALLOC_CONTACT(item); | |
2767 LIST_COPY(item->contact->wedding_anniversary, (FILETIME*)); | |
2768 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->wedding_anniversary))); | |
2769 break; | |
2770 case 0x3A42: // PR_BIRTHDAY | |
2771 DEBUG_EMAIL(("Birthday - ")); | |
2772 MALLOC_CONTACT(item); | |
2773 LIST_COPY(item->contact->birthday, (FILETIME*)); | |
2774 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->birthday))); | |
2775 break; | |
2776 case 0x3A43: // PR_HOBBIES | |
2777 DEBUG_EMAIL(("Hobbies - ")); | |
2778 MALLOC_CONTACT(item); | |
2779 LIST_COPY(item->contact->hobbies, (char*)); | |
2780 DEBUG_EMAIL(("%s\n", item->contact->hobbies)); | |
2781 break; | |
2782 case 0x3A44: // PR_MIDDLE_NAME | |
2783 DEBUG_EMAIL(("Middle Name - ")); | |
2784 MALLOC_CONTACT(item); | |
2785 LIST_COPY(item->contact->middle_name, (char*)); | |
2786 DEBUG_EMAIL(("%s\n", item->contact->middle_name)); | |
2787 break; | |
2788 case 0x3A45: // PR_DISPLAY_NAME_PREFIX | |
2789 DEBUG_EMAIL(("Display Name Prefix (Title) - ")); | |
2790 MALLOC_CONTACT(item); | |
2791 LIST_COPY(item->contact->display_name_prefix, (char*)); | |
2792 DEBUG_EMAIL(("%s\n", item->contact->display_name_prefix)); | |
2793 break; | |
2794 case 0x3A46: // PR_PROFESSION | |
2795 DEBUG_EMAIL(("Profession - ")); | |
2796 MALLOC_CONTACT(item); | |
2797 LIST_COPY(item->contact->profession, (char*)); | |
2798 DEBUG_EMAIL(("%s\n", item->contact->profession)); | |
2799 break; | |
2800 case 0x3A47: // PR_PREFERRED_BY_NAME | |
2801 DEBUG_EMAIL(("Preferred By Name - ")); | |
2802 MALLOC_CONTACT(item); | |
2803 LIST_COPY(item->contact->pref_name, (char*)); | |
2804 DEBUG_EMAIL(("%s\n", item->contact->pref_name)); | |
2805 break; | |
2806 case 0x3A48: // PR_SPOUSE_NAME | |
2807 DEBUG_EMAIL(("Spouse's Name - ")); | |
2808 MALLOC_CONTACT(item); | |
2809 LIST_COPY(item->contact->spouse_name, (char*)); | |
2810 DEBUG_EMAIL(("%s\n", item->contact->spouse_name)); | |
2811 break; | |
2812 case 0x3A49: // PR_COMPUTER_NETWORK_NAME | |
2813 DEBUG_EMAIL(("Computer Network Name - ")); | |
2814 MALLOC_CONTACT(item); | |
2815 LIST_COPY(item->contact->computer_name, (char*)); | |
2816 DEBUG_EMAIL(("%s\n", item->contact->computer_name)); | |
2817 break; | |
2818 case 0x3A4A: // PR_CUSTOMER_ID | |
2819 DEBUG_EMAIL(("Customer ID - ")); | |
2820 MALLOC_CONTACT(item); | |
2821 LIST_COPY(item->contact->customer_id, (char*)); | |
2822 DEBUG_EMAIL(("%s\n", item->contact->customer_id)); | |
2823 break; | |
2824 case 0x3A4B: // PR_TTYTDD_PHONE_NUMBER | |
2825 DEBUG_EMAIL(("TTY/TDD Phone - ")); | |
2826 MALLOC_CONTACT(item); | |
2827 LIST_COPY(item->contact->ttytdd_phone, (char*)); | |
2828 DEBUG_EMAIL(("%s\n", item->contact->ttytdd_phone)); | |
2829 break; | |
2830 case 0x3A4C: // PR_FTP_SITE | |
2831 DEBUG_EMAIL(("Ftp Site - ")); | |
2832 MALLOC_CONTACT(item); | |
2833 LIST_COPY(item->contact->ftp_site, (char*)); | |
2834 DEBUG_EMAIL(("%s\n", item->contact->ftp_site)); | |
2835 break; | |
2836 case 0x3A4D: // PR_GENDER | |
2837 DEBUG_EMAIL(("Gender - ")); | |
2838 MALLOC_CONTACT(item); | |
2839 memcpy(&item->contact->gender, list->items[x]->data, sizeof(int16_t)); | |
2840 LE16_CPU(item->contact->gender); | |
2841 switch(item->contact->gender) { | |
2842 case 0: | |
2843 DEBUG_EMAIL(("Unspecified\n")); | |
2844 break; | |
2845 case 1: | |
2846 DEBUG_EMAIL(("Female\n")); | |
2847 break; | |
2848 case 2: | |
2849 DEBUG_EMAIL(("Male\n")); | |
2850 break; | |
2851 default: | |
2852 DEBUG_EMAIL(("Error processing\n")); | |
2853 } | |
2854 break; | |
2855 case 0x3A4E: // PR_MANAGER_NAME | |
2856 DEBUG_EMAIL(("Manager's Name - ")); | |
2857 MALLOC_CONTACT(item); | |
2858 LIST_COPY(item->contact->manager_name, (char*)); | |
2859 DEBUG_EMAIL(("%s\n", item->contact->manager_name)); | |
2860 break; | |
2861 case 0x3A4F: // PR_NICKNAME | |
2862 DEBUG_EMAIL(("Nickname - ")); | |
2863 MALLOC_CONTACT(item); | |
2864 LIST_COPY(item->contact->nickname, (char*)); | |
2865 DEBUG_EMAIL(("%s\n", item->contact->nickname)); | |
2866 break; | |
2867 case 0x3A50: // PR_PERSONAL_HOME_PAGE | |
2868 DEBUG_EMAIL(("Personal Home Page - ")); | |
2869 MALLOC_CONTACT(item); | |
2870 LIST_COPY(item->contact->personal_homepage, (char*)); | |
2871 DEBUG_EMAIL(("%s\n", item->contact->personal_homepage)); | |
2872 break; | |
2873 case 0x3A51: // PR_BUSINESS_HOME_PAGE | |
2874 DEBUG_EMAIL(("Business Home Page - ")); | |
2875 MALLOC_CONTACT(item); | |
2876 LIST_COPY(item->contact->business_homepage, (char*)); | |
2877 DEBUG_EMAIL(("%s\n", item->contact->business_homepage)); | |
2878 break; | |
2879 case 0x3A57: // PR_COMPANY_MAIN_PHONE_NUMBER | |
2880 DEBUG_EMAIL(("Company Main Phone - ")); | |
2881 MALLOC_CONTACT(item); | |
2882 LIST_COPY(item->contact->company_main_phone, (char*)); | |
2883 DEBUG_EMAIL(("%s\n", item->contact->company_main_phone)); | |
2884 break; | |
2885 case 0x3A58: // PR_CHILDRENS_NAMES | |
2886 DEBUG_EMAIL(("Children's Names - NOT PROCESSED\n")); | |
2887 break; | |
2888 case 0x3A59: // PR_HOME_ADDRESS_CITY | |
2889 DEBUG_EMAIL(("Home Address City - ")); | |
2890 MALLOC_CONTACT(item); | |
2891 LIST_COPY(item->contact->home_city, (char*)); | |
2892 DEBUG_EMAIL(("%s\n", item->contact->home_city)); | |
2893 break; | |
2894 case 0x3A5A: // PR_HOME_ADDRESS_COUNTRY | |
2895 DEBUG_EMAIL(("Home Address Country - ")); | |
2896 MALLOC_CONTACT(item); | |
2897 LIST_COPY(item->contact->home_country, (char*)); | |
2898 DEBUG_EMAIL(("%s\n", item->contact->home_country)); | |
2899 break; | |
2900 case 0x3A5B: // PR_HOME_ADDRESS_POSTAL_CODE | |
2901 DEBUG_EMAIL(("Home Address Postal Code - ")); | |
2902 MALLOC_CONTACT(item); | |
2903 LIST_COPY(item->contact->home_postal_code, (char*)); | |
2904 DEBUG_EMAIL(("%s\n", item->contact->home_postal_code)); | |
2905 break; | |
2906 case 0x3A5C: // PR_HOME_ADDRESS_STATE_OR_PROVINCE | |
2907 DEBUG_EMAIL(("Home Address State or Province - ")); | |
2908 MALLOC_CONTACT(item); | |
2909 LIST_COPY(item->contact->home_state, (char*)); | |
2910 DEBUG_EMAIL(("%s\n", item->contact->home_state)); | |
2911 break; | |
2912 case 0x3A5D: // PR_HOME_ADDRESS_STREET | |
2913 DEBUG_EMAIL(("Home Address Street - ")); | |
2914 MALLOC_CONTACT(item); | |
2915 LIST_COPY(item->contact->home_street, (char*)); | |
2916 DEBUG_EMAIL(("%s\n", item->contact->home_street)); | |
2917 break; | |
2918 case 0x3A5E: // PR_HOME_ADDRESS_POST_OFFICE_BOX | |
2919 DEBUG_EMAIL(("Home Address Post Office Box - ")); | |
2920 MALLOC_CONTACT(item); | |
2921 LIST_COPY(item->contact->home_po_box, (char*)); | |
2922 DEBUG_EMAIL(("%s\n", item->contact->home_po_box)); | |
2923 break; | |
2924 case 0x3A5F: // PR_OTHER_ADDRESS_CITY | |
2925 DEBUG_EMAIL(("Other Address City - ")); | |
2926 MALLOC_CONTACT(item); | |
2927 LIST_COPY(item->contact->other_city, (char*)); | |
2928 DEBUG_EMAIL(("%s\n", item->contact->other_city)); | |
2929 break; | |
2930 case 0x3A60: // PR_OTHER_ADDRESS_COUNTRY | |
2931 DEBUG_EMAIL(("Other Address Country - ")); | |
2932 MALLOC_CONTACT(item); | |
2933 LIST_COPY(item->contact->other_country, (char*)); | |
2934 DEBUG_EMAIL(("%s\n", item->contact->other_country)); | |
2935 break; | |
2936 case 0x3A61: // PR_OTHER_ADDRESS_POSTAL_CODE | |
2937 DEBUG_EMAIL(("Other Address Postal Code - ")); | |
2938 MALLOC_CONTACT(item); | |
2939 LIST_COPY(item->contact->other_postal_code, (char*)); | |
2940 DEBUG_EMAIL(("%s\n", item->contact->other_postal_code)); | |
2941 break; | |
2942 case 0x3A62: // PR_OTHER_ADDRESS_STATE_OR_PROVINCE | |
2943 DEBUG_EMAIL(("Other Address State - ")); | |
2944 MALLOC_CONTACT(item); | |
2945 LIST_COPY(item->contact->other_state, (char*)); | |
2946 DEBUG_EMAIL(("%s\n", item->contact->other_state)); | |
2947 break; | |
2948 case 0x3A63: // PR_OTHER_ADDRESS_STREET | |
2949 DEBUG_EMAIL(("Other Address Street - ")); | |
2950 MALLOC_CONTACT(item); | |
2951 LIST_COPY(item->contact->other_street, (char*)); | |
2952 DEBUG_EMAIL(("%s\n", item->contact->other_street)); | |
2953 break; | |
2954 case 0x3A64: // PR_OTHER_ADDRESS_POST_OFFICE_BOX | |
2955 DEBUG_EMAIL(("Other Address Post Office box - ")); | |
2956 MALLOC_CONTACT(item); | |
2957 LIST_COPY(item->contact->other_po_box, (char*)); | |
2958 DEBUG_EMAIL(("%s\n", item->contact->other_po_box)); | |
2959 break; | |
2960 case 0x65E3: // Entry ID? | |
2961 DEBUG_EMAIL(("Entry ID - ")); | |
2962 item->record_key = (char*) xmalloc(16+1); | |
2963 memcpy(item->record_key, &(list->items[x]->data[1]), 16); //skip first byte | |
2964 item->record_key[16]='\0'; | |
2965 item->record_key_size=16; | |
2966 DEBUG_EMAIL_HEXPRINT((char*)item->record_key, 16); | |
2967 break; | |
2968 case 0x67F2: // ID2 value of the attachments proper record | |
2969 DEBUG_EMAIL(("Attachment ID2 value - ")); | |
46 | 2970 if (attach) { |
2971 uint32_t tempid; | |
43 | 2972 MOVE_NEXT(attach); |
46 | 2973 memcpy(&(tempid), list->items[x]->data, sizeof(tempid)); |
2974 LE32_CPU(tempid); | |
2975 attach->id2_val = tempid; | |
2976 DEBUG_EMAIL(("%#llx\n", attach->id2_val)); | |
43 | 2977 } else { |
2978 DEBUG_EMAIL(("NOT AN ATTACHMENT: %#x\n", list->items[x]->id)); | |
2979 } | |
2980 break; | |
2981 case 0x67FF: // Extra Property Identifier (Password CheckSum) | |
2982 DEBUG_EMAIL(("Password checksum [0x67FF] - ")); | |
2983 MALLOC_MESSAGESTORE(item); | |
2984 memcpy(&(item->message_store->pwd_chksum), list->items[x]->data, | |
2985 sizeof(item->message_store->pwd_chksum)); | |
2986 DEBUG_EMAIL(("%#x\n", item->message_store->pwd_chksum)); | |
2987 break; | |
2988 case 0x6F02: // Secure HTML Body | |
2989 DEBUG_EMAIL(("Secure HTML Body - ")); | |
2990 MALLOC_EMAIL(item); | |
2991 LIST_COPY(item->email->encrypted_htmlbody, (char*)); | |
2992 item->email->encrypted_htmlbody_size = list->items[x]->size; | |
2993 DEBUG_EMAIL(("Not Printed\n")); | |
2994 break; | |
2995 case 0x6F04: // Secure Text Body | |
2996 DEBUG_EMAIL(("Secure Text Body - ")); | |
2997 MALLOC_EMAIL(item); | |
2998 LIST_COPY(item->email->encrypted_body, (char*)); | |
2999 item->email->encrypted_body_size = list->items[x]->size; | |
3000 DEBUG_EMAIL(("Not Printed\n")); | |
3001 break; | |
3002 case 0x7C07: // top of folders ENTRYID | |
3003 DEBUG_EMAIL(("Top of folders RecID [0x7c07] - ")); | |
3004 MALLOC_MESSAGESTORE(item); | |
3005 item->message_store->top_of_folder = (pst_entryid*) xmalloc(sizeof(pst_entryid)); | |
3006 memcpy(item->message_store->top_of_folder, list->items[x]->data, sizeof(pst_entryid)); | |
3007 LE32_CPU(item->message_store->top_of_folder->u1); | |
3008 LE32_CPU(item->message_store->top_of_folder->id); | |
3009 DEBUG_EMAIL_HEXPRINT((char*)item->message_store->top_of_folder->entryid, 16); | |
3010 break; | |
3011 case 0x8005: // Contact's Fullname | |
3012 DEBUG_EMAIL(("Contact Fullname - ")); | |
3013 MALLOC_CONTACT(item); | |
3014 LIST_COPY(item->contact->fullname, (char*)); | |
3015 DEBUG_EMAIL(("%s\n", item->contact->fullname)); | |
3016 break; | |
3017 case 0x801A: // Full Home Address | |
3018 DEBUG_EMAIL(("Home Address - ")); | |
3019 MALLOC_CONTACT(item); | |
3020 LIST_COPY(item->contact->home_address, (char*)); | |
3021 DEBUG_EMAIL(("%s\n", item->contact->home_address)); | |
3022 break; | |
3023 case 0x801B: // Full Business Address | |
3024 DEBUG_EMAIL(("Business Address - ")); | |
3025 MALLOC_CONTACT(item); | |
3026 LIST_COPY(item->contact->business_address, (char*)); | |
3027 DEBUG_EMAIL(("%s\n", item->contact->business_address)); | |
3028 break; | |
3029 case 0x801C: // Full Other Address | |
3030 DEBUG_EMAIL(("Other Address - ")); | |
3031 MALLOC_CONTACT(item); | |
3032 LIST_COPY(item->contact->other_address, (char*)); | |
3033 DEBUG_EMAIL(("%s\n", item->contact->other_address)); | |
3034 break; | |
3035 case 0x8082: // Email Address 1 Transport | |
3036 DEBUG_EMAIL(("Email Address 1 Transport - ")); | |
3037 MALLOC_CONTACT(item); | |
3038 LIST_COPY(item->contact->address1_transport, (char*)); | |
3039 DEBUG_EMAIL(("|%s|\n", item->contact->address1_transport)); | |
3040 break; | |
3041 case 0x8083: // Email Address 1 Address | |
3042 DEBUG_EMAIL(("Email Address 1 Address - ")); | |
3043 MALLOC_CONTACT(item); | |
3044 LIST_COPY(item->contact->address1, (char*)); | |
3045 DEBUG_EMAIL(("|%s|\n", item->contact->address1)); | |
3046 break; | |
3047 case 0x8084: // Email Address 1 Description | |
3048 DEBUG_EMAIL(("Email Address 1 Description - ")); | |
3049 MALLOC_CONTACT(item); | |
3050 LIST_COPY(item->contact->address1_desc, (char*)); | |
3051 DEBUG_EMAIL(("|%s|\n", item->contact->address1_desc)); | |
3052 break; | |
3053 case 0x8085: // Email Address 1 Record | |
3054 DEBUG_EMAIL(("Email Address 1 Record - ")); | |
3055 MALLOC_CONTACT(item); | |
3056 LIST_COPY(item->contact->address1a, (char*)); | |
3057 DEBUG_EMAIL(("|%s|\n", item->contact->address1a)); | |
3058 break; | |
3059 case 0x8092: // Email Address 2 Transport | |
3060 DEBUG_EMAIL(("Email Address 2 Transport - ")); | |
3061 MALLOC_CONTACT(item); | |
3062 LIST_COPY(item->contact->address2_transport, (char*)); | |
3063 DEBUG_EMAIL(("|%s|\n", item->contact->address2_transport)); | |
3064 break; | |
3065 case 0x8093: // Email Address 2 Address | |
3066 DEBUG_EMAIL(("Email Address 2 Address - ")); | |
3067 MALLOC_CONTACT(item); | |
3068 LIST_COPY(item->contact->address2, (char*)); | |
3069 DEBUG_EMAIL(("|%s|\n", item->contact->address2)); | |
3070 break; | |
3071 case 0x8094: // Email Address 2 Description | |
3072 DEBUG_EMAIL (("Email Address 2 Description - ")); | |
3073 MALLOC_CONTACT(item); | |
3074 LIST_COPY(item->contact->address2_desc, (char*)); | |
3075 DEBUG_EMAIL(("|%s|\n", item->contact->address2_desc)); | |
3076 break; | |
3077 case 0x8095: // Email Address 2 Record | |
3078 DEBUG_EMAIL(("Email Address 2 Record - ")); | |
3079 MALLOC_CONTACT(item); | |
3080 LIST_COPY(item->contact->address2a, (char*)); | |
3081 DEBUG_EMAIL(("|%s|\n", item->contact->address2a)); | |
3082 break; | |
3083 case 0x80A2: // Email Address 3 Transport | |
3084 DEBUG_EMAIL (("Email Address 3 Transport - ")); | |
3085 MALLOC_CONTACT(item); | |
3086 LIST_COPY(item->contact->address3_transport, (char*)); | |
3087 DEBUG_EMAIL(("|%s|\n", item->contact->address3_transport)); | |
3088 break; | |
3089 case 0x80A3: // Email Address 3 Address | |
3090 DEBUG_EMAIL(("Email Address 3 Address - ")); | |
3091 MALLOC_CONTACT(item); | |
3092 LIST_COPY(item->contact->address3, (char*)); | |
3093 DEBUG_EMAIL(("|%s|\n", item->contact->address3)); | |
3094 break; | |
3095 case 0x80A4: // Email Address 3 Description | |
3096 DEBUG_EMAIL(("Email Address 3 Description - ")); | |
3097 MALLOC_CONTACT(item); | |
3098 LIST_COPY(item->contact->address3_desc, (char*)); | |
3099 DEBUG_EMAIL(("|%s|\n", item->contact->address3_desc)); | |
3100 break; | |
3101 case 0x80A5: // Email Address 3 Record | |
3102 DEBUG_EMAIL(("Email Address 3 Record - ")); | |
3103 MALLOC_CONTACT(item); | |
3104 LIST_COPY(item->contact->address3a, (char*)); | |
3105 DEBUG_EMAIL(("|%s|\n", item->contact->address3a)); | |
3106 break; | |
3107 case 0x80D8: // Internet Free/Busy | |
3108 DEBUG_EMAIL(("Internet Free/Busy - ")); | |
3109 MALLOC_CONTACT(item); | |
3110 LIST_COPY(item->contact->free_busy_address, (char*)); | |
3111 DEBUG_EMAIL(("%s\n", item->contact->free_busy_address)); | |
3112 break; | |
3113 case 0x8205: // Show on Free/Busy as | |
3114 // 0: Free | |
3115 // 1: Tentative | |
3116 // 2: Busy | |
3117 // 3: Out Of Office | |
3118 DEBUG_EMAIL(("Appointment shows as - ")); | |
3119 MALLOC_APPOINTMENT(item); | |
3120 memcpy(&(item->appointment->showas), list->items[x]->data, sizeof(item->appointment->showas)); | |
3121 LE32_CPU(item->appointment->showas); | |
3122 switch (item->appointment->showas) { | |
3123 case PST_FREEBUSY_FREE: | |
3124 DEBUG_EMAIL(("Free\n")); break; | |
3125 case PST_FREEBUSY_TENTATIVE: | |
3126 DEBUG_EMAIL(("Tentative\n")); break; | |
3127 case PST_FREEBUSY_BUSY: | |
3128 DEBUG_EMAIL(("Busy\n")); break; | |
3129 case PST_FREEBUSY_OUT_OF_OFFICE: | |
3130 DEBUG_EMAIL(("Out Of Office\n")); break; | |
3131 default: | |
3132 DEBUG_EMAIL(("Unknown Value: %d\n", item->appointment->showas)); break; | |
3133 } | |
3134 break; | |
3135 case 0x8208: // Location of an appointment | |
3136 DEBUG_EMAIL(("Appointment Location - ")); | |
3137 MALLOC_APPOINTMENT(item); | |
3138 LIST_COPY(item->appointment->location, (char*)); | |
3139 DEBUG_EMAIL(("%s\n", item->appointment->location)); | |
3140 break; | |
3141 case 0x8214: // Label for an appointment | |
3142 DEBUG_EMAIL(("Label for appointment - ")); | |
3143 MALLOC_APPOINTMENT(item); | |
3144 memcpy(&(item->appointment->label), list->items[x]->data, sizeof(item->appointment->label)); | |
3145 LE32_CPU(item->appointment->label); | |
3146 switch (item->appointment->label) { | |
3147 case PST_APP_LABEL_NONE: | |
3148 DEBUG_EMAIL(("None\n")); break; | |
3149 case PST_APP_LABEL_IMPORTANT: | |
3150 DEBUG_EMAIL(("Important\n")); break; | |
3151 case PST_APP_LABEL_BUSINESS: | |
3152 DEBUG_EMAIL(("Business\n")); break; | |
3153 case PST_APP_LABEL_PERSONAL: | |
3154 DEBUG_EMAIL(("Personal\n")); break; | |
3155 case PST_APP_LABEL_VACATION: | |
3156 DEBUG_EMAIL(("Vacation\n")); break; | |
3157 case PST_APP_LABEL_MUST_ATTEND: | |
3158 DEBUG_EMAIL(("Must Attend\n")); break; | |
3159 case PST_APP_LABEL_TRAVEL_REQ: | |
3160 DEBUG_EMAIL(("Travel Required\n")); break; | |
3161 case PST_APP_LABEL_NEEDS_PREP: | |
3162 DEBUG_EMAIL(("Needs Preparation\n")); break; | |
3163 case PST_APP_LABEL_BIRTHDAY: | |
3164 DEBUG_EMAIL(("Birthday\n")); break; | |
3165 case PST_APP_LABEL_ANNIVERSARY: | |
3166 DEBUG_EMAIL(("Anniversary\n")); break; | |
3167 case PST_APP_LABEL_PHONE_CALL: | |
3168 DEBUG_EMAIL(("Phone Call\n")); break; | |
3169 } | |
3170 break; | |
3171 case 0x8215: // All day appointment flag | |
3172 DEBUG_EMAIL(("All day flag - ")); | |
3173 MALLOC_APPOINTMENT(item); | |
3174 if (*(int16_t*)list->items[x]->data != 0) { | |
3175 DEBUG_EMAIL(("True\n")); | |
3176 item->appointment->all_day = 1; | |
3177 } else { | |
3178 DEBUG_EMAIL(("False\n")); | |
3179 item->appointment->all_day = 0; | |
3180 } | |
3181 break; | |
3182 case 0x8234: // TimeZone as String | |
3183 DEBUG_EMAIL(("TimeZone of times - ")); | |
3184 MALLOC_APPOINTMENT(item); | |
3185 LIST_COPY(item->appointment->timezonestring, (char*)); | |
3186 DEBUG_EMAIL(("%s\n", item->appointment->timezonestring)); | |
3187 break; | |
3188 case 0x8235: // Appointment start time | |
3189 DEBUG_EMAIL(("Appointment Start Time - ")); | |
3190 MALLOC_APPOINTMENT(item); | |
3191 LIST_COPY(item->appointment->start, (FILETIME*)); | |
3192 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start))); | |
3193 break; | |
3194 case 0x8236: // Appointment end time | |
3195 DEBUG_EMAIL(("Appointment End Time - ")); | |
3196 MALLOC_APPOINTMENT(item); | |
3197 LIST_COPY(item->appointment->end, (FILETIME*)); | |
3198 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start))); | |
3199 break; | |
3200 case 0x8516: // Journal time start | |
3201 DEBUG_EMAIL(("Duplicate Time Start - ")); | |
3202 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data))); | |
3203 break; | |
3204 case 0x8517: // Journal time end | |
3205 DEBUG_EMAIL(("Duplicate Time End - ")); | |
3206 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data))); | |
3207 break; | |
3208 case 0x8530: // Followup | |
3209 DEBUG_EMAIL(("Followup String - ")); | |
3210 MALLOC_CONTACT(item); | |
3211 LIST_COPY(item->contact->followup, (char*)); | |
3212 DEBUG_EMAIL(("%s\n", item->contact->followup)); | |
3213 break; | |
3214 case 0x8534: // Mileage | |
3215 DEBUG_EMAIL(("Mileage - ")); | |
3216 MALLOC_CONTACT(item); | |
3217 LIST_COPY(item->contact->mileage, (char*)); | |
3218 DEBUG_EMAIL(("%s\n", item->contact->mileage)); | |
3219 break; | |
3220 case 0x8535: // Billing Information | |
3221 DEBUG_EMAIL(("Billing Information - ")); | |
3222 MALLOC_CONTACT(item); | |
3223 LIST_COPY(item->contact->billing_information, (char*)); | |
3224 DEBUG_EMAIL(("%s\n", item->contact->billing_information)); | |
3225 break; | |
3226 case 0x8554: // Outlook Version | |
3227 DEBUG_EMAIL(("Outlook Version - ")); | |
3228 LIST_COPY(item->outlook_version, (char*)); | |
3229 DEBUG_EMAIL(("%s\n", item->outlook_version)); | |
3230 break; | |
3231 case 0x8560: // Appointment Reminder Time | |
3232 DEBUG_EMAIL(("Appointment Reminder Time - ")); | |
3233 MALLOC_APPOINTMENT(item); | |
3234 LIST_COPY(item->appointment->reminder, (FILETIME*)); | |
3235 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->reminder))); | |
3236 break; | |
3237 case 0x8700: // Journal Type | |
3238 DEBUG_EMAIL(("Journal Entry Type - ")); | |
3239 MALLOC_JOURNAL(item); | |
3240 LIST_COPY(item->journal->type, (char*)); | |
3241 DEBUG_EMAIL(("%s\n", item->journal->type)); | |
3242 break; | |
3243 case 0x8706: // Journal Start date/time | |
3244 DEBUG_EMAIL(("Start Timestamp - ")); | |
3245 MALLOC_JOURNAL(item); | |
3246 LIST_COPY(item->journal->start, (FILETIME*)); | |
3247 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->start))); | |
3248 break; | |
3249 case 0x8708: // Journal End date/time | |
3250 DEBUG_EMAIL(("End Timestamp - ")); | |
3251 MALLOC_JOURNAL(item); | |
3252 LIST_COPY(item->journal->end, (FILETIME*)); | |
3253 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->end))); | |
3254 break; | |
3255 case 0x8712: // Title? | |
3256 DEBUG_EMAIL(("Journal Entry Type - ")); | |
3257 MALLOC_JOURNAL(item); | |
3258 LIST_COPY(item->journal->type, (char*)); | |
3259 DEBUG_EMAIL(("%s\n", item->journal->type)); | |
3260 break; | |
3261 default: | |
3262 DEBUG_EMAIL(("unknown type %#x\n", list->items[x]->id)); | |
3263 /* Reference Types | |
3264 | |
3265 2 - 0x0002 - Signed 16bit value | |
3266 3 - 0x0003 - Signed 32bit value | |
3267 11 - 0x000B - Boolean (non-zero = true) | |
3268 13 - 0x000D - Embedded Object | |
3269 30 - 0x001E - Null terminated String | |
3270 31 - 0x001F - Unicode string | |
3271 64 - 0x0040 - Systime - Filetime structure | |
3272 72 - 0x0048 - OLE Guid | |
3273 258 - 0x0102 - Binary data | |
3274 | |
3275 - 0x1003 - Array of 32bit values | |
3276 - 0x101E - Array of Strings | |
3277 - 0x1102 - Array of Binary data | |
3278 */ | |
3279 // DEBUG_EMAIL(("Unknown id [%#x, size=%#x]\n", list->items[x]->id, list->items[x]->size)); | |
47 | 3280 if (list->items[x]->type == (uint32_t)0x02) { |
43 | 3281 DEBUG_EMAIL(("Unknown 16bit int = %hi\n", *(int16_t*)list->items[x]->data)); |
47 | 3282 } else if (list->items[x]->type == (uint32_t)0x03) { |
43 | 3283 DEBUG_EMAIL(("Unknown 32bit int = %i\n", *(int32_t*)list->items[x]->data)); |
47 | 3284 } else if (list->items[x]->type == (uint32_t)0x0b) { |
43 | 3285 DEBUG_EMAIL(("Unknown 16bit boolean = %s [%hi]\n", |
3286 (*((int16_t*)list->items[x]->data)!=0?"True":"False"), | |
3287 *((int16_t*)list->items[x]->data))); | |
47 | 3288 } else if (list->items[x]->type == (uint32_t)0x1e) { |
43 | 3289 DEBUG_EMAIL(("Unknown String Data = \"%s\" [%#x]\n", |
3290 list->items[x]->data, list->items[x]->type)); | |
47 | 3291 } else if (list->items[x]->type == (uint32_t)0x40) { |
43 | 3292 DEBUG_EMAIL(("Unknown Date = \"%s\" [%#x]\n", |
3293 fileTimeToAscii((FILETIME*)list->items[x]->data), | |
3294 list->items[x]->type)); | |
47 | 3295 } else if (list->items[x]->type == (uint32_t)0x102) { |
43 | 3296 DEBUG_EMAIL(("Unknown Binary Data [size = %#x]\n", |
3297 list->items[x]->size)); | |
3298 DEBUG_HEXDUMP(list->items[x]->data, list->items[x]->size); | |
47 | 3299 } else if (list->items[x]->type == (uint32_t)0x101E) { |
43 | 3300 DEBUG_EMAIL(("Unknown Array of Strings [%#x]\n", |
3301 list->items[x]->type)); | |
3302 } else { | |
3303 DEBUG_EMAIL(("Unknown Not Printable [%#x]\n", | |
3304 list->items[x]->type)); | |
3305 } | |
3306 if (list->items[x]->data) { | |
3307 free(list->items[x]->data); | |
3308 list->items[x]->data = NULL; | |
3309 } | |
3310 } | |
3311 x++; | |
3312 } | |
3313 x = 0; | |
3314 list = list->next; | |
3315 next = 1; | |
3316 } | |
3317 DEBUG_RET(); | |
3318 return 0; | |
16 | 3319 } |
3320 | |
3321 | |
46 | 3322 void pst_free_list(pst_num_array *list) { |
43 | 3323 pst_num_array *l; |
46 | 3324 DEBUG_ENT("pst_free_list"); |
43 | 3325 while (list) { |
3326 if (list->items) { | |
3327 int32_t x; | |
3328 for (x=0; x < list->orig_count; x++) { | |
3329 if (list->items[x]) { | |
3330 if (list->items[x]->data) free(list->items[x]->data); | |
3331 free(list->items[x]); | |
3332 } | |
3333 } | |
3334 free(list->items); | |
3335 } | |
3336 l = list; | |
3337 list = list->next; | |
3338 free (l); | |
3339 } | |
3340 DEBUG_RET(); | |
16 | 3341 } |
3342 | |
3343 | |
46 | 3344 void pst_free_id2(pst_index2_ll * head) { |
43 | 3345 pst_index2_ll *t; |
46 | 3346 DEBUG_ENT("pst_free_id2"); |
43 | 3347 while (head) { |
3348 t = head->next; | |
3349 free (head); | |
3350 head = t; | |
3351 } | |
3352 DEBUG_RET(); | |
16 | 3353 } |
3354 | |
3355 | |
46 | 3356 void pst_free_id (pst_index_ll *head) { |
43 | 3357 pst_index_ll *t; |
46 | 3358 DEBUG_ENT("pst_free_id"); |
43 | 3359 while (head) { |
3360 t = head->next; | |
3361 free(head); | |
3362 head = t; | |
3363 } | |
3364 DEBUG_RET(); | |
16 | 3365 } |
3366 | |
3367 | |
46 | 3368 void pst_free_desc (pst_desc_ll *head) { |
43 | 3369 pst_desc_ll *t; |
46 | 3370 DEBUG_ENT("pst_free_desc"); |
43 | 3371 while (head) { |
3372 while (head->child) { | |
3373 head = head->child; | |
3374 } | |
3375 | |
3376 // point t to the next item | |
3377 t = head->next; | |
3378 if (!t && head->parent) { | |
3379 t = head->parent; | |
3380 t->child = NULL; // set the child to NULL so we don't come back here again! | |
3381 } | |
3382 | |
3383 if (head) free(head); | |
3384 else DIE(("head is NULL")); | |
3385 | |
3386 head = t; | |
3387 } | |
3388 DEBUG_RET(); | |
16 | 3389 } |
3390 | |
3391 | |
46 | 3392 void pst_free_xattrib(pst_x_attrib_ll *x) { |
43 | 3393 pst_x_attrib_ll *t; |
46 | 3394 DEBUG_ENT("pst_free_xattrib"); |
43 | 3395 while (x) { |
3396 if (x->data) free(x->data); | |
3397 t = x->next; | |
3398 free(x); | |
3399 x = t; | |
3400 } | |
3401 DEBUG_RET(); | |
16 | 3402 } |
3403 | |
3404 | |
46 | 3405 pst_index2_ll * pst_build_id2(pst_file *pf, pst_index_ll* list, pst_index2_ll* head_ptr) { |
43 | 3406 pst_block_header block_head; |
3407 pst_index2_ll *head = NULL, *tail = NULL; | |
46 | 3408 uint16_t x = 0; |
3409 char *b_ptr = NULL; | |
43 | 3410 char *buf = NULL; |
3411 pst_id2_assoc id2_rec; | |
3412 pst_index_ll *i_ptr = NULL; | |
3413 pst_index2_ll *i2_ptr = NULL; | |
46 | 3414 DEBUG_ENT("pst_build_id2"); |
43 | 3415 |
3416 if (head_ptr) { | |
3417 head = head_ptr; | |
3418 while (head_ptr) head_ptr = (tail = head_ptr)->next; | |
3419 } | |
46 | 3420 if (pst_read_block_size(pf, list->offset, list->size, &buf, PST_NO_ENC, 0) < list->size) { |
43 | 3421 //an error occured in block read |
3422 WARN(("block read error occured. offset = %#llx, size = %#llx\n", list->offset, list->size)); | |
3423 if (buf) free(buf); | |
3424 DEBUG_RET(); | |
3425 return NULL; | |
3426 } | |
3427 DEBUG_HEXDUMPC(buf, list->size, 16); | |
3428 | |
3429 memcpy(&block_head, buf, sizeof(block_head)); | |
3430 LE16_CPU(block_head.type); | |
3431 LE16_CPU(block_head.count); | |
3432 | |
46 | 3433 if (block_head.type != (uint16_t)0x0002) { // some sort of constant? |
47 | 3434 WARN(("Unknown constant [%#hx] at start of id2 values [offset %#llx].\n", block_head.type, list->offset)); |
43 | 3435 if (buf) free(buf); |
3436 DEBUG_RET(); | |
3437 return NULL; | |
3438 } | |
3439 | |
46 | 3440 DEBUG_INDEX(("ID %#llx is likely to be a description record. Count is %i (offset %#llx)\n", |
43 | 3441 list->id, block_head.count, list->offset)); |
3442 x = 0; | |
46 | 3443 b_ptr = buf + ((pf->do_read64) ? 0x08 : 0x04); |
43 | 3444 while (x < block_head.count) { |
46 | 3445 b_ptr += pst_decode_assoc(pf, &id2_rec, b_ptr); |
3446 // memcpy(&id2_rec, &(buf[b_ptr]), sizeof(id2_rec)); | |
3447 // LE32_CPU(id2_rec.id2); | |
3448 // LE32_CPU(id2_rec.id); | |
3449 // LE32_CPU(id2_rec.table2); | |
3450 // | |
3451 // b_ptr += sizeof(id2_rec); | |
3452 DEBUG_INDEX(("\tid2 = %#llx, id = %#llx, table2 = %#llx\n", id2_rec.id2, id2_rec.id, id2_rec.table2)); | |
3453 if ((i_ptr = pst_getID(pf, id2_rec.id)) == NULL) { | |
3454 DEBUG_WARN(("\t\t%#llx - Not Found\n", id2_rec.id)); | |
43 | 3455 } else { |
46 | 3456 DEBUG_INDEX(("\t\t%#llx - Offset %#llx, u1 %#llx, Size %lli(%#llx)\n", i_ptr->id, i_ptr->offset, i_ptr->u1, i_ptr->size, i_ptr->size)); |
43 | 3457 // add it to the linked list |
3458 i2_ptr = (pst_index2_ll*) xmalloc(sizeof(pst_index2_ll)); | |
3459 i2_ptr->id2 = id2_rec.id2; | |
3460 i2_ptr->id = i_ptr; | |
3461 i2_ptr->next = NULL; | |
3462 if (!head) head = i2_ptr; | |
3463 if (tail) tail->next = i2_ptr; | |
3464 tail = i2_ptr; | |
3465 if (id2_rec.table2 != 0) { | |
46 | 3466 if ((i_ptr = pst_getID(pf, id2_rec.table2)) == NULL) { |
43 | 3467 DEBUG_WARN(("\tTable2 [%#x] not found\n", id2_rec.table2)); |
3468 } | |
3469 else { | |
3470 DEBUG_INDEX(("\tGoing deeper for table2 [%#x]\n", id2_rec.table2)); | |
46 | 3471 if ((i2_ptr = pst_build_id2(pf, i_ptr, head))) { |
3472 // DEBUG_INDEX(("pst_build_id2(): \t\tAdding new list onto end of current\n")); | |
43 | 3473 // if (!head) |
3474 // head = i2_ptr; | |
3475 // if (tail) | |
3476 // tail->next = i2_ptr; | |
3477 // while (i2_ptr->next) | |
3478 // i2_ptr = i2_ptr->next; | |
3479 // tail = i2_ptr; | |
3480 } | |
3481 // need to re-establish tail | |
3482 DEBUG_INDEX(("Returned from depth\n")); | |
3483 if (tail) { | |
3484 while (tail->next) tail = tail->next; | |
3485 } | |
3486 } | |
3487 } | |
3488 } | |
3489 x++; | |
3490 } | |
3491 if (buf) free (buf); | |
3492 DEBUG_RET(); | |
3493 return head; | |
16 | 3494 } |
3495 | |
3496 | |
3497 // This version of free does NULL check first | |
3498 #define SAFE_FREE(x) {if (x) free(x);} | |
3499 | |
46 | 3500 void pst_freeItem(pst_item *item) { |
43 | 3501 pst_item_attach *t; |
3502 pst_item_extra_field *et; | |
3503 | |
46 | 3504 DEBUG_ENT("pst_freeItem"); |
43 | 3505 if (item) { |
3506 if (item->email) { | |
3507 SAFE_FREE(item->email->arrival_date); | |
3508 SAFE_FREE(item->email->body); | |
3509 SAFE_FREE(item->email->cc_address); | |
3510 SAFE_FREE(item->email->common_name); | |
3511 SAFE_FREE(item->email->encrypted_body); | |
3512 SAFE_FREE(item->email->encrypted_htmlbody); | |
3513 SAFE_FREE(item->email->header); | |
3514 SAFE_FREE(item->email->htmlbody); | |
3515 SAFE_FREE(item->email->in_reply_to); | |
3516 SAFE_FREE(item->email->messageid); | |
3517 SAFE_FREE(item->email->outlook_recipient); | |
3518 SAFE_FREE(item->email->outlook_recipient2); | |
3519 SAFE_FREE(item->email->outlook_sender); | |
3520 SAFE_FREE(item->email->outlook_sender_name); | |
3521 SAFE_FREE(item->email->outlook_sender2); | |
3522 SAFE_FREE(item->email->proc_subject); | |
3523 SAFE_FREE(item->email->recip_access); | |
3524 SAFE_FREE(item->email->recip_address); | |
3525 SAFE_FREE(item->email->recip2_access); | |
3526 SAFE_FREE(item->email->recip2_address); | |
3527 SAFE_FREE(item->email->reply_to); | |
3528 SAFE_FREE(item->email->rtf_body_tag); | |
3529 SAFE_FREE(item->email->rtf_compressed); | |
3530 SAFE_FREE(item->email->return_path_address); | |
3531 SAFE_FREE(item->email->sender_access); | |
3532 SAFE_FREE(item->email->sender_address); | |
3533 SAFE_FREE(item->email->sender2_access); | |
3534 SAFE_FREE(item->email->sender2_address); | |
3535 SAFE_FREE(item->email->sent_date); | |
3536 SAFE_FREE(item->email->sentmail_folder); | |
3537 SAFE_FREE(item->email->sentto_address); | |
3538 if (item->email->subject) | |
3539 SAFE_FREE(item->email->subject->subj); | |
3540 SAFE_FREE(item->email->subject); | |
3541 free(item->email); | |
3542 } | |
3543 if (item->folder) { | |
3544 free(item->folder); | |
3545 } | |
3546 if (item->message_store) { | |
3547 SAFE_FREE(item->message_store->deleted_items_folder); | |
3548 SAFE_FREE(item->message_store->search_root_folder); | |
3549 SAFE_FREE(item->message_store->top_of_personal_folder); | |
3550 SAFE_FREE(item->message_store->top_of_folder); | |
3551 free(item->message_store); | |
3552 } | |
3553 if (item->contact) { | |
3554 SAFE_FREE(item->contact->access_method); | |
3555 SAFE_FREE(item->contact->account_name); | |
3556 SAFE_FREE(item->contact->address1); | |
3557 SAFE_FREE(item->contact->address1a); | |
3558 SAFE_FREE(item->contact->address1_desc); | |
3559 SAFE_FREE(item->contact->address1_transport); | |
3560 SAFE_FREE(item->contact->address2); | |
3561 SAFE_FREE(item->contact->address2a); | |
3562 SAFE_FREE(item->contact->address2_desc); | |
3563 SAFE_FREE(item->contact->address2_transport); | |
3564 SAFE_FREE(item->contact->address3); | |
3565 SAFE_FREE(item->contact->address3a); | |
3566 SAFE_FREE(item->contact->address3_desc); | |
3567 SAFE_FREE(item->contact->address3_transport); | |
3568 SAFE_FREE(item->contact->assistant_name); | |
3569 SAFE_FREE(item->contact->assistant_phone); | |
3570 SAFE_FREE(item->contact->billing_information); | |
3571 SAFE_FREE(item->contact->birthday); | |
3572 SAFE_FREE(item->contact->business_address); | |
3573 SAFE_FREE(item->contact->business_city); | |
3574 SAFE_FREE(item->contact->business_country); | |
3575 SAFE_FREE(item->contact->business_fax); | |
3576 SAFE_FREE(item->contact->business_homepage); | |
3577 SAFE_FREE(item->contact->business_phone); | |
3578 SAFE_FREE(item->contact->business_phone2); | |
3579 SAFE_FREE(item->contact->business_po_box); | |
3580 SAFE_FREE(item->contact->business_postal_code); | |
3581 SAFE_FREE(item->contact->business_state); | |
3582 SAFE_FREE(item->contact->business_street); | |
3583 SAFE_FREE(item->contact->callback_phone); | |
3584 SAFE_FREE(item->contact->car_phone); | |
3585 SAFE_FREE(item->contact->company_main_phone); | |
3586 SAFE_FREE(item->contact->company_name); | |
3587 SAFE_FREE(item->contact->computer_name); | |
3588 SAFE_FREE(item->contact->customer_id); | |
3589 SAFE_FREE(item->contact->def_postal_address); | |
3590 SAFE_FREE(item->contact->department); | |
3591 SAFE_FREE(item->contact->display_name_prefix); | |
3592 SAFE_FREE(item->contact->first_name); | |
3593 SAFE_FREE(item->contact->followup); | |
3594 SAFE_FREE(item->contact->free_busy_address); | |
3595 SAFE_FREE(item->contact->ftp_site); | |
3596 SAFE_FREE(item->contact->fullname); | |
3597 SAFE_FREE(item->contact->gov_id); | |
3598 SAFE_FREE(item->contact->hobbies); | |
3599 SAFE_FREE(item->contact->home_address); | |
3600 SAFE_FREE(item->contact->home_city); | |
3601 SAFE_FREE(item->contact->home_country); | |
3602 SAFE_FREE(item->contact->home_fax); | |
3603 SAFE_FREE(item->contact->home_po_box); | |
3604 SAFE_FREE(item->contact->home_phone); | |
3605 SAFE_FREE(item->contact->home_phone2); | |
3606 SAFE_FREE(item->contact->home_postal_code); | |
3607 SAFE_FREE(item->contact->home_state); | |
3608 SAFE_FREE(item->contact->home_street); | |
3609 SAFE_FREE(item->contact->initials); | |
3610 SAFE_FREE(item->contact->isdn_phone); | |
3611 SAFE_FREE(item->contact->job_title); | |
3612 SAFE_FREE(item->contact->keyword); | |
3613 SAFE_FREE(item->contact->language); | |
3614 SAFE_FREE(item->contact->location); | |
3615 SAFE_FREE(item->contact->manager_name); | |
3616 SAFE_FREE(item->contact->middle_name); | |
3617 SAFE_FREE(item->contact->mileage); | |
3618 SAFE_FREE(item->contact->mobile_phone); | |
3619 SAFE_FREE(item->contact->nickname); | |
3620 SAFE_FREE(item->contact->office_loc); | |
3621 SAFE_FREE(item->contact->org_id); | |
3622 SAFE_FREE(item->contact->other_address); | |
3623 SAFE_FREE(item->contact->other_city); | |
3624 SAFE_FREE(item->contact->other_country); | |
3625 SAFE_FREE(item->contact->other_phone); | |
3626 SAFE_FREE(item->contact->other_po_box); | |
3627 SAFE_FREE(item->contact->other_postal_code); | |
3628 SAFE_FREE(item->contact->other_state); | |
3629 SAFE_FREE(item->contact->other_street); | |
3630 SAFE_FREE(item->contact->pager_phone); | |
3631 SAFE_FREE(item->contact->personal_homepage); | |
3632 SAFE_FREE(item->contact->pref_name); | |
3633 SAFE_FREE(item->contact->primary_fax); | |
3634 SAFE_FREE(item->contact->primary_phone); | |
3635 SAFE_FREE(item->contact->profession); | |
3636 SAFE_FREE(item->contact->radio_phone); | |
3637 SAFE_FREE(item->contact->spouse_name); | |
3638 SAFE_FREE(item->contact->suffix); | |
3639 SAFE_FREE(item->contact->surname); | |
3640 SAFE_FREE(item->contact->telex); | |
3641 SAFE_FREE(item->contact->transmittable_display_name); | |
3642 SAFE_FREE(item->contact->ttytdd_phone); | |
3643 SAFE_FREE(item->contact->wedding_anniversary); | |
3644 free(item->contact); | |
3645 } | |
3646 while (item->attach) { | |
3647 SAFE_FREE(item->attach->filename1); | |
3648 SAFE_FREE(item->attach->filename2); | |
3649 SAFE_FREE(item->attach->mimetype); | |
3650 SAFE_FREE(item->attach->data); | |
3651 t = item->attach->next; | |
3652 free(item->attach); | |
3653 item->attach = t; | |
3654 } | |
3655 while (item->extra_fields) { | |
3656 SAFE_FREE(item->extra_fields->field_name); | |
3657 SAFE_FREE(item->extra_fields->value); | |
3658 et = item->extra_fields->next; | |
3659 free(item->extra_fields); | |
3660 item->extra_fields = et; | |
3661 } | |
3662 if (item->journal) { | |
3663 SAFE_FREE(item->journal->end); | |
3664 SAFE_FREE(item->journal->start); | |
3665 SAFE_FREE(item->journal->type); | |
3666 free(item->journal); | |
3667 } | |
3668 if (item->appointment) { | |
3669 SAFE_FREE(item->appointment->location); | |
3670 SAFE_FREE(item->appointment->reminder); | |
3671 SAFE_FREE(item->appointment->start); | |
3672 SAFE_FREE(item->appointment->end); | |
3673 SAFE_FREE(item->appointment->timezonestring); | |
3674 free(item->appointment); | |
3675 } | |
3676 SAFE_FREE(item->ascii_type); | |
3677 SAFE_FREE(item->comment); | |
3678 SAFE_FREE(item->create_date); | |
3679 SAFE_FREE(item->file_as); | |
3680 SAFE_FREE(item->modify_date); | |
3681 SAFE_FREE(item->outlook_version); | |
3682 SAFE_FREE(item->record_key); | |
3683 free(item); | |
3684 } | |
3685 DEBUG_RET(); | |
16 | 3686 } |
3687 | |
3688 | |
35 | 3689 /** |
3690 * The offset might be zero, in which case we have no data, so return a pair of null pointers. | |
3691 * Or, the offset might end in 0xf, so it is an id2 pointer, in which case we read the id2 block. | |
3692 * Otherwise, the offset>>4 is an index into the table of offsets in the buffer. | |
3693 */ | |
46 | 3694 int pst_getBlockOffsetPointer(pst_file *pf, pst_index2_ll *i2_head, unsigned char *buf, size_t read_size, uint32_t i_offset, uint32_t offset, pst_block_offset_pointer *p) { |
3695 size_t size; | |
43 | 3696 pst_block_offset block_offset; |
46 | 3697 DEBUG_ENT("pst_getBlockOffsetPointer"); |
43 | 3698 if (p->needfree) free(p->from); |
3699 p->from = NULL; | |
3700 p->needfree = 0; | |
3701 if (!offset) { | |
3702 p->from = p->to = NULL; | |
3703 } | |
46 | 3704 else if ((offset & 0xf) == (uint32_t)0xf) { |
43 | 3705 DEBUG_WARN(("Found id2 %#x value. Will follow it\n", offset)); |
46 | 3706 size = pst_ff_getID2block(pf, offset, i2_head, &(p->from)); |
43 | 3707 if (size) { |
3708 p->to = p->from + size; | |
3709 p->needfree = 1; | |
3710 } | |
3711 else { | |
3712 p->from = p->to = NULL; | |
3713 } | |
3714 } | |
46 | 3715 else if (pst_getBlockOffset(buf, read_size, i_offset, offset, &block_offset)) { |
43 | 3716 p->from = p->to = NULL; |
3717 } | |
3718 else { | |
3719 p->from = buf + block_offset.from; | |
3720 p->to = buf + block_offset.to; | |
3721 } | |
3722 DEBUG_RET(); | |
3723 return (p->from) ? 0 : 1; | |
35 | 3724 } |
3725 | |
3726 | |
46 | 3727 int pst_getBlockOffset(unsigned char *buf, size_t read_size, uint32_t i_offset, uint32_t offset, pst_block_offset *p) { |
3728 uint32_t low = offset & 0xf; | |
3729 uint32_t of1 = offset >> 4; | |
3730 DEBUG_ENT("pst_getBlockOffset"); | |
43 | 3731 if (!p || !buf || !i_offset || low || (i_offset+2+of1+sizeof(*p) > read_size)) { |
3732 DEBUG_WARN(("p is NULL or buf is NULL or offset is 0 or offset has low bits or beyond read size (%p, %p, %#x, %i, %i)\n", p, buf, offset, read_size, i_offset)); | |
3733 DEBUG_RET(); | |
3734 return -1; | |
3735 } | |
3736 memcpy(&(p->from), &(buf[(i_offset+2)+of1]), sizeof(p->from)); | |
3737 memcpy(&(p->to), &(buf[(i_offset+2)+of1+sizeof(p->from)]), sizeof(p->to)); | |
3738 LE16_CPU(p->from); | |
3739 LE16_CPU(p->to); | |
3740 DEBUG_WARN(("get block offset finds from=%i(%#x), to=%i(%#x)\n", p->from, p->from, p->to, p->to)); | |
3741 if (p->from > p->to) { | |
3742 DEBUG_WARN(("get block offset from > to")); | |
3743 return -1; | |
3744 } | |
3745 DEBUG_RET(); | |
3746 return 0; | |
16 | 3747 } |
3748 | |
3749 | |
46 | 3750 pst_index_ll* pst_getID(pst_file* pf, uint64_t id) { |
43 | 3751 pst_index_ll *ptr = NULL; |
46 | 3752 DEBUG_ENT("pst_getID"); |
43 | 3753 if (id == 0) { |
3754 DEBUG_RET(); | |
3755 return NULL; | |
3756 } | |
3757 | |
46 | 3758 //if (id & 1) DEBUG_INDEX(("have odd id bit %#llx\n", id)); |
3759 //if (id & 2) DEBUG_INDEX(("have two id bit %#llx\n", id)); | |
43 | 3760 id -= (id & 1); |
3761 | |
3762 DEBUG_INDEX(("Trying to find %#llx\n", id)); | |
3763 if (!ptr) ptr = pf->i_head; | |
3764 while (ptr && (ptr->id != id)) { | |
3765 ptr = ptr->next; | |
3766 } | |
46 | 3767 if (ptr) {DEBUG_INDEX(("Found Value %#llx\n", id)); } |
3768 else {DEBUG_INDEX(("ERROR: Value %#llx not found\n", id)); } | |
43 | 3769 DEBUG_RET(); |
3770 return ptr; | |
16 | 3771 } |
3772 | |
3773 | |
46 | 3774 pst_index_ll * pst_getID2(pst_index2_ll *ptr, uint64_t id) { |
3775 DEBUG_ENT("pst_getID2"); | |
43 | 3776 DEBUG_INDEX(("Head = %p\n", ptr)); |
3777 DEBUG_INDEX(("Trying to find %#x\n", id)); | |
3778 while (ptr && (ptr->id2 != id)) { | |
3779 ptr = ptr->next; | |
3780 } | |
3781 if (ptr) { | |
46 | 3782 if (ptr->id) {DEBUG_INDEX(("Found value %#llx\n", ptr->id->id)); } |
43 | 3783 else {DEBUG_INDEX(("Found value, though it is NULL!\n"));} |
3784 DEBUG_RET(); | |
3785 return ptr->id; | |
3786 } | |
3787 DEBUG_INDEX(("ERROR Not Found\n")); | |
3788 DEBUG_RET(); | |
3789 return NULL; | |
16 | 3790 } |
3791 | |
3792 | |
35 | 3793 /** |
3794 * find the id in the descriptor tree rooted at pf->d_head | |
3795 * | |
43 | 3796 * @param pf global pst file pointer |
3797 * @param id the id we are looking for | |
35 | 3798 * |
3799 * @return pointer to the pst_desc_ll node in the descriptor tree | |
3800 */ | |
46 | 3801 pst_desc_ll* pst_getDptr(pst_file *pf, uint64_t id) { |
43 | 3802 pst_desc_ll *ptr = pf->d_head; |
46 | 3803 DEBUG_ENT("pst_getDptr"); |
43 | 3804 while (ptr && (ptr->id != id)) { |
3805 if (ptr->child) { | |
3806 ptr = ptr->child; | |
3807 continue; | |
3808 } | |
3809 while (!ptr->next && ptr->parent) { | |
3810 ptr = ptr->parent; | |
3811 } | |
3812 ptr = ptr->next; | |
3813 } | |
3814 DEBUG_RET(); | |
3815 return ptr; // will be NULL or record we are looking for | |
16 | 3816 } |
3817 | |
3818 | |
46 | 3819 int32_t pst_printDptr(pst_file *pf) { |
43 | 3820 pst_desc_ll *ptr = pf->d_head; |
3821 int32_t depth = 0; | |
3822 char spaces[100]; | |
46 | 3823 DEBUG_ENT("pst_printDptr"); |
43 | 3824 memset(spaces, ' ', 99); |
3825 spaces[99] = '\0'; | |
3826 while (ptr) { | |
3827 DEBUG_INDEX(("%s%#x [%i] desc=%#x, list=%#x\n", &(spaces[(99-depth<0?0:99-depth)]), ptr->id, ptr->no_child, | |
3828 (ptr->desc==NULL?0:ptr->desc->id), | |
3829 (ptr->list_index==NULL?0:ptr->list_index->id))); | |
3830 if (ptr->child) { | |
3831 depth++; | |
3832 ptr = ptr->child; | |
3833 continue; | |
3834 } | |
3835 while (!ptr->next && ptr->parent) { | |
3836 depth--; | |
3837 ptr = ptr->parent; | |
3838 } | |
3839 ptr = ptr->next; | |
3840 } | |
3841 DEBUG_RET(); | |
3842 return 0; | |
16 | 3843 } |
3844 | |
3845 | |
46 | 3846 int32_t pst_printIDptr(pst_file* pf) { |
43 | 3847 pst_index_ll *ptr = pf->i_head; |
46 | 3848 DEBUG_ENT("pst_printIDptr"); |
43 | 3849 while (ptr) { |
3850 DEBUG_INDEX(("%#x offset=%#x size=%#x\n", ptr->id, ptr->offset, ptr->size)); | |
3851 ptr = ptr->next; | |
3852 } | |
3853 DEBUG_RET(); | |
3854 return 0; | |
16 | 3855 } |
3856 | |
3857 | |
46 | 3858 int32_t pst_printID2ptr(pst_index2_ll *ptr) { |
3859 DEBUG_ENT("pst_printID2ptr"); | |
43 | 3860 while (ptr) { |
3861 DEBUG_INDEX(("%#x id=%#x\n", ptr->id2, (ptr->id!=NULL?ptr->id->id:0))); | |
3862 ptr = ptr->next; | |
3863 } | |
3864 DEBUG_RET(); | |
3865 return 0; | |
16 | 3866 } |
3867 | |
3868 | |
3869 // when the first byte of the block being read is 01, then we can assume | |
3870 // that it is a list of further ids to read and we will follow those ids | |
3871 // recursively calling this function until we have all the data | |
3872 // we could do decryption of the encrypted PST files here | |
46 | 3873 size_t pst_read_block_size(pst_file *pf, off_t offset, size_t size, char **buf, int32_t do_enc, unsigned char is_index) { |
43 | 3874 off_t fpos; |
46 | 3875 uint32_t x; |
43 | 3876 int16_t count, y; |
3877 char *buf2 = NULL, *buf3 = NULL; | |
3878 unsigned char fdepth; | |
3879 pst_index_ll *ptr = NULL; | |
3880 size_t rsize, z; | |
3881 | |
46 | 3882 DEBUG_ENT("pst_read_block_size"); |
43 | 3883 DEBUG_READ(("Reading block from %#x, %i bytes\n", offset, size)); |
3884 | |
3885 fpos = ftell(pf->fp); | |
46 | 3886 (void)fseek(pf->fp, offset, SEEK_SET); |
43 | 3887 if (*buf) { |
3888 DEBUG_READ(("Freeing old memory\n")); | |
3889 free(*buf); | |
3890 } | |
3891 | |
3892 *buf = (void*) xmalloc(size+1); //plus one so that we can NUL terminate it later | |
46 | 3893 rsize = fread(*buf, (size_t)1, size, pf->fp); |
43 | 3894 if (rsize != size) { |
3895 DEBUG_WARN(("Didn't read all that I could. fread returned less [%i instead of %i]\n", rsize, size)); | |
3896 if (feof(pf->fp)) { | |
3897 DEBUG_WARN(("We tried to read past the end of the file at [offset %#x, size %#x]\n", offset, size)); | |
3898 } else if (ferror(pf->fp)) { | |
3899 DEBUG_WARN(("Error is set on file stream.\n")); | |
3900 } else { | |
3901 DEBUG_WARN(("I can't tell why it failed\n")); | |
3902 } | |
3903 size = rsize; | |
3904 } | |
3905 | |
3906 // DEBUG_HEXDUMP(*buf, size); | |
3907 | |
3908 /* if (is_index) { | |
46 | 3909 DEBUG_READ(("pst_read_block_size: ODD_BLOCK should be here\n")); |
43 | 3910 DEBUG_READ(("\t: byte 0-1: %#x %#x\n", (*buf)[0], (*buf)[1])); |
3911 }*/ | |
3912 | |
3913 if ((*buf)[0] == 0x01 && (*buf)[1] != 0x00 && is_index) { | |
3914 //don't do this recursion if we should be at a leaf node | |
3915 memcpy(&count, &((*buf)[2]), sizeof(int16_t)); | |
3916 LE16_CPU(count); | |
3917 memcpy(&fdepth, &((*buf)[1]), sizeof(fdepth)); | |
3918 DEBUG_READ(("Seen indexes to blocks. Depth is %i\n", fdepth)); | |
3919 // do fancy stuff! :) | |
3920 DEBUG_READ(("There are %i ids\n", count)); | |
3921 // if first 2 blocks are 01 01 then index to blocks | |
3922 size = 0; | |
3923 y = 0; | |
3924 while (y < count) { | |
46 | 3925 memcpy(&x, &(*buf)[0x08+(y*4)], sizeof(uint32_t)); |
43 | 3926 LE32_CPU(x); |
46 | 3927 if ((ptr = pst_getID(pf, x)) == NULL) { |
43 | 3928 WARN(("Error. Cannot find ID [%#x] during multi-block read\n", x)); |
3929 buf3 = (char*) realloc(buf3, size+1); | |
3930 buf3[size] = '\0'; | |
3931 *buf = buf3; | |
47 | 3932 (void)fseek(pf->fp, fpos, SEEK_SET); |
43 | 3933 DEBUG_RET(); |
3934 return size; | |
3935 } | |
46 | 3936 if ((z = pst_read_block_size(pf, ptr->offset, ptr->size, &buf2, do_enc, fdepth-1)) < ptr->size) { |
43 | 3937 buf3 = (char*) realloc(buf3, size+1); |
3938 buf3[size] = '\0'; | |
3939 *buf = buf3; | |
47 | 3940 (void)fseek(pf->fp, fpos, SEEK_SET); |
43 | 3941 DEBUG_RET(); |
3942 return size; | |
3943 } | |
3944 DEBUG_READ(("Melding newley retrieved block with bigger one. New size is %i\n", size+z)); | |
3945 buf3 = (char*) realloc(buf3, size+z+1); //plus one so that we can null terminate it later | |
3946 DEBUG_READ(("Doing copy. Start pos is %i, length is %i\n", size, z)); | |
3947 memcpy(&(buf3[size]), buf2, z); | |
3948 size += z; | |
3949 y++; | |
3950 } | |
3951 free(*buf); | |
3952 if (buf2) free(buf2); | |
3953 if (!buf3) { | |
3954 // this can happen if count == 0. We should create an empty buffer so we don't | |
3955 // confuse any clients | |
46 | 3956 buf3 = (char*) xmalloc((size_t)1); |
43 | 3957 } |
3958 *buf = buf3; | |
46 | 3959 } else if (do_enc && pf->encryption) { |
3960 (void)pst_decrypt(*buf, size, pf->encryption); | |
3961 } else { | |
3962 // nothing to do | |
3963 } | |
43 | 3964 |
3965 (*buf)[size] = '\0'; //should be byte after last one read | |
46 | 3966 (void)fseek(pf->fp, fpos, SEEK_SET); |
43 | 3967 DEBUG_RET(); |
3968 return size; | |
16 | 3969 } |
3970 | |
3971 | |
46 | 3972 int pst_decrypt(unsigned char *buf, size_t size, unsigned char type) { |
43 | 3973 size_t x = 0; |
3974 unsigned char y; | |
46 | 3975 DEBUG_ENT("pst_decrypt"); |
43 | 3976 if (!buf) { |
3977 DEBUG_RET(); | |
3978 return -1; | |
3979 } | |
3980 | |
3981 if (type == PST_COMP_ENCRYPT) { | |
3982 x = 0; | |
3983 while (x < size) { | |
3984 y = buf[x]; | |
3985 DEBUG_DECRYPT(("Transposing %#hhx to %#hhx [%#x]\n", buf[x], comp_enc[y], y)); | |
3986 buf[x] = comp_enc[y]; // transpose from encrypt array | |
3987 x++; | |
3988 } | |
3989 } else { | |
3990 WARN(("Unknown encryption: %i. Cannot decrypt\n", type)); | |
3991 DEBUG_RET(); | |
3992 return -1; | |
3993 } | |
3994 DEBUG_RET(); | |
3995 return 0; | |
16 | 3996 } |
3997 | |
3998 | |
46 | 3999 uint64_t pst_getIntAt(pst_file *pf, char *buf) { |
4000 uint64_t buf64; | |
4001 uint32_t buf32; | |
4002 if (pf->do_read64) { | |
43 | 4003 memcpy(&buf64, buf, sizeof(buf64)); |
4004 LE64_CPU(buf64); | |
4005 return buf64; | |
4006 } | |
4007 else { | |
4008 memcpy(&buf32, buf, sizeof(buf32)); | |
4009 LE32_CPU(buf32); | |
4010 return buf32; | |
4011 } | |
4012 } | |
4013 | |
4014 | |
46 | 4015 uint64_t pst_getIntAtPos(pst_file *pf, off_t pos ) { |
4016 uint64_t buf64; | |
4017 uint32_t buf32; | |
4018 if (pf->do_read64) { | |
4019 (void)pst_getAtPos(pf->fp, pos, &buf64, sizeof(buf64)); | |
43 | 4020 LE64_CPU(buf64); |
4021 return buf64; | |
4022 } | |
4023 else { | |
46 | 4024 (void)pst_getAtPos(pf->fp, pos, &buf32, sizeof(buf32)); |
43 | 4025 LE32_CPU(buf32); |
4026 return buf32; | |
4027 } | |
16 | 4028 } |
4029 | |
4030 | |
46 | 4031 int pst_getAtPos(FILE *fp, off_t pos, void* buf, size_t size) { |
4032 DEBUG_ENT("pst_getAtPos"); | |
43 | 4033 if (fseek(fp, pos, SEEK_SET) == -1) { |
4034 DEBUG_RET(); | |
4035 return 1; | |
4036 } | |
47 | 4037 if (fread(buf, (size_t)1, size, fp) < size) { |
43 | 4038 DEBUG_RET(); |
4039 return 2; | |
4040 } | |
4041 DEBUG_RET(); | |
4042 return 0; | |
16 | 4043 } |
4044 | |
4045 | |
46 | 4046 int pst_get (FILE *fp, void *buf, size_t size) { |
4047 DEBUG_ENT("pst_get"); | |
47 | 4048 if (fread(buf, (size_t)1, size, fp) < size) { |
43 | 4049 DEBUG_RET(); |
4050 return 1; | |
4051 } | |
4052 DEBUG_RET(); | |
4053 return 0; | |
16 | 4054 } |
4055 | |
4056 | |
46 | 4057 size_t pst_ff_getIDblock_dec(pst_file *pf, uint64_t id, unsigned char **b) { |
43 | 4058 size_t r; |
46 | 4059 int noenc = (int)(id & 2); // disable encryption |
4060 DEBUG_ENT("pst_ff_getIDblock_dec"); | |
43 | 4061 DEBUG_INDEX(("for id %#x\n", id)); |
46 | 4062 r = pst_ff_getIDblock(pf, id, b); |
4063 if ((pf->encryption) && !(noenc)) { | |
4064 (void)pst_decrypt(*b, r, pf->encryption); | |
43 | 4065 } |
4066 DEBUG_HEXDUMPC(*b, r, 16); | |
4067 DEBUG_RET(); | |
4068 return r; | |
4069 } | |
4070 | |
4071 | |
46 | 4072 size_t pst_ff_getIDblock(pst_file *pf, uint64_t id, unsigned char** b) { |
43 | 4073 pst_index_ll *rec; |
46 | 4074 size_t rsize = 0; |
4075 DEBUG_ENT("pst_ff_getIDblock"); | |
4076 if ((rec = pst_getID(pf, id)) == NULL) { | |
43 | 4077 DEBUG_INDEX(("Cannot find ID %#x\n", id)); |
4078 DEBUG_RET(); | |
4079 return 0; | |
4080 } | |
46 | 4081 (void)fseek(pf->fp, rec->offset, SEEK_SET); |
43 | 4082 if (*b) { |
4083 DEBUG_INDEX(("freeing old memory in b\n")); | |
4084 free(*b); | |
4085 } | |
4086 | |
4087 DEBUG_INDEX(("id = %#x, record size = %#x, offset = %#x\n", id, rec->size, rec->offset)); | |
4088 *b = (char*) xmalloc(rec->size+1); | |
47 | 4089 rsize = fread(*b, (size_t)1, rec->size, pf->fp); |
43 | 4090 if (rsize != rec->size) { |
4091 DEBUG_WARN(("Didn't read all the size. fread returned less [%i instead of %i]\n", rsize, rec->size)); | |
4092 if (feof(pf->fp)) { | |
4093 DEBUG_WARN(("We tried to read past the end of the file [offset %#x, size %#x]\n", rec->offset, rec->size)); | |
4094 } else if (ferror(pf->fp)) { | |
4095 DEBUG_WARN(("Some error occured on the file stream\n")); | |
4096 } else { | |
4097 DEBUG_WARN(("No error has been set on the file stream\n")); | |
4098 } | |
4099 } | |
4100 DEBUG_RET(); | |
4101 return rsize; | |
16 | 4102 } |
4103 | |
4104 | |
4105 #define PST_PTR_BLOCK_SIZE 0x120 | |
46 | 4106 size_t pst_ff_getID2block(pst_file *pf, uint64_t id2, pst_index2_ll *id2_head, unsigned char** buf) { |
43 | 4107 pst_index_ll* ptr; |
4108 // size_t ret; | |
4109 struct holder h = {buf, NULL, 0, "", 0}; | |
46 | 4110 DEBUG_ENT("pst_ff_getID2block"); |
4111 ptr = pst_getID2(id2_head, id2); | |
43 | 4112 |
4113 if (!ptr) { | |
4114 DEBUG_INDEX(("Cannot find id2 value %#x\n", id2)); | |
4115 DEBUG_RET(); | |
4116 return 0; | |
4117 } | |
4118 DEBUG_RET(); | |
46 | 4119 return pst_ff_getID2data(pf, ptr, &h); |
16 | 4120 } |
4121 | |
4122 | |
46 | 4123 size_t pst_ff_getID2data(pst_file *pf, pst_index_ll *ptr, struct holder *h) { |
4124 size_t ret; | |
43 | 4125 unsigned char *b = NULL, *t; |
46 | 4126 DEBUG_ENT("pst_ff_getID2data"); |
43 | 4127 if (!(ptr->id & 0x02)) { |
46 | 4128 ret = pst_ff_getIDblock_dec(pf, ptr->id, &b); |
43 | 4129 if (h->buf) { |
4130 *(h->buf) = b; | |
4131 } else if ((h->base64 == 1) && h->fp) { | |
4132 t = base64_encode(b, ret); | |
4133 if (t) { | |
47 | 4134 (void)pst_fwrite(t, (size_t)1, strlen(t), h->fp); |
43 | 4135 free(t); // caught by valgrind |
4136 } | |
4137 free(b); | |
4138 } else if (h->fp) { | |
47 | 4139 (void)pst_fwrite(b, (size_t)1, ret, h->fp); |
43 | 4140 free(b); |
46 | 4141 } else { |
4142 // h-> does not specify any output | |
43 | 4143 } |
46 | 4144 |
43 | 4145 } else { |
4146 // here we will assume it is a block that points to others | |
4147 DEBUG_READ(("Assuming it is a multi-block record because of it's id\n")); | |
46 | 4148 ret = pst_ff_compile_ID(pf, ptr->id, h, (size_t)0); |
43 | 4149 } |
4150 if (h->buf && *h->buf) | |
4151 (*(h->buf))[ret]='\0'; | |
4152 DEBUG_RET(); | |
4153 return ret; | |
16 | 4154 } |
4155 | |
4156 | |
46 | 4157 size_t pst_ff_compile_ID(pst_file *pf, uint64_t id, struct holder *h, size_t size) { |
43 | 4158 size_t z, a; |
4159 uint16_t count, y; | |
4160 uint32_t x, b; | |
4161 unsigned char * buf3 = NULL, *buf2 = NULL, *t; | |
4162 unsigned char fdepth; | |
4163 | |
46 | 4164 DEBUG_ENT("pst_ff_compile_ID"); |
4165 a = pst_ff_getIDblock(pf, id, &buf3); | |
43 | 4166 if (!a) { |
4167 if (buf3) free(buf3); | |
4168 return 0; | |
4169 } | |
4170 if ((buf3[0] != 0x1)) { // if bit 8 is set) { | |
4171 // if ((buf3)[0] != 0x1 && (buf3)[1] > 4) { | |
4172 DEBUG_WARN(("WARNING: buffer doesn't start with 0x1, but I expected it to or doesn't have it's two-bit set!\n")); | |
4173 DEBUG_WARN(("Treating as normal buffer\n")); | |
46 | 4174 if (pf->encryption) (void)pst_decrypt(buf3, a, pf->encryption); |
43 | 4175 if (h->buf) |
4176 *(h->buf) = buf3; | |
4177 else if (h->base64 == 1 && h->fp) { | |
4178 t = base64_encode(buf3, a); | |
4179 if (t) { | |
47 | 4180 (void)pst_fwrite(t, (size_t)1, strlen(t), h->fp); |
43 | 4181 free(t); // caught by valgrind |
4182 } | |
4183 free(buf3); | |
4184 } else if (h->fp) { | |
47 | 4185 (void)pst_fwrite(buf3, (size_t)1, a, h->fp); |
43 | 4186 free(buf3); |
46 | 4187 } else { |
4188 // h-> does not specify any output | |
43 | 4189 } |
4190 DEBUG_RET(); | |
4191 return a; | |
4192 } | |
4193 memcpy (&count, &(buf3[2]), sizeof(int16_t)); | |
4194 LE16_CPU(count); | |
4195 memcpy (&fdepth, &(buf3[1]), sizeof(char)); | |
4196 DEBUG_READ(("Seen index to blocks. Depth is %i\n", fdepth)); | |
4197 DEBUG_READ(("There are %i ids here\n", count)); | |
4198 | |
4199 y = 0; | |
4200 while (y < count) { | |
4201 memcpy(&x, &buf3[0x08+(y*4)], sizeof(int32_t)); | |
4202 LE32_CPU(x); | |
4203 if (fdepth == 0x1) { | |
46 | 4204 if ((z = pst_ff_getIDblock(pf, x, &buf2)) == 0) { |
43 | 4205 DEBUG_WARN(("call to getIDblock returned zero %i\n", z)); |
4206 if (buf2) free(buf2); | |
4207 free(buf3); | |
4208 return z; | |
4209 } | |
46 | 4210 if (pf->encryption) (void)pst_decrypt(buf2, z, pf->encryption); |
43 | 4211 if (h->buf) { |
4212 *(h->buf) = realloc(*(h->buf), size+z+1); | |
4213 DEBUG_READ(("appending read data of size %i onto main buffer from pos %i\n", z, size)); | |
4214 memcpy(&((*(h->buf))[size]), buf2, z); | |
46 | 4215 } else if ((h->base64 == 1) && h->fp) { |
43 | 4216 // include any byte left over from the last one encoding |
4217 buf2 = (char*)realloc(buf2, z+h->base64_extra); | |
4218 memmove(buf2+h->base64_extra, buf2, z); | |
4219 memcpy(buf2, h->base64_extra_chars, h->base64_extra); | |
46 | 4220 z += h->base64_extra; |
43 | 4221 |
4222 b = z % 3; // find out how many bytes will be left over after the encoding. | |
4223 // and save them | |
4224 memcpy(h->base64_extra_chars, &(buf2[z-b]), b); | |
4225 h->base64_extra = b; | |
4226 t = base64_encode(buf2, z-b); | |
4227 if (t) { | |
4228 DEBUG_READ(("writing %i bytes to file as base64 [%i]. Currently %i\n", z, strlen(t), size)); | |
47 | 4229 (void)pst_fwrite(t, (size_t)1, strlen(t), h->fp); |
43 | 4230 free(t); // caught by valgrind |
4231 } | |
46 | 4232 } else if (h->fp) { |
43 | 4233 DEBUG_READ(("writing %i bytes to file. Currently %i\n", z, size)); |
47 | 4234 (void)pst_fwrite(buf2, (size_t)1, z, h->fp); |
46 | 4235 } else { |
4236 // h-> does not specify any output | |
43 | 4237 } |
4238 size += z; | |
4239 y++; | |
4240 } | |
4241 else { | |
46 | 4242 if ((z = pst_ff_compile_ID(pf, x, h, size)) == 0) { |
43 | 4243 DEBUG_WARN(("recursive called returned zero %i\n", z)); |
4244 free(buf3); | |
4245 DEBUG_RET(); | |
4246 return z; | |
4247 } | |
4248 size = z; | |
4249 y++; | |
4250 } | |
4251 } | |
4252 free(buf3); | |
4253 if (buf2) free(buf2); | |
4254 DEBUG_RET(); | |
4255 return size; | |
16 | 4256 } |
4257 | |
4258 | |
4259 #ifdef _MSC_VER | |
4260 char * fileTimeToAscii(const FILETIME* filetime) { | |
43 | 4261 time_t t; |
4262 DEBUG_ENT("fileTimeToAscii"); | |
4263 t = fileTimeToUnixTime(filetime, 0); | |
4264 if (t == -1) | |
4265 DEBUG_WARN(("ERROR time_t varible that was produced, is -1\n")); | |
4266 DEBUG_RET(); | |
4267 return ctime(&t); | |
16 | 4268 } |
4269 | |
4270 | |
4271 time_t fileTimeToUnixTime(const FILETIME* filetime, DWORD *x) { | |
43 | 4272 SYSTEMTIME s; |
4273 struct tm t; | |
4274 DEBUG_ENT("fileTimeToUnixTime"); | |
4275 memset (&t, 0, sizeof(struct tm)); | |
4276 FileTimeToSystemTime(filetime, &s); | |
4277 t.tm_year = s.wYear-1900; // this is what is required | |
4278 t.tm_mon = s.wMonth-1; // also required! It made me a bit confused | |
4279 t.tm_mday = s.wDay; | |
4280 t.tm_hour = s.wHour; | |
4281 t.tm_min = s.wMinute; | |
4282 t.tm_sec = s.wSecond; | |
4283 DEBUG_RET(); | |
4284 return mktime(&t); | |
16 | 4285 } |
4286 | |
4287 | |
4288 struct tm * fileTimeToStructTM (const FILETIME *filetime) { | |
43 | 4289 time_t t1; |
4290 t1 = fileTimeToUnixTime(filetime, 0); | |
4291 return gmtime(&t1); | |
16 | 4292 } |
4293 | |
4294 | |
4295 #endif //_MSC_VER | |
4296 | |
46 | 4297 int pst_stricmp(char *a, char *b) { |
43 | 4298 // compare strings case-insensitive. |
4299 // returns -1 if a < b, 0 if a==b, 1 if a > b | |
4300 while(*a != '\0' && *b != '\0' && toupper(*a)==toupper(*b)) { | |
4301 a++; b++; | |
4302 } | |
4303 if (toupper(*a) == toupper(*b)) | |
4304 return 0; | |
4305 else if (toupper(*a) < toupper(*b)) | |
4306 return -1; | |
4307 else | |
4308 return 1; | |
16 | 4309 } |
4310 | |
4311 | |
46 | 4312 int pst_strincmp(char *a, char *b, size_t x) { |
43 | 4313 // compare upto x chars in string a and b case-insensitively |
4314 // returns -1 if a < b, 0 if a==b, 1 if a > b | |
46 | 4315 size_t y = 0; |
43 | 4316 while (*a != '\0' && *b != '\0' && y < x && toupper(*a)==toupper(*b)) { |
4317 a++; b++; y++; | |
4318 } | |
4319 // if we have reached the end of either string, or a and b still match | |
4320 if (*a == '\0' || *b == '\0' || toupper(*a)==toupper(*b)) | |
4321 return 0; | |
4322 else if (toupper(*a) < toupper(*b)) | |
4323 return -1; | |
4324 else | |
4325 return 1; | |
16 | 4326 } |
4327 | |
4328 | |
4329 size_t pst_fwrite(const void*ptr, size_t size, size_t nmemb, FILE*stream) { | |
43 | 4330 size_t r; |
4331 DEBUG_ENT("pst_fwrite"); | |
4332 if (ptr) | |
4333 r = fwrite(ptr, size, nmemb, stream); | |
4334 else { | |
4335 r = 0; | |
4336 DEBUG_WARN(("An attempt to write a NULL Pointer was made\n")); | |
4337 } | |
4338 DEBUG_RET(); | |
4339 return r; | |
16 | 4340 } |
4341 | |
4342 | |
47 | 4343 char * pst_wide_to_single(char *wt, size_t size) { |
43 | 4344 // returns the first byte of each wide char. the size is the number of bytes in source |
4345 char *x, *y; | |
46 | 4346 DEBUG_ENT("pst_wide_to_single"); |
43 | 4347 x = xmalloc((size/2)+1); |
4348 y = x; | |
4349 while (size != 0 && *wt != '\0') { | |
4350 *y = *wt; | |
4351 wt+=2; | |
4352 size -= 2; | |
4353 y++; | |
4354 } | |
4355 *y = '\0'; | |
4356 DEBUG_RET(); | |
4357 return x; | |
16 | 4358 } |
4359 | |
43 | 4360 |
4361 char *pst_rfc2426_escape(char *str) { | |
4362 static char* buf = NULL; | |
4363 char *ret, *a, *b; | |
47 | 4364 size_t x = 0; |
4365 int y, z; | |
43 | 4366 DEBUG_ENT("rfc2426_escape"); |
4367 if (!str) | |
4368 ret = str; | |
4369 else { | |
4370 | |
4371 // calculate space required to escape all the following characters | |
4372 y = pst_chr_count(str, ',') | |
4373 + pst_chr_count(str, '\\') | |
4374 + pst_chr_count(str, ';') | |
4375 + pst_chr_count(str, '\n'); | |
4376 z = pst_chr_count(str, '\r'); | |
4377 if (y == 0 && z == 0) | |
4378 // there isn't any extra space required | |
4379 ret = str; | |
4380 else { | |
4381 x = strlen(str) + y - z + 1; // don't forget room for the NUL | |
4382 buf = (char*) realloc(buf, x); | |
4383 a = str; | |
4384 b = buf; | |
4385 while (*a != '\0') { | |
4386 switch (*a) { | |
4387 case ',' : | |
4388 case '\\': | |
4389 case ';' : | |
4390 *(b++) = '\\'; | |
4391 *b = *a; | |
4392 break; | |
4393 case '\n': // newlines are encoded as "\n" | |
4394 *(b++) = '\\'; | |
4395 *b = 'n'; | |
4396 break; | |
4397 case '\r': // skip cr | |
4398 b--; | |
4399 break; | |
4400 default: | |
4401 *b=*a; | |
4402 } | |
4403 b++; | |
4404 a++; | |
4405 } | |
4406 *b = '\0'; // NUL-terminate the string (buf) | |
4407 ret = buf; | |
4408 } | |
4409 } | |
4410 DEBUG_RET(); | |
4411 return ret; | |
4412 } | |
4413 | |
4414 | |
4415 int pst_chr_count(char *str, char x) { | |
4416 int r = 0; | |
46 | 4417 while (*str) { |
4418 if (*str == x) r++; | |
43 | 4419 str++; |
4420 } | |
4421 return r; | |
4422 } | |
4423 | |
4424 | |
4425 char *pst_rfc2425_datetime_format(FILETIME *ft) { | |
47 | 4426 static char buffer[30]; |
43 | 4427 struct tm *stm = NULL; |
4428 DEBUG_ENT("rfc2425_datetime_format"); | |
4429 stm = fileTimeToStructTM(ft); | |
47 | 4430 if (strftime(buffer, sizeof(buffer), "%Y-%m-%dT%H:%M:%SZ", stm)==0) { |
43 | 4431 DEBUG_INFO(("Problem occured formatting date\n")); |
4432 } | |
4433 DEBUG_RET(); | |
4434 return buffer; | |
4435 } | |
4436 | |
4437 | |
4438 char *pst_rfc2445_datetime_format(FILETIME *ft) { | |
47 | 4439 static char buffer[30]; |
43 | 4440 struct tm *stm = NULL; |
4441 DEBUG_ENT("rfc2445_datetime_format"); | |
4442 stm = fileTimeToStructTM(ft); | |
47 | 4443 if (strftime(buffer, sizeof(buffer), "%Y%m%dT%H%M%SZ", stm)==0) { |
43 | 4444 DEBUG_INFO(("Problem occured formatting date\n")); |
4445 } | |
4446 DEBUG_RET(); | |
4447 return buffer; | |
4448 } | |
4449 | |
4450 |