blob: 86cf073996b567e5962e30c34f68906cbbb96847 [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>
Mark Fashehccd979b2005-12-15 14:31:24 -080031
32#include <asm/byteorder.h>
33
34#define MLOG_MASK_PREFIX ML_INODE
35#include <cluster/masklog.h>
36
37#include "ocfs2.h"
38
39#include "alloc.h"
40#include "dlmglue.h"
41#include "extent_map.h"
42#include "file.h"
Mark Fashehb4df6ed2006-02-22 17:35:08 -080043#include "heartbeat.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080044#include "inode.h"
45#include "journal.h"
46#include "namei.h"
47#include "suballoc.h"
48#include "super.h"
49#include "symlink.h"
50#include "sysfile.h"
51#include "uptodate.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080052
53#include "buffer_head_io.h"
54
Mark Fashehccd979b2005-12-15 14:31:24 -080055struct ocfs2_find_inode_args
56{
57 u64 fi_blkno;
58 unsigned long fi_ino;
59 unsigned int fi_flags;
60};
61
62static int ocfs2_read_locked_inode(struct inode *inode,
63 struct ocfs2_find_inode_args *args);
64static int ocfs2_init_locked_inode(struct inode *inode, void *opaque);
65static int ocfs2_find_actor(struct inode *inode, void *opaque);
66static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
67 struct inode *inode,
68 struct buffer_head *fe_bh);
69
Herbert Poetzlca4d1472006-07-03 17:27:12 -070070void ocfs2_set_inode_flags(struct inode *inode)
71{
72 unsigned int flags = OCFS2_I(inode)->ip_attr;
73
74 inode->i_flags &= ~(S_IMMUTABLE |
75 S_SYNC | S_APPEND | S_NOATIME | S_DIRSYNC);
76
77 if (flags & OCFS2_IMMUTABLE_FL)
78 inode->i_flags |= S_IMMUTABLE;
79
80 if (flags & OCFS2_SYNC_FL)
81 inode->i_flags |= S_SYNC;
82 if (flags & OCFS2_APPEND_FL)
83 inode->i_flags |= S_APPEND;
84 if (flags & OCFS2_NOATIME_FL)
85 inode->i_flags |= S_NOATIME;
86 if (flags & OCFS2_DIRSYNC_FL)
87 inode->i_flags |= S_DIRSYNC;
88}
89
Jan Kara6e4b0d52007-04-27 11:08:01 -070090/* Propagate flags from i_flags to OCFS2_I(inode)->ip_attr */
91void ocfs2_get_inode_flags(struct ocfs2_inode_info *oi)
92{
93 unsigned int flags = oi->vfs_inode.i_flags;
94
95 oi->ip_attr &= ~(OCFS2_SYNC_FL|OCFS2_APPEND_FL|
96 OCFS2_IMMUTABLE_FL|OCFS2_NOATIME_FL|OCFS2_DIRSYNC_FL);
97 if (flags & S_SYNC)
98 oi->ip_attr |= OCFS2_SYNC_FL;
99 if (flags & S_APPEND)
100 oi->ip_attr |= OCFS2_APPEND_FL;
101 if (flags & S_IMMUTABLE)
102 oi->ip_attr |= OCFS2_IMMUTABLE_FL;
103 if (flags & S_NOATIME)
104 oi->ip_attr |= OCFS2_NOATIME_FL;
105 if (flags & S_DIRSYNC)
106 oi->ip_attr |= OCFS2_DIRSYNC_FL;
107}
108
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700109struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 blkno, int flags)
Mark Fashehccd979b2005-12-15 14:31:24 -0800110{
111 struct inode *inode = NULL;
112 struct super_block *sb = osb->sb;
113 struct ocfs2_find_inode_args args;
114
Mark Fashehb06970532006-03-03 10:24:33 -0800115 mlog_entry("(blkno = %llu)\n", (unsigned long long)blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800116
117 /* Ok. By now we've either got the offsets passed to us by the
118 * caller, or we just pulled them off the bh. Lets do some
119 * sanity checks to make sure they're OK. */
120 if (blkno == 0) {
121 inode = ERR_PTR(-EINVAL);
122 mlog_errno(PTR_ERR(inode));
123 goto bail;
124 }
125
126 args.fi_blkno = blkno;
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700127 args.fi_flags = flags;
Mark Fashehccd979b2005-12-15 14:31:24 -0800128 args.fi_ino = ino_from_blkno(sb, blkno);
129
130 inode = iget5_locked(sb, args.fi_ino, ocfs2_find_actor,
131 ocfs2_init_locked_inode, &args);
132 /* inode was *not* in the inode cache. 2.6.x requires
133 * us to do our own read_inode call and unlock it
134 * afterwards. */
135 if (inode && inode->i_state & I_NEW) {
136 mlog(0, "Inode was not in inode cache, reading it.\n");
137 ocfs2_read_locked_inode(inode, &args);
138 unlock_new_inode(inode);
139 }
140 if (inode == NULL) {
141 inode = ERR_PTR(-ENOMEM);
142 mlog_errno(PTR_ERR(inode));
143 goto bail;
144 }
145 if (is_bad_inode(inode)) {
146 iput(inode);
147 inode = ERR_PTR(-ESTALE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800148 goto bail;
149 }
150
151bail:
152 if (!IS_ERR(inode)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800153 mlog(0, "returning inode with number %llu\n",
154 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800155 mlog_exit_ptr(inode);
Mark Fasheh6a1bd4a2007-01-03 17:06:59 -0800156 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800157
158 return inode;
159}
160
161
162/*
163 * here's how inodes get read from disk:
164 * iget5_locked -> find_actor -> OCFS2_FIND_ACTOR
165 * found? : return the in-memory inode
166 * not found? : get_new_inode -> OCFS2_INIT_LOCKED_INODE
167 */
168
169static int ocfs2_find_actor(struct inode *inode, void *opaque)
170{
171 struct ocfs2_find_inode_args *args = NULL;
172 struct ocfs2_inode_info *oi = OCFS2_I(inode);
173 int ret = 0;
174
175 mlog_entry("(0x%p, %lu, 0x%p)\n", inode, inode->i_ino, opaque);
176
177 args = opaque;
178
179 mlog_bug_on_msg(!inode, "No inode in find actor!\n");
180
181 if (oi->ip_blkno != args->fi_blkno)
182 goto bail;
183
Mark Fashehccd979b2005-12-15 14:31:24 -0800184 ret = 1;
185bail:
186 mlog_exit(ret);
187 return ret;
188}
189
190/*
191 * initialize the new inode, but don't do anything that would cause
192 * us to sleep.
193 * return 0 on success, 1 on failure
194 */
195static int ocfs2_init_locked_inode(struct inode *inode, void *opaque)
196{
197 struct ocfs2_find_inode_args *args = opaque;
198
199 mlog_entry("inode = %p, opaque = %p\n", inode, opaque);
200
201 inode->i_ino = args->fi_ino;
202 OCFS2_I(inode)->ip_blkno = args->fi_blkno;
203
204 mlog_exit(0);
205 return 0;
206}
207
208int ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
209 int create_ino)
210{
211 struct super_block *sb;
212 struct ocfs2_super *osb;
213 int status = -EINVAL;
214
Mark Fashehb06970532006-03-03 10:24:33 -0800215 mlog_entry("(0x%p, size:%llu)\n", inode,
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700216 (unsigned long long)le64_to_cpu(fe->i_size));
Mark Fashehccd979b2005-12-15 14:31:24 -0800217
218 sb = inode->i_sb;
219 osb = OCFS2_SB(sb);
220
221 /* this means that read_inode cannot create a superblock inode
222 * today. change if needed. */
223 if (!OCFS2_IS_VALID_DINODE(fe) ||
224 !(fe->i_flags & cpu_to_le32(OCFS2_VALID_FL))) {
Mark Fasheh6a1bd4a2007-01-03 17:06:59 -0800225 mlog(0, "Invalid dinode: i_ino=%lu, i_blkno=%llu, "
Mark Fashehccd979b2005-12-15 14:31:24 -0800226 "signature = %.*s, flags = 0x%x\n",
Mark Fashehb06970532006-03-03 10:24:33 -0800227 inode->i_ino,
228 (unsigned long long)le64_to_cpu(fe->i_blkno), 7,
Mark Fashehccd979b2005-12-15 14:31:24 -0800229 fe->i_signature, le32_to_cpu(fe->i_flags));
230 goto bail;
231 }
232
233 if (le32_to_cpu(fe->i_fs_generation) != osb->fs_generation) {
234 mlog(ML_ERROR, "file entry generation does not match "
235 "superblock! osb->fs_generation=%x, "
236 "fe->i_fs_generation=%x\n",
237 osb->fs_generation, le32_to_cpu(fe->i_fs_generation));
238 goto bail;
239 }
240
Mark Fasheh8110b072007-03-22 16:53:23 -0700241 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
242 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
Mark Fasheh15b1e362007-09-07 13:58:15 -0700243 OCFS2_I(inode)->ip_dyn_features = le16_to_cpu(fe->i_dyn_features);
Mark Fasheh8110b072007-03-22 16:53:23 -0700244
Mark Fashehccd979b2005-12-15 14:31:24 -0800245 inode->i_version = 1;
246 inode->i_generation = le32_to_cpu(fe->i_generation);
247 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
248 inode->i_mode = le16_to_cpu(fe->i_mode);
249 inode->i_uid = le32_to_cpu(fe->i_uid);
250 inode->i_gid = le32_to_cpu(fe->i_gid);
Mark Fashehccd979b2005-12-15 14:31:24 -0800251
252 /* Fast symlinks will have i_size but no allocated clusters. */
253 if (S_ISLNK(inode->i_mode) && !fe->i_clusters)
254 inode->i_blocks = 0;
255 else
Mark Fasheh8110b072007-03-22 16:53:23 -0700256 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800257 inode->i_mapping->a_ops = &ocfs2_aops;
Mark Fashehccd979b2005-12-15 14:31:24 -0800258 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
259 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
260 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
261 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
262 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
263 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
264
265 if (OCFS2_I(inode)->ip_blkno != le64_to_cpu(fe->i_blkno))
266 mlog(ML_ERROR,
Mark Fashehb06970532006-03-03 10:24:33 -0800267 "ip_blkno %llu != i_blkno %llu!\n",
268 (unsigned long long)OCFS2_I(inode)->ip_blkno,
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700269 (unsigned long long)le64_to_cpu(fe->i_blkno));
Mark Fashehccd979b2005-12-15 14:31:24 -0800270
Mark Fashehccd979b2005-12-15 14:31:24 -0800271 inode->i_nlink = le16_to_cpu(fe->i_links_count);
272
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700273 if (fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL))
274 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SYSTEM_FILE;
275
Mark Fashehccd979b2005-12-15 14:31:24 -0800276 if (fe->i_flags & cpu_to_le32(OCFS2_LOCAL_ALLOC_FL)) {
277 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
278 mlog(0, "local alloc inode: i_ino=%lu\n", inode->i_ino);
279 } else if (fe->i_flags & cpu_to_le32(OCFS2_BITMAP_FL)) {
280 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
281 } else if (fe->i_flags & cpu_to_le32(OCFS2_SUPER_BLOCK_FL)) {
282 mlog(0, "superblock inode: i_ino=%lu\n", inode->i_ino);
283 /* we can't actually hit this as read_inode can't
284 * handle superblocks today ;-) */
285 BUG();
286 }
287
288 switch (inode->i_mode & S_IFMT) {
289 case S_IFREG:
290 inode->i_fop = &ocfs2_fops;
291 inode->i_op = &ocfs2_file_iops;
292 i_size_write(inode, le64_to_cpu(fe->i_size));
293 break;
294 case S_IFDIR:
295 inode->i_op = &ocfs2_dir_iops;
296 inode->i_fop = &ocfs2_dops;
297 i_size_write(inode, le64_to_cpu(fe->i_size));
298 break;
299 case S_IFLNK:
300 if (ocfs2_inode_is_fast_symlink(inode))
301 inode->i_op = &ocfs2_fast_symlink_inode_operations;
302 else
303 inode->i_op = &ocfs2_symlink_inode_operations;
304 i_size_write(inode, le64_to_cpu(fe->i_size));
305 break;
306 default:
307 inode->i_op = &ocfs2_special_file_iops;
308 init_special_inode(inode, inode->i_mode,
309 inode->i_rdev);
310 break;
311 }
312
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700313 if (create_ino) {
314 inode->i_ino = ino_from_blkno(inode->i_sb,
315 le64_to_cpu(fe->i_blkno));
316
317 /*
318 * If we ever want to create system files from kernel,
319 * the generation argument to
320 * ocfs2_inode_lock_res_init() will have to change.
321 */
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700322 BUG_ON(le32_to_cpu(fe->i_flags) & OCFS2_SYSTEM_FL);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700323
324 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_meta_lockres,
325 OCFS2_LOCK_TYPE_META, 0, inode);
Tiger Yang50008632007-03-20 16:01:38 -0700326
327 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_open_lockres,
328 OCFS2_LOCK_TYPE_OPEN, 0, inode);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700329 }
330
Mark Fashehccd979b2005-12-15 14:31:24 -0800331 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_rw_lockres,
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700332 OCFS2_LOCK_TYPE_RW, inode->i_generation,
333 inode);
334
Mark Fashehccd979b2005-12-15 14:31:24 -0800335 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_data_lockres,
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700336 OCFS2_LOCK_TYPE_DATA, inode->i_generation,
337 inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800338
Herbert Poetzlca4d1472006-07-03 17:27:12 -0700339 ocfs2_set_inode_flags(inode);
Herbert Poetzlca4d1472006-07-03 17:27:12 -0700340
Mark Fashehccd979b2005-12-15 14:31:24 -0800341 status = 0;
342bail:
343 mlog_exit(status);
344 return status;
345}
346
347static int ocfs2_read_locked_inode(struct inode *inode,
348 struct ocfs2_find_inode_args *args)
349{
350 struct super_block *sb;
351 struct ocfs2_super *osb;
352 struct ocfs2_dinode *fe;
353 struct buffer_head *bh = NULL;
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700354 int status, can_lock;
355 u32 generation = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800356
357 mlog_entry("(0x%p, 0x%p)\n", inode, args);
358
359 status = -EINVAL;
360 if (inode == NULL || inode->i_sb == NULL) {
361 mlog(ML_ERROR, "bad inode\n");
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700362 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800363 }
364 sb = inode->i_sb;
365 osb = OCFS2_SB(sb);
366
367 if (!args) {
368 mlog(ML_ERROR, "bad inode args\n");
369 make_bad_inode(inode);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700370 return status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800371 }
372
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700373 /*
374 * To improve performance of cold-cache inode stats, we take
375 * the cluster lock here if possible.
376 *
377 * Generally, OCFS2 never trusts the contents of an inode
378 * unless it's holding a cluster lock, so taking it here isn't
379 * a correctness issue as much as it is a performance
380 * improvement.
381 *
382 * There are three times when taking the lock is not a good idea:
383 *
384 * 1) During startup, before we have initialized the DLM.
385 *
386 * 2) If we are reading certain system files which never get
387 * cluster locks (local alloc, truncate log).
388 *
389 * 3) If the process doing the iget() is responsible for
390 * orphan dir recovery. We're holding the orphan dir lock and
391 * can get into a deadlock with another process on another
392 * node in ->delete_inode().
393 *
394 * #1 and #2 can be simply solved by never taking the lock
395 * here for system files (which are the only type we read
396 * during mount). It's a heavier approach, but our main
397 * concern is user-accesible files anyway.
398 *
399 * #3 works itself out because we'll eventually take the
400 * cluster lock before trusting anything anyway.
401 */
402 can_lock = !(args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
Tiger Yang50008632007-03-20 16:01:38 -0700403 && !(args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY)
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800404 && !ocfs2_mount_local(osb);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700405
406 /*
407 * To maintain backwards compatibility with older versions of
408 * ocfs2-tools, we still store the generation value for system
409 * files. The only ones that actually matter to userspace are
410 * the journals, but it's easier and inexpensive to just flag
411 * all system files similarly.
412 */
413 if (args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
414 generation = osb->fs_generation;
415
416 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_meta_lockres,
417 OCFS2_LOCK_TYPE_META,
418 generation, inode);
419
Tiger Yang50008632007-03-20 16:01:38 -0700420 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_open_lockres,
421 OCFS2_LOCK_TYPE_OPEN,
422 0, inode);
423
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700424 if (can_lock) {
Tiger Yang50008632007-03-20 16:01:38 -0700425 status = ocfs2_open_lock(inode);
426 if (status) {
427 make_bad_inode(inode);
428 mlog_errno(status);
429 return status;
430 }
Mark Fasheh4bcec182006-10-09 16:02:40 -0700431 status = ocfs2_meta_lock(inode, NULL, 0);
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700432 if (status) {
433 make_bad_inode(inode);
434 mlog_errno(status);
435 return status;
436 }
437 }
438
Tiger Yang50008632007-03-20 16:01:38 -0700439 if (args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY) {
440 status = ocfs2_try_open_lock(inode, 0);
441 if (status) {
442 make_bad_inode(inode);
443 return status;
444 }
445 }
446
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700447 status = ocfs2_read_block(osb, args->fi_blkno, &bh, 0,
448 can_lock ? inode : NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -0800449 if (status < 0) {
450 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800451 goto bail;
452 }
453
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700454 status = -EINVAL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800455 fe = (struct ocfs2_dinode *) bh->b_data;
456 if (!OCFS2_IS_VALID_DINODE(fe)) {
Mark Fasheha46043e02007-11-19 18:40:16 -0800457 mlog(0, "Invalid dinode #%llu: signature = %.*s\n",
458 (unsigned long long)args->fi_blkno, 7,
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700459 fe->i_signature);
Mark Fashehccd979b2005-12-15 14:31:24 -0800460 goto bail;
461 }
462
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700463 /*
464 * This is a code bug. Right now the caller needs to
465 * understand whether it is asking for a system file inode or
466 * not so the proper lock names can be built.
467 */
468 mlog_bug_on_msg(!!(fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) !=
469 !!(args->fi_flags & OCFS2_FI_FLAG_SYSFILE),
470 "Inode %llu: system file state is ambigous\n",
471 (unsigned long long)args->fi_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800472
473 if (S_ISCHR(le16_to_cpu(fe->i_mode)) ||
474 S_ISBLK(le16_to_cpu(fe->i_mode)))
475 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
476
Mark Fasheh6a1bd4a2007-01-03 17:06:59 -0800477 if (ocfs2_populate_inode(inode, fe, 0) < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -0800478 goto bail;
Mark Fashehccd979b2005-12-15 14:31:24 -0800479
480 BUG_ON(args->fi_blkno != le64_to_cpu(fe->i_blkno));
481
Mark Fashehccd979b2005-12-15 14:31:24 -0800482 status = 0;
483
484bail:
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700485 if (can_lock)
486 ocfs2_meta_unlock(inode, 0);
487
488 if (status < 0)
489 make_bad_inode(inode);
490
Mark Fashehccd979b2005-12-15 14:31:24 -0800491 if (args && bh)
492 brelse(bh);
493
494 mlog_exit(status);
495 return status;
496}
497
498void ocfs2_sync_blockdev(struct super_block *sb)
499{
500 sync_blockdev(sb->s_bdev);
501}
502
503static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
504 struct inode *inode,
505 struct buffer_head *fe_bh)
506{
507 int status = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -0800508 struct ocfs2_truncate_context *tc = NULL;
509 struct ocfs2_dinode *fe;
Mark Fasheh60b11392007-02-16 11:46:50 -0800510 handle_t *handle = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800511
512 mlog_entry_void();
513
514 fe = (struct ocfs2_dinode *) fe_bh->b_data;
515
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700516 /*
517 * This check will also skip truncate of inodes with inline
518 * data and fast symlinks.
519 */
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800520 if (fe->i_clusters) {
Mark Fasheh60b11392007-02-16 11:46:50 -0800521 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
522 if (IS_ERR(handle)) {
523 status = PTR_ERR(handle);
524 mlog_errno(status);
525 goto out;
526 }
527
528 status = ocfs2_journal_access(handle, inode, fe_bh,
529 OCFS2_JOURNAL_ACCESS_WRITE);
530 if (status < 0) {
531 mlog_errno(status);
532 goto out;
533 }
534
535 i_size_write(inode, 0);
536
537 status = ocfs2_mark_inode_dirty(handle, inode, fe_bh);
538 if (status < 0) {
539 mlog_errno(status);
540 goto out;
541 }
542
543 ocfs2_commit_trans(osb, handle);
544 handle = NULL;
545
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800546 status = ocfs2_prepare_truncate(osb, inode, fe_bh, &tc);
547 if (status < 0) {
548 mlog_errno(status);
549 goto out;
550 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800551
Mark Fasheh3a0782d2007-01-17 12:53:31 -0800552 status = ocfs2_commit_truncate(osb, inode, fe_bh, tc);
553 if (status < 0) {
554 mlog_errno(status);
555 goto out;
556 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800557 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800558
Mark Fasheh60b11392007-02-16 11:46:50 -0800559out:
560 if (handle)
561 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800562 mlog_exit(status);
563 return status;
564}
565
566static int ocfs2_remove_inode(struct inode *inode,
567 struct buffer_head *di_bh,
568 struct inode *orphan_dir_inode,
569 struct buffer_head *orphan_dir_bh)
570{
571 int status;
572 struct inode *inode_alloc_inode = NULL;
573 struct buffer_head *inode_alloc_bh = NULL;
Mark Fasheh1fabe142006-10-09 18:11:45 -0700574 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800575 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
576 struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
577
578 inode_alloc_inode =
579 ocfs2_get_system_file_inode(osb, INODE_ALLOC_SYSTEM_INODE,
580 le16_to_cpu(di->i_suballoc_slot));
581 if (!inode_alloc_inode) {
582 status = -EEXIST;
583 mlog_errno(status);
584 goto bail;
585 }
586
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800587 mutex_lock(&inode_alloc_inode->i_mutex);
Mark Fasheh4bcec182006-10-09 16:02:40 -0700588 status = ocfs2_meta_lock(inode_alloc_inode, &inode_alloc_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800589 if (status < 0) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800590 mutex_unlock(&inode_alloc_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800591
592 mlog_errno(status);
593 goto bail;
594 }
595
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700596 handle = ocfs2_start_trans(osb, OCFS2_DELETE_INODE_CREDITS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800597 if (IS_ERR(handle)) {
598 status = PTR_ERR(handle);
599 mlog_errno(status);
600 goto bail_unlock;
601 }
602
603 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
604 orphan_dir_bh);
605 if (status < 0) {
606 mlog_errno(status);
607 goto bail_commit;
608 }
609
610 /* set the inodes dtime */
611 status = ocfs2_journal_access(handle, inode, di_bh,
612 OCFS2_JOURNAL_ACCESS_WRITE);
613 if (status < 0) {
614 mlog_errno(status);
615 goto bail_commit;
616 }
617
618 di->i_dtime = cpu_to_le64(CURRENT_TIME.tv_sec);
619 le32_and_cpu(&di->i_flags, ~(OCFS2_VALID_FL | OCFS2_ORPHANED_FL));
620
621 status = ocfs2_journal_dirty(handle, di_bh);
622 if (status < 0) {
623 mlog_errno(status);
624 goto bail_commit;
625 }
626
627 ocfs2_remove_from_cache(inode, di_bh);
628
629 status = ocfs2_free_dinode(handle, inode_alloc_inode,
630 inode_alloc_bh, di);
631 if (status < 0)
632 mlog_errno(status);
633
634bail_commit:
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700635 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800636bail_unlock:
637 ocfs2_meta_unlock(inode_alloc_inode, 1);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800638 mutex_unlock(&inode_alloc_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800639 brelse(inode_alloc_bh);
640bail:
641 iput(inode_alloc_inode);
642
643 return status;
644}
645
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800646/*
647 * Serialize with orphan dir recovery. If the process doing
648 * recovery on this orphan dir does an iget() with the dir
649 * i_mutex held, we'll deadlock here. Instead we detect this
650 * and exit early - recovery will wipe this inode for us.
651 */
652static int ocfs2_check_orphan_recovery_state(struct ocfs2_super *osb,
653 int slot)
654{
655 int ret = 0;
656
657 spin_lock(&osb->osb_lock);
658 if (ocfs2_node_map_test_bit(osb, &osb->osb_recovering_orphan_dirs, slot)) {
659 mlog(0, "Recovery is happening on orphan dir %d, will skip "
660 "this inode\n", slot);
661 ret = -EDEADLK;
662 goto out;
663 }
664 /* This signals to the orphan recovery process that it should
665 * wait for us to handle the wipe. */
666 osb->osb_orphan_wipes[slot]++;
667out:
668 spin_unlock(&osb->osb_lock);
669 return ret;
670}
671
672static void ocfs2_signal_wipe_completion(struct ocfs2_super *osb,
673 int slot)
674{
675 spin_lock(&osb->osb_lock);
676 osb->osb_orphan_wipes[slot]--;
677 spin_unlock(&osb->osb_lock);
678
679 wake_up(&osb->osb_wipe_event);
680}
681
Mark Fashehccd979b2005-12-15 14:31:24 -0800682static int ocfs2_wipe_inode(struct inode *inode,
683 struct buffer_head *di_bh)
684{
685 int status, orphaned_slot;
686 struct inode *orphan_dir_inode = NULL;
687 struct buffer_head *orphan_dir_bh = NULL;
688 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Tiger Yang50008632007-03-20 16:01:38 -0700689 struct ocfs2_dinode *di;
Mark Fashehccd979b2005-12-15 14:31:24 -0800690
Tiger Yang50008632007-03-20 16:01:38 -0700691 di = (struct ocfs2_dinode *) di_bh->b_data;
692 orphaned_slot = le16_to_cpu(di->i_orphaned_slot);
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800693
694 status = ocfs2_check_orphan_recovery_state(osb, orphaned_slot);
695 if (status)
696 return status;
697
Mark Fashehccd979b2005-12-15 14:31:24 -0800698 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
699 ORPHAN_DIR_SYSTEM_INODE,
700 orphaned_slot);
701 if (!orphan_dir_inode) {
702 status = -EEXIST;
703 mlog_errno(status);
704 goto bail;
705 }
706
707 /* Lock the orphan dir. The lock will be held for the entire
708 * delete_inode operation. We do this now to avoid races with
709 * recovery completion on other nodes. */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800710 mutex_lock(&orphan_dir_inode->i_mutex);
Mark Fasheh4bcec182006-10-09 16:02:40 -0700711 status = ocfs2_meta_lock(orphan_dir_inode, &orphan_dir_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800712 if (status < 0) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800713 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800714
715 mlog_errno(status);
716 goto bail;
717 }
718
719 /* we do this while holding the orphan dir lock because we
Mark Fasheh34d024f2007-09-24 15:56:19 -0700720 * don't want recovery being run from another node to try an
721 * inode delete underneath us -- this will result in two nodes
Mark Fashehccd979b2005-12-15 14:31:24 -0800722 * truncating the same file! */
723 status = ocfs2_truncate_for_delete(osb, inode, di_bh);
724 if (status < 0) {
725 mlog_errno(status);
726 goto bail_unlock_dir;
727 }
728
729 status = ocfs2_remove_inode(inode, di_bh, orphan_dir_inode,
730 orphan_dir_bh);
731 if (status < 0)
732 mlog_errno(status);
733
734bail_unlock_dir:
735 ocfs2_meta_unlock(orphan_dir_inode, 1);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800736 mutex_unlock(&orphan_dir_inode->i_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -0800737 brelse(orphan_dir_bh);
738bail:
739 iput(orphan_dir_inode);
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800740 ocfs2_signal_wipe_completion(osb, orphaned_slot);
Mark Fashehccd979b2005-12-15 14:31:24 -0800741
742 return status;
743}
744
745/* There is a series of simple checks that should be done before a
Mark Fasheh34d024f2007-09-24 15:56:19 -0700746 * trylock is even considered. Encapsulate those in this function. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800747static int ocfs2_inode_is_valid_to_delete(struct inode *inode)
748{
749 int ret = 0;
750 struct ocfs2_inode_info *oi = OCFS2_I(inode);
751 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
752
753 /* We shouldn't be getting here for the root directory
754 * inode.. */
755 if (inode == osb->root_inode) {
756 mlog(ML_ERROR, "Skipping delete of root inode.\n");
757 goto bail;
758 }
759
Mark Fasheh34d024f2007-09-24 15:56:19 -0700760 /* If we're coming from downconvert_thread we can't go into our own
Mark Fashehccd979b2005-12-15 14:31:24 -0800761 * voting [hello, deadlock city!], so unforuntately we just
762 * have to skip deleting this guy. That's OK though because
763 * the node who's doing the actual deleting should handle it
764 * anyway. */
Mark Fasheh34d024f2007-09-24 15:56:19 -0700765 if (current == osb->dc_task) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800766 mlog(0, "Skipping delete of %lu because we're currently "
Mark Fasheh34d024f2007-09-24 15:56:19 -0700767 "in downconvert\n", inode->i_ino);
Mark Fashehccd979b2005-12-15 14:31:24 -0800768 goto bail;
769 }
770
771 spin_lock(&oi->ip_lock);
772 /* OCFS2 *never* deletes system files. This should technically
773 * never get here as system file inodes should always have a
774 * positive link count. */
775 if (oi->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
Mark Fashehb06970532006-03-03 10:24:33 -0800776 mlog(ML_ERROR, "Skipping delete of system file %llu\n",
777 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800778 goto bail_unlock;
779 }
780
Mark Fasheh34d024f2007-09-24 15:56:19 -0700781 /* If we have allowd wipe of this inode for another node, it
782 * will be marked here so we can safely skip it. Recovery will
783 * cleanup any inodes we might inadvertantly skip here. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800784 if (oi->ip_flags & OCFS2_INODE_SKIP_DELETE) {
785 mlog(0, "Skipping delete of %lu because another node "
786 "has done this for us.\n", inode->i_ino);
787 goto bail_unlock;
788 }
789
790 ret = 1;
791bail_unlock:
792 spin_unlock(&oi->ip_lock);
793bail:
794 return ret;
795}
796
797/* Query the cluster to determine whether we should wipe an inode from
798 * disk or not.
799 *
800 * Requires the inode to have the cluster lock. */
801static int ocfs2_query_inode_wipe(struct inode *inode,
802 struct buffer_head *di_bh,
803 int *wipe)
804{
805 int status = 0;
806 struct ocfs2_inode_info *oi = OCFS2_I(inode);
807 struct ocfs2_dinode *di;
808
809 *wipe = 0;
810
811 /* While we were waiting for the cluster lock in
812 * ocfs2_delete_inode, another node might have asked to delete
813 * the inode. Recheck our flags to catch this. */
814 if (!ocfs2_inode_is_valid_to_delete(inode)) {
Mark Fashehb06970532006-03-03 10:24:33 -0800815 mlog(0, "Skipping delete of %llu because flags changed\n",
816 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800817 goto bail;
818 }
819
820 /* Now that we have an up to date inode, we can double check
821 * the link count. */
822 if (inode->i_nlink) {
Mark Fashehb06970532006-03-03 10:24:33 -0800823 mlog(0, "Skipping delete of %llu because nlink = %u\n",
824 (unsigned long long)oi->ip_blkno, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -0800825 goto bail;
826 }
827
828 /* Do some basic inode verification... */
829 di = (struct ocfs2_dinode *) di_bh->b_data;
830 if (!(di->i_flags & cpu_to_le32(OCFS2_ORPHANED_FL))) {
831 /* for lack of a better error? */
832 status = -EEXIST;
833 mlog(ML_ERROR,
Mark Fashehb06970532006-03-03 10:24:33 -0800834 "Inode %llu (on-disk %llu) not orphaned! "
Mark Fashehccd979b2005-12-15 14:31:24 -0800835 "Disk flags 0x%x, inode flags 0x%x\n",
Mark Fashehb06970532006-03-03 10:24:33 -0800836 (unsigned long long)oi->ip_blkno,
Mark Fasheh1ca1a112007-04-27 16:01:25 -0700837 (unsigned long long)le64_to_cpu(di->i_blkno),
838 le32_to_cpu(di->i_flags), oi->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800839 goto bail;
840 }
841
842 /* has someone already deleted us?! baaad... */
843 if (di->i_dtime) {
844 status = -EEXIST;
845 mlog_errno(status);
846 goto bail;
847 }
848
Mark Fasheh6f16bf62007-03-20 17:17:54 -0700849 /*
850 * This is how ocfs2 determines whether an inode is still live
851 * within the cluster. Every node takes a shared read lock on
852 * the inode open lock in ocfs2_read_locked_inode(). When we
853 * get to ->delete_inode(), each node tries to convert it's
854 * lock to an exclusive. Trylocks are serialized by the inode
855 * meta data lock. If the upconvert suceeds, we know the inode
856 * is no longer live and can be deleted.
857 *
858 * Though we call this with the meta data lock held, the
859 * trylock keeps us from ABBA deadlock.
860 */
861 status = ocfs2_try_open_lock(inode, 1);
Tiger Yang50008632007-03-20 16:01:38 -0700862 if (status == -EAGAIN) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800863 status = 0;
Joe Perches27592362007-11-19 17:53:34 -0800864 mlog(0, "Skipping delete of %llu because it is in use on "
Mark Fashehb06970532006-03-03 10:24:33 -0800865 "other nodes\n", (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800866 goto bail;
867 }
868 if (status < 0) {
869 mlog_errno(status);
870 goto bail;
871 }
872
Tiger Yang50008632007-03-20 16:01:38 -0700873 *wipe = 1;
874 mlog(0, "Inode %llu is ok to wipe from orphan dir %u\n",
875 (unsigned long long)oi->ip_blkno,
876 le16_to_cpu(di->i_orphaned_slot));
Mark Fashehccd979b2005-12-15 14:31:24 -0800877
878bail:
879 return status;
880}
881
882/* Support function for ocfs2_delete_inode. Will help us keep the
883 * inode data in a consistent state for clear_inode. Always truncates
884 * pages, optionally sync's them first. */
885static void ocfs2_cleanup_delete_inode(struct inode *inode,
886 int sync_data)
887{
Mark Fashehb06970532006-03-03 10:24:33 -0800888 mlog(0, "Cleanup inode %llu, sync = %d\n",
889 (unsigned long long)OCFS2_I(inode)->ip_blkno, sync_data);
Mark Fashehccd979b2005-12-15 14:31:24 -0800890 if (sync_data)
891 write_inode_now(inode, 1);
892 truncate_inode_pages(&inode->i_data, 0);
893}
894
895void ocfs2_delete_inode(struct inode *inode)
896{
897 int wipe, status;
898 sigset_t blocked, oldset;
899 struct buffer_head *di_bh = NULL;
900
901 mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino);
902
903 if (is_bad_inode(inode)) {
904 mlog(0, "Skipping delete of bad inode\n");
905 goto bail;
906 }
907
908 if (!ocfs2_inode_is_valid_to_delete(inode)) {
909 /* It's probably not necessary to truncate_inode_pages
910 * here but we do it for safety anyway (it will most
911 * likely be a no-op anyway) */
912 ocfs2_cleanup_delete_inode(inode, 0);
913 goto bail;
914 }
915
916 /* We want to block signals in delete_inode as the lock and
917 * messaging paths may return us -ERESTARTSYS. Which would
918 * cause us to exit early, resulting in inodes being orphaned
919 * forever. */
920 sigfillset(&blocked);
921 status = sigprocmask(SIG_BLOCK, &blocked, &oldset);
922 if (status < 0) {
923 mlog_errno(status);
924 ocfs2_cleanup_delete_inode(inode, 1);
925 goto bail;
926 }
927
928 /* Lock down the inode. This gives us an up to date view of
929 * it's metadata (for verification), and allows us to
Mark Fasheh34d024f2007-09-24 15:56:19 -0700930 * serialize delete_inode on multiple nodes.
Mark Fashehccd979b2005-12-15 14:31:24 -0800931 *
932 * Even though we might be doing a truncate, we don't take the
933 * allocation lock here as it won't be needed - nobody will
934 * have the file open.
935 */
Mark Fasheh4bcec182006-10-09 16:02:40 -0700936 status = ocfs2_meta_lock(inode, &di_bh, 1);
Mark Fashehccd979b2005-12-15 14:31:24 -0800937 if (status < 0) {
938 if (status != -ENOENT)
939 mlog_errno(status);
940 ocfs2_cleanup_delete_inode(inode, 0);
941 goto bail_unblock;
942 }
943
944 /* Query the cluster. This will be the final decision made
945 * before we go ahead and wipe the inode. */
946 status = ocfs2_query_inode_wipe(inode, di_bh, &wipe);
947 if (!wipe || status < 0) {
Mark Fasheh34d024f2007-09-24 15:56:19 -0700948 /* Error and remote inode busy both mean we won't be
Mark Fashehccd979b2005-12-15 14:31:24 -0800949 * removing the inode, so they take almost the same
950 * path. */
951 if (status < 0)
952 mlog_errno(status);
953
Mark Fasheh34d024f2007-09-24 15:56:19 -0700954 /* Someone in the cluster has disallowed a wipe of
955 * this inode, or it was never completely
956 * orphaned. Write out the pages and exit now. */
Mark Fashehccd979b2005-12-15 14:31:24 -0800957 ocfs2_cleanup_delete_inode(inode, 1);
958 goto bail_unlock_inode;
959 }
960
961 ocfs2_cleanup_delete_inode(inode, 0);
962
963 status = ocfs2_wipe_inode(inode, di_bh);
964 if (status < 0) {
Mark Fashehb4df6ed2006-02-22 17:35:08 -0800965 if (status != -EDEADLK)
966 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800967 goto bail_unlock_inode;
968 }
969
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700970 /*
971 * Mark the inode as successfully deleted.
972 *
973 * This is important for ocfs2_clear_inode() as it will check
974 * this flag and skip any checkpointing work
975 *
976 * ocfs2_stuff_meta_lvb() also uses this flag to invalidate
977 * the LVB for other nodes.
978 */
Mark Fashehccd979b2005-12-15 14:31:24 -0800979 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_DELETED;
980
981bail_unlock_inode:
982 ocfs2_meta_unlock(inode, 1);
983 brelse(di_bh);
984bail_unblock:
985 status = sigprocmask(SIG_SETMASK, &oldset, NULL);
986 if (status < 0)
987 mlog_errno(status);
988bail:
989 clear_inode(inode);
990 mlog_exit_void();
991}
992
993void ocfs2_clear_inode(struct inode *inode)
994{
995 int status;
996 struct ocfs2_inode_info *oi = OCFS2_I(inode);
997
998 mlog_entry_void();
999
1000 if (!inode)
1001 goto bail;
1002
Mark Fashehb06970532006-03-03 10:24:33 -08001003 mlog(0, "Clearing inode: %llu, nlink = %u\n",
1004 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_nlink);
Mark Fashehccd979b2005-12-15 14:31:24 -08001005
1006 mlog_bug_on_msg(OCFS2_SB(inode->i_sb) == NULL,
1007 "Inode=%lu\n", inode->i_ino);
1008
Mark Fasheh34d024f2007-09-24 15:56:19 -07001009 /* To preven remote deletes we hold open lock before, now it
1010 * is time to unlock PR and EX open locks. */
Tiger Yang50008632007-03-20 16:01:38 -07001011 ocfs2_open_unlock(inode);
1012
Mark Fashehccd979b2005-12-15 14:31:24 -08001013 /* Do these before all the other work so that we don't bounce
Mark Fasheh34d024f2007-09-24 15:56:19 -07001014 * the downconvert thread while waiting to destroy the locks. */
Mark Fashehccd979b2005-12-15 14:31:24 -08001015 ocfs2_mark_lockres_freeing(&oi->ip_rw_lockres);
1016 ocfs2_mark_lockres_freeing(&oi->ip_meta_lockres);
1017 ocfs2_mark_lockres_freeing(&oi->ip_data_lockres);
Tiger Yang50008632007-03-20 16:01:38 -07001018 ocfs2_mark_lockres_freeing(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001019
1020 /* We very well may get a clear_inode before all an inodes
1021 * metadata has hit disk. Of course, we can't drop any cluster
1022 * locks until the journal has finished with it. The only
1023 * exception here are successfully wiped inodes - their
1024 * metadata can now be considered to be part of the system
1025 * inodes from which it came. */
1026 if (!(OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED))
1027 ocfs2_checkpoint_inode(inode);
1028
1029 mlog_bug_on_msg(!list_empty(&oi->ip_io_markers),
Mark Fashehb06970532006-03-03 10:24:33 -08001030 "Clear inode of %llu, inode has io markers\n",
1031 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001032
Mark Fasheh83418972007-04-23 18:53:12 -07001033 ocfs2_extent_map_trunc(inode, 0);
1034
Mark Fashehccd979b2005-12-15 14:31:24 -08001035 status = ocfs2_drop_inode_locks(inode);
1036 if (status < 0)
1037 mlog_errno(status);
1038
1039 ocfs2_lock_res_free(&oi->ip_rw_lockres);
1040 ocfs2_lock_res_free(&oi->ip_meta_lockres);
1041 ocfs2_lock_res_free(&oi->ip_data_lockres);
Tiger Yang50008632007-03-20 16:01:38 -07001042 ocfs2_lock_res_free(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001043
1044 ocfs2_metadata_cache_purge(inode);
1045
1046 mlog_bug_on_msg(oi->ip_metadata_cache.ci_num_cached,
Mark Fashehb06970532006-03-03 10:24:33 -08001047 "Clear inode of %llu, inode has %u cache items\n",
1048 (unsigned long long)oi->ip_blkno, oi->ip_metadata_cache.ci_num_cached);
Mark Fashehccd979b2005-12-15 14:31:24 -08001049
1050 mlog_bug_on_msg(!(oi->ip_flags & OCFS2_INODE_CACHE_INLINE),
Mark Fashehb06970532006-03-03 10:24:33 -08001051 "Clear inode of %llu, inode has a bad flag\n",
1052 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001053
1054 mlog_bug_on_msg(spin_is_locked(&oi->ip_lock),
Mark Fashehb06970532006-03-03 10:24:33 -08001055 "Clear inode of %llu, inode is locked\n",
1056 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001057
Mark Fasheh251b6ec2006-01-10 15:41:43 -08001058 mlog_bug_on_msg(!mutex_trylock(&oi->ip_io_mutex),
Mark Fashehb06970532006-03-03 10:24:33 -08001059 "Clear inode of %llu, io_mutex is locked\n",
1060 (unsigned long long)oi->ip_blkno);
Mark Fasheh251b6ec2006-01-10 15:41:43 -08001061 mutex_unlock(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001062
1063 /*
1064 * down_trylock() returns 0, down_write_trylock() returns 1
1065 * kernel 1, world 0
1066 */
1067 mlog_bug_on_msg(!down_write_trylock(&oi->ip_alloc_sem),
Mark Fashehb06970532006-03-03 10:24:33 -08001068 "Clear inode of %llu, alloc_sem is locked\n",
1069 (unsigned long long)oi->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001070 up_write(&oi->ip_alloc_sem);
1071
1072 mlog_bug_on_msg(oi->ip_open_count,
Mark Fashehb06970532006-03-03 10:24:33 -08001073 "Clear inode of %llu has open count %d\n",
1074 (unsigned long long)oi->ip_blkno, oi->ip_open_count);
Mark Fashehccd979b2005-12-15 14:31:24 -08001075
1076 /* Clear all other flags. */
1077 oi->ip_flags = OCFS2_INODE_CACHE_INLINE;
1078 oi->ip_created_trans = 0;
1079 oi->ip_last_trans = 0;
1080 oi->ip_dir_start_lookup = 0;
1081 oi->ip_blkno = 0ULL;
1082
1083bail:
1084 mlog_exit_void();
1085}
1086
1087/* Called under inode_lock, with no more references on the
1088 * struct inode, so it's safe here to check the flags field
1089 * and to manipulate i_nlink without any other locks. */
1090void ocfs2_drop_inode(struct inode *inode)
1091{
1092 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1093
1094 mlog_entry_void();
1095
Mark Fashehb06970532006-03-03 10:24:33 -08001096 mlog(0, "Drop inode %llu, nlink = %u, ip_flags = 0x%x\n",
1097 (unsigned long long)oi->ip_blkno, inode->i_nlink, oi->ip_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -08001098
Mark Fasheh379dfe92006-09-08 14:21:03 -07001099 if (oi->ip_flags & OCFS2_INODE_MAYBE_ORPHANED)
1100 generic_delete_inode(inode);
1101 else
1102 generic_drop_inode(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001103
1104 mlog_exit_void();
1105}
1106
1107/*
1108 * TODO: this should probably be merged into ocfs2_get_block
1109 *
1110 * However, you now need to pay attention to the cont_prepare_write()
1111 * stuff in ocfs2_get_block (that is, ocfs2_get_block pretty much
1112 * expects never to extend).
1113 */
1114struct buffer_head *ocfs2_bread(struct inode *inode,
1115 int block, int *err, int reada)
1116{
1117 struct buffer_head *bh = NULL;
1118 int tmperr;
1119 u64 p_blkno;
1120 int readflags = OCFS2_BH_CACHED;
1121
Mark Fashehccd979b2005-12-15 14:31:24 -08001122 if (reada)
1123 readflags |= OCFS2_BH_READAHEAD;
Mark Fashehccd979b2005-12-15 14:31:24 -08001124
1125 if (((u64)block << inode->i_sb->s_blocksize_bits) >=
1126 i_size_read(inode)) {
1127 BUG_ON(!reada);
1128 return NULL;
1129 }
1130
Joel Beckeree19a772007-03-28 18:27:07 -07001131 down_read(&OCFS2_I(inode)->ip_alloc_sem);
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001132 tmperr = ocfs2_extent_map_get_blocks(inode, block, &p_blkno, NULL,
1133 NULL);
Joel Beckeree19a772007-03-28 18:27:07 -07001134 up_read(&OCFS2_I(inode)->ip_alloc_sem);
Mark Fashehccd979b2005-12-15 14:31:24 -08001135 if (tmperr < 0) {
1136 mlog_errno(tmperr);
1137 goto fail;
1138 }
1139
1140 tmperr = ocfs2_read_block(OCFS2_SB(inode->i_sb), p_blkno, &bh,
1141 readflags, inode);
1142 if (tmperr < 0)
1143 goto fail;
1144
1145 tmperr = 0;
1146
1147 *err = 0;
1148 return bh;
1149
1150fail:
1151 if (bh) {
1152 brelse(bh);
1153 bh = NULL;
1154 }
1155 *err = -EIO;
1156 return NULL;
1157}
1158
1159/*
1160 * This is called from our getattr.
1161 */
1162int ocfs2_inode_revalidate(struct dentry *dentry)
1163{
1164 struct inode *inode = dentry->d_inode;
1165 int status = 0;
1166
Mark Fashehb06970532006-03-03 10:24:33 -08001167 mlog_entry("(inode = 0x%p, ino = %llu)\n", inode,
1168 inode ? (unsigned long long)OCFS2_I(inode)->ip_blkno : 0ULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001169
1170 if (!inode) {
1171 mlog(0, "eep, no inode!\n");
1172 status = -ENOENT;
1173 goto bail;
1174 }
1175
1176 spin_lock(&OCFS2_I(inode)->ip_lock);
1177 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
1178 spin_unlock(&OCFS2_I(inode)->ip_lock);
1179 mlog(0, "inode deleted!\n");
1180 status = -ENOENT;
1181 goto bail;
1182 }
1183 spin_unlock(&OCFS2_I(inode)->ip_lock);
1184
1185 /* Let ocfs2_meta_lock do the work of updating our struct
1186 * inode for us. */
Mark Fasheh4bcec182006-10-09 16:02:40 -07001187 status = ocfs2_meta_lock(inode, NULL, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001188 if (status < 0) {
1189 if (status != -ENOENT)
1190 mlog_errno(status);
1191 goto bail;
1192 }
1193 ocfs2_meta_unlock(inode, 0);
1194bail:
1195 mlog_exit(status);
1196
1197 return status;
1198}
1199
1200/*
1201 * Updates a disk inode from a
1202 * struct inode.
1203 * Only takes ip_lock.
1204 */
Mark Fasheh1fabe142006-10-09 18:11:45 -07001205int ocfs2_mark_inode_dirty(handle_t *handle,
Mark Fashehccd979b2005-12-15 14:31:24 -08001206 struct inode *inode,
1207 struct buffer_head *bh)
1208{
1209 int status;
1210 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) bh->b_data;
1211
Mark Fashehb06970532006-03-03 10:24:33 -08001212 mlog_entry("(inode %llu)\n",
1213 (unsigned long long)OCFS2_I(inode)->ip_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001214
1215 status = ocfs2_journal_access(handle, inode, bh,
1216 OCFS2_JOURNAL_ACCESS_WRITE);
1217 if (status < 0) {
1218 mlog_errno(status);
1219 goto leave;
1220 }
1221
1222 spin_lock(&OCFS2_I(inode)->ip_lock);
1223 fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters);
Jan Kara6e4b0d52007-04-27 11:08:01 -07001224 ocfs2_get_inode_flags(OCFS2_I(inode));
Herbert Poetzlca4d1472006-07-03 17:27:12 -07001225 fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr);
Mark Fasheh15b1e362007-09-07 13:58:15 -07001226 fe->i_dyn_features = cpu_to_le16(OCFS2_I(inode)->ip_dyn_features);
Mark Fashehccd979b2005-12-15 14:31:24 -08001227 spin_unlock(&OCFS2_I(inode)->ip_lock);
1228
1229 fe->i_size = cpu_to_le64(i_size_read(inode));
1230 fe->i_links_count = cpu_to_le16(inode->i_nlink);
1231 fe->i_uid = cpu_to_le32(inode->i_uid);
1232 fe->i_gid = cpu_to_le32(inode->i_gid);
1233 fe->i_mode = cpu_to_le16(inode->i_mode);
1234 fe->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
1235 fe->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
1236 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
1237 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
1238 fe->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
1239 fe->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
1240
1241 status = ocfs2_journal_dirty(handle, bh);
1242 if (status < 0)
1243 mlog_errno(status);
1244
1245 status = 0;
1246leave:
1247
1248 mlog_exit(status);
1249 return status;
1250}
1251
1252/*
1253 *
1254 * Updates a struct inode from a disk inode.
1255 * does no i/o, only takes ip_lock.
1256 */
1257void ocfs2_refresh_inode(struct inode *inode,
1258 struct ocfs2_dinode *fe)
1259{
Mark Fashehccd979b2005-12-15 14:31:24 -08001260 spin_lock(&OCFS2_I(inode)->ip_lock);
1261
1262 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
Herbert Poetzlca4d1472006-07-03 17:27:12 -07001263 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
Mark Fasheh15b1e362007-09-07 13:58:15 -07001264 OCFS2_I(inode)->ip_dyn_features = le16_to_cpu(fe->i_dyn_features);
Herbert Poetzlca4d1472006-07-03 17:27:12 -07001265 ocfs2_set_inode_flags(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001266 i_size_write(inode, le64_to_cpu(fe->i_size));
1267 inode->i_nlink = le16_to_cpu(fe->i_links_count);
1268 inode->i_uid = le32_to_cpu(fe->i_uid);
1269 inode->i_gid = le32_to_cpu(fe->i_gid);
1270 inode->i_mode = le16_to_cpu(fe->i_mode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001271 if (S_ISLNK(inode->i_mode) && le32_to_cpu(fe->i_clusters) == 0)
1272 inode->i_blocks = 0;
1273 else
Mark Fasheh8110b072007-03-22 16:53:23 -07001274 inode->i_blocks = ocfs2_inode_sector_count(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001275 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
1276 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
1277 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
1278 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
1279 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
1280 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
1281
1282 spin_unlock(&OCFS2_I(inode)->ip_lock);
1283}