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