blob: 57281b9e31ffc1d71691bab4ba08a8037282ceb3 [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 * lustre/llite/file.c
33 *
34 * Author: Peter Braam <braam@clusterfs.com>
35 * Author: Phil Schwan <phil@clusterfs.com>
36 * Author: Andreas Dilger <adilger@clusterfs.com>
37 */
38
39#define DEBUG_SUBSYSTEM S_LLITE
Greg Kroah-Hartman67a235f2014-07-11 21:51:41 -070040#include "../include/lustre_dlm.h"
41#include "../include/lustre_lite.h"
Peng Taod7e09d02013-05-02 16:46:55 +080042#include <linux/pagemap.h>
43#include <linux/file.h>
Oleg Drokinbb412922016-03-30 19:48:38 -040044#include <linux/mount.h>
Peng Taod7e09d02013-05-02 16:46:55 +080045#include "llite_internal.h"
Greg Kroah-Hartman67a235f2014-07-11 21:51:41 -070046#include "../include/lustre/ll_fiemap.h"
Peng Taod7e09d02013-05-02 16:46:55 +080047
Greg Kroah-Hartman67a235f2014-07-11 21:51:41 -070048#include "../include/cl_object.h"
Peng Taod7e09d02013-05-02 16:46:55 +080049
John L. Hammond2d95f102014-04-27 13:07:05 -040050static int
51ll_put_grouplock(struct inode *inode, struct file *file, unsigned long arg);
52
53static int ll_lease_close(struct obd_client_handle *och, struct inode *inode,
54 bool *lease_broken);
55
56static enum llioc_iter
57ll_iocontrol_call(struct inode *inode, struct file *file,
58 unsigned int cmd, unsigned long arg, int *rcp);
59
60static struct ll_file_data *ll_file_data_get(void)
Peng Taod7e09d02013-05-02 16:46:55 +080061{
62 struct ll_file_data *fd;
63
Amitoj Kaur Chawla21068c42016-02-26 14:25:09 +053064 fd = kmem_cache_zalloc(ll_file_data_slab, GFP_NOFS);
Oleg Drokin6e168182016-02-16 00:46:46 -050065 if (!fd)
John L. Hammond73863d832013-07-23 00:06:27 +080066 return NULL;
Peng Taod7e09d02013-05-02 16:46:55 +080067 fd->fd_write_failed = false;
68 return fd;
69}
70
71static void ll_file_data_put(struct ll_file_data *fd)
72{
Oleg Drokin6e168182016-02-16 00:46:46 -050073 if (fd)
Mike Rapoport50d30362015-10-20 12:39:51 +030074 kmem_cache_free(ll_file_data_slab, fd);
Peng Taod7e09d02013-05-02 16:46:55 +080075}
76
77void ll_pack_inode2opdata(struct inode *inode, struct md_op_data *op_data,
78 struct lustre_handle *fh)
79{
80 op_data->op_fid1 = ll_i2info(inode)->lli_fid;
81 op_data->op_attr.ia_mode = inode->i_mode;
82 op_data->op_attr.ia_atime = inode->i_atime;
83 op_data->op_attr.ia_mtime = inode->i_mtime;
84 op_data->op_attr.ia_ctime = inode->i_ctime;
85 op_data->op_attr.ia_size = i_size_read(inode);
86 op_data->op_attr_blocks = inode->i_blocks;
Oleg Drokinbb412922016-03-30 19:48:38 -040087 op_data->op_attr_flags = ll_inode_to_ext_flags(inode->i_flags);
Peng Taod7e09d02013-05-02 16:46:55 +080088 op_data->op_ioepoch = ll_i2info(inode)->lli_ioepoch;
89 if (fh)
90 op_data->op_handle = *fh;
Peng Taod7e09d02013-05-02 16:46:55 +080091
Julia Lawall1f6eaf82015-08-29 19:30:09 +020092 if (ll_i2info(inode)->lli_flags & LLIF_DATA_MODIFIED)
Peng Taod7e09d02013-05-02 16:46:55 +080093 op_data->op_bias |= MDS_DATA_MODIFIED;
94}
95
96/**
97 * Closes the IO epoch and packs all the attributes into @op_data for
98 * the CLOSE rpc.
99 */
100static void ll_prepare_close(struct inode *inode, struct md_op_data *op_data,
101 struct obd_client_handle *och)
102{
Emoly Liuf57d9a72013-06-03 21:40:55 +0800103 op_data->op_attr.ia_valid = ATTR_MODE | ATTR_ATIME | ATTR_ATIME_SET |
104 ATTR_MTIME | ATTR_MTIME_SET |
105 ATTR_CTIME | ATTR_CTIME_SET;
Peng Taod7e09d02013-05-02 16:46:55 +0800106
107 if (!(och->och_flags & FMODE_WRITE))
108 goto out;
109
110 if (!exp_connect_som(ll_i2mdexp(inode)) || !S_ISREG(inode->i_mode))
111 op_data->op_attr.ia_valid |= ATTR_SIZE | ATTR_BLOCKS;
112 else
113 ll_ioepoch_close(inode, op_data, &och, 0);
114
115out:
116 ll_pack_inode2opdata(inode, op_data, &och->och_fh);
117 ll_prep_md_op_data(op_data, inode, NULL, NULL,
118 0, 0, LUSTRE_OPC_ANY, NULL);
Peng Taod7e09d02013-05-02 16:46:55 +0800119}
120
121static int ll_close_inode_openhandle(struct obd_export *md_exp,
122 struct inode *inode,
Jinshan Xiong48d23e62013-12-03 21:58:48 +0800123 struct obd_client_handle *och,
124 const __u64 *data_version)
Peng Taod7e09d02013-05-02 16:46:55 +0800125{
126 struct obd_export *exp = ll_i2mdexp(inode);
127 struct md_op_data *op_data;
128 struct ptlrpc_request *req = NULL;
129 struct obd_device *obd = class_exp2obd(exp);
130 int epoch_close = 1;
131 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800132
Oleg Drokin6e168182016-02-16 00:46:46 -0500133 if (!obd) {
Peng Taod7e09d02013-05-02 16:46:55 +0800134 /*
135 * XXX: in case of LMV, is this correct to access
136 * ->exp_handle?
137 */
Greg Kroah-Hartman55f5a822014-07-12 20:26:07 -0700138 CERROR("Invalid MDC connection handle %#llx\n",
Peng Taod7e09d02013-05-02 16:46:55 +0800139 ll_i2mdexp(inode)->exp_handle.h_cookie);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200140 rc = 0;
141 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800142 }
143
Julia Lawall496a51b2014-09-18 22:24:02 +0200144 op_data = kzalloc(sizeof(*op_data), GFP_NOFS);
145 if (!op_data) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200146 /* XXX We leak openhandle and request here. */
147 rc = -ENOMEM;
148 goto out;
149 }
Peng Taod7e09d02013-05-02 16:46:55 +0800150
151 ll_prepare_close(inode, op_data, och);
Oleg Drokin6e168182016-02-16 00:46:46 -0500152 if (data_version) {
Jinshan Xiong48d23e62013-12-03 21:58:48 +0800153 /* Pass in data_version implies release. */
154 op_data->op_bias |= MDS_HSM_RELEASE;
155 op_data->op_data_version = *data_version;
156 op_data->op_lease_handle = och->och_lease_handle;
157 op_data->op_attr.ia_valid |= ATTR_SIZE | ATTR_BLOCKS;
158 }
Haneen Mohammedb6ee3822015-03-13 20:48:53 +0300159 epoch_close = op_data->op_flags & MF_EPOCH_CLOSE;
Peng Taod7e09d02013-05-02 16:46:55 +0800160 rc = md_close(md_exp, op_data, och->och_mod, &req);
161 if (rc == -EAGAIN) {
162 /* This close must have the epoch closed. */
163 LASSERT(epoch_close);
164 /* MDS has instructed us to obtain Size-on-MDS attribute from
Oleg Drokinc0894c62016-02-24 22:00:30 -0500165 * OSTs and send setattr to back to MDS.
166 */
Peng Taod7e09d02013-05-02 16:46:55 +0800167 rc = ll_som_update(inode, op_data);
168 if (rc) {
James Nunez97a075c2016-04-27 18:21:01 -0400169 CERROR("%s: inode "DFID" mdc Size-on-MDS update failed: rc = %d\n",
170 ll_i2mdexp(inode)->exp_obd->obd_name,
171 PFID(ll_inode2fid(inode)), rc);
Peng Taod7e09d02013-05-02 16:46:55 +0800172 rc = 0;
173 }
174 } else if (rc) {
James Nunez97a075c2016-04-27 18:21:01 -0400175 CERROR("%s: inode "DFID" mdc close failed: rc = %d\n",
176 ll_i2mdexp(inode)->exp_obd->obd_name,
177 PFID(ll_inode2fid(inode)), rc);
Peng Taod7e09d02013-05-02 16:46:55 +0800178 }
179
180 /* DATA_MODIFIED flag was successfully sent on close, cancel data
Oleg Drokinc0894c62016-02-24 22:00:30 -0500181 * modification flag.
182 */
Peng Taod7e09d02013-05-02 16:46:55 +0800183 if (rc == 0 && (op_data->op_bias & MDS_DATA_MODIFIED)) {
184 struct ll_inode_info *lli = ll_i2info(inode);
185
186 spin_lock(&lli->lli_lock);
187 lli->lli_flags &= ~LLIF_DATA_MODIFIED;
188 spin_unlock(&lli->lli_lock);
189 }
190
Peng Taod7e09d02013-05-02 16:46:55 +0800191 if (rc == 0) {
192 rc = ll_objects_destroy(req, inode);
193 if (rc)
194 CERROR("inode %lu ll_objects destroy: rc = %d\n",
195 inode->i_ino, rc);
196 }
Jinshan Xiong48d23e62013-12-03 21:58:48 +0800197 if (rc == 0 && op_data->op_bias & MDS_HSM_RELEASE) {
198 struct mdt_body *body;
aybuke ozdemircea812c2015-02-26 23:45:45 +0200199
Jinshan Xiong48d23e62013-12-03 21:58:48 +0800200 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
201 if (!(body->valid & OBD_MD_FLRELEASED))
202 rc = -EBUSY;
203 }
204
205 ll_finish_md_op_data(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +0800206
Peng Taod7e09d02013-05-02 16:46:55 +0800207out:
Peng Taod7e09d02013-05-02 16:46:55 +0800208 if (exp_connect_som(exp) && !epoch_close &&
209 S_ISREG(inode->i_mode) && (och->och_flags & FMODE_WRITE)) {
210 ll_queue_done_writing(inode, LLIF_DONE_WRITING);
211 } else {
212 md_clear_open_replay_data(md_exp, och);
213 /* Free @och if it is not waiting for DONE_WRITING. */
214 och->och_fh.cookie = DEAD_HANDLE_MAGIC;
Julia Lawall97903a22015-04-12 22:55:02 +0200215 kfree(och);
Peng Taod7e09d02013-05-02 16:46:55 +0800216 }
217 if (req) /* This is close request */
218 ptlrpc_req_finished(req);
219 return rc;
220}
221
John L. Hammond45b2a012014-02-28 21:16:30 -0500222int ll_md_real_close(struct inode *inode, fmode_t fmode)
Peng Taod7e09d02013-05-02 16:46:55 +0800223{
224 struct ll_inode_info *lli = ll_i2info(inode);
225 struct obd_client_handle **och_p;
226 struct obd_client_handle *och;
227 __u64 *och_usecount;
228 int rc = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800229
John L. Hammond45b2a012014-02-28 21:16:30 -0500230 if (fmode & FMODE_WRITE) {
Peng Taod7e09d02013-05-02 16:46:55 +0800231 och_p = &lli->lli_mds_write_och;
232 och_usecount = &lli->lli_open_fd_write_count;
John L. Hammond45b2a012014-02-28 21:16:30 -0500233 } else if (fmode & FMODE_EXEC) {
Peng Taod7e09d02013-05-02 16:46:55 +0800234 och_p = &lli->lli_mds_exec_och;
235 och_usecount = &lli->lli_open_fd_exec_count;
236 } else {
John L. Hammond45b2a012014-02-28 21:16:30 -0500237 LASSERT(fmode & FMODE_READ);
Peng Taod7e09d02013-05-02 16:46:55 +0800238 och_p = &lli->lli_mds_read_och;
239 och_usecount = &lli->lli_open_fd_read_count;
240 }
241
242 mutex_lock(&lli->lli_och_mutex);
John L. Hammond45b2a012014-02-28 21:16:30 -0500243 if (*och_usecount > 0) {
244 /* There are still users of this handle, so skip
Oleg Drokinc0894c62016-02-24 22:00:30 -0500245 * freeing it.
246 */
Peng Taod7e09d02013-05-02 16:46:55 +0800247 mutex_unlock(&lli->lli_och_mutex);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800248 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800249 }
John L. Hammond45b2a012014-02-28 21:16:30 -0500250
Tina Ruchandani57303e72014-10-21 22:13:21 -0700251 och = *och_p;
Peng Taod7e09d02013-05-02 16:46:55 +0800252 *och_p = NULL;
253 mutex_unlock(&lli->lli_och_mutex);
254
Oleg Drokin6e168182016-02-16 00:46:46 -0500255 if (och) {
John L. Hammond45b2a012014-02-28 21:16:30 -0500256 /* There might be a race and this handle may already
Oleg Drokinc0894c62016-02-24 22:00:30 -0500257 * be closed.
258 */
Peng Taod7e09d02013-05-02 16:46:55 +0800259 rc = ll_close_inode_openhandle(ll_i2sbi(inode)->ll_md_exp,
Jinshan Xiong48d23e62013-12-03 21:58:48 +0800260 inode, och, NULL);
Peng Taod7e09d02013-05-02 16:46:55 +0800261 }
262
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800263 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800264}
265
John L. Hammond2d95f102014-04-27 13:07:05 -0400266static int ll_md_close(struct obd_export *md_exp, struct inode *inode,
267 struct file *file)
Peng Taod7e09d02013-05-02 16:46:55 +0800268{
269 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
270 struct ll_inode_info *lli = ll_i2info(inode);
Al Viro74d01952014-05-07 20:55:28 -0400271 int lockmode;
272 __u64 flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_TEST_LOCK;
273 struct lustre_handle lockh;
Anjali Menon8369cff2015-08-18 19:24:24 +0530274 ldlm_policy_data_t policy = {.l_inodebits = {MDS_INODELOCK_OPEN} };
Peng Taod7e09d02013-05-02 16:46:55 +0800275 int rc = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800276
277 /* clear group lock, if present */
278 if (unlikely(fd->fd_flags & LL_FILE_GROUP_LOCKED))
John Hammond98eae5e2016-03-30 19:48:55 -0400279 ll_put_grouplock(inode, file, fd->fd_grouplock.lg_gid);
Peng Taod7e09d02013-05-02 16:46:55 +0800280
Oleg Drokin6e168182016-02-16 00:46:46 -0500281 if (fd->fd_lease_och) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800282 bool lease_broken;
283
284 /* Usually the lease is not released when the
Oleg Drokinc0894c62016-02-24 22:00:30 -0500285 * application crashed, we need to release here.
286 */
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800287 rc = ll_lease_close(fd->fd_lease_och, inode, &lease_broken);
Oleg Drokine15ba452016-02-26 01:49:49 -0500288 CDEBUG(rc ? D_ERROR : D_INODE,
289 "Clean up lease " DFID " %d/%d\n",
290 PFID(&lli->lli_fid), rc, lease_broken);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800291
292 fd->fd_lease_och = NULL;
293 }
294
Oleg Drokin6e168182016-02-16 00:46:46 -0500295 if (fd->fd_och) {
Jinshan Xiong48d23e62013-12-03 21:58:48 +0800296 rc = ll_close_inode_openhandle(md_exp, inode, fd->fd_och, NULL);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800297 fd->fd_och = NULL;
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200298 goto out;
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800299 }
300
Peng Taod7e09d02013-05-02 16:46:55 +0800301 /* Let's see if we have good enough OPEN lock on the file and if
Oleg Drokinc0894c62016-02-24 22:00:30 -0500302 * we can skip talking to MDS
303 */
Peng Taod7e09d02013-05-02 16:46:55 +0800304
Al Viro74d01952014-05-07 20:55:28 -0400305 mutex_lock(&lli->lli_och_mutex);
306 if (fd->fd_omode & FMODE_WRITE) {
307 lockmode = LCK_CW;
308 LASSERT(lli->lli_open_fd_write_count);
309 lli->lli_open_fd_write_count--;
310 } else if (fd->fd_omode & FMODE_EXEC) {
311 lockmode = LCK_PR;
312 LASSERT(lli->lli_open_fd_exec_count);
313 lli->lli_open_fd_exec_count--;
Peng Taod7e09d02013-05-02 16:46:55 +0800314 } else {
Al Viro74d01952014-05-07 20:55:28 -0400315 lockmode = LCK_CR;
316 LASSERT(lli->lli_open_fd_read_count);
317 lli->lli_open_fd_read_count--;
Peng Taod7e09d02013-05-02 16:46:55 +0800318 }
Al Viro74d01952014-05-07 20:55:28 -0400319 mutex_unlock(&lli->lli_och_mutex);
320
321 if (!md_lock_match(md_exp, flags, ll_inode2fid(inode),
322 LDLM_IBITS, &policy, lockmode, &lockh))
323 rc = ll_md_real_close(inode, fd->fd_omode);
Peng Taod7e09d02013-05-02 16:46:55 +0800324
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800325out:
Peng Taod7e09d02013-05-02 16:46:55 +0800326 LUSTRE_FPRIVATE(file) = NULL;
327 ll_file_data_put(fd);
Peng Taod7e09d02013-05-02 16:46:55 +0800328
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800329 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800330}
331
332/* While this returns an error code, fput() the caller does not, so we need
333 * to make every effort to clean up all of our state here. Also, applications
334 * rarely check close errors and even if an error is returned they will not
335 * re-try the close call.
336 */
337int ll_file_release(struct inode *inode, struct file *file)
338{
339 struct ll_file_data *fd;
340 struct ll_sb_info *sbi = ll_i2sbi(inode);
341 struct ll_inode_info *lli = ll_i2info(inode);
342 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800343
James Nunez97a075c2016-04-27 18:21:01 -0400344 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
345 PFID(ll_inode2fid(inode)), inode);
Peng Taod7e09d02013-05-02 16:46:55 +0800346
Al Virof76c23d2014-10-21 15:20:42 -0400347 if (!is_root_inode(inode))
Peng Taod7e09d02013-05-02 16:46:55 +0800348 ll_stats_ops_tally(sbi, LPROC_LL_RELEASE, 1);
349 fd = LUSTRE_FPRIVATE(file);
Oleg Drokin6e168182016-02-16 00:46:46 -0500350 LASSERT(fd);
Peng Taod7e09d02013-05-02 16:46:55 +0800351
Oleg Drokinc0894c62016-02-24 22:00:30 -0500352 /* The last ref on @file, maybe not be the owner pid of statahead.
Peng Taod7e09d02013-05-02 16:46:55 +0800353 * Different processes can open the same dir, "ll_opendir_key" means:
Oleg Drokinc0894c62016-02-24 22:00:30 -0500354 * it is me that should stop the statahead thread.
355 */
Peng Taod7e09d02013-05-02 16:46:55 +0800356 if (S_ISDIR(inode->i_mode) && lli->lli_opendir_key == fd &&
357 lli->lli_opendir_pid != 0)
358 ll_stop_statahead(inode, lli->lli_opendir_key);
359
Al Virof76c23d2014-10-21 15:20:42 -0400360 if (is_root_inode(inode)) {
Peng Taod7e09d02013-05-02 16:46:55 +0800361 LUSTRE_FPRIVATE(file) = NULL;
362 ll_file_data_put(fd);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800363 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800364 }
365
366 if (!S_ISDIR(inode->i_mode)) {
367 lov_read_and_clear_async_rc(lli->lli_clob);
368 lli->lli_async_rc = 0;
369 }
370
371 rc = ll_md_close(sbi->ll_md_exp, inode, file);
372
373 if (CFS_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_DUMP_LOG, cfs_fail_val))
374 libcfs_debug_dumplog();
375
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800376 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800377}
378
Al Viro48eddfd2014-05-07 21:24:47 -0400379static int ll_intent_file_open(struct dentry *dentry, void *lmm,
Peng Taod7e09d02013-05-02 16:46:55 +0800380 int lmmsize, struct lookup_intent *itp)
381{
David Howells2b0143b2015-03-17 22:25:59 +0000382 struct inode *inode = d_inode(dentry);
Al Viro48eddfd2014-05-07 21:24:47 -0400383 struct ll_sb_info *sbi = ll_i2sbi(inode);
384 struct dentry *parent = dentry->d_parent;
385 const char *name = dentry->d_name.name;
386 const int len = dentry->d_name.len;
Peng Taod7e09d02013-05-02 16:46:55 +0800387 struct md_op_data *op_data;
388 struct ptlrpc_request *req;
389 __u32 opc = LUSTRE_OPC_ANY;
390 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800391
Oleg Drokinc0894c62016-02-24 22:00:30 -0500392 /* Usually we come here only for NFSD, and we want open lock. */
Peng Taod7e09d02013-05-02 16:46:55 +0800393 /* We can also get here if there was cached open handle in revalidate_it
394 * but it disappeared while we were getting from there to ll_file_open.
Masanari Iidabef31c72013-09-15 14:38:18 +0900395 * But this means this file was closed and immediately opened which
Oleg Drokinc0894c62016-02-24 22:00:30 -0500396 * makes a good candidate for using OPEN lock
397 */
Peng Taod7e09d02013-05-02 16:46:55 +0800398 /* If lmmsize & lmm are not 0, we are just setting stripe info
Oleg Drokinc0894c62016-02-24 22:00:30 -0500399 * parameters. No need for the open lock
400 */
Oleg Drokin6e168182016-02-16 00:46:46 -0500401 if (!lmm && lmmsize == 0) {
Oleg Drokin6dad4d82016-06-20 16:55:45 -0400402 struct ll_dentry_data *ldd = ll_d2d(dentry);
403 /*
404 * If we came via ll_iget_for_nfs, then we need to request
405 * struct ll_dentry_data *ldd = ll_d2d(file->f_dentry);
406 *
407 * NB: when ldd is NULL, it must have come via normal
408 * lookup path only, since ll_iget_for_nfs always calls
409 * ll_d_init().
410 */
411 if (ldd && ldd->lld_nfs_dentry) {
412 ldd->lld_nfs_dentry = 0;
413 itp->it_flags |= MDS_OPEN_LOCK;
414 }
Peng Taod7e09d02013-05-02 16:46:55 +0800415 if (itp->it_flags & FMODE_WRITE)
416 opc = LUSTRE_OPC_CREATE;
417 }
418
David Howells2b0143b2015-03-17 22:25:59 +0000419 op_data = ll_prep_md_op_data(NULL, d_inode(parent),
Al Viro48eddfd2014-05-07 21:24:47 -0400420 inode, name, len,
Peng Taod7e09d02013-05-02 16:46:55 +0800421 O_RDWR, opc, NULL);
422 if (IS_ERR(op_data))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800423 return PTR_ERR(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +0800424
425 itp->it_flags |= MDS_OPEN_BY_FID;
426 rc = md_intent_lock(sbi->ll_md_exp, op_data, lmm, lmmsize, itp,
427 0 /*unused */, &req, ll_md_blocking_ast, 0);
428 ll_finish_md_op_data(op_data);
429 if (rc == -ESTALE) {
430 /* reason for keep own exit path - don`t flood log
431 * with messages with -ESTALE errors.
432 */
433 if (!it_disposition(itp, DISP_OPEN_OPEN) ||
Oleg Drokine15ba452016-02-26 01:49:49 -0500434 it_open_error(DISP_OPEN_OPEN, itp))
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200435 goto out;
Al Viroe22fdcc2014-10-20 20:39:57 -0400436 ll_release_openhandle(inode, itp);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200437 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800438 }
439
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200440 if (it_disposition(itp, DISP_LOOKUP_NEG)) {
441 rc = -ENOENT;
442 goto out;
443 }
Peng Taod7e09d02013-05-02 16:46:55 +0800444
445 if (rc != 0 || it_open_error(DISP_OPEN_OPEN, itp)) {
446 rc = rc ? rc : it_open_error(DISP_OPEN_OPEN, itp);
447 CDEBUG(D_VFSTRACE, "lock enqueue: err: %d\n", rc);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200448 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +0800449 }
450
Al Viro48eddfd2014-05-07 21:24:47 -0400451 rc = ll_prep_inode(&inode, req, NULL, itp);
John L. Hammonde476f2e2016-06-20 16:55:38 -0400452 if (!rc && itp->it_lock_mode)
Al Viro48eddfd2014-05-07 21:24:47 -0400453 ll_set_lock_data(sbi->ll_md_exp, inode, itp, NULL);
Peng Taod7e09d02013-05-02 16:46:55 +0800454
455out:
Lai Siyaof236f692014-02-28 21:16:38 -0500456 ptlrpc_req_finished(req);
Peng Taod7e09d02013-05-02 16:46:55 +0800457 ll_intent_drop_lock(itp);
458
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800459 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800460}
461
462/**
463 * Assign an obtained @ioepoch to client's inode. No lock is needed, MDS does
464 * not believe attributes if a few ioepoch holders exist. Attributes for
465 * previous ioepoch if new one is opened are also skipped by MDS.
466 */
467void ll_ioepoch_open(struct ll_inode_info *lli, __u64 ioepoch)
468{
469 if (ioepoch && lli->lli_ioepoch != ioepoch) {
470 lli->lli_ioepoch = ioepoch;
Greg Kroah-Hartmanb0f5aad2014-07-12 20:06:04 -0700471 CDEBUG(D_INODE, "Epoch %llu opened on "DFID"\n",
Peng Taod7e09d02013-05-02 16:46:55 +0800472 ioepoch, PFID(&lli->lli_fid));
473 }
474}
475
John L. Hammondea1db082013-11-15 00:13:08 +0800476static int ll_och_fill(struct obd_export *md_exp, struct lookup_intent *it,
477 struct obd_client_handle *och)
Peng Taod7e09d02013-05-02 16:46:55 +0800478{
Peng Taod7e09d02013-05-02 16:46:55 +0800479 struct mdt_body *body;
480
John L. Hammond8bf86fd2016-06-20 16:55:40 -0400481 body = req_capsule_server_get(&it->it_request->rq_pill, &RMF_MDT_BODY);
John L. Hammondea1db082013-11-15 00:13:08 +0800482 och->och_fh = body->handle;
483 och->och_fid = body->fid1;
John L. Hammonde476f2e2016-06-20 16:55:38 -0400484 och->och_lease_handle.cookie = it->it_lock_handle;
Peng Taod7e09d02013-05-02 16:46:55 +0800485 och->och_magic = OBD_CLIENT_HANDLE_MAGIC;
Peng Taod7e09d02013-05-02 16:46:55 +0800486 och->och_flags = it->it_flags;
Peng Taod7e09d02013-05-02 16:46:55 +0800487
Hongchao Zhang63d42572014-02-28 21:16:37 -0500488 return md_set_open_replay_data(md_exp, och, it);
Peng Taod7e09d02013-05-02 16:46:55 +0800489}
490
John L. Hammond2d95f102014-04-27 13:07:05 -0400491static int ll_local_open(struct file *file, struct lookup_intent *it,
492 struct ll_file_data *fd, struct obd_client_handle *och)
Peng Taod7e09d02013-05-02 16:46:55 +0800493{
Al Viro2a8a3592014-10-20 18:02:33 -0400494 struct inode *inode = file_inode(file);
Peng Taod7e09d02013-05-02 16:46:55 +0800495 struct ll_inode_info *lli = ll_i2info(inode);
Peng Taod7e09d02013-05-02 16:46:55 +0800496
497 LASSERT(!LUSTRE_FPRIVATE(file));
498
Oleg Drokin6e168182016-02-16 00:46:46 -0500499 LASSERT(fd);
Peng Taod7e09d02013-05-02 16:46:55 +0800500
501 if (och) {
Peng Taod7e09d02013-05-02 16:46:55 +0800502 struct mdt_body *body;
503 int rc;
504
John L. Hammondea1db082013-11-15 00:13:08 +0800505 rc = ll_och_fill(ll_i2sbi(inode)->ll_md_exp, it, och);
506 if (rc != 0)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800507 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800508
John L. Hammond8bf86fd2016-06-20 16:55:40 -0400509 body = req_capsule_server_get(&it->it_request->rq_pill,
510 &RMF_MDT_BODY);
John L. Hammondea1db082013-11-15 00:13:08 +0800511 ll_ioepoch_open(lli, body->ioepoch);
Peng Taod7e09d02013-05-02 16:46:55 +0800512 }
513
514 LUSTRE_FPRIVATE(file) = fd;
515 ll_readahead_init(inode, &fd->fd_ras);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800516 fd->fd_omode = it->it_flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
Jinshan Xiong966c4a82016-06-05 23:28:51 -0400517
518 /* ll_cl_context initialize */
519 rwlock_init(&fd->fd_lock);
520 INIT_LIST_HEAD(&fd->fd_lccs);
521
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800522 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800523}
524
525/* Open a file, and (for the very first open) create objects on the OSTs at
526 * this time. If opened with O_LOV_DELAY_CREATE, then we don't do the object
527 * creation or open until ll_lov_setstripe() ioctl is called.
528 *
529 * If we already have the stripe MD locally then we don't request it in
530 * md_open(), by passing a lmm_size = 0.
531 *
532 * It is up to the application to ensure no other processes open this file
533 * in the O_LOV_DELAY_CREATE case, or the default striping pattern will be
534 * used. We might be able to avoid races of that sort by getting lli_open_sem
535 * before returning in the O_LOV_DELAY_CREATE case and dropping it here
536 * or in ll_file_release(), but I'm not sure that is desirable/necessary.
537 */
538int ll_file_open(struct inode *inode, struct file *file)
539{
540 struct ll_inode_info *lli = ll_i2info(inode);
541 struct lookup_intent *it, oit = { .it_op = IT_OPEN,
542 .it_flags = file->f_flags };
543 struct obd_client_handle **och_p = NULL;
544 __u64 *och_usecount = NULL;
545 struct ll_file_data *fd;
546 int rc = 0, opendir_set = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800547
James Nunez97a075c2016-04-27 18:21:01 -0400548 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), flags %o\n",
549 PFID(ll_inode2fid(inode)), inode, file->f_flags);
Peng Taod7e09d02013-05-02 16:46:55 +0800550
551 it = file->private_data; /* XXX: compat macro */
552 file->private_data = NULL; /* prevent ll_local_open assertion */
553
554 fd = ll_file_data_get();
Oleg Drokin6e168182016-02-16 00:46:46 -0500555 if (!fd) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200556 rc = -ENOMEM;
557 goto out_openerr;
558 }
Peng Taod7e09d02013-05-02 16:46:55 +0800559
560 fd->fd_file = file;
561 if (S_ISDIR(inode->i_mode)) {
562 spin_lock(&lli->lli_sa_lock);
Oleg Drokin6e168182016-02-16 00:46:46 -0500563 if (!lli->lli_opendir_key && !lli->lli_sai &&
Peng Taod7e09d02013-05-02 16:46:55 +0800564 lli->lli_opendir_pid == 0) {
565 lli->lli_opendir_key = fd;
566 lli->lli_opendir_pid = current_pid();
567 opendir_set = 1;
568 }
569 spin_unlock(&lli->lli_sa_lock);
570 }
571
Al Virof76c23d2014-10-21 15:20:42 -0400572 if (is_root_inode(inode)) {
Peng Taod7e09d02013-05-02 16:46:55 +0800573 LUSTRE_FPRIVATE(file) = fd;
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800574 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800575 }
576
John L. Hammonde476f2e2016-06-20 16:55:38 -0400577 if (!it || !it->it_disposition) {
Peng Taod7e09d02013-05-02 16:46:55 +0800578 /* Convert f_flags into access mode. We cannot use file->f_mode,
579 * because everything but O_ACCMODE mask was stripped from
Oleg Drokinc0894c62016-02-24 22:00:30 -0500580 * there
581 */
Peng Taod7e09d02013-05-02 16:46:55 +0800582 if ((oit.it_flags + 1) & O_ACCMODE)
583 oit.it_flags++;
584 if (file->f_flags & O_TRUNC)
585 oit.it_flags |= FMODE_WRITE;
586
587 /* kernel only call f_op->open in dentry_open. filp_open calls
588 * dentry_open after call to open_namei that checks permissions.
589 * Only nfsd_open call dentry_open directly without checking
Oleg Drokinc0894c62016-02-24 22:00:30 -0500590 * permissions and because of that this code below is safe.
591 */
Peng Taod7e09d02013-05-02 16:46:55 +0800592 if (oit.it_flags & (FMODE_WRITE | FMODE_READ))
593 oit.it_flags |= MDS_OPEN_OWNEROVERRIDE;
594
595 /* We do not want O_EXCL here, presumably we opened the file
Oleg Drokinc0894c62016-02-24 22:00:30 -0500596 * already? XXX - NFS implications?
597 */
Peng Taod7e09d02013-05-02 16:46:55 +0800598 oit.it_flags &= ~O_EXCL;
599
600 /* bug20584, if "it_flags" contains O_CREAT, the file will be
601 * created if necessary, then "IT_CREAT" should be set to keep
Oleg Drokinc0894c62016-02-24 22:00:30 -0500602 * consistent with it
603 */
Peng Taod7e09d02013-05-02 16:46:55 +0800604 if (oit.it_flags & O_CREAT)
605 oit.it_op |= IT_CREAT;
606
607 it = &oit;
608 }
609
610restart:
611 /* Let's see if we have file open on MDS already. */
612 if (it->it_flags & FMODE_WRITE) {
613 och_p = &lli->lli_mds_write_och;
614 och_usecount = &lli->lli_open_fd_write_count;
615 } else if (it->it_flags & FMODE_EXEC) {
616 och_p = &lli->lli_mds_exec_och;
617 och_usecount = &lli->lli_open_fd_exec_count;
618 } else {
619 och_p = &lli->lli_mds_read_och;
620 och_usecount = &lli->lli_open_fd_read_count;
621 }
622
623 mutex_lock(&lli->lli_och_mutex);
624 if (*och_p) { /* Open handle is present */
625 if (it_disposition(it, DISP_OPEN_OPEN)) {
626 /* Well, there's extra open request that we do not need,
Oleg Drokinc0894c62016-02-24 22:00:30 -0500627 * let's close it somehow. This will decref request.
628 */
Peng Taod7e09d02013-05-02 16:46:55 +0800629 rc = it_open_error(DISP_OPEN_OPEN, it);
630 if (rc) {
631 mutex_unlock(&lli->lli_och_mutex);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200632 goto out_openerr;
Peng Taod7e09d02013-05-02 16:46:55 +0800633 }
634
Al Viroe22fdcc2014-10-20 20:39:57 -0400635 ll_release_openhandle(inode, it);
Peng Taod7e09d02013-05-02 16:46:55 +0800636 }
637 (*och_usecount)++;
638
639 rc = ll_local_open(file, it, fd, NULL);
640 if (rc) {
641 (*och_usecount)--;
642 mutex_unlock(&lli->lli_och_mutex);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200643 goto out_openerr;
Peng Taod7e09d02013-05-02 16:46:55 +0800644 }
645 } else {
646 LASSERT(*och_usecount == 0);
John L. Hammonde476f2e2016-06-20 16:55:38 -0400647 if (!it->it_disposition) {
Peng Taod7e09d02013-05-02 16:46:55 +0800648 /* We cannot just request lock handle now, new ELC code
Oleg Drokinc0894c62016-02-24 22:00:30 -0500649 * means that one of other OPEN locks for this file
650 * could be cancelled, and since blocking ast handler
651 * would attempt to grab och_mutex as well, that would
652 * result in a deadlock
653 */
Peng Taod7e09d02013-05-02 16:46:55 +0800654 mutex_unlock(&lli->lli_och_mutex);
655 it->it_create_mode |= M_CHECK_STALE;
Al Viro48eddfd2014-05-07 21:24:47 -0400656 rc = ll_intent_file_open(file->f_path.dentry, NULL, 0, it);
Peng Taod7e09d02013-05-02 16:46:55 +0800657 it->it_create_mode &= ~M_CHECK_STALE;
658 if (rc)
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200659 goto out_openerr;
Peng Taod7e09d02013-05-02 16:46:55 +0800660
661 goto restart;
662 }
Julia Lawall496a51b2014-09-18 22:24:02 +0200663 *och_p = kzalloc(sizeof(struct obd_client_handle), GFP_NOFS);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200664 if (!*och_p) {
665 rc = -ENOMEM;
666 goto out_och_free;
667 }
Peng Taod7e09d02013-05-02 16:46:55 +0800668
669 (*och_usecount)++;
670
671 /* md_intent_lock() didn't get a request ref if there was an
672 * open error, so don't do cleanup on the request here
Oleg Drokinc0894c62016-02-24 22:00:30 -0500673 * (bug 3430)
674 */
Peng Taod7e09d02013-05-02 16:46:55 +0800675 /* XXX (green): Should not we bail out on any error here, not
Oleg Drokinc0894c62016-02-24 22:00:30 -0500676 * just open error?
677 */
Peng Taod7e09d02013-05-02 16:46:55 +0800678 rc = it_open_error(DISP_OPEN_OPEN, it);
679 if (rc)
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200680 goto out_och_free;
Peng Taod7e09d02013-05-02 16:46:55 +0800681
Andreas Dilger5787be92016-04-27 21:37:17 -0400682 LASSERTF(it_disposition(it, DISP_ENQ_OPEN_REF),
683 "inode %p: disposition %x, status %d\n", inode,
John L. Hammonde476f2e2016-06-20 16:55:38 -0400684 it_disposition(it, ~0), it->it_status);
Peng Taod7e09d02013-05-02 16:46:55 +0800685
686 rc = ll_local_open(file, it, fd, *och_p);
687 if (rc)
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200688 goto out_och_free;
Peng Taod7e09d02013-05-02 16:46:55 +0800689 }
690 mutex_unlock(&lli->lli_och_mutex);
691 fd = NULL;
692
693 /* Must do this outside lli_och_mutex lock to prevent deadlock where
Oleg Drokinc0894c62016-02-24 22:00:30 -0500694 * different kind of OPEN lock for this same inode gets cancelled
695 * by ldlm_cancel_lru
696 */
Peng Taod7e09d02013-05-02 16:46:55 +0800697 if (!S_ISREG(inode->i_mode))
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200698 goto out_och_free;
Peng Taod7e09d02013-05-02 16:46:55 +0800699
Andreas Dilger38585cc2014-02-11 02:52:05 -0700700 if (!lli->lli_has_smd &&
701 (cl_is_lov_delay_create(file->f_flags) ||
702 (file->f_mode & FMODE_WRITE) == 0)) {
703 CDEBUG(D_INODE, "object creation was delayed\n");
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200704 goto out_och_free;
Peng Taod7e09d02013-05-02 16:46:55 +0800705 }
Andreas Dilger38585cc2014-02-11 02:52:05 -0700706 cl_lov_delay_create_clear(&file->f_flags);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200707 goto out_och_free;
Peng Taod7e09d02013-05-02 16:46:55 +0800708
709out_och_free:
710 if (rc) {
711 if (och_p && *och_p) {
Julia Lawall97903a22015-04-12 22:55:02 +0200712 kfree(*och_p);
Oleg Drokinc0a24722015-09-16 12:26:58 -0400713 *och_p = NULL;
Peng Taod7e09d02013-05-02 16:46:55 +0800714 (*och_usecount)--;
715 }
716 mutex_unlock(&lli->lli_och_mutex);
717
718out_openerr:
719 if (opendir_set != 0)
720 ll_stop_statahead(inode, lli->lli_opendir_key);
Markus Elfringa5cb8882015-07-14 09:35:42 +0200721 ll_file_data_put(fd);
Peng Taod7e09d02013-05-02 16:46:55 +0800722 } else {
723 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_OPEN, 1);
724 }
725
726 if (it && it_disposition(it, DISP_ENQ_OPEN_REF)) {
John L. Hammond8bf86fd2016-06-20 16:55:40 -0400727 ptlrpc_req_finished(it->it_request);
Peng Taod7e09d02013-05-02 16:46:55 +0800728 it_clear_disposition(it, DISP_ENQ_OPEN_REF);
729 }
730
731 return rc;
732}
733
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800734static int ll_md_blocking_lease_ast(struct ldlm_lock *lock,
Oleg Drokine15ba452016-02-26 01:49:49 -0500735 struct ldlm_lock_desc *desc,
736 void *data, int flag)
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800737{
738 int rc;
739 struct lustre_handle lockh;
740
741 switch (flag) {
742 case LDLM_CB_BLOCKING:
743 ldlm_lock2handle(lock, &lockh);
744 rc = ldlm_cli_cancel(&lockh, LCF_ASYNC);
745 if (rc < 0) {
746 CDEBUG(D_INODE, "ldlm_cli_cancel: %d\n", rc);
747 return rc;
748 }
749 break;
750 case LDLM_CB_CANCELING:
751 /* do nothing */
752 break;
753 }
754 return 0;
755}
756
757/**
758 * Acquire a lease and open the file.
759 */
John L. Hammond2d95f102014-04-27 13:07:05 -0400760static struct obd_client_handle *
761ll_lease_open(struct inode *inode, struct file *file, fmode_t fmode,
762 __u64 open_flags)
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800763{
764 struct lookup_intent it = { .it_op = IT_OPEN };
765 struct ll_sb_info *sbi = ll_i2sbi(inode);
766 struct md_op_data *op_data;
767 struct ptlrpc_request *req;
768 struct lustre_handle old_handle = { 0 };
769 struct obd_client_handle *och = NULL;
770 int rc;
771 int rc2;
772
773 if (fmode != FMODE_WRITE && fmode != FMODE_READ)
774 return ERR_PTR(-EINVAL);
775
Oleg Drokin6e168182016-02-16 00:46:46 -0500776 if (file) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800777 struct ll_inode_info *lli = ll_i2info(inode);
778 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
779 struct obd_client_handle **och_p;
780 __u64 *och_usecount;
781
782 if (!(fmode & file->f_mode) || (file->f_mode & FMODE_EXEC))
783 return ERR_PTR(-EPERM);
784
785 /* Get the openhandle of the file */
786 rc = -EBUSY;
787 mutex_lock(&lli->lli_och_mutex);
Oleg Drokin6e168182016-02-16 00:46:46 -0500788 if (fd->fd_lease_och) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800789 mutex_unlock(&lli->lli_och_mutex);
790 return ERR_PTR(rc);
791 }
792
Oleg Drokin6e168182016-02-16 00:46:46 -0500793 if (!fd->fd_och) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800794 if (file->f_mode & FMODE_WRITE) {
Oleg Drokin6e168182016-02-16 00:46:46 -0500795 LASSERT(lli->lli_mds_write_och);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800796 och_p = &lli->lli_mds_write_och;
797 och_usecount = &lli->lli_open_fd_write_count;
798 } else {
Oleg Drokin6e168182016-02-16 00:46:46 -0500799 LASSERT(lli->lli_mds_read_och);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800800 och_p = &lli->lli_mds_read_och;
801 och_usecount = &lli->lli_open_fd_read_count;
802 }
803 if (*och_usecount == 1) {
804 fd->fd_och = *och_p;
805 *och_p = NULL;
806 *och_usecount = 0;
807 rc = 0;
808 }
809 }
810 mutex_unlock(&lli->lli_och_mutex);
811 if (rc < 0) /* more than 1 opener */
812 return ERR_PTR(rc);
813
Oleg Drokin6e168182016-02-16 00:46:46 -0500814 LASSERT(fd->fd_och);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800815 old_handle = fd->fd_och->och_fh;
816 }
817
Julia Lawall496a51b2014-09-18 22:24:02 +0200818 och = kzalloc(sizeof(*och), GFP_NOFS);
819 if (!och)
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800820 return ERR_PTR(-ENOMEM);
821
822 op_data = ll_prep_md_op_data(NULL, inode, inode, NULL, 0, 0,
Oleg Drokine15ba452016-02-26 01:49:49 -0500823 LUSTRE_OPC_ANY, NULL);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200824 if (IS_ERR(op_data)) {
825 rc = PTR_ERR(op_data);
826 goto out;
827 }
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800828
829 /* To tell the MDT this openhandle is from the same owner */
830 op_data->op_handle = old_handle;
831
Jinshan Xiong48d23e62013-12-03 21:58:48 +0800832 it.it_flags = fmode | open_flags;
833 it.it_flags |= MDS_OPEN_LOCK | MDS_OPEN_BY_FID | MDS_OPEN_LEASE;
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800834 rc = md_intent_lock(sbi->ll_md_exp, op_data, NULL, 0, &it, 0, &req,
Oleg Drokine15ba452016-02-26 01:49:49 -0500835 ll_md_blocking_lease_ast,
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800836 /* LDLM_FL_NO_LRU: To not put the lease lock into LRU list, otherwise
837 * it can be cancelled which may mislead applications that the lease is
838 * broken;
839 * LDLM_FL_EXCL: Set this flag so that it won't be matched by normal
840 * open in ll_md_blocking_ast(). Otherwise as ll_md_blocking_lease_ast
Oleg Drokinc0894c62016-02-24 22:00:30 -0500841 * doesn't deal with openhandle, so normal openhandle will be leaked.
842 */
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800843 LDLM_FL_NO_LRU | LDLM_FL_EXCL);
844 ll_finish_md_op_data(op_data);
Lai Siyaof236f692014-02-28 21:16:38 -0500845 ptlrpc_req_finished(req);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800846 if (rc < 0)
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200847 goto out_release_it;
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800848
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200849 if (it_disposition(&it, DISP_LOOKUP_NEG)) {
850 rc = -ENOENT;
851 goto out_release_it;
852 }
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800853
854 rc = it_open_error(DISP_OPEN_OPEN, &it);
855 if (rc)
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200856 goto out_release_it;
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800857
858 LASSERT(it_disposition(&it, DISP_ENQ_OPEN_REF));
859 ll_och_fill(sbi->ll_md_exp, &it, och);
860
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200861 if (!it_disposition(&it, DISP_OPEN_LEASE)) /* old server? */ {
862 rc = -EOPNOTSUPP;
863 goto out_close;
864 }
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800865
866 /* already get lease, handle lease lock */
867 ll_set_lock_data(sbi->ll_md_exp, inode, &it, NULL);
John L. Hammonde476f2e2016-06-20 16:55:38 -0400868 if (it.it_lock_mode == 0 ||
869 it.it_lock_bits != MDS_INODELOCK_OPEN) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800870 /* open lock must return for lease */
871 CERROR(DFID "lease granted but no open lock, %d/%llu.\n",
John L. Hammonde476f2e2016-06-20 16:55:38 -0400872 PFID(ll_inode2fid(inode)), it.it_lock_mode,
873 it.it_lock_bits);
Julia Lawall34e1f2b2014-08-30 16:24:55 +0200874 rc = -EPROTO;
875 goto out_close;
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800876 }
877
878 ll_intent_release(&it);
879 return och;
880
881out_close:
Jinshan Xionge55a68b2016-04-04 21:37:00 -0400882 /* Cancel open lock */
John L. Hammonde476f2e2016-06-20 16:55:38 -0400883 if (it.it_lock_mode != 0) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800884 ldlm_lock_decref_and_cancel(&och->och_lease_handle,
John L. Hammonde476f2e2016-06-20 16:55:38 -0400885 it.it_lock_mode);
886 it.it_lock_mode = 0;
Jinshan Xionge55a68b2016-04-04 21:37:00 -0400887 och->och_lease_handle.cookie = 0ULL;
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800888 }
Jinshan Xionge55a68b2016-04-04 21:37:00 -0400889 rc2 = ll_close_inode_openhandle(sbi->ll_md_exp, inode, och, NULL);
890 if (rc2 < 0)
891 CERROR("%s: error closing file "DFID": %d\n",
892 ll_get_fsname(inode->i_sb, NULL, 0),
893 PFID(&ll_i2info(inode)->lli_fid), rc2);
894 och = NULL; /* och has been freed in ll_close_inode_openhandle() */
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800895out_release_it:
896 ll_intent_release(&it);
897out:
Julia Lawall97903a22015-04-12 22:55:02 +0200898 kfree(och);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800899 return ERR_PTR(rc);
900}
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800901
902/**
903 * Release lease and close the file.
904 * It will check if the lease has ever broken.
905 */
John L. Hammond2d95f102014-04-27 13:07:05 -0400906static int ll_lease_close(struct obd_client_handle *och, struct inode *inode,
907 bool *lease_broken)
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800908{
909 struct ldlm_lock *lock;
910 bool cancelled = true;
911 int rc;
912
913 lock = ldlm_handle2lock(&och->och_lease_handle);
Oleg Drokin6e168182016-02-16 00:46:46 -0500914 if (lock) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800915 lock_res_and_lock(lock);
916 cancelled = ldlm_is_cancel(lock);
917 unlock_res_and_lock(lock);
Jinshan Xiongead02802016-04-04 21:36:51 -0400918 LDLM_LOCK_PUT(lock);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800919 }
920
Oleg Drokine15ba452016-02-26 01:49:49 -0500921 CDEBUG(D_INODE, "lease for " DFID " broken? %d\n",
922 PFID(&ll_i2info(inode)->lli_fid), cancelled);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800923
924 if (!cancelled)
925 ldlm_cli_cancel(&och->och_lease_handle, 0);
Oleg Drokin6e168182016-02-16 00:46:46 -0500926 if (lease_broken)
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800927 *lease_broken = cancelled;
928
Jinshan Xiong48d23e62013-12-03 21:58:48 +0800929 rc = ll_close_inode_openhandle(ll_i2sbi(inode)->ll_md_exp, inode, och,
930 NULL);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800931 return rc;
932}
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +0800933
Peng Taod7e09d02013-05-02 16:46:55 +0800934/* Fills the obdo with the attributes for the lsm */
935static int ll_lsm_getattr(struct lov_stripe_md *lsm, struct obd_export *exp,
Jinshan Xionge1798002016-04-04 21:37:01 -0400936 struct obdo *obdo, __u64 ioepoch, int dv_flags)
Peng Taod7e09d02013-05-02 16:46:55 +0800937{
938 struct ptlrpc_request_set *set;
Arnd Bergmann45efd652015-09-27 16:45:03 -0400939 struct obd_info oinfo = { };
Peng Taod7e09d02013-05-02 16:46:55 +0800940 int rc;
941
Oleg Drokin6e168182016-02-16 00:46:46 -0500942 LASSERT(lsm);
Peng Taod7e09d02013-05-02 16:46:55 +0800943
944 oinfo.oi_md = lsm;
945 oinfo.oi_oa = obdo;
946 oinfo.oi_oa->o_oi = lsm->lsm_oi;
947 oinfo.oi_oa->o_mode = S_IFREG;
948 oinfo.oi_oa->o_ioepoch = ioepoch;
949 oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE |
950 OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
951 OBD_MD_FLBLKSZ | OBD_MD_FLATIME |
952 OBD_MD_FLMTIME | OBD_MD_FLCTIME |
953 OBD_MD_FLGROUP | OBD_MD_FLEPOCH |
954 OBD_MD_FLDATAVERSION;
Jinshan Xionge1798002016-04-04 21:37:01 -0400955 if (dv_flags & (LL_DV_WR_FLUSH | LL_DV_RD_FLUSH)) {
Peng Taod7e09d02013-05-02 16:46:55 +0800956 oinfo.oi_oa->o_valid |= OBD_MD_FLFLAGS;
957 oinfo.oi_oa->o_flags |= OBD_FL_SRVLOCK;
Jinshan Xionge1798002016-04-04 21:37:01 -0400958 if (dv_flags & LL_DV_WR_FLUSH)
959 oinfo.oi_oa->o_flags |= OBD_FL_FLUSH;
Peng Taod7e09d02013-05-02 16:46:55 +0800960 }
961
962 set = ptlrpc_prep_set();
Oleg Drokin6e168182016-02-16 00:46:46 -0500963 if (!set) {
James Nunez19b20562016-03-07 18:10:21 -0500964 CERROR("cannot allocate ptlrpc set: rc = %d\n", -ENOMEM);
Peng Taod7e09d02013-05-02 16:46:55 +0800965 rc = -ENOMEM;
966 } else {
967 rc = obd_getattr_async(exp, &oinfo, set);
968 if (rc == 0)
969 rc = ptlrpc_set_wait(set);
970 ptlrpc_set_destroy(set);
971 }
Jinshan Xionge1798002016-04-04 21:37:01 -0400972 if (rc == 0) {
Peng Taod7e09d02013-05-02 16:46:55 +0800973 oinfo.oi_oa->o_valid &= (OBD_MD_FLBLOCKS | OBD_MD_FLBLKSZ |
974 OBD_MD_FLATIME | OBD_MD_FLMTIME |
975 OBD_MD_FLCTIME | OBD_MD_FLSIZE |
Jinshan Xionge1798002016-04-04 21:37:01 -0400976 OBD_MD_FLDATAVERSION | OBD_MD_FLFLAGS);
977 if (dv_flags & LL_DV_WR_FLUSH &&
978 !(oinfo.oi_oa->o_valid & OBD_MD_FLFLAGS &&
979 oinfo.oi_oa->o_flags & OBD_FL_FLUSH))
980 return -ENOTSUPP;
981 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800982 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800983}
984
985/**
986 * Performs the getattr on the inode and updates its fields.
987 * If @sync != 0, perform the getattr under the server-side lock.
988 */
989int ll_inode_getattr(struct inode *inode, struct obdo *obdo,
990 __u64 ioepoch, int sync)
991{
Peng Taod7e09d02013-05-02 16:46:55 +0800992 struct lov_stripe_md *lsm;
993 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800994
995 lsm = ccc_inode_lsm_get(inode);
996 rc = ll_lsm_getattr(lsm, ll_i2dtexp(inode),
Jinshan Xionge1798002016-04-04 21:37:01 -0400997 obdo, ioepoch, sync ? LL_DV_RD_FLUSH : 0);
Peng Taod7e09d02013-05-02 16:46:55 +0800998 if (rc == 0) {
999 struct ost_id *oi = lsm ? &lsm->lsm_oi : &obdo->o_oi;
1000
1001 obdo_refresh_inode(inode, obdo, obdo->o_valid);
Joe Perches2d00bd12014-11-23 11:28:50 -08001002 CDEBUG(D_INODE, "objid " DOSTID " size %llu, blocks %llu, blksize %lu\n",
1003 POSTID(oi), i_size_read(inode),
Peng Taod7e09d02013-05-02 16:46:55 +08001004 (unsigned long long)inode->i_blocks,
John L. Hammond16e06312014-09-09 13:39:03 -05001005 1UL << inode->i_blkbits);
Peng Taod7e09d02013-05-02 16:46:55 +08001006 }
1007 ccc_inode_lsm_put(inode, lsm);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001008 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001009}
1010
John L. Hammondd2995732016-03-30 19:48:34 -04001011int ll_merge_attr(const struct lu_env *env, struct inode *inode)
Peng Taod7e09d02013-05-02 16:46:55 +08001012{
1013 struct ll_inode_info *lli = ll_i2info(inode);
1014 struct cl_object *obj = lli->lli_clob;
John Hammond9acc4502016-03-30 19:48:57 -04001015 struct cl_attr *attr = vvp_env_thread_attr(env);
John L. Hammondd2995732016-03-30 19:48:34 -04001016 s64 atime;
1017 s64 mtime;
1018 s64 ctime;
Peng Taod7e09d02013-05-02 16:46:55 +08001019 int rc = 0;
1020
Peng Taod7e09d02013-05-02 16:46:55 +08001021 ll_inode_size_lock(inode);
John L. Hammondd2995732016-03-30 19:48:34 -04001022
Peng Taod7e09d02013-05-02 16:46:55 +08001023 /* merge timestamps the most recently obtained from mds with
Oleg Drokinc0894c62016-02-24 22:00:30 -05001024 * timestamps obtained from osts
1025 */
John L. Hammondd2995732016-03-30 19:48:34 -04001026 LTIME_S(inode->i_atime) = lli->lli_atime;
1027 LTIME_S(inode->i_mtime) = lli->lli_mtime;
1028 LTIME_S(inode->i_ctime) = lli->lli_ctime;
John L. Hammond376ef862014-08-28 18:35:14 -05001029
John L. Hammondd2995732016-03-30 19:48:34 -04001030 mtime = LTIME_S(inode->i_mtime);
1031 atime = LTIME_S(inode->i_atime);
1032 ctime = LTIME_S(inode->i_ctime);
Peng Taod7e09d02013-05-02 16:46:55 +08001033
1034 cl_object_attr_lock(obj);
1035 rc = cl_object_attr_get(env, obj, attr);
1036 cl_object_attr_unlock(obj);
1037
John L. Hammondd2995732016-03-30 19:48:34 -04001038 if (rc != 0)
1039 goto out_size_unlock;
Peng Taod7e09d02013-05-02 16:46:55 +08001040
John L. Hammondd2995732016-03-30 19:48:34 -04001041 if (atime < attr->cat_atime)
1042 atime = attr->cat_atime;
Peng Taod7e09d02013-05-02 16:46:55 +08001043
John L. Hammondd2995732016-03-30 19:48:34 -04001044 if (ctime < attr->cat_ctime)
1045 ctime = attr->cat_ctime;
Peng Taod7e09d02013-05-02 16:46:55 +08001046
John L. Hammondd2995732016-03-30 19:48:34 -04001047 if (mtime < attr->cat_mtime)
1048 mtime = attr->cat_mtime;
1049
1050 CDEBUG(D_VFSTRACE, DFID " updating i_size %llu\n",
1051 PFID(&lli->lli_fid), attr->cat_size);
1052
John L. Hammond1929c432016-03-30 19:48:37 -04001053 i_size_write(inode, attr->cat_size);
John L. Hammondd2995732016-03-30 19:48:34 -04001054
1055 inode->i_blocks = attr->cat_blocks;
1056
1057 LTIME_S(inode->i_mtime) = mtime;
1058 LTIME_S(inode->i_atime) = atime;
1059 LTIME_S(inode->i_ctime) = ctime;
1060
1061out_size_unlock:
Peng Taod7e09d02013-05-02 16:46:55 +08001062 ll_inode_size_unlock(inode);
1063
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001064 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001065}
1066
1067int ll_glimpse_ioctl(struct ll_sb_info *sbi, struct lov_stripe_md *lsm,
1068 lstat_t *st)
1069{
1070 struct obdo obdo = { 0 };
1071 int rc;
1072
Oleg Drokinef2e0f52015-09-27 16:45:46 -04001073 rc = ll_lsm_getattr(lsm, sbi->ll_dt_exp, &obdo, 0, 0);
Peng Taod7e09d02013-05-02 16:46:55 +08001074 if (rc == 0) {
1075 st->st_size = obdo.o_size;
1076 st->st_blocks = obdo.o_blocks;
1077 st->st_mtime = obdo.o_mtime;
1078 st->st_atime = obdo.o_atime;
1079 st->st_ctime = obdo.o_ctime;
1080 }
1081 return rc;
1082}
1083
John L. Hammondec9bca92014-02-28 21:16:35 -05001084static bool file_is_noatime(const struct file *file)
1085{
1086 const struct vfsmount *mnt = file->f_path.mnt;
Al Viro2a8a3592014-10-20 18:02:33 -04001087 const struct inode *inode = file_inode(file);
John L. Hammondec9bca92014-02-28 21:16:35 -05001088
1089 /* Adapted from file_accessed() and touch_atime().*/
1090 if (file->f_flags & O_NOATIME)
1091 return true;
1092
1093 if (inode->i_flags & S_NOATIME)
1094 return true;
1095
1096 if (IS_NOATIME(inode))
1097 return true;
1098
1099 if (mnt->mnt_flags & (MNT_NOATIME | MNT_READONLY))
1100 return true;
1101
1102 if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
1103 return true;
1104
1105 if ((inode->i_sb->s_flags & MS_NODIRATIME) && S_ISDIR(inode->i_mode))
1106 return true;
1107
1108 return false;
1109}
1110
Peng Taod7e09d02013-05-02 16:46:55 +08001111void ll_io_init(struct cl_io *io, const struct file *file, int write)
1112{
Al Viro2a8a3592014-10-20 18:02:33 -04001113 struct inode *inode = file_inode(file);
Peng Taod7e09d02013-05-02 16:46:55 +08001114
1115 io->u.ci_rw.crw_nonblock = file->f_flags & O_NONBLOCK;
1116 if (write) {
1117 io->u.ci_wr.wr_append = !!(file->f_flags & O_APPEND);
1118 io->u.ci_wr.wr_sync = file->f_flags & O_SYNC ||
1119 file->f_flags & O_DIRECT ||
1120 IS_SYNC(inode);
1121 }
1122 io->ci_obj = ll_i2info(inode)->lli_clob;
1123 io->ci_lockreq = CILR_MAYBE;
1124 if (ll_file_nolock(file)) {
1125 io->ci_lockreq = CILR_NEVER;
1126 io->ci_no_srvlock = 1;
1127 } else if (file->f_flags & O_APPEND) {
1128 io->ci_lockreq = CILR_MANDATORY;
1129 }
John L. Hammondec9bca92014-02-28 21:16:35 -05001130
1131 io->ci_noatime = file_is_noatime(file);
Peng Taod7e09d02013-05-02 16:46:55 +08001132}
1133
1134static ssize_t
1135ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args,
1136 struct file *file, enum cl_io_type iot,
1137 loff_t *ppos, size_t count)
1138{
Al Viro2a8a3592014-10-20 18:02:33 -04001139 struct ll_inode_info *lli = ll_i2info(file_inode(file));
Peng Taod7e09d02013-05-02 16:46:55 +08001140 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1141 struct cl_io *io;
1142 ssize_t result;
Peng Taod7e09d02013-05-02 16:46:55 +08001143
Jinshan Xiong77605e42016-03-30 19:48:30 -04001144 CDEBUG(D_VFSTRACE, "file: %s, type: %d ppos: %llu, count: %zd\n",
1145 file->f_path.dentry->d_name.name, iot, *ppos, count);
1146
Peng Taod7e09d02013-05-02 16:46:55 +08001147restart:
John Hammond9acc4502016-03-30 19:48:57 -04001148 io = vvp_env_thread_io(env);
Peng Taod7e09d02013-05-02 16:46:55 +08001149 ll_io_init(io, file, iot == CIT_WRITE);
1150
1151 if (cl_io_rw_init(env, io, iot, *ppos, count) == 0) {
John L. Hammonde0a81442016-03-30 19:48:52 -04001152 struct vvp_io *vio = vvp_env_io(env);
Peng Taod7e09d02013-05-02 16:46:55 +08001153 int write_mutex_locked = 0;
1154
John L. Hammonde0a81442016-03-30 19:48:52 -04001155 vio->vui_fd = LUSTRE_FPRIVATE(file);
1156 vio->vui_io_subtype = args->via_io_subtype;
Peng Taod7e09d02013-05-02 16:46:55 +08001157
John L. Hammonde0a81442016-03-30 19:48:52 -04001158 switch (vio->vui_io_subtype) {
Peng Taod7e09d02013-05-02 16:46:55 +08001159 case IO_NORMAL:
John L. Hammonde0a81442016-03-30 19:48:52 -04001160 vio->vui_iter = args->u.normal.via_iter;
1161 vio->vui_iocb = args->u.normal.via_iocb;
Peng Taod7e09d02013-05-02 16:46:55 +08001162 if ((iot == CIT_WRITE) &&
John L. Hammonde0a81442016-03-30 19:48:52 -04001163 !(vio->vui_fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
Peng Taod7e09d02013-05-02 16:46:55 +08001164 if (mutex_lock_interruptible(&lli->
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001165 lli_write_mutex)) {
1166 result = -ERESTARTSYS;
1167 goto out;
1168 }
Peng Taod7e09d02013-05-02 16:46:55 +08001169 write_mutex_locked = 1;
Peng Taod7e09d02013-05-02 16:46:55 +08001170 }
Jinshan Xiong77605e42016-03-30 19:48:30 -04001171 down_read(&lli->lli_trunc_sem);
Peng Taod7e09d02013-05-02 16:46:55 +08001172 break;
Peng Taod7e09d02013-05-02 16:46:55 +08001173 case IO_SPLICE:
John L. Hammonde0a81442016-03-30 19:48:52 -04001174 vio->u.splice.vui_pipe = args->u.splice.via_pipe;
1175 vio->u.splice.vui_flags = args->u.splice.via_flags;
Peng Taod7e09d02013-05-02 16:46:55 +08001176 break;
1177 default:
John L. Hammonde0a81442016-03-30 19:48:52 -04001178 CERROR("Unknown IO type - %u\n", vio->vui_io_subtype);
Peng Taod7e09d02013-05-02 16:46:55 +08001179 LBUG();
1180 }
Jinshan Xiong966c4a82016-06-05 23:28:51 -04001181 ll_cl_add(file, env, io);
Peng Taod7e09d02013-05-02 16:46:55 +08001182 result = cl_io_loop(env, io);
Jinshan Xiong966c4a82016-06-05 23:28:51 -04001183 ll_cl_remove(file, env);
Jinshan Xiong77605e42016-03-30 19:48:30 -04001184 if (args->via_io_subtype == IO_NORMAL)
1185 up_read(&lli->lli_trunc_sem);
Peng Taod7e09d02013-05-02 16:46:55 +08001186 if (write_mutex_locked)
1187 mutex_unlock(&lli->lli_write_mutex);
Peng Taod7e09d02013-05-02 16:46:55 +08001188 } else {
1189 /* cl_io_rw_init() handled IO */
1190 result = io->ci_result;
1191 }
1192
1193 if (io->ci_nob > 0) {
1194 result = io->ci_nob;
1195 *ppos = io->u.ci_wr.wr.crw_pos;
1196 }
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001197 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08001198out:
1199 cl_io_fini(env, io);
1200 /* If any bit been read/written (result != 0), we just return
Oleg Drokinc0894c62016-02-24 22:00:30 -05001201 * short read/write instead of restart io.
1202 */
JC Lafoucriere5ea17d62013-11-21 22:24:48 +08001203 if ((result == 0 || result == -ENODATA) && io->ci_need_restart) {
Al Viro09561a52014-05-07 21:10:24 -04001204 CDEBUG(D_VFSTRACE, "Restart %s on %pD from %lld, count:%zd\n",
Peng Taod7e09d02013-05-02 16:46:55 +08001205 iot == CIT_READ ? "read" : "write",
Al Viro09561a52014-05-07 21:10:24 -04001206 file, *ppos, count);
James Nunez19b20562016-03-07 18:10:21 -05001207 LASSERTF(io->ci_nob == 0, "%zd\n", io->ci_nob);
Peng Taod7e09d02013-05-02 16:46:55 +08001208 goto restart;
1209 }
1210
1211 if (iot == CIT_READ) {
1212 if (result >= 0)
Al Viro2a8a3592014-10-20 18:02:33 -04001213 ll_stats_ops_tally(ll_i2sbi(file_inode(file)),
Peng Taod7e09d02013-05-02 16:46:55 +08001214 LPROC_LL_READ_BYTES, result);
1215 } else if (iot == CIT_WRITE) {
1216 if (result >= 0) {
Al Viro2a8a3592014-10-20 18:02:33 -04001217 ll_stats_ops_tally(ll_i2sbi(file_inode(file)),
Peng Taod7e09d02013-05-02 16:46:55 +08001218 LPROC_LL_WRITE_BYTES, result);
1219 fd->fd_write_failed = false;
1220 } else if (result != -ERESTARTSYS) {
1221 fd->fd_write_failed = true;
1222 }
1223 }
Jinshan Xiong77605e42016-03-30 19:48:30 -04001224 CDEBUG(D_VFSTRACE, "iot: %d, result: %zd\n", iot, result);
Peng Taod7e09d02013-05-02 16:46:55 +08001225
1226 return result;
1227}
1228
Al Virob42b15f2014-04-04 12:15:19 -04001229static ssize_t ll_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
Peng Taod7e09d02013-05-02 16:46:55 +08001230{
1231 struct lu_env *env;
1232 struct vvp_io_args *args;
Peng Taod7e09d02013-05-02 16:46:55 +08001233 ssize_t result;
1234 int refcheck;
Peng Taod7e09d02013-05-02 16:46:55 +08001235
Peng Taod7e09d02013-05-02 16:46:55 +08001236 env = cl_env_get(&refcheck);
1237 if (IS_ERR(env))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001238 return PTR_ERR(env);
Peng Taod7e09d02013-05-02 16:46:55 +08001239
John Hammond9989a582016-03-30 19:48:56 -04001240 args = ll_env_args(env, IO_NORMAL);
Al Virob42b15f2014-04-04 12:15:19 -04001241 args->u.normal.via_iter = to;
Peng Taod7e09d02013-05-02 16:46:55 +08001242 args->u.normal.via_iocb = iocb;
1243
1244 result = ll_file_io_generic(env, args, iocb->ki_filp, CIT_READ,
Al Virob42b15f2014-04-04 12:15:19 -04001245 &iocb->ki_pos, iov_iter_count(to));
Peng Taod7e09d02013-05-02 16:46:55 +08001246 cl_env_put(env, &refcheck);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001247 return result;
Peng Taod7e09d02013-05-02 16:46:55 +08001248}
1249
1250/*
1251 * Write to a file (through the page cache).
1252 */
Al Virob42b15f2014-04-04 12:15:19 -04001253static ssize_t ll_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Peng Taod7e09d02013-05-02 16:46:55 +08001254{
1255 struct lu_env *env;
1256 struct vvp_io_args *args;
Peng Taod7e09d02013-05-02 16:46:55 +08001257 ssize_t result;
1258 int refcheck;
Peng Taod7e09d02013-05-02 16:46:55 +08001259
Peng Taod7e09d02013-05-02 16:46:55 +08001260 env = cl_env_get(&refcheck);
1261 if (IS_ERR(env))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001262 return PTR_ERR(env);
Peng Taod7e09d02013-05-02 16:46:55 +08001263
John Hammond9989a582016-03-30 19:48:56 -04001264 args = ll_env_args(env, IO_NORMAL);
Al Virob42b15f2014-04-04 12:15:19 -04001265 args->u.normal.via_iter = from;
Peng Taod7e09d02013-05-02 16:46:55 +08001266 args->u.normal.via_iocb = iocb;
1267
1268 result = ll_file_io_generic(env, args, iocb->ki_filp, CIT_WRITE,
Oleg Drokine15ba452016-02-26 01:49:49 -05001269 &iocb->ki_pos, iov_iter_count(from));
Peng Taod7e09d02013-05-02 16:46:55 +08001270 cl_env_put(env, &refcheck);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001271 return result;
Peng Taod7e09d02013-05-02 16:46:55 +08001272}
1273
Peng Taod7e09d02013-05-02 16:46:55 +08001274/*
1275 * Send file content (through pagecache) somewhere with helper
1276 */
1277static ssize_t ll_file_splice_read(struct file *in_file, loff_t *ppos,
1278 struct pipe_inode_info *pipe, size_t count,
1279 unsigned int flags)
1280{
1281 struct lu_env *env;
1282 struct vvp_io_args *args;
1283 ssize_t result;
1284 int refcheck;
Peng Taod7e09d02013-05-02 16:46:55 +08001285
1286 env = cl_env_get(&refcheck);
1287 if (IS_ERR(env))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001288 return PTR_ERR(env);
Peng Taod7e09d02013-05-02 16:46:55 +08001289
John Hammond9989a582016-03-30 19:48:56 -04001290 args = ll_env_args(env, IO_SPLICE);
Peng Taod7e09d02013-05-02 16:46:55 +08001291 args->u.splice.via_pipe = pipe;
1292 args->u.splice.via_flags = flags;
1293
1294 result = ll_file_io_generic(env, args, in_file, CIT_READ, ppos, count);
1295 cl_env_put(env, &refcheck);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001296 return result;
Peng Taod7e09d02013-05-02 16:46:55 +08001297}
1298
Oleg Drokin21aef7d2014-08-15 12:55:56 -04001299static int ll_lov_recreate(struct inode *inode, struct ost_id *oi, u32 ost_idx)
Peng Taod7e09d02013-05-02 16:46:55 +08001300{
1301 struct obd_export *exp = ll_i2dtexp(inode);
1302 struct obd_trans_info oti = { 0 };
1303 struct obdo *oa = NULL;
1304 int lsm_size;
1305 int rc = 0;
1306 struct lov_stripe_md *lsm = NULL, *lsm2;
Peng Taod7e09d02013-05-02 16:46:55 +08001307
Amitoj Kaur Chawla21068c42016-02-26 14:25:09 +05301308 oa = kmem_cache_zalloc(obdo_cachep, GFP_NOFS);
Oleg Drokin6e168182016-02-16 00:46:46 -05001309 if (!oa)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001310 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +08001311
1312 lsm = ccc_inode_lsm_get(inode);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001313 if (!lsm_has_objects(lsm)) {
1314 rc = -ENOENT;
1315 goto out;
1316 }
Peng Taod7e09d02013-05-02 16:46:55 +08001317
1318 lsm_size = sizeof(*lsm) + (sizeof(struct lov_oinfo) *
1319 (lsm->lsm_stripe_count));
1320
Julia Lawalle958f492015-06-11 14:02:52 +02001321 lsm2 = libcfs_kvzalloc(lsm_size, GFP_NOFS);
Oleg Drokin6e168182016-02-16 00:46:46 -05001322 if (!lsm2) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001323 rc = -ENOMEM;
1324 goto out;
1325 }
Peng Taod7e09d02013-05-02 16:46:55 +08001326
1327 oa->o_oi = *oi;
1328 oa->o_nlink = ost_idx;
1329 oa->o_flags |= OBD_FL_RECREATE_OBJS;
1330 oa->o_valid = OBD_MD_FLID | OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
1331 obdo_from_inode(oa, inode, OBD_MD_FLTYPE | OBD_MD_FLATIME |
1332 OBD_MD_FLMTIME | OBD_MD_FLCTIME);
1333 obdo_set_parent_fid(oa, &ll_i2info(inode)->lli_fid);
1334 memcpy(lsm2, lsm, lsm_size);
1335 ll_inode_size_lock(inode);
1336 rc = obd_create(NULL, exp, oa, &lsm2, &oti);
1337 ll_inode_size_unlock(inode);
1338
Julia Lawalle958f492015-06-11 14:02:52 +02001339 kvfree(lsm2);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001340 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08001341out:
1342 ccc_inode_lsm_put(inode, lsm);
Mike Rapoport2ba262f2015-10-20 12:39:46 +03001343 kmem_cache_free(obdo_cachep, oa);
Peng Taod7e09d02013-05-02 16:46:55 +08001344 return rc;
1345}
1346
1347static int ll_lov_recreate_obj(struct inode *inode, unsigned long arg)
1348{
1349 struct ll_recreate_obj ucreat;
1350 struct ost_id oi;
Peng Taod7e09d02013-05-02 16:46:55 +08001351
Peng Tao2eb90a72014-01-22 21:47:37 +08001352 if (!capable(CFS_CAP_SYS_ADMIN))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001353 return -EPERM;
Peng Taod7e09d02013-05-02 16:46:55 +08001354
Oleg Drokin02f9c122016-01-03 12:05:55 -05001355 if (copy_from_user(&ucreat, (struct ll_recreate_obj __user *)arg,
Peng Taod7e09d02013-05-02 16:46:55 +08001356 sizeof(ucreat)))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001357 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08001358
1359 ostid_set_seq_mdt0(&oi);
1360 ostid_set_id(&oi, ucreat.lrc_id);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001361 return ll_lov_recreate(inode, &oi, ucreat.lrc_ost_idx);
Peng Taod7e09d02013-05-02 16:46:55 +08001362}
1363
1364static int ll_lov_recreate_fid(struct inode *inode, unsigned long arg)
1365{
1366 struct lu_fid fid;
1367 struct ost_id oi;
Oleg Drokin21aef7d2014-08-15 12:55:56 -04001368 u32 ost_idx;
Peng Taod7e09d02013-05-02 16:46:55 +08001369
Peng Tao2eb90a72014-01-22 21:47:37 +08001370 if (!capable(CFS_CAP_SYS_ADMIN))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001371 return -EPERM;
Peng Taod7e09d02013-05-02 16:46:55 +08001372
Oleg Drokin02f9c122016-01-03 12:05:55 -05001373 if (copy_from_user(&fid, (struct lu_fid __user *)arg, sizeof(fid)))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001374 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08001375
1376 fid_to_ostid(&fid, &oi);
1377 ost_idx = (fid_seq(&fid) >> 16) & 0xffff;
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001378 return ll_lov_recreate(inode, &oi, ost_idx);
Peng Taod7e09d02013-05-02 16:46:55 +08001379}
1380
Al Viroc139f3c2014-05-09 10:05:18 -04001381int ll_lov_setstripe_ea_info(struct inode *inode, struct dentry *dentry,
Niu Yaweid4672202016-04-04 21:36:47 -04001382 __u64 flags, struct lov_user_md *lum,
1383 int lum_size)
Peng Taod7e09d02013-05-02 16:46:55 +08001384{
1385 struct lov_stripe_md *lsm = NULL;
1386 struct lookup_intent oit = {.it_op = IT_OPEN, .it_flags = flags};
1387 int rc = 0;
Peng Taod7e09d02013-05-02 16:46:55 +08001388
1389 lsm = ccc_inode_lsm_get(inode);
Oleg Drokin6e168182016-02-16 00:46:46 -05001390 if (lsm) {
Peng Taod7e09d02013-05-02 16:46:55 +08001391 ccc_inode_lsm_put(inode, lsm);
James Nunez97a075c2016-04-27 18:21:01 -04001392 CDEBUG(D_IOCTL, "stripe already exists for inode "DFID"\n",
1393 PFID(ll_inode2fid(inode)));
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001394 rc = -EEXIST;
1395 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08001396 }
1397
1398 ll_inode_size_lock(inode);
Al Viroc139f3c2014-05-09 10:05:18 -04001399 rc = ll_intent_file_open(dentry, lum, lum_size, &oit);
Peng Taod7e09d02013-05-02 16:46:55 +08001400 if (rc)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001401 goto out_unlock;
John L. Hammonde476f2e2016-06-20 16:55:38 -04001402 rc = oit.it_status;
Peng Taod7e09d02013-05-02 16:46:55 +08001403 if (rc < 0)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001404 goto out_req_free;
Peng Taod7e09d02013-05-02 16:46:55 +08001405
Al Viroe22fdcc2014-10-20 20:39:57 -04001406 ll_release_openhandle(inode, &oit);
Peng Taod7e09d02013-05-02 16:46:55 +08001407
Andreas Dilger38585cc2014-02-11 02:52:05 -07001408out_unlock:
Peng Taod7e09d02013-05-02 16:46:55 +08001409 ll_inode_size_unlock(inode);
1410 ll_intent_release(&oit);
1411 ccc_inode_lsm_put(inode, lsm);
Andreas Dilger38585cc2014-02-11 02:52:05 -07001412out:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001413 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001414out_req_free:
John L. Hammond8bf86fd2016-06-20 16:55:40 -04001415 ptlrpc_req_finished((struct ptlrpc_request *)oit.it_request);
Peng Taod7e09d02013-05-02 16:46:55 +08001416 goto out;
1417}
1418
1419int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
1420 struct lov_mds_md **lmmp, int *lmm_size,
1421 struct ptlrpc_request **request)
1422{
1423 struct ll_sb_info *sbi = ll_i2sbi(inode);
1424 struct mdt_body *body;
1425 struct lov_mds_md *lmm = NULL;
1426 struct ptlrpc_request *req = NULL;
1427 struct md_op_data *op_data;
1428 int rc, lmmsize;
1429
Brian Behlendorf44779342014-04-27 13:06:47 -04001430 rc = ll_get_default_mdsize(sbi, &lmmsize);
Peng Taod7e09d02013-05-02 16:46:55 +08001431 if (rc)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001432 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001433
1434 op_data = ll_prep_md_op_data(NULL, inode, NULL, filename,
1435 strlen(filename), lmmsize,
1436 LUSTRE_OPC_ANY, NULL);
1437 if (IS_ERR(op_data))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001438 return PTR_ERR(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +08001439
1440 op_data->op_valid = OBD_MD_FLEASIZE | OBD_MD_FLDIREA;
1441 rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
1442 ll_finish_md_op_data(op_data);
1443 if (rc < 0) {
Joe Perches2d00bd12014-11-23 11:28:50 -08001444 CDEBUG(D_INFO, "md_getattr_name failed on %s: rc %d\n",
1445 filename, rc);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001446 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08001447 }
1448
1449 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
Peng Taod7e09d02013-05-02 16:46:55 +08001450
1451 lmmsize = body->eadatasize;
1452
1453 if (!(body->valid & (OBD_MD_FLEASIZE | OBD_MD_FLDIREA)) ||
Oleg Drokine15ba452016-02-26 01:49:49 -05001454 lmmsize == 0) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001455 rc = -ENODATA;
1456 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08001457 }
1458
1459 lmm = req_capsule_server_sized_get(&req->rq_pill, &RMF_MDT_MD, lmmsize);
Peng Taod7e09d02013-05-02 16:46:55 +08001460
1461 if ((lmm->lmm_magic != cpu_to_le32(LOV_MAGIC_V1)) &&
1462 (lmm->lmm_magic != cpu_to_le32(LOV_MAGIC_V3))) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001463 rc = -EPROTO;
1464 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08001465 }
1466
1467 /*
1468 * This is coming from the MDS, so is probably in
1469 * little endian. We convert it to host endian before
1470 * passing it to userspace.
1471 */
Julia Lawall1f6eaf82015-08-29 19:30:09 +02001472 if (cpu_to_le32(LOV_MAGIC) != LOV_MAGIC) {
Jinshan Xiong5dd16412013-07-23 00:06:39 +08001473 int stripe_count;
1474
1475 stripe_count = le16_to_cpu(lmm->lmm_stripe_count);
1476 if (le32_to_cpu(lmm->lmm_pattern) & LOV_PATTERN_F_RELEASED)
1477 stripe_count = 0;
1478
Peng Taod7e09d02013-05-02 16:46:55 +08001479 /* if function called for directory - we should
Oleg Drokinc0894c62016-02-24 22:00:30 -05001480 * avoid swab not existent lsm objects
1481 */
Peng Taod7e09d02013-05-02 16:46:55 +08001482 if (lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V1)) {
1483 lustre_swab_lov_user_md_v1((struct lov_user_md_v1 *)lmm);
1484 if (S_ISREG(body->mode))
1485 lustre_swab_lov_user_md_objects(
1486 ((struct lov_user_md_v1 *)lmm)->lmm_objects,
Jinshan Xiong5dd16412013-07-23 00:06:39 +08001487 stripe_count);
Peng Taod7e09d02013-05-02 16:46:55 +08001488 } else if (lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V3)) {
1489 lustre_swab_lov_user_md_v3((struct lov_user_md_v3 *)lmm);
1490 if (S_ISREG(body->mode))
1491 lustre_swab_lov_user_md_objects(
1492 ((struct lov_user_md_v3 *)lmm)->lmm_objects,
Jinshan Xiong5dd16412013-07-23 00:06:39 +08001493 stripe_count);
Peng Taod7e09d02013-05-02 16:46:55 +08001494 }
1495 }
1496
1497out:
1498 *lmmp = lmm;
1499 *lmm_size = lmmsize;
1500 *request = req;
1501 return rc;
1502}
1503
1504static int ll_lov_setea(struct inode *inode, struct file *file,
Oleg Drokine15ba452016-02-26 01:49:49 -05001505 unsigned long arg)
Peng Taod7e09d02013-05-02 16:46:55 +08001506{
Niu Yaweid4672202016-04-04 21:36:47 -04001507 __u64 flags = MDS_OPEN_HAS_OBJS | FMODE_WRITE;
Peng Taod7e09d02013-05-02 16:46:55 +08001508 struct lov_user_md *lump;
1509 int lum_size = sizeof(struct lov_user_md) +
1510 sizeof(struct lov_user_ost_data);
1511 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001512
Peng Tao2eb90a72014-01-22 21:47:37 +08001513 if (!capable(CFS_CAP_SYS_ADMIN))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001514 return -EPERM;
Peng Taod7e09d02013-05-02 16:46:55 +08001515
Julia Lawalle958f492015-06-11 14:02:52 +02001516 lump = libcfs_kvzalloc(lum_size, GFP_NOFS);
Oleg Drokin6e168182016-02-16 00:46:46 -05001517 if (!lump)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001518 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +08001519
Oleg Drokin02f9c122016-01-03 12:05:55 -05001520 if (copy_from_user(lump, (struct lov_user_md __user *)arg, lum_size)) {
Julia Lawalle958f492015-06-11 14:02:52 +02001521 kvfree(lump);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001522 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08001523 }
1524
Al Viroc139f3c2014-05-09 10:05:18 -04001525 rc = ll_lov_setstripe_ea_info(inode, file->f_path.dentry, flags, lump,
Oleg Drokine15ba452016-02-26 01:49:49 -05001526 lum_size);
Al Viroc139f3c2014-05-09 10:05:18 -04001527 cl_lov_delay_create_clear(&file->f_flags);
Peng Taod7e09d02013-05-02 16:46:55 +08001528
Julia Lawalle958f492015-06-11 14:02:52 +02001529 kvfree(lump);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001530 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001531}
1532
1533static int ll_lov_setstripe(struct inode *inode, struct file *file,
1534 unsigned long arg)
1535{
Oleg Drokin02f9c122016-01-03 12:05:55 -05001536 struct lov_user_md_v3 lumv3;
1537 struct lov_user_md_v1 *lumv1 = (struct lov_user_md_v1 *)&lumv3;
1538 struct lov_user_md_v1 __user *lumv1p = (void __user *)arg;
1539 struct lov_user_md_v3 __user *lumv3p = (void __user *)arg;
1540 int lum_size, rc;
Niu Yaweid4672202016-04-04 21:36:47 -04001541 __u64 flags = FMODE_WRITE;
Peng Taod7e09d02013-05-02 16:46:55 +08001542
1543 /* first try with v1 which is smaller than v3 */
1544 lum_size = sizeof(struct lov_user_md_v1);
1545 if (copy_from_user(lumv1, lumv1p, lum_size))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001546 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08001547
1548 if (lumv1->lmm_magic == LOV_USER_MAGIC_V3) {
1549 lum_size = sizeof(struct lov_user_md_v3);
1550 if (copy_from_user(&lumv3, lumv3p, lum_size))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001551 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08001552 }
1553
Al Viroc139f3c2014-05-09 10:05:18 -04001554 rc = ll_lov_setstripe_ea_info(inode, file->f_path.dentry, flags, lumv1,
1555 lum_size);
1556 cl_lov_delay_create_clear(&file->f_flags);
Peng Taod7e09d02013-05-02 16:46:55 +08001557 if (rc == 0) {
1558 struct lov_stripe_md *lsm;
1559 __u32 gen;
1560
1561 put_user(0, &lumv1p->lmm_stripe_count);
1562
1563 ll_layout_refresh(inode, &gen);
1564 lsm = ccc_inode_lsm_get(inode);
1565 rc = obd_iocontrol(LL_IOC_LOV_GETSTRIPE, ll_i2dtexp(inode),
Oleg Drokine09bee32016-01-03 12:05:43 -05001566 0, lsm, (void __user *)arg);
Peng Taod7e09d02013-05-02 16:46:55 +08001567 ccc_inode_lsm_put(inode, lsm);
1568 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001569 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001570}
1571
1572static int ll_lov_getstripe(struct inode *inode, unsigned long arg)
1573{
1574 struct lov_stripe_md *lsm;
1575 int rc = -ENODATA;
Peng Taod7e09d02013-05-02 16:46:55 +08001576
1577 lsm = ccc_inode_lsm_get(inode);
Oleg Drokin6e168182016-02-16 00:46:46 -05001578 if (lsm)
Peng Taod7e09d02013-05-02 16:46:55 +08001579 rc = obd_iocontrol(LL_IOC_LOV_GETSTRIPE, ll_i2dtexp(inode), 0,
Oleg Drokine09bee32016-01-03 12:05:43 -05001580 lsm, (void __user *)arg);
Peng Taod7e09d02013-05-02 16:46:55 +08001581 ccc_inode_lsm_put(inode, lsm);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001582 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001583}
1584
John L. Hammond2d95f102014-04-27 13:07:05 -04001585static int
1586ll_get_grouplock(struct inode *inode, struct file *file, unsigned long arg)
Peng Taod7e09d02013-05-02 16:46:55 +08001587{
1588 struct ll_inode_info *lli = ll_i2info(inode);
1589 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
John Hammond98eae5e2016-03-30 19:48:55 -04001590 struct ll_grouplock grouplock;
Peng Taod7e09d02013-05-02 16:46:55 +08001591 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001592
Patrick Farrell431b5672015-02-01 21:52:18 -05001593 if (arg == 0) {
1594 CWARN("group id for group lock must not be 0\n");
1595 return -EINVAL;
1596 }
1597
Peng Taod7e09d02013-05-02 16:46:55 +08001598 if (ll_file_nolock(file))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001599 return -EOPNOTSUPP;
Peng Taod7e09d02013-05-02 16:46:55 +08001600
1601 spin_lock(&lli->lli_lock);
1602 if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
1603 CWARN("group lock already existed with gid %lu\n",
John Hammond98eae5e2016-03-30 19:48:55 -04001604 fd->fd_grouplock.lg_gid);
Peng Taod7e09d02013-05-02 16:46:55 +08001605 spin_unlock(&lli->lli_lock);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001606 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +08001607 }
John Hammond98eae5e2016-03-30 19:48:55 -04001608 LASSERT(!fd->fd_grouplock.lg_lock);
Peng Taod7e09d02013-05-02 16:46:55 +08001609 spin_unlock(&lli->lli_lock);
1610
John L. Hammond1929c432016-03-30 19:48:37 -04001611 rc = cl_get_grouplock(ll_i2info(inode)->lli_clob,
Peng Taod7e09d02013-05-02 16:46:55 +08001612 arg, (file->f_flags & O_NONBLOCK), &grouplock);
1613 if (rc)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001614 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001615
1616 spin_lock(&lli->lli_lock);
1617 if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
1618 spin_unlock(&lli->lli_lock);
1619 CERROR("another thread just won the race\n");
1620 cl_put_grouplock(&grouplock);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001621 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +08001622 }
1623
1624 fd->fd_flags |= LL_FILE_GROUP_LOCKED;
1625 fd->fd_grouplock = grouplock;
1626 spin_unlock(&lli->lli_lock);
1627
1628 CDEBUG(D_INFO, "group lock %lu obtained\n", arg);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001629 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08001630}
1631
Luca Ceresoli920b4f22015-01-18 15:06:50 +01001632static int ll_put_grouplock(struct inode *inode, struct file *file,
1633 unsigned long arg)
Peng Taod7e09d02013-05-02 16:46:55 +08001634{
1635 struct ll_inode_info *lli = ll_i2info(inode);
1636 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
John Hammond98eae5e2016-03-30 19:48:55 -04001637 struct ll_grouplock grouplock;
Peng Taod7e09d02013-05-02 16:46:55 +08001638
1639 spin_lock(&lli->lli_lock);
1640 if (!(fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
1641 spin_unlock(&lli->lli_lock);
1642 CWARN("no group lock held\n");
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001643 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +08001644 }
John Hammond98eae5e2016-03-30 19:48:55 -04001645 LASSERT(fd->fd_grouplock.lg_lock);
Peng Taod7e09d02013-05-02 16:46:55 +08001646
John Hammond98eae5e2016-03-30 19:48:55 -04001647 if (fd->fd_grouplock.lg_gid != arg) {
Peng Taod7e09d02013-05-02 16:46:55 +08001648 CWARN("group lock %lu doesn't match current id %lu\n",
John Hammond98eae5e2016-03-30 19:48:55 -04001649 arg, fd->fd_grouplock.lg_gid);
Peng Taod7e09d02013-05-02 16:46:55 +08001650 spin_unlock(&lli->lli_lock);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001651 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +08001652 }
1653
1654 grouplock = fd->fd_grouplock;
1655 memset(&fd->fd_grouplock, 0, sizeof(fd->fd_grouplock));
1656 fd->fd_flags &= ~LL_FILE_GROUP_LOCKED;
1657 spin_unlock(&lli->lli_lock);
1658
1659 cl_put_grouplock(&grouplock);
1660 CDEBUG(D_INFO, "group lock %lu released\n", arg);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001661 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08001662}
1663
1664/**
1665 * Close inode open handle
1666 *
Al Viroe22fdcc2014-10-20 20:39:57 -04001667 * \param inode [in] inode in question
Peng Taod7e09d02013-05-02 16:46:55 +08001668 * \param it [in,out] intent which contains open info and result
1669 *
1670 * \retval 0 success
1671 * \retval <0 failure
1672 */
Al Viroe22fdcc2014-10-20 20:39:57 -04001673int ll_release_openhandle(struct inode *inode, struct lookup_intent *it)
Peng Taod7e09d02013-05-02 16:46:55 +08001674{
Peng Taod7e09d02013-05-02 16:46:55 +08001675 struct obd_client_handle *och;
1676 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001677
1678 LASSERT(inode);
1679
1680 /* Root ? Do nothing. */
Al Virof76c23d2014-10-21 15:20:42 -04001681 if (is_root_inode(inode))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001682 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08001683
1684 /* No open handle to close? Move away */
1685 if (!it_disposition(it, DISP_OPEN_OPEN))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001686 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08001687
1688 LASSERT(it_open_error(DISP_OPEN_OPEN, it) == 0);
1689
Julia Lawall496a51b2014-09-18 22:24:02 +02001690 och = kzalloc(sizeof(*och), GFP_NOFS);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001691 if (!och) {
1692 rc = -ENOMEM;
1693 goto out;
1694 }
Peng Taod7e09d02013-05-02 16:46:55 +08001695
John L. Hammondea1db082013-11-15 00:13:08 +08001696 ll_och_fill(ll_i2sbi(inode)->ll_md_exp, it, och);
Peng Taod7e09d02013-05-02 16:46:55 +08001697
1698 rc = ll_close_inode_openhandle(ll_i2sbi(inode)->ll_md_exp,
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001699 inode, och, NULL);
1700out:
Peng Taod7e09d02013-05-02 16:46:55 +08001701 /* this one is in place of ll_file_open */
1702 if (it_disposition(it, DISP_ENQ_OPEN_REF)) {
John L. Hammond8bf86fd2016-06-20 16:55:40 -04001703 ptlrpc_req_finished(it->it_request);
Peng Taod7e09d02013-05-02 16:46:55 +08001704 it_clear_disposition(it, DISP_ENQ_OPEN_REF);
1705 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001706 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001707}
1708
1709/**
1710 * Get size for inode for which FIEMAP mapping is requested.
1711 * Make the FIEMAP get_info call and returns the result.
1712 */
John L. Hammond2d95f102014-04-27 13:07:05 -04001713static int ll_do_fiemap(struct inode *inode, struct ll_user_fiemap *fiemap,
Bobi Jamebdc4fc2014-04-27 13:07:11 -04001714 size_t num_bytes)
Peng Taod7e09d02013-05-02 16:46:55 +08001715{
1716 struct obd_export *exp = ll_i2dtexp(inode);
1717 struct lov_stripe_md *lsm = NULL;
1718 struct ll_fiemap_info_key fm_key = { .name = KEY_FIEMAP, };
Bobi Jamebdc4fc2014-04-27 13:07:11 -04001719 __u32 vallen = num_bytes;
Peng Taod7e09d02013-05-02 16:46:55 +08001720 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001721
1722 /* Checks for fiemap flags */
1723 if (fiemap->fm_flags & ~LUSTRE_FIEMAP_FLAGS_COMPAT) {
1724 fiemap->fm_flags &= ~LUSTRE_FIEMAP_FLAGS_COMPAT;
1725 return -EBADR;
1726 }
1727
1728 /* Check for FIEMAP_FLAG_SYNC */
1729 if (fiemap->fm_flags & FIEMAP_FLAG_SYNC) {
1730 rc = filemap_fdatawrite(inode->i_mapping);
1731 if (rc)
1732 return rc;
1733 }
1734
1735 lsm = ccc_inode_lsm_get(inode);
Oleg Drokin6e168182016-02-16 00:46:46 -05001736 if (!lsm)
Peng Taod7e09d02013-05-02 16:46:55 +08001737 return -ENOENT;
1738
1739 /* If the stripe_count > 1 and the application does not understand
1740 * DEVICE_ORDER flag, then it cannot interpret the extents correctly.
1741 */
1742 if (lsm->lsm_stripe_count > 1 &&
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001743 !(fiemap->fm_flags & FIEMAP_FLAG_DEVICE_ORDER)) {
1744 rc = -EOPNOTSUPP;
1745 goto out;
1746 }
Peng Taod7e09d02013-05-02 16:46:55 +08001747
1748 fm_key.oa.o_oi = lsm->lsm_oi;
1749 fm_key.oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
1750
Li Dongyanga915ffd2015-03-25 21:53:24 -04001751 if (i_size_read(inode) == 0) {
1752 rc = ll_glimpse_size(inode);
1753 if (rc)
1754 goto out;
1755 }
1756
Peng Taod7e09d02013-05-02 16:46:55 +08001757 obdo_from_inode(&fm_key.oa, inode, OBD_MD_FLSIZE);
1758 obdo_set_parent_fid(&fm_key.oa, &ll_i2info(inode)->lli_fid);
1759 /* If filesize is 0, then there would be no objects for mapping */
1760 if (fm_key.oa.o_size == 0) {
1761 fiemap->fm_mapped_extents = 0;
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001762 rc = 0;
1763 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08001764 }
1765
1766 memcpy(&fm_key.fiemap, fiemap, sizeof(*fiemap));
1767
1768 rc = obd_get_info(NULL, exp, sizeof(fm_key), &fm_key, &vallen,
1769 fiemap, lsm);
1770 if (rc)
1771 CERROR("obd_get_info failed: rc = %d\n", rc);
1772
1773out:
1774 ccc_inode_lsm_put(inode, lsm);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001775 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001776}
1777
Frank Zago2b358b42014-08-15 12:48:12 -04001778int ll_fid2path(struct inode *inode, void __user *arg)
Peng Taod7e09d02013-05-02 16:46:55 +08001779{
Frank Zago2b358b42014-08-15 12:48:12 -04001780 struct obd_export *exp = ll_i2mdexp(inode);
1781 const struct getinfo_fid2path __user *gfin = arg;
1782 struct getinfo_fid2path *gfout;
1783 u32 pathlen;
1784 size_t outsize;
1785 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001786
Peng Tao2eb90a72014-01-22 21:47:37 +08001787 if (!capable(CFS_CAP_DAC_READ_SEARCH) &&
Peng Taod7e09d02013-05-02 16:46:55 +08001788 !(ll_i2sbi(inode)->ll_flags & LL_SBI_USER_FID2PATH))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001789 return -EPERM;
Peng Taod7e09d02013-05-02 16:46:55 +08001790
Frank Zago2b358b42014-08-15 12:48:12 -04001791 /* Only need to get the buflen */
1792 if (get_user(pathlen, &gfin->gf_pathlen))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001793 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08001794
Oleg Drokinc7b09ef2014-08-15 12:48:13 -04001795 if (pathlen > PATH_MAX)
1796 return -EINVAL;
1797
Frank Zago2b358b42014-08-15 12:48:12 -04001798 outsize = sizeof(*gfout) + pathlen;
1799
Julia Lawall496a51b2014-09-18 22:24:02 +02001800 gfout = kzalloc(outsize, GFP_NOFS);
1801 if (!gfout)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001802 return -ENOMEM;
Frank Zago2b358b42014-08-15 12:48:12 -04001803
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001804 if (copy_from_user(gfout, arg, sizeof(*gfout))) {
1805 rc = -EFAULT;
1806 goto gf_free;
1807 }
Peng Taod7e09d02013-05-02 16:46:55 +08001808
1809 /* Call mdc_iocontrol */
1810 rc = obd_iocontrol(OBD_IOC_FID2PATH, exp, outsize, gfout, NULL);
Frank Zago2b358b42014-08-15 12:48:12 -04001811 if (rc != 0)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001812 goto gf_free;
Peng Taod7e09d02013-05-02 16:46:55 +08001813
1814 if (copy_to_user(arg, gfout, outsize))
1815 rc = -EFAULT;
1816
1817gf_free:
Julia Lawall97903a22015-04-12 22:55:02 +02001818 kfree(gfout);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001819 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001820}
1821
1822static int ll_ioctl_fiemap(struct inode *inode, unsigned long arg)
1823{
1824 struct ll_user_fiemap *fiemap_s;
1825 size_t num_bytes, ret_bytes;
1826 unsigned int extent_count;
1827 int rc = 0;
1828
1829 /* Get the extent count so we can calculate the size of
Oleg Drokinc0894c62016-02-24 22:00:30 -05001830 * required fiemap buffer
1831 */
Peng Taod7e09d02013-05-02 16:46:55 +08001832 if (get_user(extent_count,
Oleg Drokine15ba452016-02-26 01:49:49 -05001833 &((struct ll_user_fiemap __user *)arg)->fm_extent_count))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001834 return -EFAULT;
Vitaly Osipov7bc3dfa2014-04-27 01:08:21 +10001835
1836 if (extent_count >=
1837 (SIZE_MAX - sizeof(*fiemap_s)) / sizeof(struct ll_fiemap_extent))
1838 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +08001839 num_bytes = sizeof(*fiemap_s) + (extent_count *
1840 sizeof(struct ll_fiemap_extent));
1841
Julia Lawalle958f492015-06-11 14:02:52 +02001842 fiemap_s = libcfs_kvzalloc(num_bytes, GFP_NOFS);
Oleg Drokin6e168182016-02-16 00:46:46 -05001843 if (!fiemap_s)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001844 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +08001845
1846 /* get the fiemap value */
1847 if (copy_from_user(fiemap_s, (struct ll_user_fiemap __user *)arg,
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001848 sizeof(*fiemap_s))) {
1849 rc = -EFAULT;
1850 goto error;
1851 }
Peng Taod7e09d02013-05-02 16:46:55 +08001852
1853 /* If fm_extent_count is non-zero, read the first extent since
1854 * it is used to calculate end_offset and device from previous
Oleg Drokinc0894c62016-02-24 22:00:30 -05001855 * fiemap call.
1856 */
Peng Taod7e09d02013-05-02 16:46:55 +08001857 if (extent_count) {
1858 if (copy_from_user(&fiemap_s->fm_extents[0],
Oleg Drokine15ba452016-02-26 01:49:49 -05001859 (char __user *)arg + sizeof(*fiemap_s),
1860 sizeof(struct ll_fiemap_extent))) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001861 rc = -EFAULT;
1862 goto error;
1863 }
Peng Taod7e09d02013-05-02 16:46:55 +08001864 }
1865
1866 rc = ll_do_fiemap(inode, fiemap_s, num_bytes);
1867 if (rc)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001868 goto error;
Peng Taod7e09d02013-05-02 16:46:55 +08001869
1870 ret_bytes = sizeof(struct ll_user_fiemap);
1871
1872 if (extent_count != 0)
1873 ret_bytes += (fiemap_s->fm_mapped_extents *
1874 sizeof(struct ll_fiemap_extent));
1875
Oleg Drokin02f9c122016-01-03 12:05:55 -05001876 if (copy_to_user((void __user *)arg, fiemap_s, ret_bytes))
Peng Taod7e09d02013-05-02 16:46:55 +08001877 rc = -EFAULT;
1878
1879error:
Julia Lawalle958f492015-06-11 14:02:52 +02001880 kvfree(fiemap_s);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001881 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001882}
1883
1884/*
1885 * Read the data_version for inode.
1886 *
1887 * This value is computed using stripe object version on OST.
1888 * Version is computed using server side locking.
1889 *
Jinshan Xionge1798002016-04-04 21:37:01 -04001890 * @param sync if do sync on the OST side;
1891 * 0: no sync
1892 * LL_DV_RD_FLUSH: flush dirty pages, LCK_PR on OSTs
1893 * LL_DV_WR_FLUSH: drop all caching pages, LCK_PW on OSTs
Peng Taod7e09d02013-05-02 16:46:55 +08001894 */
Jinshan Xionge1798002016-04-04 21:37:01 -04001895int ll_data_version(struct inode *inode, __u64 *data_version, int flags)
Peng Taod7e09d02013-05-02 16:46:55 +08001896{
1897 struct lov_stripe_md *lsm = NULL;
1898 struct ll_sb_info *sbi = ll_i2sbi(inode);
1899 struct obdo *obdo = NULL;
1900 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001901
1902 /* If no stripe, we consider version is 0. */
1903 lsm = ccc_inode_lsm_get(inode);
Jinshan Xiong5dd16412013-07-23 00:06:39 +08001904 if (!lsm_has_objects(lsm)) {
Peng Taod7e09d02013-05-02 16:46:55 +08001905 *data_version = 0;
1906 CDEBUG(D_INODE, "No object for inode\n");
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001907 rc = 0;
1908 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08001909 }
1910
Julia Lawall496a51b2014-09-18 22:24:02 +02001911 obdo = kzalloc(sizeof(*obdo), GFP_NOFS);
1912 if (!obdo) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001913 rc = -ENOMEM;
1914 goto out;
1915 }
Peng Taod7e09d02013-05-02 16:46:55 +08001916
Jinshan Xionge1798002016-04-04 21:37:01 -04001917 rc = ll_lsm_getattr(lsm, sbi->ll_dt_exp, obdo, 0, flags);
Jinshan Xiong5dd16412013-07-23 00:06:39 +08001918 if (rc == 0) {
Peng Taod7e09d02013-05-02 16:46:55 +08001919 if (!(obdo->o_valid & OBD_MD_FLDATAVERSION))
1920 rc = -EOPNOTSUPP;
1921 else
1922 *data_version = obdo->o_data_version;
1923 }
1924
Julia Lawall97903a22015-04-12 22:55:02 +02001925 kfree(obdo);
Jinshan Xiong5dd16412013-07-23 00:06:39 +08001926out:
Peng Taod7e09d02013-05-02 16:46:55 +08001927 ccc_inode_lsm_put(inode, lsm);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08001928 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08001929}
1930
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001931/*
1932 * Trigger a HSM release request for the provided inode.
1933 */
1934int ll_hsm_release(struct inode *inode)
1935{
1936 struct cl_env_nest nest;
1937 struct lu_env *env;
1938 struct obd_client_handle *och = NULL;
1939 __u64 data_version = 0;
1940 int rc;
1941
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001942 CDEBUG(D_INODE, "%s: Releasing file "DFID".\n",
1943 ll_get_fsname(inode->i_sb, NULL, 0),
1944 PFID(&ll_i2info(inode)->lli_fid));
1945
1946 och = ll_lease_open(inode, NULL, FMODE_WRITE, MDS_OPEN_RELEASE);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001947 if (IS_ERR(och)) {
1948 rc = PTR_ERR(och);
1949 goto out;
1950 }
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001951
1952 /* Grab latest data_version and [am]time values */
Jinshan Xionge1798002016-04-04 21:37:01 -04001953 rc = ll_data_version(inode, &data_version, LL_DV_WR_FLUSH);
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001954 if (rc != 0)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001955 goto out;
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001956
1957 env = cl_env_nested_get(&nest);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02001958 if (IS_ERR(env)) {
1959 rc = PTR_ERR(env);
1960 goto out;
1961 }
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001962
John L. Hammondd2995732016-03-30 19:48:34 -04001963 ll_merge_attr(env, inode);
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001964 cl_env_nested_put(&nest, env);
1965
1966 /* Release the file.
1967 * NB: lease lock handle is released in mdc_hsm_release_pack() because
Oleg Drokinc0894c62016-02-24 22:00:30 -05001968 * we still need it to pack l_remote_handle to MDT.
1969 */
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001970 rc = ll_close_inode_openhandle(ll_i2sbi(inode)->ll_md_exp, inode, och,
1971 &data_version);
1972 och = NULL;
1973
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001974out:
Oleg Drokin6e168182016-02-16 00:46:46 -05001975 if (och && !IS_ERR(och)) /* close the file */
Jinshan Xiong48d23e62013-12-03 21:58:48 +08001976 ll_lease_close(och, inode, NULL);
1977
1978 return rc;
1979}
1980
Peng Taod7e09d02013-05-02 16:46:55 +08001981struct ll_swap_stack {
1982 struct iattr ia1, ia2;
1983 __u64 dv1, dv2;
1984 struct inode *inode1, *inode2;
1985 bool check_dv1, check_dv2;
1986};
1987
1988static int ll_swap_layouts(struct file *file1, struct file *file2,
1989 struct lustre_swap_layouts *lsl)
1990{
1991 struct mdc_swap_layouts msl;
1992 struct md_op_data *op_data;
1993 __u32 gid;
1994 __u64 dv;
1995 struct ll_swap_stack *llss = NULL;
1996 int rc;
1997
Julia Lawall496a51b2014-09-18 22:24:02 +02001998 llss = kzalloc(sizeof(*llss), GFP_NOFS);
1999 if (!llss)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002000 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +08002001
Al Viro2a8a3592014-10-20 18:02:33 -04002002 llss->inode1 = file_inode(file1);
2003 llss->inode2 = file_inode(file2);
Peng Taod7e09d02013-05-02 16:46:55 +08002004
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002005 if (!S_ISREG(llss->inode2->i_mode)) {
2006 rc = -EINVAL;
2007 goto free;
2008 }
Peng Taod7e09d02013-05-02 16:46:55 +08002009
Greg Kroah-Hartman9c5fb722013-08-02 16:01:26 +08002010 if (inode_permission(llss->inode1, MAY_WRITE) ||
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002011 inode_permission(llss->inode2, MAY_WRITE)) {
2012 rc = -EPERM;
2013 goto free;
2014 }
Peng Taod7e09d02013-05-02 16:46:55 +08002015
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002016 if (llss->inode2->i_sb != llss->inode1->i_sb) {
2017 rc = -EXDEV;
2018 goto free;
2019 }
Peng Taod7e09d02013-05-02 16:46:55 +08002020
2021 /* we use 2 bool because it is easier to swap than 2 bits */
2022 if (lsl->sl_flags & SWAP_LAYOUTS_CHECK_DV1)
2023 llss->check_dv1 = true;
2024
2025 if (lsl->sl_flags & SWAP_LAYOUTS_CHECK_DV2)
2026 llss->check_dv2 = true;
2027
2028 /* we cannot use lsl->sl_dvX directly because we may swap them */
2029 llss->dv1 = lsl->sl_dv1;
2030 llss->dv2 = lsl->sl_dv2;
2031
2032 rc = lu_fid_cmp(ll_inode2fid(llss->inode1), ll_inode2fid(llss->inode2));
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002033 if (rc == 0) /* same file, done! */ {
2034 rc = 0;
2035 goto free;
2036 }
Peng Taod7e09d02013-05-02 16:46:55 +08002037
2038 if (rc < 0) { /* sequentialize it */
2039 swap(llss->inode1, llss->inode2);
2040 swap(file1, file2);
2041 swap(llss->dv1, llss->dv2);
2042 swap(llss->check_dv1, llss->check_dv2);
2043 }
2044
2045 gid = lsl->sl_gid;
2046 if (gid != 0) { /* application asks to flush dirty cache */
2047 rc = ll_get_grouplock(llss->inode1, file1, gid);
2048 if (rc < 0)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002049 goto free;
Peng Taod7e09d02013-05-02 16:46:55 +08002050
2051 rc = ll_get_grouplock(llss->inode2, file2, gid);
2052 if (rc < 0) {
2053 ll_put_grouplock(llss->inode1, file1, gid);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002054 goto free;
Peng Taod7e09d02013-05-02 16:46:55 +08002055 }
2056 }
2057
2058 /* to be able to restore mtime and atime after swap
Oleg Drokinc0894c62016-02-24 22:00:30 -05002059 * we need to first save them
2060 */
Peng Taod7e09d02013-05-02 16:46:55 +08002061 if (lsl->sl_flags &
2062 (SWAP_LAYOUTS_KEEP_MTIME | SWAP_LAYOUTS_KEEP_ATIME)) {
2063 llss->ia1.ia_mtime = llss->inode1->i_mtime;
2064 llss->ia1.ia_atime = llss->inode1->i_atime;
2065 llss->ia1.ia_valid = ATTR_MTIME | ATTR_ATIME;
2066 llss->ia2.ia_mtime = llss->inode2->i_mtime;
2067 llss->ia2.ia_atime = llss->inode2->i_atime;
2068 llss->ia2.ia_valid = ATTR_MTIME | ATTR_ATIME;
2069 }
2070
Masanari Iidad0a0acc2014-03-08 22:58:32 +09002071 /* ultimate check, before swapping the layouts we check if
Oleg Drokinc0894c62016-02-24 22:00:30 -05002072 * dataversion has changed (if requested)
2073 */
Peng Taod7e09d02013-05-02 16:46:55 +08002074 if (llss->check_dv1) {
2075 rc = ll_data_version(llss->inode1, &dv, 0);
2076 if (rc)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002077 goto putgl;
2078 if (dv != llss->dv1) {
2079 rc = -EAGAIN;
2080 goto putgl;
2081 }
Peng Taod7e09d02013-05-02 16:46:55 +08002082 }
2083
2084 if (llss->check_dv2) {
2085 rc = ll_data_version(llss->inode2, &dv, 0);
2086 if (rc)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002087 goto putgl;
2088 if (dv != llss->dv2) {
2089 rc = -EAGAIN;
2090 goto putgl;
2091 }
Peng Taod7e09d02013-05-02 16:46:55 +08002092 }
2093
2094 /* struct md_op_data is used to send the swap args to the mdt
2095 * only flags is missing, so we use struct mdc_swap_layouts
Oleg Drokinc0894c62016-02-24 22:00:30 -05002096 * through the md_op_data->op_data
2097 */
Peng Taod7e09d02013-05-02 16:46:55 +08002098 /* flags from user space have to be converted before they are send to
Oleg Drokinc0894c62016-02-24 22:00:30 -05002099 * server, no flag is sent today, they are only used on the client
2100 */
Peng Taod7e09d02013-05-02 16:46:55 +08002101 msl.msl_flags = 0;
2102 rc = -ENOMEM;
2103 op_data = ll_prep_md_op_data(NULL, llss->inode1, llss->inode2, NULL, 0,
2104 0, LUSTRE_OPC_ANY, &msl);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002105 if (IS_ERR(op_data)) {
2106 rc = PTR_ERR(op_data);
2107 goto free;
2108 }
John L. Hammond79a87262013-07-23 00:06:29 +08002109
2110 rc = obd_iocontrol(LL_IOC_LOV_SWAP_LAYOUTS, ll_i2mdexp(llss->inode1),
2111 sizeof(*op_data), op_data, NULL);
2112 ll_finish_md_op_data(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +08002113
2114putgl:
2115 if (gid != 0) {
2116 ll_put_grouplock(llss->inode2, file2, gid);
2117 ll_put_grouplock(llss->inode1, file1, gid);
2118 }
2119
2120 /* rc can be set from obd_iocontrol() or from a GOTO(putgl, ...) */
2121 if (rc != 0)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002122 goto free;
Peng Taod7e09d02013-05-02 16:46:55 +08002123
2124 /* clear useless flags */
2125 if (!(lsl->sl_flags & SWAP_LAYOUTS_KEEP_MTIME)) {
2126 llss->ia1.ia_valid &= ~ATTR_MTIME;
2127 llss->ia2.ia_valid &= ~ATTR_MTIME;
2128 }
2129
2130 if (!(lsl->sl_flags & SWAP_LAYOUTS_KEEP_ATIME)) {
2131 llss->ia1.ia_valid &= ~ATTR_ATIME;
2132 llss->ia2.ia_valid &= ~ATTR_ATIME;
2133 }
2134
2135 /* update time if requested */
2136 rc = 0;
2137 if (llss->ia2.ia_valid != 0) {
Al Viro59551022016-01-22 15:40:57 -05002138 inode_lock(llss->inode1);
Al Virob5830432014-10-31 01:22:04 -04002139 rc = ll_setattr(file1->f_path.dentry, &llss->ia2);
Al Viro59551022016-01-22 15:40:57 -05002140 inode_unlock(llss->inode1);
Peng Taod7e09d02013-05-02 16:46:55 +08002141 }
2142
2143 if (llss->ia1.ia_valid != 0) {
2144 int rc1;
2145
Al Viro59551022016-01-22 15:40:57 -05002146 inode_lock(llss->inode2);
Al Virob5830432014-10-31 01:22:04 -04002147 rc1 = ll_setattr(file2->f_path.dentry, &llss->ia1);
Al Viro59551022016-01-22 15:40:57 -05002148 inode_unlock(llss->inode2);
Peng Taod7e09d02013-05-02 16:46:55 +08002149 if (rc == 0)
2150 rc = rc1;
2151 }
2152
2153free:
Julia Lawalle6b9a3b2015-05-01 21:38:01 +02002154 kfree(llss);
Peng Taod7e09d02013-05-02 16:46:55 +08002155
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002156 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002157}
2158
JC Lafoucrierea720b792013-12-09 22:56:55 +08002159static int ll_hsm_state_set(struct inode *inode, struct hsm_state_set *hss)
2160{
2161 struct md_op_data *op_data;
2162 int rc;
2163
Bruno Faccini2742c752015-09-14 18:41:20 -04002164 /* Detect out-of range masks */
2165 if ((hss->hss_setmask | hss->hss_clearmask) & ~HSM_FLAGS_MASK)
2166 return -EINVAL;
2167
JC Lafoucrierea720b792013-12-09 22:56:55 +08002168 /* Non-root users are forbidden to set or clear flags which are
Oleg Drokinc0894c62016-02-24 22:00:30 -05002169 * NOT defined in HSM_USER_MASK.
2170 */
JC Lafoucrierea720b792013-12-09 22:56:55 +08002171 if (((hss->hss_setmask | hss->hss_clearmask) & ~HSM_USER_MASK) &&
Peng Tao2eb90a72014-01-22 21:47:37 +08002172 !capable(CFS_CAP_SYS_ADMIN))
JC Lafoucrierea720b792013-12-09 22:56:55 +08002173 return -EPERM;
2174
Bruno Faccini2742c752015-09-14 18:41:20 -04002175 /* Detect out-of range archive id */
2176 if ((hss->hss_valid & HSS_ARCHIVE_ID) &&
2177 (hss->hss_archive_id > LL_HSM_MAX_ARCHIVE))
2178 return -EINVAL;
2179
JC Lafoucrierea720b792013-12-09 22:56:55 +08002180 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
2181 LUSTRE_OPC_ANY, hss);
2182 if (IS_ERR(op_data))
2183 return PTR_ERR(op_data);
2184
2185 rc = obd_iocontrol(LL_IOC_HSM_STATE_SET, ll_i2mdexp(inode),
2186 sizeof(*op_data), op_data, NULL);
2187
2188 ll_finish_md_op_data(op_data);
2189
2190 return rc;
2191}
2192
2193static int ll_hsm_import(struct inode *inode, struct file *file,
2194 struct hsm_user_import *hui)
2195{
2196 struct hsm_state_set *hss = NULL;
2197 struct iattr *attr = NULL;
2198 int rc;
2199
JC Lafoucrierea720b792013-12-09 22:56:55 +08002200 if (!S_ISREG(inode->i_mode))
2201 return -EINVAL;
2202
2203 /* set HSM flags */
Julia Lawall496a51b2014-09-18 22:24:02 +02002204 hss = kzalloc(sizeof(*hss), GFP_NOFS);
Julia Lawalle6b9a3b2015-05-01 21:38:01 +02002205 if (!hss)
2206 return -ENOMEM;
JC Lafoucrierea720b792013-12-09 22:56:55 +08002207
2208 hss->hss_valid = HSS_SETMASK | HSS_ARCHIVE_ID;
2209 hss->hss_archive_id = hui->hui_archive_id;
2210 hss->hss_setmask = HS_ARCHIVED | HS_EXISTS | HS_RELEASED;
2211 rc = ll_hsm_state_set(inode, hss);
2212 if (rc != 0)
Julia Lawalle6b9a3b2015-05-01 21:38:01 +02002213 goto free_hss;
JC Lafoucrierea720b792013-12-09 22:56:55 +08002214
Julia Lawall496a51b2014-09-18 22:24:02 +02002215 attr = kzalloc(sizeof(*attr), GFP_NOFS);
2216 if (!attr) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002217 rc = -ENOMEM;
Julia Lawalle6b9a3b2015-05-01 21:38:01 +02002218 goto free_hss;
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002219 }
JC Lafoucrierea720b792013-12-09 22:56:55 +08002220
2221 attr->ia_mode = hui->hui_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
2222 attr->ia_mode |= S_IFREG;
2223 attr->ia_uid = make_kuid(&init_user_ns, hui->hui_uid);
2224 attr->ia_gid = make_kgid(&init_user_ns, hui->hui_gid);
2225 attr->ia_size = hui->hui_size;
2226 attr->ia_mtime.tv_sec = hui->hui_mtime;
2227 attr->ia_mtime.tv_nsec = hui->hui_mtime_ns;
2228 attr->ia_atime.tv_sec = hui->hui_atime;
2229 attr->ia_atime.tv_nsec = hui->hui_atime_ns;
2230
2231 attr->ia_valid = ATTR_SIZE | ATTR_MODE | ATTR_FORCE |
2232 ATTR_UID | ATTR_GID |
2233 ATTR_MTIME | ATTR_MTIME_SET |
2234 ATTR_ATIME | ATTR_ATIME_SET;
2235
Al Viro59551022016-01-22 15:40:57 -05002236 inode_lock(inode);
John L. Hammondb6ee56f2014-08-15 12:48:11 -04002237
Al Virob5830432014-10-31 01:22:04 -04002238 rc = ll_setattr_raw(file->f_path.dentry, attr, true);
JC Lafoucrierea720b792013-12-09 22:56:55 +08002239 if (rc == -ENODATA)
2240 rc = 0;
2241
Al Viro59551022016-01-22 15:40:57 -05002242 inode_unlock(inode);
John L. Hammondb6ee56f2014-08-15 12:48:11 -04002243
Julia Lawalle6b9a3b2015-05-01 21:38:01 +02002244 kfree(attr);
2245free_hss:
2246 kfree(hss);
JC Lafoucrierea720b792013-12-09 22:56:55 +08002247 return rc;
2248}
2249
John L. Hammond2d95f102014-04-27 13:07:05 -04002250static long
2251ll_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Peng Taod7e09d02013-05-02 16:46:55 +08002252{
Al Viro2a8a3592014-10-20 18:02:33 -04002253 struct inode *inode = file_inode(file);
Peng Taod7e09d02013-05-02 16:46:55 +08002254 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
2255 int flags, rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002256
James Nunez97a075c2016-04-27 18:21:01 -04002257 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p),cmd=%x\n",
2258 PFID(ll_inode2fid(inode)), inode, cmd);
Peng Taod7e09d02013-05-02 16:46:55 +08002259 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_IOCTL, 1);
2260
2261 /* asm-ppc{,64} declares TCGETS, et. al. as type 't' not 'T' */
2262 if (_IOC_TYPE(cmd) == 'T' || _IOC_TYPE(cmd) == 't') /* tty ioctls */
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002263 return -ENOTTY;
Peng Taod7e09d02013-05-02 16:46:55 +08002264
Greg Donalda58a38a2014-08-21 12:40:35 -05002265 switch (cmd) {
Peng Taod7e09d02013-05-02 16:46:55 +08002266 case LL_IOC_GETFLAGS:
2267 /* Get the current value of the file flags */
Oleg Drokin02f9c122016-01-03 12:05:55 -05002268 return put_user(fd->fd_flags, (int __user *)arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002269 case LL_IOC_SETFLAGS:
2270 case LL_IOC_CLRFLAGS:
2271 /* Set or clear specific file flags */
2272 /* XXX This probably needs checks to ensure the flags are
2273 * not abused, and to handle any flag side effects.
2274 */
Oleg Drokin02f9c122016-01-03 12:05:55 -05002275 if (get_user(flags, (int __user *)arg))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002276 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08002277
2278 if (cmd == LL_IOC_SETFLAGS) {
2279 if ((flags & LL_FILE_IGNORE_LOCK) &&
2280 !(file->f_flags & O_DIRECT)) {
Joe Perches2d00bd12014-11-23 11:28:50 -08002281 CERROR("%s: unable to disable locking on non-O_DIRECT file\n",
2282 current->comm);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002283 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +08002284 }
2285
2286 fd->fd_flags |= flags;
2287 } else {
2288 fd->fd_flags &= ~flags;
2289 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002290 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08002291 case LL_IOC_LOV_SETSTRIPE:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002292 return ll_lov_setstripe(inode, file, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002293 case LL_IOC_LOV_SETEA:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002294 return ll_lov_setea(inode, file, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002295 case LL_IOC_LOV_SWAP_LAYOUTS: {
2296 struct file *file2;
2297 struct lustre_swap_layouts lsl;
2298
Oleg Drokin02f9c122016-01-03 12:05:55 -05002299 if (copy_from_user(&lsl, (char __user *)arg,
2300 sizeof(struct lustre_swap_layouts)))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002301 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08002302
2303 if ((file->f_flags & O_ACCMODE) == 0) /* O_RDONLY */
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002304 return -EPERM;
Peng Taod7e09d02013-05-02 16:46:55 +08002305
2306 file2 = fget(lsl.sl_fd);
Oleg Drokin6e168182016-02-16 00:46:46 -05002307 if (!file2)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002308 return -EBADF;
Peng Taod7e09d02013-05-02 16:46:55 +08002309
2310 rc = -EPERM;
2311 if ((file2->f_flags & O_ACCMODE) != 0) /* O_WRONLY or O_RDWR */
2312 rc = ll_swap_layouts(file, file2, &lsl);
2313 fput(file2);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002314 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002315 }
2316 case LL_IOC_LOV_GETSTRIPE:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002317 return ll_lov_getstripe(inode, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002318 case LL_IOC_RECREATE_OBJ:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002319 return ll_lov_recreate_obj(inode, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002320 case LL_IOC_RECREATE_FID:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002321 return ll_lov_recreate_fid(inode, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002322 case FSFILT_IOC_FIEMAP:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002323 return ll_ioctl_fiemap(inode, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002324 case FSFILT_IOC_GETFLAGS:
2325 case FSFILT_IOC_SETFLAGS:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002326 return ll_iocontrol(inode, file, cmd, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002327 case FSFILT_IOC_GETVERSION_OLD:
2328 case FSFILT_IOC_GETVERSION:
Oleg Drokin02f9c122016-01-03 12:05:55 -05002329 return put_user(inode->i_generation, (int __user *)arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002330 case LL_IOC_GROUP_LOCK:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002331 return ll_get_grouplock(inode, file, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002332 case LL_IOC_GROUP_UNLOCK:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002333 return ll_put_grouplock(inode, file, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002334 case IOC_OBD_STATFS:
Oleg Drokin4c6243e2016-01-03 12:05:47 -05002335 return ll_obd_statfs(inode, (void __user *)arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002336
2337 /* We need to special case any other ioctls we want to handle,
2338 * to send them to the MDS/OST as appropriate and to properly
2339 * network encode the arg field.
2340 case FSFILT_IOC_SETVERSION_OLD:
2341 case FSFILT_IOC_SETVERSION:
2342 */
2343 case LL_IOC_FLUSHCTX:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002344 return ll_flush_ctx(inode);
Peng Taod7e09d02013-05-02 16:46:55 +08002345 case LL_IOC_PATH2FID: {
Oleg Drokin02f9c122016-01-03 12:05:55 -05002346 if (copy_to_user((void __user *)arg, ll_inode2fid(inode),
Peng Taod7e09d02013-05-02 16:46:55 +08002347 sizeof(struct lu_fid)))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002348 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08002349
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002350 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08002351 }
2352 case OBD_IOC_FID2PATH:
Oleg Drokin61dad0b2016-01-03 12:05:56 -05002353 return ll_fid2path(inode, (void __user *)arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002354 case LL_IOC_DATA_VERSION: {
2355 struct ioc_data_version idv;
2356 int rc;
2357
Oleg Drokin02f9c122016-01-03 12:05:55 -05002358 if (copy_from_user(&idv, (char __user *)arg, sizeof(idv)))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002359 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08002360
Jinshan Xionge1798002016-04-04 21:37:01 -04002361 idv.idv_flags &= LL_DV_RD_FLUSH | LL_DV_WR_FLUSH;
2362 rc = ll_data_version(inode, &idv.idv_version, idv.idv_flags);
Oleg Drokin02f9c122016-01-03 12:05:55 -05002363 if (rc == 0 && copy_to_user((char __user *)arg, &idv,
2364 sizeof(idv)))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002365 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08002366
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002367 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002368 }
2369
2370 case LL_IOC_GET_MDTIDX: {
2371 int mdtidx;
2372
2373 mdtidx = ll_get_mdt_idx(inode);
2374 if (mdtidx < 0)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002375 return mdtidx;
Peng Taod7e09d02013-05-02 16:46:55 +08002376
Oleg Drokin02f9c122016-01-03 12:05:55 -05002377 if (put_user(mdtidx, (int __user *)arg))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002378 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +08002379
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002380 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08002381 }
2382 case OBD_IOC_GETDTNAME:
2383 case OBD_IOC_GETMDNAME:
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002384 return ll_get_obd_name(inode, cmd, arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002385 case LL_IOC_HSM_STATE_GET: {
2386 struct md_op_data *op_data;
2387 struct hsm_user_state *hus;
2388 int rc;
2389
Julia Lawall496a51b2014-09-18 22:24:02 +02002390 hus = kzalloc(sizeof(*hus), GFP_NOFS);
2391 if (!hus)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002392 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +08002393
2394 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
2395 LUSTRE_OPC_ANY, hus);
John L. Hammond79a87262013-07-23 00:06:29 +08002396 if (IS_ERR(op_data)) {
Julia Lawall97903a22015-04-12 22:55:02 +02002397 kfree(hus);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002398 return PTR_ERR(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +08002399 }
2400
2401 rc = obd_iocontrol(cmd, ll_i2mdexp(inode), sizeof(*op_data),
2402 op_data, NULL);
2403
Oleg Drokin02f9c122016-01-03 12:05:55 -05002404 if (copy_to_user((void __user *)arg, hus, sizeof(*hus)))
Peng Taod7e09d02013-05-02 16:46:55 +08002405 rc = -EFAULT;
2406
2407 ll_finish_md_op_data(op_data);
Julia Lawall97903a22015-04-12 22:55:02 +02002408 kfree(hus);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002409 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002410 }
2411 case LL_IOC_HSM_STATE_SET: {
Peng Taod7e09d02013-05-02 16:46:55 +08002412 struct hsm_state_set *hss;
2413 int rc;
2414
Oleg Drokin02f9c122016-01-03 12:05:55 -05002415 hss = memdup_user((char __user *)arg, sizeof(*hss));
Abdul Hussain0c027bc2015-06-16 07:04:51 +00002416 if (IS_ERR(hss))
2417 return PTR_ERR(hss);
Peng Taod7e09d02013-05-02 16:46:55 +08002418
JC Lafoucrierea720b792013-12-09 22:56:55 +08002419 rc = ll_hsm_state_set(inode, hss);
Peng Taod7e09d02013-05-02 16:46:55 +08002420
Julia Lawall97903a22015-04-12 22:55:02 +02002421 kfree(hss);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002422 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002423 }
2424 case LL_IOC_HSM_ACTION: {
2425 struct md_op_data *op_data;
2426 struct hsm_current_action *hca;
2427 int rc;
2428
Julia Lawall496a51b2014-09-18 22:24:02 +02002429 hca = kzalloc(sizeof(*hca), GFP_NOFS);
2430 if (!hca)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002431 return -ENOMEM;
Peng Taod7e09d02013-05-02 16:46:55 +08002432
2433 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
2434 LUSTRE_OPC_ANY, hca);
John L. Hammond79a87262013-07-23 00:06:29 +08002435 if (IS_ERR(op_data)) {
Julia Lawall97903a22015-04-12 22:55:02 +02002436 kfree(hca);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002437 return PTR_ERR(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +08002438 }
2439
2440 rc = obd_iocontrol(cmd, ll_i2mdexp(inode), sizeof(*op_data),
2441 op_data, NULL);
2442
Oleg Drokin02f9c122016-01-03 12:05:55 -05002443 if (copy_to_user((char __user *)arg, hca, sizeof(*hca)))
Peng Taod7e09d02013-05-02 16:46:55 +08002444 rc = -EFAULT;
2445
2446 ll_finish_md_op_data(op_data);
Julia Lawall97903a22015-04-12 22:55:02 +02002447 kfree(hca);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002448 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002449 }
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002450 case LL_IOC_SET_LEASE: {
2451 struct ll_inode_info *lli = ll_i2info(inode);
2452 struct obd_client_handle *och = NULL;
2453 bool lease_broken;
2454 fmode_t mode = 0;
2455
2456 switch (arg) {
2457 case F_WRLCK:
2458 if (!(file->f_mode & FMODE_WRITE))
2459 return -EPERM;
2460 mode = FMODE_WRITE;
2461 break;
2462 case F_RDLCK:
2463 if (!(file->f_mode & FMODE_READ))
2464 return -EPERM;
2465 mode = FMODE_READ;
2466 break;
2467 case F_UNLCK:
2468 mutex_lock(&lli->lli_och_mutex);
Oleg Drokin6e168182016-02-16 00:46:46 -05002469 if (fd->fd_lease_och) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002470 och = fd->fd_lease_och;
2471 fd->fd_lease_och = NULL;
2472 }
2473 mutex_unlock(&lli->lli_och_mutex);
2474
Oleg Drokin6e168182016-02-16 00:46:46 -05002475 if (och) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002476 mode = och->och_flags &
2477 (FMODE_READ|FMODE_WRITE);
2478 rc = ll_lease_close(och, inode, &lease_broken);
2479 if (rc == 0 && lease_broken)
2480 mode = 0;
2481 } else {
2482 rc = -ENOLCK;
2483 }
2484
2485 /* return the type of lease or error */
2486 return rc < 0 ? rc : (int)mode;
2487 default:
2488 return -EINVAL;
2489 }
2490
2491 CDEBUG(D_INODE, "Set lease with mode %d\n", mode);
2492
2493 /* apply for lease */
Jinshan Xiong48d23e62013-12-03 21:58:48 +08002494 och = ll_lease_open(inode, file, mode, 0);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002495 if (IS_ERR(och))
2496 return PTR_ERR(och);
2497
2498 rc = 0;
2499 mutex_lock(&lli->lli_och_mutex);
Oleg Drokin6e168182016-02-16 00:46:46 -05002500 if (!fd->fd_lease_och) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002501 fd->fd_lease_och = och;
2502 och = NULL;
2503 }
2504 mutex_unlock(&lli->lli_och_mutex);
Oleg Drokin6e168182016-02-16 00:46:46 -05002505 if (och) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002506 /* impossible now that only excl is supported for now */
2507 ll_lease_close(och, inode, &lease_broken);
2508 rc = -EBUSY;
2509 }
2510 return rc;
2511 }
2512 case LL_IOC_GET_LEASE: {
2513 struct ll_inode_info *lli = ll_i2info(inode);
2514 struct ldlm_lock *lock = NULL;
2515
2516 rc = 0;
2517 mutex_lock(&lli->lli_och_mutex);
Oleg Drokin6e168182016-02-16 00:46:46 -05002518 if (fd->fd_lease_och) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002519 struct obd_client_handle *och = fd->fd_lease_och;
2520
2521 lock = ldlm_handle2lock(&och->och_lease_handle);
Oleg Drokin6e168182016-02-16 00:46:46 -05002522 if (lock) {
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002523 lock_res_and_lock(lock);
2524 if (!ldlm_is_cancel(lock))
2525 rc = och->och_flags &
2526 (FMODE_READ | FMODE_WRITE);
2527 unlock_res_and_lock(lock);
Jinshan Xiongead02802016-04-04 21:36:51 -04002528 LDLM_LOCK_PUT(lock);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002529 }
2530 }
2531 mutex_unlock(&lli->lli_och_mutex);
JC Lafoucrierea720b792013-12-09 22:56:55 +08002532 return rc;
2533 }
2534 case LL_IOC_HSM_IMPORT: {
2535 struct hsm_user_import *hui;
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002536
Oleg Drokin02f9c122016-01-03 12:05:55 -05002537 hui = memdup_user((void __user *)arg, sizeof(*hui));
Abdul Hussain0c027bc2015-06-16 07:04:51 +00002538 if (IS_ERR(hui))
2539 return PTR_ERR(hui);
JC Lafoucrierea720b792013-12-09 22:56:55 +08002540
2541 rc = ll_hsm_import(inode, file, hui);
2542
Julia Lawall97903a22015-04-12 22:55:02 +02002543 kfree(hui);
Jinshan Xiongd3a8a4e2013-11-19 21:23:41 +08002544 return rc;
2545 }
Peng Taod7e09d02013-05-02 16:46:55 +08002546 default: {
2547 int err;
2548
Julia Lawall1f6eaf82015-08-29 19:30:09 +02002549 if (ll_iocontrol_call(inode, file, cmd, arg, &err) ==
2550 LLIOC_STOP)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002551 return err;
Peng Taod7e09d02013-05-02 16:46:55 +08002552
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002553 return obd_iocontrol(cmd, ll_i2dtexp(inode), 0, NULL,
Oleg Drokine09bee32016-01-03 12:05:43 -05002554 (void __user *)arg);
Peng Taod7e09d02013-05-02 16:46:55 +08002555 }
2556 }
2557}
2558
John L. Hammond2d95f102014-04-27 13:07:05 -04002559static loff_t ll_file_seek(struct file *file, loff_t offset, int origin)
Peng Taod7e09d02013-05-02 16:46:55 +08002560{
Al Viro2a8a3592014-10-20 18:02:33 -04002561 struct inode *inode = file_inode(file);
Peng Taod7e09d02013-05-02 16:46:55 +08002562 loff_t retval, eof = 0;
2563
Peng Taod7e09d02013-05-02 16:46:55 +08002564 retval = offset + ((origin == SEEK_END) ? i_size_read(inode) :
2565 (origin == SEEK_CUR) ? file->f_pos : 0);
James Nunez97a075c2016-04-27 18:21:01 -04002566 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), to=%llu=%#llx(%d)\n",
2567 PFID(ll_inode2fid(inode)), inode, retval, retval, origin);
Peng Taod7e09d02013-05-02 16:46:55 +08002568 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_LLSEEK, 1);
2569
2570 if (origin == SEEK_END || origin == SEEK_HOLE || origin == SEEK_DATA) {
2571 retval = ll_glimpse_size(inode);
2572 if (retval != 0)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002573 return retval;
Peng Taod7e09d02013-05-02 16:46:55 +08002574 eof = i_size_read(inode);
2575 }
2576
Greg Kroah-Hartman6f014332013-08-02 15:56:22 +08002577 retval = generic_file_llseek_size(file, offset, origin,
Peng Taod7e09d02013-05-02 16:46:55 +08002578 ll_file_maxbytes(inode), eof);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002579 return retval;
Peng Taod7e09d02013-05-02 16:46:55 +08002580}
2581
John L. Hammond2d95f102014-04-27 13:07:05 -04002582static int ll_flush(struct file *file, fl_owner_t id)
Peng Taod7e09d02013-05-02 16:46:55 +08002583{
Al Viro2a8a3592014-10-20 18:02:33 -04002584 struct inode *inode = file_inode(file);
Peng Taod7e09d02013-05-02 16:46:55 +08002585 struct ll_inode_info *lli = ll_i2info(inode);
2586 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
2587 int rc, err;
2588
2589 LASSERT(!S_ISDIR(inode->i_mode));
2590
2591 /* catch async errors that were recorded back when async writeback
Oleg Drokinc0894c62016-02-24 22:00:30 -05002592 * failed for pages in this mapping.
2593 */
Peng Taod7e09d02013-05-02 16:46:55 +08002594 rc = lli->lli_async_rc;
2595 lli->lli_async_rc = 0;
2596 err = lov_read_and_clear_async_rc(lli->lli_clob);
2597 if (rc == 0)
2598 rc = err;
2599
Oleg Drokinc0894c62016-02-24 22:00:30 -05002600 /* The application has been told about write failure already.
2601 * Do not report failure again.
2602 */
Peng Taod7e09d02013-05-02 16:46:55 +08002603 if (fd->fd_write_failed)
2604 return 0;
2605 return rc ? -EIO : 0;
2606}
2607
2608/**
2609 * Called to make sure a portion of file has been written out.
Andreas Dilger05289922014-04-27 13:07:09 -04002610 * if @mode is not CL_FSYNC_LOCAL, it will send OST_SYNC RPCs to OST.
Peng Taod7e09d02013-05-02 16:46:55 +08002611 *
2612 * Return how many pages have been written.
2613 */
2614int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
Niu Yawei65fb55d2013-06-03 21:40:38 +08002615 enum cl_fsync_mode mode, int ignore_layout)
Peng Taod7e09d02013-05-02 16:46:55 +08002616{
2617 struct cl_env_nest nest;
2618 struct lu_env *env;
2619 struct cl_io *io;
Peng Taod7e09d02013-05-02 16:46:55 +08002620 struct cl_fsync_io *fio;
2621 int result;
Peng Taod7e09d02013-05-02 16:46:55 +08002622
2623 if (mode != CL_FSYNC_NONE && mode != CL_FSYNC_LOCAL &&
2624 mode != CL_FSYNC_DISCARD && mode != CL_FSYNC_ALL)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002625 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +08002626
2627 env = cl_env_nested_get(&nest);
2628 if (IS_ERR(env))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002629 return PTR_ERR(env);
Peng Taod7e09d02013-05-02 16:46:55 +08002630
John Hammond9acc4502016-03-30 19:48:57 -04002631 io = vvp_env_thread_io(env);
John L. Hammond1929c432016-03-30 19:48:37 -04002632 io->ci_obj = ll_i2info(inode)->lli_clob;
Niu Yawei65fb55d2013-06-03 21:40:38 +08002633 io->ci_ignore_layout = ignore_layout;
Peng Taod7e09d02013-05-02 16:46:55 +08002634
2635 /* initialize parameters for sync */
2636 fio = &io->u.ci_fsync;
Peng Taod7e09d02013-05-02 16:46:55 +08002637 fio->fi_start = start;
2638 fio->fi_end = end;
2639 fio->fi_fid = ll_inode2fid(inode);
2640 fio->fi_mode = mode;
2641 fio->fi_nr_written = 0;
2642
2643 if (cl_io_init(env, io, CIT_FSYNC, io->ci_obj) == 0)
2644 result = cl_io_loop(env, io);
2645 else
2646 result = io->ci_result;
2647 if (result == 0)
2648 result = fio->fi_nr_written;
2649 cl_io_fini(env, io);
2650 cl_env_nested_put(&nest, env);
2651
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002652 return result;
Peng Taod7e09d02013-05-02 16:46:55 +08002653}
2654
Peng Taod7e09d02013-05-02 16:46:55 +08002655int ll_fsync(struct file *file, loff_t start, loff_t end, int datasync)
2656{
Al Viro2a8a3592014-10-20 18:02:33 -04002657 struct inode *inode = file_inode(file);
Peng Taod7e09d02013-05-02 16:46:55 +08002658 struct ll_inode_info *lli = ll_i2info(inode);
2659 struct ptlrpc_request *req;
Peng Taod7e09d02013-05-02 16:46:55 +08002660 int rc, err;
Peng Taod7e09d02013-05-02 16:46:55 +08002661
James Nunez97a075c2016-04-27 18:21:01 -04002662 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
2663 PFID(ll_inode2fid(inode)), inode);
Peng Taod7e09d02013-05-02 16:46:55 +08002664 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_FSYNC, 1);
2665
2666 rc = filemap_write_and_wait_range(inode->i_mapping, start, end);
Al Viro59551022016-01-22 15:40:57 -05002667 inode_lock(inode);
Peng Taod7e09d02013-05-02 16:46:55 +08002668
2669 /* catch async errors that were recorded back when async writeback
Oleg Drokinc0894c62016-02-24 22:00:30 -05002670 * failed for pages in this mapping.
2671 */
Peng Taod7e09d02013-05-02 16:46:55 +08002672 if (!S_ISDIR(inode->i_mode)) {
2673 err = lli->lli_async_rc;
2674 lli->lli_async_rc = 0;
2675 if (rc == 0)
2676 rc = err;
2677 err = lov_read_and_clear_async_rc(lli->lli_clob);
2678 if (rc == 0)
2679 rc = err;
2680 }
2681
Oleg Drokinef2e0f52015-09-27 16:45:46 -04002682 err = md_sync(ll_i2sbi(inode)->ll_md_exp, ll_inode2fid(inode), &req);
Peng Taod7e09d02013-05-02 16:46:55 +08002683 if (!rc)
2684 rc = err;
2685 if (!err)
2686 ptlrpc_req_finished(req);
2687
Bobi Jam8d97deb2014-04-27 13:06:44 -04002688 if (S_ISREG(inode->i_mode)) {
Peng Taod7e09d02013-05-02 16:46:55 +08002689 struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
2690
Andreas Dilger05289922014-04-27 13:07:09 -04002691 err = cl_sync_file_range(inode, start, end, CL_FSYNC_ALL, 0);
Peng Taod7e09d02013-05-02 16:46:55 +08002692 if (rc == 0 && err < 0)
2693 rc = err;
2694 if (rc < 0)
2695 fd->fd_write_failed = true;
2696 else
2697 fd->fd_write_failed = false;
2698 }
2699
Al Viro59551022016-01-22 15:40:57 -05002700 inode_unlock(inode);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002701 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002702}
2703
John L. Hammond2d95f102014-04-27 13:07:05 -04002704static int
2705ll_file_flock(struct file *file, int cmd, struct file_lock *file_lock)
Peng Taod7e09d02013-05-02 16:46:55 +08002706{
Al Viro2a8a3592014-10-20 18:02:33 -04002707 struct inode *inode = file_inode(file);
Peng Taod7e09d02013-05-02 16:46:55 +08002708 struct ll_sb_info *sbi = ll_i2sbi(inode);
Bruce Korbf2145ea2013-07-23 00:06:37 +08002709 struct ldlm_enqueue_info einfo = {
2710 .ei_type = LDLM_FLOCK,
2711 .ei_cb_cp = ldlm_flock_completion_ast,
2712 .ei_cbdata = file_lock,
2713 };
Peng Taod7e09d02013-05-02 16:46:55 +08002714 struct md_op_data *op_data;
2715 struct lustre_handle lockh = {0};
Anjali Menon8369cff2015-08-18 19:24:24 +05302716 ldlm_policy_data_t flock = { {0} };
Dmitry Eremin875332d2014-06-22 21:32:08 -04002717 __u64 flags = 0;
Peng Taod7e09d02013-05-02 16:46:55 +08002718 int rc;
2719 int rc2 = 0;
Peng Taod7e09d02013-05-02 16:46:55 +08002720
James Nunez97a075c2016-04-27 18:21:01 -04002721 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID" file_lock=%p\n",
2722 PFID(ll_inode2fid(inode)), file_lock);
Peng Taod7e09d02013-05-02 16:46:55 +08002723
2724 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_FLOCK, 1);
2725
Jeff Layton130d1f92014-05-09 14:13:04 -04002726 if (file_lock->fl_flags & FL_FLOCK)
Peng Taod7e09d02013-05-02 16:46:55 +08002727 LASSERT((cmd == F_SETLKW) || (cmd == F_SETLK));
Jeff Layton130d1f92014-05-09 14:13:04 -04002728 else if (!(file_lock->fl_flags & FL_POSIX))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002729 return -EINVAL;
Jeff Layton130d1f92014-05-09 14:13:04 -04002730
2731 flock.l_flock.owner = (unsigned long)file_lock->fl_owner;
Peng Taod7e09d02013-05-02 16:46:55 +08002732 flock.l_flock.pid = file_lock->fl_pid;
Jeff Layton130d1f92014-05-09 14:13:04 -04002733 flock.l_flock.start = file_lock->fl_start;
2734 flock.l_flock.end = file_lock->fl_end;
Peng Taod7e09d02013-05-02 16:46:55 +08002735
2736 /* Somewhat ugly workaround for svc lockd.
2737 * lockd installs custom fl_lmops->lm_compare_owner that checks
2738 * for the fl_owner to be the same (which it always is on local node
2739 * I guess between lockd processes) and then compares pid.
2740 * As such we assign pid to the owner field to make it all work,
2741 * conflict with normal locks is unlikely since pid space and
Oleg Drokinc0894c62016-02-24 22:00:30 -05002742 * pointer space for current->files are not intersecting
2743 */
Peng Taod7e09d02013-05-02 16:46:55 +08002744 if (file_lock->fl_lmops && file_lock->fl_lmops->lm_compare_owner)
2745 flock.l_flock.owner = (unsigned long)file_lock->fl_pid;
2746
2747 switch (file_lock->fl_type) {
2748 case F_RDLCK:
2749 einfo.ei_mode = LCK_PR;
2750 break;
2751 case F_UNLCK:
2752 /* An unlock request may or may not have any relation to
2753 * existing locks so we may not be able to pass a lock handle
2754 * via a normal ldlm_lock_cancel() request. The request may even
2755 * unlock a byte range in the middle of an existing lock. In
2756 * order to process an unlock request we need all of the same
2757 * information that is given with a normal read or write record
2758 * lock request. To avoid creating another ldlm unlock (cancel)
Oleg Drokinc0894c62016-02-24 22:00:30 -05002759 * message we'll treat a LCK_NL flock request as an unlock.
2760 */
Peng Taod7e09d02013-05-02 16:46:55 +08002761 einfo.ei_mode = LCK_NL;
2762 break;
2763 case F_WRLCK:
2764 einfo.ei_mode = LCK_PW;
2765 break;
2766 default:
2767 CDEBUG(D_INFO, "Unknown fcntl lock type: %d\n",
Oleg Drokine15ba452016-02-26 01:49:49 -05002768 file_lock->fl_type);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002769 return -ENOTSUPP;
Peng Taod7e09d02013-05-02 16:46:55 +08002770 }
2771
2772 switch (cmd) {
2773 case F_SETLKW:
Greg Kroah-Hartman2faedcd2016-03-02 12:06:42 -08002774#ifdef F_SETLKW64
Peng Taod7e09d02013-05-02 16:46:55 +08002775 case F_SETLKW64:
Greg Kroah-Hartman2faedcd2016-03-02 12:06:42 -08002776#endif
Peng Taod7e09d02013-05-02 16:46:55 +08002777 flags = 0;
2778 break;
2779 case F_SETLK:
Greg Kroah-Hartman2faedcd2016-03-02 12:06:42 -08002780#ifdef F_SETLK64
Peng Taod7e09d02013-05-02 16:46:55 +08002781 case F_SETLK64:
Greg Kroah-Hartman2faedcd2016-03-02 12:06:42 -08002782#endif
Peng Taod7e09d02013-05-02 16:46:55 +08002783 flags = LDLM_FL_BLOCK_NOWAIT;
2784 break;
2785 case F_GETLK:
Greg Kroah-Hartman2faedcd2016-03-02 12:06:42 -08002786#ifdef F_GETLK64
Peng Taod7e09d02013-05-02 16:46:55 +08002787 case F_GETLK64:
Greg Kroah-Hartman2faedcd2016-03-02 12:06:42 -08002788#endif
Peng Taod7e09d02013-05-02 16:46:55 +08002789 flags = LDLM_FL_TEST_LOCK;
2790 /* Save the old mode so that if the mode in the lock changes we
Oleg Drokinc0894c62016-02-24 22:00:30 -05002791 * can decrement the appropriate reader or writer refcount.
2792 */
Peng Taod7e09d02013-05-02 16:46:55 +08002793 file_lock->fl_type = einfo.ei_mode;
2794 break;
2795 default:
2796 CERROR("unknown fcntl lock command: %d\n", cmd);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002797 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +08002798 }
2799
2800 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
2801 LUSTRE_OPC_ANY, NULL);
2802 if (IS_ERR(op_data))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002803 return PTR_ERR(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +08002804
James Nunez97a075c2016-04-27 18:21:01 -04002805 CDEBUG(D_DLMTRACE, "inode="DFID", pid=%u, flags=%#llx, mode=%u, start=%llu, end=%llu\n",
2806 PFID(ll_inode2fid(inode)), flock.l_flock.pid, flags,
2807 einfo.ei_mode, flock.l_flock.start, flock.l_flock.end);
Peng Taod7e09d02013-05-02 16:46:55 +08002808
2809 rc = md_enqueue(sbi->ll_md_exp, &einfo, NULL,
2810 op_data, &lockh, &flock, 0, NULL /* req */, flags);
2811
Benjamin Coddington4f656362015-10-22 13:38:14 -04002812 if ((rc == 0 || file_lock->fl_type == F_UNLCK) &&
Peng Taod7e09d02013-05-02 16:46:55 +08002813 !(flags & LDLM_FL_TEST_LOCK))
Benjamin Coddington4f656362015-10-22 13:38:14 -04002814 rc2 = locks_lock_file_wait(file, file_lock);
Peng Taod7e09d02013-05-02 16:46:55 +08002815
2816 if (rc2 && file_lock->fl_type != F_UNLCK) {
2817 einfo.ei_mode = LCK_NL;
2818 md_enqueue(sbi->ll_md_exp, &einfo, NULL,
Oleg Drokine15ba452016-02-26 01:49:49 -05002819 op_data, &lockh, &flock, 0, NULL /* req */, flags);
Peng Taod7e09d02013-05-02 16:46:55 +08002820 rc = rc2;
2821 }
2822
2823 ll_finish_md_op_data(op_data);
2824
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002825 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002826}
2827
John L. Hammond2d95f102014-04-27 13:07:05 -04002828static int
2829ll_file_noflock(struct file *file, int cmd, struct file_lock *file_lock)
Peng Taod7e09d02013-05-02 16:46:55 +08002830{
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002831 return -ENOSYS;
Peng Taod7e09d02013-05-02 16:46:55 +08002832}
2833
2834/**
2835 * test if some locks matching bits and l_req_mode are acquired
2836 * - bits can be in different locks
2837 * - if found clear the common lock bits in *bits
2838 * - the bits not found, are kept in *bits
2839 * \param inode [IN]
2840 * \param bits [IN] searched lock bits [IN]
2841 * \param l_req_mode [IN] searched lock mode
2842 * \retval boolean, true iff all bits are found
2843 */
Oleg Drokin52ee0d22016-02-24 21:59:54 -05002844int ll_have_md_lock(struct inode *inode, __u64 *bits,
2845 enum ldlm_mode l_req_mode)
Peng Taod7e09d02013-05-02 16:46:55 +08002846{
2847 struct lustre_handle lockh;
2848 ldlm_policy_data_t policy;
Oleg Drokin52ee0d22016-02-24 21:59:54 -05002849 enum ldlm_mode mode = (l_req_mode == LCK_MINMODE) ?
Peng Taod7e09d02013-05-02 16:46:55 +08002850 (LCK_CR|LCK_CW|LCK_PR|LCK_PW) : l_req_mode;
2851 struct lu_fid *fid;
2852 __u64 flags;
2853 int i;
Peng Taod7e09d02013-05-02 16:46:55 +08002854
2855 if (!inode)
aybuke ozdemiref075ed2015-02-26 23:45:46 +02002856 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08002857
2858 fid = &ll_i2info(inode)->lli_fid;
2859 CDEBUG(D_INFO, "trying to match res "DFID" mode %s\n", PFID(fid),
2860 ldlm_lockname[mode]);
2861
2862 flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_CBPENDING | LDLM_FL_TEST_LOCK;
wang di1253b2e2013-07-23 00:06:25 +08002863 for (i = 0; i <= MDS_INODELOCK_MAXSHIFT && *bits != 0; i++) {
Peng Taod7e09d02013-05-02 16:46:55 +08002864 policy.l_inodebits.bits = *bits & (1 << i);
2865 if (policy.l_inodebits.bits == 0)
2866 continue;
2867
2868 if (md_lock_match(ll_i2mdexp(inode), flags, fid, LDLM_IBITS,
2869 &policy, mode, &lockh)) {
2870 struct ldlm_lock *lock;
2871
2872 lock = ldlm_handle2lock(&lockh);
2873 if (lock) {
2874 *bits &=
2875 ~(lock->l_policy_data.l_inodebits.bits);
2876 LDLM_LOCK_PUT(lock);
2877 } else {
2878 *bits &= ~policy.l_inodebits.bits;
2879 }
2880 }
2881 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002882 return *bits == 0;
Peng Taod7e09d02013-05-02 16:46:55 +08002883}
2884
Oleg Drokin52ee0d22016-02-24 21:59:54 -05002885enum ldlm_mode ll_take_md_lock(struct inode *inode, __u64 bits,
2886 struct lustre_handle *lockh, __u64 flags,
2887 enum ldlm_mode mode)
Peng Taod7e09d02013-05-02 16:46:55 +08002888{
Tina Ruchandani57303e72014-10-21 22:13:21 -07002889 ldlm_policy_data_t policy = { .l_inodebits = {bits} };
Peng Taod7e09d02013-05-02 16:46:55 +08002890 struct lu_fid *fid;
Oleg Drokin52ee0d22016-02-24 21:59:54 -05002891 enum ldlm_mode rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002892
2893 fid = &ll_i2info(inode)->lli_fid;
2894 CDEBUG(D_INFO, "trying to match res "DFID"\n", PFID(fid));
2895
Julia Lawall1f6eaf82015-08-29 19:30:09 +02002896 rc = md_lock_match(ll_i2mdexp(inode), flags | LDLM_FL_BLOCK_GRANTED,
Andrew Perepechko7fc1f832013-12-03 21:58:49 +08002897 fid, LDLM_IBITS, &policy, mode, lockh);
2898
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002899 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002900}
2901
2902static int ll_inode_revalidate_fini(struct inode *inode, int rc)
2903{
2904 /* Already unlinked. Just update nlink and return success */
2905 if (rc == -ENOENT) {
2906 clear_nlink(inode);
2907 /* This path cannot be hit for regular files unless in
Masanari Iidabef31c72013-09-15 14:38:18 +09002908 * case of obscure races, so no need to validate size.
2909 */
Peng Taod7e09d02013-05-02 16:46:55 +08002910 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
2911 return 0;
2912 } else if (rc != 0) {
Andreas Dilgere49634b2014-04-27 13:06:38 -04002913 CDEBUG_LIMIT((rc == -EACCES || rc == -EIDRM) ? D_INFO : D_ERROR,
2914 "%s: revalidate FID "DFID" error: rc = %d\n",
2915 ll_get_fsname(inode->i_sb, NULL, 0),
2916 PFID(ll_inode2fid(inode)), rc);
Peng Taod7e09d02013-05-02 16:46:55 +08002917 }
2918
2919 return rc;
2920}
2921
John L. Hammond2d95f102014-04-27 13:07:05 -04002922static int __ll_inode_revalidate(struct dentry *dentry, __u64 ibits)
Peng Taod7e09d02013-05-02 16:46:55 +08002923{
David Howells2b0143b2015-03-17 22:25:59 +00002924 struct inode *inode = d_inode(dentry);
Peng Taod7e09d02013-05-02 16:46:55 +08002925 struct ptlrpc_request *req = NULL;
2926 struct obd_export *exp;
2927 int rc = 0;
Peng Taod7e09d02013-05-02 16:46:55 +08002928
James Nunez97a075c2016-04-27 18:21:01 -04002929 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p),name=%pd\n",
2930 PFID(ll_inode2fid(inode)), inode, dentry);
Peng Taod7e09d02013-05-02 16:46:55 +08002931
2932 exp = ll_i2mdexp(inode);
2933
2934 /* XXX: Enable OBD_CONNECT_ATTRFID to reduce unnecessary getattr RPC.
2935 * But under CMD case, it caused some lock issues, should be fixed
Oleg Drokinc0894c62016-02-24 22:00:30 -05002936 * with new CMD ibits lock. See bug 12718
2937 */
Peng Taod7e09d02013-05-02 16:46:55 +08002938 if (exp_connect_flags(exp) & OBD_CONNECT_ATTRFID) {
2939 struct lookup_intent oit = { .it_op = IT_GETATTR };
2940 struct md_op_data *op_data;
2941
2942 if (ibits == MDS_INODELOCK_LOOKUP)
2943 oit.it_op = IT_LOOKUP;
2944
2945 /* Call getattr by fid, so do not provide name at all. */
Al Virodbca51d2015-01-18 23:31:19 -05002946 op_data = ll_prep_md_op_data(NULL, inode,
2947 inode, NULL, 0, 0,
Peng Taod7e09d02013-05-02 16:46:55 +08002948 LUSTRE_OPC_ANY, NULL);
2949 if (IS_ERR(op_data))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002950 return PTR_ERR(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +08002951
2952 oit.it_create_mode |= M_CHECK_STALE;
2953 rc = md_intent_lock(exp, op_data, NULL, 0,
2954 /* we are not interested in name
Oleg Drokinc0894c62016-02-24 22:00:30 -05002955 * based lookup
2956 */
Peng Taod7e09d02013-05-02 16:46:55 +08002957 &oit, 0, &req,
2958 ll_md_blocking_ast, 0);
2959 ll_finish_md_op_data(op_data);
2960 oit.it_create_mode &= ~M_CHECK_STALE;
2961 if (rc < 0) {
2962 rc = ll_inode_revalidate_fini(inode, rc);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002963 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08002964 }
2965
Al Virodbca51d2015-01-18 23:31:19 -05002966 rc = ll_revalidate_it_finish(req, &oit, inode);
Peng Taod7e09d02013-05-02 16:46:55 +08002967 if (rc != 0) {
2968 ll_intent_release(&oit);
Julia Lawall34e1f2b2014-08-30 16:24:55 +02002969 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08002970 }
2971
2972 /* Unlinked? Unhash dentry, so it is not picked up later by
Oleg Drokinc0894c62016-02-24 22:00:30 -05002973 * do_lookup() -> ll_revalidate_it(). We cannot use d_drop
2974 * here to preserve get_cwd functionality on 2.6.
2975 * Bug 10503
2976 */
Bruno Faccinic9cc8d02016-06-20 16:55:27 -04002977 if (!d_inode(dentry)->i_nlink) {
2978 spin_lock(&inode->i_lock);
Peng Taob1d2a122013-06-03 21:58:15 +08002979 d_lustre_invalidate(dentry, 0);
Bruno Faccinic9cc8d02016-06-20 16:55:27 -04002980 spin_unlock(&inode->i_lock);
2981 }
Peng Taod7e09d02013-05-02 16:46:55 +08002982
Al Virodbca51d2015-01-18 23:31:19 -05002983 ll_lookup_finish_locks(&oit, inode);
David Howells2b0143b2015-03-17 22:25:59 +00002984 } else if (!ll_have_md_lock(d_inode(dentry), &ibits, LCK_MINMODE)) {
2985 struct ll_sb_info *sbi = ll_i2sbi(d_inode(dentry));
Oleg Drokin21aef7d2014-08-15 12:55:56 -04002986 u64 valid = OBD_MD_FLGETATTR;
Peng Taod7e09d02013-05-02 16:46:55 +08002987 struct md_op_data *op_data;
2988 int ealen = 0;
2989
2990 if (S_ISREG(inode->i_mode)) {
Brian Behlendorf44779342014-04-27 13:06:47 -04002991 rc = ll_get_default_mdsize(sbi, &ealen);
Peng Taod7e09d02013-05-02 16:46:55 +08002992 if (rc)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08002993 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08002994 valid |= OBD_MD_FLEASIZE | OBD_MD_FLMODEASIZE;
2995 }
2996
2997 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL,
2998 0, ealen, LUSTRE_OPC_ANY,
2999 NULL);
3000 if (IS_ERR(op_data))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003001 return PTR_ERR(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +08003002
3003 op_data->op_valid = valid;
Peng Taod7e09d02013-05-02 16:46:55 +08003004 rc = md_getattr(sbi->ll_md_exp, op_data, &req);
3005 ll_finish_md_op_data(op_data);
3006 if (rc) {
3007 rc = ll_inode_revalidate_fini(inode, rc);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003008 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003009 }
3010
3011 rc = ll_prep_inode(&inode, req, NULL, NULL);
3012 }
3013out:
3014 ptlrpc_req_finished(req);
3015 return rc;
3016}
3017
John L. Hammond2d95f102014-04-27 13:07:05 -04003018static int ll_inode_revalidate(struct dentry *dentry, __u64 ibits)
Peng Taod7e09d02013-05-02 16:46:55 +08003019{
David Howells2b0143b2015-03-17 22:25:59 +00003020 struct inode *inode = d_inode(dentry);
Peng Taod7e09d02013-05-02 16:46:55 +08003021 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003022
John L. Hammond2d95f102014-04-27 13:07:05 -04003023 rc = __ll_inode_revalidate(dentry, ibits);
Peng Taod7e09d02013-05-02 16:46:55 +08003024 if (rc != 0)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003025 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003026
3027 /* if object isn't regular file, don't validate size */
3028 if (!S_ISREG(inode->i_mode)) {
John L. Hammondd2995732016-03-30 19:48:34 -04003029 LTIME_S(inode->i_atime) = ll_i2info(inode)->lli_atime;
3030 LTIME_S(inode->i_mtime) = ll_i2info(inode)->lli_mtime;
3031 LTIME_S(inode->i_ctime) = ll_i2info(inode)->lli_ctime;
Peng Taod7e09d02013-05-02 16:46:55 +08003032 } else {
JC Lafoucriere5ea17d62013-11-21 22:24:48 +08003033 /* In case of restore, the MDT has the right size and has
3034 * already send it back without granting the layout lock,
3035 * inode is up-to-date so glimpse is useless.
3036 * Also to glimpse we need the layout, in case of a running
3037 * restore the MDT holds the layout lock so the glimpse will
3038 * block up to the end of restore (getattr will block)
3039 */
3040 if (!(ll_i2info(inode)->lli_flags & LLIF_FILE_RESTORING))
3041 rc = ll_glimpse_size(inode);
Peng Taod7e09d02013-05-02 16:46:55 +08003042 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003043 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003044}
3045
John L. Hammond2d95f102014-04-27 13:07:05 -04003046int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat)
Peng Taod7e09d02013-05-02 16:46:55 +08003047{
David Howells2b0143b2015-03-17 22:25:59 +00003048 struct inode *inode = d_inode(de);
Peng Taod7e09d02013-05-02 16:46:55 +08003049 struct ll_sb_info *sbi = ll_i2sbi(inode);
3050 struct ll_inode_info *lli = ll_i2info(inode);
Julia Lawallf82ced52015-06-20 21:07:50 +02003051 int res;
Peng Taod7e09d02013-05-02 16:46:55 +08003052
John L. Hammond2d95f102014-04-27 13:07:05 -04003053 res = ll_inode_revalidate(de, MDS_INODELOCK_UPDATE |
3054 MDS_INODELOCK_LOOKUP);
Peng Taod7e09d02013-05-02 16:46:55 +08003055 ll_stats_ops_tally(sbi, LPROC_LL_GETATTR, 1);
3056
3057 if (res)
3058 return res;
3059
3060 stat->dev = inode->i_sb->s_dev;
3061 if (ll_need_32bit_api(sbi))
3062 stat->ino = cl_fid_build_ino(&lli->lli_fid, 1);
3063 else
3064 stat->ino = inode->i_ino;
3065 stat->mode = inode->i_mode;
3066 stat->nlink = inode->i_nlink;
3067 stat->uid = inode->i_uid;
3068 stat->gid = inode->i_gid;
3069 stat->rdev = inode->i_rdev;
3070 stat->atime = inode->i_atime;
3071 stat->mtime = inode->i_mtime;
3072 stat->ctime = inode->i_ctime;
3073 stat->blksize = 1 << inode->i_blkbits;
3074
3075 stat->size = i_size_read(inode);
3076 stat->blocks = inode->i_blocks;
3077
3078 return 0;
3079}
Peng Taod7e09d02013-05-02 16:46:55 +08003080
John L. Hammond2d95f102014-04-27 13:07:05 -04003081static int ll_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3082 __u64 start, __u64 len)
Peng Tao89580e32013-11-15 00:13:03 +08003083{
3084 int rc;
3085 size_t num_bytes;
3086 struct ll_user_fiemap *fiemap;
3087 unsigned int extent_count = fieinfo->fi_extents_max;
3088
3089 num_bytes = sizeof(*fiemap) + (extent_count *
3090 sizeof(struct ll_fiemap_extent));
Julia Lawalle958f492015-06-11 14:02:52 +02003091 fiemap = libcfs_kvzalloc(num_bytes, GFP_NOFS);
Peng Tao89580e32013-11-15 00:13:03 +08003092
Oleg Drokin6e168182016-02-16 00:46:46 -05003093 if (!fiemap)
Peng Tao89580e32013-11-15 00:13:03 +08003094 return -ENOMEM;
3095
3096 fiemap->fm_flags = fieinfo->fi_flags;
3097 fiemap->fm_extent_count = fieinfo->fi_extents_max;
3098 fiemap->fm_start = start;
3099 fiemap->fm_length = len;
Oleg Drokin97514242016-01-03 12:05:48 -05003100 if (extent_count > 0 &&
3101 copy_from_user(&fiemap->fm_extents[0], fieinfo->fi_extents_start,
3102 sizeof(struct ll_fiemap_extent)) != 0) {
3103 rc = -EFAULT;
3104 goto out;
3105 }
Peng Tao89580e32013-11-15 00:13:03 +08003106
3107 rc = ll_do_fiemap(inode, fiemap, num_bytes);
3108
3109 fieinfo->fi_flags = fiemap->fm_flags;
3110 fieinfo->fi_extents_mapped = fiemap->fm_mapped_extents;
Oleg Drokin97514242016-01-03 12:05:48 -05003111 if (extent_count > 0 &&
3112 copy_to_user(fieinfo->fi_extents_start, &fiemap->fm_extents[0],
3113 fiemap->fm_mapped_extents *
3114 sizeof(struct ll_fiemap_extent)) != 0) {
3115 rc = -EFAULT;
3116 goto out;
3117 }
Peng Tao89580e32013-11-15 00:13:03 +08003118
Oleg Drokin97514242016-01-03 12:05:48 -05003119out:
Julia Lawalle958f492015-06-11 14:02:52 +02003120 kvfree(fiemap);
Peng Tao89580e32013-11-15 00:13:03 +08003121 return rc;
3122}
Peng Taod7e09d02013-05-02 16:46:55 +08003123
John L. Hammond2d95f102014-04-27 13:07:05 -04003124struct posix_acl *ll_get_acl(struct inode *inode, int type)
Peng Taod7e09d02013-05-02 16:46:55 +08003125{
3126 struct ll_inode_info *lli = ll_i2info(inode);
3127 struct posix_acl *acl = NULL;
Peng Taod7e09d02013-05-02 16:46:55 +08003128
3129 spin_lock(&lli->lli_lock);
3130 /* VFS' acl_permission_check->check_acl will release the refcount */
3131 acl = posix_acl_dup(lli->lli_posix_acl);
Arnd Bergmanned7bdf52016-06-13 22:44:57 +02003132#ifdef CONFIG_FS_POSIX_ACL
James Simmonsb788dc52016-05-23 20:35:08 -04003133 forget_cached_acl(inode, type);
Arnd Bergmanned7bdf52016-06-13 22:44:57 +02003134#endif
Peng Taod7e09d02013-05-02 16:46:55 +08003135 spin_unlock(&lli->lli_lock);
3136
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003137 return acl;
Peng Taod7e09d02013-05-02 16:46:55 +08003138}
3139
Peng Taod7e09d02013-05-02 16:46:55 +08003140int ll_inode_permission(struct inode *inode, int mask)
3141{
3142 int rc = 0;
Peng Taod7e09d02013-05-02 16:46:55 +08003143
Peng Taod7e09d02013-05-02 16:46:55 +08003144 if (mask & MAY_NOT_BLOCK)
3145 return -ECHILD;
Peng Taod7e09d02013-05-02 16:46:55 +08003146
3147 /* as root inode are NOT getting validated in lookup operation,
Oleg Drokinc0894c62016-02-24 22:00:30 -05003148 * need to do it before permission check.
3149 */
Peng Taod7e09d02013-05-02 16:46:55 +08003150
Al Virof76c23d2014-10-21 15:20:42 -04003151 if (is_root_inode(inode)) {
John L. Hammond2d95f102014-04-27 13:07:05 -04003152 rc = __ll_inode_revalidate(inode->i_sb->s_root,
3153 MDS_INODELOCK_LOOKUP);
Peng Taod7e09d02013-05-02 16:46:55 +08003154 if (rc)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003155 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003156 }
3157
James Nunez97a075c2016-04-27 18:21:01 -04003158 CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), inode mode %x mask %o\n",
3159 PFID(ll_inode2fid(inode)), inode, inode->i_mode, mask);
Peng Taod7e09d02013-05-02 16:46:55 +08003160
Peng Taod7e09d02013-05-02 16:46:55 +08003161 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_INODE_PERM, 1);
Greg Kroah-Hartman8707c962013-08-02 16:08:01 +08003162 rc = generic_permission(inode, mask);
Peng Taod7e09d02013-05-02 16:46:55 +08003163
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003164 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003165}
3166
Peng Taod7e09d02013-05-02 16:46:55 +08003167/* -o localflock - only provides locally consistent flock locks */
3168struct file_operations ll_file_operations = {
Al Virob42b15f2014-04-04 12:15:19 -04003169 .read_iter = ll_file_read_iter,
Al Virob42b15f2014-04-04 12:15:19 -04003170 .write_iter = ll_file_write_iter,
Peng Taod7e09d02013-05-02 16:46:55 +08003171 .unlocked_ioctl = ll_file_ioctl,
3172 .open = ll_file_open,
3173 .release = ll_file_release,
3174 .mmap = ll_file_mmap,
3175 .llseek = ll_file_seek,
3176 .splice_read = ll_file_splice_read,
3177 .fsync = ll_fsync,
3178 .flush = ll_flush
3179};
3180
3181struct file_operations ll_file_operations_flock = {
Al Virob42b15f2014-04-04 12:15:19 -04003182 .read_iter = ll_file_read_iter,
Al Virob42b15f2014-04-04 12:15:19 -04003183 .write_iter = ll_file_write_iter,
Peng Taod7e09d02013-05-02 16:46:55 +08003184 .unlocked_ioctl = ll_file_ioctl,
3185 .open = ll_file_open,
3186 .release = ll_file_release,
3187 .mmap = ll_file_mmap,
3188 .llseek = ll_file_seek,
3189 .splice_read = ll_file_splice_read,
3190 .fsync = ll_fsync,
3191 .flush = ll_flush,
3192 .flock = ll_file_flock,
3193 .lock = ll_file_flock
3194};
3195
3196/* These are for -o noflock - to return ENOSYS on flock calls */
3197struct file_operations ll_file_operations_noflock = {
Al Virob42b15f2014-04-04 12:15:19 -04003198 .read_iter = ll_file_read_iter,
Al Virob42b15f2014-04-04 12:15:19 -04003199 .write_iter = ll_file_write_iter,
Peng Taod7e09d02013-05-02 16:46:55 +08003200 .unlocked_ioctl = ll_file_ioctl,
3201 .open = ll_file_open,
3202 .release = ll_file_release,
3203 .mmap = ll_file_mmap,
3204 .llseek = ll_file_seek,
3205 .splice_read = ll_file_splice_read,
3206 .fsync = ll_fsync,
3207 .flush = ll_flush,
3208 .flock = ll_file_noflock,
3209 .lock = ll_file_noflock
3210};
3211
Julia Lawalld2d32732015-11-14 13:30:34 +01003212const struct inode_operations ll_file_inode_operations = {
Peng Taod7e09d02013-05-02 16:46:55 +08003213 .setattr = ll_setattr,
3214 .getattr = ll_getattr,
3215 .permission = ll_inode_permission,
3216 .setxattr = ll_setxattr,
3217 .getxattr = ll_getxattr,
3218 .listxattr = ll_listxattr,
3219 .removexattr = ll_removexattr,
Peng Tao89580e32013-11-15 00:13:03 +08003220 .fiemap = ll_fiemap,
Peng Taod7e09d02013-05-02 16:46:55 +08003221 .get_acl = ll_get_acl,
3222};
3223
Masanari Iidad0a0acc2014-03-08 22:58:32 +09003224/* dynamic ioctl number support routines */
Peng Taod7e09d02013-05-02 16:46:55 +08003225static struct llioc_ctl_data {
3226 struct rw_semaphore ioc_sem;
3227 struct list_head ioc_head;
3228} llioc = {
3229 __RWSEM_INITIALIZER(llioc.ioc_sem),
3230 LIST_HEAD_INIT(llioc.ioc_head)
3231};
3232
Peng Taod7e09d02013-05-02 16:46:55 +08003233struct llioc_data {
3234 struct list_head iocd_list;
3235 unsigned int iocd_size;
3236 llioc_callback_t iocd_cb;
3237 unsigned int iocd_count;
3238 unsigned int iocd_cmd[0];
3239};
3240
3241void *ll_iocontrol_register(llioc_callback_t cb, int count, unsigned int *cmd)
3242{
3243 unsigned int size;
3244 struct llioc_data *in_data = NULL;
Peng Taod7e09d02013-05-02 16:46:55 +08003245
Oleg Drokin6e168182016-02-16 00:46:46 -05003246 if (!cb || !cmd || count > LLIOC_MAX_CMD || count < 0)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003247 return NULL;
Peng Taod7e09d02013-05-02 16:46:55 +08003248
3249 size = sizeof(*in_data) + count * sizeof(unsigned int);
Julia Lawall496a51b2014-09-18 22:24:02 +02003250 in_data = kzalloc(size, GFP_NOFS);
3251 if (!in_data)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003252 return NULL;
Peng Taod7e09d02013-05-02 16:46:55 +08003253
3254 memset(in_data, 0, sizeof(*in_data));
3255 in_data->iocd_size = size;
3256 in_data->iocd_cb = cb;
3257 in_data->iocd_count = count;
3258 memcpy(in_data->iocd_cmd, cmd, sizeof(unsigned int) * count);
3259
3260 down_write(&llioc.ioc_sem);
3261 list_add_tail(&in_data->iocd_list, &llioc.ioc_head);
3262 up_write(&llioc.ioc_sem);
3263
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003264 return in_data;
Peng Taod7e09d02013-05-02 16:46:55 +08003265}
aybuke ozdemir93133eb2015-02-26 23:45:44 +02003266EXPORT_SYMBOL(ll_iocontrol_register);
Peng Taod7e09d02013-05-02 16:46:55 +08003267
3268void ll_iocontrol_unregister(void *magic)
3269{
3270 struct llioc_data *tmp;
3271
Oleg Drokin6e168182016-02-16 00:46:46 -05003272 if (!magic)
Peng Taod7e09d02013-05-02 16:46:55 +08003273 return;
3274
3275 down_write(&llioc.ioc_sem);
3276 list_for_each_entry(tmp, &llioc.ioc_head, iocd_list) {
3277 if (tmp == magic) {
Peng Taod7e09d02013-05-02 16:46:55 +08003278 list_del(&tmp->iocd_list);
3279 up_write(&llioc.ioc_sem);
3280
Julia Lawall97903a22015-04-12 22:55:02 +02003281 kfree(tmp);
Peng Taod7e09d02013-05-02 16:46:55 +08003282 return;
3283 }
3284 }
3285 up_write(&llioc.ioc_sem);
3286
3287 CWARN("didn't find iocontrol register block with magic: %p\n", magic);
3288}
Peng Taod7e09d02013-05-02 16:46:55 +08003289EXPORT_SYMBOL(ll_iocontrol_unregister);
3290
John L. Hammond2d95f102014-04-27 13:07:05 -04003291static enum llioc_iter
3292ll_iocontrol_call(struct inode *inode, struct file *file,
3293 unsigned int cmd, unsigned long arg, int *rcp)
Peng Taod7e09d02013-05-02 16:46:55 +08003294{
3295 enum llioc_iter ret = LLIOC_CONT;
3296 struct llioc_data *data;
3297 int rc = -EINVAL, i;
3298
3299 down_read(&llioc.ioc_sem);
3300 list_for_each_entry(data, &llioc.ioc_head, iocd_list) {
3301 for (i = 0; i < data->iocd_count; i++) {
3302 if (cmd != data->iocd_cmd[i])
3303 continue;
3304
3305 ret = data->iocd_cb(inode, file, cmd, arg, data, &rc);
3306 break;
3307 }
3308
3309 if (ret == LLIOC_STOP)
3310 break;
3311 }
3312 up_read(&llioc.ioc_sem);
3313
3314 if (rcp)
3315 *rcp = rc;
3316 return ret;
3317}
3318
3319int ll_layout_conf(struct inode *inode, const struct cl_object_conf *conf)
3320{
3321 struct ll_inode_info *lli = ll_i2info(inode);
3322 struct cl_env_nest nest;
3323 struct lu_env *env;
3324 int result;
Peng Taod7e09d02013-05-02 16:46:55 +08003325
Oleg Drokin6e168182016-02-16 00:46:46 -05003326 if (!lli->lli_clob)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003327 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08003328
3329 env = cl_env_nested_get(&nest);
3330 if (IS_ERR(env))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003331 return PTR_ERR(env);
Peng Taod7e09d02013-05-02 16:46:55 +08003332
3333 result = cl_conf_set(env, lli->lli_clob, conf);
3334 cl_env_nested_put(&nest, env);
3335
3336 if (conf->coc_opc == OBJECT_CONF_SET) {
3337 struct ldlm_lock *lock = conf->coc_lock;
3338
Oleg Drokin6e168182016-02-16 00:46:46 -05003339 LASSERT(lock);
Peng Taod7e09d02013-05-02 16:46:55 +08003340 LASSERT(ldlm_has_layout(lock));
3341 if (result == 0) {
3342 /* it can only be allowed to match after layout is
3343 * applied to inode otherwise false layout would be
Masanari Iidad0a0acc2014-03-08 22:58:32 +09003344 * seen. Applying layout should happen before dropping
Oleg Drokinc0894c62016-02-24 22:00:30 -05003345 * the intent lock.
3346 */
Peng Taod7e09d02013-05-02 16:46:55 +08003347 ldlm_lock_allow_match(lock);
3348 }
3349 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003350 return result;
Peng Taod7e09d02013-05-02 16:46:55 +08003351}
3352
3353/* Fetch layout from MDT with getxattr request, if it's not ready yet */
3354static int ll_layout_fetch(struct inode *inode, struct ldlm_lock *lock)
3355
3356{
3357 struct ll_sb_info *sbi = ll_i2sbi(inode);
Peng Taod7e09d02013-05-02 16:46:55 +08003358 struct ptlrpc_request *req;
3359 struct mdt_body *body;
3360 void *lvbdata;
3361 void *lmm;
3362 int lmmsize;
3363 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003364
jcle2335e52013-07-23 00:06:45 +08003365 CDEBUG(D_INODE, DFID" LVB_READY=%d l_lvb_data=%p l_lvb_len=%d\n",
Bruce Korb5a9a80b2016-04-27 18:20:57 -04003366 PFID(ll_inode2fid(inode)), ldlm_is_lvb_ready(lock),
jcle2335e52013-07-23 00:06:45 +08003367 lock->l_lvb_data, lock->l_lvb_len);
3368
Bruce Korb5a9a80b2016-04-27 18:20:57 -04003369 if (lock->l_lvb_data && ldlm_is_lvb_ready(lock))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003370 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08003371
3372 /* if layout lock was granted right away, the layout is returned
3373 * within DLM_LVB of dlm reply; otherwise if the lock was ever
3374 * blocked and then granted via completion ast, we have to fetch
3375 * layout here. Please note that we can't use the LVB buffer in
Oleg Drokinc0894c62016-02-24 22:00:30 -05003376 * completion AST because it doesn't have a large enough buffer
3377 */
Brian Behlendorf44779342014-04-27 13:06:47 -04003378 rc = ll_get_default_mdsize(sbi, &lmmsize);
Peng Taod7e09d02013-05-02 16:46:55 +08003379 if (rc == 0)
Oleg Drokinef2e0f52015-09-27 16:45:46 -04003380 rc = md_getxattr(sbi->ll_md_exp, ll_inode2fid(inode),
3381 OBD_MD_FLXATTR, XATTR_NAME_LOV, NULL, 0,
3382 lmmsize, 0, &req);
Peng Taod7e09d02013-05-02 16:46:55 +08003383 if (rc < 0)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003384 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003385
3386 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
Oleg Drokin6e168182016-02-16 00:46:46 -05003387 if (!body) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +02003388 rc = -EPROTO;
3389 goto out;
3390 }
Peng Taod7e09d02013-05-02 16:46:55 +08003391
3392 lmmsize = body->eadatasize;
Julia Lawall34e1f2b2014-08-30 16:24:55 +02003393 if (lmmsize == 0) /* empty layout */ {
3394 rc = 0;
3395 goto out;
3396 }
Peng Taod7e09d02013-05-02 16:46:55 +08003397
3398 lmm = req_capsule_server_sized_get(&req->rq_pill, &RMF_EADATA, lmmsize);
Oleg Drokin6e168182016-02-16 00:46:46 -05003399 if (!lmm) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +02003400 rc = -EFAULT;
3401 goto out;
3402 }
Peng Taod7e09d02013-05-02 16:46:55 +08003403
Julia Lawalle958f492015-06-11 14:02:52 +02003404 lvbdata = libcfs_kvzalloc(lmmsize, GFP_NOFS);
Oleg Drokin6e168182016-02-16 00:46:46 -05003405 if (!lvbdata) {
Julia Lawall34e1f2b2014-08-30 16:24:55 +02003406 rc = -ENOMEM;
3407 goto out;
3408 }
Peng Taod7e09d02013-05-02 16:46:55 +08003409
3410 memcpy(lvbdata, lmm, lmmsize);
3411 lock_res_and_lock(lock);
Oleg Drokin6e168182016-02-16 00:46:46 -05003412 if (lock->l_lvb_data)
Julia Lawalle958f492015-06-11 14:02:52 +02003413 kvfree(lock->l_lvb_data);
jcle2335e52013-07-23 00:06:45 +08003414
3415 lock->l_lvb_data = lvbdata;
3416 lock->l_lvb_len = lmmsize;
Peng Taod7e09d02013-05-02 16:46:55 +08003417 unlock_res_and_lock(lock);
3418
Peng Taod7e09d02013-05-02 16:46:55 +08003419out:
3420 ptlrpc_req_finished(req);
3421 return rc;
3422}
3423
3424/**
3425 * Apply the layout to the inode. Layout lock is held and will be released
3426 * in this function.
3427 */
Oleg Drokin52ee0d22016-02-24 21:59:54 -05003428static int ll_layout_lock_set(struct lustre_handle *lockh, enum ldlm_mode mode,
3429 struct inode *inode, __u32 *gen, bool reconf)
Peng Taod7e09d02013-05-02 16:46:55 +08003430{
3431 struct ll_inode_info *lli = ll_i2info(inode);
3432 struct ll_sb_info *sbi = ll_i2sbi(inode);
3433 struct ldlm_lock *lock;
3434 struct lustre_md md = { NULL };
3435 struct cl_object_conf conf;
3436 int rc = 0;
3437 bool lvb_ready;
3438 bool wait_layout = false;
Peng Taod7e09d02013-05-02 16:46:55 +08003439
3440 LASSERT(lustre_handle_is_used(lockh));
3441
3442 lock = ldlm_handle2lock(lockh);
Oleg Drokin6e168182016-02-16 00:46:46 -05003443 LASSERT(lock);
Peng Taod7e09d02013-05-02 16:46:55 +08003444 LASSERT(ldlm_has_layout(lock));
3445
James Nunez97a075c2016-04-27 18:21:01 -04003446 LDLM_DEBUG(lock, "File "DFID"(%p) being reconfigured: %d",
3447 PFID(&lli->lli_fid), inode, reconf);
Peng Taod7e09d02013-05-02 16:46:55 +08003448
JC Lafoucrierebc969172013-06-03 21:40:44 +08003449 /* in case this is a caching lock and reinstate with new inode */
3450 md_set_lock_data(sbi->ll_md_exp, &lockh->cookie, inode, NULL);
3451
Peng Taod7e09d02013-05-02 16:46:55 +08003452 lock_res_and_lock(lock);
Bruce Korb5a9a80b2016-04-27 18:20:57 -04003453 lvb_ready = ldlm_is_lvb_ready(lock);
Peng Taod7e09d02013-05-02 16:46:55 +08003454 unlock_res_and_lock(lock);
3455 /* checking lvb_ready is racy but this is okay. The worst case is
Oleg Drokinc0894c62016-02-24 22:00:30 -05003456 * that multi processes may configure the file on the same time.
3457 */
Peng Taod7e09d02013-05-02 16:46:55 +08003458 if (lvb_ready || !reconf) {
3459 rc = -ENODATA;
3460 if (lvb_ready) {
3461 /* layout_gen must be valid if layout lock is not
Oleg Drokinc0894c62016-02-24 22:00:30 -05003462 * cancelled and stripe has already set
3463 */
Jinshan Xiong09aed8a2014-04-27 13:06:50 -04003464 *gen = ll_layout_version_get(lli);
Peng Taod7e09d02013-05-02 16:46:55 +08003465 rc = 0;
3466 }
Julia Lawall34e1f2b2014-08-30 16:24:55 +02003467 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08003468 }
3469
3470 rc = ll_layout_fetch(inode, lock);
3471 if (rc < 0)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02003472 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08003473
3474 /* for layout lock, lmm is returned in lock's lvb.
3475 * lvb_data is immutable if the lock is held so it's safe to access it
3476 * without res lock. See the description in ldlm_lock_decref_internal()
Oleg Drokinc0894c62016-02-24 22:00:30 -05003477 * for the condition to free lvb_data of layout lock
3478 */
Oleg Drokin6e168182016-02-16 00:46:46 -05003479 if (lock->l_lvb_data) {
Peng Taod7e09d02013-05-02 16:46:55 +08003480 rc = obd_unpackmd(sbi->ll_dt_exp, &md.lsm,
3481 lock->l_lvb_data, lock->l_lvb_len);
3482 if (rc >= 0) {
3483 *gen = LL_LAYOUT_GEN_EMPTY;
Oleg Drokin6e168182016-02-16 00:46:46 -05003484 if (md.lsm)
Peng Taod7e09d02013-05-02 16:46:55 +08003485 *gen = md.lsm->lsm_layout_gen;
3486 rc = 0;
3487 } else {
Oleg Drokine15ba452016-02-26 01:49:49 -05003488 CERROR("%s: file " DFID " unpackmd error: %d\n",
3489 ll_get_fsname(inode->i_sb, NULL, 0),
3490 PFID(&lli->lli_fid), rc);
Peng Taod7e09d02013-05-02 16:46:55 +08003491 }
3492 }
3493 if (rc < 0)
Julia Lawall34e1f2b2014-08-30 16:24:55 +02003494 goto out;
Peng Taod7e09d02013-05-02 16:46:55 +08003495
3496 /* set layout to file. Unlikely this will fail as old layout was
Oleg Drokinc0894c62016-02-24 22:00:30 -05003497 * surely eliminated
3498 */
Joe Perchesec83e612013-10-13 20:22:03 -07003499 memset(&conf, 0, sizeof(conf));
Peng Taod7e09d02013-05-02 16:46:55 +08003500 conf.coc_opc = OBJECT_CONF_SET;
3501 conf.coc_inode = inode;
3502 conf.coc_lock = lock;
3503 conf.u.coc_md = &md;
3504 rc = ll_layout_conf(inode, &conf);
3505
Oleg Drokin6e168182016-02-16 00:46:46 -05003506 if (md.lsm)
Peng Taod7e09d02013-05-02 16:46:55 +08003507 obd_free_memmd(sbi->ll_dt_exp, &md.lsm);
3508
3509 /* refresh layout failed, need to wait */
3510 wait_layout = rc == -EBUSY;
Peng Taod7e09d02013-05-02 16:46:55 +08003511
3512out:
3513 LDLM_LOCK_PUT(lock);
3514 ldlm_lock_decref(lockh, mode);
3515
3516 /* wait for IO to complete if it's still being used. */
3517 if (wait_layout) {
James Nunez97a075c2016-04-27 18:21:01 -04003518 CDEBUG(D_INODE, "%s: "DFID"(%p) wait for layout reconf\n",
Oleg Drokine15ba452016-02-26 01:49:49 -05003519 ll_get_fsname(inode->i_sb, NULL, 0),
James Nunez97a075c2016-04-27 18:21:01 -04003520 PFID(&lli->lli_fid), inode);
Peng Taod7e09d02013-05-02 16:46:55 +08003521
Joe Perchesec83e612013-10-13 20:22:03 -07003522 memset(&conf, 0, sizeof(conf));
Peng Taod7e09d02013-05-02 16:46:55 +08003523 conf.coc_opc = OBJECT_CONF_WAIT;
3524 conf.coc_inode = inode;
3525 rc = ll_layout_conf(inode, &conf);
3526 if (rc == 0)
3527 rc = -EAGAIN;
3528
James Nunez97a075c2016-04-27 18:21:01 -04003529 CDEBUG(D_INODE, "%s: file="DFID" waiting layout return: %d.\n",
3530 ll_get_fsname(inode->i_sb, NULL, 0),
Oleg Drokine15ba452016-02-26 01:49:49 -05003531 PFID(&lli->lli_fid), rc);
Peng Taod7e09d02013-05-02 16:46:55 +08003532 }
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003533 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003534}
3535
3536/**
3537 * This function checks if there exists a LAYOUT lock on the client side,
3538 * or enqueues it if it doesn't have one in cache.
3539 *
3540 * This function will not hold layout lock so it may be revoked any time after
3541 * this function returns. Any operations depend on layout should be redone
3542 * in that case.
3543 *
3544 * This function should be called before lov_io_init() to get an uptodate
3545 * layout version, the caller should save the version number and after IO
3546 * is finished, this function should be called again to verify that layout
3547 * is not changed during IO time.
3548 */
3549int ll_layout_refresh(struct inode *inode, __u32 *gen)
3550{
3551 struct ll_inode_info *lli = ll_i2info(inode);
3552 struct ll_sb_info *sbi = ll_i2sbi(inode);
3553 struct md_op_data *op_data;
3554 struct lookup_intent it;
3555 struct lustre_handle lockh;
Oleg Drokin52ee0d22016-02-24 21:59:54 -05003556 enum ldlm_mode mode;
Bruce Korbf2145ea2013-07-23 00:06:37 +08003557 struct ldlm_enqueue_info einfo = {
3558 .ei_type = LDLM_IBITS,
3559 .ei_mode = LCK_CR,
3560 .ei_cb_bl = ll_md_blocking_ast,
3561 .ei_cb_cp = ldlm_completion_ast,
3562 };
Peng Taod7e09d02013-05-02 16:46:55 +08003563 int rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003564
Jinshan Xiong09aed8a2014-04-27 13:06:50 -04003565 *gen = ll_layout_version_get(lli);
3566 if (!(sbi->ll_flags & LL_SBI_LAYOUT_LOCK) || *gen != LL_LAYOUT_GEN_NONE)
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003567 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +08003568
3569 /* sanity checks */
3570 LASSERT(fid_is_sane(ll_inode2fid(inode)));
3571 LASSERT(S_ISREG(inode->i_mode));
3572
Peng Taod7e09d02013-05-02 16:46:55 +08003573 /* take layout lock mutex to enqueue layout lock exclusively. */
3574 mutex_lock(&lli->lli_layout_mutex);
3575
3576again:
Jinshan Xiong09aed8a2014-04-27 13:06:50 -04003577 /* mostly layout lock is caching on the local side, so try to match
Oleg Drokinc0894c62016-02-24 22:00:30 -05003578 * it before grabbing layout lock mutex.
3579 */
Andrew Perepechko7fc1f832013-12-03 21:58:49 +08003580 mode = ll_take_md_lock(inode, MDS_INODELOCK_LAYOUT, &lockh, 0,
3581 LCK_CR | LCK_CW | LCK_PR | LCK_PW);
Peng Taod7e09d02013-05-02 16:46:55 +08003582 if (mode != 0) { /* hit cached lock */
3583 rc = ll_layout_lock_set(&lockh, mode, inode, gen, true);
3584 if (rc == -EAGAIN)
3585 goto again;
3586
3587 mutex_unlock(&lli->lli_layout_mutex);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003588 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003589 }
3590
3591 op_data = ll_prep_md_op_data(NULL, inode, inode, NULL,
Oleg Drokine15ba452016-02-26 01:49:49 -05003592 0, 0, LUSTRE_OPC_ANY, NULL);
Peng Taod7e09d02013-05-02 16:46:55 +08003593 if (IS_ERR(op_data)) {
3594 mutex_unlock(&lli->lli_layout_mutex);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003595 return PTR_ERR(op_data);
Peng Taod7e09d02013-05-02 16:46:55 +08003596 }
3597
3598 /* have to enqueue one */
3599 memset(&it, 0, sizeof(it));
3600 it.it_op = IT_LAYOUT;
3601 lockh.cookie = 0ULL;
3602
James Nunez97a075c2016-04-27 18:21:01 -04003603 LDLM_DEBUG_NOLOCK("%s: requeue layout lock for file "DFID"(%p)",
3604 ll_get_fsname(inode->i_sb, NULL, 0),
3605 PFID(&lli->lli_fid), inode);
Peng Taod7e09d02013-05-02 16:46:55 +08003606
3607 rc = md_enqueue(sbi->ll_md_exp, &einfo, &it, op_data, &lockh,
3608 NULL, 0, NULL, 0);
John L. Hammond8bf86fd2016-06-20 16:55:40 -04003609 ptlrpc_req_finished(it.it_request);
3610 it.it_request = NULL;
Peng Taod7e09d02013-05-02 16:46:55 +08003611
3612 ll_finish_md_op_data(op_data);
3613
John L. Hammonde476f2e2016-06-20 16:55:38 -04003614 mode = it.it_lock_mode;
3615 it.it_lock_mode = 0;
Peng Taod7e09d02013-05-02 16:46:55 +08003616 ll_intent_drop_lock(&it);
3617
3618 if (rc == 0) {
3619 /* set lock data in case this is a new lock */
3620 ll_set_lock_data(sbi->ll_md_exp, inode, &it, NULL);
3621 rc = ll_layout_lock_set(&lockh, mode, inode, gen, true);
3622 if (rc == -EAGAIN)
3623 goto again;
3624 }
3625 mutex_unlock(&lli->lli_layout_mutex);
3626
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +08003627 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +08003628}
JC Lafoucriere5ea17d62013-11-21 22:24:48 +08003629
3630/**
3631 * This function send a restore request to the MDT
3632 */
Jinshan Xiong1b1594d2016-04-12 16:14:10 -04003633int ll_layout_restore(struct inode *inode, loff_t offset, __u64 length)
JC Lafoucriere5ea17d62013-11-21 22:24:48 +08003634{
3635 struct hsm_user_request *hur;
3636 int len, rc;
3637
3638 len = sizeof(struct hsm_user_request) +
3639 sizeof(struct hsm_user_item);
Julia Lawall496a51b2014-09-18 22:24:02 +02003640 hur = kzalloc(len, GFP_NOFS);
3641 if (!hur)
JC Lafoucriere5ea17d62013-11-21 22:24:48 +08003642 return -ENOMEM;
3643
3644 hur->hur_request.hr_action = HUA_RESTORE;
3645 hur->hur_request.hr_archive_id = 0;
3646 hur->hur_request.hr_flags = 0;
3647 memcpy(&hur->hur_user_item[0].hui_fid, &ll_i2info(inode)->lli_fid,
3648 sizeof(hur->hur_user_item[0].hui_fid));
Jinshan Xiong1b1594d2016-04-12 16:14:10 -04003649 hur->hur_user_item[0].hui_extent.offset = offset;
3650 hur->hur_user_item[0].hui_extent.length = length;
JC Lafoucriere5ea17d62013-11-21 22:24:48 +08003651 hur->hur_request.hr_itemcount = 1;
John L. Hammond1929c432016-03-30 19:48:37 -04003652 rc = obd_iocontrol(LL_IOC_HSM_REQUEST, ll_i2sbi(inode)->ll_md_exp,
JC Lafoucriere5ea17d62013-11-21 22:24:48 +08003653 len, hur, NULL);
Julia Lawall97903a22015-04-12 22:55:02 +02003654 kfree(hur);
JC Lafoucriere5ea17d62013-11-21 22:24:48 +08003655 return rc;
3656}