Whamcloud - gitweb
de22581ac919b3923fe1518788fbd8207b465c66
[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,
420                                   ktime_set(ns->ns_dirty_age_limit, 0)))) {
421                 unlock_res_and_lock(lock);
422                 return 0;
423         }
424         unlock_res_and_lock(lock);
425
426         inode = ll_inode_from_resource_lock(lock);
427         ll_have_md_lock(inode, &bits, mode);
428         iput(inode);
429         return !!(bits);
430 }
431
432 int ll_md_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *ld,
433                        void *data, int flag)
434 {
435         struct lustre_handle lockh;
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 lock convert is not needed then still have to
446                  * pass lock via ldlm_cli_convert() to keep all states
447                  * correct, set cancel_bits to full lock bits to cause
448                  * full cancel to happen.
449                  */
450                 if (!ll_md_need_convert(lock)) {
451                         lock_res_and_lock(lock);
452                         lock->l_policy_data.l_inodebits.cancel_bits =
453                                         lock->l_policy_data.l_inodebits.bits;
454                         unlock_res_and_lock(lock);
455                 }
456                 rc = ldlm_cli_convert(lock, cancel_flags);
457                 if (!rc)
458                         RETURN(0);
459                 /* continue with cancel otherwise */
460                 ldlm_lock2handle(lock, &lockh);
461                 rc = ldlm_cli_cancel(&lockh, cancel_flags);
462                 if (rc < 0) {
463                         CDEBUG(D_INODE, "ldlm_cli_cancel: rc = %d\n", rc);
464                         RETURN(rc);
465                 }
466                 break;
467         }
468         case LDLM_CB_CANCELING:
469         {
470                 __u64 to_cancel = lock->l_policy_data.l_inodebits.bits;
471
472                 /* Nothing to do for non-granted locks */
473                 if (!ldlm_is_granted(lock))
474                         break;
475
476                 /* If 'ld' is supplied then bits to be cancelled are passed
477                  * implicitly by lock converting and cancel_bits from 'ld'
478                  * should be used. Otherwise full cancel is being performed
479                  * and lock inodebits are used.
480                  *
481                  * Note: we cannot rely on cancel_bits in lock itself at this
482                  * moment because they can be changed by concurrent thread,
483                  * so ldlm_cli_inodebits_convert() pass cancel bits implicitly
484                  * in 'ld' parameter.
485                  */
486                 if (ld) {
487                         /* partial bits cancel allowed only during convert */
488                         LASSERT(ldlm_is_converting(lock));
489                         /* mask cancel bits by lock bits so only no any unused
490                          * bits are passed to ll_lock_cancel_bits()
491                          */
492                         to_cancel &= ld->l_policy_data.l_inodebits.cancel_bits;
493                 }
494                 ll_lock_cancel_bits(lock, to_cancel);
495                 break;
496         }
497         default:
498                 LBUG();
499         }
500
501         RETURN(0);
502 }
503
504 __u32 ll_i2suppgid(struct inode *i)
505 {
506         if (in_group_p(i->i_gid))
507                 return (__u32)from_kgid(&init_user_ns, i->i_gid);
508         else
509                 return (__u32) __kgid_val(INVALID_GID);
510 }
511
512 /* Pack the required supplementary groups into the supplied groups array.
513  * If we don't need to use the groups from the target inode(s) then we
514  * instead pack one or more groups from the user's supplementary group
515  * array in case it might be useful.  Not needed if doing an MDS-side upcall. */
516 void ll_i2gids(__u32 *suppgids, struct inode *i1, struct inode *i2)
517 {
518         LASSERT(i1 != NULL);
519         LASSERT(suppgids != NULL);
520
521         suppgids[0] = ll_i2suppgid(i1);
522
523         if (i2)
524                 suppgids[1] = ll_i2suppgid(i2);
525         else
526                 suppgids[1] = -1;
527 }
528
529 /*
530  * try to reuse three types of dentry:
531  * 1. unhashed alias, this one is unhashed by d_invalidate (but it may be valid
532  *    by concurrent .revalidate).
533  * 2. INVALID alias (common case for no valid ldlm lock held, but this flag may
534  *    be cleared by others calling d_lustre_revalidate).
535  * 3. DISCONNECTED alias.
536  */
537 static struct dentry *ll_find_alias(struct inode *inode, struct dentry *dentry)
538 {
539         struct dentry *alias, *discon_alias, *invalid_alias;
540
541         if (hlist_empty(&inode->i_dentry))
542                 return NULL;
543
544         discon_alias = invalid_alias = NULL;
545
546         spin_lock(&inode->i_lock);
547         hlist_for_each_entry(alias, &inode->i_dentry, d_alias) {
548                 LASSERT(alias != dentry);
549
550                 spin_lock(&alias->d_lock);
551                 if ((alias->d_flags & DCACHE_DISCONNECTED) &&
552                     S_ISDIR(inode->i_mode))
553                         /* LASSERT(last_discon == NULL); LU-405, bz 20055 */
554                         discon_alias = alias;
555                 else if (alias->d_parent == dentry->d_parent             &&
556                          alias->d_name.hash == dentry->d_name.hash       &&
557                          alias->d_name.len == dentry->d_name.len         &&
558                          memcmp(alias->d_name.name, dentry->d_name.name,
559                                 dentry->d_name.len) == 0)
560                         invalid_alias = alias;
561                 spin_unlock(&alias->d_lock);
562
563                 if (invalid_alias)
564                         break;
565         }
566         alias = invalid_alias ?: discon_alias ?: NULL;
567         if (alias) {
568                 spin_lock(&alias->d_lock);
569                 dget_dlock(alias);
570                 spin_unlock(&alias->d_lock);
571         }
572         spin_unlock(&inode->i_lock);
573
574         return alias;
575 }
576
577 /*
578  * Similar to d_splice_alias(), but lustre treats invalid alias
579  * similar to DCACHE_DISCONNECTED, and tries to use it anyway.
580  */
581 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de)
582 {
583         struct dentry *new;
584         int rc;
585
586         if (inode) {
587                 new = ll_find_alias(inode, de);
588                 if (new) {
589                         rc = ll_d_init(new);
590                         if (rc < 0) {
591                                 dput(new);
592                                 return ERR_PTR(rc);
593                         }
594                         d_move(new, de);
595                         iput(inode);
596                         CDEBUG(D_DENTRY,
597                                "Reuse dentry %p inode %p refc %d flags %#x\n",
598                               new, new->d_inode, ll_d_count(new), new->d_flags);
599                         return new;
600                 }
601         }
602         rc = ll_d_init(de);
603         if (rc < 0)
604                 return ERR_PTR(rc);
605         d_add(de, inode);
606         CDEBUG(D_DENTRY, "Add dentry %p inode %p refc %d flags %#x\n",
607                de, de->d_inode, ll_d_count(de), de->d_flags);
608         return de;
609 }
610
611 static int ll_lookup_it_finish(struct ptlrpc_request *request,
612                                struct lookup_intent *it,
613                                struct inode *parent, struct dentry **de,
614                                void *secctx, __u32 secctxlen,
615                                ktime_t kstart)
616 {
617         struct inode             *inode = NULL;
618         __u64                     bits = 0;
619         int                       rc;
620         struct dentry *alias;
621         ENTRY;
622
623         /* NB 1 request reference will be taken away by ll_intent_lock()
624          * when I return */
625         CDEBUG(D_DENTRY, "it %p it_disposition %x\n", it,
626                it->it_disposition);
627         if (!it_disposition(it, DISP_LOOKUP_NEG)) {
628                 struct req_capsule *pill = &request->rq_pill;
629                 struct mdt_body *body = req_capsule_server_get(pill,
630                                                                &RMF_MDT_BODY);
631
632                 rc = ll_prep_inode(&inode, request, (*de)->d_sb, it);
633                 if (rc)
634                         RETURN(rc);
635
636                 if (it->it_op & IT_OPEN)
637                         ll_dom_finish_open(inode, request, it);
638
639                 ll_set_lock_data(ll_i2sbi(parent)->ll_md_exp, inode, it, &bits);
640
641                 /* We used to query real size from OSTs here, but actually
642                  * this is not needed. For stat() calls size would be updated
643                  * from subsequent do_revalidate()->ll_inode_revalidate_it() in
644                  * 2.4 and
645                  * vfs_getattr_it->ll_getattr()->ll_inode_revalidate_it() in 2.6
646                  * Everybody else who needs correct file size would call
647                  * ll_glimpse_size or some equivalent themselves anyway.
648                  * Also see bug 7198.
649                  */
650
651                 /* If security context was returned by MDT, put it in
652                  * inode now to save an extra getxattr from security hooks,
653                  * and avoid deadlock.
654                  */
655                 if (body->mbo_valid & OBD_MD_SECCTX) {
656                         secctx = req_capsule_server_get(pill, &RMF_FILE_SECCTX);
657                         secctxlen = req_capsule_get_size(pill,
658                                                            &RMF_FILE_SECCTX,
659                                                            RCL_SERVER);
660
661                         if (secctxlen)
662                                 CDEBUG(D_SEC, "server returned security context"
663                                        " for "DFID"\n",
664                                        PFID(ll_inode2fid(inode)));
665                 }
666
667                 if (secctx != NULL && secctxlen != 0) {
668                         inode_lock(inode);
669                         rc = security_inode_notifysecctx(inode, secctx,
670                                                          secctxlen);
671                         inode_unlock(inode);
672                         if (rc)
673                                 CWARN("cannot set security context for "
674                                       DFID": rc = %d\n",
675                                       PFID(ll_inode2fid(inode)), rc);
676                 }
677         }
678
679         /* Only hash *de if it is unhashed (new dentry).
680          * Atoimc_open may passin hashed dentries for open.
681          */
682         alias = ll_splice_alias(inode, *de);
683         if (IS_ERR(alias))
684                 GOTO(out, rc = PTR_ERR(alias));
685
686         *de = alias;
687
688         if (!it_disposition(it, DISP_LOOKUP_NEG)) {
689                 /* we have lookup look - unhide dentry */
690                 if (bits & MDS_INODELOCK_LOOKUP)
691                         d_lustre_revalidate(*de);
692         } else if (!it_disposition(it, DISP_OPEN_CREATE)) {
693                 /*
694                  * If file was created on the server, the dentry is revalidated
695                  * in ll_create_it if the lock allows for it.
696                  */
697                 /* Check that parent has UPDATE lock. */
698                 struct lookup_intent parent_it = {
699                                         .it_op = IT_GETATTR,
700                                         .it_lock_handle = 0 };
701                 struct lu_fid   fid = ll_i2info(parent)->lli_fid;
702
703                 /* If it is striped directory, get the real stripe parent */
704                 if (unlikely(ll_dir_striped(parent))) {
705                         rc = md_get_fid_from_lsm(ll_i2mdexp(parent),
706                                                  ll_i2info(parent)->lli_lsm_md,
707                                                  (*de)->d_name.name,
708                                                  (*de)->d_name.len, &fid);
709                         if (rc != 0)
710                                 GOTO(out, rc);
711                 }
712
713                 if (md_revalidate_lock(ll_i2mdexp(parent), &parent_it, &fid,
714                                        NULL)) {
715                         d_lustre_revalidate(*de);
716                         ll_intent_release(&parent_it);
717                 }
718         }
719
720         if (it_disposition(it, DISP_OPEN_CREATE)) {
721                 ll_stats_ops_tally(ll_i2sbi(parent), LPROC_LL_MKNOD,
722                                    ktime_us_delta(ktime_get(), kstart));
723         }
724
725         GOTO(out, rc = 0);
726
727 out:
728         if (rc != 0 && it->it_op & IT_OPEN) {
729                 ll_intent_drop_lock(it);
730                 ll_open_cleanup((*de)->d_sb, request);
731         }
732
733         return rc;
734 }
735
736 static struct dentry *ll_lookup_it(struct inode *parent, struct dentry *dentry,
737                                    struct lookup_intent *it,
738                                    void **secctx, __u32 *secctxlen,
739                                    struct pcc_create_attach *pca)
740 {
741         ktime_t kstart = ktime_get();
742         struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
743         struct dentry *save = dentry, *retval;
744         struct ptlrpc_request *req = NULL;
745         struct md_op_data *op_data = NULL;
746         struct lov_user_md *lum = NULL;
747         __u32 opc;
748         int rc;
749         char secctx_name[XATTR_NAME_MAX + 1];
750
751         ENTRY;
752
753         if (dentry->d_name.len > ll_i2sbi(parent)->ll_namelen)
754                 RETURN(ERR_PTR(-ENAMETOOLONG));
755
756         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), intent=%s\n",
757                dentry->d_name.len, dentry->d_name.name,
758                PFID(ll_inode2fid(parent)), parent, LL_IT2STR(it));
759
760         if (d_mountpoint(dentry))
761                 CERROR("Tell Peter, lookup on mtpt, it %s\n", LL_IT2STR(it));
762
763         if (it == NULL || it->it_op == IT_GETXATTR)
764                 it = &lookup_it;
765
766         if (it->it_op == IT_GETATTR && dentry_may_statahead(parent, dentry)) {
767                 rc = ll_statahead(parent, &dentry, 0);
768                 if (rc == 1)
769                         RETURN(dentry == save ? NULL : dentry);
770         }
771
772         if (it->it_op & IT_OPEN && it->it_flags & FMODE_WRITE &&
773             dentry->d_sb->s_flags & SB_RDONLY)
774                 RETURN(ERR_PTR(-EROFS));
775
776         if (it->it_op & IT_CREAT)
777                 opc = LUSTRE_OPC_CREATE;
778         else
779                 opc = LUSTRE_OPC_ANY;
780
781         op_data = ll_prep_md_op_data(NULL, parent, NULL, dentry->d_name.name,
782                                      dentry->d_name.len, 0, opc, NULL);
783         if (IS_ERR(op_data))
784                 GOTO(out, retval = ERR_CAST(op_data));
785
786         /* enforce umask if acl disabled or MDS doesn't support umask */
787         if (!IS_POSIXACL(parent) || !exp_connect_umask(ll_i2mdexp(parent)))
788                 it->it_create_mode &= ~current_umask();
789
790         if (it->it_op & IT_CREAT &&
791             ll_i2sbi(parent)->ll_flags & LL_SBI_FILE_SECCTX) {
792                 rc = ll_dentry_init_security(dentry, it->it_create_mode,
793                                              &dentry->d_name,
794                                              &op_data->op_file_secctx_name,
795                                              &op_data->op_file_secctx,
796                                              &op_data->op_file_secctx_size);
797                 if (rc < 0)
798                         GOTO(out, retval = ERR_PTR(rc));
799                 if (secctx != NULL)
800                         *secctx = op_data->op_file_secctx;
801                 if (secctxlen != NULL)
802                         *secctxlen = op_data->op_file_secctx_size;
803         } else {
804                 if (secctx != NULL)
805                         *secctx = NULL;
806                 if (secctxlen != NULL)
807                         *secctxlen = 0;
808         }
809
810         /* ask for security context upon intent */
811         if (it->it_op & (IT_LOOKUP | IT_GETATTR | IT_OPEN)) {
812                 /* get name of security xattr to request to server */
813                 rc = ll_listsecurity(parent, secctx_name,
814                                      sizeof(secctx_name));
815                 if (rc < 0) {
816                         CDEBUG(D_SEC, "cannot get security xattr name for "
817                                DFID": rc = %d\n",
818                                PFID(ll_inode2fid(parent)), rc);
819                 } else if (rc > 0) {
820                         op_data->op_file_secctx_name = secctx_name;
821                         op_data->op_file_secctx_name_size = rc;
822                         CDEBUG(D_SEC, "'%.*s' is security xattr for "DFID"\n",
823                                rc, secctx_name, PFID(ll_inode2fid(parent)));
824                 }
825         }
826
827         if (pca && pca->pca_dataset) {
828                 struct pcc_dataset *dataset = pca->pca_dataset;
829
830                 OBD_ALLOC_PTR(lum);
831                 if (lum == NULL)
832                         GOTO(out, retval = ERR_PTR(-ENOMEM));
833
834                 lum->lmm_magic = LOV_USER_MAGIC_V1;
835                 lum->lmm_pattern = LOV_PATTERN_F_RELEASED | LOV_PATTERN_RAID0;
836                 op_data->op_data = lum;
837                 op_data->op_data_size = sizeof(*lum);
838                 op_data->op_archive_id = dataset->pccd_rwid;
839
840                 rc = obd_fid_alloc(NULL, ll_i2mdexp(parent), &op_data->op_fid2,
841                                    op_data);
842                 if (rc)
843                         GOTO(out, retval = ERR_PTR(rc));
844
845                 rc = pcc_inode_create(parent->i_sb, dataset, &op_data->op_fid2,
846                                       &pca->pca_dentry);
847                 if (rc)
848                         GOTO(out, retval = ERR_PTR(rc));
849
850                 it->it_flags |= MDS_OPEN_PCC;
851         }
852
853         rc = md_intent_lock(ll_i2mdexp(parent), op_data, it, &req,
854                             &ll_md_blocking_ast, 0);
855         /* If the MDS allows the client to chgrp (CFS_SETGRP_PERM), but the
856          * client does not know which suppgid should be sent to the MDS, or
857          * some other(s) changed the target file's GID after this RPC sent
858          * to the MDS with the suppgid as the original GID, then we should
859          * try again with right suppgid. */
860         if (rc == -EACCES && it->it_op & IT_OPEN &&
861             it_disposition(it, DISP_OPEN_DENY)) {
862                 struct mdt_body *body;
863
864                 LASSERT(req != NULL);
865
866                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
867                 if (op_data->op_suppgids[0] == body->mbo_gid ||
868                     op_data->op_suppgids[1] == body->mbo_gid ||
869                     !in_group_p(make_kgid(&init_user_ns, body->mbo_gid)))
870                         GOTO(out, retval = ERR_PTR(-EACCES));
871
872                 fid_zero(&op_data->op_fid2);
873                 op_data->op_suppgids[1] = body->mbo_gid;
874                 ptlrpc_req_finished(req);
875                 req = NULL;
876                 ll_intent_release(it);
877                 rc = md_intent_lock(ll_i2mdexp(parent), op_data, it, &req,
878                                     &ll_md_blocking_ast, 0);
879         }
880
881         if (rc < 0)
882                 GOTO(out, retval = ERR_PTR(rc));
883
884         /* dir layout may change */
885         ll_unlock_md_op_lsm(op_data);
886         rc = ll_lookup_it_finish(req, it, parent, &dentry,
887                                  secctx != NULL ? *secctx : NULL,
888                                  secctxlen != NULL ? *secctxlen : 0,
889                                 kstart);
890         if (rc != 0) {
891                 ll_intent_release(it);
892                 GOTO(out, retval = ERR_PTR(rc));
893         }
894
895         if ((it->it_op & IT_OPEN) && dentry->d_inode &&
896             !S_ISREG(dentry->d_inode->i_mode) &&
897             !S_ISDIR(dentry->d_inode->i_mode)) {
898                 ll_release_openhandle(dentry, it);
899         }
900         ll_lookup_finish_locks(it, dentry);
901
902         GOTO(out, retval = (dentry == save) ? NULL : dentry);
903
904 out:
905         if (op_data != NULL && !IS_ERR(op_data)) {
906                 if (secctx != NULL && secctxlen != NULL) {
907                         /* caller needs sec ctx info, so reset it in op_data to
908                          * prevent it from being freed */
909                         op_data->op_file_secctx = NULL;
910                         op_data->op_file_secctx_size = 0;
911                 }
912                 ll_finish_md_op_data(op_data);
913         }
914
915         if (lum != NULL)
916                 OBD_FREE_PTR(lum);
917
918         ptlrpc_req_finished(req);
919         return retval;
920 }
921
922 static struct dentry *ll_lookup_nd(struct inode *parent, struct dentry *dentry,
923                                    unsigned int flags)
924 {
925         struct lookup_intent *itp, it = { .it_op = IT_GETATTR };
926         struct dentry *de;
927
928         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), flags=%u\n",
929                dentry->d_name.len, dentry->d_name.name,
930                PFID(ll_inode2fid(parent)), parent, flags);
931
932         /*
933          * Optimize away (CREATE && !OPEN). Let .create handle the race.
934          * but only if we have write permissions there, otherwise we need
935          * to proceed with lookup. LU-4185
936          */
937         if ((flags & LOOKUP_CREATE) && !(flags & LOOKUP_OPEN) &&
938             (inode_permission(parent, MAY_WRITE | MAY_EXEC) == 0))
939                 return NULL;
940
941         if (flags & (LOOKUP_PARENT|LOOKUP_OPEN|LOOKUP_CREATE))
942                 itp = NULL;
943         else
944                 itp = &it;
945         de = ll_lookup_it(parent, dentry, itp, NULL, NULL, NULL);
946
947         if (itp != NULL)
948                 ll_intent_release(itp);
949
950         return de;
951 }
952
953 #ifdef FMODE_CREATED /* added in Linux v4.18-rc1-20-g73a09dd */
954 # define ll_is_opened(o, f)             ((f)->f_mode & FMODE_OPENED)
955 # define ll_finish_open(f, d, o)        finish_open((f), (d), NULL)
956 # define ll_last_arg
957 # define ll_set_created(o, f)                                           \
958 do {                                                                    \
959         (f)->f_mode |= FMODE_CREATED;                                   \
960 } while (0)
961
962 #else
963 # define ll_is_opened(o, f)             (*(o))
964 # define ll_finish_open(f, d, o)        finish_open((f), (d), NULL, (o))
965 # define ll_last_arg                    , int *opened
966 # define ll_set_created(o, f)                                           \
967 do {                                                                    \
968         *(o) |= FILE_CREATED;                                           \
969 } while (0)
970
971 #endif
972
973 /*
974  * For cached negative dentry and new dentry, handle lookup/create/open
975  * together.
976  */
977 static int ll_atomic_open(struct inode *dir, struct dentry *dentry,
978                           struct file *file, unsigned open_flags,
979                           umode_t mode ll_last_arg)
980 {
981         struct lookup_intent *it;
982         struct dentry *de;
983         long long lookup_flags = LOOKUP_OPEN;
984         void *secctx = NULL;
985         __u32 secctxlen = 0;
986         struct ll_sb_info *sbi;
987         struct pcc_create_attach pca = { NULL, NULL };
988         int rc = 0;
989         ENTRY;
990
991         CDEBUG(D_VFSTRACE,
992                "VFS Op:name=%.*s, dir="DFID"(%p), file %p, open_flags %x, mode %x opened %d\n",
993                dentry->d_name.len, dentry->d_name.name,
994                PFID(ll_inode2fid(dir)), dir, file, open_flags, mode,
995                ll_is_opened(opened, file));
996
997         /* Only negative dentries enter here */
998         LASSERT(dentry->d_inode == NULL);
999
1000         if (!d_unhashed(dentry)) {
1001                 /* A valid negative dentry that just passed revalidation,
1002                  * there's little point to try and open it server-side,
1003                  * even though there's a minuscule chance it might succeed.
1004                  * Either way it's a valid race to just return -ENOENT here.
1005                  */
1006                 if (!(open_flags & O_CREAT))
1007                         return -ENOENT;
1008
1009                 /* Otherwise we just unhash it to be rehashed afresh via
1010                  * lookup if necessary
1011                  */
1012                 d_drop(dentry);
1013         }
1014
1015         OBD_ALLOC(it, sizeof(*it));
1016         if (!it)
1017                 RETURN(-ENOMEM);
1018
1019         it->it_op = IT_OPEN;
1020         if (open_flags & O_CREAT) {
1021                 it->it_op |= IT_CREAT;
1022                 lookup_flags |= LOOKUP_CREATE;
1023                 sbi = ll_i2sbi(dir);
1024                 /* Volatile file is used for HSM restore, so do not use PCC */
1025                 if (!filename_is_volatile(dentry->d_name.name,
1026                                           dentry->d_name.len, NULL)) {
1027                         struct pcc_matcher item;
1028                         struct pcc_dataset *dataset;
1029
1030                         item.pm_uid = from_kuid(&init_user_ns, current_uid());
1031                         item.pm_gid = from_kgid(&init_user_ns, current_gid());
1032                         item.pm_projid = ll_i2info(dir)->lli_projid;
1033                         item.pm_name = &dentry->d_name;
1034                         dataset = pcc_dataset_match_get(&sbi->ll_pcc_super,
1035                                                         &item);
1036                         pca.pca_dataset = dataset;
1037                 }
1038         }
1039         it->it_create_mode = (mode & S_IALLUGO) | S_IFREG;
1040         it->it_flags = (open_flags & ~O_ACCMODE) | OPEN_FMODE(open_flags);
1041         it->it_flags &= ~MDS_OPEN_FL_INTERNAL;
1042
1043         /* Dentry added to dcache tree in ll_lookup_it */
1044         de = ll_lookup_it(dir, dentry, it, &secctx, &secctxlen, &pca);
1045         if (IS_ERR(de))
1046                 rc = PTR_ERR(de);
1047         else if (de != NULL)
1048                 dentry = de;
1049
1050         CFS_FAIL_TIMEOUT(OBD_FAIL_LLITE_CREATE_FILE_PAUSE, cfs_fail_val);
1051
1052         if (!rc) {
1053                 if (it_disposition(it, DISP_OPEN_CREATE)) {
1054                         /* Dentry instantiated in ll_create_it. */
1055                         rc = ll_create_it(dir, dentry, it, secctx, secctxlen);
1056                         security_release_secctx(secctx, secctxlen);
1057                         if (rc) {
1058                                 /* We dget in ll_splice_alias. */
1059                                 if (de != NULL)
1060                                         dput(de);
1061                                 goto out_release;
1062                         }
1063
1064                         rc = pcc_inode_create_fini(dentry->d_inode, &pca);
1065                         if (rc) {
1066                                 if (de != NULL)
1067                                         dput(de);
1068                                 GOTO(out_release, rc);
1069                         }
1070
1071                         ll_set_created(opened, file);
1072                 } else {
1073                         /* Open the file with O_CREAT, but the file already
1074                          * existed on MDT. This may happend in the case that
1075                          * the LOOKUP ibits lock is revoked and the
1076                          * corresponding dentry cache is deleted.
1077                          * i.e. In the current Lustre, the truncate operation
1078                          * will revoke the LOOKUP ibits lock, and the file
1079                          * dentry cache will be invalidated. The following open
1080                          * with O_CREAT flag will call into ->atomic_open, the
1081                          * file was wrongly though as newly created file and
1082                          * try to auto cache the file. So after client knows it
1083                          * is not a DISP_OPEN_CREATE, it should cleanup the
1084                          * already created PCC copy.
1085                          */
1086                         pcc_create_attach_cleanup(dir->i_sb, &pca);
1087                 }
1088
1089                 if (dentry->d_inode && it_disposition(it, DISP_OPEN_OPEN)) {
1090                         /* Open dentry. */
1091                         if (S_ISFIFO(dentry->d_inode->i_mode)) {
1092                                 /* We cannot call open here as it might
1093                                  * deadlock. This case is unreachable in
1094                                  * practice because of OBD_CONNECT_NODEVOH. */
1095                                 rc = finish_no_open(file, de);
1096                         } else {
1097                                 file->private_data = it;
1098                                 rc = ll_finish_open(file, dentry, opened);
1099                                 /* We dget in ll_splice_alias. finish_open takes
1100                                  * care of dget for fd open.
1101                                  */
1102                                 if (de != NULL)
1103                                         dput(de);
1104                         }
1105                 } else {
1106                         rc = finish_no_open(file, de);
1107                 }
1108         } else {
1109                 pcc_create_attach_cleanup(dir->i_sb, &pca);
1110         }
1111
1112 out_release:
1113         ll_intent_release(it);
1114         OBD_FREE(it, sizeof(*it));
1115
1116         RETURN(rc);
1117 }
1118
1119 /* We depend on "mode" being set with the proper file type/umask by now */
1120 static struct inode *ll_create_node(struct inode *dir, struct lookup_intent *it)
1121 {
1122         struct inode *inode = NULL;
1123         struct ptlrpc_request *request = NULL;
1124         struct ll_sb_info *sbi = ll_i2sbi(dir);
1125         int rc;
1126         ENTRY;
1127
1128         LASSERT(it && it->it_disposition);
1129
1130         LASSERT(it_disposition(it, DISP_ENQ_CREATE_REF));
1131         request = it->it_request;
1132         it_clear_disposition(it, DISP_ENQ_CREATE_REF);
1133         rc = ll_prep_inode(&inode, request, dir->i_sb, it);
1134         if (rc)
1135                 GOTO(out, inode = ERR_PTR(rc));
1136
1137         /* Pause to allow for a race with concurrent access by fid */
1138         OBD_FAIL_TIMEOUT(OBD_FAIL_LLITE_CREATE_NODE_PAUSE, cfs_fail_val);
1139
1140         /* We asked for a lock on the directory, but were granted a
1141          * lock on the inode.  Since we finally have an inode pointer,
1142          * stuff it in the lock. */
1143         CDEBUG(D_DLMTRACE, "setting l_ast_data to inode "DFID"(%p)\n",
1144                PFID(ll_inode2fid(inode)), inode);
1145         ll_set_lock_data(sbi->ll_md_exp, inode, it, NULL);
1146         EXIT;
1147  out:
1148         ptlrpc_req_finished(request);
1149         return inode;
1150 }
1151
1152 /*
1153  * By the time this is called, we already have created the directory cache
1154  * entry for the new file, but it is so far negative - it has no inode.
1155  *
1156  * We defer creating the OBD object(s) until open, to keep the intent and
1157  * non-intent code paths similar, and also because we do not have the MDS
1158  * inode number before calling ll_create_node() (which is needed for LOV),
1159  * so we would need to do yet another RPC to the MDS to store the LOV EA
1160  * data on the MDS.  If needed, we would pass the PACKED lmm as data and
1161  * lmm_size in datalen (the MDS still has code which will handle that).
1162  *
1163  * If the create succeeds, we fill in the inode information
1164  * with d_instantiate().
1165  */
1166 static int ll_create_it(struct inode *dir, struct dentry *dentry,
1167                         struct lookup_intent *it,
1168                         void *secctx, __u32 secctxlen)
1169 {
1170         struct inode *inode;
1171         __u64 bits = 0;
1172         int rc = 0;
1173         ENTRY;
1174
1175         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), intent=%s\n",
1176                dentry->d_name.len, dentry->d_name.name,
1177                PFID(ll_inode2fid(dir)), dir, LL_IT2STR(it));
1178
1179         rc = it_open_error(DISP_OPEN_CREATE, it);
1180         if (rc)
1181                 RETURN(rc);
1182
1183         inode = ll_create_node(dir, it);
1184         if (IS_ERR(inode))
1185                 RETURN(PTR_ERR(inode));
1186
1187         if ((ll_i2sbi(inode)->ll_flags & LL_SBI_FILE_SECCTX) &&
1188             secctx != NULL) {
1189                 inode_lock(inode);
1190                 /* must be done before d_instantiate, because it calls
1191                  * security_d_instantiate, which means a getxattr if security
1192                  * context is not set yet */
1193                 rc = security_inode_notifysecctx(inode, secctx, secctxlen);
1194                 inode_unlock(inode);
1195                 if (rc)
1196                         RETURN(rc);
1197         }
1198
1199         d_instantiate(dentry, inode);
1200
1201         if (!(ll_i2sbi(inode)->ll_flags & LL_SBI_FILE_SECCTX)) {
1202                 rc = ll_inode_init_security(dentry, inode, dir);
1203                 if (rc)
1204                         RETURN(rc);
1205         }
1206
1207         ll_set_lock_data(ll_i2sbi(dir)->ll_md_exp, inode, it, &bits);
1208         if (bits & MDS_INODELOCK_LOOKUP)
1209                 d_lustre_revalidate(dentry);
1210
1211         RETURN(0);
1212 }
1213
1214 void ll_update_times(struct ptlrpc_request *request, struct inode *inode)
1215 {
1216         struct mdt_body *body = req_capsule_server_get(&request->rq_pill,
1217                                                        &RMF_MDT_BODY);
1218
1219         LASSERT(body);
1220         if (body->mbo_valid & OBD_MD_FLMTIME &&
1221             body->mbo_mtime > inode->i_mtime.tv_sec) {
1222                 CDEBUG(D_INODE,
1223                        "setting fid " DFID " mtime from %lld to %llu\n",
1224                        PFID(ll_inode2fid(inode)),
1225                        (s64)inode->i_mtime.tv_sec, body->mbo_mtime);
1226                 inode->i_mtime.tv_sec = body->mbo_mtime;
1227         }
1228
1229         if (body->mbo_valid & OBD_MD_FLCTIME &&
1230             body->mbo_ctime > inode->i_ctime.tv_sec)
1231                 inode->i_ctime.tv_sec = body->mbo_ctime;
1232 }
1233
1234 static int ll_new_node(struct inode *dir, struct dentry *dchild,
1235                        const char *tgt, umode_t mode, int rdev, __u32 opc)
1236 {
1237         struct qstr *name = &dchild->d_name;
1238         struct ptlrpc_request *request = NULL;
1239         struct md_op_data *op_data;
1240         struct inode *inode = NULL;
1241         struct ll_sb_info *sbi = ll_i2sbi(dir);
1242         int tgt_len = 0;
1243         int err;
1244
1245         ENTRY;
1246         if (unlikely(tgt != NULL))
1247                 tgt_len = strlen(tgt) + 1;
1248
1249 again:
1250         op_data = ll_prep_md_op_data(NULL, dir, NULL, name->name,
1251                                      name->len, 0, opc, NULL);
1252         if (IS_ERR(op_data))
1253                 GOTO(err_exit, err = PTR_ERR(op_data));
1254
1255         if (sbi->ll_flags & LL_SBI_FILE_SECCTX) {
1256                 err = ll_dentry_init_security(dchild, mode, &dchild->d_name,
1257                                               &op_data->op_file_secctx_name,
1258                                               &op_data->op_file_secctx,
1259                                               &op_data->op_file_secctx_size);
1260                 if (err < 0)
1261                         GOTO(err_exit, err);
1262         }
1263
1264         err = md_create(sbi->ll_md_exp, op_data, tgt, tgt_len, mode,
1265                         from_kuid(&init_user_ns, current_fsuid()),
1266                         from_kgid(&init_user_ns, current_fsgid()),
1267                         cfs_curproc_cap_pack(), rdev, &request);
1268 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 14, 58, 0)
1269         /*
1270          * server < 2.12.58 doesn't pack default LMV in intent_getattr reply,
1271          * fetch default LMV here.
1272          */
1273         if (unlikely(err == -EREMOTE)) {
1274                 struct ll_inode_info    *lli = ll_i2info(dir);
1275                 struct lmv_user_md      *lum;
1276                 int                     lumsize;
1277                 int                     err2;
1278
1279                 ptlrpc_req_finished(request);
1280                 request = NULL;
1281
1282                 err2 = ll_dir_getstripe(dir, (void **)&lum, &lumsize, &request,
1283                                         OBD_MD_DEFAULT_MEA);
1284                 ll_finish_md_op_data(op_data);
1285                 op_data = NULL;
1286                 if (err2 == 0) {
1287                         struct lustre_md md = { NULL };
1288
1289                         md.body = req_capsule_server_get(&request->rq_pill,
1290                                                          &RMF_MDT_BODY);
1291                         if (!md.body)
1292                                 GOTO(err_exit, err = -EPROTO);
1293
1294                         OBD_ALLOC_PTR(md.default_lmv);
1295                         if (!md.default_lmv)
1296                                 GOTO(err_exit, err = -ENOMEM);
1297
1298                         md.default_lmv->lsm_md_magic = lum->lum_magic;
1299                         md.default_lmv->lsm_md_stripe_count =
1300                                 lum->lum_stripe_count;
1301                         md.default_lmv->lsm_md_master_mdt_index =
1302                                 lum->lum_stripe_offset;
1303                         md.default_lmv->lsm_md_hash_type = lum->lum_hash_type;
1304
1305                         err = ll_update_inode(dir, &md);
1306                         md_free_lustre_md(sbi->ll_md_exp, &md);
1307                         if (err)
1308                                 GOTO(err_exit, err);
1309                 } else if (err2 == -ENODATA && lli->lli_default_lsm_md) {
1310                         /*
1311                          * If there are no default stripe EA on the MDT, but the
1312                          * client has default stripe, then it probably means
1313                          * default stripe EA has just been deleted.
1314                          */
1315                         down_write(&lli->lli_lsm_sem);
1316                         if (lli->lli_default_lsm_md)
1317                                 OBD_FREE_PTR(lli->lli_default_lsm_md);
1318                         lli->lli_default_lsm_md = NULL;
1319                         up_write(&lli->lli_lsm_sem);
1320                 } else {
1321                         GOTO(err_exit, err);
1322                 }
1323
1324                 ptlrpc_req_finished(request);
1325                 request = NULL;
1326                 goto again;
1327         }
1328 #endif
1329
1330         if (err < 0)
1331                 GOTO(err_exit, err);
1332
1333         ll_update_times(request, dir);
1334
1335         CFS_FAIL_TIMEOUT(OBD_FAIL_LLITE_NEWNODE_PAUSE, cfs_fail_val);
1336
1337         err = ll_prep_inode(&inode, request, dchild->d_sb, NULL);
1338         if (err)
1339                 GOTO(err_exit, err);
1340
1341         if (sbi->ll_flags & LL_SBI_FILE_SECCTX) {
1342                 inode_lock(inode);
1343                 /* must be done before d_instantiate, because it calls
1344                  * security_d_instantiate, which means a getxattr if security
1345                  * context is not set yet */
1346                 err = security_inode_notifysecctx(inode,
1347                                                   op_data->op_file_secctx,
1348                                                   op_data->op_file_secctx_size);
1349                 inode_unlock(inode);
1350                 if (err)
1351                         GOTO(err_exit, err);
1352         }
1353
1354         d_instantiate(dchild, inode);
1355
1356         if (!(sbi->ll_flags & LL_SBI_FILE_SECCTX)) {
1357                 err = ll_inode_init_security(dchild, inode, dir);
1358                 if (err)
1359                         GOTO(err_exit, err);
1360         }
1361
1362         EXIT;
1363 err_exit:
1364         if (request != NULL)
1365                 ptlrpc_req_finished(request);
1366
1367         if (!IS_ERR_OR_NULL(op_data))
1368                 ll_finish_md_op_data(op_data);
1369
1370         return err;
1371 }
1372
1373 static int ll_mknod(struct inode *dir, struct dentry *dchild, umode_t mode,
1374                     dev_t rdev)
1375 {
1376         struct qstr *name = &dchild->d_name;
1377         ktime_t kstart = ktime_get();
1378         int err;
1379         ENTRY;
1380
1381         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p) mode %o dev %x\n",
1382                name->len, name->name, PFID(ll_inode2fid(dir)), dir,
1383                mode, rdev);
1384
1385         if (!IS_POSIXACL(dir) || !exp_connect_umask(ll_i2mdexp(dir)))
1386                 mode &= ~current_umask();
1387
1388         switch (mode & S_IFMT) {
1389         case 0:
1390                 mode |= S_IFREG;
1391                 /* fallthrough */
1392         case S_IFREG:
1393         case S_IFCHR:
1394         case S_IFBLK:
1395         case S_IFIFO:
1396         case S_IFSOCK:
1397                 err = ll_new_node(dir, dchild, NULL, mode, old_encode_dev(rdev),
1398                                   LUSTRE_OPC_MKNOD);
1399                 break;
1400         case S_IFDIR:
1401                 err = -EPERM;
1402                 break;
1403         default:
1404                 err = -EINVAL;
1405         }
1406
1407         if (!err)
1408                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_MKNOD,
1409                                    ktime_us_delta(ktime_get(), kstart));
1410
1411         RETURN(err);
1412 }
1413
1414 /*
1415  * Plain create. Intent create is handled in atomic_open.
1416  */
1417 static int ll_create_nd(struct inode *dir, struct dentry *dentry,
1418                         umode_t mode, bool want_excl)
1419 {
1420         ktime_t kstart = ktime_get();
1421         int rc;
1422
1423         CFS_FAIL_TIMEOUT(OBD_FAIL_LLITE_CREATE_FILE_PAUSE, cfs_fail_val);
1424
1425         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), "
1426                            "flags=%u, excl=%d\n", dentry->d_name.len,
1427                dentry->d_name.name, PFID(ll_inode2fid(dir)),
1428                dir, mode, want_excl);
1429
1430         /* Using mknod(2) to create a regular file is designed to not recognize
1431          * volatile file name, so we use ll_mknod() here. */
1432         rc = ll_mknod(dir, dentry, mode, 0);
1433
1434         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, unhashed %d\n",
1435                dentry->d_name.len, dentry->d_name.name, d_unhashed(dentry));
1436
1437         if (!rc)
1438                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_CREATE,
1439                                    ktime_us_delta(ktime_get(), kstart));
1440
1441         return rc;
1442 }
1443
1444 static int ll_symlink(struct inode *dir, struct dentry *dchild,
1445                       const char *oldpath)
1446 {
1447         struct qstr *name = &dchild->d_name;
1448         ktime_t kstart = ktime_get();
1449         int err;
1450         ENTRY;
1451
1452         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p), target=%.*s\n",
1453                name->len, name->name, PFID(ll_inode2fid(dir)),
1454                dir, 3000, oldpath);
1455
1456         err = ll_new_node(dir, dchild, oldpath, S_IFLNK | S_IRWXUGO, 0,
1457                           LUSTRE_OPC_SYMLINK);
1458
1459         if (!err)
1460                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_SYMLINK,
1461                                    ktime_us_delta(ktime_get(), kstart));
1462
1463         RETURN(err);
1464 }
1465
1466 static int ll_link(struct dentry *old_dentry, struct inode *dir,
1467                    struct dentry *new_dentry)
1468 {
1469         struct inode *src = old_dentry->d_inode;
1470         struct qstr *name = &new_dentry->d_name;
1471         struct ll_sb_info *sbi = ll_i2sbi(dir);
1472         struct ptlrpc_request *request = NULL;
1473         struct md_op_data *op_data;
1474         ktime_t kstart = ktime_get();
1475         int err;
1476
1477         ENTRY;
1478         CDEBUG(D_VFSTRACE, "VFS Op: inode="DFID"(%p), dir="DFID"(%p), "
1479                "target=%.*s\n", PFID(ll_inode2fid(src)), src,
1480                PFID(ll_inode2fid(dir)), dir, name->len, name->name);
1481
1482         op_data = ll_prep_md_op_data(NULL, src, dir, name->name, name->len,
1483                                      0, LUSTRE_OPC_ANY, NULL);
1484         if (IS_ERR(op_data))
1485                 RETURN(PTR_ERR(op_data));
1486
1487         err = md_link(sbi->ll_md_exp, op_data, &request);
1488         ll_finish_md_op_data(op_data);
1489         if (err)
1490                 GOTO(out, err);
1491
1492         ll_update_times(request, dir);
1493         ll_stats_ops_tally(sbi, LPROC_LL_LINK,
1494                            ktime_us_delta(ktime_get(), kstart));
1495         EXIT;
1496 out:
1497         ptlrpc_req_finished(request);
1498         RETURN(err);
1499 }
1500
1501 static int ll_mkdir(struct inode *dir, struct dentry *dchild, umode_t mode)
1502 {
1503         struct qstr *name = &dchild->d_name;
1504         ktime_t kstart = ktime_get();
1505         int err;
1506         ENTRY;
1507
1508         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p)\n",
1509                name->len, name->name, PFID(ll_inode2fid(dir)), dir);
1510
1511         if (!IS_POSIXACL(dir) || !exp_connect_umask(ll_i2mdexp(dir)))
1512                 mode &= ~current_umask();
1513
1514         mode = (mode & (S_IRWXUGO|S_ISVTX)) | S_IFDIR;
1515
1516         err = ll_new_node(dir, dchild, NULL, mode, 0, LUSTRE_OPC_MKDIR);
1517         if (err == 0)
1518                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_MKDIR,
1519                                    ktime_us_delta(ktime_get(), kstart));
1520
1521         RETURN(err);
1522 }
1523
1524 static int ll_rmdir(struct inode *dir, struct dentry *dchild)
1525 {
1526         struct qstr *name = &dchild->d_name;
1527         struct ptlrpc_request *request = NULL;
1528         struct md_op_data *op_data;
1529         ktime_t kstart = ktime_get();
1530         int rc;
1531
1532         ENTRY;
1533
1534         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p)\n",
1535                name->len, name->name, PFID(ll_inode2fid(dir)), dir);
1536
1537         if (unlikely(d_mountpoint(dchild)))
1538                 RETURN(-EBUSY);
1539
1540         op_data = ll_prep_md_op_data(NULL, dir, NULL, name->name, name->len,
1541                                      S_IFDIR, LUSTRE_OPC_ANY, NULL);
1542         if (IS_ERR(op_data))
1543                 RETURN(PTR_ERR(op_data));
1544
1545         if (dchild->d_inode != NULL)
1546                 op_data->op_fid3 = *ll_inode2fid(dchild->d_inode);
1547
1548         op_data->op_fid2 = op_data->op_fid3;
1549         rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
1550         ll_finish_md_op_data(op_data);
1551         if (!rc)
1552                 ll_update_times(request, dir);
1553
1554         ptlrpc_req_finished(request);
1555         if (!rc)
1556                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_RMDIR,
1557                                    ktime_us_delta(ktime_get(), kstart));
1558         RETURN(rc);
1559 }
1560
1561 /**
1562  * Remove dir entry
1563  **/
1564 int ll_rmdir_entry(struct inode *dir, char *name, int namelen)
1565 {
1566         struct ptlrpc_request *request = NULL;
1567         struct md_op_data *op_data;
1568         ktime_t kstart = ktime_get();
1569         int rc;
1570         ENTRY;
1571
1572         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p)\n",
1573                namelen, name, PFID(ll_inode2fid(dir)), dir);
1574
1575         op_data = ll_prep_md_op_data(NULL, dir, NULL, name, strlen(name),
1576                                      S_IFDIR, LUSTRE_OPC_ANY, NULL);
1577         if (IS_ERR(op_data))
1578                 RETURN(PTR_ERR(op_data));
1579         op_data->op_cli_flags |= CLI_RM_ENTRY;
1580         rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
1581         ll_finish_md_op_data(op_data);
1582         if (!rc)
1583                 ll_update_times(request, dir);
1584
1585         ptlrpc_req_finished(request);
1586         if (!rc)
1587                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_RMDIR,
1588                                    ktime_us_delta(ktime_get(), kstart));
1589         RETURN(rc);
1590 }
1591
1592 static int ll_unlink(struct inode *dir, struct dentry *dchild)
1593 {
1594         struct qstr *name = &dchild->d_name;
1595         struct ptlrpc_request *request = NULL;
1596         struct md_op_data *op_data;
1597         struct mdt_body *body;
1598         ktime_t kstart = ktime_get();
1599         int rc;
1600
1601         ENTRY;
1602
1603         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s, dir="DFID"(%p)\n",
1604                name->len, name->name, PFID(ll_inode2fid(dir)), dir);
1605
1606         /*
1607          * XXX: unlink bind mountpoint maybe call to here,
1608          * just check it as vfs_unlink does.
1609          */
1610         if (unlikely(d_mountpoint(dchild)))
1611                 RETURN(-EBUSY);
1612
1613         op_data = ll_prep_md_op_data(NULL, dir, NULL, name->name, name->len, 0,
1614                                      LUSTRE_OPC_ANY, NULL);
1615         if (IS_ERR(op_data))
1616                 RETURN(PTR_ERR(op_data));
1617
1618         op_data->op_fid3 = *ll_inode2fid(dchild->d_inode);
1619         /* notify lower layer if inode has dirty pages */
1620         if (S_ISREG(dchild->d_inode->i_mode) &&
1621             ll_i2info(dchild->d_inode)->lli_clob &&
1622             dirty_cnt(dchild->d_inode))
1623                 op_data->op_cli_flags |= CLI_DIRTY_DATA;
1624         op_data->op_fid2 = op_data->op_fid3;
1625         rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
1626         ll_finish_md_op_data(op_data);
1627         if (rc)
1628                 GOTO(out, rc);
1629
1630         /*
1631          * The server puts attributes in on the last unlink, use them to update
1632          * the link count so the inode can be freed immediately.
1633          */
1634         body = req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY);
1635         if (body->mbo_valid & OBD_MD_FLNLINK)
1636                 set_nlink(dchild->d_inode, body->mbo_nlink);
1637
1638         ll_update_times(request, dir);
1639
1640 out:
1641         ptlrpc_req_finished(request);
1642         if (!rc)
1643                 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_UNLINK,
1644                                    ktime_us_delta(ktime_get(), kstart));
1645         RETURN(rc);
1646 }
1647
1648 static int ll_rename(struct inode *src, struct dentry *src_dchild,
1649                      struct inode *tgt, struct dentry *tgt_dchild
1650 #ifdef HAVE_IOPS_RENAME_WITH_FLAGS
1651                      , unsigned int flags
1652 #endif
1653                      )
1654 {
1655         struct qstr *src_name = &src_dchild->d_name;
1656         struct qstr *tgt_name = &tgt_dchild->d_name;
1657         struct ptlrpc_request *request = NULL;
1658         struct ll_sb_info *sbi = ll_i2sbi(src);
1659         struct md_op_data *op_data;
1660         ktime_t kstart = ktime_get();
1661         int err;
1662         ENTRY;
1663
1664 #ifdef HAVE_IOPS_RENAME_WITH_FLAGS
1665         if (flags)
1666                 return -EINVAL;
1667 #endif
1668
1669         CDEBUG(D_VFSTRACE, "VFS Op:oldname=%.*s, src_dir="DFID
1670                "(%p), newname=%.*s, tgt_dir="DFID"(%p)\n",
1671                src_name->len, src_name->name,
1672                PFID(ll_inode2fid(src)), src, tgt_name->len,
1673                tgt_name->name, PFID(ll_inode2fid(tgt)), tgt);
1674
1675         if (unlikely(d_mountpoint(src_dchild) || d_mountpoint(tgt_dchild)))
1676                 RETURN(-EBUSY);
1677
1678         op_data = ll_prep_md_op_data(NULL, src, tgt, NULL, 0, 0,
1679                                      LUSTRE_OPC_ANY, NULL);
1680         if (IS_ERR(op_data))
1681                 RETURN(PTR_ERR(op_data));
1682
1683         if (src_dchild->d_inode != NULL)
1684                 op_data->op_fid3 = *ll_inode2fid(src_dchild->d_inode);
1685
1686         if (tgt_dchild->d_inode != NULL)
1687                 op_data->op_fid4 = *ll_inode2fid(tgt_dchild->d_inode);
1688
1689         err = md_rename(sbi->ll_md_exp, op_data,
1690                         src_name->name, src_name->len,
1691                         tgt_name->name, tgt_name->len, &request);
1692         ll_finish_md_op_data(op_data);
1693         if (!err) {
1694                 ll_update_times(request, src);
1695                 ll_update_times(request, tgt);
1696         }
1697
1698         ptlrpc_req_finished(request);
1699
1700         if (!err) {
1701                 d_move(src_dchild, tgt_dchild);
1702                 ll_stats_ops_tally(sbi, LPROC_LL_RENAME,
1703                                    ktime_us_delta(ktime_get(), kstart));
1704         }
1705
1706         RETURN(err);
1707 }
1708
1709 const struct inode_operations ll_dir_inode_operations = {
1710         .mknod          = ll_mknod,
1711         .atomic_open    = ll_atomic_open,
1712         .lookup         = ll_lookup_nd,
1713         .create         = ll_create_nd,
1714         /* We need all these non-raw things for NFSD, to not patch it. */
1715         .unlink         = ll_unlink,
1716         .mkdir          = ll_mkdir,
1717         .rmdir          = ll_rmdir,
1718         .symlink        = ll_symlink,
1719         .link           = ll_link,
1720         .rename         = ll_rename,
1721         .setattr        = ll_setattr,
1722         .getattr        = ll_getattr,
1723         .permission     = ll_inode_permission,
1724 #ifdef HAVE_IOP_XATTR
1725         .setxattr       = ll_setxattr,
1726         .getxattr       = ll_getxattr,
1727         .removexattr    = ll_removexattr,
1728 #endif
1729         .listxattr      = ll_listxattr,
1730         .get_acl        = ll_get_acl,
1731 #ifdef HAVE_IOP_SET_ACL
1732         .set_acl        = ll_set_acl,
1733 #endif
1734 };
1735
1736 const struct inode_operations ll_special_inode_operations = {
1737         .setattr        = ll_setattr,
1738         .getattr        = ll_getattr,
1739         .permission     = ll_inode_permission,
1740 #ifdef HAVE_IOP_XATTR
1741         .setxattr       = ll_setxattr,
1742         .getxattr       = ll_getxattr,
1743         .removexattr    = ll_removexattr,
1744 #endif
1745         .listxattr      = ll_listxattr,
1746         .get_acl        = ll_get_acl,
1747 #ifdef HAVE_IOP_SET_ACL
1748         .set_acl        = ll_set_acl,
1749 #endif
1750 };