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