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