0bc0fb9f7a54d8bb2247f11bce70defe6eca821a
[cascardo/linux.git] / drivers / staging / lustre / lustre / llite / dcache.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #include <linux/fs.h>
38 #include <linux/sched.h>
39 #include <linux/quotaops.h>
40
41 #define DEBUG_SUBSYSTEM S_LLITE
42
43 #include "../include/obd_support.h"
44 #include "../include/lustre_lite.h"
45 #include "../include/lustre/lustre_idl.h"
46 #include "../include/lustre_dlm.h"
47
48 #include "llite_internal.h"
49
50 static void free_dentry_data(struct rcu_head *head)
51 {
52         struct ll_dentry_data *lld;
53
54         lld = container_of(head, struct ll_dentry_data, lld_rcu_head);
55         kfree(lld);
56 }
57
58 /* should NOT be called with the dcache lock, see fs/dcache.c */
59 static void ll_release(struct dentry *de)
60 {
61         struct ll_dentry_data *lld;
62
63         LASSERT(de);
64         lld = ll_d2d(de);
65         if (!lld) /* NFS copies the de->d_op methods (bug 4655) */
66                 return;
67
68         if (lld->lld_it) {
69                 ll_intent_release(lld->lld_it);
70                 kfree(lld->lld_it);
71         }
72
73         de->d_fsdata = NULL;
74         call_rcu(&lld->lld_rcu_head, free_dentry_data);
75 }
76
77 /* Compare if two dentries are the same.  Don't match if the existing dentry
78  * is marked invalid.  Returns 1 if different, 0 if the same.
79  *
80  * This avoids a race where ll_lookup_it() instantiates a dentry, but we get
81  * an AST before calling d_revalidate_it().  The dentry still exists (marked
82  * INVALID) so d_lookup() matches it, but we have no lock on it (so
83  * lock_match() fails) and we spin around real_lookup().
84  */
85 static int ll_dcompare(const struct dentry *parent, const struct dentry *dentry,
86                        unsigned int len, const char *str,
87                        const struct qstr *name)
88 {
89         if (len != name->len)
90                 return 1;
91
92         if (memcmp(str, name->name, len))
93                 return 1;
94
95         CDEBUG(D_DENTRY, "found name %.*s(%p) flags %#x refc %d\n",
96                name->len, name->name, dentry, dentry->d_flags,
97                d_count(dentry));
98
99         /* mountpoint is always valid */
100         if (d_mountpoint((struct dentry *)dentry))
101                 return 0;
102
103         if (d_lustre_invalid(dentry))
104                 return 1;
105
106         return 0;
107 }
108
109 static inline int return_if_equal(struct ldlm_lock *lock, void *data)
110 {
111         if ((lock->l_flags &
112              (LDLM_FL_CANCELING | LDLM_FL_DISCARD_DATA)) ==
113             (LDLM_FL_CANCELING | LDLM_FL_DISCARD_DATA))
114                 return LDLM_ITER_CONTINUE;
115         return LDLM_ITER_STOP;
116 }
117
118 /* find any ldlm lock of the inode in mdc and lov
119  * return 0    not find
120  *      1    find one
121  *      < 0    error
122  */
123 static int find_cbdata(struct inode *inode)
124 {
125         struct ll_sb_info *sbi = ll_i2sbi(inode);
126         struct lov_stripe_md *lsm;
127         int rc = 0;
128
129         LASSERT(inode);
130         rc = md_find_cbdata(sbi->ll_md_exp, ll_inode2fid(inode),
131                             return_if_equal, NULL);
132         if (rc != 0)
133                 return rc;
134
135         lsm = ccc_inode_lsm_get(inode);
136         if (!lsm)
137                 return rc;
138
139         rc = obd_find_cbdata(sbi->ll_dt_exp, lsm, return_if_equal, NULL);
140         ccc_inode_lsm_put(inode, lsm);
141
142         return rc;
143 }
144
145 /**
146  * Called when last reference to a dentry is dropped and dcache wants to know
147  * whether or not it should cache it:
148  * - return 1 to delete the dentry immediately
149  * - return 0 to cache the dentry
150  * Should NOT be called with the dcache lock, see fs/dcache.c
151  */
152 static int ll_ddelete(const struct dentry *de)
153 {
154         LASSERT(de);
155
156         CDEBUG(D_DENTRY, "%s dentry %pd (%p, parent %p, inode %p) %s%s\n",
157                d_lustre_invalid((struct dentry *)de) ? "deleting" : "keeping",
158                de, de, de->d_parent, d_inode(de),
159                d_unhashed(de) ? "" : "hashed,",
160                list_empty(&de->d_subdirs) ? "" : "subdirs");
161
162         /* kernel >= 2.6.38 last refcount is decreased after this function. */
163         LASSERT(d_count(de) == 1);
164
165         /* Disable this piece of code temporarily because this is called
166          * inside dcache_lock so it's not appropriate to do lots of work
167          * here. ATTENTION: Before this piece of code enabling, LU-2487 must be
168          * resolved.
169          */
170 #if 0
171         /* if not ldlm lock for this inode, set i_nlink to 0 so that
172          * this inode can be recycled later b=20433
173          */
174         if (d_really_is_positive(de) && !find_cbdata(d_inode(de)))
175                 clear_nlink(d_inode(de));
176 #endif
177
178         if (d_lustre_invalid((struct dentry *)de))
179                 return 1;
180         return 0;
181 }
182
183 int ll_d_init(struct dentry *de)
184 {
185         CDEBUG(D_DENTRY, "ldd on dentry %pd (%p) parent %p inode %p refc %d\n",
186                 de, de, de->d_parent, d_inode(de),
187                 d_count(de));
188
189         if (!de->d_fsdata) {
190                 struct ll_dentry_data *lld;
191
192                 lld = kzalloc(sizeof(*lld), GFP_NOFS);
193                 if (likely(lld)) {
194                         spin_lock(&de->d_lock);
195                         if (likely(!de->d_fsdata)) {
196                                 de->d_fsdata = lld;
197                                 __d_lustre_invalidate(de);
198                         } else {
199                                 kfree(lld);
200                         }
201                         spin_unlock(&de->d_lock);
202                 } else {
203                         return -ENOMEM;
204                 }
205         }
206         LASSERT(de->d_op == &ll_d_ops);
207
208         return 0;
209 }
210
211 void ll_intent_drop_lock(struct lookup_intent *it)
212 {
213         if (it->it_op && it->d.lustre.it_lock_mode) {
214                 struct lustre_handle handle;
215
216                 handle.cookie = it->d.lustre.it_lock_handle;
217
218                 CDEBUG(D_DLMTRACE, "releasing lock with cookie %#llx from it %p\n",
219                        handle.cookie, it);
220                 ldlm_lock_decref(&handle, it->d.lustre.it_lock_mode);
221
222                 /* bug 494: intent_release may be called multiple times, from
223                  * this thread and we don't want to double-decref this lock
224                  */
225                 it->d.lustre.it_lock_mode = 0;
226                 if (it->d.lustre.it_remote_lock_mode != 0) {
227                         handle.cookie = it->d.lustre.it_remote_lock_handle;
228
229                         CDEBUG(D_DLMTRACE, "releasing remote lock with cookie%#llx from it %p\n",
230                                handle.cookie, it);
231                         ldlm_lock_decref(&handle,
232                                          it->d.lustre.it_remote_lock_mode);
233                         it->d.lustre.it_remote_lock_mode = 0;
234                 }
235         }
236 }
237
238 void ll_intent_release(struct lookup_intent *it)
239 {
240         CDEBUG(D_INFO, "intent %p released\n", it);
241         ll_intent_drop_lock(it);
242         /* We are still holding extra reference on a request, need to free it */
243         if (it_disposition(it, DISP_ENQ_OPEN_REF))
244                 ptlrpc_req_finished(it->d.lustre.it_data); /* ll_file_open */
245
246         if (it_disposition(it, DISP_ENQ_CREATE_REF)) /* create rec */
247                 ptlrpc_req_finished(it->d.lustre.it_data);
248
249         it->d.lustre.it_disposition = 0;
250         it->d.lustre.it_data = NULL;
251 }
252
253 void ll_invalidate_aliases(struct inode *inode)
254 {
255         struct dentry *dentry;
256
257         CDEBUG(D_INODE, "marking dentries for ino %lu/%u(%p) invalid\n",
258                inode->i_ino, inode->i_generation, inode);
259
260         ll_lock_dcache(inode);
261         hlist_for_each_entry(dentry, &inode->i_dentry, d_u.d_alias) {
262                 CDEBUG(D_DENTRY, "dentry in drop %pd (%p) parent %p inode %p flags %d\n",
263                        dentry, dentry, dentry->d_parent,
264                        d_inode(dentry), dentry->d_flags);
265
266                 d_lustre_invalidate(dentry, 0);
267         }
268         ll_unlock_dcache(inode);
269 }
270
271 int ll_revalidate_it_finish(struct ptlrpc_request *request,
272                             struct lookup_intent *it,
273                             struct inode *inode)
274 {
275         int rc = 0;
276
277         if (!request)
278                 return 0;
279
280         if (it_disposition(it, DISP_LOOKUP_NEG))
281                 return -ENOENT;
282
283         rc = ll_prep_inode(&inode, request, NULL, it);
284
285         return rc;
286 }
287
288 void ll_lookup_finish_locks(struct lookup_intent *it, struct inode *inode)
289 {
290         if (it->d.lustre.it_lock_mode && inode) {
291                 struct ll_sb_info *sbi = ll_i2sbi(inode);
292
293                 CDEBUG(D_DLMTRACE, "setting l_data to inode %p (%lu/%u)\n",
294                        inode, inode->i_ino, inode->i_generation);
295                 ll_set_lock_data(sbi->ll_md_exp, inode, it, NULL);
296         }
297
298         /* drop lookup or getattr locks immediately */
299         if (it->it_op == IT_LOOKUP || it->it_op == IT_GETATTR) {
300                 /* on 2.6 there are situation when several lookups and
301                  * revalidations may be requested during single operation.
302                  * therefore, we don't release intent here -bzzz
303                  */
304                 ll_intent_drop_lock(it);
305         }
306 }
307
308 static int ll_revalidate_dentry(struct dentry *dentry,
309                                 unsigned int lookup_flags)
310 {
311         struct inode *dir = d_inode(dentry->d_parent);
312
313         /*
314          * if open&create is set, talk to MDS to make sure file is created if
315          * necessary, because we can't do this in ->open() later since that's
316          * called on an inode. return 0 here to let lookup to handle this.
317          */
318         if ((lookup_flags & (LOOKUP_OPEN | LOOKUP_CREATE)) ==
319             (LOOKUP_OPEN | LOOKUP_CREATE))
320                 return 0;
321
322         if (lookup_flags & (LOOKUP_PARENT | LOOKUP_OPEN | LOOKUP_CREATE))
323                 return 1;
324
325         if (d_need_statahead(dir, dentry) <= 0)
326                 return 1;
327
328         if (lookup_flags & LOOKUP_RCU)
329                 return -ECHILD;
330
331         do_statahead_enter(dir, &dentry, !d_inode(dentry));
332         ll_statahead_mark(dir, dentry);
333         return 1;
334 }
335
336 /*
337  * Always trust cached dentries. Update statahead window if necessary.
338  */
339 static int ll_revalidate_nd(struct dentry *dentry, unsigned int flags)
340 {
341         CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, flags=%u\n",
342                dentry, flags);
343
344         return ll_revalidate_dentry(dentry, flags);
345 }
346
347 static void ll_d_iput(struct dentry *de, struct inode *inode)
348 {
349         LASSERT(inode);
350         if (!find_cbdata(inode))
351                 clear_nlink(inode);
352         iput(inode);
353 }
354
355 const struct dentry_operations ll_d_ops = {
356         .d_revalidate = ll_revalidate_nd,
357         .d_release = ll_release,
358         .d_delete  = ll_ddelete,
359         .d_iput    = ll_d_iput,
360         .d_compare = ll_dcompare,
361 };