blob: f1f77b2f59472f3edaae8949b533bdc63b5bad2b [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
Joel Beckerb657c952008-11-13 14:49:11 -0800355 mlog_exit_void();
Mark Fashehccd979b2005-12-15 14:31:24 -0800356}
357
358static int ocfs2_read_locked_inode(struct inode *inode,
359 struct ocfs2_find_inode_args *args)
360{
361 struct super_block *sb;
362 struct ocfs2_super *osb;
363 struct ocfs2_dinode *fe;
364 struct buffer_head *bh = NULL;
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700365 int status, can_lock;
366 u32 generation = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800367
368 mlog_entry("(0x%p, 0x%p)\n", inode, args);
369
370 status = -EINVAL;
371 if (inode == NULL || inode->i_sb == NULL) {
372 mlog(ML_ERROR, "bad inode\n");
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700373 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800374 }
375 sb = inode->i_sb;
376 osb = OCFS2_SB(sb);
377
378 if (!args) {
379 mlog(ML_ERROR, "bad inode args\n");
380 make_bad_inode(inode);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700381 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800382 }
383
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700384 /*
385 * To improve performance of cold-cache inode stats, we take
386 * the cluster lock here if possible.
387 *
388 * Generally, OCFS2 never trusts the contents of an inode
389 * unless it's holding a cluster lock, so taking it here isn't
390 * a correctness issue as much as it is a performance
391 * improvement.
392 *
393 * There are three times when taking the lock is not a good idea:
394 *
395 * 1) During startup, before we have initialized the DLM.
396 *
397 * 2) If we are reading certain system files which never get
398 * cluster locks (local alloc, truncate log).
399 *
400 * 3) If the process doing the iget() is responsible for
401 * orphan dir recovery. We're holding the orphan dir lock and
402 * can get into a deadlock with another process on another
403 * node in ->delete_inode().
404 *
405 * #1 and #2 can be simply solved by never taking the lock
406 * here for system files (which are the only type we read
407 * during mount). It's a heavier approach, but our main
408 * concern is user-accesible files anyway.
409 *
410 * #3 works itself out because we'll eventually take the
411 * cluster lock before trusting anything anyway.
412 */
413 can_lock = !(args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
Tiger Yang50008632007-03-20 16:01:38 -0700414 && !(args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY)
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800415 && !ocfs2_mount_local(osb);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700416
417 /*
418 * To maintain backwards compatibility with older versions of
419 * ocfs2-tools, we still store the generation value for system
420 * files. The only ones that actually matter to userspace are
421 * the journals, but it's easier and inexpensive to just flag
422 * all system files similarly.
423 */
424 if (args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
425 generation = osb->fs_generation;
426
Mark Fashehe63aecb62007-10-18 15:30:42 -0700427 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_inode_lockres,
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700428 OCFS2_LOCK_TYPE_META,
429 generation, inode);
430
Tiger Yang50008632007-03-20 16:01:38 -0700431 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_open_lockres,
432 OCFS2_LOCK_TYPE_OPEN,
433 0, inode);
434
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700435 if (can_lock) {
Tiger Yang50008632007-03-20 16:01:38 -0700436 status = ocfs2_open_lock(inode);
437 if (status) {
438 make_bad_inode(inode);
439 mlog_errno(status);
440 return status;
441 }
Mark Fashehe63aecb62007-10-18 15:30:42 -0700442 status = ocfs2_inode_lock(inode, NULL, 0);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700443 if (status) {
444 make_bad_inode(inode);
445 mlog_errno(status);
446 return status;
447 }
448 }
449
Tiger Yang50008632007-03-20 16:01:38 -0700450 if (args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY) {
451 status = ocfs2_try_open_lock(inode, 0);
452 if (status) {
453 make_bad_inode(inode);
454 return status;
455 }
456 }
457
Joel Beckerb657c952008-11-13 14:49:11 -0800458 if (can_lock) {
459 status = ocfs2_read_inode_block_full(inode, &bh,
460 OCFS2_BH_IGNORE_CACHE);
461 } else {
Joel Beckerda1e9092008-10-09 17:20:29 -0700462 status = ocfs2_read_blocks_sync(osb, args->fi_blkno, 1, &bh);
Joel Beckerb657c952008-11-13 14:49:11 -0800463 if (!status)
464 status = ocfs2_validate_inode_block(osb->sb, bh);
465 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800466 if (status < 0) {
467 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800468 goto bail;
469 }
470
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700471 status = -EINVAL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800472 fe = (struct ocfs2_dinode *) bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -0800473
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700474 /*
475 * This is a code bug. Right now the caller needs to
476 * understand whether it is asking for a system file inode or
477 * not so the proper lock names can be built.
478 */
479 mlog_bug_on_msg(!!(fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) !=
480 !!(args->fi_flags & OCFS2_FI_FLAG_SYSFILE),
481 "Inode %llu: system file state is ambigous\n",
482 (unsigned long long)args->fi_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800483
484 if (S_ISCHR(le16_to_cpu(fe->i_mode)) ||
485 S_ISBLK(le16_to_cpu(fe->i_mode)))
Joel Beckerb657c952008-11-13 14:49:11 -0800486 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
Mark Fashehccd979b2005-12-15 14:31:24 -0800487
Joel Beckerb657c952008-11-13 14:49:11 -0800488 ocfs2_populate_inode(inode, fe, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800489
490 BUG_ON(args->fi_blkno != le64_to_cpu(fe->i_blkno));
491
Mark Fashehccd979b2005-12-15 14:31:24 -0800492 status = 0;
493
494bail:
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700495 if (can_lock)
Mark Fashehe63aecb62007-10-18 15:30:42 -0700496 ocfs2_inode_unlock(inode, 0);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700497
498 if (status < 0)
499 make_bad_inode(inode);
500
Mark Fashehccd979b2005-12-15 14:31:24 -0800501 if (args && bh)
502 brelse(bh);
503
504 mlog_exit(status);
505 return status;
506}
507
508void ocfs2_sync_blockdev(struct super_block *sb)
509{
510 sync_blockdev(sb->s_bdev);
511}
512
513static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
514 struct inode *inode,
515 struct buffer_head *fe_bh)
516{
517 int status = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800518 struct ocfs2_truncate_context *tc = NULL;
519 struct ocfs2_dinode *fe;
Mark Fasheh60b11392007-02-16 11:46:50 -0800520 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800521
522 mlog_entry_void();
523
524 fe = (struct ocfs2_dinode *) fe_bh->b_data;
525
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700526 /*
527 * This check will also skip truncate of inodes with inline
528 * data and fast symlinks.
529 */
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800530 if (fe->i_clusters) {
Joel Becker2b4e30f2008-09-03 20:03:41 -0700531 if (ocfs2_should_order_data(inode))
532 ocfs2_begin_ordered_truncate(inode, 0);
533
Mark Fasheh60b11392007-02-16 11:46:50 -0800534 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
535 if (IS_ERR(handle)) {
536 status = PTR_ERR(handle);
537 mlog_errno(status);
538 goto out;
539 }
540
Joel Becker13723d02008-10-17 19:25:01 -0700541 status = ocfs2_journal_access_di(handle, inode, fe_bh,
542 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fasheh60b11392007-02-16 11:46:50 -0800543 if (status < 0) {
544 mlog_errno(status);
545 goto out;
546 }
547
548 i_size_write(inode, 0);
549
550 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
551 if (status < 0) {
552 mlog_errno(status);
553 goto out;
554 }
555
556 ocfs2_commit_trans(osb, handle);
557 handle = NULL;
558
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800559 status = ocfs2_prepare_truncate(osb, inode, fe_bh, &tc);
560 if (status < 0) {
561 mlog_errno(status);
562 goto out;
563 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800564
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800565 status = ocfs2_commit_truncate(osb, inode, fe_bh, tc);
566 if (status < 0) {
567 mlog_errno(status);
568 goto out;
569 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800570 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800571
Mark Fasheh60b11392007-02-16 11:46:50 -0800572out:
573 if (handle)
574 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800575 mlog_exit(status);
576 return status;
577}
578
579static int ocfs2_remove_inode(struct inode *inode,
580 struct buffer_head *di_bh,
581 struct inode *orphan_dir_inode,
582 struct buffer_head *orphan_dir_bh)
583{
584 int status;
585 struct inode *inode_alloc_inode = NULL;
586 struct buffer_head *inode_alloc_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700587 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800588 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
589 struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
590
591 inode_alloc_inode =
592 ocfs2_get_system_file_inode(osb, INODE_ALLOC_SYSTEM_INODE,
593 le16_to_cpu(di->i_suballoc_slot));
594 if (!inode_alloc_inode) {
595 status = -EEXIST;
596 mlog_errno(status);
597 goto bail;
598 }
599
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800600 mutex_lock(&inode_alloc_inode->i_mutex);
Mark Fashehe63aecb62007-10-18 15:30:42 -0700601 status = ocfs2_inode_lock(inode_alloc_inode, &inode_alloc_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800602 if (status < 0) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800603 mutex_unlock(&inode_alloc_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800604
605 mlog_errno(status);
606 goto bail;
607 }
608
Jan Karaa90714c2008-10-09 19:38:40 +0200609 handle = ocfs2_start_trans(osb, OCFS2_DELETE_INODE_CREDITS +
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800610 ocfs2_quota_trans_credits(inode->i_sb));
Mark Fashehccd979b2005-12-15 14:31:24 -0800611 if (IS_ERR(handle)) {
612 status = PTR_ERR(handle);
613 mlog_errno(status);
614 goto bail_unlock;
615 }
616
617 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
618 orphan_dir_bh);
619 if (status < 0) {
620 mlog_errno(status);
621 goto bail_commit;
622 }
623
624 /* set the inodes dtime */
Joel Becker13723d02008-10-17 19:25:01 -0700625 status = ocfs2_journal_access_di(handle, inode, di_bh,
626 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800627 if (status < 0) {
628 mlog_errno(status);
629 goto bail_commit;
630 }
631
632 di->i_dtime = cpu_to_le64(CURRENT_TIME.tv_sec);
Marcin Slusarz4092d492007-12-25 15:52:59 +0100633 di->i_flags &= cpu_to_le32(~(OCFS2_VALID_FL | OCFS2_ORPHANED_FL));
Mark Fashehccd979b2005-12-15 14:31:24 -0800634
635 status = ocfs2_journal_dirty(handle, di_bh);
636 if (status < 0) {
637 mlog_errno(status);
638 goto bail_commit;
639 }
640
641 ocfs2_remove_from_cache(inode, di_bh);
Jan Karaa90714c2008-10-09 19:38:40 +0200642 vfs_dq_free_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800643
644 status = ocfs2_free_dinode(handle, inode_alloc_inode,
645 inode_alloc_bh, di);
646 if (status < 0)
647 mlog_errno(status);
648
649bail_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700650 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800651bail_unlock:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700652 ocfs2_inode_unlock(inode_alloc_inode, 1);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800653 mutex_unlock(&inode_alloc_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800654 brelse(inode_alloc_bh);
655bail:
656 iput(inode_alloc_inode);
657
658 return status;
659}
660
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800661/*
662 * Serialize with orphan dir recovery. If the process doing
663 * recovery on this orphan dir does an iget() with the dir
664 * i_mutex held, we'll deadlock here. Instead we detect this
665 * and exit early - recovery will wipe this inode for us.
666 */
667static int ocfs2_check_orphan_recovery_state(struct ocfs2_super *osb,
668 int slot)
669{
670 int ret = 0;
671
672 spin_lock(&osb->osb_lock);
673 if (ocfs2_node_map_test_bit(osb, &osb->osb_recovering_orphan_dirs, slot)) {
674 mlog(0, "Recovery is happening on orphan dir %d, will skip "
675 "this inode\n", slot);
676 ret = -EDEADLK;
677 goto out;
678 }
679 /* This signals to the orphan recovery process that it should
680 * wait for us to handle the wipe. */
681 osb->osb_orphan_wipes[slot]++;
682out:
683 spin_unlock(&osb->osb_lock);
684 return ret;
685}
686
687static void ocfs2_signal_wipe_completion(struct ocfs2_super *osb,
688 int slot)
689{
690 spin_lock(&osb->osb_lock);
691 osb->osb_orphan_wipes[slot]--;
692 spin_unlock(&osb->osb_lock);
693
694 wake_up(&osb->osb_wipe_event);
695}
696
Mark Fashehccd979b2005-12-15 14:31:24 -0800697static int ocfs2_wipe_inode(struct inode *inode,
698 struct buffer_head *di_bh)
699{
700 int status, orphaned_slot;
701 struct inode *orphan_dir_inode = NULL;
702 struct buffer_head *orphan_dir_bh = NULL;
703 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tiger Yang50008632007-03-20 16:01:38 -0700704 struct ocfs2_dinode *di;
Mark Fashehccd979b2005-12-15 14:31:24 -0800705
Tiger Yang50008632007-03-20 16:01:38 -0700706 di = (struct ocfs2_dinode *) di_bh->b_data;
707 orphaned_slot = le16_to_cpu(di->i_orphaned_slot);
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800708
709 status = ocfs2_check_orphan_recovery_state(osb, orphaned_slot);
710 if (status)
711 return status;
712
Mark Fashehccd979b2005-12-15 14:31:24 -0800713 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
714 ORPHAN_DIR_SYSTEM_INODE,
715 orphaned_slot);
716 if (!orphan_dir_inode) {
717 status = -EEXIST;
718 mlog_errno(status);
719 goto bail;
720 }
721
722 /* Lock the orphan dir. The lock will be held for the entire
723 * delete_inode operation. We do this now to avoid races with
724 * recovery completion on other nodes. */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800725 mutex_lock(&orphan_dir_inode->i_mutex);
Mark Fashehe63aecb62007-10-18 15:30:42 -0700726 status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800727 if (status < 0) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800728 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800729
730 mlog_errno(status);
731 goto bail;
732 }
733
734 /* we do this while holding the orphan dir lock because we
Mark Fasheh34d024f2007-09-24 15:56:19 -0700735 * don't want recovery being run from another node to try an
736 * inode delete underneath us -- this will result in two nodes
Mark Fashehccd979b2005-12-15 14:31:24 -0800737 * truncating the same file! */
738 status = ocfs2_truncate_for_delete(osb, inode, di_bh);
739 if (status < 0) {
740 mlog_errno(status);
741 goto bail_unlock_dir;
742 }
743
Mark Fasheh9b7895e2008-11-12 16:27:44 -0800744 /* Remove any dir index tree */
745 if (S_ISDIR(inode->i_mode)) {
746 status = ocfs2_dx_dir_truncate(inode, di_bh);
747 if (status) {
748 mlog_errno(status);
749 goto bail_unlock_dir;
750 }
751 }
752
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800753 /*Free extended attribute resources associated with this inode.*/
754 status = ocfs2_xattr_remove(inode, di_bh);
755 if (status < 0) {
756 mlog_errno(status);
757 goto bail_unlock_dir;
758 }
759
Mark Fashehccd979b2005-12-15 14:31:24 -0800760 status = ocfs2_remove_inode(inode, di_bh, orphan_dir_inode,
761 orphan_dir_bh);
762 if (status < 0)
763 mlog_errno(status);
764
765bail_unlock_dir:
Mark Fashehe63aecb62007-10-18 15:30:42 -0700766 ocfs2_inode_unlock(orphan_dir_inode, 1);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800767 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800768 brelse(orphan_dir_bh);
769bail:
770 iput(orphan_dir_inode);
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800771 ocfs2_signal_wipe_completion(osb, orphaned_slot);
Mark Fashehccd979b2005-12-15 14:31:24 -0800772
773 return status;
774}
775
776/* There is a series of simple checks that should be done before a
Mark Fasheh34d024f2007-09-24 15:56:19 -0700777 * trylock is even considered. Encapsulate those in this function. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800778static int ocfs2_inode_is_valid_to_delete(struct inode *inode)
779{
780 int ret = 0;
781 struct ocfs2_inode_info *oi = OCFS2_I(inode);
782 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
783
784 /* We shouldn't be getting here for the root directory
785 * inode.. */
786 if (inode == osb->root_inode) {
787 mlog(ML_ERROR, "Skipping delete of root inode.\n");
788 goto bail;
789 }
790
Mark Fasheh34d024f2007-09-24 15:56:19 -0700791 /* If we're coming from downconvert_thread we can't go into our own
Mark Fashehccd979b2005-12-15 14:31:24 -0800792 * voting [hello, deadlock city!], so unforuntately we just
793 * have to skip deleting this guy. That's OK though because
794 * the node who's doing the actual deleting should handle it
795 * anyway. */
Mark Fasheh34d024f2007-09-24 15:56:19 -0700796 if (current == osb->dc_task) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800797 mlog(0, "Skipping delete of %lu because we're currently "
Mark Fasheh34d024f2007-09-24 15:56:19 -0700798 "in downconvert\n", inode->i_ino);
Mark Fashehccd979b2005-12-15 14:31:24 -0800799 goto bail;
800 }
801
802 spin_lock(&oi->ip_lock);
803 /* OCFS2 *never* deletes system files. This should technically
804 * never get here as system file inodes should always have a
805 * positive link count. */
806 if (oi->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
Mark Fashehb06970532006-03-03 10:24:33 -0800807 mlog(ML_ERROR, "Skipping delete of system file %llu\n",
808 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800809 goto bail_unlock;
810 }
811
Mark Fasheh34d024f2007-09-24 15:56:19 -0700812 /* If we have allowd wipe of this inode for another node, it
813 * will be marked here so we can safely skip it. Recovery will
814 * cleanup any inodes we might inadvertantly skip here. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800815 if (oi->ip_flags & OCFS2_INODE_SKIP_DELETE) {
816 mlog(0, "Skipping delete of %lu because another node "
817 "has done this for us.\n", inode->i_ino);
818 goto bail_unlock;
819 }
820
821 ret = 1;
822bail_unlock:
823 spin_unlock(&oi->ip_lock);
824bail:
825 return ret;
826}
827
828/* Query the cluster to determine whether we should wipe an inode from
829 * disk or not.
830 *
831 * Requires the inode to have the cluster lock. */
832static int ocfs2_query_inode_wipe(struct inode *inode,
833 struct buffer_head *di_bh,
834 int *wipe)
835{
836 int status = 0;
837 struct ocfs2_inode_info *oi = OCFS2_I(inode);
838 struct ocfs2_dinode *di;
839
840 *wipe = 0;
841
842 /* While we were waiting for the cluster lock in
843 * ocfs2_delete_inode, another node might have asked to delete
844 * the inode. Recheck our flags to catch this. */
845 if (!ocfs2_inode_is_valid_to_delete(inode)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800846 mlog(0, "Skipping delete of %llu because flags changed\n",
847 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800848 goto bail;
849 }
850
851 /* Now that we have an up to date inode, we can double check
852 * the link count. */
853 if (inode->i_nlink) {
Mark Fashehb06970532006-03-03 10:24:33 -0800854 mlog(0, "Skipping delete of %llu because nlink = %u\n",
855 (unsigned long long)oi->ip_blkno, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800856 goto bail;
857 }
858
859 /* Do some basic inode verification... */
860 di = (struct ocfs2_dinode *) di_bh->b_data;
861 if (!(di->i_flags & cpu_to_le32(OCFS2_ORPHANED_FL))) {
862 /* for lack of a better error? */
863 status = -EEXIST;
864 mlog(ML_ERROR,
Mark Fashehb06970532006-03-03 10:24:33 -0800865 "Inode %llu (on-disk %llu) not orphaned! "
Mark Fashehccd979b2005-12-15 14:31:24 -0800866 "Disk flags 0x%x, inode flags 0x%x\n",
Mark Fashehb06970532006-03-03 10:24:33 -0800867 (unsigned long long)oi->ip_blkno,
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700868 (unsigned long long)le64_to_cpu(di->i_blkno),
869 le32_to_cpu(di->i_flags), oi->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800870 goto bail;
871 }
872
873 /* has someone already deleted us?! baaad... */
874 if (di->i_dtime) {
875 status = -EEXIST;
876 mlog_errno(status);
877 goto bail;
878 }
879
Mark Fasheh6f16bf62007-03-20 17:17:54 -0700880 /*
881 * This is how ocfs2 determines whether an inode is still live
882 * within the cluster. Every node takes a shared read lock on
883 * the inode open lock in ocfs2_read_locked_inode(). When we
884 * get to ->delete_inode(), each node tries to convert it's
885 * lock to an exclusive. Trylocks are serialized by the inode
886 * meta data lock. If the upconvert suceeds, we know the inode
887 * is no longer live and can be deleted.
888 *
889 * Though we call this with the meta data lock held, the
890 * trylock keeps us from ABBA deadlock.
891 */
892 status = ocfs2_try_open_lock(inode, 1);
Tiger Yang50008632007-03-20 16:01:38 -0700893 if (status == -EAGAIN) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800894 status = 0;
Joe Perches27592362007-11-19 17:53:34 -0800895 mlog(0, "Skipping delete of %llu because it is in use on "
Mark Fashehb06970532006-03-03 10:24:33 -0800896 "other nodes\n", (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800897 goto bail;
898 }
899 if (status < 0) {
900 mlog_errno(status);
901 goto bail;
902 }
903
Tiger Yang50008632007-03-20 16:01:38 -0700904 *wipe = 1;
905 mlog(0, "Inode %llu is ok to wipe from orphan dir %u\n",
906 (unsigned long long)oi->ip_blkno,
907 le16_to_cpu(di->i_orphaned_slot));
Mark Fashehccd979b2005-12-15 14:31:24 -0800908
909bail:
910 return status;
911}
912
913/* Support function for ocfs2_delete_inode. Will help us keep the
914 * inode data in a consistent state for clear_inode. Always truncates
915 * pages, optionally sync's them first. */
916static void ocfs2_cleanup_delete_inode(struct inode *inode,
917 int sync_data)
918{
Mark Fashehb06970532006-03-03 10:24:33 -0800919 mlog(0, "Cleanup inode %llu, sync = %d\n",
920 (unsigned long long)OCFS2_I(inode)->ip_blkno, sync_data);
Mark Fashehccd979b2005-12-15 14:31:24 -0800921 if (sync_data)
922 write_inode_now(inode, 1);
923 truncate_inode_pages(&inode->i_data, 0);
924}
925
926void ocfs2_delete_inode(struct inode *inode)
927{
928 int wipe, status;
929 sigset_t blocked, oldset;
930 struct buffer_head *di_bh = NULL;
931
932 mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino);
933
Jan Karaa90714c2008-10-09 19:38:40 +0200934 /* When we fail in read_inode() we mark inode as bad. The second test
935 * catches the case when inode allocation fails before allocating
936 * a block for inode. */
937 if (is_bad_inode(inode) || !OCFS2_I(inode)->ip_blkno) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800938 mlog(0, "Skipping delete of bad inode\n");
939 goto bail;
940 }
941
942 if (!ocfs2_inode_is_valid_to_delete(inode)) {
943 /* It's probably not necessary to truncate_inode_pages
944 * here but we do it for safety anyway (it will most
945 * likely be a no-op anyway) */
946 ocfs2_cleanup_delete_inode(inode, 0);
947 goto bail;
948 }
949
950 /* We want to block signals in delete_inode as the lock and
951 * messaging paths may return us -ERESTARTSYS. Which would
952 * cause us to exit early, resulting in inodes being orphaned
953 * forever. */
954 sigfillset(&blocked);
955 status = sigprocmask(SIG_BLOCK, &blocked, &oldset);
956 if (status < 0) {
957 mlog_errno(status);
958 ocfs2_cleanup_delete_inode(inode, 1);
959 goto bail;
960 }
961
962 /* Lock down the inode. This gives us an up to date view of
963 * it's metadata (for verification), and allows us to
Mark Fasheh34d024f2007-09-24 15:56:19 -0700964 * serialize delete_inode on multiple nodes.
Mark Fashehccd979b2005-12-15 14:31:24 -0800965 *
966 * Even though we might be doing a truncate, we don't take the
967 * allocation lock here as it won't be needed - nobody will
968 * have the file open.
969 */
Mark Fashehe63aecb62007-10-18 15:30:42 -0700970 status = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800971 if (status < 0) {
972 if (status != -ENOENT)
973 mlog_errno(status);
974 ocfs2_cleanup_delete_inode(inode, 0);
975 goto bail_unblock;
976 }
977
978 /* Query the cluster. This will be the final decision made
979 * before we go ahead and wipe the inode. */
980 status = ocfs2_query_inode_wipe(inode, di_bh, &wipe);
981 if (!wipe || status < 0) {
Mark Fasheh34d024f2007-09-24 15:56:19 -0700982 /* Error and remote inode busy both mean we won't be
Mark Fashehccd979b2005-12-15 14:31:24 -0800983 * removing the inode, so they take almost the same
984 * path. */
985 if (status < 0)
986 mlog_errno(status);
987
Mark Fasheh34d024f2007-09-24 15:56:19 -0700988 /* Someone in the cluster has disallowed a wipe of
989 * this inode, or it was never completely
990 * orphaned. Write out the pages and exit now. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800991 ocfs2_cleanup_delete_inode(inode, 1);
992 goto bail_unlock_inode;
993 }
994
995 ocfs2_cleanup_delete_inode(inode, 0);
996
997 status = ocfs2_wipe_inode(inode, di_bh);
998 if (status < 0) {
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800999 if (status != -EDEADLK)
1000 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001001 goto bail_unlock_inode;
1002 }
1003
Mark Fasheh24c19ef2006-09-22 17:28:19 -07001004 /*
1005 * Mark the inode as successfully deleted.
1006 *
1007 * This is important for ocfs2_clear_inode() as it will check
1008 * this flag and skip any checkpointing work
1009 *
1010 * ocfs2_stuff_meta_lvb() also uses this flag to invalidate
1011 * the LVB for other nodes.
1012 */
Mark Fashehccd979b2005-12-15 14:31:24 -08001013 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_DELETED;
1014
1015bail_unlock_inode:
Mark Fashehe63aecb62007-10-18 15:30:42 -07001016 ocfs2_inode_unlock(inode, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -08001017 brelse(di_bh);
1018bail_unblock:
1019 status = sigprocmask(SIG_SETMASK, &oldset, NULL);
1020 if (status < 0)
1021 mlog_errno(status);
1022bail:
1023 clear_inode(inode);
1024 mlog_exit_void();
1025}
1026
1027void ocfs2_clear_inode(struct inode *inode)
1028{
1029 int status;
1030 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1031
1032 mlog_entry_void();
1033
1034 if (!inode)
1035 goto bail;
1036
Mark Fashehb06970532006-03-03 10:24:33 -08001037 mlog(0, "Clearing inode: %llu, nlink = %u\n",
1038 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -08001039
1040 mlog_bug_on_msg(OCFS2_SB(inode->i_sb) == NULL,
1041 "Inode=%lu\n", inode->i_ino);
1042
Mark Fasheh34d024f2007-09-24 15:56:19 -07001043 /* To preven remote deletes we hold open lock before, now it
1044 * is time to unlock PR and EX open locks. */
Tiger Yang50008632007-03-20 16:01:38 -07001045 ocfs2_open_unlock(inode);
1046
Mark Fashehccd979b2005-12-15 14:31:24 -08001047 /* Do these before all the other work so that we don't bounce
Mark Fasheh34d024f2007-09-24 15:56:19 -07001048 * the downconvert thread while waiting to destroy the locks. */
Mark Fashehccd979b2005-12-15 14:31:24 -08001049 ocfs2_mark_lockres_freeing(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001050 ocfs2_mark_lockres_freeing(&oi->ip_inode_lockres);
Tiger Yang50008632007-03-20 16:01:38 -07001051 ocfs2_mark_lockres_freeing(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001052
1053 /* We very well may get a clear_inode before all an inodes
1054 * metadata has hit disk. Of course, we can't drop any cluster
1055 * locks until the journal has finished with it. The only
1056 * exception here are successfully wiped inodes - their
1057 * metadata can now be considered to be part of the system
1058 * inodes from which it came. */
1059 if (!(OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED))
1060 ocfs2_checkpoint_inode(inode);
1061
1062 mlog_bug_on_msg(!list_empty(&oi->ip_io_markers),
Mark Fashehb06970532006-03-03 10:24:33 -08001063 "Clear inode of %llu, inode has io markers\n",
1064 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001065
Mark Fasheh83418972007-04-23 18:53:12 -07001066 ocfs2_extent_map_trunc(inode, 0);
1067
Mark Fashehccd979b2005-12-15 14:31:24 -08001068 status = ocfs2_drop_inode_locks(inode);
1069 if (status < 0)
1070 mlog_errno(status);
1071
1072 ocfs2_lock_res_free(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001073 ocfs2_lock_res_free(&oi->ip_inode_lockres);
Tiger Yang50008632007-03-20 16:01:38 -07001074 ocfs2_lock_res_free(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001075
1076 ocfs2_metadata_cache_purge(inode);
1077
1078 mlog_bug_on_msg(oi->ip_metadata_cache.ci_num_cached,
Mark Fashehb06970532006-03-03 10:24:33 -08001079 "Clear inode of %llu, inode has %u cache items\n",
1080 (unsigned long long)oi->ip_blkno, oi->ip_metadata_cache.ci_num_cached);
Mark Fashehccd979b2005-12-15 14:31:24 -08001081
1082 mlog_bug_on_msg(!(oi->ip_flags & OCFS2_INODE_CACHE_INLINE),
Mark Fashehb06970532006-03-03 10:24:33 -08001083 "Clear inode of %llu, inode has a bad flag\n",
1084 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001085
1086 mlog_bug_on_msg(spin_is_locked(&oi->ip_lock),
Mark Fashehb06970532006-03-03 10:24:33 -08001087 "Clear inode of %llu, inode is locked\n",
1088 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001089
Mark Fasheh251b6ec2006-01-10 15:41:43 -08001090 mlog_bug_on_msg(!mutex_trylock(&oi->ip_io_mutex),
Mark Fashehb06970532006-03-03 10:24:33 -08001091 "Clear inode of %llu, io_mutex is locked\n",
1092 (unsigned long long)oi->ip_blkno);
Mark Fasheh251b6ec2006-01-10 15:41:43 -08001093 mutex_unlock(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001094
1095 /*
1096 * down_trylock() returns 0, down_write_trylock() returns 1
1097 * kernel 1, world 0
1098 */
1099 mlog_bug_on_msg(!down_write_trylock(&oi->ip_alloc_sem),
Mark Fashehb06970532006-03-03 10:24:33 -08001100 "Clear inode of %llu, alloc_sem is locked\n",
1101 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001102 up_write(&oi->ip_alloc_sem);
1103
1104 mlog_bug_on_msg(oi->ip_open_count,
Mark Fashehb06970532006-03-03 10:24:33 -08001105 "Clear inode of %llu has open count %d\n",
1106 (unsigned long long)oi->ip_blkno, oi->ip_open_count);
Mark Fashehccd979b2005-12-15 14:31:24 -08001107
1108 /* Clear all other flags. */
1109 oi->ip_flags = OCFS2_INODE_CACHE_INLINE;
1110 oi->ip_created_trans = 0;
1111 oi->ip_last_trans = 0;
1112 oi->ip_dir_start_lookup = 0;
1113 oi->ip_blkno = 0ULL;
Sunil Mushranae0dff62008-10-22 13:24:29 -07001114
1115 /*
1116 * ip_jinode is used to track txns against this inode. We ensure that
1117 * the journal is flushed before journal shutdown. Thus it is safe to
1118 * have inodes get cleaned up after journal shutdown.
1119 */
Joel Becker2b4e30f2008-09-03 20:03:41 -07001120 jbd2_journal_release_jbd_inode(OCFS2_SB(inode->i_sb)->journal->j_journal,
1121 &oi->ip_jinode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001122
1123bail:
1124 mlog_exit_void();
1125}
1126
1127/* Called under inode_lock, with no more references on the
1128 * struct inode, so it's safe here to check the flags field
1129 * and to manipulate i_nlink without any other locks. */
1130void ocfs2_drop_inode(struct inode *inode)
1131{
1132 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1133
1134 mlog_entry_void();
1135
Mark Fashehb06970532006-03-03 10:24:33 -08001136 mlog(0, "Drop inode %llu, nlink = %u, ip_flags = 0x%x\n",
1137 (unsigned long long)oi->ip_blkno, inode->i_nlink, oi->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -08001138
Mark Fasheh379dfe92006-09-08 14:21:03 -07001139 if (oi->ip_flags & OCFS2_INODE_MAYBE_ORPHANED)
1140 generic_delete_inode(inode);
1141 else
1142 generic_drop_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001143
1144 mlog_exit_void();
1145}
1146
1147/*
Mark Fashehccd979b2005-12-15 14:31:24 -08001148 * This is called from our getattr.
1149 */
1150int ocfs2_inode_revalidate(struct dentry *dentry)
1151{
1152 struct inode *inode = dentry->d_inode;
1153 int status = 0;
1154
Mark Fashehb06970532006-03-03 10:24:33 -08001155 mlog_entry("(inode = 0x%p, ino = %llu)\n", inode,
1156 inode ? (unsigned long long)OCFS2_I(inode)->ip_blkno : 0ULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001157
1158 if (!inode) {
1159 mlog(0, "eep, no inode!\n");
1160 status = -ENOENT;
1161 goto bail;
1162 }
1163
1164 spin_lock(&OCFS2_I(inode)->ip_lock);
1165 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
1166 spin_unlock(&OCFS2_I(inode)->ip_lock);
1167 mlog(0, "inode deleted!\n");
1168 status = -ENOENT;
1169 goto bail;
1170 }
1171 spin_unlock(&OCFS2_I(inode)->ip_lock);
1172
Mark Fashehe63aecb62007-10-18 15:30:42 -07001173 /* Let ocfs2_inode_lock do the work of updating our struct
Mark Fashehccd979b2005-12-15 14:31:24 -08001174 * inode for us. */
Mark Fashehe63aecb62007-10-18 15:30:42 -07001175 status = ocfs2_inode_lock(inode, NULL, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001176 if (status < 0) {
1177 if (status != -ENOENT)
1178 mlog_errno(status);
1179 goto bail;
1180 }
Mark Fashehe63aecb62007-10-18 15:30:42 -07001181 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001182bail:
1183 mlog_exit(status);
1184
1185 return status;
1186}
1187
1188/*
1189 * Updates a disk inode from a
1190 * struct inode.
1191 * Only takes ip_lock.
1192 */
Mark Fasheh1fabe142006-10-09 18:11:45 -07001193int ocfs2_mark_inode_dirty(handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001194 struct inode *inode,
1195 struct buffer_head *bh)
1196{
1197 int status;
1198 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) bh->b_data;
1199
Mark Fashehb06970532006-03-03 10:24:33 -08001200 mlog_entry("(inode %llu)\n",
1201 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001202
Joel Becker13723d02008-10-17 19:25:01 -07001203 status = ocfs2_journal_access_di(handle, inode, bh,
1204 OCFS2_JOURNAL_ACCESS_WRITE);
Mark Fashehccd979b2005-12-15 14:31:24 -08001205 if (status < 0) {
1206 mlog_errno(status);
1207 goto leave;
1208 }
1209
1210 spin_lock(&OCFS2_I(inode)->ip_lock);
1211 fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters);
Jan Kara6e4b0d52007-04-27 11:08:01 -07001212 ocfs2_get_inode_flags(OCFS2_I(inode));
Herbert Poetzlca4d1472006-07-03 17:27:12 -07001213 fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr);
Mark Fasheh15b1e362007-09-07 13:58:15 -07001214 fe->i_dyn_features = cpu_to_le16(OCFS2_I(inode)->ip_dyn_features);
Mark Fashehccd979b2005-12-15 14:31:24 -08001215 spin_unlock(&OCFS2_I(inode)->ip_lock);
1216
1217 fe->i_size = cpu_to_le64(i_size_read(inode));
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001218 ocfs2_set_links_count(fe, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -08001219 fe->i_uid = cpu_to_le32(inode->i_uid);
1220 fe->i_gid = cpu_to_le32(inode->i_gid);
1221 fe->i_mode = cpu_to_le16(inode->i_mode);
1222 fe->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
1223 fe->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
1224 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
1225 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
1226 fe->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
1227 fe->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
1228
1229 status = ocfs2_journal_dirty(handle, bh);
1230 if (status < 0)
1231 mlog_errno(status);
1232
1233 status = 0;
1234leave:
1235
1236 mlog_exit(status);
1237 return status;
1238}
1239
1240/*
1241 *
1242 * Updates a struct inode from a disk inode.
1243 * does no i/o, only takes ip_lock.
1244 */
1245void ocfs2_refresh_inode(struct inode *inode,
1246 struct ocfs2_dinode *fe)
1247{
Mark Fashehccd979b2005-12-15 14:31:24 -08001248 spin_lock(&OCFS2_I(inode)->ip_lock);
1249
1250 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
Herbert Poetzlca4d1472006-07-03 17:27:12 -07001251 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
Mark Fasheh15b1e362007-09-07 13:58:15 -07001252 OCFS2_I(inode)->ip_dyn_features = le16_to_cpu(fe->i_dyn_features);
Herbert Poetzlca4d1472006-07-03 17:27:12 -07001253 ocfs2_set_inode_flags(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001254 i_size_write(inode, le64_to_cpu(fe->i_size));
Mark Fasheh198a1ca2008-11-20 17:54:57 -08001255 inode->i_nlink = ocfs2_read_links_count(fe);
Mark Fashehccd979b2005-12-15 14:31:24 -08001256 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);
Mark Fashehccd979b2005-12-15 14:31:24 -08001259 if (S_ISLNK(inode->i_mode) && le32_to_cpu(fe->i_clusters) == 0)
1260 inode->i_blocks = 0;
1261 else
Mark Fasheh8110b072007-03-22 16:53:23 -07001262 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001263 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);
1269
1270 spin_unlock(&OCFS2_I(inode)->ip_lock);
1271}
Joel Beckerb657c952008-11-13 14:49:11 -08001272
1273int ocfs2_validate_inode_block(struct super_block *sb,
1274 struct buffer_head *bh)
1275{
Joel Beckerd6b32bb2008-10-17 14:55:01 -07001276 int rc;
Joel Beckerb657c952008-11-13 14:49:11 -08001277 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
1278
Joel Becker970e4932008-11-13 14:49:19 -08001279 mlog(0, "Validating dinode %llu\n",
1280 (unsigned long long)bh->b_blocknr);
1281
Joel Beckerb657c952008-11-13 14:49:11 -08001282 BUG_ON(!buffer_uptodate(bh));
1283
Joel Beckerd6b32bb2008-10-17 14:55:01 -07001284 /*
1285 * If the ecc fails, we return the error but otherwise
1286 * leave the filesystem running. We know any error is
1287 * local to this block.
1288 */
1289 rc = ocfs2_validate_meta_ecc(sb, bh->b_data, &di->i_check);
Joel Becker13723d02008-10-17 19:25:01 -07001290 if (rc) {
1291 mlog(ML_ERROR, "Checksum failed for dinode %llu\n",
1292 (unsigned long long)bh->b_blocknr);
Joel Beckerd6b32bb2008-10-17 14:55:01 -07001293 goto bail;
Joel Becker13723d02008-10-17 19:25:01 -07001294 }
Joel Beckerd6b32bb2008-10-17 14:55:01 -07001295
1296 /*
1297 * Errors after here are fatal.
1298 */
1299
1300 rc = -EINVAL;
1301
Joel Beckerb657c952008-11-13 14:49:11 -08001302 if (!OCFS2_IS_VALID_DINODE(di)) {
1303 ocfs2_error(sb, "Invalid dinode #%llu: signature = %.*s\n",
1304 (unsigned long long)bh->b_blocknr, 7,
1305 di->i_signature);
1306 goto bail;
1307 }
1308
1309 if (le64_to_cpu(di->i_blkno) != bh->b_blocknr) {
1310 ocfs2_error(sb, "Invalid dinode #%llu: i_blkno is %llu\n",
1311 (unsigned long long)bh->b_blocknr,
1312 (unsigned long long)le64_to_cpu(di->i_blkno));
1313 goto bail;
1314 }
1315
1316 if (!(di->i_flags & cpu_to_le32(OCFS2_VALID_FL))) {
1317 ocfs2_error(sb,
1318 "Invalid dinode #%llu: OCFS2_VALID_FL not set\n",
1319 (unsigned long long)bh->b_blocknr);
1320 goto bail;
1321 }
1322
1323 if (le32_to_cpu(di->i_fs_generation) !=
1324 OCFS2_SB(sb)->fs_generation) {
1325 ocfs2_error(sb,
1326 "Invalid dinode #%llu: fs_generation is %u\n",
1327 (unsigned long long)bh->b_blocknr,
1328 le32_to_cpu(di->i_fs_generation));
1329 goto bail;
1330 }
1331
1332 rc = 0;
1333
1334bail:
1335 return rc;
1336}
1337
1338int ocfs2_read_inode_block_full(struct inode *inode, struct buffer_head **bh,
1339 int flags)
1340{
1341 int rc;
1342 struct buffer_head *tmp = *bh;
1343
1344 rc = ocfs2_read_blocks(inode, OCFS2_I(inode)->ip_blkno, 1, &tmp,
Joel Becker970e4932008-11-13 14:49:19 -08001345 flags, ocfs2_validate_inode_block);
Joel Beckerb657c952008-11-13 14:49:11 -08001346
1347 /* If ocfs2_read_blocks() got us a new bh, pass it up. */
Joel Becker970e4932008-11-13 14:49:19 -08001348 if (!rc && !*bh)
Joel Beckerb657c952008-11-13 14:49:11 -08001349 *bh = tmp;
1350
Joel Beckerb657c952008-11-13 14:49:11 -08001351 return rc;
1352}
1353
1354int ocfs2_read_inode_block(struct inode *inode, struct buffer_head **bh)
1355{
1356 return ocfs2_read_inode_block_full(inode, bh, 0);
1357}