blob: f41deece0ae6c7d79fe2d5484e50d350e442b679 [file] [log] [blame]
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001// 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
Joao Marcos Costa29da3742020-07-30 15:33:47 +020026static struct squashfs_ctxt ctxt;
27
28static 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
44static 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
58static 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 */
83static 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 */
98static 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;
Joao Marcos Costab87fd012020-08-18 17:17:22 +0200107 u16 header;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200108
Richard Genoud07726e12020-11-03 12:11:15 +0100109 metadata_buffer = NULL;
110 entries = NULL;
111 table = NULL;
112
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200113 if (inode_fragment_index >= get_unaligned_le32(&sblk->fragments))
114 return -EINVAL;
115
116 start = get_unaligned_le64(&sblk->fragment_table_start) /
117 ctxt.cur_dev->blksz;
118 n_blks = sqfs_calc_n_blks(sblk->fragment_table_start,
119 sblk->export_table_start,
120 &table_offset);
121
122 /* Allocate a proper sized buffer to store the fragment index table */
123 table = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
Richard Genoud07726e12020-11-03 12:11:15 +0100124 if (!table) {
125 ret = -ENOMEM;
126 goto out;
127 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200128
129 if (sqfs_disk_read(start, n_blks, table) < 0) {
Richard Genoud07726e12020-11-03 12:11:15 +0100130 ret = -EINVAL;
131 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200132 }
133
134 block = SQFS_FRAGMENT_INDEX(inode_fragment_index);
135 offset = SQFS_FRAGMENT_INDEX_OFFSET(inode_fragment_index);
136
137 /*
138 * Get the start offset of the metadata block that contains the right
139 * fragment block entry
140 */
141 start_block = get_unaligned_le64(table + table_offset + block *
142 sizeof(u64));
143
144 start = start_block / ctxt.cur_dev->blksz;
145 n_blks = sqfs_calc_n_blks(cpu_to_le64(start_block),
146 sblk->fragment_table_start, &table_offset);
147
148 metadata_buffer = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
149 if (!metadata_buffer) {
150 ret = -ENOMEM;
Richard Genoud07726e12020-11-03 12:11:15 +0100151 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200152 }
153
154 if (sqfs_disk_read(start, n_blks, metadata_buffer) < 0) {
155 ret = -EINVAL;
Richard Genoud07726e12020-11-03 12:11:15 +0100156 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200157 }
158
159 /* Every metadata block starts with a 16-bit header */
160 header = get_unaligned_le16(metadata_buffer + table_offset);
161 metadata = metadata_buffer + table_offset + SQFS_HEADER_SIZE;
162
Joao Marcos Costaf1dfe4a2020-09-11 12:21:06 +0200163 if (!metadata || !header) {
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200164 ret = -ENOMEM;
Richard Genoud07726e12020-11-03 12:11:15 +0100165 goto out;
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200166 }
167
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200168 entries = malloc(SQFS_METADATA_BLOCK_SIZE);
169 if (!entries) {
170 ret = -ENOMEM;
Richard Genoud07726e12020-11-03 12:11:15 +0100171 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200172 }
173
174 if (SQFS_COMPRESSED_METADATA(header)) {
175 src_len = SQFS_METADATA_SIZE(header);
176 dest_len = SQFS_METADATA_BLOCK_SIZE;
Joao Marcos Costab87fd012020-08-18 17:17:22 +0200177 ret = sqfs_decompress(&ctxt, entries, &dest_len, metadata,
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200178 src_len);
179 if (ret) {
180 ret = -EINVAL;
Richard Genoud07726e12020-11-03 12:11:15 +0100181 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200182 }
183 } else {
184 memcpy(entries, metadata, SQFS_METADATA_SIZE(header));
185 }
186
187 *e = entries[offset];
188 ret = SQFS_COMPRESSED_BLOCK(e->size);
189
Richard Genoud07726e12020-11-03 12:11:15 +0100190out:
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200191 free(entries);
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200192 free(metadata_buffer);
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200193 free(table);
194
195 return ret;
196}
197
198/*
199 * The entry name is a flexible array member, and we don't know its size before
200 * actually reading the entry. So we need a first copy to retrieve this size so
201 * we can finally copy the whole struct.
202 */
203static int sqfs_read_entry(struct squashfs_directory_entry **dest, void *src)
204{
205 struct squashfs_directory_entry *tmp;
206 u16 sz;
207
208 tmp = src;
209 sz = get_unaligned_le16(src + sizeof(*tmp) - sizeof(u16));
210 /*
211 * 'src' points to the begin of a directory entry, and 'sz' gets its
212 * 'name_size' member's value. name_size is actually the string
213 * length - 1, so adding 2 compensates this difference and adds space
214 * for the trailling null byte.
215 */
216 *dest = malloc(sizeof(*tmp) + sz + 2);
217 if (!*dest)
218 return -ENOMEM;
219
220 memcpy(*dest, src, sizeof(*tmp) + sz + 1);
221 (*dest)->name[sz + 1] = '\0';
222
223 return 0;
224}
225
226static int sqfs_get_tokens_length(char **tokens, int count)
227{
228 int length = 0, i;
229
230 /*
231 * 1 is added to the result of strlen to consider the slash separator
232 * between the tokens.
233 */
234 for (i = 0; i < count; i++)
235 length += strlen(tokens[i]) + 1;
236
237 return length;
238}
239
240/* Takes a token list and returns a single string with '/' as separator. */
241static char *sqfs_concat_tokens(char **token_list, int token_count)
242{
243 char *result;
244 int i, length = 0, offset = 0;
245
246 length = sqfs_get_tokens_length(token_list, token_count);
247
248 result = malloc(length + 1);
Richard Genoud489e7ae2020-11-03 12:11:08 +0100249 if (!result)
250 return NULL;
251
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200252 result[length] = '\0';
253
254 for (i = 0; i < token_count; i++) {
255 strcpy(result + offset, token_list[i]);
256 offset += strlen(token_list[i]);
257 result[offset++] = '/';
258 }
259
260 return result;
261}
262
263/*
264 * Differently from sqfs_concat_tokens, sqfs_join writes the result into a
265 * previously allocated string, and returns the number of bytes written.
266 */
267static int sqfs_join(char **strings, char *dest, int start, int end,
268 char separator)
269{
270 int i, offset = 0;
271
272 for (i = start; i < end; i++) {
273 strcpy(dest + offset, strings[i]);
274 offset += strlen(strings[i]);
275 if (i < end - 1)
276 dest[offset++] = separator;
277 }
278
279 return offset;
280}
281
282/*
283 * Fills the given token list using its size (count) and a source string (str)
284 */
285static int sqfs_tokenize(char **tokens, int count, const char *str)
286{
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200287 int i, j, ret = 0;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200288 char *aux, *strc;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200289
290 strc = strdup(str);
291 if (!strc)
292 return -ENOMEM;
293
294 if (!strcmp(strc, "/")) {
295 tokens[0] = strdup(strc);
296 if (!tokens[0]) {
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200297 ret = -ENOMEM;
298 goto free_strc;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200299 }
300 } else {
301 for (j = 0; j < count; j++) {
302 aux = strtok(!j ? strc : NULL, "/");
303 tokens[j] = strdup(aux);
304 if (!tokens[j]) {
305 for (i = 0; i < j; i++)
306 free(tokens[i]);
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200307 ret = -ENOMEM;
308 goto free_strc;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200309 }
310 }
311 }
312
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200313free_strc:
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200314 free(strc);
315
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200316 return ret;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200317}
318
319/*
320 * Remove last 'updir + 1' tokens from the base path tokens list. This leaves us
321 * with a token list containing only the tokens needed to form the resolved
322 * path, and returns the decremented size of the token list.
323 */
324static int sqfs_clean_base_path(char **base, int count, int updir)
325{
326 int i;
327
328 for (i = count - updir - 1; i < count; i++)
329 free(base[i]);
330
331 return count - updir - 1;
332}
333
334/*
335 * Given the base ("current dir.") path and the relative one, generate the
336 * absolute path.
337 */
338static char *sqfs_get_abs_path(const char *base, const char *rel)
339{
340 char **base_tokens, **rel_tokens, *resolved = NULL;
341 int ret, bc, rc, i, updir = 0, resolved_size = 0, offset = 0;
342
Richard Genoudcf9072a2020-11-03 12:11:17 +0100343 base_tokens = NULL;
344 rel_tokens = NULL;
345
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200346 /* Memory allocation for the token lists */
347 bc = sqfs_count_tokens(base);
348 rc = sqfs_count_tokens(rel);
349 if (bc < 1 || rc < 1)
350 return NULL;
351
Richard Genoudcf9072a2020-11-03 12:11:17 +0100352 base_tokens = calloc(bc, sizeof(char *));
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200353 if (!base_tokens)
354 return NULL;
355
Richard Genoudcf9072a2020-11-03 12:11:17 +0100356 rel_tokens = calloc(rc, sizeof(char *));
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200357 if (!rel_tokens)
Richard Genoudcf9072a2020-11-03 12:11:17 +0100358 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200359
360 /* Fill token lists */
361 ret = sqfs_tokenize(base_tokens, bc, base);
362 if (ret)
Richard Genoudcf9072a2020-11-03 12:11:17 +0100363 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200364
Richard Genoud9cb30362020-11-03 12:11:16 +0100365 ret = sqfs_tokenize(rel_tokens, rc, rel);
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200366 if (ret)
Richard Genoudcf9072a2020-11-03 12:11:17 +0100367 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200368
369 /* count '..' occurrences in target path */
370 for (i = 0; i < rc; i++) {
371 if (!strcmp(rel_tokens[i], ".."))
372 updir++;
373 }
374
375 /* Remove the last token and the '..' occurrences */
376 bc = sqfs_clean_base_path(base_tokens, bc, updir);
377 if (bc < 0)
Richard Genoudcf9072a2020-11-03 12:11:17 +0100378 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200379
380 /* Calculate resolved path size */
381 if (!bc)
382 resolved_size++;
383
384 resolved_size += sqfs_get_tokens_length(base_tokens, bc) +
385 sqfs_get_tokens_length(rel_tokens, rc);
386
387 resolved = malloc(resolved_size + 1);
388 if (!resolved)
Richard Genoudcf9072a2020-11-03 12:11:17 +0100389 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200390
391 /* Set resolved path */
392 memset(resolved, '\0', resolved_size + 1);
393 offset += sqfs_join(base_tokens, resolved + offset, 0, bc, '/');
394 resolved[offset++] = '/';
395 offset += sqfs_join(rel_tokens, resolved + offset, updir, rc, '/');
396
Richard Genoudcf9072a2020-11-03 12:11:17 +0100397out:
398 if (rel_tokens)
399 for (i = 0; i < rc; i++)
400 free(rel_tokens[i]);
401 if (base_tokens)
402 for (i = 0; i < bc; i++)
403 free(base_tokens[i]);
404
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200405 free(rel_tokens);
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200406 free(base_tokens);
407
408 return resolved;
409}
410
411static char *sqfs_resolve_symlink(struct squashfs_symlink_inode *sym,
412 const char *base_path)
413{
414 char *resolved, *target;
415 u32 sz;
416
417 sz = get_unaligned_le32(&sym->symlink_size);
418 target = malloc(sz + 1);
419 if (!target)
420 return NULL;
421
422 /*
423 * There is no trailling null byte in the symlink's target path, so a
424 * copy is made and a '\0' is added at its end.
425 */
426 target[sz] = '\0';
427 /* Get target name (relative path) */
428 strncpy(target, sym->symlink, sz);
429
430 /* Relative -> absolute path conversion */
431 resolved = sqfs_get_abs_path(base_path, target);
432
433 free(target);
434
435 return resolved;
436}
437
438/*
439 * m_list contains each metadata block's position, and m_count is the number of
440 * elements of m_list. Those metadata blocks come from the compressed directory
441 * table.
442 */
443static int sqfs_search_dir(struct squashfs_dir_stream *dirs, char **token_list,
444 int token_count, u32 *m_list, int m_count)
445{
446 struct squashfs_super_block *sblk = ctxt.sblk;
447 char *path, *target, **sym_tokens, *res, *rem;
Richard Genoud2762f652020-11-03 12:11:06 +0100448 int j, ret = 0, new_inode_number, offset;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200449 struct squashfs_symlink_inode *sym;
Joao Marcos Costaf1dfe4a2020-09-11 12:21:06 +0200450 struct squashfs_ldir_inode *ldir;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200451 struct squashfs_dir_inode *dir;
452 struct fs_dir_stream *dirsp;
453 struct fs_dirent *dent;
454 unsigned char *table;
455
Richard Genoud2762f652020-11-03 12:11:06 +0100456 res = NULL;
457 rem = NULL;
458 path = NULL;
459 target = NULL;
460 sym_tokens = NULL;
461
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200462 dirsp = (struct fs_dir_stream *)dirs;
463
464 /* Start by root inode */
465 table = sqfs_find_inode(dirs->inode_table, le32_to_cpu(sblk->inodes),
466 sblk->inodes, sblk->block_size);
467
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200468 dir = (struct squashfs_dir_inode *)table;
Joao Marcos Costaf1dfe4a2020-09-11 12:21:06 +0200469 ldir = (struct squashfs_ldir_inode *)table;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200470
471 /* get directory offset in directory table */
472 offset = sqfs_dir_offset(table, m_list, m_count);
473 dirs->table = &dirs->dir_table[offset];
474
475 /* Setup directory header */
476 dirs->dir_header = malloc(SQFS_DIR_HEADER_SIZE);
477 if (!dirs->dir_header)
478 return -ENOMEM;
479
480 memcpy(dirs->dir_header, dirs->table, SQFS_DIR_HEADER_SIZE);
481
482 /* Initialize squashfs_dir_stream members */
483 dirs->table += SQFS_DIR_HEADER_SIZE;
484 dirs->size = get_unaligned_le16(&dir->file_size) - SQFS_DIR_HEADER_SIZE;
485 dirs->entry_count = dirs->dir_header->count + 1;
486
487 /* No path given -> root directory */
488 if (!strcmp(token_list[0], "/")) {
489 dirs->table = &dirs->dir_table[offset];
490 memcpy(&dirs->i_dir, dir, sizeof(*dir));
491 return 0;
492 }
493
494 for (j = 0; j < token_count; j++) {
495 if (!sqfs_is_dir(get_unaligned_le16(&dir->inode_type))) {
496 printf("** Cannot find directory. **\n");
Richard Genoud2762f652020-11-03 12:11:06 +0100497 ret = -EINVAL;
498 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200499 }
500
501 while (!sqfs_readdir(dirsp, &dent)) {
502 ret = strcmp(dent->name, token_list[j]);
503 if (!ret)
504 break;
505 free(dirs->entry);
Richard Genoude405fc42020-11-03 12:11:05 +0100506 dirs->entry = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200507 }
508
509 if (ret) {
510 printf("** Cannot find directory. **\n");
Richard Genoud2762f652020-11-03 12:11:06 +0100511 ret = -EINVAL;
512 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200513 }
514
515 /* Redefine inode as the found token */
516 new_inode_number = dirs->entry->inode_offset +
517 dirs->dir_header->inode_number;
518
519 /* Get reference to inode in the inode table */
520 table = sqfs_find_inode(dirs->inode_table, new_inode_number,
521 sblk->inodes, sblk->block_size);
522 dir = (struct squashfs_dir_inode *)table;
523
524 /* Check for symbolic link and inode type sanity */
525 if (get_unaligned_le16(&dir->inode_type) == SQFS_SYMLINK_TYPE) {
526 sym = (struct squashfs_symlink_inode *)table;
527 /* Get first j + 1 tokens */
528 path = sqfs_concat_tokens(token_list, j + 1);
Richard Genoud2762f652020-11-03 12:11:06 +0100529 if (!path) {
530 ret = -ENOMEM;
531 goto out;
532 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200533 /* Resolve for these tokens */
534 target = sqfs_resolve_symlink(sym, path);
Richard Genoud2762f652020-11-03 12:11:06 +0100535 if (!target) {
536 ret = -ENOMEM;
537 goto out;
538 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200539 /* Join remaining tokens */
540 rem = sqfs_concat_tokens(token_list + j + 1, token_count -
541 j - 1);
Richard Genoud2762f652020-11-03 12:11:06 +0100542 if (!rem) {
543 ret = -ENOMEM;
544 goto out;
545 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200546 /* Concatenate remaining tokens and symlink's target */
547 res = malloc(strlen(rem) + strlen(target) + 1);
Richard Genoud2762f652020-11-03 12:11:06 +0100548 if (!res) {
549 ret = -ENOMEM;
550 goto out;
551 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200552 strcpy(res, target);
553 res[strlen(target)] = '/';
554 strcpy(res + strlen(target) + 1, rem);
555 token_count = sqfs_count_tokens(res);
556
Richard Genoud2762f652020-11-03 12:11:06 +0100557 if (token_count < 0) {
558 ret = -EINVAL;
559 goto out;
560 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200561
562 sym_tokens = malloc(token_count * sizeof(char *));
Richard Genoud2762f652020-11-03 12:11:06 +0100563 if (!sym_tokens) {
564 ret = -EINVAL;
565 goto out;
566 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200567
568 /* Fill tokens list */
569 ret = sqfs_tokenize(sym_tokens, token_count, res);
Richard Genoud2762f652020-11-03 12:11:06 +0100570 if (ret) {
571 ret = -EINVAL;
572 goto out;
573 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200574 free(dirs->entry);
Richard Genoude405fc42020-11-03 12:11:05 +0100575 dirs->entry = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200576
577 ret = sqfs_search_dir(dirs, sym_tokens, token_count,
578 m_list, m_count);
Richard Genoud2762f652020-11-03 12:11:06 +0100579 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200580 } else if (!sqfs_is_dir(get_unaligned_le16(&dir->inode_type))) {
581 printf("** Cannot find directory. **\n");
582 free(dirs->entry);
Richard Genoude405fc42020-11-03 12:11:05 +0100583 dirs->entry = NULL;
Richard Genoud2762f652020-11-03 12:11:06 +0100584 ret = -EINVAL;
585 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200586 }
587
588 /* Check if it is an extended dir. */
589 if (get_unaligned_le16(&dir->inode_type) == SQFS_LDIR_TYPE)
590 ldir = (struct squashfs_ldir_inode *)table;
591
592 /* Get dir. offset into the directory table */
593 offset = sqfs_dir_offset(table, m_list, m_count);
594 dirs->table = &dirs->dir_table[offset];
595
596 /* Copy directory header */
597 memcpy(dirs->dir_header, &dirs->dir_table[offset],
598 SQFS_DIR_HEADER_SIZE);
599
600 /* Check for empty directory */
601 if (sqfs_is_empty_dir(table)) {
602 printf("Empty directory.\n");
603 free(dirs->entry);
Richard Genoude405fc42020-11-03 12:11:05 +0100604 dirs->entry = NULL;
Richard Genoud2762f652020-11-03 12:11:06 +0100605 ret = SQFS_EMPTY_DIR;
606 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200607 }
608
609 dirs->table += SQFS_DIR_HEADER_SIZE;
610 dirs->size = get_unaligned_le16(&dir->file_size);
611 dirs->entry_count = dirs->dir_header->count + 1;
612 dirs->size -= SQFS_DIR_HEADER_SIZE;
613 free(dirs->entry);
Richard Genoude405fc42020-11-03 12:11:05 +0100614 dirs->entry = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200615 }
616
617 offset = sqfs_dir_offset(table, m_list, m_count);
618 dirs->table = &dirs->dir_table[offset];
619
620 if (get_unaligned_le16(&dir->inode_type) == SQFS_DIR_TYPE)
621 memcpy(&dirs->i_dir, dir, sizeof(*dir));
622 else
623 memcpy(&dirs->i_ldir, ldir, sizeof(*ldir));
624
Richard Genoud2762f652020-11-03 12:11:06 +0100625out:
626 free(res);
627 free(rem);
628 free(path);
629 free(target);
630 free(sym_tokens);
631 return ret;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200632}
633
634/*
635 * Inode and directory tables are stored as a series of metadata blocks, and
636 * given the compressed size of this table, we can calculate how much metadata
637 * blocks are needed to store the result of the decompression, since a
638 * decompressed metadata block should have a size of 8KiB.
639 */
640static int sqfs_count_metablks(void *table, u32 offset, int table_size)
641{
642 int count = 0, cur_size = 0, ret;
643 u32 data_size;
644 bool comp;
645
646 do {
647 ret = sqfs_read_metablock(table, offset + cur_size, &comp,
648 &data_size);
649 if (ret)
650 return -EINVAL;
651 cur_size += data_size + SQFS_HEADER_SIZE;
652 count++;
653 } while (cur_size < table_size);
654
655 return count;
656}
657
658/*
659 * Storing the metadata blocks header's positions will be useful while looking
660 * for an entry in the directory table, using the reference (index and offset)
661 * given by its inode.
662 */
663static int sqfs_get_metablk_pos(u32 *pos_list, void *table, u32 offset,
664 int metablks_count)
665{
666 u32 data_size, cur_size = 0;
667 int j, ret = 0;
668 bool comp;
669
670 if (!metablks_count)
671 return -EINVAL;
672
673 for (j = 0; j < metablks_count; j++) {
674 ret = sqfs_read_metablock(table, offset + cur_size, &comp,
675 &data_size);
676 if (ret)
677 return -EINVAL;
678
679 cur_size += data_size + SQFS_HEADER_SIZE;
680 pos_list[j] = cur_size;
681 }
682
683 return ret;
684}
685
686static int sqfs_read_inode_table(unsigned char **inode_table)
687{
688 struct squashfs_super_block *sblk = ctxt.sblk;
689 u64 start, n_blks, table_offset, table_size;
Joao Marcos Costab87fd012020-08-18 17:17:22 +0200690 int j, ret = 0, metablks_count;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200691 unsigned char *src_table, *itb;
692 u32 src_len, dest_offset = 0;
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200693 unsigned long dest_len = 0;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200694 bool compressed;
695
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200696 table_size = get_unaligned_le64(&sblk->directory_table_start) -
697 get_unaligned_le64(&sblk->inode_table_start);
698 start = get_unaligned_le64(&sblk->inode_table_start) /
699 ctxt.cur_dev->blksz;
700 n_blks = sqfs_calc_n_blks(sblk->inode_table_start,
701 sblk->directory_table_start, &table_offset);
702
703 /* Allocate a proper sized buffer (itb) to store the inode table */
704 itb = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
705 if (!itb)
706 return -ENOMEM;
707
708 if (sqfs_disk_read(start, n_blks, itb) < 0) {
709 ret = -EINVAL;
710 goto free_itb;
711 }
712
713 /* Parse inode table (metadata block) header */
714 ret = sqfs_read_metablock(itb, table_offset, &compressed, &src_len);
715 if (ret) {
716 ret = -EINVAL;
717 goto free_itb;
718 }
719
720 /* Calculate size to store the whole decompressed table */
721 metablks_count = sqfs_count_metablks(itb, table_offset, table_size);
722 if (metablks_count < 1) {
723 ret = -EINVAL;
724 goto free_itb;
725 }
726
727 *inode_table = malloc(metablks_count * SQFS_METADATA_BLOCK_SIZE);
728 if (!*inode_table) {
729 ret = -ENOMEM;
730 goto free_itb;
731 }
732
733 src_table = itb + table_offset + SQFS_HEADER_SIZE;
734
735 /* Extract compressed Inode table */
736 for (j = 0; j < metablks_count; j++) {
737 sqfs_read_metablock(itb, table_offset, &compressed, &src_len);
738 if (compressed) {
739 dest_len = SQFS_METADATA_BLOCK_SIZE;
Joao Marcos Costab87fd012020-08-18 17:17:22 +0200740 ret = sqfs_decompress(&ctxt, *inode_table +
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200741 dest_offset, &dest_len,
742 src_table, src_len);
743 if (ret) {
744 free(*inode_table);
Richard Genouda62528d2020-11-03 12:11:07 +0100745 *inode_table = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200746 goto free_itb;
747 }
748
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200749 dest_offset += dest_len;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200750 } else {
751 memcpy(*inode_table + (j * SQFS_METADATA_BLOCK_SIZE),
752 src_table, src_len);
753 }
754
755 /*
756 * Offsets to the decompression destination, to the metadata
757 * buffer 'itb' and to the decompression source, respectively.
758 */
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200759
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200760 table_offset += src_len + SQFS_HEADER_SIZE;
761 src_table += src_len + SQFS_HEADER_SIZE;
762 }
763
764free_itb:
765 free(itb);
766
767 return ret;
768}
769
770static int sqfs_read_directory_table(unsigned char **dir_table, u32 **pos_list)
771{
772 u64 start, n_blks, table_offset, table_size;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200773 struct squashfs_super_block *sblk = ctxt.sblk;
Joao Marcos Costab87fd012020-08-18 17:17:22 +0200774 int j, ret = 0, metablks_count = -1;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200775 unsigned char *src_table, *dtb;
776 u32 src_len, dest_offset = 0;
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200777 unsigned long dest_len = 0;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200778 bool compressed;
779
Richard Genoud2f9c9852020-11-03 12:11:04 +0100780 *dir_table = NULL;
781 *pos_list = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200782 /* DIRECTORY TABLE */
783 table_size = get_unaligned_le64(&sblk->fragment_table_start) -
784 get_unaligned_le64(&sblk->directory_table_start);
785 start = get_unaligned_le64(&sblk->directory_table_start) /
786 ctxt.cur_dev->blksz;
787 n_blks = sqfs_calc_n_blks(sblk->directory_table_start,
788 sblk->fragment_table_start, &table_offset);
789
790 /* Allocate a proper sized buffer (dtb) to store the directory table */
791 dtb = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
792 if (!dtb)
793 return -ENOMEM;
794
795 if (sqfs_disk_read(start, n_blks, dtb) < 0)
Richard Genoud2f9c9852020-11-03 12:11:04 +0100796 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200797
798 /* Parse directory table (metadata block) header */
799 ret = sqfs_read_metablock(dtb, table_offset, &compressed, &src_len);
800 if (ret)
Richard Genoud2f9c9852020-11-03 12:11:04 +0100801 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200802
803 /* Calculate total size to store the whole decompressed table */
804 metablks_count = sqfs_count_metablks(dtb, table_offset, table_size);
805 if (metablks_count < 1)
Richard Genoud2f9c9852020-11-03 12:11:04 +0100806 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200807
808 *dir_table = malloc(metablks_count * SQFS_METADATA_BLOCK_SIZE);
809 if (!*dir_table)
Richard Genoud2f9c9852020-11-03 12:11:04 +0100810 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200811
812 *pos_list = malloc(metablks_count * sizeof(u32));
Richard Genoud2f9c9852020-11-03 12:11:04 +0100813 if (!*pos_list)
814 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200815
816 ret = sqfs_get_metablk_pos(*pos_list, dtb, table_offset,
817 metablks_count);
818 if (ret) {
819 metablks_count = -1;
Richard Genoud2f9c9852020-11-03 12:11:04 +0100820 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200821 }
822
823 src_table = dtb + table_offset + SQFS_HEADER_SIZE;
824
825 /* Extract compressed Directory table */
826 dest_offset = 0;
827 for (j = 0; j < metablks_count; j++) {
828 sqfs_read_metablock(dtb, table_offset, &compressed, &src_len);
829 if (compressed) {
830 dest_len = SQFS_METADATA_BLOCK_SIZE;
Joao Marcos Costab87fd012020-08-18 17:17:22 +0200831 ret = sqfs_decompress(&ctxt, *dir_table +
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200832 (j * SQFS_METADATA_BLOCK_SIZE),
833 &dest_len, src_table, src_len);
834 if (ret) {
835 metablks_count = -1;
Richard Genoud2f9c9852020-11-03 12:11:04 +0100836 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200837 }
838
839 if (dest_len < SQFS_METADATA_BLOCK_SIZE) {
840 dest_offset += dest_len;
841 break;
842 }
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +0200843
844 dest_offset += dest_len;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200845 } else {
846 memcpy(*dir_table + (j * SQFS_METADATA_BLOCK_SIZE),
847 src_table, src_len);
848 }
849
850 /*
851 * Offsets to the decompression destination, to the metadata
852 * buffer 'dtb' and to the decompression source, respectively.
853 */
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200854 table_offset += src_len + SQFS_HEADER_SIZE;
855 src_table += src_len + SQFS_HEADER_SIZE;
856 }
857
Richard Genoud2f9c9852020-11-03 12:11:04 +0100858out:
859 if (metablks_count < 1) {
860 free(*dir_table);
861 free(*pos_list);
862 *dir_table = NULL;
863 *pos_list = NULL;
864 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200865 free(dtb);
866
867 return metablks_count;
868}
869
870int sqfs_opendir(const char *filename, struct fs_dir_stream **dirsp)
871{
872 unsigned char *inode_table = NULL, *dir_table = NULL;
Richard Genoud32bea5b2020-11-03 12:11:01 +0100873 int j, token_count = 0, ret = 0, metablks_count;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200874 struct squashfs_dir_stream *dirs;
Richard Genoud32bea5b2020-11-03 12:11:01 +0100875 char **token_list = NULL, *path = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200876 u32 *pos_list = NULL;
877
878 dirs = malloc(sizeof(*dirs));
879 if (!dirs)
880 return -EINVAL;
881
Richard Genoud557f08f2020-11-03 12:11:00 +0100882 /* these should be set to NULL to prevent dangling pointers */
883 dirs->dir_header = NULL;
884 dirs->entry = NULL;
885 dirs->table = NULL;
886 dirs->inode_table = NULL;
887 dirs->dir_table = NULL;
888
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200889 ret = sqfs_read_inode_table(&inode_table);
Richard Genoud557f08f2020-11-03 12:11:00 +0100890 if (ret) {
891 ret = -EINVAL;
Richard Genoud32bea5b2020-11-03 12:11:01 +0100892 goto out;
Richard Genoud557f08f2020-11-03 12:11:00 +0100893 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200894
895 metablks_count = sqfs_read_directory_table(&dir_table, &pos_list);
Richard Genoud557f08f2020-11-03 12:11:00 +0100896 if (metablks_count < 1) {
897 ret = -EINVAL;
Richard Genoud32bea5b2020-11-03 12:11:01 +0100898 goto out;
Richard Genoud557f08f2020-11-03 12:11:00 +0100899 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200900
901 /* Tokenize filename */
902 token_count = sqfs_count_tokens(filename);
Richard Genoud557f08f2020-11-03 12:11:00 +0100903 if (token_count < 0) {
904 ret = -EINVAL;
Richard Genoud32bea5b2020-11-03 12:11:01 +0100905 goto out;
Richard Genoud557f08f2020-11-03 12:11:00 +0100906 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200907
908 path = strdup(filename);
Richard Genoud557f08f2020-11-03 12:11:00 +0100909 if (!path) {
910 ret = -EINVAL;
Richard Genoud32bea5b2020-11-03 12:11:01 +0100911 goto out;
Richard Genoud557f08f2020-11-03 12:11:00 +0100912 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200913
914 token_list = malloc(token_count * sizeof(char *));
915 if (!token_list) {
916 ret = -EINVAL;
Richard Genoud32bea5b2020-11-03 12:11:01 +0100917 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200918 }
919
920 /* Fill tokens list */
921 ret = sqfs_tokenize(token_list, token_count, path);
922 if (ret)
Richard Genoud32bea5b2020-11-03 12:11:01 +0100923 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200924 /*
925 * ldir's (extended directory) size is greater than dir, so it works as
926 * a general solution for the malloc size, since 'i' is a union.
927 */
928 dirs->inode_table = inode_table;
929 dirs->dir_table = dir_table;
930 ret = sqfs_search_dir(dirs, token_list, token_count, pos_list,
931 metablks_count);
932 if (ret)
Richard Genoud32bea5b2020-11-03 12:11:01 +0100933 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200934
935 if (le16_to_cpu(dirs->i_dir.inode_type) == SQFS_DIR_TYPE)
936 dirs->size = le16_to_cpu(dirs->i_dir.file_size);
937 else
938 dirs->size = le32_to_cpu(dirs->i_ldir.file_size);
939
940 /* Setup directory header */
941 memcpy(dirs->dir_header, dirs->table, SQFS_DIR_HEADER_SIZE);
942 dirs->entry_count = dirs->dir_header->count + 1;
943 dirs->size -= SQFS_DIR_HEADER_SIZE;
944
945 /* Setup entry */
946 dirs->entry = NULL;
947 dirs->table += SQFS_DIR_HEADER_SIZE;
948
949 *dirsp = (struct fs_dir_stream *)dirs;
950
Richard Genoud32bea5b2020-11-03 12:11:01 +0100951out:
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200952 for (j = 0; j < token_count; j++)
953 free(token_list[j]);
954 free(token_list);
955 free(pos_list);
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200956 free(path);
Richard Genoud32bea5b2020-11-03 12:11:01 +0100957 if (ret) {
Richard Genoud557f08f2020-11-03 12:11:00 +0100958 free(inode_table);
Richard Genoud557f08f2020-11-03 12:11:00 +0100959 free(dirs);
Richard Genoud32bea5b2020-11-03 12:11:01 +0100960 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +0200961
962 return ret;
963}
964
965int sqfs_readdir(struct fs_dir_stream *fs_dirs, struct fs_dirent **dentp)
966{
967 struct squashfs_super_block *sblk = ctxt.sblk;
968 struct squashfs_dir_stream *dirs;
969 struct squashfs_lreg_inode *lreg;
970 struct squashfs_base_inode *base;
971 struct squashfs_reg_inode *reg;
972 int i_number, offset = 0, ret;
973 struct fs_dirent *dent;
974 unsigned char *ipos;
975
976 dirs = (struct squashfs_dir_stream *)fs_dirs;
977 if (!dirs->size) {
978 *dentp = NULL;
979 return -SQFS_STOP_READDIR;
980 }
981
982 dent = &dirs->dentp;
983
984 if (!dirs->entry_count) {
985 if (dirs->size > SQFS_DIR_HEADER_SIZE) {
986 dirs->size -= SQFS_DIR_HEADER_SIZE;
987 } else {
988 *dentp = NULL;
989 dirs->size = 0;
990 return -SQFS_STOP_READDIR;
991 }
992
993 if (dirs->size > SQFS_EMPTY_FILE_SIZE) {
994 /* Read follow-up (emitted) dir. header */
995 memcpy(dirs->dir_header, dirs->table,
996 SQFS_DIR_HEADER_SIZE);
997 dirs->entry_count = dirs->dir_header->count + 1;
998 ret = sqfs_read_entry(&dirs->entry, dirs->table +
999 SQFS_DIR_HEADER_SIZE);
1000 if (ret)
1001 return -SQFS_STOP_READDIR;
1002
1003 dirs->table += SQFS_DIR_HEADER_SIZE;
1004 }
1005 } else {
1006 ret = sqfs_read_entry(&dirs->entry, dirs->table);
1007 if (ret)
1008 return -SQFS_STOP_READDIR;
1009 }
1010
1011 i_number = dirs->dir_header->inode_number + dirs->entry->inode_offset;
1012 ipos = sqfs_find_inode(dirs->inode_table, i_number, sblk->inodes,
1013 sblk->block_size);
1014
1015 base = (struct squashfs_base_inode *)ipos;
1016
1017 /* Set entry type and size */
1018 switch (dirs->entry->type) {
1019 case SQFS_DIR_TYPE:
1020 case SQFS_LDIR_TYPE:
1021 dent->type = FS_DT_DIR;
1022 break;
1023 case SQFS_REG_TYPE:
1024 case SQFS_LREG_TYPE:
1025 /*
1026 * Entries do not differentiate extended from regular types, so
1027 * it needs to be verified manually.
1028 */
1029 if (get_unaligned_le16(&base->inode_type) == SQFS_LREG_TYPE) {
1030 lreg = (struct squashfs_lreg_inode *)ipos;
1031 dent->size = get_unaligned_le64(&lreg->file_size);
1032 } else {
1033 reg = (struct squashfs_reg_inode *)ipos;
1034 dent->size = get_unaligned_le32(&reg->file_size);
1035 }
1036
1037 dent->type = FS_DT_REG;
1038 break;
1039 case SQFS_BLKDEV_TYPE:
1040 case SQFS_CHRDEV_TYPE:
1041 case SQFS_LBLKDEV_TYPE:
1042 case SQFS_LCHRDEV_TYPE:
1043 case SQFS_FIFO_TYPE:
1044 case SQFS_SOCKET_TYPE:
1045 case SQFS_LFIFO_TYPE:
1046 case SQFS_LSOCKET_TYPE:
1047 dent->type = SQFS_MISC_ENTRY_TYPE;
1048 break;
1049 case SQFS_SYMLINK_TYPE:
1050 case SQFS_LSYMLINK_TYPE:
1051 dent->type = FS_DT_LNK;
1052 break;
1053 default:
1054 return -SQFS_STOP_READDIR;
1055 }
1056
1057 /* Set entry name */
1058 strncpy(dent->name, dirs->entry->name, dirs->entry->name_size + 1);
1059 dent->name[dirs->entry->name_size + 1] = '\0';
1060
1061 offset = dirs->entry->name_size + 1 + SQFS_ENTRY_BASE_LENGTH;
1062 dirs->entry_count--;
1063
1064 /* Decrement size to be read */
1065 if (dirs->size > offset)
1066 dirs->size -= offset;
1067 else
1068 dirs->size = 0;
1069
1070 /* Keep a reference to the current entry before incrementing it */
1071 dirs->table += offset;
1072
1073 *dentp = dent;
1074
1075 return 0;
1076}
1077
1078int sqfs_probe(struct blk_desc *fs_dev_desc, struct disk_partition *fs_partition)
1079{
1080 struct squashfs_super_block *sblk;
1081 int ret;
1082
1083 ctxt.cur_dev = fs_dev_desc;
1084 ctxt.cur_part_info = *fs_partition;
1085
1086 ret = sqfs_read_sblk(&sblk);
1087 if (ret)
1088 return ret;
1089
1090 /* Make sure it has a valid SquashFS magic number*/
1091 if (get_unaligned_le32(&sblk->s_magic) != SQFS_MAGIC_NUMBER) {
1092 printf("Bad magic number for SquashFS image.\n");
1093 ctxt.cur_dev = NULL;
1094 return -EINVAL;
1095 }
1096
1097 ctxt.sblk = sblk;
1098
Joao Marcos Costa877576c2020-08-18 17:17:21 +02001099 ret = sqfs_decompressor_init(&ctxt);
1100
1101 if (ret) {
1102 ctxt.cur_dev = NULL;
1103 free(ctxt.sblk);
1104 return -EINVAL;
1105 }
1106
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001107 return 0;
1108}
1109
1110static char *sqfs_basename(char *path)
1111{
1112 char *fname;
1113
1114 fname = path + strlen(path) - 1;
1115 while (fname >= path) {
1116 if (*fname == '/') {
1117 fname++;
1118 break;
1119 }
1120
1121 fname--;
1122 }
1123
1124 return fname;
1125}
1126
1127static char *sqfs_dirname(char *path)
1128{
1129 char *fname;
1130
1131 fname = sqfs_basename(path);
1132 --fname;
1133 *fname = '\0';
1134
1135 return path;
1136}
1137
1138/*
1139 * Takes a path to file and splits it in two parts: the filename itself and the
1140 * directory's path, e.g.:
1141 * path: /path/to/file.txt
1142 * file: file.txt
1143 * dir: /path/to
1144 */
1145static int sqfs_split_path(char **file, char **dir, const char *path)
1146{
1147 char *dirc, *basec, *bname, *dname, *tmp_path;
1148 int ret = 0;
1149
Richard Genoud8cf2f022020-11-03 12:11:03 +01001150 *file = NULL;
1151 *dir = NULL;
1152 dirc = NULL;
1153 basec = NULL;
1154 bname = NULL;
1155 dname = NULL;
1156 tmp_path = NULL;
1157
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001158 /* check for first slash in path*/
1159 if (path[0] == '/') {
1160 tmp_path = strdup(path);
Richard Genoud8cf2f022020-11-03 12:11:03 +01001161 if (!tmp_path) {
1162 ret = -ENOMEM;
1163 goto out;
1164 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001165 } else {
1166 tmp_path = malloc(strlen(path) + 2);
Richard Genoud8cf2f022020-11-03 12:11:03 +01001167 if (!tmp_path) {
1168 ret = -ENOMEM;
1169 goto out;
1170 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001171 tmp_path[0] = '/';
1172 strcpy(tmp_path + 1, path);
1173 }
1174
1175 /* String duplicates */
1176 dirc = strdup(tmp_path);
1177 if (!dirc) {
1178 ret = -ENOMEM;
Richard Genoud8cf2f022020-11-03 12:11:03 +01001179 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001180 }
1181
1182 basec = strdup(tmp_path);
1183 if (!basec) {
1184 ret = -ENOMEM;
Richard Genoud8cf2f022020-11-03 12:11:03 +01001185 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001186 }
1187
1188 dname = sqfs_dirname(dirc);
1189 bname = sqfs_basename(basec);
1190
1191 *file = strdup(bname);
1192
1193 if (!*file) {
1194 ret = -ENOMEM;
Richard Genoud8cf2f022020-11-03 12:11:03 +01001195 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001196 }
1197
1198 if (*dname == '\0') {
1199 *dir = malloc(2);
1200 if (!*dir) {
1201 ret = -ENOMEM;
Richard Genoud8cf2f022020-11-03 12:11:03 +01001202 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001203 }
1204
1205 (*dir)[0] = '/';
1206 (*dir)[1] = '\0';
1207 } else {
1208 *dir = strdup(dname);
1209 if (!*dir) {
1210 ret = -ENOMEM;
Richard Genoud8cf2f022020-11-03 12:11:03 +01001211 goto out;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001212 }
1213 }
1214
Richard Genoud8cf2f022020-11-03 12:11:03 +01001215out:
1216 if (ret) {
1217 free(*file);
1218 free(*dir);
1219 *dir = NULL;
1220 *file = NULL;
1221 }
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001222 free(basec);
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001223 free(dirc);
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001224 free(tmp_path);
1225
1226 return ret;
1227}
1228
1229static int sqfs_get_regfile_info(struct squashfs_reg_inode *reg,
1230 struct squashfs_file_info *finfo,
1231 struct squashfs_fragment_block_entry *fentry,
1232 __le32 blksz)
1233{
1234 int datablk_count = 0, ret;
1235
1236 finfo->size = get_unaligned_le32(&reg->file_size);
1237 finfo->offset = get_unaligned_le32(&reg->offset);
1238 finfo->start = get_unaligned_le32(&reg->start_block);
1239 finfo->frag = SQFS_IS_FRAGMENTED(get_unaligned_le32(&reg->fragment));
1240
Joao Marcos Costaf1dfe4a2020-09-11 12:21:06 +02001241 if (finfo->frag && finfo->offset == 0xFFFFFFFF)
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +02001242 return -EINVAL;
1243
Joao Marcos Costaf1dfe4a2020-09-11 12:21:06 +02001244 if (finfo->size < 1 || finfo->start == 0xFFFFFFFF)
1245 return -EINVAL;
1246
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001247 if (finfo->frag) {
1248 datablk_count = finfo->size / le32_to_cpu(blksz);
1249 ret = sqfs_frag_lookup(get_unaligned_le32(&reg->fragment),
1250 fentry);
1251 if (ret < 0)
1252 return -EINVAL;
1253 finfo->comp = true;
Joao Marcos Costaf1dfe4a2020-09-11 12:21:06 +02001254 if (fentry->size < 1 || fentry->start == 0x7FFFFFFF)
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +02001255 return -EINVAL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001256 } else {
1257 datablk_count = DIV_ROUND_UP(finfo->size, le32_to_cpu(blksz));
1258 }
1259
1260 finfo->blk_sizes = malloc(datablk_count * sizeof(u32));
1261 if (!finfo->blk_sizes)
1262 return -ENOMEM;
1263
1264 return datablk_count;
1265}
1266
1267static int sqfs_get_lregfile_info(struct squashfs_lreg_inode *lreg,
1268 struct squashfs_file_info *finfo,
1269 struct squashfs_fragment_block_entry *fentry,
1270 __le32 blksz)
1271{
1272 int datablk_count = 0, ret;
1273
1274 finfo->size = get_unaligned_le64(&lreg->file_size);
1275 finfo->offset = get_unaligned_le32(&lreg->offset);
1276 finfo->start = get_unaligned_le64(&lreg->start_block);
1277 finfo->frag = SQFS_IS_FRAGMENTED(get_unaligned_le32(&lreg->fragment));
1278
Joao Marcos Costaf1dfe4a2020-09-11 12:21:06 +02001279 if (finfo->frag && finfo->offset == 0xFFFFFFFF)
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +02001280 return -EINVAL;
1281
Joao Marcos Costaf1dfe4a2020-09-11 12:21:06 +02001282 if (finfo->size < 1 || finfo->start == 0x7FFFFFFF)
1283 return -EINVAL;
1284
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001285 if (finfo->frag) {
1286 datablk_count = finfo->size / le32_to_cpu(blksz);
1287 ret = sqfs_frag_lookup(get_unaligned_le32(&lreg->fragment),
1288 fentry);
1289 if (ret < 0)
1290 return -EINVAL;
1291 finfo->comp = true;
Joao Marcos Costaf1dfe4a2020-09-11 12:21:06 +02001292 if (fentry->size < 1 || fentry->start == 0x7FFFFFFF)
Joao Marcos Costab7fb3c32020-08-19 18:28:41 +02001293 return -EINVAL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001294 } else {
1295 datablk_count = DIV_ROUND_UP(finfo->size, le32_to_cpu(blksz));
1296 }
1297
1298 finfo->blk_sizes = malloc(datablk_count * sizeof(u32));
1299 if (!finfo->blk_sizes)
1300 return -ENOMEM;
1301
1302 return datablk_count;
1303}
1304
1305int sqfs_read(const char *filename, void *buf, loff_t offset, loff_t len,
1306 loff_t *actread)
1307{
1308 char *dir, *fragment_block, *datablock = NULL, *data_buffer = NULL;
1309 char *fragment, *file, *resolved, *data;
1310 u64 start, n_blks, table_size, data_offset, table_offset;
Joao Marcos Costab87fd012020-08-18 17:17:22 +02001311 int ret, j, i_number, datablk_count = 0;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001312 struct squashfs_super_block *sblk = ctxt.sblk;
1313 struct squashfs_fragment_block_entry frag_entry;
1314 struct squashfs_file_info finfo = {0};
1315 struct squashfs_symlink_inode *symlink;
1316 struct fs_dir_stream *dirsp = NULL;
1317 struct squashfs_dir_stream *dirs;
1318 struct squashfs_lreg_inode *lreg;
1319 struct squashfs_base_inode *base;
1320 struct squashfs_reg_inode *reg;
1321 unsigned long dest_len;
1322 struct fs_dirent *dent;
1323 unsigned char *ipos;
1324
1325 *actread = 0;
1326
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001327 /*
1328 * sqfs_opendir will uncompress inode and directory tables, and will
1329 * return a pointer to the directory that contains the requested file.
1330 */
1331 sqfs_split_path(&file, &dir, filename);
1332 ret = sqfs_opendir(dir, &dirsp);
1333 if (ret) {
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001334 goto free_paths;
1335 }
1336
1337 dirs = (struct squashfs_dir_stream *)dirsp;
1338
1339 /* For now, only regular files are able to be loaded */
1340 while (!sqfs_readdir(dirsp, &dent)) {
1341 ret = strcmp(dent->name, file);
1342 if (!ret)
1343 break;
1344
1345 free(dirs->entry);
Richard Genoud0b8aa992020-11-03 12:11:11 +01001346 dirs->entry = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001347 }
1348
1349 if (ret) {
1350 printf("File not found.\n");
1351 *actread = 0;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001352 ret = -ENOENT;
1353 goto free_paths;
1354 }
1355
1356 i_number = dirs->dir_header->inode_number + dirs->entry->inode_offset;
1357 ipos = sqfs_find_inode(dirs->inode_table, i_number, sblk->inodes,
1358 sblk->block_size);
1359
1360 base = (struct squashfs_base_inode *)ipos;
1361 switch (get_unaligned_le16(&base->inode_type)) {
1362 case SQFS_REG_TYPE:
1363 reg = (struct squashfs_reg_inode *)ipos;
1364 datablk_count = sqfs_get_regfile_info(reg, &finfo, &frag_entry,
1365 sblk->block_size);
1366 if (datablk_count < 0) {
1367 ret = -EINVAL;
1368 goto free_paths;
1369 }
1370
1371 memcpy(finfo.blk_sizes, ipos + sizeof(*reg),
1372 datablk_count * sizeof(u32));
1373 break;
1374 case SQFS_LREG_TYPE:
1375 lreg = (struct squashfs_lreg_inode *)ipos;
1376 datablk_count = sqfs_get_lregfile_info(lreg, &finfo,
1377 &frag_entry,
1378 sblk->block_size);
1379 if (datablk_count < 0) {
1380 ret = -EINVAL;
1381 goto free_paths;
1382 }
1383
1384 memcpy(finfo.blk_sizes, ipos + sizeof(*lreg),
1385 datablk_count * sizeof(u32));
1386 break;
1387 case SQFS_SYMLINK_TYPE:
1388 case SQFS_LSYMLINK_TYPE:
1389 symlink = (struct squashfs_symlink_inode *)ipos;
1390 resolved = sqfs_resolve_symlink(symlink, filename);
1391 ret = sqfs_read(resolved, buf, offset, len, actread);
1392 free(resolved);
1393 goto free_paths;
1394 case SQFS_BLKDEV_TYPE:
1395 case SQFS_CHRDEV_TYPE:
1396 case SQFS_LBLKDEV_TYPE:
1397 case SQFS_LCHRDEV_TYPE:
1398 case SQFS_FIFO_TYPE:
1399 case SQFS_SOCKET_TYPE:
1400 case SQFS_LFIFO_TYPE:
1401 case SQFS_LSOCKET_TYPE:
1402 default:
1403 printf("Unsupported entry type\n");
1404 ret = -EINVAL;
1405 goto free_paths;
1406 }
1407
1408 /* If the user specifies a length, check its sanity */
1409 if (len) {
1410 if (len > finfo.size) {
1411 ret = -EINVAL;
1412 goto free_paths;
1413 }
1414
1415 finfo.size = len;
1416 }
1417
1418 if (datablk_count) {
1419 data_offset = finfo.start;
1420 datablock = malloc(get_unaligned_le32(&sblk->block_size));
1421 if (!datablock) {
1422 ret = -ENOMEM;
1423 goto free_paths;
1424 }
1425 }
1426
1427 for (j = 0; j < datablk_count; j++) {
1428 start = data_offset / ctxt.cur_dev->blksz;
1429 table_size = SQFS_BLOCK_SIZE(finfo.blk_sizes[j]);
1430 table_offset = data_offset - (start * ctxt.cur_dev->blksz);
1431 n_blks = DIV_ROUND_UP(table_size + table_offset,
1432 ctxt.cur_dev->blksz);
1433
1434 data_buffer = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
1435
1436 if (!data_buffer) {
1437 ret = -ENOMEM;
1438 goto free_datablk;
1439 }
1440
1441 ret = sqfs_disk_read(start, n_blks, data_buffer);
1442 if (ret < 0) {
1443 /*
1444 * Possible causes: too many data blocks or too large
1445 * SquashFS block size. Tip: re-compile the SquashFS
1446 * image with mksquashfs's -b <block_size> option.
1447 */
1448 printf("Error: too many data blocks to be read.\n");
1449 goto free_buffer;
1450 }
1451
1452 data = data_buffer + table_offset;
1453
1454 /* Load the data */
1455 if (SQFS_COMPRESSED_BLOCK(finfo.blk_sizes[j])) {
1456 dest_len = get_unaligned_le32(&sblk->block_size);
Joao Marcos Costab87fd012020-08-18 17:17:22 +02001457 ret = sqfs_decompress(&ctxt, datablock, &dest_len,
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001458 data, table_size);
1459 if (ret)
1460 goto free_buffer;
1461
1462 memcpy(buf + offset + *actread, datablock, dest_len);
1463 *actread += dest_len;
1464 } else {
1465 memcpy(buf + offset + *actread, data, table_size);
1466 *actread += table_size;
1467 }
1468
1469 data_offset += table_size;
Richard Genoud75844652020-11-03 12:11:14 +01001470 free(data_buffer);
1471 data_buffer = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001472 }
1473
1474 free(finfo.blk_sizes);
1475
1476 /*
1477 * There is no need to continue if the file is not fragmented.
1478 */
1479 if (!finfo.frag) {
1480 ret = 0;
1481 goto free_buffer;
1482 }
1483
1484 start = frag_entry.start / ctxt.cur_dev->blksz;
1485 table_size = SQFS_BLOCK_SIZE(frag_entry.size);
1486 table_offset = frag_entry.start - (start * ctxt.cur_dev->blksz);
1487 n_blks = DIV_ROUND_UP(table_size + table_offset, ctxt.cur_dev->blksz);
1488
1489 fragment = malloc_cache_aligned(n_blks * ctxt.cur_dev->blksz);
1490
1491 if (!fragment) {
1492 ret = -ENOMEM;
1493 goto free_buffer;
1494 }
1495
1496 ret = sqfs_disk_read(start, n_blks, fragment);
1497 if (ret < 0)
1498 goto free_fragment;
1499
1500 /* File compressed and fragmented */
1501 if (finfo.frag && finfo.comp) {
1502 dest_len = get_unaligned_le32(&sblk->block_size);
1503 fragment_block = malloc(dest_len);
1504 if (!fragment_block) {
1505 ret = -ENOMEM;
1506 goto free_fragment;
1507 }
1508
Joao Marcos Costab87fd012020-08-18 17:17:22 +02001509 ret = sqfs_decompress(&ctxt, fragment_block, &dest_len,
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001510 (void *)fragment + table_offset,
1511 frag_entry.size);
1512 if (ret) {
1513 free(fragment_block);
1514 goto free_fragment;
1515 }
1516
1517 for (j = offset + *actread; j < finfo.size; j++) {
1518 memcpy(buf + j, &fragment_block[finfo.offset + j], 1);
1519 (*actread)++;
1520 }
1521
1522 free(fragment_block);
1523
1524 } else if (finfo.frag && !finfo.comp) {
1525 fragment_block = (void *)fragment + table_offset;
1526
1527 for (j = offset + *actread; j < finfo.size; j++) {
1528 memcpy(buf + j, &fragment_block[finfo.offset + j], 1);
1529 (*actread)++;
1530 }
1531 }
1532
1533free_fragment:
1534 free(fragment);
1535free_buffer:
1536 if (datablk_count)
1537 free(data_buffer);
1538free_datablk:
1539 if (datablk_count)
1540 free(datablock);
1541free_paths:
1542 free(file);
1543 free(dir);
Richard Genoud84a5f572020-11-03 12:11:13 +01001544 sqfs_closedir(dirsp);
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001545
1546 return ret;
1547}
1548
1549int sqfs_size(const char *filename, loff_t *size)
1550{
1551 struct squashfs_super_block *sblk = ctxt.sblk;
1552 struct squashfs_symlink_inode *symlink;
1553 struct fs_dir_stream *dirsp = NULL;
1554 struct squashfs_base_inode *base;
1555 struct squashfs_dir_stream *dirs;
1556 struct squashfs_lreg_inode *lreg;
1557 struct squashfs_reg_inode *reg;
1558 char *dir, *file, *resolved;
1559 struct fs_dirent *dent;
1560 unsigned char *ipos;
1561 int ret, i_number;
1562
1563 sqfs_split_path(&file, &dir, filename);
1564 /*
1565 * sqfs_opendir will uncompress inode and directory tables, and will
1566 * return a pointer to the directory that contains the requested file.
1567 */
1568 ret = sqfs_opendir(dir, &dirsp);
1569 if (ret) {
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001570 ret = -EINVAL;
1571 goto free_strings;
1572 }
1573
1574 dirs = (struct squashfs_dir_stream *)dirsp;
1575
1576 while (!sqfs_readdir(dirsp, &dent)) {
1577 ret = strcmp(dent->name, file);
1578 if (!ret)
1579 break;
1580 free(dirs->entry);
Richard Genoudc3dadcb2020-11-03 12:11:09 +01001581 dirs->entry = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001582 }
1583
1584 if (ret) {
1585 printf("File not found.\n");
1586 *size = 0;
1587 ret = -EINVAL;
1588 goto free_strings;
1589 }
1590
1591 i_number = dirs->dir_header->inode_number + dirs->entry->inode_offset;
1592 ipos = sqfs_find_inode(dirs->inode_table, i_number, sblk->inodes,
1593 sblk->block_size);
1594 free(dirs->entry);
Richard Genoudc3dadcb2020-11-03 12:11:09 +01001595 dirs->entry = NULL;
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001596
1597 base = (struct squashfs_base_inode *)ipos;
1598 switch (get_unaligned_le16(&base->inode_type)) {
1599 case SQFS_REG_TYPE:
1600 reg = (struct squashfs_reg_inode *)ipos;
1601 *size = get_unaligned_le32(&reg->file_size);
1602 break;
1603 case SQFS_LREG_TYPE:
1604 lreg = (struct squashfs_lreg_inode *)ipos;
1605 *size = get_unaligned_le64(&lreg->file_size);
1606 break;
1607 case SQFS_SYMLINK_TYPE:
1608 case SQFS_LSYMLINK_TYPE:
1609 symlink = (struct squashfs_symlink_inode *)ipos;
1610 resolved = sqfs_resolve_symlink(symlink, filename);
1611 ret = sqfs_size(resolved, size);
1612 free(resolved);
1613 break;
1614 case SQFS_BLKDEV_TYPE:
1615 case SQFS_CHRDEV_TYPE:
1616 case SQFS_LBLKDEV_TYPE:
1617 case SQFS_LCHRDEV_TYPE:
1618 case SQFS_FIFO_TYPE:
1619 case SQFS_SOCKET_TYPE:
1620 case SQFS_LFIFO_TYPE:
1621 case SQFS_LSOCKET_TYPE:
1622 default:
1623 printf("Unable to recover entry's size.\n");
1624 *size = 0;
1625 ret = -EINVAL;
1626 break;
1627 }
1628
1629free_strings:
1630 free(dir);
1631 free(file);
1632
1633 sqfs_closedir(dirsp);
1634
1635 return ret;
1636}
1637
1638void sqfs_close(void)
1639{
1640 free(ctxt.sblk);
1641 ctxt.cur_dev = NULL;
Joao Marcos Costa877576c2020-08-18 17:17:21 +02001642 sqfs_decompressor_cleanup(&ctxt);
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001643}
1644
1645void sqfs_closedir(struct fs_dir_stream *dirs)
1646{
1647 struct squashfs_dir_stream *sqfs_dirs;
1648
1649 sqfs_dirs = (struct squashfs_dir_stream *)dirs;
1650 free(sqfs_dirs->inode_table);
1651 free(sqfs_dirs->dir_table);
1652 free(sqfs_dirs->dir_header);
Richard Genoud2575eb22020-11-03 12:11:02 +01001653 free(sqfs_dirs);
Joao Marcos Costa29da3742020-07-30 15:33:47 +02001654}