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