ocfs2: return the physical address in ocfs2_write_cluster
[linux-2.6-block.git] / fs / ocfs2 / inode.c
CommitLineData
ccd979bd
MF
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * inode.c
5 *
6 * vfs' aops, fops, dops and iops
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
26#include <linux/fs.h>
27#include <linux/types.h>
ccd979bd
MF
28#include <linux/highmem.h>
29#include <linux/pagemap.h>
a90714c1 30#include <linux/quotaops.h>
ccd979bd
MF
31
32#include <asm/byteorder.h>
33
ccd979bd
MF
34#include <cluster/masklog.h>
35
36#include "ocfs2.h"
37
38#include "alloc.h"
9b7895ef 39#include "dir.h"
d6b32bbb 40#include "blockcheck.h"
ccd979bd
MF
41#include "dlmglue.h"
42#include "extent_map.h"
43#include "file.h"
b4df6ed8 44#include "heartbeat.h"
ccd979bd
MF
45#include "inode.h"
46#include "journal.h"
47#include "namei.h"
48#include "suballoc.h"
49#include "super.h"
50#include "symlink.h"
51#include "sysfile.h"
52#include "uptodate.h"
cf1d6c76 53#include "xattr.h"
8b2c0dba 54#include "refcounttree.h"
64f3b269 55#include "ocfs2_trace.h"
d56a8f32 56#include "filecheck.h"
ccd979bd
MF
57
58#include "buffer_head_io.h"
59
ccd979bd
MF
60struct ocfs2_find_inode_args
61{
62 u64 fi_blkno;
63 unsigned long fi_ino;
64 unsigned int fi_flags;
5fa0613e 65 unsigned int fi_sysfile_type;
ccd979bd
MF
66};
67
5fa0613e
JK
68static struct lock_class_key ocfs2_sysfile_lock_key[NUM_SYSTEM_INODES];
69
ccd979bd
MF
70static int ocfs2_read_locked_inode(struct inode *inode,
71 struct ocfs2_find_inode_args *args);
72static int ocfs2_init_locked_inode(struct inode *inode, void *opaque);
73static int ocfs2_find_actor(struct inode *inode, void *opaque);
74static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
75 struct inode *inode,
76 struct buffer_head *fe_bh);
77
d56a8f32
GH
78static int ocfs2_filecheck_read_inode_block_full(struct inode *inode,
79 struct buffer_head **bh,
80 int flags, int type);
81static int ocfs2_filecheck_validate_inode_block(struct super_block *sb,
82 struct buffer_head *bh);
83static int ocfs2_filecheck_repair_inode_block(struct super_block *sb,
84 struct buffer_head *bh);
85
ca4d147e
HP
86void ocfs2_set_inode_flags(struct inode *inode)
87{
88 unsigned int flags = OCFS2_I(inode)->ip_attr;
89
90 inode->i_flags &= ~(S_IMMUTABLE |
91 S_SYNC | S_APPEND | S_NOATIME | S_DIRSYNC);
92
93 if (flags & OCFS2_IMMUTABLE_FL)
94 inode->i_flags |= S_IMMUTABLE;
95
96 if (flags & OCFS2_SYNC_FL)
97 inode->i_flags |= S_SYNC;
98 if (flags & OCFS2_APPEND_FL)
99 inode->i_flags |= S_APPEND;
100 if (flags & OCFS2_NOATIME_FL)
101 inode->i_flags |= S_NOATIME;
102 if (flags & OCFS2_DIRSYNC_FL)
103 inode->i_flags |= S_DIRSYNC;
104}
105
6e4b0d56
JK
106/* Propagate flags from i_flags to OCFS2_I(inode)->ip_attr */
107void ocfs2_get_inode_flags(struct ocfs2_inode_info *oi)
108{
109 unsigned int flags = oi->vfs_inode.i_flags;
110
111 oi->ip_attr &= ~(OCFS2_SYNC_FL|OCFS2_APPEND_FL|
112 OCFS2_IMMUTABLE_FL|OCFS2_NOATIME_FL|OCFS2_DIRSYNC_FL);
113 if (flags & S_SYNC)
114 oi->ip_attr |= OCFS2_SYNC_FL;
115 if (flags & S_APPEND)
116 oi->ip_attr |= OCFS2_APPEND_FL;
117 if (flags & S_IMMUTABLE)
118 oi->ip_attr |= OCFS2_IMMUTABLE_FL;
119 if (flags & S_NOATIME)
120 oi->ip_attr |= OCFS2_NOATIME_FL;
121 if (flags & S_DIRSYNC)
122 oi->ip_attr |= OCFS2_DIRSYNC_FL;
123}
124
6ca497a8 125struct inode *ocfs2_ilookup(struct super_block *sb, u64 blkno)
126{
127 struct ocfs2_find_inode_args args;
128
129 args.fi_blkno = blkno;
130 args.fi_flags = 0;
131 args.fi_ino = ino_from_blkno(sb, blkno);
132 args.fi_sysfile_type = 0;
133
134 return ilookup5(sb, blkno, ocfs2_find_actor, &args);
135}
5fa0613e
JK
136struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 blkno, unsigned flags,
137 int sysfile_type)
ccd979bd 138{
d56a8f32 139 int rc = 0;
ccd979bd
MF
140 struct inode *inode = NULL;
141 struct super_block *sb = osb->sb;
142 struct ocfs2_find_inode_args args;
2931cdcb 143 journal_t *journal = OCFS2_SB(sb)->journal->j_journal;
ccd979bd 144
64f3b269
TM
145 trace_ocfs2_iget_begin((unsigned long long)blkno, flags,
146 sysfile_type);
ccd979bd
MF
147
148 /* Ok. By now we've either got the offsets passed to us by the
149 * caller, or we just pulled them off the bh. Lets do some
150 * sanity checks to make sure they're OK. */
151 if (blkno == 0) {
152 inode = ERR_PTR(-EINVAL);
153 mlog_errno(PTR_ERR(inode));
154 goto bail;
155 }
156
157 args.fi_blkno = blkno;
24c19ef4 158 args.fi_flags = flags;
ccd979bd 159 args.fi_ino = ino_from_blkno(sb, blkno);
5fa0613e 160 args.fi_sysfile_type = sysfile_type;
ccd979bd
MF
161
162 inode = iget5_locked(sb, args.fi_ino, ocfs2_find_actor,
163 ocfs2_init_locked_inode, &args);
164 /* inode was *not* in the inode cache. 2.6.x requires
165 * us to do our own read_inode call and unlock it
166 * afterwards. */
ccd979bd
MF
167 if (inode == NULL) {
168 inode = ERR_PTR(-ENOMEM);
169 mlog_errno(PTR_ERR(inode));
170 goto bail;
171 }
64f3b269 172 trace_ocfs2_iget5_locked(inode->i_state);
6218b90e 173 if (inode->i_state & I_NEW) {
d56a8f32 174 rc = ocfs2_read_locked_inode(inode, &args);
6218b90e
TM
175 unlock_new_inode(inode);
176 }
ccd979bd
MF
177 if (is_bad_inode(inode)) {
178 iput(inode);
d56a8f32
GH
179 if ((flags & OCFS2_FI_FLAG_FILECHECK_CHK) ||
180 (flags & OCFS2_FI_FLAG_FILECHECK_FIX))
181 /* Return OCFS2_FILECHECK_ERR_XXX related errno */
182 inode = ERR_PTR(rc);
183 else
184 inode = ERR_PTR(-ESTALE);
ccd979bd
MF
185 goto bail;
186 }
187
2931cdcb
DW
188 /*
189 * Set transaction id's of transactions that have to be committed
190 * to finish f[data]sync. We set them to currently running transaction
191 * as we cannot be sure that the inode or some of its metadata isn't
192 * part of the transaction - the inode could have been reclaimed and
193 * now it is reread from disk.
194 */
195 if (journal) {
196 transaction_t *transaction;
197 tid_t tid;
198 struct ocfs2_inode_info *oi = OCFS2_I(inode);
199
200 read_lock(&journal->j_state_lock);
201 if (journal->j_running_transaction)
202 transaction = journal->j_running_transaction;
203 else
204 transaction = journal->j_committing_transaction;
205 if (transaction)
206 tid = transaction->t_tid;
207 else
208 tid = journal->j_commit_sequence;
209 read_unlock(&journal->j_state_lock);
210 oi->i_sync_tid = tid;
211 oi->i_datasync_tid = tid;
212 }
213
ccd979bd
MF
214bail:
215 if (!IS_ERR(inode)) {
64f3b269
TM
216 trace_ocfs2_iget_end(inode,
217 (unsigned long long)OCFS2_I(inode)->ip_blkno);
6a1bd4a5 218 }
ccd979bd
MF
219
220 return inode;
221}
222
223
224/*
225 * here's how inodes get read from disk:
226 * iget5_locked -> find_actor -> OCFS2_FIND_ACTOR
227 * found? : return the in-memory inode
228 * not found? : get_new_inode -> OCFS2_INIT_LOCKED_INODE
229 */
230
231static int ocfs2_find_actor(struct inode *inode, void *opaque)
232{
233 struct ocfs2_find_inode_args *args = NULL;
234 struct ocfs2_inode_info *oi = OCFS2_I(inode);
235 int ret = 0;
236
ccd979bd
MF
237 args = opaque;
238
239 mlog_bug_on_msg(!inode, "No inode in find actor!\n");
240
64f3b269
TM
241 trace_ocfs2_find_actor(inode, inode->i_ino, opaque, args->fi_blkno);
242
ccd979bd
MF
243 if (oi->ip_blkno != args->fi_blkno)
244 goto bail;
245
ccd979bd
MF
246 ret = 1;
247bail:
ccd979bd
MF
248 return ret;
249}
250
251/*
252 * initialize the new inode, but don't do anything that would cause
253 * us to sleep.
254 * return 0 on success, 1 on failure
255 */
256static int ocfs2_init_locked_inode(struct inode *inode, void *opaque)
257{
258 struct ocfs2_find_inode_args *args = opaque;
cb25797d
JK
259 static struct lock_class_key ocfs2_quota_ip_alloc_sem_key,
260 ocfs2_file_ip_alloc_sem_key;
ccd979bd 261
ccd979bd
MF
262 inode->i_ino = args->fi_ino;
263 OCFS2_I(inode)->ip_blkno = args->fi_blkno;
5fa0613e
JK
264 if (args->fi_sysfile_type != 0)
265 lockdep_set_class(&inode->i_mutex,
266 &ocfs2_sysfile_lock_key[args->fi_sysfile_type]);
cb25797d
JK
267 if (args->fi_sysfile_type == USER_QUOTA_SYSTEM_INODE ||
268 args->fi_sysfile_type == GROUP_QUOTA_SYSTEM_INODE ||
269 args->fi_sysfile_type == LOCAL_USER_QUOTA_SYSTEM_INODE ||
270 args->fi_sysfile_type == LOCAL_GROUP_QUOTA_SYSTEM_INODE)
271 lockdep_set_class(&OCFS2_I(inode)->ip_alloc_sem,
272 &ocfs2_quota_ip_alloc_sem_key);
273 else
274 lockdep_set_class(&OCFS2_I(inode)->ip_alloc_sem,
275 &ocfs2_file_ip_alloc_sem_key);
ccd979bd 276
ccd979bd
MF
277 return 0;
278}
279
b657c95c
JB
280void ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
281 int create_ino)
ccd979bd
MF
282{
283 struct super_block *sb;
284 struct ocfs2_super *osb;
53da4939 285 int use_plocks = 1;
ccd979bd 286
ccd979bd
MF
287 sb = inode->i_sb;
288 osb = OCFS2_SB(sb);
289
53da4939
MF
290 if ((osb->s_mount_opt & OCFS2_MOUNT_LOCALFLOCKS) ||
291 ocfs2_mount_local(osb) || !ocfs2_stack_supports_plocks())
292 use_plocks = 0;
293
b657c95c
JB
294 /*
295 * These have all been checked by ocfs2_read_inode_block() or set
296 * by ocfs2_mknod_locked(), so a failure is a code bug.
297 */
298 BUG_ON(!OCFS2_IS_VALID_DINODE(fe)); /* This means that read_inode
299 cannot create a superblock
300 inode today. change if
301 that is needed. */
302 BUG_ON(!(fe->i_flags & cpu_to_le32(OCFS2_VALID_FL)));
303 BUG_ON(le32_to_cpu(fe->i_fs_generation) != osb->fs_generation);
ccd979bd 304
ccd979bd 305
8110b073
MF
306 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
307 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
15b1e36b 308 OCFS2_I(inode)->ip_dyn_features = le16_to_cpu(fe->i_dyn_features);
8110b073 309
ccd979bd
MF
310 inode->i_version = 1;
311 inode->i_generation = le32_to_cpu(fe->i_generation);
312 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
313 inode->i_mode = le16_to_cpu(fe->i_mode);
2c034176
EB
314 i_uid_write(inode, le32_to_cpu(fe->i_uid));
315 i_gid_write(inode, le32_to_cpu(fe->i_gid));
ccd979bd
MF
316
317 /* Fast symlinks will have i_size but no allocated clusters. */
ea022dfb 318 if (S_ISLNK(inode->i_mode) && !fe->i_clusters) {
ccd979bd 319 inode->i_blocks = 0;
ea022dfb
AV
320 inode->i_mapping->a_ops = &ocfs2_fast_symlink_aops;
321 } else {
8110b073 322 inode->i_blocks = ocfs2_inode_sector_count(inode);
ea022dfb
AV
323 inode->i_mapping->a_ops = &ocfs2_aops;
324 }
ccd979bd
MF
325 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
326 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
327 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
328 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
329 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
330 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
331
332 if (OCFS2_I(inode)->ip_blkno != le64_to_cpu(fe->i_blkno))
333 mlog(ML_ERROR,
b0697053
MF
334 "ip_blkno %llu != i_blkno %llu!\n",
335 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1ca1a111 336 (unsigned long long)le64_to_cpu(fe->i_blkno));
ccd979bd 337
bfe86848 338 set_nlink(inode, ocfs2_read_links_count(fe));
ccd979bd 339
64f3b269
TM
340 trace_ocfs2_populate_inode(OCFS2_I(inode)->ip_blkno,
341 le32_to_cpu(fe->i_flags));
bbbd0eb3 342 if (fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) {
24c19ef4 343 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SYSTEM_FILE;
bbbd0eb3
JK
344 inode->i_flags |= S_NOQUOTA;
345 }
64f3b269 346
ccd979bd
MF
347 if (fe->i_flags & cpu_to_le32(OCFS2_LOCAL_ALLOC_FL)) {
348 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
ccd979bd
MF
349 } else if (fe->i_flags & cpu_to_le32(OCFS2_BITMAP_FL)) {
350 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
1a224ad1
JK
351 } else if (fe->i_flags & cpu_to_le32(OCFS2_QUOTA_FL)) {
352 inode->i_flags |= S_NOQUOTA;
ccd979bd 353 } else if (fe->i_flags & cpu_to_le32(OCFS2_SUPER_BLOCK_FL)) {
ccd979bd
MF
354 /* we can't actually hit this as read_inode can't
355 * handle superblocks today ;-) */
356 BUG();
357 }
358
359 switch (inode->i_mode & S_IFMT) {
360 case S_IFREG:
53da4939
MF
361 if (use_plocks)
362 inode->i_fop = &ocfs2_fops;
363 else
364 inode->i_fop = &ocfs2_fops_no_plocks;
ccd979bd
MF
365 inode->i_op = &ocfs2_file_iops;
366 i_size_write(inode, le64_to_cpu(fe->i_size));
367 break;
368 case S_IFDIR:
369 inode->i_op = &ocfs2_dir_iops;
53da4939
MF
370 if (use_plocks)
371 inode->i_fop = &ocfs2_dops;
372 else
373 inode->i_fop = &ocfs2_dops_no_plocks;
ccd979bd 374 i_size_write(inode, le64_to_cpu(fe->i_size));
5e98d492 375 OCFS2_I(inode)->ip_dir_lock_gen = 1;
ccd979bd
MF
376 break;
377 case S_IFLNK:
ea022dfb 378 inode->i_op = &ocfs2_symlink_inode_operations;
21fc61c7 379 inode_nohighmem(inode);
ccd979bd
MF
380 i_size_write(inode, le64_to_cpu(fe->i_size));
381 break;
382 default:
383 inode->i_op = &ocfs2_special_file_iops;
384 init_special_inode(inode, inode->i_mode,
385 inode->i_rdev);
386 break;
387 }
388
24c19ef4
MF
389 if (create_ino) {
390 inode->i_ino = ino_from_blkno(inode->i_sb,
391 le64_to_cpu(fe->i_blkno));
392
393 /*
394 * If we ever want to create system files from kernel,
395 * the generation argument to
396 * ocfs2_inode_lock_res_init() will have to change.
397 */
1ca1a111 398 BUG_ON(le32_to_cpu(fe->i_flags) & OCFS2_SYSTEM_FL);
24c19ef4 399
e63aecb6 400 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_inode_lockres,
24c19ef4 401 OCFS2_LOCK_TYPE_META, 0, inode);
50008630
TY
402
403 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_open_lockres,
404 OCFS2_LOCK_TYPE_OPEN, 0, inode);
24c19ef4
MF
405 }
406
ccd979bd 407 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_rw_lockres,
24c19ef4
MF
408 OCFS2_LOCK_TYPE_RW, inode->i_generation,
409 inode);
410
ca4d147e 411 ocfs2_set_inode_flags(inode);
ca4d147e 412
13821151
TM
413 OCFS2_I(inode)->ip_last_used_slot = 0;
414 OCFS2_I(inode)->ip_last_used_group = 0;
e3b4a97d
MF
415
416 if (S_ISDIR(inode->i_mode))
417 ocfs2_resv_set_type(&OCFS2_I(inode)->ip_la_data_resv,
418 OCFS2_RESV_FLAG_DIR);
ccd979bd
MF
419}
420
421static int ocfs2_read_locked_inode(struct inode *inode,
422 struct ocfs2_find_inode_args *args)
423{
424 struct super_block *sb;
425 struct ocfs2_super *osb;
426 struct ocfs2_dinode *fe;
427 struct buffer_head *bh = NULL;
d56a8f32 428 int status, can_lock, lock_level = 0;
24c19ef4 429 u32 generation = 0;
ccd979bd 430
ccd979bd 431 status = -EINVAL;
ccd979bd
MF
432 sb = inode->i_sb;
433 osb = OCFS2_SB(sb);
434
24c19ef4
MF
435 /*
436 * To improve performance of cold-cache inode stats, we take
437 * the cluster lock here if possible.
438 *
439 * Generally, OCFS2 never trusts the contents of an inode
440 * unless it's holding a cluster lock, so taking it here isn't
441 * a correctness issue as much as it is a performance
442 * improvement.
443 *
444 * There are three times when taking the lock is not a good idea:
445 *
446 * 1) During startup, before we have initialized the DLM.
447 *
448 * 2) If we are reading certain system files which never get
449 * cluster locks (local alloc, truncate log).
450 *
451 * 3) If the process doing the iget() is responsible for
452 * orphan dir recovery. We're holding the orphan dir lock and
453 * can get into a deadlock with another process on another
454 * node in ->delete_inode().
455 *
456 * #1 and #2 can be simply solved by never taking the lock
457 * here for system files (which are the only type we read
458 * during mount). It's a heavier approach, but our main
b595076a 459 * concern is user-accessible files anyway.
24c19ef4
MF
460 *
461 * #3 works itself out because we'll eventually take the
462 * cluster lock before trusting anything anyway.
463 */
464 can_lock = !(args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
50008630 465 && !(args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY)
c271c5c2 466 && !ocfs2_mount_local(osb);
24c19ef4 467
64f3b269
TM
468 trace_ocfs2_read_locked_inode(
469 (unsigned long long)OCFS2_I(inode)->ip_blkno, can_lock);
470
24c19ef4
MF
471 /*
472 * To maintain backwards compatibility with older versions of
473 * ocfs2-tools, we still store the generation value for system
474 * files. The only ones that actually matter to userspace are
475 * the journals, but it's easier and inexpensive to just flag
476 * all system files similarly.
477 */
478 if (args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
479 generation = osb->fs_generation;
480
e63aecb6 481 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_inode_lockres,
24c19ef4
MF
482 OCFS2_LOCK_TYPE_META,
483 generation, inode);
484
50008630
TY
485 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_open_lockres,
486 OCFS2_LOCK_TYPE_OPEN,
487 0, inode);
488
24c19ef4 489 if (can_lock) {
50008630
TY
490 status = ocfs2_open_lock(inode);
491 if (status) {
492 make_bad_inode(inode);
493 mlog_errno(status);
494 return status;
495 }
d56a8f32 496 status = ocfs2_inode_lock(inode, NULL, lock_level);
24c19ef4
MF
497 if (status) {
498 make_bad_inode(inode);
499 mlog_errno(status);
500 return status;
501 }
ccd979bd
MF
502 }
503
50008630
TY
504 if (args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY) {
505 status = ocfs2_try_open_lock(inode, 0);
506 if (status) {
2bd63216 507 make_bad_inode(inode);
50008630
TY
508 return status;
509 }
510 }
511
b657c95c 512 if (can_lock) {
d56a8f32
GH
513 if (args->fi_flags & OCFS2_FI_FLAG_FILECHECK_CHK)
514 status = ocfs2_filecheck_read_inode_block_full(inode,
515 &bh, OCFS2_BH_IGNORE_CACHE, 0);
516 else if (args->fi_flags & OCFS2_FI_FLAG_FILECHECK_FIX)
517 status = ocfs2_filecheck_read_inode_block_full(inode,
518 &bh, OCFS2_BH_IGNORE_CACHE, 1);
519 else
520 status = ocfs2_read_inode_block_full(inode,
521 &bh, OCFS2_BH_IGNORE_CACHE);
b657c95c 522 } else {
da1e9098 523 status = ocfs2_read_blocks_sync(osb, args->fi_blkno, 1, &bh);
f5ce5a08
SM
524 /*
525 * If buffer is in jbd, then its checksum may not have been
526 * computed as yet.
527 */
d56a8f32
GH
528 if (!status && !buffer_jbd(bh)) {
529 if (args->fi_flags & OCFS2_FI_FLAG_FILECHECK_CHK)
530 status = ocfs2_filecheck_validate_inode_block(
531 osb->sb, bh);
532 else if (args->fi_flags & OCFS2_FI_FLAG_FILECHECK_FIX)
533 status = ocfs2_filecheck_repair_inode_block(
534 osb->sb, bh);
535 else
536 status = ocfs2_validate_inode_block(
537 osb->sb, bh);
538 }
b657c95c 539 }
ccd979bd
MF
540 if (status < 0) {
541 mlog_errno(status);
ccd979bd
MF
542 goto bail;
543 }
544
24c19ef4 545 status = -EINVAL;
ccd979bd 546 fe = (struct ocfs2_dinode *) bh->b_data;
ccd979bd 547
24c19ef4
MF
548 /*
549 * This is a code bug. Right now the caller needs to
550 * understand whether it is asking for a system file inode or
551 * not so the proper lock names can be built.
552 */
553 mlog_bug_on_msg(!!(fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) !=
554 !!(args->fi_flags & OCFS2_FI_FLAG_SYSFILE),
555 "Inode %llu: system file state is ambigous\n",
556 (unsigned long long)args->fi_blkno);
ccd979bd
MF
557
558 if (S_ISCHR(le16_to_cpu(fe->i_mode)) ||
559 S_ISBLK(le16_to_cpu(fe->i_mode)))
b657c95c 560 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
ccd979bd 561
b657c95c 562 ocfs2_populate_inode(inode, fe, 0);
ccd979bd
MF
563
564 BUG_ON(args->fi_blkno != le64_to_cpu(fe->i_blkno));
565
d56a8f32
GH
566 if (buffer_dirty(bh) && !buffer_jbd(bh)) {
567 if (can_lock) {
568 ocfs2_inode_unlock(inode, lock_level);
569 lock_level = 1;
570 ocfs2_inode_lock(inode, NULL, lock_level);
571 }
572 status = ocfs2_write_block(osb, bh, INODE_CACHE(inode));
573 if (status < 0) {
574 mlog_errno(status);
575 goto bail;
576 }
577 }
578
ccd979bd
MF
579 status = 0;
580
581bail:
24c19ef4 582 if (can_lock)
d56a8f32 583 ocfs2_inode_unlock(inode, lock_level);
24c19ef4
MF
584
585 if (status < 0)
586 make_bad_inode(inode);
587
4a635a11 588 brelse(bh);
ccd979bd 589
ccd979bd
MF
590 return status;
591}
592
593void ocfs2_sync_blockdev(struct super_block *sb)
594{
595 sync_blockdev(sb->s_bdev);
596}
597
598static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
599 struct inode *inode,
600 struct buffer_head *fe_bh)
601{
602 int status = 0;
ccd979bd 603 struct ocfs2_dinode *fe;
60b11392 604 handle_t *handle = NULL;
ccd979bd 605
ccd979bd
MF
606 fe = (struct ocfs2_dinode *) fe_bh->b_data;
607
1afc32b9
MF
608 /*
609 * This check will also skip truncate of inodes with inline
610 * data and fast symlinks.
611 */
3a0782d0 612 if (fe->i_clusters) {
2b4e30fb
JB
613 if (ocfs2_should_order_data(inode))
614 ocfs2_begin_ordered_truncate(inode, 0);
615
60b11392
MF
616 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
617 if (IS_ERR(handle)) {
618 status = PTR_ERR(handle);
0350cb07 619 handle = NULL;
60b11392
MF
620 mlog_errno(status);
621 goto out;
622 }
623
0cf2f763
JB
624 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode),
625 fe_bh,
13723d00 626 OCFS2_JOURNAL_ACCESS_WRITE);
60b11392
MF
627 if (status < 0) {
628 mlog_errno(status);
629 goto out;
630 }
631
632 i_size_write(inode, 0);
633
634 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
635 if (status < 0) {
636 mlog_errno(status);
637 goto out;
638 }
639
640 ocfs2_commit_trans(osb, handle);
641 handle = NULL;
642
78f94673 643 status = ocfs2_commit_truncate(osb, inode, fe_bh);
3a0782d0
MF
644 if (status < 0) {
645 mlog_errno(status);
646 goto out;
647 }
ccd979bd 648 }
ccd979bd 649
60b11392
MF
650out:
651 if (handle)
652 ocfs2_commit_trans(osb, handle);
ccd979bd
MF
653 return status;
654}
655
656static int ocfs2_remove_inode(struct inode *inode,
657 struct buffer_head *di_bh,
658 struct inode *orphan_dir_inode,
659 struct buffer_head *orphan_dir_bh)
660{
661 int status;
662 struct inode *inode_alloc_inode = NULL;
663 struct buffer_head *inode_alloc_bh = NULL;
1fabe148 664 handle_t *handle;
ccd979bd
MF
665 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
666 struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
667
668 inode_alloc_inode =
669 ocfs2_get_system_file_inode(osb, INODE_ALLOC_SYSTEM_INODE,
670 le16_to_cpu(di->i_suballoc_slot));
671 if (!inode_alloc_inode) {
62f8b1f0 672 status = -ENOENT;
ccd979bd
MF
673 mlog_errno(status);
674 goto bail;
675 }
676
5955102c 677 inode_lock(inode_alloc_inode);
e63aecb6 678 status = ocfs2_inode_lock(inode_alloc_inode, &inode_alloc_bh, 1);
ccd979bd 679 if (status < 0) {
5955102c 680 inode_unlock(inode_alloc_inode);
ccd979bd
MF
681
682 mlog_errno(status);
683 goto bail;
684 }
685
a90714c1 686 handle = ocfs2_start_trans(osb, OCFS2_DELETE_INODE_CREDITS +
9b7895ef 687 ocfs2_quota_trans_credits(inode->i_sb));
ccd979bd
MF
688 if (IS_ERR(handle)) {
689 status = PTR_ERR(handle);
690 mlog_errno(status);
691 goto bail_unlock;
692 }
693
d4cd1871
LD
694 if (!(OCFS2_I(inode)->ip_flags & OCFS2_INODE_SKIP_ORPHAN_DIR)) {
695 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
06ee5c75 696 orphan_dir_bh, false);
d4cd1871
LD
697 if (status < 0) {
698 mlog_errno(status);
699 goto bail_commit;
700 }
ccd979bd
MF
701 }
702
703 /* set the inodes dtime */
0cf2f763 704 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), di_bh,
13723d00 705 OCFS2_JOURNAL_ACCESS_WRITE);
ccd979bd
MF
706 if (status < 0) {
707 mlog_errno(status);
708 goto bail_commit;
709 }
710
711 di->i_dtime = cpu_to_le64(CURRENT_TIME.tv_sec);
4092d49f 712 di->i_flags &= cpu_to_le32(~(OCFS2_VALID_FL | OCFS2_ORPHANED_FL));
ec20cec7 713 ocfs2_journal_dirty(handle, di_bh);
ccd979bd 714
8cb471e8 715 ocfs2_remove_from_cache(INODE_CACHE(inode), di_bh);
63936dda 716 dquot_free_inode(inode);
ccd979bd
MF
717
718 status = ocfs2_free_dinode(handle, inode_alloc_inode,
719 inode_alloc_bh, di);
720 if (status < 0)
721 mlog_errno(status);
722
723bail_commit:
02dc1af4 724 ocfs2_commit_trans(osb, handle);
ccd979bd 725bail_unlock:
e63aecb6 726 ocfs2_inode_unlock(inode_alloc_inode, 1);
5955102c 727 inode_unlock(inode_alloc_inode);
ccd979bd
MF
728 brelse(inode_alloc_bh);
729bail:
730 iput(inode_alloc_inode);
731
732 return status;
733}
734
2bd63216 735/*
b4df6ed8
MF
736 * Serialize with orphan dir recovery. If the process doing
737 * recovery on this orphan dir does an iget() with the dir
738 * i_mutex held, we'll deadlock here. Instead we detect this
739 * and exit early - recovery will wipe this inode for us.
740 */
741static int ocfs2_check_orphan_recovery_state(struct ocfs2_super *osb,
742 int slot)
743{
744 int ret = 0;
745
746 spin_lock(&osb->osb_lock);
747 if (ocfs2_node_map_test_bit(osb, &osb->osb_recovering_orphan_dirs, slot)) {
b4df6ed8
MF
748 ret = -EDEADLK;
749 goto out;
750 }
751 /* This signals to the orphan recovery process that it should
752 * wait for us to handle the wipe. */
753 osb->osb_orphan_wipes[slot]++;
754out:
755 spin_unlock(&osb->osb_lock);
64f3b269 756 trace_ocfs2_check_orphan_recovery_state(slot, ret);
b4df6ed8
MF
757 return ret;
758}
759
760static void ocfs2_signal_wipe_completion(struct ocfs2_super *osb,
761 int slot)
762{
763 spin_lock(&osb->osb_lock);
764 osb->osb_orphan_wipes[slot]--;
765 spin_unlock(&osb->osb_lock);
766
767 wake_up(&osb->osb_wipe_event);
768}
769
ccd979bd
MF
770static int ocfs2_wipe_inode(struct inode *inode,
771 struct buffer_head *di_bh)
772{
d577632e 773 int status, orphaned_slot = -1;
ccd979bd
MF
774 struct inode *orphan_dir_inode = NULL;
775 struct buffer_head *orphan_dir_bh = NULL;
776 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
d4cd1871 777 struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
ccd979bd 778
d4cd1871
LD
779 if (!(OCFS2_I(inode)->ip_flags & OCFS2_INODE_SKIP_ORPHAN_DIR)) {
780 orphaned_slot = le16_to_cpu(di->i_orphaned_slot);
b4df6ed8 781
d4cd1871
LD
782 status = ocfs2_check_orphan_recovery_state(osb, orphaned_slot);
783 if (status)
784 return status;
b4df6ed8 785
d4cd1871
LD
786 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
787 ORPHAN_DIR_SYSTEM_INODE,
788 orphaned_slot);
789 if (!orphan_dir_inode) {
62f8b1f0 790 status = -ENOENT;
d4cd1871
LD
791 mlog_errno(status);
792 goto bail;
793 }
ccd979bd 794
d4cd1871
LD
795 /* Lock the orphan dir. The lock will be held for the entire
796 * delete_inode operation. We do this now to avoid races with
797 * recovery completion on other nodes. */
5955102c 798 inode_lock(orphan_dir_inode);
d4cd1871
LD
799 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
800 if (status < 0) {
5955102c 801 inode_unlock(orphan_dir_inode);
ccd979bd 802
d4cd1871
LD
803 mlog_errno(status);
804 goto bail;
805 }
ccd979bd
MF
806 }
807
808 /* we do this while holding the orphan dir lock because we
34d024f8
MF
809 * don't want recovery being run from another node to try an
810 * inode delete underneath us -- this will result in two nodes
ccd979bd
MF
811 * truncating the same file! */
812 status = ocfs2_truncate_for_delete(osb, inode, di_bh);
813 if (status < 0) {
814 mlog_errno(status);
815 goto bail_unlock_dir;
816 }
817
9b7895ef
MF
818 /* Remove any dir index tree */
819 if (S_ISDIR(inode->i_mode)) {
820 status = ocfs2_dx_dir_truncate(inode, di_bh);
821 if (status) {
822 mlog_errno(status);
823 goto bail_unlock_dir;
824 }
825 }
826
cf1d6c76
TY
827 /*Free extended attribute resources associated with this inode.*/
828 status = ocfs2_xattr_remove(inode, di_bh);
829 if (status < 0) {
830 mlog_errno(status);
831 goto bail_unlock_dir;
832 }
833
8b2c0dba
TM
834 status = ocfs2_remove_refcount_tree(inode, di_bh);
835 if (status < 0) {
836 mlog_errno(status);
837 goto bail_unlock_dir;
838 }
839
ccd979bd
MF
840 status = ocfs2_remove_inode(inode, di_bh, orphan_dir_inode,
841 orphan_dir_bh);
842 if (status < 0)
843 mlog_errno(status);
844
845bail_unlock_dir:
d4cd1871
LD
846 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SKIP_ORPHAN_DIR)
847 return status;
848
e63aecb6 849 ocfs2_inode_unlock(orphan_dir_inode, 1);
5955102c 850 inode_unlock(orphan_dir_inode);
ccd979bd
MF
851 brelse(orphan_dir_bh);
852bail:
853 iput(orphan_dir_inode);
b4df6ed8 854 ocfs2_signal_wipe_completion(osb, orphaned_slot);
ccd979bd
MF
855
856 return status;
857}
858
859/* There is a series of simple checks that should be done before a
34d024f8 860 * trylock is even considered. Encapsulate those in this function. */
ccd979bd
MF
861static int ocfs2_inode_is_valid_to_delete(struct inode *inode)
862{
863 int ret = 0;
864 struct ocfs2_inode_info *oi = OCFS2_I(inode);
865 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
866
64f3b269
TM
867 trace_ocfs2_inode_is_valid_to_delete(current, osb->dc_task,
868 (unsigned long long)oi->ip_blkno,
869 oi->ip_flags);
870
ccd979bd
MF
871 /* We shouldn't be getting here for the root directory
872 * inode.. */
873 if (inode == osb->root_inode) {
874 mlog(ML_ERROR, "Skipping delete of root inode.\n");
875 goto bail;
876 }
877
bd62ad7a
JK
878 /*
879 * If we're coming from downconvert_thread we can't go into our own
880 * voting [hello, deadlock city!] so we cannot delete the inode. But
881 * since we dropped last inode ref when downconverting dentry lock,
882 * we cannot have the file open and thus the node doing unlink will
883 * take care of deleting the inode.
884 */
64f3b269 885 if (current == osb->dc_task)
ccd979bd 886 goto bail;
ccd979bd
MF
887
888 spin_lock(&oi->ip_lock);
889 /* OCFS2 *never* deletes system files. This should technically
890 * never get here as system file inodes should always have a
891 * positive link count. */
892 if (oi->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
b0697053
MF
893 mlog(ML_ERROR, "Skipping delete of system file %llu\n",
894 (unsigned long long)oi->ip_blkno);
ccd979bd
MF
895 goto bail_unlock;
896 }
897
ccd979bd
MF
898 ret = 1;
899bail_unlock:
900 spin_unlock(&oi->ip_lock);
901bail:
902 return ret;
903}
904
905/* Query the cluster to determine whether we should wipe an inode from
906 * disk or not.
907 *
908 * Requires the inode to have the cluster lock. */
909static int ocfs2_query_inode_wipe(struct inode *inode,
910 struct buffer_head *di_bh,
911 int *wipe)
912{
64f3b269 913 int status = 0, reason = 0;
ccd979bd
MF
914 struct ocfs2_inode_info *oi = OCFS2_I(inode);
915 struct ocfs2_dinode *di;
916
917 *wipe = 0;
918
64f3b269
TM
919 trace_ocfs2_query_inode_wipe_begin((unsigned long long)oi->ip_blkno,
920 inode->i_nlink);
921
ccd979bd
MF
922 /* While we were waiting for the cluster lock in
923 * ocfs2_delete_inode, another node might have asked to delete
924 * the inode. Recheck our flags to catch this. */
925 if (!ocfs2_inode_is_valid_to_delete(inode)) {
64f3b269 926 reason = 1;
ccd979bd
MF
927 goto bail;
928 }
929
930 /* Now that we have an up to date inode, we can double check
931 * the link count. */
64f3b269 932 if (inode->i_nlink)
ccd979bd 933 goto bail;
ccd979bd
MF
934
935 /* Do some basic inode verification... */
936 di = (struct ocfs2_dinode *) di_bh->b_data;
d4cd1871
LD
937 if (!(di->i_flags & cpu_to_le32(OCFS2_ORPHANED_FL)) &&
938 !(oi->ip_flags & OCFS2_INODE_SKIP_ORPHAN_DIR)) {
b54c2ca4
TY
939 /*
940 * Inodes in the orphan dir must have ORPHANED_FL. The only
941 * inodes that come back out of the orphan dir are reflink
942 * targets. A reflink target may be moved out of the orphan
943 * dir between the time we scan the directory and the time we
944 * process it. This would lead to HAS_REFCOUNT_FL being set but
945 * ORPHANED_FL not.
946 */
947 if (di->i_dyn_features & cpu_to_le16(OCFS2_HAS_REFCOUNT_FL)) {
64f3b269 948 reason = 2;
b54c2ca4
TY
949 goto bail;
950 }
951
ccd979bd
MF
952 /* for lack of a better error? */
953 status = -EEXIST;
954 mlog(ML_ERROR,
b0697053 955 "Inode %llu (on-disk %llu) not orphaned! "
ccd979bd 956 "Disk flags 0x%x, inode flags 0x%x\n",
b0697053 957 (unsigned long long)oi->ip_blkno,
1ca1a111
MF
958 (unsigned long long)le64_to_cpu(di->i_blkno),
959 le32_to_cpu(di->i_flags), oi->ip_flags);
ccd979bd
MF
960 goto bail;
961 }
962
963 /* has someone already deleted us?! baaad... */
964 if (di->i_dtime) {
965 status = -EEXIST;
966 mlog_errno(status);
967 goto bail;
968 }
969
6f16bf65
MF
970 /*
971 * This is how ocfs2 determines whether an inode is still live
972 * within the cluster. Every node takes a shared read lock on
973 * the inode open lock in ocfs2_read_locked_inode(). When we
974 * get to ->delete_inode(), each node tries to convert it's
975 * lock to an exclusive. Trylocks are serialized by the inode
25985edc 976 * meta data lock. If the upconvert succeeds, we know the inode
6f16bf65
MF
977 * is no longer live and can be deleted.
978 *
979 * Though we call this with the meta data lock held, the
980 * trylock keeps us from ABBA deadlock.
981 */
982 status = ocfs2_try_open_lock(inode, 1);
50008630 983 if (status == -EAGAIN) {
ccd979bd 984 status = 0;
64f3b269 985 reason = 3;
ccd979bd
MF
986 goto bail;
987 }
988 if (status < 0) {
989 mlog_errno(status);
990 goto bail;
991 }
992
50008630 993 *wipe = 1;
64f3b269 994 trace_ocfs2_query_inode_wipe_succ(le16_to_cpu(di->i_orphaned_slot));
ccd979bd
MF
995
996bail:
64f3b269 997 trace_ocfs2_query_inode_wipe_end(status, reason);
ccd979bd
MF
998 return status;
999}
1000
1001/* Support function for ocfs2_delete_inode. Will help us keep the
1002 * inode data in a consistent state for clear_inode. Always truncates
1003 * pages, optionally sync's them first. */
1004static void ocfs2_cleanup_delete_inode(struct inode *inode,
1005 int sync_data)
1006{
64f3b269
TM
1007 trace_ocfs2_cleanup_delete_inode(
1008 (unsigned long long)OCFS2_I(inode)->ip_blkno, sync_data);
ccd979bd 1009 if (sync_data)
249ec93c 1010 filemap_write_and_wait(inode->i_mapping);
91b0abe3 1011 truncate_inode_pages_final(&inode->i_data);
ccd979bd
MF
1012}
1013
066d92dc 1014static void ocfs2_delete_inode(struct inode *inode)
ccd979bd
MF
1015{
1016 int wipe, status;
e4b963f1 1017 sigset_t oldset;
ccd979bd 1018 struct buffer_head *di_bh = NULL;
ad694821 1019 struct ocfs2_dinode *di = NULL;
ccd979bd 1020
64f3b269
TM
1021 trace_ocfs2_delete_inode(inode->i_ino,
1022 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1023 is_bad_inode(inode));
ccd979bd 1024
a90714c1
JK
1025 /* When we fail in read_inode() we mark inode as bad. The second test
1026 * catches the case when inode allocation fails before allocating
1027 * a block for inode. */
64f3b269 1028 if (is_bad_inode(inode) || !OCFS2_I(inode)->ip_blkno)
ccd979bd 1029 goto bail;
ccd979bd
MF
1030
1031 if (!ocfs2_inode_is_valid_to_delete(inode)) {
1032 /* It's probably not necessary to truncate_inode_pages
1033 * here but we do it for safety anyway (it will most
1034 * likely be a no-op anyway) */
1035 ocfs2_cleanup_delete_inode(inode, 0);
1036 goto bail;
1037 }
1038
bd62ad7a
JK
1039 dquot_initialize(inode);
1040
ccd979bd
MF
1041 /* We want to block signals in delete_inode as the lock and
1042 * messaging paths may return us -ERESTARTSYS. Which would
1043 * cause us to exit early, resulting in inodes being orphaned
1044 * forever. */
e4b963f1 1045 ocfs2_block_signals(&oldset);
ccd979bd 1046
6ca497a8 1047 /*
1048 * Synchronize us against ocfs2_get_dentry. We take this in
1049 * shared mode so that all nodes can still concurrently
1050 * process deletes.
1051 */
1052 status = ocfs2_nfs_sync_lock(OCFS2_SB(inode->i_sb), 0);
1053 if (status < 0) {
1054 mlog(ML_ERROR, "getting nfs sync lock(PR) failed %d\n", status);
1055 ocfs2_cleanup_delete_inode(inode, 0);
1056 goto bail_unblock;
1057 }
ccd979bd
MF
1058 /* Lock down the inode. This gives us an up to date view of
1059 * it's metadata (for verification), and allows us to
34d024f8 1060 * serialize delete_inode on multiple nodes.
ccd979bd
MF
1061 *
1062 * Even though we might be doing a truncate, we don't take the
1063 * allocation lock here as it won't be needed - nobody will
1064 * have the file open.
1065 */
e63aecb6 1066 status = ocfs2_inode_lock(inode, &di_bh, 1);
ccd979bd
MF
1067 if (status < 0) {
1068 if (status != -ENOENT)
1069 mlog_errno(status);
1070 ocfs2_cleanup_delete_inode(inode, 0);
6ca497a8 1071 goto bail_unlock_nfs_sync;
ccd979bd
MF
1072 }
1073
ad694821
JQ
1074 di = (struct ocfs2_dinode *)di_bh->b_data;
1075 /* Skip inode deletion and wait for dio orphan entry recovered
1076 * first */
1077 if (unlikely(di->i_flags & cpu_to_le32(OCFS2_DIO_ORPHANED_FL))) {
1078 ocfs2_cleanup_delete_inode(inode, 0);
1079 goto bail_unlock_inode;
1080 }
1081
ccd979bd
MF
1082 /* Query the cluster. This will be the final decision made
1083 * before we go ahead and wipe the inode. */
1084 status = ocfs2_query_inode_wipe(inode, di_bh, &wipe);
1085 if (!wipe || status < 0) {
34d024f8 1086 /* Error and remote inode busy both mean we won't be
ccd979bd
MF
1087 * removing the inode, so they take almost the same
1088 * path. */
1089 if (status < 0)
1090 mlog_errno(status);
1091
34d024f8
MF
1092 /* Someone in the cluster has disallowed a wipe of
1093 * this inode, or it was never completely
1094 * orphaned. Write out the pages and exit now. */
ccd979bd
MF
1095 ocfs2_cleanup_delete_inode(inode, 1);
1096 goto bail_unlock_inode;
1097 }
1098
1099 ocfs2_cleanup_delete_inode(inode, 0);
1100
1101 status = ocfs2_wipe_inode(inode, di_bh);
1102 if (status < 0) {
b4df6ed8
MF
1103 if (status != -EDEADLK)
1104 mlog_errno(status);
ccd979bd
MF
1105 goto bail_unlock_inode;
1106 }
1107
24c19ef4
MF
1108 /*
1109 * Mark the inode as successfully deleted.
1110 *
1111 * This is important for ocfs2_clear_inode() as it will check
1112 * this flag and skip any checkpointing work
1113 *
1114 * ocfs2_stuff_meta_lvb() also uses this flag to invalidate
1115 * the LVB for other nodes.
1116 */
ccd979bd
MF
1117 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_DELETED;
1118
1119bail_unlock_inode:
e63aecb6 1120 ocfs2_inode_unlock(inode, 1);
ccd979bd 1121 brelse(di_bh);
6ca497a8 1122
1123bail_unlock_nfs_sync:
1124 ocfs2_nfs_sync_unlock(OCFS2_SB(inode->i_sb), 0);
1125
ccd979bd 1126bail_unblock:
e4b963f1 1127 ocfs2_unblock_signals(&oldset);
ccd979bd 1128bail:
c1e8d35e 1129 return;
ccd979bd
MF
1130}
1131
066d92dc 1132static void ocfs2_clear_inode(struct inode *inode)
ccd979bd
MF
1133{
1134 int status;
1135 struct ocfs2_inode_info *oi = OCFS2_I(inode);
84d86f83 1136 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
ccd979bd 1137
dbd5768f 1138 clear_inode(inode);
64f3b269
TM
1139 trace_ocfs2_clear_inode((unsigned long long)oi->ip_blkno,
1140 inode->i_nlink);
ccd979bd
MF
1141
1142 mlog_bug_on_msg(OCFS2_SB(inode->i_sb) == NULL,
1143 "Inode=%lu\n", inode->i_ino);
1144
9f754758 1145 dquot_drop(inode);
257ba15c 1146
34d024f8
MF
1147 /* To preven remote deletes we hold open lock before, now it
1148 * is time to unlock PR and EX open locks. */
50008630
TY
1149 ocfs2_open_unlock(inode);
1150
ccd979bd 1151 /* Do these before all the other work so that we don't bounce
34d024f8 1152 * the downconvert thread while waiting to destroy the locks. */
84d86f83
JK
1153 ocfs2_mark_lockres_freeing(osb, &oi->ip_rw_lockres);
1154 ocfs2_mark_lockres_freeing(osb, &oi->ip_inode_lockres);
1155 ocfs2_mark_lockres_freeing(osb, &oi->ip_open_lockres);
ccd979bd 1156
4fe370af
MF
1157 ocfs2_resv_discard(&OCFS2_SB(inode->i_sb)->osb_la_resmap,
1158 &oi->ip_la_data_resv);
1159 ocfs2_resv_init_once(&oi->ip_la_data_resv);
1160
ccd979bd
MF
1161 /* We very well may get a clear_inode before all an inodes
1162 * metadata has hit disk. Of course, we can't drop any cluster
1163 * locks until the journal has finished with it. The only
1164 * exception here are successfully wiped inodes - their
1165 * metadata can now be considered to be part of the system
1166 * inodes from which it came. */
1167 if (!(OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED))
1168 ocfs2_checkpoint_inode(inode);
1169
1170 mlog_bug_on_msg(!list_empty(&oi->ip_io_markers),
b0697053
MF
1171 "Clear inode of %llu, inode has io markers\n",
1172 (unsigned long long)oi->ip_blkno);
ccd979bd 1173
83418978
MF
1174 ocfs2_extent_map_trunc(inode, 0);
1175
ccd979bd
MF
1176 status = ocfs2_drop_inode_locks(inode);
1177 if (status < 0)
1178 mlog_errno(status);
1179
1180 ocfs2_lock_res_free(&oi->ip_rw_lockres);
e63aecb6 1181 ocfs2_lock_res_free(&oi->ip_inode_lockres);
50008630 1182 ocfs2_lock_res_free(&oi->ip_open_lockres);
ccd979bd 1183
66fb345d 1184 ocfs2_metadata_cache_exit(INODE_CACHE(inode));
ccd979bd 1185
8cb471e8 1186 mlog_bug_on_msg(INODE_CACHE(inode)->ci_num_cached,
b0697053 1187 "Clear inode of %llu, inode has %u cache items\n",
8cb471e8
JB
1188 (unsigned long long)oi->ip_blkno,
1189 INODE_CACHE(inode)->ci_num_cached);
ccd979bd 1190
8cb471e8 1191 mlog_bug_on_msg(!(INODE_CACHE(inode)->ci_flags & OCFS2_CACHE_FL_INLINE),
b0697053
MF
1192 "Clear inode of %llu, inode has a bad flag\n",
1193 (unsigned long long)oi->ip_blkno);
ccd979bd
MF
1194
1195 mlog_bug_on_msg(spin_is_locked(&oi->ip_lock),
b0697053
MF
1196 "Clear inode of %llu, inode is locked\n",
1197 (unsigned long long)oi->ip_blkno);
ccd979bd 1198
251b6ecc 1199 mlog_bug_on_msg(!mutex_trylock(&oi->ip_io_mutex),
b0697053
MF
1200 "Clear inode of %llu, io_mutex is locked\n",
1201 (unsigned long long)oi->ip_blkno);
251b6ecc 1202 mutex_unlock(&oi->ip_io_mutex);
ccd979bd
MF
1203
1204 /*
1205 * down_trylock() returns 0, down_write_trylock() returns 1
1206 * kernel 1, world 0
1207 */
1208 mlog_bug_on_msg(!down_write_trylock(&oi->ip_alloc_sem),
b0697053
MF
1209 "Clear inode of %llu, alloc_sem is locked\n",
1210 (unsigned long long)oi->ip_blkno);
ccd979bd
MF
1211 up_write(&oi->ip_alloc_sem);
1212
1213 mlog_bug_on_msg(oi->ip_open_count,
b0697053
MF
1214 "Clear inode of %llu has open count %d\n",
1215 (unsigned long long)oi->ip_blkno, oi->ip_open_count);
ccd979bd
MF
1216
1217 /* Clear all other flags. */
47460d65 1218 oi->ip_flags = 0;
ccd979bd
MF
1219 oi->ip_dir_start_lookup = 0;
1220 oi->ip_blkno = 0ULL;
ae0dff68
SM
1221
1222 /*
1223 * ip_jinode is used to track txns against this inode. We ensure that
1224 * the journal is flushed before journal shutdown. Thus it is safe to
1225 * have inodes get cleaned up after journal shutdown.
1226 */
2b4e30fb
JB
1227 jbd2_journal_release_jbd_inode(OCFS2_SB(inode->i_sb)->journal->j_journal,
1228 &oi->ip_jinode);
ccd979bd
MF
1229}
1230
066d92dc
AV
1231void ocfs2_evict_inode(struct inode *inode)
1232{
1233 if (!inode->i_nlink ||
1234 (OCFS2_I(inode)->ip_flags & OCFS2_INODE_MAYBE_ORPHANED)) {
1235 ocfs2_delete_inode(inode);
1236 } else {
91b0abe3 1237 truncate_inode_pages_final(&inode->i_data);
066d92dc
AV
1238 }
1239 ocfs2_clear_inode(inode);
1240}
1241
ccd979bd
MF
1242/* Called under inode_lock, with no more references on the
1243 * struct inode, so it's safe here to check the flags field
1244 * and to manipulate i_nlink without any other locks. */
45321ac5 1245int ocfs2_drop_inode(struct inode *inode)
ccd979bd
MF
1246{
1247 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1248
64f3b269
TM
1249 trace_ocfs2_drop_inode((unsigned long long)oi->ip_blkno,
1250 inode->i_nlink, oi->ip_flags);
ccd979bd 1251
513e2dae
X
1252 assert_spin_locked(&inode->i_lock);
1253 inode->i_state |= I_WILL_FREE;
1254 spin_unlock(&inode->i_lock);
1255 write_inode_now(inode, 1);
1256 spin_lock(&inode->i_lock);
1257 WARN_ON(inode->i_state & I_NEW);
1258 inode->i_state &= ~I_WILL_FREE;
ccd979bd 1259
513e2dae 1260 return 1;
ccd979bd
MF
1261}
1262
ccd979bd
MF
1263/*
1264 * This is called from our getattr.
1265 */
1266int ocfs2_inode_revalidate(struct dentry *dentry)
1267{
2b0143b5 1268 struct inode *inode = d_inode(dentry);
ccd979bd
MF
1269 int status = 0;
1270
64f3b269
TM
1271 trace_ocfs2_inode_revalidate(inode,
1272 inode ? (unsigned long long)OCFS2_I(inode)->ip_blkno : 0ULL,
1273 inode ? (unsigned long long)OCFS2_I(inode)->ip_flags : 0);
ccd979bd
MF
1274
1275 if (!inode) {
ccd979bd
MF
1276 status = -ENOENT;
1277 goto bail;
1278 }
1279
1280 spin_lock(&OCFS2_I(inode)->ip_lock);
1281 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
1282 spin_unlock(&OCFS2_I(inode)->ip_lock);
ccd979bd
MF
1283 status = -ENOENT;
1284 goto bail;
1285 }
1286 spin_unlock(&OCFS2_I(inode)->ip_lock);
1287
e63aecb6 1288 /* Let ocfs2_inode_lock do the work of updating our struct
ccd979bd 1289 * inode for us. */
e63aecb6 1290 status = ocfs2_inode_lock(inode, NULL, 0);
ccd979bd
MF
1291 if (status < 0) {
1292 if (status != -ENOENT)
1293 mlog_errno(status);
1294 goto bail;
1295 }
e63aecb6 1296 ocfs2_inode_unlock(inode, 0);
ccd979bd 1297bail:
ccd979bd
MF
1298 return status;
1299}
1300
1301/*
1302 * Updates a disk inode from a
1303 * struct inode.
1304 * Only takes ip_lock.
1305 */
1fabe148 1306int ocfs2_mark_inode_dirty(handle_t *handle,
ccd979bd
MF
1307 struct inode *inode,
1308 struct buffer_head *bh)
1309{
1310 int status;
1311 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) bh->b_data;
1312
64f3b269 1313 trace_ocfs2_mark_inode_dirty((unsigned long long)OCFS2_I(inode)->ip_blkno);
ccd979bd 1314
0cf2f763 1315 status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), bh,
13723d00 1316 OCFS2_JOURNAL_ACCESS_WRITE);
ccd979bd
MF
1317 if (status < 0) {
1318 mlog_errno(status);
1319 goto leave;
1320 }
1321
1322 spin_lock(&OCFS2_I(inode)->ip_lock);
1323 fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters);
6e4b0d56 1324 ocfs2_get_inode_flags(OCFS2_I(inode));
ca4d147e 1325 fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr);
15b1e36b 1326 fe->i_dyn_features = cpu_to_le16(OCFS2_I(inode)->ip_dyn_features);
ccd979bd
MF
1327 spin_unlock(&OCFS2_I(inode)->ip_lock);
1328
1329 fe->i_size = cpu_to_le64(i_size_read(inode));
198a1ca3 1330 ocfs2_set_links_count(fe, inode->i_nlink);
2c034176
EB
1331 fe->i_uid = cpu_to_le32(i_uid_read(inode));
1332 fe->i_gid = cpu_to_le32(i_gid_read(inode));
ccd979bd
MF
1333 fe->i_mode = cpu_to_le16(inode->i_mode);
1334 fe->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
1335 fe->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
1336 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
1337 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
1338 fe->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
1339 fe->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
1340
ec20cec7 1341 ocfs2_journal_dirty(handle, bh);
2931cdcb 1342 ocfs2_update_inode_fsync_trans(handle, inode, 1);
ccd979bd 1343leave:
ccd979bd
MF
1344 return status;
1345}
1346
1347/*
1348 *
1349 * Updates a struct inode from a disk inode.
1350 * does no i/o, only takes ip_lock.
1351 */
1352void ocfs2_refresh_inode(struct inode *inode,
1353 struct ocfs2_dinode *fe)
1354{
ccd979bd
MF
1355 spin_lock(&OCFS2_I(inode)->ip_lock);
1356
1357 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
ca4d147e 1358 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
15b1e36b 1359 OCFS2_I(inode)->ip_dyn_features = le16_to_cpu(fe->i_dyn_features);
ca4d147e 1360 ocfs2_set_inode_flags(inode);
ccd979bd 1361 i_size_write(inode, le64_to_cpu(fe->i_size));
bfe86848 1362 set_nlink(inode, ocfs2_read_links_count(fe));
2c034176
EB
1363 i_uid_write(inode, le32_to_cpu(fe->i_uid));
1364 i_gid_write(inode, le32_to_cpu(fe->i_gid));
ccd979bd 1365 inode->i_mode = le16_to_cpu(fe->i_mode);
ccd979bd
MF
1366 if (S_ISLNK(inode->i_mode) && le32_to_cpu(fe->i_clusters) == 0)
1367 inode->i_blocks = 0;
1368 else
8110b073 1369 inode->i_blocks = ocfs2_inode_sector_count(inode);
ccd979bd
MF
1370 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
1371 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
1372 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
1373 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
1374 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
1375 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
1376
1377 spin_unlock(&OCFS2_I(inode)->ip_lock);
1378}
b657c95c
JB
1379
1380int ocfs2_validate_inode_block(struct super_block *sb,
1381 struct buffer_head *bh)
1382{
d6b32bbb 1383 int rc;
b657c95c
JB
1384 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
1385
64f3b269 1386 trace_ocfs2_validate_inode_block((unsigned long long)bh->b_blocknr);
970e4936 1387
b657c95c
JB
1388 BUG_ON(!buffer_uptodate(bh));
1389
d6b32bbb
JB
1390 /*
1391 * If the ecc fails, we return the error but otherwise
1392 * leave the filesystem running. We know any error is
1393 * local to this block.
1394 */
1395 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &di->i_check);
13723d00
JB
1396 if (rc) {
1397 mlog(ML_ERROR, "Checksum failed for dinode %llu\n",
1398 (unsigned long long)bh->b_blocknr);
d6b32bbb 1399 goto bail;
13723d00 1400 }
d6b32bbb
JB
1401
1402 /*
1403 * Errors after here are fatal.
1404 */
1405
1406 rc = -EINVAL;
1407
b657c95c 1408 if (!OCFS2_IS_VALID_DINODE(di)) {
17a5b9ab 1409 rc = ocfs2_error(sb, "Invalid dinode #%llu: signature = %.*s\n",
7ecef14a
JP
1410 (unsigned long long)bh->b_blocknr, 7,
1411 di->i_signature);
b657c95c
JB
1412 goto bail;
1413 }
1414
1415 if (le64_to_cpu(di->i_blkno) != bh->b_blocknr) {
17a5b9ab 1416 rc = ocfs2_error(sb, "Invalid dinode #%llu: i_blkno is %llu\n",
7ecef14a
JP
1417 (unsigned long long)bh->b_blocknr,
1418 (unsigned long long)le64_to_cpu(di->i_blkno));
b657c95c
JB
1419 goto bail;
1420 }
1421
1422 if (!(di->i_flags & cpu_to_le32(OCFS2_VALID_FL))) {
17a5b9ab 1423 rc = ocfs2_error(sb,
7ecef14a
JP
1424 "Invalid dinode #%llu: OCFS2_VALID_FL not set\n",
1425 (unsigned long long)bh->b_blocknr);
b657c95c
JB
1426 goto bail;
1427 }
1428
1429 if (le32_to_cpu(di->i_fs_generation) !=
1430 OCFS2_SB(sb)->fs_generation) {
17a5b9ab 1431 rc = ocfs2_error(sb,
7ecef14a
JP
1432 "Invalid dinode #%llu: fs_generation is %u\n",
1433 (unsigned long long)bh->b_blocknr,
1434 le32_to_cpu(di->i_fs_generation));
b657c95c
JB
1435 goto bail;
1436 }
1437
1438 rc = 0;
1439
1440bail:
1441 return rc;
1442}
1443
d56a8f32
GH
1444static int ocfs2_filecheck_validate_inode_block(struct super_block *sb,
1445 struct buffer_head *bh)
1446{
1447 int rc = 0;
1448 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
1449
1450 trace_ocfs2_filecheck_validate_inode_block(
1451 (unsigned long long)bh->b_blocknr);
1452
1453 BUG_ON(!buffer_uptodate(bh));
1454
1455 /*
1456 * Call ocfs2_validate_meta_ecc() first since it has ecc repair
1457 * function, but we should not return error immediately when ecc
1458 * validation fails, because the reason is quite likely the invalid
1459 * inode number inputed.
1460 */
1461 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &di->i_check);
1462 if (rc) {
1463 mlog(ML_ERROR,
1464 "Filecheck: checksum failed for dinode %llu\n",
1465 (unsigned long long)bh->b_blocknr);
1466 rc = -OCFS2_FILECHECK_ERR_BLOCKECC;
1467 }
1468
1469 if (!OCFS2_IS_VALID_DINODE(di)) {
1470 mlog(ML_ERROR,
1471 "Filecheck: invalid dinode #%llu: signature = %.*s\n",
1472 (unsigned long long)bh->b_blocknr, 7, di->i_signature);
1473 rc = -OCFS2_FILECHECK_ERR_INVALIDINO;
1474 goto bail;
1475 } else if (rc)
1476 goto bail;
1477
1478 if (le64_to_cpu(di->i_blkno) != bh->b_blocknr) {
1479 mlog(ML_ERROR,
1480 "Filecheck: invalid dinode #%llu: i_blkno is %llu\n",
1481 (unsigned long long)bh->b_blocknr,
1482 (unsigned long long)le64_to_cpu(di->i_blkno));
1483 rc = -OCFS2_FILECHECK_ERR_BLOCKNO;
1484 goto bail;
1485 }
1486
1487 if (!(di->i_flags & cpu_to_le32(OCFS2_VALID_FL))) {
1488 mlog(ML_ERROR,
1489 "Filecheck: invalid dinode #%llu: OCFS2_VALID_FL "
1490 "not set\n",
1491 (unsigned long long)bh->b_blocknr);
1492 rc = -OCFS2_FILECHECK_ERR_VALIDFLAG;
1493 goto bail;
1494 }
1495
1496 if (le32_to_cpu(di->i_fs_generation) !=
1497 OCFS2_SB(sb)->fs_generation) {
1498 mlog(ML_ERROR,
1499 "Filecheck: invalid dinode #%llu: fs_generation is %u\n",
1500 (unsigned long long)bh->b_blocknr,
1501 le32_to_cpu(di->i_fs_generation));
1502 rc = -OCFS2_FILECHECK_ERR_GENERATION;
1503 goto bail;
1504 }
1505
1506bail:
1507 return rc;
1508}
1509
1510static int ocfs2_filecheck_repair_inode_block(struct super_block *sb,
1511 struct buffer_head *bh)
1512{
1513 int changed = 0;
1514 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
1515
1516 if (!ocfs2_filecheck_validate_inode_block(sb, bh))
1517 return 0;
1518
1519 trace_ocfs2_filecheck_repair_inode_block(
1520 (unsigned long long)bh->b_blocknr);
1521
1522 if (ocfs2_is_hard_readonly(OCFS2_SB(sb)) ||
1523 ocfs2_is_soft_readonly(OCFS2_SB(sb))) {
1524 mlog(ML_ERROR,
1525 "Filecheck: cannot repair dinode #%llu "
1526 "on readonly filesystem\n",
1527 (unsigned long long)bh->b_blocknr);
1528 return -OCFS2_FILECHECK_ERR_READONLY;
1529 }
1530
1531 if (buffer_jbd(bh)) {
1532 mlog(ML_ERROR,
1533 "Filecheck: cannot repair dinode #%llu, "
1534 "its buffer is in jbd\n",
1535 (unsigned long long)bh->b_blocknr);
1536 return -OCFS2_FILECHECK_ERR_INJBD;
1537 }
1538
1539 if (!OCFS2_IS_VALID_DINODE(di)) {
1540 /* Cannot fix invalid inode block */
1541 return -OCFS2_FILECHECK_ERR_INVALIDINO;
1542 }
1543
1544 if (!(di->i_flags & cpu_to_le32(OCFS2_VALID_FL))) {
1545 /* Cannot just add VALID_FL flag back as a fix,
1546 * need more things to check here.
1547 */
1548 return -OCFS2_FILECHECK_ERR_VALIDFLAG;
1549 }
1550
1551 if (le64_to_cpu(di->i_blkno) != bh->b_blocknr) {
1552 di->i_blkno = cpu_to_le64(bh->b_blocknr);
1553 changed = 1;
1554 mlog(ML_ERROR,
1555 "Filecheck: reset dinode #%llu: i_blkno to %llu\n",
1556 (unsigned long long)bh->b_blocknr,
1557 (unsigned long long)le64_to_cpu(di->i_blkno));
1558 }
1559
1560 if (le32_to_cpu(di->i_fs_generation) !=
1561 OCFS2_SB(sb)->fs_generation) {
1562 di->i_fs_generation = cpu_to_le32(OCFS2_SB(sb)->fs_generation);
1563 changed = 1;
1564 mlog(ML_ERROR,
1565 "Filecheck: reset dinode #%llu: fs_generation to %u\n",
1566 (unsigned long long)bh->b_blocknr,
1567 le32_to_cpu(di->i_fs_generation));
1568 }
1569
1570 if (changed || ocfs2_validate_meta_ecc(sb, bh->b_data, &di->i_check)) {
1571 ocfs2_compute_meta_ecc(sb, bh->b_data, &di->i_check);
1572 mark_buffer_dirty(bh);
1573 mlog(ML_ERROR,
1574 "Filecheck: reset dinode #%llu: compute meta ecc\n",
1575 (unsigned long long)bh->b_blocknr);
1576 }
1577
1578 return 0;
1579}
1580
1581static int
1582ocfs2_filecheck_read_inode_block_full(struct inode *inode,
1583 struct buffer_head **bh,
1584 int flags, int type)
1585{
1586 int rc;
1587 struct buffer_head *tmp = *bh;
1588
1589 if (!type) /* Check inode block */
1590 rc = ocfs2_read_blocks(INODE_CACHE(inode),
1591 OCFS2_I(inode)->ip_blkno,
1592 1, &tmp, flags,
1593 ocfs2_filecheck_validate_inode_block);
1594 else /* Repair inode block */
1595 rc = ocfs2_read_blocks(INODE_CACHE(inode),
1596 OCFS2_I(inode)->ip_blkno,
1597 1, &tmp, flags,
1598 ocfs2_filecheck_repair_inode_block);
1599
1600 /* If ocfs2_read_blocks() got us a new bh, pass it up. */
1601 if (!rc && !*bh)
1602 *bh = tmp;
1603
1604 return rc;
1605}
1606
b657c95c
JB
1607int ocfs2_read_inode_block_full(struct inode *inode, struct buffer_head **bh,
1608 int flags)
1609{
1610 int rc;
1611 struct buffer_head *tmp = *bh;
1612
8cb471e8
JB
1613 rc = ocfs2_read_blocks(INODE_CACHE(inode), OCFS2_I(inode)->ip_blkno,
1614 1, &tmp, flags, ocfs2_validate_inode_block);
b657c95c
JB
1615
1616 /* If ocfs2_read_blocks() got us a new bh, pass it up. */
970e4936 1617 if (!rc && !*bh)
b657c95c
JB
1618 *bh = tmp;
1619
b657c95c
JB
1620 return rc;
1621}
1622
1623int ocfs2_read_inode_block(struct inode *inode, struct buffer_head **bh)
1624{
1625 return ocfs2_read_inode_block_full(inode, bh, 0);
1626}
6e5a3d75 1627
6e5a3d75
JB
1628
1629static u64 ocfs2_inode_cache_owner(struct ocfs2_caching_info *ci)
1630{
1631 struct ocfs2_inode_info *oi = cache_info_to_inode(ci);
1632
1633 return oi->ip_blkno;
1634}
1635
8cb471e8
JB
1636static struct super_block *ocfs2_inode_cache_get_super(struct ocfs2_caching_info *ci)
1637{
1638 struct ocfs2_inode_info *oi = cache_info_to_inode(ci);
1639
1640 return oi->vfs_inode.i_sb;
1641}
1642
6e5a3d75
JB
1643static void ocfs2_inode_cache_lock(struct ocfs2_caching_info *ci)
1644{
1645 struct ocfs2_inode_info *oi = cache_info_to_inode(ci);
1646
1647 spin_lock(&oi->ip_lock);
1648}
1649
1650static void ocfs2_inode_cache_unlock(struct ocfs2_caching_info *ci)
1651{
1652 struct ocfs2_inode_info *oi = cache_info_to_inode(ci);
1653
1654 spin_unlock(&oi->ip_lock);
1655}
1656
1657static void ocfs2_inode_cache_io_lock(struct ocfs2_caching_info *ci)
1658{
1659 struct ocfs2_inode_info *oi = cache_info_to_inode(ci);
1660
1661 mutex_lock(&oi->ip_io_mutex);
1662}
1663
1664static void ocfs2_inode_cache_io_unlock(struct ocfs2_caching_info *ci)
1665{
1666 struct ocfs2_inode_info *oi = cache_info_to_inode(ci);
1667
1668 mutex_unlock(&oi->ip_io_mutex);
1669}
1670
1671const struct ocfs2_caching_operations ocfs2_inode_caching_ops = {
1672 .co_owner = ocfs2_inode_cache_owner,
8cb471e8 1673 .co_get_super = ocfs2_inode_cache_get_super,
6e5a3d75
JB
1674 .co_cache_lock = ocfs2_inode_cache_lock,
1675 .co_cache_unlock = ocfs2_inode_cache_unlock,
1676 .co_io_lock = ocfs2_inode_cache_io_lock,
1677 .co_io_unlock = ocfs2_inode_cache_io_unlock,
1678};
1679