Whamcloud - gitweb
1984bc06197620a7476b70545aac4117177302c6
[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 #include <linux/lustre_version.h>
34
35 #include "llite_internal.h"
36
37 /* should NOT be called with the dcache lock, see fs/dcache.c */
38 static void ll_release(struct dentry *de)
39 {
40         struct ll_dentry_data *lld;
41         ENTRY;
42         LASSERT(de != NULL);
43         lld = ll_d2d(de);
44         LASSERT(lld != NULL);
45         LASSERT(lld->lld_cwd_count == 0);
46         LASSERT(lld->lld_mnt_count == 0);
47         OBD_FREE(de->d_fsdata, sizeof(struct ll_dentry_data));
48
49         EXIT;
50 }
51
52 /* should NOT be called with the dcache lock, see fs/dcache.c */
53 static int ll_ddelete(struct dentry *de)
54 {
55         ENTRY;
56         LASSERT(de);
57         CDEBUG(D_DENTRY, "%s dentry %*s (%p, parent %p, inode %p) %s%s\n",
58                (de->d_flags & DCACHE_LUSTRE_INVALID ? "deleting" : "keeping"),
59                de->d_name.len, de->d_name.name, de, de->d_parent, de->d_inode,
60                d_unhashed(de) ? "" : "hashed,",
61                list_empty(&de->d_subdirs) ? "" : "subdirs");
62         RETURN(0);
63 }
64
65 void ll_set_dd(struct dentry *de)
66 {
67         ENTRY;
68         LASSERT(de != NULL);
69
70         CDEBUG(D_DENTRY, "ldd on dentry %*s (%p) parent %p inode %p refc %d\n",
71                de->d_name.len, de->d_name.name, de, de->d_parent, de->d_inode,
72                atomic_read(&de->d_count));
73         lock_kernel();
74         if (de->d_fsdata == NULL) {
75                 OBD_ALLOC(de->d_fsdata, sizeof(struct ll_dentry_data));
76         }
77         unlock_kernel();
78
79         EXIT;
80 }
81
82 void ll_intent_drop_lock(struct lookup_intent *it)
83 {
84         struct lustre_handle *handle;
85
86         if (it->it_op && it->d.lustre.it_lock_mode) {
87                 handle = (struct lustre_handle *)&it->d.lustre.it_lock_handle;
88                 CDEBUG(D_DLMTRACE, "releasing lock with cookie "LPX64
89                        " from it %p\n", handle->cookie, it);
90                 ldlm_lock_decref(handle, it->d.lustre.it_lock_mode);
91
92                 /* bug 494: intent_release may be called multiple times, from
93                  * this thread and we don't want to double-decref this lock */
94                 it->d.lustre.it_lock_mode = 0;
95         }
96 }
97
98 void ll_intent_release(struct lookup_intent *it)
99 {
100         ENTRY;
101
102         ll_intent_drop_lock(it);
103         it->it_magic = 0;
104         it->it_op_release = 0;
105         it->d.lustre.it_disposition = 0;
106         it->d.lustre.it_data = NULL;
107         EXIT;
108 }
109
110 void ll_unhash_aliases(struct inode *inode)
111 {
112         struct list_head *tmp, *head;
113         struct ll_sb_info *sbi;
114         ENTRY;
115
116         if (inode == NULL) {
117                 CERROR("unexpected NULL inode, tell phil\n");
118                 return;
119         }
120
121         CDEBUG(D_INODE, "marking dentries for ino %lu/%u(%p) invalid\n",
122                inode->i_ino, inode->i_generation, inode);
123
124         sbi = ll_i2sbi(inode);
125         head = &inode->i_dentry;
126 restart:
127         spin_lock(&dcache_lock);
128         tmp = head;
129         while ((tmp = tmp->next) != head) {
130                 struct dentry *dentry = list_entry(tmp, struct dentry, d_alias);
131                 if (atomic_read(&dentry->d_count) == 0) {
132                         CDEBUG(D_DENTRY, "deleting dentry %*s (%p) parent %p "
133                                "inode %p\n", dentry->d_name.len,
134                                dentry->d_name.name, dentry, dentry->d_parent,
135                                dentry->d_inode);
136                         dget_locked(dentry);
137                         __d_drop(dentry);
138                         spin_unlock(&dcache_lock);
139                         dput(dentry);
140                         goto restart;
141                 } else if (!(dentry->d_flags & DCACHE_LUSTRE_INVALID)) {
142                         CDEBUG(D_DENTRY, "unhashing dentry %*s (%p) parent %p "
143                                "inode %p refc %d\n", dentry->d_name.len,
144                                dentry->d_name.name, dentry, dentry->d_parent,
145                                dentry->d_inode, atomic_read(&dentry->d_count));
146                         hlist_del_init(&dentry->d_hash);
147                         dentry->d_flags |= DCACHE_LUSTRE_INVALID;
148                         hlist_add_head(&dentry->d_hash,
149                                        &sbi->ll_orphan_dentry_list);
150                 }
151         }
152         spin_unlock(&dcache_lock);
153         EXIT;
154 }
155
156 extern struct dentry *ll_find_alias(struct inode *, struct dentry *);
157
158 int revalidate_it_finish(struct ptlrpc_request *request, int offset, 
159                          struct lookup_intent *it, struct dentry *de)
160 {
161         struct ll_sb_info *sbi;
162         int rc = 0;
163         ENTRY;
164
165         if (!request)
166                 RETURN(0);
167
168         if (it_disposition(it, DISP_LOOKUP_NEG))
169                 RETURN(-ENOENT);
170
171         sbi = ll_i2sbi(de->d_inode);
172         rc = ll_prep_inode(sbi->ll_osc_exp, sbi->ll_mdc_exp,
173                            &de->d_inode, request, offset, NULL);
174
175         RETURN(rc);
176 }
177
178 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry)
179 {
180         LASSERT(it != NULL);
181         LASSERT(dentry != NULL);
182
183         if (it->d.lustre.it_lock_mode && dentry->d_inode != NULL) {
184                 struct inode *inode = dentry->d_inode;
185                 CDEBUG(D_DLMTRACE, "setting l_data to inode %p (%lu/%u)\n",
186                        inode, inode->i_ino, inode->i_generation);
187                 mdc_set_lock_data(NULL, &it->d.lustre.it_lock_handle, inode);
188         }
189
190         /* drop lookup or getattr locks immediately */
191         if (it->it_op == IT_LOOKUP || it->it_op == IT_GETATTR || it->it_op == IT_CHDIR) {
192 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
193                 /* on 2.6 there are situation when several lookups and
194                  * revalidations may be requested during single operation.
195                  * therefore, we don't release intent here -bzzz */
196                 ll_intent_drop_lock(it);
197 #else
198                 ll_intent_release(it);
199 #endif
200         }
201 }
202
203 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft)
204 {
205         struct lookup_intent *it = *itp;
206 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
207         if (it) {
208                 LASSERTF(it->it_magic == INTENT_MAGIC, "bad intent magic: %x\n",
209                          it->it_magic);
210         }
211 #endif
212
213         if (!it || it->it_op == IT_GETXATTR)
214                 it = *itp = deft;
215
216         it->it_op_release = ll_intent_release;
217 }
218
219 int ll_revalidate_it(struct dentry *de, int flags, struct nameidata *nd,
220                      struct lookup_intent *it)
221 {
222         int rc;
223         struct ll_fid pfid, cfid;
224         struct it_cb_data icbd;
225         struct ptlrpc_request *req = NULL;
226         struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
227         struct obd_export *exp;
228
229         ENTRY;
230         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,intent=%s\n", de->d_name.name,
231                LL_IT2STR(it));
232
233         /* Cached negative dentries are unsafe for now - look them up again */
234         if (de->d_inode == NULL)
235                 RETURN(0);
236
237         CDEBUG(D_INODE, "revalidate 0x%p: %*s -> %lu/%lu\n",
238                         de, de->d_name.len, de->d_name.name,
239                         (unsigned long) de->d_inode->i_ino,
240                         (unsigned long) de->d_inode->i_generation);
241
242         exp = ll_i2mdcexp(de->d_inode);
243         ll_inode2fid(&pfid, de->d_parent->d_inode);
244         ll_inode2fid(&cfid, de->d_inode);
245         icbd.icbd_parent = de->d_parent->d_inode;
246         icbd.icbd_childp = &de;
247
248         /* Never execute intents for mount points.
249          * Attributes will be fixed up in ll_inode_revalidate_it */
250         if (d_mountpoint(de))
251                 RETURN(1);
252
253         if (nd != NULL)
254                 nd->mnt->mnt_last_used = jiffies;
255
256         ll_frob_intent(&it, &lookup_it);
257         LASSERT(it);
258
259         if (it->it_op == IT_GETATTR) { /* We need to check for LOOKUP lock
260                                           as well */
261                 rc = md_intent_lock(exp, &pfid, de->d_name.name,
262                                     de->d_name.len, NULL, 0, &cfid, &lookup_it,
263                                     flags, &req, ll_mdc_blocking_ast);
264                 /* If there was no lookup lock, no point in even checking for
265                    UPDATE lock */
266                 if (!rc) {
267                         it = &lookup_it;
268                         GOTO(out, rc);
269                 }
270                 if (it_disposition(&lookup_it, DISP_LOOKUP_NEG)) {
271                         ll_intent_release(&lookup_it);
272                         it = &lookup_it;
273                         GOTO(out, rc = 0);
274                 }
275
276                 if (req)
277                         ptlrpc_req_finished(req);
278                 req = NULL;
279                 ll_lookup_finish_locks(&lookup_it, de);
280         }
281
282         rc = md_intent_lock(exp, &pfid, de->d_name.name, de->d_name.len,
283                             NULL, 0, &cfid, it, flags, &req,
284                             ll_mdc_blocking_ast);
285         /* If req is NULL, then mdc_intent_lock only tried to do a lock match;
286          * if all was well, it will return 1 if it found locks, 0 otherwise. */
287         if (req == NULL && rc >= 0)
288                 GOTO(out, rc);
289
290         if (rc < 0) {
291                 if (rc != -ESTALE) {
292                         CDEBUG(D_INFO, "ll_intent_lock: rc %d : it->it_status "
293                                "%d\n", rc, it->d.lustre.it_status);
294                 }
295                 GOTO(out, rc = 0);
296         }
297
298         rc = revalidate_it_finish(req, 1, it, de);
299         if (rc != 0) {
300                 ll_intent_release(it);
301                 GOTO(out, rc = 0);
302         }
303         rc = 1;
304
305         /* unfortunately ll_intent_lock may cause a callback and revoke our
306            dentry */
307         spin_lock(&dcache_lock);
308         hlist_del_init(&de->d_hash);
309         __d_rehash(de, 0);
310         spin_unlock(&dcache_lock);
311
312         GOTO(out, rc);
313  out:
314         if (req != NULL && rc == 1)
315                 ptlrpc_req_finished(req);
316         if (rc == 0) {
317                 ll_unhash_aliases(de->d_inode);
318                 return rc;
319         }
320
321         CDEBUG(D_DENTRY, "revalidated dentry %*s (%p) parent %p "
322                "inode %p refc %d\n", de->d_name.len,
323                de->d_name.name, de, de->d_parent, de->d_inode,
324                atomic_read(&de->d_count));
325         ll_lookup_finish_locks(it, de);
326         de->d_flags &= ~DCACHE_LUSTRE_INVALID;
327         if (!((de->d_inode->i_mode & S_ISUID) &&S_ISDIR(de->d_inode->i_mode)) ||
328             !(flags & LOOKUP_CONTINUE || (it->it_op & (IT_CHDIR | IT_OPEN))))
329                 return rc;
330
331         if (nd)
332                 (void)ll_dir_process_mount_object(de, nd->mnt);
333         return rc;
334 }
335
336 /*static*/ void ll_pin(struct dentry *de, struct vfsmount *mnt, int flag)
337 {
338         struct inode *inode= de->d_inode;
339         struct ll_sb_info *sbi = ll_i2sbi(inode);
340         struct ll_dentry_data *ldd = ll_d2d(de);
341         struct obd_client_handle *handle;
342         int rc = 0;
343         ENTRY;
344         LASSERT(ldd);
345
346         lock_kernel();
347         /* Strictly speaking this introduces an additional race: the
348          * increments should wait until the rpc has returned.
349          * However, given that at present the function is void, this
350          * issue is moot. */
351         if (flag == 1 && (++ldd->lld_mnt_count) > 1) {
352                 unlock_kernel();
353                 EXIT;
354                 return;
355         }
356
357         if (flag == 0 && (++ldd->lld_cwd_count) > 1) {
358                 unlock_kernel();
359                 EXIT;
360                 return;
361         }
362         unlock_kernel();
363
364         handle = (flag) ? &ldd->lld_mnt_och : &ldd->lld_cwd_och;
365         rc = obd_pin(sbi->ll_mdc_exp, inode->i_ino, inode->i_generation,
366                      inode->i_mode & S_IFMT, handle, flag);
367
368         if (rc) {
369                 lock_kernel();
370                 memset(handle, 0, sizeof(*handle));
371                 if (flag == 0)
372                         ldd->lld_cwd_count--;
373                 else
374                         ldd->lld_mnt_count--;
375                 unlock_kernel();
376         }
377
378         EXIT;
379         return;
380 }
381
382 /*static*/ void ll_unpin(struct dentry *de, struct vfsmount *mnt, int flag)
383 {
384         struct ll_sb_info *sbi = ll_i2sbi(de->d_inode);
385         struct ll_dentry_data *ldd = ll_d2d(de);
386         struct obd_client_handle handle;
387         int count, rc = 0;
388         ENTRY;
389         LASSERT(ldd);
390
391         lock_kernel();
392         /* Strictly speaking this introduces an additional race: the
393          * increments should wait until the rpc has returned.
394          * However, given that at present the function is void, this
395          * issue is moot. */
396         handle = (flag) ? ldd->lld_mnt_och : ldd->lld_cwd_och;
397         if (handle.och_magic != OBD_CLIENT_HANDLE_MAGIC) {
398                 /* the "pin" failed */
399                 unlock_kernel();
400                 EXIT;
401                 return;
402         }
403
404         if (flag)
405                 count = --ldd->lld_mnt_count;
406         else
407                 count = --ldd->lld_cwd_count;
408         unlock_kernel();
409
410         if (count != 0) {
411                 EXIT;
412                 return;
413         }
414
415         rc = obd_unpin(sbi->ll_mdc_exp, &handle, flag);
416         EXIT;
417         return;
418 }
419
420 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
421 static int ll_revalidate_nd(struct dentry *dentry, struct nameidata *nd)
422 {
423         int rc;
424         ENTRY;
425
426         if (nd && nd->flags & LOOKUP_LAST && !(nd->flags & LOOKUP_LINK_NOTLAST))
427                 rc = ll_revalidate_it(dentry, nd->flags, nd, &nd->intent);
428         else
429                 rc = ll_revalidate_it(dentry, 0, nd, NULL);
430
431         RETURN(rc);
432 }
433 #endif
434
435 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
436 static void ll_dentry_iput(struct dentry *dentry, struct inode *inode)
437 {
438         struct ll_sb_info *sbi = ll_i2sbi(inode);
439         struct ll_fid parent, child;
440
441         LASSERT(dentry->d_parent && dentry->d_parent->d_inode);
442         ll_inode2fid(&parent, dentry->d_parent->d_inode);
443         ll_inode2fid(&child, inode);
444         md_change_cbdata_name(sbi->ll_mdc_exp, &parent,
445                               (char *)dentry->d_name.name, 
446                               dentry->d_name.len, &child, 
447                               null_if_equal, inode);
448         iput(inode);
449 }
450 #else
451 static void ll_dentry_iput(struct dentry *dentry, struct inode *inode)
452 {
453         struct ll_sb_info *sbi = ll_i2sbi(inode);
454         struct ll_fid parent, child;
455
456         LASSERT(dentry->d_parent && dentry->d_parent->d_inode);
457         ll_inode2fid(&parent, dentry->d_parent->d_inode);
458         ll_inode2fid(&child, inode);
459         md_change_cbdata_name(sbi->ll_mdc_exp, &parent,
460                               (char *)dentry->d_name.name, 
461                               dentry->d_name.len, &child, 
462                               null_if_equal, inode);
463         iput(inode);
464 }
465 #endif
466
467 struct dentry_operations ll_d_ops = {
468 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
469         .d_revalidate = ll_revalidate_nd,
470 #else
471         .d_revalidate_it = ll_revalidate_it,
472 #endif
473         .d_release = ll_release,
474         .d_iput = ll_dentry_iput,
475         .d_delete = ll_ddelete,
476 #if 0
477         .d_pin = ll_pin,
478         .d_unpin = ll_unpin,
479 #endif
480 };