Whamcloud - gitweb
LU-15811 llite: Unify range unlock
[fs/lustre-release.git] / lustre / llite / file.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/llite/file.c
32  *
33  * Author: Peter Braam <braam@clusterfs.com>
34  * Author: Phil Schwan <phil@clusterfs.com>
35  * Author: Andreas Dilger <adilger@clusterfs.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_LLITE
39 #include <lustre_dlm.h>
40 #include <linux/pagemap.h>
41 #include <linux/file.h>
42 #include <linux/sched.h>
43 #include <linux/user_namespace.h>
44 #include <linux/uidgid.h>
45 #include <linux/falloc.h>
46 #include <linux/ktime.h>
47
48 #include <uapi/linux/lustre/lustre_ioctl.h>
49 #include <lustre_swab.h>
50
51 #include "cl_object.h"
52 #include "llite_internal.h"
53 #include "vvp_internal.h"
54
55 struct split_param {
56         struct inode    *sp_inode;
57         __u16           sp_mirror_id;
58 };
59
60 struct pcc_param {
61         __u64   pa_data_version;
62         __u32   pa_archive_id;
63         __u32   pa_layout_gen;
64 };
65
66 static int
67 ll_put_grouplock(struct inode *inode, struct file *file, unsigned long arg);
68
69 static int ll_lease_close(struct obd_client_handle *och, struct inode *inode,
70                           bool *lease_broken);
71
72 static struct ll_file_data *ll_file_data_get(void)
73 {
74         struct ll_file_data *fd;
75
76         OBD_SLAB_ALLOC_PTR_GFP(fd, ll_file_data_slab, GFP_NOFS);
77         if (fd == NULL)
78                 return NULL;
79
80         fd->fd_write_failed = false;
81         pcc_file_init(&fd->fd_pcc_file);
82
83         return fd;
84 }
85
86 static void ll_file_data_put(struct ll_file_data *fd)
87 {
88         if (fd != NULL)
89                 OBD_SLAB_FREE_PTR(fd, ll_file_data_slab);
90 }
91
92 /**
93  * Packs all the attributes into @op_data for the CLOSE rpc.
94  */
95 static void ll_prepare_close(struct inode *inode, struct md_op_data *op_data,
96                              struct obd_client_handle *och)
97 {
98         ENTRY;
99
100         ll_prep_md_op_data(op_data, inode, NULL, NULL,
101                            0, 0, LUSTRE_OPC_ANY, NULL);
102
103         op_data->op_attr.ia_mode = inode->i_mode;
104         op_data->op_attr.ia_atime = inode->i_atime;
105         op_data->op_attr.ia_mtime = inode->i_mtime;
106         op_data->op_attr.ia_ctime = inode->i_ctime;
107         /* In case of encrypted file without the key, visible size was rounded
108          * up to next LUSTRE_ENCRYPTION_UNIT_SIZE, and clear text size was
109          * stored into lli_lazysize in ll_merge_attr(), so set proper file size
110          * now that we are closing.
111          */
112         if (llcrypt_require_key(inode) == -ENOKEY &&
113             ll_i2info(inode)->lli_attr_valid & OBD_MD_FLLAZYSIZE)
114                 op_data->op_attr.ia_size = ll_i2info(inode)->lli_lazysize;
115         else
116                 op_data->op_attr.ia_size = i_size_read(inode);
117         op_data->op_attr.ia_valid |= (ATTR_MODE | ATTR_ATIME | ATTR_ATIME_SET |
118                                       ATTR_MTIME | ATTR_MTIME_SET |
119                                       ATTR_CTIME);
120         op_data->op_xvalid |= OP_XVALID_CTIME_SET;
121         op_data->op_attr_blocks = inode->i_blocks;
122         op_data->op_attr_flags = ll_inode_to_ext_flags(inode->i_flags);
123         if (test_bit(LLIF_PROJECT_INHERIT, &ll_i2info(inode)->lli_flags))
124                 op_data->op_attr_flags |= LUSTRE_PROJINHERIT_FL;
125         op_data->op_open_handle = och->och_open_handle;
126
127         if (och->och_flags & FMODE_WRITE &&
128             test_and_clear_bit(LLIF_DATA_MODIFIED, &ll_i2info(inode)->lli_flags))
129                 /* For HSM: if inode data has been modified, pack it so that
130                  * MDT can set data dirty flag in the archive. */
131                 op_data->op_bias |= MDS_DATA_MODIFIED;
132
133         EXIT;
134 }
135
136 /**
137  * Perform a close, possibly with a bias.
138  * The meaning of "data" depends on the value of "bias".
139  *
140  * If \a bias is MDS_HSM_RELEASE then \a data is a pointer to the data version.
141  * If \a bias is MDS_CLOSE_LAYOUT_SWAP then \a data is a pointer to the inode to
142  * swap layouts with.
143  */
144 static int ll_close_inode_openhandle(struct inode *inode,
145                                      struct obd_client_handle *och,
146                                      enum mds_op_bias bias, void *data)
147 {
148         struct obd_export *md_exp = ll_i2mdexp(inode);
149         const struct ll_inode_info *lli = ll_i2info(inode);
150         struct md_op_data *op_data;
151         struct ptlrpc_request *req = NULL;
152         int rc;
153         ENTRY;
154
155         if (class_exp2obd(md_exp) == NULL) {
156                 CERROR("%s: invalid MDC connection handle closing "DFID"\n",
157                        ll_i2sbi(inode)->ll_fsname, PFID(&lli->lli_fid));
158                 GOTO(out, rc = 0);
159         }
160
161         OBD_ALLOC_PTR(op_data);
162         /* We leak openhandle and request here on error, but not much to be
163          * done in OOM case since app won't retry close on error either. */
164         if (op_data == NULL)
165                 GOTO(out, rc = -ENOMEM);
166
167         ll_prepare_close(inode, op_data, och);
168         switch (bias) {
169         case MDS_CLOSE_LAYOUT_MERGE:
170                 /* merge blocks from the victim inode */
171                 op_data->op_attr_blocks += ((struct inode *)data)->i_blocks;
172                 op_data->op_attr.ia_valid |= ATTR_SIZE;
173                 op_data->op_xvalid |= OP_XVALID_BLOCKS;
174                 fallthrough;
175         case MDS_CLOSE_LAYOUT_SPLIT:
176         case MDS_CLOSE_LAYOUT_SWAP: {
177                 struct split_param *sp = data;
178
179                 LASSERT(data != NULL);
180                 op_data->op_bias |= bias;
181                 op_data->op_data_version = 0;
182                 op_data->op_lease_handle = och->och_lease_handle;
183                 if (bias == MDS_CLOSE_LAYOUT_SPLIT) {
184                         op_data->op_fid2 = *ll_inode2fid(sp->sp_inode);
185                         op_data->op_mirror_id = sp->sp_mirror_id;
186                 } else {
187                         op_data->op_fid2 = *ll_inode2fid(data);
188                 }
189                 break;
190         }
191
192         case MDS_CLOSE_RESYNC_DONE: {
193                 struct ll_ioc_lease *ioc = data;
194
195                 LASSERT(data != NULL);
196                 op_data->op_attr_blocks +=
197                         ioc->lil_count * op_data->op_attr_blocks;
198                 op_data->op_attr.ia_valid |= ATTR_SIZE;
199                 op_data->op_xvalid |= OP_XVALID_BLOCKS;
200                 op_data->op_bias |= MDS_CLOSE_RESYNC_DONE;
201
202                 op_data->op_lease_handle = och->och_lease_handle;
203                 op_data->op_data = &ioc->lil_ids[0];
204                 op_data->op_data_size =
205                         ioc->lil_count * sizeof(ioc->lil_ids[0]);
206                 break;
207         }
208
209         case MDS_PCC_ATTACH: {
210                 struct pcc_param *param = data;
211
212                 LASSERT(data != NULL);
213                 op_data->op_bias |= MDS_HSM_RELEASE | MDS_PCC_ATTACH;
214                 op_data->op_archive_id = param->pa_archive_id;
215                 op_data->op_data_version = param->pa_data_version;
216                 op_data->op_lease_handle = och->och_lease_handle;
217                 break;
218         }
219
220         case MDS_HSM_RELEASE:
221                 LASSERT(data != NULL);
222                 op_data->op_bias |= MDS_HSM_RELEASE;
223                 op_data->op_data_version = *(__u64 *)data;
224                 op_data->op_lease_handle = och->och_lease_handle;
225                 op_data->op_attr.ia_valid |= ATTR_SIZE;
226                 op_data->op_xvalid |= OP_XVALID_BLOCKS;
227                 break;
228
229         default:
230                 LASSERT(data == NULL);
231                 break;
232         }
233
234         if (!(op_data->op_attr.ia_valid & ATTR_SIZE))
235                 op_data->op_xvalid |= OP_XVALID_LAZYSIZE;
236         if (!(op_data->op_xvalid & OP_XVALID_BLOCKS))
237                 op_data->op_xvalid |= OP_XVALID_LAZYBLOCKS;
238
239         rc = md_close(md_exp, op_data, och->och_mod, &req);
240         if (rc != 0 && rc != -EINTR)
241                 CERROR("%s: inode "DFID" mdc close failed: rc = %d\n",
242                        md_exp->exp_obd->obd_name, PFID(&lli->lli_fid), rc);
243
244         if (rc == 0 && op_data->op_bias & bias) {
245                 struct mdt_body *body;
246
247                 body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
248                 if (!(body->mbo_valid & OBD_MD_CLOSE_INTENT_EXECED))
249                         rc = -EBUSY;
250
251                 if (bias & MDS_PCC_ATTACH) {
252                         struct pcc_param *param = data;
253
254                         param->pa_layout_gen = body->mbo_layout_gen;
255                 }
256         }
257
258         ll_finish_md_op_data(op_data);
259         EXIT;
260 out:
261
262         md_clear_open_replay_data(md_exp, och);
263         och->och_open_handle.cookie = DEAD_HANDLE_MAGIC;
264         OBD_FREE_PTR(och);
265
266         ptlrpc_req_finished(req);       /* This is close request */
267         return rc;
268 }
269
270 int ll_md_real_close(struct inode *inode, fmode_t fmode)
271 {
272         struct ll_inode_info *lli = ll_i2info(inode);
273         struct obd_client_handle **och_p;
274         struct obd_client_handle *och;
275         __u64 *och_usecount;
276         int rc = 0;
277         ENTRY;
278
279         if (fmode & FMODE_WRITE) {
280                 och_p = &lli->lli_mds_write_och;
281                 och_usecount = &lli->lli_open_fd_write_count;
282         } else if (fmode & FMODE_EXEC) {
283                 och_p = &lli->lli_mds_exec_och;
284                 och_usecount = &lli->lli_open_fd_exec_count;
285         } else {
286                 LASSERT(fmode & FMODE_READ);
287                 och_p = &lli->lli_mds_read_och;
288                 och_usecount = &lli->lli_open_fd_read_count;
289         }
290
291         mutex_lock(&lli->lli_och_mutex);
292         if (*och_usecount > 0) {
293                 /* There are still users of this handle, so skip
294                  * freeing it. */
295                 mutex_unlock(&lli->lli_och_mutex);
296                 RETURN(0);
297         }
298
299         och = *och_p;
300         *och_p = NULL;
301         mutex_unlock(&lli->lli_och_mutex);
302
303         if (och != NULL) {
304                 /* There might be a race and this handle may already
305                  * be closed. */
306                 rc = ll_close_inode_openhandle(inode, och, 0, NULL);
307         }
308
309         RETURN(rc);
310 }
311
312 static int ll_md_close(struct inode *inode, struct file *file)
313 {
314         union ldlm_policy_data policy = {
315                 .l_inodebits    = { MDS_INODELOCK_OPEN },
316         };
317         __u64 flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_TEST_LOCK;
318         struct ll_file_data *fd = file->private_data;
319         struct ll_inode_info *lli = ll_i2info(inode);
320         struct lustre_handle lockh;
321         enum ldlm_mode lockmode;
322         int rc = 0;
323         ENTRY;
324
325         /* clear group lock, if present */
326         if (unlikely(fd->fd_flags & LL_FILE_GROUP_LOCKED))
327                 ll_put_grouplock(inode, file, fd->fd_grouplock.lg_gid);
328
329         mutex_lock(&lli->lli_och_mutex);
330         if (fd->fd_lease_och != NULL) {
331                 bool lease_broken;
332                 struct obd_client_handle *lease_och;
333
334                 lease_och = fd->fd_lease_och;
335                 fd->fd_lease_och = NULL;
336                 mutex_unlock(&lli->lli_och_mutex);
337
338                 /* Usually the lease is not released when the
339                  * application crashed, we need to release here. */
340                 rc = ll_lease_close(lease_och, inode, &lease_broken);
341
342                 mutex_lock(&lli->lli_och_mutex);
343
344                 CDEBUG_LIMIT(rc ? D_ERROR : D_INODE,
345                              "Clean up lease "DFID" %d/%d\n",
346                              PFID(&lli->lli_fid), rc, lease_broken);
347         }
348
349         if (fd->fd_och != NULL) {
350                 struct obd_client_handle *och;
351
352                 och = fd->fd_och;
353                 fd->fd_och = NULL;
354                 mutex_unlock(&lli->lli_och_mutex);
355
356                 rc = ll_close_inode_openhandle(inode, och, 0, NULL);
357                 GOTO(out, rc);
358         }
359
360         /* Let's see if we have good enough OPEN lock on the file and if
361            we can skip talking to MDS */
362         if (fd->fd_omode & FMODE_WRITE) {
363                 lockmode = LCK_CW;
364                 LASSERT(lli->lli_open_fd_write_count);
365                 lli->lli_open_fd_write_count--;
366         } else if (fd->fd_omode & FMODE_EXEC) {
367                 lockmode = LCK_PR;
368                 LASSERT(lli->lli_open_fd_exec_count);
369                 lli->lli_open_fd_exec_count--;
370         } else {
371                 lockmode = LCK_CR;
372                 LASSERT(lli->lli_open_fd_read_count);
373                 lli->lli_open_fd_read_count--;
374         }
375         mutex_unlock(&lli->lli_och_mutex);
376
377         /* LU-4398: do not cache write open lock if the file has exec bit */
378         if ((lockmode == LCK_CW && inode->i_mode & S_IXUGO) ||
379             !md_lock_match(ll_i2mdexp(inode), flags, ll_inode2fid(inode),
380                            LDLM_IBITS, &policy, lockmode, &lockh))
381                 rc = ll_md_real_close(inode, fd->fd_omode);
382
383 out:
384         file->private_data = NULL;
385         ll_file_data_put(fd);
386
387         RETURN(rc);
388 }
389
390 /* While this returns an error code, fput() the caller does not, so we need
391  * to make every effort to clean up all of our state here.  Also, applications
392  * rarely check close errors and even if an error is returned they will not
393  * re-try the close call.
394  */
395 int ll_file_release(struct inode *inode, struct file *file)
396 {
397         struct ll_file_data *fd;
398         struct ll_sb_info *sbi = ll_i2sbi(inode);
399         struct ll_inode_info *lli = ll_i2info(inode);
400         ktime_t kstart = ktime_get();
401         int rc;
402
403         ENTRY;
404
405         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p)\n",
406                PFID(ll_inode2fid(inode)), inode);
407
408         fd = file->private_data;
409         LASSERT(fd != NULL);
410
411         /* The last ref on @file, maybe not the the owner pid of statahead,
412          * because parent and child process can share the same file handle. */
413         if (S_ISDIR(inode->i_mode) && lli->lli_opendir_key == fd)
414                 ll_deauthorize_statahead(inode, fd);
415
416         if (is_root_inode(inode)) {
417                 file->private_data = NULL;
418                 ll_file_data_put(fd);
419                 GOTO(out, rc = 0);
420         }
421
422         pcc_file_release(inode, file);
423
424         if (!S_ISDIR(inode->i_mode)) {
425                 if (lli->lli_clob != NULL)
426                         lov_read_and_clear_async_rc(lli->lli_clob);
427                 lli->lli_async_rc = 0;
428         }
429
430         lli->lli_close_fd_time = ktime_get();
431
432         rc = ll_md_close(inode, file);
433
434         if (CFS_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_DUMP_LOG, cfs_fail_val))
435                 libcfs_debug_dumplog();
436
437 out:
438         if (!rc && !is_root_inode(inode))
439                 ll_stats_ops_tally(sbi, LPROC_LL_RELEASE,
440                                    ktime_us_delta(ktime_get(), kstart));
441         RETURN(rc);
442 }
443
444 static inline int ll_dom_readpage(void *data, struct page *page)
445 {
446         /* since ll_dom_readpage is a page cache helper, it is safe to assume
447          * mapping and host pointers are set here
448          */
449         struct inode *inode;
450         struct niobuf_local *lnb = data;
451         void *kaddr;
452         int rc = 0;
453
454         inode = page2inode(page);
455
456         kaddr = kmap_atomic(page);
457         memcpy(kaddr, lnb->lnb_data, lnb->lnb_len);
458         if (lnb->lnb_len < PAGE_SIZE)
459                 memset(kaddr + lnb->lnb_len, 0,
460                        PAGE_SIZE - lnb->lnb_len);
461         flush_dcache_page(page);
462         SetPageUptodate(page);
463         kunmap_atomic(kaddr);
464
465         if (inode && IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode)) {
466                 if (!llcrypt_has_encryption_key(inode))
467                         CDEBUG(D_SEC, "no enc key for "DFID"\n",
468                                PFID(ll_inode2fid(inode)));
469                 else {
470                         unsigned int offs = 0;
471
472                         while (offs < PAGE_SIZE) {
473                                 /* decrypt only if page is not empty */
474                                 if (memcmp(page_address(page) + offs,
475                                            page_address(ZERO_PAGE(0)),
476                                            LUSTRE_ENCRYPTION_UNIT_SIZE) == 0)
477                                         break;
478
479                                 rc = llcrypt_decrypt_pagecache_blocks(page,
480                                                     LUSTRE_ENCRYPTION_UNIT_SIZE,
481                                                                       offs);
482                                 if (rc)
483                                         break;
484
485                                 offs += LUSTRE_ENCRYPTION_UNIT_SIZE;
486                         }
487                 }
488         }
489         unlock_page(page);
490
491         return rc;
492 }
493
494 void ll_dom_finish_open(struct inode *inode, struct ptlrpc_request *req)
495 {
496         struct lu_env *env;
497         struct cl_io *io;
498         struct ll_inode_info *lli = ll_i2info(inode);
499         struct cl_object *obj = lli->lli_clob;
500         struct address_space *mapping = inode->i_mapping;
501         struct page *vmpage;
502         struct niobuf_remote *rnb;
503         struct mdt_body *body;
504         char *data;
505         unsigned long index, start;
506         struct niobuf_local lnb;
507         __u16 refcheck;
508         int rc;
509
510         ENTRY;
511
512         if (obj == NULL)
513                 RETURN_EXIT;
514
515         if (!req_capsule_field_present(&req->rq_pill, &RMF_NIOBUF_INLINE,
516                                        RCL_SERVER))
517                 RETURN_EXIT;
518
519         rnb = req_capsule_server_get(&req->rq_pill, &RMF_NIOBUF_INLINE);
520         if (rnb == NULL || rnb->rnb_len == 0)
521                 RETURN_EXIT;
522
523         /* LU-11595: Server may return whole file and that is OK always or
524          * it may return just file tail and its offset must be aligned with
525          * client PAGE_SIZE to be used on that client, if server's PAGE_SIZE is
526          * smaller then offset may be not aligned and that data is just ignored.
527          */
528         if (rnb->rnb_offset & ~PAGE_MASK)
529                 RETURN_EXIT;
530
531         /* Server returns whole file or just file tail if it fills in reply
532          * buffer, in both cases total size should be equal to the file size.
533          */
534         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
535         if (rnb->rnb_offset + rnb->rnb_len != body->mbo_dom_size &&
536             !(inode && IS_ENCRYPTED(inode))) {
537                 CERROR("%s: server returns off/len %llu/%u but size %llu\n",
538                        ll_i2sbi(inode)->ll_fsname, rnb->rnb_offset,
539                        rnb->rnb_len, body->mbo_dom_size);
540                 RETURN_EXIT;
541         }
542
543         env = cl_env_get(&refcheck);
544         if (IS_ERR(env))
545                 RETURN_EXIT;
546         io = vvp_env_thread_io(env);
547         io->ci_obj = obj;
548         io->ci_ignore_layout = 1;
549         rc = cl_io_init(env, io, CIT_MISC, obj);
550         if (rc)
551                 GOTO(out_io, rc);
552
553         CDEBUG(D_INFO, "Get data along with open at %llu len %i, size %llu\n",
554                rnb->rnb_offset, rnb->rnb_len, body->mbo_dom_size);
555
556         data = (char *)rnb + sizeof(*rnb);
557
558         lnb.lnb_file_offset = rnb->rnb_offset;
559         start = lnb.lnb_file_offset >> PAGE_SHIFT;
560         index = 0;
561         LASSERT((lnb.lnb_file_offset & ~PAGE_MASK) == 0);
562         lnb.lnb_page_offset = 0;
563         do {
564                 struct cl_page *page;
565
566                 lnb.lnb_data = data + (index << PAGE_SHIFT);
567                 lnb.lnb_len = rnb->rnb_len - (index << PAGE_SHIFT);
568                 if (lnb.lnb_len > PAGE_SIZE)
569                         lnb.lnb_len = PAGE_SIZE;
570
571                 vmpage = read_cache_page(mapping, index + start,
572                                          ll_dom_readpage, &lnb);
573                 if (IS_ERR(vmpage)) {
574                         CWARN("%s: cannot fill page %lu for "DFID
575                               " with data: rc = %li\n",
576                               ll_i2sbi(inode)->ll_fsname, index + start,
577                               PFID(lu_object_fid(&obj->co_lu)),
578                               PTR_ERR(vmpage));
579                         break;
580                 }
581                 lock_page(vmpage);
582                 if (vmpage->mapping == NULL) {
583                         unlock_page(vmpage);
584                         put_page(vmpage);
585                         /* page was truncated */
586                         break;
587                 }
588                 /* attach VM page to CL page cache */
589                 page = cl_page_find(env, obj, vmpage->index, vmpage,
590                                     CPT_CACHEABLE);
591                 if (IS_ERR(page)) {
592                         ClearPageUptodate(vmpage);
593                         unlock_page(vmpage);
594                         put_page(vmpage);
595                         break;
596                 }
597                 SetPageUptodate(vmpage);
598                 cl_page_put(env, page);
599                 unlock_page(vmpage);
600                 put_page(vmpage);
601                 index++;
602         } while (rnb->rnb_len > (index << PAGE_SHIFT));
603
604 out_io:
605         cl_io_fini(env, io);
606         cl_env_put(env, &refcheck);
607
608         EXIT;
609 }
610
611 static int ll_intent_file_open(struct dentry *de, void *lmm, int lmmsize,
612                                 struct lookup_intent *itp)
613 {
614         struct ll_sb_info *sbi = ll_i2sbi(de->d_inode);
615         struct dentry *parent = de->d_parent;
616         char *name = NULL;
617         int len = 0;
618         struct md_op_data *op_data;
619         struct ptlrpc_request *req = NULL;
620         int rc;
621         ENTRY;
622
623         LASSERT(parent != NULL);
624         LASSERT(itp->it_flags & MDS_OPEN_BY_FID);
625
626         /* if server supports open-by-fid, or file name is invalid, don't pack
627          * name in open request */
628         if (OBD_FAIL_CHECK(OBD_FAIL_LLITE_OPEN_BY_NAME) ||
629             !(exp_connect_flags(sbi->ll_md_exp) & OBD_CONNECT_OPEN_BY_FID)) {
630 retry:
631                 len = de->d_name.len;
632                 name = kmalloc(len + 1, GFP_NOFS);
633                 if (!name)
634                         RETURN(-ENOMEM);
635
636                 /* race here */
637                 spin_lock(&de->d_lock);
638                 if (len != de->d_name.len) {
639                         spin_unlock(&de->d_lock);
640                         kfree(name);
641                         goto retry;
642                 }
643                 memcpy(name, de->d_name.name, len);
644                 name[len] = '\0';
645                 spin_unlock(&de->d_lock);
646
647                 if (!lu_name_is_valid_2(name, len)) {
648                         kfree(name);
649                         RETURN(-ESTALE);
650                 }
651         }
652
653         op_data = ll_prep_md_op_data(NULL, parent->d_inode, de->d_inode,
654                                      name, len, 0, LUSTRE_OPC_OPEN, NULL);
655         if (IS_ERR(op_data)) {
656                 kfree(name);
657                 RETURN(PTR_ERR(op_data));
658         }
659         op_data->op_data = lmm;
660         op_data->op_data_size = lmmsize;
661
662         OBD_FAIL_TIMEOUT(OBD_FAIL_LLITE_OPEN_DELAY, cfs_fail_val);
663
664         rc = md_intent_lock(sbi->ll_md_exp, op_data, itp, &req,
665                             &ll_md_blocking_ast, 0);
666         kfree(name);
667         ll_finish_md_op_data(op_data);
668         if (rc == -ESTALE) {
669                 /* reason for keep own exit path - don`t flood log
670                  * with messages with -ESTALE errors.
671                  */
672                 if (!it_disposition(itp, DISP_OPEN_OPEN) ||
673                      it_open_error(DISP_OPEN_OPEN, itp))
674                         GOTO(out, rc);
675                 ll_release_openhandle(de, itp);
676                 GOTO(out, rc);
677         }
678
679         if (it_disposition(itp, DISP_LOOKUP_NEG))
680                 GOTO(out, rc = -ENOENT);
681
682         if (rc != 0 || it_open_error(DISP_OPEN_OPEN, itp)) {
683                 rc = rc ? rc : it_open_error(DISP_OPEN_OPEN, itp);
684                 CDEBUG(D_VFSTRACE, "lock enqueue: err: %d\n", rc);
685                 GOTO(out, rc);
686         }
687
688         rc = ll_prep_inode(&de->d_inode, &req->rq_pill, NULL, itp);
689
690         if (!rc && itp->it_lock_mode) {
691                 __u64 bits = 0;
692
693                 /* If we got a lock back and it has a LOOKUP bit set,
694                  * make sure the dentry is marked as valid so we can find it.
695                  * We don't need to care about actual hashing since other bits
696                  * of kernel will deal with that later.
697                  */
698                 ll_set_lock_data(sbi->ll_md_exp, de->d_inode, itp, &bits);
699                 if (bits & MDS_INODELOCK_LOOKUP) {
700                         d_lustre_revalidate(de);
701                         ll_update_dir_depth(parent->d_inode, de->d_inode);
702                 }
703
704                 /* if DoM bit returned along with LAYOUT bit then there
705                  * can be read-on-open data returned.
706                  */
707                 if (bits & MDS_INODELOCK_DOM && bits & MDS_INODELOCK_LAYOUT)
708                         ll_dom_finish_open(de->d_inode, req);
709         }
710
711 out:
712         ptlrpc_req_finished(req);
713         ll_intent_drop_lock(itp);
714
715         /* We did open by fid, but by the time we got to the server, the object
716          * disappeared.  This is possible if the object was unlinked, but it's
717          * also possible if the object was unlinked by a rename.  In the case
718          * of an object renamed over our existing one, we can't fail this open.
719          * O_CREAT also goes through this path if we had an existing dentry,
720          * and it's obviously wrong to return ENOENT for O_CREAT.
721          *
722          * Instead let's return -ESTALE, and the VFS will retry the open with
723          * LOOKUP_REVAL, which we catch in ll_revalidate_dentry and fail to
724          * revalidate, causing a lookup.  This causes extra lookups in the case
725          * where we had a dentry in cache but the file is being unlinked and we
726          * lose the race with unlink, but this should be very rare.
727          */
728         if (rc == -ENOENT)
729                 rc = -ESTALE;
730
731         RETURN(rc);
732 }
733
734 static int ll_och_fill(struct obd_export *md_exp, struct lookup_intent *it,
735                        struct obd_client_handle *och)
736 {
737         struct mdt_body *body;
738
739         body = req_capsule_server_get(&it->it_request->rq_pill, &RMF_MDT_BODY);
740         och->och_open_handle = body->mbo_open_handle;
741         och->och_fid = body->mbo_fid1;
742         och->och_lease_handle.cookie = it->it_lock_handle;
743         och->och_magic = OBD_CLIENT_HANDLE_MAGIC;
744         och->och_flags = it->it_flags;
745
746         return md_set_open_replay_data(md_exp, och, it);
747 }
748
749 static int ll_local_open(struct file *file, struct lookup_intent *it,
750                          struct ll_file_data *fd, struct obd_client_handle *och)
751 {
752         struct inode *inode = file_inode(file);
753         ENTRY;
754
755         LASSERT(!file->private_data);
756
757         LASSERT(fd != NULL);
758
759         if (och) {
760                 int rc;
761
762                 rc = ll_och_fill(ll_i2sbi(inode)->ll_md_exp, it, och);
763                 if (rc != 0)
764                         RETURN(rc);
765         }
766
767         file->private_data = fd;
768         ll_readahead_init(inode, &fd->fd_ras);
769         fd->fd_omode = it->it_flags & (FMODE_READ | FMODE_WRITE | FMODE_EXEC);
770
771         RETURN(0);
772 }
773
774 void ll_track_file_opens(struct inode *inode)
775 {
776         struct ll_inode_info *lli = ll_i2info(inode);
777         struct ll_sb_info *sbi = ll_i2sbi(inode);
778
779         /* do not skew results with delays from never-opened inodes */
780         if (ktime_to_ns(lli->lli_close_fd_time))
781                 ll_stats_ops_tally(sbi, LPROC_LL_INODE_OPCLTM,
782                            ktime_us_delta(ktime_get(), lli->lli_close_fd_time));
783
784         if (ktime_after(ktime_get(),
785                         ktime_add_ms(lli->lli_close_fd_time,
786                                      sbi->ll_oc_max_ms))) {
787                 lli->lli_open_fd_count = 1;
788                 lli->lli_close_fd_time = ns_to_ktime(0);
789         } else {
790                 lli->lli_open_fd_count++;
791         }
792
793         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_INODE_OCOUNT,
794                            lli->lli_open_fd_count);
795 }
796
797 /* Open a file, and (for the very first open) create objects on the OSTs at
798  * this time.  If opened with O_LOV_DELAY_CREATE, then we don't do the object
799  * creation or open until ll_lov_setstripe() ioctl is called.
800  *
801  * If we already have the stripe MD locally then we don't request it in
802  * md_open(), by passing a lmm_size = 0.
803  *
804  * It is up to the application to ensure no other processes open this file
805  * in the O_LOV_DELAY_CREATE case, or the default striping pattern will be
806  * used.  We might be able to avoid races of that sort by getting lli_open_sem
807  * before returning in the O_LOV_DELAY_CREATE case and dropping it here
808  * or in ll_file_release(), but I'm not sure that is desirable/necessary.
809  */
810 int ll_file_open(struct inode *inode, struct file *file)
811 {
812         struct ll_inode_info *lli = ll_i2info(inode);
813         struct lookup_intent *it, oit = { .it_op = IT_OPEN,
814                                           .it_flags = file->f_flags };
815         struct obd_client_handle **och_p = NULL;
816         __u64 *och_usecount = NULL;
817         struct ll_file_data *fd;
818         ktime_t kstart = ktime_get();
819         int rc = 0;
820         ENTRY;
821
822         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), flags %o\n",
823                PFID(ll_inode2fid(inode)), inode, file->f_flags);
824
825         it = file->private_data; /* XXX: compat macro */
826         file->private_data = NULL; /* prevent ll_local_open assertion */
827
828         if (S_ISREG(inode->i_mode)) {
829                 rc = ll_file_open_encrypt(inode, file);
830                 if (rc) {
831                         if (it && it->it_disposition)
832                                 ll_release_openhandle(file_dentry(file), it);
833                         GOTO(out_nofiledata, rc);
834                 }
835         }
836
837         fd = ll_file_data_get();
838         if (fd == NULL)
839                 GOTO(out_nofiledata, rc = -ENOMEM);
840
841         fd->fd_file = file;
842         if (S_ISDIR(inode->i_mode))
843                 ll_authorize_statahead(inode, fd);
844
845         ll_track_file_opens(inode);
846         if (is_root_inode(inode)) {
847                 file->private_data = fd;
848                 RETURN(0);
849         }
850
851         if (!it || !it->it_disposition) {
852                 /* Convert f_flags into access mode. We cannot use file->f_mode,
853                  * because everything but O_ACCMODE mask was stripped from
854                  * there */
855                 if ((oit.it_flags + 1) & O_ACCMODE)
856                         oit.it_flags++;
857                 if (file->f_flags & O_TRUNC)
858                         oit.it_flags |= FMODE_WRITE;
859
860                 /* kernel only call f_op->open in dentry_open.  filp_open calls
861                  * dentry_open after call to open_namei that checks permissions.
862                  * Only nfsd_open call dentry_open directly without checking
863                  * permissions and because of that this code below is safe.
864                  */
865                 if (oit.it_flags & (FMODE_WRITE | FMODE_READ))
866                         oit.it_flags |= MDS_OPEN_OWNEROVERRIDE;
867
868                 /* We do not want O_EXCL here, presumably we opened the file
869                  * already? XXX - NFS implications? */
870                 oit.it_flags &= ~O_EXCL;
871
872                 /* bug20584, if "it_flags" contains O_CREAT, the file will be
873                  * created if necessary, then "IT_CREAT" should be set to keep
874                  * consistent with it */
875                 if (oit.it_flags & O_CREAT)
876                         oit.it_op |= IT_CREAT;
877
878                 it = &oit;
879         }
880
881 restart:
882         /* Let's see if we have file open on MDS already. */
883         if (it->it_flags & FMODE_WRITE) {
884                 och_p = &lli->lli_mds_write_och;
885                 och_usecount = &lli->lli_open_fd_write_count;
886         } else if (it->it_flags & FMODE_EXEC) {
887                 och_p = &lli->lli_mds_exec_och;
888                 och_usecount = &lli->lli_open_fd_exec_count;
889         } else {
890                 och_p = &lli->lli_mds_read_och;
891                 och_usecount = &lli->lli_open_fd_read_count;
892         }
893
894         mutex_lock(&lli->lli_och_mutex);
895         if (*och_p) { /* Open handle is present */
896                 if (it_disposition(it, DISP_OPEN_OPEN)) {
897                         /* Well, there's extra open request that we do not need,
898                          * let's close it somehow. This will decref request. */
899                         rc = it_open_error(DISP_OPEN_OPEN, it);
900                         if (rc) {
901                                 mutex_unlock(&lli->lli_och_mutex);
902                                 GOTO(out_openerr, rc);
903                         }
904
905                         ll_release_openhandle(file_dentry(file), it);
906                 }
907                 (*och_usecount)++;
908
909                 rc = ll_local_open(file, it, fd, NULL);
910                 if (rc) {
911                         (*och_usecount)--;
912                         mutex_unlock(&lli->lli_och_mutex);
913                         GOTO(out_openerr, rc);
914                 }
915         } else {
916                 LASSERT(*och_usecount == 0);
917                 if (!it->it_disposition) {
918                         struct dentry *dentry = file_dentry(file);
919                         struct ll_sb_info *sbi = ll_i2sbi(inode);
920                         struct ll_dentry_data *ldd;
921
922                         /* We cannot just request lock handle now, new ELC code
923                          * means that one of other OPEN locks for this file
924                          * could be cancelled, and since blocking ast handler
925                          * would attempt to grab och_mutex as well, that would
926                          * result in a deadlock
927                          */
928                         mutex_unlock(&lli->lli_och_mutex);
929                         /*
930                          * Normally called under two situations:
931                          * 1. NFS export.
932                          * 2. A race/condition on MDS resulting in no open
933                          *    handle to be returned from LOOKUP|OPEN request,
934                          *    for example if the target entry was a symlink.
935                          *
936                          * In NFS path we know there's pathologic behavior
937                          * so we always enable open lock caching when coming
938                          * from there. It's detected by setting a flag in
939                          * ll_iget_for_nfs.
940                          *
941                          * After reaching number of opens of this inode
942                          * we always ask for an open lock on it to handle
943                          * bad userspace actors that open and close files
944                          * in a loop for absolutely no good reason
945                          */
946
947                         ldd = ll_d2d(dentry);
948                         if (filename_is_volatile(dentry->d_name.name,
949                                                  dentry->d_name.len,
950                                                  NULL)) {
951                                 /* There really is nothing here, but this
952                                  * make this more readable I think.
953                                  * We do not want openlock for volatile
954                                  * files under any circumstances
955                                  */
956                         } else if (ldd && ldd->lld_nfs_dentry) {
957                                 /* NFS path. This also happens to catch
958                                  * open by fh files I guess
959                                  */
960                                 it->it_flags |= MDS_OPEN_LOCK;
961                                 /* clear the flag for future lookups */
962                                 ldd->lld_nfs_dentry = 0;
963                         } else if (sbi->ll_oc_thrsh_count > 0) {
964                                 /* Take MDS_OPEN_LOCK with many opens */
965                                 if (lli->lli_open_fd_count >=
966                                     sbi->ll_oc_thrsh_count)
967                                         it->it_flags |= MDS_OPEN_LOCK;
968
969                                 /* If this is open after we just closed */
970                                 else if (ktime_before(ktime_get(),
971                                             ktime_add_ms(lli->lli_close_fd_time,
972                                                          sbi->ll_oc_thrsh_ms)))
973                                         it->it_flags |= MDS_OPEN_LOCK;
974                         }
975
976                         /*
977                          * Always specify MDS_OPEN_BY_FID because we don't want
978                          * to get file with different fid.
979                          */
980                         it->it_flags |= MDS_OPEN_BY_FID;
981                         rc = ll_intent_file_open(dentry, NULL, 0, it);
982                         if (rc)
983                                 GOTO(out_openerr, rc);
984
985                         goto restart;
986                 }
987                 OBD_ALLOC(*och_p, sizeof(struct obd_client_handle));
988                 if (!*och_p)
989                         GOTO(out_och_free, rc = -ENOMEM);
990
991                 (*och_usecount)++;
992
993                 /* md_intent_lock() didn't get a request ref if there was an
994                  * open error, so don't do cleanup on the request here
995                  * (bug 3430) */
996                 /* XXX (green): Should not we bail out on any error here, not
997                  * just open error? */
998                 rc = it_open_error(DISP_OPEN_OPEN, it);
999                 if (rc != 0)
1000                         GOTO(out_och_free, rc);
1001
1002                 LASSERTF(it_disposition(it, DISP_ENQ_OPEN_REF),
1003                          "inode %p: disposition %x, status %d\n", inode,
1004                          it_disposition(it, ~0), it->it_status);
1005
1006                 rc = ll_local_open(file, it, fd, *och_p);
1007                 if (rc)
1008                         GOTO(out_och_free, rc);
1009         }
1010
1011         rc = pcc_file_open(inode, file);
1012         if (rc)
1013                 GOTO(out_och_free, rc);
1014
1015         mutex_unlock(&lli->lli_och_mutex);
1016
1017         fd = NULL;
1018
1019         /* Must do this outside lli_och_mutex lock to prevent deadlock where
1020            different kind of OPEN lock for this same inode gets cancelled
1021            by ldlm_cancel_lru */
1022         if (!S_ISREG(inode->i_mode))
1023                 GOTO(out_och_free, rc);
1024         cl_lov_delay_create_clear(&file->f_flags);
1025         GOTO(out_och_free, rc);
1026
1027 out_och_free:
1028         if (rc) {
1029                 if (och_p && *och_p) {
1030                         OBD_FREE(*och_p, sizeof(struct obd_client_handle));
1031                         *och_p = NULL; /* OBD_FREE writes some magic there */
1032                         (*och_usecount)--;
1033                 }
1034                 mutex_unlock(&lli->lli_och_mutex);
1035
1036 out_openerr:
1037                 if (lli->lli_opendir_key == fd)
1038                         ll_deauthorize_statahead(inode, fd);
1039
1040                 if (fd != NULL)
1041                         ll_file_data_put(fd);
1042         } else {
1043                 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_OPEN,
1044                                    ktime_us_delta(ktime_get(), kstart));
1045         }
1046
1047 out_nofiledata:
1048         if (it && it_disposition(it, DISP_ENQ_OPEN_REF)) {
1049                 ptlrpc_req_finished(it->it_request);
1050                 it_clear_disposition(it, DISP_ENQ_OPEN_REF);
1051         }
1052
1053         return rc;
1054 }
1055
1056 static int ll_md_blocking_lease_ast(struct ldlm_lock *lock,
1057                         struct ldlm_lock_desc *desc, void *data, int flag)
1058 {
1059         int rc;
1060         struct lustre_handle lockh;
1061         ENTRY;
1062
1063         switch (flag) {
1064         case LDLM_CB_BLOCKING:
1065                 ldlm_lock2handle(lock, &lockh);
1066                 rc = ldlm_cli_cancel(&lockh, LCF_ASYNC);
1067                 if (rc < 0) {
1068                         CDEBUG(D_INODE, "ldlm_cli_cancel: %d\n", rc);
1069                         RETURN(rc);
1070                 }
1071                 break;
1072         case LDLM_CB_CANCELING:
1073                 /* do nothing */
1074                 break;
1075         }
1076         RETURN(0);
1077 }
1078
1079 /**
1080  * When setting a lease on a file, we take ownership of the lli_mds_*_och
1081  * and save it as fd->fd_och so as to force client to reopen the file even
1082  * if it has an open lock in cache already.
1083  */
1084 static int ll_lease_och_acquire(struct inode *inode, struct file *file,
1085                                 struct lustre_handle *old_open_handle)
1086 {
1087         struct ll_inode_info *lli = ll_i2info(inode);
1088         struct ll_file_data *fd = file->private_data;
1089         struct obd_client_handle **och_p;
1090         __u64 *och_usecount;
1091         int rc = 0;
1092         ENTRY;
1093
1094         /* Get the openhandle of the file */
1095         mutex_lock(&lli->lli_och_mutex);
1096         if (fd->fd_lease_och != NULL)
1097                 GOTO(out_unlock, rc = -EBUSY);
1098
1099         if (fd->fd_och == NULL) {
1100                 if (file->f_mode & FMODE_WRITE) {
1101                         LASSERT(lli->lli_mds_write_och != NULL);
1102                         och_p = &lli->lli_mds_write_och;
1103                         och_usecount = &lli->lli_open_fd_write_count;
1104                 } else {
1105                         LASSERT(lli->lli_mds_read_och != NULL);
1106                         och_p = &lli->lli_mds_read_och;
1107                         och_usecount = &lli->lli_open_fd_read_count;
1108                 }
1109
1110                 if (*och_usecount > 1)
1111                         GOTO(out_unlock, rc = -EBUSY);
1112
1113                 fd->fd_och = *och_p;
1114                 *och_usecount = 0;
1115                 *och_p = NULL;
1116         }
1117
1118         *old_open_handle = fd->fd_och->och_open_handle;
1119
1120         EXIT;
1121 out_unlock:
1122         mutex_unlock(&lli->lli_och_mutex);
1123         return rc;
1124 }
1125
1126 /**
1127  * Release ownership on lli_mds_*_och when putting back a file lease.
1128  */
1129 static int ll_lease_och_release(struct inode *inode, struct file *file)
1130 {
1131         struct ll_inode_info *lli = ll_i2info(inode);
1132         struct ll_file_data *fd = file->private_data;
1133         struct obd_client_handle **och_p;
1134         struct obd_client_handle *old_och = NULL;
1135         __u64 *och_usecount;
1136         int rc = 0;
1137         ENTRY;
1138
1139         mutex_lock(&lli->lli_och_mutex);
1140         if (file->f_mode & FMODE_WRITE) {
1141                 och_p = &lli->lli_mds_write_och;
1142                 och_usecount = &lli->lli_open_fd_write_count;
1143         } else {
1144                 och_p = &lli->lli_mds_read_och;
1145                 och_usecount = &lli->lli_open_fd_read_count;
1146         }
1147
1148         /* The file may have been open by another process (broken lease) so
1149          * *och_p is not NULL. In this case we should simply increase usecount
1150          * and close fd_och.
1151          */
1152         if (*och_p != NULL) {
1153                 old_och = fd->fd_och;
1154                 (*och_usecount)++;
1155         } else {
1156                 *och_p = fd->fd_och;
1157                 *och_usecount = 1;
1158         }
1159         fd->fd_och = NULL;
1160         mutex_unlock(&lli->lli_och_mutex);
1161
1162         if (old_och != NULL)
1163                 rc = ll_close_inode_openhandle(inode, old_och, 0, NULL);
1164
1165         RETURN(rc);
1166 }
1167
1168 /**
1169  * Acquire a lease and open the file.
1170  */
1171 static struct obd_client_handle *
1172 ll_lease_open(struct inode *inode, struct file *file, fmode_t fmode,
1173               __u64 open_flags)
1174 {
1175         struct lookup_intent it = { .it_op = IT_OPEN };
1176         struct ll_sb_info *sbi = ll_i2sbi(inode);
1177         struct md_op_data *op_data;
1178         struct ptlrpc_request *req = NULL;
1179         struct lustre_handle old_open_handle = { 0 };
1180         struct obd_client_handle *och = NULL;
1181         int rc;
1182         int rc2;
1183         ENTRY;
1184
1185         if (fmode != FMODE_WRITE && fmode != FMODE_READ)
1186                 RETURN(ERR_PTR(-EINVAL));
1187
1188         if (file != NULL) {
1189                 if (!(fmode & file->f_mode) || (file->f_mode & FMODE_EXEC))
1190                         RETURN(ERR_PTR(-EPERM));
1191
1192                 rc = ll_lease_och_acquire(inode, file, &old_open_handle);
1193                 if (rc)
1194                         RETURN(ERR_PTR(rc));
1195         }
1196
1197         OBD_ALLOC_PTR(och);
1198         if (och == NULL)
1199                 RETURN(ERR_PTR(-ENOMEM));
1200
1201         op_data = ll_prep_md_op_data(NULL, inode, inode, NULL, 0, 0,
1202                                         LUSTRE_OPC_ANY, NULL);
1203         if (IS_ERR(op_data))
1204                 GOTO(out, rc = PTR_ERR(op_data));
1205
1206         /* To tell the MDT this openhandle is from the same owner */
1207         op_data->op_open_handle = old_open_handle;
1208
1209         it.it_flags = fmode | open_flags;
1210         it.it_flags |= MDS_OPEN_LOCK | MDS_OPEN_BY_FID | MDS_OPEN_LEASE;
1211         rc = md_intent_lock(sbi->ll_md_exp, op_data, &it, &req,
1212                             &ll_md_blocking_lease_ast,
1213         /* LDLM_FL_NO_LRU: To not put the lease lock into LRU list, otherwise
1214          * it can be cancelled which may mislead applications that the lease is
1215          * broken;
1216          * LDLM_FL_EXCL: Set this flag so that it won't be matched by normal
1217          * open in ll_md_blocking_ast(). Otherwise as ll_md_blocking_lease_ast
1218          * doesn't deal with openhandle, so normal openhandle will be leaked. */
1219                             LDLM_FL_NO_LRU | LDLM_FL_EXCL);
1220         ll_finish_md_op_data(op_data);
1221         ptlrpc_req_finished(req);
1222         if (rc < 0)
1223                 GOTO(out_release_it, rc);
1224
1225         if (it_disposition(&it, DISP_LOOKUP_NEG))
1226                 GOTO(out_release_it, rc = -ENOENT);
1227
1228         rc = it_open_error(DISP_OPEN_OPEN, &it);
1229         if (rc)
1230                 GOTO(out_release_it, rc);
1231
1232         LASSERT(it_disposition(&it, DISP_ENQ_OPEN_REF));
1233         rc = ll_och_fill(sbi->ll_md_exp, &it, och);
1234         if (rc)
1235                 GOTO(out_release_it, rc);
1236
1237         if (!it_disposition(&it, DISP_OPEN_LEASE)) /* old server? */
1238                 GOTO(out_close, rc = -EOPNOTSUPP);
1239
1240         /* already get lease, handle lease lock */
1241         ll_set_lock_data(sbi->ll_md_exp, inode, &it, NULL);
1242         if (!it.it_lock_mode ||
1243             !(it.it_lock_bits & MDS_INODELOCK_OPEN)) {
1244                 /* open lock must return for lease */
1245                 CERROR(DFID "lease granted but no open lock, %d/%llu.\n",
1246                         PFID(ll_inode2fid(inode)), it.it_lock_mode,
1247                         it.it_lock_bits);
1248                 GOTO(out_close, rc = -EPROTO);
1249         }
1250
1251         ll_intent_release(&it);
1252         RETURN(och);
1253
1254 out_close:
1255         /* Cancel open lock */
1256         if (it.it_lock_mode != 0) {
1257                 ldlm_lock_decref_and_cancel(&och->och_lease_handle,
1258                                             it.it_lock_mode);
1259                 it.it_lock_mode = 0;
1260                 och->och_lease_handle.cookie = 0ULL;
1261         }
1262         rc2 = ll_close_inode_openhandle(inode, och, 0, NULL);
1263         if (rc2 < 0)
1264                 CERROR("%s: error closing file "DFID": %d\n",
1265                        sbi->ll_fsname, PFID(&ll_i2info(inode)->lli_fid), rc2);
1266         och = NULL; /* och has been freed in ll_close_inode_openhandle() */
1267 out_release_it:
1268         ll_intent_release(&it);
1269 out:
1270         if (och != NULL)
1271                 OBD_FREE_PTR(och);
1272         RETURN(ERR_PTR(rc));
1273 }
1274
1275 /**
1276  * Check whether a layout swap can be done between two inodes.
1277  *
1278  * \param[in] inode1  First inode to check
1279  * \param[in] inode2  Second inode to check
1280  *
1281  * \retval 0 on success, layout swap can be performed between both inodes
1282  * \retval negative error code if requirements are not met
1283  */
1284 static int ll_check_swap_layouts_validity(struct inode *inode1,
1285                                           struct inode *inode2)
1286 {
1287         if (!S_ISREG(inode1->i_mode) || !S_ISREG(inode2->i_mode))
1288                 return -EINVAL;
1289
1290         if (inode_permission(&init_user_ns, inode1, MAY_WRITE) ||
1291             inode_permission(&init_user_ns, inode2, MAY_WRITE))
1292                 return -EPERM;
1293
1294         if (inode1->i_sb != inode2->i_sb)
1295                 return -EXDEV;
1296
1297         return 0;
1298 }
1299
1300 static int ll_swap_layouts_close(struct obd_client_handle *och,
1301                                  struct inode *inode, struct inode *inode2)
1302 {
1303         const struct lu_fid     *fid1 = ll_inode2fid(inode);
1304         const struct lu_fid     *fid2;
1305         int                      rc;
1306         ENTRY;
1307
1308         CDEBUG(D_INODE, "%s: biased close of file "DFID"\n",
1309                ll_i2sbi(inode)->ll_fsname, PFID(fid1));
1310
1311         rc = ll_check_swap_layouts_validity(inode, inode2);
1312         if (rc < 0)
1313                 GOTO(out_free_och, rc);
1314
1315         /* We now know that inode2 is a lustre inode */
1316         fid2 = ll_inode2fid(inode2);
1317
1318         rc = lu_fid_cmp(fid1, fid2);
1319         if (rc == 0)
1320                 GOTO(out_free_och, rc = -EINVAL);
1321
1322         /* Close the file and {swap,merge} layouts between inode & inode2.
1323          * NB: lease lock handle is released in mdc_close_layout_swap_pack()
1324          * because we still need it to pack l_remote_handle to MDT. */
1325         rc = ll_close_inode_openhandle(inode, och, MDS_CLOSE_LAYOUT_SWAP,
1326                                        inode2);
1327
1328         och = NULL; /* freed in ll_close_inode_openhandle() */
1329
1330 out_free_och:
1331         if (och != NULL)
1332                 OBD_FREE_PTR(och);
1333
1334         RETURN(rc);
1335 }
1336
1337 /**
1338  * Release lease and close the file.
1339  * It will check if the lease has ever broken.
1340  */
1341 static int ll_lease_close_intent(struct obd_client_handle *och,
1342                                  struct inode *inode,
1343                                  bool *lease_broken, enum mds_op_bias bias,
1344                                  void *data)
1345 {
1346         struct ldlm_lock *lock;
1347         bool cancelled = true;
1348         int rc;
1349         ENTRY;
1350
1351         lock = ldlm_handle2lock(&och->och_lease_handle);
1352         if (lock != NULL) {
1353                 lock_res_and_lock(lock);
1354                 cancelled = ldlm_is_cancel(lock);
1355                 unlock_res_and_lock(lock);
1356                 LDLM_LOCK_PUT(lock);
1357         }
1358
1359         CDEBUG(D_INODE, "lease for "DFID" broken? %d, bias: %x\n",
1360                PFID(&ll_i2info(inode)->lli_fid), cancelled, bias);
1361
1362         if (lease_broken != NULL)
1363                 *lease_broken = cancelled;
1364
1365         if (!cancelled && !bias)
1366                 ldlm_cli_cancel(&och->och_lease_handle, 0);
1367
1368         if (cancelled) { /* no need to excute intent */
1369                 bias = 0;
1370                 data = NULL;
1371         }
1372
1373         rc = ll_close_inode_openhandle(inode, och, bias, data);
1374         RETURN(rc);
1375 }
1376
1377 static int ll_lease_close(struct obd_client_handle *och, struct inode *inode,
1378                           bool *lease_broken)
1379 {
1380         return ll_lease_close_intent(och, inode, lease_broken, 0, NULL);
1381 }
1382
1383 /**
1384  * After lease is taken, send the RPC MDS_REINT_RESYNC to the MDT
1385  */
1386 static int ll_lease_file_resync(struct obd_client_handle *och,
1387                                 struct inode *inode, unsigned long arg)
1388 {
1389         struct ll_sb_info *sbi = ll_i2sbi(inode);
1390         struct md_op_data *op_data;
1391         struct ll_ioc_lease_id ioc;
1392         __u64 data_version_unused;
1393         int rc;
1394         ENTRY;
1395
1396         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
1397                                      LUSTRE_OPC_ANY, NULL);
1398         if (IS_ERR(op_data))
1399                 RETURN(PTR_ERR(op_data));
1400
1401         if (copy_from_user(&ioc, (struct ll_ioc_lease_id __user *)arg,
1402                            sizeof(ioc)))
1403                 RETURN(-EFAULT);
1404
1405         /* before starting file resync, it's necessary to clean up page cache
1406          * in client memory, otherwise once the layout version is increased,
1407          * writing back cached data will be denied the OSTs. */
1408         rc = ll_data_version(inode, &data_version_unused, LL_DV_WR_FLUSH);
1409         if (rc)
1410                 GOTO(out, rc);
1411
1412         op_data->op_lease_handle = och->och_lease_handle;
1413         op_data->op_mirror_id = ioc.lil_mirror_id;
1414         rc = md_file_resync(sbi->ll_md_exp, op_data);
1415         if (rc)
1416                 GOTO(out, rc);
1417
1418         EXIT;
1419 out:
1420         ll_finish_md_op_data(op_data);
1421         return rc;
1422 }
1423
1424 int ll_merge_attr(const struct lu_env *env, struct inode *inode)
1425 {
1426         struct ll_inode_info *lli = ll_i2info(inode);
1427         struct cl_object *obj = lli->lli_clob;
1428         struct cl_attr *attr = vvp_env_thread_attr(env);
1429         s64 atime;
1430         s64 mtime;
1431         s64 ctime;
1432         int rc = 0;
1433
1434         ENTRY;
1435
1436         ll_inode_size_lock(inode);
1437
1438         /* Merge timestamps the most recently obtained from MDS with
1439          * timestamps obtained from OSTs.
1440          *
1441          * Do not overwrite atime of inode because it may be refreshed
1442          * by file_accessed() function. If the read was served by cache
1443          * data, there is no RPC to be sent so that atime may not be
1444          * transferred to OSTs at all. MDT only updates atime at close time
1445          * if it's at least 'mdd.*.atime_diff' older.
1446          * All in all, the atime in Lustre does not strictly comply with
1447          * POSIX. Solving this problem needs to send an RPC to MDT for each
1448          * read, this will hurt performance.
1449          */
1450         if (test_and_clear_bit(LLIF_UPDATE_ATIME, &lli->lli_flags) ||
1451             inode->i_atime.tv_sec < lli->lli_atime)
1452                 inode->i_atime.tv_sec = lli->lli_atime;
1453
1454         inode->i_mtime.tv_sec = lli->lli_mtime;
1455         inode->i_ctime.tv_sec = lli->lli_ctime;
1456
1457         mtime = inode->i_mtime.tv_sec;
1458         atime = inode->i_atime.tv_sec;
1459         ctime = inode->i_ctime.tv_sec;
1460
1461         cl_object_attr_lock(obj);
1462         if (OBD_FAIL_CHECK(OBD_FAIL_MDC_MERGE))
1463                 rc = -EINVAL;
1464         else
1465                 rc = cl_object_attr_get(env, obj, attr);
1466         cl_object_attr_unlock(obj);
1467
1468         if (rc != 0)
1469                 GOTO(out_size_unlock, rc = (rc == -ENODATA ? 0 : rc));
1470
1471         if (atime < attr->cat_atime)
1472                 atime = attr->cat_atime;
1473
1474         if (ctime < attr->cat_ctime)
1475                 ctime = attr->cat_ctime;
1476
1477         if (mtime < attr->cat_mtime)
1478                 mtime = attr->cat_mtime;
1479
1480         CDEBUG(D_VFSTRACE, DFID" updating i_size %llu\n",
1481                PFID(&lli->lli_fid), attr->cat_size);
1482
1483         if (llcrypt_require_key(inode) == -ENOKEY) {
1484                 /* Without the key, round up encrypted file size to next
1485                  * LUSTRE_ENCRYPTION_UNIT_SIZE. Clear text size is put in
1486                  * lli_lazysize for proper file size setting at close time.
1487                  */
1488                 lli->lli_attr_valid |= OBD_MD_FLLAZYSIZE;
1489                 lli->lli_lazysize = attr->cat_size;
1490                 attr->cat_size = round_up(attr->cat_size,
1491                                           LUSTRE_ENCRYPTION_UNIT_SIZE);
1492         }
1493         i_size_write(inode, attr->cat_size);
1494         inode->i_blocks = attr->cat_blocks;
1495
1496         inode->i_mtime.tv_sec = mtime;
1497         inode->i_atime.tv_sec = atime;
1498         inode->i_ctime.tv_sec = ctime;
1499
1500 out_size_unlock:
1501         ll_inode_size_unlock(inode);
1502
1503         RETURN(rc);
1504 }
1505
1506 /**
1507  * Set designated mirror for I/O.
1508  *
1509  * So far only read, write, and truncated can support to issue I/O to
1510  * designated mirror.
1511  */
1512 void ll_io_set_mirror(struct cl_io *io, const struct file *file)
1513 {
1514         struct ll_file_data *fd = file->private_data;
1515
1516         /* clear layout version for generic(non-resync) I/O in case it carries
1517          * stale layout version due to I/O restart */
1518         io->ci_layout_version = 0;
1519
1520         /* FLR: disable non-delay for designated mirror I/O because obviously
1521          * only one mirror is available */
1522         if (fd->fd_designated_mirror > 0) {
1523                 io->ci_ndelay = 0;
1524                 io->ci_designated_mirror = fd->fd_designated_mirror;
1525                 io->ci_layout_version = fd->fd_layout_version;
1526         }
1527
1528         CDEBUG(D_VFSTRACE, "%s: desiginated mirror: %d\n",
1529                file->f_path.dentry->d_name.name, io->ci_designated_mirror);
1530 }
1531
1532 static bool file_is_noatime(const struct file *file)
1533 {
1534         const struct vfsmount *mnt = file->f_path.mnt;
1535         const struct inode *inode = file_inode((struct file *)file);
1536
1537         /* Adapted from file_accessed() and touch_atime().*/
1538         if (file->f_flags & O_NOATIME)
1539                 return true;
1540
1541         if (inode->i_flags & S_NOATIME)
1542                 return true;
1543
1544         if (IS_NOATIME(inode))
1545                 return true;
1546
1547         if (mnt->mnt_flags & (MNT_NOATIME | MNT_READONLY))
1548                 return true;
1549
1550         if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode))
1551                 return true;
1552
1553         if ((inode->i_sb->s_flags & SB_NODIRATIME) && S_ISDIR(inode->i_mode))
1554                 return true;
1555
1556         return false;
1557 }
1558
1559 void ll_io_init(struct cl_io *io, struct file *file, enum cl_io_type iot,
1560                 struct vvp_io_args *args)
1561 {
1562         struct inode *inode = file_inode(file);
1563         struct ll_file_data *fd  = file->private_data;
1564
1565         io->u.ci_rw.crw_nonblock = file->f_flags & O_NONBLOCK;
1566         io->ci_lock_no_expand = fd->ll_lock_no_expand;
1567
1568         if (iot == CIT_WRITE) {
1569                 io->u.ci_wr.wr_append = !!(file->f_flags & O_APPEND);
1570                 io->u.ci_wr.wr_sync   = !!(file->f_flags & O_SYNC ||
1571                                            file->f_flags & O_DIRECT ||
1572                                            IS_SYNC(inode));
1573 #ifdef HAVE_GENERIC_WRITE_SYNC_2ARGS
1574                 io->u.ci_wr.wr_sync  |= !!(args &&
1575                                            (args->u.normal.via_iocb->ki_flags &
1576                                             IOCB_DSYNC));
1577 #endif
1578         }
1579
1580 #ifdef IOCB_NOWAIT
1581         io->ci_iocb_nowait = !!(args &&
1582                                 (args->u.normal.via_iocb->ki_flags &
1583                                  IOCB_NOWAIT));
1584 #endif
1585
1586         io->ci_obj = ll_i2info(inode)->lli_clob;
1587         io->ci_lockreq = CILR_MAYBE;
1588         if (ll_file_nolock(file)) {
1589                 io->ci_lockreq = CILR_NEVER;
1590                 io->ci_no_srvlock = 1;
1591         } else if (file->f_flags & O_APPEND) {
1592                 io->ci_lockreq = CILR_MANDATORY;
1593         }
1594         io->ci_noatime = file_is_noatime(file);
1595         io->ci_async_readahead = false;
1596
1597         /* FLR: only use non-delay I/O for read as there is only one
1598          * avaliable mirror for write. */
1599         io->ci_ndelay = !(iot == CIT_WRITE);
1600
1601         ll_io_set_mirror(io, file);
1602 }
1603
1604 static void ll_heat_add(struct inode *inode, enum cl_io_type iot,
1605                         __u64 count)
1606 {
1607         struct ll_inode_info *lli = ll_i2info(inode);
1608         struct ll_sb_info *sbi = ll_i2sbi(inode);
1609         enum obd_heat_type sample_type;
1610         enum obd_heat_type iobyte_type;
1611         __u64 now = ktime_get_real_seconds();
1612
1613         if (!ll_sbi_has_file_heat(sbi) ||
1614             lli->lli_heat_flags & LU_HEAT_FLAG_OFF)
1615                 return;
1616
1617         if (iot == CIT_READ) {
1618                 sample_type = OBD_HEAT_READSAMPLE;
1619                 iobyte_type = OBD_HEAT_READBYTE;
1620         } else if (iot == CIT_WRITE) {
1621                 sample_type = OBD_HEAT_WRITESAMPLE;
1622                 iobyte_type = OBD_HEAT_WRITEBYTE;
1623         } else {
1624                 return;
1625         }
1626
1627         spin_lock(&lli->lli_heat_lock);
1628         obd_heat_add(&lli->lli_heat_instances[sample_type], now, 1,
1629                      sbi->ll_heat_decay_weight, sbi->ll_heat_period_second);
1630         obd_heat_add(&lli->lli_heat_instances[iobyte_type], now, count,
1631                      sbi->ll_heat_decay_weight, sbi->ll_heat_period_second);
1632         spin_unlock(&lli->lli_heat_lock);
1633 }
1634
1635 static ssize_t
1636 ll_file_io_generic(const struct lu_env *env, struct vvp_io_args *args,
1637                    struct file *file, enum cl_io_type iot,
1638                    loff_t *ppos, size_t count)
1639 {
1640         struct vvp_io *vio = vvp_env_io(env);
1641         struct inode *inode = file_inode(file);
1642         struct ll_inode_info *lli = ll_i2info(inode);
1643         struct ll_sb_info *sbi = ll_i2sbi(inode);
1644         struct ll_file_data *fd  = file->private_data;
1645         struct range_lock range;
1646         bool range_locked = false;
1647         struct cl_io *io;
1648         ssize_t result = 0;
1649         int rc = 0;
1650         int rc2 = 0;
1651         unsigned int retried = 0, dio_lock = 0;
1652         bool is_aio = false;
1653         bool is_parallel_dio = false;
1654         struct cl_dio_aio *ci_dio_aio = NULL;
1655         size_t per_bytes;
1656         bool partial_io = false;
1657         size_t max_io_pages, max_cached_pages;
1658
1659         ENTRY;
1660
1661         CDEBUG(D_VFSTRACE, "%s: %s ppos: %llu, count: %zu\n",
1662                 file_dentry(file)->d_name.name,
1663                 iot == CIT_READ ? "read" : "write", *ppos, count);
1664
1665         max_io_pages = PTLRPC_MAX_BRW_PAGES * OBD_MAX_RIF_DEFAULT;
1666         max_cached_pages = sbi->ll_cache->ccc_lru_max;
1667         if (max_io_pages > (max_cached_pages >> 2))
1668                 max_io_pages = max_cached_pages >> 2;
1669
1670         io = vvp_env_thread_io(env);
1671         if (file->f_flags & O_DIRECT) {
1672                 if (file->f_flags & O_APPEND)
1673                         dio_lock = 1;
1674                 if (!is_sync_kiocb(args->u.normal.via_iocb))
1675                         is_aio = true;
1676
1677                 /* the kernel does not support AIO on pipes, and parallel DIO
1678                  * uses part of the AIO path, so we must not do parallel dio
1679                  * to pipes
1680                  */
1681                 is_parallel_dio = !iov_iter_is_pipe(args->u.normal.via_iter) &&
1682                                !is_aio;
1683
1684                 if (!ll_sbi_has_parallel_dio(sbi))
1685                         is_parallel_dio = false;
1686
1687                 ci_dio_aio = cl_dio_aio_alloc(args->u.normal.via_iocb,
1688                                           ll_i2info(inode)->lli_clob, is_aio);
1689                 if (!ci_dio_aio)
1690                         GOTO(out, rc = -ENOMEM);
1691         }
1692
1693 restart:
1694         /**
1695          * IO block size need be aware of cached page limit, otherwise
1696          * if we have small max_cached_mb but large block IO issued, io
1697          * could not be finished and blocked whole client.
1698          */
1699         if (file->f_flags & O_DIRECT)
1700                 per_bytes = count;
1701         else
1702                 per_bytes = min(max_io_pages << PAGE_SHIFT, count);
1703         partial_io = per_bytes < count;
1704         io = vvp_env_thread_io(env);
1705         ll_io_init(io, file, iot, args);
1706         io->ci_dio_aio = ci_dio_aio;
1707         io->ci_dio_lock = dio_lock;
1708         io->ci_ndelay_tried = retried;
1709         io->ci_parallel_dio = is_parallel_dio;
1710
1711         if (cl_io_rw_init(env, io, iot, *ppos, per_bytes) == 0) {
1712                 if (file->f_flags & O_APPEND)
1713                         range_lock_init(&range, 0, LUSTRE_EOF);
1714                 else
1715                         range_lock_init(&range, *ppos, *ppos + per_bytes - 1);
1716
1717                 vio->vui_fd  = file->private_data;
1718                 vio->vui_iter = args->u.normal.via_iter;
1719                 vio->vui_iocb = args->u.normal.via_iocb;
1720                 /* Direct IO reads must also take range lock,
1721                  * or multiple reads will try to work on the same pages
1722                  * See LU-6227 for details.
1723                  */
1724                 if (((iot == CIT_WRITE) ||
1725                     (iot == CIT_READ && (file->f_flags & O_DIRECT))) &&
1726                     !(vio->vui_fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
1727                         CDEBUG(D_VFSTRACE, "Range lock "RL_FMT"\n",
1728                                RL_PARA(&range));
1729                         rc = range_lock(&lli->lli_write_tree, &range);
1730                         if (rc < 0)
1731                                 GOTO(out, rc);
1732
1733                         range_locked = true;
1734                 }
1735
1736                 ll_cl_add(inode, env, io, LCC_RW);
1737                 rc = cl_io_loop(env, io);
1738                 ll_cl_remove(inode, env);
1739         } else {
1740                 /* cl_io_rw_init() handled IO */
1741                 rc = io->ci_result;
1742         }
1743
1744         if (io->ci_dio_aio && !is_aio) {
1745                 struct cl_sync_io *anchor = &io->ci_dio_aio->cda_sync;
1746
1747                 /* for dio, EIOCBQUEUED is an implementation detail,
1748                  * and we don't return it to userspace
1749                  */
1750                 if (rc == -EIOCBQUEUED)
1751                         rc = 0;
1752
1753                 /* N/B: parallel DIO may be disabled during i/o submission;
1754                  * if that occurs, I/O shifts to sync, so it's all resolved
1755                  * before we get here, and this wait call completes
1756                  * immediately.
1757                  */
1758                 rc2 = cl_sync_io_wait_recycle(env, anchor, 0, 0);
1759                 if (rc2 < 0)
1760                         rc = rc2;
1761         }
1762
1763         if (range_locked) {
1764                 CDEBUG(D_VFSTRACE, "Range unlock "RL_FMT"\n",
1765                        RL_PARA(&range));
1766                 range_unlock(&lli->lli_write_tree, &range);
1767                         range_locked = false;
1768         }
1769
1770         /*
1771          * In order to move forward AIO, ci_nob was increased,
1772          * but that doesn't mean io have been finished, it just
1773          * means io have been submited, we will always return
1774          * EIOCBQUEUED to the caller, So we could only return
1775          * number of bytes in non-AIO case.
1776          */
1777         if (io->ci_nob > 0) {
1778                 if (!is_aio) {
1779                         if (rc2 == 0) {
1780                                 result += io->ci_nob;
1781                                 *ppos = io->u.ci_wr.wr.crw_pos; /* for splice */
1782                         } else if (rc2) {
1783                                 result = 0;
1784                         }
1785                 }
1786                 count -= io->ci_nob;
1787
1788                 /* prepare IO restart */
1789                 if (count > 0)
1790                         args->u.normal.via_iter = vio->vui_iter;
1791
1792                 if (partial_io) {
1793                         /**
1794                          * Reexpand iov count because it was zero
1795                          * after IO finish.
1796                          */
1797                         iov_iter_reexpand(vio->vui_iter, count);
1798                         if (per_bytes == io->ci_nob)
1799                                 io->ci_need_restart = 1;
1800                 }
1801         }
1802 out:
1803         cl_io_fini(env, io);
1804
1805         CDEBUG(D_VFSTRACE,
1806                "%s: %d io complete with rc: %d, result: %zd, restart: %d\n",
1807                file->f_path.dentry->d_name.name,
1808                iot, rc, result, io->ci_need_restart);
1809
1810         if ((rc == 0 || rc == -ENODATA || rc == -ENOLCK) &&
1811             count > 0 && io->ci_need_restart) {
1812                 CDEBUG(D_VFSTRACE,
1813                        "%s: restart %s from %lld, count: %zu, ret: %zd, rc: %d\n",
1814                        file_dentry(file)->d_name.name,
1815                        iot == CIT_READ ? "read" : "write",
1816                        *ppos, count, result, rc);
1817                 /* preserve the tried count for FLR */
1818                 retried = io->ci_ndelay_tried;
1819                 dio_lock = io->ci_dio_lock;
1820                 goto restart;
1821         }
1822
1823         if (io->ci_dio_aio) {
1824                 /*
1825                  * VFS will call aio_complete() if no -EIOCBQUEUED
1826                  * is returned for AIO, so we can not call aio_complete()
1827                  * in our end_io().
1828                  *
1829                  * NB: This is safe because the atomic_dec_and_lock  in
1830                  * cl_sync_io_init has implicit memory barriers, so this will
1831                  * be seen by whichever thread completes the DIO/AIO, even if
1832                  * it's not this one
1833                  */
1834                 if (rc != -EIOCBQUEUED)
1835                         io->ci_dio_aio->cda_no_aio_complete = 1;
1836                 /**
1837                  * Drop one extra reference so that end_io() could be
1838                  * called for this IO context, we could call it after
1839                  * we make sure all AIO requests have been proceed.
1840                  */
1841                 cl_sync_io_note(env, &io->ci_dio_aio->cda_sync,
1842                                 rc == -EIOCBQUEUED ? 0 : rc);
1843                 if (!is_aio) {
1844                         cl_dio_aio_free(env, io->ci_dio_aio, true);
1845                         io->ci_dio_aio = NULL;
1846                 }
1847         }
1848
1849         if (iot == CIT_READ) {
1850                 if (result > 0)
1851                         ll_stats_ops_tally(ll_i2sbi(inode),
1852                                            LPROC_LL_READ_BYTES, result);
1853         } else if (iot == CIT_WRITE) {
1854                 if (result > 0) {
1855                         ll_stats_ops_tally(ll_i2sbi(inode),
1856                                            LPROC_LL_WRITE_BYTES, result);
1857                         fd->fd_write_failed = false;
1858                 } else if (result == 0 && rc == 0) {
1859                         rc = io->ci_result;
1860                         if (rc < 0)
1861                                 fd->fd_write_failed = true;
1862                         else
1863                                 fd->fd_write_failed = false;
1864                 } else if (rc != -ERESTARTSYS) {
1865                         fd->fd_write_failed = true;
1866                 }
1867         }
1868
1869         CDEBUG(D_VFSTRACE, "iot: %d, result: %zd\n", iot, result);
1870         if (result > 0)
1871                 ll_heat_add(inode, iot, result);
1872
1873         RETURN(result > 0 ? result : rc);
1874 }
1875
1876 /**
1877  * The purpose of fast read is to overcome per I/O overhead and improve IOPS
1878  * especially for small I/O.
1879  *
1880  * To serve a read request, CLIO has to create and initialize a cl_io and
1881  * then request DLM lock. This has turned out to have siginificant overhead
1882  * and affects the performance of small I/O dramatically.
1883  *
1884  * It's not necessary to create a cl_io for each I/O. Under the help of read
1885  * ahead, most of the pages being read are already in memory cache and we can
1886  * read those pages directly because if the pages exist, the corresponding DLM
1887  * lock must exist so that page content must be valid.
1888  *
1889  * In fast read implementation, the llite speculatively finds and reads pages
1890  * in memory cache. There are three scenarios for fast read:
1891  *   - If the page exists and is uptodate, kernel VM will provide the data and
1892  *     CLIO won't be intervened;
1893  *   - If the page was brought into memory by read ahead, it will be exported
1894  *     and read ahead parameters will be updated;
1895  *   - Otherwise the page is not in memory, we can't do fast read. Therefore,
1896  *     it will go back and invoke normal read, i.e., a cl_io will be created
1897  *     and DLM lock will be requested.
1898  *
1899  * POSIX compliance: posix standard states that read is intended to be atomic.
1900  * Lustre read implementation is in line with Linux kernel read implementation
1901  * and neither of them complies with POSIX standard in this matter. Fast read
1902  * doesn't make the situation worse on single node but it may interleave write
1903  * results from multiple nodes due to short read handling in ll_file_aio_read().
1904  *
1905  * \param env - lu_env
1906  * \param iocb - kiocb from kernel
1907  * \param iter - user space buffers where the data will be copied
1908  *
1909  * \retval - number of bytes have been read, or error code if error occurred.
1910  */
1911 static ssize_t
1912 ll_do_fast_read(struct kiocb *iocb, struct iov_iter *iter)
1913 {
1914         ssize_t result;
1915
1916         if (!ll_sbi_has_fast_read(ll_i2sbi(file_inode(iocb->ki_filp))))
1917                 return 0;
1918
1919         /* NB: we can't do direct IO for fast read because it will need a lock
1920          * to make IO engine happy. */
1921         if (iocb->ki_filp->f_flags & O_DIRECT)
1922                 return 0;
1923
1924         result = generic_file_read_iter(iocb, iter);
1925
1926         /* If the first page is not in cache, generic_file_aio_read() will be
1927          * returned with -ENODATA.
1928          * See corresponding code in ll_readpage(). */
1929         if (result == -ENODATA)
1930                 result = 0;
1931
1932         if (result > 0) {
1933                 ll_heat_add(file_inode(iocb->ki_filp), CIT_READ, result);
1934                 ll_stats_ops_tally(ll_i2sbi(file_inode(iocb->ki_filp)),
1935                                    LPROC_LL_READ_BYTES, result);
1936         }
1937
1938         return result;
1939 }
1940
1941 /*
1942  * Read from a file (through the page cache).
1943  */
1944 static ssize_t ll_file_read_iter(struct kiocb *iocb, struct iov_iter *to)
1945 {
1946         struct lu_env *env;
1947         struct vvp_io_args *args;
1948         struct file *file = iocb->ki_filp;
1949         ssize_t result;
1950         ssize_t rc2;
1951         __u16 refcheck;
1952         ktime_t kstart = ktime_get();
1953         bool cached;
1954
1955         ENTRY;
1956
1957         CDEBUG(D_VFSTRACE|D_IOTRACE, "file %s:"DFID", ppos: %lld, count: %zu\n",
1958                file_dentry(file)->d_name.name,
1959                PFID(ll_inode2fid(file_inode(file))), iocb->ki_pos,
1960                iov_iter_count(to));
1961
1962         if (!iov_iter_count(to))
1963                 RETURN(0);
1964
1965         /**
1966          * Currently when PCC read failed, we do not fall back to the
1967          * normal read path, just return the error.
1968          * The resaon is that: for RW-PCC, the file data may be modified
1969          * in the PCC and inconsistent with the data on OSTs (or file
1970          * data has been removed from the Lustre file system), at this
1971          * time, fallback to the normal read path may read the wrong
1972          * data.
1973          * TODO: for RO-PCC (readonly PCC), fall back to normal read
1974          * path: read data from data copy on OSTs.
1975          */
1976         result = pcc_file_read_iter(iocb, to, &cached);
1977         if (cached)
1978                 GOTO(out, result);
1979
1980         ll_ras_enter(file, iocb->ki_pos, iov_iter_count(to));
1981
1982         result = ll_do_fast_read(iocb, to);
1983         if (result < 0 || iov_iter_count(to) == 0)
1984                 GOTO(out, result);
1985
1986         env = cl_env_get(&refcheck);
1987         if (IS_ERR(env))
1988                 RETURN(PTR_ERR(env));
1989
1990         args = ll_env_args(env);
1991         args->u.normal.via_iter = to;
1992         args->u.normal.via_iocb = iocb;
1993
1994         rc2 = ll_file_io_generic(env, args, file, CIT_READ,
1995                                  &iocb->ki_pos, iov_iter_count(to));
1996         if (rc2 > 0)
1997                 result += rc2;
1998         else if (result == 0)
1999                 result = rc2;
2000
2001         cl_env_put(env, &refcheck);
2002 out:
2003         if (result > 0) {
2004                 ll_rw_stats_tally(ll_i2sbi(file_inode(file)), current->pid,
2005                                   file->private_data, iocb->ki_pos, result,
2006                                   READ);
2007                 ll_stats_ops_tally(ll_i2sbi(file_inode(file)), LPROC_LL_READ,
2008                                    ktime_us_delta(ktime_get(), kstart));
2009         }
2010
2011         CDEBUG(D_IOTRACE,
2012                "COMPLETED: file %s:"DFID", ppos: %lld, count: %zu\n",
2013                file_dentry(file)->d_name.name,
2014                PFID(ll_inode2fid(file_inode(file))), iocb->ki_pos,
2015                iov_iter_count(to));
2016
2017         RETURN(result);
2018 }
2019
2020 /**
2021  * Similar trick to ll_do_fast_read, this improves write speed for tiny writes.
2022  * If a page is already in the page cache and dirty (and some other things -
2023  * See ll_tiny_write_begin for the instantiation of these rules), then we can
2024  * write to it without doing a full I/O, because Lustre already knows about it
2025  * and will write it out.  This saves a lot of processing time.
2026  *
2027  * All writes here are within one page, so exclusion is handled by the page
2028  * lock on the vm page.  We do not do tiny writes for writes which touch
2029  * multiple pages because it's very unlikely multiple sequential pages are
2030  * are already dirty.
2031  *
2032  * We limit these to < PAGE_SIZE because PAGE_SIZE writes are relatively common
2033  * and are unlikely to be to already dirty pages.
2034  *
2035  * Attribute updates are important here, we do them in ll_tiny_write_end.
2036  */
2037 static ssize_t ll_do_tiny_write(struct kiocb *iocb, struct iov_iter *iter)
2038 {
2039         ssize_t count = iov_iter_count(iter);
2040         struct  file *file = iocb->ki_filp;
2041         struct  inode *inode = file_inode(file);
2042         bool    lock_inode = !IS_NOSEC(inode);
2043         ssize_t result = 0;
2044
2045         ENTRY;
2046
2047         /* Restrict writes to single page and < PAGE_SIZE.  See comment at top
2048          * of function for why.
2049          */
2050         if (count >= PAGE_SIZE ||
2051             (iocb->ki_pos & (PAGE_SIZE-1)) + count > PAGE_SIZE)
2052                 RETURN(0);
2053
2054         if (unlikely(lock_inode))
2055                 inode_lock(inode);
2056         result = __generic_file_write_iter(iocb, iter);
2057
2058         if (unlikely(lock_inode))
2059                 inode_unlock(inode);
2060
2061         /* If the page is not already dirty, ll_tiny_write_begin returns
2062          * -ENODATA.  We continue on to normal write.
2063          */
2064         if (result == -ENODATA)
2065                 result = 0;
2066
2067         if (result > 0) {
2068                 ll_heat_add(inode, CIT_WRITE, result);
2069                 set_bit(LLIF_DATA_MODIFIED, &ll_i2info(inode)->lli_flags);
2070         }
2071
2072         CDEBUG(D_VFSTRACE, "result: %zu, original count %zu\n", result, count);
2073
2074         RETURN(result);
2075 }
2076
2077 /*
2078  * Write to a file (through the page cache).
2079  */
2080 static ssize_t ll_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
2081 {
2082         struct vvp_io_args *args;
2083         struct lu_env *env;
2084         ssize_t rc_tiny = 0, rc_normal;
2085         struct file *file = iocb->ki_filp;
2086         __u16 refcheck;
2087         bool cached;
2088         ktime_t kstart = ktime_get();
2089         int result;
2090
2091         ENTRY;
2092
2093         CDEBUG(D_VFSTRACE|D_IOTRACE, "file %s:"DFID", ppos: %lld, count: %zu\n",
2094                file_dentry(file)->d_name.name,
2095                PFID(ll_inode2fid(file_inode(file))), iocb->ki_pos,
2096                iov_iter_count(from));
2097
2098         if (!iov_iter_count(from))
2099                 GOTO(out, rc_normal = 0);
2100
2101         /**
2102          * When PCC write failed, we usually do not fall back to the normal
2103          * write path, just return the error. But there is a special case when
2104          * returned error code is -ENOSPC due to running out of space on PCC HSM
2105          * bakcend. At this time, it will fall back to normal I/O path and
2106          * retry the I/O. As the file is in HSM released state, it will restore
2107          * the file data to OSTs first and redo the write again. And the
2108          * restore process will revoke the layout lock and detach the file
2109          * from PCC cache automatically.
2110          */
2111         result = pcc_file_write_iter(iocb, from, &cached);
2112         if (cached && result != -ENOSPC && result != -EDQUOT)
2113                 GOTO(out, rc_normal = result);
2114
2115         /* NB: we can't do direct IO for tiny writes because they use the page
2116          * cache, we can't do sync writes because tiny writes can't flush
2117          * pages, and we can't do append writes because we can't guarantee the
2118          * required DLM locks are held to protect file size.
2119          */
2120         if (ll_sbi_has_tiny_write(ll_i2sbi(file_inode(file))) &&
2121             !(file->f_flags & (O_DIRECT | O_SYNC | O_APPEND)))
2122                 rc_tiny = ll_do_tiny_write(iocb, from);
2123
2124         /* In case of error, go on and try normal write - Only stop if tiny
2125          * write completed I/O.
2126          */
2127         if (iov_iter_count(from) == 0)
2128                 GOTO(out, rc_normal = rc_tiny);
2129
2130         env = cl_env_get(&refcheck);
2131         if (IS_ERR(env))
2132                 RETURN(PTR_ERR(env));
2133
2134         args = ll_env_args(env);
2135         args->u.normal.via_iter = from;
2136         args->u.normal.via_iocb = iocb;
2137
2138         rc_normal = ll_file_io_generic(env, args, file, CIT_WRITE,
2139                                        &iocb->ki_pos, iov_iter_count(from));
2140
2141         /* On success, combine bytes written. */
2142         if (rc_tiny >= 0 && rc_normal > 0)
2143                 rc_normal += rc_tiny;
2144         /* On error, only return error from normal write if tiny write did not
2145          * write any bytes.  Otherwise return bytes written by tiny write.
2146          */
2147         else if (rc_tiny > 0)
2148                 rc_normal = rc_tiny;
2149
2150         cl_env_put(env, &refcheck);
2151 out:
2152         if (rc_normal > 0) {
2153                 ll_rw_stats_tally(ll_i2sbi(file_inode(file)), current->pid,
2154                                   file->private_data, iocb->ki_pos,
2155                                   rc_normal, WRITE);
2156                 ll_stats_ops_tally(ll_i2sbi(file_inode(file)), LPROC_LL_WRITE,
2157                                    ktime_us_delta(ktime_get(), kstart));
2158         }
2159
2160         CDEBUG(D_IOTRACE,
2161                "COMPLETED: file %s:"DFID", ppos: %lld, count: %zu\n",
2162                file_dentry(file)->d_name.name,
2163                PFID(ll_inode2fid(file_inode(file))), iocb->ki_pos,
2164                iov_iter_count(from));
2165
2166         RETURN(rc_normal);
2167 }
2168
2169 #ifndef HAVE_FILE_OPERATIONS_READ_WRITE_ITER
2170 /*
2171  * XXX: exact copy from kernel code (__generic_file_aio_write_nolock)
2172  */
2173 static int ll_file_get_iov_count(const struct iovec *iov,
2174                                  unsigned long *nr_segs, size_t *count,
2175                                  int access_flags)
2176 {
2177         size_t cnt = 0;
2178         unsigned long seg;
2179
2180         for (seg = 0; seg < *nr_segs; seg++) {
2181                 const struct iovec *iv = &iov[seg];
2182
2183                 /*
2184                  * If any segment has a negative length, or the cumulative
2185                  * length ever wraps negative then return -EINVAL.
2186                  */
2187                 cnt += iv->iov_len;
2188                 if (unlikely((ssize_t)(cnt|iv->iov_len) < 0))
2189                         return -EINVAL;
2190                 if (access_ok(access_flags, iv->iov_base, iv->iov_len))
2191                         continue;
2192                 if (seg == 0)
2193                         return -EFAULT;
2194                 *nr_segs = seg;
2195                 cnt -= iv->iov_len;     /* This segment is no good */
2196                 break;
2197         }
2198         *count = cnt;
2199         return 0;
2200 }
2201
2202 static ssize_t ll_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
2203                                 unsigned long nr_segs, loff_t pos)
2204 {
2205         struct iov_iter to;
2206         size_t iov_count;
2207         ssize_t result;
2208         ENTRY;
2209
2210         result = ll_file_get_iov_count(iov, &nr_segs, &iov_count, VERIFY_READ);
2211         if (result)
2212                 RETURN(result);
2213
2214         if (!iov_count)
2215                 RETURN(0);
2216
2217 # ifdef HAVE_IOV_ITER_INIT_DIRECTION
2218         iov_iter_init(&to, READ, iov, nr_segs, iov_count);
2219 # else /* !HAVE_IOV_ITER_INIT_DIRECTION */
2220         iov_iter_init(&to, iov, nr_segs, iov_count, 0);
2221 # endif /* HAVE_IOV_ITER_INIT_DIRECTION */
2222
2223         result = ll_file_read_iter(iocb, &to);
2224
2225         RETURN(result);
2226 }
2227
2228 static ssize_t ll_file_read(struct file *file, char __user *buf, size_t count,
2229                             loff_t *ppos)
2230 {
2231         struct iovec   iov = { .iov_base = buf, .iov_len = count };
2232         struct kiocb   kiocb;
2233         ssize_t        result;
2234
2235         ENTRY;
2236
2237         if (!count)
2238                 RETURN(0);
2239
2240         init_sync_kiocb(&kiocb, file);
2241         kiocb.ki_pos = *ppos;
2242 #ifdef HAVE_KIOCB_KI_LEFT
2243         kiocb.ki_left = count;
2244 #elif defined(HAVE_KI_NBYTES)
2245         kiocb.i_nbytes = count;
2246 #endif
2247
2248         result = ll_file_aio_read(&kiocb, &iov, 1, kiocb.ki_pos);
2249         *ppos = kiocb.ki_pos;
2250
2251         RETURN(result);
2252 }
2253
2254 /*
2255  * Write to a file (through the page cache).
2256  * AIO stuff
2257  */
2258 static ssize_t ll_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
2259                                  unsigned long nr_segs, loff_t pos)
2260 {
2261         struct iov_iter from;
2262         size_t iov_count;
2263         ssize_t result;
2264         ENTRY;
2265
2266         result = ll_file_get_iov_count(iov, &nr_segs, &iov_count, VERIFY_WRITE);
2267         if (result)
2268                 RETURN(result);
2269
2270         if (!iov_count)
2271                 RETURN(0);
2272
2273 # ifdef HAVE_IOV_ITER_INIT_DIRECTION
2274         iov_iter_init(&from, WRITE, iov, nr_segs, iov_count);
2275 # else /* !HAVE_IOV_ITER_INIT_DIRECTION */
2276         iov_iter_init(&from, iov, nr_segs, iov_count, 0);
2277 # endif /* HAVE_IOV_ITER_INIT_DIRECTION */
2278
2279         result = ll_file_write_iter(iocb, &from);
2280
2281         RETURN(result);
2282 }
2283
2284 static ssize_t ll_file_write(struct file *file, const char __user *buf,
2285                              size_t count, loff_t *ppos)
2286 {
2287         struct iovec   iov = { .iov_base = (void __user *)buf,
2288                                .iov_len = count };
2289         struct kiocb   kiocb;
2290         ssize_t        result;
2291
2292         ENTRY;
2293
2294         if (!count)
2295                 RETURN(0);
2296
2297         init_sync_kiocb(&kiocb, file);
2298         kiocb.ki_pos = *ppos;
2299 #ifdef HAVE_KIOCB_KI_LEFT
2300         kiocb.ki_left = count;
2301 #elif defined(HAVE_KI_NBYTES)
2302         kiocb.ki_nbytes = count;
2303 #endif
2304
2305         result = ll_file_aio_write(&kiocb, &iov, 1, kiocb.ki_pos);
2306         *ppos = kiocb.ki_pos;
2307
2308         RETURN(result);
2309 }
2310 #endif /* !HAVE_FILE_OPERATIONS_READ_WRITE_ITER */
2311
2312 int ll_lov_setstripe_ea_info(struct inode *inode, struct dentry *dentry,
2313                              __u64 flags, struct lov_user_md *lum, int lum_size)
2314 {
2315         struct lookup_intent oit = {
2316                 .it_op = IT_OPEN,
2317                 .it_flags = flags | MDS_OPEN_BY_FID,
2318         };
2319         int rc;
2320         ENTRY;
2321
2322         if ((__swab32(lum->lmm_magic) & le32_to_cpu(LOV_MAGIC_MASK)) ==
2323             le32_to_cpu(LOV_MAGIC_MAGIC)) {
2324                 /* this code will only exist for big-endian systems */
2325                 lustre_swab_lov_user_md(lum, 0);
2326         }
2327
2328         ll_inode_size_lock(inode);
2329         rc = ll_intent_file_open(dentry, lum, lum_size, &oit);
2330         if (rc < 0)
2331                 GOTO(out_unlock, rc);
2332
2333         ll_release_openhandle(dentry, &oit);
2334
2335 out_unlock:
2336         ll_inode_size_unlock(inode);
2337         ll_intent_release(&oit);
2338
2339         RETURN(rc);
2340 }
2341
2342 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
2343                              struct lov_mds_md **lmmp, int *lmm_size,
2344                              struct ptlrpc_request **request)
2345 {
2346         struct ll_sb_info *sbi = ll_i2sbi(inode);
2347         struct mdt_body  *body;
2348         struct lov_mds_md *lmm = NULL;
2349         struct ptlrpc_request *req = NULL;
2350         struct md_op_data *op_data;
2351         int rc, lmmsize;
2352
2353         ENTRY;
2354
2355         rc = ll_get_default_mdsize(sbi, &lmmsize);
2356         if (rc)
2357                 RETURN(rc);
2358
2359         op_data = ll_prep_md_op_data(NULL, inode, NULL, filename,
2360                                      strlen(filename), lmmsize,
2361                                      LUSTRE_OPC_ANY, NULL);
2362         if (IS_ERR(op_data))
2363                 RETURN(PTR_ERR(op_data));
2364
2365         op_data->op_valid = OBD_MD_FLEASIZE | OBD_MD_FLDIREA;
2366         rc = md_getattr_name(sbi->ll_md_exp, op_data, &req);
2367         ll_finish_md_op_data(op_data);
2368         if (rc < 0) {
2369                 CDEBUG(D_INFO, "md_getattr_name failed on %s: rc %d\n",
2370                        filename, rc);
2371                 GOTO(out, rc);
2372         }
2373
2374         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
2375         LASSERT(body != NULL); /* checked by mdc_getattr_name */
2376
2377         lmmsize = body->mbo_eadatasize;
2378
2379         if (!(body->mbo_valid & (OBD_MD_FLEASIZE | OBD_MD_FLDIREA)) ||
2380             lmmsize == 0)
2381                 GOTO(out, rc = -ENODATA);
2382
2383         lmm = req_capsule_server_sized_get(&req->rq_pill, &RMF_MDT_MD, lmmsize);
2384         LASSERT(lmm != NULL);
2385
2386         if (lmm->lmm_magic != cpu_to_le32(LOV_MAGIC_V1) &&
2387             lmm->lmm_magic != cpu_to_le32(LOV_MAGIC_V3) &&
2388             lmm->lmm_magic != cpu_to_le32(LOV_MAGIC_COMP_V1) &&
2389             lmm->lmm_magic != cpu_to_le32(LOV_MAGIC_FOREIGN))
2390                 GOTO(out, rc = -EPROTO);
2391
2392         /*
2393          * This is coming from the MDS, so is probably in
2394          * little endian. We convert it to host endian before
2395          * passing it to userspace.
2396          */
2397         if (cpu_to_le32(LOV_MAGIC) != LOV_MAGIC) {
2398                 int stripe_count = 0;
2399
2400                 if (lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V1) ||
2401                     lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_V3)) {
2402                         stripe_count = le16_to_cpu(lmm->lmm_stripe_count);
2403                         if (le32_to_cpu(lmm->lmm_pattern) &
2404                             LOV_PATTERN_F_RELEASED)
2405                                 stripe_count = 0;
2406                         lustre_swab_lov_user_md((struct lov_user_md *)lmm, 0);
2407
2408                         /* if function called for directory - we should
2409                          * avoid swab not existent lsm objects
2410                          */
2411                         if (lmm->lmm_magic == LOV_MAGIC_V1 &&
2412                             S_ISREG(body->mbo_mode))
2413                                 lustre_swab_lov_user_md_objects(
2414                                 ((struct lov_user_md_v1 *)lmm)->lmm_objects,
2415                                 stripe_count);
2416                         else if (lmm->lmm_magic == LOV_MAGIC_V3 &&
2417                                  S_ISREG(body->mbo_mode))
2418                                 lustre_swab_lov_user_md_objects(
2419                                 ((struct lov_user_md_v3 *)lmm)->lmm_objects,
2420                                 stripe_count);
2421                 } else if (lmm->lmm_magic == cpu_to_le32(LOV_MAGIC_COMP_V1)) {
2422                         lustre_swab_lov_comp_md_v1(
2423                                 (struct lov_comp_md_v1 *)lmm);
2424                 }
2425         }
2426
2427         if (lmm->lmm_magic == LOV_MAGIC_COMP_V1) {
2428                 struct lov_comp_md_v1 *comp_v1 = NULL;
2429                 struct lov_comp_md_entry_v1 *ent;
2430                 struct lov_user_md_v1 *v1;
2431                 __u32 off;
2432                 int i = 0;
2433
2434                 comp_v1 = (struct lov_comp_md_v1 *)lmm;
2435                 /* Dump the striping information */
2436                 for (; i < comp_v1->lcm_entry_count; i++) {
2437                         ent = &comp_v1->lcm_entries[i];
2438                         off = ent->lcme_offset;
2439                         v1 = (struct lov_user_md_v1 *)((char *)lmm + off);
2440                         CDEBUG(D_INFO,
2441                                "comp[%d]: stripe_count=%u, stripe_size=%u\n",
2442                                i, v1->lmm_stripe_count, v1->lmm_stripe_size);
2443                 }
2444
2445                 /**
2446                  * Return valid stripe_count and stripe_size instead of 0 for
2447                  * DoM files to avoid divide-by-zero for older userspace that
2448                  * calls this ioctl, e.g. lustre ADIO driver.
2449                  */
2450                 if (lmm->lmm_stripe_count == 0)
2451                         lmm->lmm_stripe_count = 1;
2452                 if (lmm->lmm_stripe_size == 0) {
2453                         /* Since the first component of the file data is placed
2454                          * on the MDT for faster access, the stripe_size of the
2455                          * second one is always that applications which are
2456                          * doing large IOs.
2457                          */
2458                         if (lmm->lmm_pattern == LOV_PATTERN_MDT)
2459                                 i = comp_v1->lcm_entry_count > 1 ? 1 : 0;
2460                         else
2461                                 i = comp_v1->lcm_entry_count > 1 ?
2462                                     comp_v1->lcm_entry_count - 1 : 0;
2463                         ent = &comp_v1->lcm_entries[i];
2464                         off = ent->lcme_offset;
2465                         v1 = (struct lov_user_md_v1 *)((char *)lmm + off);
2466                         lmm->lmm_stripe_size = v1->lmm_stripe_size;
2467                 }
2468         }
2469 out:
2470         *lmmp = lmm;
2471         *lmm_size = lmmsize;
2472         *request = req;
2473         RETURN(rc);
2474 }
2475
2476 static int ll_lov_setea(struct inode *inode, struct file *file,
2477                         void __user *arg)
2478 {
2479         __u64                    flags = MDS_OPEN_HAS_OBJS | FMODE_WRITE;
2480         struct lov_user_md      *lump;
2481         int                      lum_size = sizeof(struct lov_user_md) +
2482                                             sizeof(struct lov_user_ost_data);
2483         int                      rc;
2484         ENTRY;
2485
2486         if (!capable(CAP_SYS_ADMIN))
2487                 RETURN(-EPERM);
2488
2489         OBD_ALLOC_LARGE(lump, lum_size);
2490         if (lump == NULL)
2491                 RETURN(-ENOMEM);
2492
2493         if (copy_from_user(lump, arg, lum_size))
2494                 GOTO(out_lump, rc = -EFAULT);
2495
2496         rc = ll_lov_setstripe_ea_info(inode, file_dentry(file), flags, lump,
2497                                       lum_size);
2498         cl_lov_delay_create_clear(&file->f_flags);
2499
2500 out_lump:
2501         OBD_FREE_LARGE(lump, lum_size);
2502         RETURN(rc);
2503 }
2504
2505 static int ll_file_getstripe(struct inode *inode, void __user *lum, size_t size)
2506 {
2507         struct lu_env   *env;
2508         __u16           refcheck;
2509         int             rc;
2510         ENTRY;
2511
2512         env = cl_env_get(&refcheck);
2513         if (IS_ERR(env))
2514                 RETURN(PTR_ERR(env));
2515
2516         rc = cl_object_getstripe(env, ll_i2info(inode)->lli_clob, lum, size);
2517         cl_env_put(env, &refcheck);
2518         RETURN(rc);
2519 }
2520
2521 static int ll_lov_setstripe(struct inode *inode, struct file *file,
2522                             void __user *arg)
2523 {
2524         struct lov_user_md __user *lum = (struct lov_user_md __user *)arg;
2525         struct lov_user_md        *klum;
2526         int                        lum_size, rc;
2527         __u64                      flags = FMODE_WRITE;
2528         ENTRY;
2529
2530         rc = ll_copy_user_md(lum, &klum);
2531         if (rc < 0)
2532                 RETURN(rc);
2533
2534         lum_size = rc;
2535         rc = ll_lov_setstripe_ea_info(inode, file_dentry(file), flags, klum,
2536                                       lum_size);
2537         if (!rc) {
2538                 __u32 gen;
2539
2540                 rc = put_user(0, &lum->lmm_stripe_count);
2541                 if (rc)
2542                         GOTO(out, rc);
2543
2544                 rc = ll_layout_refresh(inode, &gen);
2545                 if (rc)
2546                         GOTO(out, rc);
2547
2548                 rc = ll_file_getstripe(inode, arg, lum_size);
2549                 if (S_ISREG(inode->i_mode) && IS_ENCRYPTED(inode) &&
2550                     ll_i2info(inode)->lli_clob) {
2551                         struct iattr attr = { 0 };
2552
2553                         rc = cl_setattr_ost(ll_i2info(inode)->lli_clob, &attr,
2554                                             OP_XVALID_FLAGS, LUSTRE_ENCRYPT_FL);
2555                 }
2556         }
2557         cl_lov_delay_create_clear(&file->f_flags);
2558
2559 out:
2560         OBD_FREE_LARGE(klum, lum_size);
2561         RETURN(rc);
2562 }
2563
2564
2565 static int
2566 ll_get_grouplock(struct inode *inode, struct file *file, unsigned long arg)
2567 {
2568         struct ll_inode_info *lli = ll_i2info(inode);
2569         struct cl_object *obj = lli->lli_clob;
2570         struct ll_file_data *fd = file->private_data;
2571         struct ll_grouplock grouplock;
2572         int rc;
2573         ENTRY;
2574
2575         if (arg == 0) {
2576                 CWARN("group id for group lock must not be 0\n");
2577                 RETURN(-EINVAL);
2578         }
2579
2580         if (ll_file_nolock(file))
2581                 RETURN(-EOPNOTSUPP);
2582 retry:
2583         if (file->f_flags & O_NONBLOCK) {
2584                 if (!mutex_trylock(&lli->lli_group_mutex))
2585                         RETURN(-EAGAIN);
2586         } else
2587                 mutex_lock(&lli->lli_group_mutex);
2588
2589         if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
2590                 CWARN("group lock already existed with gid %lu\n",
2591                       fd->fd_grouplock.lg_gid);
2592                 GOTO(out, rc = -EINVAL);
2593         }
2594         if (arg != lli->lli_group_gid && lli->lli_group_users != 0) {
2595                 if (file->f_flags & O_NONBLOCK)
2596                         GOTO(out, rc = -EAGAIN);
2597                 mutex_unlock(&lli->lli_group_mutex);
2598                 wait_var_event(&lli->lli_group_users, !lli->lli_group_users);
2599                 GOTO(retry, rc = 0);
2600         }
2601         LASSERT(fd->fd_grouplock.lg_lock == NULL);
2602
2603         /**
2604          * XXX: group lock needs to protect all OST objects while PFL
2605          * can add new OST objects during the IO, so we'd instantiate
2606          * all OST objects before getting its group lock.
2607          */
2608         if (obj) {
2609                 struct lu_env *env;
2610                 __u16 refcheck;
2611                 struct cl_layout cl = {
2612                         .cl_is_composite = false,
2613                 };
2614                 struct lu_extent ext = {
2615                         .e_start = 0,
2616                         .e_end = OBD_OBJECT_EOF,
2617                 };
2618
2619                 env = cl_env_get(&refcheck);
2620                 if (IS_ERR(env))
2621                         GOTO(out, rc = PTR_ERR(env));
2622
2623                 rc = cl_object_layout_get(env, obj, &cl);
2624                 if (rc >= 0 && cl.cl_is_composite)
2625                         rc = ll_layout_write_intent(inode, LAYOUT_INTENT_WRITE,
2626                                                     &ext);
2627
2628                 cl_env_put(env, &refcheck);
2629                 if (rc < 0)
2630                         GOTO(out, rc);
2631         }
2632
2633         rc = cl_get_grouplock(ll_i2info(inode)->lli_clob,
2634                               arg, (file->f_flags & O_NONBLOCK), &grouplock);
2635
2636         if (rc)
2637                 GOTO(out, rc);
2638
2639         fd->fd_flags |= LL_FILE_GROUP_LOCKED;
2640         fd->fd_grouplock = grouplock;
2641         if (lli->lli_group_users == 0)
2642                 lli->lli_group_gid = grouplock.lg_gid;
2643         lli->lli_group_users++;
2644
2645         CDEBUG(D_INFO, "group lock %lu obtained\n", arg);
2646 out:
2647         mutex_unlock(&lli->lli_group_mutex);
2648
2649         RETURN(rc);
2650 }
2651
2652 static int ll_put_grouplock(struct inode *inode, struct file *file,
2653                             unsigned long arg)
2654 {
2655         struct ll_inode_info   *lli = ll_i2info(inode);
2656         struct ll_file_data    *fd = file->private_data;
2657         struct ll_grouplock     grouplock;
2658         int                     rc;
2659         ENTRY;
2660
2661         mutex_lock(&lli->lli_group_mutex);
2662         if (!(fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
2663                 CWARN("no group lock held\n");
2664                 GOTO(out, rc = -EINVAL);
2665         }
2666
2667         LASSERT(fd->fd_grouplock.lg_lock != NULL);
2668
2669         if (fd->fd_grouplock.lg_gid != arg) {
2670                 CWARN("group lock %lu doesn't match current id %lu\n",
2671                       arg, fd->fd_grouplock.lg_gid);
2672                 GOTO(out, rc = -EINVAL);
2673         }
2674
2675         grouplock = fd->fd_grouplock;
2676         memset(&fd->fd_grouplock, 0, sizeof(fd->fd_grouplock));
2677         fd->fd_flags &= ~LL_FILE_GROUP_LOCKED;
2678
2679         cl_put_grouplock(&grouplock);
2680
2681         lli->lli_group_users--;
2682         if (lli->lli_group_users == 0) {
2683                 lli->lli_group_gid = 0;
2684                 wake_up_var(&lli->lli_group_users);
2685         }
2686         CDEBUG(D_INFO, "group lock %lu released\n", arg);
2687         GOTO(out, rc = 0);
2688 out:
2689         mutex_unlock(&lli->lli_group_mutex);
2690
2691         RETURN(rc);
2692 }
2693
2694 /**
2695  * Close inode open handle
2696  *
2697  * \param dentry [in]     dentry which contains the inode
2698  * \param it     [in,out] intent which contains open info and result
2699  *
2700  * \retval 0     success
2701  * \retval <0    failure
2702  */
2703 int ll_release_openhandle(struct dentry *dentry, struct lookup_intent *it)
2704 {
2705         struct inode *inode = dentry->d_inode;
2706         struct obd_client_handle *och;
2707         int rc;
2708         ENTRY;
2709
2710         LASSERT(inode);
2711
2712         /* Root ? Do nothing. */
2713         if (is_root_inode(inode))
2714                 RETURN(0);
2715
2716         /* No open handle to close? Move away */
2717         if (!it_disposition(it, DISP_OPEN_OPEN))
2718                 RETURN(0);
2719
2720         LASSERT(it_open_error(DISP_OPEN_OPEN, it) == 0);
2721
2722         OBD_ALLOC(och, sizeof(*och));
2723         if (!och)
2724                 GOTO(out, rc = -ENOMEM);
2725
2726         rc = ll_och_fill(ll_i2sbi(inode)->ll_md_exp, it, och);
2727         if (rc)
2728                 GOTO(out, rc);
2729
2730         rc = ll_close_inode_openhandle(inode, och, 0, NULL);
2731 out:
2732         /* this one is in place of ll_file_open */
2733         if (it_disposition(it, DISP_ENQ_OPEN_REF)) {
2734                 ptlrpc_req_finished(it->it_request);
2735                 it_clear_disposition(it, DISP_ENQ_OPEN_REF);
2736         }
2737         RETURN(rc);
2738 }
2739
2740 /**
2741  * Get size for inode for which FIEMAP mapping is requested.
2742  * Make the FIEMAP get_info call and returns the result.
2743  * \param fiemap        kernel buffer to hold extens
2744  * \param num_bytes     kernel buffer size
2745  */
2746 static int ll_do_fiemap(struct inode *inode, struct fiemap *fiemap,
2747                         size_t num_bytes)
2748 {
2749         struct lu_env                   *env;
2750         __u16                           refcheck;
2751         int                             rc = 0;
2752         struct ll_fiemap_info_key       fmkey = { .lfik_name = KEY_FIEMAP, };
2753         ENTRY;
2754
2755         /* Checks for fiemap flags */
2756         if (fiemap->fm_flags & ~LUSTRE_FIEMAP_FLAGS_COMPAT) {
2757                 fiemap->fm_flags &= ~LUSTRE_FIEMAP_FLAGS_COMPAT;
2758                 return -EBADR;
2759         }
2760
2761         /* Check for FIEMAP_FLAG_SYNC */
2762         if (fiemap->fm_flags & FIEMAP_FLAG_SYNC) {
2763                 rc = filemap_fdatawrite(inode->i_mapping);
2764                 if (rc)
2765                         return rc;
2766         }
2767
2768         env = cl_env_get(&refcheck);
2769         if (IS_ERR(env))
2770                 RETURN(PTR_ERR(env));
2771
2772         if (i_size_read(inode) == 0) {
2773                 rc = ll_glimpse_size(inode);
2774                 if (rc)
2775                         GOTO(out, rc);
2776         }
2777
2778         fmkey.lfik_oa.o_valid = OBD_MD_FLID | OBD_MD_FLGROUP | OBD_MD_FLPROJID;
2779         obdo_from_inode(&fmkey.lfik_oa, inode, OBD_MD_FLSIZE);
2780         obdo_set_parent_fid(&fmkey.lfik_oa, &ll_i2info(inode)->lli_fid);
2781
2782         /* If filesize is 0, then there would be no objects for mapping */
2783         if (fmkey.lfik_oa.o_size == 0) {
2784                 fiemap->fm_mapped_extents = 0;
2785                 GOTO(out, rc = 0);
2786         }
2787
2788         fmkey.lfik_fiemap = *fiemap;
2789
2790         rc = cl_object_fiemap(env, ll_i2info(inode)->lli_clob,
2791                               &fmkey, fiemap, &num_bytes);
2792 out:
2793         cl_env_put(env, &refcheck);
2794         RETURN(rc);
2795 }
2796
2797 int ll_fid2path(struct inode *inode, void __user *arg)
2798 {
2799         struct obd_export       *exp = ll_i2mdexp(inode);
2800         const struct getinfo_fid2path __user *gfin = arg;
2801         __u32                    pathlen;
2802         struct getinfo_fid2path *gfout;
2803         size_t                   outsize;
2804         int                      rc;
2805
2806         ENTRY;
2807
2808         if (!capable(CAP_DAC_READ_SEARCH) &&
2809             !test_bit(LL_SBI_USER_FID2PATH, ll_i2sbi(inode)->ll_flags))
2810                 RETURN(-EPERM);
2811
2812         /* Only need to get the buflen */
2813         if (get_user(pathlen, &gfin->gf_pathlen))
2814                 RETURN(-EFAULT);
2815
2816         if (pathlen > PATH_MAX)
2817                 RETURN(-EINVAL);
2818
2819         outsize = sizeof(*gfout) + pathlen;
2820         OBD_ALLOC(gfout, outsize);
2821         if (gfout == NULL)
2822                 RETURN(-ENOMEM);
2823
2824         if (copy_from_user(gfout, arg, sizeof(*gfout)))
2825                 GOTO(gf_free, rc = -EFAULT);
2826         /* append root FID after gfout to let MDT know the root FID so that it
2827          * can lookup the correct path, this is mainly for fileset.
2828          * old server without fileset mount support will ignore this. */
2829         *gfout->gf_u.gf_root_fid = *ll_inode2fid(inode);
2830
2831         /* Call mdc_iocontrol */
2832         rc = obd_iocontrol(OBD_IOC_FID2PATH, exp, outsize, gfout, NULL);
2833         if (rc != 0)
2834                 GOTO(gf_free, rc);
2835
2836         if (copy_to_user(arg, gfout, outsize))
2837                 rc = -EFAULT;
2838
2839 gf_free:
2840         OBD_FREE(gfout, outsize);
2841         RETURN(rc);
2842 }
2843
2844 static int
2845 ll_ioc_data_version(struct inode *inode, struct ioc_data_version *ioc)
2846 {
2847         struct cl_object *obj = ll_i2info(inode)->lli_clob;
2848         struct lu_env *env;
2849         struct cl_io *io;
2850         __u16  refcheck;
2851         int result;
2852
2853         ENTRY;
2854
2855         ioc->idv_version = 0;
2856         ioc->idv_layout_version = UINT_MAX;
2857
2858         /* If no file object initialized, we consider its version is 0. */
2859         if (obj == NULL)
2860                 RETURN(0);
2861
2862         env = cl_env_get(&refcheck);
2863         if (IS_ERR(env))
2864                 RETURN(PTR_ERR(env));
2865
2866         io = vvp_env_thread_io(env);
2867         io->ci_obj = obj;
2868         io->u.ci_data_version.dv_data_version = 0;
2869         io->u.ci_data_version.dv_layout_version = UINT_MAX;
2870         io->u.ci_data_version.dv_flags = ioc->idv_flags;
2871
2872 restart:
2873         if (cl_io_init(env, io, CIT_DATA_VERSION, io->ci_obj) == 0)
2874                 result = cl_io_loop(env, io);
2875         else
2876                 result = io->ci_result;
2877
2878         ioc->idv_version = io->u.ci_data_version.dv_data_version;
2879         ioc->idv_layout_version = io->u.ci_data_version.dv_layout_version;
2880
2881         cl_io_fini(env, io);
2882
2883         if (unlikely(io->ci_need_restart))
2884                 goto restart;
2885
2886         cl_env_put(env, &refcheck);
2887
2888         RETURN(result);
2889 }
2890
2891 /*
2892  * Read the data_version for inode.
2893  *
2894  * This value is computed using stripe object version on OST.
2895  * Version is computed using server side locking.
2896  *
2897  * @param flags if do sync on the OST side;
2898  *              0: no sync
2899  *              LL_DV_RD_FLUSH: flush dirty pages, LCK_PR on OSTs
2900  *              LL_DV_WR_FLUSH: drop all caching pages, LCK_PW on OSTs
2901  */
2902 int ll_data_version(struct inode *inode, __u64 *data_version, int flags)
2903 {
2904         struct ioc_data_version ioc = { .idv_flags = flags };
2905         int rc;
2906
2907         rc = ll_ioc_data_version(inode, &ioc);
2908         if (!rc)
2909                 *data_version = ioc.idv_version;
2910
2911         return rc;
2912 }
2913
2914 /*
2915  * Trigger a HSM release request for the provided inode.
2916  */
2917 int ll_hsm_release(struct inode *inode)
2918 {
2919         struct lu_env *env;
2920         struct obd_client_handle *och = NULL;
2921         __u64 data_version = 0;
2922         __u16 refcheck;
2923         int rc;
2924
2925         ENTRY;
2926
2927         CDEBUG(D_INODE, "%s: Releasing file "DFID".\n",
2928                ll_i2sbi(inode)->ll_fsname,
2929                PFID(&ll_i2info(inode)->lli_fid));
2930
2931         och = ll_lease_open(inode, NULL, FMODE_WRITE, MDS_OPEN_RELEASE);
2932         if (IS_ERR(och))
2933                 GOTO(out, rc = PTR_ERR(och));
2934
2935         /* Grab latest data_version and [am]time values */
2936         rc = ll_data_version(inode, &data_version,
2937                              LL_DV_WR_FLUSH | LL_DV_SZ_UPDATE);
2938         if (rc != 0)
2939                 GOTO(out, rc);
2940
2941         env = cl_env_get(&refcheck);
2942         if (IS_ERR(env))
2943                 GOTO(out, rc = PTR_ERR(env));
2944
2945         rc = ll_merge_attr(env, inode);
2946         cl_env_put(env, &refcheck);
2947
2948         /* If error happen, we have the wrong size for a file.
2949          * Don't release it.
2950          */
2951         if (rc != 0)
2952                 GOTO(out, rc);
2953
2954         /* Release the file.
2955          * NB: lease lock handle is released in mdc_hsm_release_pack() because
2956          * we still need it to pack l_remote_handle to MDT. */
2957         rc = ll_close_inode_openhandle(inode, och, MDS_HSM_RELEASE,
2958                                        &data_version);
2959         och = NULL;
2960
2961         EXIT;
2962 out:
2963         if (och != NULL && !IS_ERR(och)) /* close the file */
2964                 ll_lease_close(och, inode, NULL);
2965
2966         return rc;
2967 }
2968
2969 struct ll_swap_stack {
2970         __u64                    dv1;
2971         __u64                    dv2;
2972         struct inode            *inode1;
2973         struct inode            *inode2;
2974         bool                     check_dv1;
2975         bool                     check_dv2;
2976 };
2977
2978 static int ll_swap_layouts(struct file *file1, struct file *file2,
2979                            struct lustre_swap_layouts *lsl)
2980 {
2981         struct mdc_swap_layouts  msl;
2982         struct md_op_data       *op_data;
2983         __u32                    gid;
2984         __u64                    dv;
2985         struct ll_swap_stack    *llss = NULL;
2986         int                      rc;
2987
2988         OBD_ALLOC_PTR(llss);
2989         if (llss == NULL)
2990                 RETURN(-ENOMEM);
2991
2992         llss->inode1 = file_inode(file1);
2993         llss->inode2 = file_inode(file2);
2994
2995         rc = ll_check_swap_layouts_validity(llss->inode1, llss->inode2);
2996         if (rc < 0)
2997                 GOTO(free, rc);
2998
2999         /* we use 2 bool because it is easier to swap than 2 bits */
3000         if (lsl->sl_flags & SWAP_LAYOUTS_CHECK_DV1)
3001                 llss->check_dv1 = true;
3002
3003         if (lsl->sl_flags & SWAP_LAYOUTS_CHECK_DV2)
3004                 llss->check_dv2 = true;
3005
3006         /* we cannot use lsl->sl_dvX directly because we may swap them */
3007         llss->dv1 = lsl->sl_dv1;
3008         llss->dv2 = lsl->sl_dv2;
3009
3010         rc = lu_fid_cmp(ll_inode2fid(llss->inode1), ll_inode2fid(llss->inode2));
3011         if (rc == 0) /* same file, done! */
3012                 GOTO(free, rc);
3013
3014         if (rc < 0) { /* sequentialize it */
3015                 swap(llss->inode1, llss->inode2);
3016                 swap(file1, file2);
3017                 swap(llss->dv1, llss->dv2);
3018                 swap(llss->check_dv1, llss->check_dv2);
3019         }
3020
3021         gid = lsl->sl_gid;
3022         if (gid != 0) { /* application asks to flush dirty cache */
3023                 rc = ll_get_grouplock(llss->inode1, file1, gid);
3024                 if (rc < 0)
3025                         GOTO(free, rc);
3026
3027                 rc = ll_get_grouplock(llss->inode2, file2, gid);
3028                 if (rc < 0) {
3029                         ll_put_grouplock(llss->inode1, file1, gid);
3030                         GOTO(free, rc);
3031                 }
3032         }
3033
3034         /* ultimate check, before swaping the layouts we check if
3035          * dataversion has changed (if requested) */
3036         if (llss->check_dv1) {
3037                 rc = ll_data_version(llss->inode1, &dv, 0);
3038                 if (rc)
3039                         GOTO(putgl, rc);
3040                 if (dv != llss->dv1)
3041                         GOTO(putgl, rc = -EAGAIN);
3042         }
3043
3044         if (llss->check_dv2) {
3045                 rc = ll_data_version(llss->inode2, &dv, 0);
3046                 if (rc)
3047                         GOTO(putgl, rc);
3048                 if (dv != llss->dv2)
3049                         GOTO(putgl, rc = -EAGAIN);
3050         }
3051
3052         /* struct md_op_data is used to send the swap args to the mdt
3053          * only flags is missing, so we use struct mdc_swap_layouts
3054          * through the md_op_data->op_data */
3055         /* flags from user space have to be converted before they are send to
3056          * server, no flag is sent today, they are only used on the client */
3057         msl.msl_flags = 0;
3058         rc = -ENOMEM;
3059         op_data = ll_prep_md_op_data(NULL, llss->inode1, llss->inode2, NULL, 0,
3060                                      0, LUSTRE_OPC_ANY, &msl);
3061         if (IS_ERR(op_data))
3062                 GOTO(free, rc = PTR_ERR(op_data));
3063
3064         rc = obd_iocontrol(LL_IOC_LOV_SWAP_LAYOUTS, ll_i2mdexp(llss->inode1),
3065                            sizeof(*op_data), op_data, NULL);
3066         ll_finish_md_op_data(op_data);
3067
3068         if (rc < 0)
3069                 GOTO(putgl, rc);
3070
3071 putgl:
3072         if (gid != 0) {
3073                 ll_put_grouplock(llss->inode2, file2, gid);
3074                 ll_put_grouplock(llss->inode1, file1, gid);
3075         }
3076
3077 free:
3078         if (llss != NULL)
3079                 OBD_FREE_PTR(llss);
3080
3081         RETURN(rc);
3082 }
3083
3084 int ll_hsm_state_set(struct inode *inode, struct hsm_state_set *hss)
3085 {
3086         struct obd_export *exp = ll_i2mdexp(inode);
3087         struct md_op_data *op_data;
3088         int rc;
3089         ENTRY;
3090
3091         /* Detect out-of range masks */
3092         if ((hss->hss_setmask | hss->hss_clearmask) & ~HSM_FLAGS_MASK)
3093                 RETURN(-EINVAL);
3094
3095         /* Non-root users are forbidden to set or clear flags which are
3096          * NOT defined in HSM_USER_MASK. */
3097         if (((hss->hss_setmask | hss->hss_clearmask) & ~HSM_USER_MASK) &&
3098             !capable(CAP_SYS_ADMIN))
3099                 RETURN(-EPERM);
3100
3101         if (!exp_connect_archive_id_array(exp)) {
3102                 /* Detect out-of range archive id */
3103                 if ((hss->hss_valid & HSS_ARCHIVE_ID) &&
3104                     (hss->hss_archive_id > LL_HSM_ORIGIN_MAX_ARCHIVE))
3105                         RETURN(-EINVAL);
3106         }
3107
3108         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
3109                                      LUSTRE_OPC_ANY, hss);
3110         if (IS_ERR(op_data))
3111                 RETURN(PTR_ERR(op_data));
3112
3113         rc = obd_iocontrol(LL_IOC_HSM_STATE_SET, exp, sizeof(*op_data),
3114                            op_data, NULL);
3115
3116         ll_finish_md_op_data(op_data);
3117
3118         RETURN(rc);
3119 }
3120
3121 static int ll_hsm_import(struct inode *inode, struct file *file,
3122                          struct hsm_user_import *hui)
3123 {
3124         struct hsm_state_set    *hss = NULL;
3125         struct iattr            *attr = NULL;
3126         int                      rc;
3127         ENTRY;
3128
3129         if (!S_ISREG(inode->i_mode))
3130                 RETURN(-EINVAL);
3131
3132         /* set HSM flags */
3133         OBD_ALLOC_PTR(hss);
3134         if (hss == NULL)
3135                 GOTO(out, rc = -ENOMEM);
3136
3137         hss->hss_valid = HSS_SETMASK | HSS_ARCHIVE_ID;
3138         hss->hss_archive_id = hui->hui_archive_id;
3139         hss->hss_setmask = HS_ARCHIVED | HS_EXISTS | HS_RELEASED;
3140         rc = ll_hsm_state_set(inode, hss);
3141         if (rc != 0)
3142                 GOTO(out, rc);
3143
3144         OBD_ALLOC_PTR(attr);
3145         if (attr == NULL)
3146                 GOTO(out, rc = -ENOMEM);
3147
3148         attr->ia_mode = hui->hui_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
3149         attr->ia_mode |= S_IFREG;
3150         attr->ia_uid = make_kuid(&init_user_ns, hui->hui_uid);
3151         attr->ia_gid = make_kgid(&init_user_ns, hui->hui_gid);
3152         attr->ia_size = hui->hui_size;
3153         attr->ia_mtime.tv_sec = hui->hui_mtime;
3154         attr->ia_mtime.tv_nsec = hui->hui_mtime_ns;
3155         attr->ia_atime.tv_sec = hui->hui_atime;
3156         attr->ia_atime.tv_nsec = hui->hui_atime_ns;
3157
3158         attr->ia_valid = ATTR_SIZE | ATTR_MODE | ATTR_FORCE |
3159                          ATTR_UID | ATTR_GID |
3160                          ATTR_MTIME | ATTR_MTIME_SET |
3161                          ATTR_ATIME | ATTR_ATIME_SET;
3162
3163         inode_lock(inode);
3164
3165         rc = ll_setattr_raw(file_dentry(file), attr, 0, true);
3166         if (rc == -ENODATA)
3167                 rc = 0;
3168
3169         inode_unlock(inode);
3170
3171 out:
3172         if (hss != NULL)
3173                 OBD_FREE_PTR(hss);
3174
3175         if (attr != NULL)
3176                 OBD_FREE_PTR(attr);
3177
3178         RETURN(rc);
3179 }
3180
3181 static inline long ll_lease_type_from_fmode(fmode_t fmode)
3182 {
3183         return ((fmode & FMODE_READ) ? LL_LEASE_RDLCK : 0) |
3184                ((fmode & FMODE_WRITE) ? LL_LEASE_WRLCK : 0);
3185 }
3186
3187 static int ll_file_futimes_3(struct file *file, const struct ll_futimes_3 *lfu)
3188 {
3189         struct inode *inode = file_inode(file);
3190         struct iattr ia = {
3191                 .ia_valid = ATTR_ATIME | ATTR_ATIME_SET |
3192                             ATTR_MTIME | ATTR_MTIME_SET |
3193                             ATTR_CTIME,
3194                 .ia_atime = {
3195                         .tv_sec = lfu->lfu_atime_sec,
3196                         .tv_nsec = lfu->lfu_atime_nsec,
3197                 },
3198                 .ia_mtime = {
3199                         .tv_sec = lfu->lfu_mtime_sec,
3200                         .tv_nsec = lfu->lfu_mtime_nsec,
3201                 },
3202                 .ia_ctime = {
3203                         .tv_sec = lfu->lfu_ctime_sec,
3204                         .tv_nsec = lfu->lfu_ctime_nsec,
3205                 },
3206         };
3207         int rc;
3208         ENTRY;
3209
3210         if (!capable(CAP_SYS_ADMIN))
3211                 RETURN(-EPERM);
3212
3213         if (!S_ISREG(inode->i_mode))
3214                 RETURN(-EINVAL);
3215
3216         inode_lock(inode);
3217         rc = ll_setattr_raw(file_dentry(file), &ia, OP_XVALID_CTIME_SET,
3218                             false);
3219         inode_unlock(inode);
3220
3221         RETURN(rc);
3222 }
3223
3224 static enum cl_lock_mode cl_mode_user_to_kernel(enum lock_mode_user mode)
3225 {
3226         switch (mode) {
3227         case MODE_READ_USER:
3228                 return CLM_READ;
3229         case MODE_WRITE_USER:
3230                 return CLM_WRITE;
3231         default:
3232                 return -EINVAL;
3233         }
3234 }
3235
3236 static const char *const user_lockname[] = LOCK_MODE_NAMES;
3237
3238 /* Used to allow the upper layers of the client to request an LDLM lock
3239  * without doing an actual read or write.
3240  *
3241  * Used for ladvise lockahead to manually request specific locks.
3242  *
3243  * \param[in] file      file this ladvise lock request is on
3244  * \param[in] ladvise   ladvise struct describing this lock request
3245  *
3246  * \retval 0            success, no detailed result available (sync requests
3247  *                      and requests sent to the server [not handled locally]
3248  *                      cannot return detailed results)
3249  * \retval LLA_RESULT_{SAME,DIFFERENT} - detailed result of the lock request,
3250  *                                       see definitions for details.
3251  * \retval negative     negative errno on error
3252  */
3253 int ll_file_lock_ahead(struct file *file, struct llapi_lu_ladvise *ladvise)
3254 {
3255         struct lu_env *env = NULL;
3256         struct cl_io *io  = NULL;
3257         struct cl_lock *lock = NULL;
3258         struct cl_lock_descr *descr = NULL;
3259         struct dentry *dentry = file->f_path.dentry;
3260         struct inode *inode = dentry->d_inode;
3261         enum cl_lock_mode cl_mode;
3262         off_t start = ladvise->lla_start;
3263         off_t end = ladvise->lla_end;
3264         int result;
3265         __u16 refcheck;
3266
3267         ENTRY;
3268
3269         CDEBUG(D_VFSTRACE,
3270                "Lock request: file=%pd, inode=%p, mode=%s start=%llu, end=%llu\n",
3271                dentry, dentry->d_inode,
3272                user_lockname[ladvise->lla_lockahead_mode], (__u64) start,
3273                (__u64) end);
3274
3275         cl_mode = cl_mode_user_to_kernel(ladvise->lla_lockahead_mode);
3276         if (cl_mode < 0)
3277                 GOTO(out, result = cl_mode);
3278
3279         /* Get IO environment */
3280         result = cl_io_get(inode, &env, &io, &refcheck);
3281         if (result <= 0)
3282                 GOTO(out, result);
3283
3284         result = cl_io_init(env, io, CIT_MISC, io->ci_obj);
3285         if (result > 0) {
3286                 /*
3287                  * nothing to do for this io. This currently happens when
3288                  * stripe sub-object's are not yet created.
3289                  */
3290                 result = io->ci_result;
3291         } else if (result == 0) {
3292                 lock = vvp_env_lock(env);
3293                 descr = &lock->cll_descr;
3294
3295                 descr->cld_obj   = io->ci_obj;
3296                 /* Convert byte offsets to pages */
3297                 descr->cld_start = cl_index(io->ci_obj, start);
3298                 descr->cld_end   = cl_index(io->ci_obj, end);
3299                 descr->cld_mode  = cl_mode;
3300                 /* CEF_MUST is used because we do not want to convert a
3301                  * lockahead request to a lockless lock */
3302                 descr->cld_enq_flags = CEF_MUST | CEF_LOCK_NO_EXPAND;
3303
3304                 if (ladvise->lla_peradvice_flags & LF_ASYNC)
3305                         descr->cld_enq_flags |= CEF_SPECULATIVE;
3306
3307                 result = cl_lock_request(env, io, lock);
3308
3309                 /* On success, we need to release the lock */
3310                 if (result >= 0)
3311                         cl_lock_release(env, lock);
3312         }
3313         cl_io_fini(env, io);
3314         cl_env_put(env, &refcheck);
3315
3316         /* -ECANCELED indicates a matching lock with a different extent
3317          * was already present, and -EEXIST indicates a matching lock
3318          * on exactly the same extent was already present.
3319          * We convert them to positive values for userspace to make
3320          * recognizing true errors easier.
3321          * Note we can only return these detailed results on async requests,
3322          * as sync requests look the same as i/o requests for locking. */
3323         if (result == -ECANCELED)
3324                 result = LLA_RESULT_DIFFERENT;
3325         else if (result == -EEXIST)
3326                 result = LLA_RESULT_SAME;
3327
3328 out:
3329         RETURN(result);
3330 }
3331 static const char *const ladvise_names[] = LU_LADVISE_NAMES;
3332
3333 static int ll_ladvise_sanity(struct inode *inode,
3334                              struct llapi_lu_ladvise *ladvise)
3335 {
3336         struct ll_sb_info *sbi = ll_i2sbi(inode);
3337         enum lu_ladvise_type advice = ladvise->lla_advice;
3338         /* Note the peradvice flags is a 32 bit field, so per advice flags must
3339          * be in the first 32 bits of enum ladvise_flags */
3340         __u32 flags = ladvise->lla_peradvice_flags;
3341         /* 3 lines at 80 characters per line, should be plenty */
3342         int rc = 0;
3343
3344         if (advice > LU_LADVISE_MAX || advice == LU_LADVISE_INVALID) {
3345                 rc = -EINVAL;
3346                 CDEBUG(D_VFSTRACE,
3347                        "%s: advice with value '%d' not recognized, last supported advice is %s (value '%d'): rc = %d\n",
3348                        sbi->ll_fsname, advice,
3349                        ladvise_names[LU_LADVISE_MAX-1], LU_LADVISE_MAX-1, rc);
3350                 GOTO(out, rc);
3351         }
3352
3353         /* Per-advice checks */
3354         switch (advice) {
3355         case LU_LADVISE_LOCKNOEXPAND:
3356                 if (flags & ~LF_LOCKNOEXPAND_MASK) {
3357                         rc = -EINVAL;
3358                         CDEBUG(D_VFSTRACE, "%s: Invalid flags (%x) for %s: "
3359                                "rc = %d\n", sbi->ll_fsname, flags,
3360                                ladvise_names[advice], rc);
3361                         GOTO(out, rc);
3362                 }
3363                 break;
3364         case LU_LADVISE_LOCKAHEAD:
3365                 /* Currently only READ and WRITE modes can be requested */
3366                 if (ladvise->lla_lockahead_mode >= MODE_MAX_USER ||
3367                     ladvise->lla_lockahead_mode == 0) {
3368                         rc = -EINVAL;
3369                         CDEBUG(D_VFSTRACE, "%s: Invalid mode (%d) for %s: "
3370                                "rc = %d\n", sbi->ll_fsname,
3371                                ladvise->lla_lockahead_mode,
3372                                ladvise_names[advice], rc);
3373                         GOTO(out, rc);
3374                 }
3375                 fallthrough;
3376         case LU_LADVISE_WILLREAD:
3377         case LU_LADVISE_DONTNEED:
3378         default:
3379                 /* Note fall through above - These checks apply to all advices
3380                  * except LOCKNOEXPAND */
3381                 if (flags & ~LF_DEFAULT_MASK) {
3382                         rc = -EINVAL;
3383                         CDEBUG(D_VFSTRACE, "%s: Invalid flags (%x) for %s: "
3384                                "rc = %d\n", sbi->ll_fsname, flags,
3385                                ladvise_names[advice], rc);
3386                         GOTO(out, rc);
3387                 }
3388                 if (ladvise->lla_start >= ladvise->lla_end) {
3389                         rc = -EINVAL;
3390                         CDEBUG(D_VFSTRACE, "%s: Invalid range (%llu to %llu) "
3391                                "for %s: rc = %d\n", sbi->ll_fsname,
3392                                ladvise->lla_start, ladvise->lla_end,
3393                                ladvise_names[advice], rc);
3394                         GOTO(out, rc);
3395                 }
3396                 break;
3397         }
3398
3399 out:
3400         return rc;
3401 }
3402 #undef ERRSIZE
3403
3404 /*
3405  * Give file access advices
3406  *
3407  * The ladvise interface is similar to Linux fadvise() system call, except it
3408  * forwards the advices directly from Lustre client to server. The server side
3409  * codes will apply appropriate read-ahead and caching techniques for the
3410  * corresponding files.
3411  *
3412  * A typical workload for ladvise is e.g. a bunch of different clients are
3413  * doing small random reads of a file, so prefetching pages into OSS cache
3414  * with big linear reads before the random IO is a net benefit. Fetching
3415  * all that data into each client cache with fadvise() may not be, due to
3416  * much more data being sent to the client.
3417  */
3418 static int ll_ladvise(struct inode *inode, struct file *file, __u64 flags,
3419                       struct llapi_lu_ladvise *ladvise)
3420 {
3421         struct lu_env *env;
3422         struct cl_io *io;
3423         struct cl_ladvise_io *lio;
3424         int rc;
3425         __u16 refcheck;
3426         ENTRY;
3427
3428         env = cl_env_get(&refcheck);
3429         if (IS_ERR(env))
3430                 RETURN(PTR_ERR(env));
3431
3432         io = vvp_env_thread_io(env);
3433         io->ci_obj = ll_i2info(inode)->lli_clob;
3434
3435         /* initialize parameters for ladvise */
3436         lio = &io->u.ci_ladvise;
3437         lio->li_start = ladvise->lla_start;
3438         lio->li_end = ladvise->lla_end;
3439         lio->li_fid = ll_inode2fid(inode);
3440         lio->li_advice = ladvise->lla_advice;
3441         lio->li_flags = flags;
3442
3443         if (cl_io_init(env, io, CIT_LADVISE, io->ci_obj) == 0)
3444                 rc = cl_io_loop(env, io);
3445         else
3446                 rc = io->ci_result;
3447
3448         cl_io_fini(env, io);
3449         cl_env_put(env, &refcheck);
3450         RETURN(rc);
3451 }
3452
3453 static int ll_lock_noexpand(struct file *file, int flags)
3454 {
3455         struct ll_file_data *fd = file->private_data;
3456
3457         fd->ll_lock_no_expand = !(flags & LF_UNSET);
3458
3459         return 0;
3460 }
3461
3462 int ll_ioctl_fsgetxattr(struct inode *inode, unsigned int cmd,
3463                         unsigned long arg)
3464 {
3465         struct fsxattr fsxattr;
3466
3467         if (copy_from_user(&fsxattr,
3468                            (const struct fsxattr __user *)arg,
3469                            sizeof(fsxattr)))
3470                 RETURN(-EFAULT);
3471
3472         fsxattr.fsx_xflags = ll_inode_flags_to_xflags(inode->i_flags);
3473         if (test_bit(LLIF_PROJECT_INHERIT, &ll_i2info(inode)->lli_flags))
3474                 fsxattr.fsx_xflags |= FS_XFLAG_PROJINHERIT;
3475         fsxattr.fsx_projid = ll_i2info(inode)->lli_projid;
3476         if (copy_to_user((struct fsxattr __user *)arg,
3477                          &fsxattr, sizeof(fsxattr)))
3478                 RETURN(-EFAULT);
3479
3480         RETURN(0);
3481 }
3482
3483 int ll_ioctl_check_project(struct inode *inode, __u32 xflags,
3484                            __u32 projid)
3485 {
3486         /*
3487          * Project Quota ID state is only allowed to change from within the init
3488          * namespace. Enforce that restriction only if we are trying to change
3489          * the quota ID state. Everything else is allowed in user namespaces.
3490          */
3491         if (current_user_ns() == &init_user_ns) {
3492                 /*
3493                  * Caller is allowed to change the project ID. if it is being
3494                  * changed, make sure that the new value is valid.
3495                  */
3496                 if (ll_i2info(inode)->lli_projid != projid &&
3497                      !projid_valid(make_kprojid(&init_user_ns, projid)))
3498                         return -EINVAL;
3499
3500                 return 0;
3501         }
3502
3503         if (ll_i2info(inode)->lli_projid != projid)
3504                 return -EINVAL;
3505
3506         if (test_bit(LLIF_PROJECT_INHERIT, &ll_i2info(inode)->lli_flags)) {
3507                 if (!(xflags & FS_XFLAG_PROJINHERIT))
3508                         return -EINVAL;
3509         } else {
3510                 if (xflags & FS_XFLAG_PROJINHERIT)
3511                         return -EINVAL;
3512         }
3513
3514         return 0;
3515 }
3516
3517 static int ll_set_project(struct inode *inode, __u32 xflags, __u32 projid)
3518 {
3519         struct ptlrpc_request *req = NULL;
3520         struct md_op_data *op_data;
3521         struct cl_object *obj;
3522         unsigned int inode_flags;
3523         int rc = 0;
3524
3525         CDEBUG(D_QUOTA, DFID" xflags=%x projid=%u\n",
3526                PFID(ll_inode2fid(inode)), xflags, projid);
3527         rc = ll_ioctl_check_project(inode, xflags, projid);
3528         if (rc)
3529                 RETURN(rc);
3530
3531         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
3532                                      LUSTRE_OPC_ANY, NULL);
3533         if (IS_ERR(op_data))
3534                 RETURN(PTR_ERR(op_data));
3535
3536         inode_flags = ll_xflags_to_inode_flags(xflags);
3537         op_data->op_attr_flags = ll_inode_to_ext_flags(inode_flags);
3538         if (xflags & FS_XFLAG_PROJINHERIT)
3539                 op_data->op_attr_flags |= LUSTRE_PROJINHERIT_FL;
3540
3541         /* pass projid to md_op_data */
3542         op_data->op_projid = projid;
3543
3544         op_data->op_xvalid |= OP_XVALID_PROJID | OP_XVALID_FLAGS;
3545         rc = md_setattr(ll_i2sbi(inode)->ll_md_exp, op_data, NULL, 0, &req);
3546         ptlrpc_req_finished(req);
3547         if (rc)
3548                 GOTO(out_fsxattr, rc);
3549         ll_update_inode_flags(inode, op_data->op_attr_flags);
3550
3551         /* Avoid OST RPC if this is only ioctl setting project inherit flag */
3552         if (xflags == 0 || xflags == FS_XFLAG_PROJINHERIT)
3553                 GOTO(out_fsxattr, rc);
3554
3555         obj = ll_i2info(inode)->lli_clob;
3556         if (obj) {
3557                 struct iattr attr = { 0 };
3558
3559                 rc = cl_setattr_ost(obj, &attr, OP_XVALID_FLAGS, xflags);
3560         }
3561
3562 out_fsxattr:
3563         ll_finish_md_op_data(op_data);
3564         RETURN(rc);
3565 }
3566
3567 int ll_ioctl_fssetxattr(struct inode *inode, unsigned int cmd,
3568                         unsigned long arg)
3569 {
3570         struct fsxattr fsxattr;
3571
3572         ENTRY;
3573
3574         if (copy_from_user(&fsxattr,
3575                            (const struct fsxattr __user *)arg,
3576                            sizeof(fsxattr)))
3577                 RETURN(-EFAULT);
3578
3579         RETURN(ll_set_project(inode, fsxattr.fsx_xflags,
3580                               fsxattr.fsx_projid));
3581 }
3582
3583 int ll_ioctl_project(struct file *file, unsigned int cmd,
3584                      unsigned long arg)
3585 {
3586         struct lu_project lu_project;
3587         struct dentry *dentry = file_dentry(file);
3588         struct inode *inode = file_inode(file);
3589         struct dentry *child_dentry = NULL;
3590         int rc = 0, name_len;
3591
3592         if (copy_from_user(&lu_project,
3593                            (const struct lu_project __user *)arg,
3594                            sizeof(lu_project)))
3595                 RETURN(-EFAULT);
3596
3597         /* apply child dentry if name is valid */
3598         name_len = strnlen(lu_project.project_name, NAME_MAX);
3599         if (name_len > 0 && name_len <= NAME_MAX) {
3600                 inode_lock(inode);
3601                 child_dentry = lookup_one_len(lu_project.project_name,
3602                                               dentry, name_len);
3603                 inode_unlock(inode);
3604                 if (IS_ERR(child_dentry)) {
3605                         rc = PTR_ERR(child_dentry);
3606                         goto out;
3607                 }
3608                 inode = child_dentry->d_inode;
3609                 if (!inode) {
3610                         rc = -ENOENT;
3611                         goto out;
3612                 }
3613         } else if (name_len > NAME_MAX) {
3614                 rc = -EINVAL;
3615                 goto out;
3616         }
3617
3618         switch (lu_project.project_type) {
3619         case LU_PROJECT_SET:
3620                 rc = ll_set_project(inode, lu_project.project_xflags,
3621                                     lu_project.project_id);
3622                 break;
3623         case LU_PROJECT_GET:
3624                 lu_project.project_xflags =
3625                                 ll_inode_flags_to_xflags(inode->i_flags);
3626                 if (test_bit(LLIF_PROJECT_INHERIT,
3627                              &ll_i2info(inode)->lli_flags))
3628                         lu_project.project_xflags |= FS_XFLAG_PROJINHERIT;
3629                 lu_project.project_id = ll_i2info(inode)->lli_projid;
3630                 if (copy_to_user((struct lu_project __user *)arg,
3631                                  &lu_project, sizeof(lu_project))) {
3632                         rc = -EFAULT;
3633                         goto out;
3634                 }
3635                 break;
3636         default:
3637                 rc = -EINVAL;
3638                 break;
3639         }
3640 out:
3641         if (!IS_ERR_OR_NULL(child_dentry))
3642                 dput(child_dentry);
3643         RETURN(rc);
3644 }
3645
3646 static long ll_file_unlock_lease(struct file *file, struct ll_ioc_lease *ioc,
3647                                  unsigned long arg)
3648 {
3649         struct inode            *inode = file_inode(file);
3650         struct ll_file_data     *fd = file->private_data;
3651         struct ll_inode_info    *lli = ll_i2info(inode);
3652         struct obd_client_handle *och = NULL;
3653         struct split_param sp;
3654         struct pcc_param param;
3655         bool lease_broken = false;
3656         fmode_t fmode = 0;
3657         enum mds_op_bias bias = 0;
3658         struct file *layout_file = NULL;
3659         void *data = NULL;
3660         size_t data_size = 0;
3661         bool attached = false;
3662         long rc, rc2 = 0;
3663
3664         ENTRY;
3665
3666         mutex_lock(&lli->lli_och_mutex);
3667         if (fd->fd_lease_och != NULL) {
3668                 och = fd->fd_lease_och;
3669                 fd->fd_lease_och = NULL;
3670         }
3671         mutex_unlock(&lli->lli_och_mutex);
3672
3673         if (och == NULL)
3674                 RETURN(-ENOLCK);
3675
3676         fmode = och->och_flags;
3677
3678         switch (ioc->lil_flags) {
3679         case LL_LEASE_RESYNC_DONE:
3680                 if (ioc->lil_count > IOC_IDS_MAX)
3681                         GOTO(out_lease_close, rc = -EINVAL);
3682
3683                 data_size = offsetof(typeof(*ioc), lil_ids[ioc->lil_count]);
3684                 OBD_ALLOC(data, data_size);
3685                 if (!data)
3686                         GOTO(out_lease_close, rc = -ENOMEM);
3687
3688                 if (copy_from_user(data, (void __user *)arg, data_size))
3689                         GOTO(out_lease_close, rc = -EFAULT);
3690
3691                 bias = MDS_CLOSE_RESYNC_DONE;
3692                 break;
3693         case LL_LEASE_LAYOUT_MERGE: {
3694                 int fd;
3695
3696                 if (ioc->lil_count != 1)
3697                         GOTO(out_lease_close, rc = -EINVAL);
3698
3699                 arg += sizeof(*ioc);
3700                 if (copy_from_user(&fd, (void __user *)arg, sizeof(__u32)))
3701                         GOTO(out_lease_close, rc = -EFAULT);
3702
3703                 layout_file = fget(fd);
3704                 if (!layout_file)
3705                         GOTO(out_lease_close, rc = -EBADF);
3706
3707                 if ((file->f_flags & O_ACCMODE) == O_RDONLY ||
3708                                 (layout_file->f_flags & O_ACCMODE) == O_RDONLY)
3709                         GOTO(out_lease_close, rc = -EPERM);
3710
3711                 data = file_inode(layout_file);
3712                 bias = MDS_CLOSE_LAYOUT_MERGE;
3713                 break;
3714         }
3715         case LL_LEASE_LAYOUT_SPLIT: {
3716                 int fdv;
3717                 int mirror_id;
3718
3719                 if (ioc->lil_count != 2)
3720                         GOTO(out_lease_close, rc = -EINVAL);
3721
3722                 arg += sizeof(*ioc);
3723                 if (copy_from_user(&fdv, (void __user *)arg, sizeof(__u32)))
3724                         GOTO(out_lease_close, rc = -EFAULT);
3725
3726                 arg += sizeof(__u32);
3727                 if (copy_from_user(&mirror_id, (void __user *)arg,
3728                                    sizeof(__u32)))
3729                         GOTO(out_lease_close, rc = -EFAULT);
3730
3731                 layout_file = fget(fdv);
3732                 if (!layout_file)
3733                         GOTO(out_lease_close, rc = -EBADF);
3734
3735                 /* if layout_file == file, it means to destroy the mirror */
3736                 sp.sp_inode = file_inode(layout_file);
3737                 sp.sp_mirror_id = (__u16)mirror_id;
3738                 data = &sp;
3739                 bias = MDS_CLOSE_LAYOUT_SPLIT;
3740                 break;
3741         }
3742         case LL_LEASE_PCC_ATTACH:
3743                 if (ioc->lil_count != 1)
3744                         RETURN(-EINVAL);
3745
3746                 if (IS_ENCRYPTED(inode))
3747                         RETURN(-EOPNOTSUPP);
3748
3749                 arg += sizeof(*ioc);
3750                 if (copy_from_user(&param.pa_archive_id, (void __user *)arg,
3751                                    sizeof(__u32)))
3752                         GOTO(out_lease_close, rc2 = -EFAULT);
3753
3754                 rc2 = pcc_readwrite_attach(file, inode, param.pa_archive_id);
3755                 if (rc2)
3756                         GOTO(out_lease_close, rc2);
3757
3758                 attached = true;
3759                 /* Grab latest data version */
3760                 rc2 = ll_data_version(inode, &param.pa_data_version,
3761                                      LL_DV_WR_FLUSH);
3762                 if (rc2)
3763                         GOTO(out_lease_close, rc2);
3764
3765                 data = &param;
3766                 bias = MDS_PCC_ATTACH;
3767                 break;
3768         default:
3769                 /* without close intent */
3770                 break;
3771         }
3772
3773 out_lease_close:
3774         rc = ll_lease_close_intent(och, inode, &lease_broken, bias, data);
3775         if (rc < 0)
3776                 GOTO(out, rc);
3777
3778         rc = ll_lease_och_release(inode, file);
3779         if (rc < 0)
3780                 GOTO(out, rc);
3781
3782         if (lease_broken)
3783                 fmode = 0;
3784         EXIT;
3785
3786 out:
3787         switch (ioc->lil_flags) {
3788         case LL_LEASE_RESYNC_DONE:
3789                 if (data)
3790                         OBD_FREE(data, data_size);
3791                 break;
3792         case LL_LEASE_LAYOUT_MERGE:
3793         case LL_LEASE_LAYOUT_SPLIT:
3794                 if (layout_file)
3795                         fput(layout_file);
3796
3797                 ll_layout_refresh(inode, &fd->fd_layout_version);
3798                 break;
3799         case LL_LEASE_PCC_ATTACH:
3800                 if (!rc)
3801                         rc = rc2;
3802                 rc = pcc_readwrite_attach_fini(file, inode,
3803                                                param.pa_layout_gen,
3804                                                lease_broken, rc,
3805                                                attached);
3806                 break;
3807         }
3808
3809         if (!rc)
3810                 rc = ll_lease_type_from_fmode(fmode);
3811         RETURN(rc);
3812 }
3813
3814 static long ll_file_set_lease(struct file *file, struct ll_ioc_lease *ioc,
3815                               unsigned long arg)
3816 {
3817         struct inode *inode = file_inode(file);
3818         struct ll_inode_info *lli = ll_i2info(inode);
3819         struct ll_file_data *fd = file->private_data;
3820         struct obd_client_handle *och = NULL;
3821         __u64 open_flags = 0;
3822         bool lease_broken;
3823         fmode_t fmode;
3824         long rc;
3825         ENTRY;
3826
3827         switch (ioc->lil_mode) {
3828         case LL_LEASE_WRLCK:
3829                 if (!(file->f_mode & FMODE_WRITE))
3830                         RETURN(-EPERM);
3831                 fmode = FMODE_WRITE;
3832                 break;
3833         case LL_LEASE_RDLCK:
3834                 if (!(file->f_mode & FMODE_READ))
3835                         RETURN(-EPERM);
3836                 fmode = FMODE_READ;
3837                 break;
3838         case LL_LEASE_UNLCK:
3839                 RETURN(ll_file_unlock_lease(file, ioc, arg));
3840         default:
3841                 RETURN(-EINVAL);
3842         }
3843
3844         CDEBUG(D_INODE, "Set lease with mode %u\n", fmode);
3845
3846         /* apply for lease */
3847         if (ioc->lil_flags & LL_LEASE_RESYNC)
3848                 open_flags = MDS_OPEN_RESYNC;
3849         och = ll_lease_open(inode, file, fmode, open_flags);
3850         if (IS_ERR(och))
3851                 RETURN(PTR_ERR(och));
3852
3853         if (ioc->lil_flags & LL_LEASE_RESYNC) {
3854                 rc = ll_lease_file_resync(och, inode, arg);
3855                 if (rc) {
3856                         ll_lease_close(och, inode, NULL);
3857                         RETURN(rc);
3858                 }
3859                 rc = ll_layout_refresh(inode, &fd->fd_layout_version);
3860                 if (rc) {
3861                         ll_lease_close(och, inode, NULL);
3862                         RETURN(rc);
3863                 }
3864         }
3865
3866         rc = 0;
3867         mutex_lock(&lli->lli_och_mutex);
3868         if (fd->fd_lease_och == NULL) {
3869                 fd->fd_lease_och = och;
3870                 och = NULL;
3871         }
3872         mutex_unlock(&lli->lli_och_mutex);
3873         if (och != NULL) {
3874                 /* impossible now that only excl is supported for now */
3875                 ll_lease_close(och, inode, &lease_broken);
3876                 rc = -EBUSY;
3877         }
3878         RETURN(rc);
3879 }
3880
3881 static void ll_heat_get(struct inode *inode, struct lu_heat *heat)
3882 {
3883         struct ll_inode_info *lli = ll_i2info(inode);
3884         struct ll_sb_info *sbi = ll_i2sbi(inode);
3885         __u64 now = ktime_get_real_seconds();
3886         int i;
3887
3888         spin_lock(&lli->lli_heat_lock);
3889         heat->lh_flags = lli->lli_heat_flags;
3890         for (i = 0; i < heat->lh_count; i++)
3891                 heat->lh_heat[i] = obd_heat_get(&lli->lli_heat_instances[i],
3892                                                 now, sbi->ll_heat_decay_weight,
3893                                                 sbi->ll_heat_period_second);
3894         spin_unlock(&lli->lli_heat_lock);
3895 }
3896
3897 static int ll_heat_set(struct inode *inode, enum lu_heat_flag flags)
3898 {
3899         struct ll_inode_info *lli = ll_i2info(inode);
3900         int rc = 0;
3901
3902         spin_lock(&lli->lli_heat_lock);
3903         if (flags & LU_HEAT_FLAG_CLEAR)
3904                 obd_heat_clear(lli->lli_heat_instances, OBD_HEAT_COUNT);
3905
3906         if (flags & LU_HEAT_FLAG_OFF)
3907                 lli->lli_heat_flags |= LU_HEAT_FLAG_OFF;
3908         else
3909                 lli->lli_heat_flags &= ~LU_HEAT_FLAG_OFF;
3910
3911         spin_unlock(&lli->lli_heat_lock);
3912
3913         RETURN(rc);
3914 }
3915
3916 static long
3917 ll_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
3918 {
3919         struct inode            *inode = file_inode(file);
3920         struct ll_file_data     *fd = file->private_data;
3921         int                      flags, rc;
3922         ENTRY;
3923
3924         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), cmd=%x\n",
3925                PFID(ll_inode2fid(inode)), inode, cmd);
3926         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_IOCTL, 1);
3927
3928         /* asm-ppc{,64} declares TCGETS, et. al. as type 't' not 'T' */
3929         if (_IOC_TYPE(cmd) == 'T' || _IOC_TYPE(cmd) == 't') /* tty ioctls */
3930                 RETURN(-ENOTTY);
3931
3932         switch (cmd) {
3933         case LL_IOC_GETFLAGS:
3934                 /* Get the current value of the file flags */
3935                 return put_user(fd->fd_flags, (int __user *)arg);
3936         case LL_IOC_SETFLAGS:
3937         case LL_IOC_CLRFLAGS:
3938                 /* Set or clear specific file flags */
3939                 /* XXX This probably needs checks to ensure the flags are
3940                  *     not abused, and to handle any flag side effects.
3941                  */
3942                 if (get_user(flags, (int __user *) arg))
3943                         RETURN(-EFAULT);
3944
3945                 if (cmd == LL_IOC_SETFLAGS) {
3946                         if ((flags & LL_FILE_IGNORE_LOCK) &&
3947                             !(file->f_flags & O_DIRECT)) {
3948                                 CERROR("%s: unable to disable locking on "
3949                                        "non-O_DIRECT file\n", current->comm);
3950                                 RETURN(-EINVAL);
3951                         }
3952
3953                         fd->fd_flags |= flags;
3954                 } else {
3955                         fd->fd_flags &= ~flags;
3956                 }
3957                 RETURN(0);
3958         case LL_IOC_LOV_SETSTRIPE:
3959         case LL_IOC_LOV_SETSTRIPE_NEW:
3960                 RETURN(ll_lov_setstripe(inode, file, (void __user *)arg));
3961         case LL_IOC_LOV_SETEA:
3962                 RETURN(ll_lov_setea(inode, file, (void __user *)arg));
3963         case LL_IOC_LOV_SWAP_LAYOUTS: {
3964                 struct file *file2;
3965                 struct lustre_swap_layouts lsl;
3966
3967                 if (copy_from_user(&lsl, (char __user *)arg,
3968                                    sizeof(struct lustre_swap_layouts)))
3969                         RETURN(-EFAULT);
3970
3971                 if ((file->f_flags & O_ACCMODE) == O_RDONLY)
3972                         RETURN(-EPERM);
3973
3974                 file2 = fget(lsl.sl_fd);
3975                 if (file2 == NULL)
3976                         RETURN(-EBADF);
3977
3978                 /* O_WRONLY or O_RDWR */
3979                 if ((file2->f_flags & O_ACCMODE) == O_RDONLY)
3980                         GOTO(out, rc = -EPERM);
3981
3982                 if (lsl.sl_flags & SWAP_LAYOUTS_CLOSE) {
3983                         struct inode                    *inode2;
3984                         struct ll_inode_info            *lli;
3985                         struct obd_client_handle        *och = NULL;
3986
3987                         lli = ll_i2info(inode);
3988                         mutex_lock(&lli->lli_och_mutex);
3989                         if (fd->fd_lease_och != NULL) {
3990                                 och = fd->fd_lease_och;
3991                                 fd->fd_lease_och = NULL;
3992                         }
3993                         mutex_unlock(&lli->lli_och_mutex);
3994                         if (och == NULL)
3995                                 GOTO(out, rc = -ENOLCK);
3996                         inode2 = file_inode(file2);
3997                         rc = ll_swap_layouts_close(och, inode, inode2);
3998                 } else {
3999                         rc = ll_swap_layouts(file, file2, &lsl);
4000                 }
4001 out:
4002                 fput(file2);
4003                 RETURN(rc);
4004         }
4005         case LL_IOC_LOV_GETSTRIPE:
4006         case LL_IOC_LOV_GETSTRIPE_NEW:
4007                 RETURN(ll_file_getstripe(inode, (void __user *)arg, 0));
4008         case FS_IOC_GETFLAGS:
4009         case FS_IOC_SETFLAGS:
4010                 RETURN(ll_iocontrol(inode, file, cmd, arg));
4011         case FSFILT_IOC_GETVERSION:
4012         case FS_IOC_GETVERSION:
4013                 RETURN(put_user(inode->i_generation, (int __user *)arg));
4014         /* We need to special case any other ioctls we want to handle,
4015          * to send them to the MDS/OST as appropriate and to properly
4016          * network encode the arg field. */
4017         case FS_IOC_SETVERSION:
4018                 RETURN(-ENOTSUPP);
4019
4020         case LL_IOC_GROUP_LOCK:
4021                 RETURN(ll_get_grouplock(inode, file, arg));
4022         case LL_IOC_GROUP_UNLOCK:
4023                 RETURN(ll_put_grouplock(inode, file, arg));
4024         case IOC_OBD_STATFS:
4025                 RETURN(ll_obd_statfs(inode, (void __user *)arg));
4026
4027         case LL_IOC_FLUSHCTX:
4028                 RETURN(ll_flush_ctx(inode));
4029         case LL_IOC_PATH2FID: {
4030                 if (copy_to_user((void __user *)arg, ll_inode2fid(inode),
4031                                  sizeof(struct lu_fid)))
4032                         RETURN(-EFAULT);
4033
4034                 RETURN(0);
4035         }
4036         case LL_IOC_GETPARENT:
4037                 RETURN(ll_getparent(file, (struct getparent __user *)arg));
4038
4039         case OBD_IOC_FID2PATH:
4040                 RETURN(ll_fid2path(inode, (void __user *)arg));
4041         case LL_IOC_DATA_VERSION: {
4042                 struct ioc_data_version idv;
4043                 int rc;
4044
4045                 if (copy_from_user(&idv, (char __user *)arg, sizeof(idv)))
4046                         RETURN(-EFAULT);
4047
4048                 idv.idv_flags &= LL_DV_RD_FLUSH | LL_DV_WR_FLUSH;
4049                 rc = ll_ioc_data_version(inode, &idv);
4050
4051                 if (rc == 0 &&
4052                     copy_to_user((char __user *)arg, &idv, sizeof(idv)))
4053                         RETURN(-EFAULT);
4054
4055                 RETURN(rc);
4056         }
4057
4058         case LL_IOC_GET_MDTIDX: {
4059                 int mdtidx;
4060
4061                 mdtidx = ll_get_mdt_idx(inode);
4062                 if (mdtidx < 0)
4063                         RETURN(mdtidx);
4064
4065                 if (put_user((int)mdtidx, (int __user *)arg))
4066                         RETURN(-EFAULT);
4067
4068                 RETURN(0);
4069         }
4070         case OBD_IOC_GETNAME_OLD:
4071         case OBD_IOC_GETDTNAME:
4072         case OBD_IOC_GETMDNAME:
4073                 RETURN(ll_get_obd_name(inode, cmd, arg));
4074         case LL_IOC_HSM_STATE_GET: {
4075                 struct md_op_data       *op_data;
4076                 struct hsm_user_state   *hus;
4077                 int                      rc;
4078
4079                 OBD_ALLOC_PTR(hus);
4080                 if (hus == NULL)
4081                         RETURN(-ENOMEM);
4082
4083                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
4084                                              LUSTRE_OPC_ANY, hus);
4085                 if (IS_ERR(op_data)) {
4086                         OBD_FREE_PTR(hus);
4087                         RETURN(PTR_ERR(op_data));
4088                 }
4089
4090                 rc = obd_iocontrol(cmd, ll_i2mdexp(inode), sizeof(*op_data),
4091                                    op_data, NULL);
4092
4093                 if (copy_to_user((void __user *)arg, hus, sizeof(*hus)))
4094                         rc = -EFAULT;
4095
4096                 ll_finish_md_op_data(op_data);
4097                 OBD_FREE_PTR(hus);
4098                 RETURN(rc);
4099         }
4100         case LL_IOC_HSM_STATE_SET: {
4101                 struct hsm_state_set    *hss;
4102                 int                      rc;
4103
4104                 OBD_ALLOC_PTR(hss);
4105                 if (hss == NULL)
4106                         RETURN(-ENOMEM);
4107
4108                 if (copy_from_user(hss, (char __user *)arg, sizeof(*hss))) {
4109                         OBD_FREE_PTR(hss);
4110                         RETURN(-EFAULT);
4111                 }
4112
4113                 rc = ll_hsm_state_set(inode, hss);
4114
4115                 OBD_FREE_PTR(hss);
4116                 RETURN(rc);
4117         }
4118         case LL_IOC_HSM_ACTION: {
4119                 struct md_op_data *op_data;
4120                 struct hsm_current_action *hca;
4121                 const char *action;
4122                 int rc;
4123
4124                 OBD_ALLOC_PTR(hca);
4125                 if (hca == NULL)
4126                         RETURN(-ENOMEM);
4127
4128                 op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
4129                                              LUSTRE_OPC_ANY, hca);
4130                 if (IS_ERR(op_data)) {
4131                         OBD_FREE_PTR(hca);
4132                         RETURN(PTR_ERR(op_data));
4133                 }
4134
4135                 rc = obd_iocontrol(cmd, ll_i2mdexp(inode), sizeof(*op_data),
4136                                    op_data, NULL);
4137                 if (rc < 0)
4138                         GOTO(skip_copy, rc);
4139
4140                 /* The hsm_current_action retreived from the server could
4141                  * contain corrupt information. If it is incorrect data collect
4142                  * debug information. We still send the data even if incorrect
4143                  * to user land to handle.
4144                  */
4145                 action = hsm_user_action2name(hca->hca_action);
4146                 if (strcmp(action, "UNKNOWN") == 0 ||
4147                     hca->hca_state > HPS_DONE) {
4148                         CDEBUG(D_HSM,
4149                                "HSM current state %s action %s, offset = %llu, length %llu\n",
4150                                hsm_progress_state2name(hca->hca_state), action,
4151                                hca->hca_location.offset, hca->hca_location.length);
4152                 }
4153
4154                 if (copy_to_user((char __user *)arg, hca, sizeof(*hca)))
4155                         rc = -EFAULT;
4156 skip_copy:
4157                 ll_finish_md_op_data(op_data);
4158                 OBD_FREE_PTR(hca);
4159                 RETURN(rc);
4160         }
4161         case LL_IOC_SET_LEASE_OLD: {
4162                 struct ll_ioc_lease ioc = { .lil_mode = (__u32)arg };
4163
4164                 RETURN(ll_file_set_lease(file, &ioc, 0));
4165         }
4166         case LL_IOC_SET_LEASE: {
4167                 struct ll_ioc_lease ioc;
4168
4169                 if (copy_from_user(&ioc, (void __user *)arg, sizeof(ioc)))
4170                         RETURN(-EFAULT);
4171
4172                 RETURN(ll_file_set_lease(file, &ioc, arg));
4173         }
4174         case LL_IOC_GET_LEASE: {
4175                 struct ll_inode_info *lli = ll_i2info(inode);
4176                 struct ldlm_lock *lock = NULL;
4177                 fmode_t fmode = 0;
4178
4179                 mutex_lock(&lli->lli_och_mutex);
4180                 if (fd->fd_lease_och != NULL) {
4181                         struct obd_client_handle *och = fd->fd_lease_och;
4182
4183                         lock = ldlm_handle2lock(&och->och_lease_handle);
4184                         if (lock != NULL) {
4185                                 lock_res_and_lock(lock);
4186                                 if (!ldlm_is_cancel(lock))
4187                                         fmode = och->och_flags;
4188
4189                                 unlock_res_and_lock(lock);
4190                                 LDLM_LOCK_PUT(lock);
4191                         }
4192                 }
4193                 mutex_unlock(&lli->lli_och_mutex);
4194
4195                 RETURN(ll_lease_type_from_fmode(fmode));
4196         }
4197         case LL_IOC_HSM_IMPORT: {
4198                 struct hsm_user_import *hui;
4199
4200                 OBD_ALLOC_PTR(hui);
4201                 if (hui == NULL)
4202                         RETURN(-ENOMEM);
4203
4204                 if (copy_from_user(hui, (void __user *)arg, sizeof(*hui))) {
4205                         OBD_FREE_PTR(hui);
4206                         RETURN(-EFAULT);
4207                 }
4208
4209                 rc = ll_hsm_import(inode, file, hui);
4210
4211                 OBD_FREE_PTR(hui);
4212                 RETURN(rc);
4213         }
4214         case LL_IOC_FUTIMES_3: {
4215                 struct ll_futimes_3 lfu;
4216
4217                 if (copy_from_user(&lfu,
4218                                    (const struct ll_futimes_3 __user *)arg,
4219                                    sizeof(lfu)))
4220                         RETURN(-EFAULT);
4221
4222                 RETURN(ll_file_futimes_3(file, &lfu));
4223         }
4224         case LL_IOC_LADVISE: {
4225                 struct llapi_ladvise_hdr *k_ladvise_hdr;
4226                 struct llapi_ladvise_hdr __user *u_ladvise_hdr;
4227                 int i;
4228                 int num_advise;
4229                 int alloc_size = sizeof(*k_ladvise_hdr);
4230
4231                 rc = 0;
4232                 u_ladvise_hdr = (void __user *)arg;
4233                 OBD_ALLOC_PTR(k_ladvise_hdr);
4234                 if (k_ladvise_hdr == NULL)
4235                         RETURN(-ENOMEM);
4236
4237                 if (copy_from_user(k_ladvise_hdr, u_ladvise_hdr, alloc_size))
4238                         GOTO(out_ladvise, rc = -EFAULT);
4239
4240                 if (k_ladvise_hdr->lah_magic != LADVISE_MAGIC ||
4241                     k_ladvise_hdr->lah_count < 1)
4242                         GOTO(out_ladvise, rc = -EINVAL);
4243
4244                 num_advise = k_ladvise_hdr->lah_count;
4245                 if (num_advise >= LAH_COUNT_MAX)
4246                         GOTO(out_ladvise, rc = -EFBIG);
4247
4248                 OBD_FREE_PTR(k_ladvise_hdr);
4249                 alloc_size = offsetof(typeof(*k_ladvise_hdr),
4250                                       lah_advise[num_advise]);
4251                 OBD_ALLOC(k_ladvise_hdr, alloc_size);
4252                 if (k_ladvise_hdr == NULL)
4253                         RETURN(-ENOMEM);
4254
4255                 /*
4256                  * TODO: submit multiple advices to one server in a single RPC
4257                  */
4258                 if (copy_from_user(k_ladvise_hdr, u_ladvise_hdr, alloc_size))
4259                         GOTO(out_ladvise, rc = -EFAULT);
4260
4261                 for (i = 0; i < num_advise; i++) {
4262                         struct llapi_lu_ladvise *k_ladvise =
4263                                         &k_ladvise_hdr->lah_advise[i];
4264                         struct llapi_lu_ladvise __user *u_ladvise =
4265                                         &u_ladvise_hdr->lah_advise[i];
4266
4267                         rc = ll_ladvise_sanity(inode, k_ladvise);
4268                         if (rc)
4269                                 GOTO(out_ladvise, rc);
4270
4271                         switch (k_ladvise->lla_advice) {
4272                         case LU_LADVISE_LOCKNOEXPAND:
4273                                 rc = ll_lock_noexpand(file,
4274                                                k_ladvise->lla_peradvice_flags);
4275                                 GOTO(out_ladvise, rc);
4276                         case LU_LADVISE_LOCKAHEAD:
4277
4278                                 rc = ll_file_lock_ahead(file, k_ladvise);
4279
4280                                 if (rc < 0)
4281                                         GOTO(out_ladvise, rc);
4282
4283                                 if (put_user(rc,
4284                                              &u_ladvise->lla_lockahead_result))
4285                                         GOTO(out_ladvise, rc = -EFAULT);
4286                                 break;
4287                         default:
4288                                 rc = ll_ladvise(inode, file,
4289                                                 k_ladvise_hdr->lah_flags,
4290                                                 k_ladvise);
4291                                 if (rc)
4292                                         GOTO(out_ladvise, rc);
4293                                 break;
4294                         }
4295
4296                 }
4297
4298 out_ladvise:
4299                 OBD_FREE(k_ladvise_hdr, alloc_size);
4300                 RETURN(rc);
4301         }
4302         case LL_IOC_FLR_SET_MIRROR: {
4303                 /* mirror I/O must be direct to avoid polluting page cache
4304                  * by stale data. */
4305                 if (!(file->f_flags & O_DIRECT))
4306                         RETURN(-EINVAL);
4307
4308                 fd->fd_designated_mirror = (__u32)arg;
4309                 RETURN(0);
4310         }
4311         case FS_IOC_FSGETXATTR:
4312                 RETURN(ll_ioctl_fsgetxattr(inode, cmd, arg));
4313         case FS_IOC_FSSETXATTR:
4314                 RETURN(ll_ioctl_fssetxattr(inode, cmd, arg));
4315         case LL_IOC_PROJECT:
4316                 RETURN(ll_ioctl_project(file, cmd, arg));
4317         case BLKSSZGET:
4318                 RETURN(put_user(PAGE_SIZE, (int __user *)arg));
4319         case LL_IOC_HEAT_GET: {
4320                 struct lu_heat uheat;
4321                 struct lu_heat *heat;
4322                 int size;
4323
4324                 if (copy_from_user(&uheat, (void __user *)arg, sizeof(uheat)))
4325                         RETURN(-EFAULT);
4326
4327                 if (uheat.lh_count > OBD_HEAT_COUNT)
4328                         uheat.lh_count = OBD_HEAT_COUNT;
4329
4330                 size = offsetof(typeof(uheat), lh_heat[uheat.lh_count]);
4331                 OBD_ALLOC(heat, size);
4332                 if (heat == NULL)
4333                         RETURN(-ENOMEM);
4334
4335                 heat->lh_count = uheat.lh_count;
4336                 ll_heat_get(inode, heat);
4337                 rc = copy_to_user((char __user *)arg, heat, size);
4338                 OBD_FREE(heat, size);
4339                 RETURN(rc ? -EFAULT : 0);
4340         }
4341         case LL_IOC_HEAT_SET: {
4342                 __u64 flags;
4343
4344                 if (copy_from_user(&flags, (void __user *)arg, sizeof(flags)))
4345                         RETURN(-EFAULT);
4346
4347                 rc = ll_heat_set(inode, flags);
4348                 RETURN(rc);
4349         }
4350         case LL_IOC_PCC_DETACH: {
4351                 struct lu_pcc_detach *detach;
4352
4353                 OBD_ALLOC_PTR(detach);
4354                 if (detach == NULL)
4355                         RETURN(-ENOMEM);
4356
4357                 if (copy_from_user(detach,
4358                                    (const struct lu_pcc_detach __user *)arg,
4359                                    sizeof(*detach)))
4360                         GOTO(out_detach_free, rc = -EFAULT);
4361
4362                 if (!S_ISREG(inode->i_mode))
4363                         GOTO(out_detach_free, rc = -EINVAL);
4364
4365                 if (!inode_owner_or_capable(&init_user_ns, inode))
4366                         GOTO(out_detach_free, rc = -EPERM);
4367
4368                 rc = pcc_ioctl_detach(inode, detach->pccd_opt);
4369 out_detach_free:
4370                 OBD_FREE_PTR(detach);
4371                 RETURN(rc);
4372         }
4373         case LL_IOC_PCC_STATE: {
4374                 struct lu_pcc_state __user *ustate =
4375                         (struct lu_pcc_state __user *)arg;
4376                 struct lu_pcc_state *state;
4377
4378                 OBD_ALLOC_PTR(state);
4379                 if (state == NULL)
4380                         RETURN(-ENOMEM);
4381
4382                 if (copy_from_user(state, ustate, sizeof(*state)))
4383                         GOTO(out_state, rc = -EFAULT);
4384
4385                 rc = pcc_ioctl_state(file, inode, state);
4386                 if (rc)
4387                         GOTO(out_state, rc);
4388
4389                 if (copy_to_user(ustate, state, sizeof(*state)))
4390                         GOTO(out_state, rc = -EFAULT);
4391
4392 out_state:
4393                 OBD_FREE_PTR(state);
4394                 RETURN(rc);
4395         }
4396 #ifdef HAVE_LUSTRE_CRYPTO
4397         case LL_IOC_SET_ENCRYPTION_POLICY:
4398                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
4399                         return -EOPNOTSUPP;
4400                 return llcrypt_ioctl_set_policy(file, (const void __user *)arg);
4401         case LL_IOC_GET_ENCRYPTION_POLICY_EX:
4402                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
4403                         return -EOPNOTSUPP;
4404                 return llcrypt_ioctl_get_policy_ex(file, (void __user *)arg);
4405         case LL_IOC_ADD_ENCRYPTION_KEY:
4406                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
4407                         return -EOPNOTSUPP;
4408                 return llcrypt_ioctl_add_key(file, (void __user *)arg);
4409         case LL_IOC_REMOVE_ENCRYPTION_KEY:
4410                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
4411                         return -EOPNOTSUPP;
4412                 return llcrypt_ioctl_remove_key(file, (void __user *)arg);
4413         case LL_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
4414                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
4415                         return -EOPNOTSUPP;
4416                 return llcrypt_ioctl_remove_key_all_users(file,
4417                                                           (void __user *)arg);
4418         case LL_IOC_GET_ENCRYPTION_KEY_STATUS:
4419                 if (!ll_sbi_has_encrypt(ll_i2sbi(inode)))
4420                         return -EOPNOTSUPP;
4421                 return llcrypt_ioctl_get_key_status(file, (void __user *)arg);
4422 #endif
4423
4424         case LL_IOC_UNLOCK_FOREIGN: {
4425                 struct dentry *dentry = file_dentry(file);
4426
4427                 /* if not a foreign symlink do nothing */
4428                 if (ll_foreign_is_removable(dentry, true)) {
4429                         CDEBUG(D_INFO,
4430                                "prevent unlink of non-foreign file ("DFID")\n",
4431                                PFID(ll_inode2fid(inode)));
4432                         RETURN(-EOPNOTSUPP);
4433                 }
4434                 RETURN(0);
4435         }
4436
4437         default:
4438                 RETURN(obd_iocontrol(cmd, ll_i2dtexp(inode), 0, NULL,
4439                                      (void __user *)arg));
4440         }
4441 }
4442
4443 loff_t ll_lseek(struct file *file, loff_t offset, int whence)
4444 {
4445         struct inode *inode = file_inode(file);
4446         struct lu_env *env;
4447         struct cl_io *io;
4448         struct cl_lseek_io *lsio;
4449         __u16 refcheck;
4450         int rc;
4451         loff_t retval;
4452
4453         ENTRY;
4454
4455         env = cl_env_get(&refcheck);
4456         if (IS_ERR(env))
4457                 RETURN(PTR_ERR(env));
4458
4459         io = vvp_env_thread_io(env);
4460         io->ci_obj = ll_i2info(inode)->lli_clob;
4461         ll_io_set_mirror(io, file);
4462
4463         lsio = &io->u.ci_lseek;
4464         lsio->ls_start = offset;
4465         lsio->ls_whence = whence;
4466         lsio->ls_result = -ENXIO;
4467
4468         do {
4469                 rc = cl_io_init(env, io, CIT_LSEEK, io->ci_obj);
4470                 if (!rc) {
4471                         struct vvp_io *vio = vvp_env_io(env);
4472
4473                         vio->vui_fd = file->private_data;
4474                         rc = cl_io_loop(env, io);
4475                 } else {
4476                         rc = io->ci_result;
4477                 }
4478                 retval = rc ? : lsio->ls_result;
4479                 cl_io_fini(env, io);
4480         } while (unlikely(io->ci_need_restart));
4481
4482         cl_env_put(env, &refcheck);
4483
4484         /* Without the key, SEEK_HOLE return value has to be
4485          * rounded up to next LUSTRE_ENCRYPTION_UNIT_SIZE.
4486          */
4487         if (llcrypt_require_key(inode) == -ENOKEY && whence == SEEK_HOLE)
4488                 retval = round_up(retval, LUSTRE_ENCRYPTION_UNIT_SIZE);
4489
4490         RETURN(retval);
4491 }
4492
4493 static loff_t ll_file_seek(struct file *file, loff_t offset, int origin)
4494 {
4495         struct inode *inode = file_inode(file);
4496         loff_t retval = offset, eof = 0;
4497         ktime_t kstart = ktime_get();
4498
4499         ENTRY;
4500
4501         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), to=%llu=%#llx(%d)\n",
4502                PFID(ll_inode2fid(inode)), inode, retval, retval,
4503                origin);
4504
4505         if (origin == SEEK_END) {
4506                 retval = ll_glimpse_size(inode);
4507                 if (retval != 0)
4508                         RETURN(retval);
4509                 eof = i_size_read(inode);
4510         }
4511
4512         if (origin == SEEK_HOLE || origin == SEEK_DATA) {
4513                 if (offset < 0)
4514                         return -ENXIO;
4515
4516                 /* flush local cache first if any */
4517                 cl_sync_file_range(inode, offset, OBD_OBJECT_EOF,
4518                                    CL_FSYNC_LOCAL, 0);
4519
4520                 retval = ll_lseek(file, offset, origin);
4521                 if (retval < 0)
4522                         return retval;
4523                 retval = vfs_setpos(file, retval, ll_file_maxbytes(inode));
4524         } else {
4525                 retval = generic_file_llseek_size(file, offset, origin,
4526                                                   ll_file_maxbytes(inode), eof);
4527         }
4528         if (retval >= 0)
4529                 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_LLSEEK,
4530                                    ktime_us_delta(ktime_get(), kstart));
4531         RETURN(retval);
4532 }
4533
4534 static int ll_flush(struct file *file, fl_owner_t id)
4535 {
4536         struct inode *inode = file_inode(file);
4537         struct ll_inode_info *lli = ll_i2info(inode);
4538         struct ll_file_data *fd = file->private_data;
4539         int rc, err;
4540
4541         LASSERT(!S_ISDIR(inode->i_mode));
4542
4543         /* catch async errors that were recorded back when async writeback
4544          * failed for pages in this mapping. */
4545         rc = lli->lli_async_rc;
4546         lli->lli_async_rc = 0;
4547         if (lli->lli_clob != NULL) {
4548                 err = lov_read_and_clear_async_rc(lli->lli_clob);
4549                 if (rc == 0)
4550                         rc = err;
4551         }
4552
4553         /* The application has been told write failure already.
4554          * Do not report failure again. */
4555         if (fd->fd_write_failed)
4556                 return 0;
4557         return rc ? -EIO : 0;
4558 }
4559
4560 /**
4561  * Called to make sure a portion of file has been written out.
4562  * if @mode is not CL_FSYNC_LOCAL, it will send OST_SYNC RPCs to OST.
4563  *
4564  * Return how many pages have been written.
4565  */
4566 int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
4567                        enum cl_fsync_mode mode, int ignore_layout)
4568 {
4569         struct lu_env *env;
4570         struct cl_io *io;
4571         struct cl_fsync_io *fio;
4572         int result;
4573         __u16 refcheck;
4574         ENTRY;
4575
4576         if (mode != CL_FSYNC_NONE && mode != CL_FSYNC_LOCAL &&
4577             mode != CL_FSYNC_DISCARD && mode != CL_FSYNC_ALL)
4578                 RETURN(-EINVAL);
4579
4580         env = cl_env_get(&refcheck);
4581         if (IS_ERR(env))
4582                 RETURN(PTR_ERR(env));
4583
4584         io = vvp_env_thread_io(env);
4585         io->ci_obj = ll_i2info(inode)->lli_clob;
4586         io->ci_ignore_layout = ignore_layout;
4587
4588         /* initialize parameters for sync */
4589         fio = &io->u.ci_fsync;
4590         fio->fi_start = start;
4591         fio->fi_end = end;
4592         fio->fi_fid = ll_inode2fid(inode);
4593         fio->fi_mode = mode;
4594         fio->fi_nr_written = 0;
4595
4596         if (cl_io_init(env, io, CIT_FSYNC, io->ci_obj) == 0)
4597                 result = cl_io_loop(env, io);
4598         else
4599                 result = io->ci_result;
4600         if (result == 0)
4601                 result = fio->fi_nr_written;
4602         cl_io_fini(env, io);
4603         cl_env_put(env, &refcheck);
4604
4605         RETURN(result);
4606 }
4607
4608 /*
4609  * When dentry is provided (the 'else' case), file_dentry() may be
4610  * null and dentry must be used directly rather than pulled from
4611  * file_dentry() as is done otherwise.
4612  */
4613
4614 int ll_fsync(struct file *file, loff_t start, loff_t end, int datasync)
4615 {
4616         struct dentry *dentry = file_dentry(file);
4617         struct inode *inode = dentry->d_inode;
4618         struct ll_inode_info *lli = ll_i2info(inode);
4619         struct ptlrpc_request *req;
4620         ktime_t kstart = ktime_get();
4621         int rc, err;
4622
4623         ENTRY;
4624
4625         CDEBUG(D_VFSTRACE,
4626                "VFS Op:inode="DFID"(%p), start %lld, end %lld, datasync %d\n",
4627                PFID(ll_inode2fid(inode)), inode, start, end, datasync);
4628
4629         /* fsync's caller has already called _fdata{sync,write}, we want
4630          * that IO to finish before calling the osc and mdc sync methods */
4631         rc = filemap_write_and_wait_range(inode->i_mapping, start, end);
4632
4633         /* catch async errors that were recorded back when async writeback
4634          * failed for pages in this mapping. */
4635         if (!S_ISDIR(inode->i_mode)) {
4636                 err = lli->lli_async_rc;
4637                 lli->lli_async_rc = 0;
4638                 if (rc == 0)
4639                         rc = err;
4640                 if (lli->lli_clob != NULL) {
4641                         err = lov_read_and_clear_async_rc(lli->lli_clob);
4642                         if (rc == 0)
4643                                 rc = err;
4644                 }
4645         }
4646
4647         err = md_fsync(ll_i2sbi(inode)->ll_md_exp, ll_inode2fid(inode), &req);
4648         if (!rc)
4649                 rc = err;
4650         if (!err)
4651                 ptlrpc_req_finished(req);
4652
4653         if (S_ISREG(inode->i_mode)) {
4654                 struct ll_file_data *fd = file->private_data;
4655                 bool cached;
4656
4657                 /* Sync metadata on MDT first, and then sync the cached data
4658                  * on PCC.
4659                  */
4660                 err = pcc_fsync(file, start, end, datasync, &cached);
4661                 if (!cached)
4662                         err = cl_sync_file_range(inode, start, end,
4663                                                  CL_FSYNC_ALL, 0);
4664                 if (rc == 0 && err < 0)
4665                         rc = err;
4666                 if (rc < 0)
4667                         fd->fd_write_failed = true;
4668                 else
4669                         fd->fd_write_failed = false;
4670         }
4671
4672         if (!rc)
4673                 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_FSYNC,
4674                                    ktime_us_delta(ktime_get(), kstart));
4675         RETURN(rc);
4676 }
4677
4678 static int
4679 ll_file_flock(struct file *file, int cmd, struct file_lock *file_lock)
4680 {
4681         struct inode *inode = file_inode(file);
4682         struct ll_sb_info *sbi = ll_i2sbi(inode);
4683         struct ldlm_enqueue_info einfo = {
4684                 .ei_type        = LDLM_FLOCK,
4685                 .ei_cb_cp       = ldlm_flock_completion_ast,
4686                 .ei_cbdata      = file_lock,
4687         };
4688         struct md_op_data *op_data;
4689         struct lustre_handle lockh = { 0 };
4690         union ldlm_policy_data flock = { { 0 } };
4691         int fl_type = file_lock->fl_type;
4692         ktime_t kstart = ktime_get();
4693         __u64 flags = 0;
4694         int rc;
4695         int rc2 = 0;
4696         ENTRY;
4697
4698         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID" file_lock=%p\n",
4699                PFID(ll_inode2fid(inode)), file_lock);
4700
4701         if (file_lock->fl_flags & FL_FLOCK) {
4702                 LASSERT((cmd == F_SETLKW) || (cmd == F_SETLK));
4703                 /* flocks are whole-file locks */
4704                 flock.l_flock.end = OFFSET_MAX;
4705                 /* For flocks owner is determined by the local file desctiptor*/
4706                 flock.l_flock.owner = (unsigned long)file_lock->fl_file;
4707         } else if (file_lock->fl_flags & FL_POSIX) {
4708                 flock.l_flock.owner = (unsigned long)file_lock->fl_owner;
4709                 flock.l_flock.start = file_lock->fl_start;
4710                 flock.l_flock.end = file_lock->fl_end;
4711         } else {
4712                 RETURN(-EINVAL);
4713         }
4714         flock.l_flock.pid = file_lock->fl_pid;
4715
4716 #if defined(HAVE_LM_COMPARE_OWNER) || defined(lm_compare_owner)
4717         /* Somewhat ugly workaround for svc lockd.
4718          * lockd installs custom fl_lmops->lm_compare_owner that checks
4719          * for the fl_owner to be the same (which it always is on local node
4720          * I guess between lockd processes) and then compares pid.
4721          * As such we assign pid to the owner field to make it all work,
4722          * conflict with normal locks is unlikely since pid space and
4723          * pointer space for current->files are not intersecting */
4724         if (file_lock->fl_lmops && file_lock->fl_lmops->lm_compare_owner)
4725                 flock.l_flock.owner = (unsigned long)file_lock->fl_pid;
4726 #endif
4727
4728         switch (fl_type) {
4729         case F_RDLCK:
4730                 einfo.ei_mode = LCK_PR;
4731                 break;
4732         case F_UNLCK:
4733                 /* An unlock request may or may not have any relation to
4734                  * existing locks so we may not be able to pass a lock handle
4735                  * via a normal ldlm_lock_cancel() request. The request may even
4736                  * unlock a byte range in the middle of an existing lock. In
4737                  * order to process an unlock request we need all of the same
4738                  * information that is given with a normal read or write record
4739                  * lock request. To avoid creating another ldlm unlock (cancel)
4740                  * message we'll treat a LCK_NL flock request as an unlock. */
4741                 einfo.ei_mode = LCK_NL;
4742                 break;
4743         case F_WRLCK:
4744                 einfo.ei_mode = LCK_PW;
4745                 break;
4746         default:
4747                 CDEBUG(D_INFO, "Unknown fcntl lock type: %d\n", fl_type);
4748                 RETURN (-ENOTSUPP);
4749         }
4750
4751         switch (cmd) {
4752         case F_SETLKW:
4753 #ifdef F_SETLKW64
4754         case F_SETLKW64:
4755 #endif
4756                 flags = 0;
4757                 break;
4758         case F_SETLK:
4759 #ifdef F_SETLK64
4760         case F_SETLK64:
4761 #endif
4762                 flags = LDLM_FL_BLOCK_NOWAIT;
4763                 break;
4764         case F_GETLK:
4765 #ifdef F_GETLK64
4766         case F_GETLK64:
4767 #endif
4768                 flags = LDLM_FL_TEST_LOCK;
4769                 break;
4770         default:
4771                 CERROR("unknown fcntl lock command: %d\n", cmd);
4772                 RETURN (-EINVAL);
4773         }
4774
4775         /* Save the old mode so that if the mode in the lock changes we
4776          * can decrement the appropriate reader or writer refcount. */
4777         file_lock->fl_type = einfo.ei_mode;
4778
4779         op_data = ll_prep_md_op_data(NULL, inode, NULL, NULL, 0, 0,
4780                                      LUSTRE_OPC_ANY, NULL);
4781         if (IS_ERR(op_data))
4782                 RETURN(PTR_ERR(op_data));
4783
4784         CDEBUG(D_DLMTRACE, "inode="DFID", pid=%u, flags=%#llx, mode=%u, "
4785                "start=%llu, end=%llu\n", PFID(ll_inode2fid(inode)),
4786                flock.l_flock.pid, flags, einfo.ei_mode,
4787                flock.l_flock.start, flock.l_flock.end);
4788
4789         rc = md_enqueue(sbi->ll_md_exp, &einfo, &flock, op_data, &lockh,
4790                         flags);
4791
4792         /* Restore the file lock type if not TEST lock. */
4793         if (!(flags & LDLM_FL_TEST_LOCK))
4794                 file_lock->fl_type = fl_type;
4795
4796 #ifdef HAVE_LOCKS_LOCK_FILE_WAIT
4797         if ((rc == 0 || file_lock->fl_type == F_UNLCK) &&
4798             !(flags & LDLM_FL_TEST_LOCK))
4799                 rc2  = locks_lock_file_wait(file, file_lock);
4800 #else
4801         if ((file_lock->fl_flags & FL_FLOCK) &&
4802             (rc == 0 || file_lock->fl_type == F_UNLCK))
4803                 rc2  = flock_lock_file_wait(file, file_lock);
4804         if ((file_lock->fl_flags & FL_POSIX) &&
4805             (rc == 0 || file_lock->fl_type == F_UNLCK) &&
4806             !(flags & LDLM_FL_TEST_LOCK))
4807                 rc2  = posix_lock_file_wait(file, file_lock);
4808 #endif /* HAVE_LOCKS_LOCK_FILE_WAIT */
4809
4810         if (rc2 && file_lock->fl_type != F_UNLCK) {
4811                 einfo.ei_mode = LCK_NL;
4812                 md_enqueue(sbi->ll_md_exp, &einfo, &flock, op_data,
4813                            &lockh, flags);
4814                 rc = rc2;
4815         }
4816
4817         ll_finish_md_op_data(op_data);
4818
4819         if (!rc)
4820                 ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_FLOCK,
4821                                    ktime_us_delta(ktime_get(), kstart));
4822         RETURN(rc);
4823 }
4824
4825 int ll_get_fid_by_name(struct inode *parent, const char *name,
4826                        int namelen, struct lu_fid *fid,
4827                        struct inode **inode)
4828 {
4829         struct md_op_data *op_data = NULL;
4830         struct mdt_body *body;
4831         struct ptlrpc_request *req;
4832         int rc;
4833         ENTRY;
4834
4835         op_data = ll_prep_md_op_data(NULL, parent, NULL, name, namelen, 0,
4836                                      LUSTRE_OPC_ANY, NULL);
4837         if (IS_ERR(op_data))
4838                 RETURN(PTR_ERR(op_data));
4839
4840         op_data->op_valid = OBD_MD_FLID | OBD_MD_FLTYPE;
4841         rc = md_getattr_name(ll_i2sbi(parent)->ll_md_exp, op_data, &req);
4842         ll_finish_md_op_data(op_data);
4843         if (rc < 0)
4844                 RETURN(rc);
4845
4846         body = req_capsule_server_get(&req->rq_pill, &RMF_MDT_BODY);
4847         if (body == NULL)
4848                 GOTO(out_req, rc = -EFAULT);
4849         if (fid != NULL)
4850                 *fid = body->mbo_fid1;
4851
4852         if (inode != NULL)
4853                 rc = ll_prep_inode(inode, &req->rq_pill, parent->i_sb, NULL);
4854 out_req:
4855         ptlrpc_req_finished(req);
4856         RETURN(rc);
4857 }
4858
4859 int ll_migrate(struct inode *parent, struct file *file, struct lmv_user_md *lum,
4860                const char *name, __u32 flags)
4861 {
4862         struct dentry *dchild = NULL;
4863         struct inode *child_inode = NULL;
4864         struct md_op_data *op_data;
4865         struct ptlrpc_request *request = NULL;
4866         struct obd_client_handle *och = NULL;
4867         struct qstr qstr;
4868         struct mdt_body *body;
4869         __u64 data_version = 0;
4870         size_t namelen = strlen(name);
4871         int lumlen = lmv_user_md_size(lum->lum_stripe_count, lum->lum_magic);
4872         int rc;
4873         ENTRY;
4874
4875         CDEBUG(D_VFSTRACE, "migrate "DFID"/%s to MDT%04x stripe count %d\n",
4876                PFID(ll_inode2fid(parent)), name,
4877                lum->lum_stripe_offset, lum->lum_stripe_count);
4878
4879         if (lum->lum_magic != cpu_to_le32(LMV_USER_MAGIC) &&
4880             lum->lum_magic != cpu_to_le32(LMV_USER_MAGIC_SPECIFIC))
4881                 lustre_swab_lmv_user_md(lum);
4882
4883         /* Get child FID first */
4884         qstr.hash = ll_full_name_hash(file_dentry(file), name, namelen);
4885         qstr.name = name;
4886         qstr.len = namelen;
4887         dchild = d_lookup(file_dentry(file), &qstr);
4888         if (dchild) {
4889                 if (dchild->d_inode)
4890                         child_inode = igrab(dchild->d_inode);
4891                 dput(dchild);
4892         }
4893
4894         if (!child_inode) {
4895                 rc = ll_get_fid_by_name(parent, name, namelen, NULL,
4896                                         &child_inode);
4897                 if (rc)
4898                         RETURN(rc);
4899         }
4900
4901         if (!child_inode)
4902                 RETURN(-ENOENT);
4903
4904         if (!(exp_connect_flags2(ll_i2sbi(parent)->ll_md_exp) &
4905               OBD_CONNECT2_DIR_MIGRATE)) {
4906                 if (le32_to_cpu(lum->lum_stripe_count) > 1 ||
4907                     ll_dir_striped(child_inode)) {
4908                         CERROR("%s: MDT doesn't support stripe directory "
4909                                "migration!\n", ll_i2sbi(parent)->ll_fsname);
4910                         GOTO(out_iput, rc = -EOPNOTSUPP);
4911                 }
4912         }
4913
4914         /*
4915          * lfs migrate command needs to be blocked on the client
4916          * by checking the migrate FID against the FID of the
4917          * filesystem root.
4918          */
4919         if (is_root_inode(child_inode))
4920                 GOTO(out_iput, rc = -EINVAL);
4921
4922         op_data = ll_prep_md_op_data(NULL, parent, NULL, name, namelen,
4923                                      child_inode->i_mode, LUSTRE_OPC_ANY, NULL);
4924         if (IS_ERR(op_data))
4925                 GOTO(out_iput, rc = PTR_ERR(op_data));
4926
4927         inode_lock(child_inode);
4928         op_data->op_fid3 = *ll_inode2fid(child_inode);
4929         if (!fid_is_sane(&op_data->op_fid3)) {
4930                 CERROR("%s: migrate %s, but FID "DFID" is insane\n",
4931                        ll_i2sbi(parent)->ll_fsname, name,
4932                        PFID(&op_data->op_fid3));
4933                 GOTO(out_unlock, rc = -EINVAL);
4934         }
4935
4936         op_data->op_cli_flags |= CLI_MIGRATE | CLI_SET_MEA;
4937         op_data->op_data = lum;
4938         op_data->op_data_size = lumlen;
4939
4940         /* migrate dirent only for subdirs if MDS_MIGRATE_NSONLY set */
4941         if (S_ISDIR(child_inode->i_mode) && (flags & MDS_MIGRATE_NSONLY) &&
4942             lmv_dir_layout_changing(ll_i2info(parent)->lli_lsm_md))
4943                 op_data->op_bias |= MDS_MIGRATE_NSONLY;
4944
4945 again:
4946         if (S_ISREG(child_inode->i_mode)) {
4947                 och = ll_lease_open(child_inode, NULL, FMODE_WRITE, 0);
4948                 if (IS_ERR(och)) {
4949                         rc = PTR_ERR(och);
4950                         och = NULL;
4951                         GOTO(out_unlock, rc);
4952                 }
4953
4954                 rc = ll_data_version(child_inode, &data_version,
4955                                      LL_DV_WR_FLUSH);
4956                 if (rc != 0)
4957                         GOTO(out_close, rc);
4958
4959                 op_data->op_open_handle = och->och_open_handle;
4960                 op_data->op_data_version = data_version;
4961                 op_data->op_lease_handle = och->och_lease_handle;
4962                 op_data->op_bias |= MDS_CLOSE_MIGRATE;
4963
4964                 spin_lock(&och->och_mod->mod_open_req->rq_lock);
4965                 och->och_mod->mod_open_req->rq_replay = 0;
4966                 spin_unlock(&och->och_mod->mod_open_req->rq_lock);
4967         }
4968
4969         rc = md_rename(ll_i2sbi(parent)->ll_md_exp, op_data,
4970                        op_data->op_name, op_data->op_namelen,
4971                        op_data->op_name, op_data->op_namelen, &request);
4972         if (rc == 0) {
4973                 LASSERT(request != NULL);
4974                 ll_update_times(request, parent);
4975         }
4976
4977         if (rc == 0 || rc == -EAGAIN) {
4978                 body = req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY);
4979                 LASSERT(body != NULL);
4980
4981                 /* If the server does release layout lock, then we cleanup
4982                  * the client och here, otherwise release it in out_close: */
4983                 if (och && body->mbo_valid & OBD_MD_CLOSE_INTENT_EXECED) {
4984                         obd_mod_put(och->och_mod);
4985                         md_clear_open_replay_data(ll_i2sbi(parent)->ll_md_exp,
4986                                                   och);
4987                         och->och_open_handle.cookie = DEAD_HANDLE_MAGIC;
4988                         OBD_FREE_PTR(och);
4989                         och = NULL;
4990                 }
4991         }
4992
4993         if (request != NULL) {
4994                 ptlrpc_req_finished(request);
4995                 request = NULL;
4996         }
4997
4998         /* Try again if the lease has cancelled. */
4999         if (rc == -EAGAIN && S_ISREG(child_inode->i_mode))
5000                 goto again;
5001
5002 out_close:
5003         if (och)
5004                 ll_lease_close(och, child_inode, NULL);
5005         if (!rc)
5006                 clear_nlink(child_inode);
5007 out_unlock:
5008         inode_unlock(child_inode);
5009         ll_finish_md_op_data(op_data);
5010 out_iput:
5011         iput(child_inode);
5012         RETURN(rc);
5013 }
5014
5015 static int
5016 ll_file_noflock(struct file *file, int cmd, struct file_lock *file_lock)
5017 {
5018         struct ll_file_data *fd = file->private_data;
5019         ENTRY;
5020
5021         /*
5022          * In order to avoid flood of warning messages, only print one message
5023          * for one file. And the entire message rate on the client is limited
5024          * by CDEBUG_LIMIT too.
5025          */
5026         if (!(fd->fd_flags & LL_FILE_FLOCK_WARNING)) {
5027                 fd->fd_flags |= LL_FILE_FLOCK_WARNING;
5028                 CDEBUG_LIMIT(D_CONSOLE,
5029                              "flock disabled, mount with '-o [local]flock' to enable\r\n");
5030         }
5031         RETURN(-ENOSYS);
5032 }
5033
5034 /**
5035  * test if some locks matching bits and l_req_mode are acquired
5036  * - bits can be in different locks
5037  * - if found clear the common lock bits in *bits
5038  * - the bits not found, are kept in *bits
5039  * \param inode [IN]
5040  * \param bits [IN] searched lock bits [IN]
5041  * \param l_req_mode [IN] searched lock mode
5042  * \retval boolean, true iff all bits are found
5043  */
5044 int ll_have_md_lock(struct inode *inode, __u64 *bits, enum ldlm_mode l_req_mode)
5045 {
5046         struct lustre_handle lockh;
5047         union ldlm_policy_data policy;
5048         enum ldlm_mode mode = (l_req_mode == LCK_MINMODE) ?
5049                               (LCK_CR | LCK_CW | LCK_PR | LCK_PW) : l_req_mode;
5050         struct lu_fid *fid;
5051         __u64 flags;
5052         int i;
5053         ENTRY;
5054
5055         if (!inode)
5056                RETURN(0);
5057
5058         fid = &ll_i2info(inode)->lli_fid;
5059         CDEBUG(D_INFO, "trying to match res "DFID" mode %s\n", PFID(fid),
5060                ldlm_lockname[mode]);
5061
5062         flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_CBPENDING | LDLM_FL_TEST_LOCK;
5063         for (i = 0; i < MDS_INODELOCK_NUMBITS && *bits != 0; i++) {
5064                 policy.l_inodebits.bits = *bits & BIT(i);
5065                 if (policy.l_inodebits.bits == 0)
5066                         continue;
5067
5068                 if (md_lock_match(ll_i2mdexp(inode), flags, fid, LDLM_IBITS,
5069                                   &policy, mode, &lockh)) {
5070                         struct ldlm_lock *lock;
5071
5072                         lock = ldlm_handle2lock(&lockh);
5073                         if (lock) {
5074                                 *bits &=
5075                                         ~(lock->l_policy_data.l_inodebits.bits);
5076                                 LDLM_LOCK_PUT(lock);
5077                         } else {
5078                                 *bits &= ~policy.l_inodebits.bits;
5079                         }
5080                 }
5081         }
5082         RETURN(*bits == 0);
5083 }
5084
5085 enum ldlm_mode ll_take_md_lock(struct inode *inode, __u64 bits,
5086                                struct lustre_handle *lockh, __u64 flags,
5087                                enum ldlm_mode mode)
5088 {
5089         union ldlm_policy_data policy = { .l_inodebits = { bits } };
5090         struct lu_fid *fid;
5091         enum ldlm_mode rc;
5092         ENTRY;
5093
5094         fid = &ll_i2info(inode)->lli_fid;
5095         CDEBUG(D_INFO, "trying to match res "DFID"\n", PFID(fid));
5096
5097         rc = md_lock_match(ll_i2mdexp(inode), LDLM_FL_BLOCK_GRANTED|flags,
5098                            fid, LDLM_IBITS, &policy, mode, lockh);
5099
5100         RETURN(rc);
5101 }
5102
5103 static int ll_inode_revalidate_fini(struct inode *inode, int rc)
5104 {
5105         /* Already unlinked. Just update nlink and return success */
5106         if (rc == -ENOENT) {
5107                 clear_nlink(inode);
5108                 /* If it is striped directory, and there is bad stripe
5109                  * Let's revalidate the dentry again, instead of returning
5110                  * error */
5111                 if (ll_dir_striped(inode))
5112                         return 0;
5113
5114                 /* This path cannot be hit for regular files unless in
5115                  * case of obscure races, so no need to to validate
5116                  * size. */
5117                 if (!S_ISREG(inode->i_mode) && !S_ISDIR(inode->i_mode))
5118                         return 0;
5119         } else if (rc != 0) {
5120                 CDEBUG_LIMIT((rc == -EACCES || rc == -EIDRM) ? D_INFO : D_ERROR,
5121                              "%s: revalidate FID "DFID" error: rc = %d\n",
5122                              ll_i2sbi(inode)->ll_fsname,
5123                              PFID(ll_inode2fid(inode)), rc);
5124         }
5125
5126         return rc;
5127 }
5128
5129 static int ll_inode_revalidate(struct dentry *dentry, enum ldlm_intent_flags op)
5130 {
5131         struct inode *parent;
5132         struct inode *inode = dentry->d_inode;
5133         struct obd_export *exp = ll_i2mdexp(inode);
5134         struct lookup_intent oit = {
5135                 .it_op = op,
5136         };
5137         struct ptlrpc_request *req = NULL;
5138         struct md_op_data *op_data;
5139         const char *name = NULL;
5140         size_t namelen = 0;
5141         int rc = 0;
5142         ENTRY;
5143
5144         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p),name=%s\n",
5145                PFID(ll_inode2fid(inode)), inode, dentry->d_name.name);
5146
5147         if (exp_connect_flags2(exp) & OBD_CONNECT2_GETATTR_PFID) {
5148                 parent = dentry->d_parent->d_inode;
5149                 name = dentry->d_name.name;
5150                 namelen = dentry->d_name.len;
5151         } else {
5152                 parent = inode;
5153         }
5154
5155         op_data = ll_prep_md_op_data(NULL, parent, inode, name, namelen, 0,
5156                                      LUSTRE_OPC_ANY, NULL);
5157         if (IS_ERR(op_data))
5158                 RETURN(PTR_ERR(op_data));
5159
5160         /* Call getattr by fid */
5161         if (exp_connect_flags2(exp) & OBD_CONNECT2_GETATTR_PFID)
5162                 op_data->op_flags = MF_GETATTR_BY_FID;
5163         rc = md_intent_lock(exp, op_data, &oit, &req, &ll_md_blocking_ast, 0);
5164         ll_finish_md_op_data(op_data);
5165         if (rc < 0) {
5166                 rc = ll_inode_revalidate_fini(inode, rc);
5167                 GOTO(out, rc);
5168         }
5169
5170         rc = ll_revalidate_it_finish(req, &oit, dentry);
5171         if (rc != 0) {
5172                 ll_intent_release(&oit);
5173                 GOTO(out, rc);
5174         }
5175
5176         /* Unlinked? Unhash dentry, so it is not picked up later by
5177          * do_lookup() -> ll_revalidate_it(). We cannot use d_drop
5178          * here to preserve get_cwd functionality on 2.6.
5179          * Bug 10503 */
5180         if (!dentry->d_inode->i_nlink)
5181                 d_lustre_invalidate(dentry);
5182
5183         ll_lookup_finish_locks(&oit, dentry);
5184 out:
5185         ptlrpc_req_finished(req);
5186
5187         return rc;
5188 }
5189
5190 static int ll_merge_md_attr(struct inode *inode)
5191 {
5192         struct ll_inode_info *lli = ll_i2info(inode);
5193         struct cl_attr attr = { 0 };
5194         int rc;
5195
5196         if (!lli->lli_lsm_md)
5197                 RETURN(0);
5198
5199         down_read(&lli->lli_lsm_sem);
5200         if (!lmv_dir_striped(lli->lli_lsm_md)) {
5201                 up_read(&lli->lli_lsm_sem);
5202                 RETURN(0);
5203         }
5204         rc = md_merge_attr(ll_i2mdexp(inode), ll_i2info(inode)->lli_lsm_md,
5205                            &attr, ll_md_blocking_ast);
5206         up_read(&lli->lli_lsm_sem);
5207         if (rc != 0)
5208                 RETURN(rc);
5209
5210         spin_lock(&inode->i_lock);
5211         set_nlink(inode, attr.cat_nlink);
5212         spin_unlock(&inode->i_lock);
5213
5214         inode->i_blocks = attr.cat_blocks;
5215         i_size_write(inode, attr.cat_size);
5216
5217         ll_i2info(inode)->lli_atime = attr.cat_atime;
5218         ll_i2info(inode)->lli_mtime = attr.cat_mtime;
5219         ll_i2info(inode)->lli_ctime = attr.cat_ctime;
5220
5221         RETURN(0);
5222 }
5223
5224 int ll_getattr_dentry(struct dentry *de, struct kstat *stat, u32 request_mask,
5225                       unsigned int flags, bool foreign)
5226 {
5227         struct inode *inode = de->d_inode;
5228         struct ll_sb_info *sbi = ll_i2sbi(inode);
5229         struct ll_inode_info *lli = ll_i2info(inode);
5230         struct inode *dir = de->d_parent->d_inode;
5231         bool need_glimpse = true;
5232         ktime_t kstart = ktime_get();
5233         int rc;
5234
5235         /* The OST object(s) determine the file size, blocks and mtime. */
5236         if (!(request_mask & STATX_SIZE || request_mask & STATX_BLOCKS ||
5237               request_mask & STATX_MTIME))
5238                 need_glimpse = false;
5239
5240         if (dentry_may_statahead(dir, de))
5241                 ll_start_statahead(dir, de, need_glimpse &&
5242                                    !(flags & AT_STATX_DONT_SYNC));
5243
5244         if (flags & AT_STATX_DONT_SYNC)
5245                 GOTO(fill_attr, rc = 0);
5246
5247         rc = ll_inode_revalidate(de, IT_GETATTR);
5248         if (rc < 0)
5249                 RETURN(rc);
5250
5251         /* foreign file/dir are always of zero length, so don't
5252          * need to validate size.
5253          */
5254         if (S_ISREG(inode->i_mode) && !foreign) {
5255                 bool cached;
5256
5257                 if (!need_glimpse)
5258                         GOTO(fill_attr, rc);
5259
5260                 rc = pcc_inode_getattr(inode, request_mask, flags, &cached);
5261                 if (cached && rc < 0)
5262                         RETURN(rc);
5263
5264                 if (cached)
5265                         GOTO(fill_attr, rc);
5266
5267                 /*
5268                  * If the returned attr is masked with OBD_MD_FLSIZE &
5269                  * OBD_MD_FLBLOCKS & OBD_MD_FLMTIME, it means that the file size
5270                  * or blocks obtained from MDT is strictly correct, and the file
5271                  * is usually not being modified by clients, and the [a|m|c]time
5272                  * got from MDT is also strictly correct.
5273                  * Under this circumstance, it does not need to send glimpse
5274                  * RPCs to OSTs for file attributes such as the size and blocks.
5275                  */
5276                 if (lli->lli_attr_valid & OBD_MD_FLSIZE &&
5277                     lli->lli_attr_valid & OBD_MD_FLBLOCKS &&
5278                     lli->lli_attr_valid & OBD_MD_FLMTIME) {
5279                         inode->i_mtime.tv_sec = lli->lli_mtime;
5280                         if (lli->lli_attr_valid & OBD_MD_FLATIME)
5281                                 inode->i_atime.tv_sec = lli->lli_atime;
5282                         if (lli->lli_attr_valid & OBD_MD_FLCTIME)
5283                                 inode->i_ctime.tv_sec = lli->lli_ctime;
5284                         GOTO(fill_attr, rc);
5285                 }
5286
5287                 /* In case of restore, the MDT has the right size and has
5288                  * already send it back without granting the layout lock,
5289                  * inode is up-to-date so glimpse is useless.
5290                  * Also to glimpse we need the layout, in case of a running
5291                  * restore the MDT holds the layout lock so the glimpse will
5292                  * block up to the end of restore (getattr will block)
5293                  */
5294                 if (!test_bit(LLIF_FILE_RESTORING, &lli->lli_flags)) {
5295                         rc = ll_glimpse_size(inode);
5296                         if (rc < 0)
5297                                 RETURN(rc);
5298                 }
5299         } else {
5300                 /* If object isn't regular a file then don't validate size. */
5301                 /* foreign dir is not striped dir */
5302                 if (ll_dir_striped(inode) && !foreign) {
5303                         rc = ll_merge_md_attr(inode);
5304                         if (rc < 0)
5305                                 RETURN(rc);
5306                 }
5307
5308                 if (lli->lli_attr_valid & OBD_MD_FLATIME)
5309                         inode->i_atime.tv_sec = lli->lli_atime;
5310                 if (lli->lli_attr_valid & OBD_MD_FLMTIME)
5311                         inode->i_mtime.tv_sec = lli->lli_mtime;
5312                 if (lli->lli_attr_valid & OBD_MD_FLCTIME)
5313                         inode->i_ctime.tv_sec = lli->lli_ctime;
5314         }
5315
5316 fill_attr:
5317         OBD_FAIL_TIMEOUT(OBD_FAIL_GETATTR_DELAY, 30);
5318
5319         if (ll_need_32bit_api(sbi)) {
5320                 stat->ino = cl_fid_build_ino(&lli->lli_fid, 1);
5321                 stat->dev = ll_compat_encode_dev(inode->i_sb->s_dev);
5322                 stat->rdev = ll_compat_encode_dev(inode->i_rdev);
5323         } else {
5324                 stat->ino = inode->i_ino;
5325                 stat->dev = inode->i_sb->s_dev;
5326                 stat->rdev = inode->i_rdev;
5327         }
5328
5329         /* foreign symlink to be exposed as a real symlink */
5330         if (!foreign)
5331                 stat->mode = inode->i_mode;
5332         else
5333                 stat->mode = (inode->i_mode & ~S_IFMT) | S_IFLNK;
5334
5335         stat->uid = inode->i_uid;
5336         stat->gid = inode->i_gid;
5337         stat->atime = inode->i_atime;
5338         stat->mtime = inode->i_mtime;
5339         stat->ctime = inode->i_ctime;
5340         /* stat->blksize is used to tell about preferred IO size */
5341         if (sbi->ll_stat_blksize)
5342                 stat->blksize = sbi->ll_stat_blksize;
5343         else if (S_ISREG(inode->i_mode))
5344                 stat->blksize = 1 << min(PTLRPC_MAX_BRW_BITS + 1,
5345                                          LL_MAX_BLKSIZE_BITS);
5346         else
5347                 stat->blksize = 1 << inode->i_sb->s_blocksize_bits;
5348
5349         stat->nlink = inode->i_nlink;
5350         stat->size = i_size_read(inode);
5351         stat->blocks = inode->i_blocks;
5352
5353 #if defined(HAVE_USER_NAMESPACE_ARG) || defined(HAVE_INODEOPS_ENHANCED_GETATTR)
5354         if (flags & AT_STATX_DONT_SYNC) {
5355                 if (stat->size == 0 &&
5356                     lli->lli_attr_valid & OBD_MD_FLLAZYSIZE)
5357                         stat->size = lli->lli_lazysize;
5358                 if (stat->blocks == 0 &&
5359                     lli->lli_attr_valid & OBD_MD_FLLAZYBLOCKS)
5360                         stat->blocks = lli->lli_lazyblocks;
5361         }
5362
5363         if (lli->lli_attr_valid & OBD_MD_FLBTIME) {
5364                 stat->result_mask |= STATX_BTIME;
5365                 stat->btime.tv_sec = lli->lli_btime;
5366         }
5367
5368         stat->attributes_mask = STATX_ATTR_IMMUTABLE | STATX_ATTR_APPEND;
5369         stat->attributes |= ll_inode_to_ext_flags(inode->i_flags);
5370         stat->result_mask &= request_mask;
5371 #endif
5372
5373         ll_stats_ops_tally(sbi, LPROC_LL_GETATTR,
5374                            ktime_us_delta(ktime_get(), kstart));
5375
5376         return 0;
5377 }
5378
5379 #if defined(HAVE_USER_NAMESPACE_ARG) || defined(HAVE_INODEOPS_ENHANCED_GETATTR)
5380 int ll_getattr(struct user_namespace *mnt_userns, const struct path *path,
5381                struct kstat *stat, u32 request_mask, unsigned int flags)
5382 {
5383         return ll_getattr_dentry(path->dentry, stat, request_mask, flags,
5384                                  false);
5385 }
5386 #else
5387 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat)
5388 {
5389         return ll_getattr_dentry(de, stat, STATX_BASIC_STATS,
5390                                  AT_STATX_SYNC_AS_STAT, false);
5391 }
5392 #endif
5393
5394 int cl_falloc(struct file *file, struct inode *inode, int mode, loff_t offset,
5395               loff_t len)
5396 {
5397         loff_t size = i_size_read(inode);
5398         struct lu_env *env;
5399         struct cl_io *io;
5400         __u16 refcheck;
5401         int rc;
5402
5403         ENTRY;
5404
5405         env = cl_env_get(&refcheck);
5406         if (IS_ERR(env))
5407                 RETURN(PTR_ERR(env));
5408
5409         io = vvp_env_thread_io(env);
5410         io->ci_obj = ll_i2info(inode)->lli_clob;
5411         ll_io_set_mirror(io, file);
5412
5413         io->ci_verify_layout = 1;
5414         io->u.ci_setattr.sa_parent_fid = lu_object_fid(&io->ci_obj->co_lu);
5415         io->u.ci_setattr.sa_falloc_mode = mode;
5416         io->u.ci_setattr.sa_falloc_offset = offset;
5417         io->u.ci_setattr.sa_falloc_end = offset + len;
5418         io->u.ci_setattr.sa_subtype = CL_SETATTR_FALLOCATE;
5419
5420         CDEBUG(D_INODE, "UID %u GID %u PRJID %u\n",
5421                from_kuid(&init_user_ns, inode->i_uid),
5422                from_kgid(&init_user_ns, inode->i_gid),
5423                ll_i2info(inode)->lli_projid);
5424
5425         io->u.ci_setattr.sa_falloc_uid = from_kuid(&init_user_ns, inode->i_uid);
5426         io->u.ci_setattr.sa_falloc_gid = from_kgid(&init_user_ns, inode->i_gid);
5427         io->u.ci_setattr.sa_falloc_projid = ll_i2info(inode)->lli_projid;
5428
5429         if (io->u.ci_setattr.sa_falloc_end > size) {
5430                 loff_t newsize = io->u.ci_setattr.sa_falloc_end;
5431
5432                 /* Check new size against VFS/VM file size limit and rlimit */
5433                 rc = inode_newsize_ok(inode, newsize);
5434                 if (rc)
5435                         goto out;
5436                 if (newsize > ll_file_maxbytes(inode)) {
5437                         CDEBUG(D_INODE, "file size too large %llu > %llu\n",
5438                                (unsigned long long)newsize,
5439                                ll_file_maxbytes(inode));
5440                         rc = -EFBIG;
5441                         goto out;
5442                 }
5443         }
5444
5445         do {
5446                 rc = cl_io_init(env, io, CIT_SETATTR, io->ci_obj);
5447                 if (!rc)
5448                         rc = cl_io_loop(env, io);
5449                 else
5450                         rc = io->ci_result;
5451                 cl_io_fini(env, io);
5452         } while (unlikely(io->ci_need_restart));
5453
5454 out:
5455         cl_env_put(env, &refcheck);
5456         RETURN(rc);
5457 }
5458
5459 long ll_fallocate(struct file *filp, int mode, loff_t offset, loff_t len)
5460 {
5461         struct inode *inode = file_inode(filp);
5462         int rc;
5463
5464         if (offset < 0 || len <= 0)
5465                 RETURN(-EINVAL);
5466         /*
5467          * Encrypted inodes can't handle collapse range or zero range or insert
5468          * range since we would need to re-encrypt blocks with a different IV or
5469          * XTS tweak (which are based on the logical block number).
5470          * Similar to what ext4 does.
5471          */
5472         if (IS_ENCRYPTED(inode) &&
5473             (mode & (FALLOC_FL_COLLAPSE_RANGE | FALLOC_FL_INSERT_RANGE |
5474                      FALLOC_FL_ZERO_RANGE)))
5475                 RETURN(-EOPNOTSUPP);
5476
5477         /*
5478          * mode == 0 (which is standard prealloc) and PUNCH is supported
5479          * Rest of mode options are not supported yet.
5480          */
5481         if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
5482                 RETURN(-EOPNOTSUPP);
5483
5484         ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_FALLOCATE, 1);
5485
5486         rc = cl_falloc(filp, inode, mode, offset, len);
5487         /*
5488          * ENOTSUPP (524) is an NFSv3 specific error code erroneously
5489          * used by Lustre in several places. Retuning it here would
5490          * confuse applications that explicity test for EOPNOTSUPP
5491          * (95) and fall back to ftruncate().
5492          */
5493         if (rc == -ENOTSUPP)
5494                 rc = -EOPNOTSUPP;
5495
5496         RETURN(rc);
5497 }
5498
5499 static int ll_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
5500                      __u64 start, __u64 len)
5501 {
5502         int             rc;
5503         size_t          num_bytes;
5504         struct fiemap   *fiemap;
5505         unsigned int    extent_count = fieinfo->fi_extents_max;
5506
5507         num_bytes = sizeof(*fiemap) + (extent_count *
5508                                        sizeof(struct fiemap_extent));
5509         OBD_ALLOC_LARGE(fiemap, num_bytes);
5510
5511         if (fiemap == NULL)
5512                 RETURN(-ENOMEM);
5513
5514         fiemap->fm_flags = fieinfo->fi_flags;
5515         fiemap->fm_extent_count = fieinfo->fi_extents_max;
5516         fiemap->fm_start = start;
5517         fiemap->fm_length = len;
5518         if (extent_count > 0 &&
5519             copy_from_user(&fiemap->fm_extents[0], fieinfo->fi_extents_start,
5520                            sizeof(struct fiemap_extent)) != 0)
5521                 GOTO(out, rc = -EFAULT);
5522
5523         rc = ll_do_fiemap(inode, fiemap, num_bytes);
5524
5525         if (IS_ENCRYPTED(inode)) {
5526                 int i;
5527
5528                 for (i = 0; i < fiemap->fm_mapped_extents; i++)
5529                         fiemap->fm_extents[i].fe_flags |=
5530                                 FIEMAP_EXTENT_DATA_ENCRYPTED |
5531                                 FIEMAP_EXTENT_ENCODED;
5532         }
5533
5534         fieinfo->fi_flags = fiemap->fm_flags;
5535         fieinfo->fi_extents_mapped = fiemap->fm_mapped_extents;
5536         if (extent_count > 0 &&
5537             copy_to_user(fieinfo->fi_extents_start, &fiemap->fm_extents[0],
5538                          fiemap->fm_mapped_extents *
5539                          sizeof(struct fiemap_extent)) != 0)
5540                 GOTO(out, rc = -EFAULT);
5541 out:
5542         OBD_FREE_LARGE(fiemap, num_bytes);
5543         return rc;
5544 }
5545
5546 int ll_inode_permission(struct user_namespace *mnt_userns, struct inode *inode,
5547                         int mask)
5548 {
5549         int rc = 0;
5550         struct ll_sb_info *sbi;
5551         struct root_squash_info *squash;
5552         struct cred *cred = NULL;
5553         const struct cred *old_cred = NULL;
5554         bool squash_id = false;
5555         ktime_t kstart = ktime_get();
5556
5557         ENTRY;
5558
5559         if (mask & MAY_NOT_BLOCK)
5560                 return -ECHILD;
5561
5562         /*
5563          * as root inode are NOT getting validated in lookup operation,
5564          * need to do it before permission check.
5565          */
5566
5567         if (is_root_inode(inode)) {
5568                 rc = ll_inode_revalidate(inode->i_sb->s_root, IT_LOOKUP);
5569                 if (rc)
5570                         RETURN(rc);
5571         }
5572
5573         CDEBUG(D_VFSTRACE, "VFS Op:inode="DFID"(%p), inode mode %x mask %o\n",
5574                PFID(ll_inode2fid(inode)), inode, inode->i_mode, mask);
5575
5576         /* squash fsuid/fsgid if needed */
5577         sbi = ll_i2sbi(inode);
5578         squash = &sbi->ll_squash;
5579         if (unlikely(squash->rsi_uid != 0 &&
5580                      uid_eq(current_fsuid(), GLOBAL_ROOT_UID) &&
5581                      !test_bit(LL_SBI_NOROOTSQUASH, sbi->ll_flags))) {
5582                         squash_id = true;
5583         }
5584         if (squash_id) {
5585                 CDEBUG(D_OTHER, "squash creds (%d:%d)=>(%d:%d)\n",
5586                        __kuid_val(current_fsuid()), __kgid_val(current_fsgid()),
5587                        squash->rsi_uid, squash->rsi_gid);
5588
5589                 /* update current process's credentials
5590                  * and FS capability */
5591                 cred = prepare_creds();
5592                 if (cred == NULL)
5593                         RETURN(-ENOMEM);
5594
5595                 cred->fsuid = make_kuid(&init_user_ns, squash->rsi_uid);
5596                 cred->fsgid = make_kgid(&init_user_ns, squash->rsi_gid);
5597                 cred->cap_effective = cap_drop_nfsd_set(cred->cap_effective);
5598                 cred->cap_effective = cap_drop_fs_set(cred->cap_effective);
5599
5600                 old_cred = override_creds(cred);
5601         }
5602
5603         rc = generic_permission(mnt_userns, inode, mask);
5604         /* restore current process's credentials and FS capability */
5605         if (squash_id) {
5606                 revert_creds(old_cred);
5607                 put_cred(cred);
5608         }
5609
5610         if (!rc)
5611                 ll_stats_ops_tally(sbi, LPROC_LL_INODE_PERM,
5612                                    ktime_us_delta(ktime_get(), kstart));
5613
5614         RETURN(rc);
5615 }
5616
5617 /* -o localflock - only provides locally consistent flock locks */
5618 static const struct file_operations ll_file_operations = {
5619 #ifdef HAVE_FILE_OPERATIONS_READ_WRITE_ITER
5620 # ifdef HAVE_SYNC_READ_WRITE
5621         .read           = new_sync_read,
5622         .write          = new_sync_write,
5623 # endif
5624         .read_iter      = ll_file_read_iter,
5625         .write_iter     = ll_file_write_iter,
5626 #else /* !HAVE_FILE_OPERATIONS_READ_WRITE_ITER */
5627         .read           = ll_file_read,
5628         .aio_read       = ll_file_aio_read,
5629         .write          = ll_file_write,
5630         .aio_write      = ll_file_aio_write,
5631 #endif /* HAVE_FILE_OPERATIONS_READ_WRITE_ITER */
5632         .unlocked_ioctl = ll_file_ioctl,
5633         .open           = ll_file_open,
5634         .release        = ll_file_release,
5635         .mmap           = ll_file_mmap,
5636         .llseek         = ll_file_seek,
5637 #ifndef HAVE_DEFAULT_FILE_SPLICE_READ_EXPORT
5638         .splice_read    = generic_file_splice_read,
5639 #else
5640         .splice_read    = pcc_file_splice_read,
5641 #endif
5642         .fsync          = ll_fsync,
5643         .flush          = ll_flush,
5644         .fallocate      = ll_fallocate,
5645 };
5646
5647 static const struct file_operations ll_file_operations_flock = {
5648 #ifdef HAVE_FILE_OPERATIONS_READ_WRITE_ITER
5649 # ifdef HAVE_SYNC_READ_WRITE
5650         .read           = new_sync_read,
5651         .write          = new_sync_write,
5652 # endif /* HAVE_SYNC_READ_WRITE */
5653         .read_iter      = ll_file_read_iter,
5654         .write_iter     = ll_file_write_iter,
5655 #else /* !HAVE_FILE_OPERATIONS_READ_WRITE_ITER */
5656         .read           = ll_file_read,
5657         .aio_read       = ll_file_aio_read,
5658         .write          = ll_file_write,
5659         .aio_write      = ll_file_aio_write,
5660 #endif /* HAVE_FILE_OPERATIONS_READ_WRITE_ITER */
5661         .unlocked_ioctl = ll_file_ioctl,
5662         .open           = ll_file_open,
5663         .release        = ll_file_release,
5664         .mmap           = ll_file_mmap,
5665         .llseek         = ll_file_seek,
5666 #ifndef HAVE_DEFAULT_FILE_SPLICE_READ_EXPORT
5667         .splice_read    = generic_file_splice_read,
5668 #else
5669         .splice_read    = pcc_file_splice_read,
5670 #endif
5671         .fsync          = ll_fsync,
5672         .flush          = ll_flush,
5673         .flock          = ll_file_flock,
5674         .lock           = ll_file_flock,
5675         .fallocate      = ll_fallocate,
5676 };
5677
5678 /* These are for -o noflock - to return ENOSYS on flock calls */
5679 static const struct file_operations ll_file_operations_noflock = {
5680 #ifdef HAVE_FILE_OPERATIONS_READ_WRITE_ITER
5681 # ifdef HAVE_SYNC_READ_WRITE
5682         .read           = new_sync_read,
5683         .write          = new_sync_write,
5684 # endif /* HAVE_SYNC_READ_WRITE */
5685         .read_iter      = ll_file_read_iter,
5686         .write_iter     = ll_file_write_iter,
5687 #else /* !HAVE_FILE_OPERATIONS_READ_WRITE_ITER */
5688         .read           = ll_file_read,
5689         .aio_read       = ll_file_aio_read,
5690         .write          = ll_file_write,
5691         .aio_write      = ll_file_aio_write,
5692 #endif /* HAVE_FILE_OPERATIONS_READ_WRITE_ITER */
5693         .unlocked_ioctl = ll_file_ioctl,
5694         .open           = ll_file_open,
5695         .release        = ll_file_release,
5696         .mmap           = ll_file_mmap,
5697         .llseek         = ll_file_seek,
5698 #ifndef HAVE_DEFAULT_FILE_SPLICE_READ_EXPORT
5699         .splice_read    = generic_file_splice_read,
5700 #else
5701         .splice_read    = pcc_file_splice_read,
5702 #endif
5703         .fsync          = ll_fsync,
5704         .flush          = ll_flush,
5705         .flock          = ll_file_noflock,
5706         .lock           = ll_file_noflock,
5707         .fallocate      = ll_fallocate,
5708 };
5709
5710 const struct inode_operations ll_file_inode_operations = {
5711         .setattr        = ll_setattr,
5712         .getattr        = ll_getattr,
5713         .permission     = ll_inode_permission,
5714 #ifdef HAVE_IOP_XATTR
5715         .setxattr       = ll_setxattr,
5716         .getxattr       = ll_getxattr,
5717         .removexattr    = ll_removexattr,
5718 #endif
5719         .listxattr      = ll_listxattr,
5720         .fiemap         = ll_fiemap,
5721         .get_acl        = ll_get_acl,
5722 #ifdef HAVE_IOP_SET_ACL
5723         .set_acl        = ll_set_acl,
5724 #endif
5725 };
5726
5727 const struct file_operations *ll_select_file_operations(struct ll_sb_info *sbi)
5728 {
5729         const struct file_operations *fops = &ll_file_operations_noflock;
5730
5731         if (test_bit(LL_SBI_FLOCK, sbi->ll_flags))
5732                 fops = &ll_file_operations_flock;
5733         else if (test_bit(LL_SBI_LOCALFLOCK, sbi->ll_flags))
5734                 fops = &ll_file_operations;
5735
5736         return fops;
5737 }
5738
5739 int ll_layout_conf(struct inode *inode, const struct cl_object_conf *conf)
5740 {
5741         struct ll_inode_info *lli = ll_i2info(inode);
5742         struct cl_object *obj = lli->lli_clob;
5743         struct lu_env *env;
5744         int rc;
5745         __u16 refcheck;
5746         ENTRY;
5747
5748         if (obj == NULL)
5749                 RETURN(0);
5750
5751         env = cl_env_get(&refcheck);
5752         if (IS_ERR(env))
5753                 RETURN(PTR_ERR(env));
5754
5755         rc = cl_conf_set(env, lli->lli_clob, conf);
5756         if (rc < 0)
5757                 GOTO(out, rc);
5758
5759         if (conf->coc_opc == OBJECT_CONF_SET) {
5760                 struct ldlm_lock *lock = conf->coc_lock;
5761                 struct cl_layout cl = {
5762                         .cl_layout_gen = 0,
5763                 };
5764
5765                 LASSERT(lock != NULL);
5766                 LASSERT(ldlm_has_layout(lock));
5767
5768                 /* it can only be allowed to match after layout is
5769                  * applied to inode otherwise false layout would be
5770                  * seen. Applying layout shoud happen before dropping
5771                  * the intent lock. */
5772                 ldlm_lock_allow_match(lock);
5773
5774                 rc = cl_object_layout_get(env, obj, &cl);
5775                 if (rc < 0)
5776                         GOTO(out, rc);
5777
5778                 CDEBUG(D_VFSTRACE,
5779                        DFID": layout version change: %u -> %u\n",
5780                        PFID(&lli->lli_fid), ll_layout_version_get(lli),
5781                        cl.cl_layout_gen);
5782                 ll_layout_version_set(lli, cl.cl_layout_gen);
5783         }
5784
5785 out:
5786         cl_env_put(env, &refcheck);
5787
5788         RETURN(rc < 0 ? rc : 0);
5789 }
5790
5791 /* Fetch layout from MDT with getxattr request, if it's not ready yet */
5792 static int ll_layout_fetch(struct inode *inode, struct ldlm_lock *lock)
5793
5794 {
5795         struct ll_sb_info *sbi = ll_i2sbi(inode);
5796         struct ptlrpc_request *req;
5797         void *lvbdata;
5798         void *lmm;
5799         int lmmsize;
5800         int rc;
5801         ENTRY;
5802
5803         CDEBUG(D_INODE, DFID" LVB_READY=%d l_lvb_data=%p l_lvb_len=%d\n",
5804                PFID(ll_inode2fid(inode)), ldlm_is_lvb_ready(lock),
5805                lock->l_lvb_data, lock->l_lvb_len);
5806
5807         if (lock->l_lvb_data != NULL)
5808                 RETURN(0);
5809
5810         /* if layout lock was granted right away, the layout is returned
5811          * within DLM_LVB of dlm reply; otherwise if the lock was ever
5812          * blocked and then granted via completion ast, we have to fetch
5813          * layout here. Please note that we can't use the LVB buffer in
5814          * completion AST because it doesn't have a large enough buffer */
5815         rc = ll_get_default_mdsize(sbi, &lmmsize);
5816         if (rc < 0)
5817                 RETURN(rc);
5818
5819         rc = md_getxattr(sbi->ll_md_exp, ll_inode2fid(inode), OBD_MD_FLXATTR,
5820                          XATTR_NAME_LOV, lmmsize, &req);
5821         if (rc < 0) {
5822                 if (rc == -ENODATA)
5823                         GOTO(out, rc = 0); /* empty layout */
5824                 else
5825                         RETURN(rc);
5826         }
5827
5828         lmmsize = rc;
5829         rc = 0;
5830         if (lmmsize == 0) /* empty layout */
5831                 GOTO(out, rc = 0);
5832
5833         lmm = req_capsule_server_sized_get(&req->rq_pill, &RMF_EADATA, lmmsize);
5834         if (lmm == NULL)
5835                 GOTO(out, rc = -EFAULT);
5836
5837         OBD_ALLOC_LARGE(lvbdata, lmmsize);
5838         if (lvbdata == NULL)
5839                 GOTO(out, rc = -ENOMEM);
5840
5841         memcpy(lvbdata, lmm, lmmsize);
5842         lock_res_and_lock(lock);
5843         if (unlikely(lock->l_lvb_data == NULL)) {
5844                 lock->l_lvb_type = LVB_T_LAYOUT;
5845                 lock->l_lvb_data = lvbdata;
5846                 lock->l_lvb_len = lmmsize;
5847                 lvbdata = NULL;
5848         }
5849         unlock_res_and_lock(lock);
5850
5851         if (lvbdata)
5852                 OBD_FREE_LARGE(lvbdata, lmmsize);
5853
5854         EXIT;
5855
5856 out:
5857         ptlrpc_req_finished(req);
5858         return rc;
5859 }
5860
5861 /**
5862  * Apply the layout to the inode. Layout lock is held and will be released
5863  * in this function.
5864  */
5865 static int ll_layout_lock_set(struct lustre_handle *lockh, enum ldlm_mode mode,
5866                               struct inode *inode)
5867 {
5868         struct ll_inode_info *lli = ll_i2info(inode);
5869         struct ll_sb_info    *sbi = ll_i2sbi(inode);
5870         struct ldlm_lock *lock;
5871         struct cl_object_conf conf;
5872         int rc = 0;
5873         bool lvb_ready;
5874         bool wait_layout = false;
5875         ENTRY;
5876
5877         LASSERT(lustre_handle_is_used(lockh));
5878
5879         lock = ldlm_handle2lock(lockh);
5880         LASSERT(lock != NULL);
5881
5882         if (!ldlm_has_layout(lock))
5883                 GOTO(out, rc = -EAGAIN);
5884
5885         LDLM_DEBUG(lock, "file "DFID"(%p) being reconfigured",
5886                    PFID(&lli->lli_fid), inode);
5887
5888         /* in case this is a caching lock and reinstate with new inode */
5889         md_set_lock_data(sbi->ll_md_exp, lockh, inode, NULL);
5890
5891         lock_res_and_lock(lock);
5892         lvb_ready = ldlm_is_lvb_ready(lock);
5893         unlock_res_and_lock(lock);
5894
5895         /* checking lvb_ready is racy but this is okay. The worst case is
5896          * that multi processes may configure the file on the same time. */
5897         if (lvb_ready)
5898                 GOTO(out, rc = 0);
5899
5900         rc = ll_layout_fetch(inode, lock);
5901         if (rc < 0)
5902                 GOTO(out, rc);
5903
5904         /* for layout lock, lmm is stored in lock's lvb.
5905          * lvb_data is immutable if the lock is held so it's safe to access it
5906          * without res lock.
5907          *
5908          * set layout to file. Unlikely this will fail as old layout was
5909          * surely eliminated */
5910         memset(&conf, 0, sizeof conf);
5911         conf.coc_opc = OBJECT_CONF_SET;
5912         conf.coc_inode = inode;
5913         conf.coc_lock = lock;
5914         conf.u.coc_layout.lb_buf = lock->l_lvb_data;
5915         conf.u.coc_layout.lb_len = lock->l_lvb_len;
5916         rc = ll_layout_conf(inode, &conf);
5917
5918         /* refresh layout failed, need to wait */
5919         wait_layout = rc == -EBUSY;
5920         EXIT;
5921 out:
5922         LDLM_LOCK_PUT(lock);
5923         ldlm_lock_decref(lockh, mode);
5924
5925         /* wait for IO to complete if it's still being used. */
5926         if (wait_layout) {
5927                 CDEBUG(D_INODE, "%s: "DFID"(%p) wait for layout reconf\n",
5928                        sbi->ll_fsname, PFID(&lli->lli_fid), inode);
5929
5930                 memset(&conf, 0, sizeof conf);
5931                 conf.coc_opc = OBJECT_CONF_WAIT;
5932                 conf.coc_inode = inode;
5933                 rc = ll_layout_conf(inode, &conf);
5934                 if (rc == 0)
5935                         rc = -EAGAIN;
5936
5937                 CDEBUG(D_INODE, "%s file="DFID" waiting layout return: %d\n",
5938                        sbi->ll_fsname, PFID(&lli->lli_fid), rc);
5939         }
5940         RETURN(rc);
5941 }
5942
5943 /**
5944  * Issue layout intent RPC to MDS.
5945  * \param inode [in]    file inode
5946  * \param intent [in]   layout intent
5947  *
5948  * \retval 0    on success
5949  * \retval < 0  error code
5950  */
5951 static int ll_layout_intent(struct inode *inode, struct layout_intent *intent)
5952 {
5953         struct ll_inode_info  *lli = ll_i2info(inode);
5954         struct ll_sb_info     *sbi = ll_i2sbi(inode);
5955         struct md_op_data     *op_data;
5956         struct lookup_intent it;
5957         struct ptlrpc_request *req;
5958         int rc;
5959         ENTRY;
5960
5961         op_data = ll_prep_md_op_data(NULL, inode, inode, NULL,
5962                                      0, 0, LUSTRE_OPC_ANY, NULL);
5963         if (IS_ERR(op_data))
5964                 RETURN(PTR_ERR(op_data));
5965
5966         op_data->op_data = intent;
5967         op_data->op_data_size = sizeof(*intent);
5968
5969         memset(&it, 0, sizeof(it));
5970         it.it_op = IT_LAYOUT;
5971         if (intent->li_opc == LAYOUT_INTENT_WRITE ||
5972             intent->li_opc == LAYOUT_INTENT_TRUNC)
5973                 it.it_flags = FMODE_WRITE;
5974
5975         LDLM_DEBUG_NOLOCK("%s: requeue layout lock for file "DFID"(%p)",
5976                           sbi->ll_fsname, PFID(&lli->lli_fid), inode);
5977
5978         rc = md_intent_lock(sbi->ll_md_exp, op_data, &it, &req,
5979                             &ll_md_blocking_ast, 0);
5980         if (it.it_request != NULL)
5981                 ptlrpc_req_finished(it.it_request);
5982         it.it_request = NULL;
5983
5984         ll_finish_md_op_data(op_data);
5985
5986         /* set lock data in case this is a new lock */
5987         if (!rc)
5988                 ll_set_lock_data(sbi->ll_md_exp, inode, &it, NULL);
5989
5990         ll_intent_drop_lock(&it);
5991
5992         RETURN(rc);
5993 }
5994
5995 /**
5996  * This function checks if there exists a LAYOUT lock on the client side,
5997  * or enqueues it if it doesn't have one in cache.
5998  *
5999  * This function will not hold layout lock so it may be revoked any time after
6000  * this function returns. Any operations depend on layout should be redone
6001  * in that case.
6002  *
6003  * This function should be called before lov_io_init() to get an uptodate
6004  * layout version, the caller should save the version number and after IO
6005  * is finished, this function should be called again to verify that layout
6006  * is not changed during IO time.
6007  */
6008 int ll_layout_refresh(struct inode *inode, __u32 *gen)
6009 {
6010         struct ll_inode_info    *lli = ll_i2info(inode);
6011         struct ll_sb_info       *sbi = ll_i2sbi(inode);
6012         struct lustre_handle lockh;
6013         struct layout_intent intent = {
6014                 .li_opc = LAYOUT_INTENT_ACCESS,
6015         };
6016         enum ldlm_mode mode;
6017         int rc;
6018         ENTRY;
6019
6020         *gen = ll_layout_version_get(lli);
6021         if (!test_bit(LL_SBI_LAYOUT_LOCK, sbi->ll_flags) ||
6022             *gen != CL_LAYOUT_GEN_NONE)
6023                 RETURN(0);
6024
6025         /* sanity checks */
6026         LASSERT(fid_is_sane(ll_inode2fid(inode)));
6027         LASSERT(S_ISREG(inode->i_mode));
6028
6029         /* take layout lock mutex to enqueue layout lock exclusively. */
6030         mutex_lock(&lli->lli_layout_mutex);
6031
6032         while (1) {
6033                 /* mostly layout lock is caching on the local side, so try to
6034                  * match it before grabbing layout lock mutex. */
6035                 mode = ll_take_md_lock(inode, MDS_INODELOCK_LAYOUT, &lockh, 0,
6036                                        LCK_CR | LCK_CW | LCK_PR |
6037                                        LCK_PW | LCK_EX);
6038                 if (mode != 0) { /* hit cached lock */
6039                         rc = ll_layout_lock_set(&lockh, mode, inode);
6040                         if (rc == -EAGAIN)
6041                                 continue;
6042                         break;
6043                 }
6044
6045                 rc = ll_layout_intent(inode, &intent);
6046                 if (rc != 0)
6047                         break;
6048         }
6049
6050         if (rc == 0)
6051                 *gen = ll_layout_version_get(lli);
6052         mutex_unlock(&lli->lli_layout_mutex);
6053
6054         RETURN(rc);
6055 }
6056
6057 /**
6058  * Issue layout intent RPC indicating where in a file an IO is about to write.
6059  *
6060  * \param[in] inode     file inode.
6061  * \param[in] ext       write range with start offset of fille in bytes where
6062  *                      an IO is about to write, and exclusive end offset in
6063  *                      bytes.
6064  *
6065  * \retval 0    on success
6066  * \retval < 0  error code
6067  */
6068 int ll_layout_write_intent(struct inode *inode, enum layout_intent_opc opc,
6069                            struct lu_extent *ext)
6070 {
6071         struct layout_intent intent = {
6072                 .li_opc = opc,
6073                 .li_extent.e_start = ext->e_start,
6074                 .li_extent.e_end = ext->e_end,
6075         };
6076         int rc;
6077         ENTRY;
6078
6079         rc = ll_layout_intent(inode, &intent);
6080
6081         RETURN(rc);
6082 }
6083
6084 /**
6085  *  This function send a restore request to the MDT
6086  */
6087 int ll_layout_restore(struct inode *inode, loff_t offset, __u64 length)
6088 {
6089         struct hsm_user_request *hur;
6090         int                      len, rc;
6091         ENTRY;
6092
6093         len = sizeof(struct hsm_user_request) +
6094               sizeof(struct hsm_user_item);
6095         OBD_ALLOC(hur, len);
6096         if (hur == NULL)
6097                 RETURN(-ENOMEM);
6098
6099         hur->hur_request.hr_action = HUA_RESTORE;
6100         hur->hur_request.hr_archive_id = 0;
6101         hur->hur_request.hr_flags = 0;
6102         memcpy(&hur->hur_user_item[0].hui_fid, &ll_i2info(inode)->lli_fid,
6103                sizeof(hur->hur_user_item[0].hui_fid));
6104         hur->hur_user_item[0].hui_extent.offset = offset;
6105         hur->hur_user_item[0].hui_extent.length = length;
6106         hur->hur_request.hr_itemcount = 1;
6107         rc = obd_iocontrol(LL_IOC_HSM_REQUEST, ll_i2sbi(inode)->ll_md_exp,
6108                            len, hur, NULL);
6109         OBD_FREE(hur, len);
6110         RETURN(rc);
6111 }