blob: 5f7660aeae8a320894e314bc4dd584de1111ecc2 [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
8#include <errno.h>
9#include <linux/types.h>
10#include <linux/byteorder/little_endian.h>
11#include <linux/byteorder/generic.h>
12#include <stdint.h>
13#include <stdio.h>
14#include <stdlib.h>
15
16#include "sqfs_filesystem.h"
17#include "sqfs_utils.h"
18
19bool sqfs_is_dir(u16 type)
20{
21 return type == SQFS_DIR_TYPE || type == SQFS_LDIR_TYPE;
22}
23
24/*
25 * Receives a pointer (void *) to a position in the inode table containing the
26 * directory's inode. Returns directory inode offset into the directory table.
27 * m_list contains each metadata block's position, and m_count is the number of
28 * elements of m_list. Those metadata blocks come from the compressed directory
29 * table.
30 */
31int sqfs_dir_offset(void *dir_i, u32 *m_list, int m_count)
32{
33 struct squashfs_base_inode *base = dir_i;
34 struct squashfs_ldir_inode *ldir;
35 struct squashfs_dir_inode *dir;
36 u32 start_block;
37 u16 offset;
38 int j;
39
40 switch (get_unaligned_le16(&base->inode_type)) {
41 case SQFS_DIR_TYPE:
42 dir = (struct squashfs_dir_inode *)base;
43 start_block = get_unaligned_le32(&dir->start_block);
44 offset = get_unaligned_le16(&dir->offset);
45 break;
46 case SQFS_LDIR_TYPE:
47 ldir = (struct squashfs_ldir_inode *)base;
48 start_block = get_unaligned_le32(&ldir->start_block);
49 offset = get_unaligned_le16(&ldir->offset);
50 break;
51 default:
52 printf("Error: this is not a directory.\n");
53 return -EINVAL;
54 }
55
56 for (j = 0; j < m_count; j++) {
57 if (m_list[j] == start_block)
58 return (++j * SQFS_METADATA_BLOCK_SIZE) + offset;
59 }
60
61 if (start_block == 0)
62 return offset;
63
64 printf("Error: invalid inode reference to directory table.\n");
65
66 return -EINVAL;
67}
68
69bool sqfs_is_empty_dir(void *dir_i)
70{
71 struct squashfs_base_inode *base = dir_i;
72 struct squashfs_ldir_inode *ldir;
73 struct squashfs_dir_inode *dir;
74 u32 file_size;
75
76 switch (get_unaligned_le16(&base->inode_type)) {
77 case SQFS_DIR_TYPE:
78 dir = (struct squashfs_dir_inode *)base;
79 file_size = get_unaligned_le16(&dir->file_size);
80 break;
81 case SQFS_LDIR_TYPE:
82 ldir = (struct squashfs_ldir_inode *)base;
83 file_size = get_unaligned_le16(&ldir->file_size);
84 break;
85 default:
86 printf("Error: this is not a directory.\n");
87 return false;
88 }
89
90 return file_size == SQFS_EMPTY_FILE_SIZE;
91}