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