]> wimlib.net Git - wimlib/blob - src/lookup_table.c
2ccb0ef81ed9d2d2c2952f61995f2480111338c4
[wimlib] / src / lookup_table.c
1 /*
2  * lookup_table.c
3  *
4  * Lookup table, implemented as a hash table, that maps dentries to file
5  * resources.
6  */
7
8 /*
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 Lesser General Public License as published by the Free
15  * Software Foundation; either version 2.1 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 Lesser General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU Lesser General Public License
24  * along with wimlib; if not, see http://www.gnu.org/licenses/.
25  */
26
27 #include "wimlib_internal.h"
28 #include "lookup_table.h"
29 #include "io.h"
30 #include <errno.h>
31
32 struct lookup_table *new_lookup_table(size_t capacity)
33 {
34         struct lookup_table *table;
35         struct hlist_head *array;
36
37         table = MALLOC(sizeof(struct lookup_table));
38         if (!table)
39                 goto err;
40         array = CALLOC(capacity, sizeof(array[0]));
41         if (!array) {
42                 FREE(table);
43                 goto err;
44         }
45         table->num_entries = 0;
46         table->capacity = capacity;
47         table->array = array;
48         return table;
49 err:
50         ERROR("Failed to allocate memory for lookup table with capacity %zu",
51               capacity);
52         return NULL;
53 }
54
55 struct lookup_table_entry *new_lookup_table_entry()
56 {
57         struct lookup_table_entry *lte;
58         
59         lte = CALLOC(1, sizeof(struct lookup_table_entry));
60         if (!lte) {
61                 ERROR("Out of memory (tried to allocate %zu bytes for "
62                       "lookup table entry)",
63                       sizeof(struct lookup_table_entry));
64                 return NULL;
65         }
66
67         lte->part_number  = 1;
68         lte->refcnt       = 1;
69         INIT_LIST_HEAD(&lte->lte_group_list);
70         return lte;
71 }
72
73 void free_lookup_table_entry(struct lookup_table_entry *lte)
74 {
75         if (lte) {
76                 if (lte->staging_list.next)
77                         list_del(&lte->staging_list);
78                 FREE(lte->file_on_disk);
79                 FREE(lte);
80         }
81 }
82
83 static int do_free_lookup_table_entry(struct lookup_table_entry *entry,
84                                       void *ignore)
85 {
86         free_lookup_table_entry(entry);
87         return 0;
88 }
89
90
91 void free_lookup_table(struct lookup_table *table)
92 {
93         DEBUG("Freeing lookup table");
94         if (table) {
95                 if (table->array) {
96                         for_lookup_table_entry(table,
97                                                do_free_lookup_table_entry,
98                                                NULL);
99                         FREE(table->array);
100                 }
101                 FREE(table);
102         }
103 }
104
105 /*
106  * Inserts an entry into the lookup table.
107  *
108  * @table:      A pointer to the lookup table.
109  * @entry:      A pointer to the entry to insert.
110  */
111 void lookup_table_insert(struct lookup_table *table, 
112                          struct lookup_table_entry *lte)
113 {
114         size_t i = lte->hash_short % table->capacity;
115         hlist_add_head(&lte->hash_list, &table->array[i]);
116
117         /* XXX Make the table grow when too many entries have been inserted. */
118         table->num_entries++;
119 }
120
121
122
123 /* Decrements the reference count for the lookup table entry @lte.  If its
124  * reference count reaches 0, it is unlinked from the lookup table.  If,
125  * furthermore, the entry has no opened file descriptors associated with it, the
126  * entry is freed.  */
127 struct lookup_table_entry *
128 lte_decrement_refcnt(struct lookup_table_entry *lte, struct lookup_table *table)
129 {
130         if (lte) {
131                 wimlib_assert(lte->refcnt);
132                 if (--lte->refcnt == 0) {
133                         lookup_table_unlink(table, lte);
134                         if (lte->num_opened_fds == 0) {
135                                 free_lookup_table_entry(lte);
136                                 lte = NULL;
137                         }
138                 }
139         }
140         return lte;
141 }
142
143 /* 
144  * Calls a function on all the entries in the lookup table.  Stop early and
145  * return nonzero if any call to the function returns nonzero.
146  */
147 int for_lookup_table_entry(struct lookup_table *table, 
148                            int (*visitor)(struct lookup_table_entry *, void *),
149                            void *arg)
150 {
151         struct lookup_table_entry *lte;
152         struct hlist_node *pos, *tmp;
153         int ret;
154
155         for (size_t i = 0; i < table->capacity; i++) {
156                 hlist_for_each_entry_safe(lte, pos, tmp, &table->array[i],
157                                           hash_list)
158                 {
159                         ret = visitor(lte, arg);
160                         if (ret != 0)
161                                 return ret;
162                 }
163         }
164         return 0;
165 }
166
167
168 /*
169  * Reads the lookup table from a WIM file.
170  *
171  * @fp:                 The FILE* for the WIM file.
172  * @offset:             The offset of the lookup table resource.
173  * @size:               The size of the lookup table resource.
174  * @lookup_table_ret:   A pointer to a struct lookup_table structure into which the
175  *                              lookup table will be returned.
176  * @return:             True on success, false on failure.
177  */
178 int read_lookup_table(FILE *fp, u64 offset, u64 size, 
179                       struct lookup_table **table_ret)
180 {
181         size_t num_entries;
182         u8     buf[WIM_LOOKUP_TABLE_ENTRY_DISK_SIZE];
183         int    ret;
184         struct lookup_table *table;
185         const u8 *p;
186         struct lookup_table_entry *cur_entry;
187
188         DEBUG("Reading lookup table: offset %"PRIu64", size %"PRIu64"",
189               offset, size);
190
191         if (fseeko(fp, offset, SEEK_SET) != 0) {
192                 ERROR_WITH_ERRNO("Failed to seek to byte %"PRIu64" to read "
193                                  "lookup table", offset);
194                 return WIMLIB_ERR_READ;
195         }
196
197         num_entries = size / WIM_LOOKUP_TABLE_ENTRY_DISK_SIZE;
198         table = new_lookup_table(num_entries * 2 + 1);
199         if (!table)
200                 return WIMLIB_ERR_NOMEM;
201
202         while (num_entries--) {
203                 if (fread(buf, 1, sizeof(buf), fp) != sizeof(buf)) {
204                         if (feof(fp)) {
205                                 ERROR("Unexpected EOF in WIM lookup table!");
206                         } else {
207                                 ERROR_WITH_ERRNO("Error reading WIM lookup "
208                                                  "table");
209                         }
210                         ret = WIMLIB_ERR_READ;
211                         goto out;
212                 }
213                 cur_entry = new_lookup_table_entry();
214                 if (!cur_entry) {
215                         ret = WIMLIB_ERR_NOMEM;
216                         goto out;
217                 }
218                          
219                 p = get_resource_entry(buf, &cur_entry->resource_entry);
220                 p = get_u16(p, &cur_entry->part_number);
221                 p = get_u32(p, &cur_entry->refcnt);
222                 p = get_bytes(p, WIM_HASH_SIZE, cur_entry->hash);
223                 lookup_table_insert(table, cur_entry);
224         }
225         DEBUG("Done reading lookup table.");
226         *table_ret = table;
227         return 0;
228 out:
229         free_lookup_table(table);
230         return ret;
231 }
232
233
234 /* 
235  * Writes a lookup table entry to the output file.
236  */
237 int write_lookup_table_entry(struct lookup_table_entry *lte, void *__out)
238 {
239         FILE *out;
240         u8 buf[WIM_LOOKUP_TABLE_ENTRY_DISK_SIZE];
241         u8 *p;
242
243         out = __out;
244
245         /* do not write lookup table entries for empty files */
246         if (lte->output_resource_entry.original_size == 0)
247                 return 0;
248
249         /* Don't write entries that have not had file resources or metadata
250          * resources written for them. */
251         if (lte->out_refcnt == 0)
252                 return 0;
253
254         if (lte->output_resource_entry.flags & WIM_RESHDR_FLAG_METADATA)
255                 DEBUG("Writing metadata entry at %lu (orig size = %zu)",
256                       ftello(out), lte->output_resource_entry.original_size);
257
258         p = put_resource_entry(buf, &lte->output_resource_entry);
259         p = put_u16(p, lte->part_number);
260         p = put_u32(p, lte->out_refcnt);
261         p = put_bytes(p, WIM_HASH_SIZE, lte->hash);
262         if (fwrite(buf, 1, sizeof(buf), out) != sizeof(buf)) {
263                 ERROR_WITH_ERRNO("Failed to write lookup table entry");
264                 return WIMLIB_ERR_WRITE;
265         }
266         return 0;
267 }
268
269
270
271 int zero_out_refcnts(struct lookup_table_entry *entry, void *ignore)
272 {
273         entry->out_refcnt = 0;
274         return 0;
275 }
276
277 int print_lookup_table_entry(struct lookup_table_entry *lte, void *ignore)
278 {
279         printf("Offset            = %"PRIu64" bytes\n", 
280                lte->resource_entry.offset);
281         printf("Size              = %"PRIu64" bytes\n", 
282                (u64)lte->resource_entry.size);
283         printf("Original size     = %"PRIu64" bytes\n", 
284                lte->resource_entry.original_size);
285         printf("Part Number       = %hu\n", lte->part_number);
286         printf("Reference Count   = %u\n", lte->refcnt);
287         printf("Hash              = ");
288         print_hash(lte->hash);
289         putchar('\n');
290         printf("Flags             = ");
291         u8 flags = lte->resource_entry.flags;
292         if (flags & WIM_RESHDR_FLAG_COMPRESSED)
293                 fputs("WIM_RESHDR_FLAG_COMPRESSED, ", stdout);
294         if (flags & WIM_RESHDR_FLAG_FREE)
295                 fputs("WIM_RESHDR_FLAG_FREE, ", stdout);
296         if (flags & WIM_RESHDR_FLAG_METADATA)
297                 fputs("WIM_RESHDR_FLAG_METADATA, ", stdout);
298         if (flags & WIM_RESHDR_FLAG_SPANNED)
299                 fputs("WIM_RESHDR_FLAG_SPANNED, ", stdout);
300         putchar('\n');
301         if (lte->file_on_disk && !lte->is_symlink)
302                 printf("File on Disk      = `%s'\n", lte->file_on_disk);
303         putchar('\n');
304         return 0;
305 }
306
307 /*
308  * Prints the lookup table of a WIM file. 
309  */
310 WIMLIBAPI void wimlib_print_lookup_table(WIMStruct *w)
311 {
312         for_lookup_table_entry(w->lookup_table, 
313                                print_lookup_table_entry,
314                                NULL);
315 }
316
317 /* 
318  * Looks up an entry in the lookup table.
319  */
320 struct lookup_table_entry *
321 __lookup_resource(const struct lookup_table *table, const u8 hash[])
322 {
323         size_t i;
324         struct lookup_table_entry *lte;
325         struct hlist_node *pos;
326
327         i = *(size_t*)hash % table->capacity;
328         hlist_for_each_entry(lte, pos, &table->array[i], hash_list)
329                 if (memcmp(hash, lte->hash, WIM_HASH_SIZE) == 0)
330                         return lte;
331         return NULL;
332 }
333
334 /* 
335  * Finds the dentry, lookup table entry, and stream index for a WIM file stream,
336  * given a path name.
337  *
338  * This is only for pre-resolved dentries.
339  */
340 int lookup_resource(WIMStruct *w, const char *path,
341                     int lookup_flags,
342                     struct dentry **dentry_ret,
343                     struct lookup_table_entry **lte_ret,
344                     unsigned *stream_idx_ret)
345 {
346         struct dentry *dentry;
347         struct lookup_table_entry *lte;
348         unsigned stream_idx;
349         dentry = get_dentry(w, path);
350         if (!dentry)
351                 return -ENOENT;
352
353         wimlib_assert(dentry->resolved);
354
355         lte = dentry->lte;
356         if (!(lookup_flags & LOOKUP_FLAG_DIRECTORY_OK)
357               && dentry_is_directory(dentry))
358                 return -EISDIR;
359         stream_idx = 0;
360         if (lookup_flags & LOOKUP_FLAG_ADS_OK) {
361                 const char *stream_name = path_stream_name(path);
362                 if (stream_name) {
363                         size_t stream_name_len = strlen(stream_name);
364                         for (u16 i = 0; i < dentry->num_ads; i++) {
365                                 if (ads_entry_has_name(&dentry->ads_entries[i],
366                                                        stream_name,
367                                                        stream_name_len))
368                                 {
369                                         stream_idx = i + 1;
370                                         lte = dentry->ads_entries[i].lte;
371                                         goto out;
372                                 }
373                         }
374                         return -ENOENT;
375                 }
376         }
377 out:
378         if (dentry_ret)
379                 *dentry_ret = dentry;
380         if (lte_ret)
381                 *lte_ret = lte;
382         if (stream_idx_ret)
383                 *stream_idx_ret = stream_idx;
384         return 0;
385 }
386
387 /* Resolve a dentry's lookup table entries 
388  *
389  * This replaces the SHA1 hash fields (which are used to lookup an entry in the
390  * lookup table) with pointers directly to the lookup table entries.  A circular
391  * linked list of streams sharing the same lookup table entry is created.
392  *
393  * This function always succeeds; unresolved lookup table entries are given a
394  * NULL pointer.
395  */
396 int dentry_resolve_ltes(struct dentry *dentry, void *__table)
397 {
398         struct lookup_table *table = __table;
399         struct lookup_table_entry *lte;
400
401         wimlib_assert(!dentry->resolved);
402
403         /* Resolve the default file stream */
404         lte = __lookup_resource(table, dentry->hash);
405         if (lte)
406                 list_add(&dentry->lte_group_list.list, &lte->lte_group_list);
407         else
408                 INIT_LIST_HEAD(&dentry->lte_group_list.list);
409         dentry->lte = lte;
410         dentry->lte_group_list.type = STREAM_TYPE_NORMAL;
411         dentry->resolved = true;
412
413         /* Resolve the alternate data streams */
414         if (dentry->ads_entries_status != ADS_ENTRIES_USER) {
415                 for (u16 i = 0; i < dentry->num_ads; i++) {
416                         struct ads_entry *cur_entry = &dentry->ads_entries[i];
417
418                         lte = __lookup_resource(table, cur_entry->hash);
419                         if (lte)
420                                 list_add(&cur_entry->lte_group_list.list,
421                                          &lte->lte_group_list);
422                         else
423                                 INIT_LIST_HEAD(&cur_entry->lte_group_list.list);
424                         cur_entry->lte = lte;
425                         cur_entry->lte_group_list.type = STREAM_TYPE_ADS;
426                 }
427         }
428         return 0;
429 }