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