annotate src/libpst.c @ 383:2379a4d8d9c7

Tim Dufrane - fix segfault in pst_close()
author Carl Byington <carl@five-ten-sg.com>
date Thu, 25 Jul 2019 07:43:49 -0700
parents 0ccc746c8079
children 5c0ce43c7532
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1 /***
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2 * libpst.c
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3 * Part of the LibPST project
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4 * Written by David Smith
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
5 * dave.s@earthcorp.com
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
6 */
118
0f1492b7fe8b patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents: 116
diff changeset
7
122
bdb38b434c0a more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents: 120
diff changeset
8 #include "define.h"
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
9 #include "zlib.h"
122
bdb38b434c0a more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents: 120
diff changeset
10
130
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
11
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
12 // switch to maximal packing for our own internal structures
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
13 // use the same code as in libpst.h
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
14 #ifdef _MSC_VER
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
15 #pragma pack(push, 1)
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
16 #endif
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
17 #if defined(__GNUC__) || defined (__SUNPRO_C) || defined(__SUNPRO_CC)
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
18 #pragma pack(1)
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
19 #endif
e35fd42bac05 more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents: 129
diff changeset
20
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
21 #define ASSERT(x) { if(!(x)) raise( SIGSEGV ); }
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
22
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
23 #define INDEX_TYPE32 0x0E
118
0f1492b7fe8b patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents: 116
diff changeset
24 #define INDEX_TYPE32A 0x0F // unknown, but assumed to be similar for now
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
25 #define INDEX_TYPE64 0x17
122
bdb38b434c0a more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents: 120
diff changeset
26 #define INDEX_TYPE64A 0x15 // http://sourceforge.net/projects/libpff/
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
27 #define INDEX_TYPE4K 0x24
125
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
28 #define INDEX_TYPE_OFFSET (int64_t)0x0A
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
29
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
30 #define FILE_SIZE_POINTER32 (int64_t)0xA8
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
31 #define INDEX_POINTER32 (int64_t)0xC4
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
32 #define INDEX_BACK32 (int64_t)0xC0
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
33 #define SECOND_POINTER32 (int64_t)0xBC
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
34 #define SECOND_BACK32 (int64_t)0xB8
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
35 #define ENC_TYPE32 (int64_t)0x1CD
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
36
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
37 #define FILE_SIZE_POINTER64 (int64_t)0xB8
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
38 #define INDEX_POINTER64 (int64_t)0xF0
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
39 #define INDEX_BACK64 (int64_t)0xE8
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
40 #define SECOND_POINTER64 (int64_t)0xE0
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
41 #define SECOND_BACK64 (int64_t)0xD8
23a36ac0514d recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents: 123
diff changeset
42 #define ENC_TYPE64 (int64_t)0x201
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
43
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
44 #define FILE_SIZE_POINTER ((pf->do_read64) ? FILE_SIZE_POINTER64 : FILE_SIZE_POINTER32)
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
45 #define INDEX_POINTER ((pf->do_read64) ? INDEX_POINTER64 : INDEX_POINTER32)
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
46 #define INDEX_BACK ((pf->do_read64) ? INDEX_BACK64 : INDEX_BACK32)
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
47 #define SECOND_POINTER ((pf->do_read64) ? SECOND_POINTER64 : SECOND_POINTER32)
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
48 #define SECOND_BACK ((pf->do_read64) ? SECOND_BACK64 : SECOND_BACK32)
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
49 #define ENC_TYPE ((pf->do_read64) ? ENC_TYPE64 : ENC_TYPE32)
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
50
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
51
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
52 #define PST_SIGNATURE 0x4E444221
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
53
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
54
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
55 typedef struct pst_block_offset {
289
cc8ee701f190 pst_block_offset elements are unsigned; consistent usage of pst_malloc and pst_realloc
Carl Byington <carl@five-ten-sg.com>
parents: 287
diff changeset
56 uint16_t from;
cc8ee701f190 pst_block_offset elements are unsigned; consistent usage of pst_malloc and pst_realloc
Carl Byington <carl@five-ten-sg.com>
parents: 287
diff changeset
57 uint16_t to;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
58 } pst_block_offset;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
59
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
60
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
61 typedef struct pst_block_offset_pointer {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
62 char *from;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
63 char *to;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
64 int needfree;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
65 } pst_block_offset_pointer;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
66
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
67
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
68 typedef struct pst_holder {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
69 char **buf;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
70 FILE *fp;
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
71 int base64; // bool, are we encoding into base64
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
72 int base64_line_count; // base64 bytes emitted on the current line
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
73 size_t base64_extra; // count of bytes held in base64_extra_chars
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
74 char base64_extra_chars[2]; // up to two pending unencoded bytes
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
75 } pst_holder;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
76
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
77
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
78 typedef struct pst_subblock {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
79 char *buf;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
80 size_t read_size;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
81 size_t i_offset;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
82 } pst_subblock;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
83
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
84
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
85 typedef struct pst_subblocks {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
86 size_t subblock_count;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
87 pst_subblock *subs;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
88 } pst_subblocks;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
89
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
90
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
91 typedef struct pst_mapi_element {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
92 uint32_t mapi_id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
93 char *data;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
94 uint32_t type;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
95 size_t size;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
96 char *extra;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
97 } pst_mapi_element;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
98
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
99
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
100 typedef struct pst_mapi_object {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
101 int32_t count_elements; // count of active elements
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
102 int32_t orig_count; // originally allocated elements
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
103 int32_t count_objects; // number of mapi objects in the list
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
104 struct pst_mapi_element **elements;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
105 struct pst_mapi_object *next;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
106 } pst_mapi_object;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
107
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
108
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
109 typedef struct pst_desc32 {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
110 uint32_t d_id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
111 uint32_t desc_id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
112 uint32_t tree_id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
113 uint32_t parent_d_id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
114 } pst_desc32;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
115
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
116
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
117 typedef struct pst_index32 {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
118 uint32_t id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
119 uint32_t offset;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
120 uint16_t size;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
121 int16_t u1;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
122 } pst_index32;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
123
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
124
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
125 struct pst_table_ptr_struct32{
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
126 uint32_t start;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
127 uint32_t u1;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
128 uint32_t offset;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
129 };
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
130
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
131
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
132 typedef struct pst_desc {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
133 uint64_t d_id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
134 uint64_t desc_id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
135 uint64_t tree_id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
136 uint32_t parent_d_id; // not 64 bit
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
137 uint32_t u1; // padding
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
138 } pst_desc;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
139
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
140
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
141 typedef struct pst_index64 {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
142 uint64_t id;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
143 uint64_t offset;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
144 uint16_t size;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
145 int16_t u0;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
146 int32_t u1;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
147 } pst_index64;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
148
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
149 typedef struct pst_index {
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
150 uint64_t id;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
151 uint64_t offset;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
152 uint16_t size;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
153 uint16_t inflated_size;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
154 int16_t u0;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
155 int32_t u1;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
156 } pst_index;
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
157
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
158
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
159 struct pst_table_ptr_struct{
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
160 uint64_t start;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
161 uint64_t u1;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
162 uint64_t offset;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
163 };
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
164
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
165
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
166 typedef struct pst_block_header {
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
167 uint16_t type;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
168 uint16_t count;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
169 } pst_block_header;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
170
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
171
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
172 typedef struct pst_id2_assoc32 {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
173 uint32_t id2;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
174 uint32_t id;
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
175 uint32_t child_id;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
176 } pst_id2_assoc32;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
177
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
178
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
179 typedef struct pst_id2_assoc {
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
180 uint32_t id2; // only 32 bit here
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
181 uint16_t unknown1;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
182 uint16_t unknown2;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
183 uint64_t id;
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
184 uint64_t child_id;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
185 } pst_id2_assoc;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
186
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
187
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
188 typedef struct pst_table3_rec32 {
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
189 uint32_t id;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
190 } pst_table3_rec32; //for type 3 (0x0101) blocks
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
191
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
192
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
193 typedef struct pst_table3_rec {
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
194 uint64_t id;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
195 } pst_table3_rec; //for type 3 (0x0101) blocks
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
196
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
197
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
198 typedef struct pst_block_hdr {
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
199 uint16_t index_offset;
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
200 uint16_t type;
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
201 uint32_t offset;
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
202 } pst_block_hdr;
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
203
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
204
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
205 /** for "compressible" encryption, just a simple substitution cipher,
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
206 * plaintext = comp_enc[ciphertext];
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
207 * for "strong" encryption, this is the first rotor of an Enigma 3 rotor cipher.
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
208 */
79
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
209 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
210 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
211 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
212 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
213 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
214 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
215 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
216 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
217 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
218 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
219 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
220 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
221 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
222 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
223 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
224 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
225 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
226 };
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
227
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
228 /** for "strong" encryption, this is the second rotor of an Enigma 3 rotor cipher.
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
229 */
79
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
230 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
231 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
232 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
233 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
234 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
235 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
236 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
237 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
238 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
239 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
240 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
241 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
242 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
243 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
244 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
245 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
246 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
247 };
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
248
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
249 /** for "strong" encryption, this is the third rotor of an Enigma 3 rotor cipher.
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
250 */
79
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
251 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
252 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
253 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
254 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
255 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
256 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
257 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
258 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
259 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
260 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
261 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
262 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
263 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
264 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
265 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
266 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
267 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
268 };
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
269
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
270 static size_t pst_append_holder(pst_holder *h, size_t size, char **buf, size_t z);
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
271 static int pst_build_desc_ptr(pst_file *pf, int64_t offset, int32_t depth, uint64_t linku1, uint64_t start_val, uint64_t end_val);
201
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
272 static pst_id2_tree* pst_build_id2(pst_file *pf, pst_index_ll* list);
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
273 static int pst_build_id_ptr(pst_file *pf, int64_t offset, int32_t depth, uint64_t linku1, uint64_t start_val, uint64_t end_val);
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
274 static int pst_chr_count(char *str, char x);
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
275 static size_t pst_ff_compile_ID(pst_file *pf, uint64_t i_id, pst_holder *h, size_t size);
204
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
276 static size_t pst_ff_getIDblock(pst_file *pf, uint64_t i_id, char** buf);
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
277 static size_t pst_ff_getID2block(pst_file *pf, uint64_t id2, pst_id2_tree *id2_head, char** buf);
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
278 static size_t pst_ff_getID2data(pst_file *pf, pst_index_ll *ptr, pst_holder *h);
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
279 static size_t pst_finish_cleanup_holder(pst_holder *h, size_t size);
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
280 static void pst_free_attach(pst_item_attach *attach);
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
281 static void pst_free_desc (pst_desc_tree *head);
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
282 static void pst_free_id2(pst_id2_tree * head);
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
283 static void pst_free_list(pst_mapi_object *list);
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
284 static void pst_free_xattrib(pst_x_attrib_ll *x);
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
285 static size_t pst_getAtPos(pst_file *pf, int64_t pos, void* buf, size_t size);
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
286 static int pst_getBlockOffsetPointer(pst_file *pf, pst_id2_tree *i2_head, pst_subblocks *subblocks, uint32_t offset, pst_block_offset_pointer *p);
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
287 static int pst_getBlockOffset(char *buf, size_t read_size, uint32_t i_offset, uint32_t offset, pst_block_offset *p);
201
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
288 static pst_id2_tree* pst_getID2(pst_id2_tree * ptr, uint64_t id);
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
289 static pst_desc_tree* pst_getDptr(pst_file *pf, uint64_t d_id);
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
290 static uint64_t pst_getIntAt(pst_file *pf, char *buf);
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
291 static uint64_t pst_getIntAtPos(pst_file *pf, int64_t pos);
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
292 static pst_mapi_object* pst_parse_block(pst_file *pf, uint64_t block_id, pst_id2_tree *i2_head);
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
293 static void pst_printDptr(pst_file *pf, pst_desc_tree *ptr);
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
294 static void pst_printID2ptr(pst_id2_tree *ptr);
297
8b3a827b71f4 add alarm reminders to calendar events
Carl Byington <carl@five-ten-sg.com>
parents: 289
diff changeset
295 static int pst_process(uint64_t block_id, pst_mapi_object *list, pst_item *item, pst_item_attach *attach);
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
296 static size_t pst_read_block_size(pst_file *pf, int64_t offset, size_t size, size_t inflated_size, char **buf);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
297 static size_t pst_read_raw_block_size(pst_file *pf, int64_t offset, size_t size, char **buf);
204
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
298 static int pst_decrypt(uint64_t i_id, char *buf, size_t size, unsigned char type);
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
299 static int pst_strincmp(char *a, char *b, size_t x);
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
300 static char* pst_wide_to_single(char *wt, size_t size);
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
301
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
302
325
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
303 static char *pst_getcwd(void) {
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
304 char *cwd;
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
305 #ifdef HAVE_GET_CURRENT_DIR_NAME
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
306 cwd = get_current_dir_name();
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
307 #else
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
308 cwd = pst_malloc(PATH_MAX+1);
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
309 getcwd(cwd, PATH_MAX+1);
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
310 #endif
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
311 return cwd;
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
312 }
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
313
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
314
298
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
315 int pst_open(pst_file *pf, const char *name, const char *charset) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
316 int32_t sig;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
317
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
318 pst_unicode_init();
45
b961bcdadd0e more fixes for 64 bit format
carl
parents: 44
diff changeset
319
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
320 DEBUG_ENT("pst_open");
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
321
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
322 if (!pf) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
323 WARN (("cannot be passed a NULL pst_file\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
324 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
325 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
326 }
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
327 memset(pf, 0, sizeof(*pf));
298
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
328 pf->charset = charset;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
329
59
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 58
diff changeset
330 if ((pf->fp = fopen(name, "rb")) == NULL) {
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
331 perror("Error opening PST file");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
332 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
333 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
334 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
335
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
336 // Check pst file magic
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
337 if (pst_getAtPos(pf, 0, &sig, sizeof(sig)) != sizeof(sig)) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
338 (void)fclose(pf->fp);
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
339 DEBUG_WARN(("cannot read signature from PST file. Closing with error\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
340 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
341 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
342 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
343 LE32_CPU(sig);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
344 DEBUG_INFO(("sig = %X\n", sig));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
345 if (sig != (int32_t)PST_SIGNATURE) {
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
346 (void)fclose(pf->fp);
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
347 DEBUG_WARN(("not a PST file that I know. Closing with error\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
348 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
349 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
350 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
351
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
352 // read index type
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
353 (void)pst_getAtPos(pf, INDEX_TYPE_OFFSET, &(pf->ind_type), sizeof(pf->ind_type));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
354 DEBUG_INFO(("index_type = %i\n", pf->ind_type));
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
355 switch (pf->ind_type) {
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
356 case INDEX_TYPE32 :
118
0f1492b7fe8b patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents: 116
diff changeset
357 case INDEX_TYPE32A :
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
358 pf->do_read64 = 0;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
359 break;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
360 case INDEX_TYPE64 :
122
bdb38b434c0a more changes from Fridrich Strba to avoid installing our config.h
Carl Byington <carl@five-ten-sg.com>
parents: 120
diff changeset
361 case INDEX_TYPE64A :
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
362 pf->do_read64 = 1;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
363 break;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
364 case INDEX_TYPE4K :
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
365 pf->do_read64 = 2;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
366 break;
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
367 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
368 (void)fclose(pf->fp);
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
369 DEBUG_WARN(("unknown .pst format, possibly newer than Outlook 2003 PST file?\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
370 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
371 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
372 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
373
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
374 // read encryption setting
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
375 (void)pst_getAtPos(pf, ENC_TYPE, &(pf->encryption), sizeof(pf->encryption));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
376 DEBUG_INFO(("encrypt = %i\n", pf->encryption));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
377
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
378 pf->index2_back = pst_getIntAtPos(pf, SECOND_BACK);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
379 pf->index2 = pst_getIntAtPos(pf, SECOND_POINTER);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
380 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
381 DEBUG_INFO(("Pointer2 is %#"PRIx64", back pointer2 is %#"PRIx64"\n", pf->index2, pf->index2_back));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
382
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
383 pf->index1_back = pst_getIntAtPos(pf, INDEX_BACK);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
384 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
385 DEBUG_INFO(("Pointer1 is %#"PRIx64", back pointer2 is %#"PRIx64"\n", pf->index1, pf->index1_back));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
386
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
387 DEBUG_RET();
201
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
388
325
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
389 pf->cwd = pst_getcwd();
201
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
390 pf->fname = strdup(name);
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
391 return 0;
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
392 }
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
393
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
394
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
395 int pst_reopen(pst_file *pf) {
325
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
396 char *cwd;
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
397 cwd = pst_getcwd();
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
398 if (cwd == NULL) return -1;
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
399 if (chdir(pf->cwd)) goto err;
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
400 if (!freopen(pf->fname, "rb", pf->fp)) goto err;
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
401 if (chdir(cwd)) goto err;
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
402 free(cwd);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
403 return 0;
325
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
404 err:
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
405 free(cwd);
cb67b335afcc patches from debian
Carl Byington <carl@five-ten-sg.com>
parents: 316
diff changeset
406 return -1;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
407 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
408
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
409
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
410 int pst_close(pst_file *pf) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
411 DEBUG_ENT("pst_close");
383
2379a4d8d9c7 Tim Dufrane - fix segfault in pst_close()
Carl Byington <carl@five-ten-sg.com>
parents: 373
diff changeset
412 if (!pf) {
2379a4d8d9c7 Tim Dufrane - fix segfault in pst_close()
Carl Byington <carl@five-ten-sg.com>
parents: 373
diff changeset
413 DEBUG_RET();
2379a4d8d9c7 Tim Dufrane - fix segfault in pst_close()
Carl Byington <carl@five-ten-sg.com>
parents: 373
diff changeset
414 return 0;
2379a4d8d9c7 Tim Dufrane - fix segfault in pst_close()
Carl Byington <carl@five-ten-sg.com>
parents: 373
diff changeset
415 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
416 if (!pf->fp) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
417 DEBUG_RET();
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
418 return 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
419 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
420 if (fclose(pf->fp)) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
421 DEBUG_WARN(("fclose returned non-zero value\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
422 }
201
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
423 // free the paths
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
424 free(pf->cwd);
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
425 free(pf->fname);
360
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
426 // we must free the id array and the desc tree
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
427 free(pf->i_table);
201
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
428 pst_free_desc(pf->d_head);
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
429 pst_free_xattrib(pf->x_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
430 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
431 return 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
432 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
433
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
434
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
435 /**
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
436 * add a pst descriptor node to a linked list of such nodes.
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
437 *
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
438 * @param node pointer to the node to be added to the list
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
439 * @param head pointer to the list head pointer
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
440 * @param tail pointer to the list tail pointer
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
441 */
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
442 static void add_descriptor_to_list(pst_desc_tree *node, pst_desc_tree **head, pst_desc_tree **tail);
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
443 static void add_descriptor_to_list(pst_desc_tree *node, pst_desc_tree **head, pst_desc_tree **tail)
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
444 {
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
445 DEBUG_ENT("add_descriptor_to_list");
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
446 //DEBUG_INFO(("Added node %#"PRIx64" parent %#"PRIx64" real parent %#"PRIx64" prev %#"PRIx64" next %#"PRIx64"\n",
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
447 // node->id, node->parent_d_id,
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
448 // (node->parent ? node->parent->id : (uint64_t)0),
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
449 // (node->prev ? node->prev->id : (uint64_t)0),
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
450 // (node->next ? node->next->id : (uint64_t)0)));
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
451 if (*tail) (*tail)->next = node;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
452 if (!(*head)) *head = node;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
453 node->prev = *tail;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
454 node->next = NULL;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
455 *tail = node;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
456 DEBUG_RET();
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
457 }
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
458
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
459
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
460 /**
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
461 * add a pst descriptor node into the global tree.
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
462 *
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
463 * @param pf global pst file pointer
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
464 * @param node pointer to the new node to be added to the tree
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
465 */
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
466 static void record_descriptor(pst_file *pf, pst_desc_tree *node);
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
467 static void record_descriptor(pst_file *pf, pst_desc_tree *node)
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
468 {
104
39ba19372732 many fixes in pst2ldif by Robert Harris
Carl Byington <carl@five-ten-sg.com>
parents: 103
diff changeset
469 DEBUG_ENT("record_descriptor");
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
470 // finish node initialization
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
471 node->parent = NULL;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
472 node->child = NULL;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
473 node->child_tail = NULL;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
474 node->no_child = 0;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
475
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
476 // find any orphan children of this node, and collect them
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
477 pst_desc_tree *n = pf->d_head;
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
478 while (n) {
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
479 if (n->parent_d_id == node->d_id) {
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
480 // found a child of this node
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
481 DEBUG_INFO(("Found orphan child %#"PRIx64" of parent %#"PRIx64"\n", n->d_id, node->d_id));
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
482 pst_desc_tree *nn = n->next;
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
483 pst_desc_tree *pp = n->prev;
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
484 node->no_child++;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
485 n->parent = node;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
486 add_descriptor_to_list(n, &node->child, &node->child_tail);
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
487 if (pp) pp->next = nn; else pf->d_head = nn;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
488 if (nn) nn->prev = pp; else pf->d_tail = pp;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
489 n = nn;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
490 }
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
491 else {
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
492 n = n->next;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
493 }
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
494 }
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
495
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
496 // now hook this node into the global tree
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
497 if (node->parent_d_id == 0) {
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
498 // add top level node to the descriptor tree
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
499 //DEBUG_INFO(("Null parent\n"));
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
500 add_descriptor_to_list(node, &pf->d_head, &pf->d_tail);
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
501 }
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
502 else if (node->parent_d_id == node->d_id) {
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
503 // add top level node to the descriptor tree
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
504 DEBUG_INFO(("%#"PRIx64" is its own parent. What is this world coming to?\n", node->d_id));
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
505 add_descriptor_to_list(node, &pf->d_head, &pf->d_tail);
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
506 } else {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
507 //DEBUG_INFO(("Searching for parent %#"PRIx64" of %#"PRIx64"\n", node->parent_d_id, node->d_id));
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
508 pst_desc_tree *parent = pst_getDptr(pf, node->parent_d_id);
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
509 if (parent) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
510 //DEBUG_INFO(("Found parent %#"PRIx64"\n", node->parent_d_id));
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
511 parent->no_child++;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
512 node->parent = parent;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
513 add_descriptor_to_list(node, &parent->child, &parent->child_tail);
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
514 }
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
515 else {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
516 DEBUG_INFO(("No parent %#"PRIx64", have an orphan child %#"PRIx64"\n", node->parent_d_id, node->d_id));
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
517 add_descriptor_to_list(node, &pf->d_head, &pf->d_tail);
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
518 }
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
519 }
104
39ba19372732 many fixes in pst2ldif by Robert Harris
Carl Byington <carl@five-ten-sg.com>
parents: 103
diff changeset
520 DEBUG_RET();
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
521 }
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
522
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
523
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
524 /**
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
525 * make a deep copy of part of the id2 mapping tree, for use
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
526 * by an attachment containing an embedded rfc822 message.
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
527 *
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
528 * @param head pointer to the subtree to be copied
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
529 * @return pointer to the new copy of the subtree
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
530 */
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
531 static pst_id2_tree* deep_copy(pst_id2_tree *head);
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
532 static pst_id2_tree* deep_copy(pst_id2_tree *head)
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
533 {
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
534 if (!head) return NULL;
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
535 pst_id2_tree* me = (pst_id2_tree*) pst_malloc(sizeof(pst_id2_tree));
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
536 me->id2 = head->id2;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
537 me->id = head->id;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
538 me->child = deep_copy(head->child);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
539 me->next = deep_copy(head->next);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
540 return me;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
541 }
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
542
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
543
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
544 pst_desc_tree* pst_getTopOfFolders(pst_file *pf, const pst_item *root) {
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
545 pst_desc_tree *topnode;
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
546 uint32_t topid;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
547 DEBUG_ENT("pst_getTopOfFolders");
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
548 if (!root || !root->message_store) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
549 DEBUG_INFO(("There isn't a top of folder record here.\n"));
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
550 DEBUG_RET();
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
551 return NULL;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
552 }
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
553 if (!root->message_store->top_of_personal_folder) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
554 // this is the OST way
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
555 // ASSUMPTION: Top Of Folders record in PST files is *always* descid 0x2142
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
556 topid = 0x2142;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
557 } else {
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
558 topid = root->message_store->top_of_personal_folder->id;
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
559 }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
560 DEBUG_INFO(("looking for top of folder descriptor %#"PRIx32"\n", topid));
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
561 topnode = pst_getDptr(pf, (uint64_t)topid);
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
562 if (!topnode) {
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
563 // add dummy top record to pickup orphan children
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
564 topnode = (pst_desc_tree*) pst_malloc(sizeof(pst_desc_tree));
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
565 topnode->d_id = topid;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
566 topnode->parent_d_id = 0;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
567 topnode->assoc_tree = NULL;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
568 topnode->desc = NULL;
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
569 record_descriptor(pf, topnode); // add to the global tree
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
570 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
571 DEBUG_RET();
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
572 return topnode;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
573 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
574
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
575
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
576 pst_binary pst_attach_to_mem(pst_file *pf, pst_item_attach *attach) {
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
577 pst_index_ll *ptr;
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
578 pst_binary rc;
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
579 pst_holder h = {&rc.data, NULL, 0, 0, 0};
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
580 rc.size = 0;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
581 rc.data = NULL;
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
582 DEBUG_ENT("pst_attach_to_mem");
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
583 if ((!attach->data.data) && (attach->i_id != (uint64_t)-1)) {
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
584 ptr = pst_getID(pf, attach->i_id);
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
585 if (ptr) {
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
586 rc.size = pst_ff_getID2data(pf, ptr, &h);
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
587 } else {
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
588 DEBUG_WARN(("Couldn't find ID pointer. Cannot handle attachment\n"));
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
589 }
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
590 } else {
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
591 rc = attach->data;
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
592 attach->data.data = NULL; // prevent pst_free_item() from trying to free this
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
593 attach->data.size = 0; // since we have given that buffer to the caller
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
594 }
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
595 DEBUG_RET();
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
596 return rc;
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
597 }
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
598
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
599
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
600 size_t pst_attach_to_file(pst_file *pf, pst_item_attach *attach, FILE* fp) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
601 pst_index_ll *ptr;
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
602 pst_holder h = {NULL, fp, 0, 0, 0};
93
cb14583c119a iconv changes for Mac
Carl Byington <carl@five-ten-sg.com>
parents: 87
diff changeset
603 size_t size = 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
604 DEBUG_ENT("pst_attach_to_file");
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
605 if ((!attach->data.data) && (attach->i_id != (uint64_t)-1)) {
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
606 ptr = pst_getID(pf, attach->i_id);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
607 if (ptr) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
608 size = pst_ff_getID2data(pf, ptr, &h);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
609 } else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
610 DEBUG_WARN(("Couldn't find ID pointer. Cannot save attachment to file\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
611 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
612 } else {
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
613 size = attach->data.size;
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
614 if (attach->data.data && size) {
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
615 // save the attachment to the file
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
616 (void)pst_fwrite(attach->data.data, (size_t)1, size, fp);
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
617 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
618 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
619 DEBUG_RET();
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
620 return size;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
621 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
622
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
623
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
624 size_t pst_attach_to_file_base64(pst_file *pf, pst_item_attach *attach, FILE* fp) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
625 pst_index_ll *ptr;
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
626 pst_holder h = {NULL, fp, 1, 0, 0};
93
cb14583c119a iconv changes for Mac
Carl Byington <carl@five-ten-sg.com>
parents: 87
diff changeset
627 size_t size = 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
628 DEBUG_ENT("pst_attach_to_file_base64");
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
629 if ((!attach->data.data) && (attach->i_id != (uint64_t)-1)) {
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
630 ptr = pst_getID(pf, attach->i_id);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
631 if (ptr) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
632 size = pst_ff_getID2data(pf, ptr, &h);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
633 } else {
93
cb14583c119a iconv changes for Mac
Carl Byington <carl@five-ten-sg.com>
parents: 87
diff changeset
634 DEBUG_WARN(("Couldn't find ID pointer. Cannot save attachment to Base64\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
635 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
636 } else {
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
637 size = attach->data.size;
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
638 if (attach->data.data && size) {
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
639 // encode the attachment to the file
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
640 char *c = pst_base64_encode(attach->data.data, size);
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
641 if (c) {
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
642 (void)pst_fwrite(c, (size_t)1, strlen(c), fp);
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
643 free(c); // caught by valgrind
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
644 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
645 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
646 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
647 DEBUG_RET();
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
648 return size;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
649 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
650
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
651
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
652 int pst_load_index (pst_file *pf) {
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
653 int x;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
654 DEBUG_ENT("pst_load_index");
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
655 if (!pf) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
656 DEBUG_WARN(("Cannot load index for a NULL pst_file\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
657 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
658 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
659 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
660
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
661 x = pst_build_id_ptr(pf, pf->index1, 0, pf->index1_back, 0, UINT64_MAX);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
662 DEBUG_INFO(("build id ptr returns %i\n", x));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
663
102
8c4482be0b4c remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
664 x = pst_build_desc_ptr(pf, pf->index2, 0, pf->index2_back, (uint64_t)0x21, UINT64_MAX);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
665 DEBUG_INFO(("build desc ptr returns %i\n", x));
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
666
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
667 pst_printDptr(pf, pf->d_head);
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
668
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
669 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
670 return 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
671 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
672
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
673
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
674 pst_desc_tree* pst_getNextDptr(pst_desc_tree* d) {
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
675 pst_desc_tree* r = NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
676 DEBUG_ENT("pst_getNextDptr");
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
677 if (d) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
678 if ((r = d->child) == NULL) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
679 while (!d->next && d->parent) d = d->parent;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
680 r = d->next;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
681 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
682 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
683 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
684 return r;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
685 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
686
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
687
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
688 typedef struct pst_x_attrib {
114
e213bfcf9aa7 patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents: 110
diff changeset
689 uint32_t extended;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
690 uint16_t type;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
691 uint16_t map;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
692 } pst_x_attrib;
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
693
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
694
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
695 /** Try to load the extended attributes from the pst file.
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
696 @return true(1) or false(0) to indicate whether the extended attributes have been loaded
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
697 */
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
698 int pst_load_extended_attributes(pst_file *pf) {
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
699 // for PST files this will load up d_id 0x61 and check it's "assoc_tree" attribute.
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
700 pst_desc_tree *p;
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
701 pst_mapi_object *list;
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
702 pst_id2_tree *id2_head = NULL;
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
703 char *buffer=NULL, *headerbuffer=NULL;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
704 size_t bsize=0, hsize=0, bptr=0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
705 pst_x_attrib xattrib;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
706 int32_t tint, x;
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
707 pst_x_attrib_ll *ptr, *p_head=NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
708
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
709 DEBUG_ENT("pst_loadExtendedAttributes");
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
710 p = pst_getDptr(pf, (uint64_t)0x61);
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
711 if (!p) {
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
712 DEBUG_WARN(("Cannot find d_id 0x61 for loading the Extended Attributes\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
713 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
714 return 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
715 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
716
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
717 if (!p->desc) {
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
718 DEBUG_WARN(("descriptor is NULL for d_id 0x61. Cannot load Extended Attributes\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
719 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
720 return 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
721 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
722
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
723 if (p->assoc_tree) {
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
724 id2_head = pst_build_id2(pf, p->assoc_tree);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
725 pst_printID2ptr(id2_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
726 } else {
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
727 DEBUG_WARN(("Have not been able to fetch any id2 values for d_id 0x61. Brace yourself!\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
728 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
729
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
730 list = pst_parse_block(pf, p->desc->i_id, id2_head);
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
731 if (!list) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
732 DEBUG_WARN(("Cannot process desc block for item 0x61. Not loading extended Attributes\n"));
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
733 pst_free_id2(id2_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
734 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
735 return 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
736 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
737
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
738 DEBUG_INFO(("look thru d_id 0x61 list of mapi objects\n"));
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
739 for (x=0; x < list->count_elements; x++) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
740 DEBUG_INFO(("#%d - mapi-id: %#x type: %#x length: %#x\n", x, list->elements[x]->mapi_id, list->elements[x]->type, list->elements[x]->size));
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
741 if (list->elements[x]->data) {
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
742 DEBUG_HEXDUMPC(list->elements[x]->data, list->elements[x]->size, 0x10);
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
743 }
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
744 if (list->elements[x]->mapi_id == (uint32_t)0x0003) {
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
745 buffer = list->elements[x]->data;
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
746 bsize = list->elements[x]->size;
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
747 } else if (list->elements[x]->mapi_id == (uint32_t)0x0004) {
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
748 headerbuffer = list->elements[x]->data;
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
749 hsize = list->elements[x]->size;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
750 } else {
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
751 // leave them null
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
752 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
753 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
754
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
755 if (!buffer) {
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
756 pst_free_list(list);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
757 DEBUG_WARN(("No extended attributes buffer found. Not processing\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
758 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
759 return 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
760 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
761
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
762 while (bptr < bsize) {
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
763 int err = 0;
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
764 xattrib.extended= PST_LE_GET_UINT32(buffer+bptr), bptr += 4;
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
765 xattrib.type = PST_LE_GET_UINT16(buffer+bptr), bptr += 2;
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
766 xattrib.map = PST_LE_GET_UINT16(buffer+bptr), bptr += 2;
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
767 ptr = (pst_x_attrib_ll*) pst_malloc(sizeof(*ptr));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
768 memset(ptr, 0, sizeof(*ptr));
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
769 ptr->map = xattrib.map+0x8000;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
770 ptr->next = NULL;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
771 DEBUG_INFO(("xattrib: ext = %#"PRIx32", type = %#"PRIx16", map = %#"PRIx16"\n",
114
e213bfcf9aa7 patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents: 110
diff changeset
772 xattrib.extended, xattrib.type, xattrib.map));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
773 if (xattrib.type & 0x0001) { // if the Bit 1 is set
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
774 // pointer to Unicode field in buffer
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
775 if (xattrib.extended < hsize) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
776 char *wt;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
777 // copy the size of the header. It is 32 bit int
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
778 memcpy(&tint, &(headerbuffer[xattrib.extended]), sizeof(tint));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
779 LE32_CPU(tint);
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
780 wt = (char*) pst_malloc((size_t)(tint+2)); // plus 2 for a uni-code zero
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
781 memset(wt, 0, (size_t)(tint+2));
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
782 memcpy(wt, &(headerbuffer[xattrib.extended+sizeof(tint)]), (size_t)tint);
47
5fb8d997feed more fixes for 64 bit format
carl
parents: 46
diff changeset
783 ptr->data = pst_wide_to_single(wt, (size_t)tint);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
784 free(wt);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
785 DEBUG_INFO(("Mapped attribute %#"PRIx32" to %s\n", ptr->map, ptr->data));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
786 } else {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
787 DEBUG_INFO(("Cannot read outside of buffer [%i !< %i]\n", xattrib.extended, hsize));
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
788 err = 1;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
789 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
790 ptr->mytype = PST_MAP_HEADER;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
791 } else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
792 // contains the attribute code to map to.
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
793 ptr->data = (uint32_t*)pst_malloc(sizeof(uint32_t));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
794 memset(ptr->data, 0, sizeof(uint32_t));
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
795 *((uint32_t*)ptr->data) = xattrib.extended;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
796 ptr->mytype = PST_MAP_ATTRIB;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
797 DEBUG_INFO(("Mapped attribute %#"PRIx32" to %#"PRIx32"\n", ptr->map, *((uint32_t*)ptr->data)));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
798 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
799
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
800 if (!err) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
801 // add it to the list
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
802 pst_x_attrib_ll *p_sh = p_head;
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
803 pst_x_attrib_ll *p_sh2 = NULL;
171
6c1e75bc4cac properly add trailing mime boundary in all modes
Carl Byington <carl@five-ten-sg.com>
parents: 170
diff changeset
804 while (p_sh && (ptr->map > p_sh->map)) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
805 p_sh2 = p_sh;
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
806 p_sh = p_sh->next;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
807 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
808 if (!p_sh2) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
809 // needs to go before first item
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
810 ptr->next = p_head;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
811 p_head = ptr;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
812 } else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
813 // it will go after p_sh2
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
814 ptr->next = p_sh2->next;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
815 p_sh2->next = ptr;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
816 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
817 } else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
818 free(ptr);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
819 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
820 }
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
821 pst_free_id2(id2_head);
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
822 pst_free_list(list);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
823 pf->x_head = p_head;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
824 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
825 return 1;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
826 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
827
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
828
44
d4606d460daf more fixes for 64 bit format
carl
parents: 43
diff changeset
829 #define ITEM_COUNT_OFFSET32 0x1f0 // count byte
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
830 #define MAX_COUNT_OFFSET32 0x1f1
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
831 #define ENTRY_SIZE_OFFSET32 0x1f2
44
d4606d460daf more fixes for 64 bit format
carl
parents: 43
diff changeset
832 #define LEVEL_INDICATOR_OFFSET32 0x1f3 // node or leaf
d4606d460daf more fixes for 64 bit format
carl
parents: 43
diff changeset
833 #define BACKLINK_OFFSET32 0x1f8 // backlink u1 value
d4606d460daf more fixes for 64 bit format
carl
parents: 43
diff changeset
834
d4606d460daf more fixes for 64 bit format
carl
parents: 43
diff changeset
835 #define ITEM_COUNT_OFFSET64 0x1e8 // count byte
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
836 #define MAX_COUNT_OFFSET64 0x1e9
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
837 #define ENTRY_SIZE_OFFSET64 0x1ea // node or leaf
44
d4606d460daf more fixes for 64 bit format
carl
parents: 43
diff changeset
838 #define LEVEL_INDICATOR_OFFSET64 0x1eb // node or leaf
d4606d460daf more fixes for 64 bit format
carl
parents: 43
diff changeset
839 #define BACKLINK_OFFSET64 0x1f8 // backlink u1 value
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
840
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
841 #define ITEM_COUNT_OFFSET4K 0xfd8
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
842 #define MAX_COUNT_OFFSET4K 0xfda
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
843 #define ENTRY_SIZE_OFFSET4K 0xfdc
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
844 #define LEVEL_INDICATOR_OFFSET4K 0xfdd
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
845 #define BACKLINK_OFFSET4K 0xff0
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
846
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
847 #define BLOCK_SIZE (size_t)((pf->do_read64 == 2) ? 4096 : 512) // index blocks
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
848 #define DESC_BLOCK_SIZE (size_t)((pf->do_read64 == 2) ? 4096 : 512) // descriptor blocks
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
849 #define ITEM_COUNT_OFFSET (size_t)((pf->do_read64) ? (pf->do_read64 == 2 ? ITEM_COUNT_OFFSET4K : ITEM_COUNT_OFFSET64) : ITEM_COUNT_OFFSET32)
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
850 #define LEVEL_INDICATOR_OFFSET (size_t)((pf->do_read64) ? (pf->do_read64 == 2 ? LEVEL_INDICATOR_OFFSET4K : LEVEL_INDICATOR_OFFSET64) : LEVEL_INDICATOR_OFFSET32)
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
851 #define BACKLINK_OFFSET (size_t)((pf->do_read64) ? (pf->do_read64 == 2 ? BACKLINK_OFFSET4K : BACKLINK_OFFSET64) : BACKLINK_OFFSET32)
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
852 #define ENTRY_SIZE_OFFSET (size_t)((pf->do_read64) ? (pf->do_read64 == 2 ? ENTRY_SIZE_OFFSET4K : ENTRY_SIZE_OFFSET64) : ENTRY_SIZE_OFFSET32)
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
853 #define MAX_COUNT_OFFSET (size_t)((pf->do_read64) ? (pf->do_read64 == 2 ? MAX_COUNT_OFFSET4K : MAX_COUNT_OFFSET64) : MAX_COUNT_OFFSET32)
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
854
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
855 #define read_twobyte(BUF, OFF) (int32_t) ((((unsigned)BUF[OFF + 1] & 0xFF)) << 8) | ((unsigned)BUF[OFF] & 0xFF);
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
856
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
857 static size_t pst_decode_desc(pst_file *pf, pst_desc *desc, char *buf);
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
858 static size_t pst_decode_desc(pst_file *pf, pst_desc *desc, char *buf) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
859 size_t r;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
860 if (pf->do_read64) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
861 DEBUG_INFO(("Decoding desc64\n"));
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
862 DEBUG_HEXDUMPC(buf, sizeof(pst_desc), 0x10);
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
863 memcpy(desc, buf, sizeof(pst_desc));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
864 LE64_CPU(desc->d_id);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
865 LE64_CPU(desc->desc_id);
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
866 LE64_CPU(desc->tree_id);
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
867 LE32_CPU(desc->parent_d_id);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
868 LE32_CPU(desc->u1);
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
869 r = sizeof(pst_desc);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
870 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
871 else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
872 pst_desc32 d32;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
873 DEBUG_INFO(("Decoding desc32\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
874 DEBUG_HEXDUMPC(buf, sizeof(pst_desc32), 0x10);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
875 memcpy(&d32, buf, sizeof(pst_desc32));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
876 LE32_CPU(d32.d_id);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
877 LE32_CPU(d32.desc_id);
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
878 LE32_CPU(d32.tree_id);
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
879 LE32_CPU(d32.parent_d_id);
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
880 desc->d_id = d32.d_id;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
881 desc->desc_id = d32.desc_id;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
882 desc->tree_id = d32.tree_id;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
883 desc->parent_d_id = d32.parent_d_id;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
884 desc->u1 = 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
885 r = sizeof(pst_desc32);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
886 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
887 return r;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
888 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
889
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
890
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
891 static size_t pst_decode_table(pst_file *pf, struct pst_table_ptr_struct *table, char *buf);
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
892 static size_t pst_decode_table(pst_file *pf, struct pst_table_ptr_struct *table, char *buf) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
893 size_t r;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
894 if (pf->do_read64) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
895 DEBUG_INFO(("Decoding table64\n"));
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
896 DEBUG_HEXDUMPC(buf, sizeof(struct pst_table_ptr_struct), 0x10);
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
897 memcpy(table, buf, sizeof(struct pst_table_ptr_struct));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
898 LE64_CPU(table->start);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
899 LE64_CPU(table->u1);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
900 LE64_CPU(table->offset);
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
901 r =sizeof(struct pst_table_ptr_struct);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
902 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
903 else {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
904 struct pst_table_ptr_struct32 t32;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
905 DEBUG_INFO(("Decoding table32\n"));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
906 DEBUG_HEXDUMPC(buf, sizeof( struct pst_table_ptr_struct32), 0x10);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
907 memcpy(&t32, buf, sizeof(struct pst_table_ptr_struct32));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
908 LE32_CPU(t32.start);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
909 LE32_CPU(t32.u1);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
910 LE32_CPU(t32.offset);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
911 table->start = t32.start;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
912 table->u1 = t32.u1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
913 table->offset = t32.offset;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
914 r = sizeof(struct pst_table_ptr_struct32);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
915 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
916 return r;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
917 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
918
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
919
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
920 static size_t pst_decode_index(pst_file *pf, pst_index *index, char *buf);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
921 static size_t pst_decode_index(pst_file *pf, pst_index *index, char *buf) {
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
922 size_t r;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
923 if (pf->do_read64 == 2) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
924 DEBUG_INFO(("Decoding index4k\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
925 DEBUG_HEXDUMPC(buf, sizeof(pst_index), 0x10);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
926 memcpy(index, buf, sizeof(pst_index));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
927 LE64_CPU(index->id);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
928 LE64_CPU(index->offset);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
929 LE16_CPU(index->size);
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
930 LE16_CPU(index->inflated_size);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
931 LE16_CPU(index->u0);
149
f9773b6368e0 improve documentation of .pst format.
Carl Byington <carl@five-ten-sg.com>
parents: 148
diff changeset
932 LE32_CPU(index->u1);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
933 r = sizeof(pst_index);
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
934 } else if (pf->do_read64 == 1) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
935 pst_index64 index64;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
936 DEBUG_INFO(("Decoding index64\n"));
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
937 DEBUG_HEXDUMPC(buf, sizeof(pst_index64), 0x10);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
938 memcpy(&index64, buf, sizeof(pst_index64));
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
939 LE64_CPU(index64.id);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
940 LE64_CPU(index64.offset);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
941 LE16_CPU(index64.size);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
942 LE16_CPU(index64.u0);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
943 LE32_CPU(index64.u1);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
944 index->id = index64.id;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
945 index->offset = index64.offset;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
946 index->size = index64.size;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
947 index->inflated_size = index64.size;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
948 index->u0 = index64.u0;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
949 index->u1 = index64.u1;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
950 r = sizeof(pst_index64);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
951 } else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
952 pst_index32 index32;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
953 DEBUG_INFO(("Decoding index32\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
954 DEBUG_HEXDUMPC(buf, sizeof(pst_index32), 0x10);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
955 memcpy(&index32, buf, sizeof(pst_index32));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
956 LE32_CPU(index32.id);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
957 LE32_CPU(index32.offset);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
958 LE16_CPU(index32.size);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
959 LE16_CPU(index32.u1);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
960 index->id = index32.id;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
961 index->offset = index32.offset;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
962 index->size = index32.size;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
963 index->inflated_size = index32.size;
149
f9773b6368e0 improve documentation of .pst format.
Carl Byington <carl@five-ten-sg.com>
parents: 148
diff changeset
964 index->u0 = 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
965 index->u1 = index32.u1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
966 r = sizeof(pst_index32);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
967 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
968 return r;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
969 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
970
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
971
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
972 static size_t pst_decode_assoc(pst_file *pf, pst_id2_assoc *assoc, char *buf);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
973 static size_t pst_decode_assoc(pst_file *pf, pst_id2_assoc *assoc, char *buf) {
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
974 size_t r;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
975 if (pf->do_read64) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
976 DEBUG_INFO(("Decoding assoc64\n"));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
977 DEBUG_HEXDUMPC(buf, sizeof(pst_id2_assoc), 0x10);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
978 memcpy(assoc, buf, sizeof(pst_id2_assoc));
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
979 LE32_CPU(assoc->id2);
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
980 LE64_CPU(assoc->id);
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
981 LE64_CPU(assoc->child_id);
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
982 r = sizeof(pst_id2_assoc);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
983 } else {
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
984 pst_id2_assoc32 assoc32;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
985 DEBUG_INFO(("Decoding assoc32\n"));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
986 DEBUG_HEXDUMPC(buf, sizeof(pst_id2_assoc32), 0x10);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
987 memcpy(&assoc32, buf, sizeof(pst_id2_assoc32));
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
988 LE32_CPU(assoc32.id2);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
989 LE32_CPU(assoc32.id);
160
252ad66d3d6e fix ppc64 compile error
Carl Byington <carl@five-ten-sg.com>
parents: 154
diff changeset
990 LE32_CPU(assoc32.child_id);
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
991 assoc->id2 = assoc32.id2;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
992 assoc->id = assoc32.id;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
993 assoc->child_id = assoc32.child_id;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
994 r = sizeof(pst_id2_assoc32);
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
995 }
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
996 return r;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
997 }
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
998
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
999
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1000 static size_t pst_decode_type3(pst_file *pf, pst_table3_rec *table3_rec, char *buf);
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1001 static size_t pst_decode_type3(pst_file *pf, pst_table3_rec *table3_rec, char *buf) {
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1002 size_t r;
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
1003 DEBUG_ENT("pst_decode_type3");
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1004 if (pf->do_read64) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1005 DEBUG_INFO(("Decoding table3 64\n"));
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1006 DEBUG_HEXDUMPC(buf, sizeof(pst_table3_rec), 0x10);
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1007 memcpy(table3_rec, buf, sizeof(pst_table3_rec));
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1008 LE64_CPU(table3_rec->id);
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1009 r = sizeof(pst_table3_rec);
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1010 } else {
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1011 pst_table3_rec32 table3_rec32;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1012 DEBUG_INFO(("Decoding table3 32\n"));
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1013 DEBUG_HEXDUMPC(buf, sizeof(pst_table3_rec32), 0x10);
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1014 memcpy(&table3_rec32, buf, sizeof(pst_table3_rec32));
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1015 LE32_CPU(table3_rec32.id);
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1016 table3_rec->id = table3_rec32.id;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1017 r = sizeof(pst_table3_rec32);
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1018 }
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
1019 DEBUG_RET();
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1020 return r;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1021 }
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1022
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1023
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1024 /** Process the index1 b-tree from the pst file and create the
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1025 * pf->i_head linked list from it. This tree holds the location
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1026 * (offset and size) of lower level objects (0xbcec descriptor
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1027 * blocks, etc) in the pst file.
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1028 */
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
1029 static int pst_build_id_ptr(pst_file *pf, int64_t offset, int32_t depth, uint64_t linku1, uint64_t start_val, uint64_t end_val) {
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
1030 struct pst_table_ptr_struct table, table2;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1031 pst_index_ll *i_ptr=NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1032 pst_index index;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1033 int32_t x, item_count, count_max;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1034 uint64_t old = start_val;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1035 char *buf = NULL, *bptr;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1036
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1037 DEBUG_ENT("pst_build_id_ptr");
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1038 DEBUG_INFO(("offset %#"PRIx64" depth %i linku1 %#"PRIx64" start %#"PRIx64" end %#"PRIx64"\n", offset, depth, linku1, start_val, end_val));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1039 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
1040 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
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1041 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1042 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1043 }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1044 DEBUG_INFO(("Reading index block\n"));
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1045 if (pst_read_block_size(pf, offset, BLOCK_SIZE, BLOCK_SIZE, &buf) < BLOCK_SIZE) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1046 DEBUG_WARN(("Failed to read %i bytes\n", BLOCK_SIZE));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1047 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1048 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1049 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1050 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1051 bptr = buf;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1052 DEBUG_HEXDUMPC(buf, BLOCK_SIZE, 0x10);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1053 if (pf->do_read64 == 2) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1054 item_count = read_twobyte(buf, ITEM_COUNT_OFFSET);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1055 count_max = read_twobyte(buf, MAX_COUNT_OFFSET);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1056 } else {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1057 item_count = (int32_t)(unsigned)(buf[ITEM_COUNT_OFFSET]);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1058 count_max = (int32_t)(unsigned)(buf[MAX_COUNT_OFFSET]);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1059 }
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1060 if (item_count > count_max) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1061 DEBUG_WARN(("Item count %i too large, max is %i\n", item_count, count_max));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1062 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1063 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1064 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1065 }
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1066 index.id = pst_getIntAt(pf, buf+BACKLINK_OFFSET);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1067 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
1068 DEBUG_WARN(("Backlink %#"PRIx64" in this node does not match required %#"PRIx64"\n", index.id, linku1));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1069 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1070 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1071 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1072 }
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1073 int entry_size = (int32_t)(unsigned)(buf[ENTRY_SIZE_OFFSET]);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1074 DEBUG_INFO(("count %#"PRIx64" max %#"PRIx64" size %#"PRIx64"\n", item_count, count_max, entry_size));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1075 if (buf[LEVEL_INDICATOR_OFFSET] == '\0') {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1076 // this node contains leaf pointers
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1077 x = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1078 while (x < item_count) {
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1079 pst_decode_index(pf, &index, bptr);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1080 bptr += entry_size;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1081 x++;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1082 if (index.id == 0) break;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1083 DEBUG_INFO(("[%i]%i Item [id = %#"PRIx64", offset = %#"PRIx64", u1 = %#x, size = %i(%#x)]\n",
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1084 depth, x, index.id, index.offset, index.u1, index.size, index.size));
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1085 // if (index.id & 0x02) DEBUG_INFO(("two-bit set!!\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1086 if ((index.id >= end_val) || (index.id < old)) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1087 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1088 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1089 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1090 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1091 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1092 old = index.id;
360
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
1093 if (pf->i_count == pf->i_capacity) {
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
1094 pf->i_capacity += (pf->i_capacity >> 1) + 16; // arbitrary growth rate
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
1095 pf->i_table = pst_realloc(pf->i_table, pf->i_capacity * sizeof(pst_index_ll));
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
1096 }
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
1097 i_ptr = &pf->i_table[pf->i_count++];
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
1098 i_ptr->i_id = index.id;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1099 i_ptr->offset = index.offset;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1100 i_ptr->u1 = index.u1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1101 i_ptr->size = index.size;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1102 i_ptr->inflated_size = index.inflated_size;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1103 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1104 } else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1105 // this node contains node pointers
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1106 x = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1107 while (x < item_count) {
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1108 pst_decode_table(pf, &table, bptr);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1109 bptr += entry_size;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1110 x++;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1111 if (table.start == 0) break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1112 if (x < item_count) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1113 (void)pst_decode_table(pf, &table2, bptr);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1114 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1115 else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1116 table2.start = end_val;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1117 }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1118 DEBUG_INFO(("[%i] %i Index Table [start id = %#"PRIx64", u1 = %#"PRIx64", offset = %#"PRIx64", end id = %#"PRIx64"]\n",
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1119 depth, x, table.start, table.u1, table.offset, table2.start));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1120 if ((table.start >= end_val) || (table.start < old)) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1121 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1122 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1123 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1124 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1125 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1126 old = table.start;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1127 (void)pst_build_id_ptr(pf, table.offset, depth+1, table.u1, table.start, table2.start);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1128 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1129 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1130 if (buf) free (buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1131 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1132 return 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1133 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1134
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1135
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1136 /** Process the index2 b-tree from the pst file and create the
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1137 * pf->d_head tree from it. This tree holds descriptions of the
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1138 * higher level objects (email, contact, etc) in the pst file.
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1139 */
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
1140 static int pst_build_desc_ptr (pst_file *pf, int64_t offset, int32_t depth, uint64_t linku1, uint64_t start_val, uint64_t end_val) {
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
1141 struct pst_table_ptr_struct table, table2;
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
1142 pst_desc desc_rec;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1143 int32_t item_count, count_max;
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1144 uint64_t old = start_val;
102
8c4482be0b4c remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
1145 int x;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1146 char *buf = NULL, *bptr;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1147
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1148 DEBUG_ENT("pst_build_desc_ptr");
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1149 DEBUG_INFO(("offset %#"PRIx64" depth %i linku1 %#"PRIx64" start %#"PRIx64" end %#"PRIx64"\n", offset, depth, linku1, start_val, end_val));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1150 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
1151 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
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1152 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1153 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1154 }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1155 DEBUG_INFO(("Reading desc block\n"));
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1156 if (pst_read_block_size(pf, offset, DESC_BLOCK_SIZE, DESC_BLOCK_SIZE, &buf) < DESC_BLOCK_SIZE) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1157 DEBUG_WARN(("Failed to read %i bytes\n", DESC_BLOCK_SIZE));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1158 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1159 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1160 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1161 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1162 bptr = buf;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1163 if (pf->do_read64 == 2) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1164 item_count = read_twobyte(buf, ITEM_COUNT_OFFSET);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1165 count_max = read_twobyte(buf, MAX_COUNT_OFFSET);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1166 } else {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1167 item_count = (int32_t)(unsigned)(buf[ITEM_COUNT_OFFSET]);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1168 count_max = (int32_t)(unsigned)(buf[MAX_COUNT_OFFSET]);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1169 }
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1170 desc_rec.d_id = pst_getIntAt(pf, buf+BACKLINK_OFFSET);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1171 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
1172 DEBUG_WARN(("Backlink %#"PRIx64" in this node does not match required %#"PRIx64"\n", desc_rec.d_id, linku1));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1173 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1174 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1175 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1176 }
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1177 int32_t entry_size = (int32_t)(unsigned)(buf[ENTRY_SIZE_OFFSET]);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1178 if (buf[LEVEL_INDICATOR_OFFSET] == '\0') {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1179 // this node contains leaf pointers
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1180 DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, entry_size);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1181 if (item_count > count_max) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1182 DEBUG_WARN(("Item count %i too large, max is %i\n", item_count, count_max));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1183 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1184 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1185 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1186 }
102
8c4482be0b4c remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
1187 for (x=0; x<item_count; x++) {
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1188 pst_decode_desc(pf, &desc_rec, bptr);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1189 bptr += entry_size;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1190 DEBUG_INFO(("[%i] Item(%#x) = [d_id = %#"PRIx64", desc_id = %#"PRIx64", tree_id = %#"PRIx64", parent_d_id = %#x]\n",
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1191 depth, x, desc_rec.d_id, desc_rec.desc_id, desc_rec.tree_id, desc_rec.parent_d_id));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1192 if ((desc_rec.d_id >= end_val) || (desc_rec.d_id < old)) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1193 DEBUG_WARN(("This item isn't right. Must be corruption, or I got it wrong!\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1194 DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, 16);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1195 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1196 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1197 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1198 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1199 old = desc_rec.d_id;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1200 DEBUG_INFO(("New Record %#"PRIx64" with parent %#x\n", desc_rec.d_id, desc_rec.parent_d_id));
105
4703d622e95b cleanup fedora9 compile warnings
Carl Byington <carl@five-ten-sg.com>
parents: 104
diff changeset
1201 {
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
1202 pst_desc_tree *d_ptr = (pst_desc_tree*) pst_malloc(sizeof(pst_desc_tree));
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1203 d_ptr->d_id = desc_rec.d_id;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1204 d_ptr->parent_d_id = desc_rec.parent_d_id;
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1205 d_ptr->assoc_tree = pst_getID(pf, desc_rec.tree_id);
105
4703d622e95b cleanup fedora9 compile warnings
Carl Byington <carl@five-ten-sg.com>
parents: 104
diff changeset
1206 d_ptr->desc = pst_getID(pf, desc_rec.desc_id);
4703d622e95b cleanup fedora9 compile warnings
Carl Byington <carl@five-ten-sg.com>
parents: 104
diff changeset
1207 record_descriptor(pf, d_ptr); // add to the global tree
4703d622e95b cleanup fedora9 compile warnings
Carl Byington <carl@five-ten-sg.com>
parents: 104
diff changeset
1208 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1209 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1210 } else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1211 // this node contains node pointers
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1212 DEBUG_HEXDUMPC(buf, DESC_BLOCK_SIZE, entry_size);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1213 if (item_count > count_max) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1214 DEBUG_WARN(("Item count %i too large, max is %i\n", item_count, count_max));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1215 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1216 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1217 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1218 }
102
8c4482be0b4c remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
1219 for (x=0; x<item_count; x++) {
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1220 pst_decode_table(pf, &table, bptr);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
1221 bptr += entry_size;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1222 if (table.start == 0) break;
102
8c4482be0b4c remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
1223 if (x < (item_count-1)) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1224 (void)pst_decode_table(pf, &table2, bptr);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1225 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1226 else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1227 table2.start = end_val;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1228 }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1229 DEBUG_INFO(("[%i] %i Descriptor Table [start id = %#"PRIx64", u1 = %#"PRIx64", offset = %#"PRIx64", end id = %#"PRIx64"]\n",
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1230 depth, x, table.start, table.u1, table.offset, table2.start));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1231 if ((table.start >= end_val) || (table.start < old)) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1232 DEBUG_WARN(("This table isn't right. Must be corruption, or I got it wrong!\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1233 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1234 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1235 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1236 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1237 old = table.start;
102
8c4482be0b4c remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
1238 (void)pst_build_desc_ptr(pf, table.offset, depth+1, table.u1, table.start, table2.start);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1239 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1240 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1241 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1242 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1243 return 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1244 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1245
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1246
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1247 /** Process a high level object from the pst file.
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1248 */
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
1249 pst_item* pst_parse_item(pst_file *pf, pst_desc_tree *d_ptr, pst_id2_tree *m_head) {
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1250 pst_mapi_object * list;
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
1251 pst_id2_tree *id2_head = m_head;
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
1252 pst_id2_tree *id2_ptr = NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1253 pst_item *item = NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1254 pst_item_attach *attach = NULL;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1255 int32_t x;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1256 DEBUG_ENT("pst_parse_item");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1257 if (!d_ptr) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1258 DEBUG_WARN(("you cannot pass me a NULL! I don't want it!\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1259 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1260 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1261 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1262
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1263 if (!d_ptr->desc) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1264 DEBUG_WARN(("why is d_ptr->desc == NULL? I don't want to do anything else with this record\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1265 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1266 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1267 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1268
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1269 if (d_ptr->assoc_tree) {
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1270 if (m_head) {
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1271 DEBUG_WARN(("supplied master head, but have a list that is building a new id2_head\n"));
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1272 m_head = NULL;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1273 }
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1274 id2_head = pst_build_id2(pf, d_ptr->assoc_tree);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1275 }
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1276 pst_printID2ptr(id2_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1277
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
1278 list = pst_parse_block(pf, d_ptr->desc->i_id, id2_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1279 if (!list) {
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
1280 DEBUG_WARN(("pst_parse_block() returned an error for d_ptr->desc->i_id [%#"PRIx64"]\n", d_ptr->desc->i_id));
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1281 if (!m_head) pst_free_id2(id2_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1282 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1283 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1284 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1285
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1286 item = (pst_item*) pst_malloc(sizeof(pst_item));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1287 memset(item, 0, sizeof(pst_item));
298
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
1288 item->pf = pf;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1289
297
8b3a827b71f4 add alarm reminders to calendar events
Carl Byington <carl@five-ten-sg.com>
parents: 289
diff changeset
1290 if (pst_process(d_ptr->desc->i_id, list, item, NULL)) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1291 DEBUG_WARN(("pst_process() returned non-zero value. That is an error\n"));
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1292 pst_freeItem(item);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1293 pst_free_list(list);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1294 if (!m_head) pst_free_id2(id2_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1295 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1296 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1297 }
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1298 pst_free_list(list);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1299
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1300 if ((id2_ptr = pst_getID2(id2_head, (uint64_t)0x692))) {
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
1301 // DSN/MDN reports?
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1302 DEBUG_INFO(("DSN/MDN processing\n"));
370
8700cc322c0c Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents: 360
diff changeset
1303 list = pst_parse_block(pf, id2_ptr->id->i_id, id2_ptr->child);
231
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1304 if (list) {
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1305 for (x=0; x < list->count_objects; x++) {
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1306 attach = (pst_item_attach*) pst_malloc(sizeof(pst_item_attach));
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1307 memset(attach, 0, sizeof(pst_item_attach));
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1308 attach->next = item->attach;
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1309 item->attach = attach;
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1310 }
297
8b3a827b71f4 add alarm reminders to calendar events
Carl Byington <carl@five-ten-sg.com>
parents: 289
diff changeset
1311 if (pst_process(id2_ptr->id->i_id, list, item, item->attach)) {
231
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1312 DEBUG_WARN(("ERROR pst_process() failed with DSN/MDN attachments\n"));
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1313 pst_freeItem(item);
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1314 pst_free_list(list);
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1315 if (!m_head) pst_free_id2(id2_head);
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1316 DEBUG_RET();
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1317 return NULL;
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1318 }
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1319 pst_free_list(list);
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1320 } else {
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
1321 DEBUG_WARN(("ERROR error processing main DSN/MDN record\n"));
231
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1322 // if (!m_head) pst_free_id2(id2_head);
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1323 // DEBUG_RET();
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1324 // return item;
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
1325 }
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
1326 }
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1327
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1328 if ((id2_ptr = pst_getID2(id2_head, (uint64_t)0x671))) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1329 DEBUG_INFO(("ATTACHMENT processing attachment\n"));
370
8700cc322c0c Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents: 360
diff changeset
1330 list = pst_parse_block(pf, id2_ptr->id->i_id, id2_ptr->child);
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1331 if (!list) {
345
a8577226f7a9 fixes from AJ Shankar for attachment processing and body encodings that contain embedded null chars
Carl Byington <carl@five-ten-sg.com>
parents: 342
diff changeset
1332 if (item->flags & PST_FLAG_HAS_ATTACHMENT) {
a8577226f7a9 fixes from AJ Shankar for attachment processing and body encodings that contain embedded null chars
Carl Byington <carl@five-ten-sg.com>
parents: 342
diff changeset
1333 // Only report an error if we expected to see an attachment table and didn't.
a8577226f7a9 fixes from AJ Shankar for attachment processing and body encodings that contain embedded null chars
Carl Byington <carl@five-ten-sg.com>
parents: 342
diff changeset
1334 DEBUG_WARN(("ERROR error processing main attachment record\n"));
a8577226f7a9 fixes from AJ Shankar for attachment processing and body encodings that contain embedded null chars
Carl Byington <carl@five-ten-sg.com>
parents: 342
diff changeset
1335 }
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1336 if (!m_head) pst_free_id2(id2_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1337 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
1338 return item;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1339 }
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1340 for (x=0; x < list->count_objects; x++) {
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1341 attach = (pst_item_attach*) pst_malloc(sizeof(pst_item_attach));
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1342 memset(attach, 0, sizeof(pst_item_attach));
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1343 attach->next = item->attach;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1344 item->attach = attach;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1345 }
297
8b3a827b71f4 add alarm reminders to calendar events
Carl Byington <carl@five-ten-sg.com>
parents: 289
diff changeset
1346 if (pst_process(id2_ptr->id->i_id, list, item, item->attach)) {
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1347 DEBUG_WARN(("ERROR pst_process() failed with attachments\n"));
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1348 pst_freeItem(item);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1349 pst_free_list(list);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1350 if (!m_head) pst_free_id2(id2_head);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1351 DEBUG_RET();
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1352 return NULL;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1353 }
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1354 pst_free_list(list);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1355
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1356 // now we will have initial information of each attachment stored in item->attach...
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
1357 // we must now read the secondary record for each based on the id2_val associated with
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1358 // each attachment
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
1359 for (attach = item->attach; attach; attach = attach->next) {
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1360 DEBUG_WARN(("initial attachment id2 %#"PRIx64"\n", attach->id2_val));
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1361 if ((id2_ptr = pst_getID2(id2_head, attach->id2_val))) {
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
1362 DEBUG_WARN(("initial attachment id2 found id %#"PRIx64"\n", id2_ptr->id->i_id));
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
1363 // id2_ptr is a record describing the attachment
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1364 // we pass NULL instead of id2_head cause we don't want it to
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1365 // load all the extra stuff here.
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
1366 list = pst_parse_block(pf, id2_ptr->id->i_id, NULL);
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1367 if (!list) {
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1368 DEBUG_WARN(("ERROR error processing an attachment record\n"));
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1369 continue;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1370 }
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1371 if (list->count_objects > 1) {
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1372 DEBUG_WARN(("ERROR probably fatal, list count array will overrun attach structure.\n"));
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1373 }
269
5ca87faa020b attachment might have a secondary list of mapi elements included a size element which overwrote the real size from the primary list of mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 268
diff changeset
1374 // reprocess the same attachment list against new data
5ca87faa020b attachment might have a secondary list of mapi elements included a size element which overwrote the real size from the primary list of mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 268
diff changeset
1375 // this might update attach->id2_val
297
8b3a827b71f4 add alarm reminders to calendar events
Carl Byington <carl@five-ten-sg.com>
parents: 289
diff changeset
1376 if (pst_process(id2_ptr->id->i_id, list, item, attach)) {
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1377 DEBUG_WARN(("ERROR pst_process() failed with an attachment\n"));
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1378 pst_free_list(list);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1379 continue;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1380 }
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1381 pst_free_list(list);
345
a8577226f7a9 fixes from AJ Shankar for attachment processing and body encodings that contain embedded null chars
Carl Byington <carl@five-ten-sg.com>
parents: 342
diff changeset
1382 // As per 2.4.6.2 in the spec, the attachment data is stored as a child of the
a8577226f7a9 fixes from AJ Shankar for attachment processing and body encodings that contain embedded null chars
Carl Byington <carl@five-ten-sg.com>
parents: 342
diff changeset
1383 // attachment object, so we pass in id2_ptr as the head to search from.
370
8700cc322c0c Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents: 360
diff changeset
1384 id2_ptr = pst_getID2(id2_ptr->child, attach->id2_val);
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1385 if (id2_ptr) {
260
156cf548c764 adding more debug code
Carl Byington <carl@five-ten-sg.com>
parents: 257
diff changeset
1386 DEBUG_WARN(("second pass attachment updating id2 %#"PRIx64" found i_id %#"PRIx64"\n", attach->id2_val, id2_ptr->id->i_id));
156cf548c764 adding more debug code
Carl Byington <carl@five-ten-sg.com>
parents: 257
diff changeset
1387 // i_id has been updated to the datablock containing the attachment data
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
1388 attach->i_id = id2_ptr->id->i_id;
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1389 attach->id2_head = deep_copy(id2_ptr->child);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1390 } else {
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1391 DEBUG_WARN(("have not located the correct value for the attachment [%#"PRIx64"]\n", attach->id2_val));
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1392 }
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1393 } else {
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1394 DEBUG_WARN(("ERROR cannot locate id2 value %#"PRIx64"\n", attach->id2_val));
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1395 attach->id2_val = 0; // suppress this missing attachment
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1396 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1397 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1398 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1399
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
1400 if (!m_head) pst_free_id2(id2_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1401 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1402 return item;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1403 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1404
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1405
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1406 static void freeall(pst_subblocks *subs, pst_block_offset_pointer *p1,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1407 pst_block_offset_pointer *p2,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1408 pst_block_offset_pointer *p3,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1409 pst_block_offset_pointer *p4,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1410 pst_block_offset_pointer *p5,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1411 pst_block_offset_pointer *p6,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1412 pst_block_offset_pointer *p7);
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1413 static void freeall(pst_subblocks *subs, pst_block_offset_pointer *p1,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1414 pst_block_offset_pointer *p2,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1415 pst_block_offset_pointer *p3,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1416 pst_block_offset_pointer *p4,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1417 pst_block_offset_pointer *p5,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1418 pst_block_offset_pointer *p6,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1419 pst_block_offset_pointer *p7) {
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1420 size_t i;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1421 for (i=0; i<subs->subblock_count; i++) {
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1422 if (subs->subs[i].buf) free(subs->subs[i].buf);
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1423 }
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1424 free(subs->subs);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1425 if (p1->needfree) free(p1->from);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1426 if (p2->needfree) free(p2->from);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1427 if (p3->needfree) free(p3->from);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1428 if (p4->needfree) free(p4->from);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1429 if (p5->needfree) free(p5->from);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1430 if (p6->needfree) free(p6->from);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1431 if (p7->needfree) free(p7->from);
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1432 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1433
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
1434
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1435 /** Process a low level descriptor block (0x0101, 0xbcec, 0x7cec) into a
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1436 * list of MAPI objects, each of which contains a list of MAPI elements.
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1437 *
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1438 * @return list of MAPI objects
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
1439 */
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
1440 static pst_mapi_object* pst_parse_block(pst_file *pf, uint64_t block_id, pst_id2_tree *i2_head) {
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1441 pst_mapi_object *mo_head = NULL;
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
1442 char *buf = NULL;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
1443 size_t read_size = 0;
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1444 pst_subblocks subblocks;
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1445 pst_mapi_object *mo_ptr = NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1446 pst_block_offset_pointer block_offset1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1447 pst_block_offset_pointer block_offset2;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1448 pst_block_offset_pointer block_offset3;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1449 pst_block_offset_pointer block_offset4;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1450 pst_block_offset_pointer block_offset5;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1451 pst_block_offset_pointer block_offset6;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1452 pst_block_offset_pointer block_offset7;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1453 int32_t x;
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1454 int32_t num_mapi_objects;
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1455 int32_t count_mapi_objects;
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1456 int32_t num_mapi_elements;
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1457 int32_t count_mapi_elements;
47
5fb8d997feed more fixes for 64 bit format
carl
parents: 46
diff changeset
1458 int block_type;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1459 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
1460 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
1461 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
1462 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
1463 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
1464 char* ind2_ptr = NULL;
359
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
1465 char* ind2_block_start = NULL;
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
1466 size_t ind2_max_block_size = pf->do_read64 ? 0x1FF0 : 0x1FF4;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1467 pst_x_attrib_ll *mapptr;
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
1468 pst_block_hdr block_hdr;
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
1469 pst_table3_rec table3_rec; //for type 3 (0x0101) blocks
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1470
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1471 struct {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1472 unsigned char seven_c;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1473 unsigned char item_count;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1474 uint16_t u1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1475 uint16_t u2;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1476 uint16_t u3;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1477 uint16_t rec_size;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1478 uint32_t b_five_offset;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1479 uint32_t ind2_offset;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1480 uint16_t u7;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1481 uint16_t u8;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1482 } seven_c_blk;
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1483
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1484 struct _type_d_rec {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1485 uint32_t id;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1486 uint32_t u1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1487 } * type_d_rec;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1488
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1489 struct {
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1490 uint16_t type;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1491 uint16_t ref_type;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1492 uint32_t value;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1493 } table_rec; //for type 1 (0xBCEC) blocks
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1494
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1495 struct {
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1496 uint16_t ref_type;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1497 uint16_t type;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1498 uint16_t ind2_off;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1499 uint8_t size;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1500 uint8_t slot;
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1501 } table2_rec; //for type 2 (0x7CEC) blocks
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1502
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1503 DEBUG_ENT("pst_parse_block");
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1504 if ((read_size = pst_ff_getIDblock_dec(pf, block_id, &buf)) == 0) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
1505 DEBUG_WARN(("Error reading block id %#"PRIx64"\n", block_id));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1506 if (buf) free (buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1507 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1508 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1509 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1510
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1511 block_offset1.needfree = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1512 block_offset2.needfree = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1513 block_offset3.needfree = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1514 block_offset4.needfree = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1515 block_offset5.needfree = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1516 block_offset6.needfree = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1517 block_offset7.needfree = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1518
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1519 memcpy(&block_hdr, buf, sizeof(block_hdr));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1520 LE16_CPU(block_hdr.index_offset);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1521 LE16_CPU(block_hdr.type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1522 LE32_CPU(block_hdr.offset);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1523 DEBUG_INFO(("block header (index_offset=%#hx, type=%#hx, offset=%#hx)\n", block_hdr.index_offset, block_hdr.type, block_hdr.offset));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1524
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1525 if (block_hdr.index_offset == (uint16_t)0x0101) { //type 3
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
1526 size_t i;
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
1527 char *b_ptr = buf + 8;
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1528 subblocks.subblock_count = block_hdr.type;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1529 subblocks.subs = malloc(sizeof(pst_subblock) * subblocks.subblock_count);
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1530 for (i=0; i<subblocks.subblock_count; i++) {
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1531 b_ptr += pst_decode_type3(pf, &table3_rec, b_ptr);
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1532 subblocks.subs[i].buf = NULL;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1533 subblocks.subs[i].read_size = pst_ff_getIDblock_dec(pf, table3_rec.id, &subblocks.subs[i].buf);
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1534 if (subblocks.subs[i].buf) {
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1535 memcpy(&block_hdr, subblocks.subs[i].buf, sizeof(block_hdr));
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1536 LE16_CPU(block_hdr.index_offset);
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1537 subblocks.subs[i].i_offset = block_hdr.index_offset;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1538 }
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1539 else {
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1540 subblocks.subs[i].read_size = 0;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1541 subblocks.subs[i].i_offset = 0;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1542 }
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1543 }
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1544 free(buf);
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1545 memcpy(&block_hdr, subblocks.subs[0].buf, sizeof(block_hdr));
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1546 LE16_CPU(block_hdr.index_offset);
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1547 LE16_CPU(block_hdr.type);
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1548 LE32_CPU(block_hdr.offset);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1549 DEBUG_INFO(("block header (index_offset=%#hx, type=%#hx, offset=%#hx)\n", block_hdr.index_offset, block_hdr.type, block_hdr.offset));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1550 }
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1551 else {
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1552 // setup the subblock descriptors, but we only have one block
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
1553 subblocks.subblock_count = (size_t)1;
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1554 subblocks.subs = malloc(sizeof(pst_subblock));
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1555 subblocks.subs[0].buf = buf;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1556 subblocks.subs[0].read_size = read_size;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1557 subblocks.subs[0].i_offset = block_hdr.index_offset;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1558 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1559
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1560 if (block_hdr.type == (uint16_t)0xBCEC) { //type 1
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1561 block_type = 1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1562
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1563 if (pst_getBlockOffsetPointer(pf, i2_head, &subblocks, block_hdr.offset, &block_offset1)) {
148
b47d04257b43 64 bit cleanup in debug messages
Carl Byington <carl@five-ten-sg.com>
parents: 143
diff changeset
1564 DEBUG_WARN(("internal error (bc.b5 offset %#x) in reading block id %#"PRIx64"\n", block_hdr.offset, block_id));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1565 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1566 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1567 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1568 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1569 memcpy(&table_rec, block_offset1.from, sizeof(table_rec));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1570 LE16_CPU(table_rec.type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1571 LE16_CPU(table_rec.ref_type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1572 LE32_CPU(table_rec.value);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1573 DEBUG_INFO(("table_rec (type=%#hx, ref_type=%#hx, value=%#x)\n", table_rec.type, table_rec.ref_type, table_rec.value));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1574
75
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
1575 if ((table_rec.type != (uint16_t)0x02B5) || (table_rec.ref_type != 6)) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
1576 DEBUG_WARN(("Unknown second block constant - %#hx %#hx for id %#"PRIx64"\n", table_rec.type, table_rec.ref_type, block_id));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1577 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1578 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1579 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1580 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1581
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1582 if (pst_getBlockOffsetPointer(pf, i2_head, &subblocks, table_rec.value, &block_offset2)) {
148
b47d04257b43 64 bit cleanup in debug messages
Carl Byington <carl@five-ten-sg.com>
parents: 143
diff changeset
1583 DEBUG_WARN(("internal error (bc.b5.desc offset #x) in reading block id %#"PRIx64"\n", table_rec.value, block_id));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1584 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1585 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1586 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1587 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1588 list_start = block_offset2.from;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1589 to_ptr = block_offset2.to;
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1590 num_mapi_elements = (to_ptr - list_start)/sizeof(table_rec);
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1591 num_mapi_objects = 1; // only going to be one object in these blocks
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1592 }
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1593 else if (block_hdr.type == (uint16_t)0x7CEC) { //type 2
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1594 block_type = 2;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1595
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1596 if (pst_getBlockOffsetPointer(pf, i2_head, &subblocks, block_hdr.offset, &block_offset3)) {
148
b47d04257b43 64 bit cleanup in debug messages
Carl Byington <carl@five-ten-sg.com>
parents: 143
diff changeset
1597 DEBUG_WARN(("internal error (7c.7c offset %#x) in reading block id %#"PRIx64"\n", block_hdr.offset, block_id));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1598 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1599 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1600 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1601 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1602 fr_ptr = block_offset3.from; //now got pointer to "7C block"
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1603 memset(&seven_c_blk, 0, sizeof(seven_c_blk));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1604 memcpy(&seven_c_blk, fr_ptr, sizeof(seven_c_blk));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1605 LE16_CPU(seven_c_blk.u1);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1606 LE16_CPU(seven_c_blk.u2);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1607 LE16_CPU(seven_c_blk.u3);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1608 LE16_CPU(seven_c_blk.rec_size);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1609 LE32_CPU(seven_c_blk.b_five_offset);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1610 LE32_CPU(seven_c_blk.ind2_offset);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1611 LE16_CPU(seven_c_blk.u7);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1612 LE16_CPU(seven_c_blk.u8);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1613
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1614 list_start = fr_ptr + sizeof(seven_c_blk); // the list of item numbers start after this record
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1615
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1616 if (seven_c_blk.seven_c != 0x7C) { // this would mean it isn't a 7C block!
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
1617 DEBUG_WARN(("Error. There isn't a 7C where I want to see 7C!\n"));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1618 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1619 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1620 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1621 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1622
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1623 rec_size = seven_c_blk.rec_size;
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1624 num_mapi_elements = (int32_t)(unsigned)seven_c_blk.item_count;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1625
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1626 if (pst_getBlockOffsetPointer(pf, i2_head, &subblocks, seven_c_blk.b_five_offset, &block_offset4)) {
148
b47d04257b43 64 bit cleanup in debug messages
Carl Byington <carl@five-ten-sg.com>
parents: 143
diff changeset
1627 DEBUG_WARN(("internal error (7c.b5 offset %#x) in reading block id %#"PRIx64"\n", seven_c_blk.b_five_offset, block_id));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1628 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1629 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1630 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1631 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1632 memcpy(&table_rec, block_offset4.from, sizeof(table_rec));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1633 LE16_CPU(table_rec.type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1634 LE16_CPU(table_rec.ref_type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1635 LE32_CPU(table_rec.value);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1636 DEBUG_INFO(("table_rec (type=%#hx, ref_type=%#hx, value=%#x)\n", table_rec.type, table_rec.ref_type, table_rec.value));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1637
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1638 if (table_rec.type != (uint16_t)0x04B5) { // different constant than a type 1 record
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
1639 DEBUG_WARN(("Unknown second block constant - %#hx for id %#"PRIx64"\n", table_rec.type, block_id));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1640 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1641 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1642 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1643 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1644
231
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1645 if (table_rec.value > 0) {
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1646 if (pst_getBlockOffsetPointer(pf, i2_head, &subblocks, table_rec.value, &block_offset5)) {
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1647 DEBUG_WARN(("internal error (7c.b5.desc offset %#x) in reading block id %#"PRIx64"\n", table_rec.value, block_id));
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1648 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1649 DEBUG_RET();
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1650 return NULL;
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1651 }
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1652
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1653 // this will give the number of records in this block
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1654 num_mapi_objects = (block_offset5.to - block_offset5.from) / (4 + table_rec.ref_type);
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1655
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1656 if (pst_getBlockOffsetPointer(pf, i2_head, &subblocks, seven_c_blk.ind2_offset, &block_offset6)) {
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1657 DEBUG_WARN(("internal error (7c.ind2 offset %#x) in reading block id %#"PRIx64"\n", seven_c_blk.ind2_offset, block_id));
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1658 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1659 DEBUG_RET();
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1660 return NULL;
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1661 }
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1662 ind2_ptr = block_offset6.from;
359
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
1663 ind2_block_start = ind2_ptr;
231
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1664 ind2_end = block_offset6.to;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1665 }
231
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1666 else {
fe64279df92b patches from Chris White, Roberto Polli, Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 230
diff changeset
1667 num_mapi_objects = 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1668 }
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1669 DEBUG_INFO(("7cec block index2 pointer %#x and end %#x\n", ind2_ptr, ind2_end));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1670 }
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1671 else {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
1672 DEBUG_WARN(("ERROR: Unknown block constant - %#hx for id %#"PRIx64"\n", block_hdr.type, block_id));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1673 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1674 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1675 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1676 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1677
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1678 DEBUG_INFO(("found %i mapi objects each with %i mapi elements\n", num_mapi_objects, num_mapi_elements));
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1679 for (count_mapi_objects=0; count_mapi_objects<num_mapi_objects; count_mapi_objects++) {
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1680 // put another mapi object on the linked list
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1681 mo_ptr = (pst_mapi_object*) pst_malloc(sizeof(pst_mapi_object));
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1682 memset(mo_ptr, 0, sizeof(pst_mapi_object));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1683 mo_ptr->next = mo_head;
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1684 mo_head = mo_ptr;
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1685 // allocate the array of mapi elements
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1686 mo_ptr->elements = (pst_mapi_element**) pst_malloc(sizeof(pst_mapi_element)*num_mapi_elements);
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1687 mo_ptr->count_elements = num_mapi_elements;
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1688 mo_ptr->orig_count = num_mapi_elements;
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1689 mo_ptr->count_objects = (int32_t)num_mapi_objects; // each record will have a record of the total number of records
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1690 for (x=0; x<num_mapi_elements; x++) mo_ptr->elements[x] = NULL;
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1691
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1692 DEBUG_INFO(("going to read %i mapi elements for mapi object %i\n", num_mapi_elements, count_mapi_objects));
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1693
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1694 fr_ptr = list_start; // initialize fr_ptr to the start of the list.
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1695 x = 0; // x almost tracks count_mapi_elements, but see 'continue' statement below
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1696 for (count_mapi_elements=0; count_mapi_elements<num_mapi_elements; count_mapi_elements++) { //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
1697 char* value_pointer = NULL; // needed for block type 2 with values larger than 4 bytes
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1698 size_t value_size = 0;
47
5fb8d997feed more fixes for 64 bit format
carl
parents: 46
diff changeset
1699 if (block_type == 1) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1700 memcpy(&table_rec, fr_ptr, sizeof(table_rec));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1701 LE16_CPU(table_rec.type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1702 LE16_CPU(table_rec.ref_type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1703 //LE32_CPU(table_rec.value); // done later, some may be order invariant
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1704 fr_ptr += sizeof(table_rec);
47
5fb8d997feed more fixes for 64 bit format
carl
parents: 46
diff changeset
1705 } else if (block_type == 2) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1706 // we will copy the table2_rec values into a table_rec record so that we can keep the rest of the code
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1707 memcpy(&table2_rec, fr_ptr, sizeof(table2_rec));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1708 LE16_CPU(table2_rec.ref_type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1709 LE16_CPU(table2_rec.type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1710 LE16_CPU(table2_rec.ind2_off);
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1711 DEBUG_INFO(("reading element %i (type=%#x, ref_type=%#x, offset=%#x, size=%#x)\n",
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1712 x, table2_rec.type, table2_rec.ref_type, table2_rec.ind2_off, table2_rec.size));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1713
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1714 // table_rec and table2_rec are arranged differently, so assign the values across
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1715 table_rec.type = table2_rec.type;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1716 table_rec.ref_type = table2_rec.ref_type;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1717 table_rec.value = 0;
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
1718 if ((ind2_end - ind2_ptr) >= (int)(table2_rec.ind2_off + table2_rec.size)) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1719 size_t n = table2_rec.size;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1720 size_t m = sizeof(table_rec.value);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1721 if (n <= m) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1722 memcpy(&table_rec.value, ind2_ptr + table2_rec.ind2_off, n);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1723 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1724 else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1725 value_pointer = ind2_ptr + table2_rec.ind2_off;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1726 value_size = n;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1727 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1728 //LE32_CPU(table_rec.value); // done later, some may be order invariant
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1729 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1730 else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1731 DEBUG_WARN (("Trying to read outside buffer, buffer size %#x, offset %#x, data size %#x\n",
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1732 read_size, ind2_end-ind2_ptr+table2_rec.ind2_off, table2_rec.size));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1733 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1734 fr_ptr += sizeof(table2_rec);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1735 } else {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
1736 DEBUG_WARN(("Missing code for block_type %i\n", block_type));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1737 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1738 pst_free_list(mo_head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1739 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1740 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1741 }
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
1742 DEBUG_INFO(("reading element %i (type=%#x, ref_type=%#x, value=%#x)\n",
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1743 x, table_rec.type, table_rec.ref_type, table_rec.value));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1744
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1745 if (!mo_ptr->elements[x]) {
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1746 mo_ptr->elements[x] = (pst_mapi_element*) pst_malloc(sizeof(pst_mapi_element));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1747 }
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1748 memset(mo_ptr->elements[x], 0, sizeof(pst_mapi_element)); //init it
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1749
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1750 // check here to see if the id of the attribute is a mapped one
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1751 mapptr = pf->x_head;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1752 while (mapptr && (mapptr->map < table_rec.type)) mapptr = mapptr->next;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1753 if (mapptr && (mapptr->map == table_rec.type)) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1754 if (mapptr->mytype == PST_MAP_ATTRIB) {
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1755 mo_ptr->elements[x]->mapi_id = *((uint32_t*)mapptr->data);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1756 DEBUG_INFO(("Mapped attrib %#x to %#x\n", table_rec.type, mo_ptr->elements[x]->mapi_id));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1757 } else if (mapptr->mytype == PST_MAP_HEADER) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1758 DEBUG_INFO(("Internet Header mapping found %#"PRIx32" to %s\n", table_rec.type, mapptr->data));
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1759 mo_ptr->elements[x]->mapi_id = (uint32_t)PST_ATTRIB_HEADER;
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
1760 mo_ptr->elements[x]->extra = mapptr->data;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1761 }
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1762 else {
94
997cf1373f9e fix base64 encoding that could create long lines
Carl Byington <carl@five-ten-sg.com>
parents: 93
diff changeset
1763 DEBUG_WARN(("Missing assertion failure\n"));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1764 // nothing, should be assertion failure here
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1765 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1766 } else {
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1767 mo_ptr->elements[x]->mapi_id = table_rec.type;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1768 }
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1769 mo_ptr->elements[x]->type = 0; // checked later before it is set
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1770 /* Reference Types
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1771 0x0002 - Signed 16bit value
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1772 0x0003 - Signed 32bit value
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1773 0x0004 - 4-byte floating point
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1774 0x0005 - Floating point double
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1775 0x0006 - Signed 64-bit int
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1776 0x0007 - Application Time
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1777 0x000A - 32-bit error value
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1778 0x000B - Boolean (non-zero = true)
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1779 0x000D - Embedded Object
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1780 0x0014 - 8-byte signed integer (64-bit)
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1781 0x001E - Null terminated String
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1782 0x001F - Unicode string
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1783 0x0040 - Systime - Filetime structure
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1784 0x0048 - OLE Guid
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1785 0x0102 - Binary data
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1786 0x1003 - Array of 32bit values
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1787 0x1014 - Array of 64bit values
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1788 0x101E - Array of Strings
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1789 0x1102 - Array of Binary data
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1790 */
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1791
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1792 if (table_rec.ref_type == (uint16_t)0x0002 ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1793 table_rec.ref_type == (uint16_t)0x0003 ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1794 table_rec.ref_type == (uint16_t)0x000b) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1795 //contains 32 bits of data
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1796 mo_ptr->elements[x]->size = sizeof(int32_t);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1797 mo_ptr->elements[x]->type = table_rec.ref_type;
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1798 mo_ptr->elements[x]->data = pst_malloc(sizeof(int32_t));
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1799 memcpy(mo_ptr->elements[x]->data, &(table_rec.value), sizeof(int32_t));
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
1800 // are we missing an LE32_CPU() call here? table_rec.value is still
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
1801 // in the original order.
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1802
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1803 } else if (table_rec.ref_type == (uint16_t)0x0005 ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1804 table_rec.ref_type == (uint16_t)0x000d ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1805 table_rec.ref_type == (uint16_t)0x0014 ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1806 table_rec.ref_type == (uint16_t)0x001e ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1807 table_rec.ref_type == (uint16_t)0x001f ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1808 table_rec.ref_type == (uint16_t)0x0040 ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1809 table_rec.ref_type == (uint16_t)0x0048 ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1810 table_rec.ref_type == (uint16_t)0x0102 ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1811 table_rec.ref_type == (uint16_t)0x1003 ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1812 table_rec.ref_type == (uint16_t)0x1014 ||
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1813 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
1814 table_rec.ref_type == (uint16_t)0x101f ||
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1815 table_rec.ref_type == (uint16_t)0x1102) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1816 //contains index reference to data
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1817 LE32_CPU(table_rec.value);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1818 if (value_pointer) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1819 // in a type 2 block, with a value that is more than 4 bytes
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1820 // directly stored in this block.
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1821 mo_ptr->elements[x]->size = value_size;
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1822 mo_ptr->elements[x]->type = table_rec.ref_type;
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1823 mo_ptr->elements[x]->data = pst_malloc(value_size);
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1824 memcpy(mo_ptr->elements[x]->data, value_pointer, value_size);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1825 }
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1826 else if (pst_getBlockOffsetPointer(pf, i2_head, &subblocks, table_rec.value, &block_offset7)) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1827 if ((table_rec.value & 0xf) == (uint32_t)0xf) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1828 DEBUG_WARN(("failed to get block offset for table_rec.value of %#x to be read later.\n", table_rec.value));
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1829 mo_ptr->elements[x]->size = 0;
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1830 mo_ptr->elements[x]->data = NULL;
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1831 mo_ptr->elements[x]->type = table_rec.value;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1832 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1833 else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1834 if (table_rec.value) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1835 DEBUG_WARN(("failed to get block offset for table_rec.value of %#x\n", table_rec.value));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1836 }
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1837 mo_ptr->count_elements --; //we will be skipping a row
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1838 continue;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1839 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1840 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1841 else {
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
1842 value_size = (size_t)(block_offset7.to - block_offset7.from);
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1843 mo_ptr->elements[x]->size = value_size;
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1844 mo_ptr->elements[x]->type = table_rec.ref_type;
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1845 mo_ptr->elements[x]->data = pst_malloc(value_size+1);
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1846 memcpy(mo_ptr->elements[x]->data, block_offset7.from, value_size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1847 mo_ptr->elements[x]->data[value_size] = '\0'; // it might be a string, null terminate it.
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1848 }
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1849 if (table_rec.ref_type == (uint16_t)0xd) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1850 // there is still more to do for the type of 0xD embedded objects
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1851 type_d_rec = (struct _type_d_rec*) mo_ptr->elements[x]->data;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1852 LE32_CPU(type_d_rec->id);
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1853 mo_ptr->elements[x]->size = pst_ff_getID2block(pf, type_d_rec->id, i2_head, &(mo_ptr->elements[x]->data));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1854 if (!mo_ptr->elements[x]->size){
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1855 DEBUG_WARN(("not able to read the ID2 data. Setting to be read later. %#x\n", type_d_rec->id));
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1856 mo_ptr->elements[x]->type = type_d_rec->id; // fetch before freeing data, alias pointer
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1857 free(mo_ptr->elements[x]->data);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1858 mo_ptr->elements[x]->data = NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1859 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1860 }
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1861 if (table_rec.ref_type == (uint16_t)0x1f) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1862 // there is more to do for the type 0x1f unicode strings
116
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
1863 size_t rc;
182
b65e8d0a088a more cleanup on external names in the shared object file
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
1864 static pst_vbuf *utf16buf = NULL;
b65e8d0a088a more cleanup on external names in the shared object file
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
1865 static pst_vbuf *utf8buf = NULL;
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1866 if (!utf16buf) utf16buf = pst_vballoc((size_t)1024);
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1867 if (!utf8buf) utf8buf = pst_vballoc((size_t)1024);
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
1868
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1869 //need UTF-16 zero-termination
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1870 pst_vbset(utf16buf, mo_ptr->elements[x]->data, mo_ptr->elements[x]->size);
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1871 pst_vbappend(utf16buf, "\0\0", (size_t)2);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1872 DEBUG_INFO(("Iconv in:\n"));
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
1873 DEBUG_HEXDUMPC(utf16buf->b, utf16buf->dlen, 0x10);
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1874 rc = pst_vb_utf16to8(utf8buf, utf16buf->b, utf16buf->dlen);
116
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
1875 if (rc == (size_t)-1) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
1876 DEBUG_WARN(("Failed to convert utf-16 to utf-8\n"));
116
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
1877 }
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
1878 else {
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1879 free(mo_ptr->elements[x]->data);
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
1880 mo_ptr->elements[x]->size = utf8buf->dlen;
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1881 mo_ptr->elements[x]->data = pst_malloc(utf8buf->dlen);
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
1882 memcpy(mo_ptr->elements[x]->data, utf8buf->b, utf8buf->dlen);
116
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
1883 }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1884 DEBUG_INFO(("Iconv out:\n"));
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1885 DEBUG_HEXDUMPC(mo_ptr->elements[x]->data, mo_ptr->elements[x]->size, 0x10);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1886 }
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1887 if (mo_ptr->elements[x]->type == 0) mo_ptr->elements[x]->type = table_rec.ref_type;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1888 } else {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
1889 DEBUG_WARN(("ERROR Unknown ref_type %#hx\n", table_rec.ref_type));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1890 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1891 x++;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1892 }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
1893 DEBUG_INFO(("increasing ind2_ptr by %i [%#x] bytes. Was %#x, Now %#x\n", rec_size, rec_size, ind2_ptr, ind2_ptr+rec_size));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1894 ind2_ptr += rec_size;
359
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
1895 // ind2 rows do not get split between blocks. See PST spec, 2.3.4.4 "Row Matrix".
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
1896 if (ind2_ptr + rec_size > ind2_block_start + ind2_max_block_size) {
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
1897 ind2_block_start += ind2_max_block_size;
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
1898 DEBUG_INFO(("advancing ind2_ptr to next block. Was %#x, Now %#x\n", ind2_ptr, ind2_block_start));
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
1899 ind2_ptr = ind2_block_start;
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
1900 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1901 }
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
1902 freeall(&subblocks, &block_offset1, &block_offset2, &block_offset3, &block_offset4, &block_offset5, &block_offset6, &block_offset7);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
1903 DEBUG_RET();
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1904 return mo_head;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1905 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1906
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
1907
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1908 // This version of free does NULL check first
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
1909 #define SAFE_FREE(x) {if (x) free(x);}
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1910 #define SAFE_FREE_STR(x) SAFE_FREE(x.str)
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1911 #define SAFE_FREE_BIN(x) SAFE_FREE(x.data)
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1912
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
1913 // check if item->email is NULL, and init if so
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1914 #define MALLOC_EMAIL(x) { if (!x->email) { x->email = (pst_item_email*) pst_malloc(sizeof(pst_item_email)); memset(x->email, 0, sizeof(pst_item_email) );} }
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1915 #define MALLOC_FOLDER(x) { if (!x->folder) { x->folder = (pst_item_folder*) pst_malloc(sizeof(pst_item_folder)); memset(x->folder, 0, sizeof(pst_item_folder) );} }
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1916 #define MALLOC_CONTACT(x) { if (!x->contact) { x->contact = (pst_item_contact*) pst_malloc(sizeof(pst_item_contact)); memset(x->contact, 0, sizeof(pst_item_contact) );} }
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1917 #define MALLOC_MESSAGESTORE(x) { if (!x->message_store) { x->message_store = (pst_item_message_store*) pst_malloc(sizeof(pst_item_message_store)); memset(x->message_store, 0, sizeof(pst_item_message_store));} }
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1918 #define MALLOC_JOURNAL(x) { if (!x->journal) { x->journal = (pst_item_journal*) pst_malloc(sizeof(pst_item_journal)); memset(x->journal, 0, sizeof(pst_item_journal) );} }
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
1919 #define MALLOC_APPOINTMENT(x) { if (!x->appointment) { x->appointment = (pst_item_appointment*) pst_malloc(sizeof(pst_item_appointment)); memset(x->appointment, 0, sizeof(pst_item_appointment) );} }
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1920
41
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 40
diff changeset
1921 // malloc space and copy the current item's data null terminated
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1922 #define LIST_COPY(targ, type) { \
289
cc8ee701f190 pst_block_offset elements are unsigned; consistent usage of pst_malloc and pst_realloc
Carl Byington <carl@five-ten-sg.com>
parents: 287
diff changeset
1923 targ = type pst_realloc(targ, list->elements[x]->size+1); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1924 memcpy(targ, list->elements[x]->data, list->elements[x]->size);\
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
1925 memset(((char*)targ)+list->elements[x]->size, 0, (size_t)1); \
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1926 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1927
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1928 #define LIST_COPY_CSTR(targ) { \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1929 if ((list->elements[x]->type == 0x1f) || \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1930 (list->elements[x]->type == 0x1e) || \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1931 (list->elements[x]->type == 0x102)) { \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1932 LIST_COPY(targ, (char*)) \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1933 } \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1934 else { \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
1935 DEBUG_WARN(("src not 0x1e or 0x1f or 0x102 for string dst\n")); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1936 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1937 SAFE_FREE(targ); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1938 targ = NULL; \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1939 } \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1940 }
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1941
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1942 #define LIST_COPY_BOOL(label, targ) { \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1943 if (list->elements[x]->type != 0x0b) { \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
1944 DEBUG_WARN(("src not 0x0b for boolean dst\n")); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1945 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1946 } \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1947 if (*(int16_t*)list->elements[x]->data) { \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
1948 DEBUG_INFO((label" - True\n")); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1949 targ = 1; \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1950 } else { \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
1951 DEBUG_INFO((label" - False\n")); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1952 targ = 0; \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1953 } \
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1954 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1955
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1956 #define LIST_COPY_EMAIL_BOOL(label, targ) { \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1957 MALLOC_EMAIL(item); \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1958 LIST_COPY_BOOL(label, targ) \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1959 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1960
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1961 #define LIST_COPY_CONTACT_BOOL(label, targ) { \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1962 MALLOC_CONTACT(item); \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1963 LIST_COPY_BOOL(label, targ) \
41
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 40
diff changeset
1964 }
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1965
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1966 #define LIST_COPY_APPT_BOOL(label, targ) { \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1967 MALLOC_APPOINTMENT(item); \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1968 LIST_COPY_BOOL(label, targ) \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1969 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
1970
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1971 #define LIST_COPY_INT16_N(targ) { \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1972 if (list->elements[x]->type != 0x02) { \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
1973 DEBUG_WARN(("src not 0x02 for int16 dst\n")); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1974 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1975 } \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1976 memcpy(&(targ), list->elements[x]->data, sizeof(targ)); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1977 LE16_CPU(targ); \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1978 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1979
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1980 #define LIST_COPY_INT16(label, targ) { \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1981 LIST_COPY_INT16_N(targ); \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
1982 DEBUG_INFO((label" - %i %#x\n", (int)targ, (int)targ)); \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1983 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1984
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1985 #define LIST_COPY_INT32_N(targ) { \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1986 if (list->elements[x]->type != 0x03) { \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
1987 DEBUG_WARN(("src not 0x03 for int32 dst\n")); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1988 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1989 } \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1990 memcpy(&(targ), list->elements[x]->data, sizeof(targ)); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1991 LE32_CPU(targ); \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1992 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1993
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1994 #define LIST_COPY_INT32(label, targ) { \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
1995 LIST_COPY_INT32_N(targ); \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
1996 DEBUG_INFO((label" - %i %#x\n", (int)targ, (int)targ)); \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1997 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1998
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
1999 #define LIST_COPY_EMAIL_INT32(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2000 MALLOC_EMAIL(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2001 LIST_COPY_INT32(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2002 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2003
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2004 #define LIST_COPY_APPT_INT32(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2005 MALLOC_APPOINTMENT(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2006 LIST_COPY_INT32(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2007 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2008
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2009 #define LIST_COPY_FOLDER_INT32(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2010 MALLOC_FOLDER(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2011 LIST_COPY_INT32(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2012 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2013
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2014 #define LIST_COPY_STORE_INT32(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2015 MALLOC_MESSAGESTORE(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2016 LIST_COPY_INT32(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2017 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2018
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2019 #define LIST_COPY_ENUM(label, targ, delta, count, ...) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2020 char *tlabels[] = {__VA_ARGS__}; \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2021 LIST_COPY_INT32_N(targ); \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2022 targ += delta; \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2023 DEBUG_INFO((label" - %s [%i]\n", \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2024 (((int)targ < 0) || ((int)targ >= count)) \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2025 ? "**invalid" \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2026 : tlabels[(int)targ], (int)targ)); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2027 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2028
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2029 #define LIST_COPY_EMAIL_ENUM(label, targ, delta, count, ...) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2030 MALLOC_EMAIL(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2031 LIST_COPY_ENUM(label, targ, delta, count, __VA_ARGS__); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2032 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2033
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2034 #define LIST_COPY_APPT_ENUM(label, targ, delta, count, ...) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2035 MALLOC_APPOINTMENT(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2036 LIST_COPY_ENUM(label, targ, delta, count, __VA_ARGS__); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2037 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2038
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2039 #define LIST_COPY_ENUM16(label, targ, delta, count, ...) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2040 char *tlabels[] = {__VA_ARGS__}; \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2041 LIST_COPY_INT16_N(targ); \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2042 targ += delta; \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2043 DEBUG_INFO((label" - %s [%i]\n", \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2044 (((int)targ < 0) || ((int)targ >= count)) \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2045 ? "**invalid" \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2046 : tlabels[(int)targ], (int)targ)); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2047 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2048
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2049 #define LIST_COPY_CONTACT_ENUM16(label, targ, delta, count, ...) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2050 MALLOC_CONTACT(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2051 LIST_COPY_ENUM16(label, targ, delta, count, __VA_ARGS__); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2052 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2053
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2054 #define LIST_COPY_ENTRYID(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2055 LIST_COPY(targ, (pst_entryid*)); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2056 LE32_CPU(targ->u1); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2057 LE32_CPU(targ->id); \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2058 DEBUG_INFO((label" u1=%#x, id=%#x\n", targ->u1, targ->id)); \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2059 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2060
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2061 #define LIST_COPY_EMAIL_ENTRYID(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2062 MALLOC_EMAIL(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2063 LIST_COPY_ENTRYID(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2064 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2065
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2066 #define LIST_COPY_STORE_ENTRYID(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2067 MALLOC_MESSAGESTORE(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2068 LIST_COPY_ENTRYID(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2069 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2070
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2071
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2072 // malloc space and copy the current item's data null terminated
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2073 // including the utf8 flag
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2074 #define LIST_COPY_STR(label, targ) { \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2075 LIST_COPY_CSTR(targ.str); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2076 targ.is_utf8 = (list->elements[x]->type == 0x1f) ? 1 : 0; \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2077 DEBUG_INFO((label" - unicode %d - %s\n", targ.is_utf8, targ.str)); \
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2078 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2079
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2080 #define LIST_COPY_EMAIL_STR(label, targ) { \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2081 MALLOC_EMAIL(item); \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2082 LIST_COPY_STR(label, targ); \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2083 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2084
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2085 #define LIST_COPY_CONTACT_STR(label, targ) { \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2086 MALLOC_CONTACT(item); \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2087 LIST_COPY_STR(label, targ); \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2088 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2089
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2090 #define LIST_COPY_APPT_STR(label, targ) { \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2091 MALLOC_APPOINTMENT(item); \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2092 LIST_COPY_STR(label, targ); \
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2093 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2094
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2095 #define LIST_COPY_JOURNAL_STR(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2096 MALLOC_JOURNAL(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2097 LIST_COPY_STR(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2098 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2099
59
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 58
diff changeset
2100 // malloc space and copy the item filetime
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2101 #define LIST_COPY_TIME(label, targ) { \
341
c638905665bc Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 340
diff changeset
2102 if ((list->elements[x]->type != 0x40) || \
342
5d0dc4db45b3 Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 341
diff changeset
2103 (list->elements[x]->size != sizeof(FILETIME))) { \
341
c638905665bc Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 340
diff changeset
2104 DEBUG_WARN(("src not 0x40 or wrong length for filetime dst\n")); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2105 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2106 } \
340
0f3185217313 Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 328
diff changeset
2107 else { \
0f3185217313 Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 328
diff changeset
2108 targ = (FILETIME*) pst_realloc(targ, sizeof(FILETIME)); \
341
c638905665bc Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 340
diff changeset
2109 memcpy(targ, list->elements[x]->data, sizeof(FILETIME)); \
340
0f3185217313 Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 328
diff changeset
2110 LE32_CPU(targ->dwLowDateTime); \
0f3185217313 Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 328
diff changeset
2111 LE32_CPU(targ->dwHighDateTime); \
0f3185217313 Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 328
diff changeset
2112 DEBUG_INFO((label" - %s", pst_fileTimeToAscii(targ, time_buffer))); \
0f3185217313 Daniel Gryniewicz found buffer overrun in LIST_COPY_TIME
Carl Byington <carl@five-ten-sg.com>
parents: 328
diff changeset
2113 } \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2114 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2115
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2116 #define LIST_COPY_EMAIL_TIME(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2117 MALLOC_EMAIL(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2118 LIST_COPY_TIME(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2119 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2120
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2121 #define LIST_COPY_CONTACT_TIME(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2122 MALLOC_CONTACT(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2123 LIST_COPY_TIME(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2124 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2125
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2126 #define LIST_COPY_APPT_TIME(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2127 MALLOC_APPOINTMENT(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2128 LIST_COPY_TIME(label, targ); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2129 }
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2130
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2131 #define LIST_COPY_JOURNAL_TIME(label, targ) { \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2132 MALLOC_JOURNAL(item); \
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2133 LIST_COPY_TIME(label, targ); \
59
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 58
diff changeset
2134 }
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2135
41
183ae993b9ad security fix for potential buffer overrun in lz decompress
carl
parents: 40
diff changeset
2136 // malloc space and copy the current item's data and size
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2137 #define LIST_COPY_BIN(targ) { \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2138 targ.size = list->elements[x]->size; \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2139 if (targ.size) { \
289
cc8ee701f190 pst_block_offset elements are unsigned; consistent usage of pst_malloc and pst_realloc
Carl Byington <carl@five-ten-sg.com>
parents: 287
diff changeset
2140 targ.data = (char*)pst_realloc(targ.data, targ.size); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2141 memcpy(targ.data, list->elements[x]->data, targ.size); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2142 } \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2143 else { \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2144 SAFE_FREE_BIN(targ); \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2145 targ.data = NULL; \
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2146 } \
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2147 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2148
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2149 #define LIST_COPY_EMAIL_BIN(label, targ) { \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2150 MALLOC_EMAIL(item); \
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2151 LIST_COPY_BIN(targ); \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2152 DEBUG_INFO((label"\n")); \
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2153 }
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
2154 #define LIST_COPY_APPT_BIN(label, targ) { \
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
2155 MALLOC_APPOINTMENT(item); \
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
2156 LIST_COPY_BIN(targ); \
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2157 DEBUG_INFO((label"\n")); \
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2158 DEBUG_HEXDUMP(targ.data, targ.size); \
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
2159 }
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2160
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
2161 #define NULL_CHECK(x) { if (!x) { DEBUG_WARN(("NULL_CHECK: Null Found\n")); break;} }
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2162
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2163
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2164 /**
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2165 * process the list of MAPI objects produced from parse_block()
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2166 *
304
5338d93889aa preserve bcc headers, document -C switch to set default character set, space after colon is not required in header fields
Carl Byington <carl@five-ten-sg.com>
parents: 298
diff changeset
2167 * @param block_id block number used by parse_block() to produce these MAPI objects
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2168 * @param list pointer to the list of MAPI objects from parse_block()
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
2169 * @param item pointer to the high level item to be updated from the list.
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2170 * this item may be an email, contact or other sort of item.
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
2171 * the type of this item is generally set by the MAPI elements
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2172 * from the list.
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
2173 * @param attach pointer to the list of attachment records. If
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2174 * this is non-null, the length of the this attachment list
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2175 * must be at least as large as the length of the MAPI objects list.
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2176 *
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2177 * @return 0 for ok, -1 for error.
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2178 */
297
8b3a827b71f4 add alarm reminders to calendar events
Carl Byington <carl@five-ten-sg.com>
parents: 289
diff changeset
2179 static int pst_process(uint64_t block_id, pst_mapi_object *list, pst_item *item, pst_item_attach *attach) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
2180 DEBUG_ENT("pst_process");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2181 if (!item) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2182 DEBUG_WARN(("item cannot be NULL.\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2183 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2184 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2185 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2186
297
8b3a827b71f4 add alarm reminders to calendar events
Carl Byington <carl@five-ten-sg.com>
parents: 289
diff changeset
2187 item->block_id = block_id;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2188 while (list) {
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2189 int32_t x;
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
2190 char time_buffer[30];
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2191 for (x=0; x<list->count_elements; x++) {
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2192 int32_t t;
267
3fa737c05322 adding more debug code
Carl Byington <carl@five-ten-sg.com>
parents: 266
diff changeset
2193 uint32_t ut;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2194 DEBUG_INFO(("#%d - mapi-id: %#x type: %#x length: %#x\n", x, list->elements[x]->mapi_id, list->elements[x]->type, list->elements[x]->size));
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2195
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2196 switch (list->elements[x]->mapi_id) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2197 case PST_ATTRIB_HEADER: // CUSTOM attribute for saying the Extra Headers
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
2198 if (list->elements[x]->extra) {
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2199 if (list->elements[x]->type == 0x0101e) {
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2200 // an array of strings, rather than a single string
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2201 int32_t string_length, i, offset, next_offset;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2202 int32_t p = 0;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2203 int32_t array_element_count = PST_LE_GET_INT32(list->elements[x]->data); p+=4;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2204 for (i = 1; i <= array_element_count; i++) {
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2205 pst_item_extra_field *ef = (pst_item_extra_field*) pst_malloc(sizeof(pst_item_extra_field));
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2206 memset(ef, 0, sizeof(pst_item_extra_field));
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2207 offset = PST_LE_GET_INT32(list->elements[x]->data + p); p+=4;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2208 next_offset = (i == array_element_count) ? list->elements[x]->size : PST_LE_GET_INT32(list->elements[x]->data + p);;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2209 string_length = next_offset - offset;
289
cc8ee701f190 pst_block_offset elements are unsigned; consistent usage of pst_malloc and pst_realloc
Carl Byington <carl@five-ten-sg.com>
parents: 287
diff changeset
2210 ef->value = pst_malloc(string_length + 1);
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2211 memcpy(ef->value, list->elements[x]->data + offset, string_length);
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2212 ef->value[string_length] = '\0';
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2213 ef->field_name = strdup(list->elements[x]->extra);
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2214 ef->next = item->extra_fields;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2215 item->extra_fields = ef;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2216 DEBUG_INFO(("Extra Field - \"%s\" = \"%s\"\n", ef->field_name, ef->value));
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2217 }
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2218 }
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2219 else {
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2220 // should be a single string
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2221 pst_item_extra_field *ef = (pst_item_extra_field*) pst_malloc(sizeof(pst_item_extra_field));
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2222 memset(ef, 0, sizeof(pst_item_extra_field));
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2223 LIST_COPY_CSTR(ef->value);
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2224 if (ef->value) {
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2225 ef->field_name = strdup(list->elements[x]->extra);
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2226 ef->next = item->extra_fields;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2227 item->extra_fields = ef;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2228 DEBUG_INFO(("Extra Field - \"%s\" = \"%s\"\n", ef->field_name, ef->value));
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2229 if (strcmp(ef->field_name, "content-type") == 0) {
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2230 char *p = strstr(ef->value, "charset=\"");
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2231 if (p) {
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2232 p += 9; // skip over charset="
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2233 char *pp = strchr(p, '"');
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2234 if (pp) {
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2235 *pp = '\0';
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2236 char *set = strdup(p);
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2237 *pp = '"';
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2238 if (item->body_charset.str) free(item->body_charset.str);
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2239 item->body_charset.str = set;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2240 item->body_charset.is_utf8 = 1;
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2241 DEBUG_INFO(("body charset %s from content-type extra field\n", set));
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2242 }
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
2243 }
116
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
2244 }
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
2245 }
242
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2246 else {
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2247 DEBUG_WARN(("What does this mean? Internet header %s value\n", list->elements[x]->extra));
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2248 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2249 free(ef); // caught by valgrind
67b24d6a45d6 patch from Hugo DesRosiers to export categories and notes into vcards.
Carl Byington <carl@five-ten-sg.com>
parents: 233
diff changeset
2250 }
170
0e1e048716e4 fix bug where we failed to pickup the last extended attribute.
Carl Byington <carl@five-ten-sg.com>
parents: 168
diff changeset
2251 }
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
2252 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2253 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2254 case 0x0002: // PR_ALTERNATE_RECIPIENT_ALLOWED
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2255 if (list->elements[x]->type == 0x0b) {
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2256 // If set to true, the sender allows this email to be autoforwarded
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2257 LIST_COPY_EMAIL_BOOL("AutoForward allowed", item->email->autoforward);
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2258 if (!item->email->autoforward) item->email->autoforward = -1;
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2259 } else {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
2260 DEBUG_WARN(("What does this mean?\n"));
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2261 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2262 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2263 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2264 case 0x0003: // Extended Attributes table
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2265 DEBUG_INFO(("Extended Attributes Table - NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2266 break;
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2267 case 0x0017: // PR_IMPORTANCE - How important the sender deems it to be
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2268 LIST_COPY_EMAIL_ENUM("Importance Level", item->email->importance, 0, 3, "Low", "Normal", "High");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2269 break;
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2270 case 0x001A: // PR_MESSAGE_CLASS IPM.x
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2271 if ((list->elements[x]->type == 0x1e) ||
168
c1a2fd06ffe6 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 167
diff changeset
2272 (list->elements[x]->type == 0x1f)) {
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2273 LIST_COPY_CSTR(item->ascii_type);
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2274 if (!item->ascii_type) item->ascii_type = strdup("unknown");
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2275 if (pst_strincmp("IPM.Note", item->ascii_type, 8) == 0)
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2276 item->type = PST_TYPE_NOTE;
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2277 else if (pst_stricmp("IPM", item->ascii_type) == 0)
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2278 item->type = PST_TYPE_NOTE;
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2279 else if (pst_strincmp("IPM.Contact", item->ascii_type, 11) == 0)
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2280 item->type = PST_TYPE_CONTACT;
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2281 else if (pst_strincmp("REPORT.IPM.Note", item->ascii_type, 15) == 0)
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2282 item->type = PST_TYPE_REPORT;
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2283 else if (pst_strincmp("IPM.Activity", item->ascii_type, 12) == 0)
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2284 item->type = PST_TYPE_JOURNAL;
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2285 else if (pst_strincmp("IPM.Appointment", item->ascii_type, 15) == 0)
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2286 item->type = PST_TYPE_APPOINTMENT;
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
2287 else if (pst_strincmp("IPM.Schedule.Meeting", item->ascii_type, 20) == 0)
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
2288 item->type = PST_TYPE_SCHEDULE; // meeting requests and responses transported over email
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2289 else if (pst_strincmp("IPM.StickyNote", item->ascii_type, 14) == 0)
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2290 item->type = PST_TYPE_STICKYNOTE;
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2291 else if (pst_strincmp("IPM.Task", item->ascii_type, 8) == 0)
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2292 item->type = PST_TYPE_TASK;
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2293 else
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2294 item->type = PST_TYPE_OTHER;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2295 DEBUG_INFO(("Message class %s [%"PRIi32"] \n", item->ascii_type, item->type));
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2296 }
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2297 else {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
2298 DEBUG_WARN(("What does this mean?\n"));
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2299 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2300 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2301 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2302 case 0x0023: // PR_ORIGINATOR_DELIVERY_REPORT_REQUESTED
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2303 if (list->elements[x]->type == 0x0b) {
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2304 // set if the sender wants a delivery report from all recipients
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2305 LIST_COPY_EMAIL_BOOL("Global Delivery Report", item->email->delivery_report);
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2306 }
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2307 else {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
2308 DEBUG_WARN(("What does this mean?\n"));
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2309 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2310 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2311 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2312 case 0x0026: // PR_PRIORITY
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2313 LIST_COPY_EMAIL_ENUM("Priority", item->email->priority, 1, 3, "NonUrgent", "Normal", "Urgent");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2314 break;
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2315 case 0x0029: // PR_READ_RECEIPT_REQUESTED
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2316 LIST_COPY_EMAIL_BOOL("Read Receipt", item->email->read_receipt);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2317 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2318 case 0x002B: // PR_RECIPIENT_REASSIGNMENT_PROHIBITED
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2319 LIST_COPY_BOOL("Reassignment Prohibited (Private)", item->private_member);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2320 break;
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2321 case 0x002E: // PR_ORIGINAL_SENSITIVITY - the sensitivity of the message before being replied to or forwarded
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2322 LIST_COPY_EMAIL_ENUM("Original Sensitivity", item->email->original_sensitivity, 0, 4,
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2323 "None", "Personal", "Private", "Company Confidential");
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2324 break;
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2325 case 0x0032: // PR_REPORT_TIME
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2326 LIST_COPY_EMAIL_TIME("Report time", item->email->report_time);
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2327 break;
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2328 case 0x0036: // PR_SENSITIVITY - sender's opinion of the sensitivity of an email
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2329 LIST_COPY_EMAIL_ENUM("Sensitivity", item->email->sensitivity, 0, 4,
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2330 "None", "Personal", "Private", "Company Confidential");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2331 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2332 case 0x0037: // PR_SUBJECT raw subject
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2333 {
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2334 int off = 0;
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2335 if ((list->elements[x]->size > 2) && (((uint8_t)list->elements[x]->data[0]) < 0x20)) {
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2336 off = 2;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2337 }
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2338 list->elements[x]->data += off;
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2339 list->elements[x]->size -= off;
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2340 LIST_COPY_STR("Raw Subject", item->subject);
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2341 list->elements[x]->size += off;
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2342 list->elements[x]->data -= off;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2343 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2344 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2345 case 0x0039: // PR_CLIENT_SUBMIT_TIME Date Email Sent/Created
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2346 LIST_COPY_EMAIL_TIME("Date sent", item->email->sent_date);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2347 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2348 case 0x003B: // PR_SENT_REPRESENTING_SEARCH_KEY Sender address 1
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2349 LIST_COPY_EMAIL_STR("Sent on behalf of address 1", item->email->outlook_sender);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2350 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2351 case 0x003F: // PR_RECEIVED_BY_ENTRYID Structure containing Recipient
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2352 DEBUG_INFO(("Recipient Structure 1 -- NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2353 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2354 case 0x0040: // PR_RECEIVED_BY_NAME Name of Recipient Structure
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents: 242
diff changeset
2355 LIST_COPY_EMAIL_STR("Received By Name 1", item->email->outlook_received_name1);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2356 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2357 case 0x0041: // PR_SENT_REPRESENTING_ENTRYID Structure containing Sender
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2358 DEBUG_INFO(("Sent on behalf of Structure 1 -- NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2359 break;
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2360 case 0x0042: // PR_SENT_REPRESENTING_NAME
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2361 LIST_COPY_EMAIL_STR("Sent on behalf of", item->email->outlook_sender_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2362 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2363 case 0x0043: // PR_RCVD_REPRESENTING_ENTRYID Recipient Structure 2
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2364 DEBUG_INFO(("Received on behalf of Structure -- NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2365 break;
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2366 case 0x0044: // PR_RCVD_REPRESENTING_NAME
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2367 LIST_COPY_EMAIL_STR("Received on behalf of", item->email->outlook_recipient_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2368 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2369 case 0x004F: // PR_REPLY_RECIPIENT_ENTRIES Reply-To Structure
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2370 DEBUG_INFO(("Reply-To Structure -- NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2371 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2372 case 0x0050: // PR_REPLY_RECIPIENT_NAMES Name of Reply-To Structure
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2373 LIST_COPY_EMAIL_STR("Reply-To", item->email->reply_to);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2374 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2375 case 0x0051: // PR_RECEIVED_BY_SEARCH_KEY Recipient Address 1
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2376 LIST_COPY_EMAIL_STR("Recipient's Address 1", item->email->outlook_recipient);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2377 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2378 case 0x0052: // PR_RCVD_REPRESENTING_SEARCH_KEY Recipient Address 2
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2379 LIST_COPY_EMAIL_STR("Recipient's Address 2", item->email->outlook_recipient2);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2380 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2381 case 0x0057: // PR_MESSAGE_TO_ME
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2382 // this user is listed explicitly in the TO address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2383 LIST_COPY_EMAIL_BOOL("My address in TO field", item->email->message_to_me);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2384 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2385 case 0x0058: // PR_MESSAGE_CC_ME
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2386 // this user is listed explicitly in the CC address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2387 LIST_COPY_EMAIL_BOOL("My address in CC field", item->email->message_cc_me);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2388 break;
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2389 case 0x0059: // PR_MESSAGE_RECIP_ME
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2390 // this user appears in TO, CC or BCC address list
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2391 LIST_COPY_EMAIL_BOOL("Message addressed to me", item->email->message_recip_me);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2392 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2393 case 0x0063: // PR_RESPONSE_REQUESTED
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2394 LIST_COPY_BOOL("Response requested", item->response_requested);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2395 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2396 case 0x0064: // PR_SENT_REPRESENTING_ADDRTYPE Access method for Sender Address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2397 LIST_COPY_EMAIL_STR("Sent on behalf of address type", item->email->sender_access);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2398 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2399 case 0x0065: // PR_SENT_REPRESENTING_EMAIL_ADDRESS Sender Address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2400 LIST_COPY_EMAIL_STR("Sent on behalf of address", item->email->sender_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2401 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2402 case 0x0070: // PR_CONVERSATION_TOPIC Processed Subject
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2403 LIST_COPY_EMAIL_STR("Processed Subject (Conversation Topic)", item->email->processed_subject);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2404 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
2405 case 0x0071: // PR_CONVERSATION_INDEX
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2406 LIST_COPY_EMAIL_BIN("Conversation Index", item->email->conversation_index);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2407 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
2408 case 0x0072: // PR_ORIGINAL_DISPLAY_BCC
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2409 LIST_COPY_EMAIL_STR("Original display bcc", item->email->original_bcc);
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
2410 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
2411 case 0x0073: // PR_ORIGINAL_DISPLAY_CC
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2412 LIST_COPY_EMAIL_STR("Original display cc", item->email->original_cc);
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
2413 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
2414 case 0x0074: // PR_ORIGINAL_DISPLAY_TO
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2415 LIST_COPY_EMAIL_STR("Original display to", item->email->original_to);
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
2416 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2417 case 0x0075: // PR_RECEIVED_BY_ADDRTYPE Recipient Access Method
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2418 LIST_COPY_EMAIL_STR("Received by Address type", item->email->recip_access);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2419 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2420 case 0x0076: // PR_RECEIVED_BY_EMAIL_ADDRESS Recipient Address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2421 LIST_COPY_EMAIL_STR("Received by Address", item->email->recip_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2422 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2423 case 0x0077: // PR_RCVD_REPRESENTING_ADDRTYPE Recipient Access Method 2
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2424 LIST_COPY_EMAIL_STR("Received on behalf of Address type", item->email->recip2_access);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2425 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2426 case 0x0078: // PR_RCVD_REPRESENTING_EMAIL_ADDRESS Recipient Address 2
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2427 LIST_COPY_EMAIL_STR("Received on behalf of Address", item->email->recip2_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2428 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2429 case 0x007D: // PR_TRANSPORT_MESSAGE_HEADERS Internet Header
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2430 LIST_COPY_EMAIL_STR("Internet Header", item->email->header);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2431 break;
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2432 case 0x0C04: // PR_NDR_REASON_CODE
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2433 LIST_COPY_EMAIL_INT32("NDR reason code", item->email->ndr_reason_code);
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2434 break;
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2435 case 0x0C05: // PR_NDR_DIAG_CODE
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2436 LIST_COPY_EMAIL_INT32("NDR diag code", item->email->ndr_diag_code);
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2437 break;
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2438 case 0x0C06: // PR_NON_RECEIPT_NOTIFICATION_REQUESTED
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2439 DEBUG_INFO(("Non-Receipt Notification Requested -- NOT PROCESSED\n"));
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2440 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2441 case 0x0C17: // PR_REPLY_REQUESTED
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2442 LIST_COPY_EMAIL_BOOL("Reply Requested", item->email->reply_requested);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2443 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2444 case 0x0C19: // PR_SENDER_ENTRYID Sender Structure 2
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2445 DEBUG_INFO(("Sender Structure 2 -- NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2446 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2447 case 0x0C1A: // PR_SENDER_NAME Name of Sender Structure 2
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents: 242
diff changeset
2448 LIST_COPY_EMAIL_STR("Name of Sender Structure 2", item->email->outlook_sender_name2);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2449 break;
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2450 case 0x0C1B: // PR_SUPPLEMENTARY_INFO
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2451 LIST_COPY_EMAIL_STR("Supplementary info", item->email->supplementary_info);
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2452 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2453 case 0x0C1D: // PR_SENDER_SEARCH_KEY Name of Sender Address 2
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2454 LIST_COPY_EMAIL_STR("Name of Sender Address 2 (Sender search key)", item->email->outlook_sender2);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2455 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2456 case 0x0C1E: // PR_SENDER_ADDRTYPE Sender Address 2 access method
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2457 LIST_COPY_EMAIL_STR("Sender Address type", item->email->sender2_access);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2458 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2459 case 0x0C1F: // PR_SENDER_EMAIL_ADDRESS Sender Address 2
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2460 LIST_COPY_EMAIL_STR("Sender Address", item->email->sender2_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2461 break;
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2462 case 0x0C20: // PR_NDR_STATUS_CODE
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2463 LIST_COPY_EMAIL_INT32("NDR status code", item->email->ndr_status_code);
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2464 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2465 case 0x0E01: // PR_DELETE_AFTER_SUBMIT
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2466 LIST_COPY_EMAIL_BOOL("Delete after submit", item->email->delete_after_submit);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2467 break;
59
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 58
diff changeset
2468 case 0x0E02: // PR_DISPLAY_BCC BCC Addresses
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2469 LIST_COPY_EMAIL_STR("Display BCC Addresses", item->email->bcc_address);
59
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 58
diff changeset
2470 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2471 case 0x0E03: // PR_DISPLAY_CC CC Addresses
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2472 LIST_COPY_EMAIL_STR("Display CC Addresses", item->email->cc_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2473 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2474 case 0x0E04: // PR_DISPLAY_TO Address Sent-To
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2475 LIST_COPY_EMAIL_STR("Display Sent-To Address", item->email->sentto_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2476 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2477 case 0x0E06: // PR_MESSAGE_DELIVERY_TIME Date 3 - Email Arrival Date
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2478 LIST_COPY_EMAIL_TIME("Date 3 (Delivery Time)", item->email->arrival_date);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2479 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2480 case 0x0E07: // PR_MESSAGE_FLAGS Email Flag
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2481 LIST_COPY_EMAIL_INT32("Message Flags", item->flags);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2482 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2483 case 0x0E08: // PR_MESSAGE_SIZE Total size of a message object
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2484 LIST_COPY_INT32("Message Size", item->message_size);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2485 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2486 case 0x0E0A: // PR_SENTMAIL_ENTRYID
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2487 // folder that this message is sent to after submission
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2488 LIST_COPY_EMAIL_ENTRYID("Sentmail EntryID", item->email->sentmail_folder);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2489 break;
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents: 242
diff changeset
2490 case 0x0E1D: // PR_NORMALIZED_SUBJECT
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents: 242
diff changeset
2491 LIST_COPY_EMAIL_STR("Normalized subject", item->email->outlook_normalized_subject);
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents: 242
diff changeset
2492 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2493 case 0x0E1F: // PR_RTF_IN_SYNC
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2494 // True means that the rtf version is same as text body
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2495 // False means rtf version is more up-to-date than text body
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2496 // if this value doesn't exist, text body is more up-to-date than rtf and
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
2497 // cannot update to the rtf
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2498 LIST_COPY_EMAIL_BOOL("Compressed RTF in Sync", item->email->rtf_in_sync);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2499 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2500 case 0x0E20: // PR_ATTACH_SIZE binary Attachment data in record
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2501 NULL_CHECK(attach);
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2502 LIST_COPY_INT32("Attachment Size", t);
269
5ca87faa020b attachment might have a secondary list of mapi elements included a size element which overwrote the real size from the primary list of mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 268
diff changeset
2503 // ignore this. we either get data and size from 0x3701
5ca87faa020b attachment might have a secondary list of mapi elements included a size element which overwrote the real size from the primary list of mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 268
diff changeset
2504 // or id codes from 0x3701 or 0x67f2
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2505 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2506 case 0x0FF9: // PR_RECORD_KEY Record Header 1
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2507 LIST_COPY_BIN(item->record_key);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2508 DEBUG_INFO(("Record Key\n"));
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2509 DEBUG_HEXDUMP(item->record_key.data, item->record_key.size);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2510 break;
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2511 case 0x1000: // PR_BODY
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2512 LIST_COPY_STR("Plain Text body", item->body);
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2513 break;
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2514 case 0x1001: // PR_REPORT_TEXT
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2515 LIST_COPY_EMAIL_STR("Report Text", item->email->report_text);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2516 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2517 case 0x1006: // PR_RTF_SYNC_BODY_CRC
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2518 LIST_COPY_EMAIL_INT32("RTF Sync Body CRC", item->email->rtf_body_crc);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2519 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2520 case 0x1007: // PR_RTF_SYNC_BODY_COUNT
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2521 // a count of the *significant* charcters in the rtf body. Doesn't count
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2522 // whitespace and other ignorable characters
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2523 LIST_COPY_EMAIL_INT32("RTF Sync Body character count", item->email->rtf_body_char_count);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2524 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2525 case 0x1008: // PR_RTF_SYNC_BODY_TAG
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2526 // the first couple of lines of RTF body so that after modification, then beginning can
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2527 // once again be found
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2528 LIST_COPY_EMAIL_STR("RTF Sync body tag", item->email->rtf_body_tag);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2529 break;
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2530 case 0x1009: // PR_RTF_COMPRESSED - rtf data is lzw compressed
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2531 LIST_COPY_EMAIL_BIN("RTF Compressed body", item->email->rtf_compressed);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2532 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2533 case 0x1010: // PR_RTF_SYNC_PREFIX_COUNT
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2534 // a count of the ignored characters before the first significant character
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2535 LIST_COPY_EMAIL_INT32("RTF whitespace prefix count", item->email->rtf_ws_prefix_count);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2536 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2537 case 0x1011: // PR_RTF_SYNC_TRAILING_COUNT
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2538 // a count of the ignored characters after the last significant character
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2539 LIST_COPY_EMAIL_INT32("RTF whitespace tailing count", item->email->rtf_ws_trailing_count);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2540 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2541 case 0x1013: // HTML body
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2542 LIST_COPY_EMAIL_STR("HTML body", item->email->htmlbody);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2543 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2544 case 0x1035: // Message ID
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2545 LIST_COPY_EMAIL_STR("Message ID", item->email->messageid);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2546 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2547 case 0x1042: // in-reply-to
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2548 LIST_COPY_EMAIL_STR("In-Reply-To", item->email->in_reply_to);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2549 break;
141
fd4297884319 improve decoding of multipart/report and message/rfc822 mime types
Carl Byington <carl@five-ten-sg.com>
parents: 130
diff changeset
2550 case 0x1046: // Return Path - this seems to be the message-id of the rfc822 mail that is being returned
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2551 LIST_COPY_EMAIL_STR("Return Path", item->email->return_path_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2552 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2553 case 0x3001: // PR_DISPLAY_NAME File As
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2554 LIST_COPY_STR("Display Name", item->file_as);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2555 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2556 case 0x3002: // PR_ADDRTYPE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2557 LIST_COPY_CONTACT_STR("Address Type", item->contact->address1_transport);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2558 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2559 case 0x3003: // PR_EMAIL_ADDRESS
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2560 LIST_COPY_CONTACT_STR("Contact email Address", item->contact->address1);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2561 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2562 case 0x3004: // PR_COMMENT Comment for item - usually folders
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2563 LIST_COPY_STR("Comment", item->comment);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2564 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2565 case 0x3007: // PR_CREATION_TIME Date 4 - Creation Date?
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2566 LIST_COPY_TIME("Date 4 (Item Creation Date)", item->create_date);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2567 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2568 case 0x3008: // PR_LAST_MODIFICATION_TIME Date 5 - Modify Date
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2569 LIST_COPY_TIME("Date 5 (Modify Date)", item->modify_date);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2570 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2571 case 0x300B: // PR_SEARCH_KEY Record Header 2
308
97c53c6868ab add -m option to readpst to create Outlook .msg files
Carl Byington <carl@five-ten-sg.com>
parents: 242
diff changeset
2572 LIST_COPY_EMAIL_STR("Record Search 2", item->email->outlook_search_key);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2573 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2574 case 0x35DF: // PR_VALID_FOLDER_MASK
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2575 LIST_COPY_STORE_INT32("Valid Folder Mask", item->message_store->valid_mask);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2576 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2577 case 0x35E0: // PR_IPM_SUBTREE_ENTRYID Top of Personal Folder Record
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2578 LIST_COPY_STORE_ENTRYID("Top of Personal Folder Record", item->message_store->top_of_personal_folder);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2579 break;
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2580 case 0x35E2: // PR_IPM_OUTBOX_ENTRYID
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2581 LIST_COPY_STORE_ENTRYID("Default Outbox Folder record", item->message_store->default_outbox_folder);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2582 break;
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2583 case 0x35E3: // PR_IPM_WASTEBASKET_ENTRYID
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2584 LIST_COPY_STORE_ENTRYID("Deleted Items Folder record", item->message_store->deleted_items_folder);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2585 break;
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2586 case 0x35E4: // PR_IPM_SENTMAIL_ENTRYID
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2587 LIST_COPY_STORE_ENTRYID("Sent Items Folder record", item->message_store->sent_items_folder);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2588 break;
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2589 case 0x35E5: // PR_VIEWS_ENTRYID
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2590 LIST_COPY_STORE_ENTRYID("User Views Folder record", item->message_store->user_views_folder);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2591 break;
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2592 case 0x35E6: // PR_COMMON_VIEWS_ENTRYID
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2593 LIST_COPY_STORE_ENTRYID("Common View Folder record", item->message_store->common_view_folder);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2594 break;
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2595 case 0x35E7: // PR_FINDER_ENTRYID
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2596 LIST_COPY_STORE_ENTRYID("Search Root Folder record", item->message_store->search_root_folder);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2597 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2598 case 0x3602: // PR_CONTENT_COUNT Number of emails stored in a folder
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2599 LIST_COPY_FOLDER_INT32("Folder Email Count", item->folder->item_count);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2600 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2601 case 0x3603: // PR_CONTENT_UNREAD Number of unread emails
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2602 LIST_COPY_FOLDER_INT32("Unread Email Count", item->folder->unseen_item_count);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2603 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2604 case 0x360A: // PR_SUBFOLDERS Has children
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2605 MALLOC_FOLDER(item);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2606 LIST_COPY_BOOL("Has Subfolders", item->folder->subfolder);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2607 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2608 case 0x3613: // PR_CONTAINER_CLASS IPF.x
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2609 LIST_COPY_CSTR(item->ascii_type);
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2610 if (pst_strincmp("IPF.Note", item->ascii_type, 8) == 0)
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2611 item->type = PST_TYPE_NOTE;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2612 else if (pst_strincmp("IPF.Imap", item->ascii_type, 8) == 0)
201
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
2613 item->type = PST_TYPE_NOTE;
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2614 else if (pst_stricmp("IPF", item->ascii_type) == 0)
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2615 item->type = PST_TYPE_NOTE;
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2616 else if (pst_strincmp("IPF.Contact", item->ascii_type, 11) == 0)
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2617 item->type = PST_TYPE_CONTACT;
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2618 else if (pst_strincmp("IPF.Journal", item->ascii_type, 11) == 0)
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2619 item->type = PST_TYPE_JOURNAL;
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2620 else if (pst_strincmp("IPF.Appointment", item->ascii_type, 15) == 0)
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2621 item->type = PST_TYPE_APPOINTMENT;
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2622 else if (pst_strincmp("IPF.StickyNote", item->ascii_type, 14) == 0)
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2623 item->type = PST_TYPE_STICKYNOTE;
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2624 else if (pst_strincmp("IPF.Task", item->ascii_type, 8) == 0)
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2625 item->type = PST_TYPE_TASK;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2626 else
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2627 item->type = PST_TYPE_OTHER;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2628
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2629 DEBUG_INFO(("Container class %s [%"PRIi32"]\n", item->ascii_type, item->type));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2630 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2631 case 0x3617: // PR_ASSOC_CONTENT_COUNT
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2632 // associated content are items that are attached to this folder
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2633 // but are hidden from users
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
2634 LIST_COPY_FOLDER_INT32("Associated Content count", item->folder->assoc_count);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2635 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2636 case 0x3701: // PR_ATTACH_DATA_OBJ binary data of attachment
203
9fb600ef4e03 cleanup debug logging
Carl Byington <carl@five-ten-sg.com>
parents: 202
diff changeset
2637 DEBUG_INFO(("Binary Data [Size %i]\n", list->elements[x]->size));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2638 NULL_CHECK(attach);
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2639 if (!list->elements[x]->data) { //special case
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
2640 attach->id2_val = list->elements[x]->type;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2641 DEBUG_INFO(("Seen a Reference. The data hasn't been loaded yet. [%#"PRIx64"]\n", attach->id2_val));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2642 } else {
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2643 LIST_COPY_BIN(attach->data);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2644 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2645 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2646 case 0x3704: // PR_ATTACH_FILENAME Attachment filename (8.3)
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2647 NULL_CHECK(attach);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2648 LIST_COPY_STR("Attachment Filename", attach->filename1);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2649 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2650 case 0x3705: // PR_ATTACH_METHOD
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2651 NULL_CHECK(attach);
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2652 LIST_COPY_ENUM("Attachment method", attach->method, 0, 7,
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2653 "No Attachment",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2654 "Attach By Value",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2655 "Attach By Reference",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2656 "Attach by Reference Resolve",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2657 "Attach by Reference Only",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2658 "Embedded Message",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2659 "OLE");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2660 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2661 case 0x3707: // PR_ATTACH_LONG_FILENAME Attachment filename (long?)
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2662 NULL_CHECK(attach);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2663 LIST_COPY_STR("Attachment Filename long", attach->filename2);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2664 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2665 case 0x370B: // PR_RENDERING_POSITION
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2666 // position in characters that the attachment appears in the plain text body
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2667 NULL_CHECK(attach);
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2668 LIST_COPY_INT32("Attachment Position", attach->position);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2669 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2670 case 0x370E: // PR_ATTACH_MIME_TAG Mime type of encoding
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2671 NULL_CHECK(attach);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2672 LIST_COPY_STR("Attachment mime encoding", attach->mimetype);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2673 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2674 case 0x3710: // PR_ATTACH_MIME_SEQUENCE
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2675 // sequence number for mime parts. Includes body
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2676 NULL_CHECK(attach);
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2677 LIST_COPY_INT32("Attachment Mime Sequence", attach->sequence);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2678 break;
352
09dd5299d91c Added Content-ID header support
Igor Stroh <igor.stroh@rulim.de>
parents: 345
diff changeset
2679 case 0x3712: // PR_ATTACH_CONTENT_ID
09dd5299d91c Added Content-ID header support
Igor Stroh <igor.stroh@rulim.de>
parents: 345
diff changeset
2680 // content identification header (Content-ID)
09dd5299d91c Added Content-ID header support
Igor Stroh <igor.stroh@rulim.de>
parents: 345
diff changeset
2681 NULL_CHECK(attach);
09dd5299d91c Added Content-ID header support
Igor Stroh <igor.stroh@rulim.de>
parents: 345
diff changeset
2682 LIST_COPY_STR("Content ID", attach->content_id);
09dd5299d91c Added Content-ID header support
Igor Stroh <igor.stroh@rulim.de>
parents: 345
diff changeset
2683 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2684 case 0x3A00: // PR_ACCOUNT
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2685 LIST_COPY_CONTACT_STR("Contact's Account name", item->contact->account_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2686 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2687 case 0x3A01: // PR_ALTERNATE_RECIPIENT
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2688 DEBUG_INFO(("Contact Alternate Recipient - NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2689 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2690 case 0x3A02: // PR_CALLBACK_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2691 LIST_COPY_CONTACT_STR("Callback telephone number", item->contact->callback_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2692 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2693 case 0x3A03: // PR_CONVERSION_PROHIBITED
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2694 LIST_COPY_EMAIL_BOOL("Message Conversion Prohibited", item->email->conversion_prohibited);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2695 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2696 case 0x3A05: // PR_GENERATION suffix
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2697 LIST_COPY_CONTACT_STR("Contacts Suffix", item->contact->suffix);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2698 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2699 case 0x3A06: // PR_GIVEN_NAME Contact's first name
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2700 LIST_COPY_CONTACT_STR("Contacts First Name", item->contact->first_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2701 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2702 case 0x3A07: // PR_GOVERNMENT_ID_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2703 LIST_COPY_CONTACT_STR("Contacts Government ID Number", item->contact->gov_id);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2704 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2705 case 0x3A08: // PR_BUSINESS_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2706 LIST_COPY_CONTACT_STR("Business Telephone Number", item->contact->business_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2707 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2708 case 0x3A09: // PR_HOME_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2709 LIST_COPY_CONTACT_STR("Home Telephone Number", item->contact->home_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2710 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2711 case 0x3A0A: // PR_INITIALS Contact's Initials
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2712 LIST_COPY_CONTACT_STR("Contacts Initials", item->contact->initials);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2713 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2714 case 0x3A0B: // PR_KEYWORD
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2715 LIST_COPY_CONTACT_STR("Keyword", item->contact->keyword);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2716 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2717 case 0x3A0C: // PR_LANGUAGE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2718 LIST_COPY_CONTACT_STR("Contact's Language", item->contact->language);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2719 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2720 case 0x3A0D: // PR_LOCATION
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2721 LIST_COPY_CONTACT_STR("Contact's Location", item->contact->location);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2722 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2723 case 0x3A0E: // PR_MAIL_PERMISSION - Can the recipient receive and send email
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2724 LIST_COPY_CONTACT_BOOL("Mail Permission", item->contact->mail_permission);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2725 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2726 case 0x3A0F: // PR_MHS_COMMON_NAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2727 LIST_COPY_CONTACT_STR("MHS Common Name", item->contact->common_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2728 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2729 case 0x3A10: // PR_ORGANIZATIONAL_ID_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2730 LIST_COPY_CONTACT_STR("Organizational ID #", item->contact->org_id);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2731 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2732 case 0x3A11: // PR_SURNAME Contact's Surname
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2733 LIST_COPY_CONTACT_STR("Contacts Surname", item->contact->surname);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2734 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2735 case 0x3A12: // PR_ORIGINAL_ENTRY_ID
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2736 DEBUG_INFO(("Original Entry ID - NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2737 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2738 case 0x3A13: // PR_ORIGINAL_DISPLAY_NAME
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2739 DEBUG_INFO(("Original Display Name - NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2740 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2741 case 0x3A14: // PR_ORIGINAL_SEARCH_KEY
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2742 DEBUG_INFO(("Original Search Key - NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2743 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2744 case 0x3A15: // PR_POSTAL_ADDRESS
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2745 LIST_COPY_CONTACT_STR("Default Postal Address", item->contact->def_postal_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2746 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2747 case 0x3A16: // PR_COMPANY_NAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2748 LIST_COPY_CONTACT_STR("Company Name", item->contact->company_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2749 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2750 case 0x3A17: // PR_TITLE - Job Title
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2751 LIST_COPY_CONTACT_STR("Job Title", item->contact->job_title);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2752 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2753 case 0x3A18: // PR_DEPARTMENT_NAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2754 LIST_COPY_CONTACT_STR("Department Name", item->contact->department);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2755 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2756 case 0x3A19: // PR_OFFICE_LOCATION
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2757 LIST_COPY_CONTACT_STR("Office Location", item->contact->office_loc);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2758 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2759 case 0x3A1A: // PR_PRIMARY_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2760 LIST_COPY_CONTACT_STR("Primary Telephone", item->contact->primary_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2761 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2762 case 0x3A1B: // PR_BUSINESS2_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2763 LIST_COPY_CONTACT_STR("Business Phone Number 2", item->contact->business_phone2);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2764 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2765 case 0x3A1C: // PR_MOBILE_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2766 LIST_COPY_CONTACT_STR("Mobile Phone Number", item->contact->mobile_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2767 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2768 case 0x3A1D: // PR_RADIO_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2769 LIST_COPY_CONTACT_STR("Radio Phone Number", item->contact->radio_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2770 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2771 case 0x3A1E: // PR_CAR_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2772 LIST_COPY_CONTACT_STR("Car Phone Number", item->contact->car_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2773 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2774 case 0x3A1F: // PR_OTHER_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2775 LIST_COPY_CONTACT_STR("Other Phone Number", item->contact->other_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2776 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2777 case 0x3A20: // PR_TRANSMITTABLE_DISPLAY_NAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2778 LIST_COPY_CONTACT_STR("Transmittable Display Name", item->contact->transmittable_display_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2779 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2780 case 0x3A21: // PR_PAGER_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2781 LIST_COPY_CONTACT_STR("Pager Phone Number", item->contact->pager_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2782 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2783 case 0x3A22: // PR_USER_CERTIFICATE
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2784 DEBUG_INFO(("User Certificate - NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2785 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2786 case 0x3A23: // PR_PRIMARY_FAX_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2787 LIST_COPY_CONTACT_STR("Primary Fax Number", item->contact->primary_fax);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2788 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2789 case 0x3A24: // PR_BUSINESS_FAX_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2790 LIST_COPY_CONTACT_STR("Business Fax Number", item->contact->business_fax);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2791 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2792 case 0x3A25: // PR_HOME_FAX_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2793 LIST_COPY_CONTACT_STR("Home Fax Number", item->contact->home_fax);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2794 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2795 case 0x3A26: // PR_BUSINESS_ADDRESS_COUNTRY
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2796 LIST_COPY_CONTACT_STR("Business Address Country", item->contact->business_country);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2797 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2798 case 0x3A27: // PR_BUSINESS_ADDRESS_CITY
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2799 LIST_COPY_CONTACT_STR("Business Address City", item->contact->business_city);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2800 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2801 case 0x3A28: // PR_BUSINESS_ADDRESS_STATE_OR_PROVINCE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2802 LIST_COPY_CONTACT_STR("Business Address State", item->contact->business_state);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2803 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2804 case 0x3A29: // PR_BUSINESS_ADDRESS_STREET
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2805 LIST_COPY_CONTACT_STR("Business Address Street", item->contact->business_street);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2806 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2807 case 0x3A2A: // PR_BUSINESS_POSTAL_CODE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2808 LIST_COPY_CONTACT_STR("Business Postal Code", item->contact->business_postal_code);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2809 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2810 case 0x3A2B: // PR_BUSINESS_PO_BOX
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2811 LIST_COPY_CONTACT_STR("Business PO Box", item->contact->business_po_box);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2812 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2813 case 0x3A2C: // PR_TELEX_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2814 LIST_COPY_CONTACT_STR("Telex Number", item->contact->telex);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2815 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2816 case 0x3A2D: // PR_ISDN_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2817 LIST_COPY_CONTACT_STR("ISDN Number", item->contact->isdn_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2818 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2819 case 0x3A2E: // PR_ASSISTANT_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2820 LIST_COPY_CONTACT_STR("Assistant Phone Number", item->contact->assistant_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2821 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2822 case 0x3A2F: // PR_HOME2_TELEPHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2823 LIST_COPY_CONTACT_STR("Home Phone 2", item->contact->home_phone2);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2824 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2825 case 0x3A30: // PR_ASSISTANT
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2826 LIST_COPY_CONTACT_STR("Assistant's Name", item->contact->assistant_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2827 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2828 case 0x3A40: // PR_SEND_RICH_INFO
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2829 LIST_COPY_CONTACT_BOOL("Can receive Rich Text", item->contact->rich_text);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2830 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2831 case 0x3A41: // PR_WEDDING_ANNIVERSARY
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2832 LIST_COPY_CONTACT_TIME("Wedding Anniversary", item->contact->wedding_anniversary);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2833 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2834 case 0x3A42: // PR_BIRTHDAY
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2835 LIST_COPY_CONTACT_TIME("Birthday", item->contact->birthday);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2836 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2837 case 0x3A43: // PR_HOBBIES
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2838 LIST_COPY_CONTACT_STR("Hobbies", item->contact->hobbies);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2839 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2840 case 0x3A44: // PR_MIDDLE_NAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2841 LIST_COPY_CONTACT_STR("Middle Name", item->contact->middle_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2842 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2843 case 0x3A45: // PR_DISPLAY_NAME_PREFIX
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2844 LIST_COPY_CONTACT_STR("Display Name Prefix (Title)", item->contact->display_name_prefix);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2845 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2846 case 0x3A46: // PR_PROFESSION
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2847 LIST_COPY_CONTACT_STR("Profession", item->contact->profession);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2848 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2849 case 0x3A47: // PR_PREFERRED_BY_NAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2850 LIST_COPY_CONTACT_STR("Preferred By Name", item->contact->pref_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2851 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2852 case 0x3A48: // PR_SPOUSE_NAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2853 LIST_COPY_CONTACT_STR("Spouse's Name", item->contact->spouse_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2854 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2855 case 0x3A49: // PR_COMPUTER_NETWORK_NAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2856 LIST_COPY_CONTACT_STR("Computer Network Name", item->contact->computer_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2857 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2858 case 0x3A4A: // PR_CUSTOMER_ID
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2859 LIST_COPY_CONTACT_STR("Customer ID", item->contact->customer_id);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2860 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2861 case 0x3A4B: // PR_TTYTDD_PHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2862 LIST_COPY_CONTACT_STR("TTY/TDD Phone", item->contact->ttytdd_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2863 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2864 case 0x3A4C: // PR_FTP_SITE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2865 LIST_COPY_CONTACT_STR("Ftp Site", item->contact->ftp_site);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2866 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2867 case 0x3A4D: // PR_GENDER
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2868 LIST_COPY_CONTACT_ENUM16("Gender", item->contact->gender, 0, 3, "Unspecified", "Female", "Male");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2869 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2870 case 0x3A4E: // PR_MANAGER_NAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2871 LIST_COPY_CONTACT_STR("Manager's Name", item->contact->manager_name);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2872 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2873 case 0x3A4F: // PR_NICKNAME
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2874 LIST_COPY_CONTACT_STR("Nickname", item->contact->nickname);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2875 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2876 case 0x3A50: // PR_PERSONAL_HOME_PAGE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2877 LIST_COPY_CONTACT_STR("Personal Home Page", item->contact->personal_homepage);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2878 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2879 case 0x3A51: // PR_BUSINESS_HOME_PAGE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2880 LIST_COPY_CONTACT_STR("Business Home Page", item->contact->business_homepage);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2881 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2882 case 0x3A57: // PR_COMPANY_MAIN_PHONE_NUMBER
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2883 LIST_COPY_CONTACT_STR("Company Main Phone", item->contact->company_main_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2884 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2885 case 0x3A58: // PR_CHILDRENS_NAMES
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2886 DEBUG_INFO(("Children's Names - NOT PROCESSED\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2887 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2888 case 0x3A59: // PR_HOME_ADDRESS_CITY
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2889 LIST_COPY_CONTACT_STR("Home Address City", item->contact->home_city);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2890 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2891 case 0x3A5A: // PR_HOME_ADDRESS_COUNTRY
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2892 LIST_COPY_CONTACT_STR("Home Address Country", item->contact->home_country);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2893 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2894 case 0x3A5B: // PR_HOME_ADDRESS_POSTAL_CODE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2895 LIST_COPY_CONTACT_STR("Home Address Postal Code", item->contact->home_postal_code);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2896 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2897 case 0x3A5C: // PR_HOME_ADDRESS_STATE_OR_PROVINCE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2898 LIST_COPY_CONTACT_STR("Home Address State or Province", item->contact->home_state);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2899 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2900 case 0x3A5D: // PR_HOME_ADDRESS_STREET
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2901 LIST_COPY_CONTACT_STR("Home Address Street", item->contact->home_street);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2902 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2903 case 0x3A5E: // PR_HOME_ADDRESS_POST_OFFICE_BOX
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2904 LIST_COPY_CONTACT_STR("Home Address Post Office Box", item->contact->home_po_box);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2905 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2906 case 0x3A5F: // PR_OTHER_ADDRESS_CITY
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2907 LIST_COPY_CONTACT_STR("Other Address City", item->contact->other_city);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2908 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2909 case 0x3A60: // PR_OTHER_ADDRESS_COUNTRY
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2910 LIST_COPY_CONTACT_STR("Other Address Country", item->contact->other_country);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2911 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2912 case 0x3A61: // PR_OTHER_ADDRESS_POSTAL_CODE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2913 LIST_COPY_CONTACT_STR("Other Address Postal Code", item->contact->other_postal_code);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2914 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2915 case 0x3A62: // PR_OTHER_ADDRESS_STATE_OR_PROVINCE
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2916 LIST_COPY_CONTACT_STR("Other Address State", item->contact->other_state);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2917 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2918 case 0x3A63: // PR_OTHER_ADDRESS_STREET
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2919 LIST_COPY_CONTACT_STR("Other Address Street", item->contact->other_street);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2920 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2921 case 0x3A64: // PR_OTHER_ADDRESS_POST_OFFICE_BOX
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2922 LIST_COPY_CONTACT_STR("Other Address Post Office box", item->contact->other_po_box);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2923 break;
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2924 case 0x3FDE: // PR_INTERNET_CPID
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2925 LIST_COPY_INT32("Internet code page", item->internet_cpid);
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2926 break;
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2927 case 0x3FFD: // PR_MESSAGE_CODEPAGE
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2928 LIST_COPY_INT32("Message code page", item->message_codepage);
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
2929 break;
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2930 case 0x65E3: // PR_PREDECESSOR_CHANGE_LIST
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2931 LIST_COPY_BIN(item->predecessor_change);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2932 DEBUG_INFO(("Predecessor Change\n"));
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
2933 DEBUG_HEXDUMP(item->predecessor_change.data, item->predecessor_change.size);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2934 break;
267
3fa737c05322 adding more debug code
Carl Byington <carl@five-ten-sg.com>
parents: 266
diff changeset
2935 case 0x67F2: // ID2 value of the attachment
3fa737c05322 adding more debug code
Carl Byington <carl@five-ten-sg.com>
parents: 266
diff changeset
2936 NULL_CHECK(attach);
3fa737c05322 adding more debug code
Carl Byington <carl@five-ten-sg.com>
parents: 266
diff changeset
2937 LIST_COPY_INT32("Attachment ID2 value", ut);
3fa737c05322 adding more debug code
Carl Byington <carl@five-ten-sg.com>
parents: 266
diff changeset
2938 attach->id2_val = ut;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2939 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2940 case 0x67FF: // Extra Property Identifier (Password CheckSum)
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
2941 LIST_COPY_STORE_INT32("Password checksum", item->message_store->pwd_chksum);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2942 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2943 case 0x6F02: // Secure HTML Body
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2944 LIST_COPY_EMAIL_BIN("Secure HTML Body", item->email->encrypted_htmlbody);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2945 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2946 case 0x6F04: // Secure Text Body
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2947 LIST_COPY_EMAIL_BIN("Secure Text Body", item->email->encrypted_body);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2948 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2949 case 0x7C07: // top of folders ENTRYID
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
2950 LIST_COPY_STORE_ENTRYID("Top of folders RecID", item->message_store->top_of_folder);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2951 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2952 case 0x8005: // Contact's Fullname
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2953 LIST_COPY_CONTACT_STR("Contact Fullname", item->contact->fullname);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2954 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2955 case 0x801A: // Full Home Address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2956 LIST_COPY_CONTACT_STR("Home Address", item->contact->home_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2957 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2958 case 0x801B: // Full Business Address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2959 LIST_COPY_CONTACT_STR("Business Address", item->contact->business_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2960 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2961 case 0x801C: // Full Other Address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2962 LIST_COPY_CONTACT_STR("Other Address", item->contact->other_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2963 break;
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2964 case 0x8045: // Work address street
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2965 LIST_COPY_CONTACT_STR("Work address street", item->contact->work_address_street);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2966 break;
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2967 case 0x8046: // Work address city
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2968 LIST_COPY_CONTACT_STR("Work address city", item->contact->work_address_city);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2969 break;
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2970 case 0x8047: // Work address state
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2971 LIST_COPY_CONTACT_STR("Work address state", item->contact->work_address_state);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2972 break;
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2973 case 0x8048: // Work address postalcode
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2974 LIST_COPY_CONTACT_STR("Work address postalcode", item->contact->work_address_postalcode);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2975 break;
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2976 case 0x8049: // Work address country
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2977 LIST_COPY_CONTACT_STR("Work address country", item->contact->work_address_country);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2978 break;
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2979 case 0x804A: // Work address postofficebox
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2980 LIST_COPY_CONTACT_STR("Work address postofficebox", item->contact->work_address_postofficebox);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
2981 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2982 case 0x8082: // Email Address 1 Transport
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2983 LIST_COPY_CONTACT_STR("Email Address 1 Transport", item->contact->address1_transport);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2984 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2985 case 0x8083: // Email Address 1 Address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2986 LIST_COPY_CONTACT_STR("Email Address 1 Address", item->contact->address1);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2987 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2988 case 0x8084: // Email Address 1 Description
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2989 LIST_COPY_CONTACT_STR("Email Address 1 Description", item->contact->address1_desc);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2990 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2991 case 0x8085: // Email Address 1 Record
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2992 LIST_COPY_CONTACT_STR("Email Address 1 Record", item->contact->address1a);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2993 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2994 case 0x8092: // Email Address 2 Transport
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2995 LIST_COPY_CONTACT_STR("Email Address 2 Transport", item->contact->address2_transport);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2996 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2997 case 0x8093: // Email Address 2 Address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
2998 LIST_COPY_CONTACT_STR("Email Address 2 Address", item->contact->address2);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
2999 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3000 case 0x8094: // Email Address 2 Description
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3001 LIST_COPY_CONTACT_STR("Email Address 2 Description", item->contact->address2_desc);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3002 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3003 case 0x8095: // Email Address 2 Record
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3004 LIST_COPY_CONTACT_STR("Email Address 2 Record", item->contact->address2a);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3005 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3006 case 0x80A2: // Email Address 3 Transport
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3007 LIST_COPY_CONTACT_STR("Email Address 3 Transport", item->contact->address3_transport);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3008 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3009 case 0x80A3: // Email Address 3 Address
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3010 LIST_COPY_CONTACT_STR("Email Address 3 Address", item->contact->address3);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3011 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3012 case 0x80A4: // Email Address 3 Description
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3013 LIST_COPY_CONTACT_STR("Email Address 3 Description", item->contact->address3_desc);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3014 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3015 case 0x80A5: // Email Address 3 Record
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3016 LIST_COPY_CONTACT_STR("Email Address 3 Record", item->contact->address3a);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3017 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3018 case 0x80D8: // Internet Free/Busy
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3019 LIST_COPY_CONTACT_STR("Internet Free/Busy", item->contact->free_busy_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3020 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3021 case 0x8205: // PR_OUTLOOK_EVENT_SHOW_TIME_AS
154
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
3022 LIST_COPY_APPT_ENUM("Appointment shows as", item->appointment->showas, 0, 4,
581fab9f1dc7 avoid emitting bogus empty email messages into contacts and calendar files
Carl Byington <carl@five-ten-sg.com>
parents: 153
diff changeset
3023 "Free", "Tentative", "Busy", "Out Of Office");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3024 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3025 case 0x8208: // PR_OUTLOOK_EVENT_LOCATION
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3026 LIST_COPY_APPT_STR("Appointment Location", item->appointment->location);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3027 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3028 case 0x820d: // PR_OUTLOOK_EVENT_START_DATE
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3029 LIST_COPY_APPT_TIME("Appointment Date Start", item->appointment->start);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3030 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3031 case 0x820e: // PR_OUTLOOK_EVENT_START_END
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3032 LIST_COPY_APPT_TIME("Appointment Date End", item->appointment->end);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3033 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3034 case 0x8214: // Label for an appointment
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3035 LIST_COPY_APPT_ENUM("Label for appointment", item->appointment->label, 0, 11,
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3036 "None",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3037 "Important",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3038 "Business",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3039 "Personal",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3040 "Vacation",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3041 "Must Attend",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3042 "Travel Required",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3043 "Needs Preparation",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3044 "Birthday",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3045 "Anniversary",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3046 "Phone Call");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3047 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3048 case 0x8215: // PR_OUTLOOK_EVENT_ALL_DAY
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3049 LIST_COPY_APPT_BOOL("All day flag", item->appointment->all_day);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3050 break;
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3051 case 0x8216: // PR_OUTLOOK_EVENT_RECURRENCE_DATA
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3052 LIST_COPY_APPT_BIN("Appointment recurrence data", item->appointment->recurrence_data);
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3053 break;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3054 case 0x8223: // PR_OUTLOOK_EVENT_IS_RECURRING
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3055 LIST_COPY_APPT_BOOL("Is recurring", item->appointment->is_recurring);
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3056 break;
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3057 case 0x8231: // Recurrence type
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3058 LIST_COPY_APPT_ENUM("Appointment recurrence type ", item->appointment->recurrence_type, 0, 5,
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3059 "None",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3060 "Daily",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3061 "Weekly",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3062 "Monthly",
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3063 "Yearly");
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3064 break;
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3065 case 0x8232: // Recurrence description
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3066 LIST_COPY_APPT_STR("Appointment recurrence description", item->appointment->recurrence_description);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3067 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3068 case 0x8234: // TimeZone as String
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3069 LIST_COPY_APPT_STR("TimeZone of times", item->appointment->timezonestring);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3070 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3071 case 0x8235: // PR_OUTLOOK_EVENT_RECURRENCE_START
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3072 LIST_COPY_APPT_TIME("Recurrence Start Date", item->appointment->recurrence_start);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3073 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3074 case 0x8236: // PR_OUTLOOK_EVENT_RECURRENCE_END
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3075 LIST_COPY_APPT_TIME("Recurrence End Date", item->appointment->recurrence_end);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3076 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3077 case 0x8501: // PR_OUTLOOK_COMMON_REMINDER_MINUTES_BEFORE
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3078 LIST_COPY_APPT_INT32("Alarm minutes", item->appointment->alarm_minutes);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3079 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3080 case 0x8503: // PR_OUTLOOK_COMMON_REMINDER_SET
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3081 LIST_COPY_APPT_BOOL("Reminder alarm", item->appointment->alarm);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3082 break;
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3083 case 0x8516: // Common start
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3084 DEBUG_INFO(("Common Start Date - %s\n", pst_fileTimeToAscii((FILETIME*)list->elements[x]->data, time_buffer)));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3085 break;
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3086 case 0x8517: // Common end
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3087 DEBUG_INFO(("Common End Date - %s\n", pst_fileTimeToAscii((FILETIME*)list->elements[x]->data, time_buffer)));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3088 break;
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3089 case 0x851f: // Play reminder sound filename
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3090 LIST_COPY_APPT_STR("Appointment reminder sound filename", item->appointment->alarm_filename);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3091 break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3092 case 0x8530: // Followup
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3093 LIST_COPY_CONTACT_STR("Followup String", item->contact->followup);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3094 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3095 case 0x8534: // Mileage
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3096 LIST_COPY_CONTACT_STR("Mileage", item->contact->mileage);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3097 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3098 case 0x8535: // Billing Information
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3099 LIST_COPY_CONTACT_STR("Billing Information", item->contact->billing_information);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3100 break;
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
3101 case 0x8554: // PR_OUTLOOK_VERSION
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3102 LIST_COPY_STR("Outlook Version", item->outlook_version);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3103 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3104 case 0x8560: // Appointment Reminder Time
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3105 LIST_COPY_APPT_TIME("Appointment Reminder Time", item->appointment->reminder);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3106 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3107 case 0x8700: // Journal Type
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3108 LIST_COPY_JOURNAL_STR("Journal Entry Type", item->journal->type);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3109 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3110 case 0x8706: // Journal Start date/time
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3111 LIST_COPY_JOURNAL_TIME("Start Timestamp", item->journal->start);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3112 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3113 case 0x8708: // Journal End date/time
152
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3114 LIST_COPY_JOURNAL_TIME("End Timestamp", item->journal->end);
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3115 break;
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3116 case 0x8712: // Journal Type Description
edebaf0e87d2 more code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 151
diff changeset
3117 LIST_COPY_JOURNAL_STR("Journal description", item->journal->description);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3118 break;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3119 default:
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3120 if (list->elements[x]->type == (uint32_t)0x0002) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3121 DEBUG_WARN(("Unknown type %#x 16bit int = %hi\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3122 *(int16_t*)list->elements[x]->data));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3123
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3124 } else if (list->elements[x]->type == (uint32_t)0x0003) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3125 DEBUG_WARN(("Unknown type %#x 32bit int = %i\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3126 *(int32_t*)list->elements[x]->data));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3127
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3128 } else if (list->elements[x]->type == (uint32_t)0x0004) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3129 DEBUG_WARN(("Unknown type %#x 4-byte floating [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3130 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3131 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3132
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3133 } else if (list->elements[x]->type == (uint32_t)0x0005) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3134 DEBUG_WARN(("Unknown type %#x double floating [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3135 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3136 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3137
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3138 } else if (list->elements[x]->type == (uint32_t)0x0006) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3139 DEBUG_WARN(("Unknown type %#x signed 64bit int = %"PRIi64"\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3140 *(int64_t*)list->elements[x]->data));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3141 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3142
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3143 } else if (list->elements[x]->type == (uint32_t)0x0007) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3144 DEBUG_WARN(("Unknown type %#x application time [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3145 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3146 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3147
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3148 } else if (list->elements[x]->type == (uint32_t)0x000a) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3149 DEBUG_WARN(("Unknown type %#x 32bit error value = %i\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3150 *(int32_t*)list->elements[x]->data));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3151
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3152 } else if (list->elements[x]->type == (uint32_t)0x000b) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3153 DEBUG_WARN(("Unknown type %#x 16bit boolean = %s [%hi]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3154 (*((int16_t*)list->elements[x]->data)!=0?"True":"False"),
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3155 *((int16_t*)list->elements[x]->data)));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3156
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3157 } else if (list->elements[x]->type == (uint32_t)0x000d) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3158 DEBUG_WARN(("Unknown type %#x Embedded object [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3159 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3160 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3161
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3162 } else if (list->elements[x]->type == (uint32_t)0x0014) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3163 DEBUG_WARN(("Unknown type %#x signed 64bit int = %"PRIi64"\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3164 *(int64_t*)list->elements[x]->data));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3165 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3166
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3167 } else if (list->elements[x]->type == (uint32_t)0x001e) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3168 DEBUG_WARN(("Unknown type %#x String Data = \"%s\"\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3169 list->elements[x]->data));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3170
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3171 } else if (list->elements[x]->type == (uint32_t)0x001f) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3172 DEBUG_WARN(("Unknown type %#x Unicode String Data [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3173 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3174 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3175
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3176 } else if (list->elements[x]->type == (uint32_t)0x0040) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3177 DEBUG_WARN(("Unknown type %#x Date = \"%s\"\n", list->elements[x]->mapi_id,
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
3178 pst_fileTimeToAscii((FILETIME*)list->elements[x]->data, time_buffer)));
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3179
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3180 } else if (list->elements[x]->type == (uint32_t)0x0048) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3181 DEBUG_WARN(("Unknown type %#x OLE GUID [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3182 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3183 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3184
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3185 } else if (list->elements[x]->type == (uint32_t)0x0102) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3186 DEBUG_WARN(("Unknown type %#x Binary Data [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3187 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3188 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3189
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3190 } else if (list->elements[x]->type == (uint32_t)0x1003) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3191 DEBUG_WARN(("Unknown type %#x Array of 32 bit values [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3192 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3193 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3194
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3195 } else if (list->elements[x]->type == (uint32_t)0x1014) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3196 DEBUG_WARN(("Unknown type %#x Array of 64 bit values [siize = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3197 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3198 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3199
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
3200 } else if (list->elements[x]->type == (uint32_t)0x101e) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3201 DEBUG_WARN(("Unknown type %#x Array of Strings [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3202 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3203 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3204
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
3205 } else if (list->elements[x]->type == (uint32_t)0x101f) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3206 DEBUG_WARN(("Unknown type %#x Array of Unicode Strings [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3207 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3208 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3209
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3210 } else if (list->elements[x]->type == (uint32_t)0x1102) {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3211 DEBUG_WARN(("Unknown type %#x Array of binary data blobs [size = %#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3212 list->elements[x]->size));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3213 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3214
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3215 } else {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3216 DEBUG_WARN(("Unknown type %#x Not Printable [%#x]\n", list->elements[x]->mapi_id,
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3217 list->elements[x]->type));
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3218 DEBUG_HEXDUMP(list->elements[x]->data, list->elements[x]->size);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3219 }
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3220
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3221 if (list->elements[x]->data) {
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3222 free(list->elements[x]->data);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3223 list->elements[x]->data = NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3224 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3225 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3226 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3227 list = list->next;
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3228 if (attach) attach = attach->next;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3229 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3230 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3231 return 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3232 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3233
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3234
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
3235 static void pst_free_list(pst_mapi_object *list) {
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3236 pst_mapi_object *l;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3237 DEBUG_ENT("pst_free_list");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3238 while (list) {
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3239 if (list->elements) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3240 int32_t x;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3241 for (x=0; x < list->orig_count; x++) {
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3242 if (list->elements[x]) {
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3243 if (list->elements[x]->data) free(list->elements[x]->data);
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3244 free(list->elements[x]);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3245 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3246 }
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
3247 free(list->elements);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3248 }
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3249 l = list->next;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3250 free (list);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3251 list = l;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3252 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3253 DEBUG_RET();
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3254 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3255
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3256
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3257 static void pst_free_id2(pst_id2_tree * head) {
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3258 pst_id2_tree *t;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3259 DEBUG_ENT("pst_free_id2");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3260 while (head) {
287
0f0ccd29b0d7 use recursion to free a tree structure
Carl Byington <carl@five-ten-sg.com>
parents: 277
diff changeset
3261 pst_free_id2(head->child);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3262 t = head->next;
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3263 free(head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3264 head = t;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3265 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3266 DEBUG_RET();
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3267 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3268
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3269
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3270 static void pst_free_desc (pst_desc_tree *head) {
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3271 pst_desc_tree *t;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3272 DEBUG_ENT("pst_free_desc");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3273 while (head) {
287
0f0ccd29b0d7 use recursion to free a tree structure
Carl Byington <carl@five-ten-sg.com>
parents: 277
diff changeset
3274 pst_free_desc(head->child);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3275 t = head->next;
287
0f0ccd29b0d7 use recursion to free a tree structure
Carl Byington <carl@five-ten-sg.com>
parents: 277
diff changeset
3276 free(head);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3277 head = t;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3278 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3279 DEBUG_RET();
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3280 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3281
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3282
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
3283 static void pst_free_xattrib(pst_x_attrib_ll *x) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3284 pst_x_attrib_ll *t;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3285 DEBUG_ENT("pst_free_xattrib");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3286 while (x) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3287 if (x->data) free(x->data);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3288 t = x->next;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3289 free(x);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3290 x = t;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3291 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3292 DEBUG_RET();
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3293 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3294
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3295
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3296 static pst_id2_tree * pst_build_id2(pst_file *pf, pst_index_ll* list) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3297 pst_block_header block_head;
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3298 pst_id2_tree *head = NULL, *tail = NULL;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3299 uint16_t x = 0;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3300 char *b_ptr = NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3301 char *buf = NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3302 pst_id2_assoc id2_rec;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3303 pst_index_ll *i_ptr = NULL;
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3304 pst_id2_tree *i2_ptr = NULL;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3305 DEBUG_ENT("pst_build_id2");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3306
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3307 if (pst_read_block_size(pf, list->offset, list->size, list->inflated_size, &buf) < list->size) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3308 //an error occured in block read
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3309 DEBUG_WARN(("block read error occured. offset = %#"PRIx64", size = %#"PRIx64"\n", list->offset, list->size));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3310 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3311 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3312 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3313 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3314 DEBUG_HEXDUMPC(buf, list->size, 16);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3315
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3316 memcpy(&block_head, buf, sizeof(block_head));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3317 LE16_CPU(block_head.type);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3318 LE16_CPU(block_head.count);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3319
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3320 if (block_head.type != (uint16_t)0x0002) { // some sort of constant?
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3321 DEBUG_WARN(("Unknown constant [%#hx] at start of id2 values [offset %#"PRIx64"].\n", block_head.type, list->offset));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3322 if (buf) free(buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3323 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3324 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3325 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3326
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3327 DEBUG_INFO(("ID %#"PRIx64" is likely to be a description record. Count is %i (offset %#"PRIx64")\n",
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
3328 list->i_id, block_head.count, list->offset));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3329 x = 0;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3330 b_ptr = buf + ((pf->do_read64) ? 0x08 : 0x04);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3331 while (x < block_head.count) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3332 b_ptr += pst_decode_assoc(pf, &id2_rec, b_ptr);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3333 DEBUG_INFO(("id2 = %#x, id = %#"PRIx64", child id = %#"PRIx64"\n", id2_rec.id2, id2_rec.id, id2_rec.child_id));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3334 if ((i_ptr = pst_getID(pf, id2_rec.id)) == NULL) {
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3335 DEBUG_WARN(("%#"PRIx64" - Not Found\n", id2_rec.id));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3336 } else {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3337 DEBUG_INFO(("%#"PRIx64" - Offset %#"PRIx64", u1 %#"PRIx64", Size %"PRIi64"(%#"PRIx64")\n",
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3338 i_ptr->i_id, i_ptr->offset, i_ptr->u1, i_ptr->size, i_ptr->inflated_size));
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3339 // add it to the tree
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3340 i2_ptr = (pst_id2_tree*) pst_malloc(sizeof(pst_id2_tree));
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3341 i2_ptr->id2 = id2_rec.id2;
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3342 i2_ptr->id = i_ptr;
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3343 i2_ptr->child = NULL;
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3344 i2_ptr->next = NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3345 if (!head) head = i2_ptr;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3346 if (tail) tail->next = i2_ptr;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3347 tail = i2_ptr;
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
3348 if (id2_rec.child_id) {
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
3349 if ((i_ptr = pst_getID(pf, id2_rec.child_id)) == NULL) {
233
1d50ff3c5091 better rfc822 embedded message decoding
Carl Byington <carl@five-ten-sg.com>
parents: 231
diff changeset
3350 DEBUG_WARN(("child id [%#"PRIx64"] not found\n", id2_rec.child_id));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3351 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3352 else {
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3353 i2_ptr->child = pst_build_id2(pf, i_ptr);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3354 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3355 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3356 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3357 x++;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3358 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3359 if (buf) free (buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3360 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3361 return head;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3362 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3363
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3364
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
3365 static void pst_free_attach(pst_item_attach *attach) {
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3366 while (attach) {
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3367 pst_item_attach *t;
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3368 SAFE_FREE_STR(attach->filename1);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3369 SAFE_FREE_STR(attach->filename2);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3370 SAFE_FREE_STR(attach->mimetype);
354
843705c25b45 code cleanup; content-id in brackets
Carl Byington <carl@five-ten-sg.com>
parents: 352
diff changeset
3371 SAFE_FREE_STR(attach->content_id);
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
3372 SAFE_FREE_BIN(attach->data);
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3373 pst_free_id2(attach->id2_head);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3374 t = attach->next;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3375 free(attach);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3376 attach = t;
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3377 }
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3378 }
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3379
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3380
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3381 void pst_freeItem(pst_item *item) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3382 pst_item_extra_field *et;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3383
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3384 DEBUG_ENT("pst_freeItem");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3385 if (item) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3386 if (item->email) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3387 SAFE_FREE(item->email->arrival_date);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3388 SAFE_FREE_STR(item->email->cc_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3389 SAFE_FREE_STR(item->email->bcc_address);
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
3390 SAFE_FREE_BIN(item->email->conversation_index);
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
3391 SAFE_FREE_BIN(item->email->encrypted_body);
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
3392 SAFE_FREE_BIN(item->email->encrypted_htmlbody);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3393 SAFE_FREE_STR(item->email->header);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3394 SAFE_FREE_STR(item->email->htmlbody);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3395 SAFE_FREE_STR(item->email->in_reply_to);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3396 SAFE_FREE_STR(item->email->messageid);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3397 SAFE_FREE_STR(item->email->original_bcc);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3398 SAFE_FREE_STR(item->email->original_cc);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3399 SAFE_FREE_STR(item->email->original_to);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3400 SAFE_FREE_STR(item->email->outlook_recipient);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3401 SAFE_FREE_STR(item->email->outlook_recipient_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3402 SAFE_FREE_STR(item->email->outlook_recipient2);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3403 SAFE_FREE_STR(item->email->outlook_sender);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3404 SAFE_FREE_STR(item->email->outlook_sender_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3405 SAFE_FREE_STR(item->email->outlook_sender2);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3406 SAFE_FREE_STR(item->email->processed_subject);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3407 SAFE_FREE_STR(item->email->recip_access);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3408 SAFE_FREE_STR(item->email->recip_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3409 SAFE_FREE_STR(item->email->recip2_access);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3410 SAFE_FREE_STR(item->email->recip2_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3411 SAFE_FREE_STR(item->email->reply_to);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3412 SAFE_FREE_STR(item->email->rtf_body_tag);
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
3413 SAFE_FREE_BIN(item->email->rtf_compressed);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3414 SAFE_FREE_STR(item->email->return_path_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3415 SAFE_FREE_STR(item->email->sender_access);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3416 SAFE_FREE_STR(item->email->sender_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3417 SAFE_FREE_STR(item->email->sender2_access);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3418 SAFE_FREE_STR(item->email->sender2_address);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3419 SAFE_FREE(item->email->sent_date);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3420 SAFE_FREE(item->email->sentmail_folder);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3421 SAFE_FREE_STR(item->email->sentto_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3422 SAFE_FREE_STR(item->email->report_text);
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3423 SAFE_FREE(item->email->report_time);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3424 SAFE_FREE_STR(item->email->supplementary_info);
328
c507af52515a add readpst -a option
Carl Byington <carl@five-ten-sg.com>
parents: 325
diff changeset
3425 SAFE_FREE_STR(item->email->outlook_received_name1);
c507af52515a add readpst -a option
Carl Byington <carl@five-ten-sg.com>
parents: 325
diff changeset
3426 SAFE_FREE_STR(item->email->outlook_sender_name2);
c507af52515a add readpst -a option
Carl Byington <carl@five-ten-sg.com>
parents: 325
diff changeset
3427 SAFE_FREE_STR(item->email->outlook_normalized_subject);
c507af52515a add readpst -a option
Carl Byington <carl@five-ten-sg.com>
parents: 325
diff changeset
3428 SAFE_FREE_STR(item->email->outlook_search_key);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3429 free(item->email);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3430 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3431 if (item->folder) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3432 free(item->folder);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3433 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3434 if (item->message_store) {
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3435 SAFE_FREE(item->message_store->top_of_personal_folder);
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3436 SAFE_FREE(item->message_store->default_outbox_folder);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3437 SAFE_FREE(item->message_store->deleted_items_folder);
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3438 SAFE_FREE(item->message_store->sent_items_folder);
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3439 SAFE_FREE(item->message_store->user_views_folder);
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3440 SAFE_FREE(item->message_store->common_view_folder);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3441 SAFE_FREE(item->message_store->search_root_folder);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3442 SAFE_FREE(item->message_store->top_of_folder);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3443 free(item->message_store);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3444 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3445 if (item->contact) {
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3446 SAFE_FREE_STR(item->contact->account_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3447 SAFE_FREE_STR(item->contact->address1);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3448 SAFE_FREE_STR(item->contact->address1a);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3449 SAFE_FREE_STR(item->contact->address1_desc);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3450 SAFE_FREE_STR(item->contact->address1_transport);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3451 SAFE_FREE_STR(item->contact->address2);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3452 SAFE_FREE_STR(item->contact->address2a);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3453 SAFE_FREE_STR(item->contact->address2_desc);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3454 SAFE_FREE_STR(item->contact->address2_transport);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3455 SAFE_FREE_STR(item->contact->address3);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3456 SAFE_FREE_STR(item->contact->address3a);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3457 SAFE_FREE_STR(item->contact->address3_desc);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3458 SAFE_FREE_STR(item->contact->address3_transport);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3459 SAFE_FREE_STR(item->contact->assistant_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3460 SAFE_FREE_STR(item->contact->assistant_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3461 SAFE_FREE_STR(item->contact->billing_information);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3462 SAFE_FREE(item->contact->birthday);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3463 SAFE_FREE_STR(item->contact->business_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3464 SAFE_FREE_STR(item->contact->business_city);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3465 SAFE_FREE_STR(item->contact->business_country);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3466 SAFE_FREE_STR(item->contact->business_fax);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3467 SAFE_FREE_STR(item->contact->business_homepage);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3468 SAFE_FREE_STR(item->contact->business_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3469 SAFE_FREE_STR(item->contact->business_phone2);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3470 SAFE_FREE_STR(item->contact->business_po_box);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3471 SAFE_FREE_STR(item->contact->business_postal_code);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3472 SAFE_FREE_STR(item->contact->business_state);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3473 SAFE_FREE_STR(item->contact->business_street);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3474 SAFE_FREE_STR(item->contact->callback_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3475 SAFE_FREE_STR(item->contact->car_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3476 SAFE_FREE_STR(item->contact->company_main_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3477 SAFE_FREE_STR(item->contact->company_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3478 SAFE_FREE_STR(item->contact->computer_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3479 SAFE_FREE_STR(item->contact->customer_id);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3480 SAFE_FREE_STR(item->contact->def_postal_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3481 SAFE_FREE_STR(item->contact->department);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3482 SAFE_FREE_STR(item->contact->display_name_prefix);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3483 SAFE_FREE_STR(item->contact->first_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3484 SAFE_FREE_STR(item->contact->followup);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3485 SAFE_FREE_STR(item->contact->free_busy_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3486 SAFE_FREE_STR(item->contact->ftp_site);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3487 SAFE_FREE_STR(item->contact->fullname);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3488 SAFE_FREE_STR(item->contact->gov_id);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3489 SAFE_FREE_STR(item->contact->hobbies);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3490 SAFE_FREE_STR(item->contact->home_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3491 SAFE_FREE_STR(item->contact->home_city);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3492 SAFE_FREE_STR(item->contact->home_country);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3493 SAFE_FREE_STR(item->contact->home_fax);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3494 SAFE_FREE_STR(item->contact->home_po_box);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3495 SAFE_FREE_STR(item->contact->home_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3496 SAFE_FREE_STR(item->contact->home_phone2);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3497 SAFE_FREE_STR(item->contact->home_postal_code);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3498 SAFE_FREE_STR(item->contact->home_state);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3499 SAFE_FREE_STR(item->contact->home_street);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3500 SAFE_FREE_STR(item->contact->initials);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3501 SAFE_FREE_STR(item->contact->isdn_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3502 SAFE_FREE_STR(item->contact->job_title);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3503 SAFE_FREE_STR(item->contact->keyword);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3504 SAFE_FREE_STR(item->contact->language);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3505 SAFE_FREE_STR(item->contact->location);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3506 SAFE_FREE_STR(item->contact->manager_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3507 SAFE_FREE_STR(item->contact->middle_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3508 SAFE_FREE_STR(item->contact->mileage);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3509 SAFE_FREE_STR(item->contact->mobile_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3510 SAFE_FREE_STR(item->contact->nickname);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3511 SAFE_FREE_STR(item->contact->office_loc);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3512 SAFE_FREE_STR(item->contact->common_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3513 SAFE_FREE_STR(item->contact->org_id);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3514 SAFE_FREE_STR(item->contact->other_address);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3515 SAFE_FREE_STR(item->contact->other_city);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3516 SAFE_FREE_STR(item->contact->other_country);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3517 SAFE_FREE_STR(item->contact->other_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3518 SAFE_FREE_STR(item->contact->other_po_box);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3519 SAFE_FREE_STR(item->contact->other_postal_code);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3520 SAFE_FREE_STR(item->contact->other_state);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3521 SAFE_FREE_STR(item->contact->other_street);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3522 SAFE_FREE_STR(item->contact->pager_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3523 SAFE_FREE_STR(item->contact->personal_homepage);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3524 SAFE_FREE_STR(item->contact->pref_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3525 SAFE_FREE_STR(item->contact->primary_fax);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3526 SAFE_FREE_STR(item->contact->primary_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3527 SAFE_FREE_STR(item->contact->profession);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3528 SAFE_FREE_STR(item->contact->radio_phone);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3529 SAFE_FREE_STR(item->contact->spouse_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3530 SAFE_FREE_STR(item->contact->suffix);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3531 SAFE_FREE_STR(item->contact->surname);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3532 SAFE_FREE_STR(item->contact->telex);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3533 SAFE_FREE_STR(item->contact->transmittable_display_name);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3534 SAFE_FREE_STR(item->contact->ttytdd_phone);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3535 SAFE_FREE(item->contact->wedding_anniversary);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3536 SAFE_FREE_STR(item->contact->work_address_street);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3537 SAFE_FREE_STR(item->contact->work_address_city);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3538 SAFE_FREE_STR(item->contact->work_address_state);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3539 SAFE_FREE_STR(item->contact->work_address_postalcode);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3540 SAFE_FREE_STR(item->contact->work_address_country);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3541 SAFE_FREE_STR(item->contact->work_address_postofficebox);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3542 free(item->contact);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3543 }
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3544
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3545 pst_free_attach(item->attach);
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3546
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3547 while (item->extra_fields) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3548 SAFE_FREE(item->extra_fields->field_name);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3549 SAFE_FREE(item->extra_fields->value);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3550 et = item->extra_fields->next;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3551 free(item->extra_fields);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3552 item->extra_fields = et;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3553 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3554 if (item->journal) {
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3555 SAFE_FREE(item->journal->start);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3556 SAFE_FREE(item->journal->end);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3557 SAFE_FREE_STR(item->journal->type);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3558 free(item->journal);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3559 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3560 if (item->appointment) {
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3561 SAFE_FREE(item->appointment->start);
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3562 SAFE_FREE(item->appointment->end);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3563 SAFE_FREE_STR(item->appointment->location);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3564 SAFE_FREE(item->appointment->reminder);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3565 SAFE_FREE_STR(item->appointment->alarm_filename);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3566 SAFE_FREE_STR(item->appointment->timezonestring);
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3567 SAFE_FREE_STR(item->appointment->recurrence_description);
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
3568 SAFE_FREE_BIN(item->appointment->recurrence_data);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3569 SAFE_FREE(item->appointment->recurrence_start);
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3570 SAFE_FREE(item->appointment->recurrence_end);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3571 free(item->appointment);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3572 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3573 SAFE_FREE(item->ascii_type);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3574 SAFE_FREE_STR(item->body_charset);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3575 SAFE_FREE_STR(item->body);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3576 SAFE_FREE_STR(item->subject);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3577 SAFE_FREE_STR(item->comment);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3578 SAFE_FREE(item->create_date);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3579 SAFE_FREE_STR(item->file_as);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3580 SAFE_FREE(item->modify_date);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
3581 SAFE_FREE_STR(item->outlook_version);
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
3582 SAFE_FREE_BIN(item->record_key);
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
3583 SAFE_FREE_BIN(item->predecessor_change);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3584 free(item);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3585 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3586 DEBUG_RET();
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3587 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3588
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3589
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3590 /**
204
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3591 * The offset might be zero, in which case we have no data, so return a pair of null pointers.
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3592 * Or, the offset might end in 0xf, so it is an id2 pointer, in which case we read the id2 block.
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3593 * Otherwise, the high order 16 bits of offset is the index into the subblocks, and
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3594 * the (low order 16 bits of offset)>>4 is an index into the table of offsets in the subblock.
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3595 */
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3596 static int pst_getBlockOffsetPointer(pst_file *pf, pst_id2_tree *i2_head, pst_subblocks *subblocks, uint32_t offset, pst_block_offset_pointer *p) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3597 size_t size;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3598 pst_block_offset block_offset;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3599 DEBUG_ENT("pst_getBlockOffsetPointer");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3600 if (p->needfree) free(p->from);
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3601 p->from = NULL;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3602 p->to = NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3603 p->needfree = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3604 if (!offset) {
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3605 // no data
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3606 p->from = p->to = NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3607 }
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3608 else if ((offset & 0xf) == (uint32_t)0xf) {
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3609 // external index reference
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3610 DEBUG_WARN(("Found id2 %#x value. Will follow it\n", offset));
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3611 size = pst_ff_getID2block(pf, offset, i2_head, &(p->from));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3612 if (size) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3613 p->to = p->from + size;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3614 p->needfree = 1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3615 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3616 else {
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3617 if (p->from) {
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3618 DEBUG_WARN(("size zero but non-null pointer\n"));
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3619 free(p->from);
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3620 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3621 p->from = p->to = NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3622 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3623 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3624 else {
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3625 DEBUG_WARN(("Found internal %#x value.\n", offset));
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3626 // internal index reference
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3627 size_t subindex = offset >> 16;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3628 if (pf->do_read64 == 2) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3629 // Shift over 3 more bits for new flags.
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3630 subindex = subindex >> 3;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3631 }
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3632 size_t suboffset = offset & 0xffff;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3633 if (subindex < subblocks->subblock_count) {
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3634 if (pst_getBlockOffset(subblocks->subs[subindex].buf,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3635 subblocks->subs[subindex].read_size,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3636 subblocks->subs[subindex].i_offset,
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3637 suboffset, &block_offset)) {
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3638 p->from = subblocks->subs[subindex].buf + block_offset.from;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3639 p->to = subblocks->subs[subindex].buf + block_offset.to;
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3640 }
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3641 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3642 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3643 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3644 return (p->from) ? 0 : 1;
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3645 }
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3646
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3647
204
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3648 /** */
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
3649 static int pst_getBlockOffset(char *buf, size_t read_size, uint32_t i_offset, uint32_t offset, pst_block_offset *p) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3650 uint32_t low = offset & 0xf;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3651 uint32_t of1 = offset >> 4;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3652 DEBUG_ENT("pst_getBlockOffset");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3653 if (!p || !buf || !i_offset || low || (i_offset+2+of1+sizeof(*p) > read_size)) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3654 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));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3655 DEBUG_RET();
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3656 return 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3657 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3658 memcpy(&(p->from), &(buf[(i_offset+2)+of1]), sizeof(p->from));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3659 memcpy(&(p->to), &(buf[(i_offset+2)+of1+sizeof(p->from)]), sizeof(p->to));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3660 LE16_CPU(p->from);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3661 LE16_CPU(p->to);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3662 DEBUG_WARN(("get block offset finds from=%i(%#x), to=%i(%#x)\n", p->from, p->from, p->to, p->to));
359
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
3663 if (p->from > p->to || p->to > read_size) {
a3e674fade6c From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 356
diff changeset
3664 DEBUG_WARN(("get block offset bad range\n"));
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3665 DEBUG_RET();
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3666 return 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3667 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3668 DEBUG_RET();
49
17654fbdf76b more fixes for 64 bit format
carl
parents: 48
diff changeset
3669 return 1;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3670 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3671
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3672
360
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
3673 static int pst_getID_compare(const void *key, const void *entry) {
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
3674 uint64_t key_id = *(const uint64_t*)key;
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
3675 uint64_t entry_id = ((const pst_index_ll*)entry)->i_id;
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
3676 return (key_id > entry_id) - (key_id < entry_id);
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
3677 }
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
3678
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
3679
204
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3680 /** */
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
3681 pst_index_ll* pst_getID(pst_file* pf, uint64_t i_id) {
69
63c02a242ca9 minor code cleanup
Carl Byington <carl@five-ten-sg.com>
parents: 63
diff changeset
3682 pst_index_ll *ptr;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3683 DEBUG_ENT("pst_getID");
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
3684 if (i_id == 0) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3685 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3686 return NULL;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3687 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3688
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3689 //if (i_id & 1) DEBUG_INFO(("have odd id bit %#"PRIx64"\n", i_id));
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3690 //if (i_id & 2) DEBUG_INFO(("have two id bit %#"PRIx64"\n", i_id));
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
3691 i_id -= (i_id & 1);
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
3692
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3693 DEBUG_INFO(("Trying to find %#"PRIx64"\n", i_id));
360
26c48ea9d896 From Jeffrey Morlan:
Carl Byington <carl@five-ten-sg.com>
parents: 359
diff changeset
3694 ptr = bsearch(&i_id, pf->i_table, pf->i_count, sizeof *pf->i_table, pst_getID_compare);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3695 if (ptr) {DEBUG_INFO(("Found Value %#"PRIx64"\n", i_id)); }
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3696 else {DEBUG_INFO(("ERROR: Value %#"PRIx64" not found\n", i_id)); }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3697 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3698 return ptr;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3699 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3700
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3701
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3702 static pst_id2_tree *pst_getID2(pst_id2_tree *head, uint64_t id2) {
370
8700cc322c0c Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents: 360
diff changeset
3703 // the id2 values are only unique among siblings.
8700cc322c0c Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents: 360
diff changeset
3704 // we must not recurse into children
8700cc322c0c Jeffrey Morlan - pst_getID2 must not recurse into children
Carl Byington <carl@five-ten-sg.com>
parents: 360
diff changeset
3705 // the caller must supply the correct parent
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3706 DEBUG_ENT("pst_getID2");
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3707 DEBUG_INFO(("looking for id2 = %#"PRIx64"\n", id2));
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3708 pst_id2_tree *ptr = head;
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3709 while (ptr) {
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3710 if (ptr->id2 == id2) break;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3711 ptr = ptr->next;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3712 }
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3713 if (ptr && ptr->id) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3714 DEBUG_INFO(("Found value %#"PRIx64"\n", ptr->id->i_id));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3715 DEBUG_RET();
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
3716 return ptr;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3717 }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3718 DEBUG_INFO(("ERROR Not Found\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3719 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3720 return NULL;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3721 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3722
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3723
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3724 /**
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3725 * find the id in the descriptor tree rooted at pf->d_head
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3726 *
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3727 * @param pf global pst file pointer
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
3728 * @param d_id the id we are looking for
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3729 *
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3730 * @return pointer to the pst_desc_tree node in the descriptor tree
35
b2f247463b83 better decoding of 7c blocks
carl
parents: 34
diff changeset
3731 */
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3732 static pst_desc_tree* pst_getDptr(pst_file *pf, uint64_t d_id) {
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3733 pst_desc_tree *ptr = pf->d_head;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3734 DEBUG_ENT("pst_getDptr");
150
06aa84023b48 rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents: 149
diff changeset
3735 while (ptr && (ptr->d_id != d_id)) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3736 //DEBUG_INFO(("Looking for %#"PRIx64" at node %#"PRIx64" with parent %#"PRIx64"\n", id, ptr->d_id, ptr->parent_d_id));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3737 if (ptr->child) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3738 ptr = ptr->child;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3739 continue;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3740 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3741 while (!ptr->next && ptr->parent) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3742 ptr = ptr->parent;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3743 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3744 ptr = ptr->next;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3745 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3746 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3747 return ptr; // will be NULL or record we are looking for
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3748 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3749
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3750
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3751 static void pst_printDptr(pst_file *pf, pst_desc_tree *ptr) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3752 DEBUG_ENT("pst_printDptr");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3753 while (ptr) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3754 DEBUG_INFO(("%#"PRIx64" [%i] desc=%#"PRIx64", assoc tree=%#"PRIx64"\n", ptr->d_id, ptr->no_child,
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
3755 (ptr->desc ? ptr->desc->i_id : (uint64_t)0),
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
3756 (ptr->assoc_tree ? ptr->assoc_tree->i_id : (uint64_t)0)));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3757 if (ptr->child) {
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3758 pst_printDptr(pf, ptr->child);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3759 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3760 ptr = ptr->next;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3761 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3762 DEBUG_RET();
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3763 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3764
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3765
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
3766 static void pst_printID2ptr(pst_id2_tree *ptr) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3767 DEBUG_ENT("pst_printID2ptr");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3768 while (ptr) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3769 DEBUG_INFO(("%#"PRIx64" id=%#"PRIx64"\n", ptr->id2, (ptr->id ? ptr->id->i_id : (uint64_t)0)));
142
2189a6b8134e improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents: 141
diff changeset
3770 if (ptr->child) pst_printID2ptr(ptr->child);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3771 ptr = ptr->next;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3772 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3773 DEBUG_RET();
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3774 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3775
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3776
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3777 /**
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3778 * Read a block of data from file into memory
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3779 * @param pf PST file
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3780 * @param offset offset in the pst file of the data
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3781 * @param size size of the block to be read
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3782 * @param buf reference to pointer to buffer. If this pointer
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3783 is non-NULL, it will first be free()d
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3784 * @return size of block read into memory
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3785 */
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3786 static size_t pst_read_raw_block_size(pst_file *pf, int64_t offset, size_t size, char **buf) {
51
06c0262ad689 code cleanup
carl
parents: 50
diff changeset
3787 size_t rsize;
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3788 DEBUG_ENT("pst_read_raw_block_size");
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3789 DEBUG_INFO(("Reading raw block from %#"PRIx64", %x bytes\n", offset, size));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3790
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3791 if (*buf) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3792 DEBUG_INFO(("Freeing old memory\n"));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3793 free(*buf);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3794 }
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
3795 *buf = (char*) pst_malloc(size);
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3796
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3797 rsize = pst_getAtPos(pf, offset, *buf, size);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3798 if (rsize != size) {
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3799 DEBUG_WARN(("Didn't read all the data. fread returned less [%i instead of %i]\n", rsize, size));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3800 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
3801 DEBUG_WARN(("We tried to read past the end of the file at [offset %#"PRIx64", size %#x]\n", offset, size));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3802 } else if (ferror(pf->fp)) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3803 DEBUG_WARN(("Error is set on file stream.\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3804 } else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3805 DEBUG_WARN(("I can't tell why it failed\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3806 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3807 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3808
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3809 DEBUG_RET();
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3810 return rsize;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3811 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3812
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3813 static size_t pst_read_block_size(pst_file *pf, int64_t offset, size_t size, size_t inflated_size, char **buf) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3814 DEBUG_ENT("pst_read_block_size");
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3815 DEBUG_INFO(("Reading block from %#"PRIx64", %x bytes, %x inflated\n", offset, size, inflated_size));
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3816 if (inflated_size <= size) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3817 // Not deflated.
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3818 size_t ret = pst_read_raw_block_size(pf, offset, size, buf);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3819 DEBUG_RET();
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3820 return ret;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3821 }
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3822 // We need to read the raw block and inflate it.
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3823 char *zbuf = NULL;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3824 if (pst_read_raw_block_size(pf, offset, size, &zbuf) != size) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3825 DEBUG_WARN(("Failed to read %i bytes\n", size));
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3826 if (zbuf) free(zbuf);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3827 DEBUG_RET();
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3828 return -1;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3829 }
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3830 *buf = (char *) pst_malloc(inflated_size);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3831 size_t result_size = inflated_size;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3832 if (uncompress((Bytef *) *buf, &result_size, (Bytef *) zbuf, size) != Z_OK || result_size != inflated_size) {
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3833 DEBUG_WARN(("Failed to uncompress %i bytes to %i bytes, got %i\n", size, inflated_size, result_size));
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3834 if (zbuf) free(zbuf);
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3835 DEBUG_RET();
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3836 return -1;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3837 }
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3838 DEBUG_RET();
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3839 return inflated_size;
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3840 }
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3841
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
3842
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3843
204
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3844 /** Decrypt a block of data from the pst file.
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3845 * @param i_id identifier of this block, needed as part of the key for the enigma cipher
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3846 * @param buf pointer to the buffer to be decrypted in place
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3847 * @param size size of the buffer
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3848 * @param type
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3849 @li 0 PST_NO_ENCRYPT, none
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3850 @li 1 PST_COMP_ENCRYPT, simple byte substitution cipher with fixed key
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3851 @li 2 PST_ENCRYPT, german enigma 3 rotor cipher with fixed key
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3852 * @return 0 if ok, -1 if error (NULL buffer or unknown encryption type)
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3853 */
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
3854 static int pst_decrypt(uint64_t i_id, char *buf, size_t size, unsigned char type) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3855 size_t x = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3856 unsigned char y;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3857 DEBUG_ENT("pst_decrypt");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3858 if (!buf) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3859 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3860 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3861 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3862
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3863 if (type == PST_COMP_ENCRYPT) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3864 x = 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3865 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
3866 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
3867 buf[x] = (char)comp_enc[y]; // transpose from encrypt array
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3868 x++;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3869 }
79
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3870
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3871 } 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
3872 // 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
3873 // http://www.passcape.com/outlook_passwords.htm
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
3874 uint16_t salt = (uint16_t) (((i_id & 0x00000000ffff0000) >> 16) ^ (i_id & 0x000000000000ffff));
79
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3875 x = 0;
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3876 while (x < size) {
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3877 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
3878 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
3879 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
3880 y += losalt;
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3881 y = comp_high1[y];
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3882 y += hisalt;
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3883 y = comp_high2[y];
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3884 y -= hisalt;
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3885 y = comp_enc[y];
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3886 y -= losalt;
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3887 buf[x] = (char)y;
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3888 x++;
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3889 salt++;
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3890 }
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
3891
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3892 } else {
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
3893 DEBUG_WARN(("Unknown encryption: %i. Cannot decrypt\n", type));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3894 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3895 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3896 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3897 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3898 return 0;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3899 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3900
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3901
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
3902 static uint64_t pst_getIntAt(pst_file *pf, char *buf) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3903 uint64_t buf64;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3904 uint32_t buf32;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3905 if (pf->do_read64) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3906 memcpy(&buf64, buf, sizeof(buf64));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3907 LE64_CPU(buf64);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3908 return buf64;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3909 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3910 else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3911 memcpy(&buf32, buf, sizeof(buf32));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3912 LE32_CPU(buf32);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3913 return buf32;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3914 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3915 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3916
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3917
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
3918 static uint64_t pst_getIntAtPos(pst_file *pf, int64_t pos ) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3919 uint64_t buf64;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3920 uint32_t buf32;
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3921 if (pf->do_read64) {
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3922 (void)pst_getAtPos(pf, pos, &buf64, sizeof(buf64));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3923 LE64_CPU(buf64);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3924 return buf64;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3925 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3926 else {
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3927 (void)pst_getAtPos(pf, pos, &buf32, sizeof(buf32));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3928 LE32_CPU(buf32);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3929 return buf32;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3930 }
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3931 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3932
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3933 /**
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3934 * Read part of the pst file.
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3935 *
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3936 * @param pf PST file structure
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3937 * @param pos offset of the data in the pst file
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3938 * @param buf buffer to contain the data
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3939 * @param size size of the buffer and the amount of data to be read
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3940 * @return actual read size, 0 if seek error
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3941 */
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
3942 static size_t pst_getAtPos(pst_file *pf, int64_t pos, void* buf, size_t size) {
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3943 size_t rc;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3944 DEBUG_ENT("pst_getAtPos");
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3945 // pst_block_recorder **t = &pf->block_head;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3946 // pst_block_recorder *p = pf->block_head;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3947 // while (p && ((p->offset+p->size) <= pos)) {
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3948 // t = &p->next;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3949 // p = p->next;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3950 // }
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3951 // if (p && (p->offset <= pos) && (pos < (p->offset+p->size))) {
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3952 // // bump the count
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3953 // p->readcount++;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3954 // } else {
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3955 // // add a new block
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3956 // pst_block_recorder *tail = *t;
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
3957 // p = (pst_block_recorder*)pst_malloc(sizeof(*p));
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3958 // *t = p;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3959 // p->next = tail;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3960 // p->offset = pos;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3961 // p->size = size;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3962 // p->readcount = 1;
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3963 // }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
3964 // DEBUG_INFO(("pst file old offset %#"PRIx64" old size %#x read count %i offset %#"PRIx64" size %#x\n",
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3965 // p->offset, p->size, p->readcount, pos, size));
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3966
75
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
3967 if (fseeko(pf->fp, pos, SEEK_SET) == -1) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3968 DEBUG_RET();
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3969 return 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3970 }
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3971 rc = fread(buf, (size_t)1, size, pf->fp);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3972 DEBUG_RET();
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3973 return rc;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3974 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3975
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3976
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3977 /**
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
3978 * Get an ID block from file using pst_ff_getIDblock() and decrypt if necessary
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3979 * @param pf PST file structure
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
3980 * @param i_id ID of block to retrieve
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
3981 * @param buf reference to pointer to buffer that will contain the data block.
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
3982 * If this pointer is non-NULL, it will first be free()d.
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
3983 * @return Size of block read into memory
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
3984 */
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
3985 size_t pst_ff_getIDblock_dec(pst_file *pf, uint64_t i_id, char **buf) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3986 size_t r;
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
3987 int noenc = (int)(i_id & 2); // disable encryption
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3988 DEBUG_ENT("pst_ff_getIDblock_dec");
233
1d50ff3c5091 better rfc822 embedded message decoding
Carl Byington <carl@five-ten-sg.com>
parents: 231
diff changeset
3989 DEBUG_INFO(("for id %#"PRIx64"\n", i_id));
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
3990 r = pst_ff_getIDblock(pf, i_id, buf);
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
3991 if ((pf->encryption) && !(noenc)) {
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
3992 (void)pst_decrypt(i_id, *buf, r, pf->encryption);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3993 }
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
3994 DEBUG_HEXDUMPC(*buf, r, 16);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3995 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3996 return r;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3997 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3998
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
3999
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4000 /**
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4001 * Read a block of data from file into memory
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
4002 * @param pf PST file structure
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
4003 * @param i_id ID of block to read
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
4004 * @param buf reference to pointer to buffer that will contain the data block.
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
4005 * If this pointer is non-NULL, it will first be free()d.
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
4006 * @return size of block read into memory
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4007 */
204
268458c79e9b more cleanup of the shared library interface, but still not fully thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 203
diff changeset
4008 static size_t pst_ff_getIDblock(pst_file *pf, uint64_t i_id, char** buf) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4009 pst_index_ll *rec;
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
4010 size_t rsize;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4011 DEBUG_ENT("pst_ff_getIDblock");
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
4012 rec = pst_getID(pf, i_id);
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
4013 if (!rec) {
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
4014 DEBUG_INFO(("Cannot find ID %#"PRIx64"\n", i_id));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4015 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4016 return 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4017 }
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
4018 DEBUG_INFO(("id = %#"PRIx64", record size = %#x, offset = %#x\n", i_id, rec->size, rec->offset));
373
0ccc746c8079 Zachary Travis - Add support for the OST 2013 format, and Content-Disposition filename key fix for outlook compatibility
Carl Byington <carl@five-ten-sg.com>
parents: 370
diff changeset
4019 rsize = pst_read_block_size(pf, rec->offset, rec->size, rec->inflated_size, buf);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4020 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4021 return rsize;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4022 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4023
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4024
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
4025 static size_t pst_ff_getID2block(pst_file *pf, uint64_t id2, pst_id2_tree *id2_head, char** buf) {
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4026 size_t ret;
186
0a4f7ecd7452 more cleanup of external names in the shared library
Carl Byington <carl@five-ten-sg.com>
parents: 182
diff changeset
4027 pst_id2_tree* ptr;
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4028 pst_holder h = {buf, NULL, 0, 0, 0};
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4029 DEBUG_ENT("pst_ff_getID2block");
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4030 ptr = pst_getID2(id2_head, id2);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4031
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4032 if (!ptr) {
233
1d50ff3c5091 better rfc822 embedded message decoding
Carl Byington <carl@five-ten-sg.com>
parents: 231
diff changeset
4033 DEBUG_WARN(("Cannot find id2 value %#"PRIx64"\n", id2));
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4034 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4035 return 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4036 }
143
fdc58ad2c758 fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents: 142
diff changeset
4037 ret = pst_ff_getID2data(pf, ptr->id, &h);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4038 DEBUG_RET();
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4039 return ret;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4040 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4041
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4042
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4043 /** find the actual data from an i_id and send it to the destination
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4044 * specified by the pst_holder h. h must be a new empty destination.
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4045 *
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4046 * @param pf PST file structure
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4047 * @param ptr
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4048 * @param h specifies the output destination (buffer, file, encoding)
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4049 * @return updated size of the output
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4050 */
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
4051 static size_t pst_ff_getID2data(pst_file *pf, pst_index_ll *ptr, pst_holder *h) {
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4052 size_t ret;
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4053 char *b = NULL;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4054 DEBUG_ENT("pst_ff_getID2data");
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
4055 if (!(ptr->i_id & 0x02)) {
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
4056 ret = pst_ff_getIDblock_dec(pf, ptr->i_id, &b);
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4057 ret = pst_append_holder(h, (size_t)0, &b, ret);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4058 free(b);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4059 } else {
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4060 // here we will assume it is an indirection block that points to others
260
156cf548c764 adding more debug code
Carl Byington <carl@five-ten-sg.com>
parents: 257
diff changeset
4061 DEBUG_INFO(("Assuming it is a multi-block record because of it's id %#"PRIx64"\n", ptr->i_id));
164
ab384fed78c5 Compensate for iconv conversion to utf-7 that produces strings that are not null terminated.
Carl Byington <carl@five-ten-sg.com>
parents: 163
diff changeset
4062 ret = pst_ff_compile_ID(pf, ptr->i_id, h, (size_t)0);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4063 }
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4064 ret = pst_finish_cleanup_holder(h, ret);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4065 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4066 return ret;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4067 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4068
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4069
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4070 /** find the actual data from an indirection i_id and send it to the destination
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4071 * specified by the pst_holder.
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4072 *
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4073 * @param pf PST file structure
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4074 * @param i_id ID of the block to read
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4075 * @param h specifies the output destination (buffer, file, encoding)
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4076 * @param size number of bytes of data already sent to h
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4077 * @return updated size of the output
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4078 */
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
4079 static size_t pst_ff_compile_ID(pst_file *pf, uint64_t i_id, pst_holder *h, size_t size) {
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4080 size_t z, a;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4081 uint16_t count, y;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4082 char *buf3 = NULL;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4083 char *buf2 = NULL;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4084 char *b_ptr;
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4085 pst_block_hdr block_hdr;
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4086 pst_table3_rec table3_rec; //for type 3 (0x0101) blocks
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4087
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4088 DEBUG_ENT("pst_ff_compile_ID");
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
4089 a = pst_ff_getIDblock(pf, i_id, &buf3);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4090 if (!a) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4091 if (buf3) free(buf3);
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
4092 DEBUG_RET();
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4093 return 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4094 }
167
40e9de445038 improve consistency checking when fetching items from the pst file.
Carl Byington <carl@five-ten-sg.com>
parents: 164
diff changeset
4095 DEBUG_HEXDUMPC(buf3, a, 16);
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4096 memcpy(&block_hdr, buf3, sizeof(block_hdr));
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4097 LE16_CPU(block_hdr.index_offset);
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4098 LE16_CPU(block_hdr.type);
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4099 LE32_CPU(block_hdr.offset);
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
4100 DEBUG_INFO(("block header (index_offset=%#hx, type=%#hx, offset=%#x)\n", block_hdr.index_offset, block_hdr.type, block_hdr.offset));
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4101
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4102 count = block_hdr.type;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4103 b_ptr = buf3 + 8;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4104
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4105 // For indirect lookups through a table of i_ids, just recurse back into this
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4106 // function, letting it concatenate all the data together, and then return the
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4107 // total size of the data.
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4108 if (block_hdr.index_offset == (uint16_t)0x0201) { // Indirect lookup (depth 2).
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4109 for (y=0; y<count; y++) {
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4110 b_ptr += pst_decode_type3(pf, &table3_rec, b_ptr);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4111 size = pst_ff_compile_ID(pf, table3_rec.id, h, size);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4112 }
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4113 free(buf3);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4114 DEBUG_RET();
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4115 return size;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4116 }
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4117
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4118 if (block_hdr.index_offset != (uint16_t)0x0101) { //type 3
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4119 DEBUG_WARN(("WARNING: not a type 0x0101 buffer, Treating as normal buffer\n"));
188
d588dafd03e8 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 186
diff changeset
4120 if (pf->encryption) (void)pst_decrypt(i_id, buf3, a, pf->encryption);
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4121 size = pst_append_holder(h, size, &buf3, a);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4122 free(buf3);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4123 DEBUG_RET();
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4124 return size;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4125 }
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4126
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4127 for (y=0; y<count; y++) {
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4128 b_ptr += pst_decode_type3(pf, &table3_rec, b_ptr);
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4129 z = pst_ff_getIDblock_dec(pf, table3_rec.id, &buf2);
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4130 if (!z) {
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4131 DEBUG_WARN(("call to getIDblock returned zero %i\n", z));
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4132 if (buf2) free(buf2);
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4133 free(buf3);
52
034641c26ab9 code cleanup
carl
parents: 51
diff changeset
4134 DEBUG_RET();
50
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4135 return z;
fb3818370dd6 more fixes for 64 bit format
carl
parents: 49
diff changeset
4136 }
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4137 size = pst_append_holder(h, size, &buf2, z);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4138 }
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4139
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4140 free(buf3);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4141 if (buf2) free(buf2);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4142 DEBUG_RET();
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4143 return size;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4144 }
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4145
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4146
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4147 /** append (buf,z) data to the output destination (h,size)
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4148 *
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4149 * @param h specifies the output destination (buffer, file, encoding)
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4150 * @param size number of bytes of data already sent to h
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4151 * @param buf reference to a pointer to the buffer to be appended to the destination
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4152 * @param z number of bytes in buf
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4153 * @return updated size of the output, buffer pointer possibly reallocated
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4154 */
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4155 static size_t pst_append_holder(pst_holder *h, size_t size, char **buf, size_t z) {
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4156 char *t;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4157 DEBUG_ENT("pst_append_holder");
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4158
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4159 // raw append to a buffer
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4160 if (h->buf) {
289
cc8ee701f190 pst_block_offset elements are unsigned; consistent usage of pst_malloc and pst_realloc
Carl Byington <carl@five-ten-sg.com>
parents: 287
diff changeset
4161 *(h->buf) = pst_realloc(*(h->buf), size+z+1);
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4162 DEBUG_INFO(("appending read data of size %i onto main buffer from pos %i\n", z, size));
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4163 memcpy(*(h->buf)+size, *buf, z);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4164
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4165 // base64 encoding to a file
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4166 } else if ((h->base64 == 1) && h->fp) {
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4167 //
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4168 if (h->base64_extra) {
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4169 // include any bytes left over from the last encoding
289
cc8ee701f190 pst_block_offset elements are unsigned; consistent usage of pst_malloc and pst_realloc
Carl Byington <carl@five-ten-sg.com>
parents: 287
diff changeset
4170 *buf = (char*)pst_realloc(*buf, z+h->base64_extra);
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4171 memmove(*buf+h->base64_extra, *buf, z);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4172 memcpy(*buf, h->base64_extra_chars, h->base64_extra);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4173 z += h->base64_extra;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4174 }
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4175
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4176 // find out how many bytes will be left over after this encoding and save them
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4177 h->base64_extra = z % 3;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4178 if (h->base64_extra) {
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4179 z -= h->base64_extra;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4180 memcpy(h->base64_extra_chars, *buf+z, h->base64_extra);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4181 }
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4182
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4183 // encode this chunk
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4184 t = pst_base64_encode_multiple(*buf, z, &h->base64_line_count);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4185 if (t) {
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4186 DEBUG_INFO(("writing %i bytes to file as base64 [%i]. Currently %i\n", z, strlen(t), size));
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4187 (void)pst_fwrite(t, (size_t)1, strlen(t), h->fp);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4188 free(t); // caught by valgrind
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4189 }
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4190
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4191 // raw append to a file
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4192 } else if (h->fp) {
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4193 DEBUG_INFO(("writing %i bytes to file. Currently %i\n", z, size));
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4194 (void)pst_fwrite(*buf, (size_t)1, z, h->fp);
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4195
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4196 // null output
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4197 } else {
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4198 // h-> does not specify any output
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4199 }
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4200 DEBUG_RET();
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4201 return size+z;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4202 }
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4203
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4204
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4205 /** finish cleanup for base64 encoding to a file with extra bytes left over
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4206 *
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4207 * @param h specifies the output destination (buffer, file, encoding)
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4208 * @param size number of bytes of data already sent to h
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4209 * @return updated size of the output
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4210 */
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4211 static size_t pst_finish_cleanup_holder(pst_holder *h, size_t size) {
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4212 char *t;
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4213 DEBUG_ENT("pst_finish_cleanup_holder");
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4214 if ((h->base64 == 1) && h->fp && h->base64_extra) {
94
997cf1373f9e fix base64 encoding that could create long lines
Carl Byington <carl@five-ten-sg.com>
parents: 93
diff changeset
4215 // need to encode any bytes left over
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4216 t = pst_base64_encode_multiple(h->base64_extra_chars, h->base64_extra, &h->base64_line_count);
94
997cf1373f9e fix base64 encoding that could create long lines
Carl Byington <carl@five-ten-sg.com>
parents: 93
diff changeset
4217 if (t) {
997cf1373f9e fix base64 encoding that could create long lines
Carl Byington <carl@five-ten-sg.com>
parents: 93
diff changeset
4218 (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
4219 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
4220 }
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4221 size += h->base64_extra;
94
997cf1373f9e fix base64 encoding that could create long lines
Carl Byington <carl@five-ten-sg.com>
parents: 93
diff changeset
4222 }
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4223 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4224 return size;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4225 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4226
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4227
328
c507af52515a add readpst -a option
Carl Byington <carl@five-ten-sg.com>
parents: 325
diff changeset
4228 /** compare strings case-insensitive.
c507af52515a add readpst -a option
Carl Byington <carl@five-ten-sg.com>
parents: 325
diff changeset
4229 * @return -1 if a < b, 0 if a==b, 1 if a > b
c507af52515a add readpst -a option
Carl Byington <carl@five-ten-sg.com>
parents: 325
diff changeset
4230 */
c507af52515a add readpst -a option
Carl Byington <carl@five-ten-sg.com>
parents: 325
diff changeset
4231 int pst_stricmp(char *a, char *b) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4232 while(*a != '\0' && *b != '\0' && toupper(*a)==toupper(*b)) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4233 a++; b++;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4234 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4235 if (toupper(*a) == toupper(*b))
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4236 return 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4237 else if (toupper(*a) < toupper(*b))
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4238 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4239 else
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4240 return 1;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4241 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4242
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4243
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
4244 static int pst_strincmp(char *a, char *b, size_t x) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4245 // compare upto x chars in string a and b case-insensitively
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4246 // returns -1 if a < b, 0 if a==b, 1 if a > b
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4247 size_t y = 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4248 while (*a != '\0' && *b != '\0' && y < x && toupper(*a)==toupper(*b)) {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4249 a++; b++; y++;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4250 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4251 // if we have reached the end of either string, or a and b still match
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4252 if (*a == '\0' || *b == '\0' || toupper(*a)==toupper(*b))
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4253 return 0;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4254 else if (toupper(*a) < toupper(*b))
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4255 return -1;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4256 else
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4257 return 1;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4258 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4259
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4260
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
4261 size_t pst_fwrite(const void* ptr, size_t size, size_t nmemb, FILE *stream) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4262 size_t r;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4263 if (ptr)
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4264 r = fwrite(ptr, size, nmemb, stream);
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4265 else {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4266 r = 0;
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
4267 DEBUG_ENT("pst_fwrite");
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4268 DEBUG_WARN(("An attempt to write a NULL Pointer was made\n"));
202
2f38c4ce606f remove readpstlog, switch to plain ascii debug log files
Carl Byington <carl@five-ten-sg.com>
parents: 201
diff changeset
4269 DEBUG_RET();
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4270 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4271 return r;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4272 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4273
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4274
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
4275 static char* pst_wide_to_single(char *wt, size_t size) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4276 // returns the first byte of each wide char. the size is the number of bytes in source
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4277 char *x, *y;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4278 DEBUG_ENT("pst_wide_to_single");
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
4279 x = pst_malloc((size/2)+1);
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4280 y = x;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4281 while (size != 0 && *wt != '\0') {
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4282 *y = *wt;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4283 wt+=2;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4284 size -= 2;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4285 y++;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4286 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4287 *y = '\0';
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4288 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4289 return x;
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4290 }
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
4291
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4292
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4293 char* pst_rfc2426_escape(char* str, char **buf, size_t* buflen) {
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4294 //static char* buf = NULL;
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4295 //static size_t buflen = 0;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4296 char *ret, *a, *b;
47
5fb8d997feed more fixes for 64 bit format
carl
parents: 46
diff changeset
4297 size_t x = 0;
5fb8d997feed more fixes for 64 bit format
carl
parents: 46
diff changeset
4298 int y, z;
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4299 if (!str) return NULL;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4300 DEBUG_ENT("rfc2426_escape");
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4301 // calculate space required to escape all the following characters
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4302 y = pst_chr_count(str, ',')
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4303 + pst_chr_count(str, '\\')
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4304 + pst_chr_count(str, ';')
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4305 + pst_chr_count(str, '\n');
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4306 z = pst_chr_count(str, '\r');
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4307 if (y == 0 && z == 0)
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4308 // there isn't any extra space required
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4309 ret = str;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4310 else {
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4311 x = strlen(str) + y - z + 1; // don't forget room for the NUL
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4312 if (x > *buflen) {
289
cc8ee701f190 pst_block_offset elements are unsigned; consistent usage of pst_malloc and pst_realloc
Carl Byington <carl@five-ten-sg.com>
parents: 287
diff changeset
4313 *buf = (char*)pst_realloc(*buf, x);
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4314 *buflen = x;
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4315 }
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4316 a = str;
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4317 b = *buf;
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4318 while (*a != '\0') {
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4319 switch (*a) {
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4320 case ',' :
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4321 case '\\':
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4322 case ';' :
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4323 *(b++) = '\\';
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4324 *b = *a;
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4325 break;
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4326 case '\n': // newlines are encoded as "\n"
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4327 *(b++) = '\\';
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4328 *b = 'n';
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4329 break;
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4330 case '\r': // skip cr
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4331 b--;
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4332 break;
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4333 default:
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4334 *b=*a;
48
f66078abed38 more fixes for 64 bit format
carl
parents: 47
diff changeset
4335 }
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4336 b++;
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4337 a++;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4338 }
191
4b498fd68464 add pst_attach_to_mem() back into the shared library interface.
Carl Byington <carl@five-ten-sg.com>
parents: 190
diff changeset
4339 *b = '\0'; // NUL-terminate the string (buf)
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4340 ret = *buf;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4341 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4342 DEBUG_RET();
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4343 return ret;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4344 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4345
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4346
176
ac6e22c8a9cf build separate libpst, libpst-libs, libpst-devel rpms.
Carl Byington <carl@five-ten-sg.com>
parents: 172
diff changeset
4347 static int pst_chr_count(char *str, char x) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4348 int r = 0;
46
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4349 while (*str) {
b2a7f2e0926a more fixes for 64 bit format
carl
parents: 45
diff changeset
4350 if (*str == x) r++;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4351 str++;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4352 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4353 return r;
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4354 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4355
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4356
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4357 char* pst_rfc2425_datetime_format(const FILETIME* ft, int buflen, char* result) {
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4358 struct tm stm;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4359 DEBUG_ENT("rfc2425_datetime_format");
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4360 pst_fileTimeToStructTM(ft, &stm);
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4361 if (strftime(result, buflen, "%Y-%m-%dT%H:%M:%SZ", &stm)==0) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4362 DEBUG_INFO(("Problem occured formatting date\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4363 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4364 DEBUG_RET();
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4365 return result;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4366 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4367
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4368
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4369 char* pst_rfc2445_datetime_format(const FILETIME* ft, int buflen, char* result) {
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4370 struct tm stm;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4371 DEBUG_ENT("rfc2445_datetime_format");
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4372 pst_fileTimeToStructTM(ft, &stm);
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4373 if (strftime(result, buflen, "%Y%m%dT%H%M%SZ", &stm)==0) {
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4374 DEBUG_INFO(("Problem occured formatting date\n"));
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4375 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4376 DEBUG_RET();
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4377 return result;
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4378 }
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4379
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 41
diff changeset
4380
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4381 char* pst_rfc2445_datetime_format_now(int buflen, char* result) {
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4382 struct tm stm;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4383 time_t t = time(NULL);
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4384 DEBUG_ENT("rfc2445_datetime_format_now");
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4385 gmtime_r(&t, &stm);
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4386 if (strftime(result, buflen, "%Y%m%dT%H%M%SZ", &stm)==0) {
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4387 DEBUG_INFO(("Problem occured formatting date\n"));
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4388 }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4389 DEBUG_RET();
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4390 return result;
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4391 }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4392
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4393
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
4394 /** Convert a code page integer into a string suitable for iconv()
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4395 *
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4396 * @param cp the code page integer used in the pst file
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4397 * @param[in] buflen length of the output buffer
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4398 * @param[out] result pointer to output buffer, must be at least 30 bytes
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4399 * @return pointer to a static buffer holding the string representation of the
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4400 * equivalent iconv character set
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4401 */
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4402 static const char* codepage(int cp, int buflen, char* result);
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4403 static const char* codepage(int cp, int buflen, char* result) {
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4404 switch (cp) {
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4405 case 932 : return "iso-2022-jp";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4406 case 936 : return "gb2313";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4407 case 950 : return "big5";
230
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4408 case 1200 : return "ucs-2le";
42b38d65f7e4 patches from Justin Greer
Carl Byington <carl@five-ten-sg.com>
parents: 215
diff changeset
4409 case 1201 : return "ucs-2be";
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4410 case 20127 : return "us-ascii";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4411 case 20269 : return "iso-6937";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4412 case 20865 : return "iso-8859-15";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4413 case 20866 : return "koi8-r";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4414 case 21866 : return "koi8-u";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4415 case 28591 : return "iso-8859-1";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4416 case 28592 : return "iso-8859-2";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4417 case 28595 : return "iso-8859-5";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4418 case 28596 : return "iso-8859-6";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4419 case 28597 : return "iso-8859-7";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4420 case 28598 : return "iso-8859-8";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4421 case 28599 : return "iso-8859-9";
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4422 case 28600 : return "iso-8859-10";
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4423 case 28601 : return "iso-8859-11";
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4424 case 28602 : return "iso-8859-12";
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4425 case 28603 : return "iso-8859-13";
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4426 case 28604 : return "iso-8859-14";
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4427 case 28605 : return "iso-8859-15";
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4428 case 28606 : return "iso-8859-16";
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4429 case 50220 : return "iso-2022-jp";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4430 case 50221 : return "csiso2022jp";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4431 case 51932 : return "euc-jp";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4432 case 51949 : return "euc-kr";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4433 case 65000 : return "utf-7";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4434 case 65001 : return "utf-8";
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4435 default :
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4436 snprintf(result, buflen, "windows-%d", cp);
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4437 return result;
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4438 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4439 return NULL;
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4440 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4441
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4442
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
4443 /** Get the default character set for this item. This is used to find
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
4444 * the charset for pst_string elements that are not already in utf8 encoding.
271
eafaf362779e fixup doxygen errors
Carl Byington <carl@five-ten-sg.com>
parents: 269
diff changeset
4445 *
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
4446 * @param item pointer to the mapi item of interest
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4447 * @param[in] buflen length of the output buffer
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4448 * @param[out] result pointer to output buffer, must be at least 30 bytes
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
4449 * @return default character set as a string useable by iconv()
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4450 */
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4451 const char* pst_default_charset(pst_item *item, int buflen, char* result) {
298
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4452 return (item->body_charset.str) ? item->body_charset.str :
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4453 (item->message_codepage) ? codepage(item->message_codepage, buflen, result) :
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4454 (item->internet_cpid) ? codepage(item->internet_cpid, buflen, result) :
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4455 (item->pf && item->pf->charset) ? item->pf->charset :
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4456 "iso-8859-1";
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4457 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4458
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4459
257
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4460 /** Convert str to rfc2231 encoding of str
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4461 *
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4462 * @param str pointer to the mapi string of interest
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4463 */
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4464 void pst_rfc2231(pst_string *str) {
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4465 int needs = 0;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4466 const int8_t *x = (int8_t *)str->str;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4467 while (*x) {
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4468 if (*x <= 32) needs++;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4469 x++;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4470 }
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4471 int n = strlen(str->str) + 2*needs + 15;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4472 char *buffer = pst_malloc(n);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4473 strcpy(buffer, "utf-8''");
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4474 x = (int8_t *)str->str;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4475 const uint8_t *y = (uint8_t *)str->str;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4476 uint8_t *z = (uint8_t *)buffer;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4477 z += strlen(buffer); // skip the utf8 prefix
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4478 while (*y) {
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4479 if (*x <= 32) {
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4480 *(z++) = (uint8_t)'%';
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4481 snprintf(z, 3, "%2x", *y);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4482 z += 2;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4483 }
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4484 else {
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4485 *(z++) = *y;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4486 }
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4487 x++;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4488 y++;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4489 }
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4490 *z = '\0';
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4491 free(str->str);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4492 str->str = buffer;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4493 }
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4494
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4495
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4496 /** Convert str to rfc2047 encoding of str, possibly enclosed in quotes if it contains spaces
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4497 *
271
eafaf362779e fixup doxygen errors
Carl Byington <carl@five-ten-sg.com>
parents: 269
diff changeset
4498 * @param item pointer to the containing mapi item
eafaf362779e fixup doxygen errors
Carl Byington <carl@five-ten-sg.com>
parents: 269
diff changeset
4499 * @param str pointer to the mapi string of interest
eafaf362779e fixup doxygen errors
Carl Byington <carl@five-ten-sg.com>
parents: 269
diff changeset
4500 * @param needs_quote true if strings containing spaces should be wrapped in quotes
257
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4501 */
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4502 void pst_rfc2047(pst_item *item, pst_string *str, int needs_quote) {
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4503 int has_space = 0;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4504 int needs_coding = 0;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4505 pst_convert_utf8(item, str);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4506 const int8_t *x = (int8_t *)str->str;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4507 while (*x) {
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4508 if (*x == 32) has_space = 1;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4509 if (*x < 32) needs_coding = 1;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4510 x++;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4511 }
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4512 if (needs_coding) {
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4513 char *enc = pst_base64_encode_single(str->str, strlen(str->str));
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4514 free(str->str);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4515 int n = strlen(enc) + 20;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4516 str->str = pst_malloc(n);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4517 snprintf(str->str, n, "=?utf-8?B?%s?=", enc);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4518 free(enc);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4519 }
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4520 else if (has_space && needs_quote) {
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4521 int n = strlen(str->str) + 10;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4522 char *buffer = pst_malloc(n);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4523 snprintf(buffer, n, "\"%s\"", str->str);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4524 free(str->str);
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4525 str->str = buffer;
c947b8812120 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames
Carl Byington <carl@five-ten-sg.com>
parents: 252
diff changeset
4526 }
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4527 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4528
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4529
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4530 /** Convert str to utf8 if possible; null strings are preserved.
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4531 *
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
4532 * @param item pointer to the containing mapi item
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4533 * @param str pointer to the mapi string of interest
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4534 */
193
cf3df962f1e5 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 191
diff changeset
4535 void pst_convert_utf8_null(pst_item *item, pst_string *str) {
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4536 if (!str->str) return;
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4537 pst_convert_utf8(item, str);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4538 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4539
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4540
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4541 /** Convert str to utf8 if possible; null strings are converted into empty strings.
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4542 *
190
e3a63888cdd4 add documentation for shared library interface
Carl Byington <carl@five-ten-sg.com>
parents: 188
diff changeset
4543 * @param item pointer to the containing mapi item
153
0b1766da9be8 use AM_ICONV for better portability of the library location.
Carl Byington <carl@five-ten-sg.com>
parents: 152
diff changeset
4544 * @param str pointer to the mapi string of interest
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4545 */
193
cf3df962f1e5 prep for fedora build
Carl Byington <carl@five-ten-sg.com>
parents: 191
diff changeset
4546 void pst_convert_utf8(pst_item *item, pst_string *str) {
298
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4547 DEBUG_ENT("pst_convert_utf8");
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4548 char buffer[30];
298
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4549 if (str->is_utf8) {
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4550 DEBUG_WARN(("Already utf8\n"));
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4551 DEBUG_RET();
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4552 return;
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4553 }
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4554 if (!str->str) {
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4555 str->str = strdup("");
298
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4556 DEBUG_WARN(("null to empty string\n"));
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4557 DEBUG_RET();
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4558 return;
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4559 }
211
94bde95d7e18 the shared library interface should now be thread safe
Carl Byington <carl@five-ten-sg.com>
parents: 204
diff changeset
4560 const char *charset = pst_default_charset(item, sizeof(buffer), buffer);
298
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4561 DEBUG_WARN(("default charset is %s\n", charset));
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4562 if (!strcasecmp("utf-8", charset)) {
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4563 DEBUG_RET();
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4564 return;
201464dd356e add default character set for items where the pst file does not specify a character set
Carl Byington <carl@five-ten-sg.com>
parents: 297
diff changeset
4565 }
182
b65e8d0a088a more cleanup on external names in the shared object file
Carl Byington <carl@five-ten-sg.com>
parents: 176
diff changeset
4566 pst_vbuf *newer = pst_vballoc(2);
172
6954d315aaa8 move version-info into main configure.in, and set it properly.
Carl Byington <carl@five-ten-sg.com>
parents: 171
diff changeset
4567 size_t rc = pst_vb_8bit2utf8(newer, str->str, strlen(str->str) + 1, charset);
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4568 if (rc == (size_t)-1) {
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4569 free(newer->b);
195
320cfcba8058 add python module interface to the shared library for easy scripting.
Carl Byington <carl@five-ten-sg.com>
parents: 193
diff changeset
4570 DEBUG_WARN(("Failed to convert %s to utf-8 - %s\n", charset, str->str));
151
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4571 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4572 else {
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4573 free(str->str);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4574 str->str = newer->b;
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4575 str->is_utf8 = 1;
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4576 }
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4577 free(newer);
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4578 DEBUG_RET();
cda7c812ec01 track character set individually for each mapi element
Carl Byington <carl@five-ten-sg.com>
parents: 150
diff changeset
4579 }
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4580
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4581
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4582 /** Decode raw recurrence data into a better structure.
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4583 * @param appt pointer to appointment structure
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4584 * @return pointer to decoded recurrence structure that must be free'd by the caller.
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4585 */
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4586 pst_recurrence* pst_convert_recurrence(pst_item_appointment* appt)
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4587 {
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4588 const int bias = 30 * 24 * 60; // minutes in 30 days
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4589 int m[4] = {3,4,4,5};
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4590 pst_recurrence *r = pst_malloc(sizeof(pst_recurrence));
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4591 memset(r, 0, sizeof(pst_recurrence));
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4592 size_t s = appt->recurrence_data.size;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4593 size_t i = 0;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4594 char* p = appt->recurrence_data.data;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4595 if (p) {
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4596 if (i+4 <= s) { r->signature = PST_LE_GET_UINT32(p+i); i += 4; }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4597 if (i <= s) { r->type = PST_LE_GET_UINT8(p+i) - 0x0a; i += 2; }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4598 if (i+4 <= s) { r->sub_type = PST_LE_GET_UINT32(p+i); i += 4; }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4599 if (r->sub_type <= 3) {
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4600 int n = m[r->sub_type]; // number of parms for this sub_type
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4601 int j = 0;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4602 for (j=0; j<n; j++) {
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4603 if (i+4 <= s) { *(&r->parm1 + j) = PST_LE_GET_UINT32(p+i); i += 4; }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4604 }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4605 }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4606 if (i <= s) { r->termination = PST_LE_GET_UINT8(p+i) - 0x21; i += 4; }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4607 if (i+4 <= s) { r->count = PST_LE_GET_UINT32(p+i); i += 4; }
201
3850a3b11745 fixes for parallel readpst
Carl Byington <carl@five-ten-sg.com>
parents: 199
diff changeset
4608 if (r->termination == 2) r->count = 0;
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4609 switch (r->type) {
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4610 case 0: // daily
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4611 if (r->sub_type == 0) {
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4612 // simple daily
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4613 r->interval = r->parm2 / (24 * 60); // was minutes between recurrences
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4614 }
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4615 else {
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4616 // daily every weekday, subset of weekly
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4617 r->interval = 1;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4618 r->bydaymask = r->parm4;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4619 }
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4620 break;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4621 case 1: // weekly
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4622 r->interval = r->parm2;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4623 r->bydaymask = r->parm4;
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4624 break;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4625 case 2: // monthly
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4626 r->interval = r->parm2;
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4627 if (r->sub_type == 2) {
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4628 // monthly on day d
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4629 r->dayofmonth = r->parm4;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4630 }
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4631 else {
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4632 // monthly on 2nd tuesday
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4633 r->bydaymask = r->parm4;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4634 r->position = r->parm5;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4635 }
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4636 break;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4637 case 3: // yearly
199
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4638 r->interval = 1;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4639 r->monthofyear = ((r->parm1 + bias/2) / bias) + 1;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4640 if (r->sub_type == 2) {
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4641 // yearly on day d of month m
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4642 r->dayofmonth = r->parm4;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4643 }
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4644 else {
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4645 // yearly on 2nd tuesday of month m
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4646 r->bydaymask = r->parm4;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4647 r->position = r->parm5;
e3a46f66332b more changes in recurrence decoding
Carl Byington <carl@five-ten-sg.com>
parents: 198
diff changeset
4648 }
198
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4649 break;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4650 default:
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4651 break;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4652 }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4653 }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4654 return r;
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4655 }
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4656
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4657
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4658 /** Free a recurrence structure.
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4659 * @param r input pointer to be freed
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4660 */
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4661 void pst_free_recurrence(pst_recurrence* r)
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4662 {
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4663 if (r) free(r);
7c60d6d1c681 decode more recurrence mapi elements
Carl Byington <carl@five-ten-sg.com>
parents: 195
diff changeset
4664 }