]> wimlib.net Git - wimlib/blob - src/header.c
Variable chunk size support (currently XPRESS only)
[wimlib] / src / header.c
1 /*
2  * header.c
3  *
4  * Read, write, or create a WIM header.
5  */
6
7 /*
8  * Copyright (C) 2012, 2013 Eric Biggers
9  *
10  * This file is part of wimlib, a library for working with WIM files.
11  *
12  * wimlib is free software; you can redistribute it and/or modify it under the
13  * terms of the GNU General Public License as published by the Free
14  * Software Foundation; either version 3 of the License, or (at your option)
15  * any later version.
16  *
17  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
18  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19  * A PARTICULAR PURPOSE. See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with wimlib; if not, see http://www.gnu.org/licenses/.
24  */
25
26 #ifdef HAVE_CONFIG_H
27 #  include "config.h"
28 #endif
29
30 #include "wimlib.h"
31 #include "wimlib/assert.h"
32 #include "wimlib/endianness.h"
33 #include "wimlib/error.h"
34 #include "wimlib/file_io.h"
35 #include "wimlib/header.h"
36 #include "wimlib/util.h"
37 #include "wimlib/wim.h"
38
39 #include <limits.h>
40 #include <string.h>
41 #include <unistd.h>
42 #ifdef HAVE_ALLOCA_H
43 #  include <alloca.h>
44 #else
45 #  include <stdlib.h>
46 #endif
47
48 /*
49  * Reads the header from a WIM file.
50  *
51  * @filename
52  *      Name of the WIM file (for error/debug messages only), or NULL if reading
53  *      directly from file descriptor.
54  * @in_fd
55  *      File descriptor, positioned at offset 0, to read the header from.
56  * @hdr
57  *      Structure to read the header into.
58  *
59  * Return values:
60  *      WIMLIB_ERR_SUCCESS (0)
61  *      WIMLIB_ERR_IMAGE_COUNT
62  *      WIMLIB_ERR_INVALID_CHUNK_SIZE
63  *      WIMLIB_ERR_INVALID_PART_NUMBER
64  *      WIMLIB_ERR_NOT_A_WIM_FILE
65  *      WIMLIB_ERR_READ
66  *      WIMLIB_ERR_UNEXPECTED_END_OF_FILE
67  *      WIMLIB_ERR_UNKNOWN_VERSION
68  */
69 int
70 read_wim_header(const tchar *filename, struct filedes *in_fd,
71                 struct wim_header *hdr)
72 {
73         struct wim_header_disk disk_hdr _aligned_attribute(8);
74         int ret;
75         tchar *pipe_str;
76
77         wimlib_assert(in_fd->offset == 0);
78
79         if (!filename) {
80                 pipe_str = alloca(40);
81                 tsprintf(pipe_str, T("[fd %d]"), in_fd->fd);
82                 filename = pipe_str;
83         }
84
85         BUILD_BUG_ON(sizeof(struct wim_header_disk) != WIM_HEADER_DISK_SIZE);
86
87         DEBUG("Reading WIM header from \"%"TS"\"", filename);
88
89         ret = full_read(in_fd, &disk_hdr, sizeof(disk_hdr));
90         if (ret)
91                 goto read_error;
92
93         if (disk_hdr.magic != WIM_MAGIC) {
94                 if (disk_hdr.magic == PWM_MAGIC) {
95                         /* Pipable WIM:  Use header at end instead, unless
96                          * actually reading from a pipe.  */
97                         if (!in_fd->is_pipe) {
98                                 lseek(in_fd->fd, -WIM_HEADER_DISK_SIZE, SEEK_END);
99                                 ret = full_read(in_fd, &disk_hdr, sizeof(disk_hdr));
100                                 if (ret)
101                                         goto read_error;
102                         }
103                 } else {
104                         ERROR("\"%"TS"\": Invalid magic characters in header", filename);
105                         return WIMLIB_ERR_NOT_A_WIM_FILE;
106                 }
107         }
108         hdr->magic = disk_hdr.magic;
109
110         if (le32_to_cpu(disk_hdr.hdr_size) != sizeof(struct wim_header_disk)) {
111                 ERROR("\"%"TS"\": Header size is invalid (%u bytes)",
112                       filename, le32_to_cpu(disk_hdr.hdr_size));
113                 return WIMLIB_ERR_INVALID_HEADER;
114         }
115
116         if (le32_to_cpu(disk_hdr.wim_version) != WIM_VERSION) {
117                 ERROR("\"%"TS"\": The WIM header says the WIM version is %u, "
118                       "but wimlib only knows about version %u",
119                       filename, le32_to_cpu(disk_hdr.wim_version), WIM_VERSION);
120                 if (le32_to_cpu(disk_hdr.wim_flags) & WIM_HDR_FLAG_COMPRESS_LZMS) {
121                         ERROR("\"%"TS"\": This WIM uses LZMS compression, "
122                               "which is not supported by wimlib.", filename);
123                 }
124                 return WIMLIB_ERR_UNKNOWN_VERSION;
125         }
126
127         hdr->flags = le32_to_cpu(disk_hdr.wim_flags);
128
129         hdr->chunk_size = le32_to_cpu(disk_hdr.chunk_size);
130
131         memcpy(hdr->guid, disk_hdr.guid, WIM_GID_LEN);
132
133         hdr->part_number = le16_to_cpu(disk_hdr.part_number);
134         hdr->total_parts = le16_to_cpu(disk_hdr.total_parts);
135
136         if (hdr->total_parts == 0 || hdr->part_number == 0 ||
137             hdr->part_number > hdr->total_parts)
138         {
139                 ERROR("\"%"TS"\": Invalid WIM part number: %hu of %hu",
140                       filename, hdr->part_number, hdr->total_parts);
141                 return WIMLIB_ERR_INVALID_PART_NUMBER;
142         }
143
144         hdr->image_count = le32_to_cpu(disk_hdr.image_count);
145
146         DEBUG("part_number = %u, total_parts = %u, image_count = %u",
147               hdr->part_number, hdr->total_parts, hdr->image_count);
148
149         if (hdr->image_count >= INT_MAX) {
150                 ERROR("\"%"TS"\": Invalid image count (%u)",
151                       filename, hdr->image_count);
152                 return WIMLIB_ERR_IMAGE_COUNT;
153         }
154
155         get_resource_entry(&disk_hdr.lookup_table_res_entry, &hdr->lookup_table_res_entry);
156         get_resource_entry(&disk_hdr.xml_data_res_entry, &hdr->xml_res_entry);
157         get_resource_entry(&disk_hdr.boot_metadata_res_entry, &hdr->boot_metadata_res_entry);
158         hdr->boot_idx = le32_to_cpu(disk_hdr.boot_idx);
159         get_resource_entry(&disk_hdr.integrity_table_res_entry, &hdr->integrity);
160         return 0;
161
162 read_error:
163         ERROR_WITH_ERRNO("\"%"TS"\": Error reading header", filename);
164         return ret;
165 }
166
167 /* Writes the header for a WIM file at the specified offset.  If the offset
168  * specified is the current one, the position is advanced by the size of the
169  * header.  */
170 int
171 write_wim_header_at_offset(const struct wim_header *hdr, struct filedes *out_fd,
172                            off_t offset)
173 {
174         struct wim_header_disk disk_hdr _aligned_attribute(8);
175         int ret;
176
177         DEBUG("Writing %sWIM header at offset %"PRIu64,
178               ((hdr->magic == PWM_MAGIC) ? "pipable " : ""),
179               offset);
180
181         disk_hdr.magic = hdr->magic;
182         disk_hdr.hdr_size = cpu_to_le32(sizeof(struct wim_header_disk));
183         disk_hdr.wim_version = cpu_to_le32(WIM_VERSION);
184         disk_hdr.wim_flags = cpu_to_le32(hdr->flags);
185         if (hdr->flags & WIM_HDR_FLAG_COMPRESSION)
186                 disk_hdr.chunk_size = cpu_to_le32(hdr->chunk_size);
187         else
188                 disk_hdr.chunk_size = 0;
189         memcpy(disk_hdr.guid, hdr->guid, WIM_GID_LEN);
190
191         disk_hdr.part_number = cpu_to_le16(hdr->part_number);
192         disk_hdr.total_parts = cpu_to_le16(hdr->total_parts);
193         disk_hdr.image_count = cpu_to_le32(hdr->image_count);
194         put_resource_entry(&hdr->lookup_table_res_entry, &disk_hdr.lookup_table_res_entry);
195         put_resource_entry(&hdr->xml_res_entry, &disk_hdr.xml_data_res_entry);
196         put_resource_entry(&hdr->boot_metadata_res_entry, &disk_hdr.boot_metadata_res_entry);
197         disk_hdr.boot_idx = cpu_to_le32(hdr->boot_idx);
198         put_resource_entry(&hdr->integrity, &disk_hdr.integrity_table_res_entry);
199         memset(disk_hdr.unused, 0, sizeof(disk_hdr.unused));
200
201         if (offset == out_fd->offset)
202                 ret = full_write(out_fd, &disk_hdr, sizeof(disk_hdr));
203         else
204                 ret = full_pwrite(out_fd, &disk_hdr, sizeof(disk_hdr), offset);
205         if (ret)
206                 ERROR_WITH_ERRNO("Failed to write WIM header");
207         return ret;
208 }
209
210 /* Writes the header for a WIM file at the output file descriptor's current
211  * offset.  */
212 int
213 write_wim_header(const struct wim_header *hdr, struct filedes *out_fd)
214 {
215         return write_wim_header_at_offset(hdr, out_fd, out_fd->offset);
216 }
217
218 /* Update just the wim_flags field. */
219 int
220 write_wim_header_flags(u32 hdr_flags, struct filedes *out_fd)
221 {
222         le32 flags = cpu_to_le32(hdr_flags);
223
224         return full_pwrite(out_fd, &flags, sizeof(flags),
225                            offsetof(struct wim_header_disk, wim_flags));
226 }
227
228 u32
229 get_wim_hdr_cflags(int ctype)
230 {
231         switch (ctype) {
232         case WIMLIB_COMPRESSION_TYPE_NONE:
233                 return 0;
234         case WIMLIB_COMPRESSION_TYPE_LZX:
235                 return WIM_HDR_FLAG_COMPRESSION | WIM_HDR_FLAG_COMPRESS_LZX;
236         case WIMLIB_COMPRESSION_TYPE_XPRESS:
237                 return WIM_HDR_FLAG_COMPRESSION | WIM_HDR_FLAG_COMPRESS_XPRESS;
238         case WIMLIB_COMPRESSION_TYPE_INVALID:
239                 break;
240         }
241         return (u32)~0U;
242 }
243
244 /*
245  * Initializes the header for a WIM file.
246  */
247 int
248 init_wim_header(struct wim_header *hdr, int ctype, u32 chunk_size)
249 {
250         memset(hdr, 0, sizeof(struct wim_header));
251         hdr->flags = get_wim_hdr_cflags(ctype);
252         if (hdr->flags == (u32)~0U) {
253                 ERROR("Invalid compression type specified (%d)", ctype);
254                 return WIMLIB_ERR_INVALID_COMPRESSION_TYPE;
255         }
256         hdr->chunk_size = chunk_size;
257         hdr->total_parts = 1;
258         hdr->part_number = 1;
259         randomize_byte_array(hdr->guid, sizeof(hdr->guid));
260         hdr->magic = WIM_MAGIC;
261         return 0;
262 }
263
264 struct hdr_flag {
265         u32 flag;
266         const char *name;
267 };
268 struct hdr_flag hdr_flags[] = {
269         {WIM_HDR_FLAG_RESERVED,         "RESERVED"},
270         {WIM_HDR_FLAG_COMPRESSION,      "COMPRESSION"},
271         {WIM_HDR_FLAG_READONLY,         "READONLY"},
272         {WIM_HDR_FLAG_SPANNED,          "SPANNED"},
273         {WIM_HDR_FLAG_RESOURCE_ONLY,    "RESOURCE_ONLY"},
274         {WIM_HDR_FLAG_METADATA_ONLY,    "METADATA_ONLY"},
275         {WIM_HDR_FLAG_WRITE_IN_PROGRESS,"WRITE_IN_PROGRESS"},
276         {WIM_HDR_FLAG_RP_FIX,           "RP_FIX"},
277         {WIM_HDR_FLAG_COMPRESS_RESERVED,"COMPRESS_RESERVED"},
278         {WIM_HDR_FLAG_COMPRESS_LZX,     "COMPRESS_LZX"},
279         {WIM_HDR_FLAG_COMPRESS_XPRESS,  "COMPRESS_XPRESS"},
280 };
281
282 /* API function documented in wimlib.h  */
283 WIMLIBAPI void
284 wimlib_print_header(const WIMStruct *wim)
285 {
286         const struct wim_header *hdr = &wim->hdr;
287
288         tprintf(T("Magic Characters            = MSWIM\\000\\000\\000\n"));
289         tprintf(T("Header Size                 = %u\n"), WIM_HEADER_DISK_SIZE);
290         tprintf(T("Version                     = 0x%x\n"), WIM_VERSION);
291
292         tprintf(T("Flags                       = 0x%x\n"), hdr->flags);
293         for (size_t i = 0; i < ARRAY_LEN(hdr_flags); i++)
294                 if (hdr_flags[i].flag & hdr->flags)
295                         tprintf(T("    WIM_HDR_FLAG_%s is set\n"), hdr_flags[i].name);
296
297         tprintf(T("Chunk Size                  = %u\n"), wim->hdr.chunk_size);
298         tfputs (T("GUID                        = "), stdout);
299         print_byte_field(hdr->guid, WIM_GID_LEN, stdout);
300         tputchar(T('\n'));
301         tprintf(T("Part Number                 = %hu\n"), wim->hdr.part_number);
302         tprintf(T("Total Parts                 = %hu\n"), wim->hdr.total_parts);
303         tprintf(T("Image Count                 = %u\n"), hdr->image_count);
304         tprintf(T("Lookup Table Size           = %"PRIu64"\n"),
305                                 (u64)hdr->lookup_table_res_entry.size);
306         tprintf(T("Lookup Table Flags          = 0x%hhx\n"),
307                                 (u8)hdr->lookup_table_res_entry.flags);
308         tprintf(T("Lookup Table Offset         = %"PRIu64"\n"),
309                                 hdr->lookup_table_res_entry.offset);
310         tprintf(T("Lookup Table Original_size  = %"PRIu64"\n"),
311                                 hdr->lookup_table_res_entry.original_size);
312         tprintf(T("XML Data Size               = %"PRIu64"\n"),
313                                 (u64)hdr->xml_res_entry.size);
314         tprintf(T("XML Data Flags              = 0x%hhx\n"),
315                                 (u8)hdr->xml_res_entry.flags);
316         tprintf(T("XML Data Offset             = %"PRIu64"\n"),
317                                 hdr->xml_res_entry.offset);
318         tprintf(T("XML Data Original Size      = %"PRIu64"\n"),
319                                 hdr->xml_res_entry.original_size);
320         tprintf(T("Boot Metadata Size          = %"PRIu64"\n"),
321                                 (u64)hdr->boot_metadata_res_entry.size);
322         tprintf(T("Boot Metadata Flags         = 0x%hhx\n"),
323                                 (u8)hdr->boot_metadata_res_entry.flags);
324         tprintf(T("Boot Metadata Offset        = %"PRIu64"\n"),
325                                 hdr->boot_metadata_res_entry.offset);
326         tprintf(T("Boot Metadata Original Size = %"PRIu64"\n"),
327                                 hdr->boot_metadata_res_entry.original_size);
328         tprintf(T("Boot Index                  = %u\n"), hdr->boot_idx);
329         tprintf(T("Integrity Size              = %"PRIu64"\n"),
330                                 (u64)hdr->integrity.size);
331         tprintf(T("Integrity Flags             = 0x%hhx\n"),
332                                 (u8)hdr->integrity.flags);
333         tprintf(T("Integrity Offset            = %"PRIu64"\n"),
334                                 hdr->integrity.offset);
335         tprintf(T("Integrity Original_size     = %"PRIu64"\n"),
336                                 hdr->integrity.original_size);
337 }