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