blob: 4a88bce35079c72165ebfa015bd948a3f2207a2a [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- 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>
28#include <linux/slab.h>
29#include <linux/highmem.h>
30#include <linux/pagemap.h>
Jan Karaa90714c2008-10-09 19:38:40 +020031#include <linux/quotaops.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080032
33#include <asm/byteorder.h>
34
35#define MLOG_MASK_PREFIX ML_INODE
36#include <cluster/masklog.h>
37
38#include "ocfs2.h"
39
40#include "alloc.h"
Mark Fasheh9b7895e2008-11-12 16:27:44 -080041#include "dir.h"
Joel Beckerd6b32bb2008-10-17 14:55:01 -070042#include "blockcheck.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080043#include "dlmglue.h"
44#include "extent_map.h"
45#include "file.h"
Mark Fashehb4df6ed2006-02-22 17:35:08 -080046#include "heartbeat.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080047#include "inode.h"
48#include "journal.h"
49#include "namei.h"
50#include "suballoc.h"
51#include "super.h"
52#include "symlink.h"
53#include "sysfile.h"
54#include "uptodate.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080055#include "xattr.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080056
57#include "buffer_head_io.h"
58
Mark Fashehccd979b2005-12-15 14:31:24 -080059struct ocfs2_find_inode_args
60{
61 u64 fi_blkno;
62 unsigned long fi_ino;
63 unsigned int fi_flags;
Jan Kara5fa06132008-01-11 00:11:45 +010064 unsigned int fi_sysfile_type;
Mark Fashehccd979b2005-12-15 14:31:24 -080065};
66
Jan Kara5fa06132008-01-11 00:11:45 +010067static struct lock_class_key ocfs2_sysfile_lock_key[NUM_SYSTEM_INODES];
68
Mark Fashehccd979b2005-12-15 14:31:24 -080069static int ocfs2_read_locked_inode(struct inode *inode,
70 struct ocfs2_find_inode_args *args);
71static int ocfs2_init_locked_inode(struct inode *inode, void *opaque);
72static int ocfs2_find_actor(struct inode *inode, void *opaque);
73static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
74 struct inode *inode,
75 struct buffer_head *fe_bh);
76
Herbert Poetzlca4d1472006-07-03 17:27:12 -070077void ocfs2_set_inode_flags(struct inode *inode)
78{
79 unsigned int flags = OCFS2_I(inode)->ip_attr;
80
81 inode->i_flags &= ~(S_IMMUTABLE |
82 S_SYNC | S_APPEND | S_NOATIME | S_DIRSYNC);
83
84 if (flags & OCFS2_IMMUTABLE_FL)
85 inode->i_flags |= S_IMMUTABLE;
86
87 if (flags & OCFS2_SYNC_FL)
88 inode->i_flags |= S_SYNC;
89 if (flags & OCFS2_APPEND_FL)
90 inode->i_flags |= S_APPEND;
91 if (flags & OCFS2_NOATIME_FL)
92 inode->i_flags |= S_NOATIME;
93 if (flags & OCFS2_DIRSYNC_FL)
94 inode->i_flags |= S_DIRSYNC;
95}
96
Jan Kara6e4b0d52007-04-27 11:08:01 -070097/* Propagate flags from i_flags to OCFS2_I(inode)->ip_attr */
98void ocfs2_get_inode_flags(struct ocfs2_inode_info *oi)
99{
100 unsigned int flags = oi->vfs_inode.i_flags;
101
102 oi->ip_attr &= ~(OCFS2_SYNC_FL|OCFS2_APPEND_FL|
103 OCFS2_IMMUTABLE_FL|OCFS2_NOATIME_FL|OCFS2_DIRSYNC_FL);
104 if (flags & S_SYNC)
105 oi->ip_attr |= OCFS2_SYNC_FL;
106 if (flags & S_APPEND)
107 oi->ip_attr |= OCFS2_APPEND_FL;
108 if (flags & S_IMMUTABLE)
109 oi->ip_attr |= OCFS2_IMMUTABLE_FL;
110 if (flags & S_NOATIME)
111 oi->ip_attr |= OCFS2_NOATIME_FL;
112 if (flags & S_DIRSYNC)
113 oi->ip_attr |= OCFS2_DIRSYNC_FL;
114}
115
Jan Kara5fa06132008-01-11 00:11:45 +0100116struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 blkno, unsigned flags,
117 int sysfile_type)
Mark Fashehccd979b2005-12-15 14:31:24 -0800118{
119 struct inode *inode = NULL;
120 struct super_block *sb = osb->sb;
121 struct ocfs2_find_inode_args args;
122
Mark Fashehb06970532006-03-03 10:24:33 -0800123 mlog_entry("(blkno = %llu)\n", (unsigned long long)blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800124
125 /* Ok. By now we've either got the offsets passed to us by the
126 * caller, or we just pulled them off the bh. Lets do some
127 * sanity checks to make sure they're OK. */
128 if (blkno == 0) {
129 inode = ERR_PTR(-EINVAL);
130 mlog_errno(PTR_ERR(inode));
131 goto bail;
132 }
133
134 args.fi_blkno = blkno;
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700135 args.fi_flags = flags;
Mark Fashehccd979b2005-12-15 14:31:24 -0800136 args.fi_ino = ino_from_blkno(sb, blkno);
Jan Kara5fa06132008-01-11 00:11:45 +0100137 args.fi_sysfile_type = sysfile_type;
Mark Fashehccd979b2005-12-15 14:31:24 -0800138
139 inode = iget5_locked(sb, args.fi_ino, ocfs2_find_actor,
140 ocfs2_init_locked_inode, &args);
141 /* inode was *not* in the inode cache. 2.6.x requires
142 * us to do our own read_inode call and unlock it
143 * afterwards. */
144 if (inode && inode->i_state & I_NEW) {
145 mlog(0, "Inode was not in inode cache, reading it.\n");
146 ocfs2_read_locked_inode(inode, &args);
147 unlock_new_inode(inode);
148 }
149 if (inode == NULL) {
150 inode = ERR_PTR(-ENOMEM);
151 mlog_errno(PTR_ERR(inode));
152 goto bail;
153 }
154 if (is_bad_inode(inode)) {
155 iput(inode);
156 inode = ERR_PTR(-ESTALE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800157 goto bail;
158 }
159
160bail:
161 if (!IS_ERR(inode)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800162 mlog(0, "returning inode with number %llu\n",
163 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800164 mlog_exit_ptr(inode);
Mark Fasheh6a1bd4a2007-01-03 17:06:59 -0800165 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800166
167 return inode;
168}
169
170
171/*
172 * here's how inodes get read from disk:
173 * iget5_locked -> find_actor -> OCFS2_FIND_ACTOR
174 * found? : return the in-memory inode
175 * not found? : get_new_inode -> OCFS2_INIT_LOCKED_INODE
176 */
177
178static int ocfs2_find_actor(struct inode *inode, void *opaque)
179{
180 struct ocfs2_find_inode_args *args = NULL;
181 struct ocfs2_inode_info *oi = OCFS2_I(inode);
182 int ret = 0;
183
184 mlog_entry("(0x%p, %lu, 0x%p)\n", inode, inode->i_ino, opaque);
185
186 args = opaque;
187
188 mlog_bug_on_msg(!inode, "No inode in find actor!\n");
189
190 if (oi->ip_blkno != args->fi_blkno)
191 goto bail;
192
Mark Fashehccd979b2005-12-15 14:31:24 -0800193 ret = 1;
194bail:
195 mlog_exit(ret);
196 return ret;
197}
198
199/*
200 * initialize the new inode, but don't do anything that would cause
201 * us to sleep.
202 * return 0 on success, 1 on failure
203 */
204static int ocfs2_init_locked_inode(struct inode *inode, void *opaque)
205{
206 struct ocfs2_find_inode_args *args = opaque;
207
208 mlog_entry("inode = %p, opaque = %p\n", inode, opaque);
209
210 inode->i_ino = args->fi_ino;
211 OCFS2_I(inode)->ip_blkno = args->fi_blkno;
Jan Kara5fa06132008-01-11 00:11:45 +0100212 if (args->fi_sysfile_type != 0)
213 lockdep_set_class(&inode->i_mutex,
214 &ocfs2_sysfile_lock_key[args->fi_sysfile_type]);
Mark Fashehccd979b2005-12-15 14:31:24 -0800215
216 mlog_exit(0);
217 return 0;
218}
219
Joel Beckerb657c952008-11-13 14:49:11 -0800220void ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
221 int create_ino)
Mark Fashehccd979b2005-12-15 14:31:24 -0800222{
223 struct super_block *sb;
224 struct ocfs2_super *osb;
Mark Fasheh53da4932008-07-21 14:29:16 -0700225 int use_plocks = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -0800226
Mark Fashehb06970532006-03-03 10:24:33 -0800227 mlog_entry("(0x%p, size:%llu)\n", inode,
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700228 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -0800229
230 sb = inode->i_sb;
231 osb = OCFS2_SB(sb);
232
Mark Fasheh53da4932008-07-21 14:29:16 -0700233 if ((osb->s_mount_opt & OCFS2_MOUNT_LOCALFLOCKS) ||
234 ocfs2_mount_local(osb) || !ocfs2_stack_supports_plocks())
235 use_plocks = 0;
236
Joel Beckerb657c952008-11-13 14:49:11 -0800237 /*
238 * These have all been checked by ocfs2_read_inode_block() or set
239 * by ocfs2_mknod_locked(), so a failure is a code bug.
240 */
241 BUG_ON(!OCFS2_IS_VALID_DINODE(fe)); /* This means that read_inode
242 cannot create a superblock
243 inode today. change if
244 that is needed. */
245 BUG_ON(!(fe->i_flags & cpu_to_le32(OCFS2_VALID_FL)));
246 BUG_ON(le32_to_cpu(fe->i_fs_generation) != osb->fs_generation);
Mark Fashehccd979b2005-12-15 14:31:24 -0800247
Mark Fashehccd979b2005-12-15 14:31:24 -0800248
Mark Fasheh8110b072007-03-22 16:53:23 -0700249 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
250 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
Mark Fasheh15b1e362007-09-07 13:58:15 -0700251 OCFS2_I(inode)->ip_dyn_features = le16_to_cpu(fe->i_dyn_features);
Mark Fasheh8110b072007-03-22 16:53:23 -0700252
Mark Fashehccd979b2005-12-15 14:31:24 -0800253 inode->i_version = 1;
254 inode->i_generation = le32_to_cpu(fe->i_generation);
255 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
256 inode->i_mode = le16_to_cpu(fe->i_mode);
257 inode->i_uid = le32_to_cpu(fe->i_uid);
258 inode->i_gid = le32_to_cpu(fe->i_gid);
Mark Fashehccd979b2005-12-15 14:31:24 -0800259
260 /* Fast symlinks will have i_size but no allocated clusters. */
261 if (S_ISLNK(inode->i_mode) && !fe->i_clusters)
262 inode->i_blocks = 0;
263 else
Mark Fasheh8110b072007-03-22 16:53:23 -0700264 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800265 inode->i_mapping->a_ops = &ocfs2_aops;
Mark Fashehccd979b2005-12-15 14:31:24 -0800266 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
267 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
268 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
269 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
270 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
271 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
272
273 if (OCFS2_I(inode)->ip_blkno != le64_to_cpu(fe->i_blkno))
274 mlog(ML_ERROR,
Mark Fashehb06970532006-03-03 10:24:33 -0800275 "ip_blkno %llu != i_blkno %llu!\n",
276 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700277 (unsigned long long)le64_to_cpu(fe->i_blkno));
Mark Fashehccd979b2005-12-15 14:31:24 -0800278
Mark Fasheh198a1ca2008-11-20 17:54:57 -0800279 inode->i_nlink = ocfs2_read_links_count(fe);
Mark Fashehccd979b2005-12-15 14:31:24 -0800280
Jan Karabbbd0eb2008-08-21 18:22:30 +0200281 if (fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) {
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700282 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SYSTEM_FILE;
Jan Karabbbd0eb2008-08-21 18:22:30 +0200283 inode->i_flags |= S_NOQUOTA;
284 }
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700285
Mark Fashehccd979b2005-12-15 14:31:24 -0800286 if (fe->i_flags & cpu_to_le32(OCFS2_LOCAL_ALLOC_FL)) {
287 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
288 mlog(0, "local alloc inode: i_ino=%lu\n", inode->i_ino);
289 } else if (fe->i_flags & cpu_to_le32(OCFS2_BITMAP_FL)) {
290 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
Jan Kara1a224ad2008-08-20 15:43:36 +0200291 } else if (fe->i_flags & cpu_to_le32(OCFS2_QUOTA_FL)) {
292 inode->i_flags |= S_NOQUOTA;
Mark Fashehccd979b2005-12-15 14:31:24 -0800293 } else if (fe->i_flags & cpu_to_le32(OCFS2_SUPER_BLOCK_FL)) {
294 mlog(0, "superblock inode: i_ino=%lu\n", inode->i_ino);
295 /* we can't actually hit this as read_inode can't
296 * handle superblocks today ;-) */
297 BUG();
298 }
299
300 switch (inode->i_mode & S_IFMT) {
301 case S_IFREG:
Mark Fasheh53da4932008-07-21 14:29:16 -0700302 if (use_plocks)
303 inode->i_fop = &ocfs2_fops;
304 else
305 inode->i_fop = &ocfs2_fops_no_plocks;
Mark Fashehccd979b2005-12-15 14:31:24 -0800306 inode->i_op = &ocfs2_file_iops;
307 i_size_write(inode, le64_to_cpu(fe->i_size));
308 break;
309 case S_IFDIR:
310 inode->i_op = &ocfs2_dir_iops;
Mark Fasheh53da4932008-07-21 14:29:16 -0700311 if (use_plocks)
312 inode->i_fop = &ocfs2_dops;
313 else
314 inode->i_fop = &ocfs2_dops_no_plocks;
Mark Fashehccd979b2005-12-15 14:31:24 -0800315 i_size_write(inode, le64_to_cpu(fe->i_size));
316 break;
317 case S_IFLNK:
318 if (ocfs2_inode_is_fast_symlink(inode))
319 inode->i_op = &ocfs2_fast_symlink_inode_operations;
320 else
321 inode->i_op = &ocfs2_symlink_inode_operations;
322 i_size_write(inode, le64_to_cpu(fe->i_size));
323 break;
324 default:
325 inode->i_op = &ocfs2_special_file_iops;
326 init_special_inode(inode, inode->i_mode,
327 inode->i_rdev);
328 break;
329 }
330
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700331 if (create_ino) {
332 inode->i_ino = ino_from_blkno(inode->i_sb,
333 le64_to_cpu(fe->i_blkno));
334
335 /*
336 * If we ever want to create system files from kernel,
337 * the generation argument to
338 * ocfs2_inode_lock_res_init() will have to change.
339 */
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700340 BUG_ON(le32_to_cpu(fe->i_flags) & OCFS2_SYSTEM_FL);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700341
Mark Fashehe63aecb62007-10-18 15:30:42 -0700342 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_inode_lockres,
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700343 OCFS2_LOCK_TYPE_META, 0, inode);
Tiger Yang50008632007-03-20 16:01:38 -0700344
345 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_open_lockres,
346 OCFS2_LOCK_TYPE_OPEN, 0, inode);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700347 }
348
Mark Fashehccd979b2005-12-15 14:31:24 -0800349 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_rw_lockres,
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700350 OCFS2_LOCK_TYPE_RW, inode->i_generation,
351 inode);
352
Herbert Poetzlca4d1472006-07-03 17:27:12 -0700353 ocfs2_set_inode_flags(inode);
Herbert Poetzlca4d1472006-07-03 17:27:12 -0700354
Tao Ma13821152009-02-25 00:53:23 +0800355 OCFS2_I(inode)->ip_last_used_slot = 0;
356 OCFS2_I(inode)->ip_last_used_group = 0;
Joel Beckerb657c952008-11-13 14:49:11 -0800357 mlog_exit_void();
Mark Fashehccd979b2005-12-15 14:31:24 -0800358}
359
360static int ocfs2_read_locked_inode(struct inode *inode,
361 struct ocfs2_find_inode_args *args)
362{
363 struct super_block *sb;
364 struct ocfs2_super *osb;
365 struct ocfs2_dinode *fe;
366 struct buffer_head *bh = NULL;
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700367 int status, can_lock;
368 u32 generation = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800369
370 mlog_entry("(0x%p, 0x%p)\n", inode, args);
371
372 status = -EINVAL;
373 if (inode == NULL || inode->i_sb == NULL) {
374 mlog(ML_ERROR, "bad inode\n");
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700375 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800376 }
377 sb = inode->i_sb;
378 osb = OCFS2_SB(sb);
379
380 if (!args) {
381 mlog(ML_ERROR, "bad inode args\n");
382 make_bad_inode(inode);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700383 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800384 }
385
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700386 /*
387 * To improve performance of cold-cache inode stats, we take
388 * the cluster lock here if possible.
389 *
390 * Generally, OCFS2 never trusts the contents of an inode
391 * unless it's holding a cluster lock, so taking it here isn't
392 * a correctness issue as much as it is a performance
393 * improvement.
394 *
395 * There are three times when taking the lock is not a good idea:
396 *
397 * 1) During startup, before we have initialized the DLM.
398 *
399 * 2) If we are reading certain system files which never get
400 * cluster locks (local alloc, truncate log).
401 *
402 * 3) If the process doing the iget() is responsible for
403 * orphan dir recovery. We're holding the orphan dir lock and
404 * can get into a deadlock with another process on another
405 * node in ->delete_inode().
406 *
407 * #1 and #2 can be simply solved by never taking the lock
408 * here for system files (which are the only type we read
409 * during mount). It's a heavier approach, but our main
410 * concern is user-accesible files anyway.
411 *
412 * #3 works itself out because we'll eventually take the
413 * cluster lock before trusting anything anyway.
414 */
415 can_lock = !(args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
Tiger Yang50008632007-03-20 16:01:38 -0700416 && !(args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY)
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800417 && !ocfs2_mount_local(osb);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700418
419 /*
420 * To maintain backwards compatibility with older versions of
421 * ocfs2-tools, we still store the generation value for system
422 * files. The only ones that actually matter to userspace are
423 * the journals, but it's easier and inexpensive to just flag
424 * all system files similarly.
425 */
426 if (args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
427 generation = osb->fs_generation;
428
Mark Fashehe63aecb62007-10-18 15:30:42 -0700429 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_inode_lockres,
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700430 OCFS2_LOCK_TYPE_META,
431 generation, inode);
432
Tiger Yang50008632007-03-20 16:01:38 -0700433 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_open_lockres,
434 OCFS2_LOCK_TYPE_OPEN,
435 0, inode);
436
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700437 if (can_lock) {
Tiger Yang50008632007-03-20 16:01:38 -0700438 status = ocfs2_open_lock(inode);
439 if (status) {
440 make_bad_inode(inode);
441 mlog_errno(status);
442 return status;
443 }
Mark Fashehe63aecb62007-10-18 15:30:42 -0700444 status = ocfs2_inode_lock(inode, NULL, 0);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700445 if (status) {
446 make_bad_inode(inode);
447 mlog_errno(status);
448 return status;
449 }
450 }
451
Tiger Yang50008632007-03-20 16:01:38 -0700452 if (args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY) {
453 status = ocfs2_try_open_lock(inode, 0);
454 if (status) {
455 make_bad_inode(inode);
456 return status;
457 }
458 }
459
Joel Beckerb657c952008-11-13 14:49:11 -0800460 if (can_lock) {
461 status = ocfs2_read_inode_block_full(inode, &bh,
462 OCFS2_BH_IGNORE_CACHE);
463 } else {
Joel Beckerda1e9092008-10-09 17:20:29 -0700464 status = ocfs2_read_blocks_sync(osb, args->fi_blkno, 1, &bh);
Joel Beckerb657c952008-11-13 14:49:11 -0800465 if (!status)
466 status = ocfs2_validate_inode_block(osb->sb, bh);
467 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800468 if (status < 0) {
469 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800470 goto bail;
471 }
472
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700473 status = -EINVAL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800474 fe = (struct ocfs2_dinode *) bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800475
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700476 /*
477 * This is a code bug. Right now the caller needs to
478 * understand whether it is asking for a system file inode or
479 * not so the proper lock names can be built.
480 */
481 mlog_bug_on_msg(!!(fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) !=
482 !!(args->fi_flags & OCFS2_FI_FLAG_SYSFILE),
483 "Inode %llu: system file state is ambigous\n",
484 (unsigned long long)args->fi_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800485
486 if (S_ISCHR(le16_to_cpu(fe->i_mode)) ||
487 S_ISBLK(le16_to_cpu(fe->i_mode)))
Joel Beckerb657c952008-11-13 14:49:11 -0800488 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
Mark Fashehccd979b2005-12-15 14:31:24 -0800489
Joel Beckerb657c952008-11-13 14:49:11 -0800490 ocfs2_populate_inode(inode, fe, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800491
492 BUG_ON(args->fi_blkno != le64_to_cpu(fe->i_blkno));
493
Mark Fashehccd979b2005-12-15 14:31:24 -0800494 status = 0;
495
496bail:
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700497 if (can_lock)
Mark Fashehe63aecb62007-10-18 15:30:42 -0700498 ocfs2_inode_unlock(inode, 0);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700499
500 if (status < 0)
501 make_bad_inode(inode);
502
Mark Fashehccd979b2005-12-15 14:31:24 -0800503 if (args && bh)
504 brelse(bh);
505
506 mlog_exit(status);
507 return status;
508}
509
510void ocfs2_sync_blockdev(struct super_block *sb)
511{
512 sync_blockdev(sb->s_bdev);
513}
514
515static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
516 struct inode *inode,
517 struct buffer_head *fe_bh)
518{
519 int status = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800520 struct ocfs2_truncate_context *tc = NULL;
521 struct ocfs2_dinode *fe;
Mark Fasheh60b11392007-02-16 11:46:50 -0800522 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800523
524 mlog_entry_void();
525
526 fe = (struct ocfs2_dinode *) fe_bh->b_data;
527
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700528 /*
529 * This check will also skip truncate of inodes with inline
530 * data and fast symlinks.
531 */
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800532 if (fe->i_clusters) {
Joel Becker2b4e30f2008-09-03 20:03:41 -0700533 if (ocfs2_should_order_data(inode))
534 ocfs2_begin_ordered_truncate(inode, 0);
535
Mark Fasheh60b11392007-02-16 11:46:50 -0800536 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
537 if (IS_ERR(handle)) {
538 status = PTR_ERR(handle);
539 mlog_errno(status);
540 goto out;
541 }
542
Joel Becker13723d02008-10-17 19:25:01 -0700543 status = ocfs2_journal_access_di(handle, inode, fe_bh,
544 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh60b11392007-02-16 11:46:50 -0800545 if (status < 0) {
546 mlog_errno(status);
547 goto out;
548 }
549
550 i_size_write(inode, 0);
551
552 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
553 if (status < 0) {
554 mlog_errno(status);
555 goto out;
556 }
557
558 ocfs2_commit_trans(osb, handle);
559 handle = NULL;
560
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800561 status = ocfs2_prepare_truncate(osb, inode, fe_bh, &tc);
562 if (status < 0) {
563 mlog_errno(status);
564 goto out;
565 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800566
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800567 status = ocfs2_commit_truncate(osb, inode, fe_bh, tc);
568 if (status < 0) {
569 mlog_errno(status);
570 goto out;
571 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800572 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800573
Mark Fasheh60b11392007-02-16 11:46:50 -0800574out:
575 if (handle)
576 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800577 mlog_exit(status);
578 return status;
579}
580
581static int ocfs2_remove_inode(struct inode *inode,
582 struct buffer_head *di_bh,
583 struct inode *orphan_dir_inode,
584 struct buffer_head *orphan_dir_bh)
585{
586 int status;
587 struct inode *inode_alloc_inode = NULL;
588 struct buffer_head *inode_alloc_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700589 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800590 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
591 struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
592
593 inode_alloc_inode =
594 ocfs2_get_system_file_inode(osb, INODE_ALLOC_SYSTEM_INODE,
595 le16_to_cpu(di->i_suballoc_slot));
596 if (!inode_alloc_inode) {
597 status = -EEXIST;
598 mlog_errno(status);
599 goto bail;
600 }
601
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800602 mutex_lock(&inode_alloc_inode->i_mutex);
Mark Fashehe63aecb62007-10-18 15:30:42 -0700603 status = ocfs2_inode_lock(inode_alloc_inode, &inode_alloc_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800604 if (status < 0) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800605 mutex_unlock(&inode_alloc_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800606
607 mlog_errno(status);
608 goto bail;
609 }
610
Jan Karaa90714c2008-10-09 19:38:40 +0200611 handle = ocfs2_start_trans(osb, OCFS2_DELETE_INODE_CREDITS +
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800612 ocfs2_quota_trans_credits(inode->i_sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800613 if (IS_ERR(handle)) {
614 status = PTR_ERR(handle);
615 mlog_errno(status);
616 goto bail_unlock;
617 }
618
619 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
620 orphan_dir_bh);
621 if (status < 0) {
622 mlog_errno(status);
623 goto bail_commit;
624 }
625
626 /* set the inodes dtime */
Joel Becker13723d02008-10-17 19:25:01 -0700627 status = ocfs2_journal_access_di(handle, inode, di_bh,
628 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800629 if (status < 0) {
630 mlog_errno(status);
631 goto bail_commit;
632 }
633
634 di->i_dtime = cpu_to_le64(CURRENT_TIME.tv_sec);
Marcin Slusarz4092d492007-12-25 15:52:59 +0100635 di->i_flags &= cpu_to_le32(~(OCFS2_VALID_FL | OCFS2_ORPHANED_FL));
Mark Fashehccd979b2005-12-15 14:31:24 -0800636
637 status = ocfs2_journal_dirty(handle, di_bh);
638 if (status < 0) {
639 mlog_errno(status);
640 goto bail_commit;
641 }
642
643 ocfs2_remove_from_cache(inode, di_bh);
Jan Karaa90714c2008-10-09 19:38:40 +0200644 vfs_dq_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800645
646 status = ocfs2_free_dinode(handle, inode_alloc_inode,
647 inode_alloc_bh, di);
648 if (status < 0)
649 mlog_errno(status);
650
651bail_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700652 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800653bail_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700654 ocfs2_inode_unlock(inode_alloc_inode, 1);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800655 mutex_unlock(&inode_alloc_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800656 brelse(inode_alloc_bh);
657bail:
658 iput(inode_alloc_inode);
659
660 return status;
661}
662
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800663/*
664 * Serialize with orphan dir recovery. If the process doing
665 * recovery on this orphan dir does an iget() with the dir
666 * i_mutex held, we'll deadlock here. Instead we detect this
667 * and exit early - recovery will wipe this inode for us.
668 */
669static int ocfs2_check_orphan_recovery_state(struct ocfs2_super *osb,
670 int slot)
671{
672 int ret = 0;
673
674 spin_lock(&osb->osb_lock);
675 if (ocfs2_node_map_test_bit(osb, &osb->osb_recovering_orphan_dirs, slot)) {
676 mlog(0, "Recovery is happening on orphan dir %d, will skip "
677 "this inode\n", slot);
678 ret = -EDEADLK;
679 goto out;
680 }
681 /* This signals to the orphan recovery process that it should
682 * wait for us to handle the wipe. */
683 osb->osb_orphan_wipes[slot]++;
684out:
685 spin_unlock(&osb->osb_lock);
686 return ret;
687}
688
689static void ocfs2_signal_wipe_completion(struct ocfs2_super *osb,
690 int slot)
691{
692 spin_lock(&osb->osb_lock);
693 osb->osb_orphan_wipes[slot]--;
694 spin_unlock(&osb->osb_lock);
695
696 wake_up(&osb->osb_wipe_event);
697}
698
Mark Fashehccd979b2005-12-15 14:31:24 -0800699static int ocfs2_wipe_inode(struct inode *inode,
700 struct buffer_head *di_bh)
701{
702 int status, orphaned_slot;
703 struct inode *orphan_dir_inode = NULL;
704 struct buffer_head *orphan_dir_bh = NULL;
705 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tiger Yang50008632007-03-20 16:01:38 -0700706 struct ocfs2_dinode *di;
Mark Fashehccd979b2005-12-15 14:31:24 -0800707
Tiger Yang50008632007-03-20 16:01:38 -0700708 di = (struct ocfs2_dinode *) di_bh->b_data;
709 orphaned_slot = le16_to_cpu(di->i_orphaned_slot);
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800710
711 status = ocfs2_check_orphan_recovery_state(osb, orphaned_slot);
712 if (status)
713 return status;
714
Mark Fashehccd979b2005-12-15 14:31:24 -0800715 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
716 ORPHAN_DIR_SYSTEM_INODE,
717 orphaned_slot);
718 if (!orphan_dir_inode) {
719 status = -EEXIST;
720 mlog_errno(status);
721 goto bail;
722 }
723
724 /* Lock the orphan dir. The lock will be held for the entire
725 * delete_inode operation. We do this now to avoid races with
726 * recovery completion on other nodes. */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800727 mutex_lock(&orphan_dir_inode->i_mutex);
Mark Fashehe63aecb62007-10-18 15:30:42 -0700728 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800729 if (status < 0) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800730 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800731
732 mlog_errno(status);
733 goto bail;
734 }
735
736 /* we do this while holding the orphan dir lock because we
Mark Fasheh34d024f2007-09-24 15:56:19 -0700737 * don't want recovery being run from another node to try an
738 * inode delete underneath us -- this will result in two nodes
Mark Fashehccd979b2005-12-15 14:31:24 -0800739 * truncating the same file! */
740 status = ocfs2_truncate_for_delete(osb, inode, di_bh);
741 if (status < 0) {
742 mlog_errno(status);
743 goto bail_unlock_dir;
744 }
745
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800746 /* Remove any dir index tree */
747 if (S_ISDIR(inode->i_mode)) {
748 status = ocfs2_dx_dir_truncate(inode, di_bh);
749 if (status) {
750 mlog_errno(status);
751 goto bail_unlock_dir;
752 }
753 }
754
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800755 /*Free extended attribute resources associated with this inode.*/
756 status = ocfs2_xattr_remove(inode, di_bh);
757 if (status < 0) {
758 mlog_errno(status);
759 goto bail_unlock_dir;
760 }
761
Mark Fashehccd979b2005-12-15 14:31:24 -0800762 status = ocfs2_remove_inode(inode, di_bh, orphan_dir_inode,
763 orphan_dir_bh);
764 if (status < 0)
765 mlog_errno(status);
766
767bail_unlock_dir:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700768 ocfs2_inode_unlock(orphan_dir_inode, 1);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800769 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800770 brelse(orphan_dir_bh);
771bail:
772 iput(orphan_dir_inode);
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800773 ocfs2_signal_wipe_completion(osb, orphaned_slot);
Mark Fashehccd979b2005-12-15 14:31:24 -0800774
775 return status;
776}
777
778/* There is a series of simple checks that should be done before a
Mark Fasheh34d024f2007-09-24 15:56:19 -0700779 * trylock is even considered. Encapsulate those in this function. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800780static int ocfs2_inode_is_valid_to_delete(struct inode *inode)
781{
782 int ret = 0;
783 struct ocfs2_inode_info *oi = OCFS2_I(inode);
784 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
785
786 /* We shouldn't be getting here for the root directory
787 * inode.. */
788 if (inode == osb->root_inode) {
789 mlog(ML_ERROR, "Skipping delete of root inode.\n");
790 goto bail;
791 }
792
Mark Fasheh34d024f2007-09-24 15:56:19 -0700793 /* If we're coming from downconvert_thread we can't go into our own
Mark Fashehccd979b2005-12-15 14:31:24 -0800794 * voting [hello, deadlock city!], so unforuntately we just
795 * have to skip deleting this guy. That's OK though because
796 * the node who's doing the actual deleting should handle it
797 * anyway. */
Mark Fasheh34d024f2007-09-24 15:56:19 -0700798 if (current == osb->dc_task) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800799 mlog(0, "Skipping delete of %lu because we're currently "
Mark Fasheh34d024f2007-09-24 15:56:19 -0700800 "in downconvert\n", inode->i_ino);
Mark Fashehccd979b2005-12-15 14:31:24 -0800801 goto bail;
802 }
803
804 spin_lock(&oi->ip_lock);
805 /* OCFS2 *never* deletes system files. This should technically
806 * never get here as system file inodes should always have a
807 * positive link count. */
808 if (oi->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
Mark Fashehb06970532006-03-03 10:24:33 -0800809 mlog(ML_ERROR, "Skipping delete of system file %llu\n",
810 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800811 goto bail_unlock;
812 }
813
Mark Fasheh34d024f2007-09-24 15:56:19 -0700814 /* If we have allowd wipe of this inode for another node, it
815 * will be marked here so we can safely skip it. Recovery will
816 * cleanup any inodes we might inadvertantly skip here. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800817 if (oi->ip_flags & OCFS2_INODE_SKIP_DELETE) {
818 mlog(0, "Skipping delete of %lu because another node "
819 "has done this for us.\n", inode->i_ino);
820 goto bail_unlock;
821 }
822
823 ret = 1;
824bail_unlock:
825 spin_unlock(&oi->ip_lock);
826bail:
827 return ret;
828}
829
830/* Query the cluster to determine whether we should wipe an inode from
831 * disk or not.
832 *
833 * Requires the inode to have the cluster lock. */
834static int ocfs2_query_inode_wipe(struct inode *inode,
835 struct buffer_head *di_bh,
836 int *wipe)
837{
838 int status = 0;
839 struct ocfs2_inode_info *oi = OCFS2_I(inode);
840 struct ocfs2_dinode *di;
841
842 *wipe = 0;
843
844 /* While we were waiting for the cluster lock in
845 * ocfs2_delete_inode, another node might have asked to delete
846 * the inode. Recheck our flags to catch this. */
847 if (!ocfs2_inode_is_valid_to_delete(inode)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800848 mlog(0, "Skipping delete of %llu because flags changed\n",
849 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800850 goto bail;
851 }
852
853 /* Now that we have an up to date inode, we can double check
854 * the link count. */
855 if (inode->i_nlink) {
Mark Fashehb06970532006-03-03 10:24:33 -0800856 mlog(0, "Skipping delete of %llu because nlink = %u\n",
857 (unsigned long long)oi->ip_blkno, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800858 goto bail;
859 }
860
861 /* Do some basic inode verification... */
862 di = (struct ocfs2_dinode *) di_bh->b_data;
863 if (!(di->i_flags & cpu_to_le32(OCFS2_ORPHANED_FL))) {
864 /* for lack of a better error? */
865 status = -EEXIST;
866 mlog(ML_ERROR,
Mark Fashehb06970532006-03-03 10:24:33 -0800867 "Inode %llu (on-disk %llu) not orphaned! "
Mark Fashehccd979b2005-12-15 14:31:24 -0800868 "Disk flags 0x%x, inode flags 0x%x\n",
Mark Fashehb06970532006-03-03 10:24:33 -0800869 (unsigned long long)oi->ip_blkno,
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700870 (unsigned long long)le64_to_cpu(di->i_blkno),
871 le32_to_cpu(di->i_flags), oi->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800872 goto bail;
873 }
874
875 /* has someone already deleted us?! baaad... */
876 if (di->i_dtime) {
877 status = -EEXIST;
878 mlog_errno(status);
879 goto bail;
880 }
881
Mark Fasheh6f16bf62007-03-20 17:17:54 -0700882 /*
883 * This is how ocfs2 determines whether an inode is still live
884 * within the cluster. Every node takes a shared read lock on
885 * the inode open lock in ocfs2_read_locked_inode(). When we
886 * get to ->delete_inode(), each node tries to convert it's
887 * lock to an exclusive. Trylocks are serialized by the inode
888 * meta data lock. If the upconvert suceeds, we know the inode
889 * is no longer live and can be deleted.
890 *
891 * Though we call this with the meta data lock held, the
892 * trylock keeps us from ABBA deadlock.
893 */
894 status = ocfs2_try_open_lock(inode, 1);
Tiger Yang50008632007-03-20 16:01:38 -0700895 if (status == -EAGAIN) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800896 status = 0;
Joe Perches27592362007-11-19 17:53:34 -0800897 mlog(0, "Skipping delete of %llu because it is in use on "
Mark Fashehb06970532006-03-03 10:24:33 -0800898 "other nodes\n", (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800899 goto bail;
900 }
901 if (status < 0) {
902 mlog_errno(status);
903 goto bail;
904 }
905
Tiger Yang50008632007-03-20 16:01:38 -0700906 *wipe = 1;
907 mlog(0, "Inode %llu is ok to wipe from orphan dir %u\n",
908 (unsigned long long)oi->ip_blkno,
909 le16_to_cpu(di->i_orphaned_slot));
Mark Fashehccd979b2005-12-15 14:31:24 -0800910
911bail:
912 return status;
913}
914
915/* Support function for ocfs2_delete_inode. Will help us keep the
916 * inode data in a consistent state for clear_inode. Always truncates
917 * pages, optionally sync's them first. */
918static void ocfs2_cleanup_delete_inode(struct inode *inode,
919 int sync_data)
920{
Mark Fashehb06970532006-03-03 10:24:33 -0800921 mlog(0, "Cleanup inode %llu, sync = %d\n",
922 (unsigned long long)OCFS2_I(inode)->ip_blkno, sync_data);
Mark Fashehccd979b2005-12-15 14:31:24 -0800923 if (sync_data)
924 write_inode_now(inode, 1);
925 truncate_inode_pages(&inode->i_data, 0);
926}
927
928void ocfs2_delete_inode(struct inode *inode)
929{
930 int wipe, status;
931 sigset_t blocked, oldset;
932 struct buffer_head *di_bh = NULL;
933
934 mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino);
935
Jan Karaa90714c2008-10-09 19:38:40 +0200936 /* When we fail in read_inode() we mark inode as bad. The second test
937 * catches the case when inode allocation fails before allocating
938 * a block for inode. */
939 if (is_bad_inode(inode) || !OCFS2_I(inode)->ip_blkno) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800940 mlog(0, "Skipping delete of bad inode\n");
941 goto bail;
942 }
943
944 if (!ocfs2_inode_is_valid_to_delete(inode)) {
945 /* It's probably not necessary to truncate_inode_pages
946 * here but we do it for safety anyway (it will most
947 * likely be a no-op anyway) */
948 ocfs2_cleanup_delete_inode(inode, 0);
949 goto bail;
950 }
951
952 /* We want to block signals in delete_inode as the lock and
953 * messaging paths may return us -ERESTARTSYS. Which would
954 * cause us to exit early, resulting in inodes being orphaned
955 * forever. */
956 sigfillset(&blocked);
957 status = sigprocmask(SIG_BLOCK, &blocked, &oldset);
958 if (status < 0) {
959 mlog_errno(status);
960 ocfs2_cleanup_delete_inode(inode, 1);
961 goto bail;
962 }
963
964 /* Lock down the inode. This gives us an up to date view of
965 * it's metadata (for verification), and allows us to
Mark Fasheh34d024f2007-09-24 15:56:19 -0700966 * serialize delete_inode on multiple nodes.
Mark Fashehccd979b2005-12-15 14:31:24 -0800967 *
968 * Even though we might be doing a truncate, we don't take the
969 * allocation lock here as it won't be needed - nobody will
970 * have the file open.
971 */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700972 status = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800973 if (status < 0) {
974 if (status != -ENOENT)
975 mlog_errno(status);
976 ocfs2_cleanup_delete_inode(inode, 0);
977 goto bail_unblock;
978 }
979
980 /* Query the cluster. This will be the final decision made
981 * before we go ahead and wipe the inode. */
982 status = ocfs2_query_inode_wipe(inode, di_bh, &wipe);
983 if (!wipe || status < 0) {
Mark Fasheh34d024f2007-09-24 15:56:19 -0700984 /* Error and remote inode busy both mean we won't be
Mark Fashehccd979b2005-12-15 14:31:24 -0800985 * removing the inode, so they take almost the same
986 * path. */
987 if (status < 0)
988 mlog_errno(status);
989
Mark Fasheh34d024f2007-09-24 15:56:19 -0700990 /* Someone in the cluster has disallowed a wipe of
991 * this inode, or it was never completely
992 * orphaned. Write out the pages and exit now. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800993 ocfs2_cleanup_delete_inode(inode, 1);
994 goto bail_unlock_inode;
995 }
996
997 ocfs2_cleanup_delete_inode(inode, 0);
998
999 status = ocfs2_wipe_inode(inode, di_bh);
1000 if (status < 0) {
Mark Fashehb4df6ed2006-02-22 17:35:08 -08001001 if (status != -EDEADLK)
1002 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001003 goto bail_unlock_inode;
1004 }
1005
Mark Fasheh24c19ef2006-09-22 17:28:19 -07001006 /*
1007 * Mark the inode as successfully deleted.
1008 *
1009 * This is important for ocfs2_clear_inode() as it will check
1010 * this flag and skip any checkpointing work
1011 *
1012 * ocfs2_stuff_meta_lvb() also uses this flag to invalidate
1013 * the LVB for other nodes.
1014 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001015 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_DELETED;
1016
1017bail_unlock_inode:
Mark Fashehe63aecb62007-10-18 15:30:42 -07001018 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001019 brelse(di_bh);
1020bail_unblock:
1021 status = sigprocmask(SIG_SETMASK, &oldset, NULL);
1022 if (status < 0)
1023 mlog_errno(status);
1024bail:
1025 clear_inode(inode);
1026 mlog_exit_void();
1027}
1028
1029void ocfs2_clear_inode(struct inode *inode)
1030{
1031 int status;
1032 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1033
1034 mlog_entry_void();
1035
1036 if (!inode)
1037 goto bail;
1038
Mark Fashehb06970532006-03-03 10:24:33 -08001039 mlog(0, "Clearing inode: %llu, nlink = %u\n",
1040 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -08001041
1042 mlog_bug_on_msg(OCFS2_SB(inode->i_sb) == NULL,
1043 "Inode=%lu\n", inode->i_ino);
1044
Mark Fasheh34d024f2007-09-24 15:56:19 -07001045 /* To preven remote deletes we hold open lock before, now it
1046 * is time to unlock PR and EX open locks. */
Tiger Yang50008632007-03-20 16:01:38 -07001047 ocfs2_open_unlock(inode);
1048
Mark Fashehccd979b2005-12-15 14:31:24 -08001049 /* Do these before all the other work so that we don't bounce
Mark Fasheh34d024f2007-09-24 15:56:19 -07001050 * the downconvert thread while waiting to destroy the locks. */
Mark Fashehccd979b2005-12-15 14:31:24 -08001051 ocfs2_mark_lockres_freeing(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001052 ocfs2_mark_lockres_freeing(&oi->ip_inode_lockres);
Tiger Yang50008632007-03-20 16:01:38 -07001053 ocfs2_mark_lockres_freeing(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001054
1055 /* We very well may get a clear_inode before all an inodes
1056 * metadata has hit disk. Of course, we can't drop any cluster
1057 * locks until the journal has finished with it. The only
1058 * exception here are successfully wiped inodes - their
1059 * metadata can now be considered to be part of the system
1060 * inodes from which it came. */
1061 if (!(OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED))
1062 ocfs2_checkpoint_inode(inode);
1063
1064 mlog_bug_on_msg(!list_empty(&oi->ip_io_markers),
Mark Fashehb06970532006-03-03 10:24:33 -08001065 "Clear inode of %llu, inode has io markers\n",
1066 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001067
Mark Fasheh83418972007-04-23 18:53:12 -07001068 ocfs2_extent_map_trunc(inode, 0);
1069
Mark Fashehccd979b2005-12-15 14:31:24 -08001070 status = ocfs2_drop_inode_locks(inode);
1071 if (status < 0)
1072 mlog_errno(status);
1073
1074 ocfs2_lock_res_free(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001075 ocfs2_lock_res_free(&oi->ip_inode_lockres);
Tiger Yang50008632007-03-20 16:01:38 -07001076 ocfs2_lock_res_free(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001077
1078 ocfs2_metadata_cache_purge(inode);
1079
1080 mlog_bug_on_msg(oi->ip_metadata_cache.ci_num_cached,
Mark Fashehb06970532006-03-03 10:24:33 -08001081 "Clear inode of %llu, inode has %u cache items\n",
1082 (unsigned long long)oi->ip_blkno, oi->ip_metadata_cache.ci_num_cached);
Mark Fashehccd979b2005-12-15 14:31:24 -08001083
1084 mlog_bug_on_msg(!(oi->ip_flags & OCFS2_INODE_CACHE_INLINE),
Mark Fashehb06970532006-03-03 10:24:33 -08001085 "Clear inode of %llu, inode has a bad flag\n",
1086 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001087
1088 mlog_bug_on_msg(spin_is_locked(&oi->ip_lock),
Mark Fashehb06970532006-03-03 10:24:33 -08001089 "Clear inode of %llu, inode is locked\n",
1090 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001091
Mark Fasheh251b6ec2006-01-10 15:41:43 -08001092 mlog_bug_on_msg(!mutex_trylock(&oi->ip_io_mutex),
Mark Fashehb06970532006-03-03 10:24:33 -08001093 "Clear inode of %llu, io_mutex is locked\n",
1094 (unsigned long long)oi->ip_blkno);
Mark Fasheh251b6ec2006-01-10 15:41:43 -08001095 mutex_unlock(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001096
1097 /*
1098 * down_trylock() returns 0, down_write_trylock() returns 1
1099 * kernel 1, world 0
1100 */
1101 mlog_bug_on_msg(!down_write_trylock(&oi->ip_alloc_sem),
Mark Fashehb06970532006-03-03 10:24:33 -08001102 "Clear inode of %llu, alloc_sem is locked\n",
1103 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001104 up_write(&oi->ip_alloc_sem);
1105
1106 mlog_bug_on_msg(oi->ip_open_count,
Mark Fashehb06970532006-03-03 10:24:33 -08001107 "Clear inode of %llu has open count %d\n",
1108 (unsigned long long)oi->ip_blkno, oi->ip_open_count);
Mark Fashehccd979b2005-12-15 14:31:24 -08001109
1110 /* Clear all other flags. */
1111 oi->ip_flags = OCFS2_INODE_CACHE_INLINE;
1112 oi->ip_created_trans = 0;
1113 oi->ip_last_trans = 0;
1114 oi->ip_dir_start_lookup = 0;
1115 oi->ip_blkno = 0ULL;
Sunil Mushranae0dff62008-10-22 13:24:29 -07001116
1117 /*
1118 * ip_jinode is used to track txns against this inode. We ensure that
1119 * the journal is flushed before journal shutdown. Thus it is safe to
1120 * have inodes get cleaned up after journal shutdown.
1121 */
Joel Becker2b4e30f2008-09-03 20:03:41 -07001122 jbd2_journal_release_jbd_inode(OCFS2_SB(inode->i_sb)->journal->j_journal,
1123 &oi->ip_jinode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001124
1125bail:
1126 mlog_exit_void();
1127}
1128
1129/* Called under inode_lock, with no more references on the
1130 * struct inode, so it's safe here to check the flags field
1131 * and to manipulate i_nlink without any other locks. */
1132void ocfs2_drop_inode(struct inode *inode)
1133{
1134 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1135
1136 mlog_entry_void();
1137
Mark Fashehb06970532006-03-03 10:24:33 -08001138 mlog(0, "Drop inode %llu, nlink = %u, ip_flags = 0x%x\n",
1139 (unsigned long long)oi->ip_blkno, inode->i_nlink, oi->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -08001140
Mark Fasheh379dfe92006-09-08 14:21:03 -07001141 if (oi->ip_flags & OCFS2_INODE_MAYBE_ORPHANED)
1142 generic_delete_inode(inode);
1143 else
1144 generic_drop_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001145
1146 mlog_exit_void();
1147}
1148
1149/*
Mark Fashehccd979b2005-12-15 14:31:24 -08001150 * This is called from our getattr.
1151 */
1152int ocfs2_inode_revalidate(struct dentry *dentry)
1153{
1154 struct inode *inode = dentry->d_inode;
1155 int status = 0;
1156
Mark Fashehb06970532006-03-03 10:24:33 -08001157 mlog_entry("(inode = 0x%p, ino = %llu)\n", inode,
1158 inode ? (unsigned long long)OCFS2_I(inode)->ip_blkno : 0ULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001159
1160 if (!inode) {
1161 mlog(0, "eep, no inode!\n");
1162 status = -ENOENT;
1163 goto bail;
1164 }
1165
1166 spin_lock(&OCFS2_I(inode)->ip_lock);
1167 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
1168 spin_unlock(&OCFS2_I(inode)->ip_lock);
1169 mlog(0, "inode deleted!\n");
1170 status = -ENOENT;
1171 goto bail;
1172 }
1173 spin_unlock(&OCFS2_I(inode)->ip_lock);
1174
Mark Fashehe63aecb62007-10-18 15:30:42 -07001175 /* Let ocfs2_inode_lock do the work of updating our struct
Mark Fashehccd979b2005-12-15 14:31:24 -08001176 * inode for us. */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001177 status = ocfs2_inode_lock(inode, NULL, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001178 if (status < 0) {
1179 if (status != -ENOENT)
1180 mlog_errno(status);
1181 goto bail;
1182 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07001183 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001184bail:
1185 mlog_exit(status);
1186
1187 return status;
1188}
1189
1190/*
1191 * Updates a disk inode from a
1192 * struct inode.
1193 * Only takes ip_lock.
1194 */
Mark Fasheh1fabe142006-10-09 18:11:45 -07001195int ocfs2_mark_inode_dirty(handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001196 struct inode *inode,
1197 struct buffer_head *bh)
1198{
1199 int status;
1200 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) bh->b_data;
1201
Mark Fashehb06970532006-03-03 10:24:33 -08001202 mlog_entry("(inode %llu)\n",
1203 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001204
Joel Becker13723d02008-10-17 19:25:01 -07001205 status = ocfs2_journal_access_di(handle, inode, bh,
1206 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001207 if (status < 0) {
1208 mlog_errno(status);
1209 goto leave;
1210 }
1211
1212 spin_lock(&OCFS2_I(inode)->ip_lock);
1213 fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters);
Jan Kara6e4b0d52007-04-27 11:08:01 -07001214 ocfs2_get_inode_flags(OCFS2_I(inode));
Herbert Poetzlca4d1472006-07-03 17:27:12 -07001215 fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr);
Mark Fasheh15b1e362007-09-07 13:58:15 -07001216 fe->i_dyn_features = cpu_to_le16(OCFS2_I(inode)->ip_dyn_features);
Mark Fashehccd979b2005-12-15 14:31:24 -08001217 spin_unlock(&OCFS2_I(inode)->ip_lock);
1218
1219 fe->i_size = cpu_to_le64(i_size_read(inode));
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001220 ocfs2_set_links_count(fe, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -08001221 fe->i_uid = cpu_to_le32(inode->i_uid);
1222 fe->i_gid = cpu_to_le32(inode->i_gid);
1223 fe->i_mode = cpu_to_le16(inode->i_mode);
1224 fe->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
1225 fe->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
1226 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
1227 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
1228 fe->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
1229 fe->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
1230
1231 status = ocfs2_journal_dirty(handle, bh);
1232 if (status < 0)
1233 mlog_errno(status);
1234
1235 status = 0;
1236leave:
1237
1238 mlog_exit(status);
1239 return status;
1240}
1241
1242/*
1243 *
1244 * Updates a struct inode from a disk inode.
1245 * does no i/o, only takes ip_lock.
1246 */
1247void ocfs2_refresh_inode(struct inode *inode,
1248 struct ocfs2_dinode *fe)
1249{
Mark Fashehccd979b2005-12-15 14:31:24 -08001250 spin_lock(&OCFS2_I(inode)->ip_lock);
1251
1252 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
Herbert Poetzlca4d1472006-07-03 17:27:12 -07001253 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
Mark Fasheh15b1e362007-09-07 13:58:15 -07001254 OCFS2_I(inode)->ip_dyn_features = le16_to_cpu(fe->i_dyn_features);
Herbert Poetzlca4d1472006-07-03 17:27:12 -07001255 ocfs2_set_inode_flags(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001256 i_size_write(inode, le64_to_cpu(fe->i_size));
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001257 inode->i_nlink = ocfs2_read_links_count(fe);
Mark Fashehccd979b2005-12-15 14:31:24 -08001258 inode->i_uid = le32_to_cpu(fe->i_uid);
1259 inode->i_gid = le32_to_cpu(fe->i_gid);
1260 inode->i_mode = le16_to_cpu(fe->i_mode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001261 if (S_ISLNK(inode->i_mode) && le32_to_cpu(fe->i_clusters) == 0)
1262 inode->i_blocks = 0;
1263 else
Mark Fasheh8110b072007-03-22 16:53:23 -07001264 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001265 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
1266 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
1267 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
1268 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
1269 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
1270 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
1271
1272 spin_unlock(&OCFS2_I(inode)->ip_lock);
1273}
Joel Beckerb657c952008-11-13 14:49:11 -08001274
1275int ocfs2_validate_inode_block(struct super_block *sb,
1276 struct buffer_head *bh)
1277{
Joel Beckerd6b32bb2008-10-17 14:55:01 -07001278 int rc;
Joel Beckerb657c952008-11-13 14:49:11 -08001279 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
1280
Joel Becker970e4932008-11-13 14:49:19 -08001281 mlog(0, "Validating dinode %llu\n",
1282 (unsigned long long)bh->b_blocknr);
1283
Joel Beckerb657c952008-11-13 14:49:11 -08001284 BUG_ON(!buffer_uptodate(bh));
1285
Joel Beckerd6b32bb2008-10-17 14:55:01 -07001286 /*
1287 * If the ecc fails, we return the error but otherwise
1288 * leave the filesystem running. We know any error is
1289 * local to this block.
1290 */
1291 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &di->i_check);
Joel Becker13723d02008-10-17 19:25:01 -07001292 if (rc) {
1293 mlog(ML_ERROR, "Checksum failed for dinode %llu\n",
1294 (unsigned long long)bh->b_blocknr);
Joel Beckerd6b32bb2008-10-17 14:55:01 -07001295 goto bail;
Joel Becker13723d02008-10-17 19:25:01 -07001296 }
Joel Beckerd6b32bb2008-10-17 14:55:01 -07001297
1298 /*
1299 * Errors after here are fatal.
1300 */
1301
1302 rc = -EINVAL;
1303
Joel Beckerb657c952008-11-13 14:49:11 -08001304 if (!OCFS2_IS_VALID_DINODE(di)) {
1305 ocfs2_error(sb, "Invalid dinode #%llu: signature = %.*s\n",
1306 (unsigned long long)bh->b_blocknr, 7,
1307 di->i_signature);
1308 goto bail;
1309 }
1310
1311 if (le64_to_cpu(di->i_blkno) != bh->b_blocknr) {
1312 ocfs2_error(sb, "Invalid dinode #%llu: i_blkno is %llu\n",
1313 (unsigned long long)bh->b_blocknr,
1314 (unsigned long long)le64_to_cpu(di->i_blkno));
1315 goto bail;
1316 }
1317
1318 if (!(di->i_flags & cpu_to_le32(OCFS2_VALID_FL))) {
1319 ocfs2_error(sb,
1320 "Invalid dinode #%llu: OCFS2_VALID_FL not set\n",
1321 (unsigned long long)bh->b_blocknr);
1322 goto bail;
1323 }
1324
1325 if (le32_to_cpu(di->i_fs_generation) !=
1326 OCFS2_SB(sb)->fs_generation) {
1327 ocfs2_error(sb,
1328 "Invalid dinode #%llu: fs_generation is %u\n",
1329 (unsigned long long)bh->b_blocknr,
1330 le32_to_cpu(di->i_fs_generation));
1331 goto bail;
1332 }
1333
1334 rc = 0;
1335
1336bail:
1337 return rc;
1338}
1339
1340int ocfs2_read_inode_block_full(struct inode *inode, struct buffer_head **bh,
1341 int flags)
1342{
1343 int rc;
1344 struct buffer_head *tmp = *bh;
1345
1346 rc = ocfs2_read_blocks(inode, OCFS2_I(inode)->ip_blkno, 1, &tmp,
Joel Becker970e4932008-11-13 14:49:19 -08001347 flags, ocfs2_validate_inode_block);
Joel Beckerb657c952008-11-13 14:49:11 -08001348
1349 /* If ocfs2_read_blocks() got us a new bh, pass it up. */
Joel Becker970e4932008-11-13 14:49:19 -08001350 if (!rc && !*bh)
Joel Beckerb657c952008-11-13 14:49:11 -08001351 *bh = tmp;
1352
Joel Beckerb657c952008-11-13 14:49:11 -08001353 return rc;
1354}
1355
1356int ocfs2_read_inode_block(struct inode *inode, struct buffer_head **bh)
1357{
1358 return ocfs2_read_inode_block_full(inode, bh, 0);
1359}