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