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