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