| Colin Cross | ec0a2e8 | 2010-06-11 14:21:37 -0700 | [diff] [blame] | 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 | struct dentry { | 
 | 21 | 	char *path; | 
 | 22 | 	char *full_path; | 
 | 23 | 	const char *filename; | 
 | 24 | 	char *link; | 
 | 25 | 	unsigned long size; | 
 | 26 | 	u8 file_type; | 
 | 27 | 	u16 mode; | 
 | 28 | 	u16 uid; | 
 | 29 | 	u16 gid; | 
 | 30 | 	u32 *inode; | 
| Colin Cross | de61f98 | 2010-08-04 15:06:09 -0700 | [diff] [blame] | 31 | 	u32 mtime; | 
| Stephen Smalley | b4eca4b | 2012-01-13 09:00:56 -0500 | [diff] [blame] | 32 | 	char *secon; | 
| Colin Cross | ec0a2e8 | 2010-06-11 14:21:37 -0700 | [diff] [blame] | 33 | }; | 
 | 34 |  | 
 | 35 | u32 make_directory(u32 dir_inode_num, u32 entries, struct dentry *dentries, | 
| Colin Cross | 8aef66d | 2010-06-20 23:22:12 -0700 | [diff] [blame] | 36 | 	u32 dirs); | 
| Colin Cross | ec0a2e8 | 2010-06-11 14:21:37 -0700 | [diff] [blame] | 37 | u32 make_file(const char *filename, u64 len); | 
 | 38 | u32 make_link(const char *filename, const char *link); | 
| Colin Cross | de61f98 | 2010-08-04 15:06:09 -0700 | [diff] [blame] | 39 | int inode_set_permissions(u32 inode_num, u16 mode, u16 uid, u16 gid, u32 mtime); | 
| Stephen Smalley | b4eca4b | 2012-01-13 09:00:56 -0500 | [diff] [blame] | 40 | int inode_set_selinux(u32 inode_num, const char *secon); | 
| Colin Cross | ec0a2e8 | 2010-06-11 14:21:37 -0700 | [diff] [blame] | 41 | #endif |