fs/squashfs: sqfs_opendir: fix some memory leaks and dangling pointers
[platform/kernel/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, ret = 0, metablks_count;
816         struct squashfs_dir_stream *dirs;
817         char **token_list, *path;
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 free_dirs;
835         }
836
837         metablks_count = sqfs_read_directory_table(&dir_table, &pos_list);
838         if (metablks_count < 1) {
839                 ret = -EINVAL;
840                 goto free_inode_table;
841         }
842
843         /* Tokenize filename */
844         token_count = sqfs_count_tokens(filename);
845         if (token_count < 0) {
846                 ret = -EINVAL;
847                 goto free_inode_table;
848         }
849
850         path = strdup(filename);
851         if (!path) {
852                 ret = -EINVAL;
853                 goto free_inode_table;
854         }
855
856         token_list = malloc(token_count * sizeof(char *));
857         if (!token_list) {
858                 ret = -EINVAL;
859                 goto free_path;
860         }
861
862         /* Fill tokens list */
863         ret = sqfs_tokenize(token_list, token_count, path);
864         if (ret)
865                 goto free_tokens;
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 free_tokens;
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 free_tokens:
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         free(path);
900 free_inode_table:
901         if (ret)
902                 free(inode_table);
903 free_dirs:
904         if (ret)
905                 free(dirs);
906
907         return ret;
908 }
909
910 int sqfs_readdir(struct fs_dir_stream *fs_dirs, struct fs_dirent **dentp)
911 {
912         struct squashfs_super_block *sblk = ctxt.sblk;
913         struct squashfs_dir_stream *dirs;
914         struct squashfs_lreg_inode *lreg;
915         struct squashfs_base_inode *base;
916         struct squashfs_reg_inode *reg;
917         int i_number, offset = 0, ret;
918         struct fs_dirent *dent;
919         unsigned char *ipos;
920
921         dirs = (struct squashfs_dir_stream *)fs_dirs;
922         if (!dirs->size) {
923                 *dentp = NULL;
924                 return -SQFS_STOP_READDIR;
925         }
926
927         dent = &dirs->dentp;
928
929         if (!dirs->entry_count) {
930                 if (dirs->size > SQFS_DIR_HEADER_SIZE) {
931                         dirs->size -= SQFS_DIR_HEADER_SIZE;
932                 } else {
933                         *dentp = NULL;
934                         dirs->size = 0;
935                         return -SQFS_STOP_READDIR;
936                 }
937
938                 if (dirs->size > SQFS_EMPTY_FILE_SIZE) {
939                         /* Read follow-up (emitted) dir. header */
940                         memcpy(dirs->dir_header, dirs->table,
941                                SQFS_DIR_HEADER_SIZE);
942                         dirs->entry_count = dirs->dir_header->count + 1;
943                         ret = sqfs_read_entry(&dirs->entry, dirs->table +
944                                               SQFS_DIR_HEADER_SIZE);
945                         if (ret)
946                                 return -SQFS_STOP_READDIR;
947
948                         dirs->table += SQFS_DIR_HEADER_SIZE;
949                 }
950         } else {
951                 ret = sqfs_read_entry(&dirs->entry, dirs->table);
952                 if (ret)
953                         return -SQFS_STOP_READDIR;
954         }
955
956         i_number = dirs->dir_header->inode_number + dirs->entry->inode_offset;
957         ipos = sqfs_find_inode(dirs->inode_table, i_number, sblk->inodes,
958                                sblk->block_size);
959
960         base = (struct squashfs_base_inode *)ipos;
961
962         /* Set entry type and size */
963         switch (dirs->entry->type) {
964         case SQFS_DIR_TYPE:
965         case SQFS_LDIR_TYPE:
966                 dent->type = FS_DT_DIR;
967                 break;
968         case SQFS_REG_TYPE:
969         case SQFS_LREG_TYPE:
970                 /*
971                  * Entries do not differentiate extended from regular types, so
972                  * it needs to be verified manually.
973                  */
974                 if (get_unaligned_le16(&base->inode_type) == SQFS_LREG_TYPE) {
975                         lreg = (struct squashfs_lreg_inode *)ipos;
976                         dent->size = get_unaligned_le64(&lreg->file_size);
977                 } else {
978                         reg = (struct squashfs_reg_inode *)ipos;
979                         dent->size = get_unaligned_le32(&reg->file_size);
980                 }
981
982                 dent->type = FS_DT_REG;
983                 break;
984         case SQFS_BLKDEV_TYPE:
985         case SQFS_CHRDEV_TYPE:
986         case SQFS_LBLKDEV_TYPE:
987         case SQFS_LCHRDEV_TYPE:
988         case SQFS_FIFO_TYPE:
989         case SQFS_SOCKET_TYPE:
990         case SQFS_LFIFO_TYPE:
991         case SQFS_LSOCKET_TYPE:
992                 dent->type = SQFS_MISC_ENTRY_TYPE;
993                 break;
994         case SQFS_SYMLINK_TYPE:
995         case SQFS_LSYMLINK_TYPE:
996                 dent->type = FS_DT_LNK;
997                 break;
998         default:
999                 return -SQFS_STOP_READDIR;
1000         }
1001
1002         /* Set entry name */
1003         strncpy(dent->name, dirs->entry->name, dirs->entry->name_size + 1);
1004         dent->name[dirs->entry->name_size + 1] = '\0';
1005
1006         offset = dirs->entry->name_size + 1 + SQFS_ENTRY_BASE_LENGTH;
1007         dirs->entry_count--;
1008
1009         /* Decrement size to be read */
1010         if (dirs->size > offset)
1011                 dirs->size -= offset;
1012         else
1013                 dirs->size = 0;
1014
1015         /* Keep a reference to the current entry before incrementing it */
1016         dirs->table += offset;
1017
1018         *dentp = dent;
1019
1020         return 0;
1021 }
1022
1023 int sqfs_probe(struct blk_desc *fs_dev_desc, struct disk_partition *fs_partition)
1024 {
1025         struct squashfs_super_block *sblk;
1026         int ret;
1027
1028         ctxt.cur_dev = fs_dev_desc;
1029         ctxt.cur_part_info = *fs_partition;
1030
1031         ret = sqfs_read_sblk(&sblk);
1032         if (ret)
1033                 return ret;
1034
1035         /* Make sure it has a valid SquashFS magic number*/
1036         if (get_unaligned_le32(&sblk->s_magic) != SQFS_MAGIC_NUMBER) {
1037                 printf("Bad magic number for SquashFS image.\n");
1038                 ctxt.cur_dev = NULL;
1039                 return -EINVAL;
1040         }
1041
1042         ctxt.sblk = sblk;
1043
1044         ret = sqfs_decompressor_init(&ctxt);
1045
1046         if (ret) {
1047                 ctxt.cur_dev = NULL;
1048                 free(ctxt.sblk);
1049                 return -EINVAL;
1050         }
1051
1052         return 0;
1053 }
1054
1055 static char *sqfs_basename(char *path)
1056 {
1057         char *fname;
1058
1059         fname = path + strlen(path) - 1;
1060         while (fname >= path) {
1061                 if (*fname == '/') {
1062                         fname++;
1063                         break;
1064                 }
1065
1066                 fname--;
1067         }
1068
1069         return fname;
1070 }
1071
1072 static char *sqfs_dirname(char *path)
1073 {
1074         char *fname;
1075
1076         fname = sqfs_basename(path);
1077         --fname;
1078         *fname = '\0';
1079
1080         return path;
1081 }
1082
1083 /*
1084  * Takes a path to file and splits it in two parts: the filename itself and the
1085  * directory's path, e.g.:
1086  * path: /path/to/file.txt
1087  * file: file.txt
1088  * dir: /path/to
1089  */
1090 static int sqfs_split_path(char **file, char **dir, const char *path)
1091 {
1092         char *dirc, *basec, *bname, *dname, *tmp_path;
1093         int ret = 0;
1094
1095         /* check for first slash in path*/
1096         if (path[0] == '/') {
1097                 tmp_path = strdup(path);
1098                 if (!tmp_path)
1099                         return -ENOMEM;
1100         } else {
1101                 tmp_path = malloc(strlen(path) + 2);
1102                 if (!tmp_path)
1103                         return -ENOMEM;
1104                 tmp_path[0] = '/';
1105                 strcpy(tmp_path + 1, path);
1106         }
1107
1108         /* String duplicates */
1109         dirc = strdup(tmp_path);
1110         if (!dirc) {
1111                 ret = -ENOMEM;
1112                 goto free_tmp;
1113         }
1114
1115         basec = strdup(tmp_path);
1116         if (!basec) {
1117                 ret = -ENOMEM;
1118                 goto free_dirc;
1119         }
1120
1121         dname = sqfs_dirname(dirc);
1122         bname = sqfs_basename(basec);
1123
1124         *file = strdup(bname);
1125
1126         if (!*file) {
1127                 ret = -ENOMEM;
1128                 goto free_basec;
1129         }
1130
1131         if (*dname == '\0') {
1132                 *dir = malloc(2);
1133                 if (!*dir) {
1134                         ret = -ENOMEM;
1135                         goto free_basec;
1136                 }
1137
1138                 (*dir)[0] = '/';
1139                 (*dir)[1] = '\0';
1140         } else {
1141                 *dir = strdup(dname);
1142                 if (!*dir) {
1143                         ret = -ENOMEM;
1144                         goto free_basec;
1145                 }
1146         }
1147
1148 free_basec:
1149         free(basec);
1150 free_dirc:
1151         free(dirc);
1152 free_tmp:
1153         free(tmp_path);
1154
1155         return ret;
1156 }
1157
1158 static int sqfs_get_regfile_info(struct squashfs_reg_inode *reg,
1159                                  struct squashfs_file_info *finfo,
1160                                  struct squashfs_fragment_block_entry *fentry,
1161                                  __le32 blksz)
1162 {
1163         int datablk_count = 0, ret;
1164
1165         finfo->size = get_unaligned_le32(&reg->file_size);
1166         finfo->offset = get_unaligned_le32(&reg->offset);
1167         finfo->start = get_unaligned_le32(&reg->start_block);
1168         finfo->frag = SQFS_IS_FRAGMENTED(get_unaligned_le32(&reg->fragment));
1169
1170         if (finfo->frag && finfo->offset == 0xFFFFFFFF)
1171                 return -EINVAL;
1172
1173         if (finfo->size < 1 || finfo->start == 0xFFFFFFFF)
1174                 return -EINVAL;
1175
1176         if (finfo->frag) {
1177                 datablk_count = finfo->size / le32_to_cpu(blksz);
1178                 ret = sqfs_frag_lookup(get_unaligned_le32(&reg->fragment),
1179                                        fentry);
1180                 if (ret < 0)
1181                         return -EINVAL;
1182                 finfo->comp = true;
1183                 if (fentry->size < 1 || fentry->start == 0x7FFFFFFF)
1184                         return -EINVAL;
1185         } else {
1186                 datablk_count = DIV_ROUND_UP(finfo->size, le32_to_cpu(blksz));
1187         }
1188
1189         finfo->blk_sizes = malloc(datablk_count * sizeof(u32));
1190         if (!finfo->blk_sizes)
1191                 return -ENOMEM;
1192
1193         return datablk_count;
1194 }
1195
1196 static int sqfs_get_lregfile_info(struct squashfs_lreg_inode *lreg,
1197                                   struct squashfs_file_info *finfo,
1198                                   struct squashfs_fragment_block_entry *fentry,
1199                                  __le32 blksz)
1200 {
1201         int datablk_count = 0, ret;
1202
1203         finfo->size = get_unaligned_le64(&lreg->file_size);
1204         finfo->offset = get_unaligned_le32(&lreg->offset);
1205         finfo->start = get_unaligned_le64(&lreg->start_block);
1206         finfo->frag = SQFS_IS_FRAGMENTED(get_unaligned_le32(&lreg->fragment));
1207
1208         if (finfo->frag && finfo->offset == 0xFFFFFFFF)
1209                 return -EINVAL;
1210
1211         if (finfo->size < 1 || finfo->start == 0x7FFFFFFF)
1212                 return -EINVAL;
1213
1214         if (finfo->frag) {
1215                 datablk_count = finfo->size / le32_to_cpu(blksz);
1216                 ret = sqfs_frag_lookup(get_unaligned_le32(&lreg->fragment),
1217                                        fentry);
1218                 if (ret < 0)
1219                         return -EINVAL;
1220                 finfo->comp = true;
1221                 if (fentry->size < 1 || fentry->start == 0x7FFFFFFF)
1222                         return -EINVAL;
1223         } else {
1224                 datablk_count = DIV_ROUND_UP(finfo->size, le32_to_cpu(blksz));
1225         }
1226
1227         finfo->blk_sizes = malloc(datablk_count * sizeof(u32));
1228         if (!finfo->blk_sizes)
1229                 return -ENOMEM;
1230
1231         return datablk_count;
1232 }
1233
1234 int sqfs_read(const char *filename, void *buf, loff_t offset, loff_t len,
1235               loff_t *actread)
1236 {
1237         char *dir, *fragment_block, *datablock = NULL, *data_buffer = NULL;
1238         char *fragment, *file, *resolved, *data;
1239         u64 start, n_blks, table_size, data_offset, table_offset;
1240         int ret, j, i_number, datablk_count = 0;
1241         struct squashfs_super_block *sblk = ctxt.sblk;
1242         struct squashfs_fragment_block_entry frag_entry;
1243         struct squashfs_file_info finfo = {0};
1244         struct squashfs_symlink_inode *symlink;
1245         struct fs_dir_stream *dirsp = NULL;
1246         struct squashfs_dir_stream *dirs;
1247         struct squashfs_lreg_inode *lreg;
1248         struct squashfs_base_inode *base;
1249         struct squashfs_reg_inode *reg;
1250         unsigned long dest_len;
1251         struct fs_dirent *dent;
1252         unsigned char *ipos;
1253
1254         *actread = 0;
1255
1256         /*
1257          * sqfs_opendir will uncompress inode and directory tables, and will
1258          * return a pointer to the directory that contains the requested file.
1259          */
1260         sqfs_split_path(&file, &dir, filename);
1261         ret = sqfs_opendir(dir, &dirsp);
1262         if (ret) {
1263                 sqfs_closedir(dirsp);
1264                 goto free_paths;
1265         }
1266
1267         dirs = (struct squashfs_dir_stream *)dirsp;
1268
1269         /* For now, only regular files are able to be loaded */
1270         while (!sqfs_readdir(dirsp, &dent)) {
1271                 ret = strcmp(dent->name, file);
1272                 if (!ret)
1273                         break;
1274
1275                 free(dirs->entry);
1276         }
1277
1278         if (ret) {
1279                 printf("File not found.\n");
1280                 *actread = 0;
1281                 sqfs_closedir(dirsp);
1282                 ret = -ENOENT;
1283                 goto free_paths;
1284         }
1285
1286         i_number = dirs->dir_header->inode_number + dirs->entry->inode_offset;
1287         ipos = sqfs_find_inode(dirs->inode_table, i_number, sblk->inodes,
1288                                sblk->block_size);
1289
1290         base = (struct squashfs_base_inode *)ipos;
1291         switch (get_unaligned_le16(&base->inode_type)) {
1292         case SQFS_REG_TYPE:
1293                 reg = (struct squashfs_reg_inode *)ipos;
1294                 datablk_count = sqfs_get_regfile_info(reg, &finfo, &frag_entry,
1295                                                       sblk->block_size);
1296                 if (datablk_count < 0) {
1297                         ret = -EINVAL;
1298                         goto free_paths;
1299                 }
1300
1301                 memcpy(finfo.blk_sizes, ipos + sizeof(*reg),
1302                        datablk_count * sizeof(u32));
1303                 break;
1304         case SQFS_LREG_TYPE:
1305                 lreg = (struct squashfs_lreg_inode *)ipos;
1306                 datablk_count = sqfs_get_lregfile_info(lreg, &finfo,
1307                                                        &frag_entry,
1308                                                        sblk->block_size);
1309                 if (datablk_count < 0) {
1310                         ret = -EINVAL;
1311                         goto free_paths;
1312                 }
1313
1314                 memcpy(finfo.blk_sizes, ipos + sizeof(*lreg),
1315                        datablk_count * sizeof(u32));
1316                 break;
1317         case SQFS_SYMLINK_TYPE:
1318         case SQFS_LSYMLINK_TYPE:
1319                 symlink = (struct squashfs_symlink_inode *)ipos;
1320                 resolved = sqfs_resolve_symlink(symlink, filename);
1321                 ret = sqfs_read(resolved, buf, offset, len, actread);
1322                 free(resolved);
1323                 goto free_paths;
1324         case SQFS_BLKDEV_TYPE:
1325         case SQFS_CHRDEV_TYPE:
1326         case SQFS_LBLKDEV_TYPE:
1327         case SQFS_LCHRDEV_TYPE:
1328         case SQFS_FIFO_TYPE:
1329         case SQFS_SOCKET_TYPE:
1330         case SQFS_LFIFO_TYPE:
1331         case SQFS_LSOCKET_TYPE:
1332         default:
1333                 printf("Unsupported entry type\n");
1334                 ret = -EINVAL;
1335                 goto free_paths;
1336         }
1337
1338         /* If the user specifies a length, check its sanity */
1339         if (len) {
1340                 if (len > finfo.size) {
1341                         ret = -EINVAL;
1342                         goto free_paths;
1343                 }
1344
1345                 finfo.size = len;
1346         }
1347
1348         if (datablk_count) {
1349                 data_offset = finfo.start;
1350                 datablock = malloc(get_unaligned_le32(&sblk->block_size));
1351                 if (!datablock) {
1352                         ret = -ENOMEM;
1353                         goto free_paths;
1354                 }
1355         }
1356
1357         for (j = 0; j < datablk_count; j++) {
1358                 start = data_offset / ctxt.cur_dev->blksz;
1359                 table_size = SQFS_BLOCK_SIZE(finfo.blk_sizes[j]);
1360                 table_offset = data_offset - (start * ctxt.cur_dev->blksz);
1361                 n_blks = DIV_ROUND_UP(table_size + table_offset,
1362                                       ctxt.cur_dev->blksz);
1363
1364                 data_buffer = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
1365
1366                 if (!data_buffer) {
1367                         ret = -ENOMEM;
1368                         goto free_datablk;
1369                 }
1370
1371                 ret = sqfs_disk_read(start, n_blks, data_buffer);
1372                 if (ret < 0) {
1373                         /*
1374                          * Possible causes: too many data blocks or too large
1375                          * SquashFS block size. Tip: re-compile the SquashFS
1376                          * image with mksquashfs's -b <block_size> option.
1377                          */
1378                         printf("Error: too many data blocks to be read.\n");
1379                         goto free_buffer;
1380                 }
1381
1382                 data = data_buffer + table_offset;
1383
1384                 /* Load the data */
1385                 if (SQFS_COMPRESSED_BLOCK(finfo.blk_sizes[j])) {
1386                         dest_len = get_unaligned_le32(&sblk->block_size);
1387                         ret = sqfs_decompress(&ctxt, datablock, &dest_len,
1388                                               data, table_size);
1389                         if (ret)
1390                                 goto free_buffer;
1391
1392                         memcpy(buf + offset + *actread, datablock, dest_len);
1393                         *actread += dest_len;
1394                 } else {
1395                         memcpy(buf + offset + *actread, data, table_size);
1396                         *actread += table_size;
1397                 }
1398
1399                 data_offset += table_size;
1400         }
1401
1402         free(finfo.blk_sizes);
1403
1404         /*
1405          * There is no need to continue if the file is not fragmented.
1406          */
1407         if (!finfo.frag) {
1408                 ret = 0;
1409                 goto free_buffer;
1410         }
1411
1412         start = frag_entry.start / ctxt.cur_dev->blksz;
1413         table_size = SQFS_BLOCK_SIZE(frag_entry.size);
1414         table_offset = frag_entry.start - (start * ctxt.cur_dev->blksz);
1415         n_blks = DIV_ROUND_UP(table_size + table_offset, ctxt.cur_dev->blksz);
1416
1417         fragment = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
1418
1419         if (!fragment) {
1420                 ret = -ENOMEM;
1421                 goto free_buffer;
1422         }
1423
1424         ret = sqfs_disk_read(start, n_blks, fragment);
1425         if (ret < 0)
1426                 goto free_fragment;
1427
1428         /* File compressed and fragmented */
1429         if (finfo.frag && finfo.comp) {
1430                 dest_len = get_unaligned_le32(&sblk->block_size);
1431                 fragment_block = malloc(dest_len);
1432                 if (!fragment_block) {
1433                         ret = -ENOMEM;
1434                         goto free_fragment;
1435                 }
1436
1437                 ret = sqfs_decompress(&ctxt, fragment_block, &dest_len,
1438                                       (void *)fragment  + table_offset,
1439                                       frag_entry.size);
1440                 if (ret) {
1441                         free(fragment_block);
1442                         goto free_fragment;
1443                 }
1444
1445                 for (j = offset + *actread; j < finfo.size; j++) {
1446                         memcpy(buf + j, &fragment_block[finfo.offset + j], 1);
1447                         (*actread)++;
1448                 }
1449
1450                 free(fragment_block);
1451
1452         } else if (finfo.frag && !finfo.comp) {
1453                 fragment_block = (void *)fragment + table_offset;
1454
1455                 for (j = offset + *actread; j < finfo.size; j++) {
1456                         memcpy(buf + j, &fragment_block[finfo.offset + j], 1);
1457                         (*actread)++;
1458                 }
1459         }
1460
1461 free_fragment:
1462         free(fragment);
1463 free_buffer:
1464         if (datablk_count)
1465                 free(data_buffer);
1466 free_datablk:
1467         if (datablk_count)
1468                 free(datablock);
1469 free_paths:
1470         free(file);
1471         free(dir);
1472
1473         return ret;
1474 }
1475
1476 int sqfs_size(const char *filename, loff_t *size)
1477 {
1478         struct squashfs_super_block *sblk = ctxt.sblk;
1479         struct squashfs_symlink_inode *symlink;
1480         struct fs_dir_stream *dirsp = NULL;
1481         struct squashfs_base_inode *base;
1482         struct squashfs_dir_stream *dirs;
1483         struct squashfs_lreg_inode *lreg;
1484         struct squashfs_reg_inode *reg;
1485         char *dir, *file, *resolved;
1486         struct fs_dirent *dent;
1487         unsigned char *ipos;
1488         int ret, i_number;
1489
1490         sqfs_split_path(&file, &dir, filename);
1491         /*
1492          * sqfs_opendir will uncompress inode and directory tables, and will
1493          * return a pointer to the directory that contains the requested file.
1494          */
1495         ret = sqfs_opendir(dir, &dirsp);
1496         if (ret) {
1497                 sqfs_closedir(dirsp);
1498                 ret = -EINVAL;
1499                 goto free_strings;
1500         }
1501
1502         dirs = (struct squashfs_dir_stream *)dirsp;
1503
1504         while (!sqfs_readdir(dirsp, &dent)) {
1505                 ret = strcmp(dent->name, file);
1506                 if (!ret)
1507                         break;
1508                 free(dirs->entry);
1509         }
1510
1511         if (ret) {
1512                 printf("File not found.\n");
1513                 *size = 0;
1514                 ret = -EINVAL;
1515                 goto free_strings;
1516         }
1517
1518         i_number = dirs->dir_header->inode_number + dirs->entry->inode_offset;
1519         ipos = sqfs_find_inode(dirs->inode_table, i_number, sblk->inodes,
1520                                sblk->block_size);
1521         free(dirs->entry);
1522
1523         base = (struct squashfs_base_inode *)ipos;
1524         switch (get_unaligned_le16(&base->inode_type)) {
1525         case SQFS_REG_TYPE:
1526                 reg = (struct squashfs_reg_inode *)ipos;
1527                 *size = get_unaligned_le32(&reg->file_size);
1528                 break;
1529         case SQFS_LREG_TYPE:
1530                 lreg = (struct squashfs_lreg_inode *)ipos;
1531                 *size = get_unaligned_le64(&lreg->file_size);
1532                 break;
1533         case SQFS_SYMLINK_TYPE:
1534         case SQFS_LSYMLINK_TYPE:
1535                 symlink = (struct squashfs_symlink_inode *)ipos;
1536                 resolved = sqfs_resolve_symlink(symlink, filename);
1537                 ret = sqfs_size(resolved, size);
1538                 free(resolved);
1539                 break;
1540         case SQFS_BLKDEV_TYPE:
1541         case SQFS_CHRDEV_TYPE:
1542         case SQFS_LBLKDEV_TYPE:
1543         case SQFS_LCHRDEV_TYPE:
1544         case SQFS_FIFO_TYPE:
1545         case SQFS_SOCKET_TYPE:
1546         case SQFS_LFIFO_TYPE:
1547         case SQFS_LSOCKET_TYPE:
1548         default:
1549                 printf("Unable to recover entry's size.\n");
1550                 *size = 0;
1551                 ret = -EINVAL;
1552                 break;
1553         }
1554
1555 free_strings:
1556         free(dir);
1557         free(file);
1558
1559         sqfs_closedir(dirsp);
1560
1561         return ret;
1562 }
1563
1564 void sqfs_close(void)
1565 {
1566         free(ctxt.sblk);
1567         ctxt.cur_dev = NULL;
1568         sqfs_decompressor_cleanup(&ctxt);
1569 }
1570
1571 void sqfs_closedir(struct fs_dir_stream *dirs)
1572 {
1573         struct squashfs_dir_stream *sqfs_dirs;
1574
1575         sqfs_dirs = (struct squashfs_dir_stream *)dirs;
1576         free(sqfs_dirs->inode_table);
1577         free(sqfs_dirs->dir_table);
1578         free(sqfs_dirs->dir_header);
1579 }