1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * vfs' aops, fops, dops and iops
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
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.
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.
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.
27 #include <linux/types.h>
28 #include <linux/slab.h>
29 #include <linux/highmem.h>
30 #include <linux/pagemap.h>
31 #include <linux/smp_lock.h>
33 #include <asm/byteorder.h>
35 #define MLOG_MASK_PREFIX ML_INODE
36 #include <cluster/masklog.h>
42 #include "extent_map.h"
44 #include "heartbeat.h"
55 #include "buffer_head_io.h"
57 struct ocfs2_find_inode_args
61 unsigned int fi_flags;
64 static int ocfs2_read_locked_inode(struct inode *inode,
65 struct ocfs2_find_inode_args *args);
66 static int ocfs2_init_locked_inode(struct inode *inode, void *opaque);
67 static int ocfs2_find_actor(struct inode *inode, void *opaque);
68 static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
70 struct buffer_head *fe_bh);
72 void ocfs2_set_inode_flags(struct inode *inode)
74 unsigned int flags = OCFS2_I(inode)->ip_attr;
76 inode->i_flags &= ~(S_IMMUTABLE |
77 S_SYNC | S_APPEND | S_NOATIME | S_DIRSYNC);
79 if (flags & OCFS2_IMMUTABLE_FL)
80 inode->i_flags |= S_IMMUTABLE;
82 if (flags & OCFS2_SYNC_FL)
83 inode->i_flags |= S_SYNC;
84 if (flags & OCFS2_APPEND_FL)
85 inode->i_flags |= S_APPEND;
86 if (flags & OCFS2_NOATIME_FL)
87 inode->i_flags |= S_NOATIME;
88 if (flags & OCFS2_DIRSYNC_FL)
89 inode->i_flags |= S_DIRSYNC;
92 struct inode *ocfs2_ilookup_for_vote(struct ocfs2_super *osb,
96 struct ocfs2_find_inode_args args;
98 /* ocfs2_ilookup_for_vote should *only* be called from the
100 BUG_ON(current != osb->vote_task);
102 args.fi_blkno = blkno;
103 args.fi_flags = OCFS2_FI_FLAG_NOWAIT;
105 args.fi_flags |= OCFS2_FI_FLAG_DELETE;
106 args.fi_ino = ino_from_blkno(osb->sb, blkno);
107 return ilookup5(osb->sb, args.fi_ino, ocfs2_find_actor, &args);
110 struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 blkno, int flags)
112 struct inode *inode = NULL;
113 struct super_block *sb = osb->sb;
114 struct ocfs2_find_inode_args args;
116 mlog_entry("(blkno = %llu)\n", (unsigned long long)blkno);
118 /* Ok. By now we've either got the offsets passed to us by the
119 * caller, or we just pulled them off the bh. Lets do some
120 * sanity checks to make sure they're OK. */
122 inode = ERR_PTR(-EINVAL);
123 mlog_errno(PTR_ERR(inode));
127 args.fi_blkno = blkno;
128 args.fi_flags = flags;
129 args.fi_ino = ino_from_blkno(sb, blkno);
131 inode = iget5_locked(sb, args.fi_ino, ocfs2_find_actor,
132 ocfs2_init_locked_inode, &args);
133 /* inode was *not* in the inode cache. 2.6.x requires
134 * us to do our own read_inode call and unlock it
136 if (inode && inode->i_state & I_NEW) {
137 mlog(0, "Inode was not in inode cache, reading it.\n");
138 ocfs2_read_locked_inode(inode, &args);
139 unlock_new_inode(inode);
142 inode = ERR_PTR(-ENOMEM);
143 mlog_errno(PTR_ERR(inode));
146 if (is_bad_inode(inode)) {
148 inode = ERR_PTR(-ESTALE);
153 if (!IS_ERR(inode)) {
154 mlog(0, "returning inode with number %llu\n",
155 (unsigned long long)OCFS2_I(inode)->ip_blkno);
156 mlog_exit_ptr(inode);
164 * here's how inodes get read from disk:
165 * iget5_locked -> find_actor -> OCFS2_FIND_ACTOR
166 * found? : return the in-memory inode
167 * not found? : get_new_inode -> OCFS2_INIT_LOCKED_INODE
170 static int ocfs2_find_actor(struct inode *inode, void *opaque)
172 struct ocfs2_find_inode_args *args = NULL;
173 struct ocfs2_inode_info *oi = OCFS2_I(inode);
176 mlog_entry("(0x%p, %lu, 0x%p)\n", inode, inode->i_ino, opaque);
180 mlog_bug_on_msg(!inode, "No inode in find actor!\n");
182 if (oi->ip_blkno != args->fi_blkno)
185 /* OCFS2_FI_FLAG_NOWAIT is *only* set from
186 * ocfs2_ilookup_for_vote which won't create an inode for one
187 * that isn't found. The vote thread which doesn't want to get
188 * an inode which is in the process of going away - otherwise
189 * the call to __wait_on_freeing_inode in find_inode_fast will
190 * cause it to deadlock on an inode which may be waiting on a
191 * vote (or lock release) in delete_inode */
192 if ((args->fi_flags & OCFS2_FI_FLAG_NOWAIT) &&
193 (inode->i_state & (I_FREEING|I_CLEAR))) {
194 /* As stated above, we're not going to return an
195 * inode. In the case of a delete vote, the voting
196 * code is going to signal the other node to go
197 * ahead. Mark that state here, so this freeing inode
198 * has the state when it gets to delete_inode. */
199 if (args->fi_flags & OCFS2_FI_FLAG_DELETE) {
200 spin_lock(&oi->ip_lock);
201 ocfs2_mark_inode_remotely_deleted(inode);
202 spin_unlock(&oi->ip_lock);
214 * initialize the new inode, but don't do anything that would cause
216 * return 0 on success, 1 on failure
218 static int ocfs2_init_locked_inode(struct inode *inode, void *opaque)
220 struct ocfs2_find_inode_args *args = opaque;
222 mlog_entry("inode = %p, opaque = %p\n", inode, opaque);
224 inode->i_ino = args->fi_ino;
225 OCFS2_I(inode)->ip_blkno = args->fi_blkno;
231 int ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
234 struct super_block *sb;
235 struct ocfs2_super *osb;
236 int status = -EINVAL;
238 mlog_entry("(0x%p, size:%llu)\n", inode,
239 (unsigned long long)fe->i_size);
244 /* this means that read_inode cannot create a superblock inode
245 * today. change if needed. */
246 if (!OCFS2_IS_VALID_DINODE(fe) ||
247 !(fe->i_flags & cpu_to_le32(OCFS2_VALID_FL))) {
248 mlog(0, "Invalid dinode: i_ino=%lu, i_blkno=%llu, "
249 "signature = %.*s, flags = 0x%x\n",
251 (unsigned long long)le64_to_cpu(fe->i_blkno), 7,
252 fe->i_signature, le32_to_cpu(fe->i_flags));
256 if (le32_to_cpu(fe->i_fs_generation) != osb->fs_generation) {
257 mlog(ML_ERROR, "file entry generation does not match "
258 "superblock! osb->fs_generation=%x, "
259 "fe->i_fs_generation=%x\n",
260 osb->fs_generation, le32_to_cpu(fe->i_fs_generation));
264 inode->i_version = 1;
265 inode->i_generation = le32_to_cpu(fe->i_generation);
266 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
267 inode->i_mode = le16_to_cpu(fe->i_mode);
268 inode->i_uid = le32_to_cpu(fe->i_uid);
269 inode->i_gid = le32_to_cpu(fe->i_gid);
271 /* Fast symlinks will have i_size but no allocated clusters. */
272 if (S_ISLNK(inode->i_mode) && !fe->i_clusters)
276 ocfs2_align_bytes_to_sectors(le64_to_cpu(fe->i_size));
277 inode->i_mapping->a_ops = &ocfs2_aops;
278 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
279 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
280 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
281 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
282 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
283 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
285 if (OCFS2_I(inode)->ip_blkno != le64_to_cpu(fe->i_blkno))
287 "ip_blkno %llu != i_blkno %llu!\n",
288 (unsigned long long)OCFS2_I(inode)->ip_blkno,
289 (unsigned long long)fe->i_blkno);
291 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
292 OCFS2_I(inode)->ip_orphaned_slot = OCFS2_INVALID_SLOT;
293 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
295 inode->i_nlink = le16_to_cpu(fe->i_links_count);
297 if (fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL))
298 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SYSTEM_FILE;
300 if (fe->i_flags & cpu_to_le32(OCFS2_LOCAL_ALLOC_FL)) {
301 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
302 mlog(0, "local alloc inode: i_ino=%lu\n", inode->i_ino);
303 } else if (fe->i_flags & cpu_to_le32(OCFS2_BITMAP_FL)) {
304 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
305 } else if (fe->i_flags & cpu_to_le32(OCFS2_SUPER_BLOCK_FL)) {
306 mlog(0, "superblock inode: i_ino=%lu\n", inode->i_ino);
307 /* we can't actually hit this as read_inode can't
308 * handle superblocks today ;-) */
312 switch (inode->i_mode & S_IFMT) {
314 inode->i_fop = &ocfs2_fops;
315 inode->i_op = &ocfs2_file_iops;
316 i_size_write(inode, le64_to_cpu(fe->i_size));
319 inode->i_op = &ocfs2_dir_iops;
320 inode->i_fop = &ocfs2_dops;
321 i_size_write(inode, le64_to_cpu(fe->i_size));
324 if (ocfs2_inode_is_fast_symlink(inode))
325 inode->i_op = &ocfs2_fast_symlink_inode_operations;
327 inode->i_op = &ocfs2_symlink_inode_operations;
328 i_size_write(inode, le64_to_cpu(fe->i_size));
331 inode->i_op = &ocfs2_special_file_iops;
332 init_special_inode(inode, inode->i_mode,
338 inode->i_ino = ino_from_blkno(inode->i_sb,
339 le64_to_cpu(fe->i_blkno));
342 * If we ever want to create system files from kernel,
343 * the generation argument to
344 * ocfs2_inode_lock_res_init() will have to change.
346 BUG_ON(fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL));
348 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_meta_lockres,
349 OCFS2_LOCK_TYPE_META, 0, inode);
352 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_rw_lockres,
353 OCFS2_LOCK_TYPE_RW, inode->i_generation,
356 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_data_lockres,
357 OCFS2_LOCK_TYPE_DATA, inode->i_generation,
360 ocfs2_set_inode_flags(inode);
368 static int ocfs2_read_locked_inode(struct inode *inode,
369 struct ocfs2_find_inode_args *args)
371 struct super_block *sb;
372 struct ocfs2_super *osb;
373 struct ocfs2_dinode *fe;
374 struct buffer_head *bh = NULL;
375 int status, can_lock;
378 mlog_entry("(0x%p, 0x%p)\n", inode, args);
381 if (inode == NULL || inode->i_sb == NULL) {
382 mlog(ML_ERROR, "bad inode\n");
389 mlog(ML_ERROR, "bad inode args\n");
390 make_bad_inode(inode);
395 * To improve performance of cold-cache inode stats, we take
396 * the cluster lock here if possible.
398 * Generally, OCFS2 never trusts the contents of an inode
399 * unless it's holding a cluster lock, so taking it here isn't
400 * a correctness issue as much as it is a performance
403 * There are three times when taking the lock is not a good idea:
405 * 1) During startup, before we have initialized the DLM.
407 * 2) If we are reading certain system files which never get
408 * cluster locks (local alloc, truncate log).
410 * 3) If the process doing the iget() is responsible for
411 * orphan dir recovery. We're holding the orphan dir lock and
412 * can get into a deadlock with another process on another
413 * node in ->delete_inode().
415 * #1 and #2 can be simply solved by never taking the lock
416 * here for system files (which are the only type we read
417 * during mount). It's a heavier approach, but our main
418 * concern is user-accesible files anyway.
420 * #3 works itself out because we'll eventually take the
421 * cluster lock before trusting anything anyway.
423 can_lock = !(args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
424 && !(args->fi_flags & OCFS2_FI_FLAG_NOLOCK)
425 && !ocfs2_mount_local(osb);
428 * To maintain backwards compatibility with older versions of
429 * ocfs2-tools, we still store the generation value for system
430 * files. The only ones that actually matter to userspace are
431 * the journals, but it's easier and inexpensive to just flag
432 * all system files similarly.
434 if (args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
435 generation = osb->fs_generation;
437 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_meta_lockres,
438 OCFS2_LOCK_TYPE_META,
442 status = ocfs2_meta_lock(inode, NULL, 0);
444 make_bad_inode(inode);
450 status = ocfs2_read_block(osb, args->fi_blkno, &bh, 0,
451 can_lock ? inode : NULL);
458 fe = (struct ocfs2_dinode *) bh->b_data;
459 if (!OCFS2_IS_VALID_DINODE(fe)) {
460 mlog(ML_ERROR, "Invalid dinode #%llu: signature = %.*s\n",
461 (unsigned long long)fe->i_blkno, 7, fe->i_signature);
466 * This is a code bug. Right now the caller needs to
467 * understand whether it is asking for a system file inode or
468 * not so the proper lock names can be built.
470 mlog_bug_on_msg(!!(fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) !=
471 !!(args->fi_flags & OCFS2_FI_FLAG_SYSFILE),
472 "Inode %llu: system file state is ambigous\n",
473 (unsigned long long)args->fi_blkno);
475 if (S_ISCHR(le16_to_cpu(fe->i_mode)) ||
476 S_ISBLK(le16_to_cpu(fe->i_mode)))
477 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
479 if (ocfs2_populate_inode(inode, fe, 0) < 0)
482 BUG_ON(args->fi_blkno != le64_to_cpu(fe->i_blkno));
488 ocfs2_meta_unlock(inode, 0);
491 make_bad_inode(inode);
500 void ocfs2_sync_blockdev(struct super_block *sb)
502 sync_blockdev(sb->s_bdev);
505 static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
507 struct buffer_head *fe_bh)
510 handle_t *handle = NULL;
511 struct ocfs2_truncate_context *tc = NULL;
512 struct ocfs2_dinode *fe;
516 fe = (struct ocfs2_dinode *) fe_bh->b_data;
518 /* zero allocation, zero truncate :) */
522 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
523 if (IS_ERR(handle)) {
524 status = PTR_ERR(handle);
530 status = ocfs2_set_inode_size(handle, inode, fe_bh, 0ULL);
536 ocfs2_commit_trans(osb, handle);
539 status = ocfs2_prepare_truncate(osb, inode, fe_bh, &tc);
545 status = ocfs2_commit_truncate(osb, inode, fe_bh, tc);
552 ocfs2_commit_trans(osb, handle);
558 static int ocfs2_remove_inode(struct inode *inode,
559 struct buffer_head *di_bh,
560 struct inode *orphan_dir_inode,
561 struct buffer_head *orphan_dir_bh)
564 struct inode *inode_alloc_inode = NULL;
565 struct buffer_head *inode_alloc_bh = NULL;
567 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
568 struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
571 ocfs2_get_system_file_inode(osb, INODE_ALLOC_SYSTEM_INODE,
572 le16_to_cpu(di->i_suballoc_slot));
573 if (!inode_alloc_inode) {
579 mutex_lock(&inode_alloc_inode->i_mutex);
580 status = ocfs2_meta_lock(inode_alloc_inode, &inode_alloc_bh, 1);
582 mutex_unlock(&inode_alloc_inode->i_mutex);
588 handle = ocfs2_start_trans(osb, OCFS2_DELETE_INODE_CREDITS);
589 if (IS_ERR(handle)) {
590 status = PTR_ERR(handle);
595 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
602 /* set the inodes dtime */
603 status = ocfs2_journal_access(handle, inode, di_bh,
604 OCFS2_JOURNAL_ACCESS_WRITE);
610 di->i_dtime = cpu_to_le64(CURRENT_TIME.tv_sec);
611 le32_and_cpu(&di->i_flags, ~(OCFS2_VALID_FL | OCFS2_ORPHANED_FL));
613 status = ocfs2_journal_dirty(handle, di_bh);
619 ocfs2_remove_from_cache(inode, di_bh);
621 status = ocfs2_free_dinode(handle, inode_alloc_inode,
627 ocfs2_commit_trans(osb, handle);
629 ocfs2_meta_unlock(inode_alloc_inode, 1);
630 mutex_unlock(&inode_alloc_inode->i_mutex);
631 brelse(inode_alloc_bh);
633 iput(inode_alloc_inode);
639 * Serialize with orphan dir recovery. If the process doing
640 * recovery on this orphan dir does an iget() with the dir
641 * i_mutex held, we'll deadlock here. Instead we detect this
642 * and exit early - recovery will wipe this inode for us.
644 static int ocfs2_check_orphan_recovery_state(struct ocfs2_super *osb,
649 spin_lock(&osb->osb_lock);
650 if (ocfs2_node_map_test_bit(osb, &osb->osb_recovering_orphan_dirs, slot)) {
651 mlog(0, "Recovery is happening on orphan dir %d, will skip "
652 "this inode\n", slot);
656 /* This signals to the orphan recovery process that it should
657 * wait for us to handle the wipe. */
658 osb->osb_orphan_wipes[slot]++;
660 spin_unlock(&osb->osb_lock);
664 static void ocfs2_signal_wipe_completion(struct ocfs2_super *osb,
667 spin_lock(&osb->osb_lock);
668 osb->osb_orphan_wipes[slot]--;
669 spin_unlock(&osb->osb_lock);
671 wake_up(&osb->osb_wipe_event);
674 static int ocfs2_wipe_inode(struct inode *inode,
675 struct buffer_head *di_bh)
677 int status, orphaned_slot;
678 struct inode *orphan_dir_inode = NULL;
679 struct buffer_head *orphan_dir_bh = NULL;
680 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
682 /* We've already voted on this so it should be readonly - no
683 * spinlock needed. */
684 orphaned_slot = OCFS2_I(inode)->ip_orphaned_slot;
686 status = ocfs2_check_orphan_recovery_state(osb, orphaned_slot);
690 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
691 ORPHAN_DIR_SYSTEM_INODE,
693 if (!orphan_dir_inode) {
699 /* Lock the orphan dir. The lock will be held for the entire
700 * delete_inode operation. We do this now to avoid races with
701 * recovery completion on other nodes. */
702 mutex_lock(&orphan_dir_inode->i_mutex);
703 status = ocfs2_meta_lock(orphan_dir_inode, &orphan_dir_bh, 1);
705 mutex_unlock(&orphan_dir_inode->i_mutex);
711 /* we do this while holding the orphan dir lock because we
712 * don't want recovery being run from another node to vote for
713 * an inode delete on us -- this will result in two nodes
714 * truncating the same file! */
715 status = ocfs2_truncate_for_delete(osb, inode, di_bh);
718 goto bail_unlock_dir;
721 status = ocfs2_remove_inode(inode, di_bh, orphan_dir_inode,
727 ocfs2_meta_unlock(orphan_dir_inode, 1);
728 mutex_unlock(&orphan_dir_inode->i_mutex);
729 brelse(orphan_dir_bh);
731 iput(orphan_dir_inode);
732 ocfs2_signal_wipe_completion(osb, orphaned_slot);
737 /* There is a series of simple checks that should be done before a
738 * vote is even considered. Encapsulate those in this function. */
739 static int ocfs2_inode_is_valid_to_delete(struct inode *inode)
742 struct ocfs2_inode_info *oi = OCFS2_I(inode);
743 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
745 /* We shouldn't be getting here for the root directory
747 if (inode == osb->root_inode) {
748 mlog(ML_ERROR, "Skipping delete of root inode.\n");
752 /* If we're coming from process_vote we can't go into our own
753 * voting [hello, deadlock city!], so unforuntately we just
754 * have to skip deleting this guy. That's OK though because
755 * the node who's doing the actual deleting should handle it
757 if (current == osb->vote_task) {
758 mlog(0, "Skipping delete of %lu because we're currently "
759 "in process_vote\n", inode->i_ino);
763 spin_lock(&oi->ip_lock);
764 /* OCFS2 *never* deletes system files. This should technically
765 * never get here as system file inodes should always have a
766 * positive link count. */
767 if (oi->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
768 mlog(ML_ERROR, "Skipping delete of system file %llu\n",
769 (unsigned long long)oi->ip_blkno);
773 /* If we have voted "yes" on the wipe of this inode for
774 * another node, it will be marked here so we can safely skip
775 * it. Recovery will cleanup any inodes we might inadvertantly
777 if (oi->ip_flags & OCFS2_INODE_SKIP_DELETE) {
778 mlog(0, "Skipping delete of %lu because another node "
779 "has done this for us.\n", inode->i_ino);
785 spin_unlock(&oi->ip_lock);
790 /* Query the cluster to determine whether we should wipe an inode from
793 * Requires the inode to have the cluster lock. */
794 static int ocfs2_query_inode_wipe(struct inode *inode,
795 struct buffer_head *di_bh,
799 struct ocfs2_inode_info *oi = OCFS2_I(inode);
800 struct ocfs2_dinode *di;
804 /* While we were waiting for the cluster lock in
805 * ocfs2_delete_inode, another node might have asked to delete
806 * the inode. Recheck our flags to catch this. */
807 if (!ocfs2_inode_is_valid_to_delete(inode)) {
808 mlog(0, "Skipping delete of %llu because flags changed\n",
809 (unsigned long long)oi->ip_blkno);
813 /* Now that we have an up to date inode, we can double check
815 if (inode->i_nlink) {
816 mlog(0, "Skipping delete of %llu because nlink = %u\n",
817 (unsigned long long)oi->ip_blkno, inode->i_nlink);
821 /* Do some basic inode verification... */
822 di = (struct ocfs2_dinode *) di_bh->b_data;
823 if (!(di->i_flags & cpu_to_le32(OCFS2_ORPHANED_FL))) {
824 /* for lack of a better error? */
827 "Inode %llu (on-disk %llu) not orphaned! "
828 "Disk flags 0x%x, inode flags 0x%x\n",
829 (unsigned long long)oi->ip_blkno,
830 (unsigned long long)di->i_blkno, di->i_flags,
835 /* has someone already deleted us?! baaad... */
842 status = ocfs2_request_delete_vote(inode);
843 /* -EBUSY means that other nodes are still using the
844 * inode. We're done here though, so avoid doing anything on
845 * disk and let them worry about deleting it. */
846 if (status == -EBUSY) {
848 mlog(0, "Skipping delete of %llu because it is in use on"
849 "other nodes\n", (unsigned long long)oi->ip_blkno);
857 spin_lock(&oi->ip_lock);
858 if (oi->ip_orphaned_slot == OCFS2_INVALID_SLOT) {
859 /* Nobody knew which slot this inode was orphaned
860 * into. This may happen during node death and
861 * recovery knows how to clean it up so we can safely
862 * ignore this inode for now on. */
863 mlog(0, "Nobody knew where inode %llu was orphaned!\n",
864 (unsigned long long)oi->ip_blkno);
868 mlog(0, "Inode %llu is ok to wipe from orphan dir %d\n",
869 (unsigned long long)oi->ip_blkno, oi->ip_orphaned_slot);
871 spin_unlock(&oi->ip_lock);
877 /* Support function for ocfs2_delete_inode. Will help us keep the
878 * inode data in a consistent state for clear_inode. Always truncates
879 * pages, optionally sync's them first. */
880 static void ocfs2_cleanup_delete_inode(struct inode *inode,
883 mlog(0, "Cleanup inode %llu, sync = %d\n",
884 (unsigned long long)OCFS2_I(inode)->ip_blkno, sync_data);
886 write_inode_now(inode, 1);
887 truncate_inode_pages(&inode->i_data, 0);
890 void ocfs2_delete_inode(struct inode *inode)
893 sigset_t blocked, oldset;
894 struct buffer_head *di_bh = NULL;
896 mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino);
898 if (is_bad_inode(inode)) {
899 mlog(0, "Skipping delete of bad inode\n");
903 if (!ocfs2_inode_is_valid_to_delete(inode)) {
904 /* It's probably not necessary to truncate_inode_pages
905 * here but we do it for safety anyway (it will most
906 * likely be a no-op anyway) */
907 ocfs2_cleanup_delete_inode(inode, 0);
911 /* We want to block signals in delete_inode as the lock and
912 * messaging paths may return us -ERESTARTSYS. Which would
913 * cause us to exit early, resulting in inodes being orphaned
915 sigfillset(&blocked);
916 status = sigprocmask(SIG_BLOCK, &blocked, &oldset);
919 ocfs2_cleanup_delete_inode(inode, 1);
923 /* Lock down the inode. This gives us an up to date view of
924 * it's metadata (for verification), and allows us to
925 * serialize delete_inode votes.
927 * Even though we might be doing a truncate, we don't take the
928 * allocation lock here as it won't be needed - nobody will
929 * have the file open.
931 status = ocfs2_meta_lock(inode, &di_bh, 1);
933 if (status != -ENOENT)
935 ocfs2_cleanup_delete_inode(inode, 0);
939 /* Query the cluster. This will be the final decision made
940 * before we go ahead and wipe the inode. */
941 status = ocfs2_query_inode_wipe(inode, di_bh, &wipe);
942 if (!wipe || status < 0) {
943 /* Error and inode busy vote both mean we won't be
944 * removing the inode, so they take almost the same
949 /* Someone in the cluster has voted to not wipe this
950 * inode, or it was never completely orphaned. Write
951 * out the pages and exit now. */
952 ocfs2_cleanup_delete_inode(inode, 1);
953 goto bail_unlock_inode;
956 ocfs2_cleanup_delete_inode(inode, 0);
958 status = ocfs2_wipe_inode(inode, di_bh);
960 if (status != -EDEADLK)
962 goto bail_unlock_inode;
966 * Mark the inode as successfully deleted.
968 * This is important for ocfs2_clear_inode() as it will check
969 * this flag and skip any checkpointing work
971 * ocfs2_stuff_meta_lvb() also uses this flag to invalidate
972 * the LVB for other nodes.
974 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_DELETED;
977 ocfs2_meta_unlock(inode, 1);
980 status = sigprocmask(SIG_SETMASK, &oldset, NULL);
988 void ocfs2_clear_inode(struct inode *inode)
991 struct ocfs2_inode_info *oi = OCFS2_I(inode);
998 mlog(0, "Clearing inode: %llu, nlink = %u\n",
999 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_nlink);
1001 mlog_bug_on_msg(OCFS2_SB(inode->i_sb) == NULL,
1002 "Inode=%lu\n", inode->i_ino);
1004 /* Do these before all the other work so that we don't bounce
1005 * the vote thread while waiting to destroy the locks. */
1006 ocfs2_mark_lockres_freeing(&oi->ip_rw_lockres);
1007 ocfs2_mark_lockres_freeing(&oi->ip_meta_lockres);
1008 ocfs2_mark_lockres_freeing(&oi->ip_data_lockres);
1010 /* We very well may get a clear_inode before all an inodes
1011 * metadata has hit disk. Of course, we can't drop any cluster
1012 * locks until the journal has finished with it. The only
1013 * exception here are successfully wiped inodes - their
1014 * metadata can now be considered to be part of the system
1015 * inodes from which it came. */
1016 if (!(OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED))
1017 ocfs2_checkpoint_inode(inode);
1019 mlog_bug_on_msg(!list_empty(&oi->ip_io_markers),
1020 "Clear inode of %llu, inode has io markers\n",
1021 (unsigned long long)oi->ip_blkno);
1023 ocfs2_extent_map_drop(inode, 0);
1024 ocfs2_extent_map_init(inode);
1026 status = ocfs2_drop_inode_locks(inode);
1030 ocfs2_lock_res_free(&oi->ip_rw_lockres);
1031 ocfs2_lock_res_free(&oi->ip_meta_lockres);
1032 ocfs2_lock_res_free(&oi->ip_data_lockres);
1034 ocfs2_metadata_cache_purge(inode);
1036 mlog_bug_on_msg(oi->ip_metadata_cache.ci_num_cached,
1037 "Clear inode of %llu, inode has %u cache items\n",
1038 (unsigned long long)oi->ip_blkno, oi->ip_metadata_cache.ci_num_cached);
1040 mlog_bug_on_msg(!(oi->ip_flags & OCFS2_INODE_CACHE_INLINE),
1041 "Clear inode of %llu, inode has a bad flag\n",
1042 (unsigned long long)oi->ip_blkno);
1044 mlog_bug_on_msg(spin_is_locked(&oi->ip_lock),
1045 "Clear inode of %llu, inode is locked\n",
1046 (unsigned long long)oi->ip_blkno);
1048 mlog_bug_on_msg(!mutex_trylock(&oi->ip_io_mutex),
1049 "Clear inode of %llu, io_mutex is locked\n",
1050 (unsigned long long)oi->ip_blkno);
1051 mutex_unlock(&oi->ip_io_mutex);
1054 * down_trylock() returns 0, down_write_trylock() returns 1
1057 mlog_bug_on_msg(!down_write_trylock(&oi->ip_alloc_sem),
1058 "Clear inode of %llu, alloc_sem is locked\n",
1059 (unsigned long long)oi->ip_blkno);
1060 up_write(&oi->ip_alloc_sem);
1062 mlog_bug_on_msg(oi->ip_open_count,
1063 "Clear inode of %llu has open count %d\n",
1064 (unsigned long long)oi->ip_blkno, oi->ip_open_count);
1066 /* Clear all other flags. */
1067 oi->ip_flags = OCFS2_INODE_CACHE_INLINE;
1068 oi->ip_created_trans = 0;
1069 oi->ip_last_trans = 0;
1070 oi->ip_dir_start_lookup = 0;
1071 oi->ip_blkno = 0ULL;
1077 /* Called under inode_lock, with no more references on the
1078 * struct inode, so it's safe here to check the flags field
1079 * and to manipulate i_nlink without any other locks. */
1080 void ocfs2_drop_inode(struct inode *inode)
1082 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1086 mlog(0, "Drop inode %llu, nlink = %u, ip_flags = 0x%x\n",
1087 (unsigned long long)oi->ip_blkno, inode->i_nlink, oi->ip_flags);
1089 /* Testing ip_orphaned_slot here wouldn't work because we may
1090 * not have gotten a delete_inode vote from any other nodes
1092 if (oi->ip_flags & OCFS2_INODE_MAYBE_ORPHANED)
1093 generic_delete_inode(inode);
1095 generic_drop_inode(inode);
1101 * TODO: this should probably be merged into ocfs2_get_block
1103 * However, you now need to pay attention to the cont_prepare_write()
1104 * stuff in ocfs2_get_block (that is, ocfs2_get_block pretty much
1105 * expects never to extend).
1107 struct buffer_head *ocfs2_bread(struct inode *inode,
1108 int block, int *err, int reada)
1110 struct buffer_head *bh = NULL;
1113 int readflags = OCFS2_BH_CACHED;
1116 readflags |= OCFS2_BH_READAHEAD;
1118 if (((u64)block << inode->i_sb->s_blocksize_bits) >=
1119 i_size_read(inode)) {
1124 tmperr = ocfs2_extent_map_get_blocks(inode, block, 1,
1131 tmperr = ocfs2_read_block(OCFS2_SB(inode->i_sb), p_blkno, &bh,
1151 * This is called from our getattr.
1153 int ocfs2_inode_revalidate(struct dentry *dentry)
1155 struct inode *inode = dentry->d_inode;
1158 mlog_entry("(inode = 0x%p, ino = %llu)\n", inode,
1159 inode ? (unsigned long long)OCFS2_I(inode)->ip_blkno : 0ULL);
1162 mlog(0, "eep, no inode!\n");
1167 spin_lock(&OCFS2_I(inode)->ip_lock);
1168 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
1169 spin_unlock(&OCFS2_I(inode)->ip_lock);
1170 mlog(0, "inode deleted!\n");
1174 spin_unlock(&OCFS2_I(inode)->ip_lock);
1176 /* Let ocfs2_meta_lock do the work of updating our struct
1178 status = ocfs2_meta_lock(inode, NULL, 0);
1180 if (status != -ENOENT)
1184 ocfs2_meta_unlock(inode, 0);
1192 * Updates a disk inode from a
1194 * Only takes ip_lock.
1196 int ocfs2_mark_inode_dirty(handle_t *handle,
1197 struct inode *inode,
1198 struct buffer_head *bh)
1201 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) bh->b_data;
1203 mlog_entry("(inode %llu)\n",
1204 (unsigned long long)OCFS2_I(inode)->ip_blkno);
1206 status = ocfs2_journal_access(handle, inode, bh,
1207 OCFS2_JOURNAL_ACCESS_WRITE);
1213 spin_lock(&OCFS2_I(inode)->ip_lock);
1214 fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters);
1215 fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr);
1216 spin_unlock(&OCFS2_I(inode)->ip_lock);
1218 fe->i_size = cpu_to_le64(i_size_read(inode));
1219 fe->i_links_count = cpu_to_le16(inode->i_nlink);
1220 fe->i_uid = cpu_to_le32(inode->i_uid);
1221 fe->i_gid = cpu_to_le32(inode->i_gid);
1222 fe->i_mode = cpu_to_le16(inode->i_mode);
1223 fe->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
1224 fe->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
1225 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
1226 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
1227 fe->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
1228 fe->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
1230 status = ocfs2_journal_dirty(handle, bh);
1243 * Updates a struct inode from a disk inode.
1244 * does no i/o, only takes ip_lock.
1246 void ocfs2_refresh_inode(struct inode *inode,
1247 struct ocfs2_dinode *fe)
1249 spin_lock(&OCFS2_I(inode)->ip_lock);
1251 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
1252 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
1253 ocfs2_set_inode_flags(inode);
1254 i_size_write(inode, le64_to_cpu(fe->i_size));
1255 inode->i_nlink = le16_to_cpu(fe->i_links_count);
1256 inode->i_uid = le32_to_cpu(fe->i_uid);
1257 inode->i_gid = le32_to_cpu(fe->i_gid);
1258 inode->i_mode = le16_to_cpu(fe->i_mode);
1259 if (S_ISLNK(inode->i_mode) && le32_to_cpu(fe->i_clusters) == 0)
1260 inode->i_blocks = 0;
1262 inode->i_blocks = ocfs2_align_bytes_to_sectors(i_size_read(inode));
1263 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
1264 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
1265 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
1266 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
1267 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
1268 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
1270 spin_unlock(&OCFS2_I(inode)->ip_lock);