Whamcloud - gitweb
- 2.6 fixes landed
[fs/lustre-release.git] / lustre / llite / dcache.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2001-2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #include <linux/fs.h>
23 #include <linux/sched.h>
24 #include <linux/smp_lock.h>
25 #include <linux/quotaops.h>
26
27 #define DEBUG_SUBSYSTEM S_LLITE
28
29 #include <linux/obd_support.h>
30 #include <linux/lustre_lite.h>
31 #include <linux/lustre_idl.h>
32 #include <linux/lustre_dlm.h>
33
34 #include "llite_internal.h"
35
36 /* should NOT be called with the dcache lock, see fs/dcache.c */
37 static void ll_release(struct dentry *de)
38 {
39         struct ll_dentry_data *lld;
40         ENTRY;
41         LASSERT(de != NULL);
42         lld = ll_d2d(de);
43         LASSERT(lld != NULL);
44         LASSERT(lld->lld_cwd_count == 0);
45         LASSERT(lld->lld_mnt_count == 0);
46         OBD_FREE(de->d_fsdata, sizeof(struct ll_dentry_data));
47
48         EXIT;
49 }
50
51 void ll_set_dd(struct dentry *de)
52 {
53         ENTRY;
54         LASSERT(de != NULL);
55
56         lock_kernel();
57         if (de->d_fsdata == NULL) {
58                 OBD_ALLOC(de->d_fsdata, sizeof(struct ll_dentry_data));
59         }
60         unlock_kernel();
61
62         EXIT;
63 }
64
65 void ll_intent_drop_lock(struct lookup_intent *it)
66 {
67         struct lustre_handle *handle;
68
69         if (it->it_op && it->d.lustre.it_lock_mode) {
70                 handle = (struct lustre_handle *)&it->d.lustre.it_lock_handle;
71                 CDEBUG(D_DLMTRACE, "releasing lock with cookie "LPX64
72                        " from it %p\n", handle->cookie, it);
73                 ldlm_lock_decref(handle, it->d.lustre.it_lock_mode);
74
75                 /* bug 494: intent_release may be called multiple times, from
76                  * this thread and we don't want to double-decref this lock */
77                 it->d.lustre.it_lock_mode = 0;
78         }
79 }
80
81 void ll_intent_release(struct lookup_intent *it)
82 {
83         ENTRY;
84
85         ll_intent_drop_lock(it);
86         it->it_magic = 0;
87         it->it_op_release = 0;
88         it->d.lustre.it_disposition = 0;
89         it->d.lustre.it_data = NULL;
90         EXIT;
91 }
92
93 void ll_unhash_aliases(struct inode *inode)
94 {
95         struct list_head *tmp, *head;
96         struct ll_sb_info *sbi;
97         ENTRY;
98
99         sbi = ll_i2sbi(inode);
100
101         CDEBUG(D_INODE, "marking dentries for ino %lu/%u(%p) invalid\n",
102                inode->i_ino, inode->i_generation, inode);
103
104         if (inode == NULL) {
105                 CERROR("unexpected NULL inode, tell phil\n");
106                 return;
107         }
108         head = &inode->i_dentry;
109 restart:
110         spin_lock(&dcache_lock);
111         tmp = head;
112         while ((tmp = tmp->next) != head) {
113                 struct dentry *dentry = list_entry(tmp, struct dentry, d_alias);
114                 if (!atomic_read(&dentry->d_count)) {
115                         dget_locked(dentry);
116                         __d_drop(dentry);
117                         spin_unlock(&dcache_lock);
118                         dput(dentry);
119                         goto restart;
120                 } else {
121                         hlist_del_init(&dentry->d_hash);
122                         dentry->d_flags |= DCACHE_LUSTRE_INVALID;
123                         hlist_add_head(&dentry->d_hash, 
124                                        &sbi->ll_orphan_dentry_list);
125                 }
126         }
127         spin_unlock(&dcache_lock);
128         EXIT;
129 }
130
131 extern struct dentry *ll_find_alias(struct inode *, struct dentry *);
132
133 static int revalidate_it_finish(struct ptlrpc_request *request, int offset,
134                                 struct lookup_intent *it,
135                                 struct dentry *de)
136 {
137         struct ll_sb_info *sbi;
138         int rc = 0;
139         ENTRY;
140
141         if (!request)
142                 RETURN(0);
143
144         if (it_disposition(it, DISP_LOOKUP_NEG))
145                 RETURN(-ENOENT);
146
147         sbi = ll_i2sbi(de->d_inode);
148         rc = ll_prep_inode(sbi->ll_osc_exp, &de->d_inode, request, offset,NULL);
149
150         RETURN(rc);
151 }
152
153 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry)
154 {
155         LASSERT(it != NULL);
156         LASSERT(dentry != NULL);
157
158         if (it->d.lustre.it_lock_mode && dentry->d_inode != NULL) {
159                 struct inode *inode = dentry->d_inode;
160                 CDEBUG(D_DLMTRACE, "setting l_data to inode %p (%lu/%u)\n",
161                        inode, inode->i_ino, inode->i_generation);
162                 mdc_set_lock_data(&it->d.lustre.it_lock_handle, inode);
163         }
164
165         /* drop lookup or getattr locks immediately */
166         if (it->it_op == IT_LOOKUP || it->it_op == IT_GETATTR) {
167 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
168                 /* on 2.6 there are situation when several lookups and
169                  * revalidations may be requested during single operation.
170                  * therefore, we don't release intent here -bzzz */
171                 ll_intent_drop_lock(it);
172 #else
173                 ll_intent_release(it);
174 #endif
175         }
176 }
177
178 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft)
179 {
180         struct lookup_intent *it = *itp;
181 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
182         if (it && it->it_magic != INTENT_MAGIC) { 
183                 CERROR("WARNING: uninitialized intent\n");
184                 LBUG();
185         }
186         if (it && (it->it_op == IT_GETATTR || it->it_op == 0))
187                 it->it_op = IT_LOOKUP;
188         
189 #endif
190         if (!it || it->it_op == IT_GETXATTR)
191                 it = *itp = deft;
192
193         it->it_op_release = ll_intent_release;
194 }
195
196 int ll_revalidate_it(struct dentry *de, int flags, struct lookup_intent *it)
197 {
198         int rc;
199         struct ll_fid pfid, cfid;
200         struct it_cb_data icbd;
201         struct ll_uctxt ctxt;
202         struct ptlrpc_request *req = NULL;
203         struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
204         struct obd_export *exp;
205
206         ENTRY;
207         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,intent=%s\n", de->d_name.name,
208                LL_IT2STR(it));
209
210         /* Cached negative dentries are unsafe for now - look them up again */
211         if (de->d_inode == NULL)
212                 RETURN(0);
213
214         exp = ll_i2mdcexp(de->d_inode);
215         ll_inode2fid(&pfid, de->d_parent->d_inode);
216         ll_inode2fid(&cfid, de->d_inode);
217         icbd.icbd_parent = de->d_parent->d_inode;
218         icbd.icbd_childp = &de;
219
220         /* 
221          * never execute intents for mount points
222          * - attrs will be fixed up in ll_revalidate_inode
223          */
224         if (d_mountpoint(de))
225                 RETURN(1);
226
227         ll_frob_intent(&it, &lookup_it);
228         LASSERT(it);
229
230         ll_i2uctxt(&ctxt, de->d_parent->d_inode, de->d_inode);
231
232         rc = mdc_intent_lock(exp, &ctxt, &pfid, de->d_name.name, de->d_name.len,
233                              NULL, 0,
234                              &cfid, it, flags, &req, ll_mdc_blocking_ast);
235         /* If req is NULL, then mdc_intent_lock only tried to do a lock match;
236          * if all was well, it will return 1 if it found locks, 0 otherwise. */
237         if (req == NULL && rc >= 0)
238                 GOTO(out, rc);
239
240         if (rc < 0) {
241                 if (rc != -ESTALE) {
242                         CDEBUG(D_INFO, "ll_intent_lock: rc %d : it->it_status "
243                                "%d\n", rc, it->d.lustre.it_status);
244                 }
245                 GOTO(out, rc = 0);
246         }
247
248         rc = revalidate_it_finish(req, 1, it, de);
249         if (rc != 0) {
250                 ll_intent_release(it);
251                 GOTO(out, rc = 0);
252         }
253         rc = 1;
254
255         /* unfortunately ll_intent_lock may cause a callback and revoke our
256            dentry */
257         spin_lock(&dcache_lock);
258         hlist_del_init(&de->d_hash);
259         __d_rehash(de, 0);
260         spin_unlock(&dcache_lock);
261
262  out:
263         if (req != NULL && rc == 1)
264                 ptlrpc_req_finished(req);
265         if (rc == 0) { 
266                 ll_unhash_aliases(de->d_inode);
267                 de->d_flags |= DCACHE_LUSTRE_INVALID;
268         } else { 
269                 ll_lookup_finish_locks(it, de);
270                 de->d_flags &= ~DCACHE_LUSTRE_INVALID;
271         }
272         RETURN(rc);
273 }
274
275 /*static*/ void ll_pin(struct dentry *de, struct vfsmount *mnt, int flag)
276 {
277         struct inode *inode= de->d_inode;
278         struct ll_sb_info *sbi = ll_i2sbi(inode);
279         struct ll_dentry_data *ldd = ll_d2d(de);
280         struct obd_client_handle *handle;
281         int rc = 0;
282         ENTRY;
283         LASSERT(ldd);
284
285         lock_kernel();
286         /* Strictly speaking this introduces an additional race: the
287          * increments should wait until the rpc has returned.
288          * However, given that at present the function is void, this
289          * issue is moot. */
290         if (flag == 1 && (++ldd->lld_mnt_count) > 1) {
291                 unlock_kernel();
292                 EXIT;
293                 return;
294         }
295
296         if (flag == 0 && (++ldd->lld_cwd_count) > 1) {
297                 unlock_kernel();
298                 EXIT;
299                 return;
300         }
301         unlock_kernel();
302
303         handle = (flag) ? &ldd->lld_mnt_och : &ldd->lld_cwd_och;
304         rc = obd_pin(sbi->ll_mdc_exp, inode->i_ino, inode->i_generation,
305                      inode->i_mode & S_IFMT, handle, flag);
306
307         if (rc) {
308                 lock_kernel();
309                 memset(handle, 0, sizeof(*handle));
310                 if (flag == 0)
311                         ldd->lld_cwd_count--;
312                 else
313                         ldd->lld_mnt_count--;
314                 unlock_kernel();
315         }
316
317         EXIT;
318         return;
319 }
320
321 /*static*/ void ll_unpin(struct dentry *de, struct vfsmount *mnt, int flag)
322 {
323         struct ll_sb_info *sbi = ll_i2sbi(de->d_inode);
324         struct ll_dentry_data *ldd = ll_d2d(de);
325         struct obd_client_handle handle;
326         int count, rc = 0;
327         ENTRY;
328         LASSERT(ldd);
329
330         lock_kernel();
331         /* Strictly speaking this introduces an additional race: the
332          * increments should wait until the rpc has returned.
333          * However, given that at present the function is void, this
334          * issue is moot. */
335         handle = (flag) ? ldd->lld_mnt_och : ldd->lld_cwd_och;
336         if (handle.och_magic != OBD_CLIENT_HANDLE_MAGIC) {
337                 /* the "pin" failed */
338                 unlock_kernel();
339                 EXIT;
340                 return;
341         }
342
343         if (flag)
344                 count = --ldd->lld_mnt_count;
345         else
346                 count = --ldd->lld_cwd_count;
347         unlock_kernel();
348
349         if (count != 0) {
350                 EXIT;
351                 return;
352         }
353
354         rc = obd_unpin(sbi->ll_mdc_exp, &handle, flag);
355         EXIT;
356         return;
357 }
358
359 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
360 static int ll_revalidate_nd(struct dentry *dentry, struct nameidata *nd)
361 {
362         int rc;
363         ENTRY;
364
365         if (nd && nd->flags & LOOKUP_LAST && !(nd->flags & LOOKUP_LINK_NOTLAST))
366                 rc = ll_revalidate_it(dentry, nd->flags, &nd->intent);
367         else 
368                 rc = ll_revalidate_it(dentry, 0, NULL);
369
370         RETURN(rc);
371 }
372 #endif
373
374 struct dentry_operations ll_d_ops = {
375 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
376         .d_revalidate = ll_revalidate_nd,
377 #else
378         .d_revalidate_it = ll_revalidate_it,
379 #endif
380         .d_release = ll_release,
381 #if 0
382         .d_pin = ll_pin,
383         .d_unpin = ll_unpin,
384 #endif
385 };