Mercurial > libpst
annotate src/libpst.c @ 50:fb3818370dd6 stable-0-6-4
more fixes for 64 bit format
author | carl |
---|---|
date | Sat, 19 Jan 2008 16:30:16 -0800 |
parents | 17654fbdf76b |
children | 06c0262ad689 |
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 | |
46 | 365 DEBUG_CODE((void)pst_printDptr(pf);); |
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); |
419 (void)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")); | |
46 | 722 if (pst_read_block_size(pf, offset, BLOCK_SIZE, &buf, 0, 0) < 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")); | |
46 | 947 if (pst_read_block_size(pf, offset, DESC_BLOCK_SIZE, &buf, 0, 0) < 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)); | |
1643 | |
46 | 1644 } else if (table_rec.ref_type == (uint16_t)0x0005 || |
1645 table_rec.ref_type == (uint16_t)0x000d || | |
1646 table_rec.ref_type == (uint16_t)0x0014 || | |
1647 table_rec.ref_type == (uint16_t)0x001e || | |
1648 table_rec.ref_type == (uint16_t)0x001f || | |
1649 table_rec.ref_type == (uint16_t)0x0040 || | |
1650 table_rec.ref_type == (uint16_t)0x0048 || | |
1651 table_rec.ref_type == (uint16_t)0x0102 || | |
1652 table_rec.ref_type == (uint16_t)0x1003 || | |
1653 table_rec.ref_type == (uint16_t)0x1014 || | |
1654 table_rec.ref_type == (uint16_t)0x101e || | |
1655 table_rec.ref_type == (uint16_t)0x1102) { | |
43 | 1656 //contains index reference to data |
1657 LE32_CPU(table_rec.value); | |
1658 if (value_pointer) { | |
1659 // in a type 2 block, with a value that is more than 4 bytes | |
1660 // directly stored in this block. | |
1661 na_ptr->items[x]->size = value_size; | |
1662 na_ptr->items[x]->type = table_rec.ref_type; | |
1663 na_ptr->items[x]->data = xmalloc(value_size); | |
1664 memcpy(na_ptr->items[x]->data, value_pointer, value_size); | |
1665 } | |
49 | 1666 else if (pst_getBlockOffsetPointer(pf, i2_head, &subblocks, table_rec.value, &block_offset7)) { |
46 | 1667 if ((table_rec.value & 0xf) == (uint32_t)0xf) { |
43 | 1668 DEBUG_WARN(("failed to get block offset for table_rec.value of %#x to be read later.\n", table_rec.value)); |
1669 na_ptr->items[x]->size = 0; | |
1670 na_ptr->items[x]->data = NULL; | |
1671 na_ptr->items[x]->type = table_rec.value; | |
1672 } | |
1673 else { | |
1674 if (table_rec.value) { | |
1675 DEBUG_WARN(("failed to get block offset for table_rec.value of %#x\n", table_rec.value)); | |
1676 } | |
1677 na_ptr->count_item --; //we will be skipping a row | |
1678 continue; | |
1679 } | |
1680 } | |
1681 else { | |
50 | 1682 value_size = (size_t)(block_offset7.to - block_offset7.from); |
43 | 1683 na_ptr->items[x]->size = value_size; |
1684 na_ptr->items[x]->type = table_rec.ref_type; | |
1685 na_ptr->items[x]->data = xmalloc(value_size+1); | |
1686 memcpy(na_ptr->items[x]->data, block_offset7.from, value_size); | |
1687 na_ptr->items[x]->data[value_size] = '\0'; // it might be a string, null terminate it. | |
1688 } | |
46 | 1689 if (table_rec.ref_type == (uint16_t)0xd) { |
43 | 1690 // there is still more to do for the type of 0xD embedded objects |
1691 type_d_rec = (struct _type_d_rec*) na_ptr->items[x]->data; | |
1692 LE32_CPU(type_d_rec->id); | |
46 | 1693 na_ptr->items[x]->size = pst_ff_getID2block(pf, type_d_rec->id, i2_head, &(na_ptr->items[x]->data)); |
43 | 1694 if (!na_ptr->items[x]->size){ |
1695 DEBUG_WARN(("not able to read the ID2 data. Setting to be read later. %#x\n", type_d_rec->id)); | |
1696 na_ptr->items[x]->type = type_d_rec->id; // fetch before freeing data, alias pointer | |
1697 free(na_ptr->items[x]->data); | |
1698 na_ptr->items[x]->data = NULL; | |
1699 } | |
1700 } | |
46 | 1701 if (table_rec.ref_type == (uint16_t)0x1f) { |
43 | 1702 // there is more to do for the type 0x1f unicode strings |
46 | 1703 static vbuf *strbuf = NULL; |
1704 static vbuf *unibuf = NULL; | |
1705 if (!strbuf) strbuf=vballoc((size_t)1024); | |
1706 if (!unibuf) unibuf=vballoc((size_t)1024); | |
1707 | |
1708 // splint barfed on the following lines | |
1709 //VBUF_STATIC(strbuf, 1024); | |
1710 //VBUF_STATIC(unibuf, 1024); | |
1711 | |
43 | 1712 //need UTF-16 zero-termination |
1713 vbset(strbuf, na_ptr->items[x]->data, na_ptr->items[x]->size); | |
46 | 1714 vbappend(strbuf, "\0\0", (size_t)2); |
44 | 1715 DEBUG_INDEX(("Iconv in:\n")); |
43 | 1716 DEBUG_HEXDUMPC(strbuf->b, strbuf->dlen, 0x10); |
46 | 1717 (void)vb_utf16to8(unibuf, strbuf->b, strbuf->dlen); |
43 | 1718 free(na_ptr->items[x]->data); |
1719 na_ptr->items[x]->size = unibuf->dlen; | |
1720 na_ptr->items[x]->data = xmalloc(unibuf->dlen); | |
1721 memcpy(na_ptr->items[x]->data, unibuf->b, unibuf->dlen); | |
44 | 1722 DEBUG_INDEX(("Iconv out:\n")); |
43 | 1723 DEBUG_HEXDUMPC(na_ptr->items[x]->data, na_ptr->items[x]->size, 0x10); |
1724 } | |
1725 if (na_ptr->items[x]->type == 0) na_ptr->items[x]->type = table_rec.ref_type; | |
1726 } else { | |
46 | 1727 WARN(("ERROR Unknown ref_type %#hx\n", table_rec.ref_type)); |
49 | 1728 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); |
46 | 1729 if (na_head) pst_free_list(na_head); |
43 | 1730 DEBUG_RET(); |
1731 return NULL; | |
1732 } | |
1733 x++; | |
1734 } | |
1735 DEBUG_EMAIL(("increasing ind2_ptr by %i [%#x] bytes. Was %#x, Now %#x\n", rec_size, rec_size, ind2_ptr, ind2_ptr+rec_size)); | |
1736 ind2_ptr += rec_size; | |
1737 } | |
49 | 1738 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7); |
43 | 1739 DEBUG_RET(); |
1740 return na_head; | |
16 | 1741 } |
1742 | |
48 | 1743 // This version of free does NULL check first |
1744 #define SAFE_FREE(x) {if (x) free(x);} | |
1745 | |
16 | 1746 |
1747 // check if item->email is NULL, and init if so | |
43 | 1748 #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) );} } |
1749 #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) );} } | |
1750 #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 | 1751 #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 | 1752 #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) );} } |
1753 #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
|
1754 // malloc space and copy the current item's data null terminated |
43 | 1755 #define LIST_COPY(targ, type) { \ |
1756 targ = type realloc(targ, list->items[x]->size+1); \ | |
1757 memcpy(targ, list->items[x]->data, list->items[x]->size); \ | |
46 | 1758 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
|
1759 } |
183ae993b9ad
security fix for potential buffer overrun in lz decompress
carl
parents:
40
diff
changeset
|
1760 // malloc space and copy the current item's data and size |
48 | 1761 #define LIST_COPY_SIZE(targ, type, mysize) { \ |
1762 mysize = list->items[x]->size; \ | |
1763 if (mysize) { \ | |
1764 targ = type realloc(targ, mysize); \ | |
1765 memcpy(targ, list->items[x]->data, mysize); \ | |
1766 } \ | |
1767 else { \ | |
1768 SAFE_FREE(targ); \ | |
1769 targ = NULL; \ | |
1770 } \ | |
16 | 1771 } |
1772 | |
1773 #define NULL_CHECK(x) { if (!x) { DEBUG_EMAIL(("NULL_CHECK: Null Found\n")); break;} } | |
1774 | |
1775 #define MOVE_NEXT(targ) { \ | |
43 | 1776 if (next){\ |
1777 if (!targ) {\ | |
1778 DEBUG_EMAIL(("MOVE_NEXT: Target is NULL. Will stop processing this option\n"));\ | |
1779 break;\ | |
1780 }\ | |
1781 targ = targ->next;\ | |
1782 if (!targ) {\ | |
1783 DEBUG_EMAIL(("MOVE_NEXT: Target is NULL after next. Will stop processing this option\n"));\ | |
1784 break;\ | |
1785 }\ | |
1786 next=0;\ | |
1787 }\ | |
16 | 1788 } |
1789 | |
1790 | |
46 | 1791 int pst_process(pst_num_array *list , pst_item *item, pst_item_attach *attach) { |
43 | 1792 int32_t x, t; |
47 | 1793 int next = 0; |
43 | 1794 pst_item_extra_field *ef; |
1795 | |
46 | 1796 DEBUG_ENT("pst_process"); |
43 | 1797 if (!item) { |
1798 DEBUG_EMAIL(("item cannot be NULL.\n")); | |
1799 DEBUG_RET(); | |
1800 return -1; | |
1801 } | |
1802 | |
1803 while (list) { | |
1804 x = 0; | |
1805 while (x < list->count_item) { | |
1806 // check here to see if the id is one that is mapped. | |
1807 DEBUG_EMAIL(("#%d - id: %#x type: %#x length: %#x\n", x, list->items[x]->id, list->items[x]->type, list->items[x]->size)); | |
1808 | |
1809 switch (list->items[x]->id) { | |
1810 case PST_ATTRIB_HEADER: // CUSTOM attribute for saying the Extra Headers | |
1811 DEBUG_EMAIL(("Extra Field - ")); | |
49 | 1812 if (list->items[x]->extra) { |
1813 ef = (pst_item_extra_field*) xmalloc(sizeof(pst_item_extra_field)); | |
1814 memset(ef, 0, sizeof(pst_item_extra_field)); | |
1815 ef->field_name = (char*) xmalloc(strlen(list->items[x]->extra)+1); | |
1816 strcpy(ef->field_name, list->items[x]->extra); | |
1817 LIST_COPY(ef->value, (char*)); | |
1818 ef->next = item->extra_fields; | |
1819 item->extra_fields = ef; | |
1820 DEBUG_EMAIL(("\"%s\" = \"%s\"\n", ef->field_name, ef->value)); | |
1821 } | |
1822 else { | |
1823 DEBUG_EMAIL(("NULL extra field\n")); | |
1824 } | |
43 | 1825 break; |
1826 case 0x0002: // PR_ALTERNATE_RECIPIENT_ALLOWED | |
1827 // If set to true, the sender allows this email to be autoforwarded | |
1828 DEBUG_EMAIL(("AutoForward allowed - ")); | |
1829 MALLOC_EMAIL(item); | |
47 | 1830 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 1831 DEBUG_EMAIL(("True\n")); |
1832 item->email->autoforward = 1; | |
1833 } else { | |
1834 DEBUG_EMAIL(("False\n")); | |
1835 item->email->autoforward = -1; | |
1836 } | |
1837 break; | |
1838 case 0x0003: // Extended Attributes table | |
1839 DEBUG_EMAIL(("Extended Attributes Table - NOT PROCESSED\n")); | |
1840 break; | |
1841 case 0x0017: // PR_IMPORTANCE | |
1842 // How important the sender deems it to be | |
1843 // 0 - Low | |
1844 // 1 - Normal | |
1845 // 2 - High | |
1846 | |
1847 DEBUG_EMAIL(("Importance Level - ")); | |
1848 MALLOC_EMAIL(item); | |
1849 memcpy(&(item->email->importance), list->items[x]->data, sizeof(item->email->importance)); | |
1850 LE32_CPU(item->email->importance); | |
1851 t = item->email->importance; | |
47 | 1852 DEBUG_EMAIL(("%s [%i]\n", ((int)t==0?"Low":((int)t==1?"Normal":"High")), t)); |
43 | 1853 break; |
1854 case 0x001A: // PR_MESSAGE_CLASS Ascii type of messages - NOT FOLDERS | |
1855 // must be case insensitive | |
1856 DEBUG_EMAIL(("IPM.x - ")); | |
1857 LIST_COPY(item->ascii_type, (char*)); | |
1858 if (pst_strincmp("IPM.Note", item->ascii_type, 8) == 0) | |
1859 // the string begins with IPM.Note... | |
1860 item->type = PST_TYPE_NOTE; | |
1861 else if (pst_stricmp("IPM", item->ascii_type) == 0) | |
1862 // the whole string is just IPM | |
1863 item->type = PST_TYPE_NOTE; | |
1864 else if (pst_strincmp("IPM.Contact", item->ascii_type, 11) == 0) | |
1865 // the string begins with IPM.Contact... | |
1866 item->type = PST_TYPE_CONTACT; | |
1867 else if (pst_strincmp("REPORT.IPM.Note", item->ascii_type, 15) == 0) | |
1868 // the string begins with the above | |
1869 item->type = PST_TYPE_REPORT; | |
1870 else if (pst_strincmp("IPM.Activity", item->ascii_type, 12) == 0) | |
1871 item->type = PST_TYPE_JOURNAL; | |
1872 else if (pst_strincmp("IPM.Appointment", item->ascii_type, 15) == 0) | |
1873 item->type = PST_TYPE_APPOINTMENT; | |
50 | 1874 else if (pst_strincmp("IPM.Task", item->ascii_type, 8) == 0) |
1875 item->type = PST_TYPE_TASK; | |
43 | 1876 else |
1877 item->type = PST_TYPE_OTHER; | |
1878 | |
1879 DEBUG_EMAIL(("%s\n", item->ascii_type)); | |
1880 break; | |
1881 case 0x0023: // PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED | |
1882 // set if the sender wants a delivery report from all recipients | |
1883 DEBUG_EMAIL(("Global Delivery Report - ")); | |
1884 MALLOC_EMAIL(item); | |
1885 if (*(int16_t*)list->items[x]->data != 0) { | |
1886 DEBUG_EMAIL(("True\n")); | |
1887 item->email->delivery_report = 1; | |
1888 } else { | |
1889 DEBUG_EMAIL(("False\n")); | |
1890 item->email->delivery_report = 0; | |
1891 } | |
1892 break; | |
1893 case 0x0026: // PR_PRIORITY | |
1894 // Priority of a message | |
1895 // -1 NonUrgent | |
1896 // 0 Normal | |
1897 // 1 Urgent | |
1898 DEBUG_EMAIL(("Priority - ")); | |
1899 MALLOC_EMAIL(item); | |
1900 memcpy(&(item->email->priority), list->items[x]->data, sizeof(item->email->priority)); | |
1901 LE32_CPU(item->email->priority); | |
1902 t = item->email->priority; | |
1903 DEBUG_EMAIL(("%s [%i]\n", (t<0?"NonUrgent":(t==0?"Normal":"Urgent")), t)); | |
1904 break; | |
1905 case 0x0029:// PR_READ_RECEIPT_REQUESTED | |
1906 DEBUG_EMAIL(("Read Receipt - ")); | |
1907 MALLOC_EMAIL(item); | |
47 | 1908 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 1909 DEBUG_EMAIL(("True\n")); |
1910 item->email->read_receipt = 1; | |
1911 } else { | |
1912 DEBUG_EMAIL(("False\n")); | |
1913 item->email->read_receipt = 0; | |
1914 } | |
1915 break; | |
1916 case 0x002B: // PR_RECIPIENT_REASSIGNMENT_PROHIBITED | |
1917 DEBUG_EMAIL(("Reassignment Prohibited (Private) - ")); | |
47 | 1918 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 1919 DEBUG_EMAIL(("True\n")); |
1920 item->private_member = 1; | |
1921 } else { | |
1922 DEBUG_EMAIL(("False\n")); | |
1923 item->private_member = 0; | |
1924 } | |
1925 break; | |
1926 case 0x002E: // PR_ORIGINAL_SENSITIVITY | |
1927 // the sensitivity of the message before being replied to or forwarded | |
1928 // 0 - None | |
1929 // 1 - Personal | |
1930 // 2 - Private | |
1931 // 3 - Company Confidential | |
1932 DEBUG_EMAIL(("Original Sensitivity - ")); | |
1933 MALLOC_EMAIL(item); | |
1934 memcpy(&(item->email->orig_sensitivity), list->items[x]->data, sizeof(item->email->orig_sensitivity)); | |
1935 LE32_CPU(item->email->orig_sensitivity); | |
1936 t = item->email->orig_sensitivity; | |
47 | 1937 DEBUG_EMAIL(("%s [%i]\n", ((int)t==0?"None":((int)t==1?"Personal": |
1938 ((int)t==2?"Private":"Company Confidential"))), t)); | |
43 | 1939 break; |
1940 case 0x0036: // PR_SENSITIVITY | |
1941 // sender's opinion of the sensitivity of an email | |
1942 // 0 - None | |
1943 // 1 - Personal | |
1944 // 2 - Private | |
1945 // 3 - Company Confidiential | |
1946 DEBUG_EMAIL(("Sensitivity - ")); | |
1947 MALLOC_EMAIL(item); | |
1948 memcpy(&(item->email->sensitivity), list->items[x]->data, sizeof(item->email->sensitivity)); | |
1949 LE32_CPU(item->email->sensitivity); | |
1950 t = item->email->sensitivity; | |
47 | 1951 DEBUG_EMAIL(("%s [%i]\n", ((int)t==0?"None":((int)t==1?"Personal": |
1952 ((int)t==2?"Private":"Company Confidential"))), t)); | |
43 | 1953 break; |
1954 case 0x0037: // PR_SUBJECT raw subject | |
1955 DEBUG_EMAIL(("Raw Subject - ")); | |
1956 MALLOC_EMAIL(item); | |
1957 item->email->subject = (pst_item_email_subject*) realloc(item->email->subject, sizeof(pst_item_email_subject)); | |
1958 memset(item->email->subject, 0, sizeof(pst_item_email_subject)); | |
1959 DEBUG_EMAIL((" [size = %i] ", list->items[x]->size)); | |
1960 if (list->items[x]->size > 0) { | |
1961 if (isprint(list->items[x]->data[0])) { | |
1962 // then there are no control bytes at the front | |
1963 item->email->subject->off1 = 0; | |
1964 item->email->subject->off2 = 0; | |
1965 item->email->subject->subj = realloc(item->email->subject->subj, list->items[x]->size+1); | |
1966 memset(item->email->subject->subj, 0, list->items[x]->size+1); | |
1967 memcpy(item->email->subject->subj, list->items[x]->data, list->items[x]->size); | |
1968 } else { | |
1969 DEBUG_EMAIL(("Raw Subject has control codes\n")); | |
1970 // there might be some control bytes in the first and second bytes | |
47 | 1971 item->email->subject->off1 = (int)(unsigned)list->items[x]->data[0]; |
1972 item->email->subject->off2 = (int)(unsigned)list->items[x]->data[1]; | |
1973 item->email->subject->subj = realloc(item->email->subject->subj, list->items[x]->size-1); | |
43 | 1974 memset(item->email->subject->subj, 0, list->items[x]->size-1); |
1975 memcpy(item->email->subject->subj, &(list->items[x]->data[2]), list->items[x]->size-2); | |
1976 } | |
1977 DEBUG_EMAIL(("%s\n", item->email->subject->subj)); | |
1978 } else { | |
1979 // obviously outlook has decided not to be straight with this one. | |
1980 item->email->subject->off1 = 0; | |
1981 item->email->subject->off2 = 0; | |
1982 item->email->subject = NULL; | |
1983 DEBUG_EMAIL(("NULL subject detected\n")); | |
1984 } | |
1985 break; | |
1986 case 0x0039: // PR_CLIENT_SUBMIT_TIME Date Email Sent/Created | |
1987 DEBUG_EMAIL(("Date sent - ")); | |
1988 MALLOC_EMAIL(item); | |
1989 LIST_COPY(item->email->sent_date, (FILETIME*)); | |
1990 LE32_CPU(item->email->sent_date->dwLowDateTime); | |
1991 LE32_CPU(item->email->sent_date->dwHighDateTime); | |
1992 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->sent_date))); | |
1993 break; | |
1994 case 0x003B: // PR_SENT_REPRESENTING_SEARCH_KEY Sender address 1 | |
1995 DEBUG_EMAIL(("Sent on behalf of address 1 - ")); | |
1996 MALLOC_EMAIL(item); | |
1997 LIST_COPY(item->email->outlook_sender, (char*)); | |
1998 DEBUG_EMAIL(("%s\n", item->email->outlook_sender)); | |
1999 break; | |
2000 case 0x003F: // PR_RECEIVED_BY_ENTRYID Structure containing Recipient | |
2001 DEBUG_EMAIL(("Recipient Structure 1 -- NOT HANDLED\n")); | |
2002 break; | |
2003 case 0x0040: // PR_RECEIVED_BY_NAME Name of Recipient Structure | |
2004 DEBUG_EMAIL(("Received By Name 1 -- NOT HANDLED\n")); | |
2005 break; | |
2006 case 0x0041: // PR_SENT_REPRESENTING_ENTRYID Structure containing Sender | |
2007 DEBUG_EMAIL(("Sent on behalf of Structure 1 -- NOT HANDLED\n")); | |
2008 break; | |
2009 case 0x0042: // PR_SENT_REPRESENTING_NAME Name of Sender Structure | |
2010 DEBUG_EMAIL(("Sent on behalf of Structure Name - ")); | |
2011 MALLOC_EMAIL(item); | |
2012 LIST_COPY(item->email->outlook_sender_name, (char*)); | |
2013 DEBUG_EMAIL(("%s\n", item->email->outlook_sender_name)); | |
2014 break; | |
2015 case 0x0043: // PR_RCVD_REPRESENTING_ENTRYID Recipient Structure 2 | |
2016 DEBUG_EMAIL(("Received on behalf of Structure -- NOT HANDLED\n")); | |
2017 break; | |
2018 case 0x0044: // PR_RCVD_REPRESENTING_NAME Name of Recipient Structure 2 | |
2019 DEBUG_EMAIL(("Received on behalf of Structure Name -- NOT HANDLED\n")); | |
2020 break; | |
2021 case 0x004F: // PR_REPLY_RECIPIENT_ENTRIES Reply-To Structure | |
2022 DEBUG_EMAIL(("Reply-To Structure -- NOT HANDLED\n")); | |
2023 break; | |
2024 case 0x0050: // PR_REPLY_RECIPIENT_NAMES Name of Reply-To Structure | |
2025 DEBUG_EMAIL(("Name of Reply-To Structure -")); | |
2026 MALLOC_EMAIL(item); | |
2027 LIST_COPY(item->email->reply_to, (char*)); | |
2028 DEBUG_EMAIL(("%s\n", item->email->reply_to)); | |
2029 break; | |
2030 case 0x0051: // PR_RECEIVED_BY_SEARCH_KEY Recipient Address 1 | |
2031 DEBUG_EMAIL(("Recipient's Address 1 (Search Key) - ")); | |
2032 MALLOC_EMAIL(item); | |
2033 LIST_COPY (item->email->outlook_recipient, (char*)); | |
2034 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient)); | |
2035 break; | |
2036 case 0x0052: // PR_RCVD_REPRESENTING_SEARCH_KEY Recipient Address 2 | |
2037 DEBUG_EMAIL(("Received on behalf of Address (Search Key) - ")); | |
2038 MALLOC_EMAIL(item); | |
2039 LIST_COPY(item->email->outlook_recipient2, (char*)); | |
2040 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient2)); | |
2041 break; | |
2042 case 0x0057: // PR_MESSAGE_TO_ME | |
2043 // this user is listed explicitly in the TO address | |
2044 DEBUG_EMAIL(("My address in TO field - ")); | |
2045 MALLOC_EMAIL(item); | |
2046 if (*(int16_t*)list->items[x]->data != 0) { | |
2047 DEBUG_EMAIL(("True\n")); | |
2048 item->email->message_to_me = 1; | |
2049 } else { | |
2050 DEBUG_EMAIL(("False\n")); | |
2051 item->email->message_to_me = 0; | |
2052 } | |
2053 break; | |
2054 case 0x0058: // PR_MESSAGE_CC_ME | |
2055 // this user is listed explicitly in the CC address | |
2056 DEBUG_EMAIL(("My address in CC field - ")); | |
2057 MALLOC_EMAIL(item); | |
2058 if (*(int16_t*)list->items[x]->data != 0) { | |
2059 DEBUG_EMAIL(("True\n")); | |
2060 item->email->message_cc_me = 1; | |
2061 } else { | |
2062 DEBUG_EMAIL(("False\n")); | |
2063 item->email->message_cc_me = 0; | |
2064 } | |
2065 break; | |
2066 case 0x0059: //PR_MESSAGE_RECIP_ME | |
2067 // this user appears in TO, CC or BCC address list | |
2068 DEBUG_EMAIL(("Message addressed to me - ")); | |
2069 MALLOC_EMAIL(item); | |
2070 if (*(int16_t*)list->items[x]->data != 0) { | |
2071 DEBUG_EMAIL(("True\n")); | |
2072 item->email->message_recip_me = 1; | |
2073 } else { | |
2074 DEBUG_EMAIL(("False\n")); | |
2075 item->email->message_recip_me = 0; | |
2076 } | |
2077 break; | |
2078 case 0x0063: // PR_RESPONSE_REQUESTED | |
2079 DEBUG_EMAIL(("Response requested - ")); | |
2080 if (*(int16_t*)list->items[x]->data != 0) { | |
2081 DEBUG_EMAIL(("True\n")); | |
2082 item->response_requested = 1; | |
2083 } else { | |
2084 DEBUG_EMAIL(("False\n")); | |
2085 item->response_requested = 0; | |
2086 } | |
2087 break; | |
2088 case 0x0064: // PR_SENT_REPRESENTING_ADDRTYPE Access method for Sender Address | |
2089 DEBUG_EMAIL(("Sent on behalf of address type - ")); | |
2090 MALLOC_EMAIL(item); | |
2091 LIST_COPY(item->email->sender_access, (char*)); | |
2092 DEBUG_EMAIL(("%s\n", item->email->sender_access)); | |
2093 break; | |
2094 case 0x0065: // PR_SENT_REPRESENTING_EMAIL_ADDRESS Sender Address | |
2095 DEBUG_EMAIL(("Sent on behalf of Address - ")); | |
2096 MALLOC_EMAIL(item); | |
2097 LIST_COPY(item->email->sender_address, (char*)); | |
2098 DEBUG_EMAIL(("%s\n", item->email->sender_address)); | |
2099 break; | |
2100 case 0x0070: // PR_CONVERSATION_TOPIC Processed Subject | |
2101 DEBUG_EMAIL(("Processed Subject (Conversation Topic) - ")); | |
2102 MALLOC_EMAIL(item); | |
2103 LIST_COPY(item->email->proc_subject, (char*)); | |
2104 DEBUG_EMAIL(("%s\n", item->email->proc_subject)); | |
2105 break; | |
2106 case 0x0071: // PR_CONVERSATION_INDEX Date 2 | |
2107 DEBUG_EMAIL(("Conversation Index - ")); | |
2108 MALLOC_EMAIL(item); | |
2109 memcpy(&(item->email->conv_index), list->items[x]->data, sizeof(item->email->conv_index)); | |
2110 DEBUG_EMAIL(("%i\n", item->email->conv_index)); | |
2111 break; | |
2112 case 0x0075: // PR_RECEIVED_BY_ADDRTYPE Recipient Access Method | |
2113 DEBUG_EMAIL(("Received by Address type - ")); | |
2114 MALLOC_EMAIL(item); | |
2115 LIST_COPY(item->email->recip_access, (char*)); | |
2116 DEBUG_EMAIL(("%s\n", item->email->recip_access)); | |
2117 break; | |
2118 case 0x0076: // PR_RECEIVED_BY_EMAIL_ADDRESS Recipient Address | |
2119 DEBUG_EMAIL(("Received by Address - ")); | |
2120 MALLOC_EMAIL(item); | |
2121 LIST_COPY(item->email->recip_address, (char*)); | |
2122 DEBUG_EMAIL(("%s\n", item->email->recip_address)); | |
2123 break; | |
2124 case 0x0077: // PR_RCVD_REPRESENTING_ADDRTYPE Recipient Access Method 2 | |
2125 DEBUG_EMAIL(("Received on behalf of Address type - ")); | |
2126 MALLOC_EMAIL(item); | |
2127 LIST_COPY(item->email->recip2_access, (char*)); | |
2128 DEBUG_EMAIL(("%s\n", item->email->recip2_access)); | |
2129 break; | |
2130 case 0x0078: // PR_RCVD_REPRESENTING_EMAIL_ADDRESS Recipient Address 2 | |
2131 DEBUG_EMAIL(("Received on behalf of Address -")); | |
2132 MALLOC_EMAIL(item); | |
2133 LIST_COPY(item->email->recip2_address, (char*)); | |
2134 DEBUG_EMAIL(("%s\n", item->email->recip2_address)); | |
2135 break; | |
2136 case 0x007D: // PR_TRANSPORT_MESSAGE_HEADERS Internet Header | |
2137 DEBUG_EMAIL(("Internet Header - ")); | |
2138 MALLOC_EMAIL(item); | |
2139 LIST_COPY(item->email->header, (char*)); | |
46 | 2140 DEBUG_EMAIL(("%s\n", item->email->header)); |
43 | 2141 DEBUG_EMAIL(("NOT PRINTED\n")); |
2142 break; | |
2143 case 0x0C17: // PR_REPLY_REQUESTED | |
2144 DEBUG_EMAIL(("Reply Requested - ")); | |
2145 MALLOC_EMAIL(item); | |
2146 if (*(int16_t*)list->items[x]->data != 0) { | |
2147 DEBUG_EMAIL(("True\n")); | |
2148 item->email->reply_requested = 1; | |
2149 } else { | |
2150 DEBUG_EMAIL(("False\n")); | |
2151 item->email->reply_requested = 0; | |
2152 } | |
2153 break; | |
2154 case 0x0C19: // PR_SENDER_ENTRYID Sender Structure 2 | |
2155 DEBUG_EMAIL(("Sender Structure 2 -- NOT HANDLED\n")); | |
2156 break; | |
2157 case 0x0C1A: // PR_SENDER_NAME Name of Sender Structure 2 | |
2158 DEBUG_EMAIL(("Name of Sender Structure 2 -- NOT HANDLED\n")); | |
2159 break; | |
2160 case 0x0C1D: // PR_SENDER_SEARCH_KEY Name of Sender Address 2 | |
2161 DEBUG_EMAIL(("Name of Sender Address 2 (Sender search key) - ")); | |
2162 MALLOC_EMAIL(item); | |
2163 LIST_COPY(item->email->outlook_sender2, (char*)); | |
2164 DEBUG_EMAIL(("%s\n", item->email->outlook_sender2)); | |
2165 break; | |
2166 case 0x0C1E: // PR_SENDER_ADDRTYPE Sender Address 2 access method | |
2167 DEBUG_EMAIL(("Sender Address type - ")); | |
2168 MALLOC_EMAIL(item); | |
2169 LIST_COPY(item->email->sender2_access, (char*)); | |
2170 DEBUG_EMAIL(("%s\n", item->email->sender2_access)); | |
2171 break; | |
2172 case 0x0C1F: // PR_SENDER_EMAIL_ADDRESS Sender Address 2 | |
2173 DEBUG_EMAIL(("Sender Address - ")); | |
2174 MALLOC_EMAIL(item); | |
2175 LIST_COPY(item->email->sender2_address, (char*)); | |
2176 DEBUG_EMAIL(("%s\n", item->email->sender2_address)); | |
2177 break; | |
2178 case 0x0E01: // PR_DELETE_AFTER_SUBMIT | |
2179 // I am not too sure how this works | |
2180 DEBUG_EMAIL(("Delete after submit - ")); | |
2181 MALLOC_EMAIL(item); | |
47 | 2182 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 2183 DEBUG_EMAIL(("True\n")); |
2184 item->email->delete_after_submit = 1; | |
2185 } else { | |
2186 DEBUG_EMAIL(("False\n")); | |
2187 item->email->delete_after_submit = 0; | |
2188 } | |
2189 break; | |
2190 case 0x0E03: // PR_DISPLAY_CC CC Addresses | |
2191 DEBUG_EMAIL(("Display CC Addresses - ")); | |
2192 MALLOC_EMAIL(item); | |
2193 LIST_COPY(item->email->cc_address, (char*)); | |
2194 DEBUG_EMAIL(("%s\n", item->email->cc_address)); | |
2195 break; | |
2196 case 0x0E04: // PR_DISPLAY_TO Address Sent-To | |
2197 DEBUG_EMAIL(("Display Sent-To Address - ")); | |
2198 MALLOC_EMAIL(item); | |
2199 LIST_COPY(item->email->sentto_address, (char*)); | |
2200 DEBUG_EMAIL(("%s\n", item->email->sentto_address)); | |
2201 break; | |
2202 case 0x0E06: // PR_MESSAGE_DELIVERY_TIME Date 3 - Email Arrival Date | |
2203 DEBUG_EMAIL(("Date 3 (Delivery Time) - ")); | |
2204 MALLOC_EMAIL(item); | |
2205 LIST_COPY(item->email->arrival_date, (FILETIME*)); | |
2206 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->arrival_date))); | |
2207 break; | |
2208 case 0x0E07: // PR_MESSAGE_FLAGS Email Flag | |
2209 // 0x01 - Read | |
2210 // 0x02 - Unmodified | |
2211 // 0x04 - Submit | |
2212 // 0x08 - Unsent | |
2213 // 0x10 - Has Attachments | |
2214 // 0x20 - From Me | |
2215 // 0x40 - Associated | |
2216 // 0x80 - Resend | |
2217 // 0x100 - RN Pending | |
2218 // 0x200 - NRN Pending | |
2219 DEBUG_EMAIL(("Message Flags - ")); | |
2220 MALLOC_EMAIL(item); | |
2221 memcpy(&(item->email->flag), list->items[x]->data, sizeof(item->email->flag)); | |
2222 LE32_CPU(item->email->flag); | |
2223 DEBUG_EMAIL(("%i\n", item->email->flag)); | |
2224 break; | |
2225 case 0x0E08: // PR_MESSAGE_SIZE Total size of a message object | |
2226 DEBUG_EMAIL(("Message Size - ")); | |
2227 memcpy(&(item->message_size), list->items[x]->data, sizeof(item->message_size)); | |
2228 LE32_CPU(item->message_size); | |
2229 DEBUG_EMAIL(("%i [%#x]\n", item->message_size, item->message_size)); | |
2230 break; | |
2231 case 0x0E0A: // PR_SENTMAIL_ENTRYID | |
2232 // folder that this message is sent to after submission | |
2233 DEBUG_EMAIL(("Sentmail EntryID - ")); | |
2234 MALLOC_EMAIL(item); | |
2235 LIST_COPY(item->email->sentmail_folder, (pst_entryid*)); | |
2236 LE32_CPU(item->email->sentmail_folder->id); | |
2237 DEBUG_EMAIL(("[id = %#x]\n", item->email->sentmail_folder->id)); | |
2238 break; | |
2239 case 0x0E1F: // PR_RTF_IN_SYNC | |
2240 // True means that the rtf version is same as text body | |
2241 // False means rtf version is more up-to-date than text body | |
2242 // if this value doesn't exist, text body is more up-to-date than rtf and | |
2243 // cannot update to the rtf | |
2244 DEBUG_EMAIL(("Compressed RTF in Sync - ")); | |
2245 MALLOC_EMAIL(item); | |
2246 if (*(int16_t*)list->items[x]->data != 0) { | |
2247 DEBUG_EMAIL(("True\n")); | |
2248 item->email->rtf_in_sync = 1; | |
2249 } else { | |
2250 DEBUG_EMAIL(("False\n")); | |
2251 item->email->rtf_in_sync = 0; | |
2252 } | |
2253 break; | |
2254 case 0x0E20: // PR_ATTACH_SIZE binary Attachment data in record | |
2255 DEBUG_EMAIL(("Attachment Size - ")); | |
2256 NULL_CHECK(attach); | |
2257 MOVE_NEXT(attach); | |
50 | 2258 t = (*(int32_t*)list->items[x]->data); |
2259 LE32_CPU(t); | |
2260 attach->size = (size_t)t; | |
43 | 2261 DEBUG_EMAIL(("%i\n", attach->size)); |
2262 break; | |
2263 case 0x0FF9: // PR_RECORD_KEY Record Header 1 | |
2264 DEBUG_EMAIL(("Record Key 1 - ")); | |
2265 LIST_COPY(item->record_key, (char*)); | |
2266 item->record_key_size = list->items[x]->size; | |
2267 DEBUG_EMAIL_HEXPRINT(item->record_key, item->record_key_size); | |
2268 DEBUG_EMAIL(("\n")); | |
2269 break; | |
2270 case 0x1000: // PR_BODY Plain Text body | |
2271 DEBUG_EMAIL(("Plain Text body - ")); | |
2272 MALLOC_EMAIL(item); | |
2273 LIST_COPY(item->email->body, (char*)); | |
2274 //DEBUG_EMAIL("%s\n", item->email->body); | |
2275 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2276 break; | |
2277 case 0x1006: // PR_RTF_SYNC_BODY_CRC | |
2278 DEBUG_EMAIL(("RTF Sync Body CRC - ")); | |
2279 MALLOC_EMAIL(item); | |
2280 memcpy(&(item->email->rtf_body_crc), list->items[x]->data, sizeof(item->email->rtf_body_crc)); | |
2281 LE32_CPU(item->email->rtf_body_crc); | |
2282 DEBUG_EMAIL(("%#x\n", item->email->rtf_body_crc)); | |
2283 break; | |
2284 case 0x1007: // PR_RTF_SYNC_BODY_COUNT | |
2285 // a count of the *significant* charcters in the rtf body. Doesn't count | |
2286 // whitespace and other ignorable characters | |
2287 DEBUG_EMAIL(("RTF Sync Body character count - ")); | |
2288 MALLOC_EMAIL(item); | |
2289 memcpy(&(item->email->rtf_body_char_count), list->items[x]->data, sizeof(item->email->rtf_body_char_count)); | |
2290 LE32_CPU(item->email->rtf_body_char_count); | |
2291 DEBUG_EMAIL(("%i [%#x]\n", item->email->rtf_body_char_count, item->email->rtf_body_char_count)); | |
2292 break; | |
2293 case 0x1008: // PR_RTF_SYNC_BODY_TAG | |
2294 // the first couple of lines of RTF body so that after modification, then beginning can | |
2295 // once again be found | |
2296 DEBUG_EMAIL(("RTF Sync body tag - ")); | |
2297 MALLOC_EMAIL(item); | |
2298 LIST_COPY(item->email->rtf_body_tag, (char*)); | |
2299 DEBUG_EMAIL(("%s\n", item->email->rtf_body_tag)); | |
2300 break; | |
2301 case 0x1009: // PR_RTF_COMPRESSED | |
2302 // some compression algorithm has been applied to this. At present | |
2303 // it is unknown | |
2304 DEBUG_EMAIL(("RTF Compressed body - ")); | |
2305 MALLOC_EMAIL(item); | |
2306 LIST_COPY_SIZE(item->email->rtf_compressed, (char*), item->email->rtf_compressed_size); | |
2307 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2308 break; | |
2309 case 0x1010: // PR_RTF_SYNC_PREFIX_COUNT | |
2310 // a count of the ignored characters before the first significant character | |
2311 DEBUG_EMAIL(("RTF whitespace prefix count - ")); | |
2312 MALLOC_EMAIL(item); | |
2313 memcpy(&(item->email->rtf_ws_prefix_count), list->items[x]->data, sizeof(item->email->rtf_ws_prefix_count)); | |
2314 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_prefix_count)); | |
2315 break; | |
2316 case 0x1011: // PR_RTF_SYNC_TRAILING_COUNT | |
2317 // a count of the ignored characters after the last significant character | |
2318 DEBUG_EMAIL(("RTF whitespace tailing count - ")); | |
2319 MALLOC_EMAIL(item); | |
2320 memcpy(&(item->email->rtf_ws_trailing_count), list->items[x]->data, sizeof(item->email->rtf_ws_trailing_count)); | |
2321 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_trailing_count)); | |
2322 break; | |
2323 case 0x1013: // HTML body | |
2324 DEBUG_EMAIL(("HTML body - ")); | |
2325 MALLOC_EMAIL(item); | |
2326 LIST_COPY(item->email->htmlbody, (char*)); | |
2327 // DEBUG_EMAIL(("%s\n", item->email->htmlbody)); | |
2328 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2329 break; | |
2330 case 0x1035: // Message ID | |
2331 DEBUG_EMAIL(("Message ID - ")); | |
2332 MALLOC_EMAIL(item); | |
2333 LIST_COPY(item->email->messageid, (char*)); | |
2334 DEBUG_EMAIL(("%s\n", item->email->messageid)); | |
2335 break; | |
2336 case 0x1042: // in-reply-to | |
2337 DEBUG_EMAIL(("In-Reply-To - ")); | |
2338 MALLOC_EMAIL(item); | |
2339 LIST_COPY(item->email->in_reply_to, (char*)); | |
2340 DEBUG_EMAIL(("%s\n", item->email->in_reply_to)); | |
2341 break; | |
2342 case 0x1046: // Return Path | |
2343 DEBUG_EMAIL(("Return Path - ")); | |
2344 MALLOC_EMAIL(item); | |
2345 LIST_COPY(item->email->return_path_address, (char*)); | |
2346 DEBUG_EMAIL(("%s\n", item->email->return_path_address)); | |
2347 break; | |
2348 case 0x3001: // PR_DISPLAY_NAME File As | |
2349 DEBUG_EMAIL(("Display Name - ")); | |
2350 LIST_COPY(item->file_as, (char*)); | |
2351 DEBUG_EMAIL(("%s\n", item->file_as)); | |
2352 break; | |
2353 case 0x3002: // PR_ADDRTYPE | |
2354 DEBUG_EMAIL(("Address Type - ")); | |
2355 MALLOC_CONTACT(item); | |
2356 LIST_COPY(item->contact->address1_transport, (char*)); | |
2357 DEBUG_EMAIL(("|%s|\n", item->contact->address1_transport)); | |
2358 break; | |
2359 case 0x3003: // PR_EMAIL_ADDRESS | |
2360 // Contact's email address | |
2361 DEBUG_EMAIL(("Contact Address - ")); | |
2362 MALLOC_CONTACT(item); | |
2363 LIST_COPY(item->contact->address1, (char*)); | |
2364 DEBUG_EMAIL(("|%s|\n", item->contact->address1)); | |
2365 break; | |
2366 case 0x3004: // PR_COMMENT Comment for item - usually folders | |
2367 DEBUG_EMAIL(("Comment - ")); | |
2368 LIST_COPY(item->comment, (char*)); | |
2369 DEBUG_EMAIL(("%s\n", item->comment)); | |
2370 break; | |
2371 case 0x3007: // PR_CREATION_TIME Date 4 - Creation Date? | |
2372 DEBUG_EMAIL(("Date 4 (Item Creation Date) - ")); | |
2373 LIST_COPY(item->create_date, (FILETIME*)); | |
2374 DEBUG_EMAIL(("%s", fileTimeToAscii(item->create_date))); | |
2375 break; | |
2376 case 0x3008: // PR_LAST_MODIFICATION_TIME Date 5 - Modify Date | |
2377 DEBUG_EMAIL(("Date 5 (Modify Date) - ")); | |
2378 LIST_COPY(item->modify_date, (FILETIME*)); | |
2379 DEBUG_EMAIL(("%s", fileTimeToAscii(item->modify_date))); | |
2380 break; | |
2381 case 0x300B: // PR_SEARCH_KEY Record Header 2 | |
2382 DEBUG_EMAIL(("Record Search 2 -- NOT HANDLED\n")); | |
2383 break; | |
2384 case 0x35DF: // PR_VALID_FOLDER_MASK | |
2385 // States which folders are valid for this message store | |
2386 // FOLDER_IPM_SUBTREE_VALID 0x1 | |
2387 // FOLDER_IPM_INBOX_VALID 0x2 | |
2388 // FOLDER_IPM_OUTBOX_VALID 0x4 | |
2389 // FOLDER_IPM_WASTEBOX_VALID 0x8 | |
2390 // FOLDER_IPM_SENTMAIL_VALID 0x10 | |
2391 // FOLDER_VIEWS_VALID 0x20 | |
2392 // FOLDER_COMMON_VIEWS_VALID 0x40 | |
2393 // FOLDER_FINDER_VALID 0x80 | |
2394 DEBUG_EMAIL(("Valid Folder Mask - ")); | |
2395 MALLOC_MESSAGESTORE(item); | |
2396 memcpy(&(item->message_store->valid_mask), list->items[x]->data, sizeof(int)); | |
2397 LE32_CPU(item->message_store->valid_mask); | |
2398 DEBUG_EMAIL(("%i\n", item->message_store->valid_mask)); | |
2399 break; | |
2400 case 0x35E0: // PR_IPM_SUBTREE_ENTRYID Top of Personal Folder Record | |
2401 DEBUG_EMAIL(("Top of Personal Folder Record - ")); | |
2402 MALLOC_MESSAGESTORE(item); | |
2403 LIST_COPY(item->message_store->top_of_personal_folder, (pst_entryid*)); | |
2404 LE32_CPU(item->message_store->top_of_personal_folder->id); | |
2405 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->top_of_personal_folder->id)); | |
2406 break; | |
2407 case 0x35E3: // PR_IPM_WASTEBASKET_ENTRYID Deleted Items Folder Record | |
2408 DEBUG_EMAIL(("Deleted Items Folder record - ")); | |
2409 MALLOC_MESSAGESTORE(item); | |
2410 LIST_COPY(item->message_store->deleted_items_folder, (pst_entryid*)); | |
2411 LE32_CPU(item->message_store->deleted_items_folder->id); | |
2412 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->deleted_items_folder->id)); | |
2413 break; | |
2414 case 0x35E7: // PR_FINDER_ENTRYID Search Root Record | |
2415 DEBUG_EMAIL(("Search Root record - ")); | |
2416 MALLOC_MESSAGESTORE(item); | |
2417 LIST_COPY(item->message_store->search_root_folder, (pst_entryid*)); | |
2418 LE32_CPU(item->message_store->search_root_folder->id); | |
2419 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->search_root_folder->id)); | |
2420 break; | |
2421 case 0x3602: // PR_CONTENT_COUNT Number of emails stored in a folder | |
2422 DEBUG_EMAIL(("Folder Email Count - ")); | |
2423 MALLOC_FOLDER(item); | |
2424 memcpy(&(item->folder->email_count), list->items[x]->data, sizeof(item->folder->email_count)); | |
2425 LE32_CPU(item->folder->email_count); | |
2426 DEBUG_EMAIL(("%i\n", item->folder->email_count)); | |
2427 break; | |
2428 case 0x3603: // PR_CONTENT_UNREAD Number of unread emails | |
2429 DEBUG_EMAIL(("Unread Email Count - ")); | |
2430 MALLOC_FOLDER(item); | |
2431 memcpy(&(item->folder->unseen_email_count), list->items[x]->data, sizeof(item->folder->unseen_email_count)); | |
2432 LE32_CPU(item->folder->unseen_email_count); | |
2433 DEBUG_EMAIL(("%i\n", item->folder->unseen_email_count)); | |
2434 break; | |
2435 case 0x360A: // PR_SUBFOLDERS Has children | |
2436 DEBUG_EMAIL(("Has Subfolders - ")); | |
2437 MALLOC_FOLDER(item); | |
47 | 2438 if (*(int32_t*)list->items[x]->data != 0) { |
43 | 2439 DEBUG_EMAIL(("True\n")); |
2440 item->folder->subfolder = 1; | |
2441 } else { | |
2442 DEBUG_EMAIL(("False\n")); | |
2443 item->folder->subfolder = 0; | |
2444 } | |
2445 break; | |
2446 case 0x3613: // PR_CONTAINER_CLASS IPF.x | |
2447 DEBUG_EMAIL(("IPF.x - ")); | |
2448 LIST_COPY(item->ascii_type, (char*)); | |
2449 if (strncmp("IPF.Note", item->ascii_type, 8) == 0) | |
2450 item->type = PST_TYPE_NOTE; | |
2451 else if (strncmp("IPF.Contact", item->ascii_type, 11) == 0) | |
2452 item->type = PST_TYPE_CONTACT; | |
2453 else if (strncmp("IPF.Journal", item->ascii_type, 11) == 0) | |
2454 item->type = PST_TYPE_JOURNAL; | |
2455 else if (strncmp("IPF.Appointment", item->ascii_type, 15) == 0) | |
2456 item->type = PST_TYPE_APPOINTMENT; | |
2457 else if (strncmp("IPF.StickyNote", item->ascii_type, 14) == 0) | |
2458 item->type = PST_TYPE_STICKYNOTE; | |
2459 else if (strncmp("IPF.Task", item->ascii_type, 8) == 0) | |
2460 item->type = PST_TYPE_TASK; | |
2461 else | |
2462 item->type = PST_TYPE_OTHER; | |
2463 | |
2464 DEBUG_EMAIL(("%s [%i]\n", item->ascii_type, item->type)); | |
2465 break; | |
2466 case 0x3617: // PR_ASSOC_CONTENT_COUNT | |
2467 // associated content are items that are attached to this folder | |
2468 // but are hidden from users | |
2469 DEBUG_EMAIL(("Associate Content count - ")); | |
2470 MALLOC_FOLDER(item); | |
2471 memcpy(&(item->folder->assoc_count), list->items[x]->data, sizeof(item->folder->assoc_count)); | |
2472 LE32_CPU(item->folder->assoc_count); | |
2473 DEBUG_EMAIL(("%i [%#x]\n", item->folder->assoc_count, item->folder->assoc_count)); | |
2474 break; | |
2475 case 0x3701: // PR_ATTACH_DATA_OBJ binary data of attachment | |
2476 DEBUG_EMAIL(("Binary Data [Size %i] - ", list->items[x]->size)); | |
2477 NULL_CHECK(attach); | |
2478 MOVE_NEXT(attach); | |
2479 if (!list->items[x]->data) { //special case | |
2480 attach->id2_val = list->items[x]->type; | |
46 | 2481 DEBUG_EMAIL(("Seen a Reference. The data hasn't been loaded yet. [%#llx][%#x]\n", |
43 | 2482 attach->id2_val, list->items[x]->type)); |
2483 } else { | |
2484 LIST_COPY(attach->data, (char*)); | |
2485 attach->size = list->items[x]->size; | |
2486 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2487 } | |
2488 break; | |
2489 case 0x3704: // PR_ATTACH_FILENAME Attachment filename (8.3) | |
2490 DEBUG_EMAIL(("Attachment Filename - ")); | |
2491 NULL_CHECK(attach); | |
2492 MOVE_NEXT(attach); | |
2493 LIST_COPY(attach->filename1, (char*)); | |
2494 DEBUG_EMAIL(("%s\n", attach->filename1)); | |
2495 break; | |
2496 case 0x3705: // PR_ATTACH_METHOD | |
2497 // 0 - No Attachment | |
2498 // 1 - Attach by Value | |
2499 // 2 - Attach by reference | |
2500 // 3 - Attach by ref resolve | |
2501 // 4 - Attach by ref only | |
2502 // 5 - Embedded Message | |
2503 // 6 - OLE | |
2504 DEBUG_EMAIL(("Attachment method - ")); | |
2505 NULL_CHECK(attach); | |
2506 MOVE_NEXT(attach); | |
2507 memcpy(&(attach->method), list->items[x]->data, sizeof(attach->method)); | |
2508 LE32_CPU(attach->method); | |
2509 t = attach->method; | |
2510 DEBUG_EMAIL(("%s [%i]\n", (t==0?"No Attachment": | |
2511 (t==1?"Attach By Value": | |
2512 (t==2?"Attach By Reference": | |
2513 (t==3?"Attach by Ref. Resolve": | |
2514 (t==4?"Attach by Ref. Only": | |
2515 (t==5?"Embedded Message":"OLE")))))),t)); | |
2516 break; | |
2517 case 0x3707: // PR_ATTACH_LONG_FILENAME Attachment filename (long?) | |
2518 DEBUG_EMAIL(("Attachment Filename long - ")); | |
2519 NULL_CHECK(attach); | |
2520 MOVE_NEXT(attach); | |
2521 LIST_COPY(attach->filename2, (char*)); | |
2522 DEBUG_EMAIL(("%s\n", attach->filename2)); | |
2523 break; | |
2524 case 0x370B: // PR_RENDERING_POSITION | |
2525 // position in characters that the attachment appears in the plain text body | |
2526 DEBUG_EMAIL(("Attachment Position - ")); | |
2527 NULL_CHECK(attach); | |
2528 MOVE_NEXT(attach); | |
2529 memcpy(&(attach->position), list->items[x]->data, sizeof(attach->position)); | |
2530 LE32_CPU(attach->position); | |
2531 DEBUG_EMAIL(("%i [%#x]\n", attach->position)); | |
2532 break; | |
2533 case 0x370E: // PR_ATTACH_MIME_TAG Mime type of encoding | |
2534 DEBUG_EMAIL(("Attachment mime encoding - ")); | |
2535 NULL_CHECK(attach); | |
2536 MOVE_NEXT(attach); | |
2537 LIST_COPY(attach->mimetype, (char*)); | |
2538 DEBUG_EMAIL(("%s\n", attach->mimetype)); | |
2539 break; | |
2540 case 0x3710: // PR_ATTACH_MIME_SEQUENCE | |
2541 // sequence number for mime parts. Includes body | |
2542 DEBUG_EMAIL(("Attachment Mime Sequence - ")); | |
2543 NULL_CHECK(attach); | |
2544 MOVE_NEXT(attach); | |
2545 memcpy(&(attach->sequence), list->items[x]->data, sizeof(attach->sequence)); | |
2546 LE32_CPU(attach->sequence); | |
2547 DEBUG_EMAIL(("%i\n", attach->sequence)); | |
2548 break; | |
2549 case 0x3A00: // PR_ACCOUNT | |
2550 DEBUG_EMAIL(("Contact's Account name - ")); | |
2551 MALLOC_CONTACT(item); | |
2552 LIST_COPY(item->contact->account_name, (char*)); | |
2553 DEBUG_EMAIL(("%s\n", item->contact->account_name)); | |
2554 break; | |
2555 case 0x3A01: // PR_ALTERNATE_RECIPIENT | |
2556 DEBUG_EMAIL(("Contact Alternate Recipient - NOT PROCESSED\n")); | |
2557 break; | |
2558 case 0x3A02: // PR_CALLBACK_TELEPHONE_NUMBER | |
2559 DEBUG_EMAIL(("Callback telephone number - ")); | |
2560 MALLOC_CONTACT(item); | |
2561 LIST_COPY(item->contact->callback_phone, (char*)); | |
2562 DEBUG_EMAIL(("%s\n", item->contact->callback_phone)); | |
2563 break; | |
2564 case 0x3A03: // PR_CONVERSION_PROHIBITED | |
2565 DEBUG_EMAIL(("Message Conversion Prohibited - ")); | |
2566 MALLOC_EMAIL(item); | |
2567 if (*(int16_t*)list->items[x]->data != 0) { | |
2568 DEBUG_EMAIL(("True\n")); | |
2569 item->email->conversion_prohib = 1; | |
2570 } else { | |
2571 DEBUG_EMAIL(("False\n")); | |
2572 item->email->conversion_prohib = 0; | |
2573 } | |
2574 break; | |
2575 case 0x3A05: // PR_GENERATION suffix | |
2576 DEBUG_EMAIL(("Contacts Suffix - ")); | |
2577 MALLOC_CONTACT(item); | |
2578 LIST_COPY(item->contact->suffix, (char*)); | |
2579 DEBUG_EMAIL(("%s\n", item->contact->suffix)); | |
2580 break; | |
2581 case 0x3A06: // PR_GIVEN_NAME Contact's first name | |
2582 DEBUG_EMAIL(("Contacts First Name - ")); | |
2583 MALLOC_CONTACT(item); | |
2584 LIST_COPY(item->contact->first_name, (char*)); | |
2585 DEBUG_EMAIL(("%s\n", item->contact->first_name)); | |
2586 break; | |
2587 case 0x3A07: // PR_GOVERNMENT_ID_NUMBER | |
2588 DEBUG_EMAIL(("Contacts Government ID Number - ")); | |
2589 MALLOC_CONTACT(item); | |
2590 LIST_COPY(item->contact->gov_id, (char*)); | |
2591 DEBUG_EMAIL(("%s\n", item->contact->gov_id)); | |
2592 break; | |
2593 case 0x3A08: // PR_BUSINESS_TELEPHONE_NUMBER | |
2594 DEBUG_EMAIL(("Business Telephone Number - ")); | |
2595 MALLOC_CONTACT(item); | |
2596 LIST_COPY(item->contact->business_phone, (char*)); | |
2597 DEBUG_EMAIL(("%s\n", item->contact->business_phone)); | |
2598 break; | |
2599 case 0x3A09: // PR_HOME_TELEPHONE_NUMBER | |
2600 DEBUG_EMAIL(("Home Telephone Number - ")); | |
2601 MALLOC_CONTACT(item); | |
2602 LIST_COPY(item->contact->home_phone, (char*)); | |
2603 DEBUG_EMAIL(("%s\n", item->contact->home_phone)); | |
2604 break; | |
2605 case 0x3A0A: // PR_INITIALS Contact's Initials | |
2606 DEBUG_EMAIL(("Contacts Initials - ")); | |
2607 MALLOC_CONTACT(item); | |
2608 LIST_COPY(item->contact->initials, (char*)); | |
2609 DEBUG_EMAIL(("%s\n", item->contact->initials)); | |
2610 break; | |
2611 case 0x3A0B: // PR_KEYWORD | |
2612 DEBUG_EMAIL(("Keyword - ")); | |
2613 MALLOC_CONTACT(item); | |
2614 LIST_COPY(item->contact->keyword, (char*)); | |
2615 DEBUG_EMAIL(("%s\n", item->contact->keyword)); | |
2616 break; | |
2617 case 0x3A0C: // PR_LANGUAGE | |
2618 DEBUG_EMAIL(("Contact's Language - ")); | |
2619 MALLOC_CONTACT(item); | |
2620 LIST_COPY(item->contact->language, (char*)); | |
2621 DEBUG_EMAIL(("%s\n", item->contact->language)); | |
2622 break; | |
2623 case 0x3A0D: // PR_LOCATION | |
2624 DEBUG_EMAIL(("Contact's Location - ")); | |
2625 MALLOC_CONTACT(item); | |
2626 LIST_COPY(item->contact->location, (char*)); | |
2627 DEBUG_EMAIL(("%s\n", item->contact->location)); | |
2628 break; | |
2629 case 0x3A0E: // PR_MAIL_PERMISSION - Can the recipient receive and send email | |
2630 DEBUG_EMAIL(("Mail Permission - ")); | |
2631 MALLOC_CONTACT(item); | |
2632 if (*(int16_t*)list->items[x]->data != 0) { | |
2633 DEBUG_EMAIL(("True\n")); | |
2634 item->contact->mail_permission = 1; | |
2635 } else { | |
2636 DEBUG_EMAIL(("False\n")); | |
2637 item->contact->mail_permission = 0; | |
2638 } | |
2639 break; | |
2640 case 0x3A0F: // PR_MHS_COMMON_NAME | |
2641 DEBUG_EMAIL(("MHS Common Name - ")); | |
2642 MALLOC_EMAIL(item); | |
2643 LIST_COPY(item->email->common_name, (char*)); | |
2644 DEBUG_EMAIL(("%s\n", item->email->common_name)); | |
2645 break; | |
2646 case 0x3A10: // PR_ORGANIZATIONAL_ID_NUMBER | |
2647 DEBUG_EMAIL(("Organizational ID # - ")); | |
2648 MALLOC_CONTACT(item); | |
2649 LIST_COPY(item->contact->org_id, (char*)); | |
2650 DEBUG_EMAIL(("%s\n", item->contact->org_id)); | |
2651 break; | |
2652 case 0x3A11: // PR_SURNAME Contact's Surname | |
2653 DEBUG_EMAIL(("Contacts Surname - ")); | |
2654 MALLOC_CONTACT(item); | |
2655 LIST_COPY(item->contact->surname, (char*)); | |
2656 DEBUG_EMAIL(("%s\n", item->contact->surname)); | |
2657 break; | |
2658 case 0x3A12: // PR_ORIGINAL_ENTRY_ID | |
2659 DEBUG_EMAIL(("Original Entry ID - NOT PROCESSED\n")); | |
2660 break; | |
2661 case 0x3A13: // PR_ORIGINAL_DISPLAY_NAME | |
2662 DEBUG_EMAIL(("Original Display Name - NOT PROCESSED\n")); | |
2663 break; | |
2664 case 0x3A14: // PR_ORIGINAL_SEARCH_KEY | |
2665 DEBUG_EMAIL(("Original Search Key - NOT PROCESSED\n")); | |
2666 break; | |
2667 case 0x3A15: // PR_POSTAL_ADDRESS | |
2668 DEBUG_EMAIL(("Default Postal Address - ")); | |
2669 MALLOC_CONTACT(item); | |
2670 LIST_COPY(item->contact->def_postal_address, (char*)); | |
2671 DEBUG_EMAIL(("%s\n", item->contact->def_postal_address)); | |
2672 break; | |
2673 case 0x3A16: // PR_COMPANY_NAME | |
2674 DEBUG_EMAIL(("Company Name - ")); | |
2675 MALLOC_CONTACT(item); | |
2676 LIST_COPY(item->contact->company_name, (char*)); | |
2677 DEBUG_EMAIL(("%s\n", item->contact->company_name)); | |
2678 break; | |
2679 case 0x3A17: // PR_TITLE - Job Title | |
2680 DEBUG_EMAIL(("Job Title - ")); | |
2681 MALLOC_CONTACT(item); | |
2682 LIST_COPY(item->contact->job_title, (char*)); | |
2683 DEBUG_EMAIL(("%s\n", item->contact->job_title)); | |
2684 break; | |
2685 case 0x3A18: // PR_DEPARTMENT_NAME | |
2686 DEBUG_EMAIL(("Department Name - ")); | |
2687 MALLOC_CONTACT(item); | |
2688 LIST_COPY(item->contact->department, (char*)); | |
2689 DEBUG_EMAIL(("%s\n", item->contact->department)); | |
2690 break; | |
2691 case 0x3A19: // PR_OFFICE_LOCATION | |
2692 DEBUG_EMAIL(("Office Location - ")); | |
2693 MALLOC_CONTACT(item); | |
2694 LIST_COPY(item->contact->office_loc, (char*)); | |
2695 DEBUG_EMAIL(("%s\n", item->contact->office_loc)); | |
2696 break; | |
2697 case 0x3A1A: // PR_PRIMARY_TELEPHONE_NUMBER | |
2698 DEBUG_EMAIL(("Primary Telephone - ")); | |
2699 MALLOC_CONTACT(item); | |
2700 LIST_COPY(item->contact->primary_phone, (char*)); | |
2701 DEBUG_EMAIL(("%s\n", item->contact->primary_phone)); | |
2702 break; | |
2703 case 0x3A1B: // PR_BUSINESS2_TELEPHONE_NUMBER | |
2704 DEBUG_EMAIL(("Business Phone Number 2 - ")); | |
2705 MALLOC_CONTACT(item); | |
2706 LIST_COPY(item->contact->business_phone2, (char*)); | |
2707 DEBUG_EMAIL(("%s\n", item->contact->business_phone2)); | |
2708 break; | |
2709 case 0x3A1C: // PR_MOBILE_TELEPHONE_NUMBER | |
2710 DEBUG_EMAIL(("Mobile Phone Number - ")); | |
2711 MALLOC_CONTACT(item); | |
2712 LIST_COPY(item->contact->mobile_phone, (char*)); | |
2713 DEBUG_EMAIL(("%s\n", item->contact->mobile_phone)); | |
2714 break; | |
2715 case 0x3A1D: // PR_RADIO_TELEPHONE_NUMBER | |
2716 DEBUG_EMAIL(("Radio Phone Number - ")); | |
2717 MALLOC_CONTACT(item); | |
2718 LIST_COPY(item->contact->radio_phone, (char*)); | |
2719 DEBUG_EMAIL(("%s\n", item->contact->radio_phone)); | |
2720 break; | |
2721 case 0x3A1E: // PR_CAR_TELEPHONE_NUMBER | |
2722 DEBUG_EMAIL(("Car Phone Number - ")); | |
2723 MALLOC_CONTACT(item); | |
2724 LIST_COPY(item->contact->car_phone, (char*)); | |
2725 DEBUG_EMAIL(("%s\n", item->contact->car_phone)); | |
2726 break; | |
2727 case 0x3A1F: // PR_OTHER_TELEPHONE_NUMBER | |
2728 DEBUG_EMAIL(("Other Phone Number - ")); | |
2729 MALLOC_CONTACT(item); | |
2730 LIST_COPY(item->contact->other_phone, (char*)); | |
2731 DEBUG_EMAIL(("%s\n", item->contact->other_phone)); | |
2732 break; | |
2733 case 0x3A20: // PR_TRANSMITTABLE_DISPLAY_NAME | |
2734 DEBUG_EMAIL(("Transmittable Display Name - ")); | |
2735 MALLOC_CONTACT(item); | |
2736 LIST_COPY(item->contact->transmittable_display_name, (char*)); | |
2737 DEBUG_EMAIL(("%s\n", item->contact->transmittable_display_name)); | |
2738 break; | |
2739 case 0x3A21: // PR_PAGER_TELEPHONE_NUMBER | |
2740 DEBUG_EMAIL(("Pager Phone Number - ")); | |
2741 MALLOC_CONTACT(item); | |
2742 LIST_COPY(item->contact->pager_phone, (char*)); | |
2743 DEBUG_EMAIL(("%s\n", item->contact->pager_phone)); | |
2744 break; | |
2745 case 0x3A22: // PR_USER_CERTIFICATE | |
2746 DEBUG_EMAIL(("User Certificate - NOT PROCESSED")); | |
2747 break; | |
2748 case 0x3A23: // PR_PRIMARY_FAX_NUMBER | |
2749 DEBUG_EMAIL(("Primary Fax Number - ")); | |
2750 MALLOC_CONTACT(item); | |
2751 LIST_COPY(item->contact->primary_fax, (char*)); | |
2752 DEBUG_EMAIL(("%s\n", item->contact->primary_fax)); | |
2753 break; | |
2754 case 0x3A24: // PR_BUSINESS_FAX_NUMBER | |
2755 DEBUG_EMAIL(("Business Fax Number - ")); | |
2756 MALLOC_CONTACT(item); | |
2757 LIST_COPY(item->contact->business_fax, (char*)); | |
2758 DEBUG_EMAIL(("%s\n", item->contact->business_fax)); | |
2759 break; | |
2760 case 0x3A25: // PR_HOME_FAX_NUMBER | |
2761 DEBUG_EMAIL(("Home Fax Number - ")); | |
2762 MALLOC_CONTACT(item); | |
2763 LIST_COPY(item->contact->home_fax, (char*)); | |
2764 DEBUG_EMAIL(("%s\n", item->contact->home_fax)); | |
2765 break; | |
2766 case 0x3A26: // PR_BUSINESS_ADDRESS_COUNTRY | |
2767 DEBUG_EMAIL(("Business Address Country - ")); | |
2768 MALLOC_CONTACT(item); | |
2769 LIST_COPY(item->contact->business_country, (char*)); | |
2770 DEBUG_EMAIL(("%s\n", item->contact->business_country)); | |
2771 break; | |
2772 case 0x3A27: // PR_BUSINESS_ADDRESS_CITY | |
2773 DEBUG_EMAIL(("Business Address City - ")); | |
2774 MALLOC_CONTACT(item); | |
2775 LIST_COPY(item->contact->business_city, (char*)); | |
2776 DEBUG_EMAIL(("%s\n", item->contact->business_city)); | |
2777 break; | |
2778 case 0x3A28: // PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE | |
2779 DEBUG_EMAIL(("Business Address State - ")); | |
2780 MALLOC_CONTACT(item); | |
2781 LIST_COPY(item->contact->business_state, (char*)); | |
2782 DEBUG_EMAIL(("%s\n", item->contact->business_state)); | |
2783 break; | |
2784 case 0x3A29: // PR_BUSINESS_ADDRESS_STREET | |
2785 DEBUG_EMAIL(("Business Address Street - ")); | |
2786 MALLOC_CONTACT(item); | |
2787 LIST_COPY(item->contact->business_street, (char*)); | |
2788 DEBUG_EMAIL(("%s\n", item->contact->business_street)); | |
2789 break; | |
2790 case 0x3A2A: // PR_BUSINESS_POSTAL_CODE | |
2791 DEBUG_EMAIL(("Business Postal Code - ")); | |
2792 MALLOC_CONTACT(item); | |
2793 LIST_COPY(item->contact->business_postal_code, (char*)); | |
2794 DEBUG_EMAIL(("%s\n", item->contact->business_postal_code)); | |
2795 break; | |
2796 case 0x3A2B: // PR_BUSINESS_PO_BOX | |
2797 DEBUG_EMAIL(("Business PO Box - ")); | |
2798 MALLOC_CONTACT(item); | |
2799 LIST_COPY(item->contact->business_po_box, (char*)); | |
2800 DEBUG_EMAIL(("%s\n", item->contact->business_po_box)); | |
2801 break; | |
2802 case 0x3A2C: // PR_TELEX_NUMBER | |
2803 DEBUG_EMAIL(("Telex Number - ")); | |
2804 MALLOC_CONTACT(item); | |
2805 LIST_COPY(item->contact->telex, (char*)); | |
2806 DEBUG_EMAIL(("%s\n", item->contact->telex)); | |
2807 break; | |
2808 case 0x3A2D: // PR_ISDN_NUMBER | |
2809 DEBUG_EMAIL(("ISDN Number - ")); | |
2810 MALLOC_CONTACT(item); | |
2811 LIST_COPY(item->contact->isdn_phone, (char*)); | |
2812 DEBUG_EMAIL(("%s\n", item->contact->isdn_phone)); | |
2813 break; | |
2814 case 0x3A2E: // PR_ASSISTANT_TELEPHONE_NUMBER | |
2815 DEBUG_EMAIL(("Assistant Phone Number - ")); | |
2816 MALLOC_CONTACT(item); | |
2817 LIST_COPY(item->contact->assistant_phone, (char*)); | |
2818 DEBUG_EMAIL(("%s\n", item->contact->assistant_phone)); | |
2819 break; | |
2820 case 0x3A2F: // PR_HOME2_TELEPHONE_NUMBER | |
2821 DEBUG_EMAIL(("Home Phone 2 - ")); | |
2822 MALLOC_CONTACT(item); | |
2823 LIST_COPY(item->contact->home_phone2, (char*)); | |
2824 DEBUG_EMAIL(("%s\n", item->contact->home_phone2)); | |
2825 break; | |
2826 case 0x3A30: // PR_ASSISTANT | |
2827 DEBUG_EMAIL(("Assistant's Name - ")); | |
2828 MALLOC_CONTACT(item); | |
2829 LIST_COPY(item->contact->assistant_name, (char*)); | |
2830 DEBUG_EMAIL(("%s\n", item->contact->assistant_name)); | |
2831 break; | |
2832 case 0x3A40: // PR_SEND_RICH_INFO | |
2833 DEBUG_EMAIL(("Can receive Rich Text - ")); | |
2834 MALLOC_CONTACT(item); | |
47 | 2835 if (*(int16_t*)list->items[x]->data != 0) { |
43 | 2836 DEBUG_EMAIL(("True\n")); |
2837 item->contact->rich_text = 1; | |
2838 } else { | |
2839 DEBUG_EMAIL(("False\n")); | |
2840 item->contact->rich_text = 0; | |
2841 } | |
2842 break; | |
2843 case 0x3A41: // PR_WEDDING_ANNIVERSARY | |
2844 DEBUG_EMAIL(("Wedding Anniversary - ")); | |
2845 MALLOC_CONTACT(item); | |
2846 LIST_COPY(item->contact->wedding_anniversary, (FILETIME*)); | |
2847 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->wedding_anniversary))); | |
2848 break; | |
2849 case 0x3A42: // PR_BIRTHDAY | |
2850 DEBUG_EMAIL(("Birthday - ")); | |
2851 MALLOC_CONTACT(item); | |
2852 LIST_COPY(item->contact->birthday, (FILETIME*)); | |
2853 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->birthday))); | |
2854 break; | |
2855 case 0x3A43: // PR_HOBBIES | |
2856 DEBUG_EMAIL(("Hobbies - ")); | |
2857 MALLOC_CONTACT(item); | |
2858 LIST_COPY(item->contact->hobbies, (char*)); | |
2859 DEBUG_EMAIL(("%s\n", item->contact->hobbies)); | |
2860 break; | |
2861 case 0x3A44: // PR_MIDDLE_NAME | |
2862 DEBUG_EMAIL(("Middle Name - ")); | |
2863 MALLOC_CONTACT(item); | |
2864 LIST_COPY(item->contact->middle_name, (char*)); | |
2865 DEBUG_EMAIL(("%s\n", item->contact->middle_name)); | |
2866 break; | |
2867 case 0x3A45: // PR_DISPLAY_NAME_PREFIX | |
2868 DEBUG_EMAIL(("Display Name Prefix (Title) - ")); | |
2869 MALLOC_CONTACT(item); | |
2870 LIST_COPY(item->contact->display_name_prefix, (char*)); | |
2871 DEBUG_EMAIL(("%s\n", item->contact->display_name_prefix)); | |
2872 break; | |
2873 case 0x3A46: // PR_PROFESSION | |
2874 DEBUG_EMAIL(("Profession - ")); | |
2875 MALLOC_CONTACT(item); | |
2876 LIST_COPY(item->contact->profession, (char*)); | |
2877 DEBUG_EMAIL(("%s\n", item->contact->profession)); | |
2878 break; | |
2879 case 0x3A47: // PR_PREFERRED_BY_NAME | |
2880 DEBUG_EMAIL(("Preferred By Name - ")); | |
2881 MALLOC_CONTACT(item); | |
2882 LIST_COPY(item->contact->pref_name, (char*)); | |
2883 DEBUG_EMAIL(("%s\n", item->contact->pref_name)); | |
2884 break; | |
2885 case 0x3A48: // PR_SPOUSE_NAME | |
2886 DEBUG_EMAIL(("Spouse's Name - ")); | |
2887 MALLOC_CONTACT(item); | |
2888 LIST_COPY(item->contact->spouse_name, (char*)); | |
2889 DEBUG_EMAIL(("%s\n", item->contact->spouse_name)); | |
2890 break; | |
2891 case 0x3A49: // PR_COMPUTER_NETWORK_NAME | |
2892 DEBUG_EMAIL(("Computer Network Name - ")); | |
2893 MALLOC_CONTACT(item); | |
2894 LIST_COPY(item->contact->computer_name, (char*)); | |
2895 DEBUG_EMAIL(("%s\n", item->contact->computer_name)); | |
2896 break; | |
2897 case 0x3A4A: // PR_CUSTOMER_ID | |
2898 DEBUG_EMAIL(("Customer ID - ")); | |
2899 MALLOC_CONTACT(item); | |
2900 LIST_COPY(item->contact->customer_id, (char*)); | |
2901 DEBUG_EMAIL(("%s\n", item->contact->customer_id)); | |
2902 break; | |
2903 case 0x3A4B: // PR_TTYTDD_PHONE_NUMBER | |
2904 DEBUG_EMAIL(("TTY/TDD Phone - ")); | |
2905 MALLOC_CONTACT(item); | |
2906 LIST_COPY(item->contact->ttytdd_phone, (char*)); | |
2907 DEBUG_EMAIL(("%s\n", item->contact->ttytdd_phone)); | |
2908 break; | |
2909 case 0x3A4C: // PR_FTP_SITE | |
2910 DEBUG_EMAIL(("Ftp Site - ")); | |
2911 MALLOC_CONTACT(item); | |
2912 LIST_COPY(item->contact->ftp_site, (char*)); | |
2913 DEBUG_EMAIL(("%s\n", item->contact->ftp_site)); | |
2914 break; | |
2915 case 0x3A4D: // PR_GENDER | |
2916 DEBUG_EMAIL(("Gender - ")); | |
2917 MALLOC_CONTACT(item); | |
2918 memcpy(&item->contact->gender, list->items[x]->data, sizeof(int16_t)); | |
2919 LE16_CPU(item->contact->gender); | |
2920 switch(item->contact->gender) { | |
2921 case 0: | |
2922 DEBUG_EMAIL(("Unspecified\n")); | |
2923 break; | |
2924 case 1: | |
2925 DEBUG_EMAIL(("Female\n")); | |
2926 break; | |
2927 case 2: | |
2928 DEBUG_EMAIL(("Male\n")); | |
2929 break; | |
2930 default: | |
2931 DEBUG_EMAIL(("Error processing\n")); | |
2932 } | |
2933 break; | |
2934 case 0x3A4E: // PR_MANAGER_NAME | |
2935 DEBUG_EMAIL(("Manager's Name - ")); | |
2936 MALLOC_CONTACT(item); | |
2937 LIST_COPY(item->contact->manager_name, (char*)); | |
2938 DEBUG_EMAIL(("%s\n", item->contact->manager_name)); | |
2939 break; | |
2940 case 0x3A4F: // PR_NICKNAME | |
2941 DEBUG_EMAIL(("Nickname - ")); | |
2942 MALLOC_CONTACT(item); | |
2943 LIST_COPY(item->contact->nickname, (char*)); | |
2944 DEBUG_EMAIL(("%s\n", item->contact->nickname)); | |
2945 break; | |
2946 case 0x3A50: // PR_PERSONAL_HOME_PAGE | |
2947 DEBUG_EMAIL(("Personal Home Page - ")); | |
2948 MALLOC_CONTACT(item); | |
2949 LIST_COPY(item->contact->personal_homepage, (char*)); | |
2950 DEBUG_EMAIL(("%s\n", item->contact->personal_homepage)); | |
2951 break; | |
2952 case 0x3A51: // PR_BUSINESS_HOME_PAGE | |
2953 DEBUG_EMAIL(("Business Home Page - ")); | |
2954 MALLOC_CONTACT(item); | |
2955 LIST_COPY(item->contact->business_homepage, (char*)); | |
2956 DEBUG_EMAIL(("%s\n", item->contact->business_homepage)); | |
2957 break; | |
2958 case 0x3A57: // PR_COMPANY_MAIN_PHONE_NUMBER | |
2959 DEBUG_EMAIL(("Company Main Phone - ")); | |
2960 MALLOC_CONTACT(item); | |
2961 LIST_COPY(item->contact->company_main_phone, (char*)); | |
2962 DEBUG_EMAIL(("%s\n", item->contact->company_main_phone)); | |
2963 break; | |
2964 case 0x3A58: // PR_CHILDRENS_NAMES | |
2965 DEBUG_EMAIL(("Children's Names - NOT PROCESSED\n")); | |
2966 break; | |
2967 case 0x3A59: // PR_HOME_ADDRESS_CITY | |
2968 DEBUG_EMAIL(("Home Address City - ")); | |
2969 MALLOC_CONTACT(item); | |
2970 LIST_COPY(item->contact->home_city, (char*)); | |
2971 DEBUG_EMAIL(("%s\n", item->contact->home_city)); | |
2972 break; | |
2973 case 0x3A5A: // PR_HOME_ADDRESS_COUNTRY | |
2974 DEBUG_EMAIL(("Home Address Country - ")); | |
2975 MALLOC_CONTACT(item); | |
2976 LIST_COPY(item->contact->home_country, (char*)); | |
2977 DEBUG_EMAIL(("%s\n", item->contact->home_country)); | |
2978 break; | |
2979 case 0x3A5B: // PR_HOME_ADDRESS_POSTAL_CODE | |
2980 DEBUG_EMAIL(("Home Address Postal Code - ")); | |
2981 MALLOC_CONTACT(item); | |
2982 LIST_COPY(item->contact->home_postal_code, (char*)); | |
2983 DEBUG_EMAIL(("%s\n", item->contact->home_postal_code)); | |
2984 break; | |
2985 case 0x3A5C: // PR_HOME_ADDRESS_STATE_OR_PROVINCE | |
2986 DEBUG_EMAIL(("Home Address State or Province - ")); | |
2987 MALLOC_CONTACT(item); | |
2988 LIST_COPY(item->contact->home_state, (char*)); | |
2989 DEBUG_EMAIL(("%s\n", item->contact->home_state)); | |
2990 break; | |
2991 case 0x3A5D: // PR_HOME_ADDRESS_STREET | |
2992 DEBUG_EMAIL(("Home Address Street - ")); | |
2993 MALLOC_CONTACT(item); | |
2994 LIST_COPY(item->contact->home_street, (char*)); | |
2995 DEBUG_EMAIL(("%s\n", item->contact->home_street)); | |
2996 break; | |
2997 case 0x3A5E: // PR_HOME_ADDRESS_POST_OFFICE_BOX | |
2998 DEBUG_EMAIL(("Home Address Post Office Box - ")); | |
2999 MALLOC_CONTACT(item); | |
3000 LIST_COPY(item->contact->home_po_box, (char*)); | |
3001 DEBUG_EMAIL(("%s\n", item->contact->home_po_box)); | |
3002 break; | |
3003 case 0x3A5F: // PR_OTHER_ADDRESS_CITY | |
3004 DEBUG_EMAIL(("Other Address City - ")); | |
3005 MALLOC_CONTACT(item); | |
3006 LIST_COPY(item->contact->other_city, (char*)); | |
3007 DEBUG_EMAIL(("%s\n", item->contact->other_city)); | |
3008 break; | |
3009 case 0x3A60: // PR_OTHER_ADDRESS_COUNTRY | |
3010 DEBUG_EMAIL(("Other Address Country - ")); | |
3011 MALLOC_CONTACT(item); | |
3012 LIST_COPY(item->contact->other_country, (char*)); | |
3013 DEBUG_EMAIL(("%s\n", item->contact->other_country)); | |
3014 break; | |
3015 case 0x3A61: // PR_OTHER_ADDRESS_POSTAL_CODE | |
3016 DEBUG_EMAIL(("Other Address Postal Code - ")); | |
3017 MALLOC_CONTACT(item); | |
3018 LIST_COPY(item->contact->other_postal_code, (char*)); | |
3019 DEBUG_EMAIL(("%s\n", item->contact->other_postal_code)); | |
3020 break; | |
3021 case 0x3A62: // PR_OTHER_ADDRESS_STATE_OR_PROVINCE | |
3022 DEBUG_EMAIL(("Other Address State - ")); | |
3023 MALLOC_CONTACT(item); | |
3024 LIST_COPY(item->contact->other_state, (char*)); | |
3025 DEBUG_EMAIL(("%s\n", item->contact->other_state)); | |
3026 break; | |
3027 case 0x3A63: // PR_OTHER_ADDRESS_STREET | |
3028 DEBUG_EMAIL(("Other Address Street - ")); | |
3029 MALLOC_CONTACT(item); | |
3030 LIST_COPY(item->contact->other_street, (char*)); | |
3031 DEBUG_EMAIL(("%s\n", item->contact->other_street)); | |
3032 break; | |
3033 case 0x3A64: // PR_OTHER_ADDRESS_POST_OFFICE_BOX | |
3034 DEBUG_EMAIL(("Other Address Post Office box - ")); | |
3035 MALLOC_CONTACT(item); | |
3036 LIST_COPY(item->contact->other_po_box, (char*)); | |
3037 DEBUG_EMAIL(("%s\n", item->contact->other_po_box)); | |
3038 break; | |
3039 case 0x65E3: // Entry ID? | |
3040 DEBUG_EMAIL(("Entry ID - ")); | |
3041 item->record_key = (char*) xmalloc(16+1); | |
3042 memcpy(item->record_key, &(list->items[x]->data[1]), 16); //skip first byte | |
3043 item->record_key[16]='\0'; | |
3044 item->record_key_size=16; | |
3045 DEBUG_EMAIL_HEXPRINT((char*)item->record_key, 16); | |
3046 break; | |
3047 case 0x67F2: // ID2 value of the attachments proper record | |
3048 DEBUG_EMAIL(("Attachment ID2 value - ")); | |
46 | 3049 if (attach) { |
3050 uint32_t tempid; | |
43 | 3051 MOVE_NEXT(attach); |
46 | 3052 memcpy(&(tempid), list->items[x]->data, sizeof(tempid)); |
3053 LE32_CPU(tempid); | |
3054 attach->id2_val = tempid; | |
3055 DEBUG_EMAIL(("%#llx\n", attach->id2_val)); | |
43 | 3056 } else { |
3057 DEBUG_EMAIL(("NOT AN ATTACHMENT: %#x\n", list->items[x]->id)); | |
3058 } | |
3059 break; | |
3060 case 0x67FF: // Extra Property Identifier (Password CheckSum) | |
3061 DEBUG_EMAIL(("Password checksum [0x67FF] - ")); | |
3062 MALLOC_MESSAGESTORE(item); | |
3063 memcpy(&(item->message_store->pwd_chksum), list->items[x]->data, | |
3064 sizeof(item->message_store->pwd_chksum)); | |
3065 DEBUG_EMAIL(("%#x\n", item->message_store->pwd_chksum)); | |
3066 break; | |
3067 case 0x6F02: // Secure HTML Body | |
3068 DEBUG_EMAIL(("Secure HTML Body - ")); | |
3069 MALLOC_EMAIL(item); | |
3070 LIST_COPY(item->email->encrypted_htmlbody, (char*)); | |
3071 item->email->encrypted_htmlbody_size = list->items[x]->size; | |
3072 DEBUG_EMAIL(("Not Printed\n")); | |
3073 break; | |
3074 case 0x6F04: // Secure Text Body | |
3075 DEBUG_EMAIL(("Secure Text Body - ")); | |
3076 MALLOC_EMAIL(item); | |
3077 LIST_COPY(item->email->encrypted_body, (char*)); | |
3078 item->email->encrypted_body_size = list->items[x]->size; | |
3079 DEBUG_EMAIL(("Not Printed\n")); | |
3080 break; | |
3081 case 0x7C07: // top of folders ENTRYID | |
3082 DEBUG_EMAIL(("Top of folders RecID [0x7c07] - ")); | |
3083 MALLOC_MESSAGESTORE(item); | |
3084 item->message_store->top_of_folder = (pst_entryid*) xmalloc(sizeof(pst_entryid)); | |
3085 memcpy(item->message_store->top_of_folder, list->items[x]->data, sizeof(pst_entryid)); | |
3086 LE32_CPU(item->message_store->top_of_folder->u1); | |
3087 LE32_CPU(item->message_store->top_of_folder->id); | |
3088 DEBUG_EMAIL_HEXPRINT((char*)item->message_store->top_of_folder->entryid, 16); | |
3089 break; | |
3090 case 0x8005: // Contact's Fullname | |
3091 DEBUG_EMAIL(("Contact Fullname - ")); | |
3092 MALLOC_CONTACT(item); | |
3093 LIST_COPY(item->contact->fullname, (char*)); | |
3094 DEBUG_EMAIL(("%s\n", item->contact->fullname)); | |
3095 break; | |
3096 case 0x801A: // Full Home Address | |
3097 DEBUG_EMAIL(("Home Address - ")); | |
3098 MALLOC_CONTACT(item); | |
3099 LIST_COPY(item->contact->home_address, (char*)); | |
3100 DEBUG_EMAIL(("%s\n", item->contact->home_address)); | |
3101 break; | |
3102 case 0x801B: // Full Business Address | |
3103 DEBUG_EMAIL(("Business Address - ")); | |
3104 MALLOC_CONTACT(item); | |
3105 LIST_COPY(item->contact->business_address, (char*)); | |
3106 DEBUG_EMAIL(("%s\n", item->contact->business_address)); | |
3107 break; | |
3108 case 0x801C: // Full Other Address | |
3109 DEBUG_EMAIL(("Other Address - ")); | |
3110 MALLOC_CONTACT(item); | |
3111 LIST_COPY(item->contact->other_address, (char*)); | |
3112 DEBUG_EMAIL(("%s\n", item->contact->other_address)); | |
3113 break; | |
3114 case 0x8082: // Email Address 1 Transport | |
3115 DEBUG_EMAIL(("Email Address 1 Transport - ")); | |
3116 MALLOC_CONTACT(item); | |
3117 LIST_COPY(item->contact->address1_transport, (char*)); | |
3118 DEBUG_EMAIL(("|%s|\n", item->contact->address1_transport)); | |
3119 break; | |
3120 case 0x8083: // Email Address 1 Address | |
3121 DEBUG_EMAIL(("Email Address 1 Address - ")); | |
3122 MALLOC_CONTACT(item); | |
3123 LIST_COPY(item->contact->address1, (char*)); | |
3124 DEBUG_EMAIL(("|%s|\n", item->contact->address1)); | |
3125 break; | |
3126 case 0x8084: // Email Address 1 Description | |
3127 DEBUG_EMAIL(("Email Address 1 Description - ")); | |
3128 MALLOC_CONTACT(item); | |
3129 LIST_COPY(item->contact->address1_desc, (char*)); | |
3130 DEBUG_EMAIL(("|%s|\n", item->contact->address1_desc)); | |
3131 break; | |
3132 case 0x8085: // Email Address 1 Record | |
3133 DEBUG_EMAIL(("Email Address 1 Record - ")); | |
3134 MALLOC_CONTACT(item); | |
3135 LIST_COPY(item->contact->address1a, (char*)); | |
3136 DEBUG_EMAIL(("|%s|\n", item->contact->address1a)); | |
3137 break; | |
3138 case 0x8092: // Email Address 2 Transport | |
3139 DEBUG_EMAIL(("Email Address 2 Transport - ")); | |
3140 MALLOC_CONTACT(item); | |
3141 LIST_COPY(item->contact->address2_transport, (char*)); | |
3142 DEBUG_EMAIL(("|%s|\n", item->contact->address2_transport)); | |
3143 break; | |
3144 case 0x8093: // Email Address 2 Address | |
3145 DEBUG_EMAIL(("Email Address 2 Address - ")); | |
3146 MALLOC_CONTACT(item); | |
3147 LIST_COPY(item->contact->address2, (char*)); | |
3148 DEBUG_EMAIL(("|%s|\n", item->contact->address2)); | |
3149 break; | |
3150 case 0x8094: // Email Address 2 Description | |
3151 DEBUG_EMAIL (("Email Address 2 Description - ")); | |
3152 MALLOC_CONTACT(item); | |
3153 LIST_COPY(item->contact->address2_desc, (char*)); | |
3154 DEBUG_EMAIL(("|%s|\n", item->contact->address2_desc)); | |
3155 break; | |
3156 case 0x8095: // Email Address 2 Record | |
3157 DEBUG_EMAIL(("Email Address 2 Record - ")); | |
3158 MALLOC_CONTACT(item); | |
3159 LIST_COPY(item->contact->address2a, (char*)); | |
3160 DEBUG_EMAIL(("|%s|\n", item->contact->address2a)); | |
3161 break; | |
3162 case 0x80A2: // Email Address 3 Transport | |
3163 DEBUG_EMAIL (("Email Address 3 Transport - ")); | |
3164 MALLOC_CONTACT(item); | |
3165 LIST_COPY(item->contact->address3_transport, (char*)); | |
3166 DEBUG_EMAIL(("|%s|\n", item->contact->address3_transport)); | |
3167 break; | |
3168 case 0x80A3: // Email Address 3 Address | |
3169 DEBUG_EMAIL(("Email Address 3 Address - ")); | |
3170 MALLOC_CONTACT(item); | |
3171 LIST_COPY(item->contact->address3, (char*)); | |
3172 DEBUG_EMAIL(("|%s|\n", item->contact->address3)); | |
3173 break; | |
3174 case 0x80A4: // Email Address 3 Description | |
3175 DEBUG_EMAIL(("Email Address 3 Description - ")); | |
3176 MALLOC_CONTACT(item); | |
3177 LIST_COPY(item->contact->address3_desc, (char*)); | |
3178 DEBUG_EMAIL(("|%s|\n", item->contact->address3_desc)); | |
3179 break; | |
3180 case 0x80A5: // Email Address 3 Record | |
3181 DEBUG_EMAIL(("Email Address 3 Record - ")); | |
3182 MALLOC_CONTACT(item); | |
3183 LIST_COPY(item->contact->address3a, (char*)); | |
3184 DEBUG_EMAIL(("|%s|\n", item->contact->address3a)); | |
3185 break; | |
3186 case 0x80D8: // Internet Free/Busy | |
3187 DEBUG_EMAIL(("Internet Free/Busy - ")); | |
3188 MALLOC_CONTACT(item); | |
3189 LIST_COPY(item->contact->free_busy_address, (char*)); | |
3190 DEBUG_EMAIL(("%s\n", item->contact->free_busy_address)); | |
3191 break; | |
3192 case 0x8205: // Show on Free/Busy as | |
3193 // 0: Free | |
3194 // 1: Tentative | |
3195 // 2: Busy | |
3196 // 3: Out Of Office | |
3197 DEBUG_EMAIL(("Appointment shows as - ")); | |
3198 MALLOC_APPOINTMENT(item); | |
3199 memcpy(&(item->appointment->showas), list->items[x]->data, sizeof(item->appointment->showas)); | |
3200 LE32_CPU(item->appointment->showas); | |
3201 switch (item->appointment->showas) { | |
3202 case PST_FREEBUSY_FREE: | |
3203 DEBUG_EMAIL(("Free\n")); break; | |
3204 case PST_FREEBUSY_TENTATIVE: | |
3205 DEBUG_EMAIL(("Tentative\n")); break; | |
3206 case PST_FREEBUSY_BUSY: | |
3207 DEBUG_EMAIL(("Busy\n")); break; | |
3208 case PST_FREEBUSY_OUT_OF_OFFICE: | |
3209 DEBUG_EMAIL(("Out Of Office\n")); break; | |
3210 default: | |
3211 DEBUG_EMAIL(("Unknown Value: %d\n", item->appointment->showas)); break; | |
3212 } | |
3213 break; | |
3214 case 0x8208: // Location of an appointment | |
3215 DEBUG_EMAIL(("Appointment Location - ")); | |
3216 MALLOC_APPOINTMENT(item); | |
3217 LIST_COPY(item->appointment->location, (char*)); | |
3218 DEBUG_EMAIL(("%s\n", item->appointment->location)); | |
3219 break; | |
50 | 3220 case 0x820d: // Appointment start |
3221 DEBUG_EMAIL(("Appointment Date Start - ")); | |
3222 MALLOC_APPOINTMENT(item); | |
3223 LIST_COPY(item->appointment->start, (FILETIME*)); | |
3224 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->start))); | |
3225 break; | |
3226 case 0x820e: // Appointment end | |
3227 DEBUG_EMAIL(("Appointment Date End - ")); | |
3228 MALLOC_APPOINTMENT(item); | |
3229 LIST_COPY(item->appointment->end, (FILETIME*)); | |
3230 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->end))); | |
3231 break; | |
43 | 3232 case 0x8214: // Label for an appointment |
3233 DEBUG_EMAIL(("Label for appointment - ")); | |
3234 MALLOC_APPOINTMENT(item); | |
3235 memcpy(&(item->appointment->label), list->items[x]->data, sizeof(item->appointment->label)); | |
3236 LE32_CPU(item->appointment->label); | |
3237 switch (item->appointment->label) { | |
3238 case PST_APP_LABEL_NONE: | |
3239 DEBUG_EMAIL(("None\n")); break; | |
3240 case PST_APP_LABEL_IMPORTANT: | |
3241 DEBUG_EMAIL(("Important\n")); break; | |
3242 case PST_APP_LABEL_BUSINESS: | |
3243 DEBUG_EMAIL(("Business\n")); break; | |
3244 case PST_APP_LABEL_PERSONAL: | |
3245 DEBUG_EMAIL(("Personal\n")); break; | |
3246 case PST_APP_LABEL_VACATION: | |
3247 DEBUG_EMAIL(("Vacation\n")); break; | |
3248 case PST_APP_LABEL_MUST_ATTEND: | |
3249 DEBUG_EMAIL(("Must Attend\n")); break; | |
3250 case PST_APP_LABEL_TRAVEL_REQ: | |
3251 DEBUG_EMAIL(("Travel Required\n")); break; | |
3252 case PST_APP_LABEL_NEEDS_PREP: | |
3253 DEBUG_EMAIL(("Needs Preparation\n")); break; | |
3254 case PST_APP_LABEL_BIRTHDAY: | |
3255 DEBUG_EMAIL(("Birthday\n")); break; | |
3256 case PST_APP_LABEL_ANNIVERSARY: | |
3257 DEBUG_EMAIL(("Anniversary\n")); break; | |
3258 case PST_APP_LABEL_PHONE_CALL: | |
3259 DEBUG_EMAIL(("Phone Call\n")); break; | |
3260 } | |
3261 break; | |
3262 case 0x8215: // All day appointment flag | |
3263 DEBUG_EMAIL(("All day flag - ")); | |
3264 MALLOC_APPOINTMENT(item); | |
3265 if (*(int16_t*)list->items[x]->data != 0) { | |
3266 DEBUG_EMAIL(("True\n")); | |
3267 item->appointment->all_day = 1; | |
3268 } else { | |
3269 DEBUG_EMAIL(("False\n")); | |
3270 item->appointment->all_day = 0; | |
3271 } | |
3272 break; | |
50 | 3273 case 0x8231: // Recurrence type |
3274 // 1: Daily | |
3275 // 2: Weekly | |
3276 // 3: Monthly | |
3277 // 4: Yearly | |
3278 DEBUG_EMAIL(("Appointment reccurs - ")); | |
3279 MALLOC_APPOINTMENT(item); | |
3280 memcpy(&(item->appointment->recurrence_type), list->items[x]->data, sizeof(item->appointment->recurrence_type)); | |
3281 LE32_CPU(item->appointment->recurrence_type); | |
3282 switch (item->appointment->recurrence_type) { | |
3283 case PST_APP_RECUR_DAILY: | |
3284 DEBUG_EMAIL(("Daily\n")); break; | |
3285 case PST_APP_RECUR_WEEKLY: | |
3286 DEBUG_EMAIL(("Weekly\n")); break; | |
3287 case PST_APP_RECUR_MONTHLY: | |
3288 DEBUG_EMAIL(("Monthly\n")); break; | |
3289 case PST_APP_RECUR_YEARLY: | |
3290 DEBUG_EMAIL(("Yearly\n")); break; | |
3291 default: | |
3292 DEBUG_EMAIL(("Unknown Value: %d\n", item->appointment->recurrence_type)); break; | |
3293 } | |
3294 break; | |
3295 case 0x8232: // Recurrence description | |
3296 DEBUG_EMAIL(("Appointment recurrence description - ")); | |
3297 MALLOC_APPOINTMENT(item); | |
3298 LIST_COPY(item->appointment->recurrence, (char*)); | |
3299 DEBUG_EMAIL(("%s\n", item->appointment->recurrence)); | |
3300 break; | |
43 | 3301 case 0x8234: // TimeZone as String |
3302 DEBUG_EMAIL(("TimeZone of times - ")); | |
3303 MALLOC_APPOINTMENT(item); | |
3304 LIST_COPY(item->appointment->timezonestring, (char*)); | |
3305 DEBUG_EMAIL(("%s\n", item->appointment->timezonestring)); | |
3306 break; | |
50 | 3307 case 0x8235: // Recurrence start date |
3308 DEBUG_EMAIL(("Recurrence Start Date - ")); | |
3309 MALLOC_APPOINTMENT(item); | |
3310 LIST_COPY(item->appointment->recurrence_start, (FILETIME*)); | |
3311 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->recurrence_start))); | |
3312 break; | |
3313 case 0x8236: // Recurrence end date | |
3314 DEBUG_EMAIL(("Recurrence End Date - ")); | |
43 | 3315 MALLOC_APPOINTMENT(item); |
50 | 3316 LIST_COPY(item->appointment->recurrence_end, (FILETIME*)); |
3317 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->recurrence_end))); | |
3318 break; | |
3319 case 0x8501: // Reminder minutes before appointment start | |
3320 DEBUG_EMAIL(("Alarm minutes - ")); | |
3321 MALLOC_APPOINTMENT(item); | |
3322 memcpy(&(item->appointment->alarm_minutes), list->items[x]->data, sizeof(item->appointment->alarm_minutes)); | |
3323 LE32_CPU(item->appointment->alarm_minutes); | |
3324 DEBUG_EMAIL(("%i\n", item->appointment->alarm_minutes)); | |
3325 break; | |
3326 case 0x8503: // Reminder alarm | |
3327 DEBUG_EMAIL(("Reminder alarm - ")); | |
43 | 3328 MALLOC_APPOINTMENT(item); |
50 | 3329 if (*(int16_t*)list->items[x]->data != 0) { |
3330 DEBUG_EMAIL(("True\n")); | |
3331 item->appointment->alarm = 1; | |
3332 } else { | |
3333 DEBUG_EMAIL(("False\n")); | |
3334 item->appointment->alarm = 0; | |
3335 } | |
3336 break; | |
3337 case 0x8516: | |
3338 DEBUG_EMAIL(("Appointment Start Date 3 - ")); | |
43 | 3339 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data))); |
3340 break; | |
50 | 3341 case 0x8517: |
3342 DEBUG_EMAIL(("Appointment End Date 3 - ")); | |
43 | 3343 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data))); |
3344 break; | |
50 | 3345 case 0x851f: // Play reminder sound filename |
3346 DEBUG_EMAIL(("Appointment reminder sound filename - ")); | |
3347 MALLOC_APPOINTMENT(item); | |
3348 LIST_COPY(item->appointment->alarm_filename, (char*)); | |
3349 DEBUG_EMAIL(("%s\n", item->appointment->alarm_filename)); | |
3350 break; | |
43 | 3351 case 0x8530: // Followup |
3352 DEBUG_EMAIL(("Followup String - ")); | |
3353 MALLOC_CONTACT(item); | |
3354 LIST_COPY(item->contact->followup, (char*)); | |
3355 DEBUG_EMAIL(("%s\n", item->contact->followup)); | |
3356 break; | |
3357 case 0x8534: // Mileage | |
3358 DEBUG_EMAIL(("Mileage - ")); | |
3359 MALLOC_CONTACT(item); | |
3360 LIST_COPY(item->contact->mileage, (char*)); | |
3361 DEBUG_EMAIL(("%s\n", item->contact->mileage)); | |
3362 break; | |
3363 case 0x8535: // Billing Information | |
3364 DEBUG_EMAIL(("Billing Information - ")); | |
3365 MALLOC_CONTACT(item); | |
3366 LIST_COPY(item->contact->billing_information, (char*)); | |
3367 DEBUG_EMAIL(("%s\n", item->contact->billing_information)); | |
3368 break; | |
3369 case 0x8554: // Outlook Version | |
3370 DEBUG_EMAIL(("Outlook Version - ")); | |
3371 LIST_COPY(item->outlook_version, (char*)); | |
3372 DEBUG_EMAIL(("%s\n", item->outlook_version)); | |
3373 break; | |
3374 case 0x8560: // Appointment Reminder Time | |
3375 DEBUG_EMAIL(("Appointment Reminder Time - ")); | |
3376 MALLOC_APPOINTMENT(item); | |
3377 LIST_COPY(item->appointment->reminder, (FILETIME*)); | |
3378 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->reminder))); | |
3379 break; | |
3380 case 0x8700: // Journal Type | |
3381 DEBUG_EMAIL(("Journal Entry Type - ")); | |
3382 MALLOC_JOURNAL(item); | |
3383 LIST_COPY(item->journal->type, (char*)); | |
3384 DEBUG_EMAIL(("%s\n", item->journal->type)); | |
3385 break; | |
3386 case 0x8706: // Journal Start date/time | |
3387 DEBUG_EMAIL(("Start Timestamp - ")); | |
3388 MALLOC_JOURNAL(item); | |
3389 LIST_COPY(item->journal->start, (FILETIME*)); | |
3390 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->start))); | |
3391 break; | |
3392 case 0x8708: // Journal End date/time | |
3393 DEBUG_EMAIL(("End Timestamp - ")); | |
3394 MALLOC_JOURNAL(item); | |
3395 LIST_COPY(item->journal->end, (FILETIME*)); | |
3396 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->end))); | |
3397 break; | |
3398 case 0x8712: // Title? | |
3399 DEBUG_EMAIL(("Journal Entry Type - ")); | |
3400 MALLOC_JOURNAL(item); | |
3401 LIST_COPY(item->journal->type, (char*)); | |
3402 DEBUG_EMAIL(("%s\n", item->journal->type)); | |
3403 break; | |
3404 default: | |
3405 DEBUG_EMAIL(("unknown type %#x\n", list->items[x]->id)); | |
3406 /* Reference Types | |
3407 | |
3408 2 - 0x0002 - Signed 16bit value | |
3409 3 - 0x0003 - Signed 32bit value | |
3410 11 - 0x000B - Boolean (non-zero = true) | |
3411 13 - 0x000D - Embedded Object | |
3412 30 - 0x001E - Null terminated String | |
3413 31 - 0x001F - Unicode string | |
3414 64 - 0x0040 - Systime - Filetime structure | |
3415 72 - 0x0048 - OLE Guid | |
3416 258 - 0x0102 - Binary data | |
3417 | |
3418 - 0x1003 - Array of 32bit values | |
3419 - 0x101E - Array of Strings | |
3420 - 0x1102 - Array of Binary data | |
3421 */ | |
3422 // DEBUG_EMAIL(("Unknown id [%#x, size=%#x]\n", list->items[x]->id, list->items[x]->size)); | |
47 | 3423 if (list->items[x]->type == (uint32_t)0x02) { |
43 | 3424 DEBUG_EMAIL(("Unknown 16bit int = %hi\n", *(int16_t*)list->items[x]->data)); |
47 | 3425 } else if (list->items[x]->type == (uint32_t)0x03) { |
43 | 3426 DEBUG_EMAIL(("Unknown 32bit int = %i\n", *(int32_t*)list->items[x]->data)); |
47 | 3427 } else if (list->items[x]->type == (uint32_t)0x0b) { |
43 | 3428 DEBUG_EMAIL(("Unknown 16bit boolean = %s [%hi]\n", |
3429 (*((int16_t*)list->items[x]->data)!=0?"True":"False"), | |
3430 *((int16_t*)list->items[x]->data))); | |
47 | 3431 } else if (list->items[x]->type == (uint32_t)0x1e) { |
43 | 3432 DEBUG_EMAIL(("Unknown String Data = \"%s\" [%#x]\n", |
3433 list->items[x]->data, list->items[x]->type)); | |
47 | 3434 } else if (list->items[x]->type == (uint32_t)0x40) { |
43 | 3435 DEBUG_EMAIL(("Unknown Date = \"%s\" [%#x]\n", |
3436 fileTimeToAscii((FILETIME*)list->items[x]->data), | |
3437 list->items[x]->type)); | |
47 | 3438 } else if (list->items[x]->type == (uint32_t)0x102) { |
43 | 3439 DEBUG_EMAIL(("Unknown Binary Data [size = %#x]\n", |
3440 list->items[x]->size)); | |
3441 DEBUG_HEXDUMP(list->items[x]->data, list->items[x]->size); | |
47 | 3442 } else if (list->items[x]->type == (uint32_t)0x101E) { |
43 | 3443 DEBUG_EMAIL(("Unknown Array of Strings [%#x]\n", |
3444 list->items[x]->type)); | |
3445 } else { | |
3446 DEBUG_EMAIL(("Unknown Not Printable [%#x]\n", | |
3447 list->items[x]->type)); | |
3448 } | |
3449 if (list->items[x]->data) { | |
3450 free(list->items[x]->data); | |
3451 list->items[x]->data = NULL; | |
3452 } | |
3453 } | |
3454 x++; | |
3455 } | |
3456 x = 0; | |
3457 list = list->next; | |
3458 next = 1; | |
3459 } | |
3460 DEBUG_RET(); | |
3461 return 0; | |
16 | 3462 } |
3463 | |
3464 | |
46 | 3465 void pst_free_list(pst_num_array *list) { |
43 | 3466 pst_num_array *l; |
46 | 3467 DEBUG_ENT("pst_free_list"); |
43 | 3468 while (list) { |
3469 if (list->items) { | |
3470 int32_t x; | |
3471 for (x=0; x < list->orig_count; x++) { | |
3472 if (list->items[x]) { | |
3473 if (list->items[x]->data) free(list->items[x]->data); | |
3474 free(list->items[x]); | |
3475 } | |
3476 } | |
3477 free(list->items); | |
3478 } | |
3479 l = list; | |
3480 list = list->next; | |
3481 free (l); | |
3482 } | |
3483 DEBUG_RET(); | |
16 | 3484 } |
3485 | |
3486 | |
46 | 3487 void pst_free_id2(pst_index2_ll * head) { |
43 | 3488 pst_index2_ll *t; |
46 | 3489 DEBUG_ENT("pst_free_id2"); |
43 | 3490 while (head) { |
3491 t = head->next; | |
3492 free (head); | |
3493 head = t; | |
3494 } | |
3495 DEBUG_RET(); | |
16 | 3496 } |
3497 | |
3498 | |
46 | 3499 void pst_free_id (pst_index_ll *head) { |
43 | 3500 pst_index_ll *t; |
46 | 3501 DEBUG_ENT("pst_free_id"); |
43 | 3502 while (head) { |
3503 t = head->next; | |
3504 free(head); | |
3505 head = t; | |
3506 } | |
3507 DEBUG_RET(); | |
16 | 3508 } |
3509 | |
3510 | |
46 | 3511 void pst_free_desc (pst_desc_ll *head) { |
43 | 3512 pst_desc_ll *t; |
46 | 3513 DEBUG_ENT("pst_free_desc"); |
43 | 3514 while (head) { |
3515 while (head->child) { | |
3516 head = head->child; | |
3517 } | |
3518 | |
3519 // point t to the next item | |
3520 t = head->next; | |
3521 if (!t && head->parent) { | |
3522 t = head->parent; | |
3523 t->child = NULL; // set the child to NULL so we don't come back here again! | |
3524 } | |
3525 | |
3526 if (head) free(head); | |
3527 else DIE(("head is NULL")); | |
3528 | |
3529 head = t; | |
3530 } | |
3531 DEBUG_RET(); | |
16 | 3532 } |
3533 | |
3534 | |
46 | 3535 void pst_free_xattrib(pst_x_attrib_ll *x) { |
43 | 3536 pst_x_attrib_ll *t; |
46 | 3537 DEBUG_ENT("pst_free_xattrib"); |
43 | 3538 while (x) { |
3539 if (x->data) free(x->data); | |
3540 t = x->next; | |
3541 free(x); | |
3542 x = t; | |
3543 } | |
3544 DEBUG_RET(); | |
16 | 3545 } |
3546 | |
3547 | |
46 | 3548 pst_index2_ll * pst_build_id2(pst_file *pf, pst_index_ll* list, pst_index2_ll* head_ptr) { |
43 | 3549 pst_block_header block_head; |
3550 pst_index2_ll *head = NULL, *tail = NULL; | |
46 | 3551 uint16_t x = 0; |
3552 char *b_ptr = NULL; | |
43 | 3553 char *buf = NULL; |
3554 pst_id2_assoc id2_rec; | |
3555 pst_index_ll *i_ptr = NULL; | |
3556 pst_index2_ll *i2_ptr = NULL; | |
46 | 3557 DEBUG_ENT("pst_build_id2"); |
43 | 3558 |
3559 if (head_ptr) { | |
3560 head = head_ptr; | |
3561 while (head_ptr) head_ptr = (tail = head_ptr)->next; | |
3562 } | |
46 | 3563 if (pst_read_block_size(pf, list->offset, list->size, &buf, PST_NO_ENC, 0) < list->size) { |
43 | 3564 //an error occured in block read |
3565 WARN(("block read error occured. offset = %#llx, size = %#llx\n", list->offset, list->size)); | |
3566 if (buf) free(buf); | |
3567 DEBUG_RET(); | |
3568 return NULL; | |
3569 } | |
3570 DEBUG_HEXDUMPC(buf, list->size, 16); | |
3571 | |
3572 memcpy(&block_head, buf, sizeof(block_head)); | |
3573 LE16_CPU(block_head.type); | |
3574 LE16_CPU(block_head.count); | |
3575 | |
46 | 3576 if (block_head.type != (uint16_t)0x0002) { // some sort of constant? |
47 | 3577 WARN(("Unknown constant [%#hx] at start of id2 values [offset %#llx].\n", block_head.type, list->offset)); |
43 | 3578 if (buf) free(buf); |
3579 DEBUG_RET(); | |
3580 return NULL; | |
3581 } | |
3582 | |
46 | 3583 DEBUG_INDEX(("ID %#llx is likely to be a description record. Count is %i (offset %#llx)\n", |
43 | 3584 list->id, block_head.count, list->offset)); |
3585 x = 0; | |
46 | 3586 b_ptr = buf + ((pf->do_read64) ? 0x08 : 0x04); |
43 | 3587 while (x < block_head.count) { |
46 | 3588 b_ptr += pst_decode_assoc(pf, &id2_rec, b_ptr); |
48 | 3589 DEBUG_INDEX(("\tid2 = %#x, id = %#llx, table2 = %#llx\n", id2_rec.id2, id2_rec.id, id2_rec.table2)); |
46 | 3590 if ((i_ptr = pst_getID(pf, id2_rec.id)) == NULL) { |
3591 DEBUG_WARN(("\t\t%#llx - Not Found\n", id2_rec.id)); | |
43 | 3592 } else { |
46 | 3593 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 | 3594 // add it to the linked list |
3595 i2_ptr = (pst_index2_ll*) xmalloc(sizeof(pst_index2_ll)); | |
3596 i2_ptr->id2 = id2_rec.id2; | |
3597 i2_ptr->id = i_ptr; | |
3598 i2_ptr->next = NULL; | |
3599 if (!head) head = i2_ptr; | |
3600 if (tail) tail->next = i2_ptr; | |
3601 tail = i2_ptr; | |
3602 if (id2_rec.table2 != 0) { | |
46 | 3603 if ((i_ptr = pst_getID(pf, id2_rec.table2)) == NULL) { |
43 | 3604 DEBUG_WARN(("\tTable2 [%#x] not found\n", id2_rec.table2)); |
3605 } | |
3606 else { | |
3607 DEBUG_INDEX(("\tGoing deeper for table2 [%#x]\n", id2_rec.table2)); | |
46 | 3608 if ((i2_ptr = pst_build_id2(pf, i_ptr, head))) { |
3609 // DEBUG_INDEX(("pst_build_id2(): \t\tAdding new list onto end of current\n")); | |
43 | 3610 // if (!head) |
3611 // head = i2_ptr; | |
3612 // if (tail) | |
3613 // tail->next = i2_ptr; | |
3614 // while (i2_ptr->next) | |
3615 // i2_ptr = i2_ptr->next; | |
3616 // tail = i2_ptr; | |
3617 } | |
3618 // need to re-establish tail | |
3619 DEBUG_INDEX(("Returned from depth\n")); | |
3620 if (tail) { | |
3621 while (tail->next) tail = tail->next; | |
3622 } | |
3623 } | |
3624 } | |
3625 } | |
3626 x++; | |
3627 } | |
3628 if (buf) free (buf); | |
3629 DEBUG_RET(); | |
3630 return head; | |
16 | 3631 } |
3632 | |
3633 | |
46 | 3634 void pst_freeItem(pst_item *item) { |
43 | 3635 pst_item_attach *t; |
3636 pst_item_extra_field *et; | |
3637 | |
46 | 3638 DEBUG_ENT("pst_freeItem"); |
43 | 3639 if (item) { |
3640 if (item->email) { | |
3641 SAFE_FREE(item->email->arrival_date); | |
3642 SAFE_FREE(item->email->body); | |
3643 SAFE_FREE(item->email->cc_address); | |
3644 SAFE_FREE(item->email->common_name); | |
3645 SAFE_FREE(item->email->encrypted_body); | |
3646 SAFE_FREE(item->email->encrypted_htmlbody); | |
3647 SAFE_FREE(item->email->header); | |
3648 SAFE_FREE(item->email->htmlbody); | |
3649 SAFE_FREE(item->email->in_reply_to); | |
3650 SAFE_FREE(item->email->messageid); | |
3651 SAFE_FREE(item->email->outlook_recipient); | |
3652 SAFE_FREE(item->email->outlook_recipient2); | |
3653 SAFE_FREE(item->email->outlook_sender); | |
3654 SAFE_FREE(item->email->outlook_sender_name); | |
3655 SAFE_FREE(item->email->outlook_sender2); | |
3656 SAFE_FREE(item->email->proc_subject); | |
3657 SAFE_FREE(item->email->recip_access); | |
3658 SAFE_FREE(item->email->recip_address); | |
3659 SAFE_FREE(item->email->recip2_access); | |
3660 SAFE_FREE(item->email->recip2_address); | |
3661 SAFE_FREE(item->email->reply_to); | |
3662 SAFE_FREE(item->email->rtf_body_tag); | |
3663 SAFE_FREE(item->email->rtf_compressed); | |
3664 SAFE_FREE(item->email->return_path_address); | |
3665 SAFE_FREE(item->email->sender_access); | |
3666 SAFE_FREE(item->email->sender_address); | |
3667 SAFE_FREE(item->email->sender2_access); | |
3668 SAFE_FREE(item->email->sender2_address); | |
3669 SAFE_FREE(item->email->sent_date); | |
3670 SAFE_FREE(item->email->sentmail_folder); | |
3671 SAFE_FREE(item->email->sentto_address); | |
3672 if (item->email->subject) | |
3673 SAFE_FREE(item->email->subject->subj); | |
3674 SAFE_FREE(item->email->subject); | |
3675 free(item->email); | |
3676 } | |
3677 if (item->folder) { | |
3678 free(item->folder); | |
3679 } | |
3680 if (item->message_store) { | |
3681 SAFE_FREE(item->message_store->deleted_items_folder); | |
3682 SAFE_FREE(item->message_store->search_root_folder); | |
3683 SAFE_FREE(item->message_store->top_of_personal_folder); | |
3684 SAFE_FREE(item->message_store->top_of_folder); | |
3685 free(item->message_store); | |
3686 } | |
3687 if (item->contact) { | |
3688 SAFE_FREE(item->contact->access_method); | |
3689 SAFE_FREE(item->contact->account_name); | |
3690 SAFE_FREE(item->contact->address1); | |
3691 SAFE_FREE(item->contact->address1a); | |
3692 SAFE_FREE(item->contact->address1_desc); | |
3693 SAFE_FREE(item->contact->address1_transport); | |
3694 SAFE_FREE(item->contact->address2); | |
3695 SAFE_FREE(item->contact->address2a); | |
3696 SAFE_FREE(item->contact->address2_desc); | |
3697 SAFE_FREE(item->contact->address2_transport); | |
3698 SAFE_FREE(item->contact->address3); | |
3699 SAFE_FREE(item->contact->address3a); | |
3700 SAFE_FREE(item->contact->address3_desc); | |
3701 SAFE_FREE(item->contact->address3_transport); | |
3702 SAFE_FREE(item->contact->assistant_name); | |
3703 SAFE_FREE(item->contact->assistant_phone); | |
3704 SAFE_FREE(item->contact->billing_information); | |
3705 SAFE_FREE(item->contact->birthday); | |
3706 SAFE_FREE(item->contact->business_address); | |
3707 SAFE_FREE(item->contact->business_city); | |
3708 SAFE_FREE(item->contact->business_country); | |
3709 SAFE_FREE(item->contact->business_fax); | |
3710 SAFE_FREE(item->contact->business_homepage); | |
3711 SAFE_FREE(item->contact->business_phone); | |
3712 SAFE_FREE(item->contact->business_phone2); | |
3713 SAFE_FREE(item->contact->business_po_box); | |
3714 SAFE_FREE(item->contact->business_postal_code); | |
3715 SAFE_FREE(item->contact->business_state); | |
3716 SAFE_FREE(item->contact->business_street); | |
3717 SAFE_FREE(item->contact->callback_phone); | |
3718 SAFE_FREE(item->contact->car_phone); | |
3719 SAFE_FREE(item->contact->company_main_phone); | |
3720 SAFE_FREE(item->contact->company_name); | |
3721 SAFE_FREE(item->contact->computer_name); | |
3722 SAFE_FREE(item->contact->customer_id); | |
3723 SAFE_FREE(item->contact->def_postal_address); | |
3724 SAFE_FREE(item->contact->department); | |
3725 SAFE_FREE(item->contact->display_name_prefix); | |
3726 SAFE_FREE(item->contact->first_name); | |
3727 SAFE_FREE(item->contact->followup); | |
3728 SAFE_FREE(item->contact->free_busy_address); | |
3729 SAFE_FREE(item->contact->ftp_site); | |
3730 SAFE_FREE(item->contact->fullname); | |
3731 SAFE_FREE(item->contact->gov_id); | |
3732 SAFE_FREE(item->contact->hobbies); | |
3733 SAFE_FREE(item->contact->home_address); | |
3734 SAFE_FREE(item->contact->home_city); | |
3735 SAFE_FREE(item->contact->home_country); | |
3736 SAFE_FREE(item->contact->home_fax); | |
3737 SAFE_FREE(item->contact->home_po_box); | |
3738 SAFE_FREE(item->contact->home_phone); | |
3739 SAFE_FREE(item->contact->home_phone2); | |
3740 SAFE_FREE(item->contact->home_postal_code); | |
3741 SAFE_FREE(item->contact->home_state); | |
3742 SAFE_FREE(item->contact->home_street); | |
3743 SAFE_FREE(item->contact->initials); | |
3744 SAFE_FREE(item->contact->isdn_phone); | |
3745 SAFE_FREE(item->contact->job_title); | |
3746 SAFE_FREE(item->contact->keyword); | |
3747 SAFE_FREE(item->contact->language); | |
3748 SAFE_FREE(item->contact->location); | |
3749 SAFE_FREE(item->contact->manager_name); | |
3750 SAFE_FREE(item->contact->middle_name); | |
3751 SAFE_FREE(item->contact->mileage); | |
3752 SAFE_FREE(item->contact->mobile_phone); | |
3753 SAFE_FREE(item->contact->nickname); | |
3754 SAFE_FREE(item->contact->office_loc); | |
3755 SAFE_FREE(item->contact->org_id); | |
3756 SAFE_FREE(item->contact->other_address); | |
3757 SAFE_FREE(item->contact->other_city); | |
3758 SAFE_FREE(item->contact->other_country); | |
3759 SAFE_FREE(item->contact->other_phone); | |
3760 SAFE_FREE(item->contact->other_po_box); | |
3761 SAFE_FREE(item->contact->other_postal_code); | |
3762 SAFE_FREE(item->contact->other_state); | |
3763 SAFE_FREE(item->contact->other_street); | |
3764 SAFE_FREE(item->contact->pager_phone); | |
3765 SAFE_FREE(item->contact->personal_homepage); | |
3766 SAFE_FREE(item->contact->pref_name); | |
3767 SAFE_FREE(item->contact->primary_fax); | |
3768 SAFE_FREE(item->contact->primary_phone); | |
3769 SAFE_FREE(item->contact->profession); | |
3770 SAFE_FREE(item->contact->radio_phone); | |
3771 SAFE_FREE(item->contact->spouse_name); | |
3772 SAFE_FREE(item->contact->suffix); | |
3773 SAFE_FREE(item->contact->surname); | |
3774 SAFE_FREE(item->contact->telex); | |
3775 SAFE_FREE(item->contact->transmittable_display_name); | |
3776 SAFE_FREE(item->contact->ttytdd_phone); | |
3777 SAFE_FREE(item->contact->wedding_anniversary); | |
3778 free(item->contact); | |
3779 } | |
3780 while (item->attach) { | |
3781 SAFE_FREE(item->attach->filename1); | |
3782 SAFE_FREE(item->attach->filename2); | |
3783 SAFE_FREE(item->attach->mimetype); | |
3784 SAFE_FREE(item->attach->data); | |
3785 t = item->attach->next; | |
3786 free(item->attach); | |
3787 item->attach = t; | |
3788 } | |
3789 while (item->extra_fields) { | |
3790 SAFE_FREE(item->extra_fields->field_name); | |
3791 SAFE_FREE(item->extra_fields->value); | |
3792 et = item->extra_fields->next; | |
3793 free(item->extra_fields); | |
3794 item->extra_fields = et; | |
3795 } | |
3796 if (item->journal) { | |
3797 SAFE_FREE(item->journal->end); | |
3798 SAFE_FREE(item->journal->start); | |
3799 SAFE_FREE(item->journal->type); | |
3800 free(item->journal); | |
3801 } | |
3802 if (item->appointment) { | |
3803 SAFE_FREE(item->appointment->location); | |
3804 SAFE_FREE(item->appointment->reminder); | |
50 | 3805 SAFE_FREE(item->appointment->alarm_filename); |
43 | 3806 SAFE_FREE(item->appointment->start); |
3807 SAFE_FREE(item->appointment->end); | |
3808 SAFE_FREE(item->appointment->timezonestring); | |
50 | 3809 SAFE_FREE(item->appointment->recurrence); |
3810 SAFE_FREE(item->appointment->recurrence_start); | |
3811 SAFE_FREE(item->appointment->recurrence_end); | |
43 | 3812 free(item->appointment); |
3813 } | |
3814 SAFE_FREE(item->ascii_type); | |
3815 SAFE_FREE(item->comment); | |
3816 SAFE_FREE(item->create_date); | |
3817 SAFE_FREE(item->file_as); | |
3818 SAFE_FREE(item->modify_date); | |
3819 SAFE_FREE(item->outlook_version); | |
3820 SAFE_FREE(item->record_key); | |
3821 free(item); | |
3822 } | |
3823 DEBUG_RET(); | |
16 | 3824 } |
3825 | |
3826 | |
35 | 3827 /** |
3828 * The offset might be zero, in which case we have no data, so return a pair of null pointers. | |
3829 * Or, the offset might end in 0xf, so it is an id2 pointer, in which case we read the id2 block. | |
49 | 3830 * Otherwise, the high order 16 bits of offset is the index into the subblocks, and |
3831 * the (low order 16 bits of offset)>>4 is an index into the table of offsets in the subblock. | |
35 | 3832 */ |
49 | 3833 int pst_getBlockOffsetPointer(pst_file *pf, pst_index2_ll *i2_head, pst_subblocks *subblocks, uint32_t offset, pst_block_offset_pointer *p) { |
46 | 3834 size_t size; |
43 | 3835 pst_block_offset block_offset; |
46 | 3836 DEBUG_ENT("pst_getBlockOffsetPointer"); |
43 | 3837 if (p->needfree) free(p->from); |
49 | 3838 p->from = NULL; |
3839 p->to = NULL; | |
43 | 3840 p->needfree = 0; |
3841 if (!offset) { | |
49 | 3842 // no data |
43 | 3843 p->from = p->to = NULL; |
3844 } | |
46 | 3845 else if ((offset & 0xf) == (uint32_t)0xf) { |
49 | 3846 // external index reference |
43 | 3847 DEBUG_WARN(("Found id2 %#x value. Will follow it\n", offset)); |
46 | 3848 size = pst_ff_getID2block(pf, offset, i2_head, &(p->from)); |
43 | 3849 if (size) { |
3850 p->to = p->from + size; | |
3851 p->needfree = 1; | |
3852 } | |
3853 else { | |
50 | 3854 if (p->from) { |
3855 DEBUG_WARN(("size zero but non-null pointer\n")); | |
3856 free(p->from); | |
3857 } | |
43 | 3858 p->from = p->to = NULL; |
3859 } | |
3860 } | |
3861 else { | |
49 | 3862 // internal index reference |
3863 size_t subindex = offset >> 16; | |
3864 size_t suboffset = offset & 0xffff; | |
3865 if (subindex < subblocks->subblock_count) { | |
3866 if (pst_getBlockOffset(subblocks->subs[subindex].buf, | |
3867 subblocks->subs[subindex].read_size, | |
3868 subblocks->subs[subindex].i_offset, | |
3869 suboffset, &block_offset)) { | |
3870 p->from = subblocks->subs[subindex].buf + block_offset.from; | |
3871 p->to = subblocks->subs[subindex].buf + block_offset.to; | |
3872 } | |
3873 } | |
43 | 3874 } |
3875 DEBUG_RET(); | |
3876 return (p->from) ? 0 : 1; | |
35 | 3877 } |
3878 | |
3879 | |
46 | 3880 int pst_getBlockOffset(unsigned char *buf, size_t read_size, uint32_t i_offset, uint32_t offset, pst_block_offset *p) { |
3881 uint32_t low = offset & 0xf; | |
3882 uint32_t of1 = offset >> 4; | |
3883 DEBUG_ENT("pst_getBlockOffset"); | |
43 | 3884 if (!p || !buf || !i_offset || low || (i_offset+2+of1+sizeof(*p) > read_size)) { |
3885 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)); | |
3886 DEBUG_RET(); | |
49 | 3887 return 0; |
43 | 3888 } |
3889 memcpy(&(p->from), &(buf[(i_offset+2)+of1]), sizeof(p->from)); | |
3890 memcpy(&(p->to), &(buf[(i_offset+2)+of1+sizeof(p->from)]), sizeof(p->to)); | |
3891 LE16_CPU(p->from); | |
3892 LE16_CPU(p->to); | |
3893 DEBUG_WARN(("get block offset finds from=%i(%#x), to=%i(%#x)\n", p->from, p->from, p->to, p->to)); | |
3894 if (p->from > p->to) { | |
3895 DEBUG_WARN(("get block offset from > to")); | |
49 | 3896 return 0; |
43 | 3897 } |
3898 DEBUG_RET(); | |
49 | 3899 return 1; |
16 | 3900 } |
3901 | |
3902 | |
46 | 3903 pst_index_ll* pst_getID(pst_file* pf, uint64_t id) { |
43 | 3904 pst_index_ll *ptr = NULL; |
46 | 3905 DEBUG_ENT("pst_getID"); |
43 | 3906 if (id == 0) { |
3907 DEBUG_RET(); | |
3908 return NULL; | |
3909 } | |
3910 | |
46 | 3911 //if (id & 1) DEBUG_INDEX(("have odd id bit %#llx\n", id)); |
3912 //if (id & 2) DEBUG_INDEX(("have two id bit %#llx\n", id)); | |
43 | 3913 id -= (id & 1); |
3914 | |
3915 DEBUG_INDEX(("Trying to find %#llx\n", id)); | |
3916 if (!ptr) ptr = pf->i_head; | |
3917 while (ptr && (ptr->id != id)) { | |
3918 ptr = ptr->next; | |
3919 } | |
46 | 3920 if (ptr) {DEBUG_INDEX(("Found Value %#llx\n", id)); } |
3921 else {DEBUG_INDEX(("ERROR: Value %#llx not found\n", id)); } | |
43 | 3922 DEBUG_RET(); |
3923 return ptr; | |
16 | 3924 } |
3925 | |
3926 | |
46 | 3927 pst_index_ll * pst_getID2(pst_index2_ll *ptr, uint64_t id) { |
3928 DEBUG_ENT("pst_getID2"); | |
43 | 3929 DEBUG_INDEX(("Head = %p\n", ptr)); |
3930 DEBUG_INDEX(("Trying to find %#x\n", id)); | |
3931 while (ptr && (ptr->id2 != id)) { | |
3932 ptr = ptr->next; | |
3933 } | |
3934 if (ptr) { | |
46 | 3935 if (ptr->id) {DEBUG_INDEX(("Found value %#llx\n", ptr->id->id)); } |
43 | 3936 else {DEBUG_INDEX(("Found value, though it is NULL!\n"));} |
3937 DEBUG_RET(); | |
3938 return ptr->id; | |
3939 } | |
3940 DEBUG_INDEX(("ERROR Not Found\n")); | |
3941 DEBUG_RET(); | |
3942 return NULL; | |
16 | 3943 } |
3944 | |
3945 | |
35 | 3946 /** |
3947 * find the id in the descriptor tree rooted at pf->d_head | |
3948 * | |
43 | 3949 * @param pf global pst file pointer |
3950 * @param id the id we are looking for | |
35 | 3951 * |
3952 * @return pointer to the pst_desc_ll node in the descriptor tree | |
3953 */ | |
46 | 3954 pst_desc_ll* pst_getDptr(pst_file *pf, uint64_t id) { |
43 | 3955 pst_desc_ll *ptr = pf->d_head; |
46 | 3956 DEBUG_ENT("pst_getDptr"); |
43 | 3957 while (ptr && (ptr->id != id)) { |
3958 if (ptr->child) { | |
3959 ptr = ptr->child; | |
3960 continue; | |
3961 } | |
3962 while (!ptr->next && ptr->parent) { | |
3963 ptr = ptr->parent; | |
3964 } | |
3965 ptr = ptr->next; | |
3966 } | |
3967 DEBUG_RET(); | |
3968 return ptr; // will be NULL or record we are looking for | |
16 | 3969 } |
3970 | |
3971 | |
46 | 3972 int32_t pst_printDptr(pst_file *pf) { |
43 | 3973 pst_desc_ll *ptr = pf->d_head; |
3974 int32_t depth = 0; | |
3975 char spaces[100]; | |
46 | 3976 DEBUG_ENT("pst_printDptr"); |
43 | 3977 memset(spaces, ' ', 99); |
3978 spaces[99] = '\0'; | |
3979 while (ptr) { | |
3980 DEBUG_INDEX(("%s%#x [%i] desc=%#x, list=%#x\n", &(spaces[(99-depth<0?0:99-depth)]), ptr->id, ptr->no_child, | |
3981 (ptr->desc==NULL?0:ptr->desc->id), | |
3982 (ptr->list_index==NULL?0:ptr->list_index->id))); | |
3983 if (ptr->child) { | |
3984 depth++; | |
3985 ptr = ptr->child; | |
3986 continue; | |
3987 } | |
3988 while (!ptr->next && ptr->parent) { | |
3989 depth--; | |
3990 ptr = ptr->parent; | |
3991 } | |
3992 ptr = ptr->next; | |
3993 } | |
3994 DEBUG_RET(); | |
3995 return 0; | |
16 | 3996 } |
3997 | |
3998 | |
46 | 3999 int32_t pst_printIDptr(pst_file* pf) { |
43 | 4000 pst_index_ll *ptr = pf->i_head; |
46 | 4001 DEBUG_ENT("pst_printIDptr"); |
43 | 4002 while (ptr) { |
4003 DEBUG_INDEX(("%#x offset=%#x size=%#x\n", ptr->id, ptr->offset, ptr->size)); | |
4004 ptr = ptr->next; | |
4005 } | |
4006 DEBUG_RET(); | |
4007 return 0; | |
16 | 4008 } |
4009 | |
4010 | |
46 | 4011 int32_t pst_printID2ptr(pst_index2_ll *ptr) { |
4012 DEBUG_ENT("pst_printID2ptr"); | |
43 | 4013 while (ptr) { |
4014 DEBUG_INDEX(("%#x id=%#x\n", ptr->id2, (ptr->id!=NULL?ptr->id->id:0))); | |
4015 ptr = ptr->next; | |
4016 } | |
4017 DEBUG_RET(); | |
4018 return 0; | |
16 | 4019 } |
4020 | |
4021 | |
4022 // when the first byte of the block being read is 01, then we can assume | |
4023 // that it is a list of further ids to read and we will follow those ids | |
4024 // recursively calling this function until we have all the data | |
4025 // we could do decryption of the encrypted PST files here | |
46 | 4026 size_t pst_read_block_size(pst_file *pf, off_t offset, size_t size, char **buf, int32_t do_enc, unsigned char is_index) { |
43 | 4027 off_t fpos; |
46 | 4028 uint32_t x; |
43 | 4029 int16_t count, y; |
4030 char *buf2 = NULL, *buf3 = NULL; | |
4031 unsigned char fdepth; | |
4032 pst_index_ll *ptr = NULL; | |
4033 size_t rsize, z; | |
4034 | |
46 | 4035 DEBUG_ENT("pst_read_block_size"); |
43 | 4036 DEBUG_READ(("Reading block from %#x, %i bytes\n", offset, size)); |
4037 | |
4038 fpos = ftell(pf->fp); | |
46 | 4039 (void)fseek(pf->fp, offset, SEEK_SET); |
43 | 4040 if (*buf) { |
4041 DEBUG_READ(("Freeing old memory\n")); | |
4042 free(*buf); | |
4043 } | |
4044 | |
4045 *buf = (void*) xmalloc(size+1); //plus one so that we can NUL terminate it later | |
46 | 4046 rsize = fread(*buf, (size_t)1, size, pf->fp); |
43 | 4047 if (rsize != size) { |
4048 DEBUG_WARN(("Didn't read all that I could. fread returned less [%i instead of %i]\n", rsize, size)); | |
4049 if (feof(pf->fp)) { | |
4050 DEBUG_WARN(("We tried to read past the end of the file at [offset %#x, size %#x]\n", offset, size)); | |
4051 } else if (ferror(pf->fp)) { | |
4052 DEBUG_WARN(("Error is set on file stream.\n")); | |
4053 } else { | |
4054 DEBUG_WARN(("I can't tell why it failed\n")); | |
4055 } | |
4056 size = rsize; | |
4057 } | |
4058 | |
4059 // DEBUG_HEXDUMP(*buf, size); | |
4060 | |
4061 /* if (is_index) { | |
46 | 4062 DEBUG_READ(("pst_read_block_size: ODD_BLOCK should be here\n")); |
43 | 4063 DEBUG_READ(("\t: byte 0-1: %#x %#x\n", (*buf)[0], (*buf)[1])); |
4064 }*/ | |
4065 | |
4066 if ((*buf)[0] == 0x01 && (*buf)[1] != 0x00 && is_index) { | |
4067 //don't do this recursion if we should be at a leaf node | |
4068 memcpy(&count, &((*buf)[2]), sizeof(int16_t)); | |
4069 LE16_CPU(count); | |
4070 memcpy(&fdepth, &((*buf)[1]), sizeof(fdepth)); | |
4071 DEBUG_READ(("Seen indexes to blocks. Depth is %i\n", fdepth)); | |
4072 // do fancy stuff! :) | |
4073 DEBUG_READ(("There are %i ids\n", count)); | |
4074 // if first 2 blocks are 01 01 then index to blocks | |
4075 size = 0; | |
4076 y = 0; | |
4077 while (y < count) { | |
46 | 4078 memcpy(&x, &(*buf)[0x08+(y*4)], sizeof(uint32_t)); |
43 | 4079 LE32_CPU(x); |
46 | 4080 if ((ptr = pst_getID(pf, x)) == NULL) { |
43 | 4081 WARN(("Error. Cannot find ID [%#x] during multi-block read\n", x)); |
4082 buf3 = (char*) realloc(buf3, size+1); | |
4083 buf3[size] = '\0'; | |
4084 *buf = buf3; | |
47 | 4085 (void)fseek(pf->fp, fpos, SEEK_SET); |
43 | 4086 DEBUG_RET(); |
4087 return size; | |
4088 } | |
46 | 4089 if ((z = pst_read_block_size(pf, ptr->offset, ptr->size, &buf2, do_enc, fdepth-1)) < ptr->size) { |
43 | 4090 buf3 = (char*) realloc(buf3, size+1); |
4091 buf3[size] = '\0'; | |
4092 *buf = buf3; | |
47 | 4093 (void)fseek(pf->fp, fpos, SEEK_SET); |
43 | 4094 DEBUG_RET(); |
4095 return size; | |
4096 } | |
4097 DEBUG_READ(("Melding newley retrieved block with bigger one. New size is %i\n", size+z)); | |
4098 buf3 = (char*) realloc(buf3, size+z+1); //plus one so that we can null terminate it later | |
4099 DEBUG_READ(("Doing copy. Start pos is %i, length is %i\n", size, z)); | |
4100 memcpy(&(buf3[size]), buf2, z); | |
4101 size += z; | |
4102 y++; | |
4103 } | |
4104 free(*buf); | |
4105 if (buf2) free(buf2); | |
4106 if (!buf3) { | |
4107 // this can happen if count == 0. We should create an empty buffer so we don't | |
4108 // confuse any clients | |
46 | 4109 buf3 = (char*) xmalloc((size_t)1); |
43 | 4110 } |
4111 *buf = buf3; | |
46 | 4112 } else if (do_enc && pf->encryption) { |
4113 (void)pst_decrypt(*buf, size, pf->encryption); | |
4114 } else { | |
4115 // nothing to do | |
4116 } | |
43 | 4117 |
4118 (*buf)[size] = '\0'; //should be byte after last one read | |
46 | 4119 (void)fseek(pf->fp, fpos, SEEK_SET); |
43 | 4120 DEBUG_RET(); |
4121 return size; | |
16 | 4122 } |
4123 | |
4124 | |
46 | 4125 int pst_decrypt(unsigned char *buf, size_t size, unsigned char type) { |
43 | 4126 size_t x = 0; |
4127 unsigned char y; | |
46 | 4128 DEBUG_ENT("pst_decrypt"); |
43 | 4129 if (!buf) { |
4130 DEBUG_RET(); | |
4131 return -1; | |
4132 } | |
4133 | |
4134 if (type == PST_COMP_ENCRYPT) { | |
4135 x = 0; | |
4136 while (x < size) { | |
4137 y = buf[x]; | |
4138 DEBUG_DECRYPT(("Transposing %#hhx to %#hhx [%#x]\n", buf[x], comp_enc[y], y)); | |
4139 buf[x] = comp_enc[y]; // transpose from encrypt array | |
4140 x++; | |
4141 } | |
4142 } else { | |
4143 WARN(("Unknown encryption: %i. Cannot decrypt\n", type)); | |
4144 DEBUG_RET(); | |
4145 return -1; | |
4146 } | |
4147 DEBUG_RET(); | |
4148 return 0; | |
16 | 4149 } |
4150 | |
4151 | |
46 | 4152 uint64_t pst_getIntAt(pst_file *pf, char *buf) { |
4153 uint64_t buf64; | |
4154 uint32_t buf32; | |
4155 if (pf->do_read64) { | |
43 | 4156 memcpy(&buf64, buf, sizeof(buf64)); |
4157 LE64_CPU(buf64); | |
4158 return buf64; | |
4159 } | |
4160 else { | |
4161 memcpy(&buf32, buf, sizeof(buf32)); | |
4162 LE32_CPU(buf32); | |
4163 return buf32; | |
4164 } | |
4165 } | |
4166 | |
4167 | |
46 | 4168 uint64_t pst_getIntAtPos(pst_file *pf, off_t pos ) { |
4169 uint64_t buf64; | |
4170 uint32_t buf32; | |
4171 if (pf->do_read64) { | |
4172 (void)pst_getAtPos(pf->fp, pos, &buf64, sizeof(buf64)); | |
43 | 4173 LE64_CPU(buf64); |
4174 return buf64; | |
4175 } | |
4176 else { | |
46 | 4177 (void)pst_getAtPos(pf->fp, pos, &buf32, sizeof(buf32)); |
43 | 4178 LE32_CPU(buf32); |
4179 return buf32; | |
4180 } | |
16 | 4181 } |
4182 | |
4183 | |
46 | 4184 int pst_getAtPos(FILE *fp, off_t pos, void* buf, size_t size) { |
4185 DEBUG_ENT("pst_getAtPos"); | |
43 | 4186 if (fseek(fp, pos, SEEK_SET) == -1) { |
4187 DEBUG_RET(); | |
4188 return 1; | |
4189 } | |
47 | 4190 if (fread(buf, (size_t)1, size, fp) < size) { |
43 | 4191 DEBUG_RET(); |
4192 return 2; | |
4193 } | |
4194 DEBUG_RET(); | |
4195 return 0; | |
16 | 4196 } |
4197 | |
4198 | |
46 | 4199 int pst_get (FILE *fp, void *buf, size_t size) { |
4200 DEBUG_ENT("pst_get"); | |
47 | 4201 if (fread(buf, (size_t)1, size, fp) < size) { |
43 | 4202 DEBUG_RET(); |
4203 return 1; | |
4204 } | |
4205 DEBUG_RET(); | |
4206 return 0; | |
16 | 4207 } |
4208 | |
4209 | |
50 | 4210 /** |
4211 * Get an ID block from file using _pst_ff_getIDblock and decrypt if necessary | |
4212 * @param pf PST file structure | |
4213 * @param id ID of block to retrieve | |
4214 * @param b Reference to pointer that will be set to new block. Any memory | |
4215 pointed to by buffer will be free()d beforehand | |
4216 * @return Size of block pointed to by *b | |
4217 */ | |
46 | 4218 size_t pst_ff_getIDblock_dec(pst_file *pf, uint64_t id, unsigned char **b) { |
43 | 4219 size_t r; |
46 | 4220 int noenc = (int)(id & 2); // disable encryption |
4221 DEBUG_ENT("pst_ff_getIDblock_dec"); | |
43 | 4222 DEBUG_INDEX(("for id %#x\n", id)); |
46 | 4223 r = pst_ff_getIDblock(pf, id, b); |
4224 if ((pf->encryption) && !(noenc)) { | |
4225 (void)pst_decrypt(*b, r, pf->encryption); | |
43 | 4226 } |
4227 DEBUG_HEXDUMPC(*b, r, 16); | |
4228 DEBUG_RET(); | |
4229 return r; | |
4230 } | |
4231 | |
4232 | |
50 | 4233 /** |
4234 * Read a block of data from file into memory | |
4235 * @param pf PST file | |
4236 * @param id identifier of block to read | |
4237 * @param b reference to pointer to buffer. If this pointer | |
4238 is non-NULL, it will first be free()d | |
4239 * @return size of block read into memory | |
4240 */ | |
46 | 4241 size_t pst_ff_getIDblock(pst_file *pf, uint64_t id, unsigned char** b) { |
43 | 4242 pst_index_ll *rec; |
46 | 4243 size_t rsize = 0; |
4244 DEBUG_ENT("pst_ff_getIDblock"); | |
4245 if ((rec = pst_getID(pf, id)) == NULL) { | |
48 | 4246 DEBUG_INDEX(("Cannot find ID %#llx\n", id)); |
43 | 4247 DEBUG_RET(); |
4248 return 0; | |
4249 } | |
46 | 4250 (void)fseek(pf->fp, rec->offset, SEEK_SET); |
43 | 4251 if (*b) { |
4252 DEBUG_INDEX(("freeing old memory in b\n")); | |
4253 free(*b); | |
4254 } | |
4255 | |
48 | 4256 DEBUG_INDEX(("id = %#llx, record size = %#x, offset = %#x\n", id, rec->size, rec->offset)); |
43 | 4257 *b = (char*) xmalloc(rec->size+1); |
47 | 4258 rsize = fread(*b, (size_t)1, rec->size, pf->fp); |
43 | 4259 if (rsize != rec->size) { |
4260 DEBUG_WARN(("Didn't read all the size. fread returned less [%i instead of %i]\n", rsize, rec->size)); | |
4261 if (feof(pf->fp)) { | |
4262 DEBUG_WARN(("We tried to read past the end of the file [offset %#x, size %#x]\n", rec->offset, rec->size)); | |
4263 } else if (ferror(pf->fp)) { | |
4264 DEBUG_WARN(("Some error occured on the file stream\n")); | |
4265 } else { | |
4266 DEBUG_WARN(("No error has been set on the file stream\n")); | |
4267 } | |
4268 } | |
4269 DEBUG_RET(); | |
4270 return rsize; | |
16 | 4271 } |
4272 | |
4273 | |
4274 #define PST_PTR_BLOCK_SIZE 0x120 | |
46 | 4275 size_t pst_ff_getID2block(pst_file *pf, uint64_t id2, pst_index2_ll *id2_head, unsigned char** buf) { |
50 | 4276 size_t ret; |
43 | 4277 pst_index_ll* ptr; |
49 | 4278 pst_holder h = {buf, NULL, 0, "", 0}; |
46 | 4279 DEBUG_ENT("pst_ff_getID2block"); |
4280 ptr = pst_getID2(id2_head, id2); | |
43 | 4281 |
4282 if (!ptr) { | |
4283 DEBUG_INDEX(("Cannot find id2 value %#x\n", id2)); | |
4284 DEBUG_RET(); | |
4285 return 0; | |
4286 } | |
50 | 4287 ret = pst_ff_getID2data(pf, ptr, &h); |
43 | 4288 DEBUG_RET(); |
50 | 4289 return ret; |
16 | 4290 } |
4291 | |
4292 | |
49 | 4293 size_t pst_ff_getID2data(pst_file *pf, pst_index_ll *ptr, pst_holder *h) { |
46 | 4294 size_t ret; |
43 | 4295 unsigned char *b = NULL, *t; |
46 | 4296 DEBUG_ENT("pst_ff_getID2data"); |
43 | 4297 if (!(ptr->id & 0x02)) { |
46 | 4298 ret = pst_ff_getIDblock_dec(pf, ptr->id, &b); |
43 | 4299 if (h->buf) { |
4300 *(h->buf) = b; | |
4301 } else if ((h->base64 == 1) && h->fp) { | |
4302 t = base64_encode(b, ret); | |
4303 if (t) { | |
47 | 4304 (void)pst_fwrite(t, (size_t)1, strlen(t), h->fp); |
43 | 4305 free(t); // caught by valgrind |
4306 } | |
4307 free(b); | |
4308 } else if (h->fp) { | |
47 | 4309 (void)pst_fwrite(b, (size_t)1, ret, h->fp); |
43 | 4310 free(b); |
46 | 4311 } else { |
4312 // h-> does not specify any output | |
43 | 4313 } |
46 | 4314 |
43 | 4315 } else { |
4316 // here we will assume it is a block that points to others | |
4317 DEBUG_READ(("Assuming it is a multi-block record because of it's id\n")); | |
46 | 4318 ret = pst_ff_compile_ID(pf, ptr->id, h, (size_t)0); |
43 | 4319 } |
4320 if (h->buf && *h->buf) | |
4321 (*(h->buf))[ret]='\0'; | |
4322 DEBUG_RET(); | |
4323 return ret; | |
16 | 4324 } |
4325 | |
4326 | |
49 | 4327 size_t pst_ff_compile_ID(pst_file *pf, uint64_t id, pst_holder *h, size_t size) { |
43 | 4328 size_t z, a; |
4329 uint16_t count, y; | |
4330 uint32_t x, b; | |
4331 unsigned char * buf3 = NULL, *buf2 = NULL, *t; | |
4332 unsigned char fdepth; | |
50 | 4333 unsigned char *b_ptr; |
4334 pst_block_hdr block_hdr; | |
4335 pst_table3_rec table3_rec; //for type 3 (0x0101) blocks | |
43 | 4336 |
46 | 4337 DEBUG_ENT("pst_ff_compile_ID"); |
4338 a = pst_ff_getIDblock(pf, id, &buf3); | |
43 | 4339 if (!a) { |
4340 if (buf3) free(buf3); | |
4341 return 0; | |
4342 } | |
50 | 4343 DEBUG_HEXDUMPC(buf3, a, 0x10); |
4344 memcpy(&block_hdr, buf3, sizeof(block_hdr)); | |
4345 LE16_CPU(block_hdr.index_offset); | |
4346 LE16_CPU(block_hdr.type); | |
4347 LE32_CPU(block_hdr.offset); | |
4348 DEBUG_EMAIL(("block header (index_offset=%#hx, type=%#hx, offset=%#x)\n", block_hdr.index_offset, block_hdr.type, block_hdr.offset)); | |
4349 | |
4350 if (block_hdr.index_offset != (uint16_t)0x0101) { //type 3 | |
4351 DEBUG_WARN(("WARNING: not a type 0x0101 buffer, Treating as normal buffer\n")); | |
46 | 4352 if (pf->encryption) (void)pst_decrypt(buf3, a, pf->encryption); |
43 | 4353 if (h->buf) |
4354 *(h->buf) = buf3; | |
4355 else if (h->base64 == 1 && h->fp) { | |
4356 t = base64_encode(buf3, a); | |
4357 if (t) { | |
47 | 4358 (void)pst_fwrite(t, (size_t)1, strlen(t), h->fp); |
43 | 4359 free(t); // caught by valgrind |
4360 } | |
4361 free(buf3); | |
4362 } else if (h->fp) { | |
47 | 4363 (void)pst_fwrite(buf3, (size_t)1, a, h->fp); |
43 | 4364 free(buf3); |
46 | 4365 } else { |
4366 // h-> does not specify any output | |
43 | 4367 } |
4368 DEBUG_RET(); | |
4369 return a; | |
4370 } | |
50 | 4371 count = block_hdr.type; |
4372 b_ptr = buf3 + 8; | |
4373 for (y=0; y<count; y++) { | |
4374 b_ptr += pst_decode_type3(pf, &table3_rec, b_ptr); | |
4375 z = pst_ff_getIDblock_dec(pf, table3_rec.id, &buf2); | |
4376 if (!z) { | |
4377 DEBUG_WARN(("call to getIDblock returned zero %i\n", z)); | |
4378 if (buf2) free(buf2); | |
4379 free(buf3); | |
4380 return z; | |
4381 } | |
4382 if (h->buf) { | |
4383 *(h->buf) = realloc(*(h->buf), size+z+1); | |
4384 DEBUG_READ(("appending read data of size %i onto main buffer from pos %i\n", z, size)); | |
4385 memcpy(&((*(h->buf))[size]), buf2, z); | |
4386 } else if ((h->base64 == 1) && h->fp) { | |
4387 // include any byte left over from the last one encoding | |
4388 buf2 = (char*)realloc(buf2, z+h->base64_extra); | |
4389 memmove(buf2+h->base64_extra, buf2, z); | |
4390 memcpy(buf2, h->base64_extra_chars, h->base64_extra); | |
4391 z += h->base64_extra; | |
4392 | |
4393 b = z % 3; // find out how many bytes will be left over after the encoding. | |
4394 // and save them | |
4395 memcpy(h->base64_extra_chars, &(buf2[z-b]), b); | |
4396 h->base64_extra = b; | |
4397 t = base64_encode(buf2, z-b); | |
4398 if (t) { | |
4399 DEBUG_READ(("writing %i bytes to file as base64 [%i]. Currently %i\n", z, strlen(t), size)); | |
4400 (void)pst_fwrite(t, (size_t)1, strlen(t), h->fp); | |
4401 free(t); // caught by valgrind | |
43 | 4402 } |
50 | 4403 } else if (h->fp) { |
4404 DEBUG_READ(("writing %i bytes to file. Currently %i\n", z, size)); | |
4405 (void)pst_fwrite(buf2, (size_t)1, z, h->fp); | |
4406 } else { | |
4407 // h-> does not specify any output | |
43 | 4408 } |
50 | 4409 size += z; |
43 | 4410 } |
4411 free(buf3); | |
4412 if (buf2) free(buf2); | |
4413 DEBUG_RET(); | |
4414 return size; | |
16 | 4415 } |
4416 | |
4417 | |
4418 #ifdef _MSC_VER | |
4419 char * fileTimeToAscii(const FILETIME* filetime) { | |
43 | 4420 time_t t; |
4421 DEBUG_ENT("fileTimeToAscii"); | |
4422 t = fileTimeToUnixTime(filetime, 0); | |
4423 if (t == -1) | |
4424 DEBUG_WARN(("ERROR time_t varible that was produced, is -1\n")); | |
4425 DEBUG_RET(); | |
4426 return ctime(&t); | |
16 | 4427 } |
4428 | |
4429 | |
4430 time_t fileTimeToUnixTime(const FILETIME* filetime, DWORD *x) { | |
43 | 4431 SYSTEMTIME s; |
4432 struct tm t; | |
4433 DEBUG_ENT("fileTimeToUnixTime"); | |
4434 memset (&t, 0, sizeof(struct tm)); | |
4435 FileTimeToSystemTime(filetime, &s); | |
4436 t.tm_year = s.wYear-1900; // this is what is required | |
4437 t.tm_mon = s.wMonth-1; // also required! It made me a bit confused | |
4438 t.tm_mday = s.wDay; | |
4439 t.tm_hour = s.wHour; | |
4440 t.tm_min = s.wMinute; | |
4441 t.tm_sec = s.wSecond; | |
4442 DEBUG_RET(); | |
4443 return mktime(&t); | |
16 | 4444 } |
4445 | |
4446 | |
4447 struct tm * fileTimeToStructTM (const FILETIME *filetime) { | |
43 | 4448 time_t t1; |
4449 t1 = fileTimeToUnixTime(filetime, 0); | |
4450 return gmtime(&t1); | |
16 | 4451 } |
4452 | |
4453 | |
4454 #endif //_MSC_VER | |
4455 | |
46 | 4456 int pst_stricmp(char *a, char *b) { |
43 | 4457 // compare strings case-insensitive. |
4458 // returns -1 if a < b, 0 if a==b, 1 if a > b | |
4459 while(*a != '\0' && *b != '\0' && toupper(*a)==toupper(*b)) { | |
4460 a++; b++; | |
4461 } | |
4462 if (toupper(*a) == toupper(*b)) | |
4463 return 0; | |
4464 else if (toupper(*a) < toupper(*b)) | |
4465 return -1; | |
4466 else | |
4467 return 1; | |
16 | 4468 } |
4469 | |
4470 | |
46 | 4471 int pst_strincmp(char *a, char *b, size_t x) { |
43 | 4472 // compare upto x chars in string a and b case-insensitively |
4473 // returns -1 if a < b, 0 if a==b, 1 if a > b | |
46 | 4474 size_t y = 0; |
43 | 4475 while (*a != '\0' && *b != '\0' && y < x && toupper(*a)==toupper(*b)) { |
4476 a++; b++; y++; | |
4477 } | |
4478 // if we have reached the end of either string, or a and b still match | |
4479 if (*a == '\0' || *b == '\0' || toupper(*a)==toupper(*b)) | |
4480 return 0; | |
4481 else if (toupper(*a) < toupper(*b)) | |
4482 return -1; | |
4483 else | |
4484 return 1; | |
16 | 4485 } |
4486 | |
4487 | |
4488 size_t pst_fwrite(const void*ptr, size_t size, size_t nmemb, FILE*stream) { | |
43 | 4489 size_t r; |
4490 DEBUG_ENT("pst_fwrite"); | |
4491 if (ptr) | |
4492 r = fwrite(ptr, size, nmemb, stream); | |
4493 else { | |
4494 r = 0; | |
4495 DEBUG_WARN(("An attempt to write a NULL Pointer was made\n")); | |
4496 } | |
4497 DEBUG_RET(); | |
4498 return r; | |
16 | 4499 } |
4500 | |
4501 | |
47 | 4502 char * pst_wide_to_single(char *wt, size_t size) { |
43 | 4503 // returns the first byte of each wide char. the size is the number of bytes in source |
4504 char *x, *y; | |
46 | 4505 DEBUG_ENT("pst_wide_to_single"); |
43 | 4506 x = xmalloc((size/2)+1); |
4507 y = x; | |
4508 while (size != 0 && *wt != '\0') { | |
4509 *y = *wt; | |
4510 wt+=2; | |
4511 size -= 2; | |
4512 y++; | |
4513 } | |
4514 *y = '\0'; | |
4515 DEBUG_RET(); | |
4516 return x; | |
16 | 4517 } |
4518 | |
43 | 4519 |
4520 char *pst_rfc2426_escape(char *str) { | |
48 | 4521 static char* buf = NULL; |
4522 static size_t buflen = 0; | |
43 | 4523 char *ret, *a, *b; |
47 | 4524 size_t x = 0; |
4525 int y, z; | |
43 | 4526 DEBUG_ENT("rfc2426_escape"); |
4527 if (!str) | |
4528 ret = str; | |
4529 else { | |
4530 | |
4531 // calculate space required to escape all the following characters | |
4532 y = pst_chr_count(str, ',') | |
4533 + pst_chr_count(str, '\\') | |
4534 + pst_chr_count(str, ';') | |
4535 + pst_chr_count(str, '\n'); | |
4536 z = pst_chr_count(str, '\r'); | |
4537 if (y == 0 && z == 0) | |
4538 // there isn't any extra space required | |
4539 ret = str; | |
4540 else { | |
4541 x = strlen(str) + y - z + 1; // don't forget room for the NUL | |
48 | 4542 if (x > buflen) { |
4543 buf = (char*) realloc(buf, x); | |
4544 buflen = x; | |
4545 } | |
43 | 4546 a = str; |
4547 b = buf; | |
4548 while (*a != '\0') { | |
4549 switch (*a) { | |
4550 case ',' : | |
4551 case '\\': | |
4552 case ';' : | |
4553 *(b++) = '\\'; | |
4554 *b = *a; | |
4555 break; | |
4556 case '\n': // newlines are encoded as "\n" | |
4557 *(b++) = '\\'; | |
4558 *b = 'n'; | |
4559 break; | |
4560 case '\r': // skip cr | |
4561 b--; | |
4562 break; | |
4563 default: | |
4564 *b=*a; | |
4565 } | |
4566 b++; | |
4567 a++; | |
4568 } | |
4569 *b = '\0'; // NUL-terminate the string (buf) | |
4570 ret = buf; | |
4571 } | |
4572 } | |
4573 DEBUG_RET(); | |
4574 return ret; | |
4575 } | |
4576 | |
4577 | |
4578 int pst_chr_count(char *str, char x) { | |
4579 int r = 0; | |
46 | 4580 while (*str) { |
4581 if (*str == x) r++; | |
43 | 4582 str++; |
4583 } | |
4584 return r; | |
4585 } | |
4586 | |
4587 | |
4588 char *pst_rfc2425_datetime_format(FILETIME *ft) { | |
47 | 4589 static char buffer[30]; |
43 | 4590 struct tm *stm = NULL; |
4591 DEBUG_ENT("rfc2425_datetime_format"); | |
4592 stm = fileTimeToStructTM(ft); | |
47 | 4593 if (strftime(buffer, sizeof(buffer), "%Y-%m-%dT%H:%M:%SZ", stm)==0) { |
43 | 4594 DEBUG_INFO(("Problem occured formatting date\n")); |
4595 } | |
4596 DEBUG_RET(); | |
4597 return buffer; | |
4598 } | |
4599 | |
4600 | |
4601 char *pst_rfc2445_datetime_format(FILETIME *ft) { | |
47 | 4602 static char buffer[30]; |
43 | 4603 struct tm *stm = NULL; |
4604 DEBUG_ENT("rfc2445_datetime_format"); | |
4605 stm = fileTimeToStructTM(ft); | |
47 | 4606 if (strftime(buffer, sizeof(buffer), "%Y%m%dT%H%M%SZ", stm)==0) { |
43 | 4607 DEBUG_INFO(("Problem occured formatting date\n")); |
4608 } | |
4609 DEBUG_RET(); | |
4610 return buffer; | |
4611 } | |
4612 | |
4613 |