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