Whamcloud - gitweb
7976133bebd7df14aaf6d2a6233e52cc28e6e33e
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #include <linux/fs.h>
34 #include <linux/sched.h>
35 #include <linux/mm.h>
36 #include <linux/quotaops.h>
37 #include <linux/highmem.h>
38 #include <linux/pagemap.h>
39 #include <linux/security.h>
40 #include <linux/user_namespace.h>
41 #ifdef HAVE_UIDGID_HEADER
42 # include <linux/uidgid.h>
43 #endif
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 "llite_internal.h"
51
52 static int ll_create_it(struct inode *dir, struct dentry *dentry,
53                         struct lookup_intent *it,
54                         void *secctx, __u32 secctxlen);
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 = %#llx\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                         rc = cl_file_inode_init(inode, md);
125
126                 if (rc != 0) {
127                         /* Let's clear directory lsm here, otherwise
128                          * make_bad_inode() will reset the inode mode
129                          * to regular, then ll_clear_inode will not
130                          * be able to clear lsm_md */
131                         if (S_ISDIR(inode->i_mode))
132                                 ll_dir_clear_lsm_md(inode);
133                         make_bad_inode(inode);
134                         unlock_new_inode(inode);
135                         iput(inode);
136                         inode = ERR_PTR(rc);
137                 } else {
138                         inode_has_no_xattr(inode);
139                         unlock_new_inode(inode);
140                 }
141         } else if (is_bad_inode(inode)) {
142                 iput(inode);
143                 inode = ERR_PTR(-ESTALE);
144         } else if (!(inode->i_state & (I_FREEING | I_CLEAR))) {
145                 rc = ll_update_inode(inode, md);
146                 CDEBUG(D_VFSTRACE, "got inode: "DFID"(%p): rc = %d\n",
147                        PFID(&md->body->mbo_fid1), inode, rc);
148                 if (rc != 0) {
149                         if (S_ISDIR(inode->i_mode))
150                                 ll_dir_clear_lsm_md(inode);
151                         iput(inode);
152                         inode = ERR_PTR(rc);
153                 }
154         }
155
156         RETURN(inode);
157 }
158
159 static void ll_invalidate_negative_children(struct inode *dir)
160 {
161         struct dentry *dentry, *tmp_subdir;
162         DECLARE_LL_D_HLIST_NODE_PTR(p);
163
164         ll_lock_dcache(dir);
165         ll_d_hlist_for_each_entry(dentry, p, &dir->i_dentry) {
166                 spin_lock(&dentry->d_lock);
167                 if (!list_empty(&dentry->d_subdirs)) {
168                         struct dentry *child;
169
170                         list_for_each_entry_safe(child, tmp_subdir,
171                                                  &dentry->d_subdirs,
172                                                  d_child) {
173                                 if (child->d_inode == NULL)
174                                         d_lustre_invalidate(child, 1);
175                         }
176                 }
177                 spin_unlock(&dentry->d_lock);
178         }
179         ll_unlock_dcache(dir);
180 }
181
182 int ll_test_inode_by_fid(struct inode *inode, void *opaque)
183 {
184         return lu_fid_eq(&ll_i2info(inode)->lli_fid, opaque);
185 }
186
187 int ll_dom_lock_cancel(struct inode *inode, struct ldlm_lock *lock)
188 {
189         struct lu_env *env;
190         struct ll_inode_info *lli = ll_i2info(inode);
191         struct cl_layout clt = { .cl_layout_gen = 0, };
192         int rc;
193         __u16 refcheck;
194
195
196         ENTRY;
197
198         if (!lli->lli_clob)
199                 RETURN(0);
200
201         env = cl_env_get(&refcheck);
202         if (IS_ERR(env))
203                 RETURN(PTR_ERR(env));
204
205         rc = cl_object_layout_get(env, lli->lli_clob, &clt);
206         if (rc) {
207                 CDEBUG(D_INODE, "Cannot get layout for "DFID"\n",
208                        PFID(ll_inode2fid(inode)));
209                 rc = -ENODATA;
210         } else if (clt.cl_size == 0 || clt.cl_dom_comp_size == 0) {
211                 CDEBUG(D_INODE, "DOM lock without DOM layout for "DFID"\n",
212                        PFID(ll_inode2fid(inode)));
213         } else {
214                 enum cl_fsync_mode mode;
215                 loff_t end = clt.cl_dom_comp_size - 1;
216
217                 mode = ldlm_is_discard_data(lock) ?
218                                         CL_FSYNC_DISCARD : CL_FSYNC_LOCAL;
219                 rc = cl_sync_file_range(inode, 0, end, mode, 1);
220                 truncate_inode_pages_range(inode->i_mapping, 0, end);
221         }
222         cl_env_put(env, &refcheck);
223         RETURN(rc);
224 }
225
226 void ll_lock_cancel_bits(struct ldlm_lock *lock, __u64 to_cancel)
227 {
228         struct inode *inode = ll_inode_from_resource_lock(lock);
229         __u64 bits = to_cancel;
230         int rc;
231
232         if (inode == NULL)
233                 return;
234
235         if (!fid_res_name_eq(ll_inode2fid(inode),
236                              &lock->l_resource->lr_name)) {
237                 LDLM_ERROR(lock, "data mismatch with object "DFID"(%p)",
238                            PFID(ll_inode2fid(inode)), inode);
239                 LBUG();
240         }
241
242         if (bits & MDS_INODELOCK_XATTR) {
243                 if (S_ISDIR(inode->i_mode))
244                         ll_i2info(inode)->lli_def_stripe_offset = -1;
245                 ll_xattr_cache_destroy(inode);
246                 bits &= ~MDS_INODELOCK_XATTR;
247         }
248
249         /* For OPEN locks we differentiate between lock modes
250          * LCK_CR, LCK_CW, LCK_PR - bug 22891 */
251         if (bits & MDS_INODELOCK_OPEN)
252                 ll_have_md_lock(inode, &bits, lock->l_req_mode);
253
254         if (bits & MDS_INODELOCK_OPEN) {
255                 fmode_t fmode;
256
257                 switch (lock->l_req_mode) {
258                 case LCK_CW:
259                         fmode = FMODE_WRITE;
260                         break;
261                 case LCK_PR:
262                         fmode = FMODE_EXEC;
263                         break;
264                 case LCK_CR:
265                         fmode = FMODE_READ;
266                         break;
267                 default:
268                         LDLM_ERROR(lock, "bad lock mode for OPEN lock");
269                         LBUG();
270                 }
271
272                 ll_md_real_close(inode, fmode);
273
274                 bits &= ~MDS_INODELOCK_OPEN;
275         }
276
277         if (bits & (MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE |
278                     MDS_INODELOCK_LAYOUT | MDS_INODELOCK_PERM |
279                     MDS_INODELOCK_DOM))
280                 ll_have_md_lock(inode, &bits, LCK_MINMODE);
281
282         if (bits & MDS_INODELOCK_DOM) {
283                 rc =  ll_dom_lock_cancel(inode, lock);
284                 if (rc < 0)
285                         CDEBUG(D_INODE, "cannot flush DoM data "
286                                DFID": rc = %d\n",
287                                PFID(ll_inode2fid(inode)), rc);
288                 lock_res_and_lock(lock);
289                 ldlm_set_kms_ignore(lock);
290                 unlock_res_and_lock(lock);
291         }
292
293         if (bits & MDS_INODELOCK_LAYOUT) {
294                 struct cl_object_conf conf = {
295                         .coc_opc = OBJECT_CONF_INVALIDATE,
296                         .coc_inode = inode,
297                 };
298
299                 rc = ll_layout_conf(inode, &conf);
300                 if (rc < 0)
301                         CDEBUG(D_INODE, "cannot invalidate layout of "
302                                DFID": rc = %d\n",
303                                PFID(ll_inode2fid(inode)), rc);
304         }
305
306         if (bits & MDS_INODELOCK_UPDATE) {
307                 struct ll_inode_info *lli = ll_i2info(inode);
308
309                 lli->lli_update_atime = 1;
310         }
311
312         if ((bits & MDS_INODELOCK_UPDATE) && S_ISDIR(inode->i_mode)) {
313                 struct ll_inode_info *lli = ll_i2info(inode);
314
315                 CDEBUG(D_INODE, "invalidating inode "DFID" lli = %p, "
316                        "pfid  = "DFID"\n", PFID(ll_inode2fid(inode)),
317                        lli, PFID(&lli->lli_pfid));
318                 truncate_inode_pages(inode->i_mapping, 0);
319
320                 if (unlikely(!fid_is_zero(&lli->lli_pfid))) {
321                         struct inode *master_inode = NULL;
322                         unsigned long hash;
323
324                         /* This is slave inode, since all of the child dentry
325                          * is connected on the master inode, so we have to
326                          * invalidate the negative children on master inode */
327                         CDEBUG(D_INODE, "Invalidate s"DFID" m"DFID"\n",
328                                PFID(ll_inode2fid(inode)), PFID(&lli->lli_pfid));
329
330                         hash = cl_fid_build_ino(&lli->lli_pfid,
331                                         ll_need_32bit_api(ll_i2sbi(inode)));
332
333                         /* Do not lookup the inode with ilookup5, otherwise
334                          * it will cause dead lock,
335                          * 1. Client1 send chmod req to the MDT0, then on MDT0,
336                          * it enqueues master and all of its slaves lock,
337                          * (mdt_attr_set() -> mdt_lock_slaves()), after gets
338                          * master and stripe0 lock, it will send the enqueue
339                          * req (for stripe1) to MDT1, then MDT1 finds the lock
340                          * has been granted to client2. Then MDT1 sends blocking
341                          * ast to client2.
342                          * 2. At the same time, client2 tries to unlink
343                          * the striped dir (rm -rf striped_dir), and during
344                          * lookup, it will hold the master inode of the striped
345                          * directory, whose inode state is NEW, then tries to
346                          * revalidate all of its slaves, (ll_prep_inode()->
347                          * ll_iget()->ll_read_inode2()-> ll_update_inode().).
348                          * And it will be blocked on the server side because
349                          * of 1.
350                          * 3. Then the client get the blocking_ast req, cancel
351                          * the lock, but being blocked if using ->ilookup5()),
352                          * because master inode state is NEW. */
353                         master_inode = ilookup5_nowait(inode->i_sb, hash,
354                                                         ll_test_inode_by_fid,
355                                                         (void *)&lli->lli_pfid);
356                         if (master_inode) {
357                                 ll_invalidate_negative_children(master_inode);
358                                 iput(master_inode);
359                         }
360                 } else {
361                         ll_invalidate_negative_children(inode);
362                 }
363         }
364
365         if ((bits & (MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM)) &&
366             inode->i_sb->s_root != NULL &&
367             inode != inode->i_sb->s_root->d_inode)
368                 ll_invalidate_aliases(inode);
369
370         iput(inode);
371 }
372
373 /* Check if the given lock may be downgraded instead of canceling and
374  * that convert is really needed. */
375 int ll_md_need_convert(struct ldlm_lock *lock)
376 {
377         struct ldlm_namespace *ns = ldlm_lock_to_ns(lock);
378         struct inode *inode;
379         __u64 wanted = lock->l_policy_data.l_inodebits.cancel_bits;
380         __u64 bits = lock->l_policy_data.l_inodebits.bits & ~wanted;
381         enum ldlm_mode mode = LCK_MINMODE;
382
383         if (!lock->l_conn_export ||
384             !exp_connect_lock_convert(lock->l_conn_export))
385                 return 0;
386
387         if (!wanted || !bits || ldlm_is_cancel(lock))
388                 return 0;
389
390         /* do not convert locks other than DOM for now */
391         if (!((bits | wanted) & MDS_INODELOCK_DOM))
392                 return 0;
393
394         /* We may have already remaining bits in some other lock so
395          * lock convert will leave us just extra lock for the same bit.
396          * Check if client has other lock with the same bits and the same
397          * or lower mode and don't convert if any.
398          */
399         switch (lock->l_req_mode) {
400         case LCK_PR:
401                 mode = LCK_PR;
402         case LCK_PW:
403                 mode |= LCK_CR;
404                 break;
405         case LCK_CW:
406                 mode = LCK_CW;
407         case LCK_CR:
408                 mode |= LCK_CR;
409                 break;
410         default:
411                 /* do not convert other modes */
412                 return 0;
413         }
414
415         /* is lock is too old to be converted? */
416         lock_res_and_lock(lock);
417         if (ktime_after(ktime_get(),
418                         ktime_add(lock->l_last_used,
419                                   ktime_set(ns->ns_dirty_age_limit, 0)))) {
420                 unlock_res_and_lock(lock);
421                 return 0;
422         }
423         unlock_res_and_lock(lock);
424
425         inode = ll_inode_from_resource_lock(lock);
426         ll_have_md_lock(inode, &bits, mode);
427         iput(inode);
428         return !!(bits);
429 }
430
431 int ll_md_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
432                        void *data, int flag)
433 {
434         struct lustre_handle lockh;
435         __u64 bits = lock->l_policy_data.l_inodebits.bits;
436         int rc;
437
438         ENTRY;
439
440         switch (flag) {
441         case LDLM_CB_BLOCKING:
442         {
443                 __u64 cancel_flags = LCF_ASYNC;
444
445                 if (ll_md_need_convert(lock)) {
446                         cancel_flags |= LCF_CONVERT;
447                         /* For lock convert some cancel actions may require
448                          * this lock with non-dropped canceled bits, e.g. page
449                          * flush for DOM lock. So call ll_lock_cancel_bits()
450                          * here while canceled bits are still set.
451                          */
452                         bits = lock->l_policy_data.l_inodebits.cancel_bits;
453                         if (bits & MDS_INODELOCK_DOM)
454                                 ll_lock_cancel_bits(lock, MDS_INODELOCK_DOM);
455                 }
456                 ldlm_lock2handle(lock, &lockh);
457                 rc = ldlm_cli_cancel(&lockh, cancel_flags);
458                 if (rc < 0) {
459                         CDEBUG(D_INODE, "ldlm_cli_cancel: rc = %d\n", rc);
460                         RETURN(rc);
461                 }
462                 break;
463         }
464         case LDLM_CB_CANCELING:
465                 if (ldlm_is_converting(lock)) {
466                         /* this is called on already converted lock, so
467                          * ibits has remained bits only and cancel_bits
468                          * are bits that were dropped.
469                          * Note that DOM lock is handled prior lock convert
470                          * and is excluded here.
471                          */
472                         bits = lock->l_policy_data.l_inodebits.cancel_bits &
473                                 ~MDS_INODELOCK_DOM;
474                 } else {
475                         LASSERT(ldlm_is_canceling(lock));
476                 }
477                 ll_lock_cancel_bits(lock, bits);
478                 break;
479         default:
480                 LBUG();
481         }
482
483         RETURN(0);
484 }
485
486 __u32 ll_i2suppgid(struct inode *i)
487 {
488         if (in_group_p(i->i_gid))
489                 return (__u32)from_kgid(&init_user_ns, i->i_gid);
490         else
491                 return (__u32) __kgid_val(INVALID_GID);
492 }
493
494 /* Pack the required supplementary groups into the supplied groups array.
495  * If we don't need to use the groups from the target inode(s) then we
496  * instead pack one or more groups from the user's supplementary group
497  * array in case it might be useful.  Not needed if doing an MDS-side upcall. */
498 void ll_i2gids(__u32 *suppgids, struct inode *i1, struct inode *i2)
499 {
500         LASSERT(i1 != NULL);
501         LASSERT(suppgids != NULL);
502
503         suppgids[0] = ll_i2suppgid(i1);
504
505         if (i2)
506                 suppgids[1] = ll_i2suppgid(i2);
507         else
508                 suppgids[1] = -1;
509 }
510
511 /*
512  * try to reuse three types of dentry:
513  * 1. unhashed alias, this one is unhashed by d_invalidate (but it may be valid
514  *    by concurrent .revalidate).
515  * 2. INVALID alias (common case for no valid ldlm lock held, but this flag may
516  *    be cleared by others calling d_lustre_revalidate).
517  * 3. DISCONNECTED alias.
518  */
519 static struct dentry *ll_find_alias(struct inode *inode, struct dentry *dentry)
520 {
521         struct dentry *alias, *discon_alias, *invalid_alias;
522         DECLARE_LL_D_HLIST_NODE_PTR(p);
523
524         if (ll_d_hlist_empty(&inode->i_dentry))
525                 return NULL;
526
527         discon_alias = invalid_alias = NULL;
528
529         ll_lock_dcache(inode);
530         ll_d_hlist_for_each_entry(alias, p, &inode->i_dentry) {
531                 LASSERT(alias != dentry);
532
533                 spin_lock(&alias->d_lock);
534                 if ((alias->d_flags & DCACHE_DISCONNECTED) &&
535                     S_ISDIR(inode->i_mode))
536                         /* LASSERT(last_discon == NULL); LU-405, bz 20055 */
537                         discon_alias = alias;
538                 else if (alias->d_parent == dentry->d_parent             &&
539                          alias->d_name.hash == dentry->d_name.hash       &&
540                          alias->d_name.len == dentry->d_name.len         &&
541                          memcmp(alias->d_name.name, dentry->d_name.name,
542                                 dentry->d_name.len) == 0)
543                         invalid_alias = alias;
544                 spin_unlock(&alias->d_lock);
545
546                 if (invalid_alias)
547                         break;
548         }
549         alias = invalid_alias ?: discon_alias ?: NULL;
550         if (alias) {
551                 spin_lock(&alias->d_lock);
552                 dget_dlock(alias);
553                 spin_unlock(&alias->d_lock);
554         }
555         ll_unlock_dcache(inode);
556
557         return alias;
558 }
559
560 /*
561  * Similar to d_splice_alias(), but lustre treats invalid alias
562  * similar to DCACHE_DISCONNECTED, and tries to use it anyway.
563  */
564 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de)
565 {
566         struct dentry *new;
567         int rc;
568
569         if (inode) {
570                 new = ll_find_alias(inode, de);
571                 if (new) {
572                         rc = ll_d_init(new);
573                         if (rc < 0) {
574                                 dput(new);
575                                 return ERR_PTR(rc);
576                         }
577                         d_move(new, de);
578                         iput(inode);
579                         CDEBUG(D_DENTRY,
580                                "Reuse dentry %p inode %p refc %d flags %#x\n",
581                               new, new->d_inode, ll_d_count(new), new->d_flags);
582                         return new;
583                 }
584         }
585         rc = ll_d_init(de);
586         if (rc < 0)
587                 return ERR_PTR(rc);
588         d_add(de, inode);
589         CDEBUG(D_DENTRY, "Add dentry %p inode %p refc %d flags %#x\n",
590                de, de->d_inode, ll_d_count(de), de->d_flags);
591         return de;
592 }
593
594 static int ll_lookup_it_finish(struct ptlrpc_request *request,
595                                struct lookup_intent *it,
596                                struct inode *parent, struct dentry **de)
597 {
598         struct inode             *inode = NULL;
599         __u64                     bits = 0;
600         int                       rc;
601         struct dentry *alias;
602         ENTRY;
603
604         /* NB 1 request reference will be taken away by ll_intent_lock()
605          * when I return */
606         CDEBUG(D_DENTRY, "it %p it_disposition %x\n", it,
607                it->it_disposition);
608         if (!it_disposition(it, DISP_LOOKUP_NEG)) {
609                 rc = ll_prep_inode(&inode, request, (*de)->d_sb, it);
610                 if (rc)
611                         RETURN(rc);
612
613                 if (it->it_op & IT_OPEN)
614                         ll_dom_finish_open(inode, request, it);
615
616                 ll_set_lock_data(ll_i2sbi(parent)->ll_md_exp, inode, it, &bits);
617
618                 /* We used to query real size from OSTs here, but actually
619                  * this is not needed. For stat() calls size would be updated
620                  * from subsequent do_revalidate()->ll_inode_revalidate_it() in
621                  * 2.4 and
622                  * vfs_getattr_it->ll_getattr()->ll_inode_revalidate_it() in 2.6
623                  * Everybody else who needs correct file size would call
624                  * ll_glimpse_size or some equivalent themselves anyway.
625                  * Also see bug 7198.
626                  */
627         }
628
629         /* Only hash *de if it is unhashed (new dentry).
630          * Atoimc_open may passin hashed dentries for open.
631          */
632         alias = ll_splice_alias(inode, *de);
633         if (IS_ERR(alias))
634                 GOTO(out, rc = PTR_ERR(alias));
635
636         *de = alias;
637
638         if (!it_disposition(it, DISP_LOOKUP_NEG)) {
639                 /* we have lookup look - unhide dentry */
640                 if (bits & MDS_INODELOCK_LOOKUP)
641                         d_lustre_revalidate(*de);
642         } else if (!it_disposition(it, DISP_OPEN_CREATE)) {
643                 /* If file created on server, don't depend on parent UPDATE
644                  * lock to unhide it. It is left hidden and next lookup can
645                  * find it in ll_splice_alias.
646                  */
647                 /* Check that parent has UPDATE lock. */
648                 struct lookup_intent parent_it = {
649                                         .it_op = IT_GETATTR,
650                                         .it_lock_handle = 0 };
651                 struct lu_fid   fid = ll_i2info(parent)->lli_fid;
652
653                 /* If it is striped directory, get the real stripe parent */
654                 if (unlikely(ll_i2info(parent)->lli_lsm_md != NULL)) {
655                         rc = md_get_fid_from_lsm(ll_i2mdexp(parent),
656                                                  ll_i2info(parent)->lli_lsm_md,
657                                                  (*de)->d_name.name,
658                                                  (*de)->d_name.len, &fid);
659                         if (rc != 0)
660                                 GOTO(out, rc);
661                 }
662
663                 if (md_revalidate_lock(ll_i2mdexp(parent), &parent_it, &fid,
664                                        NULL)) {
665                         d_lustre_revalidate(*de);
666                         ll_intent_release(&parent_it);
667                 }
668         }
669
670         GOTO(out, rc = 0);
671
672 out:
673         if (rc != 0 && it->it_op & IT_OPEN)
674                 ll_open_cleanup((*de)->d_sb, request);
675
676         return rc;
677 }
678
679 static struct dentry *ll_lookup_it(struct inode *parent, struct dentry *dentry,
680                                    struct lookup_intent *it,
681                                    void **secctx, __u32 *secctxlen)
682 {
683         struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
684         struct dentry *save = dentry, *retval;
685         struct ptlrpc_request *req = NULL;
686         struct md_op_data *op_data = NULL;
687         __u32 opc;
688         int rc;
689         ENTRY;
690
691         if (dentry->d_name.len > ll_i2sbi(parent)->ll_namelen)
692                 RETURN(ERR_PTR(-ENAMETOOLONG));
693
694         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), intent=%s\n",
695                dentry->d_name.len, dentry->d_name.name,
696                PFID(ll_inode2fid(parent)), parent, LL_IT2STR(it));
697
698         if (d_mountpoint(dentry))
699                 CERROR("Tell Peter, lookup on mtpt, it %s\n", LL_IT2STR(it));
700
701         if (it == NULL || it->it_op == IT_GETXATTR)
702                 it = &lookup_it;
703
704         if (it->it_op == IT_GETATTR && dentry_may_statahead(parent, dentry)) {
705                 rc = ll_statahead(parent, &dentry, 0);
706                 if (rc == 1)
707                         RETURN(dentry == save ? NULL : dentry);
708         }
709
710         if (it->it_op & IT_OPEN && it->it_flags & FMODE_WRITE &&
711             dentry->d_sb->s_flags & MS_RDONLY)
712                 RETURN(ERR_PTR(-EROFS));
713
714         if (it->it_op & IT_CREAT)
715                 opc = LUSTRE_OPC_CREATE;
716         else
717                 opc = LUSTRE_OPC_ANY;
718
719         op_data = ll_prep_md_op_data(NULL, parent, NULL, dentry->d_name.name,
720                                      dentry->d_name.len, 0, opc, NULL);
721         if (IS_ERR(op_data))
722                 GOTO(out, retval = ERR_CAST(op_data));
723
724         /* enforce umask if acl disabled or MDS doesn't support umask */
725         if (!IS_POSIXACL(parent) || !exp_connect_umask(ll_i2mdexp(parent)))
726                 it->it_create_mode &= ~current_umask();
727
728         if (it->it_op & IT_CREAT &&
729             ll_i2sbi(parent)->ll_flags & LL_SBI_FILE_SECCTX) {
730                 rc = ll_dentry_init_security(dentry, it->it_create_mode,
731                                              &dentry->d_name,
732                                              &op_data->op_file_secctx_name,
733                                              &op_data->op_file_secctx,
734                                              &op_data->op_file_secctx_size);
735                 if (rc < 0)
736                         GOTO(out, retval = ERR_PTR(rc));
737                 if (secctx != NULL)
738                         *secctx = op_data->op_file_secctx;
739                 if (secctxlen != NULL)
740                         *secctxlen = op_data->op_file_secctx_size;
741         }
742
743         rc = md_intent_lock(ll_i2mdexp(parent), op_data, it, &req,
744                             &ll_md_blocking_ast, 0);
745         /* If the MDS allows the client to chgrp (CFS_SETGRP_PERM), but the
746          * client does not know which suppgid should be sent to the MDS, or
747          * some other(s) changed the target file's GID after this RPC sent
748          * to the MDS with the suppgid as the original GID, then we should
749          * try again with right suppgid. */
750         if (rc == -EACCES && it->it_op & IT_OPEN &&
751             it_disposition(it, DISP_OPEN_DENY)) {
752                 struct mdt_body *body;
753
754                 LASSERT(req != NULL);
755
756                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
757                 if (op_data->op_suppgids[0] == body->mbo_gid ||
758                     op_data->op_suppgids[1] == body->mbo_gid ||
759                     !in_group_p(make_kgid(&init_user_ns, body->mbo_gid)))
760                         GOTO(out, retval = ERR_PTR(-EACCES));
761
762                 fid_zero(&op_data->op_fid2);
763                 op_data->op_suppgids[1] = body->mbo_gid;
764                 ptlrpc_req_finished(req);
765                 req = NULL;
766                 ll_intent_release(it);
767                 rc = md_intent_lock(ll_i2mdexp(parent), op_data, it, &req,
768                                     &ll_md_blocking_ast, 0);
769         }
770
771         if (rc < 0)
772                 GOTO(out, retval = ERR_PTR(rc));
773
774         rc = ll_lookup_it_finish(req, it, parent, &dentry);
775         if (rc != 0) {
776                 ll_intent_release(it);
777                 GOTO(out, retval = ERR_PTR(rc));
778         }
779
780         if ((it->it_op & IT_OPEN) && dentry->d_inode &&
781             !S_ISREG(dentry->d_inode->i_mode) &&
782             !S_ISDIR(dentry->d_inode->i_mode)) {
783                 ll_release_openhandle(dentry, it);
784         }
785         ll_lookup_finish_locks(it, dentry);
786
787         GOTO(out, retval = (dentry == save) ? NULL : dentry);
788
789 out:
790         if (op_data != NULL && !IS_ERR(op_data)) {
791                 if (secctx != NULL && secctxlen != NULL) {
792                         /* caller needs sec ctx info, so reset it in op_data to
793                          * prevent it from being freed */
794                         op_data->op_file_secctx = NULL;
795                         op_data->op_file_secctx_size = 0;
796                 }
797                 ll_finish_md_op_data(op_data);
798         }
799
800         ptlrpc_req_finished(req);
801         return retval;
802 }
803
804 #ifdef HAVE_IOP_ATOMIC_OPEN
805 static struct dentry *ll_lookup_nd(struct inode *parent, struct dentry *dentry,
806                                    unsigned int flags)
807 {
808         struct lookup_intent *itp, it = { .it_op = IT_GETATTR };
809         struct dentry *de;
810
811         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), flags=%u\n",
812                dentry->d_name.len, dentry->d_name.name,
813                PFID(ll_inode2fid(parent)), parent, flags);
814
815         /*
816          * Optimize away (CREATE && !OPEN). Let .create handle the race.
817          * but only if we have write permissions there, otherwise we need
818          * to proceed with lookup. LU-4185
819          */
820         if ((flags & LOOKUP_CREATE) && !(flags & LOOKUP_OPEN) &&
821             (inode_permission(parent, MAY_WRITE | MAY_EXEC) == 0))
822                 return NULL;
823
824         if (flags & (LOOKUP_PARENT|LOOKUP_OPEN|LOOKUP_CREATE))
825                 itp = NULL;
826         else
827                 itp = &it;
828         de = ll_lookup_it(parent, dentry, itp, NULL, NULL);
829
830         if (itp != NULL)
831                 ll_intent_release(itp);
832
833         return de;
834 }
835
836 /*
837  * For cached negative dentry and new dentry, handle lookup/create/open
838  * together.
839  */
840 static int ll_atomic_open(struct inode *dir, struct dentry *dentry,
841                           struct file *file, unsigned open_flags,
842                           umode_t mode, int *opened)
843 {
844         struct lookup_intent *it;
845         struct dentry *de;
846         long long lookup_flags = LOOKUP_OPEN;
847         void *secctx = NULL;
848         __u32 secctxlen = 0;
849         int rc = 0;
850         ENTRY;
851
852         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), file %p,"
853                            "open_flags %x, mode %x opened %d\n",
854                dentry->d_name.len, dentry->d_name.name,
855                PFID(ll_inode2fid(dir)), dir, file, open_flags, mode, *opened);
856
857         /* Only negative dentries enter here */
858         LASSERT(dentry->d_inode == NULL);
859
860         if (!d_unhashed(dentry)) {
861                 /* A valid negative dentry that just passed revalidation,
862                  * there's little point to try and open it server-side,
863                  * even though there's a minuscule chance it might succeed.
864                  * Either way it's a valid race to just return -ENOENT here.
865                  */
866                 if (!(open_flags & O_CREAT))
867                         return -ENOENT;
868
869                 /* Otherwise we just unhash it to be rehashed afresh via
870                  * lookup if necessary
871                  */
872                 d_drop(dentry);
873         }
874
875         OBD_ALLOC(it, sizeof(*it));
876         if (!it)
877                 RETURN(-ENOMEM);
878
879         it->it_op = IT_OPEN;
880         if (open_flags & O_CREAT) {
881                 it->it_op |= IT_CREAT;
882                 lookup_flags |= LOOKUP_CREATE;
883         }
884         it->it_create_mode = (mode & S_IALLUGO) | S_IFREG;
885         it->it_flags = (open_flags & ~O_ACCMODE) | OPEN_FMODE(open_flags);
886         it->it_flags &= ~MDS_OPEN_FL_INTERNAL;
887
888         /* Dentry added to dcache tree in ll_lookup_it */
889         de = ll_lookup_it(dir, dentry, it, &secctx, &secctxlen);
890         if (IS_ERR(de))
891                 rc = PTR_ERR(de);
892         else if (de != NULL)
893                 dentry = de;
894
895         CFS_FAIL_TIMEOUT(OBD_FAIL_LLITE_CREATE_FILE_PAUSE, cfs_fail_val);
896
897         if (!rc) {
898                 if (it_disposition(it, DISP_OPEN_CREATE)) {
899                         /* Dentry instantiated in ll_create_it. */
900                         rc = ll_create_it(dir, dentry, it, secctx, secctxlen);
901                         security_release_secctx(secctx, secctxlen);
902                         if (rc) {
903                                 /* We dget in ll_splice_alias. */
904                                 if (de != NULL)
905                                         dput(de);
906                                 goto out_release;
907                         }
908
909                         *opened |= FILE_CREATED;
910                 }
911                 if (dentry->d_inode && it_disposition(it, DISP_OPEN_OPEN)) {
912                         /* Open dentry. */
913                         if (S_ISFIFO(dentry->d_inode->i_mode)) {
914                                 /* We cannot call open here as it might
915                                  * deadlock. This case is unreachable in
916                                  * practice because of OBD_CONNECT_NODEVOH. */
917                                 rc = finish_no_open(file, de);
918                         } else {
919                                 file->private_data = it;
920                                 rc = finish_open(file, dentry, NULL, opened);
921                                 /* We dget in ll_splice_alias. finish_open takes
922                                  * care of dget for fd open.
923                                  */
924                                 if (de != NULL)
925                                         dput(de);
926                         }
927                 } else {
928                         rc = finish_no_open(file, de);
929                 }
930         }
931
932 out_release:
933         ll_intent_release(it);
934         OBD_FREE(it, sizeof(*it));
935
936         RETURN(rc);
937 }
938
939 #else /* !HAVE_IOP_ATOMIC_OPEN */
940 static struct lookup_intent *
941 ll_convert_intent(struct open_intent *oit, int lookup_flags, bool is_readonly)
942 {
943         struct lookup_intent *it;
944
945         OBD_ALLOC_PTR(it);
946         if (!it)
947                 return ERR_PTR(-ENOMEM);
948
949         if (lookup_flags & LOOKUP_OPEN) {
950                 it->it_op = IT_OPEN;
951                 /* Avoid file creation for ro bind mount point(is_readonly) */
952                 if ((lookup_flags & LOOKUP_CREATE) && !is_readonly)
953                         it->it_op |= IT_CREAT;
954                 it->it_create_mode = (oit->create_mode & S_IALLUGO) | S_IFREG;
955                 it->it_flags = ll_namei_to_lookup_intent_flag(oit->flags &
956                                                 ~(is_readonly ? O_CREAT : 0));
957                 it->it_flags &= ~MDS_OPEN_FL_INTERNAL;
958         } else {
959                 it->it_op = IT_GETATTR;
960         }
961
962         return it;
963 }
964
965 static struct dentry *ll_lookup_nd(struct inode *parent, struct dentry *dentry,
966                                    struct nameidata *nd)
967 {
968         struct dentry *de;
969         ENTRY;
970
971         if (nd && !(nd->flags & (LOOKUP_CONTINUE|LOOKUP_PARENT))) {
972                 struct lookup_intent *it;
973
974                 if (ll_d2d(dentry) && ll_d2d(dentry)->lld_it) {
975                         it = ll_d2d(dentry)->lld_it;
976                         ll_d2d(dentry)->lld_it = NULL;
977                 } else {
978                         /*
979                          * Optimize away (CREATE && !OPEN). Let .create handle
980                          * the race. But only if we have write permissions
981                          * there, otherwise we need to proceed with lookup.
982                          * LU-4185
983                          */
984                         if ((nd->flags & LOOKUP_CREATE) &&
985                             !(nd->flags & LOOKUP_OPEN) &&
986                             (inode_permission(parent,
987                                               MAY_WRITE | MAY_EXEC) == 0))
988                                 RETURN(NULL);
989
990                         it = ll_convert_intent(&nd->intent.open, nd->flags,
991                                 (nd->path.mnt->mnt_flags & MNT_READONLY) ||
992                                 (nd->path.mnt->mnt_sb->s_flags & MS_RDONLY));
993                         if (IS_ERR(it))
994                                 RETURN((struct dentry *)it);
995                 }
996
997                 de = ll_lookup_it(parent, dentry, it, NULL, NULL);
998                 if (de)
999                         dentry = de;
1000                 if ((nd->flags & LOOKUP_OPEN) && !IS_ERR(dentry)) { /* Open */
1001                         if (dentry->d_inode &&
1002                             it_disposition(it, DISP_OPEN_OPEN)) { /* nocreate */
1003                                 if (S_ISFIFO(dentry->d_inode->i_mode)) {
1004                                         /* We cannot call open here as it might
1005                                          * deadlock. This case is unreachable in
1006                                          * practice because of
1007                                          * OBD_CONNECT_NODEVOH. */
1008                                 } else {
1009                                         struct file *filp;
1010
1011                                         nd->intent.open.file->private_data = it;
1012                                         filp = lookup_instantiate_filp(nd,
1013                                                                        dentry,
1014                                                                        NULL);
1015                                         if (IS_ERR(filp)) {
1016                                                 if (de)
1017                                                         dput(de);
1018                                                 de = (struct dentry *)filp;
1019                                         }
1020                                 }
1021                         } else if (it_disposition(it, DISP_OPEN_CREATE)) {
1022                                 /* XXX This can only reliably work on assumption
1023                                  * that there are NO hashed negative dentries.*/
1024                                 ll_d2d(dentry)->lld_it = it;
1025                                 it = NULL; /* Will be freed in ll_create_nd */
1026                                 /* We absolutely depend on ll_create_nd to be
1027                                  * called to not leak this intent and possible
1028                                  * data attached to it */
1029                         }
1030                 }
1031
1032                 if (it) {
1033                         ll_intent_release(it);
1034                         OBD_FREE(it, sizeof(*it));
1035                 }
1036         } else {
1037                 de = ll_lookup_it(parent, dentry, NULL, NULL, NULL);
1038         }
1039
1040         RETURN(de);
1041 }
1042 #endif /* HAVE_IOP_ATOMIC_OPEN */
1043
1044 /* We depend on "mode" being set with the proper file type/umask by now */
1045 static struct inode *ll_create_node(struct inode *dir, struct lookup_intent *it)
1046 {
1047         struct inode *inode = NULL;
1048         struct ptlrpc_request *request = NULL;
1049         struct ll_sb_info *sbi = ll_i2sbi(dir);
1050         int rc;
1051         ENTRY;
1052
1053         LASSERT(it && it->it_disposition);
1054
1055         LASSERT(it_disposition(it, DISP_ENQ_CREATE_REF));
1056         request = it->it_request;
1057         it_clear_disposition(it, DISP_ENQ_CREATE_REF);
1058         rc = ll_prep_inode(&inode, request, dir->i_sb, it);
1059         if (rc)
1060                 GOTO(out, inode = ERR_PTR(rc));
1061
1062         /* Pause to allow for a race with concurrent access by fid */
1063         OBD_FAIL_TIMEOUT(OBD_FAIL_LLITE_CREATE_NODE_PAUSE, cfs_fail_val);
1064
1065         /* We asked for a lock on the directory, but were granted a
1066          * lock on the inode.  Since we finally have an inode pointer,
1067          * stuff it in the lock. */
1068         CDEBUG(D_DLMTRACE, "setting l_ast_data to inode "DFID"(%p)\n",
1069                PFID(ll_inode2fid(inode)), inode);
1070         ll_set_lock_data(sbi->ll_md_exp, inode, it, NULL);
1071         EXIT;
1072  out:
1073         ptlrpc_req_finished(request);
1074         return inode;
1075 }
1076
1077 /*
1078  * By the time this is called, we already have created the directory cache
1079  * entry for the new file, but it is so far negative - it has no inode.
1080  *
1081  * We defer creating the OBD object(s) until open, to keep the intent and
1082  * non-intent code paths similar, and also because we do not have the MDS
1083  * inode number before calling ll_create_node() (which is needed for LOV),
1084  * so we would need to do yet another RPC to the MDS to store the LOV EA
1085  * data on the MDS.  If needed, we would pass the PACKED lmm as data and
1086  * lmm_size in datalen (the MDS still has code which will handle that).
1087  *
1088  * If the create succeeds, we fill in the inode information
1089  * with d_instantiate().
1090  */
1091 static int ll_create_it(struct inode *dir, struct dentry *dentry,
1092                         struct lookup_intent *it,
1093                         void *secctx, __u32 secctxlen)
1094 {
1095         struct inode *inode;
1096         int rc = 0;
1097         ENTRY;
1098
1099         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), intent=%s\n",
1100                dentry->d_name.len, dentry->d_name.name,
1101                PFID(ll_inode2fid(dir)), dir, LL_IT2STR(it));
1102
1103         rc = it_open_error(DISP_OPEN_CREATE, it);
1104         if (rc)
1105                 RETURN(rc);
1106
1107         inode = ll_create_node(dir, it);
1108         if (IS_ERR(inode))
1109                 RETURN(PTR_ERR(inode));
1110
1111         if ((ll_i2sbi(inode)->ll_flags & LL_SBI_FILE_SECCTX) &&
1112             secctx != NULL) {
1113                 inode_lock(inode);
1114                 /* must be done before d_instantiate, because it calls
1115                  * security_d_instantiate, which means a getxattr if security
1116                  * context is not set yet */
1117                 rc = security_inode_notifysecctx(inode, secctx, secctxlen);
1118                 inode_unlock(inode);
1119                 if (rc)
1120                         RETURN(rc);
1121         }
1122
1123         d_instantiate(dentry, inode);
1124
1125         if (!(ll_i2sbi(inode)->ll_flags & LL_SBI_FILE_SECCTX)) {
1126                 rc = ll_inode_init_security(dentry, inode, dir);
1127                 if (rc)
1128                         RETURN(rc);
1129         }
1130
1131         RETURN(0);
1132 }
1133
1134 void ll_update_times(struct ptlrpc_request *request, struct inode *inode)
1135 {
1136         struct mdt_body *body = req_capsule_server_get(&request->rq_pill,
1137                                                        &RMF_MDT_BODY);
1138
1139         LASSERT(body);
1140         if (body->mbo_valid & OBD_MD_FLMTIME &&
1141             body->mbo_mtime > LTIME_S(inode->i_mtime)) {
1142                 CDEBUG(D_INODE, "setting fid "DFID" mtime from %lu to %llu"
1143                        "\n", PFID(ll_inode2fid(inode)),
1144                        LTIME_S(inode->i_mtime), body->mbo_mtime);
1145                 LTIME_S(inode->i_mtime) = body->mbo_mtime;
1146         }
1147
1148         if (body->mbo_valid & OBD_MD_FLCTIME &&
1149             body->mbo_ctime > LTIME_S(inode->i_ctime))
1150                 LTIME_S(inode->i_ctime) = body->mbo_ctime;
1151 }
1152
1153 static int ll_new_node(struct inode *dir, struct dentry *dchild,
1154                        const char *tgt, umode_t mode, int rdev, __u32 opc)
1155 {
1156         struct qstr *name = &dchild->d_name;
1157         struct ptlrpc_request *request = NULL;
1158         struct md_op_data *op_data;
1159         struct inode *inode = NULL;
1160         struct ll_sb_info *sbi = ll_i2sbi(dir);
1161         int tgt_len = 0;
1162         int err;
1163
1164         ENTRY;
1165         if (unlikely(tgt != NULL))
1166                 tgt_len = strlen(tgt) + 1;
1167
1168 again:
1169         op_data = ll_prep_md_op_data(NULL, dir, NULL, name->name,
1170                                      name->len, 0, opc, NULL);
1171         if (IS_ERR(op_data))
1172                 GOTO(err_exit, err = PTR_ERR(op_data));
1173
1174         if (sbi->ll_flags & LL_SBI_FILE_SECCTX) {
1175                 err = ll_dentry_init_security(dchild, mode, &dchild->d_name,
1176                                               &op_data->op_file_secctx_name,
1177                                               &op_data->op_file_secctx,
1178                                               &op_data->op_file_secctx_size);
1179                 if (err < 0)
1180                         GOTO(err_exit, err);
1181         }
1182
1183         err = md_create(sbi->ll_md_exp, op_data, tgt, tgt_len, mode,
1184                         from_kuid(&init_user_ns, current_fsuid()),
1185                         from_kgid(&init_user_ns, current_fsgid()),
1186                         cfs_curproc_cap_pack(), rdev, &request);
1187         if (err < 0 && err != -EREMOTE)
1188                 GOTO(err_exit, err);
1189
1190         /* If the client doesn't know where to create a subdirectory (or
1191          * in case of a race that sends the RPC to the wrong MDS), the
1192          * MDS will return -EREMOTE and the client will fetch the layout
1193          * of the directory, then create the directory on the right MDT. */
1194         if (unlikely(err == -EREMOTE)) {
1195                 struct ll_inode_info    *lli = ll_i2info(dir);
1196                 struct lmv_user_md      *lum;
1197                 int                     lumsize;
1198                 int                     err2;
1199
1200                 ptlrpc_req_finished(request);
1201                 request = NULL;
1202
1203                 err2 = ll_dir_getstripe(dir, (void **)&lum, &lumsize, &request,
1204                                         OBD_MD_DEFAULT_MEA);
1205                 if (err2 == 0) {
1206                         /* Update stripe_offset and retry */
1207                         lli->lli_def_stripe_offset = lum->lum_stripe_offset;
1208                 } else if (err2 == -ENODATA &&
1209                            lli->lli_def_stripe_offset != -1) {
1210                         /* If there are no default stripe EA on the MDT, but the
1211                          * client has default stripe, then it probably means
1212                          * default stripe EA has just been deleted. */
1213                         lli->lli_def_stripe_offset = -1;
1214                 } else {
1215                         GOTO(err_exit, err);
1216                 }
1217
1218                 ptlrpc_req_finished(request);
1219                 request = NULL;
1220                 ll_finish_md_op_data(op_data);
1221                 goto again;
1222         }
1223
1224         ll_update_times(request, dir);
1225
1226         CFS_FAIL_TIMEOUT(OBD_FAIL_LLITE_NEWNODE_PAUSE, cfs_fail_val);
1227
1228         err = ll_prep_inode(&inode, request, dchild->d_sb, NULL);
1229         if (err)
1230                 GOTO(err_exit, err);
1231
1232         if (sbi->ll_flags & LL_SBI_FILE_SECCTX) {
1233                 inode_lock(inode);
1234                 /* must be done before d_instantiate, because it calls
1235                  * security_d_instantiate, which means a getxattr if security
1236                  * context is not set yet */
1237                 err = security_inode_notifysecctx(inode,
1238                                                   op_data->op_file_secctx,
1239                                                   op_data->op_file_secctx_size);
1240                 inode_unlock(inode);
1241                 if (err)
1242                         GOTO(err_exit, err);
1243         }
1244
1245         d_instantiate(dchild, inode);
1246
1247         if (!(sbi->ll_flags & LL_SBI_FILE_SECCTX)) {
1248                 err = ll_inode_init_security(dchild, inode, dir);
1249                 if (err)
1250                         GOTO(err_exit, err);
1251         }
1252
1253         EXIT;
1254 err_exit:
1255         if (request != NULL)
1256                 ptlrpc_req_finished(request);
1257
1258         if (!IS_ERR_OR_NULL(op_data))
1259                 ll_finish_md_op_data(op_data);
1260
1261         return err;
1262 }
1263
1264 static int ll_mknod(struct inode *dir, struct dentry *dchild, ll_umode_t mode,
1265                     dev_t rdev)
1266 {
1267         struct qstr *name = &dchild->d_name;
1268         int err;
1269         ENTRY;
1270
1271         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p) mode %o dev %x\n",
1272                name->len, name->name, PFID(ll_inode2fid(dir)), dir,
1273                mode, rdev);
1274
1275         if (!IS_POSIXACL(dir) || !exp_connect_umask(ll_i2mdexp(dir)))
1276                 mode &= ~current_umask();
1277
1278         switch (mode & S_IFMT) {
1279         case 0:
1280                 mode |= S_IFREG; /* for mode = 0 case, fallthrough */
1281         case S_IFREG:
1282         case S_IFCHR:
1283         case S_IFBLK:
1284         case S_IFIFO:
1285         case S_IFSOCK:
1286                 err = ll_new_node(dir, dchild, NULL, mode, old_encode_dev(rdev),
1287                                   LUSTRE_OPC_MKNOD);
1288                 break;
1289         case S_IFDIR:
1290                 err = -EPERM;
1291                 break;
1292         default:
1293                 err = -EINVAL;
1294         }
1295
1296         if (!err)
1297                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_MKNOD, 1);
1298
1299         RETURN(err);
1300 }
1301
1302 #ifdef HAVE_IOP_ATOMIC_OPEN
1303 /*
1304  * Plain create. Intent create is handled in atomic_open.
1305  */
1306 static int ll_create_nd(struct inode *dir, struct dentry *dentry,
1307                         umode_t mode, bool want_excl)
1308 {
1309         int rc;
1310
1311         CFS_FAIL_TIMEOUT(OBD_FAIL_LLITE_CREATE_FILE_PAUSE, cfs_fail_val);
1312
1313         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), "
1314                            "flags=%u, excl=%d\n", dentry->d_name.len,
1315                dentry->d_name.name, PFID(ll_inode2fid(dir)),
1316                dir, mode, want_excl);
1317
1318         /* Using mknod(2) to create a regular file is designed to not recognize
1319          * volatile file name, so we use ll_mknod() here. */
1320         rc = ll_mknod(dir, dentry, mode, 0);
1321
1322         ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_CREATE, 1);
1323
1324         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, unhashed %d\n",
1325                dentry->d_name.len, dentry->d_name.name, d_unhashed(dentry));
1326
1327         return rc;
1328 }
1329 #else /* !HAVE_IOP_ATOMIC_OPEN */
1330 static int ll_create_nd(struct inode *dir, struct dentry *dentry,
1331                         ll_umode_t mode, struct nameidata *nd)
1332 {
1333         struct ll_dentry_data *lld = ll_d2d(dentry);
1334         struct lookup_intent *it = NULL;
1335         int rc;
1336
1337         CFS_FAIL_TIMEOUT(OBD_FAIL_LLITE_CREATE_FILE_PAUSE, cfs_fail_val);
1338
1339         if (lld != NULL)
1340                 it = lld->lld_it;
1341
1342         if (!it) {
1343                 /* LU-8559: use LUSTRE_OPC_CREATE for non atomic open case
1344                  * so that volatile file name is recoginized.
1345                  * Mknod(2), however, is designed to not recognize volatile
1346                  * file name to avoid inode leak under orphan directory until
1347                  * MDT reboot */
1348                 return ll_new_node(dir, dentry, NULL, mode, 0,
1349                                    LUSTRE_OPC_CREATE);
1350         }
1351
1352         lld->lld_it = NULL;
1353
1354         /* Was there an error? Propagate it! */
1355         if (it->it_status) {
1356                 rc = it->it_status;
1357                 goto out;
1358         }
1359
1360         rc = ll_create_it(dir, dentry, it, NULL, 0);
1361         if (nd && (nd->flags & LOOKUP_OPEN) && dentry->d_inode) { /* Open */
1362                 struct file *filp;
1363
1364                 nd->intent.open.file->private_data = it;
1365                 filp = lookup_instantiate_filp(nd, dentry, NULL);
1366                 if (IS_ERR(filp))
1367                         rc = PTR_ERR(filp);
1368         }
1369
1370 out:
1371         ll_intent_release(it);
1372         OBD_FREE(it, sizeof(*it));
1373
1374         if (!rc)
1375                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_CREATE, 1);
1376
1377         return rc;
1378 }
1379 #endif /* HAVE_IOP_ATOMIC_OPEN */
1380
1381 static int ll_symlink(struct inode *dir, struct dentry *dchild,
1382                       const char *oldpath)
1383 {
1384         struct qstr *name = &dchild->d_name;
1385         int err;
1386         ENTRY;
1387
1388         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), target=%.*s\n",
1389                name->len, name->name, PFID(ll_inode2fid(dir)),
1390                dir, 3000, oldpath);
1391
1392         err = ll_new_node(dir, dchild, oldpath, S_IFLNK | S_IRWXUGO, 0,
1393                           LUSTRE_OPC_SYMLINK);
1394
1395         if (!err)
1396                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_SYMLINK, 1);
1397
1398         RETURN(err);
1399 }
1400
1401 static int ll_link(struct dentry *old_dentry, struct inode *dir,
1402                    struct dentry *new_dentry)
1403 {
1404         struct inode *src = old_dentry->d_inode;
1405         struct qstr *name = &new_dentry->d_name;
1406         struct ll_sb_info *sbi = ll_i2sbi(dir);
1407         struct ptlrpc_request *request = NULL;
1408         struct md_op_data *op_data;
1409         int err;
1410
1411         ENTRY;
1412         CDEBUG(D_VFSTRACE, "VFS Op: inode="DFID"(%p), dir="DFID"(%p), "
1413                "target=%.*s\n", PFID(ll_inode2fid(src)), src,
1414                PFID(ll_inode2fid(dir)), dir, name->len, name->name);
1415
1416         op_data = ll_prep_md_op_data(NULL, src, dir, name->name, name->len,
1417                                      0, LUSTRE_OPC_ANY, NULL);
1418         if (IS_ERR(op_data))
1419                 RETURN(PTR_ERR(op_data));
1420
1421         err = md_link(sbi->ll_md_exp, op_data, &request);
1422         ll_finish_md_op_data(op_data);
1423         if (err)
1424                 GOTO(out, err);
1425
1426         ll_update_times(request, dir);
1427         ll_stats_ops_tally(sbi, LPROC_LL_LINK, 1);
1428         EXIT;
1429 out:
1430         ptlrpc_req_finished(request);
1431         RETURN(err);
1432 }
1433
1434 static int ll_mkdir(struct inode *dir, struct dentry *dchild, ll_umode_t mode)
1435 {
1436         struct qstr *name = &dchild->d_name;
1437         int err;
1438         ENTRY;
1439
1440         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p)\n",
1441                name->len, name->name, PFID(ll_inode2fid(dir)), dir);
1442
1443         if (!IS_POSIXACL(dir) || !exp_connect_umask(ll_i2mdexp(dir)))
1444                 mode &= ~current_umask();
1445
1446         mode = (mode & (S_IRWXUGO|S_ISVTX)) | S_IFDIR;
1447
1448         err = ll_new_node(dir, dchild, NULL, mode, 0, LUSTRE_OPC_MKDIR);
1449         if (err == 0)
1450                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_MKDIR, 1);
1451
1452         RETURN(err);
1453 }
1454
1455 static int ll_rmdir(struct inode *dir, struct dentry *dchild)
1456 {
1457         struct qstr *name = &dchild->d_name;
1458         struct ptlrpc_request *request = NULL;
1459         struct md_op_data *op_data;
1460         int rc;
1461         ENTRY;
1462
1463         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p)\n",
1464                name->len, name->name, PFID(ll_inode2fid(dir)), dir);
1465
1466         if (unlikely(d_mountpoint(dchild)))
1467                 RETURN(-EBUSY);
1468
1469         op_data = ll_prep_md_op_data(NULL, dir, NULL, name->name, name->len,
1470                                      S_IFDIR, LUSTRE_OPC_ANY, NULL);
1471         if (IS_ERR(op_data))
1472                 RETURN(PTR_ERR(op_data));
1473
1474         if (dchild->d_inode != NULL)
1475                 op_data->op_fid3 = *ll_inode2fid(dchild->d_inode);
1476
1477         op_data->op_fid2 = op_data->op_fid3;
1478         rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
1479         ll_finish_md_op_data(op_data);
1480         if (rc == 0) {
1481                 ll_update_times(request, dir);
1482                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_RMDIR, 1);
1483         }
1484
1485         ptlrpc_req_finished(request);
1486         RETURN(rc);
1487 }
1488
1489 /**
1490  * Remove dir entry
1491  **/
1492 int ll_rmdir_entry(struct inode *dir, char *name, int namelen)
1493 {
1494         struct ptlrpc_request *request = NULL;
1495         struct md_op_data *op_data;
1496         int rc;
1497         ENTRY;
1498
1499         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p)\n",
1500                namelen, name, PFID(ll_inode2fid(dir)), dir);
1501
1502         op_data = ll_prep_md_op_data(NULL, dir, NULL, name, strlen(name),
1503                                      S_IFDIR, LUSTRE_OPC_ANY, NULL);
1504         if (IS_ERR(op_data))
1505                 RETURN(PTR_ERR(op_data));
1506         op_data->op_cli_flags |= CLI_RM_ENTRY;
1507         rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
1508         ll_finish_md_op_data(op_data);
1509         if (rc == 0) {
1510                 ll_update_times(request, dir);
1511                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_RMDIR, 1);
1512         }
1513
1514         ptlrpc_req_finished(request);
1515         RETURN(rc);
1516 }
1517
1518 static int ll_unlink(struct inode *dir, struct dentry *dchild)
1519 {
1520         struct qstr *name = &dchild->d_name;
1521         struct ptlrpc_request *request = NULL;
1522         struct md_op_data *op_data;
1523         struct mdt_body *body;
1524         int rc;
1525         ENTRY;
1526         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p)\n",
1527                name->len, name->name, PFID(ll_inode2fid(dir)), dir);
1528
1529         /*
1530          * XXX: unlink bind mountpoint maybe call to here,
1531          * just check it as vfs_unlink does.
1532          */
1533         if (unlikely(d_mountpoint(dchild)))
1534                 RETURN(-EBUSY);
1535
1536         op_data = ll_prep_md_op_data(NULL, dir, NULL, name->name, name->len, 0,
1537                                      LUSTRE_OPC_ANY, NULL);
1538         if (IS_ERR(op_data))
1539                 RETURN(PTR_ERR(op_data));
1540
1541         op_data->op_fid3 = *ll_inode2fid(dchild->d_inode);
1542
1543         op_data->op_fid2 = op_data->op_fid3;
1544         rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
1545         ll_finish_md_op_data(op_data);
1546         if (rc)
1547                 GOTO(out, rc);
1548
1549         /*
1550          * The server puts attributes in on the last unlink, use them to update
1551          * the link count so the inode can be freed immediately.
1552          */
1553         body = req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY);
1554         if (body->mbo_valid & OBD_MD_FLNLINK)
1555                 set_nlink(dchild->d_inode, body->mbo_nlink);
1556
1557         ll_update_times(request, dir);
1558         ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_UNLINK, 1);
1559
1560 out:
1561         ptlrpc_req_finished(request);
1562         RETURN(rc);
1563 }
1564
1565 static int ll_rename(struct inode *src, struct dentry *src_dchild,
1566                      struct inode *tgt, struct dentry *tgt_dchild
1567 #ifdef HAVE_IOPS_RENAME_WITH_FLAGS
1568                      , unsigned int flags
1569 #endif
1570                      )
1571 {
1572         struct qstr *src_name = &src_dchild->d_name;
1573         struct qstr *tgt_name = &tgt_dchild->d_name;
1574         struct ptlrpc_request *request = NULL;
1575         struct ll_sb_info *sbi = ll_i2sbi(src);
1576         struct md_op_data *op_data;
1577         int err;
1578         ENTRY;
1579
1580 #ifdef HAVE_IOPS_RENAME_WITH_FLAGS
1581         if (flags)
1582                 return -EINVAL;
1583 #endif
1584
1585         CDEBUG(D_VFSTRACE, "VFS Op:oldname=%.*s, src_dir="DFID
1586                "(%p), newname=%.*s, tgt_dir="DFID"(%p)\n",
1587                src_name->len, src_name->name,
1588                PFID(ll_inode2fid(src)), src, tgt_name->len,
1589                tgt_name->name, PFID(ll_inode2fid(tgt)), tgt);
1590
1591         if (unlikely(d_mountpoint(src_dchild) || d_mountpoint(tgt_dchild)))
1592                 RETURN(-EBUSY);
1593
1594         op_data = ll_prep_md_op_data(NULL, src, tgt, NULL, 0, 0,
1595                                      LUSTRE_OPC_ANY, NULL);
1596         if (IS_ERR(op_data))
1597                 RETURN(PTR_ERR(op_data));
1598
1599         if (src_dchild->d_inode != NULL)
1600                 op_data->op_fid3 = *ll_inode2fid(src_dchild->d_inode);
1601
1602         if (tgt_dchild->d_inode != NULL)
1603                 op_data->op_fid4 = *ll_inode2fid(tgt_dchild->d_inode);
1604
1605         err = md_rename(sbi->ll_md_exp, op_data,
1606                         src_name->name, src_name->len,
1607                         tgt_name->name, tgt_name->len, &request);
1608         ll_finish_md_op_data(op_data);
1609         if (!err) {
1610                 ll_update_times(request, src);
1611                 ll_update_times(request, tgt);
1612                 ll_stats_ops_tally(sbi, LPROC_LL_RENAME, 1);
1613         }
1614
1615         ptlrpc_req_finished(request);
1616
1617         if (err == 0)
1618                 d_move(src_dchild, tgt_dchild);
1619
1620         RETURN(err);
1621 }
1622
1623 const struct inode_operations ll_dir_inode_operations = {
1624         .mknod          = ll_mknod,
1625 #ifdef HAVE_IOP_ATOMIC_OPEN
1626         .atomic_open    = ll_atomic_open,
1627 #endif
1628         .lookup         = ll_lookup_nd,
1629         .create         = ll_create_nd,
1630         /* We need all these non-raw things for NFSD, to not patch it. */
1631         .unlink         = ll_unlink,
1632         .mkdir          = ll_mkdir,
1633         .rmdir          = ll_rmdir,
1634         .symlink        = ll_symlink,
1635         .link           = ll_link,
1636         .rename         = ll_rename,
1637         .setattr        = ll_setattr,
1638         .getattr        = ll_getattr,
1639         .permission     = ll_inode_permission,
1640 #ifdef HAVE_IOP_XATTR
1641         .setxattr       = ll_setxattr,
1642         .getxattr       = ll_getxattr,
1643         .removexattr    = ll_removexattr,
1644 #endif
1645         .listxattr      = ll_listxattr,
1646 #ifdef HAVE_IOP_GET_ACL
1647         .get_acl        = ll_get_acl,
1648 #endif
1649 #ifdef HAVE_IOP_SET_ACL
1650         .set_acl        = ll_set_acl,
1651 #endif
1652 };
1653
1654 const struct inode_operations ll_special_inode_operations = {
1655         .setattr        = ll_setattr,
1656         .getattr        = ll_getattr,
1657         .permission     = ll_inode_permission,
1658 #ifdef HAVE_IOP_XATTR
1659         .setxattr       = ll_setxattr,
1660         .getxattr       = ll_getxattr,
1661         .removexattr    = ll_removexattr,
1662 #endif
1663         .listxattr      = ll_listxattr,
1664 #ifdef HAVE_IOP_GET_ACL
1665         .get_acl        = ll_get_acl,
1666 #endif
1667 #ifdef HAVE_IOP_SET_ACL
1668         .set_acl        = ll_set_acl,
1669 #endif
1670 };