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