Whamcloud - gitweb
0c9fcf7aa947de997b1992de9a067e51a6f09c2b
[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 /* should NOT be called with the dcache lock, see fs/dcache.c */
35 void ll_release(struct dentry *de)
36 {
37         ENTRY;
38         OBD_FREE(de->d_fsdata, sizeof(struct ll_dentry_data));
39         EXIT;
40 }
41
42 int ll_delete(struct dentry *de)
43 {
44         if (de->d_it != 0) {
45                 CERROR("%s put dentry %p+%p with d_it %p\n", current->comm,
46                        de, de->d_fsdata, de->d_it);
47                 LBUG();
48         }
49         return 0;
50 }
51
52 void ll_set_dd(struct dentry *de)
53 {
54         ENTRY;
55         LASSERT(de != NULL);
56
57         lock_kernel();
58
59         if (de->d_fsdata == NULL) {
60                 OBD_ALLOC(de->d_fsdata, sizeof(struct ll_dentry_data));
61                 sema_init(&ll_d2d(de)->lld_it_sem, 1);
62         }
63
64         unlock_kernel();
65
66         EXIT;
67 }
68
69 void ll_intent_release(struct dentry *de, struct lookup_intent *it)
70 {
71         struct lustre_handle *handle;
72         ENTRY;
73
74         if (it->it_lock_mode) {
75                 handle = (struct lustre_handle *)it->it_lock_handle;
76                 ldlm_lock_decref(handle, it->it_lock_mode);
77
78                 /* intent_release may be called multiple times, from
79                    this thread and we don't want to double-decref this
80                    lock (see bug 494) */
81                 it->it_lock_mode = 0;
82         }
83
84         if (!de->d_it || it->it_op == IT_RELEASED_MAGIC) {
85                 EXIT;
86                 return;
87         }
88
89         if (de->d_it == it)
90                 LL_GET_INTENT(de, it);
91         else
92                 CDEBUG(D_INODE, "STRANGE intent release: %p %p\n",
93                        de->d_it, it);
94
95         EXIT;
96 }
97
98 extern struct dentry *ll_find_alias(struct inode *, struct dentry *);
99
100 static int revalidate2_finish(int flag, struct ptlrpc_request *request,
101                               struct inode *parent, struct dentry **de,
102                               struct lookup_intent *it, int offset, obd_id ino)
103 {
104         struct ll_sb_info     *sbi = ll_i2sbi(parent);
105         struct mds_body       *body;
106         struct lov_stripe_md  *lsm = NULL;
107         struct lov_mds_md     *lmm;
108         int                    lmmsize;
109         int                    rc = 0;
110         ENTRY;
111
112         /* NB 1 request reference will be taken away by ll_intent_lock()
113          * when I return */
114
115         if ((flag & LL_LOOKUP_NEGATIVE) != 0)
116                 GOTO (out, rc = -ENOENT);
117
118         /* We only get called if the mdc_enqueue() called from
119          * ll_intent_lock() was successful.  Therefore the mds_body is
120          * present and correct, and the eadata is present (but still
121          * opaque, so only obd_unpackmd() can check the size) */
122         body = lustre_msg_buf(request->rq_repmsg, offset, sizeof (*body));
123         LASSERT (body != NULL);
124         LASSERT_REPSWABBED (request, offset);
125
126         if (body->valid & OBD_MD_FLEASIZE) {
127                 /* Only bother with this if inodes's LSM not set? */
128
129                 if (body->eadatasize == 0) {
130                         CERROR ("OBD_MD_FLEASIZE set, but eadatasize 0\n");
131                         GOTO (out, rc = -EPROTO);
132                 }
133                 lmmsize = body->eadatasize;
134                 lmm = lustre_msg_buf (request->rq_repmsg, offset + 1, lmmsize);
135                 LASSERT (lmm != NULL);
136                 LASSERT_REPSWABBED (request, offset + 1);
137
138                 rc = obd_unpackmd (&sbi->ll_osc_conn,
139                                    &lsm, lmm, lmmsize);
140                 if (rc < 0) {
141                         CERROR ("Error %d unpacking eadata\n", rc);
142                         LBUG();
143                         /* XXX don't know if I should do this... */
144                         GOTO (out, rc);
145                         /* or skip the ll_update_inode but still do
146                          * mdc_lock_set_inode() */
147                 }
148                 LASSERT (rc >= sizeof (*lsm));
149                 rc = 0;
150         }
151
152         ll_update_inode((*de)->d_inode, body, lsm);
153
154         if (lsm != NULL &&
155             ll_i2info((*de)->d_inode)->lli_smd != lsm)
156                 obd_free_memmd (&sbi->ll_osc_conn, &lsm);
157
158         ll_mdc_lock_set_inode((struct lustre_handle *)it->it_lock_handle,
159                               (*de)->d_inode);
160  out:
161         RETURN(rc);
162 }
163
164 int ll_have_md_lock(struct dentry *de)
165 {
166         struct ll_sb_info *sbi = ll_s2sbi(de->d_sb);
167         struct lustre_handle lockh;
168         struct ldlm_res_id res_id = { .name = {0} };
169         struct obd_device *obddev;
170         ENTRY;
171
172         if (!de->d_inode)
173                RETURN(0);
174
175         obddev = class_conn2obd(&sbi->ll_mdc_conn);
176         res_id.name[0] = de->d_inode->i_ino;
177         res_id.name[1] = de->d_inode->i_generation;
178
179         CDEBUG(D_INFO, "trying to match res "LPU64"\n", res_id.name[0]);
180
181         if (ldlm_lock_match(obddev->obd_namespace, LDLM_FL_BLOCK_GRANTED,
182                             &res_id, LDLM_PLAIN, NULL, 0, LCK_PR, &lockh)) {
183                 ldlm_lock_decref(&lockh, LCK_PR);
184                 RETURN(1);
185         }
186
187         if (ldlm_lock_match(obddev->obd_namespace, LDLM_FL_BLOCK_GRANTED,
188                             &res_id, LDLM_PLAIN, NULL, 0, LCK_PW, &lockh)) {
189                 ldlm_lock_decref(&lockh, LCK_PW);
190                 RETURN(1);
191         }
192         RETURN(0);
193 }
194
195 int ll_revalidate2(struct dentry *de, int flags, struct lookup_intent *it)
196 {
197         int rc;
198         ENTRY;
199         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,intent=%s\n", de->d_name.name,
200                LL_IT2STR(it));
201
202         /* We don't want to cache negative dentries, so return 0 immediately.
203          * We believe that this is safe, that negative dentries cannot be
204          * pinned by someone else */
205         if (de->d_inode == NULL) {
206                 CDEBUG(D_INODE, "negative dentry: ret 0 to force lookup2\n");
207                 RETURN(0);
208         }
209
210         if (it == NULL || it->it_op == IT_GETATTR) {
211                 /* We could just return 1 immediately, but since we should only
212                  * be called in revalidate2 if we already have a lock, let's
213                  * verify that. */
214                 struct inode *inode = de->d_inode;
215                 struct ll_sb_info *sbi = ll_i2sbi(inode);
216                 struct obd_device *obddev = class_conn2obd(&sbi->ll_mdc_conn);
217                 struct ldlm_res_id res_id =
218                         { .name = {inode->i_ino, (__u64)inode->i_generation} };
219                 struct lustre_handle lockh;
220                 rc = ldlm_lock_match(obddev->obd_namespace,
221                                      LDLM_FL_BLOCK_GRANTED, &res_id,
222                                      LDLM_PLAIN, NULL, 0, LCK_PR, &lockh);
223                 if (rc) {
224                         de->d_flags &= ~DCACHE_LUSTRE_INVALID;
225                         if (it && it->it_op == IT_GETATTR) {
226                                 memcpy(it->it_lock_handle, &lockh,
227                                        sizeof(lockh));
228                                 it->it_lock_mode = LCK_PR;
229                                 LL_SAVE_INTENT(de, it);
230                         } else {
231                                 ldlm_lock_decref(&lockh, LCK_PR);
232                         }
233                         RETURN(1);
234                 }
235                 rc = ldlm_lock_match(obddev->obd_namespace,
236                                      LDLM_FL_BLOCK_GRANTED, &res_id,
237                                      LDLM_PLAIN, NULL, 0, LCK_PW, &lockh);
238                 if (rc) {
239                         de->d_flags &= ~DCACHE_LUSTRE_INVALID;
240                         if (it && it->it_op == IT_GETATTR) {
241                                 memcpy(it->it_lock_handle, &lockh,
242                                        sizeof(lockh));
243                                 it->it_lock_mode = LCK_PW;
244                                 LL_SAVE_INTENT(de, it);
245                         } else {
246                                 ldlm_lock_decref(&lockh, LCK_PW);
247                         }
248                         RETURN(1);
249                 }
250                 if (S_ISDIR(de->d_inode->i_mode))
251                         ll_invalidate_inode_pages(de->d_inode);
252                 d_unhash_aliases(de->d_inode);
253                 RETURN(0);
254         }
255
256         rc = ll_intent_lock(de->d_parent->d_inode, &de, it, revalidate2_finish);
257         if (rc < 0) {
258                 CERROR("ll_intent_lock: rc %d : it->it_status %d\n", rc,
259                        it->it_status);
260                 RETURN(0);
261         }
262         /* unfortunately ll_intent_lock may cause a callback and revoke our
263            dentry */
264         spin_lock(&dcache_lock);
265         list_del_init(&de->d_hash);
266         spin_unlock(&dcache_lock);
267         d_rehash(de);
268
269         RETURN(1);
270 }
271
272 struct dentry_operations ll_d_ops = {
273         .d_revalidate2 = ll_revalidate2,
274         .d_intent_release = ll_intent_release,
275         .d_release = ll_release,
276         .d_delete = ll_delete,
277 };