Whamcloud - gitweb
LU-9859 libcfs: add support for Xarray
[fs/lustre-release.git] / lustre / lov / lov_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 LOV 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_LOV
39
40 #include "lov_cl_internal.h"
41
42 /** \addtogroup lov
43  *  @{
44  */
45
46 static inline struct lov_io_sub *lov_sub_alloc(struct lov_io *lio, int index)
47 {
48         struct lov_io_sub *sub;
49
50         if (lio->lis_nr_subios == 0) {
51                 LASSERT(lio->lis_single_subio_index == -1);
52                 sub = &lio->lis_single_subio;
53                 lio->lis_single_subio_index = index;
54                 memset(sub, 0, sizeof(*sub));
55         } else {
56                 OBD_ALLOC_PTR(sub);
57         }
58
59         if (sub) {
60                 INIT_LIST_HEAD(&sub->sub_list);
61                 INIT_LIST_HEAD(&sub->sub_linkage);
62                 sub->sub_subio_index = index;
63         }
64
65         return sub;
66 }
67
68 static inline void lov_sub_free(struct lov_io *lio, struct lov_io_sub *sub)
69 {
70         if (sub->sub_subio_index == lio->lis_single_subio_index) {
71                 LASSERT(sub == &lio->lis_single_subio);
72                 lio->lis_single_subio_index = -1;
73         } else {
74                 OBD_FREE_PTR(sub);
75         }
76 }
77
78 static void lov_io_sub_fini(const struct lu_env *env, struct lov_io *lio,
79                             struct lov_io_sub *sub)
80 {
81         ENTRY;
82
83         cl_io_fini(sub->sub_env, &sub->sub_io);
84
85         if (sub->sub_env && !IS_ERR(sub->sub_env)) {
86                 cl_env_put(sub->sub_env, &sub->sub_refcheck);
87                 sub->sub_env = NULL;
88         }
89         EXIT;
90 }
91
92 static inline bool
93 is_index_within_mirror(struct lov_object *lov, int index, int mirror_index)
94 {
95         struct lov_layout_composite *comp = &lov->u.composite;
96         struct lov_mirror_entry *lre = &comp->lo_mirrors[mirror_index];
97
98         return (index >= lre->lre_start && index <= lre->lre_end);
99 }
100
101 static int lov_io_sub_init(const struct lu_env *env, struct lov_io *lio,
102                            struct lov_io_sub *sub)
103 {
104         struct lov_object *lov = lio->lis_object;
105         struct cl_io *sub_io;
106         struct cl_object *sub_obj;
107         struct cl_io *io = lio->lis_cl.cis_io;
108         int index = lov_comp_entry(sub->sub_subio_index);
109         int stripe = lov_comp_stripe(sub->sub_subio_index);
110         int result = 0;
111         LASSERT(sub->sub_env == NULL);
112         ENTRY;
113
114         if (unlikely(!lov_r0(lov, index)->lo_sub ||
115                      !lov_r0(lov, index)->lo_sub[stripe]))
116                 RETURN(-EIO);
117
118         LASSERTF(ergo(lov_is_flr(lov),
119                       is_index_within_mirror(lov, index,
120                                              lio->lis_mirror_index)),
121                  DFID "iot = %d, index = %d, mirror = %d\n",
122                  PFID(lu_object_fid(lov2lu(lov))), io->ci_type, index,
123                  lio->lis_mirror_index);
124
125         /* obtain new environment */
126         sub->sub_env = cl_env_get(&sub->sub_refcheck);
127         if (IS_ERR(sub->sub_env)) {
128                 result = PTR_ERR(sub->sub_env);
129                 RETURN(result);
130         }
131
132         sub_obj = lovsub2cl(lov_r0(lov, index)->lo_sub[stripe]);
133         sub_io  = &sub->sub_io;
134
135         sub_io->ci_obj    = sub_obj;
136         sub_io->ci_result = 0;
137
138         sub_io->ci_parent  = io;
139         sub_io->ci_lockreq = io->ci_lockreq;
140         sub_io->ci_type    = io->ci_type;
141         sub_io->ci_no_srvlock = io->ci_no_srvlock;
142         sub_io->ci_noatime = io->ci_noatime;
143         sub_io->ci_async_readahead = io->ci_async_readahead;
144         sub_io->ci_lock_no_expand = io->ci_lock_no_expand;
145         sub_io->ci_ndelay = io->ci_ndelay;
146         sub_io->ci_layout_version = io->ci_layout_version;
147         sub_io->ci_tried_all_mirrors = io->ci_tried_all_mirrors;
148
149         result = cl_io_sub_init(sub->sub_env, sub_io, io->ci_type, sub_obj);
150
151         if (result < 0)
152                 lov_io_sub_fini(env, lio, sub);
153
154         RETURN(result);
155 }
156
157 struct lov_io_sub *lov_sub_get(const struct lu_env *env,
158                                struct lov_io *lio, int index)
159 {
160         struct lov_io_sub *sub;
161         int rc = 0;
162
163         ENTRY;
164
165         list_for_each_entry(sub, &lio->lis_subios, sub_list) {
166                 if (sub->sub_subio_index == index) {
167                         rc = 1;
168                         break;
169                 }
170         }
171
172         if (rc == 0) {
173                 sub = lov_sub_alloc(lio, index);
174                 if (!sub)
175                         GOTO(out, rc = -ENOMEM);
176
177                 rc = lov_io_sub_init(env, lio, sub);
178                 if (rc < 0) {
179                         lov_sub_free(lio, sub);
180                         GOTO(out, rc);
181                 }
182
183                 list_add_tail(&sub->sub_list, &lio->lis_subios);
184                 lio->lis_nr_subios++;
185         }
186 out:
187         if (rc < 0)
188                 sub = ERR_PTR(rc);
189         else
190                 sub->sub_io.ci_noquota = lio->lis_cl.cis_io->ci_noquota;
191         RETURN(sub);
192 }
193
194 /*****************************************************************************
195  *
196  * Lov io operations.
197  *
198  */
199 static int lov_io_subio_init(const struct lu_env *env, struct lov_io *lio,
200                              struct cl_io *io)
201 {
202         ENTRY;
203
204         LASSERT(lio->lis_object != NULL);
205
206         INIT_LIST_HEAD(&lio->lis_subios);
207         lio->lis_single_subio_index = -1;
208         lio->lis_nr_subios = 0;
209
210         RETURN(0);
211 }
212
213 /**
214  * Decide if it will need write intent RPC
215  */
216 static int lov_io_mirror_write_intent(struct lov_io *lio,
217         struct lov_object *obj, struct cl_io *io)
218 {
219         struct lov_layout_composite *comp = &obj->u.composite;
220         struct lu_extent *ext = &io->ci_write_intent;
221         struct lov_mirror_entry *lre;
222         struct lov_mirror_entry *primary;
223         struct lov_layout_entry *lle;
224         size_t count = 0;
225         ENTRY;
226
227         *ext = (typeof(*ext)) { lio->lis_pos, lio->lis_endpos };
228         io->ci_need_write_intent = 0;
229
230         if (!(io->ci_type == CIT_WRITE || cl_io_is_trunc(io) ||
231               cl_io_is_mkwrite(io)))
232                 RETURN(0);
233
234         /*
235          * FLR: check if it needs to send a write intent RPC to server.
236          * Writing to sync_pending file needs write intent RPC to change
237          * the file state back to write_pending, so that the layout version
238          * can be increased when the state changes to sync_pending at a later
239          * time. Otherwise there exists a chance that an evicted client may
240          * dirty the file data while resync client is working on it.
241          * Designated I/O is allowed for resync workload.
242          */
243         if (lov_flr_state(obj) == LCM_FL_RDONLY ||
244             (lov_flr_state(obj) == LCM_FL_SYNC_PENDING &&
245              io->ci_designated_mirror == 0)) {
246                 io->ci_need_write_intent = 1;
247                 RETURN(0);
248         }
249
250         LASSERT((lov_flr_state(obj) == LCM_FL_WRITE_PENDING));
251         LASSERT(comp->lo_preferred_mirror >= 0);
252
253         /*
254          * need to iterate all components to see if there are
255          * multiple components covering the writing component
256          */
257         primary = &comp->lo_mirrors[comp->lo_preferred_mirror];
258         LASSERT(!primary->lre_stale);
259         lov_foreach_mirror_layout_entry(obj, lle, primary) {
260                 LASSERT(lle->lle_valid);
261                 if (!lu_extent_is_overlapped(ext, lle->lle_extent))
262                         continue;
263
264                 ext->e_start = min(ext->e_start, lle->lle_extent->e_start);
265                 ext->e_end = max(ext->e_end, lle->lle_extent->e_end);
266                 ++count;
267         }
268         if (count == 0) {
269                 CERROR(DFID ": cannot find any valid components covering "
270                        "file extent "DEXT", mirror: %d\n",
271                        PFID(lu_object_fid(lov2lu(obj))), PEXT(ext),
272                        primary->lre_mirror_id);
273                 RETURN(-EIO);
274         }
275
276         count = 0;
277         lov_foreach_mirror_entry(obj, lre) {
278                 if (lre == primary)
279                         continue;
280
281                 lov_foreach_mirror_layout_entry(obj, lle, lre) {
282                         if (!lle->lle_valid)
283                                 continue;
284
285                         if (lu_extent_is_overlapped(ext, lle->lle_extent)) {
286                                 ++count;
287                                 break;
288                         }
289                 }
290         }
291
292         CDEBUG(D_VFSTRACE, DFID "there are %zd components to be staled to "
293                "modify file extent "DEXT", iot: %d\n",
294                PFID(lu_object_fid(lov2lu(obj))), count, PEXT(ext), io->ci_type);
295
296         io->ci_need_write_intent = count > 0;
297
298         RETURN(0);
299 }
300
301 static int lov_io_mirror_init(struct lov_io *lio, struct lov_object *obj,
302                                struct cl_io *io)
303 {
304         struct lov_layout_composite *comp = &obj->u.composite;
305         int index;
306         int i;
307         int result;
308         ENTRY;
309
310         if (!lov_is_flr(obj)) {
311                 LASSERT(comp->lo_preferred_mirror == 0);
312                 lio->lis_mirror_index = comp->lo_preferred_mirror;
313                 io->ci_ndelay = 0;
314                 RETURN(0);
315         }
316
317         /* transfer the layout version for verification */
318         if (io->ci_layout_version == 0)
319                 io->ci_layout_version = obj->lo_lsm->lsm_layout_gen;
320
321         /* find the corresponding mirror for designated mirror IO */
322         if (io->ci_designated_mirror > 0) {
323                 struct lov_mirror_entry *entry;
324
325                 LASSERT(!io->ci_ndelay);
326
327                 CDEBUG(D_LAYOUT, "designated I/O mirror state: %d\n",
328                       lov_flr_state(obj));
329
330                 if ((cl_io_is_trunc(io) || io->ci_type == CIT_WRITE) &&
331                     (io->ci_layout_version != obj->lo_lsm->lsm_layout_gen)) {
332                         /*
333                          * For resync I/O, the ci_layout_version was the layout
334                          * version when resync starts. If it doesn't match the
335                          * current object layout version, it means the layout
336                          * has been changed
337                          */
338                         RETURN(-ESTALE);
339                 }
340
341                 io->ci_layout_version |= LU_LAYOUT_RESYNC;
342
343                 index = 0;
344                 lio->lis_mirror_index = -1;
345                 lov_foreach_mirror_entry(obj, entry) {
346                         if (entry->lre_mirror_id ==
347                             io->ci_designated_mirror) {
348                                 lio->lis_mirror_index = index;
349                                 break;
350                         }
351
352                         index++;
353                 }
354
355                 RETURN(lio->lis_mirror_index < 0 ? -EINVAL : 0);
356         }
357
358         result = lov_io_mirror_write_intent(lio, obj, io);
359         if (result)
360                 RETURN(result);
361
362         if (io->ci_need_write_intent) {
363                 CDEBUG(D_VFSTRACE, DFID " need write intent for [%llu, %llu)\n",
364                        PFID(lu_object_fid(lov2lu(obj))),
365                        lio->lis_pos, lio->lis_endpos);
366
367                 if (cl_io_is_trunc(io)) {
368                         /**
369                          * for truncate, we uses [size, EOF) to judge whether
370                          * a write intent needs to be send, but we need to
371                          * restore the write extent to [0, size).
372                          */
373                         io->ci_write_intent.e_start = 0;
374                         io->ci_write_intent.e_end =
375                                         io->u.ci_setattr.sa_attr.lvb_size;
376                 }
377                 /* stop cl_io_init() loop */
378                 RETURN(1);
379         }
380
381         if (io->ci_ndelay_tried == 0 || /* first time to try */
382             /* reset the mirror index if layout has changed */
383             lio->lis_mirror_layout_gen != obj->lo_lsm->lsm_layout_gen) {
384                 lio->lis_mirror_layout_gen = obj->lo_lsm->lsm_layout_gen;
385                 index = lio->lis_mirror_index = comp->lo_preferred_mirror;
386         } else {
387                 index = lio->lis_mirror_index;
388                 LASSERT(index >= 0);
389
390                 /* move mirror index to the next one */
391                 index = (index + 1) % comp->lo_mirror_count;
392         }
393
394         for (i = 0; i < comp->lo_mirror_count; i++) {
395                 struct lu_extent ext = { .e_start = lio->lis_pos,
396                                          .e_end   = lio->lis_pos + 1 };
397                 struct lov_mirror_entry *lre;
398                 struct lov_layout_entry *lle;
399                 bool found = false;
400
401                 lre = &comp->lo_mirrors[(index + i) % comp->lo_mirror_count];
402                 if (!lre->lre_valid)
403                         continue;
404
405                 lov_foreach_mirror_layout_entry(obj, lle, lre) {
406                         if (!lle->lle_valid)
407                                 continue;
408
409                         if (lu_extent_is_overlapped(&ext, lle->lle_extent)) {
410                                 found = true;
411                                 break;
412                         }
413                 } /* each component of the mirror */
414                 if (found) {
415                         index = (index + i) % comp->lo_mirror_count;
416                         break;
417                 }
418         } /* each mirror */
419
420         if (i == comp->lo_mirror_count) {
421                 CERROR(DFID": failed to find a component covering "
422                        "I/O region at %llu\n",
423                        PFID(lu_object_fid(lov2lu(obj))), lio->lis_pos);
424
425                 dump_lsm(D_ERROR, obj->lo_lsm);
426
427                 RETURN(-EIO);
428         }
429
430         CDEBUG(D_VFSTRACE, DFID ": flr state: %d, move mirror from %d to %d, "
431                "have retried: %d, mirror count: %d\n",
432                PFID(lu_object_fid(lov2lu(obj))), lov_flr_state(obj),
433                lio->lis_mirror_index, index, io->ci_ndelay_tried,
434                comp->lo_mirror_count);
435
436         lio->lis_mirror_index = index;
437
438         /*
439          * FLR: if all mirrors have been tried once, most likely the network
440          * of this client has been partitioned. We should relinquish CPU for
441          * a while before trying again.
442          */
443         if (io->ci_ndelay && io->ci_ndelay_tried > 0 &&
444             (io->ci_ndelay_tried % comp->lo_mirror_count == 0)) {
445                 schedule_timeout_interruptible(cfs_time_seconds(1) / 100);
446                 if (signal_pending(current))
447                         RETURN(-EINTR);
448
449                 /**
450                  * we'd set ci_tried_all_mirrors to turn off fast mirror
451                  * switching for read after we've tried all mirrors several
452                  * rounds.
453                  */
454                 io->ci_tried_all_mirrors = io->ci_ndelay_tried %
455                                            (comp->lo_mirror_count * 4) == 0;
456         }
457         ++io->ci_ndelay_tried;
458
459         CDEBUG(D_VFSTRACE, "use %sdelayed RPC state for this IO\n",
460                io->ci_ndelay ? "non-" : "");
461
462         RETURN(0);
463 }
464
465 static int lov_io_slice_init(struct lov_io *lio,
466                              struct lov_object *obj, struct cl_io *io)
467 {
468         int index;
469         int result = 0;
470         ENTRY;
471
472         io->ci_result = 0;
473         lio->lis_object = obj;
474
475         LASSERT(obj->lo_lsm != NULL);
476
477         switch (io->ci_type) {
478         case CIT_READ:
479         case CIT_WRITE:
480                 lio->lis_pos = io->u.ci_rw.crw_pos;
481                 lio->lis_endpos = io->u.ci_rw.crw_pos + io->u.ci_rw.crw_count;
482                 lio->lis_io_endpos = lio->lis_endpos;
483                 if (cl_io_is_append(io)) {
484                         LASSERT(io->ci_type == CIT_WRITE);
485
486                         /*
487                          * If there is LOV EA hole, then we may cannot locate
488                          * the current file-tail exactly.
489                          */
490                         if (unlikely(obj->lo_lsm->lsm_entries[0]->lsme_pattern &
491                                      LOV_PATTERN_F_HOLE))
492                                 GOTO(out, result = -EIO);
493
494                         lio->lis_pos = 0;
495                         lio->lis_endpos = OBD_OBJECT_EOF;
496                 }
497                 break;
498
499         case CIT_SETATTR:
500                 if (cl_io_is_trunc(io))
501                         lio->lis_pos = io->u.ci_setattr.sa_attr.lvb_size;
502                 else
503                         lio->lis_pos = 0;
504                 lio->lis_endpos = OBD_OBJECT_EOF;
505                 break;
506
507         case CIT_DATA_VERSION:
508                 lio->lis_pos = 0;
509                 lio->lis_endpos = OBD_OBJECT_EOF;
510                 break;
511
512         case CIT_FAULT: {
513                 pgoff_t index = io->u.ci_fault.ft_index;
514
515                 lio->lis_pos = cl_offset(io->ci_obj, index);
516                 lio->lis_endpos = cl_offset(io->ci_obj, index + 1);
517                 break;
518         }
519
520         case CIT_FSYNC: {
521                 lio->lis_pos = io->u.ci_fsync.fi_start;
522                 lio->lis_endpos = io->u.ci_fsync.fi_end;
523                 break;
524         }
525
526         case CIT_LADVISE: {
527                 lio->lis_pos = io->u.ci_ladvise.li_start;
528                 lio->lis_endpos = io->u.ci_ladvise.li_end;
529                 break;
530         }
531
532         case CIT_GLIMPSE:
533                 lio->lis_pos = 0;
534                 lio->lis_endpos = OBD_OBJECT_EOF;
535
536                 if (lov_flr_state(obj) == LCM_FL_RDONLY &&
537                     !OBD_FAIL_CHECK(OBD_FAIL_FLR_GLIMPSE_IMMUTABLE))
538                         /* SoM is accurate, no need glimpse */
539                         GOTO(out, result = 1);
540                 break;
541
542         case CIT_MISC:
543                 lio->lis_pos = 0;
544                 lio->lis_endpos = OBD_OBJECT_EOF;
545                 break;
546
547         default:
548                 LBUG();
549         }
550
551         result = lov_io_mirror_init(lio, obj, io);
552         if (result)
553                 GOTO(out, result);
554
555         /* check if it needs to instantiate layout */
556         if (!(io->ci_type == CIT_WRITE || cl_io_is_mkwrite(io) ||
557               (cl_io_is_trunc(io) && io->u.ci_setattr.sa_attr.lvb_size > 0)))
558                 GOTO(out, result = 0);
559
560         /*
561          * for truncate, it only needs to instantiate the components
562          * before the truncated size.
563          */
564         if (cl_io_is_trunc(io)) {
565                 io->ci_write_intent.e_start = 0;
566                 /* for writes, e_end is endpos, the location of the file
567                  * pointer after the write is completed, so it is not accessed.
568                  * For truncate, 'end' is the size, and *is* acccessed.
569                  * In other words, writes are [start, end), but truncate is
570                  * [start, size], where both are included.  So add 1 to the
571                  * size when creating the write intent to account for this.
572                  */
573                 io->ci_write_intent.e_end =
574                         io->u.ci_setattr.sa_attr.lvb_size + 1;
575         } else {
576                 io->ci_write_intent.e_start = lio->lis_pos;
577                 io->ci_write_intent.e_end = lio->lis_endpos;
578         }
579
580         index = 0;
581         lov_foreach_io_layout(index, lio, &io->ci_write_intent) {
582                 if (!lsm_entry_inited(obj->lo_lsm, index)) {
583                         io->ci_need_write_intent = 1;
584                         break;
585                 }
586         }
587
588         if (io->ci_need_write_intent && io->ci_designated_mirror > 0) {
589                 /*
590                  * REINT_SYNC RPC has already tried to instantiate all of the
591                  * components involved, obviously it didn't succeed. Skip this
592                  * mirror for now. The server won't be able to figure out
593                  * which mirror it should instantiate components
594                  */
595                 CERROR(DFID": trying to instantiate components for designated "
596                        "I/O, file state: %d\n",
597                        PFID(lu_object_fid(lov2lu(obj))), lov_flr_state(obj));
598
599                 io->ci_need_write_intent = 0;
600                 GOTO(out, result = -EIO);
601         }
602
603         if (io->ci_need_write_intent)
604                 GOTO(out, result = 1);
605
606         EXIT;
607
608 out:
609         return result;
610 }
611
612 static void lov_io_fini(const struct lu_env *env, const struct cl_io_slice *ios)
613 {
614         struct lov_io *lio = cl2lov_io(env, ios);
615         struct lov_object *lov = cl2lov(ios->cis_obj);
616
617         ENTRY;
618
619         LASSERT(list_empty(&lio->lis_active));
620
621         while (!list_empty(&lio->lis_subios)) {
622                 struct lov_io_sub *sub = list_entry(lio->lis_subios.next,
623                                                     struct lov_io_sub,
624                                                     sub_list);
625
626                 list_del_init(&sub->sub_list);
627                 lio->lis_nr_subios--;
628
629                 lov_io_sub_fini(env, lio, sub);
630                 lov_sub_free(lio, sub);
631         }
632         LASSERT(lio->lis_nr_subios == 0);
633
634         LASSERT(atomic_read(&lov->lo_active_ios) > 0);
635         if (atomic_dec_and_test(&lov->lo_active_ios))
636                 wake_up_all(&lov->lo_waitq);
637         EXIT;
638 }
639
640 static void lov_io_sub_inherit(struct lov_io_sub *sub, struct lov_io *lio,
641                                loff_t start, loff_t end)
642 {
643         struct cl_io *io = &sub->sub_io;
644         struct lov_stripe_md *lsm = lio->lis_object->lo_lsm;
645         struct cl_io *parent = lio->lis_cl.cis_io;
646         int index = lov_comp_entry(sub->sub_subio_index);
647         int stripe = lov_comp_stripe(sub->sub_subio_index);
648
649         switch (io->ci_type) {
650         case CIT_SETATTR: {
651                 io->u.ci_setattr.sa_attr = parent->u.ci_setattr.sa_attr;
652                 io->u.ci_setattr.sa_attr_flags =
653                         parent->u.ci_setattr.sa_attr_flags;
654                 io->u.ci_setattr.sa_avalid = parent->u.ci_setattr.sa_avalid;
655                 io->u.ci_setattr.sa_xvalid = parent->u.ci_setattr.sa_xvalid;
656                 io->u.ci_setattr.sa_stripe_index = stripe;
657                 io->u.ci_setattr.sa_parent_fid =
658                                         parent->u.ci_setattr.sa_parent_fid;
659                 if (cl_io_is_trunc(io)) {
660                         loff_t new_size = parent->u.ci_setattr.sa_attr.lvb_size;
661
662                         new_size = lov_size_to_stripe(lsm, index, new_size,
663                                                       stripe);
664                         io->u.ci_setattr.sa_attr.lvb_size = new_size;
665                 }
666                 lov_lsm2layout(lsm, lsm->lsm_entries[index],
667                                &io->u.ci_setattr.sa_layout);
668                 break;
669         }
670         case CIT_DATA_VERSION: {
671                 io->u.ci_data_version.dv_data_version = 0;
672                 io->u.ci_data_version.dv_flags =
673                         parent->u.ci_data_version.dv_flags;
674                 break;
675         }
676         case CIT_FAULT: {
677                 struct cl_object *obj = parent->ci_obj;
678                 loff_t off = cl_offset(obj, parent->u.ci_fault.ft_index);
679
680                 io->u.ci_fault = parent->u.ci_fault;
681                 off = lov_size_to_stripe(lsm, index, off, stripe);
682                 io->u.ci_fault.ft_index = cl_index(obj, off);
683                 break;
684         }
685         case CIT_FSYNC: {
686                 io->u.ci_fsync.fi_start = start;
687                 io->u.ci_fsync.fi_end = end;
688                 io->u.ci_fsync.fi_fid = parent->u.ci_fsync.fi_fid;
689                 io->u.ci_fsync.fi_mode = parent->u.ci_fsync.fi_mode;
690                 break;
691         }
692         case CIT_READ:
693         case CIT_WRITE: {
694                 io->u.ci_wr.wr_sync = cl_io_is_sync_write(parent);
695                 io->ci_tried_all_mirrors = parent->ci_tried_all_mirrors;
696                 if (cl_io_is_append(parent)) {
697                         io->u.ci_wr.wr_append = 1;
698                 } else {
699                         io->u.ci_rw.crw_pos = start;
700                         io->u.ci_rw.crw_count = end - start;
701                 }
702                 break;
703         }
704         case CIT_LADVISE: {
705                 io->u.ci_ladvise.li_start = start;
706                 io->u.ci_ladvise.li_end = end;
707                 io->u.ci_ladvise.li_fid = parent->u.ci_ladvise.li_fid;
708                 io->u.ci_ladvise.li_advice = parent->u.ci_ladvise.li_advice;
709                 io->u.ci_ladvise.li_flags = parent->u.ci_ladvise.li_flags;
710                 break;
711         }
712         case CIT_GLIMPSE:
713         case CIT_MISC:
714         default:
715                 break;
716         }
717 }
718
719 static loff_t lov_offset_mod(loff_t val, int delta)
720 {
721         if (val != OBD_OBJECT_EOF)
722                 val += delta;
723         return val;
724 }
725
726 static int lov_io_iter_init(const struct lu_env *env,
727                             const struct cl_io_slice *ios)
728 {
729         struct lov_io *lio = cl2lov_io(env, ios);
730         struct lov_stripe_md *lsm = lio->lis_object->lo_lsm;
731         struct lov_io_sub *sub;
732         struct lu_extent ext;
733         int index;
734         int rc = 0;
735
736         ENTRY;
737
738         ext.e_start = lio->lis_pos;
739         ext.e_end = lio->lis_endpos;
740
741         lov_foreach_io_layout(index, lio, &ext) {
742                 struct lov_layout_entry *le = lov_entry(lio->lis_object, index);
743                 struct lov_layout_raid0 *r0 = &le->lle_raid0;
744                 u64 start;
745                 u64 end;
746                 int stripe;
747
748                 CDEBUG(D_VFSTRACE, "component[%d] flags %#x\n",
749                        index, lsm->lsm_entries[index]->lsme_flags);
750                 if (!lsm_entry_inited(lsm, index)) {
751                         /*
752                          * Read from uninitialized components should return
753                          * zero filled pages.
754                          */
755                         continue;
756                 }
757
758                 if (!le->lle_valid && !ios->cis_io->ci_designated_mirror) {
759                         CERROR("I/O to invalid component: %d, mirror: %d\n",
760                                index, lio->lis_mirror_index);
761                         RETURN(-EIO);
762                 }
763
764                 for (stripe = 0; stripe < r0->lo_nr; stripe++) {
765                         if (!lov_stripe_intersects(lsm, index, stripe,
766                                                    &ext, &start, &end))
767                                 continue;
768
769                         if (unlikely(!r0->lo_sub[stripe])) {
770                                 if (ios->cis_io->ci_type == CIT_READ ||
771                                     ios->cis_io->ci_type == CIT_WRITE ||
772                                     ios->cis_io->ci_type == CIT_FAULT)
773                                         RETURN(-EIO);
774
775                                 continue;
776                         }
777
778                         end = lov_offset_mod(end, 1);
779                         sub = lov_sub_get(env, lio,
780                                           lov_comp_index(index, stripe));
781                         if (IS_ERR(sub)) {
782                                 rc = PTR_ERR(sub);
783                                 break;
784                         }
785
786                         lov_io_sub_inherit(sub, lio, start, end);
787                         rc = cl_io_iter_init(sub->sub_env, &sub->sub_io);
788                         if (rc != 0)
789                                 cl_io_iter_fini(sub->sub_env, &sub->sub_io);
790                         if (rc != 0)
791                                 break;
792
793                         CDEBUG(D_VFSTRACE, "shrink: %d [%llu, %llu)\n",
794                                stripe, start, end);
795
796                         list_add_tail(&sub->sub_linkage, &lio->lis_active);
797                 }
798                 if (rc != 0)
799                         break;
800         }
801         RETURN(rc);
802 }
803
804 static int lov_io_rw_iter_init(const struct lu_env *env,
805                                const struct cl_io_slice *ios)
806 {
807         struct lov_io *lio = cl2lov_io(env, ios);
808         struct cl_io *io = ios->cis_io;
809         struct lov_stripe_md_entry *lse;
810         loff_t start = io->u.ci_rw.crw_pos;
811         loff_t next;
812         int index;
813
814         LASSERT(io->ci_type == CIT_READ || io->ci_type == CIT_WRITE);
815         ENTRY;
816
817         if (cl_io_is_append(io))
818                 RETURN(lov_io_iter_init(env, ios));
819
820         index = lov_io_layout_at(lio, io->u.ci_rw.crw_pos);
821         if (index < 0) { /* non-existing layout component */
822                 if (io->ci_type == CIT_READ) {
823                         /*
824                          * TODO: it needs to detect the next component and
825                          * then set the next pos
826                          */
827                         io->ci_continue = 0;
828
829                         RETURN(lov_io_iter_init(env, ios));
830                 }
831
832                 RETURN(-ENODATA);
833         }
834
835         if (!lov_entry(lio->lis_object, index)->lle_valid &&
836             !io->ci_designated_mirror)
837                 RETURN(io->ci_type == CIT_READ ? -EAGAIN : -EIO);
838
839         lse = lov_lse(lio->lis_object, index);
840
841         next = MAX_LFS_FILESIZE;
842         if (lse->lsme_stripe_count > 1) {
843                 unsigned long ssize = lse->lsme_stripe_size;
844
845                 lov_do_div64(start, ssize);
846                 next = (start + 1) * ssize;
847                 if (next <= start * ssize)
848                         next = MAX_LFS_FILESIZE;
849         }
850
851         LASSERTF(io->u.ci_rw.crw_pos >= lse->lsme_extent.e_start,
852                  "pos %lld, [%lld, %lld)\n", io->u.ci_rw.crw_pos,
853                  lse->lsme_extent.e_start, lse->lsme_extent.e_end);
854         next = min_t(__u64, next, lse->lsme_extent.e_end);
855         next = min_t(loff_t, next, lio->lis_io_endpos);
856
857         io->ci_continue = next < lio->lis_io_endpos;
858         io->u.ci_rw.crw_count = next - io->u.ci_rw.crw_pos;
859         lio->lis_pos    = io->u.ci_rw.crw_pos;
860         lio->lis_endpos = io->u.ci_rw.crw_pos + io->u.ci_rw.crw_count;
861         CDEBUG(D_VFSTRACE,
862                "stripe: %llu chunk: [%llu, %llu) %llu, %zd\n",
863                (__u64)start, lio->lis_pos, lio->lis_endpos,
864                (__u64)lio->lis_io_endpos, io->u.ci_rw.crw_count);
865
866         /*
867          * XXX The following call should be optimized: we know, that
868          * [lio->lis_pos, lio->lis_endpos) intersects with exactly one stripe.
869          */
870         RETURN(lov_io_iter_init(env, ios));
871 }
872
873 static int lov_io_setattr_iter_init(const struct lu_env *env,
874                                     const struct cl_io_slice *ios)
875 {
876         struct lov_io *lio = cl2lov_io(env, ios);
877         struct cl_io *io = ios->cis_io;
878         int index;
879         ENTRY;
880
881         if (cl_io_is_trunc(io) && lio->lis_pos > 0) {
882                 index = lov_io_layout_at(lio, lio->lis_pos - 1);
883                 /* no entry found for such offset */
884                 if (index < 0)
885                         RETURN(io->ci_result = -ENODATA);
886         }
887
888         RETURN(lov_io_iter_init(env, ios));
889 }
890
891 static int lov_io_call(const struct lu_env *env, struct lov_io *lio,
892                        int (*iofunc)(const struct lu_env *, struct cl_io *))
893 {
894         struct cl_io *parent = lio->lis_cl.cis_io;
895         struct lov_io_sub *sub;
896         int rc = 0;
897
898         ENTRY;
899         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
900                 rc = iofunc(sub->sub_env, &sub->sub_io);
901                 if (rc)
902                         break;
903
904                 if (parent->ci_result == 0)
905                         parent->ci_result = sub->sub_io.ci_result;
906         }
907         RETURN(rc);
908 }
909
910 static int lov_io_lock(const struct lu_env *env, const struct cl_io_slice *ios)
911 {
912         ENTRY;
913         RETURN(lov_io_call(env, cl2lov_io(env, ios), cl_io_lock));
914 }
915
916 static int lov_io_start(const struct lu_env *env, const struct cl_io_slice *ios)
917 {
918         ENTRY;
919         RETURN(lov_io_call(env, cl2lov_io(env, ios), cl_io_start));
920 }
921
922 static int lov_io_end_wrapper(const struct lu_env *env, struct cl_io *io)
923 {
924         ENTRY;
925         /*
926          * It's possible that lov_io_start() wasn't called against this
927          * sub-io, either because previous sub-io failed, or upper layer
928          * completed IO.
929          */
930         if (io->ci_state == CIS_IO_GOING)
931                 cl_io_end(env, io);
932         else
933                 io->ci_state = CIS_IO_FINISHED;
934         RETURN(0);
935 }
936
937 static int lov_io_iter_fini_wrapper(const struct lu_env *env, struct cl_io *io)
938 {
939         cl_io_iter_fini(env, io);
940         RETURN(0);
941 }
942
943 static int lov_io_unlock_wrapper(const struct lu_env *env, struct cl_io *io)
944 {
945         cl_io_unlock(env, io);
946         RETURN(0);
947 }
948
949 static void lov_io_end(const struct lu_env *env, const struct cl_io_slice *ios)
950 {
951         int rc;
952
953         rc = lov_io_call(env, cl2lov_io(env, ios), lov_io_end_wrapper);
954         LASSERT(rc == 0);
955 }
956
957 static void
958 lov_io_data_version_end(const struct lu_env *env, const struct cl_io_slice *ios)
959 {
960         struct lov_io *lio = cl2lov_io(env, ios);
961         struct cl_io *parent = lio->lis_cl.cis_io;
962         struct cl_data_version_io *pdv = &parent->u.ci_data_version;
963         struct lov_io_sub *sub;
964
965         ENTRY;
966         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
967                 struct cl_data_version_io *sdv = &sub->sub_io.u.ci_data_version;
968
969                 lov_io_end_wrapper(sub->sub_env, &sub->sub_io);
970
971                 pdv->dv_data_version += sdv->dv_data_version;
972                 if (pdv->dv_layout_version > sdv->dv_layout_version)
973                         pdv->dv_layout_version = sdv->dv_layout_version;
974
975                 if (parent->ci_result == 0)
976                         parent->ci_result = sub->sub_io.ci_result;
977         }
978
979         EXIT;
980 }
981
982 static void lov_io_iter_fini(const struct lu_env *env,
983                              const struct cl_io_slice *ios)
984 {
985         struct lov_io *lio = cl2lov_io(env, ios);
986         int rc;
987
988         ENTRY;
989         rc = lov_io_call(env, lio, lov_io_iter_fini_wrapper);
990         LASSERT(rc == 0);
991         while (!list_empty(&lio->lis_active))
992                 list_del_init(lio->lis_active.next);
993         EXIT;
994 }
995
996 static void lov_io_unlock(const struct lu_env *env,
997                           const struct cl_io_slice *ios)
998 {
999         int rc;
1000
1001         ENTRY;
1002         rc = lov_io_call(env, cl2lov_io(env, ios), lov_io_unlock_wrapper);
1003         LASSERT(rc == 0);
1004         EXIT;
1005 }
1006
1007 static int lov_io_read_ahead(const struct lu_env *env,
1008                              const struct cl_io_slice *ios,
1009                              pgoff_t start, struct cl_read_ahead *ra)
1010 {
1011         struct lov_io           *lio = cl2lov_io(env, ios);
1012         struct lov_object       *loo = lio->lis_object;
1013         struct cl_object        *obj = lov2cl(loo);
1014         struct lov_layout_raid0 *r0;
1015         struct lov_io_sub       *sub;
1016         loff_t                   offset;
1017         loff_t                   suboff;
1018         pgoff_t                  ra_end;
1019         unsigned int             pps; /* pages per stripe */
1020         int                      stripe;
1021         int                      index;
1022         int                      rc;
1023         ENTRY;
1024
1025         offset = cl_offset(obj, start);
1026         index = lov_io_layout_at(lio, offset);
1027         if (index < 0 || !lsm_entry_inited(loo->lo_lsm, index))
1028                 RETURN(-ENODATA);
1029
1030         /* avoid readahead to expand to stale components */
1031         if (!lov_entry(loo, index)->lle_valid)
1032                 RETURN(-EIO);
1033
1034         stripe = lov_stripe_number(loo->lo_lsm, index, offset);
1035
1036         r0 = lov_r0(loo, index);
1037         if (unlikely(!r0->lo_sub[stripe]))
1038                 RETURN(-EIO);
1039
1040         sub = lov_sub_get(env, lio, lov_comp_index(index, stripe));
1041         if (IS_ERR(sub))
1042                 RETURN(PTR_ERR(sub));
1043
1044         lov_stripe_offset(loo->lo_lsm, index, offset, stripe, &suboff);
1045         rc = cl_io_read_ahead(sub->sub_env, &sub->sub_io,
1046                               cl_index(lovsub2cl(r0->lo_sub[stripe]), suboff),
1047                               ra);
1048
1049         CDEBUG(D_READA, DFID " cra_end = %lu, stripes = %d, rc = %d\n",
1050                PFID(lu_object_fid(lov2lu(loo))), ra->cra_end_idx,
1051                     r0->lo_nr, rc);
1052         if (rc != 0)
1053                 RETURN(rc);
1054
1055         /**
1056          * Adjust the stripe index by layout of comp. ra->cra_end is the
1057          * maximum page index covered by an underlying DLM lock.
1058          * This function converts cra_end from stripe level to file level, and
1059          * make sure it's not beyond stripe and component boundary.
1060          */
1061
1062         /* cra_end is stripe level, convert it into file level */
1063         ra_end = ra->cra_end_idx;
1064         if (ra_end != CL_PAGE_EOF)
1065                 ra->cra_end_idx = lov_stripe_pgoff(loo->lo_lsm, index,
1066                                                    ra_end, stripe);
1067
1068         /* boundary of current component */
1069         ra_end = cl_index(obj, (loff_t)lov_io_extent(lio, index)->e_end);
1070         if (ra_end != CL_PAGE_EOF && ra->cra_end_idx >= ra_end)
1071                 ra->cra_end_idx = ra_end - 1;
1072
1073         if (r0->lo_nr == 1) /* single stripe file */
1074                 RETURN(0);
1075
1076         pps = lov_lse(loo, index)->lsme_stripe_size >> PAGE_SHIFT;
1077
1078         CDEBUG(D_READA, DFID " max_index = %lu, pps = %u, index = %d, "
1079                "stripe_size = %u, stripe no = %u, start index = %lu\n",
1080                PFID(lu_object_fid(lov2lu(loo))), ra->cra_end_idx, pps, index,
1081                lov_lse(loo, index)->lsme_stripe_size, stripe, start);
1082
1083         /* never exceed the end of the stripe */
1084         ra->cra_end_idx = min_t(pgoff_t, ra->cra_end_idx,
1085                                 start + pps - start % pps - 1);
1086         RETURN(0);
1087 }
1088
1089 /**
1090  * lov implementation of cl_operations::cio_submit() method. It takes a list
1091  * of pages in \a queue, splits it into per-stripe sub-lists, invokes
1092  * cl_io_submit() on underlying devices to submit sub-lists, and then splices
1093  * everything back.
1094  *
1095  * Major complication of this function is a need to handle memory cleansing:
1096  * cl_io_submit() is called to write out pages as a part of VM memory
1097  * reclamation, and hence it may not fail due to memory shortages (system
1098  * dead-locks otherwise). To deal with this, some resources (sub-lists,
1099  * sub-environment, etc.) are allocated per-device on "startup" (i.e., in a
1100  * not-memory cleansing context), and in case of memory shortage, these
1101  * pre-allocated resources are used by lov_io_submit() under
1102  * lov_device::ld_mutex mutex.
1103  */
1104 static int lov_io_submit(const struct lu_env *env,
1105                          const struct cl_io_slice *ios,
1106                          enum cl_req_type crt, struct cl_2queue *queue)
1107 {
1108         struct cl_page_list     *qin = &queue->c2_qin;
1109         struct lov_io           *lio = cl2lov_io(env, ios);
1110         struct lov_io_sub       *sub;
1111         struct cl_page_list     *plist = &lov_env_info(env)->lti_plist;
1112         struct cl_page          *page;
1113         struct cl_page          *tmp;
1114         int index;
1115         int rc = 0;
1116         ENTRY;
1117
1118         cl_page_list_init(plist);
1119         while (qin->pl_nr > 0) {
1120                 struct cl_2queue  *cl2q = &lov_env_info(env)->lti_cl2q;
1121
1122                 page = cl_page_list_first(qin);
1123                 if (lov_page_is_empty(page)) {
1124                         cl_page_list_move(&queue->c2_qout, qin, page);
1125
1126                         /*
1127                          * it could only be mirror read to get here therefore
1128                          * the pages will be transient. We don't care about
1129                          * the return code of cl_page_prep() at all.
1130                          */
1131                         (void) cl_page_prep(env, ios->cis_io, page, crt);
1132                         cl_page_completion(env, page, crt, 0);
1133                         continue;
1134                 }
1135
1136                 cl_2queue_init(cl2q);
1137                 cl_page_list_move(&cl2q->c2_qin, qin, page);
1138
1139                 index = page->cp_lov_index;
1140                 cl_page_list_for_each_safe(page, tmp, qin) {
1141                         /* this page is not on this stripe */
1142                         if (index != page->cp_lov_index)
1143                                 continue;
1144
1145                         cl_page_list_move(&cl2q->c2_qin, qin, page);
1146                 }
1147
1148                 sub = lov_sub_get(env, lio, index);
1149                 if (!IS_ERR(sub)) {
1150                         rc = cl_io_submit_rw(sub->sub_env, &sub->sub_io,
1151                                              crt, cl2q);
1152                 } else {
1153                         rc = PTR_ERR(sub);
1154                 }
1155
1156                 cl_page_list_splice(&cl2q->c2_qin, plist);
1157                 cl_page_list_splice(&cl2q->c2_qout, &queue->c2_qout);
1158                 cl_2queue_fini(env, cl2q);
1159
1160                 if (rc != 0)
1161                         break;
1162         }
1163
1164         cl_page_list_splice(plist, qin);
1165         cl_page_list_fini(env, plist);
1166
1167         RETURN(rc);
1168 }
1169
1170 static int lov_io_commit_async(const struct lu_env *env,
1171                                const struct cl_io_slice *ios,
1172                                struct cl_page_list *queue, int from, int to,
1173                                cl_commit_cbt cb)
1174 {
1175         struct cl_page_list *plist = &lov_env_info(env)->lti_plist;
1176         struct lov_io *lio = cl2lov_io(env, ios);
1177         struct lov_io_sub *sub;
1178         struct cl_page *page;
1179         int rc = 0;
1180         ENTRY;
1181
1182         if (lio->lis_nr_subios == 1) {
1183                 int idx = lio->lis_single_subio_index;
1184
1185                 LASSERT(!lov_page_is_empty(cl_page_list_first(queue)));
1186
1187                 sub = lov_sub_get(env, lio, idx);
1188                 LASSERT(!IS_ERR(sub));
1189                 LASSERT(sub == &lio->lis_single_subio);
1190                 rc = cl_io_commit_async(sub->sub_env, &sub->sub_io, queue,
1191                                         from, to, cb);
1192                 RETURN(rc);
1193         }
1194
1195         cl_page_list_init(plist);
1196         while (queue->pl_nr > 0) {
1197                 int stripe_to = to;
1198                 int index;
1199
1200                 LASSERT(plist->pl_nr == 0);
1201                 page = cl_page_list_first(queue);
1202                 LASSERT(!lov_page_is_empty(page));
1203
1204                 cl_page_list_move(plist, queue, page);
1205
1206                 index = page->cp_lov_index;
1207                 while (queue->pl_nr > 0) {
1208                         page = cl_page_list_first(queue);
1209                         if (index != page->cp_lov_index)
1210                                 break;
1211
1212                         cl_page_list_move(plist, queue, page);
1213                 }
1214
1215                 if (queue->pl_nr > 0) /* still has more pages */
1216                         stripe_to = PAGE_SIZE;
1217
1218                 sub = lov_sub_get(env, lio, index);
1219                 if (!IS_ERR(sub)) {
1220                         rc = cl_io_commit_async(sub->sub_env, &sub->sub_io,
1221                                                 plist, from, stripe_to, cb);
1222                 } else {
1223                         rc = PTR_ERR(sub);
1224                         break;
1225                 }
1226
1227                 if (plist->pl_nr > 0) /* short write */
1228                         break;
1229
1230                 from = 0;
1231         }
1232
1233         /* for error case, add the page back into the qin list */
1234         LASSERT(ergo(rc == 0, plist->pl_nr == 0));
1235         while (plist->pl_nr > 0) {
1236                 /* error occurred, add the uncommitted pages back into queue */
1237                 page = cl_page_list_last(plist);
1238                 cl_page_list_move_head(queue, plist, page);
1239         }
1240
1241         RETURN(rc);
1242 }
1243
1244 static int lov_io_fault_start(const struct lu_env *env,
1245                               const struct cl_io_slice *ios)
1246 {
1247         struct cl_fault_io *fio;
1248         struct lov_io      *lio;
1249         struct lov_io_sub  *sub;
1250
1251         ENTRY;
1252
1253         fio = &ios->cis_io->u.ci_fault;
1254         lio = cl2lov_io(env, ios);
1255         sub = lov_sub_get(env, lio, fio->ft_page->cp_lov_index);
1256         sub->sub_io.u.ci_fault.ft_nob = fio->ft_nob;
1257
1258         RETURN(lov_io_start(env, ios));
1259 }
1260
1261 static void lov_io_fsync_end(const struct lu_env *env,
1262                              const struct cl_io_slice *ios)
1263 {
1264         struct lov_io *lio = cl2lov_io(env, ios);
1265         struct lov_io_sub *sub;
1266         unsigned int *written = &ios->cis_io->u.ci_fsync.fi_nr_written;
1267         ENTRY;
1268
1269         *written = 0;
1270         list_for_each_entry(sub, &lio->lis_active, sub_linkage) {
1271                 struct cl_io *subio = &sub->sub_io;
1272
1273                 lov_io_end_wrapper(sub->sub_env, subio);
1274
1275                 if (subio->ci_result == 0)
1276                         *written += subio->u.ci_fsync.fi_nr_written;
1277         }
1278         RETURN_EXIT;
1279 }
1280
1281 static const struct cl_io_operations lov_io_ops = {
1282         .op = {
1283                 [CIT_READ] = {
1284                         .cio_fini      = lov_io_fini,
1285                         .cio_iter_init = lov_io_rw_iter_init,
1286                         .cio_iter_fini = lov_io_iter_fini,
1287                         .cio_lock      = lov_io_lock,
1288                         .cio_unlock    = lov_io_unlock,
1289                         .cio_start     = lov_io_start,
1290                         .cio_end       = lov_io_end
1291                 },
1292                 [CIT_WRITE] = {
1293                         .cio_fini      = lov_io_fini,
1294                         .cio_iter_init = lov_io_rw_iter_init,
1295                         .cio_iter_fini = lov_io_iter_fini,
1296                         .cio_lock      = lov_io_lock,
1297                         .cio_unlock    = lov_io_unlock,
1298                         .cio_start     = lov_io_start,
1299                         .cio_end       = lov_io_end
1300                 },
1301                 [CIT_SETATTR] = {
1302                         .cio_fini      = lov_io_fini,
1303                         .cio_iter_init = lov_io_setattr_iter_init,
1304                         .cio_iter_fini = lov_io_iter_fini,
1305                         .cio_lock      = lov_io_lock,
1306                         .cio_unlock    = lov_io_unlock,
1307                         .cio_start     = lov_io_start,
1308                         .cio_end       = lov_io_end
1309                 },
1310                 [CIT_DATA_VERSION] = {
1311                         .cio_fini       = lov_io_fini,
1312                         .cio_iter_init  = lov_io_iter_init,
1313                         .cio_iter_fini  = lov_io_iter_fini,
1314                         .cio_lock       = lov_io_lock,
1315                         .cio_unlock     = lov_io_unlock,
1316                         .cio_start      = lov_io_start,
1317                         .cio_end        = lov_io_data_version_end,
1318                 },
1319                 [CIT_FAULT] = {
1320                         .cio_fini      = lov_io_fini,
1321                         .cio_iter_init = lov_io_iter_init,
1322                         .cio_iter_fini = lov_io_iter_fini,
1323                         .cio_lock      = lov_io_lock,
1324                         .cio_unlock    = lov_io_unlock,
1325                         .cio_start     = lov_io_fault_start,
1326                         .cio_end       = lov_io_end
1327                 },
1328                 [CIT_FSYNC] = {
1329                         .cio_fini      = lov_io_fini,
1330                         .cio_iter_init = lov_io_iter_init,
1331                         .cio_iter_fini = lov_io_iter_fini,
1332                         .cio_lock      = lov_io_lock,
1333                         .cio_unlock    = lov_io_unlock,
1334                         .cio_start     = lov_io_start,
1335                         .cio_end       = lov_io_fsync_end
1336                 },
1337                 [CIT_LADVISE] = {
1338                         .cio_fini      = lov_io_fini,
1339                         .cio_iter_init = lov_io_iter_init,
1340                         .cio_iter_fini = lov_io_iter_fini,
1341                         .cio_lock      = lov_io_lock,
1342                         .cio_unlock    = lov_io_unlock,
1343                         .cio_start     = lov_io_start,
1344                         .cio_end       = lov_io_end
1345                 },
1346                 [CIT_GLIMPSE] = {
1347                         .cio_fini      = lov_io_fini,
1348                 },
1349                 [CIT_MISC] = {
1350                         .cio_fini      = lov_io_fini
1351                 }
1352         },
1353         .cio_read_ahead                = lov_io_read_ahead,
1354         .cio_submit                    = lov_io_submit,
1355         .cio_commit_async              = lov_io_commit_async,
1356 };
1357
1358 /*****************************************************************************
1359  *
1360  * Empty lov io operations.
1361  *
1362  */
1363
1364 static void lov_empty_io_fini(const struct lu_env *env,
1365                               const struct cl_io_slice *ios)
1366 {
1367         struct lov_object *lov = cl2lov(ios->cis_obj);
1368         ENTRY;
1369
1370         if (atomic_dec_and_test(&lov->lo_active_ios))
1371                 wake_up_all(&lov->lo_waitq);
1372         EXIT;
1373 }
1374
1375 static int lov_empty_io_submit(const struct lu_env *env,
1376                                const struct cl_io_slice *ios,
1377                                enum cl_req_type crt, struct cl_2queue *queue)
1378 {
1379         return -EBADF;
1380 }
1381
1382 static void lov_empty_impossible(const struct lu_env *env,
1383                                  struct cl_io_slice *ios)
1384 {
1385         LBUG();
1386 }
1387
1388 #define LOV_EMPTY_IMPOSSIBLE ((void *)lov_empty_impossible)
1389
1390 /**
1391  * An io operation vector for files without stripes.
1392  */
1393 static const struct cl_io_operations lov_empty_io_ops = {
1394         .op = {
1395                 [CIT_READ] = {
1396                         .cio_fini       = lov_empty_io_fini,
1397 #if 0
1398                         .cio_iter_init  = LOV_EMPTY_IMPOSSIBLE,
1399                         .cio_lock       = LOV_EMPTY_IMPOSSIBLE,
1400                         .cio_start      = LOV_EMPTY_IMPOSSIBLE,
1401                         .cio_end        = LOV_EMPTY_IMPOSSIBLE
1402 #endif
1403                 },
1404                 [CIT_WRITE] = {
1405                         .cio_fini      = lov_empty_io_fini,
1406                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
1407                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
1408                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
1409                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
1410                 },
1411                 [CIT_SETATTR] = {
1412                         .cio_fini      = lov_empty_io_fini,
1413                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
1414                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
1415                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
1416                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
1417                 },
1418                 [CIT_FAULT] = {
1419                         .cio_fini      = lov_empty_io_fini,
1420                         .cio_iter_init = LOV_EMPTY_IMPOSSIBLE,
1421                         .cio_lock      = LOV_EMPTY_IMPOSSIBLE,
1422                         .cio_start     = LOV_EMPTY_IMPOSSIBLE,
1423                         .cio_end       = LOV_EMPTY_IMPOSSIBLE
1424                 },
1425                 [CIT_FSYNC] = {
1426                         .cio_fini      = lov_empty_io_fini
1427                 },
1428                 [CIT_LADVISE] = {
1429                         .cio_fini   = lov_empty_io_fini
1430                 },
1431                 [CIT_GLIMPSE] = {
1432                         .cio_fini      = lov_empty_io_fini
1433                 },
1434                 [CIT_MISC] = {
1435                         .cio_fini      = lov_empty_io_fini
1436                 }
1437         },
1438         .cio_submit                    = lov_empty_io_submit,
1439         .cio_commit_async              = LOV_EMPTY_IMPOSSIBLE
1440 };
1441
1442 int lov_io_init_composite(const struct lu_env *env, struct cl_object *obj,
1443                           struct cl_io *io)
1444 {
1445         struct lov_io *lio = lov_env_io(env);
1446         struct lov_object *lov = cl2lov(obj);
1447         int result;
1448
1449         ENTRY;
1450
1451         INIT_LIST_HEAD(&lio->lis_active);
1452         result = lov_io_slice_init(lio, lov, io);
1453         if (result)
1454                 GOTO(out, result);
1455
1456         result = lov_io_subio_init(env, lio, io);
1457         if (!result) {
1458                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_io_ops);
1459                 atomic_inc(&lov->lo_active_ios);
1460         }
1461         EXIT;
1462 out:
1463         io->ci_result = result < 0 ? result : 0;
1464         return result;
1465 }
1466
1467 int lov_io_init_empty(const struct lu_env *env, struct cl_object *obj,
1468                       struct cl_io *io)
1469 {
1470         struct lov_object *lov = cl2lov(obj);
1471         struct lov_io *lio = lov_env_io(env);
1472         int result;
1473         ENTRY;
1474
1475         lio->lis_object = lov;
1476         switch (io->ci_type) {
1477         default:
1478                 LBUG();
1479         case CIT_MISC:
1480         case CIT_GLIMPSE:
1481         case CIT_READ:
1482                 result = 0;
1483                 break;
1484         case CIT_FSYNC:
1485         case CIT_LADVISE:
1486         case CIT_SETATTR:
1487         case CIT_DATA_VERSION:
1488                 result = +1;
1489                 break;
1490         case CIT_WRITE:
1491                 result = -EBADF;
1492                 break;
1493         case CIT_FAULT:
1494                 result = -EFAULT;
1495                 CERROR("Page fault on a file without stripes: "DFID"\n",
1496                        PFID(lu_object_fid(&obj->co_lu)));
1497                 break;
1498         }
1499         if (result == 0) {
1500                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_empty_io_ops);
1501                 atomic_inc(&lov->lo_active_ios);
1502         }
1503
1504         io->ci_result = result < 0 ? result : 0;
1505         RETURN(result);
1506 }
1507
1508 int lov_io_init_released(const struct lu_env *env, struct cl_object *obj,
1509                         struct cl_io *io)
1510 {
1511         struct lov_object *lov = cl2lov(obj);
1512         struct lov_io *lio = lov_env_io(env);
1513         int result;
1514         ENTRY;
1515
1516         LASSERT(lov->lo_lsm != NULL);
1517         lio->lis_object = lov;
1518
1519         switch (io->ci_type) {
1520         default:
1521                 LASSERTF(0, "invalid type %d\n", io->ci_type);
1522                 result = -EOPNOTSUPP;
1523                 break;
1524         case CIT_GLIMPSE:
1525         case CIT_MISC:
1526         case CIT_FSYNC:
1527         case CIT_LADVISE:
1528         case CIT_DATA_VERSION:
1529                 result = 1;
1530                 break;
1531         case CIT_SETATTR:
1532                 /*
1533                  * the truncate to 0 is managed by MDT:
1534                  * - in open, for open O_TRUNC
1535                  * - in setattr, for truncate
1536                  */
1537                 /* the truncate is for size > 0 so triggers a restore */
1538                 if (cl_io_is_trunc(io)) {
1539                         io->ci_restore_needed = 1;
1540                         result = -ENODATA;
1541                 } else
1542                         result = 1;
1543                 break;
1544         case CIT_READ:
1545         case CIT_WRITE:
1546         case CIT_FAULT:
1547                 io->ci_restore_needed = 1;
1548                 result = -ENODATA;
1549                 break;
1550         }
1551
1552         if (result == 0) {
1553                 cl_io_slice_add(io, &lio->lis_cl, obj, &lov_empty_io_ops);
1554                 atomic_inc(&lov->lo_active_ios);
1555         }
1556
1557         io->ci_result = result < 0 ? result : 0;
1558         RETURN(result);
1559 }
1560
1561 /**
1562  * Return the index in composite:lo_entries by the file offset
1563  */
1564 int lov_io_layout_at(struct lov_io *lio, __u64 offset)
1565 {
1566         struct lov_object *lov = lio->lis_object;
1567         struct lov_layout_composite *comp = &lov->u.composite;
1568         int start_index = 0;
1569         int end_index = comp->lo_entry_count - 1;
1570         int i;
1571
1572         LASSERT(lov->lo_type == LLT_COMP);
1573
1574         /* This is actual file offset so nothing can cover eof. */
1575         if (offset == LUSTRE_EOF)
1576                 return -1;
1577
1578         if (lov_is_flr(lov)) {
1579                 struct lov_mirror_entry *lre;
1580
1581                 LASSERT(lio->lis_mirror_index >= 0);
1582
1583                 lre = &comp->lo_mirrors[lio->lis_mirror_index];
1584                 start_index = lre->lre_start;
1585                 end_index = lre->lre_end;
1586         }
1587
1588         for (i = start_index; i <= end_index; i++) {
1589                 struct lov_layout_entry *lle = lov_entry(lov, i);
1590
1591                 if ((offset >= lle->lle_extent->e_start &&
1592                      offset < lle->lle_extent->e_end) ||
1593                     (offset == OBD_OBJECT_EOF &&
1594                      lle->lle_extent->e_end == OBD_OBJECT_EOF))
1595                         return i;
1596         }
1597
1598         return -1;
1599 }
1600
1601 /** @} lov */