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