]> wimlib.net Git - wimlib/blob - src/lookup_table.c
4cae97ce0cbdc7a69b1e7e66a22dbd8bf1bb42dc
[wimlib] / src / lookup_table.c
1 /*
2  * lookup_table.c
3  *
4  * Lookup table, implemented as a hash table, that maps SHA1 message digests to
5  * data streams; plus code to read and write the corresponding on-disk data.
6  */
7
8 /*
9  * Copyright (C) 2012, 2013 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 #ifdef HAVE_CONFIG_H
28 #  include "config.h"
29 #endif
30
31 #include "wimlib/assert.h"
32 #include "wimlib/endianness.h"
33 #include "wimlib/error.h"
34 #include "wimlib/lookup_table.h"
35 #include "wimlib/metadata.h"
36 #include "wimlib/ntfs_3g.h"
37 #include "wimlib/resource.h"
38 #include "wimlib/util.h"
39 #include "wimlib/write.h"
40
41 #include <stdlib.h>
42 #include <string.h>
43 #include <unistd.h> /* for unlink()  */
44
45 /* WIM lookup table:
46  *
47  * This is a logical mapping from SHA1 message digests to the data streams
48  * contained in a WIM.
49  *
50  * Here it is implemented as a hash table.
51  *
52  * Note: Everything will break horribly if there is a SHA1 collision.
53  */
54 struct wim_lookup_table {
55         struct hlist_head *array;
56         size_t num_entries;
57         size_t capacity;
58 };
59
60 struct wim_lookup_table *
61 new_lookup_table(size_t capacity)
62 {
63         struct wim_lookup_table *table;
64         struct hlist_head *array;
65
66         table = MALLOC(sizeof(struct wim_lookup_table));
67         if (table == NULL)
68                 goto oom;
69
70         array = CALLOC(capacity, sizeof(array[0]));
71         if (array == NULL) {
72                 FREE(table);
73                 goto oom;
74         }
75
76         table->num_entries = 0;
77         table->capacity = capacity;
78         table->array = array;
79         return table;
80
81 oom:
82         ERROR("Failed to allocate memory for lookup table "
83               "with capacity %zu", capacity);
84         return NULL;
85 }
86
87 static int
88 do_free_lookup_table_entry(struct wim_lookup_table_entry *entry, void *ignore)
89 {
90         free_lookup_table_entry(entry);
91         return 0;
92 }
93
94 void
95 free_lookup_table(struct wim_lookup_table *table)
96 {
97         DEBUG("Freeing lookup table.");
98         if (table == NULL)
99                 return;
100
101         if (table->array) {
102                 for_lookup_table_entry(table,
103                                        do_free_lookup_table_entry,
104                                        NULL);
105                 FREE(table->array);
106         }
107         FREE(table);
108 }
109
110 struct wim_lookup_table_entry *
111 new_lookup_table_entry(void)
112 {
113         struct wim_lookup_table_entry *lte;
114
115         lte = CALLOC(1, sizeof(struct wim_lookup_table_entry));
116         if (lte == NULL)
117                 return NULL;
118
119         lte->refcnt = 1;
120
121         /* lte->resource_location = RESOURCE_NONEXISTENT  */
122         BUILD_BUG_ON(RESOURCE_NONEXISTENT != 0);
123
124         return lte;
125 }
126
127 struct wim_lookup_table_entry *
128 clone_lookup_table_entry(const struct wim_lookup_table_entry *old)
129 {
130         struct wim_lookup_table_entry *new;
131
132         new = memdup(old, sizeof(struct wim_lookup_table_entry));
133         if (new == NULL)
134                 return NULL;
135
136         new->extracted_file = NULL;
137         switch (new->resource_location) {
138         case RESOURCE_IN_WIM:
139                 list_add(&new->rspec_node, &new->rspec->stream_list);
140                 break;
141
142         case RESOURCE_IN_FILE_ON_DISK:
143 #ifdef __WIN32__
144         case RESOURCE_WIN32_ENCRYPTED:
145 #endif
146 #ifdef WITH_FUSE
147         case RESOURCE_IN_STAGING_FILE:
148                 BUILD_BUG_ON((void*)&old->file_on_disk !=
149                              (void*)&old->staging_file_name);
150 #endif
151                 new->file_on_disk = TSTRDUP(old->file_on_disk);
152                 if (new->file_on_disk == NULL)
153                         goto out_free;
154                 break;
155         case RESOURCE_IN_ATTACHED_BUFFER:
156                 new->attached_buffer = memdup(old->attached_buffer, old->size);
157                 if (new->attached_buffer == NULL)
158                         goto out_free;
159                 break;
160 #ifdef WITH_NTFS_3G
161         case RESOURCE_IN_NTFS_VOLUME:
162                 if (old->ntfs_loc) {
163                         struct ntfs_location *loc;
164                         loc = memdup(old->ntfs_loc, sizeof(struct ntfs_location));
165                         if (loc == NULL)
166                                 goto out_free;
167                         loc->path = NULL;
168                         loc->stream_name = NULL;
169                         new->ntfs_loc = loc;
170                         loc->path = STRDUP(old->ntfs_loc->path);
171                         if (loc->path == NULL)
172                                 goto out_free;
173                         if (loc->stream_name_nchars != 0) {
174                                 loc->stream_name = memdup(old->ntfs_loc->stream_name,
175                                                           loc->stream_name_nchars * 2);
176                                 if (loc->stream_name == NULL)
177                                         goto out_free;
178                         }
179                 }
180                 break;
181 #endif
182         default:
183                 break;
184         }
185         return new;
186
187 out_free:
188         free_lookup_table_entry(new);
189         return NULL;
190 }
191
192 void
193 free_lookup_table_entry(struct wim_lookup_table_entry *lte)
194 {
195         if (lte) {
196                 switch (lte->resource_location) {
197                 case RESOURCE_IN_WIM:
198                         list_del(&lte->rspec_node);
199                         if (list_empty(&lte->rspec->stream_list))
200                                 FREE(lte->rspec);
201                         break;
202                 case RESOURCE_IN_FILE_ON_DISK:
203         #ifdef __WIN32__
204                 case RESOURCE_WIN32_ENCRYPTED:
205         #endif
206         #ifdef WITH_FUSE
207                 case RESOURCE_IN_STAGING_FILE:
208                         BUILD_BUG_ON((void*)&lte->file_on_disk !=
209                                      (void*)&lte->staging_file_name);
210         #endif
211                 case RESOURCE_IN_ATTACHED_BUFFER:
212                         BUILD_BUG_ON((void*)&lte->file_on_disk !=
213                                      (void*)&lte->attached_buffer);
214                         FREE(lte->file_on_disk);
215                         break;
216 #ifdef WITH_NTFS_3G
217                 case RESOURCE_IN_NTFS_VOLUME:
218                         if (lte->ntfs_loc) {
219                                 FREE(lte->ntfs_loc->path);
220                                 FREE(lte->ntfs_loc->stream_name);
221                                 FREE(lte->ntfs_loc);
222                         }
223                         break;
224 #endif
225                 default:
226                         break;
227                 }
228                 FREE(lte);
229         }
230 }
231
232 /* Decrements the reference count for the lookup table entry @lte.  If its
233  * reference count reaches 0, it is unlinked from the lookup table.  If,
234  * furthermore, the entry has no opened file descriptors associated with it, the
235  * entry is freed.  */
236 void
237 lte_decrement_refcnt(struct wim_lookup_table_entry *lte,
238                      struct wim_lookup_table *table)
239 {
240         wimlib_assert(lte->refcnt != 0);
241
242         if (--lte->refcnt == 0) {
243                 if (lte->unhashed) {
244                         list_del(&lte->unhashed_list);
245                 #ifdef WITH_FUSE
246                         /* If the stream has been extracted to a staging file
247                          * for a FUSE mount, unlink the staging file.  (Note
248                          * that there still may be open file descriptors to it.)
249                          * */
250                         if (lte->resource_location == RESOURCE_IN_STAGING_FILE)
251                                 unlink(lte->staging_file_name);
252                 #endif
253                 } else {
254                         lookup_table_unlink(table, lte);
255                 }
256
257                 /* If FUSE mounts are enabled, we don't actually free the entry
258                  * until the last file descriptor has been closed by
259                  * lte_decrement_num_opened_fds().  */
260 #ifdef WITH_FUSE
261                 if (lte->num_opened_fds == 0)
262 #endif
263                         free_lookup_table_entry(lte);
264         }
265 }
266
267 #ifdef WITH_FUSE
268 void
269 lte_decrement_num_opened_fds(struct wim_lookup_table_entry *lte)
270 {
271         wimlib_assert(lte->num_opened_fds != 0);
272
273         if (--lte->num_opened_fds == 0 && lte->refcnt == 0)
274                 free_lookup_table_entry(lte);
275 }
276 #endif
277
278 static void
279 lookup_table_insert_raw(struct wim_lookup_table *table,
280                         struct wim_lookup_table_entry *lte)
281 {
282         size_t i = lte->hash_short % table->capacity;
283
284         hlist_add_head(&lte->hash_list, &table->array[i]);
285 }
286
287 static void
288 enlarge_lookup_table(struct wim_lookup_table *table)
289 {
290         size_t old_capacity, new_capacity;
291         struct hlist_head *old_array, *new_array;
292         struct wim_lookup_table_entry *lte;
293         struct hlist_node *cur, *tmp;
294         size_t i;
295
296         old_capacity = table->capacity;
297         new_capacity = old_capacity * 2;
298         new_array = CALLOC(new_capacity, sizeof(struct hlist_head));
299         if (new_array == NULL)
300                 return;
301         old_array = table->array;
302         table->array = new_array;
303         table->capacity = new_capacity;
304
305         for (i = 0; i < old_capacity; i++) {
306                 hlist_for_each_entry_safe(lte, cur, tmp, &old_array[i], hash_list) {
307                         hlist_del(&lte->hash_list);
308                         lookup_table_insert_raw(table, lte);
309                 }
310         }
311         FREE(old_array);
312 }
313
314 /* Inserts an entry into the lookup table.  */
315 void
316 lookup_table_insert(struct wim_lookup_table *table,
317                     struct wim_lookup_table_entry *lte)
318 {
319         lookup_table_insert_raw(table, lte);
320         if (++table->num_entries > table->capacity)
321                 enlarge_lookup_table(table);
322 }
323
324 /* Unlinks a lookup table entry from the table; does not free it.  */
325 void
326 lookup_table_unlink(struct wim_lookup_table *table,
327                     struct wim_lookup_table_entry *lte)
328 {
329         wimlib_assert(!lte->unhashed);
330         wimlib_assert(table->num_entries != 0);
331
332         hlist_del(&lte->hash_list);
333         table->num_entries--;
334 }
335
336 /* Given a SHA1 message digest, return the corresponding entry in the WIM's
337  * lookup table, or NULL if there is none.  */
338 struct wim_lookup_table_entry *
339 lookup_stream(const struct wim_lookup_table *table, const u8 hash[])
340 {
341         size_t i;
342         struct wim_lookup_table_entry *lte;
343         struct hlist_node *pos;
344
345         i = *(size_t*)hash % table->capacity;
346         hlist_for_each_entry(lte, pos, &table->array[i], hash_list)
347                 if (hashes_equal(hash, lte->hash))
348                         return lte;
349         return NULL;
350 }
351
352 /* Calls a function on all the entries in the WIM lookup table.  Stop early and
353  * return nonzero if any call to the function returns nonzero. */
354 int
355 for_lookup_table_entry(struct wim_lookup_table *table,
356                        int (*visitor)(struct wim_lookup_table_entry *, void *),
357                        void *arg)
358 {
359         struct wim_lookup_table_entry *lte;
360         struct hlist_node *pos, *tmp;
361         int ret;
362
363         for (size_t i = 0; i < table->capacity; i++) {
364                 hlist_for_each_entry_safe(lte, pos, tmp, &table->array[i],
365                                           hash_list)
366                 {
367                         ret = visitor(lte, arg);
368                         if (ret)
369                                 return ret;
370                 }
371         }
372         return 0;
373 }
374
375 /* qsort() callback that sorts streams (represented by `struct
376  * wim_lookup_table_entry's) into an order optimized for reading.
377  *
378  * Sorting is done primarily by resource location, then secondarily by a
379  * per-resource location order.  For example, resources in WIM files are sorted
380  * primarily by part number, then secondarily by offset, as to implement optimal
381  * reading of either a standalone or split WIM.  */
382 static int
383 cmp_streams_by_sequential_order(const void *p1, const void *p2)
384 {
385         const struct wim_lookup_table_entry *lte1, *lte2;
386         int v;
387         WIMStruct *wim1, *wim2;
388
389         lte1 = *(const struct wim_lookup_table_entry**)p1;
390         lte2 = *(const struct wim_lookup_table_entry**)p2;
391
392         v = (int)lte1->resource_location - (int)lte2->resource_location;
393
394         /* Different resource locations?  */
395         if (v)
396                 return v;
397
398         switch (lte1->resource_location) {
399         case RESOURCE_IN_WIM:
400                 wim1 = lte1->rspec->wim;
401                 wim2 = lte2->rspec->wim;
402
403                 /* Different (possibly split) WIMs?  */
404                 if (wim1 != wim2) {
405                         v = memcmp(wim1->hdr.guid, wim2->hdr.guid, WIM_GID_LEN);
406                         if (v)
407                                 return v;
408                 }
409
410                 /* Different part numbers in the same WIM?  */
411                 v = (int)wim1->hdr.part_number - (int)wim2->hdr.part_number;
412                 if (v)
413                         return v;
414
415                 if (lte1->rspec->offset_in_wim != lte2->rspec->offset_in_wim)
416                         return cmp_u64(lte1->rspec->offset_in_wim,
417                                        lte2->rspec->offset_in_wim);
418
419                 return cmp_u64(lte1->offset_in_res, lte2->offset_in_res);
420
421         case RESOURCE_IN_FILE_ON_DISK:
422 #ifdef WITH_FUSE
423         case RESOURCE_IN_STAGING_FILE:
424 #endif
425 #ifdef __WIN32__
426         case RESOURCE_WIN32_ENCRYPTED:
427 #endif
428                 /* Compare files by path: just a heuristic that will place files
429                  * in the same directory next to each other.  */
430                 return tstrcmp(lte1->file_on_disk, lte2->file_on_disk);
431 #ifdef WITH_NTFS_3G
432         case RESOURCE_IN_NTFS_VOLUME:
433                 return tstrcmp(lte1->ntfs_loc->path, lte2->ntfs_loc->path);
434 #endif
435         default:
436                 /* No additional sorting order defined for this resource
437                  * location (e.g. RESOURCE_IN_ATTACHED_BUFFER); simply compare
438                  * everything equal to each other.  */
439                 return 0;
440         }
441 }
442
443 int
444 sort_stream_list(struct list_head *stream_list,
445                  size_t list_head_offset,
446                  int (*compar)(const void *, const void*))
447 {
448         struct list_head *cur;
449         struct wim_lookup_table_entry **array;
450         size_t i;
451         size_t array_size;
452         size_t num_streams = 0;
453
454         list_for_each(cur, stream_list)
455                 num_streams++;
456
457         if (num_streams <= 1)
458                 return 0;
459
460         array_size = num_streams * sizeof(array[0]);
461         array = MALLOC(array_size);
462         if (array == NULL)
463                 return WIMLIB_ERR_NOMEM;
464
465         cur = stream_list->next;
466         for (i = 0; i < num_streams; i++) {
467                 array[i] = (struct wim_lookup_table_entry*)((u8*)cur -
468                                                             list_head_offset);
469                 cur = cur->next;
470         }
471
472         qsort(array, num_streams, sizeof(array[0]), compar);
473
474         INIT_LIST_HEAD(stream_list);
475         for (i = 0; i < num_streams; i++) {
476                 list_add_tail((struct list_head*)
477                                ((u8*)array[i] + list_head_offset),
478                               stream_list);
479         }
480         FREE(array);
481         return 0;
482 }
483
484 /* Sort the specified list of streams in an order optimized for reading.  */
485 int
486 sort_stream_list_by_sequential_order(struct list_head *stream_list,
487                                      size_t list_head_offset)
488 {
489         return sort_stream_list(stream_list, list_head_offset,
490                                 cmp_streams_by_sequential_order);
491 }
492
493
494 static int
495 add_lte_to_array(struct wim_lookup_table_entry *lte,
496                  void *_pp)
497 {
498         struct wim_lookup_table_entry ***pp = _pp;
499         *(*pp)++ = lte;
500         return 0;
501 }
502
503 /* Iterate through the lookup table entries, but first sort them by stream
504  * offset in the WIM.  Caution: this is intended to be used when the stream
505  * offset field has actually been set. */
506 int
507 for_lookup_table_entry_pos_sorted(struct wim_lookup_table *table,
508                                   int (*visitor)(struct wim_lookup_table_entry *,
509                                                  void *),
510                                   void *arg)
511 {
512         struct wim_lookup_table_entry **lte_array, **p;
513         size_t num_streams = table->num_entries;
514         int ret;
515
516         lte_array = MALLOC(num_streams * sizeof(lte_array[0]));
517         if (!lte_array)
518                 return WIMLIB_ERR_NOMEM;
519         p = lte_array;
520         for_lookup_table_entry(table, add_lte_to_array, &p);
521
522         wimlib_assert(p == lte_array + num_streams);
523
524         qsort(lte_array, num_streams, sizeof(lte_array[0]),
525               cmp_streams_by_sequential_order);
526         ret = 0;
527         for (size_t i = 0; i < num_streams; i++) {
528                 ret = visitor(lte_array[i], arg);
529                 if (ret)
530                         break;
531         }
532         FREE(lte_array);
533         return ret;
534 }
535
536 /* On-disk format of a WIM lookup table entry (stream entry). */
537 struct wim_lookup_table_entry_disk {
538         /* Size, offset, and flags of the stream.  */
539         struct wim_reshdr_disk reshdr;
540
541         /* Which part of the split WIM this stream is in; indexed from 1. */
542         le16 part_number;
543
544         /* Reference count of this stream over all WIM images. */
545         le32 refcnt;
546
547         /* SHA1 message digest of the uncompressed data of this stream, or
548          * optionally all zeroes if this stream is of zero length. */
549         u8 hash[SHA1_HASH_SIZE];
550 } _packed_attribute;
551
552 #define WIM_LOOKUP_TABLE_ENTRY_DISK_SIZE 50
553
554 /* Validate the size and location of a WIM resource.  */
555 static int
556 validate_resource(const struct wim_resource_spec *rspec)
557 {
558         struct wim_lookup_table_entry *lte;
559         u64 cur_offset;
560
561         /* Verify that calculating the offset of the end of the resource doesn't
562          * overflow.  */
563         if (rspec->offset_in_wim + rspec->size_in_wim < rspec->size_in_wim)
564                 goto invalid;
565
566         /* Verify that each stream in the resource has a valid offset and size,
567          * and that no streams overlap, and that the streams were added in order
568          * of increasing offset.  */
569         cur_offset = 0;
570         list_for_each_entry(lte, &rspec->stream_list, rspec_node) {
571                 if (lte->offset_in_res + lte->size < lte->size ||
572                     lte->offset_in_res + lte->size > rspec->uncompressed_size ||
573                     lte->offset_in_res < cur_offset)
574                         goto invalid;
575
576                 cur_offset = lte->offset_in_res + lte->size;
577         }
578         return 0;
579
580 invalid:
581
582         ERROR("Invalid resource entry!");
583         return WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
584 }
585
586 /*
587  * Reads the lookup table from a WIM file.  Each entry specifies a stream that
588  * the WIM file contains, along with its location and SHA1 message digest.
589  *
590  * Saves lookup table entries for non-metadata streams in a hash table, and
591  * saves the metadata entry for each image in a special per-image location (the
592  * image_metadata array).
593  *
594  * Return values:
595  *      WIMLIB_ERR_SUCCESS (0)
596  *      WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY
597  *      WIMLIB_ERR_RESOURCE_NOT_FOUND
598  *
599  *      Or an error code caused by failure to read the lookup table into memory.
600  */
601 int
602 read_wim_lookup_table(WIMStruct *wim)
603 {
604         int ret;
605         size_t i;
606         size_t num_entries;
607         struct wim_lookup_table *table;
608         struct wim_lookup_table_entry *cur_entry, *duplicate_entry;
609         struct wim_resource_spec *cur_rspec;
610         void *buf;
611         bool back_to_back_pack;
612
613         DEBUG("Reading lookup table.");
614
615         /* Sanity check: lookup table entries are 50 bytes each.  */
616         BUILD_BUG_ON(sizeof(struct wim_lookup_table_entry_disk) !=
617                      WIM_LOOKUP_TABLE_ENTRY_DISK_SIZE);
618
619         /* Calculate number of entries in the lookup table.  */
620         num_entries = wim->hdr.lookup_table_reshdr.uncompressed_size /
621                       sizeof(struct wim_lookup_table_entry_disk);
622
623         /* Read the lookup table into a buffer.  */
624         ret = wim_reshdr_to_data(&wim->hdr.lookup_table_reshdr, wim, &buf);
625         if (ret)
626                 goto out;
627
628         /* Allocate a hash table to map SHA1 message digests into stream
629          * specifications.  This is the in-memory "lookup table".  */
630         table = new_lookup_table(num_entries * 2 + 1);
631         if (table == NULL) {
632                 ERROR("Not enough memory to read lookup table.");
633                 ret = WIMLIB_ERR_NOMEM;
634                 goto out_free_buf;
635         }
636
637         /* Allocate and initalize stream entries from the raw lookup table
638          * buffer.  */
639         wim->current_image = 0;
640         cur_rspec = NULL;
641         for (i = 0; i < num_entries; i++) {
642                 const struct wim_lookup_table_entry_disk *disk_entry =
643                         &((const struct wim_lookup_table_entry_disk*)buf)[i];
644                 u16 part_number;
645                 struct wim_reshdr reshdr;
646
647                 get_wim_reshdr(&disk_entry->reshdr, &reshdr);
648
649                 DEBUG("reshdr: size_in_wim=%"PRIu64", "
650                       "uncompressed_size=%"PRIu64", "
651                       "offset_in_wim=%"PRIu64", "
652                       "flags=0x%02x",
653                       reshdr.size_in_wim, reshdr.uncompressed_size,
654                       reshdr.offset_in_wim, reshdr.flags);
655
656                 if (wim->hdr.wim_version == WIM_VERSION_DEFAULT)
657                         reshdr.flags &= ~WIM_RESHDR_FLAG_PACKED_STREAMS;
658
659                 cur_entry = new_lookup_table_entry();
660                 if (cur_entry == NULL) {
661                         ERROR("Not enough memory to read lookup table!");
662                         ret = WIMLIB_ERR_NOMEM;
663                         goto err;
664                 }
665
666                 part_number = le16_to_cpu(disk_entry->part_number);
667                 cur_entry->refcnt = le32_to_cpu(disk_entry->refcnt);
668                 copy_hash(cur_entry->hash, disk_entry->hash);
669
670                 if (part_number != wim->hdr.part_number) {
671                         WARNING("A lookup table entry in part %hu of the WIM "
672                                 "points to part %hu (ignoring it)",
673                                 wim->hdr.part_number, part_number);
674                         free_lookup_table_entry(cur_entry);
675                         continue;
676                 }
677
678                 if (!(reshdr.flags & (WIM_RESHDR_FLAG_PACKED_STREAMS |
679                                       WIM_RESHDR_FLAG_COMPRESSED))) {
680                         if (reshdr.uncompressed_size != reshdr.size_in_wim) {
681                                 ERROR("Invalid resource entry!");
682                                 ret = WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
683                                 goto err;
684                         }
685                 }
686
687                 back_to_back_pack = false;
688                 if (!(reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) ||
689                     cur_rspec == NULL ||
690                     (back_to_back_pack =
691                      ((reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) &&
692                       reshdr.uncompressed_size == WIM_PACK_MAGIC_NUMBER &&
693                       cur_rspec != NULL &&
694                       cur_rspec->size_in_wim != 0)))
695                 {
696                         /* Starting new run of streams that share the same WIM
697                          * resource.  */
698                         struct wim_lookup_table_entry *prev_entry = NULL;
699
700                         if (back_to_back_pack &&
701                             !list_empty(&cur_rspec->stream_list))
702                         {
703                                 prev_entry = list_entry(cur_rspec->stream_list.prev,
704                                                         struct wim_lookup_table_entry,
705                                                         rspec_node);
706                                 lte_unbind_wim_resource_spec(prev_entry);
707                         }
708                         if (cur_rspec != NULL) {
709                                 ret = validate_resource(cur_rspec);
710                                 if (ret)
711                                         goto err;
712                         }
713
714                         /* Allocate the resource specification and initialize it
715                          * with values from the current stream entry.  */
716                         cur_rspec = MALLOC(sizeof(*cur_rspec));
717                         if (cur_rspec == NULL) {
718                                 ERROR("Not enough memory to read lookup table!");
719                                 ret = WIMLIB_ERR_NOMEM;
720                                 goto err;
721                         }
722                         wim_res_hdr_to_spec(&reshdr, wim, cur_rspec);
723
724                         if (prev_entry)
725                                 lte_bind_wim_resource_spec(prev_entry, cur_rspec);
726                 }
727
728                 if ((reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) &&
729                     reshdr.uncompressed_size == WIM_PACK_MAGIC_NUMBER)
730                 {
731                         /* Found the specification for the packed resource.
732                          * Transfer the values to the `struct
733                          * wim_resource_spec', and discard the current stream
734                          * since this lookup table entry did not, in fact,
735                          * correspond to a "stream".
736                          */
737
738                         /* Uncompressed size of the resource pack is actually
739                          * stored in the header of the resource itself.  Read
740                          * it, and also grab the chunk size and compression type
741                          * (which are not necessarily the defaults from the WIM
742                          * header).  */
743                         struct alt_chunk_table_header_disk hdr;
744
745                         ret = full_pread(&wim->in_fd, &hdr,
746                                          sizeof(hdr), reshdr.offset_in_wim);
747                         if (ret)
748                                 goto err;
749
750                         cur_rspec->uncompressed_size = le64_to_cpu(hdr.res_usize);
751                         cur_rspec->offset_in_wim = reshdr.offset_in_wim;
752                         cur_rspec->size_in_wim = reshdr.size_in_wim;
753                         cur_rspec->flags = reshdr.flags;
754
755                         /* Compression format numbers must be the same as in
756                          * WIMGAPI to be compatible here.  */
757                         BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_NONE != 0);
758                         BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_LZX != 1);
759                         BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_XPRESS != 2);
760                         BUILD_BUG_ON(WIMLIB_COMPRESSION_TYPE_LZMS != 3);
761                         cur_rspec->compression_type = le32_to_cpu(hdr.compression_format);
762
763                         cur_rspec->chunk_size = le32_to_cpu(hdr.chunk_size);
764
765                         DEBUG("Full pack is %"PRIu64" compressed bytes "
766                               "at file offset %"PRIu64" (flags 0x%02x)",
767                               cur_rspec->size_in_wim,
768                               cur_rspec->offset_in_wim,
769                               cur_rspec->flags);
770                         free_lookup_table_entry(cur_entry);
771                         continue;
772                 }
773
774                 if (is_zero_hash(cur_entry->hash)) {
775                         free_lookup_table_entry(cur_entry);
776                         continue;
777                 }
778
779                 if (reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
780                         /* Continuing the pack with another stream.  */
781                         DEBUG("Continuing pack with stream: "
782                               "%"PRIu64" uncompressed bytes @ "
783                               "resource offset %"PRIu64")",
784                               reshdr.size_in_wim, reshdr.offset_in_wim);
785                 }
786
787                 lte_bind_wim_resource_spec(cur_entry, cur_rspec);
788                 if (reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
789                         /* In packed runs, the offset field is used for
790                          * in-resource offset, not the in-WIM offset, and the
791                          * size field is used for the uncompressed size, not the
792                          * compressed size.  */
793                         cur_entry->offset_in_res = reshdr.offset_in_wim;
794                         cur_entry->size = reshdr.size_in_wim;
795                         cur_entry->flags = reshdr.flags;
796                 } else {
797                         /* Normal case: The stream corresponds one-to-one with
798                          * the resource entry.  */
799                         cur_entry->offset_in_res = 0;
800                         cur_entry->size = reshdr.uncompressed_size;
801                         cur_entry->flags = reshdr.flags;
802                         cur_rspec = NULL;
803                 }
804
805                 if (cur_entry->flags & WIM_RESHDR_FLAG_METADATA) {
806                         /* Lookup table entry for a metadata resource */
807
808                         /* Metadata entries with no references must be ignored;
809                          * see for example the WinPE WIMs from the WAIK v2.1.
810                          * */
811                         if (cur_entry->refcnt == 0) {
812                                 free_lookup_table_entry(cur_entry);
813                                 continue;
814                         }
815
816                         if (cur_entry->refcnt != 1) {
817                                 if (wimlib_print_errors) {
818                                         ERROR("Found metadata resource with refcnt != 1:");
819                                         print_lookup_table_entry(cur_entry, stderr);
820                                 }
821                                 ret = WIMLIB_ERR_INVALID_LOOKUP_TABLE_ENTRY;
822                                 goto err;
823                         }
824
825                         if (wim->hdr.part_number != 1) {
826                                 WARNING("Ignoring metadata resource found in a "
827                                         "non-first part of the split WIM");
828                                 free_lookup_table_entry(cur_entry);
829                                 continue;
830                         }
831                         if (wim->current_image == wim->hdr.image_count) {
832                                 WARNING("The WIM header says there are %u images "
833                                         "in the WIM, but we found more metadata "
834                                         "resources than this (ignoring the extra)",
835                                         wim->hdr.image_count);
836                                 free_lookup_table_entry(cur_entry);
837                                 continue;
838                         }
839
840                         /* Notice very carefully:  We are assigning the metadata
841                          * resources in the exact order mirrored by their lookup
842                          * table entries on disk, which is the behavior of
843                          * Microsoft's software.  In particular, this overrides
844                          * the actual locations of the metadata resources
845                          * themselves in the WIM file as well as any information
846                          * written in the XML data. */
847                         DEBUG("Found metadata resource for image %u at "
848                               "offset %"PRIu64".",
849                               wim->current_image + 1,
850                               cur_entry->rspec->offset_in_wim);
851                         wim->image_metadata[
852                                 wim->current_image++]->metadata_lte = cur_entry;
853                         continue;
854                 }
855
856                 /* Lookup table entry for a stream that is not a metadata
857                  * resource.  */
858                 duplicate_entry = lookup_stream(table, cur_entry->hash);
859                 if (duplicate_entry) {
860                         if (wimlib_print_errors) {
861                                 WARNING("The WIM lookup table contains two entries with the "
862                                       "same SHA1 message digest!");
863                                 WARNING("The first entry is:");
864                                 print_lookup_table_entry(duplicate_entry, stderr);
865                                 WARNING("The second entry is:");
866                                 print_lookup_table_entry(cur_entry, stderr);
867                         }
868                         free_lookup_table_entry(cur_entry);
869                         continue;
870                 }
871
872                 /* Finally, insert the stream into the lookup table, keyed by
873                  * its SHA1 message digest.  */
874                 lookup_table_insert(table, cur_entry);
875         }
876         cur_entry = NULL;
877
878         /* Validate the last resource.  */
879         if (cur_rspec != NULL) {
880                 ret = validate_resource(cur_rspec);
881                 if (ret)
882                         goto err;
883         }
884
885         if (wim->hdr.part_number == 1 && wim->current_image != wim->hdr.image_count) {
886                 WARNING("The header of \"%"TS"\" says there are %u images in\n"
887                         "          the WIM, but we only found %d metadata resources!  Acting as if\n"
888                         "          the header specified only %d images instead.",
889                         wim->filename, wim->hdr.image_count,
890                         wim->current_image, wim->current_image);
891                 for (int i = wim->current_image; i < wim->hdr.image_count; i++)
892                         put_image_metadata(wim->image_metadata[i], NULL);
893                 wim->hdr.image_count = wim->current_image;
894         }
895         DEBUG("Done reading lookup table.");
896         wim->lookup_table = table;
897         ret = 0;
898         goto out_free_buf;
899
900 err:
901         if (cur_rspec && list_empty(&cur_rspec->stream_list))
902                 FREE(cur_rspec);
903         free_lookup_table_entry(cur_entry);
904         free_lookup_table(table);
905 out_free_buf:
906         FREE(buf);
907 out:
908         wim->current_image = 0;
909         return ret;
910 }
911
912 static void
913 put_wim_lookup_table_entry(struct wim_lookup_table_entry_disk *disk_entry,
914                            const struct wim_reshdr *out_reshdr,
915                            u16 part_number, u32 refcnt, const u8 *hash)
916 {
917         put_wim_reshdr(out_reshdr, &disk_entry->reshdr);
918         disk_entry->part_number = cpu_to_le16(part_number);
919         disk_entry->refcnt = cpu_to_le32(refcnt);
920         copy_hash(disk_entry->hash, hash);
921 }
922
923 int
924 write_wim_lookup_table_from_stream_list(struct list_head *stream_list,
925                                         struct filedes *out_fd,
926                                         u16 part_number,
927                                         struct wim_reshdr *out_reshdr,
928                                         int write_resource_flags)
929 {
930         size_t table_size;
931         struct wim_lookup_table_entry *lte;
932         struct wim_lookup_table_entry_disk *table_buf;
933         struct wim_lookup_table_entry_disk *table_buf_ptr;
934         int ret;
935         u64 prev_res_offset_in_wim = ~0ULL;
936
937         table_size = 0;
938         list_for_each_entry(lte, stream_list, lookup_table_list) {
939                 table_size += sizeof(struct wim_lookup_table_entry_disk);
940
941                 if (lte->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS &&
942                     lte->out_res_offset_in_wim != prev_res_offset_in_wim)
943                 {
944                         table_size += sizeof(struct wim_lookup_table_entry_disk);
945                         prev_res_offset_in_wim = lte->out_res_offset_in_wim;
946                 }
947         }
948
949         DEBUG("Writing WIM lookup table (size=%zu, offset=%"PRIu64")",
950               table_size, out_fd->offset);
951
952         table_buf = MALLOC(table_size);
953         if (table_buf == NULL) {
954                 ERROR("Failed to allocate %zu bytes for temporary lookup table",
955                       table_size);
956                 return WIMLIB_ERR_NOMEM;
957         }
958         table_buf_ptr = table_buf;
959
960         prev_res_offset_in_wim = ~0ULL;
961         list_for_each_entry(lte, stream_list, lookup_table_list) {
962
963                 put_wim_lookup_table_entry(table_buf_ptr++,
964                                            &lte->out_reshdr,
965                                            part_number,
966                                            lte->out_refcnt,
967                                            lte->hash);
968                 if (lte->out_reshdr.flags & WIM_RESHDR_FLAG_PACKED_STREAMS &&
969                     lte->out_res_offset_in_wim != prev_res_offset_in_wim)
970                 {
971                         /* Put the main resource entry for the pack.  */
972
973                         struct wim_reshdr reshdr;
974
975                         reshdr.offset_in_wim = lte->out_res_offset_in_wim;
976                         reshdr.size_in_wim = lte->out_res_size_in_wim;
977                         reshdr.uncompressed_size = WIM_PACK_MAGIC_NUMBER;
978                         reshdr.flags = WIM_RESHDR_FLAG_PACKED_STREAMS;
979
980                         DEBUG("Putting main entry for pack: "
981                               "size_in_wim=%"PRIu64", "
982                               "offset_in_wim=%"PRIu64", "
983                               "uncompressed_size=%"PRIu64,
984                               reshdr.size_in_wim,
985                               reshdr.offset_in_wim,
986                               reshdr.uncompressed_size);
987
988                         put_wim_lookup_table_entry(table_buf_ptr++,
989                                                    &reshdr,
990                                                    part_number,
991                                                    1, zero_hash);
992                         prev_res_offset_in_wim = lte->out_res_offset_in_wim;
993                 }
994
995         }
996         wimlib_assert((u8*)table_buf_ptr - (u8*)table_buf == table_size);
997
998         /* Write the lookup table uncompressed.  Although wimlib can handle a
999          * compressed lookup table, MS software cannot.  */
1000         ret = write_wim_resource_from_buffer(table_buf,
1001                                              table_size,
1002                                              WIM_RESHDR_FLAG_METADATA,
1003                                              out_fd,
1004                                              WIMLIB_COMPRESSION_TYPE_NONE,
1005                                              0,
1006                                              out_reshdr,
1007                                              NULL,
1008                                              write_resource_flags);
1009         FREE(table_buf);
1010         DEBUG("ret=%d", ret);
1011         return ret;
1012 }
1013
1014 int
1015 lte_zero_real_refcnt(struct wim_lookup_table_entry *lte, void *_ignore)
1016 {
1017         lte->real_refcnt = 0;
1018         return 0;
1019 }
1020
1021 int
1022 lte_zero_out_refcnt(struct wim_lookup_table_entry *lte, void *_ignore)
1023 {
1024         lte->out_refcnt = 0;
1025         return 0;
1026 }
1027
1028 int
1029 lte_free_extracted_file(struct wim_lookup_table_entry *lte, void *_ignore)
1030 {
1031         if (lte->extracted_file != NULL) {
1032                 FREE(lte->extracted_file);
1033                 lte->extracted_file = NULL;
1034         }
1035         return 0;
1036 }
1037
1038 /* Allocate a stream entry for the contents of the buffer, or re-use an existing
1039  * entry in @lookup_table for the same stream.  */
1040 struct wim_lookup_table_entry *
1041 new_stream_from_data_buffer(const void *buffer, size_t size,
1042                             struct wim_lookup_table *lookup_table)
1043 {
1044         u8 hash[SHA1_HASH_SIZE];
1045         struct wim_lookup_table_entry *lte, *existing_lte;
1046
1047         sha1_buffer(buffer, size, hash);
1048         existing_lte = lookup_stream(lookup_table, hash);
1049         if (existing_lte) {
1050                 wimlib_assert(existing_lte->size == size);
1051                 lte = existing_lte;
1052                 lte->refcnt++;
1053         } else {
1054                 void *buffer_copy;
1055                 lte = new_lookup_table_entry();
1056                 if (lte == NULL)
1057                         return NULL;
1058                 buffer_copy = memdup(buffer, size);
1059                 if (buffer_copy == NULL) {
1060                         free_lookup_table_entry(lte);
1061                         return NULL;
1062                 }
1063                 lte->resource_location  = RESOURCE_IN_ATTACHED_BUFFER;
1064                 lte->attached_buffer    = buffer_copy;
1065                 lte->size               = size;
1066                 copy_hash(lte->hash, hash);
1067                 lookup_table_insert(lookup_table, lte);
1068         }
1069         return lte;
1070 }
1071
1072 /* Calculate the SHA1 message digest of a stream and move it from the list of
1073  * unhashed streams to the stream lookup table, possibly joining it with an
1074  * existing lookup table entry for an identical stream.
1075  *
1076  * @lte:  An unhashed lookup table entry.
1077  * @lookup_table:  Lookup table for the WIM.
1078  * @lte_ret:  On success, write a pointer to the resulting lookup table
1079  *            entry to this location.  This will be the same as @lte
1080  *            if it was inserted into the lookup table, or different if
1081  *            a duplicate stream was found.
1082  *
1083  * Returns 0 on success; nonzero if there is an error reading the stream.
1084  */
1085 int
1086 hash_unhashed_stream(struct wim_lookup_table_entry *lte,
1087                      struct wim_lookup_table *lookup_table,
1088                      struct wim_lookup_table_entry **lte_ret)
1089 {
1090         int ret;
1091         struct wim_lookup_table_entry *duplicate_lte;
1092         struct wim_lookup_table_entry **back_ptr;
1093
1094         wimlib_assert(lte->unhashed);
1095
1096         /* back_ptr must be saved because @back_inode and @back_stream_id are in
1097          * union with the SHA1 message digest and will no longer be valid once
1098          * the SHA1 has been calculated. */
1099         back_ptr = retrieve_lte_pointer(lte);
1100
1101         ret = sha1_stream(lte);
1102         if (ret)
1103                 return ret;
1104
1105         /* Look for a duplicate stream */
1106         duplicate_lte = lookup_stream(lookup_table, lte->hash);
1107         list_del(&lte->unhashed_list);
1108         if (duplicate_lte) {
1109                 /* We have a duplicate stream.  Transfer the reference counts
1110                  * from this stream to the duplicate and update the reference to
1111                  * this stream (in an inode or ads_entry) to point to the
1112                  * duplicate.  The caller is responsible for freeing @lte if
1113                  * needed.  */
1114                 wimlib_assert(!(duplicate_lte->unhashed));
1115                 wimlib_assert(duplicate_lte->size == lte->size);
1116                 duplicate_lte->refcnt += lte->refcnt;
1117                 lte->refcnt = 0;
1118                 *back_ptr = duplicate_lte;
1119                 lte = duplicate_lte;
1120         } else {
1121                 /* No duplicate stream, so we need to insert this stream into
1122                  * the lookup table and treat it as a hashed stream. */
1123                 lookup_table_insert(lookup_table, lte);
1124                 lte->unhashed = 0;
1125         }
1126         *lte_ret = lte;
1127         return 0;
1128 }
1129
1130 void
1131 print_lookup_table_entry(const struct wim_lookup_table_entry *lte, FILE *out)
1132 {
1133         if (lte == NULL) {
1134                 tputc(T('\n'), out);
1135                 return;
1136         }
1137
1138
1139         tprintf(T("Uncompressed size     = %"PRIu64" bytes\n"),
1140                 lte->size);
1141         if (lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
1142                 tprintf(T("Offset                = %"PRIu64" bytes\n"),
1143                         lte->offset_in_res);
1144
1145                 tprintf(T("Raw uncompressed size = %"PRIu64" bytes\n"),
1146                         lte->rspec->uncompressed_size);
1147
1148                 tprintf(T("Raw compressed size   = %"PRIu64" bytes\n"),
1149                         lte->rspec->size_in_wim);
1150
1151                 tprintf(T("Raw offset            = %"PRIu64" bytes\n"),
1152                         lte->rspec->offset_in_wim);
1153         } else if (lte->resource_location == RESOURCE_IN_WIM) {
1154                 tprintf(T("Compressed size       = %"PRIu64" bytes\n"),
1155                         lte->rspec->size_in_wim);
1156
1157                 tprintf(T("Offset                = %"PRIu64" bytes\n"),
1158                         lte->rspec->offset_in_wim);
1159         }
1160
1161         tfprintf(out, T("Reference Count       = %u\n"), lte->refcnt);
1162
1163         if (lte->unhashed) {
1164                 tfprintf(out, T("(Unhashed: inode %p, stream_id = %u)\n"),
1165                          lte->back_inode, lte->back_stream_id);
1166         } else {
1167                 tfprintf(out, T("Hash                  = 0x"));
1168                 print_hash(lte->hash, out);
1169                 tputc(T('\n'), out);
1170         }
1171
1172         tfprintf(out, T("Flags                 = "));
1173         u8 flags = lte->flags;
1174         if (flags & WIM_RESHDR_FLAG_COMPRESSED)
1175                 tfputs(T("WIM_RESHDR_FLAG_COMPRESSED, "), out);
1176         if (flags & WIM_RESHDR_FLAG_FREE)
1177                 tfputs(T("WIM_RESHDR_FLAG_FREE, "), out);
1178         if (flags & WIM_RESHDR_FLAG_METADATA)
1179                 tfputs(T("WIM_RESHDR_FLAG_METADATA, "), out);
1180         if (flags & WIM_RESHDR_FLAG_SPANNED)
1181                 tfputs(T("WIM_RESHDR_FLAG_SPANNED, "), out);
1182         if (flags & WIM_RESHDR_FLAG_PACKED_STREAMS)
1183                 tfputs(T("WIM_RESHDR_FLAG_PACKED_STREAMS, "), out);
1184         tputc(T('\n'), out);
1185         switch (lte->resource_location) {
1186         case RESOURCE_IN_WIM:
1187                 if (lte->rspec->wim->filename) {
1188                         tfprintf(out, T("WIM file              = `%"TS"'\n"),
1189                                  lte->rspec->wim->filename);
1190                 }
1191                 break;
1192 #ifdef __WIN32__
1193         case RESOURCE_WIN32_ENCRYPTED:
1194 #endif
1195         case RESOURCE_IN_FILE_ON_DISK:
1196                 tfprintf(out, T("File on Disk          = `%"TS"'\n"),
1197                          lte->file_on_disk);
1198                 break;
1199 #ifdef WITH_FUSE
1200         case RESOURCE_IN_STAGING_FILE:
1201                 tfprintf(out, T("Staging File          = `%"TS"'\n"),
1202                                 lte->staging_file_name);
1203                 break;
1204 #endif
1205         default:
1206                 break;
1207         }
1208         tputc(T('\n'), out);
1209 }
1210
1211 void
1212 lte_to_wimlib_resource_entry(const struct wim_lookup_table_entry *lte,
1213                              struct wimlib_resource_entry *wentry)
1214 {
1215         memset(wentry, 0, sizeof(*wentry));
1216
1217         wentry->uncompressed_size = lte->size;
1218         if (lte->resource_location == RESOURCE_IN_WIM) {
1219                 wentry->part_number = lte->rspec->wim->hdr.part_number;
1220                 if (lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) {
1221                         wentry->compressed_size = 0;
1222                         wentry->offset = lte->offset_in_res;
1223                 } else {
1224                         wentry->compressed_size = lte->rspec->size_in_wim;
1225                         wentry->offset = lte->rspec->offset_in_wim;
1226                 }
1227                 wentry->raw_resource_offset_in_wim = lte->rspec->offset_in_wim;
1228                 /*wentry->raw_resource_uncompressed_size = lte->rspec->uncompressed_size;*/
1229                 wentry->raw_resource_compressed_size = lte->rspec->size_in_wim;
1230         }
1231         copy_hash(wentry->sha1_hash, lte->hash);
1232         wentry->reference_count = lte->refcnt;
1233         wentry->is_compressed = (lte->flags & WIM_RESHDR_FLAG_COMPRESSED) != 0;
1234         wentry->is_metadata = (lte->flags & WIM_RESHDR_FLAG_METADATA) != 0;
1235         wentry->is_free = (lte->flags & WIM_RESHDR_FLAG_FREE) != 0;
1236         wentry->is_spanned = (lte->flags & WIM_RESHDR_FLAG_SPANNED) != 0;
1237         wentry->packed = (lte->flags & WIM_RESHDR_FLAG_PACKED_STREAMS) != 0;
1238 }
1239
1240 struct iterate_lte_context {
1241         wimlib_iterate_lookup_table_callback_t cb;
1242         void *user_ctx;
1243 };
1244
1245 static int
1246 do_iterate_lte(struct wim_lookup_table_entry *lte, void *_ctx)
1247 {
1248         struct iterate_lte_context *ctx = _ctx;
1249         struct wimlib_resource_entry entry;
1250
1251         lte_to_wimlib_resource_entry(lte, &entry);
1252         return (*ctx->cb)(&entry, ctx->user_ctx);
1253 }
1254
1255 /* API function documented in wimlib.h  */
1256 WIMLIBAPI int
1257 wimlib_iterate_lookup_table(WIMStruct *wim, int flags,
1258                             wimlib_iterate_lookup_table_callback_t cb,
1259                             void *user_ctx)
1260 {
1261         struct iterate_lte_context ctx = {
1262                 .cb = cb,
1263                 .user_ctx = user_ctx,
1264         };
1265         if (wim->hdr.part_number == 1) {
1266                 int ret;
1267                 for (int i = 0; i < wim->hdr.image_count; i++) {
1268                         ret = do_iterate_lte(wim->image_metadata[i]->metadata_lte,
1269                                              &ctx);
1270                         if (ret)
1271                                 return ret;
1272                 }
1273         }
1274         return for_lookup_table_entry(wim->lookup_table, do_iterate_lte, &ctx);
1275 }