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