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