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