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