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