Whamcloud - gitweb
LU-10948 llite: Introduce inode open heat counter
[fs/lustre-release.git] / 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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #include <linux/fs.h>
33 #include <linux/sched.h>
34 #include <linux/quotaops.h>
35 #include <linux/kernel.h>
36
37 #define DEBUG_SUBSYSTEM S_LLITE
38
39 #include <obd_support.h>
40 #include <lustre_dlm.h>
41
42 #include "llite_internal.h"
43
44 static void free_dentry_data(struct rcu_head *head)
45 {
46         struct ll_dentry_data *lld;
47
48         lld = container_of(head, struct ll_dentry_data, lld_rcu_head);
49         OBD_FREE_PTR(lld);
50 }
51
52 /* should NOT be called with the dcache lock, see fs/dcache.c */
53 static void ll_release(struct dentry *de)
54 {
55         struct ll_dentry_data *lld;
56         ENTRY;
57         LASSERT(de != NULL);
58         lld = ll_d2d(de);
59         if (lld == NULL) /* NFS copies the de->d_op methods (bug 4655) */
60                 RETURN_EXIT;
61
62         de->d_fsdata = NULL;
63         call_rcu(&lld->lld_rcu_head, free_dentry_data);
64
65         EXIT;
66 }
67
68 /* Compare if two dentries are the same.  Don't match if the existing dentry
69  * is marked invalid.  Returns 1 if different, 0 if the same.
70  *
71  * This avoids a race where ll_lookup_it() instantiates a dentry, but we get
72  * an AST before calling d_revalidate_it().  The dentry still exists (marked
73  * INVALID) so d_lookup() matches it, but we have no lock on it (so
74  * lock_match() fails) and we spin around real_lookup().
75  *
76  * This race doesn't apply to lookups in d_alloc_parallel(), and for
77  * those we want to ensure that only one dentry with a given name is
78  * in ll_lookup_nd() at a time.  So allow invalid dentries to match
79  * while d_in_lookup().  We will be called again when the lookup
80  * completes, and can give a different answer then.
81  */
82 #if defined(HAVE_D_COMPARE_5ARGS)
83 static int ll_dcompare(const struct dentry *parent, const struct dentry *dentry,
84                        unsigned int len, const char *str,
85                        const struct qstr *name)
86 #elif defined(HAVE_D_COMPARE_4ARGS)
87 static int ll_dcompare(const struct dentry *dentry, unsigned int len,
88                        const char *str, const struct qstr *name)
89 #endif
90 {
91         ENTRY;
92
93         if (len != name->len)
94                 RETURN(1);
95
96         if (memcmp(str, name->name, len))
97                 RETURN(1);
98
99         CDEBUG(D_DENTRY, "found name %.*s(%p) flags %#x refc %d\n",
100                name->len, name->name, dentry, dentry->d_flags,
101                ll_d_count(dentry));
102
103         /* mountpoint is always valid */
104         if (d_mountpoint((struct dentry *)dentry))
105                 RETURN(0);
106
107         /* ensure exclusion against parallel lookup of the same name */
108         if (d_in_lookup((struct dentry *)dentry))
109                 return 0;
110
111         if (d_lustre_invalid(dentry))
112                 RETURN(1);
113
114         RETURN(0);
115 }
116
117 /**
118  * Called when last reference to a dentry is dropped and dcache wants to know
119  * whether or not it should cache it:
120  * - return 1 to delete the dentry immediately
121  * - return 0 to cache the dentry
122  * Should NOT be called with the dcache lock, see fs/dcache.c
123  */
124 static int ll_ddelete(const struct dentry *de)
125 {
126         ENTRY;
127         LASSERT(de);
128
129         CDEBUG(D_DENTRY, "%s dentry %pd (%p, parent %p, inode %p) %s%s\n",
130                d_lustre_invalid(de) ? "deleting" : "keeping",
131                de, de, de->d_parent, de->d_inode,
132                d_unhashed((struct dentry *)de) ? "" : "hashed,",
133                list_empty(&de->d_subdirs) ? "" : "subdirs");
134
135         /* kernel >= 2.6.38 last refcount is decreased after this function. */
136         LASSERT(ll_d_count(de) == 1);
137
138         if (d_lustre_invalid(de))
139                 RETURN(1);
140         RETURN(0);
141 }
142
143 int ll_d_init(struct dentry *de)
144 {
145         ENTRY;
146         LASSERT(de != NULL);
147
148         CDEBUG(D_DENTRY, "ldd on dentry %pd (%p) parent %p inode %p refc %d\n",
149                de, de, de->d_parent, de->d_inode,
150                ll_d_count(de));
151
152         if (de->d_fsdata == NULL) {
153                 struct ll_dentry_data *lld;
154
155                 OBD_ALLOC_PTR(lld);
156                 if (likely(lld != NULL)) {
157                         spin_lock(&de->d_lock);
158                         if (likely(de->d_fsdata == NULL)) {
159                                 de->d_fsdata = lld;
160                                 __d_lustre_invalidate(de);
161                         } else {
162                                 OBD_FREE_PTR(lld);
163                         }
164                         spin_unlock(&de->d_lock);
165                 } else {
166                         RETURN(-ENOMEM);
167                 }
168         }
169         LASSERT(de->d_op == &ll_d_ops);
170
171         RETURN(0);
172 }
173
174 void ll_intent_drop_lock(struct lookup_intent *it)
175 {
176         if (it->it_op && it->it_lock_mode) {
177                 struct lustre_handle handle;
178
179                 handle.cookie = it->it_lock_handle;
180
181                 CDEBUG(D_DLMTRACE, "releasing lock with cookie %#llx from it %p\n",
182                        handle.cookie, it);
183                 ldlm_lock_decref(&handle, it->it_lock_mode);
184
185                 /* bug 494: intent_release may be called multiple times, from
186                  * this thread and we don't want to double-decref this lock */
187                 it->it_lock_mode = 0;
188                 if (it->it_remote_lock_mode != 0) {
189                         handle.cookie = it->it_remote_lock_handle;
190
191                         CDEBUG(D_DLMTRACE,
192                                "releasing remote lock with cookie %#llx from it %p\n",
193                                handle.cookie, it);
194                         ldlm_lock_decref(&handle,
195                                          it->it_remote_lock_mode);
196                         it->it_remote_lock_mode = 0;
197                 }
198         }
199 }
200
201 void ll_intent_release(struct lookup_intent *it)
202 {
203         ENTRY;
204
205         CDEBUG(D_INFO, "intent %p released\n", it);
206         ll_intent_drop_lock(it);
207         /* We are still holding extra reference on a request, need to free it */
208         if (it_disposition(it, DISP_ENQ_OPEN_REF))
209                 ptlrpc_req_finished(it->it_request); /* ll_file_open */
210
211         if (it_disposition(it, DISP_ENQ_CREATE_REF)) /* create rec */
212                 ptlrpc_req_finished(it->it_request);
213
214         it->it_disposition = 0;
215         it->it_request = NULL;
216         EXIT;
217 }
218
219 /* mark aliases invalid and prune unused aliases */
220 void ll_prune_aliases(struct inode *inode)
221 {
222         struct dentry *dentry;
223         ENTRY;
224
225         LASSERT(inode != NULL);
226
227         CDEBUG(D_INODE, "marking dentries for inode "DFID"(%p) invalid\n",
228                PFID(ll_inode2fid(inode)), inode);
229
230         spin_lock(&inode->i_lock);
231         hlist_for_each_entry(dentry, &inode->i_dentry, d_alias)
232                 d_lustre_invalidate(dentry);
233         spin_unlock(&inode->i_lock);
234
235         d_prune_aliases(inode);
236
237         EXIT;
238 }
239
240 int ll_revalidate_it_finish(struct ptlrpc_request *request,
241                             struct lookup_intent *it,
242                             struct dentry *de)
243 {
244         int rc = 0;
245         ENTRY;
246
247         if (!request)
248                 RETURN(0);
249
250         if (it_disposition(it, DISP_LOOKUP_NEG))
251                 RETURN(-ENOENT);
252
253         rc = ll_prep_inode(&de->d_inode, request, NULL, it);
254
255         RETURN(rc);
256 }
257
258 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry)
259 {
260         LASSERT(it != NULL);
261         LASSERT(dentry != NULL);
262
263         if (it->it_lock_mode && dentry->d_inode != NULL) {
264                 struct inode *inode = dentry->d_inode;
265                 struct ll_sb_info *sbi = ll_i2sbi(inode);
266
267                 CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID"(%p)\n",
268                        PFID(ll_inode2fid(inode)), inode);
269                 ll_set_lock_data(sbi->ll_md_exp, inode, it, NULL);
270         }
271
272         /* drop lookup or getattr locks immediately */
273         if (it->it_op == IT_LOOKUP || it->it_op == IT_GETATTR)
274                 ll_intent_drop_lock(it);
275 }
276
277 static int ll_revalidate_dentry(struct dentry *dentry,
278                                 unsigned int lookup_flags)
279 {
280         struct inode *dir = dentry->d_parent->d_inode;
281
282         CDEBUG(D_VFSTRACE, "VFS Op:name=%s, flags=%u\n",
283                dentry->d_name.name, lookup_flags);
284
285         /* If this is intermediate component path lookup and we were able to get
286          * to this dentry, then its lock has not been revoked and the
287          * path component is valid. */
288         if (lookup_flags & (LOOKUP_CONTINUE | LOOKUP_PARENT))
289                 return 1;
290
291         /* Symlink - always valid as long as the dentry was found */
292         /* only special case is to prevent ELOOP error from VFS during open
293          * of a foreign symlink file/dir with O_NOFOLLOW, like it happens for
294          * real symlinks. This will allow to open foreign symlink file/dir
295          * for get[dir]stripe/unlock ioctl()s.
296          */
297         if (d_is_symlink(dentry)) {
298                 if (!S_ISLNK(dentry->d_inode->i_mode) &&
299                     !(lookup_flags & LOOKUP_FOLLOW))
300                         return 0;
301                 else
302                         return 1;
303         }
304
305         /*
306          * VFS warns us that this is the second go around and previous
307          * operation failed (most likely open|creat), so this time
308          * we better talk to the server via the lookup path by name,
309          * not by fid.
310          */
311         if (lookup_flags & LOOKUP_REVAL)
312                 return 0;
313
314         if (lookup_flags & LOOKUP_RCU)
315                 return -ECHILD;
316
317         if (dentry_may_statahead(dir, dentry))
318                 ll_revalidate_statahead(dir, &dentry, dentry->d_inode == NULL);
319
320         return 1;
321 }
322
323 const struct dentry_operations ll_d_ops = {
324         .d_revalidate   = ll_revalidate_dentry,
325         .d_release = ll_release,
326         .d_delete  = ll_ddelete,
327         .d_compare = ll_dcompare,
328 };