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