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