Mercurial > libpst
annotate src/libpst.c @ 33:12cac756bc05 stable-0-5-5
enable -d option, but if not specified, don't generate a debug file
author | carl |
---|---|
date | Tue, 10 Jul 2007 20:23:55 -0700 |
parents | b88ceb81dba2 |
children | 07177825c91b |
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{ | |
47 int32_t start; | |
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 | |
299 x = _pst_build_id_ptr(pf, pf->index1, 0, pf->index1_count, -1, INT32_MAX); | |
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 | |
470 int32_t _pst_build_id_ptr(pst_file *pf, int32_t offset, int32_t depth, int32_t linku1, int32_t start_val, int32_t end_val) { | |
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; | |
475 int32_t old = start_val; | |
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 | |
533 if ((start_val != -1) && (index.id != start_val)) { | |
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 | |
578 if (start_val != -1 && table.start != start_val) { | |
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); | |
16 | 1165 num_recs = 1; // only going to one object in these blocks |
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 | |
1441 /* free(list->items[x]->data); \ | |
1442 list->items[x]->data=NULL; \*/ | |
1443 | |
1444 //#define INC_CHECK_X() { if (++x >= list->count_item) break; } | |
1445 #define NULL_CHECK(x) { if (!x) { DEBUG_EMAIL(("NULL_CHECK: Null Found\n")); break;} } | |
1446 | |
1447 #define MOVE_NEXT(targ) { \ | |
1448 if (next){\ | |
1449 if (!targ) {\ | |
1450 DEBUG_EMAIL(("MOVE_NEXT: Target is NULL. Will stop processing this option\n"));\ | |
1451 break;\ | |
1452 }\ | |
1453 targ = targ->next;\ | |
1454 if (!targ) {\ | |
1455 DEBUG_EMAIL(("MOVE_NEXT: Target is NULL after next. Will stop processing this option\n"));\ | |
1456 break;\ | |
1457 }\ | |
1458 next=0;\ | |
1459 }\ | |
1460 } | |
1461 | |
1462 | |
1463 int32_t _pst_process(pst_num_array *list , pst_item *item) { | |
1464 int32_t x, t; | |
1465 int32_t next = 0; | |
1466 pst_item_attach *attach; | |
1467 pst_item_extra_field *ef; | |
1468 | |
1469 DEBUG_ENT("_pst_process"); | |
1470 if (!item) { | |
1471 DEBUG_EMAIL(("item cannot be NULL.\n")); | |
1472 DEBUG_RET(); | |
1473 return -1; | |
1474 } | |
1475 | |
28 | 1476 attach = item->attach; // a working variable |
16 | 1477 |
1478 while (list) { | |
1479 x = 0; | |
1480 while (x < list->count_item) { | |
1481 // check here to see if the id is one that is mapped. | |
1482 DEBUG_EMAIL(("#%d - id: %#x type: %#x length: %#x\n", x, list->items[x]->id, list->items[x]->type, list->items[x]->size)); | |
1483 | |
1484 switch (list->items[x]->id) { | |
1485 case PST_ATTRIB_HEADER: // CUSTOM attribute for saying the Extra Headers | |
1486 DEBUG_EMAIL(("Extra Field - ")); | |
1487 ef = (pst_item_extra_field*) xmalloc(sizeof(pst_item_extra_field)); | |
1488 memset(ef, 0, sizeof(pst_item_extra_field)); | |
1489 ef->field_name = (char*) xmalloc(strlen(list->items[x]->extra)+1); | |
1490 strcpy(ef->field_name, list->items[x]->extra); | |
1491 LIST_COPY(ef->value, (char*)); | |
1492 ef->next = item->extra_fields; | |
1493 item->extra_fields = ef; | |
1494 DEBUG_EMAIL(("\"%s\" = \"%s\"\n", ef->field_name, ef->value)); | |
1495 break; | |
1496 case 0x0002: // PR_ALTERNATE_RECIPIENT_ALLOWED | |
1497 // If set to true, the sender allows this email to be autoforwarded | |
1498 DEBUG_EMAIL(("AutoForward allowed - ")); | |
1499 MALLOC_EMAIL(item); | |
1500 if (*((short int*)list->items[x]->data) != 0) { | |
1501 DEBUG_EMAIL(("True\n")); | |
1502 item->email->autoforward = 1; | |
1503 } else { | |
1504 DEBUG_EMAIL(("False\n")); | |
1505 item->email->autoforward = -1; | |
1506 } | |
1507 // INC_CHECK_X(); | |
1508 break; | |
1509 case 0x0003: // Extended Attributes table | |
1510 DEBUG_EMAIL(("Extended Attributes Table - NOT PROCESSED\n")); | |
1511 break; | |
1512 case 0x0017: // PR_IMPORTANCE | |
1513 // How important the sender deems it to be | |
1514 // 0 - Low | |
1515 // 1 - Normal | |
1516 // 2 - High | |
1517 | |
1518 DEBUG_EMAIL(("Importance Level - ")); | |
1519 MALLOC_EMAIL(item); | |
1520 memcpy(&(item->email->importance), list->items[x]->data, sizeof(item->email->importance)); | |
1521 LE32_CPU(item->email->importance); | |
1522 t = item->email->importance; | |
1523 DEBUG_EMAIL(("%s [%i]\n", (t==0?"Low":(t==1?"Normal":"High")), t)); | |
1524 // INC_CHECK_X(); | |
1525 break; | |
1526 case 0x001A: // PR_MESSAGE_CLASS Ascii type of messages - NOT FOLDERS | |
1527 // must be case insensitive | |
1528 DEBUG_EMAIL(("IPM.x - ")); | |
1529 LIST_COPY(item->ascii_type, (char*)); | |
1530 if (pst_strincmp("IPM.Note", item->ascii_type, 8) == 0) | |
1531 // the string begins with IPM.Note... | |
1532 item->type = PST_TYPE_NOTE; | |
1533 else if (pst_stricmp("IPM", item->ascii_type) == 0) | |
1534 // the whole string is just IPM | |
1535 item->type = PST_TYPE_NOTE; | |
1536 else if (pst_strincmp("IPM.Contact", item->ascii_type, 11) == 0) | |
1537 // the string begins with IPM.Contact... | |
1538 item->type = PST_TYPE_CONTACT; | |
1539 else if (pst_strincmp("REPORT.IPM.Note", item->ascii_type, 15) == 0) | |
1540 // the string begins with the above | |
1541 item->type = PST_TYPE_REPORT; | |
1542 else if (pst_strincmp("IPM.Activity", item->ascii_type, 12) == 0) | |
1543 item->type = PST_TYPE_JOURNAL; | |
1544 else if (pst_strincmp("IPM.Appointment", item->ascii_type, 15) == 0) | |
1545 item->type = PST_TYPE_APPOINTMENT; | |
1546 else | |
1547 item->type = PST_TYPE_OTHER; | |
1548 | |
1549 DEBUG_EMAIL(("%s\n", item->ascii_type)); | |
1550 // INC_CHECK_X(); //increment x here so that the next if statement has a chance of matching the next item | |
1551 break; | |
1552 case 0x0023: // PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED | |
1553 // set if the sender wants a delivery report from all recipients | |
1554 DEBUG_EMAIL(("Global Delivery Report - ")); | |
1555 MALLOC_EMAIL(item); | |
1556 if (*(int16_t*)list->items[x]->data != 0) { | |
1557 DEBUG_EMAIL(("True\n")); | |
1558 item->email->delivery_report = 1; | |
1559 } else { | |
1560 DEBUG_EMAIL(("False\n")); | |
1561 item->email->delivery_report = 0; | |
1562 } | |
1563 // INC_CHECK_X(); | |
1564 break; | |
1565 case 0x0026: // PR_PRIORITY | |
1566 // Priority of a message | |
1567 // -1 NonUrgent | |
1568 // 0 Normal | |
1569 // 1 Urgent | |
1570 DEBUG_EMAIL(("Priority - ")); | |
1571 MALLOC_EMAIL(item); | |
1572 memcpy(&(item->email->priority), list->items[x]->data, sizeof(item->email->priority)); | |
1573 LE32_CPU(item->email->priority); | |
1574 t = item->email->priority; | |
1575 DEBUG_EMAIL(("%s [%i]\n", (t<0?"NonUrgent":(t==0?"Normal":"Urgent")), t)); | |
1576 // INC_CHECK_X(); | |
1577 break; | |
1578 case 0x0029:// PR_READ_RECEIPT_REQUESTED | |
1579 DEBUG_EMAIL(("Read Receipt - ")); | |
1580 MALLOC_EMAIL(item); | |
1581 if (*(short int*)list->items[x]->data != 0) { | |
1582 DEBUG_EMAIL(("True\n")); | |
1583 item->email->read_receipt = 1; | |
1584 } else { | |
1585 DEBUG_EMAIL(("False\n")); | |
1586 item->email->read_receipt = 0; | |
1587 } | |
1588 // INC_CHECK_X(); | |
1589 break; | |
1590 case 0x002B: // PR_RECIPIENT_REASSIGNMENT_PROHIBITED | |
1591 DEBUG_EMAIL(("Reassignment Prohibited (Private) - ")); | |
1592 if (*(short int*)list->items[x]->data != 0) { | |
1593 DEBUG_EMAIL(("True\n")); | |
1594 item->private_member = 1; | |
1595 } else { | |
1596 DEBUG_EMAIL(("False\n")); | |
1597 item->private_member = 0; | |
1598 } | |
1599 break; | |
1600 case 0x002E: // PR_ORIGINAL_SENSITIVITY | |
1601 // the sensitivity of the message before being replied to or forwarded | |
1602 // 0 - None | |
1603 // 1 - Personal | |
1604 // 2 - Private | |
1605 // 3 - Company Confidential | |
1606 DEBUG_EMAIL(("Original Sensitivity - ")); | |
1607 MALLOC_EMAIL(item); | |
1608 memcpy(&(item->email->orig_sensitivity), list->items[x]->data, sizeof(item->email->orig_sensitivity)); | |
1609 LE32_CPU(item->email->orig_sensitivity); | |
1610 t = item->email->orig_sensitivity; | |
1611 DEBUG_EMAIL(("%s [%i]\n", (t==0?"None":(t==1?"Personal": | |
1612 (t==2?"Private":"Company Confidential"))), t)); | |
1613 // INC_CHECK_X(); | |
1614 break; | |
1615 case 0x0036: // PR_SENSITIVITY | |
1616 // sender's opinion of the sensitivity of an email | |
1617 // 0 - None | |
1618 // 1 - Personal | |
1619 // 2 - Private | |
1620 // 3 - Company Confidiential | |
1621 DEBUG_EMAIL(("Sensitivity - ")); | |
1622 MALLOC_EMAIL(item); | |
1623 memcpy(&(item->email->sensitivity), list->items[x]->data, sizeof(item->email->sensitivity)); | |
1624 LE32_CPU(item->email->sensitivity); | |
1625 t = item->email->sensitivity; | |
1626 DEBUG_EMAIL(("%s [%i]\n", (t==0?"None":(t==1?"Personal": | |
1627 (t==2?"Private":"Company Confidential"))), t)); | |
1628 // INC_CHECK_X(); | |
1629 break; | |
1630 case 0x0037: // PR_SUBJECT raw subject | |
1631 // if (list->items[x]->id == 0x0037) { | |
1632 DEBUG_EMAIL(("Raw Subject - ")); | |
1633 MALLOC_EMAIL(item); | |
1634 item->email->subject = (pst_item_email_subject*) realloc(item->email->subject, sizeof(pst_item_email_subject)); | |
1635 memset(item->email->subject, 0, sizeof(pst_item_email_subject)); | |
1636 DEBUG_EMAIL((" [size = %i] ", list->items[x]->size)); | |
1637 if (list->items[x]->size > 0) { | |
1638 if (isprint(list->items[x]->data[0])) { | |
1639 // then there are no control bytes at the front | |
1640 item->email->subject->off1 = 0; | |
1641 item->email->subject->off2 = 0; | |
1642 item->email->subject->subj = realloc(item->email->subject->subj, list->items[x]->size+1); | |
1643 memset(item->email->subject->subj, 0, list->items[x]->size+1); | |
1644 memcpy(item->email->subject->subj, list->items[x]->data, list->items[x]->size); | |
1645 } else { | |
1646 DEBUG_EMAIL(("Raw Subject has control codes\n")); | |
1647 // there might be some control bytes in the first and second bytes | |
1648 item->email->subject->off1 = list->items[x]->data[0]; | |
1649 item->email->subject->off2 = list->items[x]->data[1]; | |
1650 item->email->subject->subj = realloc(item->email->subject->subj, (list->items[x]->size-2)+1); | |
1651 memset(item->email->subject->subj, 0, list->items[x]->size-1); | |
1652 memcpy(item->email->subject->subj, &(list->items[x]->data[2]), list->items[x]->size-2); | |
1653 } | |
1654 DEBUG_EMAIL(("%s\n", item->email->subject->subj)); | |
1655 } else { | |
1656 // obviously outlook has decided not to be straight with this one. | |
1657 item->email->subject->off1 = 0; | |
1658 item->email->subject->off2 = 0; | |
1659 item->email->subject = NULL; | |
1660 DEBUG_EMAIL(("NULL subject detected\n")); | |
1661 } | |
1662 break; | |
1663 // INC_CHECK_X(); | |
1664 case 0x0039: // PR_CLIENT_SUBMIT_TIME Date Email Sent/Created | |
1665 DEBUG_EMAIL(("Date sent - ")); | |
1666 MALLOC_EMAIL(item); | |
1667 LIST_COPY(item->email->sent_date, (FILETIME*)); | |
1668 LE32_CPU(item->email->sent_date->dwLowDateTime); | |
1669 LE32_CPU(item->email->sent_date->dwHighDateTime); | |
1670 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->sent_date))); | |
1671 // INC_CHECK_X(); | |
1672 break; | |
1673 case 0x003B: // PR_SENT_REPRESENTING_SEARCH_KEY Sender address 1 | |
1674 DEBUG_EMAIL(("Sent on behalf of address 1 - ")); | |
1675 MALLOC_EMAIL(item); | |
1676 LIST_COPY(item->email->outlook_sender, (char*)); | |
1677 DEBUG_EMAIL(("%s\n", item->email->outlook_sender)); | |
1678 // INC_CHECK_X(); | |
1679 break; | |
1680 case 0x003F: // PR_RECEIVED_BY_ENTRYID Structure containing Recipient | |
1681 DEBUG_EMAIL(("Recipient Structure 1 -- NOT HANDLED\n")); | |
1682 // INC_CHECK_X(); | |
1683 break; | |
1684 case 0x0040: // PR_RECEIVED_BY_NAME Name of Recipient Structure | |
1685 DEBUG_EMAIL(("Received By Name 1 -- NOT HANDLED\n")); | |
1686 //INC_CHECK_X(); | |
1687 break; | |
1688 case 0x0041: // PR_SENT_REPRESENTING_ENTRYID Structure containing Sender | |
1689 DEBUG_EMAIL(("Sent on behalf of Structure 1 -- NOT HANDLED\n")); | |
1690 //INC_CHECK_X(); | |
1691 break; | |
1692 case 0x0042: // PR_SENT_REPRESENTING_NAME Name of Sender Structure | |
1693 DEBUG_EMAIL(("Sent on behalf of Structure Name - ")); | |
1694 MALLOC_EMAIL(item); | |
1695 LIST_COPY(item->email->outlook_sender_name, (char*)); | |
1696 DEBUG_EMAIL(("%s\n", item->email->outlook_sender_name)); | |
1697 //INC_CHECK_X(); | |
1698 break; | |
1699 case 0x0043: // PR_RCVD_REPRESENTING_ENTRYID Recipient Structure 2 | |
1700 DEBUG_EMAIL(("Received on behalf of Structure -- NOT HANDLED\n")); | |
1701 //INC_CHECK_X(); | |
1702 break; | |
1703 case 0x0044: // PR_RCVD_REPRESENTING_NAME Name of Recipient Structure 2 | |
1704 DEBUG_EMAIL(("Received on behalf of Structure Name -- NOT HANDLED\n")); | |
1705 //INC_CHECK_X(); | |
1706 break; | |
1707 case 0x004F: // PR_REPLY_RECIPIENT_ENTRIES Reply-To Structure | |
1708 DEBUG_EMAIL(("Reply-To Structure -- NOT HANDLED\n")); | |
1709 //INC_CHECK_X(); | |
1710 break; | |
1711 case 0x0050: // PR_REPLY_RECIPIENT_NAMES Name of Reply-To Structure | |
1712 DEBUG_EMAIL(("Name of Reply-To Structure -")); | |
1713 MALLOC_EMAIL(item); | |
1714 LIST_COPY(item->email->reply_to, (char*)); | |
1715 DEBUG_EMAIL(("%s\n", item->email->reply_to)); | |
1716 //INC_CHECK_X(); | |
1717 break; | |
1718 case 0x0051: // PR_RECEIVED_BY_SEARCH_KEY Recipient Address 1 | |
1719 DEBUG_EMAIL(("Recipient's Address 1 (Search Key) - ")); | |
1720 MALLOC_EMAIL(item); | |
1721 LIST_COPY (item->email->outlook_recipient, (char*)); | |
1722 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient)); | |
1723 //INC_CHECK_X(); | |
1724 break; | |
1725 case 0x0052: // PR_RCVD_REPRESENTING_SEARCH_KEY Recipient Address 2 | |
1726 DEBUG_EMAIL(("Received on behalf of Address (Search Key) - ")); | |
1727 MALLOC_EMAIL(item); | |
1728 LIST_COPY(item->email->outlook_recipient2, (char*)); | |
1729 DEBUG_EMAIL(("%s\n", item->email->outlook_recipient2)); | |
1730 //INC_CHECK_X(); | |
1731 break; | |
1732 case 0x0057: // PR_MESSAGE_TO_ME | |
1733 // this user is listed explicitly in the TO address | |
1734 DEBUG_EMAIL(("My address in TO field - ")); | |
1735 MALLOC_EMAIL(item); | |
1736 if (*(int16_t*)list->items[x]->data != 0) { | |
1737 DEBUG_EMAIL(("True\n")); | |
1738 item->email->message_to_me = 1; | |
1739 } else { | |
1740 DEBUG_EMAIL(("False\n")); | |
1741 item->email->message_to_me = 0; | |
1742 } | |
1743 //INC_CHECK_X(); | |
1744 break; | |
1745 case 0x0058: // PR_MESSAGE_CC_ME | |
1746 // this user is listed explicitly in the CC address | |
1747 DEBUG_EMAIL(("My address in CC field - ")); | |
1748 MALLOC_EMAIL(item); | |
1749 if (*(int16_t*)list->items[x]->data != 0) { | |
1750 DEBUG_EMAIL(("True\n")); | |
1751 item->email->message_cc_me = 1; | |
1752 } else { | |
1753 DEBUG_EMAIL(("False\n")); | |
1754 item->email->message_cc_me = 0; | |
1755 } | |
1756 //INC_CHECK_X(); | |
1757 break; | |
1758 case 0x0059: //PR_MESSAGE_RECIP_ME | |
1759 // this user appears in TO, CC or BCC address list | |
1760 DEBUG_EMAIL(("Message addressed to me - ")); | |
1761 MALLOC_EMAIL(item); | |
1762 if (*(int16_t*)list->items[x]->data != 0) { | |
1763 DEBUG_EMAIL(("True\n")); | |
1764 item->email->message_recip_me = 1; | |
1765 } else { | |
1766 DEBUG_EMAIL(("False\n")); | |
1767 item->email->message_recip_me = 0; | |
1768 } | |
1769 //INC_CHECK_X(); | |
1770 break; | |
1771 case 0x0063: // PR_RESPONSE_REQUESTED | |
1772 DEBUG_EMAIL(("Response requested - ")); | |
1773 if (*(int16_t*)list->items[x]->data != 0) { | |
1774 DEBUG_EMAIL(("True\n")); | |
1775 item->response_requested = 1; | |
1776 } else { | |
1777 DEBUG_EMAIL(("False\n")); | |
1778 item->response_requested = 0; | |
1779 } | |
1780 break; | |
1781 case 0x0064: // PR_SENT_REPRESENTING_ADDRTYPE Access method for Sender Address | |
1782 DEBUG_EMAIL(("Sent on behalf of address type - ")); | |
1783 MALLOC_EMAIL(item); | |
1784 LIST_COPY(item->email->sender_access, (char*)); | |
1785 DEBUG_EMAIL(("%s\n", item->email->sender_access)); | |
1786 //INC_CHECK_X(); | |
1787 break; | |
1788 case 0x0065: // PR_SENT_REPRESENTING_EMAIL_ADDRESS Sender Address | |
1789 DEBUG_EMAIL(("Sent on behalf of Address - ")); | |
1790 MALLOC_EMAIL(item); | |
1791 LIST_COPY(item->email->sender_address, (char*)); | |
1792 DEBUG_EMAIL(("%s\n", item->email->sender_address)); | |
1793 //INC_CHECK_X(); | |
1794 break; | |
1795 case 0x0070: // PR_CONVERSATION_TOPIC Processed Subject | |
1796 DEBUG_EMAIL(("Processed Subject (Conversation Topic) - ")); | |
1797 MALLOC_EMAIL(item); | |
1798 LIST_COPY(item->email->proc_subject, (char*)); | |
1799 DEBUG_EMAIL(("%s\n", item->email->proc_subject)); | |
1800 //INC_CHECK_X(); | |
1801 break; | |
1802 case 0x0071: // PR_CONVERSATION_INDEX Date 2 | |
1803 DEBUG_EMAIL(("Conversation Index - ")); | |
1804 MALLOC_EMAIL(item); | |
1805 memcpy(&(item->email->conv_index), list->items[x]->data, sizeof(item->email->conv_index)); | |
1806 DEBUG_EMAIL(("%i\n", item->email->conv_index)); | |
1807 //INC_CHECK_X(); | |
1808 break; | |
1809 case 0x0075: // PR_RECEIVED_BY_ADDRTYPE Recipient Access Method | |
1810 DEBUG_EMAIL(("Received by Address type - ")); | |
1811 MALLOC_EMAIL(item); | |
1812 LIST_COPY(item->email->recip_access, (char*)); | |
1813 DEBUG_EMAIL(("%s\n", item->email->recip_access)); | |
1814 //INC_CHECK_X(); | |
1815 break; | |
1816 case 0x0076: // PR_RECEIVED_BY_EMAIL_ADDRESS Recipient Address | |
1817 DEBUG_EMAIL(("Received by Address - ")); | |
1818 MALLOC_EMAIL(item); | |
1819 LIST_COPY(item->email->recip_address, (char*)); | |
1820 DEBUG_EMAIL(("%s\n", item->email->recip_address)); | |
1821 //INC_CHECK_X(); | |
1822 break; | |
1823 case 0x0077: // PR_RCVD_REPRESENTING_ADDRTYPE Recipient Access Method 2 | |
1824 DEBUG_EMAIL(("Received on behalf of Address type - ")); | |
1825 MALLOC_EMAIL(item); | |
1826 LIST_COPY(item->email->recip2_access, (char*)); | |
1827 DEBUG_EMAIL(("%s\n", item->email->recip2_access)); | |
1828 //INC_CHECK_X(); | |
1829 break; | |
1830 case 0x0078: // PR_RCVD_REPRESENTING_EMAIL_ADDRESS Recipient Address 2 | |
1831 DEBUG_EMAIL(("Received on behalf of Address -")); | |
1832 MALLOC_EMAIL(item); | |
1833 LIST_COPY(item->email->recip2_address, (char*)); | |
1834 DEBUG_EMAIL(("%s\n", item->email->recip2_address)); | |
1835 //INC_CHECK_X(); | |
1836 break; | |
1837 case 0x007D: // PR_TRANSPORT_MESSAGE_HEADERS Internet Header | |
1838 DEBUG_EMAIL(("Internet Header - ")); | |
1839 MALLOC_EMAIL(item); | |
1840 LIST_COPY(item->email->header, (char*)); | |
1841 //DEBUG_EMAIL(("%s\n", item->email->header)); | |
1842 DEBUG_EMAIL(("NOT PRINTED\n")); | |
1843 //INC_CHECK_X(); | |
1844 break; | |
1845 case 0x0C17: // PR_REPLY_REQUESTED | |
1846 DEBUG_EMAIL(("Reply Requested - ")); | |
1847 MALLOC_EMAIL(item); | |
1848 if (*(int16_t*)list->items[x]->data != 0) { | |
1849 DEBUG_EMAIL(("True\n")); | |
1850 item->email->reply_requested = 1; | |
1851 } else { | |
1852 DEBUG_EMAIL(("False\n")); | |
1853 item->email->reply_requested = 0; | |
1854 } | |
1855 break; | |
1856 case 0x0C19: // PR_SENDER_ENTRYID Sender Structure 2 | |
1857 DEBUG_EMAIL(("Sender Structure 2 -- NOT HANDLED\n")); | |
1858 //INC_CHECK_X(); | |
1859 break; | |
1860 case 0x0C1A: // PR_SENDER_NAME Name of Sender Structure 2 | |
1861 DEBUG_EMAIL(("Name of Sender Structure 2 -- NOT HANDLED\n")); | |
1862 //INC_CHECK_X(); | |
1863 break; | |
1864 case 0x0C1D: // PR_SENDER_SEARCH_KEY Name of Sender Address 2 | |
1865 DEBUG_EMAIL(("Name of Sender Address 2 (Sender search key) - ")); | |
1866 MALLOC_EMAIL(item); | |
1867 LIST_COPY(item->email->outlook_sender2, (char*)); | |
1868 DEBUG_EMAIL(("%s\n", item->email->outlook_sender2)); | |
1869 //INC_CHECK_X(); | |
1870 break; | |
1871 case 0x0C1E: // PR_SENDER_ADDRTYPE Sender Address 2 access method | |
1872 DEBUG_EMAIL(("Sender Address type - ")); | |
1873 MALLOC_EMAIL(item); | |
1874 LIST_COPY(item->email->sender2_access, (char*)); | |
1875 DEBUG_EMAIL(("%s\n", item->email->sender2_access)); | |
1876 //INC_CHECK_X(); | |
1877 break; | |
1878 case 0x0C1F: // PR_SENDER_EMAIL_ADDRESS Sender Address 2 | |
1879 DEBUG_EMAIL(("Sender Address - ")); | |
1880 MALLOC_EMAIL(item); | |
1881 LIST_COPY(item->email->sender2_address, (char*)); | |
1882 DEBUG_EMAIL(("%s\n", item->email->sender2_address)); | |
1883 //INC_CHECK_X(); | |
1884 break; | |
1885 case 0x0E01: // PR_DELETE_AFTER_SUBMIT | |
1886 // I am not too sure how this works | |
1887 DEBUG_EMAIL(("Delete after submit - ")); | |
1888 MALLOC_EMAIL(item); | |
1889 if (*(int16_t*) list->items[x]->data != 0) { | |
1890 DEBUG_EMAIL(("True\n")); | |
1891 item->email->delete_after_submit = 1; | |
1892 } else { | |
1893 DEBUG_EMAIL(("False\n")); | |
1894 item->email->delete_after_submit = 0; | |
1895 } | |
1896 //INC_CHECK_X(); | |
1897 break; | |
1898 case 0x0E03: // PR_DISPLAY_CC CC Addresses | |
1899 DEBUG_EMAIL(("Display CC Addresses - ")); | |
1900 MALLOC_EMAIL(item); | |
1901 LIST_COPY(item->email->cc_address, (char*)); | |
1902 DEBUG_EMAIL(("%s\n", item->email->cc_address)); | |
1903 //INC_CHECK_X(); | |
1904 break; | |
1905 case 0x0E04: // PR_DISPLAY_TO Address Sent-To | |
1906 DEBUG_EMAIL(("Display Sent-To Address - ")); | |
1907 MALLOC_EMAIL(item); | |
1908 LIST_COPY(item->email->sentto_address, (char*)); | |
1909 DEBUG_EMAIL(("%s\n", item->email->sentto_address)); | |
1910 //INC_CHECK_X(); | |
1911 break; | |
1912 case 0x0E06: // PR_MESSAGE_DELIVERY_TIME Date 3 - Email Arrival Date | |
1913 DEBUG_EMAIL(("Date 3 (Delivery Time) - ")); | |
1914 MALLOC_EMAIL(item); | |
1915 LIST_COPY(item->email->arrival_date, (FILETIME*)); | |
1916 DEBUG_EMAIL(("%s", fileTimeToAscii(item->email->arrival_date))); | |
1917 //INC_CHECK_X(); | |
1918 break; | |
1919 case 0x0E07: // PR_MESSAGE_FLAGS Email Flag | |
1920 // 0x01 - Read | |
1921 // 0x02 - Unmodified | |
1922 // 0x04 - Submit | |
1923 // 0x08 - Unsent | |
1924 // 0x10 - Has Attachments | |
1925 // 0x20 - From Me | |
1926 // 0x40 - Associated | |
1927 // 0x80 - Resend | |
1928 // 0x100 - RN Pending | |
1929 // 0x200 - NRN Pending | |
1930 DEBUG_EMAIL(("Message Flags - ")); | |
1931 MALLOC_EMAIL(item); | |
1932 memcpy(&(item->email->flag), list->items[x]->data, sizeof(item->email->flag)); | |
1933 LE32_CPU(item->email->flag); | |
1934 DEBUG_EMAIL(("%i\n", item->email->flag)); | |
1935 //INC_CHECK_X(); | |
1936 break; | |
1937 case 0x0E08: // PR_MESSAGE_SIZE Total size of a message object | |
1938 DEBUG_EMAIL(("Message Size - ")); | |
1939 memcpy(&(item->message_size), list->items[x]->data, sizeof(item->message_size)); | |
1940 LE32_CPU(item->message_size); | |
1941 DEBUG_EMAIL(("%i [%#x]\n", item->message_size, item->message_size)); | |
1942 //INC_CHECK_X(); | |
1943 break; | |
1944 case 0x0E0A: // PR_SENTMAIL_ENTRYID | |
1945 // folder that this message is sent to after submission | |
1946 DEBUG_EMAIL(("Sentmail EntryID - ")); | |
1947 MALLOC_EMAIL(item); | |
1948 LIST_COPY(item->email->sentmail_folder, (pst_entryid*)); | |
1949 LE32_CPU(item->email->sentmail_folder->id); | |
1950 DEBUG_EMAIL(("[id = %#x]\n", item->email->sentmail_folder->id)); | |
1951 //INC_CHECK_X(); | |
1952 break; | |
1953 case 0x0E1F: // PR_RTF_IN_SYNC | |
1954 // True means that the rtf version is same as text body | |
1955 // False means rtf version is more up-to-date than text body | |
1956 // if this value doesn't exist, text body is more up-to-date than rtf and | |
1957 // cannot update to the rtf | |
1958 DEBUG_EMAIL(("Compressed RTF in Sync - ")); | |
1959 MALLOC_EMAIL(item); | |
1960 if (*(int16_t*)list->items[x]->data != 0) { | |
1961 DEBUG_EMAIL(("True\n")); | |
1962 item->email->rtf_in_sync = 1; | |
1963 } else { | |
1964 DEBUG_EMAIL(("False\n")); | |
1965 item->email->rtf_in_sync = 0; | |
1966 } | |
1967 //INC_CHECK_X(); | |
1968 break; | |
1969 case 0x0E20: // PR_ATTACH_SIZE binary Attachment data in record | |
1970 DEBUG_EMAIL(("Attachment Size - ")); | |
1971 NULL_CHECK(attach); | |
1972 MOVE_NEXT(attach); | |
1973 memcpy(&(attach->size), list->items[x]->data, sizeof(attach->size)); | |
1974 DEBUG_EMAIL(("%i\n", attach->size)); | |
1975 //INC_CHECK_X(); | |
1976 break; | |
1977 case 0x0FF9: // PR_RECORD_KEY Record Header 1 | |
1978 DEBUG_EMAIL(("Record Key 1 - ")); | |
1979 LIST_COPY(item->record_key, (char*)); | |
1980 item->record_key_size = list->items[x]->size; | |
1981 DEBUG_EMAIL_HEXPRINT(item->record_key, item->record_key_size); | |
1982 DEBUG_EMAIL(("\n")); | |
1983 //INC_CHECK_X(); | |
1984 break; | |
1985 case 0x1000: // PR_BODY Plain Text body | |
1986 DEBUG_EMAIL(("Plain Text body - ")); | |
1987 MALLOC_EMAIL(item); | |
1988 LIST_COPY(item->email->body, (char*)); | |
1989 //DEBUG_EMAIL("%s\n", item->email->body); | |
1990 DEBUG_EMAIL(("NOT PRINTED\n")); | |
1991 //INC_CHECK_X(); | |
1992 break; | |
1993 case 0x1006: // PR_RTF_SYNC_BODY_CRC | |
1994 DEBUG_EMAIL(("RTF Sync Body CRC - ")); | |
1995 MALLOC_EMAIL(item); | |
1996 memcpy(&(item->email->rtf_body_crc), list->items[x]->data, sizeof(item->email->rtf_body_crc)); | |
1997 LE32_CPU(item->email->rtf_body_crc); | |
1998 DEBUG_EMAIL(("%#x\n", item->email->rtf_body_crc)); | |
1999 //INC_CHECK_X(); | |
2000 break; | |
2001 case 0x1007: // PR_RTF_SYNC_BODY_COUNT | |
2002 // a count of the *significant* charcters in the rtf body. Doesn't count | |
2003 // whitespace and other ignorable characters | |
2004 DEBUG_EMAIL(("RTF Sync Body character count - ")); | |
2005 MALLOC_EMAIL(item); | |
2006 memcpy(&(item->email->rtf_body_char_count), list->items[x]->data, sizeof(item->email->rtf_body_char_count)); | |
2007 LE32_CPU(item->email->rtf_body_char_count); | |
2008 DEBUG_EMAIL(("%i [%#x]\n", item->email->rtf_body_char_count, item->email->rtf_body_char_count)); | |
2009 //INC_CHECK_X(); | |
2010 break; | |
2011 case 0x1008: // PR_RTF_SYNC_BODY_TAG | |
2012 // the first couple of lines of RTF body so that after modification, then beginning can | |
2013 // once again be found | |
2014 DEBUG_EMAIL(("RTF Sync body tag - ")); | |
2015 MALLOC_EMAIL(item); | |
2016 LIST_COPY(item->email->rtf_body_tag, (char*)); | |
2017 DEBUG_EMAIL(("%s\n", item->email->rtf_body_tag)); | |
2018 //INC_CHECK_X(); | |
2019 break; | |
2020 case 0x1009: // PR_RTF_COMPRESSED | |
2021 // some compression algorithm has been applied to this. At present | |
2022 // it is unknown | |
2023 DEBUG_EMAIL(("RTF Compressed body - ")); | |
2024 MALLOC_EMAIL(item); | |
2025 LIST_COPY(item->email->rtf_compressed, (char*)); | |
2026 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2027 //INC_CHECK_X(); | |
2028 break; | |
2029 case 0x1010: // PR_RTF_SYNC_PREFIX_COUNT | |
2030 // a count of the ignored characters before the first significant character | |
2031 DEBUG_EMAIL(("RTF whitespace prefix count - ")); | |
2032 MALLOC_EMAIL(item); | |
2033 memcpy(&(item->email->rtf_ws_prefix_count), list->items[x]->data, sizeof(item->email->rtf_ws_prefix_count)); | |
2034 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_prefix_count)); | |
2035 //INC_CHECK_X(); | |
2036 break; | |
2037 case 0x1011: // PR_RTF_SYNC_TRAILING_COUNT | |
2038 // a count of the ignored characters after the last significant character | |
2039 DEBUG_EMAIL(("RTF whitespace tailing count - ")); | |
2040 MALLOC_EMAIL(item); | |
2041 memcpy(&(item->email->rtf_ws_trailing_count), list->items[x]->data, sizeof(item->email->rtf_ws_trailing_count)); | |
2042 DEBUG_EMAIL(("%i\n", item->email->rtf_ws_trailing_count)); | |
2043 //INC_CHECK_X(); | |
2044 break; | |
2045 case 0x1013: // HTML body | |
2046 DEBUG_EMAIL(("HTML body - ")); | |
2047 MALLOC_EMAIL(item); | |
2048 LIST_COPY(item->email->htmlbody, (char*)); | |
2049 // DEBUG_EMAIL(("%s\n", item->email->htmlbody)); | |
2050 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2051 //INC_CHECK_X(); | |
2052 break; | |
2053 case 0x1035: // Message ID | |
2054 DEBUG_EMAIL(("Message ID - ")); | |
2055 MALLOC_EMAIL(item); | |
2056 LIST_COPY(item->email->messageid, (char*)); | |
2057 DEBUG_EMAIL(("%s\n", item->email->messageid)); | |
2058 //INC_CHECK_X(); | |
2059 break; | |
2060 case 0x1042: // in-reply-to | |
2061 DEBUG_EMAIL(("In-Reply-To - ")); | |
2062 MALLOC_EMAIL(item); | |
2063 LIST_COPY(item->email->in_reply_to, (char*)); | |
2064 DEBUG_EMAIL(("%s\n", item->email->in_reply_to)); | |
2065 //INC_CHECK_X(); | |
2066 break; | |
2067 case 0x1046: // Return Path | |
2068 DEBUG_EMAIL(("Return Path - ")); | |
2069 MALLOC_EMAIL(item); | |
2070 LIST_COPY(item->email->return_path_address, (char*)); | |
2071 DEBUG_EMAIL(("%s\n", item->email->return_path_address)); | |
2072 //INC_CHECK_X(); | |
2073 break; | |
2074 case 0x3001: // PR_DISPLAY_NAME File As | |
2075 DEBUG_EMAIL(("Display Name - ")); | |
2076 LIST_COPY(item->file_as, (char*)); | |
2077 DEBUG_EMAIL(("%s\n", item->file_as)); | |
2078 //INC_CHECK_X(); | |
2079 break; | |
2080 case 0x3002: // PR_ADDRTYPE | |
2081 DEBUG_EMAIL(("Address Type - ")); | |
2082 MALLOC_CONTACT(item); | |
2083 LIST_COPY(item->contact->address1_transport, (char*)); | |
2084 DEBUG_EMAIL(("|%s|\n", item->contact->address1_transport)); | |
2085 //INC_CHECK_X(); | |
2086 break; | |
2087 case 0x3003: // PR_EMAIL_ADDRESS | |
2088 // Contact's email address | |
2089 DEBUG_EMAIL(("Contact Address - ")); | |
2090 MALLOC_CONTACT(item); | |
2091 LIST_COPY(item->contact->address1, (char*)); | |
2092 DEBUG_EMAIL(("|%s|\n", item->contact->address1)); | |
2093 //INC_CHECK_X(); | |
2094 break; | |
2095 case 0x3004: // PR_COMMENT Comment for item - usually folders | |
2096 DEBUG_EMAIL(("Comment - ")); | |
2097 LIST_COPY(item->comment, (char*)); | |
2098 DEBUG_EMAIL(("%s\n", item->comment)); | |
2099 //INC_CHECK_X(); | |
2100 break; | |
2101 case 0x3007: // PR_CREATION_TIME Date 4 - Creation Date? | |
2102 DEBUG_EMAIL(("Date 4 (Item Creation Date) - ")); | |
2103 LIST_COPY(item->create_date, (FILETIME*)); | |
2104 DEBUG_EMAIL(("%s", fileTimeToAscii(item->create_date))); | |
2105 //INC_CHECK_X(); | |
2106 break; | |
2107 case 0x3008: // PR_LAST_MODIFICATION_TIME Date 5 - Modify Date | |
2108 DEBUG_EMAIL(("Date 5 (Modify Date) - ")); | |
2109 LIST_COPY(item->modify_date, (FILETIME*)); | |
2110 DEBUG_EMAIL(("%s", fileTimeToAscii(item->modify_date))); | |
2111 //INC_CHECK_X(); | |
2112 break; | |
2113 case 0x300B: // PR_SEARCH_KEY Record Header 2 | |
2114 DEBUG_EMAIL(("Record Search 2 -- NOT HANDLED\n")); | |
2115 //INC_CHECK_X(); | |
2116 break; | |
2117 case 0x35DF: // PR_VALID_FOLDER_MASK | |
2118 // States which folders are valid for this message store | |
2119 // FOLDER_IPM_SUBTREE_VALID 0x1 | |
2120 // FOLDER_IPM_INBOX_VALID 0x2 | |
2121 // FOLDER_IPM_OUTBOX_VALID 0x4 | |
2122 // FOLDER_IPM_WASTEBOX_VALID 0x8 | |
2123 // FOLDER_IPM_SENTMAIL_VALID 0x10 | |
2124 // FOLDER_VIEWS_VALID 0x20 | |
2125 // FOLDER_COMMON_VIEWS_VALID 0x40 | |
2126 // FOLDER_FINDER_VALID 0x80 | |
2127 DEBUG_EMAIL(("Valid Folder Mask - ")); | |
2128 MALLOC_MESSAGESTORE(item); | |
2129 memcpy(&(item->message_store->valid_mask), list->items[x]->data, sizeof(int)); | |
2130 LE32_CPU(item->message_store->valid_mask); | |
2131 DEBUG_EMAIL(("%i\n", item->message_store->valid_mask)); | |
2132 //INC_CHECK_X(); | |
2133 break; | |
2134 case 0x35E0: // PR_IPM_SUBTREE_ENTRYID Top of Personal Folder Record | |
2135 DEBUG_EMAIL(("Top of Personal Folder Record - ")); | |
2136 MALLOC_MESSAGESTORE(item); | |
2137 LIST_COPY(item->message_store->top_of_personal_folder, (pst_entryid*)); | |
2138 LE32_CPU(item->message_store->top_of_personal_folder->id); | |
2139 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->top_of_personal_folder->id)); | |
2140 //INC_CHECK_X(); | |
2141 break; | |
2142 case 0x35E3: // PR_IPM_WASTEBASKET_ENTRYID Deleted Items Folder Record | |
2143 DEBUG_EMAIL(("Deleted Items Folder record - ")); | |
2144 MALLOC_MESSAGESTORE(item); | |
2145 LIST_COPY(item->message_store->deleted_items_folder, (pst_entryid*)); | |
2146 LE32_CPU(item->message_store->deleted_items_folder->id); | |
2147 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->deleted_items_folder->id)); | |
2148 //INC_CHECK_X(); | |
2149 break; | |
2150 case 0x35E7: // PR_FINDER_ENTRYID Search Root Record | |
2151 DEBUG_EMAIL(("Search Root record - ")); | |
2152 MALLOC_MESSAGESTORE(item); | |
2153 LIST_COPY(item->message_store->search_root_folder, (pst_entryid*)); | |
2154 LE32_CPU(item->message_store->search_root_folder->id); | |
2155 DEBUG_EMAIL(("[id = %#x]\n", item->message_store->search_root_folder->id)); | |
2156 //INC_CHECK_X(); | |
2157 break; | |
2158 case 0x3602: // PR_CONTENT_COUNT Number of emails stored in a folder | |
2159 DEBUG_EMAIL(("Folder Email Count - ")); | |
2160 MALLOC_FOLDER(item); | |
2161 memcpy(&(item->folder->email_count), list->items[x]->data, sizeof(item->folder->email_count)); | |
2162 LE32_CPU(item->folder->email_count); | |
2163 DEBUG_EMAIL(("%i\n", item->folder->email_count)); | |
2164 //INC_CHECK_X(); | |
2165 break; | |
2166 case 0x3603: // PR_CONTENT_UNREAD Number of unread emails | |
2167 DEBUG_EMAIL(("Unread Email Count - ")); | |
2168 MALLOC_FOLDER(item); | |
2169 memcpy(&(item->folder->unseen_email_count), list->items[x]->data, sizeof(item->folder->unseen_email_count)); | |
2170 LE32_CPU(item->folder->unseen_email_count); | |
2171 DEBUG_EMAIL(("%i\n", item->folder->unseen_email_count)); | |
2172 //INC_CHECK_X(); | |
2173 break; | |
2174 case 0x360A: // PR_SUBFOLDERS Has children | |
2175 DEBUG_EMAIL(("Has Subfolders - ")); | |
2176 MALLOC_FOLDER(item); | |
2177 if (*((int32_t*)list->items[x]->data) != 0) { | |
2178 DEBUG_EMAIL(("True\n")); | |
2179 item->folder->subfolder = 1; | |
2180 } else { | |
2181 DEBUG_EMAIL(("False\n")); | |
2182 item->folder->subfolder = 0; | |
2183 } | |
2184 //INC_CHECK_X(); | |
2185 break; | |
2186 case 0x3613: // PR_CONTAINER_CLASS IPF.x | |
2187 DEBUG_EMAIL(("IPF.x - ")); | |
2188 LIST_COPY(item->ascii_type, (char*)); | |
2189 if (strncmp("IPF.Note", item->ascii_type, 8) == 0) | |
2190 item->type = PST_TYPE_NOTE; | |
2191 else if (strncmp("IPF.Contact", item->ascii_type, 11) == 0) | |
2192 item->type = PST_TYPE_CONTACT; | |
2193 else if (strncmp("IPF.Journal", item->ascii_type, 11) == 0) | |
2194 item->type = PST_TYPE_JOURNAL; | |
2195 else if (strncmp("IPF.Appointment", item->ascii_type, 15) == 0) | |
2196 item->type = PST_TYPE_APPOINTMENT; | |
2197 else if (strncmp("IPF.StickyNote", item->ascii_type, 14) == 0) | |
2198 item->type = PST_TYPE_STICKYNOTE; | |
2199 else if (strncmp("IPF.Task", item->ascii_type, 8) == 0) | |
2200 item->type = PST_TYPE_TASK; | |
2201 else | |
2202 item->type = PST_TYPE_OTHER; | |
2203 | |
2204 DEBUG_EMAIL(("%s [%i]\n", item->ascii_type, item->type)); | |
2205 //INC_CHECK_X(); | |
2206 break; | |
2207 case 0x3617: // PR_ASSOC_CONTENT_COUNT | |
2208 // associated content are items that are attached to this folder | |
2209 // but are hidden from users | |
2210 DEBUG_EMAIL(("Associate Content count - ")); | |
2211 MALLOC_FOLDER(item); | |
2212 memcpy(&(item->folder->assoc_count), list->items[x]->data, sizeof(item->folder->assoc_count)); | |
2213 LE32_CPU(item->folder->assoc_count); | |
2214 DEBUG_EMAIL(("%i [%#x]\n", item->folder->assoc_count, item->folder->assoc_count)); | |
2215 //INC_CHECK_X(); | |
2216 break; | |
2217 case 0x3701: // PR_ATTACH_DATA_OBJ binary data of attachment | |
2218 DEBUG_EMAIL(("Binary Data [Size %i] - ", list->items[x]->size)); | |
2219 NULL_CHECK(attach); | |
2220 MOVE_NEXT(attach); | |
2221 if (!list->items[x]->data) { //special case | |
2222 attach->id2_val = list->items[x]->type; | |
2223 DEBUG_EMAIL(("Seen a Reference. The data hasn't been loaded yet. [%#x][%#x]\n", | |
2224 attach->id2_val, list->items[x]->type)); | |
2225 } else { | |
2226 LIST_COPY(attach->data, (char*)); | |
2227 attach->size = list->items[x]->size; | |
2228 DEBUG_EMAIL(("NOT PRINTED\n")); | |
2229 } | |
2230 //INC_CHECK_X(); | |
2231 break; | |
2232 case 0x3704: // PR_ATTACH_FILENAME Attachment filename (8.3) | |
2233 DEBUG_EMAIL(("Attachment Filename - ")); | |
2234 NULL_CHECK(attach); | |
2235 MOVE_NEXT(attach); | |
2236 LIST_COPY(attach->filename1, (char*)); | |
2237 DEBUG_EMAIL(("%s\n", attach->filename1)); | |
2238 //INC_CHECK_X(); | |
2239 break; | |
2240 case 0x3705: // PR_ATTACH_METHOD | |
2241 // 0 - No Attachment | |
2242 // 1 - Attach by Value | |
2243 // 2 - Attach by reference | |
2244 // 3 - Attach by ref resolve | |
2245 // 4 - Attach by ref only | |
2246 // 5 - Embedded Message | |
2247 // 6 - OLE | |
2248 DEBUG_EMAIL(("Attachement method - ")); | |
2249 NULL_CHECK(attach); | |
2250 MOVE_NEXT(attach); | |
2251 memcpy(&(attach->method), list->items[x]->data, sizeof(attach->method)); | |
2252 LE32_CPU(attach->method); | |
2253 t = attach->method; | |
2254 DEBUG_EMAIL(("%s [%i]\n", (t==0?"No Attachment": | |
2255 (t==1?"Attach By Value": | |
2256 (t==2?"Attach By Reference": | |
2257 (t==3?"Attach by Ref. Resolve": | |
2258 (t==4?"Attach by Ref. Only": | |
2259 (t==5?"Embedded Message":"OLE")))))),t)); | |
2260 //INC_CHECK_X(); | |
2261 break; | |
24 | 2262 case 0x3707: // PR_ATTACH_LONG_FILENAME Attachment filename (long?) |
2263 DEBUG_EMAIL(("Attachment Filename long - ")); | |
2264 NULL_CHECK(attach); | |
2265 MOVE_NEXT(attach); | |
2266 LIST_COPY(attach->filename2, (char*)); | |
2267 DEBUG_EMAIL(("%s\n", attach->filename2)); | |
2268 //INC_CHECK_X(); | |
2269 break; | |
16 | 2270 case 0x370B: // PR_RENDERING_POSITION |
2271 // position in characters that the attachment appears in the plain text body | |
2272 DEBUG_EMAIL(("Attachment Position - ")); | |
2273 NULL_CHECK(attach); | |
2274 MOVE_NEXT(attach); | |
2275 memcpy(&(attach->position), list->items[x]->data, sizeof(attach->position)); | |
2276 LE32_CPU(attach->position); | |
2277 DEBUG_EMAIL(("%i [%#x]\n", attach->position)); | |
2278 //INC_CHECK_X(); | |
2279 break; | |
2280 case 0x370E: // PR_ATTACH_MIME_TAG Mime type of encoding | |
2281 DEBUG_EMAIL(("Attachment mime encoding - ")); | |
2282 NULL_CHECK(attach); | |
2283 MOVE_NEXT(attach); | |
2284 LIST_COPY(attach->mimetype, (char*)); | |
2285 DEBUG_EMAIL(("%s\n", attach->mimetype)); | |
2286 //INC_CHECK_X(); | |
2287 break; | |
2288 case 0x3710: // PR_ATTACH_MIME_SEQUENCE | |
2289 // sequence number for mime parts. Includes body | |
2290 DEBUG_EMAIL(("Attachment Mime Sequence - ")); | |
2291 NULL_CHECK(attach); | |
2292 MOVE_NEXT(attach); | |
2293 memcpy(&(attach->sequence), list->items[x]->data, sizeof(attach->sequence)); | |
2294 LE32_CPU(attach->sequence); | |
2295 DEBUG_EMAIL(("%i\n", attach->sequence)); | |
2296 //INC_CHECK_X(); | |
2297 break; | |
2298 case 0x3A00: // PR_ACCOUNT | |
2299 DEBUG_EMAIL(("Contact's Account name - ")); | |
2300 MALLOC_CONTACT(item); | |
2301 LIST_COPY(item->contact->account_name, (char*)); | |
2302 DEBUG_EMAIL(("%s\n", item->contact->account_name)); | |
2303 break; | |
2304 case 0x3A01: // PR_ALTERNATE_RECIPIENT | |
2305 DEBUG_EMAIL(("Contact Alternate Recipient - NOT PROCESSED\n")); | |
2306 break; | |
2307 case 0x3A02: // PR_CALLBACK_TELEPHONE_NUMBER | |
2308 DEBUG_EMAIL(("Callback telephone number - ")); | |
2309 MALLOC_CONTACT(item); | |
2310 LIST_COPY(item->contact->callback_phone, (char*)); | |
2311 DEBUG_EMAIL(("%s\n", item->contact->callback_phone)); | |
2312 break; | |
2313 case 0x3A03: // PR_CONVERSION_PROHIBITED | |
2314 DEBUG_EMAIL(("Message Conversion Prohibited - ")); | |
2315 MALLOC_EMAIL(item); | |
2316 if (*(int16_t*)list->items[x]->data != 0) { | |
2317 DEBUG_EMAIL(("True\n")); | |
2318 item->email->conversion_prohib = 1; | |
2319 } else { | |
2320 DEBUG_EMAIL(("False\n")); | |
2321 item->email->conversion_prohib = 0; | |
2322 } | |
2323 break; | |
2324 case 0x3A05: // PR_GENERATION suffix | |
2325 DEBUG_EMAIL(("Contacts Suffix - ")); | |
2326 MALLOC_CONTACT(item); | |
2327 LIST_COPY(item->contact->suffix, (char*)); | |
2328 DEBUG_EMAIL(("%s\n", item->contact->suffix)); | |
2329 break; | |
2330 case 0x3A06: // PR_GIVEN_NAME Contact's first name | |
2331 DEBUG_EMAIL(("Contacts First Name - ")); | |
2332 MALLOC_CONTACT(item); | |
2333 LIST_COPY(item->contact->first_name, (char*)); | |
2334 DEBUG_EMAIL(("%s\n", item->contact->first_name)); | |
2335 //INC_CHECK_X(); | |
2336 break; | |
2337 case 0x3A07: // PR_GOVERNMENT_ID_NUMBER | |
2338 DEBUG_EMAIL(("Contacts Government ID Number - ")); | |
2339 MALLOC_CONTACT(item); | |
2340 LIST_COPY(item->contact->gov_id, (char*)); | |
2341 DEBUG_EMAIL(("%s\n", item->contact->gov_id)); | |
2342 break; | |
2343 case 0x3A08: // PR_BUSINESS_TELEPHONE_NUMBER | |
2344 DEBUG_EMAIL(("Business Telephone Number - ")); | |
2345 MALLOC_CONTACT(item); | |
2346 LIST_COPY(item->contact->business_phone, (char*)); | |
2347 DEBUG_EMAIL(("%s\n", item->contact->business_phone)); | |
2348 break; | |
2349 case 0x3A09: // PR_HOME_TELEPHONE_NUMBER | |
2350 DEBUG_EMAIL(("Home Telephone Number - ")); | |
2351 MALLOC_CONTACT(item); | |
2352 LIST_COPY(item->contact->home_phone, (char*)); | |
2353 DEBUG_EMAIL(("%s\n", item->contact->home_phone)); | |
2354 break; | |
2355 case 0x3A0A: // PR_INITIALS Contact's Initials | |
2356 DEBUG_EMAIL(("Contacts Initials - ")); | |
2357 MALLOC_CONTACT(item); | |
2358 LIST_COPY(item->contact->initials, (char*)); | |
2359 DEBUG_EMAIL(("%s\n", item->contact->initials)); | |
2360 //INC_CHECK_X(); | |
2361 break; | |
2362 case 0x3A0B: // PR_KEYWORD | |
2363 DEBUG_EMAIL(("Keyword - ")); | |
2364 MALLOC_CONTACT(item); | |
2365 LIST_COPY(item->contact->keyword, (char*)); | |
2366 DEBUG_EMAIL(("%s\n", item->contact->keyword)); | |
2367 break; | |
2368 case 0x3A0C: // PR_LANGUAGE | |
2369 DEBUG_EMAIL(("Contact's Language - ")); | |
2370 MALLOC_CONTACT(item); | |
2371 LIST_COPY(item->contact->language, (char*)); | |
2372 DEBUG_EMAIL(("%s\n", item->contact->language)); | |
2373 break; | |
2374 case 0x3A0D: // PR_LOCATION | |
2375 DEBUG_EMAIL(("Contact's Location - ")); | |
2376 MALLOC_CONTACT(item); | |
2377 LIST_COPY(item->contact->location, (char*)); | |
2378 DEBUG_EMAIL(("%s\n", item->contact->location)); | |
2379 break; | |
2380 case 0x3A0E: // PR_MAIL_PERMISSION - Can the recipient receive and send email | |
2381 DEBUG_EMAIL(("Mail Permission - ")); | |
2382 MALLOC_CONTACT(item); | |
2383 if (*(int16_t*)list->items[x]->data != 0) { | |
2384 DEBUG_EMAIL(("True\n")); | |
2385 item->contact->mail_permission = 1; | |
2386 } else { | |
2387 DEBUG_EMAIL(("False\n")); | |
2388 item->contact->mail_permission = 0; | |
2389 } | |
2390 break; | |
2391 case 0x3A0F: // PR_MHS_COMMON_NAME | |
2392 DEBUG_EMAIL(("MHS Common Name - ")); | |
2393 MALLOC_EMAIL(item); | |
2394 LIST_COPY(item->email->common_name, (char*)); | |
2395 DEBUG_EMAIL(("%s\n", item->email->common_name)); | |
2396 break; | |
2397 case 0x3A10: // PR_ORGANIZATIONAL_ID_NUMBER | |
2398 DEBUG_EMAIL(("Organizational ID # - ")); | |
2399 MALLOC_CONTACT(item); | |
2400 LIST_COPY(item->contact->org_id, (char*)); | |
2401 DEBUG_EMAIL(("%s\n", item->contact->org_id)); | |
2402 break; | |
2403 case 0x3A11: // PR_SURNAME Contact's Surname | |
2404 DEBUG_EMAIL(("Contacts Surname - ")); | |
2405 MALLOC_CONTACT(item); | |
2406 LIST_COPY(item->contact->surname, (char*)); | |
2407 DEBUG_EMAIL(("%s\n", item->contact->surname)); | |
2408 //INC_CHECK_X(); | |
2409 break; | |
2410 case 0x3A12: // PR_ORIGINAL_ENTRY_ID | |
2411 DEBUG_EMAIL(("Original Entry ID - NOT PROCESSED\n")); | |
2412 break; | |
2413 case 0x3A13: // PR_ORIGINAL_DISPLAY_NAME | |
2414 DEBUG_EMAIL(("Original Display Name - NOT PROCESSED\n")); | |
2415 break; | |
2416 case 0x3A14: // PR_ORIGINAL_SEARCH_KEY | |
2417 DEBUG_EMAIL(("Original Search Key - NOT PROCESSED\n")); | |
2418 break; | |
2419 case 0x3A15: // PR_POSTAL_ADDRESS | |
2420 DEBUG_EMAIL(("Default Postal Address - ")); | |
2421 MALLOC_CONTACT(item); | |
2422 LIST_COPY(item->contact->def_postal_address, (char*)); | |
2423 DEBUG_EMAIL(("%s\n", item->contact->def_postal_address)); | |
2424 break; | |
2425 case 0x3A16: // PR_COMPANY_NAME | |
2426 DEBUG_EMAIL(("Company Name - ")); | |
2427 MALLOC_CONTACT(item); | |
2428 LIST_COPY(item->contact->company_name, (char*)); | |
2429 DEBUG_EMAIL(("%s\n", item->contact->company_name)); | |
2430 break; | |
2431 case 0x3A17: // PR_TITLE - Job Title | |
2432 DEBUG_EMAIL(("Job Title - ")); | |
2433 MALLOC_CONTACT(item); | |
2434 LIST_COPY(item->contact->job_title, (char*)); | |
2435 DEBUG_EMAIL(("%s\n", item->contact->job_title)); | |
2436 break; | |
2437 case 0x3A18: // PR_DEPARTMENT_NAME | |
2438 DEBUG_EMAIL(("Department Name - ")); | |
2439 MALLOC_CONTACT(item); | |
2440 LIST_COPY(item->contact->department, (char*)); | |
2441 DEBUG_EMAIL(("%s\n", item->contact->department)); | |
2442 break; | |
2443 case 0x3A19: // PR_OFFICE_LOCATION | |
2444 DEBUG_EMAIL(("Office Location - ")); | |
2445 MALLOC_CONTACT(item); | |
2446 LIST_COPY(item->contact->office_loc, (char*)); | |
2447 DEBUG_EMAIL(("%s\n", item->contact->office_loc)); | |
2448 break; | |
2449 case 0x3A1A: // PR_PRIMARY_TELEPHONE_NUMBER | |
2450 DEBUG_EMAIL(("Primary Telephone - ")); | |
2451 MALLOC_CONTACT(item); | |
2452 LIST_COPY(item->contact->primary_phone, (char*)); | |
2453 DEBUG_EMAIL(("%s\n", item->contact->primary_phone)); | |
2454 break; | |
2455 case 0x3A1B: // PR_BUSINESS2_TELEPHONE_NUMBER | |
2456 DEBUG_EMAIL(("Business Phone Number 2 - ")); | |
2457 MALLOC_CONTACT(item); | |
2458 LIST_COPY(item->contact->business_phone2, (char*)); | |
2459 DEBUG_EMAIL(("%s\n", item->contact->business_phone2)); | |
2460 break; | |
2461 case 0x3A1C: // PR_MOBILE_TELEPHONE_NUMBER | |
2462 DEBUG_EMAIL(("Mobile Phone Number - ")); | |
2463 MALLOC_CONTACT(item); | |
2464 LIST_COPY(item->contact->mobile_phone, (char*)); | |
2465 DEBUG_EMAIL(("%s\n", item->contact->mobile_phone)); | |
2466 break; | |
2467 case 0x3A1D: // PR_RADIO_TELEPHONE_NUMBER | |
2468 DEBUG_EMAIL(("Radio Phone Number - ")); | |
2469 MALLOC_CONTACT(item); | |
2470 LIST_COPY(item->contact->radio_phone, (char*)); | |
2471 DEBUG_EMAIL(("%s\n", item->contact->radio_phone)); | |
2472 break; | |
2473 case 0x3A1E: // PR_CAR_TELEPHONE_NUMBER | |
2474 DEBUG_EMAIL(("Car Phone Number - ")); | |
2475 MALLOC_CONTACT(item); | |
2476 LIST_COPY(item->contact->car_phone, (char*)); | |
2477 DEBUG_EMAIL(("%s\n", item->contact->car_phone)); | |
2478 break; | |
2479 case 0x3A1F: // PR_OTHER_TELEPHONE_NUMBER | |
2480 DEBUG_EMAIL(("Other Phone Number - ")); | |
2481 MALLOC_CONTACT(item); | |
2482 LIST_COPY(item->contact->other_phone, (char*)); | |
2483 DEBUG_EMAIL(("%s\n", item->contact->other_phone)); | |
2484 break; | |
2485 case 0x3A20: // PR_TRANSMITTABLE_DISPLAY_NAME | |
2486 DEBUG_EMAIL(("Transmittable Display Name - ")); | |
2487 MALLOC_CONTACT(item); | |
2488 LIST_COPY(item->contact->transmittable_display_name, (char*)); | |
2489 DEBUG_EMAIL(("%s\n", item->contact->transmittable_display_name)); | |
2490 break; | |
2491 case 0x3A21: // PR_PAGER_TELEPHONE_NUMBER | |
2492 DEBUG_EMAIL(("Pager Phone Number - ")); | |
2493 MALLOC_CONTACT(item); | |
2494 LIST_COPY(item->contact->pager_phone, (char*)); | |
2495 DEBUG_EMAIL(("%s\n", item->contact->pager_phone)); | |
2496 break; | |
2497 case 0x3A22: // PR_USER_CERTIFICATE | |
2498 DEBUG_EMAIL(("User Certificate - NOT PROCESSED")); | |
2499 break; | |
2500 case 0x3A23: // PR_PRIMARY_FAX_NUMBER | |
2501 DEBUG_EMAIL(("Primary Fax Number - ")); | |
2502 MALLOC_CONTACT(item); | |
2503 LIST_COPY(item->contact->primary_fax, (char*)); | |
2504 DEBUG_EMAIL(("%s\n", item->contact->primary_fax)); | |
2505 break; | |
2506 case 0x3A24: // PR_BUSINESS_FAX_NUMBER | |
2507 DEBUG_EMAIL(("Business Fax Number - ")); | |
2508 MALLOC_CONTACT(item); | |
2509 LIST_COPY(item->contact->business_fax, (char*)); | |
2510 DEBUG_EMAIL(("%s\n", item->contact->business_fax)); | |
2511 break; | |
2512 case 0x3A25: // PR_HOME_FAX_NUMBER | |
2513 DEBUG_EMAIL(("Home Fax Number - ")); | |
2514 MALLOC_CONTACT(item); | |
2515 LIST_COPY(item->contact->home_fax, (char*)); | |
2516 DEBUG_EMAIL(("%s\n", item->contact->home_fax)); | |
2517 break; | |
2518 case 0x3A26: // PR_BUSINESS_ADDRESS_COUNTRY | |
2519 DEBUG_EMAIL(("Business Address Country - ")); | |
2520 MALLOC_CONTACT(item); | |
2521 LIST_COPY(item->contact->business_country, (char*)); | |
2522 DEBUG_EMAIL(("%s\n", item->contact->business_country)); | |
2523 break; | |
2524 case 0x3A27: // PR_BUSINESS_ADDRESS_CITY | |
2525 DEBUG_EMAIL(("Business Address City - ")); | |
2526 MALLOC_CONTACT(item); | |
2527 LIST_COPY(item->contact->business_city, (char*)); | |
2528 DEBUG_EMAIL(("%s\n", item->contact->business_city)); | |
2529 break; | |
2530 case 0x3A28: // PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE | |
2531 DEBUG_EMAIL(("Business Address State - ")); | |
2532 MALLOC_CONTACT(item); | |
2533 LIST_COPY(item->contact->business_state, (char*)); | |
2534 DEBUG_EMAIL(("%s\n", item->contact->business_state)); | |
2535 break; | |
2536 case 0x3A29: // PR_BUSINESS_ADDRESS_STREET | |
2537 DEBUG_EMAIL(("Business Address Street - ")); | |
2538 MALLOC_CONTACT(item); | |
2539 LIST_COPY(item->contact->business_street, (char*)); | |
2540 DEBUG_EMAIL(("%s\n", item->contact->business_street)); | |
2541 break; | |
2542 case 0x3A2A: // PR_BUSINESS_POSTAL_CODE | |
2543 DEBUG_EMAIL(("Business Postal Code - ")); | |
2544 MALLOC_CONTACT(item); | |
2545 LIST_COPY(item->contact->business_postal_code, (char*)); | |
2546 DEBUG_EMAIL(("%s\n", item->contact->business_postal_code)); | |
2547 break; | |
2548 case 0x3A2B: // PR_BUSINESS_PO_BOX | |
2549 DEBUG_EMAIL(("Business PO Box - ")); | |
2550 MALLOC_CONTACT(item); | |
2551 LIST_COPY(item->contact->business_po_box, (char*)); | |
2552 DEBUG_EMAIL(("%s\n", item->contact->business_po_box)); | |
2553 break; | |
2554 case 0x3A2C: // PR_TELEX_NUMBER | |
2555 DEBUG_EMAIL(("Telex Number - ")); | |
2556 MALLOC_CONTACT(item); | |
2557 LIST_COPY(item->contact->telex, (char*)); | |
2558 DEBUG_EMAIL(("%s\n", item->contact->telex)); | |
2559 break; | |
2560 case 0x3A2D: // PR_ISDN_NUMBER | |
2561 DEBUG_EMAIL(("ISDN Number - ")); | |
2562 MALLOC_CONTACT(item); | |
2563 LIST_COPY(item->contact->isdn_phone, (char*)); | |
2564 DEBUG_EMAIL(("%s\n", item->contact->isdn_phone)); | |
2565 break; | |
2566 case 0x3A2E: // PR_ASSISTANT_TELEPHONE_NUMBER | |
2567 DEBUG_EMAIL(("Assistant Phone Number - ")); | |
2568 MALLOC_CONTACT(item); | |
2569 LIST_COPY(item->contact->assistant_phone, (char*)); | |
2570 DEBUG_EMAIL(("%s\n", item->contact->assistant_phone)); | |
2571 break; | |
2572 case 0x3A2F: // PR_HOME2_TELEPHONE_NUMBER | |
2573 DEBUG_EMAIL(("Home Phone 2 - ")); | |
2574 MALLOC_CONTACT(item); | |
2575 LIST_COPY(item->contact->home_phone2, (char*)); | |
2576 DEBUG_EMAIL(("%s\n", item->contact->home_phone2)); | |
2577 break; | |
2578 case 0x3A30: // PR_ASSISTANT | |
2579 DEBUG_EMAIL(("Assistant's Name - ")); | |
2580 MALLOC_CONTACT(item); | |
2581 LIST_COPY(item->contact->assistant_name, (char*)); | |
2582 DEBUG_EMAIL(("%s\n", item->contact->assistant_name)); | |
2583 break; | |
2584 case 0x3A40: // PR_SEND_RICH_INFO | |
2585 DEBUG_EMAIL(("Can receive Rich Text - ")); | |
2586 MALLOC_CONTACT(item); | |
2587 if(*(int16_t*)list->items[x]->data != 0) { | |
2588 DEBUG_EMAIL(("True\n")); | |
2589 item->contact->rich_text = 1; | |
2590 } else { | |
2591 DEBUG_EMAIL(("False\n")); | |
2592 item->contact->rich_text = 0; | |
2593 } | |
2594 break; | |
2595 case 0x3A41: // PR_WEDDING_ANNIVERSARY | |
2596 DEBUG_EMAIL(("Wedding Anniversary - ")); | |
2597 MALLOC_CONTACT(item); | |
2598 LIST_COPY(item->contact->wedding_anniversary, (FILETIME*)); | |
2599 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->wedding_anniversary))); | |
2600 break; | |
2601 case 0x3A42: // PR_BIRTHDAY | |
2602 DEBUG_EMAIL(("Birthday - ")); | |
2603 MALLOC_CONTACT(item); | |
2604 LIST_COPY(item->contact->birthday, (FILETIME*)); | |
2605 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->contact->birthday))); | |
2606 break; | |
2607 case 0x3A43: // PR_HOBBIES | |
2608 DEBUG_EMAIL(("Hobbies - ")); | |
2609 MALLOC_CONTACT(item); | |
2610 LIST_COPY(item->contact->hobbies, (char*)); | |
2611 DEBUG_EMAIL(("%s\n", item->contact->hobbies)); | |
2612 break; | |
2613 case 0x3A44: // PR_MIDDLE_NAME | |
2614 DEBUG_EMAIL(("Middle Name - ")); | |
2615 MALLOC_CONTACT(item); | |
2616 LIST_COPY(item->contact->middle_name, (char*)); | |
2617 DEBUG_EMAIL(("%s\n", item->contact->middle_name)); | |
2618 break; | |
2619 case 0x3A45: // PR_DISPLAY_NAME_PREFIX | |
2620 DEBUG_EMAIL(("Display Name Prefix (Title) - ")); | |
2621 MALLOC_CONTACT(item); | |
2622 LIST_COPY(item->contact->display_name_prefix, (char*)); | |
2623 DEBUG_EMAIL(("%s\n", item->contact->display_name_prefix)); | |
2624 break; | |
2625 case 0x3A46: // PR_PROFESSION | |
2626 DEBUG_EMAIL(("Profession - ")); | |
2627 MALLOC_CONTACT(item); | |
2628 LIST_COPY(item->contact->profession, (char*)); | |
2629 DEBUG_EMAIL(("%s\n", item->contact->profession)); | |
2630 break; | |
2631 case 0x3A47: // PR_PREFERRED_BY_NAME | |
2632 DEBUG_EMAIL(("Preferred By Name - ")); | |
2633 MALLOC_CONTACT(item); | |
2634 LIST_COPY(item->contact->pref_name, (char*)); | |
2635 DEBUG_EMAIL(("%s\n", item->contact->pref_name)); | |
2636 break; | |
2637 case 0x3A48: // PR_SPOUSE_NAME | |
2638 DEBUG_EMAIL(("Spouse's Name - ")); | |
2639 MALLOC_CONTACT(item); | |
2640 LIST_COPY(item->contact->spouse_name, (char*)); | |
2641 DEBUG_EMAIL(("%s\n", item->contact->spouse_name)); | |
2642 break; | |
2643 case 0x3A49: // PR_COMPUTER_NETWORK_NAME | |
2644 DEBUG_EMAIL(("Computer Network Name - ")); | |
2645 MALLOC_CONTACT(item); | |
2646 LIST_COPY(item->contact->computer_name, (char*)); | |
2647 DEBUG_EMAIL(("%s\n", item->contact->computer_name)); | |
2648 break; | |
2649 case 0x3A4A: // PR_CUSTOMER_ID | |
2650 DEBUG_EMAIL(("Customer ID - ")); | |
2651 MALLOC_CONTACT(item); | |
2652 LIST_COPY(item->contact->customer_id, (char*)); | |
2653 DEBUG_EMAIL(("%s\n", item->contact->customer_id)); | |
2654 break; | |
2655 case 0x3A4B: // PR_TTYTDD_PHONE_NUMBER | |
2656 DEBUG_EMAIL(("TTY/TDD Phone - ")); | |
2657 MALLOC_CONTACT(item); | |
2658 LIST_COPY(item->contact->ttytdd_phone, (char*)); | |
2659 DEBUG_EMAIL(("%s\n", item->contact->ttytdd_phone)); | |
2660 break; | |
2661 case 0x3A4C: // PR_FTP_SITE | |
2662 DEBUG_EMAIL(("Ftp Site - ")); | |
2663 MALLOC_CONTACT(item); | |
2664 LIST_COPY(item->contact->ftp_site, (char*)); | |
2665 DEBUG_EMAIL(("%s\n", item->contact->ftp_site)); | |
2666 break; | |
2667 case 0x3A4D: // PR_GENDER | |
2668 DEBUG_EMAIL(("Gender - ")); | |
2669 MALLOC_CONTACT(item); | |
2670 memcpy(&item->contact->gender, list->items[x]->data, sizeof(int16_t)); | |
2671 LE16_CPU(item->contact->gender); | |
2672 switch(item->contact->gender) { | |
2673 case 0: | |
2674 DEBUG_EMAIL(("Unspecified\n")); | |
2675 break; | |
2676 case 1: | |
2677 DEBUG_EMAIL(("Female\n")); | |
2678 break; | |
2679 case 2: | |
2680 DEBUG_EMAIL(("Male\n")); | |
2681 break; | |
2682 default: | |
2683 DEBUG_EMAIL(("Error processing\n")); | |
2684 } | |
2685 break; | |
2686 case 0x3A4E: // PR_MANAGER_NAME | |
2687 DEBUG_EMAIL(("Manager's Name - ")); | |
2688 MALLOC_CONTACT(item); | |
2689 LIST_COPY(item->contact->manager_name, (char*)); | |
2690 DEBUG_EMAIL(("%s\n", item->contact->manager_name)); | |
2691 break; | |
2692 case 0x3A4F: // PR_NICKNAME | |
2693 DEBUG_EMAIL(("Nickname - ")); | |
2694 MALLOC_CONTACT(item); | |
2695 LIST_COPY(item->contact->nickname, (char*)); | |
2696 DEBUG_EMAIL(("%s\n", item->contact->nickname)); | |
2697 break; | |
2698 case 0x3A50: // PR_PERSONAL_HOME_PAGE | |
2699 DEBUG_EMAIL(("Personal Home Page - ")); | |
2700 MALLOC_CONTACT(item); | |
2701 LIST_COPY(item->contact->personal_homepage, (char*)); | |
2702 DEBUG_EMAIL(("%s\n", item->contact->personal_homepage)); | |
2703 break; | |
2704 case 0x3A51: // PR_BUSINESS_HOME_PAGE | |
2705 DEBUG_EMAIL(("Business Home Page - ")); | |
2706 MALLOC_CONTACT(item); | |
2707 LIST_COPY(item->contact->business_homepage, (char*)); | |
2708 DEBUG_EMAIL(("%s\n", item->contact->business_homepage)); | |
2709 break; | |
2710 case 0x3A57: // PR_COMPANY_MAIN_PHONE_NUMBER | |
2711 DEBUG_EMAIL(("Company Main Phone - ")); | |
2712 MALLOC_CONTACT(item); | |
2713 LIST_COPY(item->contact->company_main_phone, (char*)); | |
2714 DEBUG_EMAIL(("%s\n", item->contact->company_main_phone)); | |
2715 break; | |
2716 case 0x3A58: // PR_CHILDRENS_NAMES | |
2717 DEBUG_EMAIL(("Children's Names - NOT PROCESSED\n")); | |
2718 break; | |
2719 case 0x3A59: // PR_HOME_ADDRESS_CITY | |
2720 DEBUG_EMAIL(("Home Address City - ")); | |
2721 MALLOC_CONTACT(item); | |
2722 LIST_COPY(item->contact->home_city, (char*)); | |
2723 DEBUG_EMAIL(("%s\n", item->contact->home_city)); | |
2724 break; | |
2725 case 0x3A5A: // PR_HOME_ADDRESS_COUNTRY | |
2726 DEBUG_EMAIL(("Home Address Country - ")); | |
2727 MALLOC_CONTACT(item); | |
2728 LIST_COPY(item->contact->home_country, (char*)); | |
2729 DEBUG_EMAIL(("%s\n", item->contact->home_country)); | |
2730 break; | |
2731 case 0x3A5B: // PR_HOME_ADDRESS_POSTAL_CODE | |
2732 DEBUG_EMAIL(("Home Address Postal Code - ")); | |
2733 MALLOC_CONTACT(item); | |
2734 LIST_COPY(item->contact->home_postal_code, (char*)); | |
2735 DEBUG_EMAIL(("%s\n", item->contact->home_postal_code)); | |
2736 break; | |
2737 case 0x3A5C: // PR_HOME_ADDRESS_STATE_OR_PROVINCE | |
2738 DEBUG_EMAIL(("Home Address State or Province - ")); | |
2739 MALLOC_CONTACT(item); | |
2740 LIST_COPY(item->contact->home_state, (char*)); | |
2741 DEBUG_EMAIL(("%s\n", item->contact->home_state)); | |
2742 break; | |
2743 case 0x3A5D: // PR_HOME_ADDRESS_STREET | |
2744 DEBUG_EMAIL(("Home Address Street - ")); | |
2745 MALLOC_CONTACT(item); | |
2746 LIST_COPY(item->contact->home_street, (char*)); | |
2747 DEBUG_EMAIL(("%s\n", item->contact->home_street)); | |
2748 break; | |
2749 case 0x3A5E: // PR_HOME_ADDRESS_POST_OFFICE_BOX | |
2750 DEBUG_EMAIL(("Home Address Post Office Box - ")); | |
2751 MALLOC_CONTACT(item); | |
2752 LIST_COPY(item->contact->home_po_box, (char*)); | |
2753 DEBUG_EMAIL(("%s\n", item->contact->home_po_box)); | |
2754 break; | |
2755 case 0x3A5F: // PR_OTHER_ADDRESS_CITY | |
2756 DEBUG_EMAIL(("Other Address City - ")); | |
2757 MALLOC_CONTACT(item); | |
2758 LIST_COPY(item->contact->other_city, (char*)); | |
2759 DEBUG_EMAIL(("%s\n", item->contact->other_city)); | |
2760 break; | |
2761 case 0x3A60: // PR_OTHER_ADDRESS_COUNTRY | |
2762 DEBUG_EMAIL(("Other Address Country - ")); | |
2763 MALLOC_CONTACT(item); | |
2764 LIST_COPY(item->contact->other_country, (char*)); | |
2765 DEBUG_EMAIL(("%s\n", item->contact->other_country)); | |
2766 break; | |
2767 case 0x3A61: // PR_OTHER_ADDRESS_POSTAL_CODE | |
2768 DEBUG_EMAIL(("Other Address Postal Code - ")); | |
2769 MALLOC_CONTACT(item); | |
2770 LIST_COPY(item->contact->other_postal_code, (char*)); | |
2771 DEBUG_EMAIL(("%s\n", item->contact->other_postal_code)); | |
2772 break; | |
2773 case 0x3A62: // PR_OTHER_ADDRESS_STATE_OR_PROVINCE | |
2774 DEBUG_EMAIL(("Other Address State - ")); | |
2775 MALLOC_CONTACT(item); | |
2776 LIST_COPY(item->contact->other_state, (char*)); | |
2777 DEBUG_EMAIL(("%s\n", item->contact->other_state)); | |
2778 break; | |
2779 case 0x3A63: // PR_OTHER_ADDRESS_STREET | |
2780 DEBUG_EMAIL(("Other Address Street - ")); | |
2781 MALLOC_CONTACT(item); | |
2782 LIST_COPY(item->contact->other_street, (char*)); | |
2783 DEBUG_EMAIL(("%s\n", item->contact->other_street)); | |
2784 break; | |
2785 case 0x3A64: // PR_OTHER_ADDRESS_POST_OFFICE_BOX | |
2786 DEBUG_EMAIL(("Other Address Post Office box - ")); | |
2787 MALLOC_CONTACT(item); | |
2788 LIST_COPY(item->contact->other_po_box, (char*)); | |
2789 DEBUG_EMAIL(("%s\n", item->contact->other_po_box)); | |
2790 break; | |
2791 case 0x65E3: // Entry ID? | |
2792 DEBUG_EMAIL(("Entry ID - ")); | |
2793 item->record_key = (char*) xmalloc(16+1); | |
2794 memcpy(item->record_key, &(list->items[x]->data[1]), 16); //skip first byte | |
2795 item->record_key[16]='\0'; | |
2796 item->record_key_size=16; | |
2797 DEBUG_EMAIL_HEXPRINT((char*)item->record_key, 16); | |
2798 //INC_CHECK_X(); | |
2799 break; | |
2800 case 0x67F2: // ID2 value of the attachments proper record | |
2801 DEBUG_EMAIL(("Attachment ID2 value - ")); | |
2802 if (attach){ | |
2803 MOVE_NEXT(attach); | |
2804 memcpy(&(attach->id2_val), list->items[x]->data, sizeof(attach->id2_val)); | |
2805 LE32_CPU(attach->id2_val); | |
2806 DEBUG_EMAIL(("%#x\n", attach->id2_val)); | |
2807 } else { | |
2808 DEBUG_EMAIL(("NOT AN ATTACHMENT: %#x\n", list->items[x]->id)); | |
2809 } | |
2810 //INC_CHECK_X(); | |
2811 break; | |
2812 case 0x67FF: // Extra Property Identifier (Password CheckSum) | |
2813 DEBUG_EMAIL(("Password checksum [0x67FF] - ")); | |
2814 MALLOC_MESSAGESTORE(item); | |
2815 memcpy(&(item->message_store->pwd_chksum), list->items[x]->data, | |
2816 sizeof(item->message_store->pwd_chksum)); | |
2817 DEBUG_EMAIL(("%#x\n", item->message_store->pwd_chksum)); | |
2818 //INC_CHECK_X(); | |
2819 break; | |
2820 case 0x6F02: // Secure HTML Body | |
2821 DEBUG_EMAIL(("Secure HTML Body - ")); | |
2822 MALLOC_EMAIL(item); | |
2823 LIST_COPY(item->email->encrypted_htmlbody, (char*)); | |
2824 item->email->encrypted_htmlbody_size = list->items[x]->size; | |
2825 DEBUG_EMAIL(("Not Printed\n")); | |
2826 //INC_CHECK_X(); | |
2827 break; | |
2828 case 0x6F04: // Secure Text Body | |
2829 DEBUG_EMAIL(("Secure Text Body - ")); | |
2830 MALLOC_EMAIL(item); | |
2831 LIST_COPY(item->email->encrypted_body, (char*)); | |
2832 item->email->encrypted_body_size = list->items[x]->size; | |
2833 DEBUG_EMAIL(("Not Printed\n")); | |
2834 //INC_CHECK_X(); | |
2835 break; | |
2836 case 0x7C07: // top of folders ENTRYID | |
2837 DEBUG_EMAIL(("Top of folders RecID [0x7c07] - ")); | |
2838 MALLOC_MESSAGESTORE(item); | |
2839 item->message_store->top_of_folder = (pst_entryid*) xmalloc(sizeof(pst_entryid)); | |
2840 memcpy(item->message_store->top_of_folder, list->items[x]->data, sizeof(pst_entryid)); | |
2841 LE32_CPU(item->message_store->top_of_folder->u1); | |
2842 LE32_CPU(item->message_store->top_of_folder->id); | |
2843 DEBUG_EMAIL_HEXPRINT((char*)item->message_store->top_of_folder->entryid, 16); | |
2844 //INC_CHECK_X(); | |
2845 break; | |
2846 case 0x8005: // Contact's Fullname | |
2847 DEBUG_EMAIL(("Contact Fullname - ")); | |
2848 MALLOC_CONTACT(item); | |
2849 LIST_COPY(item->contact->fullname, (char*)); | |
2850 DEBUG_EMAIL(("%s\n", item->contact->fullname)); | |
2851 break; | |
2852 case 0x801A: // Full Home Address | |
2853 DEBUG_EMAIL(("Home Address - ")); | |
2854 MALLOC_CONTACT(item); | |
2855 LIST_COPY(item->contact->home_address, (char*)); | |
2856 DEBUG_EMAIL(("%s\n", item->contact->home_address)); | |
2857 break; | |
2858 case 0x801B: // Full Business Address | |
2859 DEBUG_EMAIL(("Business Address - ")); | |
2860 MALLOC_CONTACT(item); | |
2861 LIST_COPY(item->contact->business_address, (char*)); | |
2862 DEBUG_EMAIL(("%s\n", item->contact->business_address)); | |
2863 break; | |
2864 case 0x801C: // Full Other Address | |
2865 DEBUG_EMAIL(("Other Address - ")); | |
2866 MALLOC_CONTACT(item); | |
2867 LIST_COPY(item->contact->other_address, (char*)); | |
2868 DEBUG_EMAIL(("%s\n", item->contact->other_address)); | |
2869 break; | |
2870 case 0x8082: // Email Address 1 Transport | |
2871 DEBUG_EMAIL(("Email Address 1 Transport - ")); | |
2872 MALLOC_CONTACT(item); | |
2873 LIST_COPY(item->contact->address1_transport, (char*)); | |
2874 DEBUG_EMAIL(("|%s|\n", item->contact->address1_transport)); | |
2875 break; | |
2876 case 0x8083: // Email Address 1 Address | |
2877 DEBUG_EMAIL(("Email Address 1 Address - ")); | |
2878 MALLOC_CONTACT(item); | |
2879 LIST_COPY(item->contact->address1, (char*)); | |
2880 DEBUG_EMAIL(("|%s|\n", item->contact->address1)); | |
2881 break; | |
2882 case 0x8084: // Email Address 1 Description | |
2883 DEBUG_EMAIL(("Email Address 1 Description - ")); | |
2884 MALLOC_CONTACT(item); | |
2885 LIST_COPY(item->contact->address1_desc, (char*)); | |
2886 DEBUG_EMAIL(("|%s|\n", item->contact->address1_desc)); | |
2887 break; | |
2888 case 0x8085: // Email Address 1 Record | |
2889 DEBUG_EMAIL(("Email Address 1 Record - ")); | |
2890 MALLOC_CONTACT(item); | |
2891 LIST_COPY(item->contact->address1a, (char*)); | |
2892 DEBUG_EMAIL(("|%s|\n", item->contact->address1a)); | |
2893 break; | |
2894 case 0x8092: // Email Address 2 Transport | |
2895 DEBUG_EMAIL(("Email Address 2 Transport - ")); | |
2896 MALLOC_CONTACT(item); | |
2897 LIST_COPY(item->contact->address2_transport, (char*)); | |
2898 DEBUG_EMAIL(("|%s|\n", item->contact->address2_transport)); | |
2899 break; | |
2900 case 0x8093: // Email Address 2 Address | |
2901 DEBUG_EMAIL(("Email Address 2 Address - ")); | |
2902 MALLOC_CONTACT(item); | |
2903 LIST_COPY(item->contact->address2, (char*)); | |
2904 DEBUG_EMAIL(("|%s|\n", item->contact->address2)); | |
2905 break; | |
2906 case 0x8094: // Email Address 2 Description | |
2907 DEBUG_EMAIL (("Email Address 2 Description - ")); | |
2908 MALLOC_CONTACT(item); | |
2909 LIST_COPY(item->contact->address2_desc, (char*)); | |
2910 DEBUG_EMAIL(("|%s|\n", item->contact->address2_desc)); | |
2911 break; | |
2912 case 0x8095: // Email Address 2 Record | |
2913 DEBUG_EMAIL(("Email Address 2 Record - ")); | |
2914 MALLOC_CONTACT(item); | |
2915 LIST_COPY(item->contact->address2a, (char*)); | |
2916 DEBUG_EMAIL(("|%s|\n", item->contact->address2a)); | |
2917 break; | |
2918 case 0x80A2: // Email Address 3 Transport | |
2919 DEBUG_EMAIL (("Email Address 3 Transport - ")); | |
2920 MALLOC_CONTACT(item); | |
2921 LIST_COPY(item->contact->address3_transport, (char*)); | |
2922 DEBUG_EMAIL(("|%s|\n", item->contact->address3_transport)); | |
2923 break; | |
2924 case 0x80A3: // Email Address 3 Address | |
2925 DEBUG_EMAIL(("Email Address 3 Address - ")); | |
2926 MALLOC_CONTACT(item); | |
2927 LIST_COPY(item->contact->address3, (char*)); | |
2928 DEBUG_EMAIL(("|%s|\n", item->contact->address3)); | |
2929 break; | |
2930 case 0x80A4: // Email Address 3 Description | |
2931 DEBUG_EMAIL(("Email Address 3 Description - ")); | |
2932 MALLOC_CONTACT(item); | |
2933 LIST_COPY(item->contact->address3_desc, (char*)); | |
2934 DEBUG_EMAIL(("|%s|\n", item->contact->address3_desc)); | |
2935 break; | |
2936 case 0x80A5: // Email Address 3 Record | |
2937 DEBUG_EMAIL(("Email Address 3 Record - ")); | |
2938 MALLOC_CONTACT(item); | |
2939 LIST_COPY(item->contact->address3a, (char*)); | |
2940 DEBUG_EMAIL(("|%s|\n", item->contact->address3a)); | |
2941 break; | |
2942 case 0x80D8: // Internet Free/Busy | |
2943 DEBUG_EMAIL(("Internet Free/Busy - ")); | |
2944 MALLOC_CONTACT(item); | |
2945 LIST_COPY(item->contact->free_busy_address, (char*)); | |
2946 DEBUG_EMAIL(("%s\n", item->contact->free_busy_address)); | |
2947 break; | |
2948 case 0x8205: // Show on Free/Busy as | |
2949 // 0: Free | |
2950 // 1: Tentative | |
2951 // 2: Busy | |
2952 // 3: Out Of Office | |
2953 DEBUG_EMAIL(("Appointment shows as - ")); | |
2954 MALLOC_APPOINTMENT(item); | |
2955 memcpy(&(item->appointment->showas), list->items[x]->data, sizeof(item->appointment->showas)); | |
2956 LE32_CPU(item->appointment->showas); | |
2957 switch (item->appointment->showas) { | |
2958 case PST_FREEBUSY_FREE: | |
2959 DEBUG_EMAIL(("Free\n")); break; | |
2960 case PST_FREEBUSY_TENTATIVE: | |
2961 DEBUG_EMAIL(("Tentative\n")); break; | |
2962 case PST_FREEBUSY_BUSY: | |
2963 DEBUG_EMAIL(("Busy\n")); break; | |
2964 case PST_FREEBUSY_OUT_OF_OFFICE: | |
2965 DEBUG_EMAIL(("Out Of Office\n")); break; | |
2966 default: | |
2967 DEBUG_EMAIL(("Unknown Value: %d\n", item->appointment->showas)); break; | |
2968 } | |
2969 break; | |
2970 case 0x8208: // Location of an appointment | |
2971 DEBUG_EMAIL(("Appointment Location - ")); | |
2972 MALLOC_APPOINTMENT(item); | |
2973 LIST_COPY(item->appointment->location, (char*)); | |
2974 DEBUG_EMAIL(("%s\n", item->appointment->location)); | |
2975 break; | |
2976 case 0x8214: // Label for an appointment | |
2977 DEBUG_EMAIL(("Label for appointment - ")); | |
2978 MALLOC_APPOINTMENT(item); | |
2979 memcpy(&(item->appointment->label), list->items[x]->data, sizeof(item->appointment->label)); | |
2980 LE32_CPU(item->appointment->label); | |
2981 switch (item->appointment->label) { | |
2982 case PST_APP_LABEL_NONE: | |
2983 DEBUG_EMAIL(("None\n")); break; | |
2984 case PST_APP_LABEL_IMPORTANT: | |
2985 DEBUG_EMAIL(("Important\n")); break; | |
2986 case PST_APP_LABEL_BUSINESS: | |
2987 DEBUG_EMAIL(("Business\n")); break; | |
2988 case PST_APP_LABEL_PERSONAL: | |
2989 DEBUG_EMAIL(("Personal\n")); break; | |
2990 case PST_APP_LABEL_VACATION: | |
2991 DEBUG_EMAIL(("Vacation\n")); break; | |
2992 case PST_APP_LABEL_MUST_ATTEND: | |
2993 DEBUG_EMAIL(("Must Attend\n")); break; | |
2994 case PST_APP_LABEL_TRAVEL_REQ: | |
2995 DEBUG_EMAIL(("Travel Required\n")); break; | |
2996 case PST_APP_LABEL_NEEDS_PREP: | |
2997 DEBUG_EMAIL(("Needs Preparation\n")); break; | |
2998 case PST_APP_LABEL_BIRTHDAY: | |
2999 DEBUG_EMAIL(("Birthday\n")); break; | |
3000 case PST_APP_LABEL_ANNIVERSARY: | |
3001 DEBUG_EMAIL(("Anniversary\n")); break; | |
3002 case PST_APP_LABEL_PHONE_CALL: | |
3003 DEBUG_EMAIL(("Phone Call\n")); break; | |
3004 } | |
3005 break; | |
31 | 3006 case 0x8215: // All day appointment flag |
3007 DEBUG_EMAIL(("All day flag - ")); | |
3008 MALLOC_APPOINTMENT(item); | |
3009 if (*(int16_t*)list->items[x]->data != 0) { | |
3010 DEBUG_EMAIL(("True\n")); | |
3011 item->appointment->all_day = 1; | |
3012 } else { | |
3013 DEBUG_EMAIL(("False\n")); | |
3014 item->appointment->all_day = 0; | |
3015 } | |
3016 break; | |
16 | 3017 case 0x8234: // TimeZone as String |
3018 DEBUG_EMAIL(("TimeZone of times - ")); | |
3019 MALLOC_APPOINTMENT(item); | |
3020 LIST_COPY(item->appointment->timezonestring, (char*)); | |
3021 DEBUG_EMAIL(("%s\n", item->appointment->timezonestring)); | |
3022 break; | |
3023 case 0x8235: // Appointment start time | |
3024 DEBUG_EMAIL(("Appointment Start Time - ")); | |
3025 MALLOC_APPOINTMENT(item); | |
3026 LIST_COPY(item->appointment->start, (FILETIME*)); | |
3027 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start))); | |
3028 break; | |
3029 case 0x8236: // Appointment end time | |
3030 DEBUG_EMAIL(("Appointment End Time - ")); | |
3031 MALLOC_APPOINTMENT(item); | |
3032 LIST_COPY(item->appointment->end, (FILETIME*)); | |
3033 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)item->appointment->start))); | |
3034 break; | |
3035 case 0x8516: // Journal time start | |
3036 DEBUG_EMAIL(("Duplicate Time Start - ")); | |
3037 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data))); | |
3038 break; | |
3039 case 0x8517: // Journal time end | |
3040 DEBUG_EMAIL(("Duplicate Time End - ")); | |
3041 DEBUG_EMAIL(("%s\n", fileTimeToAscii((FILETIME*)list->items[x]->data))); | |
3042 break; | |
3043 case 0x8530: // Followup | |
3044 DEBUG_EMAIL(("Followup String - ")); | |
3045 MALLOC_CONTACT(item); | |
3046 LIST_COPY(item->contact->followup, (char*)); | |
3047 DEBUG_EMAIL(("%s\n", item->contact->followup)); | |
3048 break; | |
3049 case 0x8534: // Mileage | |
3050 DEBUG_EMAIL(("Mileage - ")); | |
3051 MALLOC_CONTACT(item); | |
3052 LIST_COPY(item->contact->mileage, (char*)); | |
3053 DEBUG_EMAIL(("%s\n", item->contact->mileage)); | |
3054 break; | |
3055 case 0x8535: // Billing Information | |
3056 DEBUG_EMAIL(("Billing Information - ")); | |
3057 MALLOC_CONTACT(item); | |
3058 LIST_COPY(item->contact->billing_information, (char*)); | |
3059 DEBUG_EMAIL(("%s\n", item->contact->billing_information)); | |
3060 break; | |
3061 case 0x8554: // Outlook Version | |
3062 DEBUG_EMAIL(("Outlook Version - ")); | |
3063 LIST_COPY(item->outlook_version, (char*)); | |
3064 DEBUG_EMAIL(("%s\n", item->outlook_version)); | |
3065 break; | |
3066 case 0x8560: // Appointment Reminder Time | |
3067 DEBUG_EMAIL(("Appointment Reminder Time - ")); | |
3068 MALLOC_APPOINTMENT(item); | |
3069 LIST_COPY(item->appointment->reminder, (FILETIME*)); | |
3070 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->appointment->reminder))); | |
3071 break; | |
3072 case 0x8700: // Journal Type | |
3073 DEBUG_EMAIL(("Journal Entry Type - ")); | |
3074 MALLOC_JOURNAL(item); | |
3075 LIST_COPY(item->journal->type, (char*)); | |
3076 DEBUG_EMAIL(("%s\n", item->journal->type)); | |
3077 break; | |
3078 case 0x8706: // Journal Start date/time | |
3079 DEBUG_EMAIL(("Start Timestamp - ")); | |
3080 MALLOC_JOURNAL(item); | |
3081 LIST_COPY(item->journal->start, (FILETIME*)); | |
3082 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->start))); | |
3083 break; | |
3084 case 0x8708: // Journal End date/time | |
3085 DEBUG_EMAIL(("End Timestamp - ")); | |
3086 MALLOC_JOURNAL(item); | |
3087 LIST_COPY(item->journal->end, (FILETIME*)); | |
3088 DEBUG_EMAIL(("%s\n", fileTimeToAscii(item->journal->end))); | |
3089 break; | |
3090 case 0x8712: // Title? | |
3091 DEBUG_EMAIL(("Journal Entry Type - ")); | |
3092 MALLOC_JOURNAL(item); | |
3093 LIST_COPY(item->journal->type, (char*)); | |
3094 DEBUG_EMAIL(("%s\n", item->journal->type)); | |
3095 break; | |
3096 default: | |
3097 /* Reference Types | |
3098 | |
3099 2 - 0x0002 - Signed 16bit value | |
3100 3 - 0x0003 - Signed 32bit value | |
3101 11 - 0x000B - Boolean (non-zero = true) | |
3102 13 - 0x000D - Embedded Object | |
3103 30 - 0x001E - Null terminated String | |
3104 31 - 0x001F - Unicode string | |
3105 64 - 0x0040 - Systime - Filetime structure | |
3106 72 - 0x0048 - OLE Guid | |
3107 258 - 0x0102 - Binary data | |
3108 | |
3109 - 0x1003 - Array of 32bit values | |
3110 - 0x101E - Array of Strings | |
3111 - 0x1102 - Array of Binary data | |
3112 */ | |
3113 // DEBUG_EMAIL(("Unknown id [%#x, size=%#x]\n", list->items[x]->id, list->items[x]->size)); | |
3114 if (list->items[x]->type == 0x02) { | |
3115 DEBUG_EMAIL(("Unknown 16bit int = %hi\n", *(int16_t*)list->items[x]->data)); | |
3116 } else if (list->items[x]->type == 0x03) { | |
3117 DEBUG_EMAIL(("Unknown 32bit int = %i\n", *(int32_t*)list->items[x]->data)); | |
3118 } else if (list->items[x]->type == 0x0b) { | |
3119 DEBUG_EMAIL(("Unknown 16bit boolean = %s [%hi]\n", | |
3120 (*((int16_t*)list->items[x]->data)!=0?"True":"False"), | |
3121 *((int16_t*)list->items[x]->data))); | |
3122 } else if (list->items[x]->type == 0x1e) { | |
3123 DEBUG_EMAIL(("Unknown String Data = \"%s\" [%#x]\n", | |
3124 list->items[x]->data, list->items[x]->type)); | |
3125 } else if (list->items[x]->type == 0x40) { | |
3126 DEBUG_EMAIL(("Unknown Date = \"%s\" [%#x]\n", | |
3127 fileTimeToAscii((FILETIME*)list->items[x]->data), | |
3128 list->items[x]->type)); | |
3129 } else if (list->items[x]->type == 0x102) { | |
3130 DEBUG_EMAIL(("Unknown Binary Data [size = %#x]\n", | |
3131 list->items[x]->size)); | |
3132 DEBUG_HEXDUMP(list->items[x]->data, list->items[x]->size); | |
3133 } else if (list->items[x]->type == 0x101E) { | |
3134 DEBUG_EMAIL(("Unknown Array of Strings [%#x]\n", | |
3135 list->items[x]->type)); | |
3136 } else { | |
3137 DEBUG_EMAIL(("Unknown Not Printable [%#x]\n", | |
3138 list->items[x]->type)); | |
3139 } | |
3140 if (list->items[x]->data) { | |
3141 free(list->items[x]->data); | |
3142 list->items[x]->data = NULL; | |
3143 } | |
3144 //INC_CHECK_X(); | |
3145 } | |
3146 x++; | |
3147 } | |
3148 x = 0; | |
3149 list = list->next; | |
3150 next = 1; | |
3151 } | |
3152 DEBUG_RET(); | |
3153 return 0; | |
3154 } | |
3155 | |
3156 | |
3157 int32_t _pst_free_list(pst_num_array *list) { | |
3158 int32_t x = 0; | |
3159 pst_num_array *l; | |
3160 DEBUG_ENT("_pst_free_list"); | |
3161 while (list) { | |
3162 while (x < list->count_item) { | |
3163 if (list->items[x]->data) { | |
3164 free (list->items[x]->data); | |
3165 } | |
3166 if (list->items[x]) { | |
3167 free (list->items[x]); | |
3168 } | |
3169 x++; | |
3170 } | |
3171 if (list->items) { | |
3172 free(list->items); | |
3173 } | |
3174 l = list; | |
3175 list = list->next; | |
3176 free (l); | |
3177 x = 0; | |
3178 } | |
3179 DEBUG_RET(); | |
3180 return 1; | |
3181 } | |
3182 | |
3183 | |
3184 int32_t _pst_free_id2(pst_index2_ll * head) { | |
3185 pst_index2_ll *t; | |
3186 DEBUG_ENT("_pst_free_id2"); | |
3187 while (head) { | |
3188 t = head->next; | |
3189 free (head); | |
3190 head = t; | |
3191 } | |
3192 DEBUG_RET(); | |
3193 return 1; | |
3194 } | |
3195 | |
3196 | |
3197 int32_t _pst_free_id (pst_index_ll *head) { | |
3198 pst_index_ll *t; | |
3199 DEBUG_ENT("_pst_free_id"); | |
3200 while (head) { | |
3201 t = head->next; | |
3202 free(head); | |
3203 head = t; | |
3204 } | |
3205 DEBUG_RET(); | |
3206 return 1; | |
3207 } | |
3208 | |
3209 | |
3210 int32_t _pst_free_desc (pst_desc_ll *head) { | |
3211 pst_desc_ll *t; | |
3212 DEBUG_ENT("_pst_free_desc"); | |
3213 while (head) { | |
3214 while (head->child) { | |
3215 head = head->child; | |
3216 } | |
3217 | |
3218 // point t to the next item | |
3219 t = head->next; | |
3220 if (!t && head->parent) { | |
3221 t = head->parent; | |
3222 t->child = NULL; // set the child to NULL so we don't come back here again! | |
3223 } | |
3224 | |
3225 if (head) free(head); | |
3226 else DIE(("head is NULL")); | |
3227 | |
3228 head = t; | |
3229 } | |
3230 DEBUG_RET(); | |
3231 return 1; | |
3232 } | |
3233 | |
3234 | |
3235 int32_t _pst_free_xattrib(pst_x_attrib_ll *x) { | |
3236 pst_x_attrib_ll *t; | |
3237 DEBUG_ENT("_pst_free_xattrib"); | |
3238 while (x) { | |
3239 if (x->data) free(x->data); | |
3240 t = x->next; | |
3241 free(x); | |
3242 x = t; | |
3243 } | |
3244 DEBUG_RET(); | |
3245 return 1; | |
3246 } | |
3247 | |
3248 | |
3249 pst_index2_ll * _pst_build_id2(pst_file *pf, pst_index_ll* list, pst_index2_ll* head_ptr) { | |
3250 pst_block_header block_head; | |
3251 pst_index2_ll *head = NULL, *tail = NULL; | |
3252 int32_t x = 0, b_ptr = 0; | |
3253 char *buf = NULL; | |
3254 pst_id2_assoc id2_rec; | |
3255 pst_index_ll *i_ptr = NULL; | |
3256 pst_index2_ll *i2_ptr = NULL; | |
3257 DEBUG_ENT("_pst_build_id2"); | |
31 | 3258 |
16 | 3259 if (head_ptr) { |
3260 head = head_ptr; | |
3261 while (head_ptr) head_ptr = (tail = head_ptr)->next; | |
3262 } | |
3263 if (_pst_read_block_size(pf, list->offset, list->size, &buf, PST_NO_ENC, 0) < list->size) { | |
3264 //an error occured in block read | |
3265 WARN(("block read error occured. offset = %#x, size = %#x\n", list->offset, list->size)); | |
31 | 3266 if (buf) free(buf); |
16 | 3267 DEBUG_RET(); |
3268 return NULL; | |
3269 } | |
3270 DEBUG_HEXDUMPC(buf, list->size, 16); | |
3271 | |
3272 memcpy(&block_head, buf, sizeof(block_head)); | |
3273 LE16_CPU(block_head.type); | |
3274 LE16_CPU(block_head.count); | |
3275 | |
3276 if (block_head.type != 0x0002) { // some sort of constant? | |
3277 WARN(("Unknown constant [%#x] at start of id2 values [offset %#x].\n", block_head.type, list->offset)); | |
31 | 3278 if (buf) free(buf); |
16 | 3279 DEBUG_RET(); |
3280 return NULL; | |
3281 } | |
3282 | |
3283 DEBUG_INDEX(("ID %#x is likely to be a description record. Count is %i (offset %#x)\n", | |
3284 list->id, block_head.count, list->offset)); | |
3285 x = 0; | |
3286 b_ptr = 0x04; | |
3287 while (x < block_head.count) { | |
3288 memcpy(&id2_rec, &(buf[b_ptr]), sizeof(id2_rec)); | |
3289 LE32_CPU(id2_rec.id2); | |
3290 LE32_CPU(id2_rec.id); | |
3291 LE32_CPU(id2_rec.table2); | |
3292 | |
3293 b_ptr += sizeof(id2_rec); | |
3294 DEBUG_INDEX(("\tid2 = %#x, id = %#x, table2 = %#x\n", id2_rec.id2, id2_rec.id, id2_rec.table2)); | |
3295 if ((i_ptr = _pst_getID(pf, id2_rec.id)) == NULL) { | |
3296 DEBUG_WARN(("\t\t%#x - Not Found\n", id2_rec.id)); | |
3297 } else { | |
3298 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)); | |
3299 // add it to the linked list | |
3300 i2_ptr = (pst_index2_ll*) xmalloc(sizeof(pst_index2_ll)); | |
3301 i2_ptr->id2 = id2_rec.id2; | |
3302 i2_ptr->id = i_ptr; | |
3303 i2_ptr->next = NULL; | |
3304 if (!head) head = i2_ptr; | |
3305 if (tail) tail->next = i2_ptr; | |
3306 tail = i2_ptr; | |
3307 if (id2_rec.table2 != 0) { | |
3308 if ((i_ptr = _pst_getID(pf, id2_rec.table2)) == NULL) { | |
3309 DEBUG_WARN(("\tTable2 [%#x] not found\n", id2_rec.table2)); | |
3310 } | |
3311 else { | |
3312 DEBUG_INDEX(("\tGoing deeper for table2 [%#x]\n", id2_rec.table2)); | |
3313 if ((i2_ptr = _pst_build_id2(pf, i_ptr, head))) { | |
3314 // DEBUG_INDEX(("_pst_build_id2(): \t\tAdding new list onto end of current\n")); | |
3315 // if (!head) | |
3316 // head = i2_ptr; | |
3317 // if (tail) | |
3318 // tail->next = i2_ptr; | |
3319 // while (i2_ptr->next) | |
3320 // i2_ptr = i2_ptr->next; | |
3321 // tail = i2_ptr; | |
3322 } | |
3323 // need to re-establish tail | |
3324 DEBUG_INDEX(("Returned from depth\n")); | |
3325 if (tail) { | |
3326 while (tail->next) tail = tail->next; | |
3327 } | |
3328 } | |
3329 } | |
3330 } | |
3331 x++; | |
3332 } | |
3333 if (buf) free (buf); | |
3334 DEBUG_RET(); | |
3335 return head; | |
3336 } | |
3337 | |
3338 | |
3339 // This version of free does NULL check first | |
3340 #define SAFE_FREE(x) {if (x) free(x);} | |
3341 | |
3342 void _pst_freeItem(pst_item *item) { | |
3343 pst_item_attach *t; | |
3344 pst_item_extra_field *et; | |
3345 | |
3346 DEBUG_ENT("_pst_freeItem"); | |
3347 if (item) { | |
3348 if (item->email) { | |
3349 SAFE_FREE(item->email->arrival_date); | |
3350 SAFE_FREE(item->email->body); | |
3351 SAFE_FREE(item->email->cc_address); | |
3352 SAFE_FREE(item->email->common_name); | |
3353 SAFE_FREE(item->email->encrypted_body); | |
3354 SAFE_FREE(item->email->encrypted_htmlbody); | |
3355 SAFE_FREE(item->email->header); | |
3356 SAFE_FREE(item->email->htmlbody); | |
3357 SAFE_FREE(item->email->in_reply_to); | |
3358 SAFE_FREE(item->email->messageid); | |
3359 SAFE_FREE(item->email->outlook_recipient); | |
3360 SAFE_FREE(item->email->outlook_recipient2); | |
3361 SAFE_FREE(item->email->outlook_sender); | |
3362 SAFE_FREE(item->email->outlook_sender_name); | |
3363 SAFE_FREE(item->email->outlook_sender2); | |
3364 SAFE_FREE(item->email->proc_subject); | |
3365 SAFE_FREE(item->email->recip_access); | |
3366 SAFE_FREE(item->email->recip_address); | |
3367 SAFE_FREE(item->email->recip2_access); | |
3368 SAFE_FREE(item->email->recip2_address); | |
3369 SAFE_FREE(item->email->reply_to); | |
3370 SAFE_FREE(item->email->rtf_body_tag); | |
3371 SAFE_FREE(item->email->rtf_compressed); | |
3372 SAFE_FREE(item->email->return_path_address); | |
3373 SAFE_FREE(item->email->sender_access); | |
3374 SAFE_FREE(item->email->sender_address); | |
3375 SAFE_FREE(item->email->sender2_access); | |
3376 SAFE_FREE(item->email->sender2_address); | |
3377 SAFE_FREE(item->email->sent_date); | |
3378 SAFE_FREE(item->email->sentmail_folder); | |
3379 SAFE_FREE(item->email->sentto_address); | |
3380 if (item->email->subject) | |
3381 SAFE_FREE(item->email->subject->subj); | |
3382 SAFE_FREE(item->email->subject); | |
3383 free(item->email); | |
3384 } | |
3385 if (item->folder) { | |
3386 free(item->folder); | |
3387 } | |
3388 if (item->message_store) { | |
3389 SAFE_FREE(item->message_store->deleted_items_folder); | |
3390 SAFE_FREE(item->message_store->search_root_folder); | |
3391 SAFE_FREE(item->message_store->top_of_personal_folder); | |
3392 SAFE_FREE(item->message_store->top_of_folder); | |
3393 free(item->message_store); | |
3394 } | |
3395 if (item->contact) { | |
3396 SAFE_FREE(item->contact->access_method); | |
3397 SAFE_FREE(item->contact->account_name); | |
3398 SAFE_FREE(item->contact->address1); | |
3399 SAFE_FREE(item->contact->address1a); | |
3400 SAFE_FREE(item->contact->address1_desc); | |
3401 SAFE_FREE(item->contact->address1_transport); | |
3402 SAFE_FREE(item->contact->address2); | |
3403 SAFE_FREE(item->contact->address2a); | |
3404 SAFE_FREE(item->contact->address2_desc); | |
3405 SAFE_FREE(item->contact->address2_transport); | |
3406 SAFE_FREE(item->contact->address3); | |
3407 SAFE_FREE(item->contact->address3a); | |
3408 SAFE_FREE(item->contact->address3_desc); | |
3409 SAFE_FREE(item->contact->address3_transport); | |
3410 SAFE_FREE(item->contact->assistant_name); | |
3411 SAFE_FREE(item->contact->assistant_phone); | |
3412 SAFE_FREE(item->contact->billing_information); | |
3413 SAFE_FREE(item->contact->birthday); | |
3414 SAFE_FREE(item->contact->business_address); | |
3415 SAFE_FREE(item->contact->business_city); | |
3416 SAFE_FREE(item->contact->business_country); | |
3417 SAFE_FREE(item->contact->business_fax); | |
3418 SAFE_FREE(item->contact->business_homepage); | |
3419 SAFE_FREE(item->contact->business_phone); | |
3420 SAFE_FREE(item->contact->business_phone2); | |
3421 SAFE_FREE(item->contact->business_po_box); | |
3422 SAFE_FREE(item->contact->business_postal_code); | |
3423 SAFE_FREE(item->contact->business_state); | |
3424 SAFE_FREE(item->contact->business_street); | |
3425 SAFE_FREE(item->contact->callback_phone); | |
3426 SAFE_FREE(item->contact->car_phone); | |
3427 SAFE_FREE(item->contact->company_main_phone); | |
3428 SAFE_FREE(item->contact->company_name); | |
3429 SAFE_FREE(item->contact->computer_name); | |
3430 SAFE_FREE(item->contact->customer_id); | |
3431 SAFE_FREE(item->contact->def_postal_address); | |
3432 SAFE_FREE(item->contact->department); | |
3433 SAFE_FREE(item->contact->display_name_prefix); | |
3434 SAFE_FREE(item->contact->first_name); | |
3435 SAFE_FREE(item->contact->followup); | |
3436 SAFE_FREE(item->contact->free_busy_address); | |
3437 SAFE_FREE(item->contact->ftp_site); | |
3438 SAFE_FREE(item->contact->fullname); | |
3439 SAFE_FREE(item->contact->gov_id); | |
3440 SAFE_FREE(item->contact->hobbies); | |
3441 SAFE_FREE(item->contact->home_address); | |
3442 SAFE_FREE(item->contact->home_city); | |
3443 SAFE_FREE(item->contact->home_country); | |
3444 SAFE_FREE(item->contact->home_fax); | |
3445 SAFE_FREE(item->contact->home_po_box); | |
3446 SAFE_FREE(item->contact->home_phone); | |
3447 SAFE_FREE(item->contact->home_phone2); | |
3448 SAFE_FREE(item->contact->home_postal_code); | |
3449 SAFE_FREE(item->contact->home_state); | |
3450 SAFE_FREE(item->contact->home_street); | |
3451 SAFE_FREE(item->contact->initials); | |
3452 SAFE_FREE(item->contact->isdn_phone); | |
3453 SAFE_FREE(item->contact->job_title); | |
3454 SAFE_FREE(item->contact->keyword); | |
3455 SAFE_FREE(item->contact->language); | |
3456 SAFE_FREE(item->contact->location); | |
3457 SAFE_FREE(item->contact->manager_name); | |
3458 SAFE_FREE(item->contact->middle_name); | |
3459 SAFE_FREE(item->contact->mileage); | |
3460 SAFE_FREE(item->contact->mobile_phone); | |
3461 SAFE_FREE(item->contact->nickname); | |
3462 SAFE_FREE(item->contact->office_loc); | |
3463 SAFE_FREE(item->contact->org_id); | |
3464 SAFE_FREE(item->contact->other_address); | |
3465 SAFE_FREE(item->contact->other_city); | |
3466 SAFE_FREE(item->contact->other_country); | |
3467 SAFE_FREE(item->contact->other_phone); | |
3468 SAFE_FREE(item->contact->other_po_box); | |
3469 SAFE_FREE(item->contact->other_postal_code); | |
3470 SAFE_FREE(item->contact->other_state); | |
3471 SAFE_FREE(item->contact->other_street); | |
3472 SAFE_FREE(item->contact->pager_phone); | |
3473 SAFE_FREE(item->contact->personal_homepage); | |
3474 SAFE_FREE(item->contact->pref_name); | |
3475 SAFE_FREE(item->contact->primary_fax); | |
3476 SAFE_FREE(item->contact->primary_phone); | |
3477 SAFE_FREE(item->contact->profession); | |
3478 SAFE_FREE(item->contact->radio_phone); | |
3479 SAFE_FREE(item->contact->spouse_name); | |
3480 SAFE_FREE(item->contact->suffix); | |
3481 SAFE_FREE(item->contact->surname); | |
3482 SAFE_FREE(item->contact->telex); | |
3483 SAFE_FREE(item->contact->transmittable_display_name); | |
3484 SAFE_FREE(item->contact->ttytdd_phone); | |
3485 SAFE_FREE(item->contact->wedding_anniversary); | |
3486 free(item->contact); | |
3487 } | |
3488 while (item->attach) { | |
3489 SAFE_FREE(item->attach->filename1); | |
3490 SAFE_FREE(item->attach->filename2); | |
3491 SAFE_FREE(item->attach->mimetype); | |
3492 SAFE_FREE(item->attach->data); | |
3493 t = item->attach->next; | |
3494 free(item->attach); | |
3495 item->attach = t; | |
3496 } | |
3497 while (item->extra_fields) { | |
3498 SAFE_FREE(item->extra_fields->field_name); | |
3499 SAFE_FREE(item->extra_fields->value); | |
3500 et = item->extra_fields->next; | |
3501 free(item->extra_fields); | |
3502 item->extra_fields = et; | |
3503 } | |
3504 if (item->journal) { | |
3505 SAFE_FREE(item->journal->end); | |
3506 SAFE_FREE(item->journal->start); | |
3507 SAFE_FREE(item->journal->type); | |
3508 free(item->journal); | |
3509 } | |
3510 if (item->appointment) { | |
3511 SAFE_FREE(item->appointment->location); | |
3512 SAFE_FREE(item->appointment->reminder); | |
3513 SAFE_FREE(item->appointment->start); | |
3514 SAFE_FREE(item->appointment->end); | |
3515 SAFE_FREE(item->appointment->timezonestring); | |
3516 free(item->appointment); | |
3517 } | |
3518 SAFE_FREE(item->ascii_type); | |
3519 SAFE_FREE(item->comment); | |
3520 SAFE_FREE(item->create_date); | |
3521 SAFE_FREE(item->file_as); | |
3522 SAFE_FREE(item->modify_date); | |
3523 SAFE_FREE(item->outlook_version); | |
3524 SAFE_FREE(item->record_key); | |
3525 free(item); | |
3526 } | |
3527 DEBUG_RET(); | |
3528 } | |
3529 | |
3530 | |
31 | 3531 int32_t _pst_getBlockOffset(unsigned char *buf, int32_t read_size, int32_t i_offset, int32_t offset, pst_block_offset *p) { |
16 | 3532 int32_t of1 = offset>>4; |
3533 DEBUG_ENT("_pst_getBlockOffset"); | |
3534 if (!p || !buf || (i_offset == 0) || (i_offset+2+of1+sizeof(*p) > read_size)) { | |
3535 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)); | |
3536 DEBUG_RET(); | |
3537 return -1; | |
3538 } | |
3539 memcpy(&(p->from), &(buf[(i_offset+2)+of1]), sizeof(p->from)); | |
3540 memcpy(&(p->to), &(buf[(i_offset+2)+of1+sizeof(p->from)]), sizeof(p->to)); | |
3541 LE16_CPU(p->from); | |
3542 LE16_CPU(p->to); | |
3543 DEBUG_WARN(("get block offset finds from=%i(%#x), to=%i(%#x)", p->from, p->from, p->to, p->to)); | |
3544 DEBUG_RET(); | |
3545 return 0; | |
3546 } | |
3547 | |
3548 | |
3549 pst_index_ll * _pst_getID(pst_file* pf, u_int32_t id) { | |
3550 pst_index_ll *ptr = NULL; | |
3551 DEBUG_ENT("_pst_getID"); | |
3552 if (id == 0) { | |
3553 DEBUG_RET(); | |
3554 return NULL; | |
3555 } | |
3556 | |
3557 /* if (id & 0x3) { // if either of the last two bits on the id are set | |
3558 DEBUG_INDEX(("ODD_INDEX (not even) is this a pointer to a table?\n")); | |
3559 }*/ | |
3560 // Dave: I don't think I should do this. next bit. I really think it doesn't work | |
3561 // it isn't based on sound principles either. | |
3562 // update: seems that the last two sig bits are flags. u tell me! | |
3563 id &= 0xFFFFFFFE; // remove least sig. bit. seems that it might work if I do this | |
3564 | |
3565 DEBUG_INDEX(("Trying to find %#x\n", id)); | |
3566 if (!ptr) ptr = pf->i_head; | |
3567 while (ptr && (ptr->id != id)) { | |
3568 ptr = ptr->next; | |
3569 } | |
3570 if (ptr) {DEBUG_INDEX(("Found Value %#x\n", ptr->id));} | |
3571 else {DEBUG_INDEX(("ERROR: Value not found\n")); } | |
3572 DEBUG_RET(); | |
3573 return ptr; | |
3574 } | |
3575 | |
3576 | |
3577 pst_index_ll * _pst_getID2(pst_index2_ll *ptr, u_int32_t id) { | |
3578 DEBUG_ENT("_pst_getID2"); | |
3579 DEBUG_INDEX(("Head = %p\n", ptr)); | |
3580 DEBUG_INDEX(("Trying to find %#x\n", id)); | |
3581 while (ptr && (ptr->id2 != id)) { | |
3582 ptr = ptr->next; | |
3583 } | |
3584 if (ptr) { | |
3585 if (ptr->id) {DEBUG_INDEX(("Found value %#x\n", ptr->id->id)); } | |
3586 else {DEBUG_INDEX(("Found value, though it is NULL!\n"));} | |
3587 DEBUG_RET(); | |
3588 return ptr->id; | |
3589 } | |
3590 DEBUG_INDEX(("ERROR Not Found\n")); | |
3591 DEBUG_RET(); | |
3592 return NULL; | |
3593 } | |
3594 | |
3595 | |
3596 pst_desc_ll * _pst_getDptr(pst_file *pf, u_int32_t id) { | |
3597 pst_desc_ll *ptr = pf->d_head; | |
3598 DEBUG_ENT("_pst_getDptr"); | |
3599 while (ptr && (ptr->id != id)) { | |
3600 if (ptr->child) { | |
3601 ptr = ptr->child; | |
3602 continue; | |
3603 } | |
3604 while (!ptr->next && ptr->parent) { | |
3605 ptr = ptr->parent; | |
3606 } | |
3607 ptr = ptr->next; | |
3608 } | |
3609 DEBUG_RET(); | |
3610 return ptr; // will be NULL or record we are looking for | |
3611 } | |
3612 | |
3613 | |
3614 int32_t _pst_printDptr(pst_file *pf) { | |
3615 pst_desc_ll *ptr = pf->d_head; | |
3616 int32_t depth = 0; | |
3617 char spaces[100]; | |
3618 DEBUG_ENT("_pst_printDptr"); | |
3619 memset(spaces, ' ', 99); | |
3620 spaces[99] = '\0'; | |
3621 while (ptr) { | |
3622 DEBUG_INDEX(("%s%#x [%i] desc=%#x, list=%#x\n", &(spaces[(99-depth<0?0:99-depth)]), ptr->id, ptr->no_child, | |
3623 (ptr->desc==NULL?0:ptr->desc->id), | |
3624 (ptr->list_index==NULL?0:ptr->list_index->id))); | |
3625 if (ptr->child) { | |
3626 depth++; | |
3627 ptr = ptr->child; | |
3628 continue; | |
3629 } | |
3630 while (!ptr->next && ptr->parent) { | |
3631 depth--; | |
3632 ptr = ptr->parent; | |
3633 } | |
3634 ptr = ptr->next; | |
3635 } | |
3636 DEBUG_RET(); | |
3637 return 0; | |
3638 } | |
3639 | |
3640 | |
3641 int32_t _pst_printIDptr(pst_file* pf) { | |
3642 pst_index_ll *ptr = pf->i_head; | |
3643 DEBUG_ENT("_pst_printIDptr"); | |
3644 while (ptr) { | |
3645 DEBUG_INDEX(("%#x offset=%#x size=%#x\n", ptr->id, ptr->offset, ptr->size)); | |
3646 ptr = ptr->next; | |
3647 } | |
3648 DEBUG_RET(); | |
3649 return 0; | |
3650 } | |
3651 | |
3652 | |
3653 int32_t _pst_printID2ptr(pst_index2_ll *ptr) { | |
3654 DEBUG_ENT("_pst_printID2ptr"); | |
3655 while (ptr) { | |
3656 DEBUG_INDEX(("%#x id=%#x\n", ptr->id2, (ptr->id!=NULL?ptr->id->id:0))); | |
3657 ptr = ptr->next; | |
3658 } | |
3659 DEBUG_RET(); | |
3660 return 0; | |
3661 } | |
3662 | |
3663 | |
3664 size_t _pst_read_block(FILE *fp, int32_t offset, void **buf) { | |
3665 size_t size; | |
3666 int32_t fpos; | |
3667 DEBUG_ENT("_pst_read_block"); | |
3668 DEBUG_READ(("Reading block from %#x\n", offset)); | |
3669 fpos = ftell(fp); | |
3670 fseek(fp, offset, SEEK_SET); | |
3671 fread(&size, sizeof(int16_t), 1, fp); | |
3672 fseek(fp, offset, SEEK_SET); | |
3673 DEBUG_READ(("Allocating %i bytes\n", size)); | |
3674 if (*buf) { | |
3675 DEBUG_READ(("Freeing old memory\n")); | |
3676 free(*buf); | |
3677 } | |
3678 *buf = (void*)xmalloc(size); | |
3679 size = fread(*buf, 1, size, fp); | |
3680 fseek(fp, fpos, SEEK_SET); | |
3681 DEBUG_RET(); | |
3682 return size; | |
3683 } | |
3684 | |
3685 | |
3686 // when the first byte of the block being read is 01, then we can assume | |
3687 // that it is a list of further ids to read and we will follow those ids | |
3688 // recursively calling this function until we have all the data | |
3689 // we could do decryption of the encrypted PST files here | |
3690 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) { | |
3691 u_int32_t fpos, x; | |
3692 int16_t count, y; | |
3693 char *buf2 = NULL, *buf3 = NULL; | |
3694 unsigned char fdepth; | |
3695 pst_index_ll *ptr = NULL; | |
3696 size_t rsize, z; | |
31 | 3697 |
16 | 3698 DEBUG_ENT("_pst_read_block_size"); |
3699 DEBUG_READ(("Reading block from %#x, %i bytes\n", offset, size)); | |
31 | 3700 |
16 | 3701 fpos = ftell(pf->fp); |
3702 fseek(pf->fp, offset, SEEK_SET); | |
3703 if (*buf) { | |
3704 DEBUG_READ(("Freeing old memory\n")); | |
3705 free(*buf); | |
3706 } | |
3707 | |
31 | 3708 *buf = (void*) xmalloc(size+1); //plus one so that we can NUL terminate it later |
16 | 3709 rsize = fread(*buf, 1, size, pf->fp); |
3710 if (rsize != size) { | |
3711 DEBUG_WARN(("Didn't read all that I could. fread returned less [%i instead of %i]\n", rsize, size)); | |
3712 if (feof(pf->fp)) { | |
3713 DEBUG_WARN(("We tried to read past the end of the file at [offset %#x, size %#x]\n", offset, size)); | |
3714 } else if (ferror(pf->fp)) { | |
3715 DEBUG_WARN(("Error is set on file stream.\n")); | |
3716 } else { | |
3717 DEBUG_WARN(("I can't tell why it failed\n")); | |
3718 } | |
3719 size = rsize; | |
3720 } | |
3721 | |
3722 // DEBUG_HEXDUMP(*buf, size); | |
3723 | |
3724 /* if (is_index) { | |
3725 DEBUG_READ(("_pst_read_block_size: ODD_BLOCK should be here\n")); | |
3726 DEBUG_READ(("\t: byte 0-1: %#x %#x\n", (*buf)[0], (*buf)[1])); | |
3727 }*/ | |
3728 | |
3729 if ((*buf)[0] == 0x01 && (*buf)[1] != 0x00 && is_index) { | |
3730 //don't do this recursion if we should be at a leaf node | |
3731 memcpy(&count, &((*buf)[2]), sizeof(int16_t)); | |
3732 LE16_CPU(count); | |
3733 memcpy(&fdepth, &((*buf)[1]), sizeof(fdepth)); | |
3734 DEBUG_READ(("Seen indexes to blocks. Depth is %i\n", fdepth)); | |
3735 // do fancy stuff! :) | |
3736 DEBUG_READ(("There are %i ids\n", count)); | |
3737 // if first 2 blocks are 01 01 then index to blocks | |
3738 size = 0; | |
3739 y = 0; | |
3740 while (y < count) { | |
3741 memcpy(&x, &(*buf)[0x08+(y*4)], sizeof(int32_t)); | |
3742 LE32_CPU(x); | |
3743 if ((ptr = _pst_getID(pf, x)) == NULL) { | |
3744 WARN(("Error. Cannot find ID [%#x] during multi-block read\n", x)); | |
3745 buf3 = (char*) realloc(buf3, size+1); | |
3746 buf3[size] = '\0'; | |
3747 *buf = buf3; | |
3748 fseek(pf->fp, fpos, SEEK_SET); | |
3749 DEBUG_RET(); | |
3750 return size; | |
3751 } | |
3752 if ((z = _pst_read_block_size(pf, ptr->offset, ptr->size, &buf2, do_enc, fdepth-1)) < ptr->size) { | |
3753 buf3 = (char*) realloc(buf3, size+1); | |
3754 buf3[size] = '\0'; | |
3755 *buf = buf3; | |
3756 fseek(pf->fp, fpos, SEEK_SET); | |
3757 DEBUG_RET(); | |
3758 return size; | |
3759 } | |
3760 DEBUG_READ(("Melding newley retrieved block with bigger one. New size is %i\n", size+z)); | |
3761 buf3 = (char*) realloc(buf3, size+z+1); //plus one so that we can null terminate it later | |
3762 DEBUG_READ(("Doing copy. Start pos is %i, length is %i\n", size, z)); | |
3763 memcpy(&(buf3[size]), buf2, z); | |
3764 size += z; | |
3765 y++; | |
3766 } | |
3767 free(*buf); | |
3768 if (buf2) free(buf2); | |
3769 if (!buf3) { | |
3770 // this can happen if count == 0. We should create an empty buffer so we don't | |
3771 // confuse any clients | |
3772 buf3 = (char*) xmalloc(1); | |
3773 } | |
3774 *buf = buf3; | |
3775 } else if (do_enc && pf->encryption) | |
3776 _pst_decrypt(*buf, size, pf->encryption); | |
3777 | |
3778 (*buf)[size] = '\0'; //should be byte after last one read | |
3779 fseek(pf->fp, fpos, SEEK_SET); | |
3780 DEBUG_RET(); | |
3781 return size; | |
3782 } | |
3783 | |
3784 | |
3785 int32_t _pst_decrypt(unsigned char *buf, size_t size, int32_t type) { | |
3786 size_t x = 0; | |
3787 unsigned char y; | |
3788 DEBUG_ENT("_pst_decrypt"); | |
3789 if (!buf) { | |
3790 DEBUG_RET(); | |
3791 return -1; | |
3792 } | |
3793 | |
3794 if (type == PST_COMP_ENCRYPT) { | |
3795 x = 0; | |
3796 while (x < size) { | |
3797 y = buf[x]; | |
3798 DEBUG_DECRYPT(("Transposing %#hhx to %#hhx [%#x]\n", buf[x], comp_enc[y], y)); | |
3799 buf[x] = comp_enc[y]; // transpose from encrypt array | |
3800 x++; | |
3801 } | |
3802 } else { | |
3803 WARN(("Unknown encryption: %i. Cannot decrypt\n", type)); | |
3804 DEBUG_RET(); | |
3805 return -1; | |
3806 } | |
3807 DEBUG_RET(); | |
3808 return 0; | |
3809 } | |
3810 | |
3811 | |
3812 int32_t _pst_getAtPos(FILE *fp, int32_t pos, void* buf, u_int32_t size) { | |
3813 DEBUG_ENT("_pst_getAtPos"); | |
3814 if (fseek(fp, pos, SEEK_SET) == -1) { | |
3815 DEBUG_RET(); | |
3816 return 1; | |
3817 } | |
3818 | |
3819 if (fread(buf, 1, size, fp) < size) { | |
3820 DEBUG_RET(); | |
3821 return 2; | |
3822 } | |
3823 DEBUG_RET(); | |
3824 return 0; | |
3825 } | |
3826 | |
3827 | |
3828 int32_t _pst_get (FILE *fp, void *buf, u_int32_t size) { | |
3829 DEBUG_ENT("_pst_get"); | |
3830 if (fread(buf, 1, size, fp) < size) { | |
3831 DEBUG_RET(); | |
3832 return 1; | |
3833 } | |
3834 DEBUG_RET(); | |
3835 return 0; | |
3836 } | |
3837 | |
3838 | |
3839 size_t _pst_ff_getIDblock_dec(pst_file *pf, u_int32_t id, unsigned char **b) { | |
3840 size_t r; | |
3841 DEBUG_ENT("_pst_ff_getIDblock_dec"); | |
3842 r = _pst_ff_getIDblock(pf, id, b); | |
3843 if (pf->encryption) _pst_decrypt(*b, r, pf->encryption); | |
3844 DEBUG_HEXDUMPC(*b, r, 16); | |
3845 DEBUG_RET(); | |
3846 return r; | |
3847 } | |
3848 | |
3849 | |
3850 /** the get ID function for the default file format that I am working with | |
3851 ie the one in the PST files */ | |
3852 size_t _pst_ff_getIDblock(pst_file *pf, u_int32_t id, unsigned char** b) { | |
3853 pst_index_ll *rec; | |
3854 size_t rsize = 0;//, re_size=0; | |
3855 DEBUG_ENT("_pst_ff_getIDblock"); | |
3856 if ((rec = _pst_getID(pf, id)) == NULL) { | |
3857 DEBUG_INDEX(("Cannot find ID %#x\n", id)); | |
3858 DEBUG_RET(); | |
3859 return 0; | |
3860 } | |
3861 fseek(pf->fp, rec->offset, SEEK_SET); | |
3862 if (*b) { | |
3863 DEBUG_INDEX(("freeing old memory in b\n")); | |
3864 free(*b); | |
3865 } | |
3866 | |
3867 DEBUG_INDEX(("id = %#x, record size = %#x, offset = %#x\n", id, rec->size, rec->offset)); | |
3868 *b = (char*) xmalloc(rec->size+1); | |
3869 rsize = fread(*b, 1, rec->size, pf->fp); | |
3870 if (rsize != rec->size) { | |
3871 DEBUG_WARN(("Didn't read all the size. fread returned less [%i instead of %i]\n", rsize, rec->size)); | |
3872 if (feof(pf->fp)) { | |
3873 DEBUG_WARN(("We tried to read past the end of the file [offset %#x, size %#x]\n", rec->offset, rec->size)); | |
3874 } else if (ferror(pf->fp)) { | |
3875 DEBUG_WARN(("Some error occured on the file stream\n")); | |
3876 } else { | |
3877 DEBUG_WARN(("No error has been set on the file stream\n")); | |
3878 } | |
3879 } | |
3880 DEBUG_RET(); | |
3881 return rsize; | |
3882 } | |
3883 | |
3884 | |
3885 #define PST_PTR_BLOCK_SIZE 0x120 | |
3886 size_t _pst_ff_getID2block(pst_file *pf, u_int32_t id2, pst_index2_ll *id2_head, unsigned char** buf) { | |
3887 pst_index_ll* ptr; | |
3888 // size_t ret; | |
3889 struct holder h = {buf, NULL, 0}; | |
3890 DEBUG_ENT("_pst_ff_getID2block"); | |
3891 ptr = _pst_getID2(id2_head, id2); | |
3892 | |
3893 if (!ptr) { | |
3894 DEBUG_INDEX(("Cannot find id2 value %#x\n", id2)); | |
3895 DEBUG_RET(); | |
3896 return 0; | |
3897 } | |
3898 DEBUG_RET(); | |
3899 return _pst_ff_getID2data(pf, ptr, &h); | |
3900 } | |
3901 | |
3902 | |
3903 size_t _pst_ff_getID2data(pst_file *pf, pst_index_ll *ptr, struct holder *h) { | |
3904 // if the attachment begins with 01 01, <= 256 bytes, it is stored in the record | |
3905 int32_t ret; | |
3906 unsigned char *b = NULL, *t; | |
3907 DEBUG_ENT("_pst_ff_getID2data"); | |
3908 if (!(ptr->id & 0x02)) { | |
3909 ret = _pst_ff_getIDblock_dec(pf, ptr->id, &b); | |
3910 if (h->buf) { | |
3911 *(h->buf) = b; | |
3912 } else if ((h->base64 == 1) && h->fp) { | |
3913 t = base64_encode(b, ret); | |
31 | 3914 if (t) pst_fwrite(t, 1, strlen(t), h->fp); |
16 | 3915 free(b); |
3916 } else if (h->fp) { | |
3917 pst_fwrite(b, 1, ret, h->fp); | |
3918 free(b); | |
3919 } | |
3920 //if ((*buf)[0] == 0x1) { | |
3921 // DEBUG_WARN(("WARNING: buffer starts with 0x1, but I didn't expect it to!\n")); | |
3922 //} | |
3923 } else { | |
3924 // here we will assume it is a block that points to others | |
3925 DEBUG_READ(("Assuming it is a multi-block record because of it's id\n")); | |
3926 ret = _pst_ff_compile_ID(pf, ptr->id, h, 0); | |
3927 } | |
3928 if (h->buf && *h->buf) | |
3929 (*(h->buf))[ret]='\0'; | |
3930 DEBUG_RET(); | |
3931 return ret; | |
3932 } | |
3933 | |
3934 | |
3935 size_t _pst_ff_compile_ID(pst_file *pf, u_int32_t id, struct holder *h, int32_t size) { | |
3936 size_t z, a; | |
3937 u_int16_t count, y; | |
3938 u_int32_t x, b; | |
3939 unsigned char * buf3 = NULL, *buf2 = NULL, *t; | |
3940 unsigned char fdepth; | |
3941 | |
3942 DEBUG_ENT("_pst_ff_compile_ID"); | |
31 | 3943 if ((a = _pst_ff_getIDblock(pf, id, &buf3))==0) { |
3944 if (buf3) free(buf3); | |
16 | 3945 return 0; |
31 | 3946 } |
16 | 3947 if ((buf3[0] != 0x1)) { // if bit 8 is set) { |
3948 // if ((buf3)[0] != 0x1 && (buf3)[1] > 4) { | |
3949 DEBUG_WARN(("WARNING: buffer doesn't start with 0x1, but I expected it to or doesn't have it's two-bit set!\n")); | |
3950 DEBUG_WARN(("Treating as normal buffer\n")); | |
3951 if (pf->encryption) _pst_decrypt(buf3, a, pf->encryption); | |
3952 if (h->buf) | |
3953 *(h->buf) = buf3; | |
3954 else if (h->base64 == 1 && h->fp) { | |
3955 t = base64_encode(buf3, a); | |
31 | 3956 if (t) pst_fwrite(t, 1, strlen(t), h->fp); |
16 | 3957 free(buf3); |
3958 } else if (h->fp) { | |
3959 pst_fwrite(buf3, 1, a, h->fp); | |
3960 free(buf3); | |
3961 } | |
3962 DEBUG_RET(); | |
3963 return a; | |
3964 } | |
3965 memcpy (&count, &(buf3[2]), sizeof(int16_t)); | |
3966 LE16_CPU(count); | |
3967 memcpy (&fdepth, &(buf3[1]), sizeof(char)); | |
3968 DEBUG_READ(("Seen index to blocks. Depth is %i\n", fdepth)); | |
3969 DEBUG_READ(("There are %i ids here\n", count)); | |
3970 | |
3971 y = 0; | |
3972 while (y < count) { | |
3973 memcpy(&x, &buf3[0x08+(y*4)], sizeof(int32_t)); | |
3974 LE32_CPU(x); | |
3975 if (fdepth == 0x1) { | |
3976 if ((z = _pst_ff_getIDblock(pf, x, &buf2)) == 0) { | |
3977 DEBUG_WARN(("call to getIDblock returned zero %i\n", z)); | |
3978 if (buf2) free(buf2); | |
3979 free(buf3); | |
3980 return z; | |
3981 } | |
3982 if (pf->encryption) _pst_decrypt(buf2, z, pf->encryption); | |
3983 if (h->buf) { | |
3984 *(h->buf) = realloc(*(h->buf), size+z+1); | |
3985 DEBUG_READ(("appending read data of size %i onto main buffer from pos %i\n", z, size)); | |
3986 memcpy(&((*(h->buf))[size]), buf2, z); | |
3987 } | |
3988 else if ((h->base64 == 1) && h->fp) { | |
3989 // include any byte left over from the last one encoding | |
3990 buf2 = (char*)realloc(buf2, z+h->base64_extra); | |
3991 memmove(buf2+h->base64_extra, buf2, z); | |
3992 memcpy(buf2, h->base64_extra_chars, h->base64_extra); | |
3993 z+= h->base64_extra; | |
3994 | |
3995 b = z % 3; // find out how many bytes will be left over after the encoding. | |
3996 // and save them | |
3997 memcpy(h->base64_extra_chars, &(buf2[z-b]), b); | |
3998 h->base64_extra = b; | |
3999 t = base64_encode(buf2, z-b); | |
31 | 4000 if (t) pst_fwrite(t, 1, strlen(t), h->fp); |
16 | 4001 DEBUG_READ(("writing %i bytes to file as base64 [%i]. Currently %i\n", |
4002 z, strlen(t), size)); | |
4003 } | |
4004 else if (h->fp) { | |
4005 DEBUG_READ(("writing %i bytes to file. Currently %i\n", z, size)); | |
4006 pst_fwrite(buf2, 1, z, h->fp); | |
4007 } | |
4008 size += z; | |
4009 y++; | |
4010 } | |
4011 else { | |
4012 if ((z = _pst_ff_compile_ID(pf, x, h, size)) == 0) { | |
4013 DEBUG_WARN(("recursive called returned zero %i\n", z)); | |
4014 free(buf3); | |
4015 DEBUG_RET(); | |
4016 return z; | |
4017 } | |
4018 size = z; | |
4019 y++; | |
4020 } | |
4021 } | |
4022 free(buf3); | |
4023 if (buf2) free(buf2); | |
4024 DEBUG_RET(); | |
4025 return size; | |
4026 } | |
4027 | |
4028 | |
4029 #ifdef _MSC_VER | |
4030 char * fileTimeToAscii(const FILETIME* filetime) { | |
4031 time_t t; | |
4032 DEBUG_ENT("fileTimeToAscii"); | |
4033 t = fileTimeToUnixTime(filetime, 0); | |
4034 if (t == -1) | |
4035 DEBUG_WARN(("ERROR time_t varible that was produced, is -1\n")); | |
4036 DEBUG_RET(); | |
4037 return ctime(&t); | |
4038 } | |
4039 | |
4040 | |
4041 time_t fileTimeToUnixTime(const FILETIME* filetime, DWORD *x) { | |
4042 SYSTEMTIME s; | |
4043 struct tm t; | |
4044 DEBUG_ENT("fileTimeToUnixTime"); | |
4045 memset (&t, 0, sizeof(struct tm)); | |
4046 FileTimeToSystemTime(filetime, &s); | |
4047 t.tm_year = s.wYear-1900; // this is what is required | |
4048 t.tm_mon = s.wMonth-1; // also required! It made me a bit confused | |
4049 t.tm_mday = s.wDay; | |
4050 t.tm_hour = s.wHour; | |
4051 t.tm_min = s.wMinute; | |
4052 t.tm_sec = s.wSecond; | |
4053 DEBUG_RET(); | |
4054 return mktime(&t); | |
4055 } | |
4056 | |
4057 | |
4058 struct tm * fileTimeToStructTM (const FILETIME *filetime) { | |
4059 time_t t1; | |
4060 t1 = fileTimeToUnixTime(filetime, 0); | |
4061 return gmtime(&t1); | |
4062 } | |
4063 | |
4064 | |
4065 #endif //_MSC_VER | |
4066 | |
4067 int32_t pst_stricmp(char *a, char *b) { | |
4068 // compare strings case-insensitive. | |
4069 // returns -1 if a < b, 0 if a==b, 1 if a > b | |
4070 while(*a != '\0' && *b != '\0' && toupper(*a)==toupper(*b)) { | |
4071 a++; b++; | |
4072 } | |
4073 if (toupper(*a) == toupper(*b)) | |
4074 return 0; | |
4075 else if (toupper(*a) < toupper(*b)) | |
4076 return -1; | |
4077 else | |
4078 return 1; | |
4079 } | |
4080 | |
4081 | |
4082 int32_t pst_strincmp(char *a, char *b, int32_t x) { | |
4083 // compare upto x chars in string a and b case-insensitively | |
4084 // returns -1 if a < b, 0 if a==b, 1 if a > b | |
4085 int32_t y = 0; | |
4086 while (*a != '\0' && *b != '\0' && y < x && toupper(*a)==toupper(*b)) { | |
4087 a++; b++; y++; | |
4088 } | |
4089 // if we have reached the end of either string, or a and b still match | |
4090 if (*a == '\0' || *b == '\0' || toupper(*a)==toupper(*b)) | |
4091 return 0; | |
4092 else if (toupper(*a) < toupper(*b)) | |
4093 return -1; | |
4094 else | |
4095 return 1; | |
4096 } | |
4097 | |
4098 | |
4099 size_t pst_fwrite(const void*ptr, size_t size, size_t nmemb, FILE*stream) { | |
4100 size_t r; | |
4101 DEBUG_ENT("pst_fwrite"); | |
4102 if (ptr) | |
4103 r = fwrite(ptr, size, nmemb, stream); | |
4104 else { | |
4105 r = 0; | |
4106 DEBUG_WARN(("An attempt to write a NULL Pointer was made\n")); | |
4107 } | |
4108 DEBUG_RET(); | |
4109 return r; | |
4110 } | |
4111 | |
4112 | |
4113 char * _pst_wide_to_single(char *wt, int32_t size) { | |
4114 // returns the first byte of each wide char. the size is the number of bytes in source | |
4115 char *x, *y; | |
4116 DEBUG_ENT("_pst_wide_to_single"); | |
4117 x = xmalloc((size/2)+1); | |
4118 y = x; | |
4119 while (size != 0 && *wt != '\0') { | |
4120 *y = *wt; | |
4121 wt+=2; | |
4122 size -= 2; | |
4123 y++; | |
4124 } | |
4125 *y = '\0'; | |
4126 DEBUG_RET(); | |
4127 return x; | |
4128 } | |
4129 |