Use libext2fs to read ext4 params and block bitmap
[platform/core/security/ode.git] / server / ext4-tool.h
1 /*
2  *  Copyright (c) 2016 - 2019 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16
17 #ifndef __EXT4_TOOL_H__
18 #define __EXT4_TOOL_H__
19
20 #include <cstdint>
21
22 #include <string>
23
24 #include <ext2fs.h>
25
26 namespace ode {
27
28 class Ext4Tool final {
29 public:
30         Ext4Tool(const std::string &src);
31         Ext4Tool(const Ext4Tool &) = delete;
32         Ext4Tool(Ext4Tool &&) = delete;
33         ~Ext4Tool();
34
35         Ext4Tool &operator=(const Ext4Tool &) = delete;
36         Ext4Tool &operator=(Ext4Tool &&) = delete;
37
38         uint32_t getBlockSize();
39         uint32_t getTotalBlockCount();
40         bool isUsedBlock(uint32_t blockIndex);
41
42         static void forceCleanUp(const std::string &src);
43         static void mkfs(const std::string &src);
44
45 private:
46         ext2_filsys fs;
47 };
48
49 } // namespace ode
50
51 #endif // __EXT4_TOOL_H__