1 /*
2  * Copyright (C) 2010 The Android Open Source Project
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 _DIRECTORY_H_
18 #define _DIRECTORY_H_
19 
20 #include "ext4_utils/ext4_utils.h"
21 
22 struct dentry {
23 	char *path;
24 	char *full_path;
25 	const char *filename;
26 	char *link;
27 	unsigned long size;
28 	u8 file_type;
29 	u16 mode;
30 	u16 uid;
31 	u16 gid;
32 	u32 *inode;
33 	u32 mtime;
34 	char *secon;
35 	uint64_t capabilities;
36 };
37 
38 u32 make_directory(u32 dir_inode_num, u32 entries, struct dentry *dentries,
39 	u32 dirs);
40 u32 make_file(const char *filename, u64 len);
41 u32 make_link(const char *link);
42 int inode_set_permissions(u32 inode_num, u16 mode, u16 uid, u16 gid, u32 mtime);
43 int inode_set_selinux(u32 inode_num, const char *secon);
44 int inode_set_capabilities(u32 inode_num, uint64_t capabilities);
45 struct block_allocation* get_saved_allocation_chain();
46 
47 #endif
48