blob: dfa36d34c645271c57e3bebfd87ae3a3a47f451d [file] [log] [blame]
Peng Taod7e09d02013-05-02 16:46:55 +08001/*
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
Oleg Drokin6a5b99a2016-06-14 23:33:40 -040018 * http://www.gnu.org/licenses/gpl-2.0.html
Peng Taod7e09d02013-05-02 16:46:55 +080019 *
Peng Taod7e09d02013-05-02 16:46:55 +080020 * 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 *
Andreas Dilger1dc563a2015-11-08 18:09:37 -050026 * Copyright (c) 2011, 2015, Intel Corporation.
Peng Taod7e09d02013-05-02 16:46:55 +080027 */
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
41#define DEBUG_SUBSYSTEM S_LLITE
42
Greg Kroah-Hartman67a235f2014-07-11 21:51:41 -070043#include "../include/obd_support.h"
44#include "../include/lustre_fid.h"
Greg Kroah-Hartman67a235f2014-07-11 21:51:41 -070045#include "../include/lustre_dlm.h"
46#include "../include/lustre_ver.h"
Peng Taod7e09d02013-05-02 16:46:55 +080047#include "llite_internal.h"
48
John L. Hammond9c1c2042016-09-18 16:37:32 -040049static int ll_create_it(struct inode *dir, struct dentry *dentry,
50 struct lookup_intent *it);
Peng Taod7e09d02013-05-02 16:46:55 +080051
Al Viro5a3cd99282013-11-06 09:54:52 -050052/* called from iget5_locked->find_inode() under inode_hash_lock spinlock */
Peng Taod7e09d02013-05-02 16:46:55 +080053static int ll_test_inode(struct inode *inode, void *opaque)
54{
55 struct ll_inode_info *lli = ll_i2info(inode);
56 struct lustre_md *md = opaque;
57
John L. Hammond2e1b5b82016-08-16 16:19:08 -040058 if (unlikely(!(md->body->mbo_valid & OBD_MD_FLID))) {
Peng Taod7e09d02013-05-02 16:46:55 +080059 CERROR("MDS body missing FID\n");
60 return 0;
61 }
62
John L. Hammond2e1b5b82016-08-16 16:19:08 -040063 if (!lu_fid_eq(&lli->lli_fid, &md->body->mbo_fid1))
Peng Taod7e09d02013-05-02 16:46:55 +080064 return 0;
65
66 return 1;
67}
68
69static int ll_set_inode(struct inode *inode, void *opaque)
70{
71 struct ll_inode_info *lli = ll_i2info(inode);
72 struct mdt_body *body = ((struct lustre_md *)opaque)->body;
73
John L. Hammond2e1b5b82016-08-16 16:19:08 -040074 if (unlikely(!(body->mbo_valid & OBD_MD_FLID))) {
Peng Taod7e09d02013-05-02 16:46:55 +080075 CERROR("MDS body missing FID\n");
76 return -EINVAL;
77 }
78
John L. Hammond2e1b5b82016-08-16 16:19:08 -040079 lli->lli_fid = body->mbo_fid1;
80 if (unlikely(!(body->mbo_valid & OBD_MD_FLTYPE))) {
Laure Millet267d9c82015-03-18 20:07:26 +010081 CERROR("Can not initialize inode " DFID
82 " without object type: valid = %#llx\n",
John L. Hammond2e1b5b82016-08-16 16:19:08 -040083 PFID(&lli->lli_fid), body->mbo_valid);
Peng Taod7e09d02013-05-02 16:46:55 +080084 return -EINVAL;
85 }
86
John L. Hammond2e1b5b82016-08-16 16:19:08 -040087 inode->i_mode = (inode->i_mode & ~S_IFMT) | (body->mbo_mode & S_IFMT);
Peng Taod7e09d02013-05-02 16:46:55 +080088 if (unlikely(inode->i_mode == 0)) {
89 CERROR("Invalid inode "DFID" type\n", PFID(&lli->lli_fid));
90 return -EINVAL;
91 }
92
93 ll_lli_init(lli);
94
95 return 0;
96}
97
wang dic3397e72016-08-16 16:18:52 -040098/**
99 * Get an inode by inode number(@hash), which is already instantiated by
100 * the intent lookup).
Peng Taod7e09d02013-05-02 16:46:55 +0800101 */
102struct inode *ll_iget(struct super_block *sb, ino_t hash,
103 struct lustre_md *md)
104{
105 struct inode *inode;
wang dic3397e72016-08-16 16:18:52 -0400106 int rc = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800107
108 LASSERT(hash != 0);
109 inode = iget5_locked(sb, hash, ll_test_inode, ll_set_inode, md);
wang dic3397e72016-08-16 16:18:52 -0400110 if (!inode)
111 return ERR_PTR(-ENOMEM);
Peng Taod7e09d02013-05-02 16:46:55 +0800112
wang dic3397e72016-08-16 16:18:52 -0400113 if (inode->i_state & I_NEW) {
114 rc = ll_read_inode2(inode, md);
115 if (!rc && S_ISREG(inode->i_mode) &&
116 !ll_i2info(inode)->lli_clob) {
117 CDEBUG(D_INODE, "%s: apply lsm %p to inode "DFID"\n",
118 ll_get_fsname(sb, NULL, 0), md->lsm,
119 PFID(ll_inode2fid(inode)));
120 rc = cl_file_inode_init(inode, md);
121 }
122 if (rc) {
123 make_bad_inode(inode);
124 unlock_new_inode(inode);
125 iput(inode);
126 inode = ERR_PTR(rc);
127 } else {
128 unlock_new_inode(inode);
129 }
130 } else if (!(inode->i_state & (I_FREEING | I_CLEAR))) {
131 rc = ll_update_inode(inode, md);
132 CDEBUG(D_VFSTRACE, "got inode: "DFID"(%p): rc = %d\n",
John L. Hammond2e1b5b82016-08-16 16:19:08 -0400133 PFID(&md->body->mbo_fid1), inode, rc);
wang dic3397e72016-08-16 16:18:52 -0400134 if (rc) {
wang dic3397e72016-08-16 16:18:52 -0400135 iput(inode);
136 inode = ERR_PTR(rc);
Oleg Drokinda5ecb42016-04-01 15:18:01 -0400137 }
Peng Taod7e09d02013-05-02 16:46:55 +0800138 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800139 return inode;
Peng Taod7e09d02013-05-02 16:46:55 +0800140}
141
142static void ll_invalidate_negative_children(struct inode *dir)
143{
144 struct dentry *dentry, *tmp_subdir;
Peng Taod7e09d02013-05-02 16:46:55 +0800145
Oleg Drokin2bbec0e2016-06-20 16:55:26 -0400146 spin_lock(&dir->i_lock);
Oleg Drokin9d5be522015-07-31 19:42:57 -0400147 hlist_for_each_entry(dentry, &dir->i_dentry, d_u.d_alias) {
Peng Taod7e09d02013-05-02 16:46:55 +0800148 spin_lock(&dentry->d_lock);
149 if (!list_empty(&dentry->d_subdirs)) {
150 struct dentry *child;
151
152 list_for_each_entry_safe(child, tmp_subdir,
153 &dentry->d_subdirs,
Al Viro946e51f2014-10-26 19:19:16 -0400154 d_child) {
David Howells2b0143b2015-03-17 22:25:59 +0000155 if (d_really_is_negative(child))
Peng Taob1d2a122013-06-03 21:58:15 +0800156 d_lustre_invalidate(child, 1);
Peng Taod7e09d02013-05-02 16:46:55 +0800157 }
158 }
159 spin_unlock(&dentry->d_lock);
160 }
Oleg Drokin2bbec0e2016-06-20 16:55:26 -0400161 spin_unlock(&dir->i_lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800162}
163
wang di2de35382016-08-16 16:18:25 -0400164int ll_test_inode_by_fid(struct inode *inode, void *opaque)
165{
166 return lu_fid_eq(&ll_i2info(inode)->lli_fid, opaque);
167}
168
Peng Taod7e09d02013-05-02 16:46:55 +0800169int ll_md_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
170 void *data, int flag)
171{
Peng Taod7e09d02013-05-02 16:46:55 +0800172 struct lustre_handle lockh;
John L. Hammond45b2a012014-02-28 21:16:30 -0500173 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800174
175 switch (flag) {
176 case LDLM_CB_BLOCKING:
177 ldlm_lock2handle(lock, &lockh);
178 rc = ldlm_cli_cancel(&lockh, LCF_ASYNC);
179 if (rc < 0) {
John L. Hammond45b2a012014-02-28 21:16:30 -0500180 CDEBUG(D_INODE, "ldlm_cli_cancel: rc = %d\n", rc);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800181 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800182 }
183 break;
184 case LDLM_CB_CANCELING: {
185 struct inode *inode = ll_inode_from_resource_lock(lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800186 __u64 bits = lock->l_policy_data.l_inodebits.bits;
Peng Taod7e09d02013-05-02 16:46:55 +0800187
188 /* Inode is set to lock->l_resource->lr_lvb_inode
Oleg Drokinc0894c62016-02-24 22:00:30 -0500189 * for mdc - bug 24555
190 */
Oleg Drokin6e168182016-02-16 00:46:46 -0500191 LASSERT(!lock->l_ast_data);
Peng Taod7e09d02013-05-02 16:46:55 +0800192
Oleg Drokin6e168182016-02-16 00:46:46 -0500193 if (!inode)
Peng Taod7e09d02013-05-02 16:46:55 +0800194 break;
195
John L. Hammond45b2a012014-02-28 21:16:30 -0500196 /* Invalidate all dentries associated with this inode */
Bruce Korb5a9a80b2016-04-27 18:20:57 -0400197 LASSERT(ldlm_is_canceling(lock));
Andrew Perepechko7fc1f832013-12-03 21:58:49 +0800198
John L. Hammond45b2a012014-02-28 21:16:30 -0500199 if (!fid_res_name_eq(ll_inode2fid(inode),
200 &lock->l_resource->lr_name)) {
201 LDLM_ERROR(lock, "data mismatch with object "DFID"(%p)",
202 PFID(ll_inode2fid(inode)), inode);
203 LBUG();
204 }
205
206 if (bits & MDS_INODELOCK_XATTR) {
wang did81e9002016-09-18 16:38:54 -0400207 if (S_ISDIR(inode->i_mode))
208 ll_i2info(inode)->lli_def_stripe_offset = -1;
Andrew Perepechko7fc1f832013-12-03 21:58:49 +0800209 ll_xattr_cache_destroy(inode);
John L. Hammond45b2a012014-02-28 21:16:30 -0500210 bits &= ~MDS_INODELOCK_XATTR;
211 }
Andrew Perepechko7fc1f832013-12-03 21:58:49 +0800212
Peng Taod7e09d02013-05-02 16:46:55 +0800213 /* For OPEN locks we differentiate between lock modes
Oleg Drokinc0894c62016-02-24 22:00:30 -0500214 * LCK_CR, LCK_CW, LCK_PR - bug 22891
215 */
John L. Hammond45b2a012014-02-28 21:16:30 -0500216 if (bits & MDS_INODELOCK_OPEN)
217 ll_have_md_lock(inode, &bits, lock->l_req_mode);
218
219 if (bits & MDS_INODELOCK_OPEN) {
220 fmode_t fmode;
221
222 switch (lock->l_req_mode) {
223 case LCK_CW:
224 fmode = FMODE_WRITE;
225 break;
226 case LCK_PR:
227 fmode = FMODE_EXEC;
228 break;
229 case LCK_CR:
230 fmode = FMODE_READ;
231 break;
232 default:
233 LDLM_ERROR(lock, "bad lock mode for OPEN lock");
234 LBUG();
235 }
236
237 ll_md_real_close(inode, fmode);
238 }
239
Peng Taod7e09d02013-05-02 16:46:55 +0800240 if (bits & (MDS_INODELOCK_LOOKUP | MDS_INODELOCK_UPDATE |
241 MDS_INODELOCK_LAYOUT | MDS_INODELOCK_PERM))
242 ll_have_md_lock(inode, &bits, LCK_MINMODE);
243
Peng Taod7e09d02013-05-02 16:46:55 +0800244 if (bits & MDS_INODELOCK_LAYOUT) {
John L. Hammond45b2a012014-02-28 21:16:30 -0500245 struct cl_object_conf conf = {
246 .coc_opc = OBJECT_CONF_INVALIDATE,
247 .coc_inode = inode,
248 };
Peng Taod7e09d02013-05-02 16:46:55 +0800249
Peng Taod7e09d02013-05-02 16:46:55 +0800250 rc = ll_layout_conf(inode, &conf);
John L. Hammond45b2a012014-02-28 21:16:30 -0500251 if (rc < 0)
252 CDEBUG(D_INODE, "cannot invalidate layout of "
253 DFID": rc = %d\n",
254 PFID(ll_inode2fid(inode)), rc);
Peng Taod7e09d02013-05-02 16:46:55 +0800255 }
256
Sebastien Buissonae5ef672013-07-25 01:17:27 +0800257 if (bits & MDS_INODELOCK_UPDATE) {
John L. Hammond45b2a012014-02-28 21:16:30 -0500258 struct ll_inode_info *lli = ll_i2info(inode);
259
Sebastien Buissonae5ef672013-07-25 01:17:27 +0800260 spin_lock(&lli->lli_lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800261 lli->lli_flags &= ~LLIF_MDS_SIZE_LOCK;
Sebastien Buissonae5ef672013-07-25 01:17:27 +0800262 spin_unlock(&lli->lli_lock);
263 }
Peng Taod7e09d02013-05-02 16:46:55 +0800264
John L. Hammond45b2a012014-02-28 21:16:30 -0500265 if ((bits & MDS_INODELOCK_UPDATE) && S_ISDIR(inode->i_mode)) {
wang di2de35382016-08-16 16:18:25 -0400266 struct ll_inode_info *lli = ll_i2info(inode);
267
268 CDEBUG(D_INODE, "invalidating inode "DFID" lli = %p, pfid = "DFID"\n",
269 PFID(ll_inode2fid(inode)), lli,
270 PFID(&lli->lli_pfid));
271
Peng Taod7e09d02013-05-02 16:46:55 +0800272 truncate_inode_pages(inode->i_mapping, 0);
wang di2de35382016-08-16 16:18:25 -0400273
274 if (unlikely(!fid_is_zero(&lli->lli_pfid))) {
275 struct inode *master_inode = NULL;
276 unsigned long hash;
277
278 /*
279 * This is slave inode, since all of the child
280 * dentry is connected on the master inode, so
281 * we have to invalidate the negative children
282 * on master inode
283 */
284 CDEBUG(D_INODE, "Invalidate s"DFID" m"DFID"\n",
285 PFID(ll_inode2fid(inode)),
286 PFID(&lli->lli_pfid));
287
288 hash = cl_fid_build_ino(&lli->lli_pfid,
289 ll_need_32bit_api(ll_i2sbi(inode)));
290
291 master_inode = ilookup5(inode->i_sb, hash,
292 ll_test_inode_by_fid,
293 (void *)&lli->lli_pfid);
294 if (master_inode && !IS_ERR(master_inode)) {
295 ll_invalidate_negative_children(master_inode);
296 iput(master_inode);
297 }
298 } else {
299 ll_invalidate_negative_children(inode);
300 }
Peng Taod7e09d02013-05-02 16:46:55 +0800301 }
302
John L. Hammond45b2a012014-02-28 21:16:30 -0500303 if ((bits & (MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM)) &&
Oleg Drokin6e168182016-02-16 00:46:46 -0500304 inode->i_sb->s_root &&
Al Viro5242d4222014-12-26 22:43:19 -0500305 !is_root_inode(inode))
Peng Taod7e09d02013-05-02 16:46:55 +0800306 ll_invalidate_aliases(inode);
John L. Hammond45b2a012014-02-28 21:16:30 -0500307
Peng Taod7e09d02013-05-02 16:46:55 +0800308 iput(inode);
309 break;
310 }
311 default:
312 LBUG();
313 }
314
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800315 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800316}
317
318__u32 ll_i2suppgid(struct inode *i)
319{
Peng Tao4b1a25f2013-07-15 22:27:14 +0800320 if (in_group_p(i->i_gid))
321 return (__u32)from_kgid(&init_user_ns, i->i_gid);
Peng Taod7e09d02013-05-02 16:46:55 +0800322 else
323 return (__u32)(-1);
324}
325
326/* Pack the required supplementary groups into the supplied groups array.
327 * If we don't need to use the groups from the target inode(s) then we
328 * instead pack one or more groups from the user's supplementary group
Oleg Drokinc0894c62016-02-24 22:00:30 -0500329 * array in case it might be useful. Not needed if doing an MDS-side upcall.
330 */
Peng Taod7e09d02013-05-02 16:46:55 +0800331void ll_i2gids(__u32 *suppgids, struct inode *i1, struct inode *i2)
332{
Oleg Drokin6e168182016-02-16 00:46:46 -0500333 LASSERT(i1);
Peng Taod7e09d02013-05-02 16:46:55 +0800334
335 suppgids[0] = ll_i2suppgid(i1);
336
337 if (i2)
338 suppgids[1] = ll_i2suppgid(i2);
339 else
340 suppgids[1] = -1;
Peng Taod7e09d02013-05-02 16:46:55 +0800341}
342
343/*
344 * try to reuse three types of dentry:
345 * 1. unhashed alias, this one is unhashed by d_invalidate (but it may be valid
346 * by concurrent .revalidate).
347 * 2. INVALID alias (common case for no valid ldlm lock held, but this flag may
348 * be cleared by others calling d_lustre_revalidate).
349 * 3. DISCONNECTED alias.
350 */
351static struct dentry *ll_find_alias(struct inode *inode, struct dentry *dentry)
352{
353 struct dentry *alias, *discon_alias, *invalid_alias;
Peng Taod7e09d02013-05-02 16:46:55 +0800354
Oleg Drokin9d5be522015-07-31 19:42:57 -0400355 if (hlist_empty(&inode->i_dentry))
Peng Taod7e09d02013-05-02 16:46:55 +0800356 return NULL;
357
Nathaniel Clark7551b8b2016-06-09 22:35:14 -0400358 discon_alias = NULL;
359 invalid_alias = NULL;
Peng Taod7e09d02013-05-02 16:46:55 +0800360
Oleg Drokin2bbec0e2016-06-20 16:55:26 -0400361 spin_lock(&inode->i_lock);
Oleg Drokin9d5be522015-07-31 19:42:57 -0400362 hlist_for_each_entry(alias, &inode->i_dentry, d_u.d_alias) {
Peng Taod7e09d02013-05-02 16:46:55 +0800363 LASSERT(alias != dentry);
364
365 spin_lock(&alias->d_lock);
Lokesh Nagappa Jaliminchef7368142016-08-24 11:11:56 -0400366 if ((alias->d_flags & DCACHE_DISCONNECTED) &&
367 S_ISDIR(inode->i_mode))
Peng Taod7e09d02013-05-02 16:46:55 +0800368 /* LASSERT(last_discon == NULL); LU-405, bz 20055 */
369 discon_alias = alias;
370 else if (alias->d_parent == dentry->d_parent &&
371 alias->d_name.hash == dentry->d_name.hash &&
372 alias->d_name.len == dentry->d_name.len &&
373 memcmp(alias->d_name.name, dentry->d_name.name,
374 dentry->d_name.len) == 0)
375 invalid_alias = alias;
376 spin_unlock(&alias->d_lock);
377
378 if (invalid_alias)
379 break;
380 }
381 alias = invalid_alias ?: discon_alias ?: NULL;
382 if (alias) {
383 spin_lock(&alias->d_lock);
384 dget_dlock(alias);
385 spin_unlock(&alias->d_lock);
386 }
Oleg Drokin2bbec0e2016-06-20 16:55:26 -0400387 spin_unlock(&inode->i_lock);
Peng Taod7e09d02013-05-02 16:46:55 +0800388
389 return alias;
390}
391
392/*
393 * Similar to d_splice_alias(), but lustre treats invalid alias
394 * similar to DCACHE_DISCONNECTED, and tries to use it anyway.
395 */
396struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de)
397{
398 struct dentry *new;
Lai Siyao3ea8f3b2014-01-22 21:36:12 +0800399 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800400
401 if (inode) {
402 new = ll_find_alias(inode, de);
403 if (new) {
Lai Siyao3ea8f3b2014-01-22 21:36:12 +0800404 rc = ll_d_init(new);
405 if (rc < 0) {
406 dput(new);
407 return ERR_PTR(rc);
408 }
Peng Taod7e09d02013-05-02 16:46:55 +0800409 d_move(new, de);
410 iput(inode);
411 CDEBUG(D_DENTRY,
412 "Reuse dentry %p inode %p refc %d flags %#x\n",
David Howells2b0143b2015-03-17 22:25:59 +0000413 new, d_inode(new), d_count(new), new->d_flags);
Peng Taod7e09d02013-05-02 16:46:55 +0800414 return new;
415 }
416 }
Lai Siyao3ea8f3b2014-01-22 21:36:12 +0800417 rc = ll_d_init(de);
418 if (rc < 0)
419 return ERR_PTR(rc);
Peng Taod7e09d02013-05-02 16:46:55 +0800420 d_add(de, inode);
421 CDEBUG(D_DENTRY, "Add dentry %p inode %p refc %d flags %#x\n",
David Howells2b0143b2015-03-17 22:25:59 +0000422 de, d_inode(de), d_count(de), de->d_flags);
Peng Taod7e09d02013-05-02 16:46:55 +0800423 return de;
424}
425
John L. Hammond2d95f102014-04-27 13:07:05 -0400426static int ll_lookup_it_finish(struct ptlrpc_request *request,
427 struct lookup_intent *it,
428 struct inode *parent, struct dentry **de)
Peng Taod7e09d02013-05-02 16:46:55 +0800429{
Peng Taod7e09d02013-05-02 16:46:55 +0800430 struct inode *inode = NULL;
431 __u64 bits = 0;
Fan Yong44ecac62015-09-14 18:41:19 -0400432 int rc = 0;
Oleg Drokin99f1c012016-07-14 23:40:21 -0400433 struct dentry *alias;
Peng Taod7e09d02013-05-02 16:46:55 +0800434
435 /* NB 1 request reference will be taken away by ll_intent_lock()
Oleg Drokinc0894c62016-02-24 22:00:30 -0500436 * when I return
437 */
Peng Taod7e09d02013-05-02 16:46:55 +0800438 CDEBUG(D_DENTRY, "it %p it_disposition %x\n", it,
John L. Hammonde476f2e2016-06-20 16:55:38 -0400439 it->it_disposition);
Peng Taod7e09d02013-05-02 16:46:55 +0800440 if (!it_disposition(it, DISP_LOOKUP_NEG)) {
441 rc = ll_prep_inode(&inode, request, (*de)->d_sb, it);
442 if (rc)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800443 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800444
445 ll_set_lock_data(ll_i2sbi(parent)->ll_md_exp, inode, it, &bits);
446
447 /* We used to query real size from OSTs here, but actually
Oleg Drokinc0894c62016-02-24 22:00:30 -0500448 * this is not needed. For stat() calls size would be updated
449 * from subsequent do_revalidate()->ll_inode_revalidate_it() in
450 * 2.4 and
451 * vfs_getattr_it->ll_getattr()->ll_inode_revalidate_it() in 2.6
452 * Everybody else who needs correct file size would call
453 * ll_glimpse_size or some equivalent themselves anyway.
454 * Also see bug 7198.
455 */
Peng Taod7e09d02013-05-02 16:46:55 +0800456 }
457
Oleg Drokin99f1c012016-07-14 23:40:21 -0400458 alias = ll_splice_alias(inode, *de);
459 if (IS_ERR(alias)) {
460 rc = PTR_ERR(alias);
461 goto out;
Lai Siyao3ea8f3b2014-01-22 21:36:12 +0800462 }
Oleg Drokin99f1c012016-07-14 23:40:21 -0400463 *de = alias;
Peng Taod7e09d02013-05-02 16:46:55 +0800464
465 if (!it_disposition(it, DISP_LOOKUP_NEG)) {
466 /* we have lookup look - unhide dentry */
467 if (bits & MDS_INODELOCK_LOOKUP)
468 d_lustre_revalidate(*de);
469 } else if (!it_disposition(it, DISP_OPEN_CREATE)) {
470 /* If file created on server, don't depend on parent UPDATE
471 * lock to unhide it. It is left hidden and next lookup can
472 * find it in ll_splice_alias.
473 */
474 /* Check that parent has UPDATE lock. */
475 struct lookup_intent parent_it = {
476 .it_op = IT_GETATTR,
John L. Hammonde476f2e2016-06-20 16:55:38 -0400477 .it_lock_handle = 0 };
wang dia609c392016-08-16 16:19:02 -0400478 struct lu_fid fid = ll_i2info(parent)->lli_fid;
Peng Taod7e09d02013-05-02 16:46:55 +0800479
wang dia609c392016-08-16 16:19:02 -0400480 /* If it is striped directory, get the real stripe parent */
481 if (unlikely(ll_i2info(parent)->lli_lsm_md)) {
482 rc = md_get_fid_from_lsm(ll_i2mdexp(parent),
483 ll_i2info(parent)->lli_lsm_md,
484 (*de)->d_name.name,
485 (*de)->d_name.len, &fid);
486 if (rc)
487 return rc;
488 }
489
490 if (md_revalidate_lock(ll_i2mdexp(parent), &parent_it, &fid,
491 NULL)) {
Peng Taod7e09d02013-05-02 16:46:55 +0800492 d_lustre_revalidate(*de);
493 ll_intent_release(&parent_it);
494 }
495 }
496
Fan Yong44ecac62015-09-14 18:41:19 -0400497out:
498 if (rc != 0 && it->it_op & IT_OPEN)
499 ll_open_cleanup((*de)->d_sb, request);
500
501 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800502}
503
504static struct dentry *ll_lookup_it(struct inode *parent, struct dentry *dentry,
John L. Hammond9b496412016-09-18 16:37:31 -0400505 struct lookup_intent *it)
Peng Taod7e09d02013-05-02 16:46:55 +0800506{
507 struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
508 struct dentry *save = dentry, *retval;
509 struct ptlrpc_request *req = NULL;
Fan Yong864d6a22016-09-18 16:38:42 -0400510 struct md_op_data *op_data = NULL;
Al Virodbca51d2015-01-18 23:31:19 -0500511 struct inode *inode;
Peng Taod7e09d02013-05-02 16:46:55 +0800512 __u32 opc;
513 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800514
515 if (dentry->d_name.len > ll_i2sbi(parent)->ll_namelen)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800516 return ERR_PTR(-ENAMETOOLONG);
Peng Taod7e09d02013-05-02 16:46:55 +0800517
James Nunez97a075c2016-04-27 18:21:01 -0400518 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, dir="DFID"(%p),intent=%s\n",
519 dentry, PFID(ll_inode2fid(parent)), parent, LL_IT2STR(it));
Peng Taod7e09d02013-05-02 16:46:55 +0800520
521 if (d_mountpoint(dentry))
522 CERROR("Tell Peter, lookup on mtpt, it %s\n", LL_IT2STR(it));
523
Oleg Drokin6e168182016-02-16 00:46:46 -0500524 if (!it || it->it_op == IT_GETXATTR)
John L. Hammond2d95f102014-04-27 13:07:05 -0400525 it = &lookup_it;
Peng Taod7e09d02013-05-02 16:46:55 +0800526
Lai Siyao5231f762016-09-18 16:38:09 -0400527 if (it->it_op == IT_GETATTR && dentry_may_statahead(parent, dentry)) {
528 rc = ll_statahead(parent, &dentry, 0);
Peng Taod7e09d02013-05-02 16:46:55 +0800529 if (rc == 1) {
530 if (dentry == save)
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200531 retval = NULL;
532 else
533 retval = dentry;
534 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800535 }
536 }
537
John L. Hammond1e8a5762013-12-03 21:58:45 +0800538 if (it->it_op & IT_CREAT)
Peng Taod7e09d02013-05-02 16:46:55 +0800539 opc = LUSTRE_OPC_CREATE;
540 else
541 opc = LUSTRE_OPC_ANY;
542
543 op_data = ll_prep_md_op_data(NULL, parent, NULL, dentry->d_name.name,
John L. Hammond9b496412016-09-18 16:37:31 -0400544 dentry->d_name.len, 0, opc, NULL);
Peng Taod7e09d02013-05-02 16:46:55 +0800545 if (IS_ERR(op_data))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800546 return (void *)op_data;
Peng Taod7e09d02013-05-02 16:46:55 +0800547
548 /* enforce umask if acl disabled or MDS doesn't support umask */
549 if (!IS_POSIXACL(parent) || !exp_connect_umask(ll_i2mdexp(parent)))
550 it->it_create_mode &= ~current_umask();
551
John L. Hammond70a251f2016-08-19 14:07:30 -0400552 rc = md_intent_lock(ll_i2mdexp(parent), op_data, it, &req,
553 &ll_md_blocking_ast, 0);
Fan Yong864d6a22016-09-18 16:38:42 -0400554 /*
555 * If the MDS allows the client to chgrp (CFS_SETGRP_PERM), but the
556 * client does not know which suppgid should be sent to the MDS, or
557 * some other(s) changed the target file's GID after this RPC sent
558 * to the MDS with the suppgid as the original GID, then we should
559 * try again with right suppgid.
560 */
561 if (rc == -EACCES && it->it_op & IT_OPEN &&
562 it_disposition(it, DISP_OPEN_DENY)) {
563 struct mdt_body *body;
564
565 LASSERT(req);
566
567 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
568 if (op_data->op_suppgids[0] == body->mbo_gid ||
569 op_data->op_suppgids[1] == body->mbo_gid ||
570 !in_group_p(make_kgid(&init_user_ns, body->mbo_gid))) {
571 retval = ERR_PTR(-EACCES);
572 goto out;
573 }
574
575 fid_zero(&op_data->op_fid2);
576 op_data->op_suppgids[1] = body->mbo_gid;
577 ptlrpc_req_finished(req);
578 req = NULL;
579 ll_intent_release(it);
580 rc = md_intent_lock(ll_i2mdexp(parent), op_data, it, &req,
581 ll_md_blocking_ast, 0);
582 }
583
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200584 if (rc < 0) {
585 retval = ERR_PTR(rc);
586 goto out;
587 }
Peng Taod7e09d02013-05-02 16:46:55 +0800588
John L. Hammond2d95f102014-04-27 13:07:05 -0400589 rc = ll_lookup_it_finish(req, it, parent, &dentry);
Peng Taod7e09d02013-05-02 16:46:55 +0800590 if (rc != 0) {
591 ll_intent_release(it);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200592 retval = ERR_PTR(rc);
593 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800594 }
595
David Howells2b0143b2015-03-17 22:25:59 +0000596 inode = d_inode(dentry);
Al Virodbca51d2015-01-18 23:31:19 -0500597 if ((it->it_op & IT_OPEN) && inode &&
598 !S_ISREG(inode->i_mode) &&
599 !S_ISDIR(inode->i_mode)) {
600 ll_release_openhandle(inode, it);
Peng Taod7e09d02013-05-02 16:46:55 +0800601 }
Al Virodbca51d2015-01-18 23:31:19 -0500602 ll_lookup_finish_locks(it, inode);
Peng Taod7e09d02013-05-02 16:46:55 +0800603
604 if (dentry == save)
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200605 retval = NULL;
Peng Taod7e09d02013-05-02 16:46:55 +0800606 else
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200607 retval = dentry;
Lai Siyao5231f762016-09-18 16:38:09 -0400608out:
Fan Yong864d6a22016-09-18 16:38:42 -0400609 if (op_data && !IS_ERR(op_data))
610 ll_finish_md_op_data(op_data);
611
Lai Siyao5231f762016-09-18 16:38:09 -0400612 ptlrpc_req_finished(req);
Peng Taod7e09d02013-05-02 16:46:55 +0800613 return retval;
614}
615
616static struct dentry *ll_lookup_nd(struct inode *parent, struct dentry *dentry,
617 unsigned int flags)
618{
619 struct lookup_intent *itp, it = { .it_op = IT_GETATTR };
620 struct dentry *de;
621
James Nunez97a075c2016-04-27 18:21:01 -0400622 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, dir="DFID"(%p),flags=%u\n",
623 dentry, PFID(ll_inode2fid(parent)), parent, flags);
Peng Taod7e09d02013-05-02 16:46:55 +0800624
Oleg Drokin3a77df12016-08-20 17:34:25 -0400625 /* Optimize away (CREATE && !OPEN). Let .create handle the race.
626 * but only if we have write permissions there, otherwise we need
627 * to proceed with lookup. LU-4185
628 */
629 if ((flags & LOOKUP_CREATE) && !(flags & LOOKUP_OPEN) &&
630 (inode_permission(parent, MAY_WRITE | MAY_EXEC) == 0))
Peng Taod7e09d02013-05-02 16:46:55 +0800631 return NULL;
Peng Taod7e09d02013-05-02 16:46:55 +0800632
Oleg Drokincd94f232016-08-21 18:04:34 -0400633 if (flags & (LOOKUP_PARENT | LOOKUP_OPEN | LOOKUP_CREATE))
Peng Taod7e09d02013-05-02 16:46:55 +0800634 itp = NULL;
635 else
636 itp = &it;
John L. Hammond9b496412016-09-18 16:37:31 -0400637 de = ll_lookup_it(parent, dentry, itp);
Peng Taod7e09d02013-05-02 16:46:55 +0800638
Oleg Drokin6e168182016-02-16 00:46:46 -0500639 if (itp)
Peng Taod7e09d02013-05-02 16:46:55 +0800640 ll_intent_release(itp);
641
642 return de;
643}
644
645/*
646 * For cached negative dentry and new dentry, handle lookup/create/open
647 * together.
648 */
649static int ll_atomic_open(struct inode *dir, struct dentry *dentry,
650 struct file *file, unsigned open_flags,
651 umode_t mode, int *opened)
652{
653 struct lookup_intent *it;
654 struct dentry *de;
Peng Taod7e09d02013-05-02 16:46:55 +0800655 int rc = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800656
James Nunez97a075c2016-04-27 18:21:01 -0400657 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, dir="DFID"(%p),file %p,open_flags %x,mode %x opened %d\n",
658 dentry, PFID(ll_inode2fid(dir)), dir, file, open_flags, mode,
659 *opened);
Peng Taod7e09d02013-05-02 16:46:55 +0800660
Oleg Drokin99f1c012016-07-14 23:40:21 -0400661 /* Only negative dentries enter here */
662 LASSERT(!d_inode(dentry));
663
664 if (!d_in_lookup(dentry)) {
665 /* A valid negative dentry that just passed revalidation,
666 * there's little point to try and open it server-side,
667 * even though there's a minuscle chance it might succeed.
668 * Either way it's a valid race to just return -ENOENT here.
669 */
670 if (!(open_flags & O_CREAT))
671 return -ENOENT;
672
673 /* Otherwise we just unhash it to be rehashed afresh via
674 * lookup if necessary
675 */
676 d_drop(dentry);
677 }
678
Julia Lawall496a51b2014-09-18 22:24:02 +0200679 it = kzalloc(sizeof(*it), GFP_NOFS);
Peng Taod7e09d02013-05-02 16:46:55 +0800680 if (!it)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800681 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +0800682
683 it->it_op = IT_OPEN;
John L. Hammond9b496412016-09-18 16:37:31 -0400684 if (open_flags & O_CREAT)
Peng Taod7e09d02013-05-02 16:46:55 +0800685 it->it_op |= IT_CREAT;
Peng Taod7e09d02013-05-02 16:46:55 +0800686 it->it_create_mode = (mode & S_IALLUGO) | S_IFREG;
687 it->it_flags = (open_flags & ~O_ACCMODE) | OPEN_FMODE(open_flags);
Lai Siyaoc1b66fc2016-08-16 16:19:16 -0400688 it->it_flags &= ~MDS_OPEN_FL_INTERNAL;
Peng Taod7e09d02013-05-02 16:46:55 +0800689
690 /* Dentry added to dcache tree in ll_lookup_it */
John L. Hammond9b496412016-09-18 16:37:31 -0400691 de = ll_lookup_it(dir, dentry, it);
Peng Taod7e09d02013-05-02 16:46:55 +0800692 if (IS_ERR(de))
693 rc = PTR_ERR(de);
Oleg Drokin6e168182016-02-16 00:46:46 -0500694 else if (de)
Peng Taod7e09d02013-05-02 16:46:55 +0800695 dentry = de;
696
697 if (!rc) {
698 if (it_disposition(it, DISP_OPEN_CREATE)) {
699 /* Dentry instantiated in ll_create_it. */
John L. Hammond9c1c2042016-09-18 16:37:32 -0400700 rc = ll_create_it(dir, dentry, it);
Peng Taod7e09d02013-05-02 16:46:55 +0800701 if (rc) {
702 /* We dget in ll_splice_alias. */
Oleg Drokin6e168182016-02-16 00:46:46 -0500703 if (de)
Peng Taod7e09d02013-05-02 16:46:55 +0800704 dput(de);
705 goto out_release;
706 }
707
708 *opened |= FILE_CREATED;
709 }
David Howells2b0143b2015-03-17 22:25:59 +0000710 if (d_really_is_positive(dentry) && it_disposition(it, DISP_OPEN_OPEN)) {
Peng Taod7e09d02013-05-02 16:46:55 +0800711 /* Open dentry. */
David Howells2b0143b2015-03-17 22:25:59 +0000712 if (S_ISFIFO(d_inode(dentry)->i_mode)) {
John L. Hammond411c9692016-06-20 16:55:25 -0400713 /* We cannot call open here as it might
714 * deadlock. This case is unreachable in
715 * practice because of OBD_CONNECT_NODEVOH.
Peng Taod7e09d02013-05-02 16:46:55 +0800716 */
Peng Taod7e09d02013-05-02 16:46:55 +0800717 rc = finish_no_open(file, de);
718 } else {
719 file->private_data = it;
720 rc = finish_open(file, dentry, NULL, opened);
721 /* We dget in ll_splice_alias. finish_open takes
722 * care of dget for fd open.
723 */
Oleg Drokin6e168182016-02-16 00:46:46 -0500724 if (de)
Peng Taod7e09d02013-05-02 16:46:55 +0800725 dput(de);
726 }
727 } else {
728 rc = finish_no_open(file, de);
729 }
730 }
731
732out_release:
733 ll_intent_release(it);
Julia Lawall97903a22015-04-12 22:55:02 +0200734 kfree(it);
Peng Taod7e09d02013-05-02 16:46:55 +0800735
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800736 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800737}
738
Peng Taod7e09d02013-05-02 16:46:55 +0800739/* We depend on "mode" being set with the proper file type/umask by now */
John L. Hammond2d95f102014-04-27 13:07:05 -0400740static struct inode *ll_create_node(struct inode *dir, struct lookup_intent *it)
Peng Taod7e09d02013-05-02 16:46:55 +0800741{
742 struct inode *inode = NULL;
743 struct ptlrpc_request *request = NULL;
744 struct ll_sb_info *sbi = ll_i2sbi(dir);
745 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800746
John L. Hammonde476f2e2016-06-20 16:55:38 -0400747 LASSERT(it && it->it_disposition);
Peng Taod7e09d02013-05-02 16:46:55 +0800748
749 LASSERT(it_disposition(it, DISP_ENQ_CREATE_REF));
John L. Hammond8bf86fd2016-06-20 16:55:40 -0400750 request = it->it_request;
Peng Taod7e09d02013-05-02 16:46:55 +0800751 it_clear_disposition(it, DISP_ENQ_CREATE_REF);
752 rc = ll_prep_inode(&inode, request, dir->i_sb, it);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200753 if (rc) {
754 inode = ERR_PTR(rc);
755 goto out;
756 }
Peng Taod7e09d02013-05-02 16:46:55 +0800757
Oleg Drokin9d5be522015-07-31 19:42:57 -0400758 LASSERT(hlist_empty(&inode->i_dentry));
Peng Taod7e09d02013-05-02 16:46:55 +0800759
760 /* We asked for a lock on the directory, but were granted a
761 * lock on the inode. Since we finally have an inode pointer,
Oleg Drokinc0894c62016-02-24 22:00:30 -0500762 * stuff it in the lock.
763 */
James Nunez97a075c2016-04-27 18:21:01 -0400764 CDEBUG(D_DLMTRACE, "setting l_ast_data to inode "DFID"(%p)\n",
765 PFID(ll_inode2fid(dir)), inode);
Peng Taod7e09d02013-05-02 16:46:55 +0800766 ll_set_lock_data(sbi->ll_md_exp, inode, it, NULL);
Peng Taod7e09d02013-05-02 16:46:55 +0800767 out:
768 ptlrpc_req_finished(request);
769 return inode;
770}
771
772/*
773 * By the time this is called, we already have created the directory cache
774 * entry for the new file, but it is so far negative - it has no inode.
775 *
776 * We defer creating the OBD object(s) until open, to keep the intent and
777 * non-intent code paths similar, and also because we do not have the MDS
778 * inode number before calling ll_create_node() (which is needed for LOV),
779 * so we would need to do yet another RPC to the MDS to store the LOV EA
780 * data on the MDS. If needed, we would pass the PACKED lmm as data and
781 * lmm_size in datalen (the MDS still has code which will handle that).
782 *
783 * If the create succeeds, we fill in the inode information
784 * with d_instantiate().
785 */
John L. Hammond9c1c2042016-09-18 16:37:32 -0400786static int ll_create_it(struct inode *dir, struct dentry *dentry,
Peng Taod7e09d02013-05-02 16:46:55 +0800787 struct lookup_intent *it)
788{
789 struct inode *inode;
790 int rc = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800791
James Nunez97a075c2016-04-27 18:21:01 -0400792 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, dir="DFID"(%p), intent=%s\n",
793 dentry, PFID(ll_inode2fid(dir)), dir, LL_IT2STR(it));
Peng Taod7e09d02013-05-02 16:46:55 +0800794
795 rc = it_open_error(DISP_OPEN_CREATE, it);
796 if (rc)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800797 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800798
John L. Hammond2d95f102014-04-27 13:07:05 -0400799 inode = ll_create_node(dir, it);
Peng Taod7e09d02013-05-02 16:46:55 +0800800 if (IS_ERR(inode))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800801 return PTR_ERR(inode);
Peng Taod7e09d02013-05-02 16:46:55 +0800802
Peng Taod7e09d02013-05-02 16:46:55 +0800803 d_instantiate(dentry, inode);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800804 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800805}
806
wang di79496842016-08-16 16:18:30 -0400807void ll_update_times(struct ptlrpc_request *request, struct inode *inode)
Peng Taod7e09d02013-05-02 16:46:55 +0800808{
809 struct mdt_body *body = req_capsule_server_get(&request->rq_pill,
810 &RMF_MDT_BODY);
811
812 LASSERT(body);
John L. Hammond2e1b5b82016-08-16 16:19:08 -0400813 if (body->mbo_valid & OBD_MD_FLMTIME &&
814 body->mbo_mtime > LTIME_S(inode->i_mtime)) {
James Nunez97a075c2016-04-27 18:21:01 -0400815 CDEBUG(D_INODE, "setting fid "DFID" mtime from %lu to %llu\n",
816 PFID(ll_inode2fid(inode)), LTIME_S(inode->i_mtime),
John L. Hammond2e1b5b82016-08-16 16:19:08 -0400817 body->mbo_mtime);
818 LTIME_S(inode->i_mtime) = body->mbo_mtime;
Peng Taod7e09d02013-05-02 16:46:55 +0800819 }
John L. Hammond2e1b5b82016-08-16 16:19:08 -0400820 if (body->mbo_valid & OBD_MD_FLCTIME &&
821 body->mbo_ctime > LTIME_S(inode->i_ctime))
822 LTIME_S(inode->i_ctime) = body->mbo_ctime;
Peng Taod7e09d02013-05-02 16:46:55 +0800823}
824
Al Virob2037bb2014-10-20 22:29:54 -0400825static int ll_new_node(struct inode *dir, struct dentry *dentry,
John L. Hammondcad89e52016-09-18 16:37:33 -0400826 const char *tgt, umode_t mode, int rdev,
Al Virob2037bb2014-10-20 22:29:54 -0400827 __u32 opc)
Peng Taod7e09d02013-05-02 16:46:55 +0800828{
829 struct ptlrpc_request *request = NULL;
830 struct md_op_data *op_data;
831 struct inode *inode = NULL;
832 struct ll_sb_info *sbi = ll_i2sbi(dir);
833 int tgt_len = 0;
834 int err;
835
Oleg Drokin6e168182016-02-16 00:46:46 -0500836 if (unlikely(tgt))
Peng Taod7e09d02013-05-02 16:46:55 +0800837 tgt_len = strlen(tgt) + 1;
wang did81e9002016-09-18 16:38:54 -0400838again:
Al Virob2037bb2014-10-20 22:29:54 -0400839 op_data = ll_prep_md_op_data(NULL, dir, NULL,
840 dentry->d_name.name,
841 dentry->d_name.len,
842 0, opc, NULL);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200843 if (IS_ERR(op_data)) {
844 err = PTR_ERR(op_data);
845 goto err_exit;
846 }
Peng Taod7e09d02013-05-02 16:46:55 +0800847
848 err = md_create(sbi->ll_md_exp, op_data, tgt, tgt_len, mode,
Peng Tao4b1a25f2013-07-15 22:27:14 +0800849 from_kuid(&init_user_ns, current_fsuid()),
850 from_kgid(&init_user_ns, current_fsgid()),
Peng Taod7e09d02013-05-02 16:46:55 +0800851 cfs_curproc_cap_pack(), rdev, &request);
852 ll_finish_md_op_data(op_data);
wang did81e9002016-09-18 16:38:54 -0400853 if (err < 0 && err != -EREMOTE)
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200854 goto err_exit;
Peng Taod7e09d02013-05-02 16:46:55 +0800855
wang did81e9002016-09-18 16:38:54 -0400856 /*
857 * If the client doesn't know where to create a subdirectory (or
858 * in case of a race that sends the RPC to the wrong MDS), the
859 * MDS will return -EREMOTE and the client will fetch the layout
860 * of the directory, then create the directory on the right MDT.
861 */
862 if (unlikely(err == -EREMOTE)) {
863 struct ll_inode_info *lli = ll_i2info(dir);
864 struct lmv_user_md *lum;
865 int lumsize, err2;
866
867 ptlrpc_req_finished(request);
868 request = NULL;
869
870 err2 = ll_dir_getstripe(dir, (void **)&lum, &lumsize, &request,
871 OBD_MD_DEFAULT_MEA);
872 if (!err2) {
873 /* Update stripe_offset and retry */
874 lli->lli_def_stripe_offset = lum->lum_stripe_offset;
875 } else if (err2 == -ENODATA &&
876 lli->lli_def_stripe_offset != -1) {
877 /*
878 * If there are no default stripe EA on the MDT, but the
879 * client has default stripe, then it probably means
880 * default stripe EA has just been deleted.
881 */
882 lli->lli_def_stripe_offset = -1;
883 } else {
884 goto err_exit;
885 }
886
887 ptlrpc_req_finished(request);
888 request = NULL;
889 goto again;
890 }
891
Peng Taod7e09d02013-05-02 16:46:55 +0800892 ll_update_times(request, dir);
893
Al Virob2037bb2014-10-20 22:29:54 -0400894 err = ll_prep_inode(&inode, request, dir->i_sb, NULL);
895 if (err)
896 goto err_exit;
Peng Taod7e09d02013-05-02 16:46:55 +0800897
Al Virob2037bb2014-10-20 22:29:54 -0400898 d_instantiate(dentry, inode);
Peng Taod7e09d02013-05-02 16:46:55 +0800899err_exit:
wang did81e9002016-09-18 16:38:54 -0400900 if (request)
901 ptlrpc_req_finished(request);
Peng Taod7e09d02013-05-02 16:46:55 +0800902
903 return err;
904}
905
Al Virod6689e52014-10-20 22:19:53 -0400906static int ll_mknod(struct inode *dir, struct dentry *dchild,
907 umode_t mode, dev_t rdev)
Peng Taod7e09d02013-05-02 16:46:55 +0800908{
909 int err;
Peng Taod7e09d02013-05-02 16:46:55 +0800910
James Nunez97a075c2016-04-27 18:21:01 -0400911 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, dir="DFID"(%p) mode %o dev %x\n",
912 dchild, PFID(ll_inode2fid(dir)), dir, mode,
913 old_encode_dev(rdev));
Peng Taod7e09d02013-05-02 16:46:55 +0800914
915 if (!IS_POSIXACL(dir) || !exp_connect_umask(ll_i2mdexp(dir)))
916 mode &= ~current_umask();
917
918 switch (mode & S_IFMT) {
919 case 0:
920 mode |= S_IFREG; /* for mode = 0 case, fallthrough */
921 case S_IFREG:
922 case S_IFCHR:
923 case S_IFBLK:
924 case S_IFIFO:
925 case S_IFSOCK:
Al Virob2037bb2014-10-20 22:29:54 -0400926 err = ll_new_node(dir, dchild, NULL, mode,
927 old_encode_dev(rdev),
Peng Taod7e09d02013-05-02 16:46:55 +0800928 LUSTRE_OPC_MKNOD);
929 break;
930 case S_IFDIR:
931 err = -EPERM;
932 break;
933 default:
934 err = -EINVAL;
935 }
936
937 if (!err)
938 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_MKNOD, 1);
939
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800940 return err;
Peng Taod7e09d02013-05-02 16:46:55 +0800941}
942
943/*
944 * Plain create. Intent create is handled in atomic_open.
945 */
946static int ll_create_nd(struct inode *dir, struct dentry *dentry,
947 umode_t mode, bool want_excl)
948{
949 int rc;
950
James Nunez97a075c2016-04-27 18:21:01 -0400951 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, dir="DFID"(%p), flags=%u, excl=%d\n",
952 dentry, PFID(ll_inode2fid(dir)), dir, mode, want_excl);
Peng Taod7e09d02013-05-02 16:46:55 +0800953
Al Virod6689e52014-10-20 22:19:53 -0400954 rc = ll_mknod(dir, dentry, mode, 0);
Peng Taod7e09d02013-05-02 16:46:55 +0800955
956 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_CREATE, 1);
957
Al Viro09561a52014-05-07 21:10:24 -0400958 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, unhashed %d\n",
959 dentry, d_unhashed(dentry));
Peng Taod7e09d02013-05-02 16:46:55 +0800960
961 return rc;
962}
963
Al Viro521f2ad2014-10-20 22:38:51 -0400964/* ll_unlink() doesn't update the inode with the new link count.
965 * Instead, ll_ddelete() and ll_d_iput() will update it based upon if there
966 * is any lock existing. They will recycle dentries and inodes based upon locks
Oleg Drokinc0894c62016-02-24 22:00:30 -0500967 * too. b=20433
968 */
Andrew Perepechko96d61c22016-04-12 16:14:05 -0400969static int ll_unlink(struct inode *dir, struct dentry *dchild)
Peng Taod7e09d02013-05-02 16:46:55 +0800970{
Al Viro521f2ad2014-10-20 22:38:51 -0400971 struct ptlrpc_request *request = NULL;
972 struct md_op_data *op_data;
973 int rc;
Laure Millet43550122015-03-18 19:49:45 +0100974
Al Viro521f2ad2014-10-20 22:38:51 -0400975 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd,dir=%lu/%u(%p)\n",
Andrew Perepechko96d61c22016-04-12 16:14:05 -0400976 dchild, dir->i_ino, dir->i_generation, dir);
Al Viro521f2ad2014-10-20 22:38:51 -0400977
Al Viro521f2ad2014-10-20 22:38:51 -0400978 op_data = ll_prep_md_op_data(NULL, dir, NULL,
Andrew Perepechko96d61c22016-04-12 16:14:05 -0400979 dchild->d_name.name,
980 dchild->d_name.len,
Al Viro521f2ad2014-10-20 22:38:51 -0400981 0, LUSTRE_OPC_ANY, NULL);
982 if (IS_ERR(op_data))
983 return PTR_ERR(op_data);
984
John L. Hammond5d9d0cb2016-09-18 16:37:35 -0400985 if (dchild->d_inode)
Andrew Perepechko3c4b9d02016-04-12 16:14:06 -0400986 op_data->op_fid3 = *ll_inode2fid(dchild->d_inode);
987
Al Viro521f2ad2014-10-20 22:38:51 -0400988 op_data->op_fid2 = op_data->op_fid3;
989 rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
990 ll_finish_md_op_data(op_data);
991 if (rc)
992 goto out;
993
994 ll_update_times(request, dir);
995 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_UNLINK, 1);
996
Al Viro521f2ad2014-10-20 22:38:51 -0400997 out:
998 ptlrpc_req_finished(request);
999 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001000}
1001
Oleg Drokine3befdc2015-07-30 18:27:59 -04001002static int ll_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Peng Taod7e09d02013-05-02 16:46:55 +08001003{
Al Viro7c2f9092014-10-20 22:22:38 -04001004 int err;
1005
James Nunez97a075c2016-04-27 18:21:01 -04001006 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, dir"DFID"(%p)\n",
1007 dentry, PFID(ll_inode2fid(dir)), dir);
Al Viro7c2f9092014-10-20 22:22:38 -04001008
1009 if (!IS_POSIXACL(dir) || !exp_connect_umask(ll_i2mdexp(dir)))
1010 mode &= ~current_umask();
Oleg Drokincd94f232016-08-21 18:04:34 -04001011 mode = (mode & (S_IRWXUGO | S_ISVTX)) | S_IFDIR;
Al Viro7c2f9092014-10-20 22:22:38 -04001012
John L. Hammond9329b692016-09-18 16:37:34 -04001013 err = ll_new_node(dir, dentry, NULL, mode, 0, LUSTRE_OPC_MKDIR);
Al Viro7c2f9092014-10-20 22:22:38 -04001014 if (!err)
1015 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_MKDIR, 1);
1016
1017 return err;
Peng Taod7e09d02013-05-02 16:46:55 +08001018}
1019
Andrew Perepechko96d61c22016-04-12 16:14:05 -04001020static int ll_rmdir(struct inode *dir, struct dentry *dchild)
Peng Taod7e09d02013-05-02 16:46:55 +08001021{
Al Viro55dec612014-10-20 22:36:22 -04001022 struct ptlrpc_request *request = NULL;
1023 struct md_op_data *op_data;
1024 int rc;
1025
James Nunez97a075c2016-04-27 18:21:01 -04001026 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, dir="DFID"(%p)\n",
1027 dchild, PFID(ll_inode2fid(dir)), dir);
Al Viro55dec612014-10-20 22:36:22 -04001028
Al Viro55dec612014-10-20 22:36:22 -04001029 op_data = ll_prep_md_op_data(NULL, dir, NULL,
Andrew Perepechko96d61c22016-04-12 16:14:05 -04001030 dchild->d_name.name,
1031 dchild->d_name.len,
Al Viro55dec612014-10-20 22:36:22 -04001032 S_IFDIR, LUSTRE_OPC_ANY, NULL);
1033 if (IS_ERR(op_data))
1034 return PTR_ERR(op_data);
1035
John L. Hammond5d9d0cb2016-09-18 16:37:35 -04001036 if (dchild->d_inode)
Andrew Perepechko3c4b9d02016-04-12 16:14:06 -04001037 op_data->op_fid3 = *ll_inode2fid(dchild->d_inode);
1038
Al Viro55dec612014-10-20 22:36:22 -04001039 op_data->op_fid2 = op_data->op_fid3;
1040 rc = md_unlink(ll_i2sbi(dir)->ll_md_exp, op_data, &request);
1041 ll_finish_md_op_data(op_data);
1042 if (rc == 0) {
1043 ll_update_times(request, dir);
1044 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_RMDIR, 1);
1045 }
1046
1047 ptlrpc_req_finished(request);
1048 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001049}
1050
1051static int ll_symlink(struct inode *dir, struct dentry *dentry,
1052 const char *oldname)
1053{
Al Viro60dd6542014-10-20 22:26:04 -04001054 int err;
1055
James Nunez97a075c2016-04-27 18:21:01 -04001056 CDEBUG(D_VFSTRACE, "VFS Op:name=%pd, dir="DFID"(%p),target=%.*s\n",
1057 dentry, PFID(ll_inode2fid(dir)), dir, 3000, oldname);
Al Viro60dd6542014-10-20 22:26:04 -04001058
Al Virob2037bb2014-10-20 22:29:54 -04001059 err = ll_new_node(dir, dentry, oldname, S_IFLNK | S_IRWXUGO,
Oleg Drokine15ba452016-02-26 01:49:49 -05001060 0, LUSTRE_OPC_SYMLINK);
Al Viro60dd6542014-10-20 22:26:04 -04001061
1062 if (!err)
1063 ll_stats_ops_tally(ll_i2sbi(dir), LPROC_LL_SYMLINK, 1);
1064
1065 return err;
Peng Taod7e09d02013-05-02 16:46:55 +08001066}
1067
1068static int ll_link(struct dentry *old_dentry, struct inode *dir,
1069 struct dentry *new_dentry)
1070{
David Howells2b0143b2015-03-17 22:25:59 +00001071 struct inode *src = d_inode(old_dentry);
Al Viro59cc93e2014-10-20 23:35:36 -04001072 struct ll_sb_info *sbi = ll_i2sbi(dir);
1073 struct ptlrpc_request *request = NULL;
1074 struct md_op_data *op_data;
1075 int err;
1076
James Nunez97a075c2016-04-27 18:21:01 -04001077 CDEBUG(D_VFSTRACE, "VFS Op: inode="DFID"(%p), dir="DFID"(%p), target=%pd\n",
1078 PFID(ll_inode2fid(src)), src, PFID(ll_inode2fid(dir)), dir,
1079 new_dentry);
Al Viro59cc93e2014-10-20 23:35:36 -04001080
1081 op_data = ll_prep_md_op_data(NULL, src, dir, new_dentry->d_name.name,
1082 new_dentry->d_name.len,
1083 0, LUSTRE_OPC_ANY, NULL);
1084 if (IS_ERR(op_data))
1085 return PTR_ERR(op_data);
1086
1087 err = md_link(sbi->ll_md_exp, op_data, &request);
1088 ll_finish_md_op_data(op_data);
1089 if (err)
1090 goto out;
1091
1092 ll_update_times(request, dir);
1093 ll_stats_ops_tally(sbi, LPROC_LL_LINK, 1);
1094out:
1095 ptlrpc_req_finished(request);
1096 return err;
Peng Taod7e09d02013-05-02 16:46:55 +08001097}
1098
Andrew Perepechko96d61c22016-04-12 16:14:05 -04001099static int ll_rename(struct inode *src, struct dentry *src_dchild,
1100 struct inode *tgt, struct dentry *tgt_dchild)
Peng Taod7e09d02013-05-02 16:46:55 +08001101{
Al Viro78851092014-10-20 23:27:44 -04001102 struct ptlrpc_request *request = NULL;
Andrew Perepechko96d61c22016-04-12 16:14:05 -04001103 struct ll_sb_info *sbi = ll_i2sbi(src);
Al Viro78851092014-10-20 23:27:44 -04001104 struct md_op_data *op_data;
Peng Taod7e09d02013-05-02 16:46:55 +08001105 int err;
Al Viro78851092014-10-20 23:27:44 -04001106
1107 CDEBUG(D_VFSTRACE,
James Nunez97a075c2016-04-27 18:21:01 -04001108 "VFS Op:oldname=%pd, src_dir="DFID"(%p), newname=%pd, tgt_dir="DFID"(%p)\n",
1109 src_dchild, PFID(ll_inode2fid(src)), src,
1110 tgt_dchild, PFID(ll_inode2fid(tgt)), tgt);
Al Viro78851092014-10-20 23:27:44 -04001111
Andrew Perepechko96d61c22016-04-12 16:14:05 -04001112 op_data = ll_prep_md_op_data(NULL, src, tgt, NULL, 0, 0,
Al Viro78851092014-10-20 23:27:44 -04001113 LUSTRE_OPC_ANY, NULL);
1114 if (IS_ERR(op_data))
1115 return PTR_ERR(op_data);
1116
John L. Hammond5d9d0cb2016-09-18 16:37:35 -04001117 if (src_dchild->d_inode)
Andrew Perepechko3c4b9d02016-04-12 16:14:06 -04001118 op_data->op_fid3 = *ll_inode2fid(src_dchild->d_inode);
John L. Hammond5d9d0cb2016-09-18 16:37:35 -04001119 if (tgt_dchild->d_inode)
Andrew Perepechko3c4b9d02016-04-12 16:14:06 -04001120 op_data->op_fid4 = *ll_inode2fid(tgt_dchild->d_inode);
1121
Al Viro78851092014-10-20 23:27:44 -04001122 err = md_rename(sbi->ll_md_exp, op_data,
Andrew Perepechko96d61c22016-04-12 16:14:05 -04001123 src_dchild->d_name.name,
1124 src_dchild->d_name.len,
1125 tgt_dchild->d_name.name,
1126 tgt_dchild->d_name.len, &request);
Al Viro78851092014-10-20 23:27:44 -04001127 ll_finish_md_op_data(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +08001128 if (!err) {
Andrew Perepechko96d61c22016-04-12 16:14:05 -04001129 ll_update_times(request, src);
1130 ll_update_times(request, tgt);
Al Viro78851092014-10-20 23:27:44 -04001131 ll_stats_ops_tally(sbi, LPROC_LL_RENAME, 1);
Peng Taod7e09d02013-05-02 16:46:55 +08001132 }
Al Viro78851092014-10-20 23:27:44 -04001133
1134 ptlrpc_req_finished(request);
1135 if (!err)
Andrew Perepechko96d61c22016-04-12 16:14:05 -04001136 d_move(src_dchild, tgt_dchild);
Peng Taod7e09d02013-05-02 16:46:55 +08001137 return err;
1138}
1139
John L. Hammond2d95f102014-04-27 13:07:05 -04001140const struct inode_operations ll_dir_inode_operations = {
Peng Taod7e09d02013-05-02 16:46:55 +08001141 .mknod = ll_mknod,
1142 .atomic_open = ll_atomic_open,
1143 .lookup = ll_lookup_nd,
1144 .create = ll_create_nd,
1145 /* We need all these non-raw things for NFSD, to not patch it. */
1146 .unlink = ll_unlink,
1147 .mkdir = ll_mkdir,
1148 .rmdir = ll_rmdir,
1149 .symlink = ll_symlink,
1150 .link = ll_link,
1151 .rename = ll_rename,
1152 .setattr = ll_setattr,
1153 .getattr = ll_getattr,
1154 .permission = ll_inode_permission,
James Simmons2c563882016-07-11 09:40:10 -04001155 .setxattr = generic_setxattr,
1156 .getxattr = generic_getxattr,
Peng Taod7e09d02013-05-02 16:46:55 +08001157 .listxattr = ll_listxattr,
James Simmons2c563882016-07-11 09:40:10 -04001158 .removexattr = generic_removexattr,
Peng Taod7e09d02013-05-02 16:46:55 +08001159 .get_acl = ll_get_acl,
1160};
1161
John L. Hammond2d95f102014-04-27 13:07:05 -04001162const struct inode_operations ll_special_inode_operations = {
Peng Taod7e09d02013-05-02 16:46:55 +08001163 .setattr = ll_setattr,
1164 .getattr = ll_getattr,
1165 .permission = ll_inode_permission,
James Simmons2c563882016-07-11 09:40:10 -04001166 .setxattr = generic_setxattr,
1167 .getxattr = generic_getxattr,
Peng Taod7e09d02013-05-02 16:46:55 +08001168 .listxattr = ll_listxattr,
James Simmons2c563882016-07-11 09:40:10 -04001169 .removexattr = generic_removexattr,
Peng Taod7e09d02013-05-02 16:46:55 +08001170 .get_acl = ll_get_acl,
1171};