GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / fs / ocfs2 / dcache.c
blob76e59cc54ca282ff489118516d9cda71e6505688
1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * dcache.c
6 * dentry cache handling code
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
26 #include <linux/fs.h>
27 #include <linux/types.h>
28 #include <linux/slab.h>
29 #include <linux/namei.h>
31 #define MLOG_MASK_PREFIX ML_DCACHE
32 #include <cluster/masklog.h>
34 #include "ocfs2.h"
36 #include "alloc.h"
37 #include "dcache.h"
38 #include "dlmglue.h"
39 #include "file.h"
40 #include "inode.h"
41 #include "super.h"
44 static int ocfs2_dentry_revalidate(struct dentry *dentry,
45 struct nameidata *nd)
47 struct inode *inode = dentry->d_inode;
48 int ret = 0; /* if all else fails, just return false */
49 struct ocfs2_super *osb = OCFS2_SB(dentry->d_sb);
51 mlog_entry("(0x%p, '%.*s')\n", dentry,
52 dentry->d_name.len, dentry->d_name.name);
54 /* Never trust a negative dentry - force a new lookup. */
55 if (inode == NULL) {
56 mlog(0, "negative dentry: %.*s\n", dentry->d_name.len,
57 dentry->d_name.name);
58 goto bail;
61 BUG_ON(!osb);
63 if (inode == osb->root_inode || is_bad_inode(inode))
64 goto bail;
66 spin_lock(&OCFS2_I(inode)->ip_lock);
67 /* did we or someone else delete this inode? */
68 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
69 spin_unlock(&OCFS2_I(inode)->ip_lock);
70 mlog(0, "inode (%llu) deleted, returning false\n",
71 (unsigned long long)OCFS2_I(inode)->ip_blkno);
72 goto bail;
74 spin_unlock(&OCFS2_I(inode)->ip_lock);
77 * We don't need a cluster lock to test this because once an
78 * inode nlink hits zero, it never goes back.
80 if (inode->i_nlink == 0) {
81 mlog(0, "Inode %llu orphaned, returning false "
82 "dir = %d\n",
83 (unsigned long long)OCFS2_I(inode)->ip_blkno,
84 S_ISDIR(inode->i_mode));
85 goto bail;
89 * If the last lookup failed to create dentry lock, let us
90 * redo it.
92 if (!dentry->d_fsdata) {
93 mlog(0, "Inode %llu doesn't have dentry lock, "
94 "returning false\n",
95 (unsigned long long)OCFS2_I(inode)->ip_blkno);
96 goto bail;
99 ret = 1;
101 bail:
102 mlog_exit(ret);
104 return ret;
107 static int ocfs2_match_dentry(struct dentry *dentry,
108 u64 parent_blkno,
109 int skip_unhashed)
111 struct inode *parent;
114 * ocfs2_lookup() does a d_splice_alias() _before_ attaching
115 * to the lock data, so we skip those here, otherwise
116 * ocfs2_dentry_attach_lock() will get its original dentry
117 * back.
119 if (!dentry->d_fsdata)
120 return 0;
122 if (!dentry->d_parent)
123 return 0;
125 if (skip_unhashed && d_unhashed(dentry))
126 return 0;
128 parent = dentry->d_parent->d_inode;
129 /* Negative parent dentry? */
130 if (!parent)
131 return 0;
133 /* Name is in a different directory. */
134 if (OCFS2_I(parent)->ip_blkno != parent_blkno)
135 return 0;
137 return 1;
141 * Walk the inode alias list, and find a dentry which has a given
142 * parent. ocfs2_dentry_attach_lock() wants to find _any_ alias as it
143 * is looking for a dentry_lock reference. The downconvert thread is
144 * looking to unhash aliases, so we allow it to skip any that already
145 * have that property.
147 struct dentry *ocfs2_find_local_alias(struct inode *inode,
148 u64 parent_blkno,
149 int skip_unhashed)
151 struct list_head *p;
152 struct dentry *dentry = NULL;
154 spin_lock(&dcache_lock);
156 list_for_each(p, &inode->i_dentry) {
157 dentry = list_entry(p, struct dentry, d_alias);
159 if (ocfs2_match_dentry(dentry, parent_blkno, skip_unhashed)) {
160 mlog(0, "dentry found: %.*s\n",
161 dentry->d_name.len, dentry->d_name.name);
163 dget_locked(dentry);
164 break;
167 dentry = NULL;
170 spin_unlock(&dcache_lock);
172 return dentry;
175 DEFINE_SPINLOCK(dentry_attach_lock);
178 * Attach this dentry to a cluster lock.
180 * Dentry locks cover all links in a given directory to a particular
181 * inode. We do this so that ocfs2 can build a lock name which all
182 * nodes in the cluster can agree on at all times. Shoving full names
183 * in the cluster lock won't work due to size restrictions. Covering
184 * links inside of a directory is a good compromise because it still
185 * allows us to use the parent directory lock to synchronize
186 * operations.
188 * Call this function with the parent dir semaphore and the parent dir
189 * cluster lock held.
191 * The dir semaphore will protect us from having to worry about
192 * concurrent processes on our node trying to attach a lock at the
193 * same time.
195 * The dir cluster lock (held at either PR or EX mode) protects us
196 * from unlink and rename on other nodes.
198 * A dput() can happen asynchronously due to pruning, so we cover
199 * attaching and detaching the dentry lock with a
200 * dentry_attach_lock.
202 * A node which has done lookup on a name retains a protected read
203 * lock until final dput. If the user requests and unlink or rename,
204 * the protected read is upgraded to an exclusive lock. Other nodes
205 * who have seen the dentry will then be informed that they need to
206 * downgrade their lock, which will involve d_delete on the
207 * dentry. This happens in ocfs2_dentry_convert_worker().
209 int ocfs2_dentry_attach_lock(struct dentry *dentry,
210 struct inode *inode,
211 u64 parent_blkno)
213 int ret;
214 struct dentry *alias;
215 struct ocfs2_dentry_lock *dl = dentry->d_fsdata;
217 mlog(0, "Attach \"%.*s\", parent %llu, fsdata: %p\n",
218 dentry->d_name.len, dentry->d_name.name,
219 (unsigned long long)parent_blkno, dl);
221 if (!inode)
222 return 0;
224 if (dl) {
225 mlog_bug_on_msg(dl->dl_parent_blkno != parent_blkno,
226 " \"%.*s\": old parent: %llu, new: %llu\n",
227 dentry->d_name.len, dentry->d_name.name,
228 (unsigned long long)parent_blkno,
229 (unsigned long long)dl->dl_parent_blkno);
230 return 0;
233 alias = ocfs2_find_local_alias(inode, parent_blkno, 0);
234 if (alias) {
236 * Great, an alias exists, which means we must have a
237 * dentry lock already. We can just grab the lock off
238 * the alias and add it to the list.
240 * We're depending here on the fact that this dentry
241 * was found and exists in the dcache and so must have
242 * a reference to the dentry_lock because we can't
243 * race creates. Final dput() cannot happen on it
244 * since we have it pinned, so our reference is safe.
246 dl = alias->d_fsdata;
247 mlog_bug_on_msg(!dl, "parent %llu, ino %llu\n",
248 (unsigned long long)parent_blkno,
249 (unsigned long long)OCFS2_I(inode)->ip_blkno);
251 mlog_bug_on_msg(dl->dl_parent_blkno != parent_blkno,
252 " \"%.*s\": old parent: %llu, new: %llu\n",
253 dentry->d_name.len, dentry->d_name.name,
254 (unsigned long long)parent_blkno,
255 (unsigned long long)dl->dl_parent_blkno);
257 mlog(0, "Found: %s\n", dl->dl_lockres.l_name);
259 goto out_attach;
263 * There are no other aliases
265 dl = kmalloc(sizeof(*dl), GFP_NOFS);
266 if (!dl) {
267 ret = -ENOMEM;
268 mlog_errno(ret);
269 return ret;
272 dl->dl_count = 0;
274 * Does this have to happen below, for all attaches, in case
275 * the struct inode gets blown away by the downconvert thread?
277 dl->dl_inode = igrab(inode);
278 dl->dl_parent_blkno = parent_blkno;
279 ocfs2_dentry_lock_res_init(dl, parent_blkno, inode);
281 out_attach:
282 spin_lock(&dentry_attach_lock);
283 dentry->d_fsdata = dl;
284 dl->dl_count++;
285 spin_unlock(&dentry_attach_lock);
288 * This actually gets us our PRMODE level lock. From now on,
289 * we'll have a notification if one of these names is
290 * destroyed on another node.
292 ret = ocfs2_dentry_lock(dentry, 0);
293 if (!ret)
294 ocfs2_dentry_unlock(dentry, 0);
295 else
296 mlog_errno(ret);
299 * In case of error, manually free the allocation and do the iput().
300 * We need to do this because error here means no d_instantiate(),
301 * which means iput() will not be called during dput(dentry).
303 if (ret < 0 && !alias) {
304 ocfs2_lock_res_free(&dl->dl_lockres);
305 BUG_ON(dl->dl_count != 1);
306 spin_lock(&dentry_attach_lock);
307 dentry->d_fsdata = NULL;
308 spin_unlock(&dentry_attach_lock);
309 kfree(dl);
310 iput(inode);
313 dput(alias);
315 return ret;
318 DEFINE_SPINLOCK(dentry_list_lock);
320 /* We limit the number of dentry locks to drop in one go. We have
321 * this limit so that we don't starve other users of ocfs2_wq. */
322 #define DL_INODE_DROP_COUNT 64
324 /* Drop inode references from dentry locks */
325 static void __ocfs2_drop_dl_inodes(struct ocfs2_super *osb, int drop_count)
327 struct ocfs2_dentry_lock *dl;
329 spin_lock(&dentry_list_lock);
330 while (osb->dentry_lock_list && (drop_count < 0 || drop_count--)) {
331 dl = osb->dentry_lock_list;
332 osb->dentry_lock_list = dl->dl_next;
333 spin_unlock(&dentry_list_lock);
334 iput(dl->dl_inode);
335 kfree(dl);
336 spin_lock(&dentry_list_lock);
338 spin_unlock(&dentry_list_lock);
341 void ocfs2_drop_dl_inodes(struct work_struct *work)
343 struct ocfs2_super *osb = container_of(work, struct ocfs2_super,
344 dentry_lock_work);
346 __ocfs2_drop_dl_inodes(osb, DL_INODE_DROP_COUNT);
348 * Don't queue dropping if umount is in progress. We flush the
349 * list in ocfs2_dismount_volume
351 spin_lock(&dentry_list_lock);
352 if (osb->dentry_lock_list &&
353 !ocfs2_test_osb_flag(osb, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED))
354 queue_work(ocfs2_wq, &osb->dentry_lock_work);
355 spin_unlock(&dentry_list_lock);
358 /* Flush the whole work queue */
359 void ocfs2_drop_all_dl_inodes(struct ocfs2_super *osb)
361 __ocfs2_drop_dl_inodes(osb, -1);
365 * ocfs2_dentry_iput() and friends.
367 * At this point, our particular dentry is detached from the inodes
368 * alias list, so there's no way that the locking code can find it.
370 * The interesting stuff happens when we determine that our lock needs
371 * to go away because this is the last subdir alias in the
372 * system. This function needs to handle a couple things:
374 * 1) Synchronizing lock shutdown with the downconvert threads. This
375 * is already handled for us via the lockres release drop function
376 * called in ocfs2_release_dentry_lock()
378 * 2) A race may occur when we're doing our lock shutdown and
379 * another process wants to create a new dentry lock. Right now we
380 * let them race, which means that for a very short while, this
381 * node might have two locks on a lock resource. This should be a
382 * problem though because one of them is in the process of being
383 * thrown out.
385 static void ocfs2_drop_dentry_lock(struct ocfs2_super *osb,
386 struct ocfs2_dentry_lock *dl)
388 ocfs2_simple_drop_lockres(osb, &dl->dl_lockres);
389 ocfs2_lock_res_free(&dl->dl_lockres);
391 /* We leave dropping of inode reference to ocfs2_wq as that can
392 * possibly lead to inode deletion which gets tricky */
393 spin_lock(&dentry_list_lock);
394 if (!osb->dentry_lock_list &&
395 !ocfs2_test_osb_flag(osb, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED))
396 queue_work(ocfs2_wq, &osb->dentry_lock_work);
397 dl->dl_next = osb->dentry_lock_list;
398 osb->dentry_lock_list = dl;
399 spin_unlock(&dentry_list_lock);
402 void ocfs2_dentry_lock_put(struct ocfs2_super *osb,
403 struct ocfs2_dentry_lock *dl)
405 int unlock;
407 BUG_ON(dl->dl_count == 0);
409 spin_lock(&dentry_attach_lock);
410 dl->dl_count--;
411 unlock = !dl->dl_count;
412 spin_unlock(&dentry_attach_lock);
414 if (unlock)
415 ocfs2_drop_dentry_lock(osb, dl);
418 static void ocfs2_dentry_iput(struct dentry *dentry, struct inode *inode)
420 struct ocfs2_dentry_lock *dl = dentry->d_fsdata;
422 if (!dl) {
424 * No dentry lock is ok if we're disconnected or
425 * unhashed.
427 if (!(dentry->d_flags & DCACHE_DISCONNECTED) &&
428 !d_unhashed(dentry)) {
429 unsigned long long ino = 0ULL;
430 if (inode)
431 ino = (unsigned long long)OCFS2_I(inode)->ip_blkno;
432 mlog(ML_ERROR, "Dentry is missing cluster lock. "
433 "inode: %llu, d_flags: 0x%x, d_name: %.*s\n",
434 ino, dentry->d_flags, dentry->d_name.len,
435 dentry->d_name.name);
438 goto out;
441 mlog_bug_on_msg(dl->dl_count == 0, "dentry: %.*s, count: %u\n",
442 dentry->d_name.len, dentry->d_name.name,
443 dl->dl_count);
445 ocfs2_dentry_lock_put(OCFS2_SB(dentry->d_sb), dl);
447 out:
448 iput(inode);
452 * d_move(), but keep the locks in sync.
454 * When we are done, "dentry" will have the parent dir and name of
455 * "target", which will be thrown away.
457 * We manually update the lock of "dentry" if need be.
459 * "target" doesn't have it's dentry lock touched - we allow the later
460 * dput() to handle this for us.
462 * This is called during ocfs2_rename(), while holding parent
463 * directory locks. The dentries have already been deleted on other
464 * nodes via ocfs2_remote_dentry_delete().
466 * Normally, the VFS handles the d_move() for the file system, after
467 * the ->rename() callback. OCFS2 wants to handle this internally, so
468 * the new lock can be created atomically with respect to the cluster.
470 void ocfs2_dentry_move(struct dentry *dentry, struct dentry *target,
471 struct inode *old_dir, struct inode *new_dir)
473 int ret;
474 struct ocfs2_super *osb = OCFS2_SB(old_dir->i_sb);
475 struct inode *inode = dentry->d_inode;
477 if (old_dir == new_dir)
478 goto out_move;
480 ocfs2_dentry_lock_put(osb, dentry->d_fsdata);
482 dentry->d_fsdata = NULL;
483 ret = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(new_dir)->ip_blkno);
484 if (ret)
485 mlog_errno(ret);
487 out_move:
488 d_move(dentry, target);
491 const struct dentry_operations ocfs2_dentry_ops = {
492 .d_revalidate = ocfs2_dentry_revalidate,
493 .d_iput = ocfs2_dentry_iput,