]> wimlib.net Git - wimlib/blob - src/header.c
Remove link_dentry()
[wimlib] / src / header.c
1 /*
2  * header.c
3  *
4  * Read, write, or create a WIM header.
5  */
6
7 /*
8  * Copyright (C) 2010 Carl Thijssen
9  * Copyright (C) 2012 Eric Biggers
10  *
11  * This file is part of wimlib, a library for working with WIM files.
12  *
13  * wimlib is free software; you can redistribute it and/or modify it under the
14  * terms of the GNU General Public License as published by the Free
15  * Software Foundation; either version 3 of the License, or (at your option)
16  * any later version.
17  *
18  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
19  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20  * A PARTICULAR PURPOSE. See the GNU General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with wimlib; if not, see http://www.gnu.org/licenses/.
25  */
26
27 #include "wimlib_internal.h"
28 #include "io.h"
29
30 /* First 8 bytes in every WIM file. */
31 static const u8 wim_magic_chars[WIM_MAGIC_LEN] = {
32                         'M', 'S', 'W', 'I', 'M', '\0', '\0', '\0' };
33
34 /* Reads the header for a WIM file.  */
35 int read_header(FILE *fp, struct wim_header *hdr, int open_flags)
36 {
37         size_t bytes_read;
38         u8 buf[WIM_HEADER_DISK_SIZE];
39         size_t hdr_rem_size;
40         const u8 *p;
41
42         u32 hdr_size;
43         u32 wim_version;
44         u32 chunk_size;
45
46         DEBUG("Reading WIM header.");
47
48         bytes_read = fread(buf, 1, WIM_MAGIC_LEN, fp);
49
50         if (bytes_read != WIM_MAGIC_LEN)
51                 goto err;
52
53         /* Byte 8 */
54
55         if (memcmp(buf, wim_magic_chars, WIM_MAGIC_LEN) != 0) {
56                 ERROR("Invalid magic characters in WIM header");
57                 return WIMLIB_ERR_NOT_A_WIM_FILE;
58         }
59
60         bytes_read = fread(&hdr_size, 1, sizeof(u32), fp);
61         if (bytes_read != sizeof(u32))
62                 goto err;
63
64         hdr_size = le32_to_cpu(hdr_size);
65
66         /* Byte 12 */
67
68         if (hdr_size != WIM_HEADER_DISK_SIZE) {
69                 ERROR("Header is %u bytes (expected %u bytes)",
70                       hdr_size, WIM_HEADER_DISK_SIZE);
71                 return WIMLIB_ERR_INVALID_HEADER_SIZE;
72         }
73
74         /* Read the rest of the header into a buffer. */
75
76         hdr_rem_size = WIM_HEADER_DISK_SIZE - WIM_MAGIC_LEN - sizeof(u32);
77
78         bytes_read = fread(buf + WIM_MAGIC_LEN + sizeof(u32), 1,
79                            hdr_rem_size, fp);
80         if (bytes_read != hdr_rem_size)
81                 goto err;
82
83         p = get_u32(buf + WIM_MAGIC_LEN + sizeof(u32), &wim_version);
84
85         if (wim_version != WIM_VERSION) {
86                 ERROR("The WIM header says the WIM version is %u, but wimlib "
87                       "only knows about version %u",
88                       wim_version, WIM_VERSION);
89                 return WIMLIB_ERR_UNKNOWN_VERSION;
90         }
91
92         p = get_u32(p, &hdr->flags);
93         p = get_u32(p, &chunk_size);
94         if (chunk_size != WIM_CHUNK_SIZE &&
95             (hdr->flags & WIM_HDR_FLAG_COMPRESSION)) {
96                 ERROR("Unexpected chunk size of %u! Ask the author to "
97                       "implement support for other chunk sizes.",
98                       chunk_size);
99                 ERROR("(Or it might just be that the WIM header is invalid.)");
100                 return WIMLIB_ERR_INVALID_CHUNK_SIZE;
101         }
102
103         p = get_bytes(p, WIM_GID_LEN, hdr->guid);
104         p = get_u16(p, &hdr->part_number);
105         p = get_u16(p, &hdr->total_parts);
106
107         if (!(open_flags & WIMLIB_OPEN_FLAG_SPLIT_OK)
108             && (hdr->part_number != 1 || hdr->total_parts != 1))
109         {
110                 ERROR("This WIM is part %u of a %u-part WIM",
111                       hdr->part_number, hdr->total_parts);
112                 return WIMLIB_ERR_SPLIT_UNSUPPORTED;
113         }
114
115         p = get_u32(p, &hdr->image_count);
116
117         DEBUG("part_number = %u, total_parts = %u, image_count = %u",
118               hdr->part_number, hdr->total_parts, hdr->image_count);
119
120         /* Byte 48 */
121
122         p = get_resource_entry(p, &hdr->lookup_table_res_entry);
123         p = get_resource_entry(p, &hdr->xml_res_entry);
124         p = get_resource_entry(p, &hdr->boot_metadata_res_entry);
125
126         /* Byte 120 */
127
128         p = get_u32(p, &hdr->boot_idx);
129
130         /* Byte 124 */
131
132         p = get_resource_entry(p, &hdr->integrity);
133
134         /* Byte 148 */
135
136         /* 60 bytes of unused stuff. */
137
138         /* Byte 208 */
139
140         return 0;
141
142 err:
143         if (feof(fp))
144                 ERROR("Unexpected EOF while reading WIM header");
145         else
146                 ERROR_WITH_ERRNO("Error reading WIM header");
147         return WIMLIB_ERR_READ;
148 }
149
150 /*
151  * Writes the header for a WIM file.
152  *
153  * @hdr:        A pointer to a struct wim_header structure that describes the header.
154  * @out:        The FILE* for the output file, positioned at the appropriate
155  *              place (the beginning of the file).
156  * @return:     Zero on success, nonzero on failure.
157  */
158 int write_header(const struct wim_header *hdr, FILE *out_fp)
159 {
160         u8 buf[WIM_HEADER_DISK_SIZE];
161         u8 *p;
162         DEBUG("Writing WIM header.");
163
164         p = put_bytes(buf, WIM_MAGIC_LEN, wim_magic_chars);
165         p = put_u32(p, WIM_HEADER_DISK_SIZE);
166         p = put_u32(p, WIM_VERSION);
167         p = put_u32(p, hdr->flags);
168         p = put_u32(p, (hdr->flags & WIM_HDR_FLAG_COMPRESSION) ?
169                                 WIM_CHUNK_SIZE : 0);
170         /* byte 24 */
171
172         p = put_bytes(p, WIM_GID_LEN, hdr->guid);
173         p = put_u16(p, hdr->part_number);
174
175         /* byte 40 */
176
177         p = put_u16(p, hdr->total_parts);
178         p = put_u32(p, hdr->image_count);
179         p = put_resource_entry(p, &hdr->lookup_table_res_entry);
180         p = put_resource_entry(p, &hdr->xml_res_entry);
181         p = put_resource_entry(p, &hdr->boot_metadata_res_entry);
182         p = put_u32(p, hdr->boot_idx);
183         p = put_resource_entry(p, &hdr->integrity);
184         memset(p, 0, WIM_UNUSED_LEN);
185         if (fwrite(buf, 1, sizeof(buf), out_fp) != sizeof(buf)) {
186                 ERROR_WITH_ERRNO("Failed to write WIM header");
187                 return WIMLIB_ERR_WRITE;
188         }
189         DEBUG("Done writing WIM header");
190         return 0;
191 }
192
193 /*
194  * Initializes the header for a WIM file.
195  */
196 int init_header(struct wim_header *hdr, int ctype)
197 {
198         memset(hdr, 0, sizeof(struct wim_header));
199         switch (ctype) {
200         case WIM_COMPRESSION_TYPE_NONE:
201                 hdr->flags = 0;
202                 break;
203         case WIM_COMPRESSION_TYPE_LZX:
204                 hdr->flags = WIM_HDR_FLAG_COMPRESSION |
205                              WIM_HDR_FLAG_COMPRESS_LZX;
206                 break;
207         case WIM_COMPRESSION_TYPE_XPRESS:
208                 hdr->flags = WIM_HDR_FLAG_COMPRESSION |
209                              WIM_HDR_FLAG_COMPRESS_XPRESS;
210                 break;
211         default:
212                 ERROR("Invalid compression type specified (%d)", ctype);
213                 return WIMLIB_ERR_INVALID_COMPRESSION_TYPE;
214         }
215         hdr->total_parts = 1;
216         hdr->part_number = 1;
217         randomize_byte_array(hdr->guid, sizeof(hdr->guid));
218         return 0;
219 }
220
221 struct hdr_flag {
222         u32 flag;
223         const char *name;
224 };
225 struct hdr_flag hdr_flags[] = {
226         {WIM_HDR_FLAG_RESERVED,         "RESERVED"},
227         {WIM_HDR_FLAG_COMPRESSION,      "COMPRESSION"},
228         {WIM_HDR_FLAG_READONLY,         "READONLY"},
229         {WIM_HDR_FLAG_SPANNED,          "SPANNED"},
230         {WIM_HDR_FLAG_RESOURCE_ONLY,    "RESOURCE_ONLY"},
231         {WIM_HDR_FLAG_METADATA_ONLY,    "METADATA_ONLY"},
232         {WIM_HDR_FLAG_WRITE_IN_PROGRESS,"WRITE_IN_PROGRESS"},
233         {WIM_HDR_FLAG_RP_FIX,           "RP_FIX"},
234         {WIM_HDR_FLAG_COMPRESS_RESERVED,"COMPRESS_RESERVED"},
235         {WIM_HDR_FLAG_COMPRESS_LZX,     "COMPRESS_LZX"},
236         {WIM_HDR_FLAG_COMPRESS_XPRESS,  "COMPRESS_XPRESS"},
237 };
238
239 /* Prints information from the header of the WIM file associated with @w. */
240 WIMLIBAPI void wimlib_print_header(const WIMStruct *w)
241 {
242         const struct wim_header *hdr = &w->hdr;
243         uint i;
244
245         printf("Magic Characters            = MSWIM\\000\\000\\000\n");
246         printf("Header Size                 = %u\n", WIM_HEADER_DISK_SIZE);
247         printf("Version                     = 0x%x\n", WIM_VERSION);
248
249         printf("Flags                       = 0x%x\n", hdr->flags);
250         for (i = 0; i < ARRAY_LEN(hdr_flags); i++)
251                 if (hdr_flags[i].flag & hdr->flags)
252                         printf("    WIM_HDR_FLAG_%s is set\n", hdr_flags[i].name);
253
254         printf("Chunk Size                  = %u\n", WIM_CHUNK_SIZE);
255         fputs ("GUID                        = ", stdout);
256         print_byte_field(hdr->guid, WIM_GID_LEN);
257         putchar('\n');
258         printf("Part Number                 = %hu\n", w->hdr.part_number);
259         printf("Total Parts                 = %hu\n", w->hdr.total_parts);
260         printf("Image Count                 = %u\n", hdr->image_count);
261         printf("Lookup Table Size           = %"PRIu64"\n",
262                                 (u64)hdr->lookup_table_res_entry.size);
263         printf("Lookup Table Flags          = 0x%hhx\n",
264                                 hdr->lookup_table_res_entry.flags);
265         printf("Lookup Table Offset         = %"PRIu64"\n",
266                                 hdr->lookup_table_res_entry.offset);
267         printf("Lookup Table Original_size  = %"PRIu64"\n",
268                                 hdr->lookup_table_res_entry.original_size);
269         printf("XML Data Size               = %"PRIu64"\n",
270                                 (u64)hdr->xml_res_entry.size);
271         printf("XML Data Flags              = 0x%hhx\n",
272                                 hdr->xml_res_entry.flags);
273         printf("XML Data Offset             = %"PRIu64"\n",
274                                 hdr->xml_res_entry.offset);
275         printf("XML Data Original Size      = %"PRIu64"\n",
276                                 hdr->xml_res_entry.original_size);
277         printf("Boot Metadata Size          = %"PRIu64"\n",
278                                 (u64)hdr->boot_metadata_res_entry.size);
279         printf("Boot Metadata Flags         = 0x%hhx\n",
280                                 hdr->boot_metadata_res_entry.flags);
281         printf("Boot Metadata Offset        = %"PRIu64"\n",
282                                 hdr->boot_metadata_res_entry.offset);
283         printf("Boot Metadata Original Size = %"PRIu64"\n",
284                                 hdr->boot_metadata_res_entry.original_size);
285         printf("Boot Index                  = %u\n", hdr->boot_idx);
286         printf("Integrity Size              = %"PRIu64"\n",
287                                         (u64)hdr->integrity.size);
288         printf("Integrity Flags             = 0x%hhx\n",
289                                         hdr->integrity.flags);
290         printf("Integrity Offset            = %"PRIu64"\n",
291                                         hdr->integrity.offset);
292         printf("Integrity Original_size     = %"PRIu64"\n",
293                                         hdr->integrity.original_size);
294 }