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