0ac922af9e7ddd0aba9d6a6b87a95314f152e400
[pandora-u-boot.git] / fs / squashfs / sqfs.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2020 Bootlin
4  *
5  * Author: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
6  *
7  * sqfs.c: SquashFS filesystem implementation
8  */
9
10 #include <asm/unaligned.h>
11 #include <errno.h>
12 #include <fs.h>
13 #include <linux/types.h>
14 #include <linux/byteorder/little_endian.h>
15 #include <linux/byteorder/generic.h>
16 #include <memalign.h>
17 #include <stdlib.h>
18 #include <string.h>
19 #include <squashfs.h>
20 #include <part.h>
21
22 #include "sqfs_decompressor.h"
23 #include "sqfs_filesystem.h"
24 #include "sqfs_utils.h"
25
26 static struct squashfs_ctxt ctxt;
27
28 static int sqfs_disk_read(__u32 block, __u32 nr_blocks, void *buf)
29 {
30         ulong ret;
31
32         if (!ctxt.cur_dev)
33                 return -1;
34
35         ret = blk_dread(ctxt.cur_dev, ctxt.cur_part_info.start + block,
36                         nr_blocks, buf);
37
38         if (ret != nr_blocks)
39                 return -1;
40
41         return ret;
42 }
43
44 static int sqfs_read_sblk(struct squashfs_super_block **sblk)
45 {
46         *sblk = malloc_cache_aligned(ctxt.cur_dev->blksz);
47         if (!*sblk)
48                 return -ENOMEM;
49
50         if (sqfs_disk_read(0, 1, *sblk) != 1) {
51                 free(*sblk);
52                 return -EINVAL;
53         }
54
55         return 0;
56 }
57
58 static int sqfs_count_tokens(const char *filename)
59 {
60         int token_count = 1, l;
61
62         for (l = 1; l < strlen(filename); l++) {
63                 if (filename[l] == '/')
64                         token_count++;
65         }
66
67         /* Ignore trailing '/' in path */
68         if (filename[strlen(filename) - 1] == '/')
69                 token_count--;
70
71         if (!token_count)
72                 token_count = 1;
73
74         return token_count;
75 }
76
77 /*
78  * Calculates how many blocks are needed for the buffer used in sqfs_disk_read.
79  * The memory section (e.g. inode table) start offset and its end (i.e. the next
80  * table start) must be specified. It also calculates the offset from which to
81  * start reading the buffer.
82  */
83 static int sqfs_calc_n_blks(__le64 start, __le64 end, u64 *offset)
84 {
85         u64 start_, table_size;
86
87         table_size = le64_to_cpu(end) - le64_to_cpu(start);
88         start_ = le64_to_cpu(start) / ctxt.cur_dev->blksz;
89         *offset = le64_to_cpu(start) - (start_ * ctxt.cur_dev->blksz);
90
91         return DIV_ROUND_UP(table_size + *offset, ctxt.cur_dev->blksz);
92 }
93
94 /*
95  * Retrieves fragment block entry and returns true if the fragment block is
96  * compressed
97  */
98 static int sqfs_frag_lookup(u32 inode_fragment_index,
99                             struct squashfs_fragment_block_entry *e)
100 {
101         u64 start, n_blks, src_len, table_offset, start_block;
102         unsigned char *metadata_buffer, *metadata, *table;
103         struct squashfs_fragment_block_entry *entries;
104         struct squashfs_super_block *sblk = ctxt.sblk;
105         unsigned long dest_len;
106         int block, offset, ret;
107         u16 header;
108
109         if (inode_fragment_index >= get_unaligned_le32(&sblk->fragments))
110                 return -EINVAL;
111
112         start = get_unaligned_le64(&sblk->fragment_table_start) /
113                 ctxt.cur_dev->blksz;
114         n_blks = sqfs_calc_n_blks(sblk->fragment_table_start,
115                                   sblk->export_table_start,
116                                   &table_offset);
117
118         /* Allocate a proper sized buffer to store the fragment index table */
119         table = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
120         if (!table)
121                 return -ENOMEM;
122
123         if (sqfs_disk_read(start, n_blks, table) < 0) {
124                 free(table);
125                 return -EINVAL;
126         }
127
128         block = SQFS_FRAGMENT_INDEX(inode_fragment_index);
129         offset = SQFS_FRAGMENT_INDEX_OFFSET(inode_fragment_index);
130
131         /*
132          * Get the start offset of the metadata block that contains the right
133          * fragment block entry
134          */
135         start_block = get_unaligned_le64(table + table_offset + block *
136                                          sizeof(u64));
137
138         start = start_block / ctxt.cur_dev->blksz;
139         n_blks = sqfs_calc_n_blks(cpu_to_le64(start_block),
140                                   sblk->fragment_table_start, &table_offset);
141
142         metadata_buffer = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
143         if (!metadata_buffer) {
144                 ret = -ENOMEM;
145                 goto free_table;
146         }
147
148         if (sqfs_disk_read(start, n_blks, metadata_buffer) < 0) {
149                 ret = -EINVAL;
150                 goto free_buffer;
151         }
152
153         /* Every metadata block starts with a 16-bit header */
154         header = get_unaligned_le16(metadata_buffer + table_offset);
155         metadata = metadata_buffer + table_offset + SQFS_HEADER_SIZE;
156
157         if (!metadata || !header) {
158                 ret = -ENOMEM;
159                 goto free_buffer;
160         }
161
162         entries = malloc(SQFS_METADATA_BLOCK_SIZE);
163         if (!entries) {
164                 ret = -ENOMEM;
165                 goto free_buffer;
166         }
167
168         if (SQFS_COMPRESSED_METADATA(header)) {
169                 src_len = SQFS_METADATA_SIZE(header);
170                 dest_len = SQFS_METADATA_BLOCK_SIZE;
171                 ret = sqfs_decompress(&ctxt, entries, &dest_len, metadata,
172                                       src_len);
173                 if (ret) {
174                         ret = -EINVAL;
175                         goto free_entries;
176                 }
177         } else {
178                 memcpy(entries, metadata, SQFS_METADATA_SIZE(header));
179         }
180
181         *e = entries[offset];
182         ret = SQFS_COMPRESSED_BLOCK(e->size);
183
184 free_entries:
185         free(entries);
186 free_buffer:
187         free(metadata_buffer);
188 free_table:
189         free(table);
190
191         return ret;
192 }
193
194 /*
195  * The entry name is a flexible array member, and we don't know its size before
196  * actually reading the entry. So we need a first copy to retrieve this size so
197  * we can finally copy the whole struct.
198  */
199 static int sqfs_read_entry(struct squashfs_directory_entry **dest, void *src)
200 {
201         struct squashfs_directory_entry *tmp;
202         u16 sz;
203
204         tmp = src;
205         sz = get_unaligned_le16(src + sizeof(*tmp) - sizeof(u16));
206         /*
207          * 'src' points to the begin of a directory entry, and 'sz' gets its
208          * 'name_size' member's value. name_size is actually the string
209          * length - 1, so adding 2 compensates this difference and adds space
210          * for the trailling null byte.
211          */
212         *dest = malloc(sizeof(*tmp) + sz + 2);
213         if (!*dest)
214                 return -ENOMEM;
215
216         memcpy(*dest, src, sizeof(*tmp) + sz + 1);
217         (*dest)->name[sz + 1] = '\0';
218
219         return 0;
220 }
221
222 static int sqfs_get_tokens_length(char **tokens, int count)
223 {
224         int length = 0, i;
225
226         /*
227          * 1 is added to the result of strlen to consider the slash separator
228          * between the tokens.
229          */
230         for (i = 0; i < count; i++)
231                 length += strlen(tokens[i]) + 1;
232
233         return length;
234 }
235
236 /* Takes a token list and returns a single string with '/' as separator. */
237 static char *sqfs_concat_tokens(char **token_list, int token_count)
238 {
239         char *result;
240         int i, length = 0, offset = 0;
241
242         length = sqfs_get_tokens_length(token_list, token_count);
243
244         result = malloc(length + 1);
245         result[length] = '\0';
246
247         for (i = 0; i < token_count; i++) {
248                 strcpy(result + offset, token_list[i]);
249                 offset += strlen(token_list[i]);
250                 result[offset++] = '/';
251         }
252
253         return result;
254 }
255
256 /*
257  * Differently from sqfs_concat_tokens, sqfs_join writes the result into a
258  * previously allocated string, and returns the number of bytes written.
259  */
260 static int sqfs_join(char **strings, char *dest, int start, int end,
261                      char separator)
262 {
263         int i, offset = 0;
264
265         for (i = start; i < end; i++) {
266                 strcpy(dest + offset, strings[i]);
267                 offset += strlen(strings[i]);
268                 if (i < end - 1)
269                         dest[offset++] = separator;
270         }
271
272         return offset;
273 }
274
275 /*
276  * Fills the given token list using its size (count) and a source string (str)
277  */
278 static int sqfs_tokenize(char **tokens, int count, const char *str)
279 {
280         int i, j, ret = 0;
281         char *aux, *strc;
282
283         strc = strdup(str);
284         if (!strc)
285                 return -ENOMEM;
286
287         if (!strcmp(strc, "/")) {
288                 tokens[0] = strdup(strc);
289                 if (!tokens[0]) {
290                         ret = -ENOMEM;
291                         goto free_strc;
292                 }
293         } else {
294                 for (j = 0; j < count; j++) {
295                         aux = strtok(!j ? strc : NULL, "/");
296                         tokens[j] = strdup(aux);
297                         if (!tokens[j]) {
298                                 for (i = 0; i < j; i++)
299                                         free(tokens[i]);
300                                 ret = -ENOMEM;
301                                 goto free_strc;
302                         }
303                 }
304         }
305
306 free_strc:
307         free(strc);
308
309         return ret;
310 }
311
312 /*
313  * Remove last 'updir + 1' tokens from the base path tokens list. This leaves us
314  * with a token list containing only the tokens needed to form the resolved
315  * path, and returns the decremented size of the token list.
316  */
317 static int sqfs_clean_base_path(char **base, int count, int updir)
318 {
319         int i;
320
321         for (i = count - updir - 1; i < count; i++)
322                 free(base[i]);
323
324         return count - updir - 1;
325 }
326
327 /*
328  * Given the base ("current dir.") path and the relative one, generate the
329  * absolute path.
330  */
331 static char *sqfs_get_abs_path(const char *base, const char *rel)
332 {
333         char **base_tokens, **rel_tokens, *resolved = NULL;
334         int ret, bc, rc, i, updir = 0, resolved_size = 0, offset = 0;
335
336         /* Memory allocation for the token lists */
337         bc = sqfs_count_tokens(base);
338         rc = sqfs_count_tokens(rel);
339         if (bc < 1 || rc < 1)
340                 return NULL;
341
342         base_tokens = malloc(bc * sizeof(char *));
343         if (!base_tokens)
344                 return NULL;
345
346         rel_tokens = malloc(rc * sizeof(char *));
347         if (!rel_tokens)
348                 goto free_b_tokens;
349
350         /* Fill token lists */
351         ret = sqfs_tokenize(base_tokens, bc, base);
352         if (ret)
353                 goto free_r_tokens;
354
355         sqfs_tokenize(rel_tokens, rc, rel);
356         if (ret)
357                 goto free_r_tokens;
358
359         /* count '..' occurrences in target path */
360         for (i = 0; i < rc; i++) {
361                 if (!strcmp(rel_tokens[i], ".."))
362                         updir++;
363         }
364
365         /* Remove the last token and the '..' occurrences */
366         bc = sqfs_clean_base_path(base_tokens, bc, updir);
367         if (bc < 0)
368                 goto free_r_tokens;
369
370         /* Calculate resolved path size */
371         if (!bc)
372                 resolved_size++;
373
374         resolved_size += sqfs_get_tokens_length(base_tokens, bc) +
375                 sqfs_get_tokens_length(rel_tokens, rc);
376
377         resolved = malloc(resolved_size + 1);
378         if (!resolved)
379                 goto free_r_tokens_loop;
380
381         /* Set resolved path */
382         memset(resolved, '\0', resolved_size + 1);
383         offset += sqfs_join(base_tokens, resolved + offset, 0, bc, '/');
384         resolved[offset++] = '/';
385         offset += sqfs_join(rel_tokens, resolved + offset, updir, rc, '/');
386
387 free_r_tokens_loop:
388         for (i = 0; i < rc; i++)
389                 free(rel_tokens[i]);
390         for (i = 0; i < bc; i++)
391                 free(base_tokens[i]);
392 free_r_tokens:
393         free(rel_tokens);
394 free_b_tokens:
395         free(base_tokens);
396
397         return resolved;
398 }
399
400 static char *sqfs_resolve_symlink(struct squashfs_symlink_inode *sym,
401                                   const char *base_path)
402 {
403         char *resolved, *target;
404         u32 sz;
405
406         sz = get_unaligned_le32(&sym->symlink_size);
407         target = malloc(sz + 1);
408         if (!target)
409                 return NULL;
410
411         /*
412          * There is no trailling null byte in the symlink's target path, so a
413          * copy is made and a '\0' is added at its end.
414          */
415         target[sz] = '\0';
416         /* Get target name (relative path) */
417         strncpy(target, sym->symlink, sz);
418
419         /* Relative -> absolute path conversion */
420         resolved = sqfs_get_abs_path(base_path, target);
421
422         free(target);
423
424         return resolved;
425 }
426
427 /*
428  * m_list contains each metadata block's position, and m_count is the number of
429  * elements of m_list. Those metadata blocks come from the compressed directory
430  * table.
431  */
432 static int sqfs_search_dir(struct squashfs_dir_stream *dirs, char **token_list,
433                            int token_count, u32 *m_list, int m_count)
434 {
435         struct squashfs_super_block *sblk = ctxt.sblk;
436         char *path, *target, **sym_tokens, *res, *rem;
437         int j, ret, new_inode_number, offset;
438         struct squashfs_symlink_inode *sym;
439         struct squashfs_ldir_inode *ldir;
440         struct squashfs_dir_inode *dir;
441         struct fs_dir_stream *dirsp;
442         struct fs_dirent *dent;
443         unsigned char *table;
444
445         dirsp = (struct fs_dir_stream *)dirs;
446
447         /* Start by root inode */
448         table = sqfs_find_inode(dirs->inode_table, le32_to_cpu(sblk->inodes),
449                                 sblk->inodes, sblk->block_size);
450
451         dir = (struct squashfs_dir_inode *)table;
452         ldir = (struct squashfs_ldir_inode *)table;
453
454         /* get directory offset in directory table */
455         offset = sqfs_dir_offset(table, m_list, m_count);
456         dirs->table = &dirs->dir_table[offset];
457
458         /* Setup directory header */
459         dirs->dir_header = malloc(SQFS_DIR_HEADER_SIZE);
460         if (!dirs->dir_header)
461                 return -ENOMEM;
462
463         memcpy(dirs->dir_header, dirs->table, SQFS_DIR_HEADER_SIZE);
464
465         /* Initialize squashfs_dir_stream members */
466         dirs->table += SQFS_DIR_HEADER_SIZE;
467         dirs->size = get_unaligned_le16(&dir->file_size) - SQFS_DIR_HEADER_SIZE;
468         dirs->entry_count = dirs->dir_header->count + 1;
469
470         /* No path given -> root directory */
471         if (!strcmp(token_list[0], "/")) {
472                 dirs->table = &dirs->dir_table[offset];
473                 memcpy(&dirs->i_dir, dir, sizeof(*dir));
474                 return 0;
475         }
476
477         for (j = 0; j < token_count; j++) {
478                 if (!sqfs_is_dir(get_unaligned_le16(&dir->inode_type))) {
479                         printf("** Cannot find directory. **\n");
480                         return -EINVAL;
481                 }
482
483                 while (!sqfs_readdir(dirsp, &dent)) {
484                         ret = strcmp(dent->name, token_list[j]);
485                         if (!ret)
486                                 break;
487                         free(dirs->entry);
488                 }
489
490                 if (ret) {
491                         printf("** Cannot find directory. **\n");
492                         return -EINVAL;
493                 }
494
495                 /* Redefine inode as the found token */
496                 new_inode_number = dirs->entry->inode_offset +
497                         dirs->dir_header->inode_number;
498
499                 /* Get reference to inode in the inode table */
500                 table = sqfs_find_inode(dirs->inode_table, new_inode_number,
501                                         sblk->inodes, sblk->block_size);
502                 dir = (struct squashfs_dir_inode *)table;
503
504                 /* Check for symbolic link and inode type sanity */
505                 if (get_unaligned_le16(&dir->inode_type) == SQFS_SYMLINK_TYPE) {
506                         sym = (struct squashfs_symlink_inode *)table;
507                         /* Get first j + 1 tokens */
508                         path = sqfs_concat_tokens(token_list, j + 1);
509                         /* Resolve for these tokens */
510                         target = sqfs_resolve_symlink(sym, path);
511                         /* Join remaining tokens */
512                         rem = sqfs_concat_tokens(token_list + j + 1, token_count -
513                                                  j - 1);
514                         /* Concatenate remaining tokens and symlink's target */
515                         res = malloc(strlen(rem) + strlen(target) + 1);
516                         strcpy(res, target);
517                         res[strlen(target)] = '/';
518                         strcpy(res + strlen(target) + 1, rem);
519                         token_count = sqfs_count_tokens(res);
520
521                         if (token_count < 0)
522                                 return -EINVAL;
523
524                         sym_tokens = malloc(token_count * sizeof(char *));
525                         if (!sym_tokens)
526                                 return -EINVAL;
527
528                         /* Fill tokens list */
529                         ret = sqfs_tokenize(sym_tokens, token_count, res);
530                         if (ret)
531                                 return -EINVAL;
532                         free(dirs->entry);
533
534                         ret = sqfs_search_dir(dirs, sym_tokens, token_count,
535                                               m_list, m_count);
536                         return ret;
537                 } else if (!sqfs_is_dir(get_unaligned_le16(&dir->inode_type))) {
538                         printf("** Cannot find directory. **\n");
539                         free(dirs->entry);
540                         return -EINVAL;
541                 }
542
543                 /* Check if it is an extended dir. */
544                 if (get_unaligned_le16(&dir->inode_type) == SQFS_LDIR_TYPE)
545                         ldir = (struct squashfs_ldir_inode *)table;
546
547                 /* Get dir. offset into the directory table */
548                 offset = sqfs_dir_offset(table, m_list, m_count);
549                 dirs->table = &dirs->dir_table[offset];
550
551                 /* Copy directory header */
552                 memcpy(dirs->dir_header, &dirs->dir_table[offset],
553                        SQFS_DIR_HEADER_SIZE);
554
555                 /* Check for empty directory */
556                 if (sqfs_is_empty_dir(table)) {
557                         printf("Empty directory.\n");
558                         free(dirs->entry);
559                         return SQFS_EMPTY_DIR;
560                 }
561
562                 dirs->table += SQFS_DIR_HEADER_SIZE;
563                 dirs->size = get_unaligned_le16(&dir->file_size);
564                 dirs->entry_count = dirs->dir_header->count + 1;
565                 dirs->size -= SQFS_DIR_HEADER_SIZE;
566                 free(dirs->entry);
567         }
568
569         offset = sqfs_dir_offset(table, m_list, m_count);
570         dirs->table = &dirs->dir_table[offset];
571
572         if (get_unaligned_le16(&dir->inode_type) == SQFS_DIR_TYPE)
573                 memcpy(&dirs->i_dir, dir, sizeof(*dir));
574         else
575                 memcpy(&dirs->i_ldir, ldir, sizeof(*ldir));
576
577         return 0;
578 }
579
580 /*
581  * Inode and directory tables are stored as a series of metadata blocks, and
582  * given the compressed size of this table, we can calculate how much metadata
583  * blocks are needed to store the result of the decompression, since a
584  * decompressed metadata block should have a size of 8KiB.
585  */
586 static int sqfs_count_metablks(void *table, u32 offset, int table_size)
587 {
588         int count = 0, cur_size = 0, ret;
589         u32 data_size;
590         bool comp;
591
592         do {
593                 ret = sqfs_read_metablock(table, offset + cur_size, &comp,
594                                           &data_size);
595                 if (ret)
596                         return -EINVAL;
597                 cur_size += data_size + SQFS_HEADER_SIZE;
598                 count++;
599         } while (cur_size < table_size);
600
601         return count;
602 }
603
604 /*
605  * Storing the metadata blocks header's positions will be useful while looking
606  * for an entry in the directory table, using the reference (index and offset)
607  * given by its inode.
608  */
609 static int sqfs_get_metablk_pos(u32 *pos_list, void *table, u32 offset,
610                                 int metablks_count)
611 {
612         u32 data_size, cur_size = 0;
613         int j, ret = 0;
614         bool comp;
615
616         if (!metablks_count)
617                 return -EINVAL;
618
619         for (j = 0; j < metablks_count; j++) {
620                 ret = sqfs_read_metablock(table, offset + cur_size, &comp,
621                                           &data_size);
622                 if (ret)
623                         return -EINVAL;
624
625                 cur_size += data_size + SQFS_HEADER_SIZE;
626                 pos_list[j] = cur_size;
627         }
628
629         return ret;
630 }
631
632 static int sqfs_read_inode_table(unsigned char **inode_table)
633 {
634         struct squashfs_super_block *sblk = ctxt.sblk;
635         u64 start, n_blks, table_offset, table_size;
636         int j, ret = 0, metablks_count;
637         unsigned char *src_table, *itb;
638         u32 src_len, dest_offset = 0;
639         unsigned long dest_len = 0;
640         bool compressed;
641
642         table_size = get_unaligned_le64(&sblk->directory_table_start) -
643                 get_unaligned_le64(&sblk->inode_table_start);
644         start = get_unaligned_le64(&sblk->inode_table_start) /
645                 ctxt.cur_dev->blksz;
646         n_blks = sqfs_calc_n_blks(sblk->inode_table_start,
647                                   sblk->directory_table_start, &table_offset);
648
649         /* Allocate a proper sized buffer (itb) to store the inode table */
650         itb = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
651         if (!itb)
652                 return -ENOMEM;
653
654         if (sqfs_disk_read(start, n_blks, itb) < 0) {
655                 ret = -EINVAL;
656                 goto free_itb;
657         }
658
659         /* Parse inode table (metadata block) header */
660         ret = sqfs_read_metablock(itb, table_offset, &compressed, &src_len);
661         if (ret) {
662                 ret = -EINVAL;
663                 goto free_itb;
664         }
665
666         /* Calculate size to store the whole decompressed table */
667         metablks_count = sqfs_count_metablks(itb, table_offset, table_size);
668         if (metablks_count < 1) {
669                 ret = -EINVAL;
670                 goto free_itb;
671         }
672
673         *inode_table = malloc(metablks_count * SQFS_METADATA_BLOCK_SIZE);
674         if (!*inode_table) {
675                 ret = -ENOMEM;
676                 goto free_itb;
677         }
678
679         src_table = itb + table_offset + SQFS_HEADER_SIZE;
680
681         /* Extract compressed Inode table */
682         for (j = 0; j < metablks_count; j++) {
683                 sqfs_read_metablock(itb, table_offset, &compressed, &src_len);
684                 if (compressed) {
685                         dest_len = SQFS_METADATA_BLOCK_SIZE;
686                         ret = sqfs_decompress(&ctxt, *inode_table +
687                                               dest_offset, &dest_len,
688                                               src_table, src_len);
689                         if (ret) {
690                                 free(*inode_table);
691                                 goto free_itb;
692                         }
693
694                         dest_offset += dest_len;
695                 } else {
696                         memcpy(*inode_table + (j * SQFS_METADATA_BLOCK_SIZE),
697                                src_table, src_len);
698                 }
699
700                 /*
701                  * Offsets to the decompression destination, to the metadata
702                  * buffer 'itb' and to the decompression source, respectively.
703                  */
704
705                 table_offset += src_len + SQFS_HEADER_SIZE;
706                 src_table += src_len + SQFS_HEADER_SIZE;
707         }
708
709 free_itb:
710         free(itb);
711
712         return ret;
713 }
714
715 static int sqfs_read_directory_table(unsigned char **dir_table, u32 **pos_list)
716 {
717         u64 start, n_blks, table_offset, table_size;
718         struct squashfs_super_block *sblk = ctxt.sblk;
719         int j, ret = 0, metablks_count = -1;
720         unsigned char *src_table, *dtb;
721         u32 src_len, dest_offset = 0;
722         unsigned long dest_len = 0;
723         bool compressed;
724
725         /* DIRECTORY TABLE */
726         table_size = get_unaligned_le64(&sblk->fragment_table_start) -
727                 get_unaligned_le64(&sblk->directory_table_start);
728         start = get_unaligned_le64(&sblk->directory_table_start) /
729                 ctxt.cur_dev->blksz;
730         n_blks = sqfs_calc_n_blks(sblk->directory_table_start,
731                                   sblk->fragment_table_start, &table_offset);
732
733         /* Allocate a proper sized buffer (dtb) to store the directory table */
734         dtb = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
735         if (!dtb)
736                 return -ENOMEM;
737
738         if (sqfs_disk_read(start, n_blks, dtb) < 0)
739                 goto free_dtb;
740
741         /* Parse directory table (metadata block) header */
742         ret = sqfs_read_metablock(dtb, table_offset, &compressed, &src_len);
743         if (ret)
744                 goto free_dtb;
745
746         /* Calculate total size to store the whole decompressed table */
747         metablks_count = sqfs_count_metablks(dtb, table_offset, table_size);
748         if (metablks_count < 1)
749                 goto free_dtb;
750
751         *dir_table = malloc(metablks_count * SQFS_METADATA_BLOCK_SIZE);
752         if (!*dir_table)
753                 goto free_dtb;
754
755         *pos_list = malloc(metablks_count * sizeof(u32));
756         if (!*pos_list) {
757                 free(*dir_table);
758                 goto free_dtb;
759         }
760
761         ret = sqfs_get_metablk_pos(*pos_list, dtb, table_offset,
762                                    metablks_count);
763         if (ret) {
764                 metablks_count = -1;
765                 free(*dir_table);
766                 free(*pos_list);
767                 goto free_dtb;
768         }
769
770         src_table = dtb + table_offset + SQFS_HEADER_SIZE;
771
772         /* Extract compressed Directory table */
773         dest_offset = 0;
774         for (j = 0; j < metablks_count; j++) {
775                 sqfs_read_metablock(dtb, table_offset, &compressed, &src_len);
776                 if (compressed) {
777                         dest_len = SQFS_METADATA_BLOCK_SIZE;
778                         ret = sqfs_decompress(&ctxt, *dir_table +
779                                               (j * SQFS_METADATA_BLOCK_SIZE),
780                                               &dest_len, src_table, src_len);
781                         if (ret) {
782                                 metablks_count = -1;
783                                 free(*dir_table);
784                                 goto free_dtb;
785                         }
786
787                         if (dest_len < SQFS_METADATA_BLOCK_SIZE) {
788                                 dest_offset += dest_len;
789                                 break;
790                         }
791
792                         dest_offset += dest_len;
793                 } else {
794                         memcpy(*dir_table + (j * SQFS_METADATA_BLOCK_SIZE),
795                                src_table, src_len);
796                 }
797
798                 /*
799                  * Offsets to the decompression destination, to the metadata
800                  * buffer 'dtb' and to the decompression source, respectively.
801                  */
802                 table_offset += src_len + SQFS_HEADER_SIZE;
803                 src_table += src_len + SQFS_HEADER_SIZE;
804         }
805
806 free_dtb:
807         free(dtb);
808
809         return metablks_count;
810 }
811
812 int sqfs_opendir(const char *filename, struct fs_dir_stream **dirsp)
813 {
814         unsigned char *inode_table = NULL, *dir_table = NULL;
815         int j, token_count = 0, ret = 0, metablks_count;
816         struct squashfs_dir_stream *dirs;
817         char **token_list = NULL, *path = NULL;
818         u32 *pos_list = NULL;
819
820         dirs = malloc(sizeof(*dirs));
821         if (!dirs)
822                 return -EINVAL;
823
824         /* these should be set to NULL to prevent dangling pointers */
825         dirs->dir_header = NULL;
826         dirs->entry = NULL;
827         dirs->table = NULL;
828         dirs->inode_table = NULL;
829         dirs->dir_table = NULL;
830
831         ret = sqfs_read_inode_table(&inode_table);
832         if (ret) {
833                 ret = -EINVAL;
834                 goto out;
835         }
836
837         metablks_count = sqfs_read_directory_table(&dir_table, &pos_list);
838         if (metablks_count < 1) {
839                 ret = -EINVAL;
840                 goto out;
841         }
842
843         /* Tokenize filename */
844         token_count = sqfs_count_tokens(filename);
845         if (token_count < 0) {
846                 ret = -EINVAL;
847                 goto out;
848         }
849
850         path = strdup(filename);
851         if (!path) {
852                 ret = -EINVAL;
853                 goto out;
854         }
855
856         token_list = malloc(token_count * sizeof(char *));
857         if (!token_list) {
858                 ret = -EINVAL;
859                 goto out;
860         }
861
862         /* Fill tokens list */
863         ret = sqfs_tokenize(token_list, token_count, path);
864         if (ret)
865                 goto out;
866         /*
867          * ldir's (extended directory) size is greater than dir, so it works as
868          * a general solution for the malloc size, since 'i' is a union.
869          */
870         dirs->inode_table = inode_table;
871         dirs->dir_table = dir_table;
872         ret = sqfs_search_dir(dirs, token_list, token_count, pos_list,
873                               metablks_count);
874         if (ret)
875                 goto out;
876
877         if (le16_to_cpu(dirs->i_dir.inode_type) == SQFS_DIR_TYPE)
878                 dirs->size = le16_to_cpu(dirs->i_dir.file_size);
879         else
880                 dirs->size = le32_to_cpu(dirs->i_ldir.file_size);
881
882         /* Setup directory header */
883         memcpy(dirs->dir_header, dirs->table, SQFS_DIR_HEADER_SIZE);
884         dirs->entry_count = dirs->dir_header->count + 1;
885         dirs->size -= SQFS_DIR_HEADER_SIZE;
886
887         /* Setup entry */
888         dirs->entry = NULL;
889         dirs->table += SQFS_DIR_HEADER_SIZE;
890
891         *dirsp = (struct fs_dir_stream *)dirs;
892
893 out:
894         for (j = 0; j < token_count; j++)
895                 free(token_list[j]);
896         free(token_list);
897         free(pos_list);
898         free(path);
899         if (ret) {
900                 free(inode_table);
901                 free(dirs);
902         }
903
904         return ret;
905 }
906
907 int sqfs_readdir(struct fs_dir_stream *fs_dirs, struct fs_dirent **dentp)
908 {
909         struct squashfs_super_block *sblk = ctxt.sblk;
910         struct squashfs_dir_stream *dirs;
911         struct squashfs_lreg_inode *lreg;
912         struct squashfs_base_inode *base;
913         struct squashfs_reg_inode *reg;
914         int i_number, offset = 0, ret;
915         struct fs_dirent *dent;
916         unsigned char *ipos;
917
918         dirs = (struct squashfs_dir_stream *)fs_dirs;
919         if (!dirs->size) {
920                 *dentp = NULL;
921                 return -SQFS_STOP_READDIR;
922         }
923
924         dent = &dirs->dentp;
925
926         if (!dirs->entry_count) {
927                 if (dirs->size > SQFS_DIR_HEADER_SIZE) {
928                         dirs->size -= SQFS_DIR_HEADER_SIZE;
929                 } else {
930                         *dentp = NULL;
931                         dirs->size = 0;
932                         return -SQFS_STOP_READDIR;
933                 }
934
935                 if (dirs->size > SQFS_EMPTY_FILE_SIZE) {
936                         /* Read follow-up (emitted) dir. header */
937                         memcpy(dirs->dir_header, dirs->table,
938                                SQFS_DIR_HEADER_SIZE);
939                         dirs->entry_count = dirs->dir_header->count + 1;
940                         ret = sqfs_read_entry(&dirs->entry, dirs->table +
941                                               SQFS_DIR_HEADER_SIZE);
942                         if (ret)
943                                 return -SQFS_STOP_READDIR;
944
945                         dirs->table += SQFS_DIR_HEADER_SIZE;
946                 }
947         } else {
948                 ret = sqfs_read_entry(&dirs->entry, dirs->table);
949                 if (ret)
950                         return -SQFS_STOP_READDIR;
951         }
952
953         i_number = dirs->dir_header->inode_number + dirs->entry->inode_offset;
954         ipos = sqfs_find_inode(dirs->inode_table, i_number, sblk->inodes,
955                                sblk->block_size);
956
957         base = (struct squashfs_base_inode *)ipos;
958
959         /* Set entry type and size */
960         switch (dirs->entry->type) {
961         case SQFS_DIR_TYPE:
962         case SQFS_LDIR_TYPE:
963                 dent->type = FS_DT_DIR;
964                 break;
965         case SQFS_REG_TYPE:
966         case SQFS_LREG_TYPE:
967                 /*
968                  * Entries do not differentiate extended from regular types, so
969                  * it needs to be verified manually.
970                  */
971                 if (get_unaligned_le16(&base->inode_type) == SQFS_LREG_TYPE) {
972                         lreg = (struct squashfs_lreg_inode *)ipos;
973                         dent->size = get_unaligned_le64(&lreg->file_size);
974                 } else {
975                         reg = (struct squashfs_reg_inode *)ipos;
976                         dent->size = get_unaligned_le32(&reg->file_size);
977                 }
978
979                 dent->type = FS_DT_REG;
980                 break;
981         case SQFS_BLKDEV_TYPE:
982         case SQFS_CHRDEV_TYPE:
983         case SQFS_LBLKDEV_TYPE:
984         case SQFS_LCHRDEV_TYPE:
985         case SQFS_FIFO_TYPE:
986         case SQFS_SOCKET_TYPE:
987         case SQFS_LFIFO_TYPE:
988         case SQFS_LSOCKET_TYPE:
989                 dent->type = SQFS_MISC_ENTRY_TYPE;
990                 break;
991         case SQFS_SYMLINK_TYPE:
992         case SQFS_LSYMLINK_TYPE:
993                 dent->type = FS_DT_LNK;
994                 break;
995         default:
996                 return -SQFS_STOP_READDIR;
997         }
998
999         /* Set entry name */
1000         strncpy(dent->name, dirs->entry->name, dirs->entry->name_size + 1);
1001         dent->name[dirs->entry->name_size + 1] = '\0';
1002
1003         offset = dirs->entry->name_size + 1 + SQFS_ENTRY_BASE_LENGTH;
1004         dirs->entry_count--;
1005
1006         /* Decrement size to be read */
1007         if (dirs->size > offset)
1008                 dirs->size -= offset;
1009         else
1010                 dirs->size = 0;
1011
1012         /* Keep a reference to the current entry before incrementing it */
1013         dirs->table += offset;
1014
1015         *dentp = dent;
1016
1017         return 0;
1018 }
1019
1020 int sqfs_probe(struct blk_desc *fs_dev_desc, struct disk_partition *fs_partition)
1021 {
1022         struct squashfs_super_block *sblk;
1023         int ret;
1024
1025         ctxt.cur_dev = fs_dev_desc;
1026         ctxt.cur_part_info = *fs_partition;
1027
1028         ret = sqfs_read_sblk(&sblk);
1029         if (ret)
1030                 return ret;
1031
1032         /* Make sure it has a valid SquashFS magic number*/
1033         if (get_unaligned_le32(&sblk->s_magic) != SQFS_MAGIC_NUMBER) {
1034                 printf("Bad magic number for SquashFS image.\n");
1035                 ctxt.cur_dev = NULL;
1036                 return -EINVAL;
1037         }
1038
1039         ctxt.sblk = sblk;
1040
1041         ret = sqfs_decompressor_init(&ctxt);
1042
1043         if (ret) {
1044                 ctxt.cur_dev = NULL;
1045                 free(ctxt.sblk);
1046                 return -EINVAL;
1047         }
1048
1049         return 0;
1050 }
1051
1052 static char *sqfs_basename(char *path)
1053 {
1054         char *fname;
1055
1056         fname = path + strlen(path) - 1;
1057         while (fname >= path) {
1058                 if (*fname == '/') {
1059                         fname++;
1060                         break;
1061                 }
1062
1063                 fname--;
1064         }
1065
1066         return fname;
1067 }
1068
1069 static char *sqfs_dirname(char *path)
1070 {
1071         char *fname;
1072
1073         fname = sqfs_basename(path);
1074         --fname;
1075         *fname = '\0';
1076
1077         return path;
1078 }
1079
1080 /*
1081  * Takes a path to file and splits it in two parts: the filename itself and the
1082  * directory's path, e.g.:
1083  * path: /path/to/file.txt
1084  * file: file.txt
1085  * dir: /path/to
1086  */
1087 static int sqfs_split_path(char **file, char **dir, const char *path)
1088 {
1089         char *dirc, *basec, *bname, *dname, *tmp_path;
1090         int ret = 0;
1091
1092         /* check for first slash in path*/
1093         if (path[0] == '/') {
1094                 tmp_path = strdup(path);
1095                 if (!tmp_path)
1096                         return -ENOMEM;
1097         } else {
1098                 tmp_path = malloc(strlen(path) + 2);
1099                 if (!tmp_path)
1100                         return -ENOMEM;
1101                 tmp_path[0] = '/';
1102                 strcpy(tmp_path + 1, path);
1103         }
1104
1105         /* String duplicates */
1106         dirc = strdup(tmp_path);
1107         if (!dirc) {
1108                 ret = -ENOMEM;
1109                 goto free_tmp;
1110         }
1111
1112         basec = strdup(tmp_path);
1113         if (!basec) {
1114                 ret = -ENOMEM;
1115                 goto free_dirc;
1116         }
1117
1118         dname = sqfs_dirname(dirc);
1119         bname = sqfs_basename(basec);
1120
1121         *file = strdup(bname);
1122
1123         if (!*file) {
1124                 ret = -ENOMEM;
1125                 goto free_basec;
1126         }
1127
1128         if (*dname == '\0') {
1129                 *dir = malloc(2);
1130                 if (!*dir) {
1131                         ret = -ENOMEM;
1132                         goto free_basec;
1133                 }
1134
1135                 (*dir)[0] = '/';
1136                 (*dir)[1] = '\0';
1137         } else {
1138                 *dir = strdup(dname);
1139                 if (!*dir) {
1140                         ret = -ENOMEM;
1141                         goto free_basec;
1142                 }
1143         }
1144
1145 free_basec:
1146         free(basec);
1147 free_dirc:
1148         free(dirc);
1149 free_tmp:
1150         free(tmp_path);
1151
1152         return ret;
1153 }
1154
1155 static int sqfs_get_regfile_info(struct squashfs_reg_inode *reg,
1156                                  struct squashfs_file_info *finfo,
1157                                  struct squashfs_fragment_block_entry *fentry,
1158                                  __le32 blksz)
1159 {
1160         int datablk_count = 0, ret;
1161
1162         finfo->size = get_unaligned_le32(&reg->file_size);
1163         finfo->offset = get_unaligned_le32(&reg->offset);
1164         finfo->start = get_unaligned_le32(&reg->start_block);
1165         finfo->frag = SQFS_IS_FRAGMENTED(get_unaligned_le32(&reg->fragment));
1166
1167         if (finfo->frag && finfo->offset == 0xFFFFFFFF)
1168                 return -EINVAL;
1169
1170         if (finfo->size < 1 || finfo->start == 0xFFFFFFFF)
1171                 return -EINVAL;
1172
1173         if (finfo->frag) {
1174                 datablk_count = finfo->size / le32_to_cpu(blksz);
1175                 ret = sqfs_frag_lookup(get_unaligned_le32(&reg->fragment),
1176                                        fentry);
1177                 if (ret < 0)
1178                         return -EINVAL;
1179                 finfo->comp = true;
1180                 if (fentry->size < 1 || fentry->start == 0x7FFFFFFF)
1181                         return -EINVAL;
1182         } else {
1183                 datablk_count = DIV_ROUND_UP(finfo->size, le32_to_cpu(blksz));
1184         }
1185
1186         finfo->blk_sizes = malloc(datablk_count * sizeof(u32));
1187         if (!finfo->blk_sizes)
1188                 return -ENOMEM;
1189
1190         return datablk_count;
1191 }
1192
1193 static int sqfs_get_lregfile_info(struct squashfs_lreg_inode *lreg,
1194                                   struct squashfs_file_info *finfo,
1195                                   struct squashfs_fragment_block_entry *fentry,
1196                                  __le32 blksz)
1197 {
1198         int datablk_count = 0, ret;
1199
1200         finfo->size = get_unaligned_le64(&lreg->file_size);
1201         finfo->offset = get_unaligned_le32(&lreg->offset);
1202         finfo->start = get_unaligned_le64(&lreg->start_block);
1203         finfo->frag = SQFS_IS_FRAGMENTED(get_unaligned_le32(&lreg->fragment));
1204
1205         if (finfo->frag && finfo->offset == 0xFFFFFFFF)
1206                 return -EINVAL;
1207
1208         if (finfo->size < 1 || finfo->start == 0x7FFFFFFF)
1209                 return -EINVAL;
1210
1211         if (finfo->frag) {
1212                 datablk_count = finfo->size / le32_to_cpu(blksz);
1213                 ret = sqfs_frag_lookup(get_unaligned_le32(&lreg->fragment),
1214                                        fentry);
1215                 if (ret < 0)
1216                         return -EINVAL;
1217                 finfo->comp = true;
1218                 if (fentry->size < 1 || fentry->start == 0x7FFFFFFF)
1219                         return -EINVAL;
1220         } else {
1221                 datablk_count = DIV_ROUND_UP(finfo->size, le32_to_cpu(blksz));
1222         }
1223
1224         finfo->blk_sizes = malloc(datablk_count * sizeof(u32));
1225         if (!finfo->blk_sizes)
1226                 return -ENOMEM;
1227
1228         return datablk_count;
1229 }
1230
1231 int sqfs_read(const char *filename, void *buf, loff_t offset, loff_t len,
1232               loff_t *actread)
1233 {
1234         char *dir, *fragment_block, *datablock = NULL, *data_buffer = NULL;
1235         char *fragment, *file, *resolved, *data;
1236         u64 start, n_blks, table_size, data_offset, table_offset;
1237         int ret, j, i_number, datablk_count = 0;
1238         struct squashfs_super_block *sblk = ctxt.sblk;
1239         struct squashfs_fragment_block_entry frag_entry;
1240         struct squashfs_file_info finfo = {0};
1241         struct squashfs_symlink_inode *symlink;
1242         struct fs_dir_stream *dirsp = NULL;
1243         struct squashfs_dir_stream *dirs;
1244         struct squashfs_lreg_inode *lreg;
1245         struct squashfs_base_inode *base;
1246         struct squashfs_reg_inode *reg;
1247         unsigned long dest_len;
1248         struct fs_dirent *dent;
1249         unsigned char *ipos;
1250
1251         *actread = 0;
1252
1253         /*
1254          * sqfs_opendir will uncompress inode and directory tables, and will
1255          * return a pointer to the directory that contains the requested file.
1256          */
1257         sqfs_split_path(&file, &dir, filename);
1258         ret = sqfs_opendir(dir, &dirsp);
1259         if (ret) {
1260                 sqfs_closedir(dirsp);
1261                 goto free_paths;
1262         }
1263
1264         dirs = (struct squashfs_dir_stream *)dirsp;
1265
1266         /* For now, only regular files are able to be loaded */
1267         while (!sqfs_readdir(dirsp, &dent)) {
1268                 ret = strcmp(dent->name, file);
1269                 if (!ret)
1270                         break;
1271
1272                 free(dirs->entry);
1273         }
1274
1275         if (ret) {
1276                 printf("File not found.\n");
1277                 *actread = 0;
1278                 sqfs_closedir(dirsp);
1279                 ret = -ENOENT;
1280                 goto free_paths;
1281         }
1282
1283         i_number = dirs->dir_header->inode_number + dirs->entry->inode_offset;
1284         ipos = sqfs_find_inode(dirs->inode_table, i_number, sblk->inodes,
1285                                sblk->block_size);
1286
1287         base = (struct squashfs_base_inode *)ipos;
1288         switch (get_unaligned_le16(&base->inode_type)) {
1289         case SQFS_REG_TYPE:
1290                 reg = (struct squashfs_reg_inode *)ipos;
1291                 datablk_count = sqfs_get_regfile_info(reg, &finfo, &frag_entry,
1292                                                       sblk->block_size);
1293                 if (datablk_count < 0) {
1294                         ret = -EINVAL;
1295                         goto free_paths;
1296                 }
1297
1298                 memcpy(finfo.blk_sizes, ipos + sizeof(*reg),
1299                        datablk_count * sizeof(u32));
1300                 break;
1301         case SQFS_LREG_TYPE:
1302                 lreg = (struct squashfs_lreg_inode *)ipos;
1303                 datablk_count = sqfs_get_lregfile_info(lreg, &finfo,
1304                                                        &frag_entry,
1305                                                        sblk->block_size);
1306                 if (datablk_count < 0) {
1307                         ret = -EINVAL;
1308                         goto free_paths;
1309                 }
1310
1311                 memcpy(finfo.blk_sizes, ipos + sizeof(*lreg),
1312                        datablk_count * sizeof(u32));
1313                 break;
1314         case SQFS_SYMLINK_TYPE:
1315         case SQFS_LSYMLINK_TYPE:
1316                 symlink = (struct squashfs_symlink_inode *)ipos;
1317                 resolved = sqfs_resolve_symlink(symlink, filename);
1318                 ret = sqfs_read(resolved, buf, offset, len, actread);
1319                 free(resolved);
1320                 goto free_paths;
1321         case SQFS_BLKDEV_TYPE:
1322         case SQFS_CHRDEV_TYPE:
1323         case SQFS_LBLKDEV_TYPE:
1324         case SQFS_LCHRDEV_TYPE:
1325         case SQFS_FIFO_TYPE:
1326         case SQFS_SOCKET_TYPE:
1327         case SQFS_LFIFO_TYPE:
1328         case SQFS_LSOCKET_TYPE:
1329         default:
1330                 printf("Unsupported entry type\n");
1331                 ret = -EINVAL;
1332                 goto free_paths;
1333         }
1334
1335         /* If the user specifies a length, check its sanity */
1336         if (len) {
1337                 if (len > finfo.size) {
1338                         ret = -EINVAL;
1339                         goto free_paths;
1340                 }
1341
1342                 finfo.size = len;
1343         }
1344
1345         if (datablk_count) {
1346                 data_offset = finfo.start;
1347                 datablock = malloc(get_unaligned_le32(&sblk->block_size));
1348                 if (!datablock) {
1349                         ret = -ENOMEM;
1350                         goto free_paths;
1351                 }
1352         }
1353
1354         for (j = 0; j < datablk_count; j++) {
1355                 start = data_offset / ctxt.cur_dev->blksz;
1356                 table_size = SQFS_BLOCK_SIZE(finfo.blk_sizes[j]);
1357                 table_offset = data_offset - (start * ctxt.cur_dev->blksz);
1358                 n_blks = DIV_ROUND_UP(table_size + table_offset,
1359                                       ctxt.cur_dev->blksz);
1360
1361                 data_buffer = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
1362
1363                 if (!data_buffer) {
1364                         ret = -ENOMEM;
1365                         goto free_datablk;
1366                 }
1367
1368                 ret = sqfs_disk_read(start, n_blks, data_buffer);
1369                 if (ret < 0) {
1370                         /*
1371                          * Possible causes: too many data blocks or too large
1372                          * SquashFS block size. Tip: re-compile the SquashFS
1373                          * image with mksquashfs's -b <block_size> option.
1374                          */
1375                         printf("Error: too many data blocks to be read.\n");
1376                         goto free_buffer;
1377                 }
1378
1379                 data = data_buffer + table_offset;
1380
1381                 /* Load the data */
1382                 if (SQFS_COMPRESSED_BLOCK(finfo.blk_sizes[j])) {
1383                         dest_len = get_unaligned_le32(&sblk->block_size);
1384                         ret = sqfs_decompress(&ctxt, datablock, &dest_len,
1385                                               data, table_size);
1386                         if (ret)
1387                                 goto free_buffer;
1388
1389                         memcpy(buf + offset + *actread, datablock, dest_len);
1390                         *actread += dest_len;
1391                 } else {
1392                         memcpy(buf + offset + *actread, data, table_size);
1393                         *actread += table_size;
1394                 }
1395
1396                 data_offset += table_size;
1397         }
1398
1399         free(finfo.blk_sizes);
1400
1401         /*
1402          * There is no need to continue if the file is not fragmented.
1403          */
1404         if (!finfo.frag) {
1405                 ret = 0;
1406                 goto free_buffer;
1407         }
1408
1409         start = frag_entry.start / ctxt.cur_dev->blksz;
1410         table_size = SQFS_BLOCK_SIZE(frag_entry.size);
1411         table_offset = frag_entry.start - (start * ctxt.cur_dev->blksz);
1412         n_blks = DIV_ROUND_UP(table_size + table_offset, ctxt.cur_dev->blksz);
1413
1414         fragment = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
1415
1416         if (!fragment) {
1417                 ret = -ENOMEM;
1418                 goto free_buffer;
1419         }
1420
1421         ret = sqfs_disk_read(start, n_blks, fragment);
1422         if (ret < 0)
1423                 goto free_fragment;
1424
1425         /* File compressed and fragmented */
1426         if (finfo.frag && finfo.comp) {
1427                 dest_len = get_unaligned_le32(&sblk->block_size);
1428                 fragment_block = malloc(dest_len);
1429                 if (!fragment_block) {
1430                         ret = -ENOMEM;
1431                         goto free_fragment;
1432                 }
1433
1434                 ret = sqfs_decompress(&ctxt, fragment_block, &dest_len,
1435                                       (void *)fragment  + table_offset,
1436                                       frag_entry.size);
1437                 if (ret) {
1438                         free(fragment_block);
1439                         goto free_fragment;
1440                 }
1441
1442                 for (j = offset + *actread; j < finfo.size; j++) {
1443                         memcpy(buf + j, &fragment_block[finfo.offset + j], 1);
1444                         (*actread)++;
1445                 }
1446
1447                 free(fragment_block);
1448
1449         } else if (finfo.frag && !finfo.comp) {
1450                 fragment_block = (void *)fragment + table_offset;
1451
1452                 for (j = offset + *actread; j < finfo.size; j++) {
1453                         memcpy(buf + j, &fragment_block[finfo.offset + j], 1);
1454                         (*actread)++;
1455                 }
1456         }
1457
1458 free_fragment:
1459         free(fragment);
1460 free_buffer:
1461         if (datablk_count)
1462                 free(data_buffer);
1463 free_datablk:
1464         if (datablk_count)
1465                 free(datablock);
1466 free_paths:
1467         free(file);
1468         free(dir);
1469
1470         return ret;
1471 }
1472
1473 int sqfs_size(const char *filename, loff_t *size)
1474 {
1475         struct squashfs_super_block *sblk = ctxt.sblk;
1476         struct squashfs_symlink_inode *symlink;
1477         struct fs_dir_stream *dirsp = NULL;
1478         struct squashfs_base_inode *base;
1479         struct squashfs_dir_stream *dirs;
1480         struct squashfs_lreg_inode *lreg;
1481         struct squashfs_reg_inode *reg;
1482         char *dir, *file, *resolved;
1483         struct fs_dirent *dent;
1484         unsigned char *ipos;
1485         int ret, i_number;
1486
1487         sqfs_split_path(&file, &dir, filename);
1488         /*
1489          * sqfs_opendir will uncompress inode and directory tables, and will
1490          * return a pointer to the directory that contains the requested file.
1491          */
1492         ret = sqfs_opendir(dir, &dirsp);
1493         if (ret) {
1494                 sqfs_closedir(dirsp);
1495                 ret = -EINVAL;
1496                 goto free_strings;
1497         }
1498
1499         dirs = (struct squashfs_dir_stream *)dirsp;
1500
1501         while (!sqfs_readdir(dirsp, &dent)) {
1502                 ret = strcmp(dent->name, file);
1503                 if (!ret)
1504                         break;
1505                 free(dirs->entry);
1506         }
1507
1508         if (ret) {
1509                 printf("File not found.\n");
1510                 *size = 0;
1511                 ret = -EINVAL;
1512                 goto free_strings;
1513         }
1514
1515         i_number = dirs->dir_header->inode_number + dirs->entry->inode_offset;
1516         ipos = sqfs_find_inode(dirs->inode_table, i_number, sblk->inodes,
1517                                sblk->block_size);
1518         free(dirs->entry);
1519
1520         base = (struct squashfs_base_inode *)ipos;
1521         switch (get_unaligned_le16(&base->inode_type)) {
1522         case SQFS_REG_TYPE:
1523                 reg = (struct squashfs_reg_inode *)ipos;
1524                 *size = get_unaligned_le32(&reg->file_size);
1525                 break;
1526         case SQFS_LREG_TYPE:
1527                 lreg = (struct squashfs_lreg_inode *)ipos;
1528                 *size = get_unaligned_le64(&lreg->file_size);
1529                 break;
1530         case SQFS_SYMLINK_TYPE:
1531         case SQFS_LSYMLINK_TYPE:
1532                 symlink = (struct squashfs_symlink_inode *)ipos;
1533                 resolved = sqfs_resolve_symlink(symlink, filename);
1534                 ret = sqfs_size(resolved, size);
1535                 free(resolved);
1536                 break;
1537         case SQFS_BLKDEV_TYPE:
1538         case SQFS_CHRDEV_TYPE:
1539         case SQFS_LBLKDEV_TYPE:
1540         case SQFS_LCHRDEV_TYPE:
1541         case SQFS_FIFO_TYPE:
1542         case SQFS_SOCKET_TYPE:
1543         case SQFS_LFIFO_TYPE:
1544         case SQFS_LSOCKET_TYPE:
1545         default:
1546                 printf("Unable to recover entry's size.\n");
1547                 *size = 0;
1548                 ret = -EINVAL;
1549                 break;
1550         }
1551
1552 free_strings:
1553         free(dir);
1554         free(file);
1555
1556         sqfs_closedir(dirsp);
1557
1558         return ret;
1559 }
1560
1561 void sqfs_close(void)
1562 {
1563         free(ctxt.sblk);
1564         ctxt.cur_dev = NULL;
1565         sqfs_decompressor_cleanup(&ctxt);
1566 }
1567
1568 void sqfs_closedir(struct fs_dir_stream *dirs)
1569 {
1570         struct squashfs_dir_stream *sqfs_dirs;
1571
1572         sqfs_dirs = (struct squashfs_dir_stream *)dirs;
1573         free(sqfs_dirs->inode_table);
1574         free(sqfs_dirs->dir_table);
1575         free(sqfs_dirs->dir_header);
1576         free(sqfs_dirs);
1577 }