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