Whamcloud - gitweb
LU-1347 build: remove the vim/emacs modelines
[fs/lustre-release.git] / lustre / llite / namei.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, 2012, Whamcloud, Inc.
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/mm.h>
40 #include <linux/smp_lock.h>
41 #include <linux/quotaops.h>
42 #include <linux/highmem.h>
43 #include <linux/pagemap.h>
44 #include <linux/security.h>
45
46 #define DEBUG_SUBSYSTEM S_LLITE
47
48 #include <obd_support.h>
49 #include <lustre_fid.h>
50 #include <lustre_lite.h>
51 #include <lustre_dlm.h>
52 #include <lustre_ver.h>
53 #include "llite_internal.h"
54
55 /*
56  * Check if we have something mounted at the named dchild.
57  * In such a case there would always be dentry present.
58  */
59 static int ll_d_mountpoint(struct dentry *dparent, struct dentry *dchild,
60                            struct qstr *name)
61 {
62         int mounted = 0;
63
64         if (unlikely(dchild)) {
65                 mounted = d_mountpoint(dchild);
66         } else if (dparent) {
67                 dchild = d_lookup(dparent, name);
68                 if (dchild) {
69                         mounted = d_mountpoint(dchild);
70                         dput(dchild);
71                 }
72         }
73         return mounted;
74 }
75
76 int ll_unlock(__u32 mode, struct lustre_handle *lockh)
77 {
78         ENTRY;
79
80         ldlm_lock_decref(lockh, mode);
81
82         RETURN(0);
83 }
84
85
86 /* called from iget5_locked->find_inode() under inode_lock spinlock */
87 static int ll_test_inode(struct inode *inode, void *opaque)
88 {
89         struct ll_inode_info *lli = ll_i2info(inode);
90         struct lustre_md     *md = opaque;
91
92         if (unlikely(!(md->body->valid & OBD_MD_FLID))) {
93                 CERROR("MDS body missing FID\n");
94                 return 0;
95         }
96
97         if (!lu_fid_eq(&lli->lli_fid, &md->body->fid1))
98                 return 0;
99
100         return 1;
101 }
102
103 static int ll_set_inode(struct inode *inode, void *opaque)
104 {
105         struct ll_inode_info *lli = ll_i2info(inode);
106         struct mdt_body *body = ((struct lustre_md *)opaque)->body;
107
108         if (unlikely(!(body->valid & OBD_MD_FLID))) {
109                 CERROR("MDS body missing FID\n");
110                 return -EINVAL;
111         }
112
113         lli->lli_fid = body->fid1;
114         if (unlikely(!(body->valid & OBD_MD_FLTYPE))) {
115                 CERROR("Can not initialize inode "DFID" without object type: "
116                        "valid = "LPX64"\n", PFID(&lli->lli_fid), body->valid);
117                 return -EINVAL;
118         }
119
120         inode->i_mode = (inode->i_mode & ~S_IFMT) | (body->mode & S_IFMT);
121         if (unlikely(inode->i_mode == 0)) {
122                 CERROR("Invalid inode "DFID" type\n", PFID(&lli->lli_fid));
123                 return -EINVAL;
124         }
125
126         ll_lli_init(lli);
127
128         return 0;
129 }
130
131
132 /*
133  * Get an inode by inode number (already instantiated by the intent lookup).
134  * Returns inode or NULL
135  */
136 struct inode *ll_iget(struct super_block *sb, ino_t hash,
137                       struct lustre_md *md)
138 {
139         struct inode         *inode;
140         ENTRY;
141
142         LASSERT(hash != 0);
143         inode = iget5_locked(sb, hash, ll_test_inode, ll_set_inode, md);
144
145         if (inode) {
146                 if (inode->i_state & I_NEW) {
147                         int rc = 0;
148
149                         ll_read_inode2(inode, md);
150                         if (S_ISREG(inode->i_mode) &&
151                             ll_i2info(inode)->lli_clob == NULL)
152                                 rc = cl_file_inode_init(inode, md);
153                         if (rc != 0) {
154                                 md->lsm = NULL;
155                                 make_bad_inode(inode);
156                                 unlock_new_inode(inode);
157                                 iput(inode);
158                                 inode = ERR_PTR(rc);
159                         } else
160                                 unlock_new_inode(inode);
161                 } else if (!(inode->i_state & (I_FREEING | I_CLEAR)))
162                         ll_update_inode(inode, md);
163                 CDEBUG(D_VFSTRACE, "got inode: %p for "DFID"\n",
164                        inode, PFID(&md->body->fid1));
165         }
166         RETURN(inode);
167 }
168
169 static void ll_drop_negative_dentry(struct inode *dir)
170 {
171         struct dentry *dentry, *tmp_alias, *tmp_subdir;
172
173         cfs_spin_lock(&ll_lookup_lock);
174         spin_lock(&dcache_lock);
175 restart:
176         list_for_each_entry_safe(dentry, tmp_alias,
177                                  &dir->i_dentry,d_alias) {
178                 if (!list_empty(&dentry->d_subdirs)) {
179                         struct dentry *child;
180                         list_for_each_entry_safe(child, tmp_subdir,
181                                                  &dentry->d_subdirs,
182                                                  d_child) {
183                                 /* XXX Print some debug here? */
184                                 if (!child->d_inode)
185                                 /* Negative dentry. If we were
186                                    dropping dcache lock, go
187                                    throught the list again */
188                                         if (ll_drop_dentry(child))
189                                                 goto restart;
190                         }
191                 }
192         }
193         spin_unlock(&dcache_lock);
194         cfs_spin_unlock(&ll_lookup_lock);
195 }
196
197
198 int ll_md_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
199                        void *data, int flag)
200 {
201         int rc;
202         struct lustre_handle lockh;
203         ENTRY;
204
205         switch (flag) {
206         case LDLM_CB_BLOCKING:
207                 ldlm_lock2handle(lock, &lockh);
208                 rc = ldlm_cli_cancel(&lockh);
209                 if (rc < 0) {
210                         CDEBUG(D_INODE, "ldlm_cli_cancel: %d\n", rc);
211                         RETURN(rc);
212                 }
213                 break;
214         case LDLM_CB_CANCELING: {
215                 struct inode *inode = ll_inode_from_lock(lock);
216                 struct ll_inode_info *lli;
217                 __u64 bits = lock->l_policy_data.l_inodebits.bits;
218                 struct lu_fid *fid;
219                 ldlm_mode_t mode = lock->l_req_mode;
220
221                 /* Invalidate all dentries associated with this inode */
222                 if (inode == NULL)
223                         break;
224
225                 LASSERT(lock->l_flags & LDLM_FL_CANCELING);
226                 /* For OPEN locks we differentiate between lock modes - CR, CW. PR - bug 22891 */
227                 if (bits & (MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE))
228                         ll_have_md_lock(inode, &bits, LCK_MINMODE);
229
230                 if (bits & MDS_INODELOCK_OPEN)
231                         ll_have_md_lock(inode, &bits, mode);
232
233                 fid = ll_inode2fid(inode);
234                 if (lock->l_resource->lr_name.name[0] != fid_seq(fid) ||
235                     lock->l_resource->lr_name.name[1] != fid_oid(fid) ||
236                     lock->l_resource->lr_name.name[2] != fid_ver(fid)) {
237                         LDLM_ERROR(lock, "data mismatch with object "
238                                    DFID" (%p)", PFID(fid), inode);
239                 }
240
241                 if (bits & MDS_INODELOCK_OPEN) {
242                         int flags = 0;
243                         switch (lock->l_req_mode) {
244                         case LCK_CW:
245                                 flags = FMODE_WRITE;
246                                 break;
247                         case LCK_PR:
248                                 flags = FMODE_EXEC;
249                                 break;
250                         case LCK_CR:
251                                 flags = FMODE_READ;
252                                 break;
253                         default:
254                                 CERROR("Unexpected lock mode for OPEN lock "
255                                        "%d, inode %ld\n", lock->l_req_mode,
256                                        inode->i_ino);
257                         }
258                         ll_md_real_close(inode, flags);
259                 }
260
261                 lli = ll_i2info(inode);
262                 if (bits & MDS_INODELOCK_UPDATE)
263                         lli->lli_flags &= ~LLIF_MDS_SIZE_LOCK;
264
265                 if (S_ISDIR(inode->i_mode) &&
266                      (bits & MDS_INODELOCK_UPDATE)) {
267                         CDEBUG(D_INODE, "invalidating inode %lu\n",
268                                inode->i_ino);
269                         truncate_inode_pages(inode->i_mapping, 0);
270                         ll_drop_negative_dentry(inode);
271                 }
272
273                 if (inode->i_sb->s_root &&
274                     inode != inode->i_sb->s_root->d_inode &&
275                     (bits & MDS_INODELOCK_LOOKUP))
276                         ll_unhash_aliases(inode);
277                 iput(inode);
278                 break;
279         }
280         default:
281                 LBUG();
282         }
283
284         RETURN(0);
285 }
286
287 __u32 ll_i2suppgid(struct inode *i)
288 {
289         if (cfs_curproc_is_in_groups(i->i_gid))
290                 return (__u32)i->i_gid;
291         else
292                 return (__u32)(-1);
293 }
294
295 /* Pack the required supplementary groups into the supplied groups array.
296  * If we don't need to use the groups from the target inode(s) then we
297  * instead pack one or more groups from the user's supplementary group
298  * array in case it might be useful.  Not needed if doing an MDS-side upcall. */
299 void ll_i2gids(__u32 *suppgids, struct inode *i1, struct inode *i2)
300 {
301 #if 0
302         int i;
303 #endif
304
305         LASSERT(i1 != NULL);
306         LASSERT(suppgids != NULL);
307
308         suppgids[0] = ll_i2suppgid(i1);
309
310         if (i2)
311                 suppgids[1] = ll_i2suppgid(i2);
312                 else
313                         suppgids[1] = -1;
314
315 #if 0
316         for (i = 0; i < current_ngroups; i++) {
317                 if (suppgids[0] == -1) {
318                         if (current_groups[i] != suppgids[1])
319                                 suppgids[0] = current_groups[i];
320                         continue;
321                 }
322                 if (suppgids[1] == -1) {
323                         if (current_groups[i] != suppgids[0])
324                                 suppgids[1] = current_groups[i];
325                         continue;
326                 }
327                 break;
328         }
329 #endif
330 }
331
332 static void ll_d_add(struct dentry *de, struct inode *inode)
333 {
334         CDEBUG(D_DENTRY, "adding inode %p to dentry %p\n", inode, de);
335         /* d_instantiate */
336         if (!list_empty(&de->d_alias)) {
337                 spin_unlock(&dcache_lock);
338                 CERROR("dentry %.*s %p alias next %p, prev %p\n",
339                        de->d_name.len, de->d_name.name, de,
340                        de->d_alias.next, de->d_alias.prev);
341                 LBUG();
342         }
343         if (inode)
344                 list_add(&de->d_alias, &inode->i_dentry);
345         de->d_inode = inode;
346         /* d_instantiate() replacement code should initialize security
347          * context. */
348         security_d_instantiate(de, inode);
349
350         /* d_rehash */
351         if (!d_unhashed(de)) {
352                 spin_unlock(&dcache_lock);
353                 CERROR("dentry %.*s %p hash next %p\n",
354                        de->d_name.len, de->d_name.name, de, de->d_hash.next);
355                 LBUG();
356         }
357         d_rehash_cond(de, 0);
358 }
359
360 /* Search "inode"'s alias list for a dentry that has the same name and parent
361  * as de.  If found, return it.  If not found, return de.
362  * Lustre can't use d_add_unique because don't unhash aliases for directory
363  * in ll_revalidate_it.  After revaliadate inode will be have hashed aliases
364  * and it triggers BUG_ON in d_instantiate_unique (bug #10954).
365  */
366 struct dentry *ll_find_alias(struct inode *inode, struct dentry *de)
367 {
368         struct list_head *tmp;
369         struct dentry *dentry;
370         struct dentry *last_discon = NULL;
371
372         cfs_spin_lock(&ll_lookup_lock);
373         spin_lock(&dcache_lock);
374         list_for_each(tmp, &inode->i_dentry) {
375                 dentry = list_entry(tmp, struct dentry, d_alias);
376
377                 /* We are called here with 'de' already on the aliases list. */
378                 if (unlikely(dentry == de)) {
379                         CERROR("whoops\n");
380                         continue;
381                 }
382
383                 if (dentry->d_flags & DCACHE_DISCONNECTED) {
384                         /* LASSERT(last_discon == NULL); LU-405, bz 20055 */
385                         last_discon = dentry;
386                         continue;
387                 }
388
389                 if (dentry->d_parent != de->d_parent)
390                         continue;
391
392                 if (dentry->d_name.hash != de->d_name.hash)
393                         continue;
394
395                 if (dentry->d_name.len != de->d_name.len)
396                         continue;
397
398                 if (memcmp(dentry->d_name.name, de->d_name.name,
399                            de->d_name.len) != 0)
400                         continue;
401
402                 dget_locked(dentry);
403                 ll_dops_init(dentry, 0, 1);
404                 ll_dentry_rehash(dentry, 1);
405                 spin_unlock(&dcache_lock);
406                 cfs_spin_unlock(&ll_lookup_lock);
407                 iput(inode);
408                 CDEBUG(D_DENTRY, "alias dentry %.*s (%p) parent %p inode %p "
409                        "refc %d\n", de->d_name.len, de->d_name.name, de,
410                        de->d_parent, de->d_inode, atomic_read(&de->d_count));
411                 return dentry;
412         }
413
414         if (last_discon) {
415                 CDEBUG(D_DENTRY, "Reuse disconnected dentry %p inode %p "
416                         "refc %d\n", last_discon, last_discon->d_inode,
417                         atomic_read(&last_discon->d_count));
418                 dget_locked(last_discon);
419                 lock_dentry(last_discon);
420                 last_discon->d_flags |= DCACHE_LUSTRE_INVALID;
421                 unlock_dentry(last_discon);
422                 spin_unlock(&dcache_lock);
423                 cfs_spin_unlock(&ll_lookup_lock);
424                 ll_dops_init(last_discon, 1, 1);
425                 d_rehash(de);
426                 d_move(last_discon, de);
427                 iput(inode);
428                 return last_discon;
429         }
430         lock_dentry(de);
431         de->d_flags |= DCACHE_LUSTRE_INVALID;
432         unlock_dentry(de);
433         ll_d_add(de, inode);
434
435         spin_unlock(&dcache_lock);
436         cfs_spin_unlock(&ll_lookup_lock);
437
438         return de;
439 }
440
441 int ll_lookup_it_finish(struct ptlrpc_request *request,
442                         struct lookup_intent *it, void *data)
443 {
444         struct it_cb_data *icbd = data;
445         struct dentry **de = icbd->icbd_childp;
446         struct inode *parent = icbd->icbd_parent;
447         struct inode *inode = NULL;
448         int rc;
449         ENTRY;
450
451         /* NB 1 request reference will be taken away by ll_intent_lock()
452          * when I return */
453         if (!it_disposition(it, DISP_LOOKUP_NEG)) {
454                 struct dentry *save = *de;
455                 __u64 bits = 0;
456
457                 rc = ll_prep_inode(&inode, request, (*de)->d_sb);
458                 if (rc)
459                         RETURN(rc);
460
461                 ll_set_lock_data(ll_i2sbi(parent)->ll_md_exp, inode, it, &bits);
462
463                 /* We used to query real size from OSTs here, but actually
464                    this is not needed. For stat() calls size would be updated
465                    from subsequent do_revalidate()->ll_inode_revalidate_it() in
466                    2.4 and
467                    vfs_getattr_it->ll_getattr()->ll_inode_revalidate_it() in 2.6
468                    Everybody else who needs correct file size would call
469                    ll_glimpse_size or some equivalent themselves anyway.
470                    Also see bug 7198. */
471                 ll_dops_init(*de, 1, 1);
472                 *de = ll_find_alias(inode, *de);
473                 if (*de != save) {
474                         struct ll_dentry_data *lld = ll_d2d(*de);
475
476                         /* just make sure the ll_dentry_data is ready */
477                         if (unlikely(lld == NULL))
478                                 ll_dops_init(*de, 1, 1);
479                 }
480                 /* we have lookup look - unhide dentry */
481                 ll_dentry_reset_flags(*de, bits);
482         } else {
483                 __u64 ibits;
484
485                 ll_dops_init(*de, 1, 1);
486                 /* Check that parent has UPDATE lock. If there is none, we
487                    cannot afford to hash this dentry (done by ll_d_add) as it
488                    might get picked up later when UPDATE lock will appear */
489                 ibits = MDS_INODELOCK_UPDATE;
490                 if (ll_have_md_lock(parent, &ibits, LCK_MINMODE)) {
491                         spin_lock(&dcache_lock);
492                         ll_d_add(*de, NULL);
493                         spin_unlock(&dcache_lock);
494                 } else {
495                         /* negative lookup - and don't have update lock to
496                          * parent */
497                         lock_dentry(*de);
498                         (*de)->d_flags |= DCACHE_LUSTRE_INVALID;
499                         unlock_dentry(*de);
500
501                         (*de)->d_inode = NULL;
502                         /* We do not want to hash the dentry if don`t have a
503                          * lock, but if this dentry is later used in d_move,
504                          * we'd hit uninitialised list head d_hash, so we just
505                          * do this to init d_hash field but leave dentry
506                          * unhashed. (bug 10796). */
507                         d_rehash(*de);
508                         d_drop(*de);
509                 }
510         }
511
512         RETURN(0);
513 }
514
515 static struct dentry *ll_lookup_it(struct inode *parent, struct dentry *dentry,
516                                    struct lookup_intent *it, int lookup_flags)
517 {
518         struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
519         struct dentry *save = dentry, *retval;
520         struct ptlrpc_request *req = NULL;
521         struct md_op_data *op_data;
522         struct it_cb_data icbd;
523         __u32 opc;
524         int rc;
525         ENTRY;
526
527         if (dentry->d_name.len > ll_i2sbi(parent)->ll_namelen)
528                 RETURN(ERR_PTR(-ENAMETOOLONG));
529
530         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%lu/%u(%p),intent=%s\n",
531                dentry->d_name.len, dentry->d_name.name, parent->i_ino,
532                parent->i_generation, parent, LL_IT2STR(it));
533
534         if (d_mountpoint(dentry))
535                 CERROR("Tell Peter, lookup on mtpt, it %s\n", LL_IT2STR(it));
536
537         ll_frob_intent(&it, &lookup_it);
538
539         /* As do_lookup is called before follow_mount, root dentry may be left
540          * not valid, revalidate it here. */
541         if (parent->i_sb->s_root && (parent->i_sb->s_root->d_inode == parent) &&
542             (it->it_op & (IT_OPEN | IT_CREAT))) {
543                 rc = ll_inode_revalidate_it(parent->i_sb->s_root, it,
544                                             MDS_INODELOCK_LOOKUP);
545                 if (rc)
546                         RETURN(ERR_PTR(rc));
547         }
548
549         if (it->it_op == IT_GETATTR) {
550                 rc = ll_statahead_enter(parent, &dentry, 0);
551                 if (rc == 1) {
552                         if (dentry == save)
553                                 GOTO(out, retval = NULL);
554                         GOTO(out, retval = dentry);
555                 }
556         }
557
558         icbd.icbd_childp = &dentry;
559         icbd.icbd_parent = parent;
560
561         if (it->it_op & IT_CREAT ||
562             (it->it_op & IT_OPEN && it->it_create_mode & O_CREAT))
563                 opc = LUSTRE_OPC_CREATE;
564         else
565                 opc = LUSTRE_OPC_ANY;
566
567         op_data = ll_prep_md_op_data(NULL, parent, NULL, dentry->d_name.name,
568                                      dentry->d_name.len, lookup_flags, opc,
569                                      NULL);
570         if (IS_ERR(op_data))
571                 RETURN((void *)op_data);
572
573         it->it_create_mode &= ~cfs_curproc_umask();
574
575         rc = md_intent_lock(ll_i2mdexp(parent), op_data, NULL, 0, it,
576                             lookup_flags, &req, ll_md_blocking_ast, 0);
577         ll_finish_md_op_data(op_data);
578         if (rc < 0)
579                 GOTO(out, retval = ERR_PTR(rc));
580
581         rc = ll_lookup_it_finish(req, it, &icbd);
582         if (rc != 0) {
583                 ll_intent_release(it);
584                 GOTO(out, retval = ERR_PTR(rc));
585         }
586
587         if ((it->it_op & IT_OPEN) && dentry->d_inode &&
588             !S_ISREG(dentry->d_inode->i_mode) &&
589             !S_ISDIR(dentry->d_inode->i_mode)) {
590                 ll_release_openhandle(dentry, it);
591         }
592         ll_lookup_finish_locks(it, dentry);
593
594         if (dentry == save)
595                 GOTO(out, retval = NULL);
596         else
597                 GOTO(out, retval = dentry);
598  out:
599         if (req)
600                 ptlrpc_req_finished(req);
601         if (it->it_op == IT_GETATTR && (retval == NULL || retval == dentry))
602                 ll_statahead_mark(parent, dentry);
603         return retval;
604 }
605
606 struct lookup_intent *ll_convert_intent(struct open_intent *oit,
607                                         int lookup_flags)
608 {
609         struct lookup_intent *it;
610
611         OBD_ALLOC(it, sizeof(*it));
612         if (!it)
613                 return ERR_PTR(-ENOMEM);
614
615         if (lookup_flags & LOOKUP_OPEN) {
616                 it->it_op = IT_OPEN;
617                 if (lookup_flags & LOOKUP_CREATE)
618                         it->it_op |= IT_CREAT;
619                 it->it_create_mode = (oit->create_mode & S_IALLUGO) | S_IFREG;
620                 it->it_flags = oit->flags;
621         } else {
622                 it->it_op = IT_GETATTR;
623         }
624
625         return it;
626 }
627
628 static struct dentry *ll_lookup_nd(struct inode *parent, struct dentry *dentry,
629                                    struct nameidata *nd)
630 {
631         struct dentry *de;
632         ENTRY;
633
634         if (nd && !(nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))) {
635                 struct lookup_intent *it;
636
637 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,17)
638                 /* Did we came here from failed revalidate just to propagate
639                  * its error? */
640                 if (nd->flags & LOOKUP_OPEN)
641                         if (IS_ERR(nd->intent.open.file))
642                                 RETURN((struct dentry *)nd->intent.open.file);
643 #endif
644                 if (ll_d2d(dentry) && ll_d2d(dentry)->lld_it) {
645                         it = ll_d2d(dentry)->lld_it;
646                         ll_d2d(dentry)->lld_it = NULL;
647                 } else {
648                         if ((nd->flags & LOOKUP_CREATE ) && !(nd->flags & LOOKUP_OPEN)) {
649                                 /* We are sure this is new dentry, so we need to create
650                                    our private data and set the dentry ops */ 
651                                 ll_dops_init(dentry, 1, 1);
652                                 RETURN(NULL);
653                         }
654                         it = ll_convert_intent(&nd->intent.open, nd->flags);
655                         if (IS_ERR(it))
656                                 RETURN((struct dentry *)it);
657                 }
658
659                 de = ll_lookup_it(parent, dentry, it, nd->flags);
660                 if (de)
661                         dentry = de;
662                 if ((nd->flags & LOOKUP_OPEN) && !IS_ERR(dentry)) { /* Open */
663                         if (dentry->d_inode &&
664                             it_disposition(it, DISP_OPEN_OPEN)) { /* nocreate */
665                                 if (S_ISFIFO(dentry->d_inode->i_mode)) {
666                                         // We cannot call open here as it would
667                                         // deadlock.
668                                         ptlrpc_req_finished(
669                                                        (struct ptlrpc_request *)
670                                                           it->d.lustre.it_data);
671                                 } else {
672 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,17))
673 /* 2.6.1[456] have a bug in open_namei() that forgets to check
674  * nd->intent.open.file for error, so we need to return it as lookup's result
675  * instead */
676                                         struct file *filp;
677                                         nd->intent.open.file->private_data = it;
678                                         filp =lookup_instantiate_filp(nd,dentry,
679                                                                       NULL);
680                                         if (IS_ERR(filp)) {
681                                                 if (de)
682                                                         dput(de);
683                                                 de = (struct dentry *) filp;
684                                         }
685 #else
686                                         nd->intent.open.file->private_data = it;
687                                         (void)lookup_instantiate_filp(nd,dentry,
688                                                                       NULL);
689 #endif
690
691                                 }
692                         } else if (it_disposition(it, DISP_OPEN_CREATE)) {
693                                 // XXX This can only reliably work on assumption
694                                 // that there are NO hashed negative dentries.
695                                 ll_d2d(dentry)->lld_it = it;
696                                 it = NULL; /* Will be freed in ll_create_nd */
697                                 /* We absolutely depend on ll_create_nd to be
698                                  * called to not leak this intent and possible
699                                  * data attached to it */
700                         }
701                 }
702
703                 if (it) {
704                         ll_intent_release(it);
705                         OBD_FREE(it, sizeof(*it));
706                 }
707         } else {
708                 de = ll_lookup_it(parent, dentry, NULL, 0);
709         }
710
711         RETURN(de);
712 }
713
714 /* We depend on "mode" being set with the proper file type/umask by now */
715 static struct inode *ll_create_node(struct inode *dir, const char *name,
716                                     int namelen, const void *data, int datalen,
717                                     int mode, __u64 extra,
718                                     struct lookup_intent *it)
719 {
720         struct inode *inode = NULL;
721         struct ptlrpc_request *request = NULL;
722         struct ll_sb_info *sbi = ll_i2sbi(dir);
723         int rc;
724         ENTRY;
725
726         LASSERT(it && it->d.lustre.it_disposition);
727
728         LASSERT(it_disposition(it, DISP_ENQ_CREATE_REF));
729         request = it->d.lustre.it_data;
730         it_clear_disposition(it, DISP_ENQ_CREATE_REF);
731         rc = ll_prep_inode(&inode, request, dir->i_sb);
732         if (rc)
733                 GOTO(out, inode = ERR_PTR(rc));
734
735         LASSERT(list_empty(&inode->i_dentry));
736
737         /* We asked for a lock on the directory, but were granted a
738          * lock on the inode.  Since we finally have an inode pointer,
739          * stuff it in the lock. */
740         CDEBUG(D_DLMTRACE, "setting l_ast_data to inode %p (%lu/%u)\n",
741                inode, inode->i_ino, inode->i_generation);
742         ll_set_lock_data(sbi->ll_md_exp, inode, it, NULL);
743         EXIT;
744  out:
745         ptlrpc_req_finished(request);
746         return inode;
747 }
748
749 /*
750  * By the time this is called, we already have created the directory cache
751  * entry for the new file, but it is so far negative - it has no inode.
752  *
753  * We defer creating the OBD object(s) until open, to keep the intent and
754  * non-intent code paths similar, and also because we do not have the MDS
755  * inode number before calling ll_create_node() (which is needed for LOV),
756  * so we would need to do yet another RPC to the MDS to store the LOV EA
757  * data on the MDS.  If needed, we would pass the PACKED lmm as data and
758  * lmm_size in datalen (the MDS still has code which will handle that).
759  *
760  * If the create succeeds, we fill in the inode information
761  * with d_instantiate().
762  */
763 static int ll_create_it(struct inode *dir, struct dentry *dentry, int mode,
764                         struct lookup_intent *it)
765 {
766         struct inode *inode;
767         int rc = 0;
768         ENTRY;
769
770         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%lu/%u(%p),intent=%s\n",
771                dentry->d_name.len, dentry->d_name.name, dir->i_ino,
772                dir->i_generation, dir, LL_IT2STR(it));
773
774         rc = it_open_error(DISP_OPEN_CREATE, it);
775         if (rc)
776                 RETURN(rc);
777
778         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len,
779                                NULL, 0, mode, 0, it);
780         if (IS_ERR(inode))
781                 RETURN(PTR_ERR(inode));
782
783         d_instantiate(dentry, inode);
784         /* Negative dentry may be unhashed if parent does not have UPDATE lock,
785          * but some callers, e.g. do_coredump, expect dentry to be hashed after
786          * successful create. Hash it here. */
787         spin_lock(&dcache_lock);
788         if (d_unhashed(dentry))
789                 d_rehash_cond(dentry, 0);
790         spin_unlock(&dcache_lock);
791         RETURN(0);
792 }
793
794 static void ll_update_times(struct ptlrpc_request *request,
795                             struct inode *inode)
796 {
797         struct mdt_body *body = req_capsule_server_get(&request->rq_pill,
798                                                        &RMF_MDT_BODY);
799
800         LASSERT(body);
801         if (body->valid & OBD_MD_FLMTIME &&
802             body->mtime > LTIME_S(inode->i_mtime)) {
803                 CDEBUG(D_INODE, "setting ino %lu mtime from %lu to "LPU64"\n",
804                        inode->i_ino, LTIME_S(inode->i_mtime), body->mtime);
805                 LTIME_S(inode->i_mtime) = body->mtime;
806         }
807         if (body->valid & OBD_MD_FLCTIME &&
808             body->ctime > LTIME_S(inode->i_ctime))
809                 LTIME_S(inode->i_ctime) = body->ctime;
810 }
811
812 static int ll_new_node(struct inode *dir, struct qstr *name,
813                        const char *tgt, int mode, int rdev,
814                        struct dentry *dchild, __u32 opc)
815 {
816         struct ptlrpc_request *request = NULL;
817         struct md_op_data *op_data;
818         struct inode *inode = NULL;
819         struct ll_sb_info *sbi = ll_i2sbi(dir);
820         int tgt_len = 0;
821         int err;
822
823         ENTRY;
824         if (unlikely(tgt != NULL))
825                 tgt_len = strlen(tgt) + 1;
826
827         op_data = ll_prep_md_op_data(NULL, dir, NULL, name->name,
828                                      name->len, 0, opc, NULL);
829         if (IS_ERR(op_data))
830                 GOTO(err_exit, err = PTR_ERR(op_data));
831
832         err = md_create(sbi->ll_md_exp, op_data, tgt, tgt_len, mode,
833                         cfs_curproc_fsuid(), cfs_curproc_fsgid(),
834                         cfs_curproc_cap_pack(), rdev, &request);
835         ll_finish_md_op_data(op_data);
836         if (err)
837                 GOTO(err_exit, err);
838
839         ll_update_times(request, dir);
840
841         if (dchild) {
842                 err = ll_prep_inode(&inode, request, dchild->d_sb);
843                 if (err)
844                      GOTO(err_exit, err);
845
846                 d_drop(dchild);
847                 d_instantiate(dchild, inode);
848         }
849         EXIT;
850 err_exit:
851         ptlrpc_req_finished(request);
852
853         return err;
854 }
855
856 static int ll_mknod_generic(struct inode *dir, struct qstr *name, int mode,
857                             unsigned rdev, struct dentry *dchild)
858 {
859         int err;
860         ENTRY;
861
862         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%lu/%u(%p) mode %o dev %x\n",
863                name->len, name->name, dir->i_ino, dir->i_generation, dir,
864                mode, rdev);
865
866         mode &= ~cfs_curproc_umask();
867
868         switch (mode & S_IFMT) {
869         case 0:
870                 mode |= S_IFREG; /* for mode = 0 case, fallthrough */
871         case S_IFREG:
872         case S_IFCHR:
873         case S_IFBLK:
874         case S_IFIFO:
875         case S_IFSOCK:
876                 err = ll_new_node(dir, name, NULL, mode, rdev, dchild,
877                                   LUSTRE_OPC_MKNOD);
878                 break;
879         case S_IFDIR:
880                 err = -EPERM;
881                 break;
882         default:
883                 err = -EINVAL;
884         }
885
886         if (!err)
887                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_MKNOD, 1);
888
889         RETURN(err);
890 }
891
892 static int ll_create_nd(struct inode *dir, struct dentry *dentry,
893                         int mode, struct nameidata *nd)
894 {
895         struct lookup_intent *it = ll_d2d(dentry)->lld_it;
896         int rc;
897
898         if (!it)
899                 return ll_mknod_generic(dir, &dentry->d_name, mode, 0, dentry);
900
901         ll_d2d(dentry)->lld_it = NULL;
902
903         /* Was there an error? Propagate it! */
904         if (it->d.lustre.it_status) {
905                 rc = it->d.lustre.it_status;
906                 goto out;
907         }
908
909         rc = ll_create_it(dir, dentry, mode, it);
910         if (nd && (nd->flags & LOOKUP_OPEN) && dentry->d_inode) { /* Open */
911                 nd->intent.open.file->private_data = it;
912                 lookup_instantiate_filp(nd, dentry, NULL);
913         }
914
915 out:
916         ll_intent_release(it);
917         OBD_FREE(it, sizeof(*it));
918
919         if (!rc)
920                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_CREATE, 1);
921
922         return rc;
923 }
924
925 static int ll_symlink_generic(struct inode *dir, struct qstr *name,
926                               const char *tgt, struct dentry *dchild)
927 {
928         int err;
929         ENTRY;
930
931         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%lu/%u(%p),target=%.*s\n",
932                name->len, name->name, dir->i_ino, dir->i_generation,
933                dir, 3000, tgt);
934
935         err = ll_new_node(dir, name, (char *)tgt, S_IFLNK | S_IRWXUGO,
936                           0, dchild, LUSTRE_OPC_SYMLINK);
937
938         if (!err)
939                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_SYMLINK, 1);
940
941         RETURN(err);
942 }
943
944 static int ll_link_generic(struct inode *src,  struct inode *dir,
945                            struct qstr *name, struct dentry *dchild)
946 {
947         struct ll_sb_info *sbi = ll_i2sbi(dir);
948         struct ptlrpc_request *request = NULL;
949         struct md_op_data *op_data;
950         int err;
951
952         ENTRY;
953         CDEBUG(D_VFSTRACE,
954                "VFS Op: inode=%lu/%u(%p), dir=%lu/%u(%p), target=%.*s\n",
955                src->i_ino, src->i_generation, src, dir->i_ino,
956                dir->i_generation, dir, name->len, name->name);
957
958         op_data = ll_prep_md_op_data(NULL, src, dir, name->name, name->len,
959                                      0, LUSTRE_OPC_ANY, NULL);
960         if (IS_ERR(op_data))
961                 RETURN(PTR_ERR(op_data));
962
963         err = md_link(sbi->ll_md_exp, op_data, &request);
964         ll_finish_md_op_data(op_data);
965         if (err)
966                 GOTO(out, err);
967         if (dchild)
968                 d_drop(dchild);
969
970         ll_update_times(request, dir);
971         ll_stats_ops_tally(sbi, LPROC_LL_LINK, 1);
972         EXIT;
973 out:
974         ptlrpc_req_finished(request);
975         RETURN(err);
976 }
977
978 static int ll_mkdir_generic(struct inode *dir, struct qstr *name,
979                             int mode, struct dentry *dchild)
980
981 {
982         int err;
983         ENTRY;
984
985         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%lu/%u(%p)\n",
986                name->len, name->name, dir->i_ino, dir->i_generation, dir);
987
988         mode = (mode & (S_IRWXUGO|S_ISVTX) & ~cfs_curproc_umask()) | S_IFDIR;
989         err = ll_new_node(dir, name, NULL, mode, 0, dchild, LUSTRE_OPC_MKDIR);
990
991         if (!err)
992                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_MKDIR, 1);
993
994         RETURN(err);
995 }
996
997 /* Try to find the child dentry by its name.
998    If found, put the result fid into @fid. */
999 static void ll_get_child_fid(struct inode * dir, struct qstr *name,
1000                              struct lu_fid *fid)
1001 {
1002         struct dentry *parent, *child;
1003
1004         parent = list_entry(dir->i_dentry.next, struct dentry, d_alias);
1005         child = d_lookup(parent, name);
1006         if (child) {
1007                 if (child->d_inode)
1008                         *fid = *ll_inode2fid(child->d_inode);
1009                 dput(child);
1010         }
1011 }
1012
1013 static int ll_rmdir_generic(struct inode *dir, struct dentry *dparent,
1014                             struct dentry *dchild, struct qstr *name)
1015 {
1016         struct ptlrpc_request *request = NULL;
1017         struct md_op_data *op_data;
1018         int rc;
1019         ENTRY;
1020
1021         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%lu/%u(%p)\n",
1022                name->len, name->name, dir->i_ino, dir->i_generation, dir);
1023
1024         if (unlikely(ll_d_mountpoint(dparent, dchild, name)))
1025                 RETURN(-EBUSY);
1026
1027         op_data = ll_prep_md_op_data(NULL, dir, NULL, name->name, name->len,
1028                                      S_IFDIR, LUSTRE_OPC_ANY, NULL);
1029         if (IS_ERR(op_data))
1030                 RETURN(PTR_ERR(op_data));
1031
1032         ll_get_child_fid(dir, name, &op_data->op_fid3);
1033         rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
1034         ll_finish_md_op_data(op_data);
1035         if (rc == 0) {
1036                 ll_update_times(request, dir);
1037                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_RMDIR, 1);
1038         }
1039
1040         ptlrpc_req_finished(request);
1041         RETURN(rc);
1042 }
1043
1044 int ll_objects_destroy(struct ptlrpc_request *request, struct inode *dir)
1045 {
1046         struct mdt_body *body;
1047         struct lov_mds_md *eadata;
1048         struct lov_stripe_md *lsm = NULL;
1049         struct obd_trans_info oti = { 0 };
1050         struct obdo *oa;
1051         struct obd_capa *oc = NULL;
1052         int rc;
1053         ENTRY;
1054
1055         /* req is swabbed so this is safe */
1056         body = req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY);
1057         if (!(body->valid & OBD_MD_FLEASIZE))
1058                 RETURN(0);
1059
1060         if (body->eadatasize == 0) {
1061                 CERROR("OBD_MD_FLEASIZE set but eadatasize zero\n");
1062                 GOTO(out, rc = -EPROTO);
1063         }
1064
1065         /* The MDS sent back the EA because we unlinked the last reference
1066          * to this file. Use this EA to unlink the objects on the OST.
1067          * It's opaque so we don't swab here; we leave it to obd_unpackmd() to
1068          * check it is complete and sensible. */
1069         eadata = req_capsule_server_sized_get(&request->rq_pill, &RMF_MDT_MD,
1070                                               body->eadatasize);
1071         LASSERT(eadata != NULL);
1072
1073         rc = obd_unpackmd(ll_i2dtexp(dir), &lsm, eadata, body->eadatasize);
1074         if (rc < 0) {
1075                 CERROR("obd_unpackmd: %d\n", rc);
1076                 GOTO(out, rc);
1077         }
1078         LASSERT(rc >= sizeof(*lsm));
1079
1080         OBDO_ALLOC(oa);
1081         if (oa == NULL)
1082                 GOTO(out_free_memmd, rc = -ENOMEM);
1083
1084         oa->o_id = lsm->lsm_object_id;
1085         oa->o_seq = lsm->lsm_object_seq;
1086         oa->o_mode = body->mode & S_IFMT;
1087         oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE | OBD_MD_FLGROUP;
1088
1089         if (body->valid & OBD_MD_FLCOOKIE) {
1090                 oa->o_valid |= OBD_MD_FLCOOKIE;
1091                 oti.oti_logcookies =
1092                         req_capsule_server_sized_get(&request->rq_pill,
1093                                                      &RMF_LOGCOOKIES,
1094                                                    sizeof(struct llog_cookie) *
1095                                                      lsm->lsm_stripe_count);
1096                 if (oti.oti_logcookies == NULL) {
1097                         oa->o_valid &= ~OBD_MD_FLCOOKIE;
1098                         body->valid &= ~OBD_MD_FLCOOKIE;
1099                 }
1100         }
1101
1102         if (body->valid & OBD_MD_FLOSSCAPA) {
1103                 rc = md_unpack_capa(ll_i2mdexp(dir), request, &RMF_CAPA2, &oc);
1104                 if (rc)
1105                         GOTO(out_free_memmd, rc);
1106         }
1107
1108         rc = obd_destroy(ll_i2dtexp(dir), oa, lsm, &oti, ll_i2mdexp(dir), oc);
1109         capa_put(oc);
1110         OBDO_FREE(oa);
1111         if (rc)
1112                 CERROR("obd destroy objid "LPX64" error %d\n",
1113                        lsm->lsm_object_id, rc);
1114  out_free_memmd:
1115         obd_free_memmd(ll_i2dtexp(dir), &lsm);
1116  out:
1117         return rc;
1118 }
1119
1120 /* ll_unlink_generic() doesn't update the inode with the new link count.
1121  * Instead, ll_ddelete() and ll_d_iput() will update it based upon if there
1122  * is any lock existing. They will recycle dentries and inodes based upon locks
1123  * too. b=20433 */
1124 static int ll_unlink_generic(struct inode *dir, struct dentry *dparent,
1125                              struct dentry *dchild, struct qstr *name)
1126 {
1127         struct ptlrpc_request *request = NULL;
1128         struct md_op_data *op_data;
1129         int rc;
1130         ENTRY;
1131         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%lu/%u(%p)\n",
1132                name->len, name->name, dir->i_ino, dir->i_generation, dir);
1133
1134         /*
1135          * XXX: unlink bind mountpoint maybe call to here,
1136          * just check it as vfs_unlink does.
1137          */
1138         if (unlikely(ll_d_mountpoint(dparent, dchild, name)))
1139                 RETURN(-EBUSY);
1140
1141         op_data = ll_prep_md_op_data(NULL, dir, NULL, name->name,
1142                                      name->len, 0, LUSTRE_OPC_ANY, NULL);
1143         if (IS_ERR(op_data))
1144                 RETURN(PTR_ERR(op_data));
1145
1146         ll_get_child_fid(dir, name, &op_data->op_fid3);
1147         rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
1148         ll_finish_md_op_data(op_data);
1149         if (rc)
1150                 GOTO(out, rc);
1151
1152         ll_update_times(request, dir);
1153         ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_UNLINK, 1);
1154
1155         rc = ll_objects_destroy(request, dir);
1156  out:
1157         ptlrpc_req_finished(request);
1158         RETURN(rc);
1159 }
1160
1161 static int ll_rename_generic(struct inode *src, struct dentry *src_dparent,
1162                              struct dentry *src_dchild, struct qstr *src_name,
1163                              struct inode *tgt, struct dentry *tgt_dparent,
1164                              struct dentry *tgt_dchild, struct qstr *tgt_name)
1165 {
1166         struct ptlrpc_request *request = NULL;
1167         struct ll_sb_info *sbi = ll_i2sbi(src);
1168         struct md_op_data *op_data;
1169         int err;
1170         ENTRY;
1171         CDEBUG(D_VFSTRACE,"VFS Op:oldname=%.*s,src_dir=%lu/%u(%p),newname=%.*s,"
1172                "tgt_dir=%lu/%u(%p)\n", src_name->len, src_name->name,
1173                src->i_ino, src->i_generation, src, tgt_name->len,
1174                tgt_name->name, tgt->i_ino, tgt->i_generation, tgt);
1175
1176         if (unlikely(ll_d_mountpoint(src_dparent, src_dchild, src_name) ||
1177             ll_d_mountpoint(tgt_dparent, tgt_dchild, tgt_name)))
1178                 RETURN(-EBUSY);
1179
1180         op_data = ll_prep_md_op_data(NULL, src, tgt, NULL, 0, 0,
1181                                      LUSTRE_OPC_ANY, NULL);
1182         if (IS_ERR(op_data))
1183                 RETURN(PTR_ERR(op_data));
1184
1185         ll_get_child_fid(src, src_name, &op_data->op_fid3);
1186         ll_get_child_fid(tgt, tgt_name, &op_data->op_fid4);
1187         err = md_rename(sbi->ll_md_exp, op_data,
1188                         src_name->name, src_name->len,
1189                         tgt_name->name, tgt_name->len, &request);
1190         ll_finish_md_op_data(op_data);
1191         if (!err) {
1192                 ll_update_times(request, src);
1193                 ll_update_times(request, tgt);
1194                 ll_stats_ops_tally(sbi, LPROC_LL_RENAME, 1);
1195                 err = ll_objects_destroy(request, src);
1196         }
1197
1198         ptlrpc_req_finished(request);
1199
1200         RETURN(err);
1201 }
1202
1203 static int ll_mknod(struct inode *dir, struct dentry *dchild, int mode,
1204                     ll_dev_t rdev)
1205 {
1206         return ll_mknod_generic(dir, &dchild->d_name, mode,
1207                                 old_encode_dev(rdev), dchild);
1208 }
1209
1210 static int ll_unlink(struct inode * dir, struct dentry *dentry)
1211 {
1212         return ll_unlink_generic(dir, NULL, dentry, &dentry->d_name);
1213 }
1214 static int ll_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1215 {
1216         return ll_mkdir_generic(dir, &dentry->d_name, mode, dentry);
1217 }
1218 static int ll_rmdir(struct inode *dir, struct dentry *dentry)
1219 {
1220         return ll_rmdir_generic(dir, NULL, dentry, &dentry->d_name);
1221 }
1222 static int ll_symlink(struct inode *dir, struct dentry *dentry,
1223                       const char *oldname)
1224 {
1225         return ll_symlink_generic(dir, &dentry->d_name, oldname, dentry);
1226 }
1227 static int ll_link(struct dentry *old_dentry, struct inode *dir,
1228                    struct dentry *new_dentry)
1229 {
1230         return ll_link_generic(old_dentry->d_inode, dir, &new_dentry->d_name,
1231                                new_dentry);
1232 }
1233 static int ll_rename(struct inode *old_dir, struct dentry *old_dentry,
1234                      struct inode *new_dir, struct dentry *new_dentry)
1235 {
1236         int err;
1237         err = ll_rename_generic(old_dir, NULL,
1238                                  old_dentry, &old_dentry->d_name,
1239                                  new_dir, NULL, new_dentry,
1240                                  &new_dentry->d_name);
1241         if (!err) {
1242 #ifndef HAVE_FS_RENAME_DOES_D_MOVE
1243                 if (!S_ISDIR(old_dentry->d_inode->i_mode))
1244 #endif
1245                         d_move(old_dentry, new_dentry);
1246         }
1247         return err;
1248 }
1249
1250 struct inode_operations ll_dir_inode_operations = {
1251         .mknod              = ll_mknod,
1252         .lookup             = ll_lookup_nd,
1253         .create             = ll_create_nd,
1254         /* We need all these non-raw things for NFSD, to not patch it. */
1255         .unlink             = ll_unlink,
1256         .mkdir              = ll_mkdir,
1257         .rmdir              = ll_rmdir,
1258         .symlink            = ll_symlink,
1259         .link               = ll_link,
1260         .rename             = ll_rename,
1261         .setattr            = ll_setattr,
1262         .getattr            = ll_getattr,
1263         .permission         = ll_inode_permission,
1264         .setxattr           = ll_setxattr,
1265         .getxattr           = ll_getxattr,
1266         .listxattr          = ll_listxattr,
1267         .removexattr        = ll_removexattr,
1268 };
1269
1270 struct inode_operations ll_special_inode_operations = {
1271         .setattr        = ll_setattr,
1272         .getattr        = ll_getattr,
1273         .permission     = ll_inode_permission,
1274         .setxattr       = ll_setxattr,
1275         .getxattr       = ll_getxattr,
1276         .listxattr      = ll_listxattr,
1277         .removexattr    = ll_removexattr,
1278 };