Whamcloud - gitweb
3a85a1326f98429d521f4641c1a0d4e8936307b0
[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.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, 2013, 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 <obd_support.h>
44 #include <lustre_lite.h>
45 #include <lustre/lustre_idl.h>
46 #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         OBD_FREE_PTR(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         ENTRY;
63         LASSERT(de != NULL);
64         lld = ll_d2d(de);
65         if (lld == NULL) /* NFS copies the de->d_op methods (bug 4655) */
66                 RETURN_EXIT;
67
68         if (lld->lld_it) {
69                 ll_intent_release(lld->lld_it);
70                 OBD_FREE(lld->lld_it, sizeof(*lld->lld_it));
71         }
72         LASSERT(lld->lld_cwd_count == 0);
73         LASSERT(lld->lld_mnt_count == 0);
74         de->d_fsdata = NULL;
75         call_rcu(&lld->lld_rcu_head, free_dentry_data);
76
77         EXIT;
78 }
79
80 /* Compare if two dentries are the same.  Don't match if the existing dentry
81  * is marked invalid.  Returns 1 if different, 0 if the same.
82  *
83  * This avoids a race where ll_lookup_it() instantiates a dentry, but we get
84  * an AST before calling d_revalidate_it().  The dentry still exists (marked
85  * INVALID) so d_lookup() matches it, but we have no lock on it (so
86  * lock_match() fails) and we spin around real_lookup(). */
87 #ifdef HAVE_D_COMPARE_7ARGS
88 int ll_dcompare(const struct dentry *parent, const struct inode *pinode,
89                 const struct dentry *dentry, const struct inode *inode,
90                 unsigned int len, const char *str, const struct qstr *name)
91 #else
92 int ll_dcompare(struct dentry *parent, struct qstr *d_name, struct qstr *name)
93 #endif
94 {
95 #ifdef HAVE_D_COMPARE_7ARGS
96         ENTRY;
97
98         if (len != name->len)
99                 RETURN(1);
100
101         if (memcmp(str, name->name, len))
102                 RETURN(1);
103 #else
104         struct dentry *dentry;
105         ENTRY;
106
107         if (d_name->len != name->len)
108                 RETURN(1);
109
110         if (memcmp(d_name->name, name->name, name->len))
111                 RETURN(1);
112
113         /* XXX: d_name must be in-dentry structure */
114         dentry = container_of(d_name, struct dentry, d_name); /* ugh */
115 #endif
116
117         CDEBUG(D_DENTRY, "found name %.*s(%p) flags %#x refc %d\n",
118                name->len, name->name, dentry, dentry->d_flags,
119                d_refcount(dentry));
120
121         /* mountpoint is always valid */
122         if (d_mountpoint((struct dentry *)dentry))
123                 RETURN(0);
124
125         if (d_lustre_invalid(dentry))
126                 RETURN(1);
127
128         RETURN(0);
129 }
130
131 static inline int return_if_equal(struct ldlm_lock *lock, void *data)
132 {
133         if ((lock->l_flags &
134              (LDLM_FL_CANCELING | LDLM_FL_DISCARD_DATA)) ==
135             (LDLM_FL_CANCELING | LDLM_FL_DISCARD_DATA))
136                 return LDLM_ITER_CONTINUE;
137         return LDLM_ITER_STOP;
138 }
139
140 /* find any ldlm lock of the inode in mdc and lov
141  * return 0    not find
142  *        1    find one
143  *      < 0    error */
144 static int find_cbdata(struct inode *inode)
145 {
146         struct ll_sb_info *sbi = ll_i2sbi(inode);
147         struct lov_stripe_md *lsm;
148         int rc = 0;
149         ENTRY;
150
151         LASSERT(inode);
152         rc = md_find_cbdata(sbi->ll_md_exp, ll_inode2fid(inode),
153                             return_if_equal, NULL);
154         if (rc != 0)
155                  RETURN(rc);
156
157         lsm = ccc_inode_lsm_get(inode);
158         if (lsm == NULL)
159                 RETURN(rc);
160
161         rc = obd_find_cbdata(sbi->ll_dt_exp, lsm, return_if_equal, NULL);
162         ccc_inode_lsm_put(inode, lsm);
163
164         RETURN(rc);
165 }
166
167 /**
168  * Called when last reference to a dentry is dropped and dcache wants to know
169  * whether or not it should cache it:
170  * - return 1 to delete the dentry immediately
171  * - return 0 to cache the dentry
172  * Should NOT be called with the dcache lock, see fs/dcache.c
173  */
174 static int ll_ddelete(HAVE_D_DELETE_CONST struct dentry *de)
175 {
176         ENTRY;
177         LASSERT(de);
178
179         CDEBUG(D_DENTRY, "%s dentry %.*s (%p, parent %p, inode %p) %s%s\n",
180                d_lustre_invalid((struct dentry *)de) ? "deleting" : "keeping",
181                de->d_name.len, de->d_name.name, de, de->d_parent, de->d_inode,
182                d_unhashed((struct dentry *)de) ? "" : "hashed,",
183                list_empty(&de->d_subdirs) ? "" : "subdirs");
184
185 #ifdef HAVE_DCACHE_LOCK
186         LASSERT(d_refcount(de) == 0);
187 #else
188         /* kernel >= 2.6.38 last refcount is decreased after this function. */
189         LASSERT(d_refcount(de) == 1);
190 #endif
191
192         /* Disable this piece of code temproarily because this is called
193          * inside dcache_lock so it's not appropriate to do lots of work
194          * here. ATTENTION: Before this piece of code enabling, LU-2487 must be
195          * resolved. */
196 #if 0
197         /* if not ldlm lock for this inode, set i_nlink to 0 so that
198          * this inode can be recycled later b=20433 */
199         if (de->d_inode && !find_cbdata(de->d_inode))
200                 clear_nlink(de->d_inode);
201 #endif
202
203         if (d_lustre_invalid((struct dentry *)de))
204                 RETURN(1);
205         RETURN(0);
206 }
207
208 static int ll_set_dd(struct dentry *de)
209 {
210         ENTRY;
211         LASSERT(de != NULL);
212
213         CDEBUG(D_DENTRY, "ldd on dentry %.*s (%p) parent %p inode %p refc %d\n",
214                 de->d_name.len, de->d_name.name, de, de->d_parent, de->d_inode,
215                 d_refcount(de));
216
217         if (de->d_fsdata == NULL) {
218                 struct ll_dentry_data *lld;
219
220                 OBD_ALLOC_PTR(lld);
221                 if (likely(lld != NULL)) {
222                         spin_lock(&de->d_lock);
223                         if (likely(de->d_fsdata == NULL))
224                                 de->d_fsdata = lld;
225                         else
226                                 OBD_FREE_PTR(lld);
227                         spin_unlock(&de->d_lock);
228                 } else {
229                         RETURN(-ENOMEM);
230                 }
231         }
232
233         RETURN(0);
234 }
235
236 int ll_dops_init(struct dentry *de, int block, int init_sa)
237 {
238         struct ll_dentry_data *lld = ll_d2d(de);
239         int rc = 0;
240
241         if (lld == NULL && block != 0) {
242                 rc = ll_set_dd(de);
243                 if (rc)
244                         return rc;
245
246                 lld = ll_d2d(de);
247         }
248
249         if (lld != NULL && init_sa != 0)
250                 lld->lld_sa_generation = 0;
251
252 #ifdef HAVE_DCACHE_LOCK
253         de->d_op = &ll_d_ops;
254 #else
255         /* kernel >= 2.6.38 d_op is set in d_alloc() */
256         LASSERT(de->d_op == &ll_d_ops);
257 #endif
258         return rc;
259 }
260
261 void ll_intent_drop_lock(struct lookup_intent *it)
262 {
263         if (it->it_op && it->d.lustre.it_lock_mode) {
264                 struct lustre_handle handle;
265
266                 handle.cookie = it->d.lustre.it_lock_handle;
267
268                 CDEBUG(D_DLMTRACE, "releasing lock with cookie "LPX64
269                        " from it %p\n", handle.cookie, it);
270                 ldlm_lock_decref(&handle, it->d.lustre.it_lock_mode);
271
272                 /* bug 494: intent_release may be called multiple times, from
273                  * this thread and we don't want to double-decref this lock */
274                 it->d.lustre.it_lock_mode = 0;
275                 if (it->d.lustre.it_remote_lock_mode != 0) {
276                         handle.cookie = it->d.lustre.it_remote_lock_handle;
277
278                         CDEBUG(D_DLMTRACE, "releasing remote lock with cookie"
279                                LPX64" from it %p\n", handle.cookie, it);
280                         ldlm_lock_decref(&handle,
281                                          it->d.lustre.it_remote_lock_mode);
282                         it->d.lustre.it_remote_lock_mode = 0;
283                 }
284         }
285 }
286
287 void ll_intent_release(struct lookup_intent *it)
288 {
289         ENTRY;
290
291         CDEBUG(D_INFO, "intent %p released\n", it);
292         ll_intent_drop_lock(it);
293         /* We are still holding extra reference on a request, need to free it */
294         if (it_disposition(it, DISP_ENQ_OPEN_REF))
295                  ptlrpc_req_finished(it->d.lustre.it_data); /* ll_file_open */
296         if (it_disposition(it, DISP_ENQ_CREATE_REF)) /* create rec */
297                 ptlrpc_req_finished(it->d.lustre.it_data);
298         if (it_disposition(it, DISP_ENQ_COMPLETE)) /* saved req from revalidate
299                                                     * to lookup */
300                 ptlrpc_req_finished(it->d.lustre.it_data);
301
302         it->d.lustre.it_disposition = 0;
303         it->d.lustre.it_data = NULL;
304         EXIT;
305 }
306
307 void ll_invalidate_aliases(struct inode *inode)
308 {
309         struct dentry *dentry;
310         DECLARE_LL_D_HLIST_NODE_PTR(p);
311         ENTRY;
312
313         LASSERT(inode != NULL);
314
315         CDEBUG(D_INODE, "marking dentries for ino %lu/%u(%p) invalid\n",
316                inode->i_ino, inode->i_generation, inode);
317
318         ll_lock_dcache(inode);
319         ll_d_hlist_for_each_entry(dentry, p, &inode->i_dentry, d_alias) {
320                 CDEBUG(D_DENTRY, "dentry in drop %.*s (%p) parent %p "
321                        "inode %p flags %d\n", dentry->d_name.len,
322                        dentry->d_name.name, dentry, dentry->d_parent,
323                        dentry->d_inode, dentry->d_flags);
324
325                 if (unlikely(dentry == dentry->d_sb->s_root)) {
326                         CERROR("%s: called on root dentry=%p, fid="DFID"\n",
327                                ll_get_fsname(dentry->d_sb, NULL, 0),
328                                dentry, PFID(ll_inode2fid(inode)));
329                         lustre_dump_dentry(dentry, 1);
330                         libcfs_debug_dumpstack(NULL);
331                 }
332
333                 d_lustre_invalidate(dentry, 0);
334         }
335         ll_unlock_dcache(inode);
336
337         EXIT;
338 }
339
340 int ll_revalidate_it_finish(struct ptlrpc_request *request,
341                             struct lookup_intent *it,
342                             struct dentry *de)
343 {
344         int rc = 0;
345         ENTRY;
346
347         if (!request)
348                 RETURN(0);
349
350         if (it_disposition(it, DISP_LOOKUP_NEG))
351                 RETURN(-ENOENT);
352
353         rc = ll_prep_inode(&de->d_inode, request, NULL, it);
354
355         RETURN(rc);
356 }
357
358 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry)
359 {
360         LASSERT(it != NULL);
361         LASSERT(dentry != NULL);
362
363         if (it->d.lustre.it_lock_mode && dentry->d_inode != NULL) {
364                 struct inode *inode = dentry->d_inode;
365                 struct ll_sb_info *sbi = ll_i2sbi(dentry->d_inode);
366
367                 CDEBUG(D_DLMTRACE, "setting l_data to inode %p (%lu/%u)\n",
368                        inode, inode->i_ino, inode->i_generation);
369                 ll_set_lock_data(sbi->ll_md_exp, inode, it, NULL);
370         }
371
372         /* drop lookup or getattr locks immediately */
373         if (it->it_op == IT_LOOKUP || it->it_op == IT_GETATTR) {
374                 /* on 2.6 there are situation when several lookups and
375                  * revalidations may be requested during single operation.
376                  * therefore, we don't release intent here -bzzz */
377                 ll_intent_drop_lock(it);
378         }
379 }
380
381 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft)
382 {
383         struct lookup_intent *it = *itp;
384
385         if (!it || it->it_op == IT_GETXATTR)
386                 it = *itp = deft;
387
388 }
389
390 int ll_revalidate_it(struct dentry *de, int lookup_flags,
391                      struct lookup_intent *it)
392 {
393         struct md_op_data *op_data;
394         struct ptlrpc_request *req = NULL;
395         struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
396         struct obd_export *exp;
397         struct inode *parent = de->d_parent->d_inode;
398         int rc;
399
400         ENTRY;
401         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,intent=%s\n", de->d_name.name,
402                LL_IT2STR(it));
403
404         if (de->d_inode == NULL) {
405                 __u64 ibits;
406
407                 /* We can only use negative dentries if this is stat or lookup,
408                    for opens and stuff we do need to query server. */
409                 /* If there is IT_CREAT in intent op set, then we must throw
410                    away this negative dentry and actually do the request to
411                    kernel to create whatever needs to be created (if possible)*/
412                 if (it && (it->it_op & IT_CREAT))
413                         RETURN(0);
414
415                 if (d_lustre_invalid(de))
416                         RETURN(0);
417
418                 ibits = MDS_INODELOCK_UPDATE;
419                 rc = ll_have_md_lock(parent, &ibits, LCK_MINMODE);
420                 GOTO(out_sa, rc);
421         }
422
423         /* Never execute intents for mount points.
424          * Attributes will be fixed up in ll_inode_revalidate_it */
425         if (d_mountpoint(de))
426                 GOTO(out_sa, rc = 1);
427
428         /* need to get attributes in case root got changed from other client */
429         if (de == de->d_sb->s_root) {
430                 rc = __ll_inode_revalidate_it(de, it, MDS_INODELOCK_LOOKUP);
431                 if (rc == 0)
432                         rc = 1;
433                 GOTO(out_sa, rc);
434         }
435
436         exp = ll_i2mdexp(de->d_inode);
437
438         OBD_FAIL_TIMEOUT(OBD_FAIL_MDC_REVALIDATE_PAUSE, 5);
439         ll_frob_intent(&it, &lookup_it);
440         LASSERT(it);
441
442         if (it->it_op == IT_LOOKUP && !d_lustre_invalid(de))
443                 RETURN(1);
444
445         if (it->it_op == IT_OPEN) {
446                 struct inode *inode = de->d_inode;
447                 struct ll_inode_info *lli = ll_i2info(inode);
448                 struct obd_client_handle **och_p;
449                 __u64 ibits;
450
451                 /*
452                  * We used to check for MDS_INODELOCK_OPEN here, but in fact
453                  * just having LOOKUP lock is enough to justify inode is the
454                  * same. And if inode is the same and we have suitable
455                  * openhandle, then there is no point in doing another OPEN RPC
456                  * just to throw away newly received openhandle.  There are no
457                  * security implications too, if file owner or access mode is
458                  * change, LOOKUP lock is revoked.
459                  */
460
461                 if (it->it_flags & FMODE_WRITE)
462                         och_p = &lli->lli_mds_write_och;
463                 else if (it->it_flags & FMODE_EXEC)
464                         och_p = &lli->lli_mds_exec_och;
465                 else
466                         och_p = &lli->lli_mds_read_och;
467                 /* Check for the proper lock. */
468                 ibits = MDS_INODELOCK_LOOKUP;
469                 if (!ll_have_md_lock(inode, &ibits, LCK_MINMODE))
470                         goto do_lock;
471                 mutex_lock(&lli->lli_och_mutex);
472                 if (*och_p) { /* Everything is open already, do nothing */
473                         /* Originally it was idea to do not let them steal our
474                          * open handle from under us by (*och_usecount)++ here.
475                          * But in case we have the handle, but we cannot use it
476                          * due to later checks (e.g. O_CREAT|O_EXCL flags set),
477                          * nobody would decrement counter increased here. So we
478                          * just hope the lock won't be invalidated in between.
479                          * But if it would be, we'll reopen the open request to
480                          * MDS later during file open path. */
481                         mutex_unlock(&lli->lli_och_mutex);
482                         RETURN(1);
483                 }
484                 mutex_unlock(&lli->lli_och_mutex);
485         }
486
487         if (it->it_op == IT_GETATTR) {
488                 rc = ll_statahead_enter(parent, &de, 0);
489                 if (rc == 1)
490                         goto mark;
491                 else if (rc != -EAGAIN && rc != 0)
492                         GOTO(out, rc = 0);
493         }
494
495 do_lock:
496         op_data = ll_prep_md_op_data(NULL, parent, de->d_inode,
497                                      de->d_name.name, de->d_name.len,
498                                      0, LUSTRE_OPC_ANY, NULL);
499         if (IS_ERR(op_data))
500                 RETURN(PTR_ERR(op_data));
501
502         if (!IS_POSIXACL(parent) || !exp_connect_umask(exp))
503                 it->it_create_mode &= ~cfs_curproc_umask();
504         it->it_create_mode |= M_CHECK_STALE;
505         rc = md_intent_lock(exp, op_data, NULL, 0, it,
506                             lookup_flags,
507                             &req, ll_md_blocking_ast, 0);
508         it->it_create_mode &= ~M_CHECK_STALE;
509         ll_finish_md_op_data(op_data);
510
511         /* If req is NULL, then md_intent_lock only tried to do a lock match;
512          * if all was well, it will return 1 if it found locks, 0 otherwise. */
513         if (req == NULL && rc >= 0) {
514                 if (!rc)
515                         goto do_lookup;
516                 GOTO(out, rc);
517         }
518
519         if (rc < 0) {
520                 if (rc != -ESTALE) {
521                         CDEBUG(D_INFO, "ll_intent_lock: rc %d : it->it_status "
522                                "%d\n", rc, it->d.lustre.it_status);
523                 }
524                 GOTO(out, rc = 0);
525         }
526
527 revalidate_finish:
528         rc = ll_revalidate_it_finish(req, it, de);
529         if (rc != 0) {
530                 if (rc != -ESTALE && rc != -ENOENT)
531                         ll_intent_release(it);
532                 GOTO(out, rc = 0);
533         }
534
535         if ((it->it_op & IT_OPEN) && de->d_inode &&
536             !S_ISREG(de->d_inode->i_mode) &&
537             !S_ISDIR(de->d_inode->i_mode)) {
538                 ll_release_openhandle(de, it);
539         }
540         rc = 1;
541
542 out:
543         /* We do not free request as it may be reused during following lookup
544          * (see comment in mdc/mdc_locks.c::mdc_intent_lock()), request will
545          * be freed in ll_lookup_it or in ll_intent_release. But if
546          * request was not completed, we need to free it. (bug 5154, 9903) */
547         if (req != NULL && !it_disposition(it, DISP_ENQ_COMPLETE))
548                 ptlrpc_req_finished(req);
549         if (rc == 0) {
550                 /* mdt may grant layout lock for the newly created file, so
551                  * release the lock to avoid leaking */
552                 ll_intent_drop_lock(it);
553                 ll_invalidate_aliases(de->d_inode);
554         } else {
555                 __u64 bits = 0;
556                 __u64 matched_bits = 0;
557
558                 CDEBUG(D_DENTRY, "revalidated dentry %.*s (%p) parent %p "
559                        "inode %p refc %d\n", de->d_name.len,
560                        de->d_name.name, de, de->d_parent, de->d_inode,
561                        d_refcount(de));
562
563                 ll_set_lock_data(exp, de->d_inode, it, &bits);
564
565                 /* Note: We have to match both LOOKUP and PERM lock
566                  * here to make sure the dentry is valid and no one
567                  * changing the permission.
568                  * But if the client connects < 2.4 server, which will
569                  * only grant LOOKUP lock, so we can only Match LOOKUP
570                  * lock for old server */
571                 if (exp_connect_flags(ll_i2mdexp(de->d_inode)) &&
572                                                         OBD_CONNECT_LVB_TYPE)
573                         matched_bits =
574                                 MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM;
575                 else
576                         matched_bits = MDS_INODELOCK_LOOKUP;            
577
578                 if (((bits & matched_bits) == matched_bits) &&
579                     d_lustre_invalid(de))
580                         d_lustre_revalidate(de);
581                 ll_lookup_finish_locks(it, de);
582         }
583
584 mark:
585         if (it != NULL && it->it_op == IT_GETATTR && rc > 0)
586                 ll_statahead_mark(parent, de);
587         RETURN(rc);
588
589         /*
590          * This part is here to combat evil-evil race in real_lookup on 2.6
591          * kernels.  The race details are: We enter do_lookup() looking for some
592          * name, there is nothing in dcache for this name yet and d_lookup()
593          * returns NULL.  We proceed to real_lookup(), and while we do this,
594          * another process does open on the same file we looking up (most simple
595          * reproducer), open succeeds and the dentry is added. Now back to
596          * us. In real_lookup() we do d_lookup() again and suddenly find the
597          * dentry, so we call d_revalidate on it, but there is no lock, so
598          * without this code we would return 0, but unpatched real_lookup just
599          * returns -ENOENT in such a case instead of retrying the lookup. Once
600          * this is dealt with in real_lookup(), all of this ugly mess can go and
601          * we can just check locks in ->d_revalidate without doing any RPCs
602          * ever.
603          */
604 do_lookup:
605         if (it != &lookup_it) {
606                 /* MDS_INODELOCK_UPDATE needed for IT_GETATTR case. */
607                 if (it->it_op == IT_GETATTR)
608                         lookup_it.it_op = IT_GETATTR;
609                 ll_lookup_finish_locks(it, de);
610                 it = &lookup_it;
611         }
612
613         /* Do real lookup here. */
614         op_data = ll_prep_md_op_data(NULL, parent, NULL, de->d_name.name,
615                                      de->d_name.len, 0, (it->it_op & IT_CREAT ?
616                                                          LUSTRE_OPC_CREATE :
617                                                          LUSTRE_OPC_ANY), NULL);
618         if (IS_ERR(op_data))
619                 RETURN(PTR_ERR(op_data));
620
621         rc = md_intent_lock(exp, op_data, NULL, 0,  it, 0, &req,
622                             ll_md_blocking_ast, 0);
623         if (rc >= 0) {
624                 struct mdt_body *mdt_body;
625                 struct lu_fid fid = {.f_seq = 0, .f_oid = 0, .f_ver = 0};
626                 mdt_body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
627
628                 if (de->d_inode)
629                         fid = *ll_inode2fid(de->d_inode);
630
631                 /* see if we got same inode, if not - return error */
632                 if (lu_fid_eq(&fid, &mdt_body->fid1)) {
633                         ll_finish_md_op_data(op_data);
634                         op_data = NULL;
635                         goto revalidate_finish;
636                 }
637                 ll_intent_release(it);
638         }
639         ll_finish_md_op_data(op_data);
640         GOTO(out, rc = 0);
641
642 out_sa:
643         /*
644          * For rc == 1 case, should not return directly to prevent losing
645          * statahead windows; for rc == 0 case, the "lookup" will be done later.
646          */
647         if (it != NULL && it->it_op == IT_GETATTR && rc == 1)
648                 ll_statahead_enter(parent, &de, 1);
649         goto mark;
650 }
651
652 #ifdef HAVE_IOP_ATOMIC_OPEN
653 /*
654  * Always trust cached dentries. Update statahead window if necessary.
655  */
656 int ll_revalidate_nd(struct dentry *dentry, unsigned int flags)
657 {
658         struct inode *parent = dentry->d_parent->d_inode;
659         int unplug = 0;
660
661         ENTRY;
662         CDEBUG(D_VFSTRACE, "VFS Op:name=%s,flags=%u\n",
663                dentry->d_name.name, flags);
664
665         if (!(flags & (LOOKUP_PARENT|LOOKUP_OPEN|LOOKUP_CREATE)) &&
666             ll_need_statahead(parent, dentry) > 0) {
667                 if (flags & LOOKUP_RCU)
668                         RETURN(-ECHILD);
669
670                 if (dentry->d_inode == NULL)
671                         unplug = 1;
672                 do_statahead_enter(parent, &dentry, unplug);
673                 ll_statahead_mark(parent, dentry);
674         }
675
676         RETURN(1);
677 }
678
679 #else /* !HAVE_IOP_ATOMIC_OPEN */
680 int ll_revalidate_nd(struct dentry *dentry, struct nameidata *nd)
681 {
682         int rc;
683         ENTRY;
684
685 #ifndef HAVE_DCACHE_LOCK
686         /* kernel >= 2.6.38 supports rcu-walk, but lustre doesn't. */
687         if (nd && (nd->flags & LOOKUP_RCU))
688                 return -ECHILD;
689 #endif
690
691         if (nd && !(nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))) {
692                 struct lookup_intent *it;
693
694                 it = ll_convert_intent(&nd->intent.open, nd->flags);
695                 if (IS_ERR(it))
696                         RETURN(0);
697
698                 if (it->it_op == (IT_OPEN|IT_CREAT) &&
699                     nd->intent.open.flags & O_EXCL) {
700                         CDEBUG(D_VFSTRACE, "create O_EXCL, returning 0\n");
701                         rc = 0;
702                         goto out_it;
703                 }
704
705                 rc = ll_revalidate_it(dentry, nd->flags, it);
706
707                 if (rc && (nd->flags & LOOKUP_OPEN) &&
708                     it_disposition(it, DISP_OPEN_OPEN)) {/*Open*/
709 // XXX Code duplication with ll_lookup_nd
710                         if (S_ISFIFO(dentry->d_inode->i_mode)) {
711                                 // We cannot call open here as it would
712                                 // deadlock.
713                                 ptlrpc_req_finished(
714                                                (struct ptlrpc_request *)
715                                                   it->d.lustre.it_data);
716                         } else {
717                                 struct file *filp;
718
719                                 nd->intent.open.file->private_data = it;
720                                 filp = lookup_instantiate_filp(nd, dentry,NULL);
721                                 if (IS_ERR(filp))
722                                         rc = PTR_ERR(filp);
723                         }
724                 }
725                 if (!rc && (nd->flags & LOOKUP_CREATE) &&
726                     it_disposition(it, DISP_OPEN_CREATE)) {
727                         /* We created something but we may only return
728                          * negative dentry here, so save request in dentry,
729                          * if lookup will be called later on, it will
730                          * pick the request, otherwise it would be freed
731                          * with dentry */
732                         ll_d2d(dentry)->lld_it = it;
733                         it = NULL; /* avoid freeing */
734                 }
735
736 out_it:
737                 if (it) {
738                         ll_intent_release(it);
739                         OBD_FREE(it, sizeof(*it));
740                 }
741         } else {
742                 rc = ll_revalidate_it(dentry, 0, NULL);
743         }
744
745         RETURN(rc);
746 }
747 #endif /* HAVE_IOP_ATOMIC_OPEN */
748
749 void ll_d_iput(struct dentry *de, struct inode *inode)
750 {
751         LASSERT(inode);
752         if (!find_cbdata(inode))
753                 clear_nlink(inode);
754         iput(inode);
755 }
756
757 struct dentry_operations ll_d_ops = {
758         .d_revalidate = ll_revalidate_nd,
759         .d_release = ll_release,
760         .d_delete  = ll_ddelete,
761         .d_iput    = ll_d_iput,
762         .d_compare = ll_dcompare,
763 };