]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/common/info.c
Fix the fix 863028cb7ad6d8d0455fa69348f56b376d7b908f which
[icculus/xz.git] / src / liblzma / common / info.c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file       info.c
4 /// \brief      Collects and verifies integrity of Stream size information
5 //
6 //  Copyright (C) 2007 Lasse Collin
7 //
8 //  This library is free software; you can redistribute it and/or
9 //  modify it under the terms of the GNU Lesser General Public
10 //  License as published by the Free Software Foundation; either
11 //  version 2.1 of the License, or (at your option) any later version.
12 //
13 //  This library is distributed in the hope that it will be useful,
14 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 //  Lesser General Public License for more details.
17 //
18 ///////////////////////////////////////////////////////////////////////////////
19
20 #include "common.h"
21
22
23 struct lzma_info_s {
24         struct {
25                 /// Known Size of Header Metadata Block; here's some
26                 /// special things:
27                 ///  - LZMA_VLI_VALUE_UNKNOWN indicates that we don't know
28                 ///    if Header Metadata Block is present.
29                 ///  - 0 indicates that Header Metadata Block is not present.
30                 lzma_vli header_metadata_size;
31
32                 /// Known Total Size of the Data Blocks in the Stream
33                 lzma_vli total_size;
34
35                 /// Known Uncompressed Size of the Data Blocks in the Stream
36                 lzma_vli uncompressed_size;
37
38                 /// Known Size of Footer Metadata Block
39                 lzma_vli footer_metadata_size;
40         } known;
41
42         struct {
43                 /// Sum of Total Size fields stored to the Index so far
44                 lzma_vli total_size;
45
46                 /// Sum of Uncompressed Size fields stored to the Index so far
47                 lzma_vli uncompressed_size;
48
49                 /// First Index Record in the list, or NULL if Index is empty.
50                 lzma_index *head;
51
52                 /// Number of Index Records
53                 size_t record_count;
54
55                 /// Number of Index Records
56                 size_t incomplete_count;
57
58                 /// True when we know that no more Records will get added
59                 /// to the Index.
60                 bool is_final;
61         } index;
62
63         /// Start offset of the Stream. This is needed to calculate
64         /// lzma_info_iter.stream_offset.
65         lzma_vli stream_start_offset;
66
67         /// True if Index is present in Header Metadata Block
68         bool has_index_in_header_metadata;
69 };
70
71
72 //////////////////////
73 // Create/Reset/End //
74 //////////////////////
75
76 static void
77 index_init(lzma_info *info)
78 {
79         info->index.total_size = 0;
80         info->index.uncompressed_size = 0;
81         info->index.head = NULL;
82         info->index.record_count = 0;
83         info->index.incomplete_count = 0;
84         info->index.is_final = false;
85         return;
86 }
87
88
89 static void
90 info_init(lzma_info *info)
91 {
92         info->known.header_metadata_size = LZMA_VLI_VALUE_UNKNOWN;
93         info->known.total_size = LZMA_VLI_VALUE_UNKNOWN;
94         info->known.uncompressed_size = LZMA_VLI_VALUE_UNKNOWN;
95         info->known.footer_metadata_size = LZMA_VLI_VALUE_UNKNOWN;
96         info->stream_start_offset = 0;
97         info->has_index_in_header_metadata = false;
98
99         index_init(info);
100
101         return;
102 }
103
104
105 extern LZMA_API lzma_info *
106 lzma_info_init(lzma_info *info, lzma_allocator *allocator)
107 {
108         if (info == NULL)
109                 info = lzma_alloc(sizeof(lzma_info), allocator);
110         else
111                 lzma_index_free(info->index.head, allocator);
112
113         if (info != NULL)
114                 info_init(info);
115
116         return info;
117 }
118
119
120 extern LZMA_API void
121 lzma_info_free(lzma_info *info, lzma_allocator *allocator)
122 {
123         lzma_index_free(info->index.head, allocator);
124         lzma_free(info, allocator);
125         return;
126 }
127
128
129 /////////
130 // Set //
131 /////////
132
133 static lzma_ret
134 set_size(lzma_vli new_size, lzma_vli *known_size, lzma_vli index_size,
135                 bool forbid_zero)
136 {
137         assert(new_size <= LZMA_VLI_VALUE_MAX);
138
139         lzma_ret ret = LZMA_OK;
140
141         if (forbid_zero && new_size == 0)
142                 ret = LZMA_PROG_ERROR;
143         else if (index_size > new_size)
144                 ret = LZMA_DATA_ERROR;
145         else if (*known_size == LZMA_VLI_VALUE_UNKNOWN)
146                 *known_size = new_size;
147         else if (*known_size != new_size)
148                 ret = LZMA_DATA_ERROR;
149
150         return ret;
151 }
152
153
154 extern LZMA_API lzma_ret
155 lzma_info_size_set(lzma_info *info, lzma_info_size type, lzma_vli size)
156 {
157         if (size > LZMA_VLI_VALUE_MAX)
158                 return LZMA_PROG_ERROR;
159
160         switch (type) {
161         case LZMA_INFO_STREAM_START:
162                 info->stream_start_offset = size;
163                 return LZMA_OK;
164
165         case LZMA_INFO_HEADER_METADATA:
166                 return set_size(size, &info->known.header_metadata_size,
167                                 0, false);
168
169         case LZMA_INFO_TOTAL:
170                 return set_size(size, &info->known.total_size,
171                                 info->index.total_size, true);
172
173         case LZMA_INFO_UNCOMPRESSED:
174                 return set_size(size, &info->known.uncompressed_size,
175                                 info->index.uncompressed_size, false);
176
177         case LZMA_INFO_FOOTER_METADATA:
178                 return set_size(size, &info->known.footer_metadata_size,
179                                 0, true);
180         }
181
182         return LZMA_PROG_ERROR;
183 }
184
185
186 extern LZMA_API lzma_ret
187 lzma_info_index_set(lzma_info *info, lzma_allocator *allocator,
188                 lzma_index *i_new, lzma_bool eat_index)
189 {
190         if (i_new == NULL)
191                 return LZMA_PROG_ERROR;
192
193         lzma_index *i_old = info->index.head;
194
195         if (i_old != NULL) {
196                 while (true) {
197                         // If the new Index has fewer Records than the old one,
198                         // the new Index cannot be valid.
199                         if (i_new == NULL)
200                                 return LZMA_DATA_ERROR;
201
202                         // The new Index must be complete i.e. no unknown
203                         // values.
204                         if (i_new->total_size > LZMA_VLI_VALUE_MAX
205                                         || i_new->uncompressed_size
206                                                 > LZMA_VLI_VALUE_MAX) {
207                                 if (eat_index)
208                                         lzma_index_free(i_new, allocator);
209
210                                 return LZMA_PROG_ERROR;
211                         }
212
213                         // Compare the values from the new Index with the old
214                         // Index. The old Index may be incomplete; in that
215                         // case we
216                         //  - use the value from the new Index as is;
217                         //  - update the appropriate info->index.foo_size; and
218                         //  - decrease the count of incomplete Index Records.
219                         bool was_incomplete = false;
220
221                         if (i_old->total_size == LZMA_VLI_VALUE_UNKNOWN) {
222                                 assert(!info->index.is_final);
223                                 was_incomplete = true;
224
225                                 i_old->total_size = i_new->total_size;
226
227                                 if (lzma_vli_add(info->index.total_size,
228                                                 i_new->total_size)) {
229                                         if (eat_index)
230                                                 lzma_index_free(i_new,
231                                                                 allocator);
232
233                                         return LZMA_PROG_ERROR;
234                                 }
235                         } else if (i_old->total_size != i_new->total_size) {
236                                 if (eat_index)
237                                         lzma_index_free(i_new, allocator);
238
239                                 return LZMA_DATA_ERROR;
240                         }
241
242                         if (i_old->uncompressed_size
243                                         == LZMA_VLI_VALUE_UNKNOWN) {
244                                 assert(!info->index.is_final);
245                                 was_incomplete = true;
246
247                                 i_old->uncompressed_size
248                                                 = i_new->uncompressed_size;
249
250                                 if (lzma_vli_add(info->index.uncompressed_size,
251                                                 i_new->uncompressed_size)) {
252                                         if (eat_index)
253                                                 lzma_index_free(i_new,
254                                                                 allocator);
255
256                                         return LZMA_PROG_ERROR;
257                                 }
258                         } else if (i_old->uncompressed_size
259                                         != i_new->uncompressed_size) {
260                                 if (eat_index)
261                                         lzma_index_free(i_new, allocator);
262
263                                 return LZMA_DATA_ERROR;
264                         }
265
266                         if (was_incomplete) {
267                                 assert(!info->index.is_final);
268                                 assert(info->index.incomplete_count > 0);
269                                 --info->index.incomplete_count;
270                         }
271
272                         // Get rid of *i_new. It's now identical with *i_old.
273                         lzma_index *tmp = i_new->next;
274                         if (eat_index)
275                                 lzma_free(i_new, allocator);
276
277                         i_new = tmp;
278
279                         // We want to leave i_old pointing to the last
280                         // Index Record in the old Index. This way we can
281                         // concatenate the possible new Records from i_new.
282                         if (i_old->next == NULL)
283                                 break;
284
285                         i_old = i_old->next;
286                 }
287         }
288
289         assert(info->index.incomplete_count == 0);
290
291         // If Index was already known to be final, i_new must be NULL now.
292         // The new Index cannot contain more Records that we already have.
293         if (info->index.is_final) {
294                 assert(info->index.head != NULL);
295
296                 if (i_new != NULL) {
297                         if (eat_index)
298                                 lzma_index_free(i_new, allocator);
299
300                         return LZMA_DATA_ERROR;
301                 }
302
303                 return LZMA_OK;
304         }
305
306         // The rest of the new Index is merged to the old Index. Keep the
307         // current i_new pointer in available. We need it when merging the
308         // new Index with the old one, and if an error occurs so we can
309         // get rid of the broken part of the new Index.
310         lzma_index *i_start = i_new;
311         while (i_new != NULL) {
312                 // The new Index must be complete i.e. no unknown values.
313                 if (i_new->total_size > LZMA_VLI_VALUE_MAX
314                                 || i_new->uncompressed_size
315                                         > LZMA_VLI_VALUE_MAX) {
316                         if (eat_index)
317                                 lzma_index_free(i_start, allocator);
318
319                         return LZMA_PROG_ERROR;
320                 }
321
322                 // Update info->index.foo_sizes.
323                 if (lzma_vli_add(info->index.total_size, i_new->total_size)
324                                 || lzma_vli_add(info->index.uncompressed_size,
325                                         i_new->uncompressed_size)) {
326                         if (eat_index)
327                                 lzma_index_free(i_start, allocator);
328
329                         return LZMA_PROG_ERROR;
330                 }
331
332                 ++info->index.record_count;
333                 i_new = i_new->next;
334         }
335
336         // All the Records in the new Index are good, and info->index.foo_sizes
337         // were successfully updated.
338         if (lzma_info_index_finish(info) != LZMA_OK) {
339                 if (eat_index)
340                         lzma_index_free(i_start, allocator);
341
342                 return LZMA_DATA_ERROR;
343         }
344
345         // The Index is ready to be merged. If we aren't supposed to eat
346         // the Index, make a copy of it first.
347         if (!eat_index && i_start != NULL) {
348                 i_start = lzma_index_dup(i_start, allocator);
349                 if (i_start == NULL)
350                         return LZMA_MEM_ERROR;
351         }
352
353         // Concatenate the new Index with the old one. Note that it is
354         // possible that we don't have any old Index.
355         if (info->index.head == NULL)
356                 info->index.head = i_start;
357         else
358                 i_old->next = i_start;
359
360         return LZMA_OK;
361 }
362
363
364 extern LZMA_API lzma_ret
365 lzma_info_metadata_set(lzma_info *info, lzma_allocator *allocator,
366                 lzma_metadata *metadata, lzma_bool is_header_metadata,
367                 lzma_bool eat_index)
368 {
369         // Validate *metadata.
370         if (!lzma_vli_is_valid(metadata->header_metadata_size)
371                         || !lzma_vli_is_valid(metadata->total_size)
372                         || !lzma_vli_is_valid(metadata->uncompressed_size)) {
373                 if (eat_index) {
374                         lzma_index_free(metadata->index, allocator);
375                         metadata->index = NULL;
376                 }
377
378                 return LZMA_PROG_ERROR;
379         }
380
381         // Index
382         if (metadata->index != NULL) {
383                 if (is_header_metadata)
384                         info->has_index_in_header_metadata = true;
385
386                 const lzma_ret ret = lzma_info_index_set(
387                                 info, allocator, metadata->index, eat_index);
388
389                 if (eat_index)
390                         metadata->index = NULL;
391
392                 if (ret != LZMA_OK)
393                         return ret;
394
395         } else if (!is_header_metadata
396                         && (metadata->total_size == LZMA_VLI_VALUE_UNKNOWN
397                                 || !info->has_index_in_header_metadata)) {
398                 // Either Total Size or Index must be present in Footer
399                 // Metadata Block. If Index is not present, it must have
400                 // already been in the Header Metadata Block. Since we
401                 // got here, these conditions weren't met.
402                 return LZMA_DATA_ERROR;
403         }
404
405         // Size of Header Metadata
406         if (!is_header_metadata) {
407                 // If it is marked unknown in Metadata, it means that
408                 // it's not present.
409                 const lzma_vli size = metadata->header_metadata_size
410                                         != LZMA_VLI_VALUE_UNKNOWN
411                                 ? metadata->header_metadata_size : 0;
412                 return_if_error(lzma_info_size_set(
413                                 info, LZMA_INFO_HEADER_METADATA, size));
414         }
415
416         // Total Size
417         if (metadata->total_size != LZMA_VLI_VALUE_UNKNOWN)
418                 return_if_error(lzma_info_size_set(info,
419                                 LZMA_INFO_TOTAL, metadata->total_size));
420
421         // Uncompressed Size
422         if (metadata->uncompressed_size != LZMA_VLI_VALUE_UNKNOWN)
423                 return_if_error(lzma_info_size_set(info,
424                                 LZMA_INFO_UNCOMPRESSED,
425                                 metadata->uncompressed_size));
426
427         return LZMA_OK;
428 }
429
430
431 /////////
432 // Get //
433 /////////
434
435 extern LZMA_API lzma_vli
436 lzma_info_size_get(const lzma_info *info, lzma_info_size type)
437 {
438         switch (type) {
439         case LZMA_INFO_STREAM_START:
440                 return info->stream_start_offset;
441
442         case LZMA_INFO_HEADER_METADATA:
443                 return info->known.header_metadata_size;
444
445         case LZMA_INFO_TOTAL:
446                 return info->known.total_size;
447
448         case LZMA_INFO_UNCOMPRESSED:
449                 return info->known.uncompressed_size;
450
451         case LZMA_INFO_FOOTER_METADATA:
452                 return info->known.footer_metadata_size;
453         }
454
455         return LZMA_VLI_VALUE_UNKNOWN;
456 }
457
458
459 extern LZMA_API lzma_index *
460 lzma_info_index_get(lzma_info *info, lzma_bool detach)
461 {
462         lzma_index *i = info->index.head;
463
464         if (detach)
465                 index_init(info);
466
467         return i;
468 }
469
470
471 extern LZMA_API size_t
472 lzma_info_index_count_get(const lzma_info *info)
473 {
474         return info->index.record_count;
475 }
476
477
478 /////////////////
479 // Incremental //
480 /////////////////
481
482 enum {
483         ITER_INFO,
484         ITER_INDEX,
485         ITER_RESERVED_1,
486         ITER_RESERVED_2,
487 };
488
489
490 #define iter_info ((lzma_info *)(iter->internal[ITER_INFO]))
491
492 #define iter_index ((lzma_index *)(iter->internal[ITER_INDEX]))
493
494
495 extern LZMA_API void
496 lzma_info_iter_begin(lzma_info *info, lzma_info_iter *iter)
497 {
498         *iter = (lzma_info_iter){
499                 .total_size = LZMA_VLI_VALUE_UNKNOWN,
500                 .uncompressed_size = LZMA_VLI_VALUE_UNKNOWN,
501                 .stream_offset = LZMA_VLI_VALUE_UNKNOWN,
502                 .uncompressed_offset = LZMA_VLI_VALUE_UNKNOWN,
503                 .internal = { info, NULL, NULL, NULL },
504         };
505
506         return;
507 }
508
509
510 extern LZMA_API lzma_ret
511 lzma_info_iter_next(lzma_info_iter *iter, lzma_allocator *allocator)
512 {
513         // FIXME debug remove
514         lzma_info *info = iter_info;
515         (void)info;
516
517         if (iter_index == NULL) {
518                 // The first call after lzma_info_iter_begin().
519                 if (iter_info->known.header_metadata_size
520                                 == LZMA_VLI_VALUE_UNKNOWN)
521                         iter->stream_offset = LZMA_VLI_VALUE_UNKNOWN;
522                 else if (lzma_vli_sum3(iter->stream_offset,
523                                 iter_info->stream_start_offset,
524                                 LZMA_STREAM_HEADER_SIZE,
525                                 iter_info->known.header_metadata_size))
526                         return LZMA_PROG_ERROR;
527
528                 iter->uncompressed_offset = 0;
529
530                 if (iter_info->index.head != NULL) {
531                         // The first Index Record has already been allocated.
532                         iter->internal[ITER_INDEX] = iter_info->index.head;
533                         iter->total_size = iter_index->total_size;
534                         iter->uncompressed_size
535                                         = iter_index->uncompressed_size;
536                         return LZMA_OK;
537                 }
538         } else {
539                 // Update iter->*_offsets.
540                 if (iter->stream_offset != LZMA_VLI_VALUE_UNKNOWN) {
541                         if (iter_index->total_size == LZMA_VLI_VALUE_UNKNOWN)
542                                 iter->stream_offset = LZMA_VLI_VALUE_UNKNOWN;
543                         else if (lzma_vli_add(iter->stream_offset,
544                                         iter_index->total_size))
545                                 return LZMA_DATA_ERROR;
546                 }
547
548                 if (iter->uncompressed_offset != LZMA_VLI_VALUE_UNKNOWN) {
549                         if (iter_index->uncompressed_size
550                                         == LZMA_VLI_VALUE_UNKNOWN)
551                                 iter->uncompressed_offset
552                                                 = LZMA_VLI_VALUE_UNKNOWN;
553                         else if (lzma_vli_add(iter->uncompressed_offset,
554                                         iter_index->uncompressed_size))
555                                 return LZMA_DATA_ERROR;
556                 }
557
558                 if (iter_index->next != NULL) {
559                         // The next Record has already been allocated.
560                         iter->internal[ITER_INDEX] = iter_index->next;
561                         iter->total_size = iter_index->total_size;
562                         iter->uncompressed_size
563                                         = iter_index->uncompressed_size;
564                         return LZMA_OK;
565                 }
566         }
567
568         // Don't add new Records to a final Index.
569         if (iter_info->index.is_final)
570                 return LZMA_DATA_ERROR;
571
572         // Allocate and initialize a new Index Record.
573         lzma_index *i = lzma_alloc(sizeof(lzma_index), allocator);
574         if (i == NULL)
575                 return LZMA_MEM_ERROR;
576
577         i->total_size = LZMA_VLI_VALUE_UNKNOWN;
578         i->uncompressed_size = LZMA_VLI_VALUE_UNKNOWN;
579         i->next = NULL;
580
581         iter->total_size = LZMA_VLI_VALUE_UNKNOWN;
582         iter->uncompressed_size = LZMA_VLI_VALUE_UNKNOWN;
583
584         // Decide where to put the new Index Record.
585         if (iter_info->index.head == NULL)
586                 iter_info->index.head = i;
587
588         if (iter_index != NULL)
589                 iter_index->next = i;
590
591         iter->internal[ITER_INDEX] = i;
592
593         ++iter_info->index.record_count;
594         ++iter_info->index.incomplete_count;
595
596         return LZMA_OK;
597 }
598
599
600 extern LZMA_API lzma_ret
601 lzma_info_iter_set(lzma_info_iter *iter,
602                 lzma_vli total_size, lzma_vli uncompressed_size)
603 {
604         // FIXME debug remove
605         lzma_info *info = iter_info;
606         (void)info;
607
608         if (iter_index == NULL || !lzma_vli_is_valid(total_size)
609                         || !lzma_vli_is_valid(uncompressed_size))
610                 return LZMA_PROG_ERROR;
611
612         const bool was_incomplete = iter_index->total_size
613                                 == LZMA_VLI_VALUE_UNKNOWN
614                         || iter_index->uncompressed_size
615                                 == LZMA_VLI_VALUE_UNKNOWN;
616
617         if (total_size != LZMA_VLI_VALUE_UNKNOWN) {
618                 if (iter_index->total_size == LZMA_VLI_VALUE_UNKNOWN) {
619                         iter_index->total_size = total_size;
620
621                         if (lzma_vli_add(iter_info->index.total_size,
622                                                 total_size)
623                                         || iter_info->index.total_size
624                                                 > iter_info->known.total_size)
625                                 return LZMA_DATA_ERROR;
626
627                 } else if (iter_index->total_size != total_size) {
628                         return LZMA_DATA_ERROR;
629                 }
630         }
631
632         if (uncompressed_size != LZMA_VLI_VALUE_UNKNOWN) {
633                 if (iter_index->uncompressed_size == LZMA_VLI_VALUE_UNKNOWN) {
634                         iter_index->uncompressed_size = uncompressed_size;
635
636                         if (lzma_vli_add(iter_info->index.uncompressed_size,
637                                                 uncompressed_size)
638                                         || iter_info->index.uncompressed_size
639                                         > iter_info->known.uncompressed_size)
640                                 return LZMA_DATA_ERROR;
641
642                 } else if (iter_index->uncompressed_size
643                                 != uncompressed_size) {
644                         return LZMA_DATA_ERROR;
645                 }
646         }
647
648         // Check if the new information we got managed to finish this
649         // Index Record. If so, update the count of incomplete Index Records.
650         if (was_incomplete && iter_index->total_size
651                                 != LZMA_VLI_VALUE_UNKNOWN
652                         && iter_index->uncompressed_size
653                                 != LZMA_VLI_VALUE_UNKNOWN) {
654                 assert(iter_info->index.incomplete_count > 0);
655                 --iter_info->index.incomplete_count;
656         }
657
658         // Make sure that the known sizes are now available in *iter.
659         iter->total_size = iter_index->total_size;
660         iter->uncompressed_size = iter_index->uncompressed_size;
661
662         return LZMA_OK;
663 }
664
665
666 extern LZMA_API lzma_ret
667 lzma_info_index_finish(lzma_info *info)
668 {
669         if (info->index.record_count == 0 || info->index.incomplete_count > 0
670                         || lzma_info_size_set(info, LZMA_INFO_TOTAL,
671                                 info->index.total_size)
672                         || lzma_info_size_set(info, LZMA_INFO_UNCOMPRESSED,
673                                 info->index.uncompressed_size))
674                 return LZMA_DATA_ERROR;
675
676         info->index.is_final = true;
677
678         return LZMA_OK;
679 }
680
681
682 //////////////
683 // Locating //
684 //////////////
685
686 extern LZMA_API lzma_vli
687 lzma_info_metadata_locate(const lzma_info *info, lzma_bool is_header_metadata)
688 {
689         bool error = false;
690         lzma_vli size = 0;
691
692         if (info->known.header_metadata_size == LZMA_VLI_VALUE_UNKNOWN) {
693                 // We don't know if Header Metadata Block is present, thus
694                 // we cannot locate it either.
695                 //
696                 // Well, you could say that just assume that it is present.
697                 // I'm not sure if this is useful. But it can be useful to
698                 // be able to use this function and get LZMA_VLI_VALUE_UNKNOWN
699                 // to detect that Header Metadata Block wasn't present.
700                 error = true;
701         } else if (is_header_metadata) {
702                 error = lzma_vli_sum(size, info->stream_start_offset,
703                                 LZMA_STREAM_HEADER_SIZE);
704         } else if (!info->index.is_final) {
705                 // Since we don't know if we have all the Index Records yet,
706                 // we cannot know where the Footer Metadata Block is.
707                 error = true;
708         } else {
709                 error = lzma_vli_sum4(size, info->stream_start_offset,
710                                 LZMA_STREAM_HEADER_SIZE,
711                                 info->known.header_metadata_size,
712                                 info->known.total_size);
713         }
714
715         return error ? LZMA_VLI_VALUE_UNKNOWN : size;
716 }
717
718
719 extern LZMA_API uint32_t
720 lzma_info_metadata_alignment_get(
721                 const lzma_info *info, lzma_bool is_header_metadata)
722 {
723         uint32_t alignment;
724
725         if (is_header_metadata) {
726                 alignment = info->stream_start_offset
727                                 + LZMA_STREAM_HEADER_SIZE;
728         } else {
729                 alignment = info->stream_start_offset + LZMA_STREAM_HEADER_SIZE
730                                 + info->known.header_metadata_size
731                                 + info->known.total_size;
732         }
733
734         return alignment;
735 }
736
737
738 extern LZMA_API lzma_ret
739 lzma_info_iter_locate(lzma_info_iter *iter, lzma_allocator *allocator,
740                 lzma_vli uncompressed_offset, lzma_bool allow_alloc)
741 {
742         if (iter == NULL || uncompressed_offset > LZMA_VLI_VALUE_MAX)
743                 return LZMA_PROG_ERROR;
744
745         // Quick check in case Index is final.
746         if (iter_info->index.is_final) {
747                 assert(iter_info->known.uncompressed_size
748                                 == iter_info->index.uncompressed_size);
749                 if (uncompressed_offset >= iter_info->index.uncompressed_size)
750                         return LZMA_DATA_ERROR;
751         }
752
753         // TODO: Optimize so that it uses existing info from *iter when
754         // seeking forward.
755
756         // Initialize *iter
757         if (iter_info->known.header_metadata_size != LZMA_VLI_VALUE_UNKNOWN) {
758                 if (lzma_vli_sum3(iter->stream_offset,
759                                 iter_info->stream_start_offset,
760                                 LZMA_STREAM_HEADER_SIZE,
761                                 iter_info->known.header_metadata_size))
762                         return LZMA_PROG_ERROR;
763         } else {
764                 // We don't know the Size of Header Metadata Block, thus
765                 // we cannot calculate the Stream offset either.
766                 iter->stream_offset = LZMA_VLI_VALUE_UNKNOWN;
767         }
768
769         iter->uncompressed_offset = 0;
770
771         // If we have no Index Records, it's obvious that we need to
772         // add a new one.
773         if (iter_info->index.head == NULL) {
774                 assert(!iter_info->index.is_final);
775                 if (!allow_alloc)
776                         return LZMA_DATA_ERROR;
777
778                 return lzma_info_iter_next(iter, allocator);
779         }
780
781         // Locate an appropriate Index Record.
782         lzma_index *i = iter_info->index.head;
783         while (true) {
784                 // - If Uncompressed Size in the Record is unknown,
785                 //   we have no chance to search further.
786                 // - If the next Record would go past the requested offset,
787                 //   we have found our target Data Block.
788                 if (i->uncompressed_size == LZMA_VLI_VALUE_UNKNOWN
789                                 || iter->uncompressed_offset
790                                 + i->uncompressed_size > uncompressed_offset) {
791                         iter->total_size = i->total_size;
792                         iter->uncompressed_size = i->uncompressed_size;
793                         iter->internal[ITER_INDEX] = i;
794                         return LZMA_OK;
795                 }
796
797                 // Update the stream offset. It may be unknown if we didn't
798                 // know the size of Header Metadata Block.
799                 if (iter->stream_offset != LZMA_VLI_VALUE_UNKNOWN)
800                         if (lzma_vli_add(iter->stream_offset, i->total_size))
801                                 return LZMA_PROG_ERROR;
802
803                 // Update the uncompressed offset. This cannot overflow since
804                 // the Index is known to be valid.
805                 iter->uncompressed_offset += i->uncompressed_size;
806
807                 // Move to the next Block.
808                 if (i->next == NULL) {
809                         assert(!iter_info->index.is_final);
810                         if (!allow_alloc)
811                                 return LZMA_DATA_ERROR;
812
813                         iter->internal[ITER_INDEX] = i;
814                         return lzma_info_iter_next(iter, allocator);
815                 }
816
817                 i = i->next;
818         }
819 }