blob: 470c06aa5268ffdc4e0d5828735f83b23aeffd9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* SPDX-License-Identifier: LGPL-3.0-or-later */
/*
* super.c
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#define SQFS_BUILDING_DLL
#include "config.h"
#include "sqfs/super.h"
#include "sqfs/error.h"
#include <string.h>
int sqfs_super_init(sqfs_super_t *super, size_t block_size, sqfs_u32 mtime,
SQFS_COMPRESSOR compressor)
{
unsigned int i;
if (block_size & (block_size - 1))
return SQFS_ERROR_SUPER_BLOCK_SIZE;
if (block_size < SQFS_MIN_BLOCK_SIZE)
return SQFS_ERROR_SUPER_BLOCK_SIZE;
if (block_size > SQFS_MAX_BLOCK_SIZE)
return SQFS_ERROR_SUPER_BLOCK_SIZE;
memset(super, 0, sizeof(*super));
super->magic = SQFS_MAGIC;
super->modification_time = mtime;
super->block_size = block_size;
super->compression_id = compressor;
super->flags = SQFS_FLAG_NO_FRAGMENTS | SQFS_FLAG_NO_XATTRS;
super->flags |= SQFS_FLAG_NO_DUPLICATES;
super->version_major = SQFS_VERSION_MAJOR;
super->version_minor = SQFS_VERSION_MINOR;
super->bytes_used = sizeof(*super);
super->id_table_start = 0xFFFFFFFFFFFFFFFFUL;
super->xattr_id_table_start = 0xFFFFFFFFFFFFFFFFUL;
super->inode_table_start = 0xFFFFFFFFFFFFFFFFUL;
super->directory_table_start = 0xFFFFFFFFFFFFFFFFUL;
super->fragment_table_start = 0xFFFFFFFFFFFFFFFFUL;
super->export_table_start = 0xFFFFFFFFFFFFFFFFUL;
for (i = block_size; i != 0x01; i >>= 1)
super->block_log += 1;
return 0;
}
|