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