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