]>
Commit | Line | Data |
---|---|---|
65b4643d RK |
1 | /* |
2 | * nilfs.h - NILFS local header file. | |
3 | * | |
4 | * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License as published by | |
8 | * the Free Software Foundation; either version 2 of the License, or | |
9 | * (at your option) any later version. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU General Public License | |
17 | * along with this program; if not, write to the Free Software | |
18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
19 | * | |
20 | * Written by Koji Sato <[email protected]> | |
21 | * Ryusuke Konishi <[email protected]> | |
22 | */ | |
23 | ||
24 | #ifndef _NILFS_H | |
25 | #define _NILFS_H | |
26 | ||
27 | #include <linux/kernel.h> | |
28 | #include <linux/buffer_head.h> | |
29 | #include <linux/spinlock.h> | |
30 | #include <linux/blkdev.h> | |
31 | #include <linux/nilfs2_fs.h> | |
32 | #include "the_nilfs.h" | |
65b4643d | 33 | #include "bmap.h" |
65b4643d | 34 | |
f5974c8f VD |
35 | /** |
36 | * struct nilfs_inode_info - nilfs inode data in memory | |
37 | * @i_flags: inode flags | |
38 | * @i_state: dynamic state flags | |
39 | * @i_bmap: pointer on i_bmap_data | |
40 | * @i_bmap_data: raw block mapping | |
41 | * @i_xattr: <TODO> | |
42 | * @i_dir_start_lookup: page index of last successful search | |
43 | * @i_cno: checkpoint number for GC inode | |
44 | * @i_btnode_cache: cached pages of b-tree nodes | |
45 | * @i_dirty: list for connecting dirty files | |
46 | * @xattr_sem: semaphore for extended attributes processing | |
47 | * @i_bh: buffer contains disk inode | |
48 | * @i_root: root object of the current filesystem tree | |
49 | * @vfs_inode: VFS inode object | |
65b4643d RK |
50 | */ |
51 | struct nilfs_inode_info { | |
52 | __u32 i_flags; | |
53 | unsigned long i_state; /* Dynamic state flags */ | |
54 | struct nilfs_bmap *i_bmap; | |
05d0e94b | 55 | struct nilfs_bmap i_bmap_data; |
65b4643d | 56 | __u64 i_xattr; /* sector_t ??? */ |
65b4643d RK |
57 | __u32 i_dir_start_lookup; |
58 | __u64 i_cno; /* check point number for GC inode */ | |
59 | struct address_space i_btnode_cache; | |
60 | struct list_head i_dirty; /* List for connecting dirty files */ | |
61 | ||
62 | #ifdef CONFIG_NILFS_XATTR | |
63 | /* | |
64 | * Extended attributes can be read independently of the main file | |
65 | * data. Taking i_sem even when reading would cause contention | |
66 | * between readers of EAs and writers of regular file data, so | |
67 | * instead we synchronize on xattr_sem when reading or changing | |
68 | * EAs. | |
69 | */ | |
70 | struct rw_semaphore xattr_sem; | |
65b4643d RK |
71 | #endif |
72 | struct buffer_head *i_bh; /* i_bh contains a new or dirty | |
73 | disk inode */ | |
4d8d9293 | 74 | struct nilfs_root *i_root; |
65b4643d RK |
75 | struct inode vfs_inode; |
76 | }; | |
77 | ||
78 | static inline struct nilfs_inode_info *NILFS_I(const struct inode *inode) | |
79 | { | |
80 | return container_of(inode, struct nilfs_inode_info, vfs_inode); | |
81 | } | |
82 | ||
83 | static inline struct nilfs_inode_info * | |
84 | NILFS_BMAP_I(const struct nilfs_bmap *bmap) | |
85 | { | |
05d0e94b | 86 | return container_of(bmap, struct nilfs_inode_info, i_bmap_data); |
65b4643d RK |
87 | } |
88 | ||
89 | static inline struct inode *NILFS_BTNC_I(struct address_space *btnc) | |
90 | { | |
91 | struct nilfs_inode_info *ii = | |
92 | container_of(btnc, struct nilfs_inode_info, i_btnode_cache); | |
93 | return &ii->vfs_inode; | |
94 | } | |
95 | ||
65b4643d RK |
96 | /* |
97 | * Dynamic state flags of NILFS on-memory inode (i_state) | |
98 | */ | |
99 | enum { | |
100 | NILFS_I_NEW = 0, /* Inode is newly created */ | |
101 | NILFS_I_DIRTY, /* The file is dirty */ | |
102 | NILFS_I_QUEUED, /* inode is in dirty_files list */ | |
103 | NILFS_I_BUSY, /* inode is grabbed by a segment | |
104 | constructor */ | |
105 | NILFS_I_COLLECTED, /* All dirty blocks are collected */ | |
106 | NILFS_I_UPDATED, /* The file has been written back */ | |
107 | NILFS_I_INODE_DIRTY, /* write_inode is requested */ | |
108 | NILFS_I_BMAP, /* has bmap and btnode_cache */ | |
109 | NILFS_I_GCINODE, /* inode for GC, on memory only */ | |
65b4643d RK |
110 | }; |
111 | ||
b2ac86e1 JS |
112 | /* |
113 | * commit flags for nilfs_commit_super and nilfs_sync_super | |
114 | */ | |
115 | enum { | |
116 | NILFS_SB_COMMIT = 0, /* Commit a super block alternately */ | |
117 | NILFS_SB_COMMIT_ALL /* Commit both super blocks */ | |
118 | }; | |
119 | ||
65b4643d RK |
120 | /* |
121 | * Macros to check inode numbers | |
122 | */ | |
123 | #define NILFS_MDT_INO_BITS \ | |
af71dda0 NK |
124 | ((unsigned int)(1 << NILFS_DAT_INO | 1 << NILFS_CPFILE_INO | \ |
125 | 1 << NILFS_SUFILE_INO | 1 << NILFS_IFILE_INO | \ | |
126 | 1 << NILFS_ATIME_INO | 1 << NILFS_SKETCH_INO)) | |
65b4643d RK |
127 | |
128 | #define NILFS_SYS_INO_BITS \ | |
af71dda0 | 129 | ((unsigned int)(1 << NILFS_ROOT_INO) | NILFS_MDT_INO_BITS) |
65b4643d | 130 | |
e3154e97 | 131 | #define NILFS_FIRST_INO(sb) (((struct the_nilfs *)sb->s_fs_info)->ns_first_ino) |
65b4643d RK |
132 | |
133 | #define NILFS_MDT_INODE(sb, ino) \ | |
af71dda0 | 134 | ((ino) < NILFS_FIRST_INO(sb) && (NILFS_MDT_INO_BITS & (1 << (ino)))) |
65b4643d | 135 | #define NILFS_VALID_INODE(sb, ino) \ |
af71dda0 | 136 | ((ino) >= NILFS_FIRST_INO(sb) || (NILFS_SYS_INO_BITS & (1 << (ino)))) |
65b4643d RK |
137 | |
138 | /** | |
139 | * struct nilfs_transaction_info: context information for synchronization | |
140 | * @ti_magic: Magic number | |
141 | * @ti_save: Backup of journal_info field of task_struct | |
142 | * @ti_flags: Flags | |
143 | * @ti_count: Nest level | |
144 | * @ti_garbage: List of inode to be put when releasing semaphore | |
145 | */ | |
146 | struct nilfs_transaction_info { | |
147 | u32 ti_magic; | |
148 | void *ti_save; | |
149 | /* This should never used. If this happens, | |
150 | one of other filesystems has a bug. */ | |
151 | unsigned short ti_flags; | |
152 | unsigned short ti_count; | |
153 | struct list_head ti_garbage; | |
154 | }; | |
155 | ||
156 | /* ti_magic */ | |
157 | #define NILFS_TI_MAGIC 0xd9e392fb | |
158 | ||
159 | /* ti_flags */ | |
160 | #define NILFS_TI_DYNAMIC_ALLOC 0x0001 /* Allocated from slab */ | |
161 | #define NILFS_TI_SYNC 0x0002 /* Force to construct segment at the | |
162 | end of transaction. */ | |
163 | #define NILFS_TI_GC 0x0004 /* GC context */ | |
164 | #define NILFS_TI_COMMIT 0x0008 /* Change happened or not */ | |
165 | #define NILFS_TI_WRITER 0x0010 /* Constructor context */ | |
166 | ||
167 | ||
168 | int nilfs_transaction_begin(struct super_block *, | |
169 | struct nilfs_transaction_info *, int); | |
47420c79 RK |
170 | int nilfs_transaction_commit(struct super_block *); |
171 | void nilfs_transaction_abort(struct super_block *); | |
65b4643d RK |
172 | |
173 | static inline void nilfs_set_transaction_flag(unsigned int flag) | |
174 | { | |
175 | struct nilfs_transaction_info *ti = current->journal_info; | |
176 | ||
65b4643d RK |
177 | ti->ti_flags |= flag; |
178 | } | |
179 | ||
180 | static inline int nilfs_test_transaction_flag(unsigned int flag) | |
181 | { | |
182 | struct nilfs_transaction_info *ti = current->journal_info; | |
183 | ||
184 | if (ti == NULL || ti->ti_magic != NILFS_TI_MAGIC) | |
185 | return 0; | |
186 | return !!(ti->ti_flags & flag); | |
187 | } | |
188 | ||
189 | static inline int nilfs_doing_gc(void) | |
190 | { | |
191 | return nilfs_test_transaction_flag(NILFS_TI_GC); | |
192 | } | |
193 | ||
194 | static inline int nilfs_doing_construction(void) | |
195 | { | |
196 | return nilfs_test_transaction_flag(NILFS_TI_WRITER); | |
197 | } | |
198 | ||
65b4643d RK |
199 | /* |
200 | * function prototype | |
201 | */ | |
202 | #ifdef CONFIG_NILFS_POSIX_ACL | |
203 | #error "NILFS: not yet supported POSIX ACL" | |
65b4643d RK |
204 | extern int nilfs_acl_chmod(struct inode *); |
205 | extern int nilfs_init_acl(struct inode *, struct inode *); | |
206 | #else | |
65b4643d RK |
207 | static inline int nilfs_acl_chmod(struct inode *inode) |
208 | { | |
209 | return 0; | |
210 | } | |
211 | ||
212 | static inline int nilfs_init_acl(struct inode *inode, struct inode *dir) | |
213 | { | |
214 | inode->i_mode &= ~current_umask(); | |
215 | return 0; | |
216 | } | |
217 | #endif | |
218 | ||
219 | #define NILFS_ATIME_DISABLE | |
220 | ||
b253a3e4 RK |
221 | /* Flags that should be inherited by new inodes from their parent. */ |
222 | #define NILFS_FL_INHERITED \ | |
223 | (FS_SECRM_FL | FS_UNRM_FL | FS_COMPR_FL | FS_SYNC_FL | \ | |
224 | FS_IMMUTABLE_FL | FS_APPEND_FL | FS_NODUMP_FL | FS_NOATIME_FL |\ | |
225 | FS_COMPRBLK_FL | FS_NOCOMP_FL | FS_NOTAIL_FL | FS_DIRSYNC_FL) | |
226 | ||
227 | /* Mask out flags that are inappropriate for the given type of inode. */ | |
228 | static inline __u32 nilfs_mask_flags(umode_t mode, __u32 flags) | |
229 | { | |
230 | if (S_ISDIR(mode)) | |
231 | return flags; | |
232 | else if (S_ISREG(mode)) | |
233 | return flags & ~(FS_DIRSYNC_FL | FS_TOPDIR_FL); | |
234 | else | |
235 | return flags & (FS_NODUMP_FL | FS_NOATIME_FL); | |
236 | } | |
237 | ||
65b4643d RK |
238 | /* dir.c */ |
239 | extern int nilfs_add_link(struct dentry *, struct inode *); | |
0319003d | 240 | extern ino_t nilfs_inode_by_name(struct inode *, const struct qstr *); |
65b4643d RK |
241 | extern int nilfs_make_empty(struct inode *, struct inode *); |
242 | extern struct nilfs_dir_entry * | |
0319003d | 243 | nilfs_find_entry(struct inode *, const struct qstr *, struct page **); |
65b4643d RK |
244 | extern int nilfs_delete_entry(struct nilfs_dir_entry *, struct page *); |
245 | extern int nilfs_empty_dir(struct inode *); | |
246 | extern struct nilfs_dir_entry *nilfs_dotdot(struct inode *, struct page **); | |
247 | extern void nilfs_set_link(struct inode *, struct nilfs_dir_entry *, | |
248 | struct page *, struct inode *); | |
249 | ||
250 | /* file.c */ | |
02c24a82 | 251 | extern int nilfs_sync_file(struct file *, loff_t, loff_t, int); |
65b4643d RK |
252 | |
253 | /* ioctl.c */ | |
7a946193 | 254 | long nilfs_ioctl(struct file *, unsigned int, unsigned long); |
828b1c50 | 255 | long nilfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg); |
4f6b8288 RK |
256 | int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *, struct nilfs_argv *, |
257 | void **); | |
65b4643d RK |
258 | |
259 | /* inode.c */ | |
be667377 RK |
260 | void nilfs_inode_add_blocks(struct inode *inode, int n); |
261 | void nilfs_inode_sub_blocks(struct inode *inode, int n); | |
c6e49e3f | 262 | extern struct inode *nilfs_new_inode(struct inode *, umode_t); |
65b4643d RK |
263 | extern void nilfs_free_inode(struct inode *); |
264 | extern int nilfs_get_block(struct inode *, sector_t, struct buffer_head *, int); | |
265 | extern void nilfs_set_inode_flags(struct inode *); | |
266 | extern int nilfs_read_inode_common(struct inode *, struct nilfs_inode *); | |
267 | extern void nilfs_write_inode_common(struct inode *, struct nilfs_inode *, int); | |
032dbb3b RK |
268 | struct inode *nilfs_ilookup(struct super_block *sb, struct nilfs_root *root, |
269 | unsigned long ino); | |
f1e89c86 RK |
270 | struct inode *nilfs_iget_locked(struct super_block *sb, struct nilfs_root *root, |
271 | unsigned long ino); | |
4d8d9293 RK |
272 | struct inode *nilfs_iget(struct super_block *sb, struct nilfs_root *root, |
273 | unsigned long ino); | |
263d90ce RK |
274 | extern struct inode *nilfs_iget_for_gc(struct super_block *sb, |
275 | unsigned long ino, __u64 cno); | |
65b4643d RK |
276 | extern void nilfs_update_inode(struct inode *, struct buffer_head *); |
277 | extern void nilfs_truncate(struct inode *); | |
6fd1e5c9 | 278 | extern void nilfs_evict_inode(struct inode *); |
65b4643d | 279 | extern int nilfs_setattr(struct dentry *, struct iattr *); |
2d1b399b | 280 | extern void nilfs_write_failed(struct address_space *mapping, loff_t to); |
10556cb2 | 281 | int nilfs_permission(struct inode *inode, int mask); |
bcbc8c64 | 282 | int nilfs_load_inode_block(struct inode *inode, struct buffer_head **pbh); |
65b4643d | 283 | extern int nilfs_inode_dirty(struct inode *); |
bcbc8c64 | 284 | int nilfs_set_file_dirty(struct inode *inode, unsigned nr_dirty); |
65b4643d | 285 | extern int nilfs_mark_inode_dirty(struct inode *); |
aa385729 | 286 | extern void nilfs_dirty_inode(struct inode *, int flags); |
622daaff RK |
287 | int nilfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, |
288 | __u64 start, __u64 len); | |
65b4643d | 289 | |
65b4643d RK |
290 | /* super.c */ |
291 | extern struct inode *nilfs_alloc_inode(struct super_block *); | |
292 | extern void nilfs_destroy_inode(struct inode *); | |
b9075fa9 JP |
293 | extern __printf(3, 4) |
294 | void nilfs_error(struct super_block *, const char *, const char *, ...); | |
295 | extern __printf(3, 4) | |
296 | void nilfs_warning(struct super_block *, const char *, const char *, ...); | |
65b4643d | 297 | extern struct nilfs_super_block * |
e339ad31 | 298 | nilfs_read_super_block(struct super_block *, u64, int, struct buffer_head **); |
65b4643d RK |
299 | extern int nilfs_store_magic_and_option(struct super_block *, |
300 | struct nilfs_super_block *, char *); | |
c5ca48aa RK |
301 | extern int nilfs_check_feature_compatibility(struct super_block *, |
302 | struct nilfs_super_block *); | |
60f46b7e RK |
303 | extern void nilfs_set_log_cursor(struct nilfs_super_block *, |
304 | struct the_nilfs *); | |
f7545144 RK |
305 | struct nilfs_super_block **nilfs_prepare_super(struct super_block *sb, |
306 | int flip); | |
307 | int nilfs_commit_super(struct super_block *sb, int flag); | |
308 | int nilfs_cleanup_super(struct super_block *sb); | |
4e33f9ea | 309 | int nilfs_resize_fs(struct super_block *sb, __u64 newsize); |
f7545144 | 310 | int nilfs_attach_checkpoint(struct super_block *sb, __u64 cno, int curr_mnt, |
4d8d9293 | 311 | struct nilfs_root **root); |
032dbb3b | 312 | int nilfs_checkpoint_is_mounted(struct super_block *sb, __u64 cno); |
65b4643d RK |
313 | |
314 | /* gcinode.c */ | |
315 | int nilfs_gccache_submit_read_data(struct inode *, sector_t, sector_t, __u64, | |
316 | struct buffer_head **); | |
317 | int nilfs_gccache_submit_read_node(struct inode *, sector_t, __u64, | |
318 | struct buffer_head **); | |
319 | int nilfs_gccache_wait_and_mark_dirty(struct buffer_head *); | |
263d90ce RK |
320 | int nilfs_init_gcinode(struct inode *inode); |
321 | void nilfs_remove_all_gcinodes(struct the_nilfs *nilfs); | |
65b4643d | 322 | |
65b4643d RK |
323 | /* |
324 | * Inodes and files operations | |
325 | */ | |
828c0950 | 326 | extern const struct file_operations nilfs_dir_operations; |
6e1d5dcc | 327 | extern const struct inode_operations nilfs_file_inode_operations; |
828c0950 | 328 | extern const struct file_operations nilfs_file_operations; |
7f09410b | 329 | extern const struct address_space_operations nilfs_aops; |
6e1d5dcc AD |
330 | extern const struct inode_operations nilfs_dir_inode_operations; |
331 | extern const struct inode_operations nilfs_special_inode_operations; | |
332 | extern const struct inode_operations nilfs_symlink_inode_operations; | |
65b4643d RK |
333 | |
334 | /* | |
335 | * filesystem type | |
336 | */ | |
337 | extern struct file_system_type nilfs_fs_type; | |
338 | ||
339 | ||
340 | #endif /* _NILFS_H */ |