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