summaryrefslogtreecommitdiff
path: root/src/block/block.h
blob: 9e0fe6714427effd53b7e1350256b6efd740dbe6 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 * deviced
 *
 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


#ifndef __BLOCK_H__
#define __BLOCK_H__

#include <stdbool.h>
#include "core/common.h"

#define SMACKFS_MOUNT_OPT   "smackfsroot=*,smackfsdef=*"

#define RETRY_COUNT         10

enum block_fs_type {
	FS_TYPE_VFAT = 0,
	FS_TYPE_EXT4,
};

struct block_fs_ops {
	enum block_fs_type type;
	const char *name;
	bool (*match) (const char *);
	int (*check) (const char *);
	int (*mount) (bool, const char *, const char *);
	int (*format) (const char *);
};

struct fs_check {
	int type;
	char *name;
	unsigned int offset;
	unsigned int magic_sz;
	char magic[4];
};

void add_fs(const struct block_fs_ops *fs);
void remove_fs(const struct block_fs_ops *fs);

enum block_device_type {
	BLOCK_SCSI_DEV,
	BLOCK_MMC_DEV,
};

enum mount_state {
	BLOCK_UNMOUNT,
	BLOCK_MOUNT,
};

enum unmount_operation {
	UNMOUNT_NORMAL,
	UNMOUNT_FORCE,
};

struct block_data {
	enum block_device_type block_type;
	char *devnode;
	char *fs_usage;
	char *fs_type;
	char *fs_version;
	char *fs_uuid_enc;
	bool readonly;
	char *mount_point;
	enum mount_state state;
};

struct block_dev_ops {
	const char *name;
	enum block_device_type block_type;
	void (*mount) (struct block_data *data, int result);
	void (*unmount) (struct block_data *data, int result);
	void (*format) (struct block_data *data, int result);
	void (*insert) (struct block_data *data);
	void (*remove) (struct block_data *data);
};

void add_block_dev(const struct block_dev_ops *ops);
void remove_block_dev(const struct block_dev_ops *ops);

#define BLOCK_DEVICE_OPS_REGISTER(dev) \
static void __CONSTRUCTOR__ block_dev_init(void) \
{ \
	add_block_dev(dev); \
} \
static void __DESTRUCTOR__ block_dev_exit(void) \
{ \
	remove_block_dev(dev); \
}

int mount_block_device(const char *devnode);
int unmount_block_device(const char *devnode,
		enum unmount_operation option);

#endif /* __BLOCK_H__ */