Whamcloud - gitweb
LU-10030 clio: don't use spare bits in iattr.ia_valid
[fs/lustre-release.git] / lustre / llite / vvp_io.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) 2008, 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  * Implementation of cl_io for VVP layer.
33  *
34  *   Author: Nikita Danilov <nikita.danilov@sun.com>
35  *   Author: Jinshan Xiong <jinshan.xiong@whamcloud.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_LLITE
39
40
41 #include <obd.h>
42 #include "llite_internal.h"
43 #include "vvp_internal.h"
44
45 static struct vvp_io *cl2vvp_io(const struct lu_env *env,
46                                 const struct cl_io_slice *slice)
47 {
48         struct vvp_io *vio;
49
50         vio = container_of(slice, struct vvp_io, vui_cl);
51         LASSERT(vio == vvp_env_io(env));
52
53         return vio;
54 }
55
56 /**
57  * True, if \a io is a normal io, False for splice_{read,write}
58  */
59 static int cl_is_normalio(const struct lu_env *env, const struct cl_io *io)
60 {
61         struct vvp_io *vio = vvp_env_io(env);
62
63         LASSERT(io->ci_type == CIT_READ || io->ci_type == CIT_WRITE);
64
65         return vio->vui_io_subtype == IO_NORMAL;
66 }
67
68 /**
69  * For swapping layout. The file's layout may have changed.
70  * To avoid populating pages to a wrong stripe, we have to verify the
71  * correctness of layout. It works because swapping layout processes
72  * have to acquire group lock.
73  */
74 static bool can_populate_pages(const struct lu_env *env, struct cl_io *io,
75                                 struct inode *inode)
76 {
77         struct ll_inode_info    *lli = ll_i2info(inode);
78         struct vvp_io           *vio = vvp_env_io(env);
79         bool rc = true;
80
81         switch (io->ci_type) {
82         case CIT_READ:
83         case CIT_WRITE:
84                 /* don't need lock here to check lli_layout_gen as we have held
85                  * extent lock and GROUP lock has to hold to swap layout */
86                 if (ll_layout_version_get(lli) != vio->vui_layout_gen ||
87                     OBD_FAIL_CHECK_RESET(OBD_FAIL_LLITE_LOST_LAYOUT, 0)) {
88                         io->ci_need_restart = 1;
89                         /* this will cause a short read/write */
90                         io->ci_continue = 0;
91                         rc = false;
92                 }
93         case CIT_FAULT:
94                 /* fault is okay because we've already had a page. */
95         default:
96                 break;
97         }
98
99         return rc;
100 }
101
102 static void vvp_object_size_lock(struct cl_object *obj)
103 {
104         struct inode *inode = vvp_object_inode(obj);
105
106         ll_inode_size_lock(inode);
107         cl_object_attr_lock(obj);
108 }
109
110 static void vvp_object_size_unlock(struct cl_object *obj)
111 {
112         struct inode *inode = vvp_object_inode(obj);
113
114         cl_object_attr_unlock(obj);
115         ll_inode_size_unlock(inode);
116 }
117
118 /**
119  * Helper function that if necessary adjusts file size (inode->i_size), when
120  * position at the offset \a pos is accessed. File size can be arbitrary stale
121  * on a Lustre client, but client at least knows KMS. If accessed area is
122  * inside [0, KMS], set file size to KMS, otherwise glimpse file size.
123  *
124  * Locking: i_size_lock is used to serialize changes to inode size and to
125  * protect consistency between inode size and cl_object
126  * attributes. cl_object_size_lock() protects consistency between cl_attr's of
127  * top-object and sub-objects.
128  */
129 static int vvp_prep_size(const struct lu_env *env, struct cl_object *obj,
130                          struct cl_io *io, loff_t start, size_t count,
131                          int *exceed)
132 {
133         struct cl_attr *attr  = vvp_env_thread_attr(env);
134         struct inode   *inode = vvp_object_inode(obj);
135         loff_t          pos   = start + count - 1;
136         loff_t kms;
137         int result;
138
139         /*
140          * Consistency guarantees: following possibilities exist for the
141          * relation between region being accessed and real file size at this
142          * moment:
143          *
144          *  (A): the region is completely inside of the file;
145          *
146          *  (B-x): x bytes of region are inside of the file, the rest is
147          *  outside;
148          *
149          *  (C): the region is completely outside of the file.
150          *
151          * This classification is stable under DLM lock already acquired by
152          * the caller, because to change the class, other client has to take
153          * DLM lock conflicting with our lock. Also, any updates to ->i_size
154          * by other threads on this client are serialized by
155          * ll_inode_size_lock(). This guarantees that short reads are handled
156          * correctly in the face of concurrent writes and truncates.
157          */
158         vvp_object_size_lock(obj);
159         result = cl_object_attr_get(env, obj, attr);
160         if (result == 0) {
161                 kms = attr->cat_kms;
162                 if (pos > kms) {
163                         /*
164                          * A glimpse is necessary to determine whether we
165                          * return a short read (B) or some zeroes at the end
166                          * of the buffer (C)
167                          */
168                         vvp_object_size_unlock(obj);
169                         result = cl_glimpse_lock(env, io, inode, obj, 0);
170                         if (result == 0 && exceed != NULL) {
171                                 /* If objective page index exceed end-of-file
172                                  * page index, return directly. Do not expect
173                                  * kernel will check such case correctly.
174                                  * linux-2.6.18-128.1.1 miss to do that.
175                                  * --bug 17336 */
176                                 loff_t size = i_size_read(inode);
177                                 unsigned long cur_index = start >>
178                                         PAGE_SHIFT;
179
180                                 if ((size == 0 && cur_index != 0) ||
181                                     (((size - 1) >> PAGE_SHIFT) <
182                                      cur_index))
183                                         *exceed = 1;
184                         }
185
186                         return result;
187                 } else {
188                         /*
189                          * region is within kms and, hence, within real file
190                          * size (A). We need to increase i_size to cover the
191                          * read region so that generic_file_read() will do its
192                          * job, but that doesn't mean the kms size is
193                          * _correct_, it is only the _minimum_ size. If
194                          * someone does a stat they will get the correct size
195                          * which will always be >= the kms value here.
196                          * b=11081
197                          */
198                         if (i_size_read(inode) < kms) {
199                                 i_size_write(inode, kms);
200                                 CDEBUG(D_VFSTRACE,
201                                        DFID" updating i_size %llu\n",
202                                        PFID(lu_object_fid(&obj->co_lu)),
203                                        (__u64)i_size_read(inode));
204                         }
205                 }
206         }
207
208         vvp_object_size_unlock(obj);
209
210         return result;
211 }
212
213 /*****************************************************************************
214  *
215  * io operations.
216  *
217  */
218
219 static int vvp_io_one_lock_index(const struct lu_env *env, struct cl_io *io,
220                                  __u32 enqflags, enum cl_lock_mode mode,
221                                  pgoff_t start, pgoff_t end)
222 {
223         struct vvp_io          *vio   = vvp_env_io(env);
224         struct cl_lock_descr   *descr = &vio->vui_link.cill_descr;
225         struct cl_object       *obj   = io->ci_obj;
226
227         CLOBINVRNT(env, obj, vvp_object_invariant(obj));
228         ENTRY;
229
230         CDEBUG(D_VFSTRACE, "lock: %d [%lu, %lu]\n", mode, start, end);
231
232         memset(&vio->vui_link, 0, sizeof vio->vui_link);
233
234         if (vio->vui_fd && (vio->vui_fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
235                 descr->cld_mode = CLM_GROUP;
236                 descr->cld_gid  = vio->vui_fd->fd_grouplock.lg_gid;
237                 enqflags |= CEF_LOCK_MATCH;
238         } else {
239                 descr->cld_mode  = mode;
240         }
241
242         descr->cld_obj   = obj;
243         descr->cld_start = start;
244         descr->cld_end   = end;
245         descr->cld_enq_flags = enqflags;
246
247         cl_io_lock_add(env, io, &vio->vui_link);
248
249         RETURN(0);
250 }
251
252 static int vvp_io_one_lock(const struct lu_env *env, struct cl_io *io,
253                            __u32 enqflags, enum cl_lock_mode mode,
254                            loff_t start, loff_t end)
255 {
256         struct cl_object *obj = io->ci_obj;
257
258         return vvp_io_one_lock_index(env, io, enqflags, mode,
259                                      cl_index(obj, start), cl_index(obj, end));
260 }
261
262 static int vvp_io_write_iter_init(const struct lu_env *env,
263                                   const struct cl_io_slice *ios)
264 {
265         struct vvp_io *vio = cl2vvp_io(env, ios);
266
267         cl_page_list_init(&vio->u.write.vui_queue);
268         vio->u.write.vui_written = 0;
269         vio->u.write.vui_from = 0;
270         vio->u.write.vui_to = PAGE_SIZE;
271
272         return 0;
273 }
274
275 static void vvp_io_write_iter_fini(const struct lu_env *env,
276                                    const struct cl_io_slice *ios)
277 {
278         struct vvp_io *vio = cl2vvp_io(env, ios);
279
280         LASSERT(vio->u.write.vui_queue.pl_nr == 0);
281 }
282
283 static int vvp_io_fault_iter_init(const struct lu_env *env,
284                                   const struct cl_io_slice *ios)
285 {
286         struct vvp_io *vio   = cl2vvp_io(env, ios);
287         struct inode  *inode = vvp_object_inode(ios->cis_obj);
288
289         LASSERT(inode == file_inode(vio->vui_fd->fd_file));
290         vio->u.fault.ft_mtime = inode->i_mtime.tv_sec;
291
292         return 0;
293 }
294
295 static void vvp_io_fini(const struct lu_env *env, const struct cl_io_slice *ios)
296 {
297         struct cl_io     *io  = ios->cis_io;
298         struct cl_object *obj = io->ci_obj;
299         struct vvp_io    *vio = cl2vvp_io(env, ios);
300         struct inode     *inode = vvp_object_inode(obj);
301         __u32             gen = 0;
302         int rc;
303         ENTRY;
304
305         CLOBINVRNT(env, obj, vvp_object_invariant(obj));
306
307         CDEBUG(D_VFSTRACE, DFID" ignore/verify layout %d/%d, layout version %d "
308                "need write layout %d, restore needed %d\n",
309                PFID(lu_object_fid(&obj->co_lu)),
310                io->ci_ignore_layout, io->ci_verify_layout,
311                vio->vui_layout_gen, io->ci_need_write_intent,
312                io->ci_restore_needed);
313
314         if (io->ci_restore_needed) {
315                 /* file was detected release, we need to restore it
316                  * before finishing the io
317                  */
318                 rc = ll_layout_restore(inode, 0, OBD_OBJECT_EOF);
319                 /* if restore registration failed, no restart,
320                  * we will return -ENODATA */
321                 /* The layout will change after restore, so we need to
322                  * block on layout lock held by the MDT
323                  * as MDT will not send new layout in lvb (see LU-3124)
324                  * we have to explicitly fetch it, all this will be done
325                  * by ll_layout_refresh().
326                  * Even if ll_layout_restore() returns zero, it doesn't mean
327                  * that restore has been successful. Therefore it sets
328                  * ci_verify_layout so that it will check layout at the end
329                  * of this function.
330                  */
331                 if (rc) {
332                         io->ci_restore_needed = 1;
333                         io->ci_need_restart = 0;
334                         io->ci_verify_layout = 0;
335                         io->ci_result = rc;
336                         GOTO(out, rc);
337                 }
338
339                 io->ci_restore_needed = 0;
340
341                 /* Even if ll_layout_restore() returns zero, it doesn't mean
342                  * that restore has been successful. Therefore it should verify
343                  * if there was layout change and restart I/O correspondingly.
344                  */
345                 ll_layout_refresh(inode, &gen);
346                 io->ci_need_restart = vio->vui_layout_gen != gen;
347                 if (io->ci_need_restart) {
348                         CDEBUG(D_VFSTRACE,
349                                DFID" layout changed from %d to %d.\n",
350                                PFID(lu_object_fid(&obj->co_lu)),
351                                vio->vui_layout_gen, gen);
352                         /* today successful restore is the only possible
353                          * case */
354                         /* restore was done, clear restoring state */
355                         ll_file_clear_flag(ll_i2info(vvp_object_inode(obj)),
356                                            LLIF_FILE_RESTORING);
357                 }
358                 GOTO(out, 0);
359         }
360
361         /**
362          * dynamic layout change needed, send layout intent
363          * RPC.
364          */
365         if (io->ci_need_write_intent) {
366                 enum layout_intent_opc opc = LAYOUT_INTENT_WRITE;
367
368                 io->ci_need_write_intent = 0;
369
370                 LASSERT(io->ci_type == CIT_WRITE ||
371                         cl_io_is_trunc(io) || cl_io_is_mkwrite(io));
372
373                 CDEBUG(D_VFSTRACE, DFID" write layout, type %u "DEXT"\n",
374                        PFID(lu_object_fid(&obj->co_lu)), io->ci_type,
375                        PEXT(&io->ci_write_intent));
376
377                 if (cl_io_is_trunc(io))
378                         opc = LAYOUT_INTENT_TRUNC;
379
380                 rc = ll_layout_write_intent(inode, opc, &io->ci_write_intent);
381                 io->ci_result = rc;
382                 if (!rc)
383                         io->ci_need_restart = 1;
384                 GOTO(out, rc);
385         }
386
387         if (!io->ci_need_restart &&
388             !io->ci_ignore_layout && io->ci_verify_layout) {
389                 /* check layout version */
390                 ll_layout_refresh(inode, &gen);
391                 io->ci_need_restart = vio->vui_layout_gen != gen;
392                 if (io->ci_need_restart) {
393                         CDEBUG(D_VFSTRACE,
394                                DFID" layout changed from %d to %d.\n",
395                                PFID(lu_object_fid(&obj->co_lu)),
396                                vio->vui_layout_gen, gen);
397                 }
398                 GOTO(out, 0);
399         }
400 out:
401         EXIT;
402 }
403
404 static void vvp_io_fault_fini(const struct lu_env *env,
405                               const struct cl_io_slice *ios)
406 {
407         struct cl_io   *io   = ios->cis_io;
408         struct cl_page *page = io->u.ci_fault.ft_page;
409
410         CLOBINVRNT(env, io->ci_obj, vvp_object_invariant(io->ci_obj));
411
412         if (page != NULL) {
413                 lu_ref_del(&page->cp_reference, "fault", io);
414                 cl_page_put(env, page);
415                 io->u.ci_fault.ft_page = NULL;
416         }
417         vvp_io_fini(env, ios);
418 }
419
420 static enum cl_lock_mode vvp_mode_from_vma(struct vm_area_struct *vma)
421 {
422         /*
423          * we only want to hold PW locks if the mmap() can generate
424          * writes back to the file and that only happens in shared
425          * writable vmas
426          */
427         if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_WRITE))
428                 return CLM_WRITE;
429         return CLM_READ;
430 }
431
432 static int vvp_mmap_locks(const struct lu_env *env, struct cl_io *io)
433 {
434         struct vvp_thread_info *vti = vvp_env_info(env);
435         struct mm_struct *mm = current->mm;
436         struct vm_area_struct *vma;
437         struct cl_lock_descr *descr = &vti->vti_descr;
438         union ldlm_policy_data policy;
439         struct iovec iov;
440         struct iov_iter i;
441         int result = 0;
442         ENTRY;
443
444         LASSERT(io->ci_type == CIT_READ || io->ci_type == CIT_WRITE);
445
446         if (!cl_is_normalio(env, io))
447                 RETURN(0);
448
449         /* No MM (e.g. NFS)? No vmas too. */
450         if (mm == NULL)
451                 RETURN(0);
452
453         iov_for_each(iov, i, io->u.ci_rw.rw_iter) {
454                 unsigned long addr = (unsigned long)iov.iov_base;
455                 size_t count = iov.iov_len;
456
457                 if (count == 0)
458                         continue;
459
460                 count += addr & ~PAGE_MASK;
461                 addr &= PAGE_MASK;
462
463                 down_read(&mm->mmap_sem);
464                 while((vma = our_vma(mm, addr, count)) != NULL) {
465                         struct dentry *de = file_dentry(vma->vm_file);
466                         struct inode *inode = de->d_inode;
467                         int flags = CEF_MUST;
468
469                         if (ll_file_nolock(vma->vm_file)) {
470                                 /*
471                                  * For no lock case is not allowed for mmap
472                                  */
473                                 result = -EINVAL;
474                                 break;
475                         }
476
477                         /*
478                          * XXX: Required lock mode can be weakened: CIT_WRITE
479                          * io only ever reads user level buffer, and CIT_READ
480                          * only writes on it.
481                          */
482                         policy_from_vma(&policy, vma, addr, count);
483                         descr->cld_mode = vvp_mode_from_vma(vma);
484                         descr->cld_obj = ll_i2info(inode)->lli_clob;
485                         descr->cld_start = cl_index(descr->cld_obj,
486                                                     policy.l_extent.start);
487                         descr->cld_end = cl_index(descr->cld_obj,
488                                                   policy.l_extent.end);
489                         descr->cld_enq_flags = flags;
490                         result = cl_io_lock_alloc_add(env, io, descr);
491
492                         CDEBUG(D_VFSTRACE, "lock: %d: [%lu, %lu]\n",
493                                descr->cld_mode, descr->cld_start,
494                                descr->cld_end);
495
496                         if (result < 0)
497                                 break;
498
499                         if (vma->vm_end - addr >= count)
500                                 break;
501
502                         count -= vma->vm_end - addr;
503                         addr = vma->vm_end;
504                 }
505                 up_read(&mm->mmap_sem);
506                 if (result < 0)
507                         break;
508         }
509         RETURN(result);
510 }
511
512 static void vvp_io_advance(const struct lu_env *env,
513                            const struct cl_io_slice *ios,
514                            size_t nob)
515 {
516         struct vvp_io    *vio = cl2vvp_io(env, ios);
517         struct cl_io     *io  = ios->cis_io;
518         struct cl_object *obj = ios->cis_io->ci_obj;
519
520         CLOBINVRNT(env, obj, vvp_object_invariant(obj));
521
522         if (!cl_is_normalio(env, io))
523                 return;
524
525         vio->vui_tot_count -= nob;
526         if (io->ci_pio) {
527                 iov_iter_advance(&io->u.ci_rw.rw_iter, nob);
528                 io->u.ci_rw.rw_iocb.ki_pos = io->u.ci_rw.rw_range.cir_pos;
529 #ifdef HAVE_KIOCB_KI_LEFT
530                 io->u.ci_rw.rw_iocb.ki_left = vio->vui_tot_count;
531 #elif defined(HAVE_KI_NBYTES)
532                 io->u.ci_rw.rw_iocb.ki_nbytes = vio->vui_tot_count;
533 #endif
534         } else {
535                 /* It was truncated to stripe size in vvp_io_rw_lock() */
536                 iov_iter_reexpand(&io->u.ci_rw.rw_iter, vio->vui_tot_count);
537         }
538 }
539
540 static int vvp_io_rw_lock(const struct lu_env *env, struct cl_io *io,
541                           enum cl_lock_mode mode, loff_t start, loff_t end)
542 {
543         int result;
544         int ast_flags = 0;
545
546         LASSERT(io->ci_type == CIT_READ || io->ci_type == CIT_WRITE);
547         ENTRY;
548
549         if (cl_is_normalio(env, io))
550                 iov_iter_truncate(&io->u.ci_rw.rw_iter,
551                                   io->u.ci_rw.rw_range.cir_count);
552
553         if (io->u.ci_rw.rw_nonblock)
554                 ast_flags |= CEF_NONBLOCK;
555         if (io->ci_lock_no_expand)
556                 ast_flags |= CEF_LOCK_NO_EXPAND;
557
558         result = vvp_mmap_locks(env, io);
559         if (result == 0)
560                 result = vvp_io_one_lock(env, io, ast_flags, mode, start, end);
561
562         RETURN(result);
563 }
564
565 static int vvp_io_read_lock(const struct lu_env *env,
566                             const struct cl_io_slice *ios)
567 {
568         struct cl_io *io = ios->cis_io;
569         struct cl_io_range *range = &io->u.ci_rw.rw_range;
570         int rc;
571
572         ENTRY;
573         rc = vvp_io_rw_lock(env, io, CLM_READ, range->cir_pos,
574                             range->cir_pos + range->cir_count - 1);
575         RETURN(rc);
576 }
577
578 static int vvp_io_fault_lock(const struct lu_env *env,
579                              const struct cl_io_slice *ios)
580 {
581         struct cl_io *io   = ios->cis_io;
582         struct vvp_io *vio = cl2vvp_io(env, ios);
583         /*
584          * XXX LDLM_FL_CBPENDING
585          */
586         return vvp_io_one_lock_index(env,
587                                      io, 0,
588                                      vvp_mode_from_vma(vio->u.fault.ft_vma),
589                                      io->u.ci_fault.ft_index,
590                                      io->u.ci_fault.ft_index);
591 }
592
593 static int vvp_io_write_lock(const struct lu_env *env,
594                              const struct cl_io_slice *ios)
595 {
596         struct cl_io *io = ios->cis_io;
597         loff_t start;
598         loff_t end;
599         int rc;
600
601         ENTRY;
602         if (io->u.ci_rw.rw_append) {
603                 start = 0;
604                 end   = OBD_OBJECT_EOF;
605         } else {
606                 start = io->u.ci_rw.rw_range.cir_pos;
607                 end   = start + io->u.ci_rw.rw_range.cir_count - 1;
608         }
609         rc = vvp_io_rw_lock(env, io, CLM_WRITE, start, end);
610         RETURN(rc);
611 }
612
613 static int vvp_io_setattr_iter_init(const struct lu_env *env,
614                                     const struct cl_io_slice *ios)
615 {
616         return 0;
617 }
618
619 /**
620  * Implementation of cl_io_operations::cio_lock() method for CIT_SETATTR io.
621  *
622  * Handles "lockless io" mode when extent locking is done by server.
623  */
624 static int vvp_io_setattr_lock(const struct lu_env *env,
625                                const struct cl_io_slice *ios)
626 {
627         struct cl_io  *io  = ios->cis_io;
628         __u64 new_size;
629         __u32 enqflags = 0;
630
631         if (cl_io_is_trunc(io)) {
632                 new_size = io->u.ci_setattr.sa_attr.lvb_size;
633                 if (new_size == 0)
634                         enqflags = CEF_DISCARD_DATA;
635         } else {
636                 unsigned int valid = io->u.ci_setattr.sa_avalid;
637
638                 if (!(valid & TIMES_SET_FLAGS))
639                         return 0;
640
641                 if ((!(valid & ATTR_MTIME) ||
642                      io->u.ci_setattr.sa_attr.lvb_mtime >=
643                      io->u.ci_setattr.sa_attr.lvb_ctime) &&
644                     (!(valid & ATTR_ATIME) ||
645                      io->u.ci_setattr.sa_attr.lvb_atime >=
646                      io->u.ci_setattr.sa_attr.lvb_ctime))
647                         return 0;
648
649                 new_size = 0;
650         }
651
652         return vvp_io_one_lock(env, io, enqflags, CLM_WRITE,
653                                new_size, OBD_OBJECT_EOF);
654 }
655
656 static int vvp_do_vmtruncate(struct inode *inode, size_t size)
657 {
658         int     result;
659
660         /*
661          * Only ll_inode_size_lock is taken at this level.
662          */
663         ll_inode_size_lock(inode);
664         result = inode_newsize_ok(inode, size);
665         if (result < 0) {
666                 ll_inode_size_unlock(inode);
667                 return result;
668         }
669         i_size_write(inode, size);
670
671         ll_truncate_pagecache(inode, size);
672         ll_inode_size_unlock(inode);
673         return result;
674 }
675
676 static int vvp_io_setattr_time(const struct lu_env *env,
677                                const struct cl_io_slice *ios)
678 {
679         struct cl_io       *io    = ios->cis_io;
680         struct cl_object   *obj   = io->ci_obj;
681         struct cl_attr     *attr  = vvp_env_thread_attr(env);
682         int result;
683         unsigned valid = CAT_CTIME;
684
685         cl_object_attr_lock(obj);
686         attr->cat_ctime = io->u.ci_setattr.sa_attr.lvb_ctime;
687         if (io->u.ci_setattr.sa_avalid & ATTR_ATIME_SET) {
688                 attr->cat_atime = io->u.ci_setattr.sa_attr.lvb_atime;
689                 valid |= CAT_ATIME;
690         }
691         if (io->u.ci_setattr.sa_avalid & ATTR_MTIME_SET) {
692                 attr->cat_mtime = io->u.ci_setattr.sa_attr.lvb_mtime;
693                 valid |= CAT_MTIME;
694         }
695         result = cl_object_attr_update(env, obj, attr, valid);
696         cl_object_attr_unlock(obj);
697
698         return result;
699 }
700
701 static int vvp_io_setattr_start(const struct lu_env *env,
702                                 const struct cl_io_slice *ios)
703 {
704         struct cl_io            *io    = ios->cis_io;
705         struct inode            *inode = vvp_object_inode(io->ci_obj);
706         struct ll_inode_info    *lli   = ll_i2info(inode);
707
708         if (cl_io_is_trunc(io)) {
709                 down_write(&lli->lli_trunc_sem);
710                 inode_lock(inode);
711                 inode_dio_wait(inode);
712         } else {
713                 inode_lock(inode);
714         }
715
716         if (io->u.ci_setattr.sa_avalid & TIMES_SET_FLAGS)
717                 return vvp_io_setattr_time(env, ios);
718
719         return 0;
720 }
721
722 static void vvp_io_setattr_end(const struct lu_env *env,
723                                const struct cl_io_slice *ios)
724 {
725         struct cl_io            *io    = ios->cis_io;
726         struct inode            *inode = vvp_object_inode(io->ci_obj);
727         struct ll_inode_info    *lli   = ll_i2info(inode);
728
729         if (cl_io_is_trunc(io)) {
730                 /* Truncate in memory pages - they must be clean pages
731                  * because osc has already notified to destroy osc_extents. */
732                 vvp_do_vmtruncate(inode, io->u.ci_setattr.sa_attr.lvb_size);
733                 inode_dio_write_done(inode);
734                 inode_unlock(inode);
735                 up_write(&lli->lli_trunc_sem);
736         } else {
737                 inode_unlock(inode);
738         }
739 }
740
741 static void vvp_io_setattr_fini(const struct lu_env *env,
742                                 const struct cl_io_slice *ios)
743 {
744         bool restore_needed = ios->cis_io->ci_restore_needed;
745         struct inode *inode = vvp_object_inode(ios->cis_obj);
746
747         vvp_io_fini(env, ios);
748
749         if (restore_needed && !ios->cis_io->ci_restore_needed) {
750                 /* restore finished, set data modified flag for HSM */
751                 ll_file_set_flag(ll_i2info(inode), LLIF_DATA_MODIFIED);
752         }
753 }
754
755 static int vvp_io_read_start(const struct lu_env *env,
756                              const struct cl_io_slice *ios)
757 {
758         struct vvp_io           *vio   = cl2vvp_io(env, ios);
759         struct cl_io            *io    = ios->cis_io;
760         struct cl_object        *obj   = io->ci_obj;
761         struct inode            *inode = vvp_object_inode(obj);
762         struct ll_inode_info    *lli   = ll_i2info(inode);
763         struct file             *file  = vio->vui_fd->fd_file;
764         struct cl_io_range      *range = &io->u.ci_rw.rw_range;
765         loff_t pos = range->cir_pos; /* for generic_file_splice_read() only */
766         size_t tot = vio->vui_tot_count;
767         int exceed = 0;
768         int result;
769         ENTRY;
770
771         CLOBINVRNT(env, obj, vvp_object_invariant(obj));
772
773         CDEBUG(D_VFSTRACE, "%s: read [%llu, %llu)\n",
774                 file_dentry(file)->d_name.name,
775                 range->cir_pos, range->cir_pos + range->cir_count);
776
777         if (vio->vui_io_subtype == IO_NORMAL)
778                 down_read(&lli->lli_trunc_sem);
779
780         if (!can_populate_pages(env, io, inode))
781                 RETURN(0);
782
783         /* Unless this is reading a sparse file, otherwise the lock has already
784          * been acquired so vvp_prep_size() is an empty op. */
785         result = vvp_prep_size(env, obj, io, range->cir_pos, range->cir_count,
786                                 &exceed);
787         if (result != 0)
788                 RETURN(result);
789         else if (exceed != 0)
790                 GOTO(out, result);
791
792         LU_OBJECT_HEADER(D_INODE, env, &obj->co_lu,
793                          "Read ino %lu, %lu bytes, offset %lld, size %llu\n",
794                          inode->i_ino, range->cir_count, range->cir_pos,
795                          i_size_read(inode));
796
797         /* turn off the kernel's read-ahead */
798         vio->vui_fd->fd_file->f_ra.ra_pages = 0;
799
800         /* initialize read-ahead window once per syscall */
801         if (!vio->vui_ra_valid) {
802                 vio->vui_ra_valid = true;
803                 vio->vui_ra_start = cl_index(obj, range->cir_pos);
804                 vio->vui_ra_count = cl_index(obj, tot + PAGE_SIZE - 1);
805                 ll_ras_enter(file);
806         }
807
808         /* BUG: 5972 */
809         file_accessed(file);
810         switch (vio->vui_io_subtype) {
811         case IO_NORMAL:
812                 LASSERTF(io->u.ci_rw.rw_iocb.ki_pos == range->cir_pos,
813                          "ki_pos %lld [%lld, %lld)\n",
814                          io->u.ci_rw.rw_iocb.ki_pos,
815                          range->cir_pos, range->cir_pos + range->cir_count);
816                 result = generic_file_read_iter(&io->u.ci_rw.rw_iocb,
817                                                 &io->u.ci_rw.rw_iter);
818                 break;
819         case IO_SPLICE:
820                 result = generic_file_splice_read(file, &pos,
821                                                   vio->u.splice.vui_pipe,
822                                                   range->cir_count,
823                                                   vio->u.splice.vui_flags);
824                 /* LU-1109: do splice read stripe by stripe otherwise if it
825                  * may make nfsd stuck if this read occupied all internal pipe
826                  * buffers. */
827                 io->ci_continue = 0;
828                 break;
829         default:
830                 CERROR("Wrong IO type %u\n", vio->vui_io_subtype);
831                 LBUG();
832         }
833         GOTO(out, result);
834
835 out:
836         if (result >= 0) {
837                 if (result < range->cir_count)
838                         io->ci_continue = 0;
839                 io->ci_nob += result;
840                 ll_rw_stats_tally(ll_i2sbi(inode), current->pid, vio->vui_fd,
841                                   range->cir_pos, result, READ);
842                 result = 0;
843         }
844
845         return result;
846 }
847
848 static int vvp_io_commit_sync(const struct lu_env *env, struct cl_io *io,
849                               struct cl_page_list *plist, int from, int to)
850 {
851         struct cl_2queue *queue = &io->ci_queue;
852         struct cl_page *page;
853         unsigned int bytes = 0;
854         int rc = 0;
855         ENTRY;
856
857         if (plist->pl_nr == 0)
858                 RETURN(0);
859
860         if (from > 0 || to != PAGE_SIZE) {
861                 page = cl_page_list_first(plist);
862                 if (plist->pl_nr == 1) {
863                         cl_page_clip(env, page, from, to);
864                 } else {
865                         if (from > 0)
866                                 cl_page_clip(env, page, from, PAGE_SIZE);
867                         if (to != PAGE_SIZE) {
868                                 page = cl_page_list_last(plist);
869                                 cl_page_clip(env, page, 0, to);
870                         }
871                 }
872         }
873
874         cl_2queue_init(queue);
875         cl_page_list_splice(plist, &queue->c2_qin);
876         rc = cl_io_submit_sync(env, io, CRT_WRITE, queue, 0);
877
878         /* plist is not sorted any more */
879         cl_page_list_splice(&queue->c2_qin, plist);
880         cl_page_list_splice(&queue->c2_qout, plist);
881         cl_2queue_fini(env, queue);
882
883         if (rc == 0) {
884                 /* calculate bytes */
885                 bytes = plist->pl_nr << PAGE_SHIFT;
886                 bytes -= from + PAGE_SIZE - to;
887
888                 while (plist->pl_nr > 0) {
889                         page = cl_page_list_first(plist);
890                         cl_page_list_del(env, plist, page);
891
892                         cl_page_clip(env, page, 0, PAGE_SIZE);
893
894                         SetPageUptodate(cl_page_vmpage(page));
895                         cl_page_disown(env, io, page);
896
897                         lu_ref_del(&page->cp_reference, "cl_io", io);
898                         cl_page_put(env, page);
899                 }
900         }
901
902         RETURN(bytes > 0 ? bytes : rc);
903 }
904
905 static void write_commit_callback(const struct lu_env *env, struct cl_io *io,
906                                 struct cl_page *page)
907 {
908         struct page *vmpage = page->cp_vmpage;
909
910         SetPageUptodate(vmpage);
911         set_page_dirty(vmpage);
912
913         cl_page_disown(env, io, page);
914
915         lu_ref_del(&page->cp_reference, "cl_io", cl_io_top(io));
916         cl_page_put(env, page);
917 }
918
919 /* make sure the page list is contiguous */
920 static bool page_list_sanity_check(struct cl_object *obj,
921                                    struct cl_page_list *plist)
922 {
923         struct cl_page *page;
924         pgoff_t index = CL_PAGE_EOF;
925
926         cl_page_list_for_each(page, plist) {
927                 struct vvp_page *vpg = cl_object_page_slice(obj, page);
928
929                 if (index == CL_PAGE_EOF) {
930                         index = vvp_index(vpg);
931                         continue;
932                 }
933
934                 ++index;
935                 if (index == vvp_index(vpg))
936                         continue;
937
938                 return false;
939         }
940         return true;
941 }
942
943 /* Return how many bytes have queued or written */
944 int vvp_io_write_commit(const struct lu_env *env, struct cl_io *io)
945 {
946         struct cl_object *obj = io->ci_obj;
947         struct inode *inode = vvp_object_inode(obj);
948         struct vvp_io *vio = vvp_env_io(env);
949         struct cl_page_list *queue = &vio->u.write.vui_queue;
950         struct cl_page *page;
951         int rc = 0;
952         int bytes = 0;
953         unsigned int npages = vio->u.write.vui_queue.pl_nr;
954         ENTRY;
955
956         if (npages == 0)
957                 RETURN(0);
958
959         CDEBUG(D_VFSTRACE, "commit async pages: %d, from %d, to %d\n",
960                 npages, vio->u.write.vui_from, vio->u.write.vui_to);
961
962         LASSERT(page_list_sanity_check(obj, queue));
963
964         /* submit IO with async write */
965         rc = cl_io_commit_async(env, io, queue,
966                                 vio->u.write.vui_from, vio->u.write.vui_to,
967                                 write_commit_callback);
968         npages -= queue->pl_nr; /* already committed pages */
969         if (npages > 0) {
970                 /* calculate how many bytes were written */
971                 bytes = npages << PAGE_SHIFT;
972
973                 /* first page */
974                 bytes -= vio->u.write.vui_from;
975                 if (queue->pl_nr == 0) /* last page */
976                         bytes -= PAGE_SIZE - vio->u.write.vui_to;
977                 LASSERTF(bytes > 0, "bytes = %d, pages = %d\n", bytes, npages);
978
979                 vio->u.write.vui_written += bytes;
980
981                 CDEBUG(D_VFSTRACE, "Committed %d pages %d bytes, tot: %ld\n",
982                         npages, bytes, vio->u.write.vui_written);
983
984                 /* the first page must have been written. */
985                 vio->u.write.vui_from = 0;
986         }
987         LASSERT(page_list_sanity_check(obj, queue));
988         LASSERT(ergo(rc == 0, queue->pl_nr == 0));
989
990         /* out of quota, try sync write */
991         if (rc == -EDQUOT && !cl_io_is_mkwrite(io)) {
992                 rc = vvp_io_commit_sync(env, io, queue,
993                                         vio->u.write.vui_from,
994                                         vio->u.write.vui_to);
995                 if (rc > 0) {
996                         vio->u.write.vui_written += rc;
997                         rc = 0;
998                 }
999         }
1000
1001         /* update inode size */
1002         ll_merge_attr(env, inode);
1003
1004         /* Now the pages in queue were failed to commit, discard them
1005          * unless they were dirtied before. */
1006         while (queue->pl_nr > 0) {
1007                 page = cl_page_list_first(queue);
1008                 cl_page_list_del(env, queue, page);
1009
1010                 if (!PageDirty(cl_page_vmpage(page)))
1011                         cl_page_discard(env, io, page);
1012
1013                 cl_page_disown(env, io, page);
1014
1015                 lu_ref_del(&page->cp_reference, "cl_io", io);
1016                 cl_page_put(env, page);
1017         }
1018         cl_page_list_fini(env, queue);
1019
1020         RETURN(rc);
1021 }
1022
1023 static int vvp_io_write_start(const struct lu_env *env,
1024                               const struct cl_io_slice *ios)
1025 {
1026         struct vvp_io           *vio   = cl2vvp_io(env, ios);
1027         struct cl_io            *io    = ios->cis_io;
1028         struct cl_object        *obj   = io->ci_obj;
1029         struct inode            *inode = vvp_object_inode(obj);
1030         struct ll_inode_info    *lli   = ll_i2info(inode);
1031         struct file             *file  = vio->vui_fd->fd_file;
1032         struct cl_io_range      *range = &io->u.ci_rw.rw_range;
1033         bool                     lock_inode = !lli->lli_inode_locked &&
1034                                               !IS_NOSEC(inode);
1035         ssize_t                  result = 0;
1036         ENTRY;
1037
1038         if (vio->vui_io_subtype == IO_NORMAL)
1039                 down_read(&lli->lli_trunc_sem);
1040
1041         if (!can_populate_pages(env, io, inode))
1042                 RETURN(0);
1043
1044         if (cl_io_is_append(io)) {
1045                 /*
1046                  * PARALLEL IO This has to be changed for parallel IO doing
1047                  * out-of-order writes.
1048                  */
1049                 ll_merge_attr(env, inode);
1050                 range->cir_pos = i_size_read(inode);
1051                 io->u.ci_rw.rw_iocb.ki_pos = range->cir_pos;
1052         } else {
1053                 LASSERTF(io->u.ci_rw.rw_iocb.ki_pos == range->cir_pos,
1054                          "ki_pos %lld [%lld, %lld)\n",
1055                          io->u.ci_rw.rw_iocb.ki_pos,
1056                          range->cir_pos, range->cir_pos + range->cir_count);
1057         }
1058
1059         CDEBUG(D_VFSTRACE, "%s: write [%llu, %llu)\n",
1060                 file_dentry(file)->d_name.name,
1061                 range->cir_pos, range->cir_pos + range->cir_count);
1062
1063         /* The maximum Lustre file size is variable, based on the OST maximum
1064          * object size and number of stripes.  This needs another check in
1065          * addition to the VFS checks earlier. */
1066         if (range->cir_pos + range->cir_count > ll_file_maxbytes(inode)) {
1067                 CDEBUG(D_INODE,
1068                        "%s: file %s ("DFID") offset %llu > maxbytes %llu\n",
1069                        ll_get_fsname(inode->i_sb, NULL, 0),
1070                        file_dentry(file)->d_name.name,
1071                        PFID(ll_inode2fid(inode)),
1072                        range->cir_pos + range->cir_count,
1073                        ll_file_maxbytes(inode));
1074                 RETURN(-EFBIG);
1075         }
1076
1077         /* Tests to verify we take the i_mutex correctly */
1078         if (OBD_FAIL_CHECK(OBD_FAIL_LLITE_IMUTEX_SEC) && !lock_inode)
1079                 RETURN(-EINVAL);
1080
1081         if (OBD_FAIL_CHECK(OBD_FAIL_LLITE_IMUTEX_NOSEC) && lock_inode)
1082                 RETURN(-EINVAL);
1083
1084         /*
1085          * When using the locked AIO function (generic_file_aio_write())
1086          * testing has shown the inode mutex to be a limiting factor
1087          * with multi-threaded single shared file performance. To get
1088          * around this, we now use the lockless version. To maintain
1089          * consistency, proper locking to protect against writes,
1090          * trucates, etc. is handled in the higher layers of lustre.
1091          */
1092         if (lock_inode)
1093                 inode_lock(inode);
1094         result = __generic_file_write_iter(&io->u.ci_rw.rw_iocb,
1095                                            &io->u.ci_rw.rw_iter);
1096         if (lock_inode)
1097                 inode_unlock(inode);
1098
1099         if (result > 0 || result == -EIOCBQUEUED)
1100 #ifdef HAVE_GENERIC_WRITE_SYNC_2ARGS
1101                 result = generic_write_sync(&io->u.ci_rw.rw_iocb, result);
1102 #else
1103         {
1104                 ssize_t err;
1105
1106                 err = generic_write_sync(io->u.ci_rw.rw_iocb.ki_filp,
1107                                          range->cir_pos, result);
1108                 if (err < 0 && result > 0)
1109                         result = err;
1110         }
1111 #endif
1112
1113         if (result > 0) {
1114                 result = vvp_io_write_commit(env, io);
1115                 if (vio->u.write.vui_written > 0) {
1116                         result = vio->u.write.vui_written;
1117                         CDEBUG(D_VFSTRACE, "%s: write nob %zd, result: %zd\n",
1118                                 file_dentry(file)->d_name.name,
1119                                 io->ci_nob, result);
1120                         io->ci_nob += result;
1121                 }
1122         }
1123         if (result > 0) {
1124                 ll_file_set_flag(ll_i2info(inode), LLIF_DATA_MODIFIED);
1125
1126                 if (result < range->cir_count)
1127                         io->ci_continue = 0;
1128                 ll_rw_stats_tally(ll_i2sbi(inode), current->pid,
1129                                   vio->vui_fd, range->cir_pos, result, WRITE);
1130                 result = 0;
1131         }
1132
1133         RETURN(result);
1134 }
1135
1136 static void vvp_io_rw_end(const struct lu_env *env,
1137                           const struct cl_io_slice *ios)
1138 {
1139         struct vvp_io           *vio = cl2vvp_io(env, ios);
1140         struct inode            *inode = vvp_object_inode(ios->cis_obj);
1141         struct ll_inode_info    *lli = ll_i2info(inode);
1142
1143         if (vio->vui_io_subtype == IO_NORMAL)
1144                 up_read(&lli->lli_trunc_sem);
1145 }
1146
1147 static int vvp_io_kernel_fault(struct vvp_fault_io *cfio)
1148 {
1149         struct vm_fault *vmf = cfio->ft_vmf;
1150
1151         cfio->ft_flags = ll_filemap_fault(cfio->ft_vma, vmf);
1152         cfio->ft_flags_valid = 1;
1153
1154         if (vmf->page) {
1155                 LL_CDEBUG_PAGE(D_PAGE, vmf->page, "got addr %p type NOPAGE\n",
1156                                get_vmf_address(vmf));
1157                 if (unlikely(!(cfio->ft_flags & VM_FAULT_LOCKED))) {
1158                         lock_page(vmf->page);
1159                         cfio->ft_flags |= VM_FAULT_LOCKED;
1160                 }
1161
1162                 cfio->ft_vmpage = vmf->page;
1163
1164                 return 0;
1165         }
1166
1167         if (cfio->ft_flags & VM_FAULT_SIGBUS) {
1168                 CDEBUG(D_PAGE, "got addr %p - SIGBUS\n", get_vmf_address(vmf));
1169                 return -EFAULT;
1170         }
1171
1172         if (cfio->ft_flags & VM_FAULT_OOM) {
1173                 CDEBUG(D_PAGE, "got addr %p - OOM\n", get_vmf_address(vmf));
1174                 return -ENOMEM;
1175         }
1176
1177         if (cfio->ft_flags & VM_FAULT_RETRY)
1178                 return -EAGAIN;
1179
1180         CERROR("unknown error in page fault %d\n", cfio->ft_flags);
1181
1182         return -EINVAL;
1183 }
1184
1185 static void mkwrite_commit_callback(const struct lu_env *env, struct cl_io *io,
1186                                     struct cl_page *page)
1187 {
1188         set_page_dirty(page->cp_vmpage);
1189 }
1190
1191 static int vvp_io_fault_start(const struct lu_env *env,
1192                               const struct cl_io_slice *ios)
1193 {
1194         struct vvp_io           *vio   = cl2vvp_io(env, ios);
1195         struct cl_io            *io    = ios->cis_io;
1196         struct cl_object        *obj   = io->ci_obj;
1197         struct inode            *inode = vvp_object_inode(obj);
1198         struct ll_inode_info    *lli   = ll_i2info(inode);
1199         struct cl_fault_io      *fio   = &io->u.ci_fault;
1200         struct vvp_fault_io     *cfio  = &vio->u.fault;
1201         loff_t                   offset;
1202         int                      result = 0;
1203         struct page             *vmpage = NULL;
1204         struct cl_page          *page;
1205         loff_t                   size;
1206         pgoff_t                  last_index;
1207         ENTRY;
1208
1209         down_read(&lli->lli_trunc_sem);
1210
1211         /* offset of the last byte on the page */
1212         offset = cl_offset(obj, fio->ft_index + 1) - 1;
1213         LASSERT(cl_index(obj, offset) == fio->ft_index);
1214         result = vvp_prep_size(env, obj, io, 0, offset + 1, NULL);
1215         if (result != 0)
1216                 RETURN(result);
1217
1218         /* must return locked page */
1219         if (fio->ft_mkwrite) {
1220                 LASSERT(cfio->ft_vmpage != NULL);
1221                 lock_page(cfio->ft_vmpage);
1222         } else {
1223                 result = vvp_io_kernel_fault(cfio);
1224                 if (result != 0)
1225                         RETURN(result);
1226         }
1227
1228         vmpage = cfio->ft_vmpage;
1229         LASSERT(PageLocked(vmpage));
1230
1231         if (OBD_FAIL_CHECK(OBD_FAIL_LLITE_FAULT_TRUNC_RACE))
1232                 ll_invalidate_page(vmpage);
1233
1234         size = i_size_read(inode);
1235         /* Though we have already held a cl_lock upon this page, but
1236          * it still can be truncated locally. */
1237         if (unlikely((vmpage->mapping != inode->i_mapping) ||
1238                      (page_offset(vmpage) > size))) {
1239                 CDEBUG(D_PAGE, "llite: fault and truncate race happened!\n");
1240
1241                 /* return +1 to stop cl_io_loop() and ll_fault() will catch
1242                  * and retry. */
1243                 GOTO(out, result = +1);
1244         }
1245
1246         last_index = cl_index(obj, size - 1);
1247
1248         if (fio->ft_mkwrite ) {
1249                 /*
1250                  * Capture the size while holding the lli_trunc_sem from above
1251                  * we want to make sure that we complete the mkwrite action
1252                  * while holding this lock. We need to make sure that we are
1253                  * not past the end of the file.
1254                  */
1255                 if (last_index < fio->ft_index) {
1256                         CDEBUG(D_PAGE,
1257                                 "llite: mkwrite and truncate race happened: "
1258                                 "%p: 0x%lx 0x%lx\n",
1259                                 vmpage->mapping,fio->ft_index,last_index);
1260                         /*
1261                          * We need to return if we are
1262                          * passed the end of the file. This will propagate
1263                          * up the call stack to ll_page_mkwrite where
1264                          * we will return VM_FAULT_NOPAGE. Any non-negative
1265                          * value returned here will be silently
1266                          * converted to 0. If the vmpage->mapping is null
1267                          * the error code would be converted back to ENODATA
1268                          * in ll_page_mkwrite0. Thus we return -ENODATA
1269                          * to handle both cases
1270                          */
1271                         GOTO(out, result = -ENODATA);
1272                 }
1273         }
1274
1275         page = cl_page_find(env, obj, fio->ft_index, vmpage, CPT_CACHEABLE);
1276         if (IS_ERR(page))
1277                 GOTO(out, result = PTR_ERR(page));
1278
1279         /* if page is going to be written, we should add this page into cache
1280          * earlier. */
1281         if (fio->ft_mkwrite) {
1282                 wait_on_page_writeback(vmpage);
1283                 if (!PageDirty(vmpage)) {
1284                         struct cl_page_list *plist = &io->ci_queue.c2_qin;
1285                         struct vvp_page *vpg = cl_object_page_slice(obj, page);
1286                         int to = PAGE_SIZE;
1287
1288                         /* vvp_page_assume() calls wait_on_page_writeback(). */
1289                         cl_page_assume(env, io, page);
1290
1291                         cl_page_list_init(plist);
1292                         cl_page_list_add(plist, page);
1293
1294                         /* size fixup */
1295                         if (last_index == vvp_index(vpg))
1296                                 to = size & ~PAGE_MASK;
1297
1298                         /* Do not set Dirty bit here so that in case IO is
1299                          * started before the page is really made dirty, we
1300                          * still have chance to detect it. */
1301                         result = cl_io_commit_async(env, io, plist, 0, to,
1302                                                     mkwrite_commit_callback);
1303                         LASSERT(cl_page_is_owned(page, io));
1304                         cl_page_list_fini(env, plist);
1305
1306                         vmpage = NULL;
1307                         if (result < 0) {
1308                                 cl_page_discard(env, io, page);
1309                                 cl_page_disown(env, io, page);
1310
1311                                 cl_page_put(env, page);
1312
1313                                 /* we're in big trouble, what can we do now? */
1314                                 if (result == -EDQUOT)
1315                                         result = -ENOSPC;
1316                                 GOTO(out, result);
1317                         } else
1318                                 cl_page_disown(env, io, page);
1319                 }
1320         }
1321
1322         /*
1323          * The ft_index is only used in the case of
1324          * a mkwrite action. We need to check
1325          * our assertions are correct, since
1326          * we should have caught this above
1327          */
1328         LASSERT(!fio->ft_mkwrite || fio->ft_index <= last_index);
1329         if (fio->ft_index == last_index)
1330                 /*
1331                  * Last page is mapped partially.
1332                  */
1333                 fio->ft_nob = size - cl_offset(obj, fio->ft_index);
1334         else
1335                 fio->ft_nob = cl_page_size(obj);
1336
1337         lu_ref_add(&page->cp_reference, "fault", io);
1338         fio->ft_page = page;
1339         EXIT;
1340
1341 out:
1342         /* return unlocked vmpage to avoid deadlocking */
1343         if (vmpage != NULL)
1344                 unlock_page(vmpage);
1345
1346         cfio->ft_flags &= ~VM_FAULT_LOCKED;
1347
1348         return result;
1349 }
1350
1351 static void vvp_io_fault_end(const struct lu_env *env,
1352                              const struct cl_io_slice *ios)
1353 {
1354         struct inode            *inode = vvp_object_inode(ios->cis_obj);
1355         struct ll_inode_info    *lli   = ll_i2info(inode);
1356
1357         CLOBINVRNT(env, ios->cis_io->ci_obj,
1358                    vvp_object_invariant(ios->cis_io->ci_obj));
1359         up_read(&lli->lli_trunc_sem);
1360 }
1361
1362 static int vvp_io_fsync_start(const struct lu_env *env,
1363                               const struct cl_io_slice *ios)
1364 {
1365         /* we should mark TOWRITE bit to each dirty page in radix tree to
1366          * verify pages have been written, but this is difficult because of
1367          * race. */
1368         return 0;
1369 }
1370
1371 static int vvp_io_read_ahead(const struct lu_env *env,
1372                              const struct cl_io_slice *ios,
1373                              pgoff_t start, struct cl_read_ahead *ra)
1374 {
1375         int result = 0;
1376         ENTRY;
1377
1378         if (ios->cis_io->ci_type == CIT_READ ||
1379             ios->cis_io->ci_type == CIT_FAULT) {
1380                 struct vvp_io *vio = cl2vvp_io(env, ios);
1381
1382                 if (unlikely(vio->vui_fd->fd_flags & LL_FILE_GROUP_LOCKED)) {
1383                         ra->cra_end = CL_PAGE_EOF;
1384                         result = +1; /* no need to call down */
1385                 }
1386         }
1387
1388         RETURN(result);
1389 }
1390
1391 static const struct cl_io_operations vvp_io_ops = {
1392         .op = {
1393                 [CIT_READ] = {
1394                         .cio_fini       = vvp_io_fini,
1395                         .cio_lock       = vvp_io_read_lock,
1396                         .cio_start      = vvp_io_read_start,
1397                         .cio_end        = vvp_io_rw_end,
1398                         .cio_advance    = vvp_io_advance,
1399                 },
1400                 [CIT_WRITE] = {
1401                         .cio_fini      = vvp_io_fini,
1402                         .cio_iter_init = vvp_io_write_iter_init,
1403                         .cio_iter_fini = vvp_io_write_iter_fini,
1404                         .cio_lock      = vvp_io_write_lock,
1405                         .cio_start     = vvp_io_write_start,
1406                         .cio_end       = vvp_io_rw_end,
1407                         .cio_advance   = vvp_io_advance,
1408                 },
1409                 [CIT_SETATTR] = {
1410                         .cio_fini       = vvp_io_setattr_fini,
1411                         .cio_iter_init  = vvp_io_setattr_iter_init,
1412                         .cio_lock       = vvp_io_setattr_lock,
1413                         .cio_start      = vvp_io_setattr_start,
1414                         .cio_end        = vvp_io_setattr_end
1415                 },
1416                 [CIT_FAULT] = {
1417                         .cio_fini      = vvp_io_fault_fini,
1418                         .cio_iter_init = vvp_io_fault_iter_init,
1419                         .cio_lock      = vvp_io_fault_lock,
1420                         .cio_start     = vvp_io_fault_start,
1421                         .cio_end       = vvp_io_fault_end,
1422                 },
1423                 [CIT_FSYNC] = {
1424                         .cio_start      = vvp_io_fsync_start,
1425                         .cio_fini       = vvp_io_fini
1426                 },
1427                 [CIT_GLIMPSE] = {
1428                         .cio_fini       = vvp_io_fini
1429                 },
1430                 [CIT_MISC] = {
1431                         .cio_fini       = vvp_io_fini
1432                 },
1433                 [CIT_LADVISE] = {
1434                         .cio_fini       = vvp_io_fini
1435                 },
1436         },
1437         .cio_read_ahead = vvp_io_read_ahead
1438 };
1439
1440 int vvp_io_init(const struct lu_env *env, struct cl_object *obj,
1441                 struct cl_io *io)
1442 {
1443         struct vvp_io      *vio   = vvp_env_io(env);
1444         struct inode       *inode = vvp_object_inode(obj);
1445         int                 result;
1446
1447         CLOBINVRNT(env, obj, vvp_object_invariant(obj));
1448         ENTRY;
1449
1450         CDEBUG(D_VFSTRACE, DFID" ignore/verify layout %d/%d, layout version %d "
1451                "restore needed %d\n",
1452                PFID(lu_object_fid(&obj->co_lu)),
1453                io->ci_ignore_layout, io->ci_verify_layout,
1454                vio->vui_layout_gen, io->ci_restore_needed);
1455
1456         CL_IO_SLICE_CLEAN(vio, vui_cl);
1457         cl_io_slice_add(io, &vio->vui_cl, obj, &vvp_io_ops);
1458         vio->vui_ra_valid = false;
1459         result = 0;
1460         if (io->ci_type == CIT_READ || io->ci_type == CIT_WRITE) {
1461                 struct ll_inode_info *lli = ll_i2info(inode);
1462
1463                 vio->vui_tot_count = io->u.ci_rw.rw_range.cir_count;
1464                 /* "If nbyte is 0, read() will return 0 and have no other
1465                  *  results."  -- Single Unix Spec */
1466                 if (vio->vui_tot_count == 0)
1467                         result = 1;
1468
1469                 /* for read/write, we store the jobid in the inode, and
1470                  * it'll be fetched by osc when building RPC.
1471                  *
1472                  * it's not accurate if the file is shared by different
1473                  * jobs.
1474                  */
1475                 lustre_get_jobid(lli->lli_jobid, sizeof(lli->lli_jobid));
1476         } else if (io->ci_type == CIT_SETATTR) {
1477                 if (!cl_io_is_trunc(io))
1478                         io->ci_lockreq = CILR_MANDATORY;
1479         }
1480
1481         /* Enqueue layout lock and get layout version. We need to do this
1482          * even for operations requiring to open file, such as read and write,
1483          * because it might not grant layout lock in IT_OPEN. */
1484         if (result == 0 && !io->ci_ignore_layout) {
1485                 result = ll_layout_refresh(inode, &vio->vui_layout_gen);
1486                 if (result == -ENOENT)
1487                         /* If the inode on MDS has been removed, but the objects
1488                          * on OSTs haven't been destroyed (async unlink), layout
1489                          * fetch will return -ENOENT, we'd ingore this error
1490                          * and continue with dirty flush. LU-3230. */
1491                         result = 0;
1492                 if (result < 0)
1493                         CERROR("%s: refresh file layout " DFID " error %d.\n",
1494                                 ll_get_fsname(inode->i_sb, NULL, 0),
1495                                 PFID(lu_object_fid(&obj->co_lu)), result);
1496         }
1497
1498         io->ci_result = result < 0 ? result : 0;
1499         RETURN(result);
1500 }