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