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