2 * Copyright (c) 2008 Christos Zoulas
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
15 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
16 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
18 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24 * POSSIBILITY OF SUCH DAMAGE.
29 FILE_RCSID("@(#)$File: readcdf.c,v 1.18 2009/05/06 20:48:22 christos Exp $")
41 #define NOTMIME(ms) (((ms)->flags & MAGIC_MIME) == 0)
44 cdf_file_property_info(struct magic_set
*ms
, const cdf_property_info_t
*info
,
51 const char *str
= "vnd.ms-office";
55 for (i
= 0; i
< count
; i
++) {
56 cdf_print_property_name(buf
, sizeof(buf
), info
[i
].pi_id
);
57 switch (info
[i
].pi_type
) {
59 if (NOTMIME(ms
) && file_printf(ms
, ", %s: %hd", buf
,
60 info
[i
].pi_s16
) == -1)
64 if (NOTMIME(ms
) && file_printf(ms
, ", %s: %d", buf
,
65 info
[i
].pi_s32
) == -1)
69 if (NOTMIME(ms
) && file_printf(ms
, ", %s: %u", buf
,
70 info
[i
].pi_u32
) == -1)
73 case CDF_LENGTH32_STRING
:
74 len
= info
[i
].pi_str
.s_len
;
76 s
= info
[i
].pi_str
.s_buf
;
80 for (j
= 0; j
< sizeof(vbuf
) && len
--;
84 if (isprint((unsigned char)*s
))
87 if (j
== sizeof(vbuf
))
91 if (file_printf(ms
, ", %s: %s",
95 } else if (info
[i
].pi_id
==
96 CDF_PROPERTY_NAME_OF_APPLICATION
) {
97 if (strstr(s
, "Word"))
99 else if (strstr(s
, "Excel"))
100 str
= "vnd.ms-excel";
101 else if (strstr(s
, "Powerpoint"))
102 str
= "vnd.ms-powerpoint";
109 if (tp
< 1000000000000000LL) {
111 cdf_print_elapsed_time(tbuf
,
113 if (NOTMIME(ms
) && file_printf(ms
,
114 ", %s: %s", buf
, tbuf
) == -1)
118 cdf_timestamp_to_timespec(&ts
, tp
);
119 c
= ctime(&ts
.tv_sec
);
120 if ((ec
= strchr(c
, '\n')) != NULL
)
123 if (NOTMIME(ms
) && file_printf(ms
,
124 ", %s: %s", buf
, c
) == -1)
136 if (file_printf(ms
, "application/%s", str
) == -1)
143 cdf_file_summary_info(struct magic_set
*ms
, const cdf_stream_t
*sst
)
145 cdf_summary_info_header_t si
;
146 cdf_property_info_t
*info
;
150 if (cdf_unpack_summary_info(sst
, &si
, &info
, &count
) == -1)
154 if (file_printf(ms
, "CDF V2 Document") == -1)
157 if (file_printf(ms
, ", %s Endian",
158 si
.si_byte_order
== 0xfffe ? "Little" : "Big") == -1)
162 if (file_printf(ms
, ", Os: Windows, Version %d.%d",
163 si
.si_os_version
& 0xff, si
.si_os_version
>> 8)
168 if (file_printf(ms
, ", Os: MacOS, Version %d.%d",
169 si
.si_os_version
>> 8, si
.si_os_version
& 0xff)
174 if (file_printf(ms
, ", Os %d, Version: %d.%d", si
.si_os
,
175 si
.si_os_version
& 0xff, si
.si_os_version
>> 8)
182 m
= cdf_file_property_info(ms
, info
, count
);
189 file_trycdf(struct magic_set
*ms
, int fd
, const unsigned char *buf
,
195 cdf_stream_t sst
, scn
;
198 const char *expn
= "";
203 if (ms
->flags
& MAGIC_APPLE
)
205 if (cdf_read_header(&info
, &h
) == -1)
211 if ((i
= cdf_read_sat(&info
, &h
, &sat
)) == -1) {
212 expn
= "Can't read SAT";
216 cdf_dump_sat("SAT", &sat
, CDF_SEC_SIZE(&h
));
219 if ((i
= cdf_read_ssat(&info
, &h
, &sat
, &ssat
)) == -1) {
220 expn
= "Can't read SSAT";
224 cdf_dump_sat("SSAT", &ssat
, CDF_SHORT_SEC_SIZE(&h
));
227 if ((i
= cdf_read_dir(&info
, &h
, &sat
, &dir
)) == -1) {
228 expn
= "Can't read directory";
232 if ((i
= cdf_read_short_stream(&info
, &h
, &sat
, &dir
, &sst
)) == -1) {
233 expn
= "Cannot read short stream";
237 cdf_dump_dir(&info
, &h
, &sat
, &ssat
, &sst
, &dir
);
240 if ((i
= cdf_read_summary_info(&info
, &h
, &sat
, &ssat
, &sst
, &dir
,
242 expn
= "Cannot read summary info";
246 cdf_dump_summary_info(&h
, &scn
);
248 if ((i
= cdf_file_summary_info(ms
, &scn
)) == -1)
249 expn
= "Can't expand summary_info";
261 if (file_printf(ms
, "CDF V2 Document") == -1)
264 if (file_printf(ms
, ", corrupt: %s", expn
) == -1)