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