Whamcloud - gitweb
LU-3591 lfsck: repair unmatched MDT-OST objects pairs
[fs/lustre-release.git] / lustre / lfsck / lfsck_layout.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,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2013, Intel Corporation.
24  */
25 /*
26  * lustre/lfsck/lfsck_layout.c
27  *
28  * Author: Fan, Yong <fan.yong@intel.com>
29  */
30
31 #ifndef EXPORT_SYMTAB
32 # define EXPORT_SYMTAB
33 #endif
34 #define DEBUG_SUBSYSTEM S_LFSCK
35
36 #include <linux/bitops.h>
37
38 #include <lustre/lustre_idl.h>
39 #include <lu_object.h>
40 #include <dt_object.h>
41 #include <lustre_linkea.h>
42 #include <lustre_fid.h>
43 #include <lustre_lib.h>
44 #include <lustre_net.h>
45 #include <lustre/lustre_user.h>
46 #include <md_object.h>
47 #include <obd_class.h>
48
49 #include "lfsck_internal.h"
50
51 #define LFSCK_LAYOUT_MAGIC              0xB173AE14
52
53 static const char lfsck_layout_name[] = "lfsck_layout";
54
55 struct lfsck_layout_seq {
56         struct list_head         lls_list;
57         __u64                    lls_seq;
58         __u64                    lls_lastid;
59         __u64                    lls_lastid_known;
60         struct dt_object        *lls_lastid_obj;
61         unsigned int             lls_dirty:1;
62 };
63
64 struct lfsck_layout_slave_target {
65         /* link into lfsck_layout_slave_data::llsd_master_list. */
66         struct list_head        llst_list;
67         __u64                   llst_gen;
68         atomic_t                llst_ref;
69         __u32                   llst_index;
70 };
71
72 struct lfsck_layout_slave_data {
73         /* list for lfsck_layout_seq */
74         struct list_head         llsd_seq_list;
75
76         /* list for the masters involve layout verification. */
77         struct list_head         llsd_master_list;
78         spinlock_t               llsd_lock;
79         __u64                    llsd_touch_gen;
80 };
81
82 struct lfsck_layout_object {
83         struct dt_object        *llo_obj;
84         struct lu_attr           llo_attr;
85         atomic_t                 llo_ref;
86         __u16                    llo_gen;
87 };
88
89 struct lfsck_layout_req {
90         struct list_head                 llr_list;
91         struct lfsck_layout_object      *llr_parent;
92         struct dt_object                *llr_child;
93         __u32                            llr_ost_idx;
94         __u32                            llr_lov_idx; /* offset in LOV EA */
95 };
96
97 struct lfsck_layout_master_data {
98         spinlock_t              llmd_lock;
99         struct list_head        llmd_req_list;
100
101         /* list for the ost targets involve layout verification. */
102         struct list_head        llmd_ost_list;
103
104         /* list for the ost targets in phase1 scanning. */
105         struct list_head        llmd_ost_phase1_list;
106
107         /* list for the ost targets in phase1 scanning. */
108         struct list_head        llmd_ost_phase2_list;
109
110         /* list for the mdt targets involve layout verification. */
111         struct list_head        llmd_mdt_list;
112
113         /* list for the mdt targets in phase1 scanning. */
114         struct list_head        llmd_mdt_phase1_list;
115
116         /* list for the mdt targets in phase1 scanning. */
117         struct list_head        llmd_mdt_phase2_list;
118
119         struct ptlrpc_thread    llmd_thread;
120         __u32                   llmd_touch_gen;
121         int                     llmd_prefetched;
122         int                     llmd_assistant_status;
123         int                     llmd_post_result;
124         unsigned int            llmd_to_post:1,
125                                 llmd_to_double_scan:1,
126                                 llmd_in_double_scan:1,
127                                 llmd_exit:1;
128 };
129
130 struct lfsck_layout_slave_async_args {
131         struct obd_export                *llsaa_exp;
132         struct lfsck_component           *llsaa_com;
133         struct lfsck_layout_slave_target *llsaa_llst;
134 };
135
136 static struct lfsck_layout_object *
137 lfsck_layout_object_init(const struct lu_env *env, struct dt_object *obj,
138                          __u16 gen)
139 {
140         struct lfsck_layout_object *llo;
141         int                         rc;
142
143         OBD_ALLOC_PTR(llo);
144         if (llo == NULL)
145                 return ERR_PTR(-ENOMEM);
146
147         rc = dt_attr_get(env, obj, &llo->llo_attr, BYPASS_CAPA);
148         if (rc != 0) {
149                 OBD_FREE_PTR(llo);
150
151                 return ERR_PTR(rc);
152         }
153
154         lu_object_get(&obj->do_lu);
155         llo->llo_obj = obj;
156         /* The gen can be used to check whether some others have changed the
157          * file layout after LFSCK pre-fetching but before real verification. */
158         llo->llo_gen = gen;
159         atomic_set(&llo->llo_ref, 1);
160
161         return llo;
162 }
163
164 static inline void
165 lfsck_layout_llst_put(struct lfsck_layout_slave_target *llst)
166 {
167         if (atomic_dec_and_test(&llst->llst_ref)) {
168                 LASSERT(list_empty(&llst->llst_list));
169
170                 OBD_FREE_PTR(llst);
171         }
172 }
173
174 static inline int
175 lfsck_layout_llst_add(struct lfsck_layout_slave_data *llsd, __u32 index)
176 {
177         struct lfsck_layout_slave_target *llst;
178         struct lfsck_layout_slave_target *tmp;
179         int                               rc   = 0;
180
181         OBD_ALLOC_PTR(llst);
182         if (llst == NULL)
183                 return -ENOMEM;
184
185         INIT_LIST_HEAD(&llst->llst_list);
186         llst->llst_gen = 0;
187         llst->llst_index = index;
188         atomic_set(&llst->llst_ref, 1);
189
190         spin_lock(&llsd->llsd_lock);
191         list_for_each_entry(tmp, &llsd->llsd_master_list, llst_list) {
192                 if (tmp->llst_index == index) {
193                         rc = -EALREADY;
194                         break;
195                 }
196         }
197         if (rc == 0)
198                 list_add_tail(&llst->llst_list, &llsd->llsd_master_list);
199         spin_unlock(&llsd->llsd_lock);
200
201         if (rc != 0)
202                 OBD_FREE_PTR(llst);
203
204         return rc;
205 }
206
207 static inline void
208 lfsck_layout_llst_del(struct lfsck_layout_slave_data *llsd,
209                       struct lfsck_layout_slave_target *llst)
210 {
211         bool del = false;
212
213         spin_lock(&llsd->llsd_lock);
214         if (!list_empty(&llst->llst_list)) {
215                 list_del_init(&llst->llst_list);
216                 del = true;
217         }
218         spin_unlock(&llsd->llsd_lock);
219
220         if (del)
221                 lfsck_layout_llst_put(llst);
222 }
223
224 static inline struct lfsck_layout_slave_target *
225 lfsck_layout_llst_find_and_del(struct lfsck_layout_slave_data *llsd,
226                                __u32 index)
227 {
228         struct lfsck_layout_slave_target *llst;
229
230         spin_lock(&llsd->llsd_lock);
231         list_for_each_entry(llst, &llsd->llsd_master_list, llst_list) {
232                 if (llst->llst_index == index) {
233                         list_del_init(&llst->llst_list);
234                         spin_unlock(&llsd->llsd_lock);
235
236                         return llst;
237                 }
238         }
239         spin_unlock(&llsd->llsd_lock);
240
241         return NULL;
242 }
243
244 static inline void lfsck_layout_object_put(const struct lu_env *env,
245                                            struct lfsck_layout_object *llo)
246 {
247         if (atomic_dec_and_test(&llo->llo_ref)) {
248                 lfsck_object_put(env, llo->llo_obj);
249                 OBD_FREE_PTR(llo);
250         }
251 }
252
253 static struct lfsck_layout_req *
254 lfsck_layout_req_init(struct lfsck_layout_object *parent,
255                       struct dt_object *child, __u32 ost_idx, __u32 lov_idx)
256 {
257         struct lfsck_layout_req *llr;
258
259         OBD_ALLOC_PTR(llr);
260         if (llr == NULL)
261                 return ERR_PTR(-ENOMEM);
262
263         INIT_LIST_HEAD(&llr->llr_list);
264         atomic_inc(&parent->llo_ref);
265         llr->llr_parent = parent;
266         llr->llr_child = child;
267         llr->llr_ost_idx = ost_idx;
268         llr->llr_lov_idx = lov_idx;
269
270         return llr;
271 }
272
273 static inline void lfsck_layout_req_fini(const struct lu_env *env,
274                                          struct lfsck_layout_req *llr)
275 {
276         lu_object_put(env, &llr->llr_child->do_lu);
277         lfsck_layout_object_put(env, llr->llr_parent);
278         OBD_FREE_PTR(llr);
279 }
280
281 static inline bool lfsck_layout_req_empty(struct lfsck_layout_master_data *llmd)
282 {
283         bool empty = false;
284
285         spin_lock(&llmd->llmd_lock);
286         if (list_empty(&llmd->llmd_req_list))
287                 empty = true;
288         spin_unlock(&llmd->llmd_lock);
289
290         return empty;
291 }
292
293 static int lfsck_layout_get_lovea(const struct lu_env *env,
294                                   struct dt_object *obj,
295                                   struct lu_buf *buf, ssize_t *buflen)
296 {
297         int rc;
298
299 again:
300         rc = dt_xattr_get(env, obj, buf, XATTR_NAME_LOV, BYPASS_CAPA);
301         if (rc == -ERANGE) {
302                 rc = dt_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_LOV,
303                                   BYPASS_CAPA);
304                 if (rc <= 0)
305                         return rc;
306
307                 lu_buf_realloc(buf, rc);
308                 if (buflen != NULL)
309                         *buflen = buf->lb_len;
310
311                 if (buf->lb_buf == NULL)
312                         return -ENOMEM;
313
314                 goto again;
315         }
316
317         if (rc == -ENODATA)
318                 rc = 0;
319
320         if (rc <= 0)
321                 return rc;
322
323         if (unlikely(buf->lb_buf == NULL)) {
324                 lu_buf_alloc(buf, rc);
325                 if (buflen != NULL)
326                         *buflen = buf->lb_len;
327
328                 if (buf->lb_buf == NULL)
329                         return -ENOMEM;
330
331                 goto again;
332         }
333
334         return rc;
335 }
336
337 static int lfsck_layout_verify_header(struct lov_mds_md_v1 *lmm)
338 {
339         __u32 magic;
340         __u32 patten;
341
342         magic = le32_to_cpu(lmm->lmm_magic);
343         /* If magic crashed, keep it there. Sometime later, during OST-object
344          * orphan handling, if some OST-object(s) back-point to it, it can be
345          * verified and repaired. */
346         if (magic != LOV_MAGIC_V1 && magic != LOV_MAGIC_V3)
347                 return -EINVAL;
348
349         patten = le32_to_cpu(lmm->lmm_pattern);
350         /* XXX: currently, we only support LOV_PATTERN_RAID0. */
351         if (patten != LOV_PATTERN_RAID0)
352                 return -EOPNOTSUPP;
353
354         return 0;
355 }
356
357 static void lfsck_layout_le_to_cpu(struct lfsck_layout *des,
358                                    const struct lfsck_layout *src)
359 {
360         int i;
361
362         des->ll_magic = le32_to_cpu(src->ll_magic);
363         des->ll_status = le32_to_cpu(src->ll_status);
364         des->ll_flags = le32_to_cpu(src->ll_flags);
365         des->ll_success_count = le32_to_cpu(src->ll_success_count);
366         des->ll_run_time_phase1 = le32_to_cpu(src->ll_run_time_phase1);
367         des->ll_run_time_phase2 = le32_to_cpu(src->ll_run_time_phase2);
368         des->ll_time_last_complete = le64_to_cpu(src->ll_time_last_complete);
369         des->ll_time_latest_start = le64_to_cpu(src->ll_time_latest_start);
370         des->ll_time_last_checkpoint =
371                                 le64_to_cpu(src->ll_time_last_checkpoint);
372         des->ll_pos_latest_start = le64_to_cpu(src->ll_pos_latest_start);
373         des->ll_pos_last_checkpoint = le64_to_cpu(src->ll_pos_last_checkpoint);
374         des->ll_pos_first_inconsistent =
375                         le64_to_cpu(src->ll_pos_first_inconsistent);
376         des->ll_objs_checked_phase1 = le64_to_cpu(src->ll_objs_checked_phase1);
377         des->ll_objs_failed_phase1 = le64_to_cpu(src->ll_objs_failed_phase1);
378         des->ll_objs_checked_phase2 = le64_to_cpu(src->ll_objs_checked_phase2);
379         des->ll_objs_failed_phase2 = le64_to_cpu(src->ll_objs_failed_phase2);
380         for (i = 0; i < LLIT_MAX; i++)
381                 des->ll_objs_repaired[i] =
382                                 le64_to_cpu(src->ll_objs_repaired[i]);
383         des->ll_objs_skipped = le64_to_cpu(src->ll_objs_skipped);
384 }
385
386 static void lfsck_layout_cpu_to_le(struct lfsck_layout *des,
387                                    const struct lfsck_layout *src)
388 {
389         int i;
390
391         des->ll_magic = cpu_to_le32(src->ll_magic);
392         des->ll_status = cpu_to_le32(src->ll_status);
393         des->ll_flags = cpu_to_le32(src->ll_flags);
394         des->ll_success_count = cpu_to_le32(src->ll_success_count);
395         des->ll_run_time_phase1 = cpu_to_le32(src->ll_run_time_phase1);
396         des->ll_run_time_phase2 = cpu_to_le32(src->ll_run_time_phase2);
397         des->ll_time_last_complete = cpu_to_le64(src->ll_time_last_complete);
398         des->ll_time_latest_start = cpu_to_le64(src->ll_time_latest_start);
399         des->ll_time_last_checkpoint =
400                                 cpu_to_le64(src->ll_time_last_checkpoint);
401         des->ll_pos_latest_start = cpu_to_le64(src->ll_pos_latest_start);
402         des->ll_pos_last_checkpoint = cpu_to_le64(src->ll_pos_last_checkpoint);
403         des->ll_pos_first_inconsistent =
404                         cpu_to_le64(src->ll_pos_first_inconsistent);
405         des->ll_objs_checked_phase1 = cpu_to_le64(src->ll_objs_checked_phase1);
406         des->ll_objs_failed_phase1 = cpu_to_le64(src->ll_objs_failed_phase1);
407         des->ll_objs_checked_phase2 = cpu_to_le64(src->ll_objs_checked_phase2);
408         des->ll_objs_failed_phase2 = cpu_to_le64(src->ll_objs_failed_phase2);
409         for (i = 0; i < LLIT_MAX; i++)
410                 des->ll_objs_repaired[i] =
411                                 cpu_to_le64(src->ll_objs_repaired[i]);
412         des->ll_objs_skipped = cpu_to_le64(src->ll_objs_skipped);
413 }
414
415 /**
416  * \retval +ve: the lfsck_layout is broken, the caller should reset it.
417  * \retval 0: succeed.
418  * \retval -ve: failed cases.
419  */
420 static int lfsck_layout_load(const struct lu_env *env,
421                              struct lfsck_component *com)
422 {
423         struct lfsck_layout             *lo     = com->lc_file_ram;
424         const struct dt_body_operations *dbo    = com->lc_obj->do_body_ops;
425         ssize_t                          size   = com->lc_file_size;
426         loff_t                           pos    = 0;
427         int                              rc;
428
429         rc = dbo->dbo_read(env, com->lc_obj,
430                            lfsck_buf_get(env, com->lc_file_disk, size), &pos,
431                            BYPASS_CAPA);
432         if (rc == 0) {
433                 return -ENOENT;
434         } else if (rc < 0) {
435                 CWARN("%s: failed to load lfsck_layout: rc = %d\n",
436                       lfsck_lfsck2name(com->lc_lfsck), rc);
437                 return rc;
438         } else if (rc != size) {
439                 CWARN("%s: crashed lfsck_layout, to be reset: rc = %d\n",
440                       lfsck_lfsck2name(com->lc_lfsck), rc);
441                 return 1;
442         }
443
444         lfsck_layout_le_to_cpu(lo, com->lc_file_disk);
445         if (lo->ll_magic != LFSCK_LAYOUT_MAGIC) {
446                 CWARN("%s: invalid lfsck_layout magic %#x != %#x, "
447                       "to be reset\n", lfsck_lfsck2name(com->lc_lfsck),
448                       lo->ll_magic, LFSCK_LAYOUT_MAGIC);
449                 return 1;
450         }
451
452         return 0;
453 }
454
455 static int lfsck_layout_store(const struct lu_env *env,
456                               struct lfsck_component *com)
457 {
458         struct dt_object         *obj           = com->lc_obj;
459         struct lfsck_instance    *lfsck         = com->lc_lfsck;
460         struct lfsck_layout      *lo            = com->lc_file_disk;
461         struct thandle           *handle;
462         ssize_t                   size          = com->lc_file_size;
463         loff_t                    pos           = 0;
464         int                       rc;
465         ENTRY;
466
467         lfsck_layout_cpu_to_le(lo, com->lc_file_ram);
468         handle = dt_trans_create(env, lfsck->li_bottom);
469         if (IS_ERR(handle)) {
470                 rc = PTR_ERR(handle);
471                 CERROR("%s: fail to create trans for storing lfsck_layout: "
472                        "rc = %d\n", lfsck_lfsck2name(lfsck), rc);
473                 RETURN(rc);
474         }
475
476         rc = dt_declare_record_write(env, obj, size, pos, handle);
477         if (rc != 0) {
478                 CERROR("%s: fail to declare trans for storing lfsck_layout(1): "
479                        "rc = %d\n", lfsck_lfsck2name(lfsck), rc);
480                 GOTO(out, rc);
481         }
482
483         rc = dt_trans_start_local(env, lfsck->li_bottom, handle);
484         if (rc != 0) {
485                 CERROR("%s: fail to start trans for storing lfsck_layout: "
486                        "rc = %d\n", lfsck_lfsck2name(lfsck), rc);
487                 GOTO(out, rc);
488         }
489
490         rc = dt_record_write(env, obj, lfsck_buf_get(env, lo, size), &pos,
491                              handle);
492         if (rc != 0)
493                 CERROR("%s: fail to store lfsck_layout(1): size = %d, "
494                        "rc = %d\n", lfsck_lfsck2name(lfsck), (int)size, rc);
495
496         GOTO(out, rc);
497
498 out:
499         dt_trans_stop(env, lfsck->li_bottom, handle);
500
501         return rc;
502 }
503
504 static int lfsck_layout_init(const struct lu_env *env,
505                              struct lfsck_component *com)
506 {
507         struct lfsck_layout *lo = com->lc_file_ram;
508         int rc;
509
510         memset(lo, 0, com->lc_file_size);
511         lo->ll_magic = LFSCK_LAYOUT_MAGIC;
512         lo->ll_status = LS_INIT;
513         down_write(&com->lc_sem);
514         rc = lfsck_layout_store(env, com);
515         up_write(&com->lc_sem);
516
517         return rc;
518 }
519
520 static int fid_is_for_ostobj(const struct lu_env *env, struct dt_device *dt,
521                              struct dt_object *obj, const struct lu_fid *fid)
522 {
523         struct seq_server_site  *ss     = lu_site2seq(dt->dd_lu_dev.ld_site);
524         struct lu_seq_range      range  = { 0 };
525         struct lustre_mdt_attrs *lma;
526         int                      rc;
527
528         fld_range_set_any(&range);
529         rc = fld_server_lookup(env, ss->ss_server_fld, fid_seq(fid), &range);
530         if (rc == 0) {
531                 if (fld_range_is_ost(&range))
532                         return 1;
533
534                 return 0;
535         }
536
537         lma = &lfsck_env_info(env)->lti_lma;
538         rc = dt_xattr_get(env, obj, lfsck_buf_get(env, lma, sizeof(*lma)),
539                           XATTR_NAME_LMA, BYPASS_CAPA);
540         if (rc == sizeof(*lma)) {
541                 lustre_lma_swab(lma);
542
543                 return lma->lma_compat & LMAC_FID_ON_OST ? 1 : 0;
544         }
545
546         rc = dt_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_FID, BYPASS_CAPA);
547
548         return rc > 0;
549 }
550
551 static struct lfsck_layout_seq *
552 lfsck_layout_seq_lookup(struct lfsck_layout_slave_data *llsd, __u64 seq)
553 {
554         struct lfsck_layout_seq *lls;
555
556         list_for_each_entry(lls, &llsd->llsd_seq_list, lls_list) {
557                 if (lls->lls_seq == seq)
558                         return lls;
559
560                 if (lls->lls_seq > seq)
561                         return NULL;
562         }
563
564         return NULL;
565 }
566
567 static void
568 lfsck_layout_seq_insert(struct lfsck_layout_slave_data *llsd,
569                         struct lfsck_layout_seq *lls)
570 {
571         struct lfsck_layout_seq *tmp;
572         struct list_head        *pos = &llsd->llsd_seq_list;
573
574         list_for_each_entry(tmp, &llsd->llsd_seq_list, lls_list) {
575                 if (lls->lls_seq < tmp->lls_seq) {
576                         pos = &tmp->lls_list;
577                         break;
578                 }
579         }
580         list_add_tail(&lls->lls_list, pos);
581 }
582
583 static int
584 lfsck_layout_lastid_create(const struct lu_env *env,
585                            struct lfsck_instance *lfsck,
586                            struct dt_object *obj)
587 {
588         struct lfsck_thread_info *info   = lfsck_env_info(env);
589         struct lu_attr           *la     = &info->lti_la;
590         struct dt_object_format  *dof    = &info->lti_dof;
591         struct lfsck_bookmark    *bk     = &lfsck->li_bookmark_ram;
592         struct dt_device         *dt     = lfsck->li_bottom;
593         struct thandle           *th;
594         __u64                     lastid = 0;
595         loff_t                    pos    = 0;
596         int                       rc;
597         ENTRY;
598
599         CDEBUG(D_LFSCK, "To create LAST_ID for <seq> "LPX64"\n",
600                fid_seq(lfsck_dto2fid(obj)));
601
602         if (bk->lb_param & LPF_DRYRUN)
603                 return 0;
604
605         memset(la, 0, sizeof(*la));
606         la->la_mode = S_IFREG |  S_IRUGO | S_IWUSR;
607         la->la_valid = LA_MODE | LA_UID | LA_GID;
608         dof->dof_type = dt_mode_to_dft(S_IFREG);
609
610         th = dt_trans_create(env, dt);
611         if (IS_ERR(th))
612                 RETURN(rc = PTR_ERR(th));
613
614         rc = dt_declare_create(env, obj, la, NULL, dof, th);
615         if (rc != 0)
616                 GOTO(stop, rc);
617
618         rc = dt_declare_record_write(env, obj, sizeof(lastid), pos, th);
619         if (rc != 0)
620                 GOTO(stop, rc);
621
622         rc = dt_trans_start_local(env, dt, th);
623         if (rc != 0)
624                 GOTO(stop, rc);
625
626         dt_write_lock(env, obj, 0);
627         if (likely(!dt_object_exists(obj))) {
628                 rc = dt_create(env, obj, la, NULL, dof, th);
629                 if (rc == 0)
630                         rc = dt_record_write(env, obj,
631                                 lfsck_buf_get(env, &lastid, sizeof(lastid)),
632                                 &pos, th);
633         }
634         dt_write_unlock(env, obj);
635
636         GOTO(stop, rc);
637
638 stop:
639         dt_trans_stop(env, dt, th);
640
641         return rc;
642 }
643
644 static int
645 lfsck_layout_lastid_reload(const struct lu_env *env,
646                            struct lfsck_component *com,
647                            struct lfsck_layout_seq *lls)
648 {
649         __u64   lastid;
650         loff_t  pos     = 0;
651         int     rc;
652
653         dt_read_lock(env, lls->lls_lastid_obj, 0);
654         rc = dt_record_read(env, lls->lls_lastid_obj,
655                             lfsck_buf_get(env, &lastid, sizeof(lastid)), &pos);
656         dt_read_unlock(env, lls->lls_lastid_obj);
657         if (unlikely(rc != 0))
658                 return rc;
659
660         lastid = le64_to_cpu(lastid);
661         if (lastid < lls->lls_lastid_known) {
662                 struct lfsck_instance   *lfsck  = com->lc_lfsck;
663                 struct lfsck_layout     *lo     = com->lc_file_ram;
664
665                 lls->lls_lastid = lls->lls_lastid_known;
666                 lls->lls_dirty = 1;
667                 if (!(lo->ll_flags & LF_CRASHED_LASTID)) {
668                         LASSERT(lfsck->li_out_notify != NULL);
669
670                         lfsck->li_out_notify(env, lfsck->li_out_notify_data,
671                                              LE_LASTID_REBUILDING);
672                         lo->ll_flags |= LF_CRASHED_LASTID;
673                 }
674         } else if (lastid >= lls->lls_lastid) {
675                 lls->lls_lastid = lastid;
676                 lls->lls_dirty = 0;
677         }
678
679         return 0;
680 }
681
682 static int
683 lfsck_layout_lastid_store(const struct lu_env *env,
684                           struct lfsck_component *com)
685 {
686         struct lfsck_instance           *lfsck  = com->lc_lfsck;
687         struct lfsck_bookmark           *bk     = &lfsck->li_bookmark_ram;
688         struct dt_device                *dt     = lfsck->li_bottom;
689         struct lfsck_layout_slave_data  *llsd   = com->lc_data;
690         struct lfsck_layout_seq         *lls;
691         struct thandle                  *th;
692         __u64                            lastid;
693         int                              rc     = 0;
694         int                              rc1    = 0;
695
696         list_for_each_entry(lls, &llsd->llsd_seq_list, lls_list) {
697                 loff_t pos = 0;
698
699                 /* XXX: Add the code back if we really found related
700                  *      inconsistent cases in the future. */
701 #if 0
702                 if (!lls->lls_dirty) {
703                         /* In OFD, before the pre-creation, the LAST_ID
704                          * file will be updated firstly, which may hide
705                          * some potential crashed cases. For example:
706                          *
707                          * The old obj1's ID is higher than old LAST_ID
708                          * but lower than the new LAST_ID, but the LFSCK
709                          * have not touch the obj1 until the OFD updated
710                          * the LAST_ID. So the LFSCK does not regard it
711                          * as crashed case. But when OFD does not create
712                          * successfully, it will set the LAST_ID as the
713                          * real created objects' ID, then LFSCK needs to
714                          * found related inconsistency. */
715                         rc = lfsck_layout_lastid_reload(env, com, lls);
716                         if (likely(!lls->lls_dirty))
717                                 continue;
718                 }
719 #endif
720
721                 CDEBUG(D_LFSCK, "To sync the LAST_ID for <seq> "LPX64
722                        " as <oid> "LPU64"\n", lls->lls_seq, lls->lls_lastid);
723
724                 if (bk->lb_param & LPF_DRYRUN) {
725                         lls->lls_dirty = 0;
726                         continue;
727                 }
728
729                 th = dt_trans_create(env, dt);
730                 if (IS_ERR(th)) {
731                         rc1 = PTR_ERR(th);
732                         CERROR("%s: (1) failed to store "LPX64": rc = %d\n",
733                                lfsck_lfsck2name(com->lc_lfsck),
734                                lls->lls_seq, rc1);
735                         continue;
736                 }
737
738                 rc = dt_declare_record_write(env, lls->lls_lastid_obj,
739                                              sizeof(lastid), pos, th);
740                 if (rc != 0)
741                         goto stop;
742
743                 rc = dt_trans_start_local(env, dt, th);
744                 if (rc != 0)
745                         goto stop;
746
747                 lastid = cpu_to_le64(lls->lls_lastid);
748                 dt_write_lock(env, lls->lls_lastid_obj, 0);
749                 rc = dt_record_write(env, lls->lls_lastid_obj,
750                                      lfsck_buf_get(env, &lastid,
751                                      sizeof(lastid)), &pos, th);
752                 dt_write_unlock(env, lls->lls_lastid_obj);
753                 if (rc == 0)
754                         lls->lls_dirty = 0;
755
756 stop:
757                 dt_trans_stop(env, dt, th);
758                 if (rc != 0) {
759                         rc1 = rc;
760                         CERROR("%s: (2) failed to store "LPX64": rc = %d\n",
761                                lfsck_lfsck2name(com->lc_lfsck),
762                                lls->lls_seq, rc1);
763                 }
764         }
765
766         return rc1;
767 }
768
769 static int
770 lfsck_layout_lastid_load(const struct lu_env *env,
771                          struct lfsck_component *com,
772                          struct lfsck_layout_seq *lls)
773 {
774         struct lfsck_instance   *lfsck  = com->lc_lfsck;
775         struct lfsck_layout     *lo     = com->lc_file_ram;
776         struct lu_fid           *fid    = &lfsck_env_info(env)->lti_fid;
777         struct dt_object        *obj;
778         loff_t                   pos    = 0;
779         int                      rc;
780         ENTRY;
781
782         lu_last_id_fid(fid, lls->lls_seq, lfsck_dev_idx(lfsck->li_bottom));
783         obj = dt_locate(env, lfsck->li_bottom, fid);
784         if (IS_ERR(obj))
785                 RETURN(PTR_ERR(obj));
786
787         /* LAST_ID crashed, to be rebuilt */
788         if (!dt_object_exists(obj)) {
789                 if (!(lo->ll_flags & LF_CRASHED_LASTID)) {
790                         LASSERT(lfsck->li_out_notify != NULL);
791
792                         lfsck->li_out_notify(env, lfsck->li_out_notify_data,
793                                              LE_LASTID_REBUILDING);
794                         lo->ll_flags |= LF_CRASHED_LASTID;
795
796                         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DELAY4) &&
797                             cfs_fail_val > 0) {
798                                 struct l_wait_info lwi = LWI_TIMEOUT(
799                                                 cfs_time_seconds(cfs_fail_val),
800                                                 NULL, NULL);
801
802                                 up_write(&com->lc_sem);
803                                 l_wait_event(lfsck->li_thread.t_ctl_waitq,
804                                              !thread_is_running(&lfsck->li_thread),
805                                              &lwi);
806                                 down_write(&com->lc_sem);
807                         }
808                 }
809
810                 rc = lfsck_layout_lastid_create(env, lfsck, obj);
811         } else {
812                 dt_read_lock(env, obj, 0);
813                 rc = dt_read(env, obj,
814                         lfsck_buf_get(env, &lls->lls_lastid, sizeof(__u64)),
815                         &pos);
816                 dt_read_unlock(env, obj);
817                 if (rc != 0 && rc != sizeof(__u64))
818                         GOTO(out, rc = (rc > 0 ? -EFAULT : rc));
819
820                 if (rc == 0 && !(lo->ll_flags & LF_CRASHED_LASTID)) {
821                         LASSERT(lfsck->li_out_notify != NULL);
822
823                         lfsck->li_out_notify(env, lfsck->li_out_notify_data,
824                                              LE_LASTID_REBUILDING);
825                         lo->ll_flags |= LF_CRASHED_LASTID;
826                 }
827
828                 lls->lls_lastid = le64_to_cpu(lls->lls_lastid);
829                 rc = 0;
830         }
831
832         GOTO(out, rc);
833
834 out:
835         if (rc != 0)
836                 lfsck_object_put(env, obj);
837         else
838                 lls->lls_lastid_obj = obj;
839
840         return rc;
841 }
842
843 static int lfsck_layout_master_async_interpret(const struct lu_env *env,
844                                                struct ptlrpc_request *req,
845                                                void *args, int rc)
846 {
847         struct lfsck_async_interpret_args *laia = args;
848         struct lfsck_component            *com  = laia->laia_com;
849         struct lfsck_layout_master_data   *llmd = com->lc_data;
850         struct lfsck_tgt_descs            *ltds = laia->laia_ltds;
851         struct lfsck_tgt_desc             *ltd  = laia->laia_ltd;
852         struct lfsck_request              *lr   = laia->laia_lr;
853
854         switch (lr->lr_event) {
855         case LE_START:
856                 if (rc != 0) {
857                         struct lfsck_layout *lo = com->lc_file_ram;
858
859                         lo->ll_flags |= LF_INCOMPLETE;
860                         lfsck_tgt_put(ltd);
861                         break;
862                 }
863
864                 spin_lock(&ltds->ltd_lock);
865                 if (ltd->ltd_dead || ltd->ltd_layout_done) {
866                         spin_unlock(&ltds->ltd_lock);
867                         lfsck_tgt_put(ltd);
868                         break;
869                 }
870
871                 if (lr->lr_flags & LEF_TO_OST) {
872                         if (list_empty(&ltd->ltd_layout_list))
873                                 list_add_tail(&ltd->ltd_layout_list,
874                                               &llmd->llmd_ost_list);
875                         if (list_empty(&ltd->ltd_layout_phase_list))
876                                 list_add_tail(&ltd->ltd_layout_phase_list,
877                                               &llmd->llmd_ost_phase1_list);
878                 } else {
879                         if (list_empty(&ltd->ltd_layout_list))
880                                 list_add_tail(&ltd->ltd_layout_list,
881                                               &llmd->llmd_mdt_list);
882                         if (list_empty(&ltd->ltd_layout_phase_list))
883                                 list_add_tail(&ltd->ltd_layout_phase_list,
884                                               &llmd->llmd_mdt_phase1_list);
885                 }
886                 spin_unlock(&ltds->ltd_lock);
887                 lfsck_tgt_put(ltd);
888                 break;
889         case LE_STOP:
890         case LE_PHASE1_DONE:
891         case LE_PHASE2_DONE:
892                 if (rc != 0)
893                         CERROR("%s: fail to notify %s %x for layout: "
894                                "event = %d, rc = %d\n",
895                                lfsck_lfsck2name(com->lc_lfsck),
896                                (lr->lr_flags & LEF_TO_OST) ? "OST" : "MDT",
897                                ltd->ltd_index, lr->lr_event, rc);
898                 break;
899         case LE_QUERY: {
900                 struct lfsck_reply *reply;
901
902                 if (rc != 0) {
903                         spin_lock(&ltds->ltd_lock);
904                         list_del_init(&ltd->ltd_layout_phase_list);
905                         list_del_init(&ltd->ltd_layout_list);
906                         spin_unlock(&ltds->ltd_lock);
907                         lfsck_tgt_put(ltd);
908                         break;
909                 }
910
911                 reply = req_capsule_server_get(&req->rq_pill,
912                                                &RMF_LFSCK_REPLY);
913                 if (reply == NULL) {
914                         rc = -EPROTO;
915                         CERROR("%s: invalid return value: rc = %d\n",
916                                lfsck_lfsck2name(com->lc_lfsck), rc);
917                         spin_lock(&ltds->ltd_lock);
918                         list_del_init(&ltd->ltd_layout_phase_list);
919                         list_del_init(&ltd->ltd_layout_list);
920                         spin_unlock(&ltds->ltd_lock);
921                         lfsck_tgt_put(ltd);
922                         break;
923                 }
924
925                 switch (reply->lr_status) {
926                 case LS_SCANNING_PHASE1:
927                         break;
928                 case LS_SCANNING_PHASE2:
929                         spin_lock(&ltds->ltd_lock);
930                         list_del_init(&ltd->ltd_layout_phase_list);
931                         if (ltd->ltd_dead || ltd->ltd_layout_done) {
932                                 spin_unlock(&ltds->ltd_lock);
933                                 break;
934                         }
935
936                         if (lr->lr_flags & LEF_TO_OST)
937                                 list_add_tail(&ltd->ltd_layout_phase_list,
938                                               &llmd->llmd_ost_phase2_list);
939                         else
940                                 list_add_tail(&ltd->ltd_layout_phase_list,
941                                               &llmd->llmd_mdt_phase2_list);
942                         spin_unlock(&ltds->ltd_lock);
943                         break;
944                 default:
945                         spin_lock(&ltds->ltd_lock);
946                         list_del_init(&ltd->ltd_layout_phase_list);
947                         list_del_init(&ltd->ltd_layout_list);
948                         spin_unlock(&ltds->ltd_lock);
949                         break;
950                 }
951                 lfsck_tgt_put(ltd);
952                 break;
953         }
954         default:
955                 CERROR("%s: unexpected event: rc = %d\n",
956                        lfsck_lfsck2name(com->lc_lfsck), lr->lr_event);
957                 break;
958         }
959
960         lfsck_component_put(env, com);
961
962         return 0;
963 }
964
965 static int lfsck_layout_master_query_others(const struct lu_env *env,
966                                             struct lfsck_component *com)
967 {
968         struct lfsck_thread_info          *info  = lfsck_env_info(env);
969         struct lfsck_request              *lr    = &info->lti_lr;
970         struct lfsck_async_interpret_args *laia  = &info->lti_laia;
971         struct lfsck_instance             *lfsck = com->lc_lfsck;
972         struct lfsck_layout_master_data   *llmd  = com->lc_data;
973         struct ptlrpc_request_set         *set;
974         struct lfsck_tgt_descs            *ltds;
975         struct lfsck_tgt_desc             *ltd;
976         struct list_head                  *head;
977         __u32                              cnt   = 0;
978         int                                rc    = 0;
979         int                                rc1   = 0;
980         ENTRY;
981
982         set = ptlrpc_prep_set();
983         if (set == NULL)
984                 RETURN(-ENOMEM);
985
986         llmd->llmd_touch_gen++;
987         memset(lr, 0, sizeof(*lr));
988         lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
989         lr->lr_event = LE_QUERY;
990         lr->lr_active = LT_LAYOUT;
991         laia->laia_com = com;
992         laia->laia_lr = lr;
993
994         if (!list_empty(&llmd->llmd_mdt_phase1_list)) {
995                 ltds = &lfsck->li_mdt_descs;
996                 lr->lr_flags = 0;
997                 head = &llmd->llmd_mdt_phase1_list;
998         } else {
999
1000 again:
1001                 ltds = &lfsck->li_ost_descs;
1002                 lr->lr_flags = LEF_TO_OST;
1003                 head = &llmd->llmd_ost_phase1_list;
1004         }
1005
1006         laia->laia_ltds = ltds;
1007         spin_lock(&ltds->ltd_lock);
1008         while (!list_empty(head)) {
1009                 ltd = list_entry(head->next,
1010                                  struct lfsck_tgt_desc,
1011                                  ltd_layout_phase_list);
1012                 if (ltd->ltd_layout_gen == llmd->llmd_touch_gen)
1013                         break;
1014
1015                 ltd->ltd_layout_gen = llmd->llmd_touch_gen;
1016                 list_del(&ltd->ltd_layout_phase_list);
1017                 list_add_tail(&ltd->ltd_layout_phase_list, head);
1018                 atomic_inc(&ltd->ltd_ref);
1019                 laia->laia_ltd = ltd;
1020                 spin_unlock(&ltds->ltd_lock);
1021                 rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
1022                                          lfsck_layout_master_async_interpret,
1023                                          laia, LFSCK_QUERY);
1024                 if (rc != 0) {
1025                         CERROR("%s: fail to query %s %x for layout: rc = %d\n",
1026                                lfsck_lfsck2name(lfsck),
1027                                (lr->lr_flags & LEF_TO_OST) ? "OST" : "MDT",
1028                                ltd->ltd_index, rc);
1029                         lfsck_tgt_put(ltd);
1030                         rc1 = rc;
1031                 } else {
1032                         cnt++;
1033                 }
1034                 spin_lock(&ltds->ltd_lock);
1035         }
1036         spin_unlock(&ltds->ltd_lock);
1037
1038         if (cnt > 0) {
1039                 rc = ptlrpc_set_wait(set);
1040                 if (rc < 0) {
1041                         ptlrpc_set_destroy(set);
1042                         RETURN(rc);
1043                 }
1044                 cnt = 0;
1045         }
1046
1047         if (!(lr->lr_flags & LEF_TO_OST) &&
1048             list_empty(&llmd->llmd_mdt_phase1_list))
1049                 goto again;
1050
1051         ptlrpc_set_destroy(set);
1052
1053         RETURN(rc1 != 0 ? rc1 : rc);
1054 }
1055
1056 static inline bool
1057 lfsck_layout_master_to_orphan(struct lfsck_layout_master_data *llmd)
1058 {
1059         return list_empty(&llmd->llmd_mdt_phase1_list) &&
1060                (!list_empty(&llmd->llmd_ost_phase2_list) ||
1061                 list_empty(&llmd->llmd_ost_phase1_list));
1062 }
1063
1064 static int lfsck_layout_master_notify_others(const struct lu_env *env,
1065                                              struct lfsck_component *com,
1066                                              struct lfsck_request *lr,
1067                                              __u32 flags)
1068 {
1069         struct lfsck_thread_info          *info  = lfsck_env_info(env);
1070         struct lfsck_async_interpret_args *laia  = &info->lti_laia;
1071         struct lfsck_instance             *lfsck = com->lc_lfsck;
1072         struct lfsck_layout_master_data   *llmd  = com->lc_data;
1073         struct lfsck_layout               *lo    = com->lc_file_ram;
1074         struct ptlrpc_request_set         *set;
1075         struct lfsck_tgt_descs            *ltds;
1076         struct lfsck_tgt_desc             *ltd;
1077         struct lfsck_tgt_desc             *next;
1078         struct list_head                  *head;
1079         __u32                              idx;
1080         __u32                              cnt   = 0;
1081         int                                rc    = 0;
1082         ENTRY;
1083
1084         set = ptlrpc_prep_set();
1085         if (set == NULL)
1086                 RETURN(-ENOMEM);
1087
1088         lr->lr_active = LT_LAYOUT;
1089         laia->laia_com = com;
1090         laia->laia_lr = lr;
1091         lr->lr_flags = 0;
1092         switch (lr->lr_event) {
1093         case LE_START:
1094                 /* Notify OSTs firstly, then other MDTs if needed. */
1095                 lr->lr_flags |= LEF_TO_OST;
1096                 ltds = &lfsck->li_ost_descs;
1097
1098 lable1:
1099                 laia->laia_ltds = ltds;
1100                 down_read(&ltds->ltd_rw_sem);
1101                 cfs_foreach_bit(ltds->ltd_tgts_bitmap, idx) {
1102                         ltd = lfsck_tgt_get(ltds, idx);
1103                         LASSERT(ltd != NULL);
1104
1105                         laia->laia_ltd = ltd;
1106                         ltd->ltd_layout_done = 0;
1107                         rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
1108                                         lfsck_layout_master_async_interpret,
1109                                         laia, LFSCK_NOTIFY);
1110                         if (rc != 0) {
1111                                 CERROR("%s: fail to notify %s %x for layout "
1112                                        "start: rc = %d\n",
1113                                        lfsck_lfsck2name(lfsck),
1114                                        (lr->lr_flags & LEF_TO_OST) ? "OST" :
1115                                        "MDT", idx, rc);
1116                                 lfsck_tgt_put(ltd);
1117                                 lo->ll_flags |= LF_INCOMPLETE;
1118                         } else {
1119                                 cnt++;
1120                         }
1121                 }
1122                 up_read(&ltds->ltd_rw_sem);
1123
1124                 /* Sync up */
1125                 if (cnt > 0) {
1126                         rc = ptlrpc_set_wait(set);
1127                         if (rc < 0) {
1128                                 ptlrpc_set_destroy(set);
1129                                 RETURN(rc);
1130                         }
1131                         cnt = 0;
1132                 }
1133
1134                 if (!(flags & LPF_ALL_MDT))
1135                         break;
1136
1137                 ltds = &lfsck->li_mdt_descs;
1138                 /* The sponsor broadcasts the request to other MDTs. */
1139                 if (flags & LPF_BROADCAST) {
1140                         flags &= ~LPF_ALL_MDT;
1141                         lr->lr_flags &= ~LEF_TO_OST;
1142                         goto lable1;
1143                 }
1144
1145                 /* non-sponsors link other MDT targets locallly. */
1146                 spin_lock(&ltds->ltd_lock);
1147                 cfs_foreach_bit(ltds->ltd_tgts_bitmap, idx) {
1148                         ltd = LTD_TGT(ltds, idx);
1149                         LASSERT(ltd != NULL);
1150
1151                         if (!list_empty(&ltd->ltd_layout_list))
1152                                 continue;
1153
1154                         list_add_tail(&ltd->ltd_layout_list,
1155                                       &llmd->llmd_mdt_list);
1156                         list_add_tail(&ltd->ltd_layout_phase_list,
1157                                       &llmd->llmd_mdt_phase1_list);
1158                 }
1159                 spin_unlock(&ltds->ltd_lock);
1160
1161                 break;
1162         case LE_STOP:
1163                 if (flags & LPF_BROADCAST)
1164                         lr->lr_flags |= LEF_FORCE_STOP;
1165         case LE_PHASE2_DONE:
1166                 /* Notify other MDTs if needed, then the OSTs. */
1167                 if (flags & LPF_ALL_MDT) {
1168                         /* The sponsor broadcasts the request to other MDTs. */
1169                         if (flags & LPF_BROADCAST) {
1170                                 lr->lr_flags &= ~LEF_TO_OST;
1171                                 head = &llmd->llmd_mdt_list;
1172                                 ltds = &lfsck->li_mdt_descs;
1173                                 goto lable3;
1174                         }
1175
1176                         /* non-sponsors unlink other MDT targets locallly. */
1177                         ltds = &lfsck->li_mdt_descs;
1178                         spin_lock(&ltds->ltd_lock);
1179                         list_for_each_entry_safe(ltd, next,
1180                                                  &llmd->llmd_mdt_list,
1181                                                  ltd_layout_list) {
1182                                 list_del_init(&ltd->ltd_layout_phase_list);
1183                                 list_del_init(&ltd->ltd_layout_list);
1184                         }
1185                         spin_unlock(&ltds->ltd_lock);
1186                 }
1187
1188 lable2:
1189                 lr->lr_flags |= LEF_TO_OST;
1190                 head = &llmd->llmd_ost_list;
1191                 ltds = &lfsck->li_ost_descs;
1192
1193 lable3:
1194                 laia->laia_ltds = ltds;
1195                 spin_lock(&ltds->ltd_lock);
1196                 while (!list_empty(head)) {
1197                         ltd = list_entry(head->next, struct lfsck_tgt_desc,
1198                                          ltd_layout_list);
1199                         if (!list_empty(&ltd->ltd_layout_phase_list))
1200                                 list_del_init(&ltd->ltd_layout_phase_list);
1201                         list_del_init(&ltd->ltd_layout_list);
1202                         laia->laia_ltd = ltd;
1203                         spin_unlock(&ltds->ltd_lock);
1204                         rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
1205                                         lfsck_layout_master_async_interpret,
1206                                         laia, LFSCK_NOTIFY);
1207                         if (rc != 0)
1208                                 CERROR("%s: fail to notify %s %x for layout "
1209                                        "stop/phase2: rc = %d\n",
1210                                        lfsck_lfsck2name(lfsck),
1211                                        (lr->lr_flags & LEF_TO_OST) ? "OST" :
1212                                        "MDT", ltd->ltd_index, rc);
1213                         else
1214                                 cnt++;
1215                         spin_lock(&ltds->ltd_lock);
1216                 }
1217                 spin_unlock(&ltds->ltd_lock);
1218
1219                 if (!(flags & LPF_BROADCAST))
1220                         break;
1221
1222                 /* Sync up */
1223                 if (cnt > 0) {
1224                         rc = ptlrpc_set_wait(set);
1225                         if (rc < 0) {
1226                                 ptlrpc_set_destroy(set);
1227                                 RETURN(rc);
1228                         }
1229                         cnt = 0;
1230                 }
1231
1232                 flags &= ~LPF_BROADCAST;
1233                 goto lable2;
1234         case LE_PHASE1_DONE:
1235                 llmd->llmd_touch_gen++;
1236                 lr->lr_flags &= ~LEF_TO_OST;
1237                 ltds = &lfsck->li_mdt_descs;
1238                 laia->laia_ltds = ltds;
1239                 spin_lock(&ltds->ltd_lock);
1240                 while (!list_empty(&llmd->llmd_mdt_phase1_list)) {
1241                         ltd = list_entry(llmd->llmd_mdt_phase1_list.next,
1242                                          struct lfsck_tgt_desc,
1243                                          ltd_layout_phase_list);
1244                         if (ltd->ltd_layout_gen == llmd->llmd_touch_gen)
1245                                 break;
1246
1247                         ltd->ltd_layout_gen = llmd->llmd_touch_gen;
1248                         list_del_init(&ltd->ltd_layout_phase_list);
1249                         list_add_tail(&ltd->ltd_layout_phase_list,
1250                                       &llmd->llmd_mdt_phase1_list);
1251                         laia->laia_ltd = ltd;
1252                         spin_unlock(&ltds->ltd_lock);
1253                         rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
1254                                         lfsck_layout_master_async_interpret,
1255                                         laia, LFSCK_NOTIFY);
1256                         if (rc != 0)
1257                                 CERROR("%s: fail to notify MDT %x for layout "
1258                                        "phase1 done: rc = %d\n",
1259                                        lfsck_lfsck2name(lfsck),
1260                                        ltd->ltd_index, rc);
1261                         else
1262                                 cnt++;
1263                         spin_lock(&ltds->ltd_lock);
1264                 }
1265                 spin_unlock(&ltds->ltd_lock);
1266                 break;
1267         default:
1268                 CERROR("%s: unexpected LFSCK event: rc = %d\n",
1269                        lfsck_lfsck2name(lfsck), lr->lr_event);
1270                 rc = -EINVAL;
1271                 break;
1272         }
1273
1274         if (cnt > 0)
1275                 rc = ptlrpc_set_wait(set);
1276         ptlrpc_set_destroy(set);
1277
1278         if (rc == 0 && lr->lr_event == LE_START &&
1279             list_empty(&llmd->llmd_ost_list))
1280                 rc = -ENODEV;
1281
1282         RETURN(rc);
1283 }
1284
1285 static int lfsck_layout_double_scan_result(const struct lu_env *env,
1286                                            struct lfsck_component *com,
1287                                            int rc)
1288 {
1289         struct lfsck_instance   *lfsck = com->lc_lfsck;
1290         struct lfsck_layout     *lo    = com->lc_file_ram;
1291         struct lfsck_bookmark   *bk    = &lfsck->li_bookmark_ram;
1292
1293         down_write(&com->lc_sem);
1294
1295         lo->ll_run_time_phase2 += cfs_duration_sec(cfs_time_current() +
1296                                 HALF_SEC - lfsck->li_time_last_checkpoint);
1297         lo->ll_time_last_checkpoint = cfs_time_current_sec();
1298         lo->ll_objs_checked_phase2 += com->lc_new_checked;
1299
1300         if (rc > 0) {
1301                 com->lc_journal = 0;
1302                 if (lo->ll_flags & LF_INCOMPLETE)
1303                         lo->ll_status = LS_PARTIAL;
1304                 else
1305                         lo->ll_status = LS_COMPLETED;
1306                 if (!(bk->lb_param & LPF_DRYRUN))
1307                         lo->ll_flags &= ~(LF_SCANNED_ONCE | LF_INCONSISTENT);
1308                 lo->ll_time_last_complete = lo->ll_time_last_checkpoint;
1309                 lo->ll_success_count++;
1310         } else if (rc == 0) {
1311                 lo->ll_status = lfsck->li_status;
1312                 if (lo->ll_status == 0)
1313                         lo->ll_status = LS_STOPPED;
1314         } else {
1315                 lo->ll_status = LS_FAILED;
1316         }
1317
1318         if (lo->ll_status != LS_PAUSED) {
1319                 spin_lock(&lfsck->li_lock);
1320                 list_del_init(&com->lc_link);
1321                 list_add_tail(&com->lc_link, &lfsck->li_list_idle);
1322                 spin_unlock(&lfsck->li_lock);
1323         }
1324
1325         rc = lfsck_layout_store(env, com);
1326
1327         up_write(&com->lc_sem);
1328
1329         return rc;
1330 }
1331
1332 static int lfsck_layout_lock(const struct lu_env *env,
1333                              struct lfsck_component *com,
1334                              struct dt_object *obj,
1335                              struct lustre_handle *lh, __u64 bits)
1336 {
1337         struct lfsck_thread_info        *info   = lfsck_env_info(env);
1338         ldlm_policy_data_t              *policy = &info->lti_policy;
1339         struct ldlm_res_id              *resid  = &info->lti_resid;
1340         struct lfsck_instance           *lfsck  = com->lc_lfsck;
1341         __u64                            flags  = LDLM_FL_ATOMIC_CB;
1342         int                              rc;
1343
1344         LASSERT(lfsck->li_namespace != NULL);
1345
1346         memset(policy, 0, sizeof(*policy));
1347         policy->l_inodebits.bits = bits;
1348         fid_build_reg_res_name(lfsck_dto2fid(obj), resid);
1349         rc = ldlm_cli_enqueue_local(lfsck->li_namespace, resid, LDLM_IBITS,
1350                                     policy, LCK_EX, &flags, ldlm_blocking_ast,
1351                                     ldlm_completion_ast, NULL, NULL, 0,
1352                                     LVB_T_NONE, NULL, lh);
1353         if (rc == ELDLM_OK) {
1354                 rc = 0;
1355         } else {
1356                 memset(lh, 0, sizeof(*lh));
1357                 rc = -EIO;
1358         }
1359
1360         return rc;
1361 }
1362
1363 static void lfsck_layout_unlock(struct lustre_handle *lh)
1364 {
1365         if (lustre_handle_is_used(lh)) {
1366                 ldlm_lock_decref(lh, LCK_EX);
1367                 memset(lh, 0, sizeof(*lh));
1368         }
1369 }
1370
1371 static int lfsck_layout_trans_stop(const struct lu_env *env,
1372                                    struct dt_device *dev,
1373                                    struct thandle *handle, int result)
1374 {
1375         int rc;
1376
1377         handle->th_result = result;
1378         rc = dt_trans_stop(env, dev, handle);
1379         if (rc > 0)
1380                 rc = 0;
1381         else if (rc == 0)
1382                 rc = 1;
1383
1384         return rc;
1385 }
1386
1387 static int lfsck_layout_scan_orphan(const struct lu_env *env,
1388                                     struct lfsck_component *com,
1389                                     struct lfsck_tgt_desc *ltd)
1390 {
1391         /* XXX: To be extended in other patch. */
1392
1393         return 0;
1394 }
1395
1396 /* For the MDT-object with dangling reference, we need to re-create
1397  * the missed OST-object with the known FID/owner information. */
1398 static int lfsck_layout_recreate_ostobj(const struct lu_env *env,
1399                                         struct lfsck_component *com,
1400                                         struct lfsck_layout_req *llr,
1401                                         struct lu_attr *la)
1402 {
1403         struct lfsck_thread_info        *info   = lfsck_env_info(env);
1404         struct filter_fid               *pfid   = &info->lti_new_pfid;
1405         struct dt_allocation_hint       *hint   = &info->lti_hint;
1406         struct dt_object                *parent = llr->llr_parent->llo_obj;
1407         struct dt_object                *child  = llr->llr_child;
1408         struct dt_device                *dev    = lfsck_obj2dt_dev(child);
1409         const struct lu_fid             *tfid   = lu_object_fid(&parent->do_lu);
1410         struct thandle                  *handle;
1411         struct lu_buf                   *buf;
1412         struct lustre_handle             lh     = { 0 };
1413         int                              rc;
1414         ENTRY;
1415
1416         CDEBUG(D_LFSCK, "Repair dangling reference for: parent "DFID
1417                ", child "DFID", OST-index %u, stripe-index %u, owner %u:%u\n",
1418                PFID(lfsck_dto2fid(parent)), PFID(lfsck_dto2fid(child)),
1419                llr->llr_ost_idx, llr->llr_lov_idx, la->la_uid, la->la_gid);
1420
1421         rc = lfsck_layout_lock(env, com, parent, &lh,
1422                                MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR);
1423         if (rc != 0)
1424                 RETURN(rc);
1425
1426         handle = dt_trans_create(env, dev);
1427         if (IS_ERR(handle))
1428                 GOTO(unlock1, rc = PTR_ERR(handle));
1429
1430         hint->dah_parent = NULL;
1431         hint->dah_mode = 0;
1432         pfid->ff_parent.f_seq = cpu_to_le64(tfid->f_seq);
1433         pfid->ff_parent.f_oid = cpu_to_le32(tfid->f_oid);
1434         pfid->ff_parent.f_ver = cpu_to_le32(llr->llr_lov_idx);
1435         buf = lfsck_buf_get(env, pfid, sizeof(struct filter_fid));
1436
1437         rc = dt_declare_create(env, child, la, hint, NULL, handle);
1438         if (rc != 0)
1439                 GOTO(stop, rc);
1440
1441         rc = dt_declare_xattr_set(env, child, buf, XATTR_NAME_FID,
1442                                   LU_XATTR_CREATE, handle);
1443         if (rc != 0)
1444                 GOTO(stop, rc);
1445
1446         rc = dt_trans_start(env, dev, handle);
1447         if (rc != 0)
1448                 GOTO(stop, rc);
1449
1450         dt_read_lock(env, parent, 0);
1451         if (unlikely(lu_object_is_dying(parent->do_lu.lo_header)))
1452                 GOTO(unlock2, rc = 1);
1453
1454         rc = dt_create(env, child, la, hint, NULL, handle);
1455         if (rc != 0)
1456                 GOTO(unlock2, rc);
1457
1458         rc = dt_xattr_set(env, child, buf, XATTR_NAME_FID, LU_XATTR_CREATE,
1459                           handle, BYPASS_CAPA);
1460
1461         GOTO(unlock2, rc);
1462
1463 unlock2:
1464         dt_read_unlock(env, parent);
1465
1466 stop:
1467         rc = lfsck_layout_trans_stop(env, dev, handle, rc);
1468
1469 unlock1:
1470         lfsck_layout_unlock(&lh);
1471
1472         return rc;
1473 }
1474
1475 /* If the OST-object does not recognize the MDT-object as its parent, and
1476  * there is no other MDT-object claims as its parent, then just trust the
1477  * given MDT-object as its parent. So update the OST-object filter_fid. */
1478 static int lfsck_layout_repair_unmatched_pair(const struct lu_env *env,
1479                                               struct lfsck_component *com,
1480                                               struct lfsck_layout_req *llr,
1481                                               const struct lu_attr *pla)
1482 {
1483         struct lfsck_thread_info        *info   = lfsck_env_info(env);
1484         struct filter_fid               *pfid   = &info->lti_new_pfid;
1485         struct lu_attr                  *tla    = &info->lti_la3;
1486         struct dt_object                *parent = llr->llr_parent->llo_obj;
1487         struct dt_object                *child  = llr->llr_child;
1488         struct dt_device                *dev    = lfsck_obj2dt_dev(child);
1489         const struct lu_fid             *tfid   = lu_object_fid(&parent->do_lu);
1490         struct thandle                  *handle;
1491         struct lu_buf                   *buf;
1492         struct lustre_handle             lh     = { 0 };
1493         int                              rc;
1494         ENTRY;
1495
1496         CDEBUG(D_LFSCK, "Repair unmatched MDT-OST pair for: parent "DFID
1497                ", child "DFID", OST-index %u, stripe-index %u, owner %u:%u\n",
1498                PFID(lfsck_dto2fid(parent)), PFID(lfsck_dto2fid(child)),
1499                llr->llr_ost_idx, llr->llr_lov_idx, pla->la_uid, pla->la_gid);
1500
1501         rc = lfsck_layout_lock(env, com, parent, &lh,
1502                                MDS_INODELOCK_LAYOUT | MDS_INODELOCK_XATTR);
1503         if (rc != 0)
1504                 RETURN(rc);
1505
1506         handle = dt_trans_create(env, dev);
1507         if (IS_ERR(handle))
1508                 GOTO(unlock1, rc = PTR_ERR(handle));
1509
1510         pfid->ff_parent.f_seq = cpu_to_le64(tfid->f_seq);
1511         pfid->ff_parent.f_oid = cpu_to_le32(tfid->f_oid);
1512         /* The ff_parent->f_ver is not the real parent fid->f_ver. Instead,
1513          * it is the OST-object index in the parent MDT-object layout. */
1514         pfid->ff_parent.f_ver = cpu_to_le32(llr->llr_lov_idx);
1515         buf = lfsck_buf_get(env, pfid, sizeof(struct filter_fid));
1516
1517         rc = dt_declare_xattr_set(env, child, buf, XATTR_NAME_FID, 0, handle);
1518         if (rc != 0)
1519                 GOTO(stop, rc);
1520
1521         tla->la_valid = LA_UID | LA_GID;
1522         tla->la_uid = pla->la_uid;
1523         tla->la_gid = pla->la_gid;
1524         rc = dt_declare_attr_set(env, child, tla, handle);
1525         if (rc != 0)
1526                 GOTO(stop, rc);
1527
1528         rc = dt_trans_start(env, dev, handle);
1529         if (rc != 0)
1530                 GOTO(stop, rc);
1531
1532         dt_write_lock(env, parent, 0);
1533         if (unlikely(lu_object_is_dying(parent->do_lu.lo_header)))
1534                 GOTO(unlock2, rc = 1);
1535
1536         rc = dt_xattr_set(env, child, buf, XATTR_NAME_FID, 0, handle,
1537                           BYPASS_CAPA);
1538         if (rc != 0)
1539                 GOTO(unlock2, rc);
1540
1541         /* Get the latest parent's owner. */
1542         rc = dt_attr_get(env, parent, tla, BYPASS_CAPA);
1543         if (rc != 0)
1544                 GOTO(unlock2, rc);
1545
1546         tla->la_valid = LA_UID | LA_GID;
1547         rc = dt_attr_set(env, child, tla, handle, BYPASS_CAPA);
1548
1549         GOTO(unlock2, rc);
1550
1551 unlock2:
1552         dt_write_unlock(env, parent);
1553
1554 stop:
1555         rc = lfsck_layout_trans_stop(env, dev, handle, rc);
1556
1557 unlock1:
1558         lfsck_layout_unlock(&lh);
1559
1560         return rc;
1561 }
1562
1563 /* Check whether the OST-object correctly back points to the
1564  * MDT-object (@parent) via the XATTR_NAME_FID xattr (@pfid). */
1565 static int lfsck_layout_check_parent(const struct lu_env *env,
1566                                      struct lfsck_component *com,
1567                                      struct dt_object *parent,
1568                                      const struct lu_fid *pfid,
1569                                      const struct lu_fid *cfid,
1570                                      const struct lu_attr *pla,
1571                                      const struct lu_attr *cla,
1572                                      struct lfsck_layout_req *llr,
1573                                      struct lu_buf *lov_ea, __u32 idx)
1574 {
1575         struct lfsck_thread_info        *info   = lfsck_env_info(env);
1576         struct lu_buf                   *buf    = &info->lti_big_buf;
1577         struct dt_object                *tobj;
1578         struct lov_mds_md_v1            *lmm;
1579         struct lov_ost_data_v1          *objs;
1580         int                              rc;
1581         int                              i;
1582         __u32                            magic;
1583         __u16                            count;
1584         ENTRY;
1585
1586         if (fid_is_zero(pfid)) {
1587                 /* client never wrote. */
1588                 if (cla->la_size == 0 && cla->la_blocks == 0)
1589                         RETURN(0);
1590
1591                 RETURN(LLIT_UNMATCHED_PAIR);
1592         }
1593
1594         if (unlikely(!fid_is_sane(pfid)))
1595                 RETURN(LLIT_UNMATCHED_PAIR);
1596
1597         if (lu_fid_eq(pfid, lu_object_fid(&parent->do_lu))) {
1598                 if (llr->llr_lov_idx == idx)
1599                         RETURN(0);
1600
1601                 RETURN(LLIT_UNMATCHED_PAIR);
1602         }
1603
1604         tobj = lfsck_object_find(env, com->lc_lfsck, pfid);
1605         if (tobj == NULL)
1606                 RETURN(LLIT_UNMATCHED_PAIR);
1607
1608         if (IS_ERR(tobj))
1609                 RETURN(PTR_ERR(tobj));
1610
1611         if (!dt_object_exists(tobj))
1612                 GOTO(out, rc = LLIT_UNMATCHED_PAIR);
1613
1614         /* Load the tobj's layout EA, in spite of it is a local MDT-object or
1615          * remote one on another MDT. Then check whether the given OST-object
1616          * is in such layout. If yes, it is multiple referenced, otherwise it
1617          * is unmatched referenced case. */
1618         rc = lfsck_layout_get_lovea(env, tobj, buf, NULL);
1619         if (rc == 0)
1620                 GOTO(out, rc = LLIT_UNMATCHED_PAIR);
1621
1622         if (rc < 0)
1623                 GOTO(out, rc);
1624
1625         lmm = buf->lb_buf;
1626         rc = lfsck_layout_verify_header(lmm);
1627         if (rc != 0)
1628                 GOTO(out, rc);
1629
1630         /* Currently, we only support LOV_MAGIC_V1/LOV_MAGIC_V3 which has
1631          * been verified in lfsck_layout_verify_header() already. If some
1632          * new magic introduced in the future, then layout LFSCK needs to
1633          * be updated also. */
1634         magic = le32_to_cpu(lmm->lmm_magic);
1635         if (magic == LOV_MAGIC_V1) {
1636                 objs = &(lmm->lmm_objects[0]);
1637         } else {
1638                 LASSERT(magic == LOV_MAGIC_V3);
1639                 objs = &((struct lov_mds_md_v3 *)lmm)->lmm_objects[0];
1640         }
1641
1642         count = le16_to_cpu(lmm->lmm_stripe_count);
1643         for (i = 0; i < count; i++, objs++) {
1644                 struct lu_fid           *tfid   = &info->lti_fid2;
1645                 struct ost_id           *oi     = &info->lti_oi;
1646
1647                 ostid_le_to_cpu(&objs->l_ost_oi, oi);
1648                 ostid_to_fid(tfid, oi, le32_to_cpu(objs->l_ost_idx));
1649                 if (lu_fid_eq(cfid, tfid)) {
1650                         *lov_ea = *buf;
1651
1652                         GOTO(out, rc = LLIT_MULTIPLE_REFERENCED);
1653                 }
1654         }
1655
1656         GOTO(out, rc = LLIT_UNMATCHED_PAIR);
1657
1658 out:
1659         lfsck_object_put(env, tobj);
1660
1661         return rc;
1662 }
1663
1664 static int lfsck_layout_assistant_handle_one(const struct lu_env *env,
1665                                              struct lfsck_component *com,
1666                                              struct lfsck_layout_req *llr)
1667 {
1668         struct lfsck_layout                  *lo     = com->lc_file_ram;
1669         struct lfsck_thread_info             *info   = lfsck_env_info(env);
1670         struct filter_fid_old                *pea    = &info->lti_old_pfid;
1671         struct lu_fid                        *pfid   = &info->lti_fid;
1672         struct lu_buf                        *buf;
1673         struct dt_object                     *parent = llr->llr_parent->llo_obj;
1674         struct dt_object                     *child  = llr->llr_child;
1675         struct lu_attr                       *pla    = &info->lti_la;
1676         struct lu_attr                       *cla    = &info->lti_la2;
1677         struct lfsck_instance                *lfsck  = com->lc_lfsck;
1678         struct lfsck_bookmark                *bk     = &lfsck->li_bookmark_ram;
1679         enum lfsck_layout_inconsistency_type  type   = LLIT_NONE;
1680         __u32                                 idx    = 0;
1681         int                                   rc;
1682         ENTRY;
1683
1684         rc = dt_attr_get(env, parent, pla, BYPASS_CAPA);
1685         if (rc != 0) {
1686                 if (lu_object_is_dying(parent->do_lu.lo_header))
1687                         RETURN(0);
1688
1689                 GOTO(out, rc);
1690         }
1691
1692         rc = dt_attr_get(env, child, cla, BYPASS_CAPA);
1693         if (rc == -ENOENT) {
1694                 if (lu_object_is_dying(parent->do_lu.lo_header))
1695                         RETURN(0);
1696
1697                 type = LLIT_DANGLING;
1698                 goto repair;
1699         }
1700
1701         if (rc != 0)
1702                 GOTO(out, rc);
1703
1704         buf = lfsck_buf_get(env, pea, sizeof(struct filter_fid_old));
1705         rc= dt_xattr_get(env, child, buf, XATTR_NAME_FID, BYPASS_CAPA);
1706         if (unlikely(rc >= 0 && rc != sizeof(struct filter_fid_old) &&
1707                      rc != sizeof(struct filter_fid))) {
1708                 type = LLIT_UNMATCHED_PAIR;
1709                 goto repair;
1710         }
1711
1712         if (rc < 0 && rc != -ENODATA)
1713                 GOTO(out, rc);
1714
1715         if (rc == -ENODATA) {
1716                 fid_zero(pfid);
1717         } else {
1718                 fid_le_to_cpu(pfid, &pea->ff_parent);
1719                 /* OST-object does not save parent FID::f_ver, instead,
1720                  * the OST-object index in the parent MDT-object layout
1721                  * EA reuses the pfid->f_ver. */
1722                 idx = pfid->f_ver;
1723                 pfid->f_ver = 0;
1724         }
1725
1726         rc = lfsck_layout_check_parent(env, com, parent, pfid,
1727                                        lu_object_fid(&child->do_lu),
1728                                        pla, cla, llr, buf, idx);
1729         if (rc > 0) {
1730                 type = rc;
1731                 goto repair;
1732         }
1733
1734         if (rc < 0)
1735                 GOTO(out, rc);
1736
1737         /* XXX: other inconsistency will be checked in other patches. */
1738
1739 repair:
1740         if (bk->lb_param & LPF_DRYRUN) {
1741                 if (type != LLIT_NONE)
1742                         GOTO(out, rc = 1);
1743                 else
1744                         GOTO(out, rc = 0);
1745         }
1746
1747         switch (type) {
1748         case LLIT_DANGLING:
1749                 memset(cla, 0, sizeof(*cla));
1750                 cla->la_uid = pla->la_uid;
1751                 cla->la_gid = pla->la_gid;
1752                 cla->la_mode = S_IFREG | 0666;
1753                 cla->la_valid = LA_TYPE | LA_MODE | LA_UID | LA_GID |
1754                                 LA_ATIME | LA_MTIME | LA_CTIME;
1755                 rc = lfsck_layout_recreate_ostobj(env, com, llr, cla);
1756                 break;
1757         case LLIT_UNMATCHED_PAIR:
1758                 rc = lfsck_layout_repair_unmatched_pair(env, com, llr, pla);
1759                 break;
1760
1761         /* XXX: other inconsistency will be fixed in other patches. */
1762
1763         case LLIT_MULTIPLE_REFERENCED:
1764                 break;
1765         case LLIT_INCONSISTENT_OWNER:
1766                 break;
1767         default:
1768                 rc = 0;
1769                 break;
1770         }
1771
1772         GOTO(out, rc);
1773
1774 out:
1775         down_write(&com->lc_sem);
1776         if (rc < 0) {
1777                 /* If cannot touch the target server,
1778                  * mark the LFSCK as INCOMPLETE. */
1779                 if (rc == -ENOTCONN || rc == -ESHUTDOWN || rc == -ETIMEDOUT ||
1780                     rc == -EHOSTDOWN || rc == -EHOSTUNREACH) {
1781                         lo->ll_flags |= LF_INCOMPLETE;
1782                         lo->ll_objs_skipped++;
1783                         rc = 0;
1784                 } else {
1785                         lo->ll_objs_failed_phase1++;
1786                 }
1787         } else if (rc > 0) {
1788                 LASSERTF(type > LLIT_NONE && type <= LLIT_MAX,
1789                          "unknown type = %d\n", type);
1790
1791                 lo->ll_objs_repaired[type - 1]++;
1792         }
1793         up_write(&com->lc_sem);
1794
1795         return rc;
1796 }
1797
1798 static int lfsck_layout_assistant(void *args)
1799 {
1800         struct lfsck_thread_args        *lta     = args;
1801         struct lu_env                   *env     = &lta->lta_env;
1802         struct lfsck_component          *com     = lta->lta_com;
1803         struct lfsck_instance           *lfsck   = lta->lta_lfsck;
1804         struct lfsck_bookmark           *bk      = &lfsck->li_bookmark_ram;
1805         struct lfsck_position           *pos     = &com->lc_pos_start;
1806         struct lfsck_thread_info        *info    = lfsck_env_info(env);
1807         struct lfsck_request            *lr      = &info->lti_lr;
1808         struct lfsck_layout_master_data *llmd    = com->lc_data;
1809         struct ptlrpc_thread            *mthread = &lfsck->li_thread;
1810         struct ptlrpc_thread            *athread = &llmd->llmd_thread;
1811         struct lfsck_layout_req         *llr;
1812         struct l_wait_info               lwi     = { 0 };
1813         int                              rc      = 0;
1814         int                              rc1     = 0;
1815         __u32                            flags;
1816         ENTRY;
1817
1818         if (lta->lta_lsp->lsp_start != NULL)
1819                 flags  = lta->lta_lsp->lsp_start->ls_flags;
1820         else
1821                 flags = bk->lb_param;
1822         memset(lr, 0, sizeof(*lr));
1823         lr->lr_event = LE_START;
1824         lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
1825         lr->lr_valid = LSV_SPEED_LIMIT | LSV_ERROR_HANDLE | LSV_DRYRUN |
1826                        LSV_ASYNC_WINDOWS;
1827         lr->lr_speed = bk->lb_speed_limit;
1828         lr->lr_version = bk->lb_version;
1829         lr->lr_param = bk->lb_param;
1830         lr->lr_async_windows = bk->lb_async_windows;
1831         if (pos->lp_oit_cookie <= 1)
1832                 lr->lr_param |= LPF_RESET;
1833
1834         rc = lfsck_layout_master_notify_others(env, com, lr, flags);
1835         if (rc != 0) {
1836                 CERROR("%s: fail to notify others for layout start: rc = %d\n",
1837                        lfsck_lfsck2name(lfsck), rc);
1838                 GOTO(fini, rc);
1839         }
1840
1841         spin_lock(&llmd->llmd_lock);
1842         thread_set_flags(athread, SVC_RUNNING);
1843         spin_unlock(&llmd->llmd_lock);
1844         wake_up_all(&mthread->t_ctl_waitq);
1845
1846         while (1) {
1847                 while (!list_empty(&llmd->llmd_req_list)) {
1848                         bool wakeup = false;
1849
1850                         if (unlikely(llmd->llmd_exit))
1851                                 GOTO(cleanup1, rc = llmd->llmd_post_result);
1852
1853                         llr = list_entry(llmd->llmd_req_list.next,
1854                                          struct lfsck_layout_req,
1855                                          llr_list);
1856                         /* Only the lfsck_layout_assistant thread itself can
1857                          * remove the "llr" from the head of the list, LFSCK
1858                          * engine thread only inserts other new "lld" at the
1859                          * end of the list. So it is safe to handle current
1860                          * "llr" without the spin_lock. */
1861                         rc = lfsck_layout_assistant_handle_one(env, com, llr);
1862                         spin_lock(&llmd->llmd_lock);
1863                         list_del_init(&llr->llr_list);
1864                         if (bk->lb_async_windows != 0 &&
1865                             llmd->llmd_prefetched >= bk->lb_async_windows)
1866                                 wakeup = true;
1867
1868                         llmd->llmd_prefetched--;
1869                         spin_unlock(&llmd->llmd_lock);
1870                         if (wakeup)
1871                                 wake_up_all(&mthread->t_ctl_waitq);
1872
1873                         lfsck_layout_req_fini(env, llr);
1874                         if (rc < 0 && bk->lb_param & LPF_FAILOUT)
1875                                 GOTO(cleanup1, rc);
1876                 }
1877
1878                 /* Wakeup the master engine if it is waiting in checkpoint. */
1879                 wake_up_all(&mthread->t_ctl_waitq);
1880
1881                 l_wait_event(athread->t_ctl_waitq,
1882                              !lfsck_layout_req_empty(llmd) ||
1883                              llmd->llmd_exit ||
1884                              llmd->llmd_to_post ||
1885                              llmd->llmd_to_double_scan,
1886                              &lwi);
1887
1888                 if (unlikely(llmd->llmd_exit))
1889                         GOTO(cleanup1, rc = llmd->llmd_post_result);
1890
1891                 if (!list_empty(&llmd->llmd_req_list))
1892                         continue;
1893
1894                 if (llmd->llmd_to_post) {
1895                         llmd->llmd_to_post = 0;
1896                         LASSERT(llmd->llmd_post_result > 0);
1897
1898                         memset(lr, 0, sizeof(*lr));
1899                         lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
1900                         lr->lr_event = LE_PHASE1_DONE;
1901                         lr->lr_status = llmd->llmd_post_result;
1902                         rc = lfsck_layout_master_notify_others(env, com, lr, 0);
1903                         if (rc != 0)
1904                                 CERROR("%s: failed to notify others "
1905                                        "for layout post: rc = %d\n",
1906                                        lfsck_lfsck2name(lfsck), rc);
1907
1908                         /* Wakeup the master engine to go ahead. */
1909                         wake_up_all(&mthread->t_ctl_waitq);
1910                 }
1911
1912                 if (llmd->llmd_to_double_scan) {
1913                         llmd->llmd_to_double_scan = 0;
1914                         atomic_inc(&lfsck->li_double_scan_count);
1915                         llmd->llmd_in_double_scan = 1;
1916                         wake_up_all(&mthread->t_ctl_waitq);
1917
1918                         while (llmd->llmd_in_double_scan) {
1919                                 struct lfsck_tgt_descs  *ltds =
1920                                                         &lfsck->li_ost_descs;
1921                                 struct lfsck_tgt_desc   *ltd;
1922
1923                                 rc = lfsck_layout_master_query_others(env, com);
1924                                 if (lfsck_layout_master_to_orphan(llmd))
1925                                         goto orphan;
1926
1927                                 if (rc < 0)
1928                                         GOTO(cleanup2, rc);
1929
1930                                 /* Pull LFSCK status on related targets once
1931                                  * per 30 seconds if we are not notified. */
1932                                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(30),
1933                                                            cfs_time_seconds(1),
1934                                                            NULL, NULL);
1935                                 rc = l_wait_event(athread->t_ctl_waitq,
1936                                         lfsck_layout_master_to_orphan(llmd) ||
1937                                         llmd->llmd_exit ||
1938                                         !thread_is_running(mthread),
1939                                         &lwi);
1940
1941                                 if (unlikely(llmd->llmd_exit ||
1942                                              !thread_is_running(mthread)))
1943                                         GOTO(cleanup2, rc = 0);
1944
1945                                 if (rc == -ETIMEDOUT)
1946                                         continue;
1947
1948                                 if (rc < 0)
1949                                         GOTO(cleanup2, rc);
1950
1951 orphan:
1952                                 spin_lock(&ltds->ltd_lock);
1953                                 while (!list_empty(
1954                                                 &llmd->llmd_ost_phase2_list)) {
1955                                         ltd = list_entry(
1956                                               llmd->llmd_ost_phase2_list.next,
1957                                               struct lfsck_tgt_desc,
1958                                               ltd_layout_phase_list);
1959                                         list_del_init(
1960                                                 &ltd->ltd_layout_phase_list);
1961                                         spin_unlock(&ltds->ltd_lock);
1962
1963                                         rc = lfsck_layout_scan_orphan(env, com,
1964                                                                       ltd);
1965                                         if (rc != 0 &&
1966                                             bk->lb_param & LPF_FAILOUT)
1967                                                 GOTO(cleanup2, rc);
1968
1969                                         if (unlikely(llmd->llmd_exit ||
1970                                                 !thread_is_running(mthread)))
1971                                                 GOTO(cleanup2, rc = 0);
1972
1973                                         spin_lock(&ltds->ltd_lock);
1974                                 }
1975
1976                                 if (list_empty(&llmd->llmd_ost_phase1_list)) {
1977                                         spin_unlock(&ltds->ltd_lock);
1978                                         GOTO(cleanup2, rc = 1);
1979                                 }
1980                                 spin_unlock(&ltds->ltd_lock);
1981                         }
1982                 }
1983         }
1984
1985 cleanup1:
1986         /* Cleanup the unfinished requests. */
1987         spin_lock(&llmd->llmd_lock);
1988         if (rc < 0)
1989                 llmd->llmd_assistant_status = rc;
1990
1991         while (!list_empty(&llmd->llmd_req_list)) {
1992                 llr = list_entry(llmd->llmd_req_list.next,
1993                                  struct lfsck_layout_req,
1994                                  llr_list);
1995                 list_del_init(&llr->llr_list);
1996                 llmd->llmd_prefetched--;
1997                 spin_unlock(&llmd->llmd_lock);
1998                 lfsck_layout_req_fini(env, llr);
1999                 spin_lock(&llmd->llmd_lock);
2000         }
2001         spin_unlock(&llmd->llmd_lock);
2002
2003         LASSERTF(llmd->llmd_prefetched == 0, "unmatched prefeteched objs %d\n",
2004                  llmd->llmd_prefetched);
2005
2006 cleanup2:
2007         memset(lr, 0, sizeof(*lr));
2008         lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
2009         if (rc > 0) {
2010                 lr->lr_event = LE_PHASE2_DONE;
2011                 flags = 0;
2012                 lr->lr_status = rc;
2013         } else if (rc == 0) {
2014                 lr->lr_event = LE_STOP;
2015                 if (lfsck->li_status == LS_PAUSED ||
2016                     lfsck->li_status == LS_CO_PAUSED) {
2017                         flags = 0;
2018                         lr->lr_status = LS_CO_PAUSED;
2019                 } else if (lfsck->li_status == LS_STOPPED ||
2020                          lfsck->li_status == LS_CO_STOPPED) {
2021                         flags = lfsck->li_flags;
2022                         if (flags & LPF_BROADCAST)
2023                                 lr->lr_status = LS_STOPPED;
2024                         else
2025                                 lr->lr_status = LS_CO_STOPPED;
2026                 } else {
2027                         LBUG();
2028                 }
2029         } else {
2030                 lr->lr_event = LE_STOP;
2031                 flags = 0;
2032                 lr->lr_status = LS_CO_FAILED;
2033         }
2034
2035         rc1 = lfsck_layout_master_notify_others(env, com, lr, flags);
2036         if (rc1 != 0) {
2037                 CERROR("%s: failed to notify others for layout quit: rc = %d\n",
2038                        lfsck_lfsck2name(lfsck), rc1);
2039                 rc = rc1;
2040         }
2041
2042         /* Under force exit case, some requests may be just freed without
2043          * verification, those objects should be re-handled when next run.
2044          * So not update the on-disk tracing file under such case. */
2045         if (!llmd->llmd_exit)
2046                 rc1 = lfsck_layout_double_scan_result(env, com, rc);
2047
2048 fini:
2049         if (llmd->llmd_in_double_scan)
2050                 atomic_dec(&lfsck->li_double_scan_count);
2051
2052         spin_lock(&llmd->llmd_lock);
2053         llmd->llmd_assistant_status = (rc1 != 0 ? rc1 : rc);
2054         thread_set_flags(athread, SVC_STOPPED);
2055         wake_up_all(&mthread->t_ctl_waitq);
2056         spin_unlock(&llmd->llmd_lock);
2057         lfsck_thread_args_fini(lta);
2058
2059         return rc;
2060 }
2061
2062 static int
2063 lfsck_layout_slave_async_interpret(const struct lu_env *env,
2064                                    struct ptlrpc_request *req,
2065                                    void *args, int rc)
2066 {
2067         struct lfsck_layout_slave_async_args *llsaa = args;
2068         struct obd_export                    *exp   = llsaa->llsaa_exp;
2069         struct lfsck_component               *com   = llsaa->llsaa_com;
2070         struct lfsck_layout_slave_target     *llst  = llsaa->llsaa_llst;
2071         struct lfsck_layout_slave_data       *llsd  = com->lc_data;
2072         bool                                  done  = false;
2073
2074         if (rc != 0) {
2075                 /* It is quite probably caused by target crash,
2076                  * to make the LFSCK can go ahead, assume that
2077                  * the target finished the LFSCK prcoessing. */
2078                 done = true;
2079         } else {
2080                 struct lfsck_reply *lr;
2081
2082                 lr = req_capsule_server_get(&req->rq_pill, &RMF_LFSCK_REPLY);
2083                 if (lr->lr_status != LS_SCANNING_PHASE1 &&
2084                     lr->lr_status != LS_SCANNING_PHASE2)
2085                         done = true;
2086         }
2087         if (done)
2088                 lfsck_layout_llst_del(llsd, llst);
2089         lfsck_layout_llst_put(llst);
2090         lfsck_component_put(env, com);
2091         class_export_put(exp);
2092
2093         return 0;
2094 }
2095
2096 static int lfsck_layout_async_query(const struct lu_env *env,
2097                                     struct lfsck_component *com,
2098                                     struct obd_export *exp,
2099                                     struct lfsck_layout_slave_target *llst,
2100                                     struct lfsck_request *lr,
2101                                     struct ptlrpc_request_set *set)
2102 {
2103         struct lfsck_layout_slave_async_args *llsaa;
2104         struct ptlrpc_request                *req;
2105         struct lfsck_request                 *tmp;
2106         int                                   rc;
2107         ENTRY;
2108
2109         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_LFSCK_QUERY);
2110         if (req == NULL)
2111                 RETURN(-ENOMEM);
2112
2113         rc = ptlrpc_request_pack(req, LUSTRE_OBD_VERSION, LFSCK_QUERY);
2114         if (rc != 0) {
2115                 ptlrpc_request_free(req);
2116                 RETURN(rc);
2117         }
2118
2119         tmp = req_capsule_client_get(&req->rq_pill, &RMF_LFSCK_REQUEST);
2120         *tmp = *lr;
2121         ptlrpc_request_set_replen(req);
2122
2123         llsaa = ptlrpc_req_async_args(req);
2124         llsaa->llsaa_exp = exp;
2125         llsaa->llsaa_com = lfsck_component_get(com);
2126         llsaa->llsaa_llst = llst;
2127         req->rq_interpret_reply = lfsck_layout_slave_async_interpret;
2128         ptlrpc_set_add_req(set, req);
2129
2130         RETURN(0);
2131 }
2132
2133 static int lfsck_layout_async_notify(const struct lu_env *env,
2134                                      struct obd_export *exp,
2135                                      struct lfsck_request *lr,
2136                                      struct ptlrpc_request_set *set)
2137 {
2138         struct ptlrpc_request   *req;
2139         struct lfsck_request    *tmp;
2140         int                      rc;
2141         ENTRY;
2142
2143         req = ptlrpc_request_alloc(class_exp2cliimp(exp), &RQF_LFSCK_NOTIFY);
2144         if (req == NULL)
2145                 RETURN(-ENOMEM);
2146
2147         rc = ptlrpc_request_pack(req, LUSTRE_OBD_VERSION, LFSCK_NOTIFY);
2148         if (rc != 0) {
2149                 ptlrpc_request_free(req);
2150                 RETURN(rc);
2151         }
2152
2153         tmp = req_capsule_client_get(&req->rq_pill, &RMF_LFSCK_REQUEST);
2154         *tmp = *lr;
2155         ptlrpc_request_set_replen(req);
2156         ptlrpc_set_add_req(set, req);
2157
2158         RETURN(0);
2159 }
2160
2161 static int
2162 lfsck_layout_slave_query_master(const struct lu_env *env,
2163                                 struct lfsck_component *com)
2164 {
2165         struct lfsck_request             *lr    = &lfsck_env_info(env)->lti_lr;
2166         struct lfsck_instance            *lfsck = com->lc_lfsck;
2167         struct lfsck_layout_slave_data   *llsd  = com->lc_data;
2168         struct lfsck_layout_slave_target *llst;
2169         struct obd_export                *exp;
2170         struct ptlrpc_request_set        *set;
2171         int                               cnt   = 0;
2172         int                               rc    = 0;
2173         int                               rc1   = 0;
2174         ENTRY;
2175
2176         set = ptlrpc_prep_set();
2177         if (set == NULL)
2178                 RETURN(-ENOMEM);
2179
2180         memset(lr, 0, sizeof(*lr));
2181         lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
2182         lr->lr_event = LE_QUERY;
2183         lr->lr_active = LT_LAYOUT;
2184
2185         llsd->llsd_touch_gen++;
2186         spin_lock(&llsd->llsd_lock);
2187         while (!list_empty(&llsd->llsd_master_list)) {
2188                 llst = list_entry(llsd->llsd_master_list.next,
2189                                   struct lfsck_layout_slave_target,
2190                                   llst_list);
2191                 if (llst->llst_gen == llsd->llsd_touch_gen)
2192                         break;
2193
2194                 llst->llst_gen = llsd->llsd_touch_gen;
2195                 list_del(&llst->llst_list);
2196                 list_add_tail(&llst->llst_list,
2197                               &llsd->llsd_master_list);
2198                 atomic_inc(&llst->llst_ref);
2199                 spin_unlock(&llsd->llsd_lock);
2200
2201                 exp = lustre_find_lwp_by_index(lfsck->li_obd->obd_name,
2202                                                llst->llst_index);
2203                 if (exp == NULL) {
2204                         lfsck_layout_llst_del(llsd, llst);
2205                         lfsck_layout_llst_put(llst);
2206                         spin_lock(&llsd->llsd_lock);
2207                         continue;
2208                 }
2209
2210                 rc = lfsck_layout_async_query(env, com, exp, llst, lr, set);
2211                 if (rc != 0) {
2212                         CERROR("%s: slave fail to query %s for layout: "
2213                                "rc = %d\n", lfsck_lfsck2name(lfsck),
2214                                exp->exp_obd->obd_name, rc);
2215                         rc1 = rc;
2216                         lfsck_layout_llst_put(llst);
2217                         class_export_put(exp);
2218                 } else {
2219                         cnt++;
2220                 }
2221                 spin_lock(&llsd->llsd_lock);
2222         }
2223         spin_unlock(&llsd->llsd_lock);
2224
2225         if (cnt > 0)
2226                 rc = ptlrpc_set_wait(set);
2227         ptlrpc_set_destroy(set);
2228
2229         RETURN(rc1 != 0 ? rc1 : rc);
2230 }
2231
2232 static void
2233 lfsck_layout_slave_notify_master(const struct lu_env *env,
2234                                  struct lfsck_component *com,
2235                                  enum lfsck_events event, int result)
2236 {
2237         struct lfsck_instance            *lfsck = com->lc_lfsck;
2238         struct lfsck_layout_slave_data   *llsd  = com->lc_data;
2239         struct lfsck_request             *lr    = &lfsck_env_info(env)->lti_lr;
2240         struct lfsck_layout_slave_target *llst;
2241         struct obd_export                *exp;
2242         struct ptlrpc_request_set        *set;
2243         int                               cnt   = 0;
2244         int                               rc;
2245         ENTRY;
2246
2247         set = ptlrpc_prep_set();
2248         if (set == NULL)
2249                 RETURN_EXIT;
2250
2251         memset(lr, 0, sizeof(*lr));
2252         lr->lr_event = event;
2253         lr->lr_flags = LEF_FROM_OST;
2254         lr->lr_status = result;
2255         lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
2256         lr->lr_active = LT_LAYOUT;
2257         llsd->llsd_touch_gen++;
2258         spin_lock(&llsd->llsd_lock);
2259         while (!list_empty(&llsd->llsd_master_list)) {
2260                 llst = list_entry(llsd->llsd_master_list.next,
2261                                   struct lfsck_layout_slave_target,
2262                                   llst_list);
2263                 if (llst->llst_gen == llsd->llsd_touch_gen)
2264                         break;
2265
2266                 llst->llst_gen = llsd->llsd_touch_gen;
2267                 list_del(&llst->llst_list);
2268                 list_add_tail(&llst->llst_list,
2269                               &llsd->llsd_master_list);
2270                 atomic_inc(&llst->llst_ref);
2271                 spin_unlock(&llsd->llsd_lock);
2272
2273                 exp = lustre_find_lwp_by_index(lfsck->li_obd->obd_name,
2274                                                llst->llst_index);
2275                 if (exp == NULL) {
2276                         lfsck_layout_llst_del(llsd, llst);
2277                         lfsck_layout_llst_put(llst);
2278                         spin_lock(&llsd->llsd_lock);
2279                         continue;
2280                 }
2281
2282                 rc = lfsck_layout_async_notify(env, exp, lr, set);
2283                 if (rc != 0)
2284                         CERROR("%s: slave fail to notify %s for layout: "
2285                                "rc = %d\n", lfsck_lfsck2name(lfsck),
2286                                exp->exp_obd->obd_name, rc);
2287                 else
2288                         cnt++;
2289                 lfsck_layout_llst_put(llst);
2290                 class_export_put(exp);
2291                 spin_lock(&llsd->llsd_lock);
2292         }
2293         spin_unlock(&llsd->llsd_lock);
2294
2295         if (cnt > 0)
2296                 rc = ptlrpc_set_wait(set);
2297
2298         ptlrpc_set_destroy(set);
2299
2300         RETURN_EXIT;
2301 }
2302
2303 /* layout APIs */
2304
2305 static int lfsck_layout_reset(const struct lu_env *env,
2306                               struct lfsck_component *com, bool init)
2307 {
2308         struct lfsck_layout     *lo    = com->lc_file_ram;
2309         int                      rc;
2310
2311         down_write(&com->lc_sem);
2312         if (init) {
2313                 memset(lo, 0, com->lc_file_size);
2314         } else {
2315                 __u32 count = lo->ll_success_count;
2316                 __u64 last_time = lo->ll_time_last_complete;
2317
2318                 memset(lo, 0, com->lc_file_size);
2319                 lo->ll_success_count = count;
2320                 lo->ll_time_last_complete = last_time;
2321         }
2322
2323         lo->ll_magic = LFSCK_LAYOUT_MAGIC;
2324         lo->ll_status = LS_INIT;
2325
2326         rc = lfsck_layout_store(env, com);
2327         up_write(&com->lc_sem);
2328
2329         return rc;
2330 }
2331
2332 static void lfsck_layout_fail(const struct lu_env *env,
2333                               struct lfsck_component *com, bool new_checked)
2334 {
2335         struct lfsck_layout *lo = com->lc_file_ram;
2336
2337         down_write(&com->lc_sem);
2338         if (new_checked)
2339                 com->lc_new_checked++;
2340         lo->ll_objs_failed_phase1++;
2341         if (lo->ll_pos_first_inconsistent == 0) {
2342                 struct lfsck_instance *lfsck = com->lc_lfsck;
2343
2344                 lo->ll_pos_first_inconsistent =
2345                         lfsck->li_obj_oit->do_index_ops->dio_it.store(env,
2346                                                         lfsck->li_di_oit);
2347         }
2348         up_write(&com->lc_sem);
2349 }
2350
2351 static int lfsck_layout_master_checkpoint(const struct lu_env *env,
2352                                           struct lfsck_component *com, bool init)
2353 {
2354         struct lfsck_instance           *lfsck   = com->lc_lfsck;
2355         struct lfsck_layout             *lo      = com->lc_file_ram;
2356         struct lfsck_layout_master_data *llmd    = com->lc_data;
2357         struct ptlrpc_thread            *mthread = &lfsck->li_thread;
2358         struct ptlrpc_thread            *athread = &llmd->llmd_thread;
2359         struct l_wait_info               lwi     = { 0 };
2360         int                              rc;
2361
2362         if (com->lc_new_checked == 0 && !init)
2363                 return 0;
2364
2365         l_wait_event(mthread->t_ctl_waitq,
2366                      list_empty(&llmd->llmd_req_list) ||
2367                      !thread_is_running(mthread) ||
2368                      thread_is_stopped(athread),
2369                      &lwi);
2370
2371         if (!thread_is_running(mthread) || thread_is_stopped(athread))
2372                 return 0;
2373
2374         down_write(&com->lc_sem);
2375         if (init) {
2376                 lo->ll_pos_latest_start = lfsck->li_pos_current.lp_oit_cookie;
2377         } else {
2378                 lo->ll_pos_last_checkpoint =
2379                                         lfsck->li_pos_current.lp_oit_cookie;
2380                 lo->ll_run_time_phase1 += cfs_duration_sec(cfs_time_current() +
2381                                 HALF_SEC - lfsck->li_time_last_checkpoint);
2382                 lo->ll_time_last_checkpoint = cfs_time_current_sec();
2383                 lo->ll_objs_checked_phase1 += com->lc_new_checked;
2384                 com->lc_new_checked = 0;
2385         }
2386
2387         rc = lfsck_layout_store(env, com);
2388         up_write(&com->lc_sem);
2389
2390         return rc;
2391 }
2392
2393 static int lfsck_layout_slave_checkpoint(const struct lu_env *env,
2394                                          struct lfsck_component *com, bool init)
2395 {
2396         struct lfsck_instance   *lfsck = com->lc_lfsck;
2397         struct lfsck_layout     *lo    = com->lc_file_ram;
2398         int                      rc;
2399
2400         if (com->lc_new_checked == 0 && !init)
2401                 return 0;
2402
2403         down_write(&com->lc_sem);
2404
2405         if (init) {
2406                 lo->ll_pos_latest_start = lfsck->li_pos_current.lp_oit_cookie;
2407         } else {
2408                 lo->ll_pos_last_checkpoint =
2409                                         lfsck->li_pos_current.lp_oit_cookie;
2410                 lo->ll_run_time_phase1 += cfs_duration_sec(cfs_time_current() +
2411                                 HALF_SEC - lfsck->li_time_last_checkpoint);
2412                 lo->ll_time_last_checkpoint = cfs_time_current_sec();
2413                 lo->ll_objs_checked_phase1 += com->lc_new_checked;
2414                 com->lc_new_checked = 0;
2415         }
2416
2417         rc = lfsck_layout_store(env, com);
2418
2419         up_write(&com->lc_sem);
2420
2421         return rc;
2422 }
2423
2424 static int lfsck_layout_prep(const struct lu_env *env,
2425                              struct lfsck_component *com)
2426 {
2427         struct lfsck_instance   *lfsck  = com->lc_lfsck;
2428         struct lfsck_layout     *lo     = com->lc_file_ram;
2429         struct lfsck_position   *pos    = &com->lc_pos_start;
2430
2431         fid_zero(&pos->lp_dir_parent);
2432         pos->lp_dir_cookie = 0;
2433         if (lo->ll_status == LS_COMPLETED ||
2434             lo->ll_status == LS_PARTIAL) {
2435                 int rc;
2436
2437                 rc = lfsck_layout_reset(env, com, false);
2438                 if (rc != 0)
2439                         return rc;
2440         }
2441
2442         down_write(&com->lc_sem);
2443
2444         lo->ll_time_latest_start = cfs_time_current_sec();
2445
2446         spin_lock(&lfsck->li_lock);
2447         if (lo->ll_flags & LF_SCANNED_ONCE) {
2448                 if (!lfsck->li_drop_dryrun ||
2449                     lo->ll_pos_first_inconsistent == 0) {
2450                         lo->ll_status = LS_SCANNING_PHASE2;
2451                         list_del_init(&com->lc_link);
2452                         list_add_tail(&com->lc_link,
2453                                       &lfsck->li_list_double_scan);
2454                         pos->lp_oit_cookie = 0;
2455                 } else {
2456                         int i;
2457
2458                         lo->ll_status = LS_SCANNING_PHASE1;
2459                         lo->ll_run_time_phase1 = 0;
2460                         lo->ll_run_time_phase2 = 0;
2461                         lo->ll_objs_checked_phase1 = 0;
2462                         lo->ll_objs_checked_phase2 = 0;
2463                         lo->ll_objs_failed_phase1 = 0;
2464                         lo->ll_objs_failed_phase2 = 0;
2465                         for (i = 0; i < LLIT_MAX; i++)
2466                                 lo->ll_objs_repaired[i] = 0;
2467
2468                         pos->lp_oit_cookie = lo->ll_pos_first_inconsistent;
2469                 }
2470         } else {
2471                 lo->ll_status = LS_SCANNING_PHASE1;
2472                 if (!lfsck->li_drop_dryrun ||
2473                     lo->ll_pos_first_inconsistent == 0)
2474                         pos->lp_oit_cookie = lo->ll_pos_last_checkpoint + 1;
2475                 else
2476                         pos->lp_oit_cookie = lo->ll_pos_first_inconsistent;
2477         }
2478         spin_unlock(&lfsck->li_lock);
2479
2480         up_write(&com->lc_sem);
2481
2482         return 0;
2483 }
2484
2485 static int lfsck_layout_slave_prep(const struct lu_env *env,
2486                                    struct lfsck_component *com,
2487                                    struct lfsck_start_param *lsp)
2488 {
2489         struct lfsck_layout             *lo     = com->lc_file_ram;
2490         struct lfsck_layout_slave_data  *llsd   = com->lc_data;
2491         int                              rc;
2492
2493         /* XXX: For a new scanning, generate OST-objects
2494          *      bitmap for orphan detection. */
2495
2496         rc = lfsck_layout_prep(env, com);
2497         if (rc != 0 || lo->ll_status != LS_SCANNING_PHASE1 ||
2498             !lsp->lsp_index_valid)
2499                 return rc;
2500
2501         rc = lfsck_layout_llst_add(llsd, lsp->lsp_index);
2502
2503         return rc;
2504 }
2505
2506 static int lfsck_layout_master_prep(const struct lu_env *env,
2507                                     struct lfsck_component *com,
2508                                     struct lfsck_start_param *lsp)
2509 {
2510         struct lfsck_instance           *lfsck   = com->lc_lfsck;
2511         struct lfsck_layout_master_data *llmd    = com->lc_data;
2512         struct ptlrpc_thread            *mthread = &lfsck->li_thread;
2513         struct ptlrpc_thread            *athread = &llmd->llmd_thread;
2514         struct lfsck_thread_args        *lta;
2515         long                             rc;
2516         ENTRY;
2517
2518         rc = lfsck_layout_prep(env, com);
2519         if (rc != 0)
2520                 RETURN(rc);
2521
2522         llmd->llmd_assistant_status = 0;
2523         llmd->llmd_post_result = 0;
2524         llmd->llmd_to_post = 0;
2525         llmd->llmd_to_double_scan = 0;
2526         llmd->llmd_in_double_scan = 0;
2527         llmd->llmd_exit = 0;
2528         thread_set_flags(athread, 0);
2529
2530         lta = lfsck_thread_args_init(lfsck, com, lsp);
2531         if (IS_ERR(lta))
2532                 RETURN(PTR_ERR(lta));
2533
2534         rc = PTR_ERR(kthread_run(lfsck_layout_assistant, lta, "lfsck_layout"));
2535         if (IS_ERR_VALUE(rc)) {
2536                 CERROR("%s: Cannot start LFSCK layout assistant thread: "
2537                        "rc = %ld\n", lfsck_lfsck2name(lfsck), rc);
2538                 lfsck_thread_args_fini(lta);
2539         } else {
2540                 struct l_wait_info lwi = { 0 };
2541
2542                 l_wait_event(mthread->t_ctl_waitq,
2543                              thread_is_running(athread) ||
2544                              thread_is_stopped(athread),
2545                              &lwi);
2546                 if (unlikely(!thread_is_running(athread)))
2547                         rc = llmd->llmd_assistant_status;
2548                 else
2549                         rc = 0;
2550         }
2551
2552         RETURN(rc);
2553 }
2554
2555 /* Pre-fetch the attribute for each stripe in the given layout EA. */
2556 static int lfsck_layout_scan_stripes(const struct lu_env *env,
2557                                      struct lfsck_component *com,
2558                                      struct dt_object *parent,
2559                                      struct lov_mds_md_v1 *lmm)
2560 {
2561         struct lfsck_thread_info        *info    = lfsck_env_info(env);
2562         struct lfsck_instance           *lfsck   = com->lc_lfsck;
2563         struct lfsck_bookmark           *bk      = &lfsck->li_bookmark_ram;
2564         struct lfsck_layout             *lo      = com->lc_file_ram;
2565         struct lfsck_layout_master_data *llmd    = com->lc_data;
2566         struct lfsck_layout_object      *llo     = NULL;
2567         struct lov_ost_data_v1          *objs;
2568         struct lfsck_tgt_descs          *ltds    = &lfsck->li_ost_descs;
2569         struct ptlrpc_thread            *mthread = &lfsck->li_thread;
2570         struct ptlrpc_thread            *athread = &llmd->llmd_thread;
2571                 struct l_wait_info       lwi     = { 0 };
2572         struct lu_buf                   *buf;
2573         int                              rc      = 0;
2574         int                              i;
2575         __u32                            magic;
2576         __u16                            count;
2577         __u16                            gen;
2578         ENTRY;
2579
2580         buf = lfsck_buf_get(env, &info->lti_old_pfid,
2581                             sizeof(struct filter_fid_old));
2582         count = le16_to_cpu(lmm->lmm_stripe_count);
2583         gen = le16_to_cpu(lmm->lmm_layout_gen);
2584         /* Currently, we only support LOV_MAGIC_V1/LOV_MAGIC_V3 which has
2585          * been verified in lfsck_layout_verify_header() already. If some
2586          * new magic introduced in the future, then layout LFSCK needs to
2587          * be updated also. */
2588         magic = le32_to_cpu(lmm->lmm_magic);
2589         if (magic == LOV_MAGIC_V1) {
2590                 objs = &(lmm->lmm_objects[0]);
2591         } else {
2592                 LASSERT(magic == LOV_MAGIC_V3);
2593                 objs = &((struct lov_mds_md_v3 *)lmm)->lmm_objects[0];
2594         }
2595
2596         for (i = 0; i < count; i++, objs++) {
2597                 struct lu_fid           *fid    = &info->lti_fid;
2598                 struct ost_id           *oi     = &info->lti_oi;
2599                 struct lfsck_layout_req *llr;
2600                 struct lfsck_tgt_desc   *tgt    = NULL;
2601                 struct dt_object        *cobj   = NULL;
2602                 __u32                    index  =
2603                                         le32_to_cpu(objs->l_ost_idx);
2604                 bool                     wakeup = false;
2605
2606                 l_wait_event(mthread->t_ctl_waitq,
2607                              bk->lb_async_windows == 0 ||
2608                              llmd->llmd_prefetched < bk->lb_async_windows ||
2609                              !thread_is_running(mthread) ||
2610                              thread_is_stopped(athread),
2611                              &lwi);
2612
2613                 if (unlikely(!thread_is_running(mthread)) ||
2614                              thread_is_stopped(athread))
2615                         GOTO(out, rc = 0);
2616
2617                 ostid_le_to_cpu(&objs->l_ost_oi, oi);
2618                 ostid_to_fid(fid, oi, index);
2619                 tgt = lfsck_tgt_get(ltds, index);
2620                 if (unlikely(tgt == NULL)) {
2621                         lo->ll_flags |= LF_INCOMPLETE;
2622                         goto next;
2623                 }
2624
2625                 cobj = lfsck_object_find_by_dev(env, tgt->ltd_tgt, fid);
2626                 if (IS_ERR(cobj)) {
2627                         rc = PTR_ERR(cobj);
2628                         goto next;
2629                 }
2630
2631                 rc = dt_declare_attr_get(env, cobj, BYPASS_CAPA);
2632                 if (rc != 0)
2633                         goto next;
2634
2635                 rc = dt_declare_xattr_get(env, cobj, buf, XATTR_NAME_FID,
2636                                           BYPASS_CAPA);
2637                 if (rc != 0)
2638                         goto next;
2639
2640                 if (llo == NULL) {
2641                         llo = lfsck_layout_object_init(env, parent, gen);
2642                         if (IS_ERR(llo)) {
2643                                 rc = PTR_ERR(llo);
2644                                 goto next;
2645                         }
2646                 }
2647
2648                 llr = lfsck_layout_req_init(llo, cobj, index, i);
2649                 if (IS_ERR(llr)) {
2650                         rc = PTR_ERR(llr);
2651                         goto next;
2652                 }
2653
2654                 cobj = NULL;
2655                 spin_lock(&llmd->llmd_lock);
2656                 if (llmd->llmd_assistant_status < 0) {
2657                         spin_unlock(&llmd->llmd_lock);
2658                         lfsck_layout_req_fini(env, llr);
2659                         lfsck_tgt_put(tgt);
2660                         RETURN(llmd->llmd_assistant_status);
2661                 }
2662
2663                 list_add_tail(&llr->llr_list, &llmd->llmd_req_list);
2664                 if (llmd->llmd_prefetched == 0)
2665                         wakeup = true;
2666
2667                 llmd->llmd_prefetched++;
2668                 spin_unlock(&llmd->llmd_lock);
2669                 if (wakeup)
2670                         wake_up_all(&athread->t_ctl_waitq);
2671
2672 next:
2673                 down_write(&com->lc_sem);
2674                 com->lc_new_checked++;
2675                 if (rc < 0)
2676                         lo->ll_objs_failed_phase1++;
2677                 up_write(&com->lc_sem);
2678
2679                 if (cobj != NULL && !IS_ERR(cobj))
2680                         lu_object_put(env, &cobj->do_lu);
2681
2682                 if (likely(tgt != NULL))
2683                         lfsck_tgt_put(tgt);
2684
2685                 if (rc < 0 && bk->lb_param & LPF_FAILOUT)
2686                         GOTO(out, rc);
2687         }
2688
2689         GOTO(out, rc = 0);
2690
2691 out:
2692         if (llo != NULL && !IS_ERR(llo))
2693                 lfsck_layout_object_put(env, llo);
2694
2695         return rc;
2696 }
2697
2698 /* For the given object, read its layout EA locally. For each stripe, pre-fetch
2699  * the OST-object's attribute and generate an structure lfsck_layout_req on the
2700  * list ::llmd_req_list.
2701  *
2702  * For each request on above list, the lfsck_layout_assistant thread compares
2703  * the OST side attribute with local attribute, if inconsistent, then repair it.
2704  *
2705  * All above processing is async mode with pipeline. */
2706 static int lfsck_layout_master_exec_oit(const struct lu_env *env,
2707                                         struct lfsck_component *com,
2708                                         struct dt_object *obj)
2709 {
2710         struct lfsck_thread_info        *info   = lfsck_env_info(env);
2711         struct ost_id                   *oi     = &info->lti_oi;
2712         struct lfsck_layout             *lo     = com->lc_file_ram;
2713         struct lfsck_layout_master_data *llmd   = com->lc_data;
2714         struct lfsck_instance           *lfsck  = com->lc_lfsck;
2715         struct lfsck_bookmark           *bk     = &lfsck->li_bookmark_ram;
2716         struct thandle                  *handle = NULL;
2717         struct lu_buf                   *buf    = &info->lti_big_buf;
2718         struct lov_mds_md_v1            *lmm    = NULL;
2719         struct dt_device                *dev    = lfsck->li_bottom;
2720         struct lustre_handle             lh     = { 0 };
2721         ssize_t                          buflen = buf->lb_len;
2722         int                              rc     = 0;
2723         bool                             locked = false;
2724         bool                             stripe = false;
2725         ENTRY;
2726
2727         if (!S_ISREG(lfsck_object_type(obj)))
2728                 GOTO(out, rc = 0);
2729
2730         if (llmd->llmd_assistant_status < 0)
2731                 GOTO(out, rc = -ESRCH);
2732
2733         fid_to_lmm_oi(lfsck_dto2fid(obj), oi);
2734         lmm_oi_cpu_to_le(oi, oi);
2735         dt_read_lock(env, obj, 0);
2736         locked = true;
2737
2738 again:
2739         rc = lfsck_layout_get_lovea(env, obj, buf, &buflen);
2740         if (rc <= 0)
2741                 GOTO(out, rc);
2742
2743         buf->lb_len = rc;
2744         lmm = buf->lb_buf;
2745         rc = lfsck_layout_verify_header(lmm);
2746         if (rc != 0)
2747                 GOTO(out, rc);
2748
2749         if (memcmp(oi, &lmm->lmm_oi, sizeof(*oi)) == 0)
2750                 GOTO(out, stripe = true);
2751
2752         /* Inconsistent lmm_oi, should be repaired. */
2753         CDEBUG(D_LFSCK, "Repair bad lmm_oi for "DFID"\n",
2754                PFID(lfsck_dto2fid(obj)));
2755
2756         if (bk->lb_param & LPF_DRYRUN) {
2757                 down_write(&com->lc_sem);
2758                 lo->ll_objs_repaired[LLIT_OTHERS - 1]++;
2759                 up_write(&com->lc_sem);
2760
2761                 GOTO(out, stripe = true);
2762         }
2763
2764         if (!lustre_handle_is_used(&lh)) {
2765                 dt_read_unlock(env, obj);
2766                 locked = false;
2767                 buf->lb_len = buflen;
2768                 rc = lfsck_layout_lock(env, com, obj, &lh,
2769                                        MDS_INODELOCK_LAYOUT |
2770                                        MDS_INODELOCK_XATTR);
2771                 if (rc != 0)
2772                         GOTO(out, rc);
2773
2774                 handle = dt_trans_create(env, dev);
2775                 if (IS_ERR(handle))
2776                         GOTO(out, rc = PTR_ERR(handle));
2777
2778                 rc = dt_declare_xattr_set(env, obj, buf, XATTR_NAME_LOV,
2779                                           LU_XATTR_REPLACE, handle);
2780                 if (rc != 0)
2781                         GOTO(out, rc);
2782
2783                 rc = dt_trans_start_local(env, dev, handle);
2784                 if (rc != 0)
2785                         GOTO(out, rc);
2786
2787                 dt_write_lock(env, obj, 0);
2788                 locked = true;
2789
2790                 goto again;
2791         }
2792
2793         lmm->lmm_oi = *oi;
2794         rc = dt_xattr_set(env, obj, buf, XATTR_NAME_LOV,
2795                           LU_XATTR_REPLACE, handle, BYPASS_CAPA);
2796         if (rc != 0)
2797                 GOTO(out, rc);
2798
2799         down_write(&com->lc_sem);
2800         lo->ll_objs_repaired[LLIT_OTHERS - 1]++;
2801         up_write(&com->lc_sem);
2802
2803         GOTO(out, stripe = true);
2804
2805 out:
2806         if (locked) {
2807                 if (lustre_handle_is_used(&lh))
2808                         dt_write_unlock(env, obj);
2809                 else
2810                         dt_read_unlock(env, obj);
2811         }
2812
2813         if (handle != NULL && !IS_ERR(handle))
2814                 dt_trans_stop(env, dev, handle);
2815
2816         lfsck_layout_unlock(&lh);
2817         if (stripe) {
2818                 rc = lfsck_layout_scan_stripes(env, com, obj, lmm);
2819         } else {
2820                 down_write(&com->lc_sem);
2821                 com->lc_new_checked++;
2822                 if (rc < 0)
2823                         lo->ll_objs_failed_phase1++;
2824                 up_write(&com->lc_sem);
2825         }
2826         buf->lb_len = buflen;
2827
2828         return rc;
2829 }
2830
2831 static int lfsck_layout_slave_exec_oit(const struct lu_env *env,
2832                                        struct lfsck_component *com,
2833                                        struct dt_object *obj)
2834 {
2835         struct lfsck_instance           *lfsck  = com->lc_lfsck;
2836         struct lfsck_layout             *lo     = com->lc_file_ram;
2837         const struct lu_fid             *fid    = lfsck_dto2fid(obj);
2838         struct lfsck_layout_slave_data  *llsd   = com->lc_data;
2839         struct lfsck_layout_seq         *lls;
2840         __u64                            seq;
2841         __u64                            oid;
2842         int                              rc;
2843         ENTRY;
2844
2845         /* XXX: Update OST-objects bitmap for orphan detection. */
2846
2847         LASSERT(llsd != NULL);
2848
2849         down_write(&com->lc_sem);
2850         if (fid_is_idif(fid))
2851                 seq = 0;
2852         else if (!fid_is_norm(fid) ||
2853                  !fid_is_for_ostobj(env, lfsck->li_next, obj, fid))
2854                 GOTO(unlock, rc = 0);
2855         else
2856                 seq = fid_seq(fid);
2857         com->lc_new_checked++;
2858
2859         lls = lfsck_layout_seq_lookup(llsd, seq);
2860         if (lls == NULL) {
2861                 OBD_ALLOC_PTR(lls);
2862                 if (unlikely(lls == NULL))
2863                         GOTO(unlock, rc = -ENOMEM);
2864
2865                 INIT_LIST_HEAD(&lls->lls_list);
2866                 lls->lls_seq = seq;
2867                 rc = lfsck_layout_lastid_load(env, com, lls);
2868                 if (rc != 0) {
2869                         lo->ll_objs_failed_phase1++;
2870                         OBD_FREE_PTR(lls);
2871                         GOTO(unlock, rc);
2872                 }
2873
2874                 lfsck_layout_seq_insert(llsd, lls);
2875         }
2876
2877         if (unlikely(fid_is_last_id(fid)))
2878                 GOTO(unlock, rc = 0);
2879
2880         oid = fid_oid(fid);
2881         if (oid > lls->lls_lastid_known)
2882                 lls->lls_lastid_known = oid;
2883
2884         if (oid > lls->lls_lastid) {
2885                 if (!(lo->ll_flags & LF_CRASHED_LASTID)) {
2886                         /* OFD may create new objects during LFSCK scanning. */
2887                         rc = lfsck_layout_lastid_reload(env, com, lls);
2888                         if (unlikely(rc != 0))
2889                                 CWARN("%s: failed to reload LAST_ID for "LPX64
2890                                       ": rc = %d\n",
2891                                       lfsck_lfsck2name(com->lc_lfsck),
2892                                       lls->lls_seq, rc);
2893                         if (oid <= lls->lls_lastid)
2894                                 GOTO(unlock, rc = 0);
2895
2896                         LASSERT(lfsck->li_out_notify != NULL);
2897
2898                         lfsck->li_out_notify(env, lfsck->li_out_notify_data,
2899                                              LE_LASTID_REBUILDING);
2900                         lo->ll_flags |= LF_CRASHED_LASTID;
2901                 }
2902
2903                 lls->lls_lastid = oid;
2904                 lls->lls_dirty = 1;
2905         }
2906
2907         GOTO(unlock, rc = 0);
2908
2909 unlock:
2910         up_write(&com->lc_sem);
2911
2912         return rc;
2913 }
2914
2915 static int lfsck_layout_exec_dir(const struct lu_env *env,
2916                                  struct lfsck_component *com,
2917                                  struct dt_object *obj,
2918                                  struct lu_dirent *ent)
2919 {
2920         return 0;
2921 }
2922
2923 static int lfsck_layout_master_post(const struct lu_env *env,
2924                                     struct lfsck_component *com,
2925                                     int result, bool init)
2926 {
2927         struct lfsck_instance           *lfsck   = com->lc_lfsck;
2928         struct lfsck_layout             *lo      = com->lc_file_ram;
2929         struct lfsck_layout_master_data *llmd    = com->lc_data;
2930         struct ptlrpc_thread            *mthread = &lfsck->li_thread;
2931         struct ptlrpc_thread            *athread = &llmd->llmd_thread;
2932         struct l_wait_info               lwi     = { 0 };
2933         int                              rc;
2934         ENTRY;
2935
2936
2937         llmd->llmd_post_result = result;
2938         llmd->llmd_to_post = 1;
2939         if (llmd->llmd_post_result <= 0)
2940                 llmd->llmd_exit = 1;
2941
2942         wake_up_all(&athread->t_ctl_waitq);
2943         l_wait_event(mthread->t_ctl_waitq,
2944                      (result > 0 && list_empty(&llmd->llmd_req_list)) ||
2945                      thread_is_stopped(athread),
2946                      &lwi);
2947
2948         if (llmd->llmd_assistant_status < 0)
2949                 result = llmd->llmd_assistant_status;
2950
2951         down_write(&com->lc_sem);
2952         spin_lock(&lfsck->li_lock);
2953         /* When LFSCK failed, there may be some prefetched objects those are
2954          * not been processed yet, we do not know the exactly position, then
2955          * just restart from last check-point next time. */
2956         if (!init && !llmd->llmd_exit)
2957                 lo->ll_pos_last_checkpoint =
2958                                         lfsck->li_pos_current.lp_oit_cookie;
2959
2960         if (result > 0) {
2961                 lo->ll_status = LS_SCANNING_PHASE2;
2962                 lo->ll_flags |= LF_SCANNED_ONCE;
2963                 lo->ll_flags &= ~LF_UPGRADE;
2964                 list_del_init(&com->lc_link);
2965                 list_add_tail(&com->lc_link, &lfsck->li_list_double_scan);
2966         } else if (result == 0) {
2967                 lo->ll_status = lfsck->li_status;
2968                 if (lo->ll_status == 0)
2969                         lo->ll_status = LS_STOPPED;
2970                 if (lo->ll_status != LS_PAUSED) {
2971                         list_del_init(&com->lc_link);
2972                         list_add_tail(&com->lc_link, &lfsck->li_list_idle);
2973                 }
2974         } else {
2975                 lo->ll_status = LS_FAILED;
2976                 list_del_init(&com->lc_link);
2977                 list_add_tail(&com->lc_link, &lfsck->li_list_idle);
2978         }
2979         spin_unlock(&lfsck->li_lock);
2980
2981         if (!init) {
2982                 lo->ll_run_time_phase1 += cfs_duration_sec(cfs_time_current() +
2983                                 HALF_SEC - lfsck->li_time_last_checkpoint);
2984                 lo->ll_time_last_checkpoint = cfs_time_current_sec();
2985                 lo->ll_objs_checked_phase1 += com->lc_new_checked;
2986                 com->lc_new_checked = 0;
2987         }
2988
2989         rc = lfsck_layout_store(env, com);
2990         up_write(&com->lc_sem);
2991
2992         RETURN(rc);
2993 }
2994
2995 static int lfsck_layout_slave_post(const struct lu_env *env,
2996                                    struct lfsck_component *com,
2997                                    int result, bool init)
2998 {
2999         struct lfsck_instance   *lfsck = com->lc_lfsck;
3000         struct lfsck_layout     *lo    = com->lc_file_ram;
3001         int                      rc;
3002         bool                     done  = false;
3003
3004         rc = lfsck_layout_lastid_store(env, com);
3005         if (rc != 0)
3006                 result = rc;
3007
3008         LASSERT(lfsck->li_out_notify != NULL);
3009
3010         down_write(&com->lc_sem);
3011
3012         spin_lock(&lfsck->li_lock);
3013         if (!init)
3014                 lo->ll_pos_last_checkpoint =
3015                                         lfsck->li_pos_current.lp_oit_cookie;
3016         if (result > 0) {
3017                 lo->ll_status = LS_SCANNING_PHASE2;
3018                 lo->ll_flags |= LF_SCANNED_ONCE;
3019                 if (lo->ll_flags & LF_CRASHED_LASTID) {
3020                         done = true;
3021                         lo->ll_flags &= ~LF_CRASHED_LASTID;
3022                 }
3023                 lo->ll_flags &= ~LF_UPGRADE;
3024                 list_del_init(&com->lc_link);
3025                 list_add_tail(&com->lc_link, &lfsck->li_list_double_scan);
3026         } else if (result == 0) {
3027                 lo->ll_status = lfsck->li_status;
3028                 if (lo->ll_status == 0)
3029                         lo->ll_status = LS_STOPPED;
3030                 if (lo->ll_status != LS_PAUSED) {
3031                         list_del_init(&com->lc_link);
3032                         list_add_tail(&com->lc_link, &lfsck->li_list_idle);
3033                 }
3034         } else {
3035                 lo->ll_status = LS_FAILED;
3036                 list_del_init(&com->lc_link);
3037                 list_add_tail(&com->lc_link, &lfsck->li_list_idle);
3038         }
3039         spin_unlock(&lfsck->li_lock);
3040
3041         if (done)
3042                 lfsck->li_out_notify(env, lfsck->li_out_notify_data,
3043                                      LE_LASTID_REBUILT);
3044
3045         if (!init) {
3046                 lo->ll_run_time_phase1 += cfs_duration_sec(cfs_time_current() +
3047                                 HALF_SEC - lfsck->li_time_last_checkpoint);
3048                 lo->ll_time_last_checkpoint = cfs_time_current_sec();
3049                 lo->ll_objs_checked_phase1 += com->lc_new_checked;
3050                 com->lc_new_checked = 0;
3051         }
3052
3053         rc = lfsck_layout_store(env, com);
3054
3055         up_write(&com->lc_sem);
3056
3057         lfsck_layout_slave_notify_master(env, com, LE_PHASE1_DONE, result);
3058
3059         return rc;
3060 }
3061
3062 static int lfsck_layout_dump(const struct lu_env *env,
3063                              struct lfsck_component *com, char *buf, int len)
3064 {
3065         struct lfsck_instance   *lfsck = com->lc_lfsck;
3066         struct lfsck_bookmark   *bk    = &lfsck->li_bookmark_ram;
3067         struct lfsck_layout     *lo    = com->lc_file_ram;
3068         int                      save  = len;
3069         int                      ret   = -ENOSPC;
3070         int                      rc;
3071
3072         down_read(&com->lc_sem);
3073         rc = snprintf(buf, len,
3074                       "name: lfsck_layout\n"
3075                       "magic: %#x\n"
3076                       "version: %d\n"
3077                       "status: %s\n",
3078                       lo->ll_magic,
3079                       bk->lb_version,
3080                       lfsck_status2names(lo->ll_status));
3081         if (rc <= 0)
3082                 goto out;
3083
3084         buf += rc;
3085         len -= rc;
3086         rc = lfsck_bits_dump(&buf, &len, lo->ll_flags, lfsck_flags_names,
3087                              "flags");
3088         if (rc < 0)
3089                 goto out;
3090
3091         rc = lfsck_bits_dump(&buf, &len, bk->lb_param, lfsck_param_names,
3092                              "param");
3093         if (rc < 0)
3094                 goto out;
3095
3096         rc = lfsck_time_dump(&buf, &len, lo->ll_time_last_complete,
3097                              "time_since_last_completed");
3098         if (rc < 0)
3099                 goto out;
3100
3101         rc = lfsck_time_dump(&buf, &len, lo->ll_time_latest_start,
3102                              "time_since_latest_start");
3103         if (rc < 0)
3104                 goto out;
3105
3106         rc = lfsck_time_dump(&buf, &len, lo->ll_time_last_checkpoint,
3107                              "time_since_last_checkpoint");
3108         if (rc < 0)
3109                 goto out;
3110
3111         rc = snprintf(buf, len,
3112                       "latest_start_position: "LPU64"\n"
3113                       "last_checkpoint_position: "LPU64"\n"
3114                       "first_failure_position: "LPU64"\n",
3115                       lo->ll_pos_latest_start,
3116                       lo->ll_pos_last_checkpoint,
3117                       lo->ll_pos_first_inconsistent);
3118         if (rc <= 0)
3119                 goto out;
3120
3121         buf += rc;
3122         len -= rc;
3123
3124         rc = snprintf(buf, len,
3125                       "success_count: %u\n"
3126                       "repaired_dangling: "LPU64"\n"
3127                       "repaired_unmatched_pair: "LPU64"\n"
3128                       "repaired_multiple_referenced: "LPU64"\n"
3129                       "repaired_orphan: "LPU64"\n"
3130                       "repaired_inconsistent_owner: "LPU64"\n"
3131                       "repaired_others: "LPU64"\n"
3132                       "skipped: "LPU64"\n"
3133                       "failed_phase1: "LPU64"\n"
3134                       "failed_phase2: "LPU64"\n",
3135                       lo->ll_success_count,
3136                       lo->ll_objs_repaired[LLIT_DANGLING - 1],
3137                       lo->ll_objs_repaired[LLIT_UNMATCHED_PAIR - 1],
3138                       lo->ll_objs_repaired[LLIT_MULTIPLE_REFERENCED - 1],
3139                       lo->ll_objs_repaired[LLIT_ORPHAN - 1],
3140                       lo->ll_objs_repaired[LLIT_INCONSISTENT_OWNER - 1],
3141                       lo->ll_objs_repaired[LLIT_OTHERS - 1],
3142                       lo->ll_objs_skipped,
3143                       lo->ll_objs_failed_phase1,
3144                       lo->ll_objs_failed_phase2);
3145         if (rc <= 0)
3146                 goto out;
3147
3148         buf += rc;
3149         len -= rc;
3150
3151         if (lo->ll_status == LS_SCANNING_PHASE1) {
3152                 __u64 pos;
3153                 const struct dt_it_ops *iops;
3154                 cfs_duration_t duration = cfs_time_current() -
3155                                           lfsck->li_time_last_checkpoint;
3156                 __u64 checked = lo->ll_objs_checked_phase1 + com->lc_new_checked;
3157                 __u64 speed = checked;
3158                 __u64 new_checked = com->lc_new_checked * HZ;
3159                 __u32 rtime = lo->ll_run_time_phase1 +
3160                               cfs_duration_sec(duration + HALF_SEC);
3161
3162                 if (duration != 0)
3163                         do_div(new_checked, duration);
3164                 if (rtime != 0)
3165                         do_div(speed, rtime);
3166                 rc = snprintf(buf, len,
3167                               "checked_phase1: "LPU64"\n"
3168                               "checked_phase2: "LPU64"\n"
3169                               "run_time_phase1: %u seconds\n"
3170                               "run_time_phase2: %u seconds\n"
3171                               "average_speed_phase1: "LPU64" items/sec\n"
3172                               "average_speed_phase2: N/A\n"
3173                               "real-time_speed_phase1: "LPU64" items/sec\n"
3174                               "real-time_speed_phase2: N/A\n",
3175                               checked,
3176                               lo->ll_objs_checked_phase2,
3177                               rtime,
3178                               lo->ll_run_time_phase2,
3179                               speed,
3180                               new_checked);
3181                 if (rc <= 0)
3182                         goto out;
3183
3184                 buf += rc;
3185                 len -= rc;
3186
3187                 LASSERT(lfsck->li_di_oit != NULL);
3188
3189                 iops = &lfsck->li_obj_oit->do_index_ops->dio_it;
3190
3191                 /* The low layer otable-based iteration position may NOT
3192                  * exactly match the layout-based directory traversal
3193                  * cookie. Generally, it is not a serious issue. But the
3194                  * caller should NOT make assumption on that. */
3195                 pos = iops->store(env, lfsck->li_di_oit);
3196                 if (!lfsck->li_current_oit_processed)
3197                         pos--;
3198                 rc = snprintf(buf, len, "current_position: "LPU64"\n", pos);
3199                 if (rc <= 0)
3200                         goto out;
3201
3202                 buf += rc;
3203                 len -= rc;
3204         } else {
3205                 /* XXX: LS_SCANNING_PHASE2 will be handled in the future. */
3206                 __u64 speed1 = lo->ll_objs_checked_phase1;
3207                 __u64 speed2 = lo->ll_objs_checked_phase2;
3208
3209                 if (lo->ll_run_time_phase1 != 0)
3210                         do_div(speed1, lo->ll_run_time_phase1);
3211                 if (lo->ll_run_time_phase2 != 0)
3212                         do_div(speed2, lo->ll_run_time_phase2);
3213                 rc = snprintf(buf, len,
3214                               "checked_phase1: "LPU64"\n"
3215                               "checked_phase2: "LPU64"\n"
3216                               "run_time_phase1: %u seconds\n"
3217                               "run_time_phase2: %u seconds\n"
3218                               "average_speed_phase1: "LPU64" items/sec\n"
3219                               "average_speed_phase2: "LPU64" objs/sec\n"
3220                               "real-time_speed_phase1: N/A\n"
3221                               "real-time_speed_phase2: N/A\n"
3222                               "current_position: N/A\n",
3223                               lo->ll_objs_checked_phase1,
3224                               lo->ll_objs_checked_phase2,
3225                               lo->ll_run_time_phase1,
3226                               lo->ll_run_time_phase2,
3227                               speed1,
3228                               speed2);
3229                 if (rc <= 0)
3230                         goto out;
3231
3232                 buf += rc;
3233                 len -= rc;
3234         }
3235         ret = save - len;
3236
3237 out:
3238         up_read(&com->lc_sem);
3239
3240         return ret;
3241 }
3242
3243 static int lfsck_layout_master_double_scan(const struct lu_env *env,
3244                                            struct lfsck_component *com)
3245 {
3246         struct lfsck_layout_master_data *llmd    = com->lc_data;
3247         struct ptlrpc_thread            *mthread = &com->lc_lfsck->li_thread;
3248         struct ptlrpc_thread            *athread = &llmd->llmd_thread;
3249         struct lfsck_layout             *lo      = com->lc_file_ram;
3250         struct l_wait_info               lwi     = { 0 };
3251
3252         if (unlikely(lo->ll_status != LS_SCANNING_PHASE2))
3253                 return 0;
3254
3255         llmd->llmd_to_double_scan = 1;
3256         wake_up_all(&athread->t_ctl_waitq);
3257         l_wait_event(mthread->t_ctl_waitq,
3258                      llmd->llmd_in_double_scan ||
3259                      thread_is_stopped(athread),
3260                      &lwi);
3261         if (llmd->llmd_assistant_status < 0)
3262                 return llmd->llmd_assistant_status;
3263
3264         return 0;
3265 }
3266
3267 static int lfsck_layout_slave_double_scan(const struct lu_env *env,
3268                                           struct lfsck_component *com)
3269 {
3270         struct lfsck_instance           *lfsck  = com->lc_lfsck;
3271         struct lfsck_layout_slave_data  *llsd   = com->lc_data;
3272         struct lfsck_layout             *lo     = com->lc_file_ram;
3273         struct ptlrpc_thread            *thread = &lfsck->li_thread;
3274         int                              rc;
3275         ENTRY;
3276
3277         if (unlikely(lo->ll_status != LS_SCANNING_PHASE2))
3278                 RETURN(0);
3279
3280         atomic_inc(&lfsck->li_double_scan_count);
3281
3282         com->lc_new_checked = 0;
3283         com->lc_new_scanned = 0;
3284         com->lc_time_last_checkpoint = cfs_time_current();
3285         com->lc_time_next_checkpoint = com->lc_time_last_checkpoint +
3286                                 cfs_time_seconds(LFSCK_CHECKPOINT_INTERVAL);
3287
3288         while (1) {
3289                 struct l_wait_info lwi = LWI_TIMEOUT(cfs_time_seconds(30),
3290                                                      NULL, NULL);
3291
3292                 rc = lfsck_layout_slave_query_master(env, com);
3293                 if (list_empty(&llsd->llsd_master_list)) {
3294                         if (unlikely(!thread_is_running(thread)))
3295                                 rc = 0;
3296                         else
3297                                 rc = 1;
3298
3299                         GOTO(done, rc);
3300                 }
3301
3302                 if (rc < 0)
3303                         GOTO(done, rc);
3304
3305                 rc = l_wait_event(thread->t_ctl_waitq,
3306                                   !thread_is_running(thread) ||
3307                                   list_empty(&llsd->llsd_master_list),
3308                                   &lwi);
3309                 if (unlikely(!thread_is_running(thread)))
3310                         GOTO(done, rc = 0);
3311
3312                 if (rc == -ETIMEDOUT)
3313                         continue;
3314
3315                 GOTO(done, rc = (rc < 0 ? rc : 1));
3316         }
3317
3318 done:
3319         rc = lfsck_layout_double_scan_result(env, com, rc);
3320
3321         if (atomic_dec_and_test(&lfsck->li_double_scan_count))
3322                 wake_up_all(&lfsck->li_thread.t_ctl_waitq);
3323
3324         return rc;
3325 }
3326
3327 static void lfsck_layout_master_data_release(const struct lu_env *env,
3328                                              struct lfsck_component *com)
3329 {
3330         struct lfsck_layout_master_data *llmd   = com->lc_data;
3331         struct lfsck_instance           *lfsck  = com->lc_lfsck;
3332         struct lfsck_tgt_descs          *ltds;
3333         struct lfsck_tgt_desc           *ltd;
3334         struct lfsck_tgt_desc           *next;
3335
3336         LASSERT(llmd != NULL);
3337         LASSERT(thread_is_init(&llmd->llmd_thread) ||
3338                 thread_is_stopped(&llmd->llmd_thread));
3339         LASSERT(list_empty(&llmd->llmd_req_list));
3340
3341         com->lc_data = NULL;
3342
3343         ltds = &lfsck->li_ost_descs;
3344         spin_lock(&ltds->ltd_lock);
3345         list_for_each_entry_safe(ltd, next, &llmd->llmd_ost_phase1_list,
3346                                  ltd_layout_phase_list) {
3347                 list_del_init(&ltd->ltd_layout_phase_list);
3348         }
3349         list_for_each_entry_safe(ltd, next, &llmd->llmd_ost_phase2_list,
3350                                  ltd_layout_phase_list) {
3351                 list_del_init(&ltd->ltd_layout_phase_list);
3352         }
3353         list_for_each_entry_safe(ltd, next, &llmd->llmd_ost_list,
3354                                  ltd_layout_list) {
3355                 list_del_init(&ltd->ltd_layout_list);
3356         }
3357         list_for_each_entry_safe(ltd, next, &llmd->llmd_mdt_phase1_list,
3358                                  ltd_layout_phase_list) {
3359                 list_del_init(&ltd->ltd_layout_phase_list);
3360         }
3361         list_for_each_entry_safe(ltd, next, &llmd->llmd_mdt_phase2_list,
3362                                  ltd_layout_phase_list) {
3363                 list_del_init(&ltd->ltd_layout_phase_list);
3364         }
3365         list_for_each_entry_safe(ltd, next, &llmd->llmd_mdt_list,
3366                                  ltd_layout_list) {
3367                 list_del_init(&ltd->ltd_layout_list);
3368         }
3369         spin_unlock(&ltds->ltd_lock);
3370
3371         OBD_FREE_PTR(llmd);
3372 }
3373
3374 static void lfsck_layout_slave_data_release(const struct lu_env *env,
3375                                             struct lfsck_component *com)
3376 {
3377         struct lfsck_layout_slave_data   *llsd  = com->lc_data;
3378         struct lfsck_layout_seq          *lls;
3379         struct lfsck_layout_seq          *next;
3380         struct lfsck_layout_slave_target *llst;
3381         struct lfsck_layout_slave_target *tmp;
3382
3383         LASSERT(llsd != NULL);
3384
3385         com->lc_data = NULL;
3386
3387         list_for_each_entry_safe(lls, next, &llsd->llsd_seq_list,
3388                                      lls_list) {
3389                 list_del_init(&lls->lls_list);
3390                 lfsck_object_put(env, lls->lls_lastid_obj);
3391                 OBD_FREE_PTR(lls);
3392         }
3393
3394         list_for_each_entry_safe(llst, tmp, &llsd->llsd_master_list,
3395                                  llst_list) {
3396                 list_del_init(&llst->llst_list);
3397                 OBD_FREE_PTR(llst);
3398         }
3399
3400         OBD_FREE_PTR(llsd);
3401 }
3402
3403 static void lfsck_layout_master_quit(const struct lu_env *env,
3404                                      struct lfsck_component *com)
3405 {
3406         struct lfsck_layout_master_data *llmd    = com->lc_data;
3407         struct ptlrpc_thread            *mthread = &com->lc_lfsck->li_thread;
3408         struct ptlrpc_thread            *athread = &llmd->llmd_thread;
3409         struct l_wait_info               lwi     = { 0 };
3410
3411         llmd->llmd_exit = 1;
3412         wake_up_all(&athread->t_ctl_waitq);
3413         l_wait_event(mthread->t_ctl_waitq,
3414                      thread_is_init(athread) ||
3415                      thread_is_stopped(athread),
3416                      &lwi);
3417 }
3418
3419 static int lfsck_layout_master_in_notify(const struct lu_env *env,
3420                                          struct lfsck_component *com,
3421                                          struct lfsck_request *lr)
3422 {
3423         struct lfsck_instance           *lfsck = com->lc_lfsck;
3424         struct lfsck_layout             *lo    = com->lc_file_ram;
3425         struct lfsck_layout_master_data *llmd  = com->lc_data;
3426         struct lfsck_tgt_descs          *ltds;
3427         struct lfsck_tgt_desc           *ltd;
3428         ENTRY;
3429
3430         if (lr->lr_event != LE_PHASE1_DONE &&
3431             lr->lr_event != LE_PHASE2_DONE &&
3432             lr->lr_event != LE_STOP)
3433                 RETURN(-EINVAL);
3434
3435         if (lr->lr_flags & LEF_FROM_OST)
3436                 ltds = &lfsck->li_ost_descs;
3437         else
3438                 ltds = &lfsck->li_mdt_descs;
3439         spin_lock(&ltds->ltd_lock);
3440         ltd = LTD_TGT(ltds, lr->lr_index);
3441         if (ltd == NULL) {
3442                 spin_unlock(&ltds->ltd_lock);
3443
3444                 RETURN(-ENODEV);
3445         }
3446
3447         list_del_init(&ltd->ltd_layout_phase_list);
3448         switch (lr->lr_event) {
3449         case LE_PHASE1_DONE:
3450                 if (lr->lr_status <= 0) {
3451                         ltd->ltd_layout_done = 1;
3452                         list_del_init(&ltd->ltd_layout_list);
3453                         lo->ll_flags |= LF_INCOMPLETE;
3454                         break;
3455                 }
3456
3457                 if (lr->lr_flags & LEF_FROM_OST) {
3458                         if (list_empty(&ltd->ltd_layout_list))
3459                                 list_add_tail(&ltd->ltd_layout_list,
3460                                               &llmd->llmd_ost_list);
3461                         list_add_tail(&ltd->ltd_layout_phase_list,
3462                                       &llmd->llmd_ost_phase2_list);
3463                 } else {
3464                         if (list_empty(&ltd->ltd_layout_list))
3465                                 list_add_tail(&ltd->ltd_layout_list,
3466                                               &llmd->llmd_mdt_list);
3467                         list_add_tail(&ltd->ltd_layout_phase_list,
3468                                       &llmd->llmd_mdt_phase2_list);
3469                 }
3470                 break;
3471         case LE_PHASE2_DONE:
3472                 ltd->ltd_layout_done = 1;
3473                 list_del_init(&ltd->ltd_layout_list);
3474                 break;
3475         case LE_STOP:
3476                 ltd->ltd_layout_done = 1;
3477                 list_del_init(&ltd->ltd_layout_list);
3478                 if (!(lr->lr_flags & LEF_FORCE_STOP))
3479                         lo->ll_flags |= LF_INCOMPLETE;
3480                 break;
3481         default:
3482                 break;
3483         }
3484         spin_unlock(&ltds->ltd_lock);
3485
3486         if (lr->lr_flags & LEF_FORCE_STOP) {
3487                 struct lfsck_stop *stop = &lfsck_env_info(env)->lti_stop;
3488
3489                 memset(stop, 0, sizeof(*stop));
3490                 stop->ls_status = lr->lr_status;
3491                 stop->ls_flags = lr->lr_param;
3492                 lfsck_stop(env, lfsck->li_bottom, stop);
3493         } else if (lfsck_layout_master_to_orphan(llmd)) {
3494                 wake_up_all(&llmd->llmd_thread.t_ctl_waitq);
3495         }
3496
3497         RETURN(0);
3498 }
3499
3500 static int lfsck_layout_slave_in_notify(const struct lu_env *env,
3501                                         struct lfsck_component *com,
3502                                         struct lfsck_request *lr)
3503 {
3504         struct lfsck_instance            *lfsck = com->lc_lfsck;
3505         struct lfsck_layout_slave_data   *llsd  = com->lc_data;
3506         struct lfsck_layout_slave_target *llst;
3507         ENTRY;
3508
3509         if (lr->lr_event != LE_PHASE2_DONE &&
3510             lr->lr_event != LE_STOP)
3511                 RETURN(-EINVAL);
3512
3513         llst = lfsck_layout_llst_find_and_del(llsd, lr->lr_index);
3514         if (llst == NULL)
3515                 RETURN(-ENODEV);
3516
3517         lfsck_layout_llst_put(llst);
3518         if (list_empty(&llsd->llsd_master_list)) {
3519                 switch (lr->lr_event) {
3520                 case LE_PHASE2_DONE:
3521                         wake_up_all(&lfsck->li_thread.t_ctl_waitq);
3522                         break;
3523                 case LE_STOP: {
3524                         struct lfsck_stop *stop = &lfsck_env_info(env)->lti_stop;
3525
3526                         memset(stop, 0, sizeof(*stop));
3527                         stop->ls_status = lr->lr_status;
3528                         stop->ls_flags = lr->lr_param;
3529                         lfsck_stop(env, lfsck->li_bottom, stop);
3530                         break;
3531                 }
3532                 default:
3533                         break;
3534                 }
3535         }
3536
3537         RETURN(0);
3538 }
3539
3540 static int lfsck_layout_query(const struct lu_env *env,
3541                               struct lfsck_component *com)
3542 {
3543         struct lfsck_layout *lo = com->lc_file_ram;
3544
3545         return lo->ll_status;
3546 }
3547
3548 static int lfsck_layout_master_stop_notify(const struct lu_env *env,
3549                                            struct lfsck_component *com,
3550                                            struct lfsck_tgt_descs *ltds,
3551                                            struct lfsck_tgt_desc *ltd,
3552                                            struct ptlrpc_request_set *set)
3553 {
3554         struct lfsck_thread_info          *info  = lfsck_env_info(env);
3555         struct lfsck_async_interpret_args *laia  = &info->lti_laia;
3556         struct lfsck_request              *lr    = &info->lti_lr;
3557         struct lfsck_instance             *lfsck = com->lc_lfsck;
3558         int                                rc;
3559
3560         LASSERT(list_empty(&ltd->ltd_layout_list));
3561         LASSERT(list_empty(&ltd->ltd_layout_phase_list));
3562
3563         memset(lr, 0, sizeof(*lr));
3564         lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
3565         lr->lr_event = LE_STOP;
3566         lr->lr_active = LT_LAYOUT;
3567         if (ltds == &lfsck->li_ost_descs) {
3568                 lr->lr_flags = LEF_TO_OST;
3569         } else {
3570                 if (ltd->ltd_index == lfsck_dev_idx(lfsck->li_bottom))
3571                         return 0;
3572
3573                 lr->lr_flags = 0;
3574         }
3575         lr->lr_status = LS_CO_STOPPED;
3576
3577         laia->laia_com = com;
3578         laia->laia_ltds = ltds;
3579         laia->laia_ltd = ltd;
3580         laia->laia_lr = lr;
3581
3582         rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
3583                                  lfsck_layout_master_async_interpret,
3584                                  laia, LFSCK_NOTIFY);
3585         if (rc != 0)
3586                 CERROR("%s: Fail to notify %s %x for co-stop: rc = %d\n",
3587                        lfsck_lfsck2name(lfsck),
3588                        (lr->lr_flags & LEF_TO_OST) ? "OST" : "MDT",
3589                        ltd->ltd_index, rc);
3590
3591         return rc;
3592 }
3593
3594 /* with lfsck::li_lock held */
3595 static int lfsck_layout_slave_join(const struct lu_env *env,
3596                                    struct lfsck_component *com,
3597                                    struct lfsck_start_param *lsp)
3598 {
3599         struct lfsck_instance            *lfsck = com->lc_lfsck;
3600         struct lfsck_layout_slave_data   *llsd  = com->lc_data;
3601         struct lfsck_layout_slave_target *llst;
3602         struct lfsck_start               *start = lsp->lsp_start;
3603         int                               rc    = 0;
3604         ENTRY;
3605
3606         if (!lsp->lsp_index_valid || start == NULL ||
3607             !(start->ls_flags & LPF_ALL_MDT))
3608                 RETURN(-EALREADY);
3609
3610         spin_unlock(&lfsck->li_lock);
3611         rc = lfsck_layout_llst_add(llsd, lsp->lsp_index);
3612         spin_lock(&lfsck->li_lock);
3613         if (rc == 0 && !thread_is_running(&lfsck->li_thread)) {
3614                 spin_unlock(&lfsck->li_lock);
3615                 llst = lfsck_layout_llst_find_and_del(llsd, lsp->lsp_index);
3616                 if (llst != NULL)
3617                         lfsck_layout_llst_put(llst);
3618                 spin_lock(&lfsck->li_lock);
3619                 rc = -EAGAIN;
3620         }
3621
3622         RETURN(rc);
3623 }
3624
3625 static struct lfsck_operations lfsck_layout_master_ops = {
3626         .lfsck_reset            = lfsck_layout_reset,
3627         .lfsck_fail             = lfsck_layout_fail,
3628         .lfsck_checkpoint       = lfsck_layout_master_checkpoint,
3629         .lfsck_prep             = lfsck_layout_master_prep,
3630         .lfsck_exec_oit         = lfsck_layout_master_exec_oit,
3631         .lfsck_exec_dir         = lfsck_layout_exec_dir,
3632         .lfsck_post             = lfsck_layout_master_post,
3633         .lfsck_dump             = lfsck_layout_dump,
3634         .lfsck_double_scan      = lfsck_layout_master_double_scan,
3635         .lfsck_data_release     = lfsck_layout_master_data_release,
3636         .lfsck_quit             = lfsck_layout_master_quit,
3637         .lfsck_in_notify        = lfsck_layout_master_in_notify,
3638         .lfsck_query            = lfsck_layout_query,
3639         .lfsck_stop_notify      = lfsck_layout_master_stop_notify,
3640 };
3641
3642 static struct lfsck_operations lfsck_layout_slave_ops = {
3643         .lfsck_reset            = lfsck_layout_reset,
3644         .lfsck_fail             = lfsck_layout_fail,
3645         .lfsck_checkpoint       = lfsck_layout_slave_checkpoint,
3646         .lfsck_prep             = lfsck_layout_slave_prep,
3647         .lfsck_exec_oit         = lfsck_layout_slave_exec_oit,
3648         .lfsck_exec_dir         = lfsck_layout_exec_dir,
3649         .lfsck_post             = lfsck_layout_slave_post,
3650         .lfsck_dump             = lfsck_layout_dump,
3651         .lfsck_double_scan      = lfsck_layout_slave_double_scan,
3652         .lfsck_data_release     = lfsck_layout_slave_data_release,
3653         .lfsck_in_notify        = lfsck_layout_slave_in_notify,
3654         .lfsck_query            = lfsck_layout_query,
3655         .lfsck_join             = lfsck_layout_slave_join,
3656 };
3657
3658 int lfsck_layout_setup(const struct lu_env *env, struct lfsck_instance *lfsck)
3659 {
3660         struct lfsck_component  *com;
3661         struct lfsck_layout     *lo;
3662         struct dt_object        *root = NULL;
3663         struct dt_object        *obj;
3664         int                      rc;
3665         ENTRY;
3666
3667         OBD_ALLOC_PTR(com);
3668         if (com == NULL)
3669                 RETURN(-ENOMEM);
3670
3671         INIT_LIST_HEAD(&com->lc_link);
3672         INIT_LIST_HEAD(&com->lc_link_dir);
3673         init_rwsem(&com->lc_sem);
3674         atomic_set(&com->lc_ref, 1);
3675         com->lc_lfsck = lfsck;
3676         com->lc_type = LT_LAYOUT;
3677         if (lfsck->li_master) {
3678                 struct lfsck_layout_master_data *llmd;
3679
3680                 com->lc_ops = &lfsck_layout_master_ops;
3681                 OBD_ALLOC_PTR(llmd);
3682                 if (llmd == NULL)
3683                         GOTO(out, rc = -ENOMEM);
3684
3685                 INIT_LIST_HEAD(&llmd->llmd_req_list);
3686                 spin_lock_init(&llmd->llmd_lock);
3687                 INIT_LIST_HEAD(&llmd->llmd_ost_list);
3688                 INIT_LIST_HEAD(&llmd->llmd_ost_phase1_list);
3689                 INIT_LIST_HEAD(&llmd->llmd_ost_phase2_list);
3690                 INIT_LIST_HEAD(&llmd->llmd_mdt_list);
3691                 INIT_LIST_HEAD(&llmd->llmd_mdt_phase1_list);
3692                 INIT_LIST_HEAD(&llmd->llmd_mdt_phase2_list);
3693                 init_waitqueue_head(&llmd->llmd_thread.t_ctl_waitq);
3694                 com->lc_data = llmd;
3695         } else {
3696                 struct lfsck_layout_slave_data *llsd;
3697
3698                 com->lc_ops = &lfsck_layout_slave_ops;
3699                 OBD_ALLOC_PTR(llsd);
3700                 if (llsd == NULL)
3701                         GOTO(out, rc = -ENOMEM);
3702
3703                 INIT_LIST_HEAD(&llsd->llsd_seq_list);
3704                 INIT_LIST_HEAD(&llsd->llsd_master_list);
3705                 spin_lock_init(&llsd->llsd_lock);
3706                 com->lc_data = llsd;
3707         }
3708         com->lc_file_size = sizeof(*lo);
3709         OBD_ALLOC(com->lc_file_ram, com->lc_file_size);
3710         if (com->lc_file_ram == NULL)
3711                 GOTO(out, rc = -ENOMEM);
3712
3713         OBD_ALLOC(com->lc_file_disk, com->lc_file_size);
3714         if (com->lc_file_disk == NULL)
3715                 GOTO(out, rc = -ENOMEM);
3716
3717         root = dt_locate(env, lfsck->li_bottom, &lfsck->li_local_root_fid);
3718         if (IS_ERR(root))
3719                 GOTO(out, rc = PTR_ERR(root));
3720
3721         if (unlikely(!dt_try_as_dir(env, root)))
3722                 GOTO(out, rc = -ENOTDIR);
3723
3724         obj = local_file_find_or_create(env, lfsck->li_los, root,
3725                                         lfsck_layout_name,
3726                                         S_IFREG | S_IRUGO | S_IWUSR);
3727         if (IS_ERR(obj))
3728                 GOTO(out, rc = PTR_ERR(obj));
3729
3730         com->lc_obj = obj;
3731         rc = lfsck_layout_load(env, com);
3732         if (rc > 0)
3733                 rc = lfsck_layout_reset(env, com, true);
3734         else if (rc == -ENOENT)
3735                 rc = lfsck_layout_init(env, com);
3736
3737         if (rc != 0)
3738                 GOTO(out, rc);
3739
3740         lo = com->lc_file_ram;
3741         switch (lo->ll_status) {
3742         case LS_INIT:
3743         case LS_COMPLETED:
3744         case LS_FAILED:
3745         case LS_STOPPED:
3746         case LS_PARTIAL:
3747                 spin_lock(&lfsck->li_lock);
3748                 list_add_tail(&com->lc_link, &lfsck->li_list_idle);
3749                 spin_unlock(&lfsck->li_lock);
3750                 break;
3751         default:
3752                 CERROR("%s: unknown lfsck_layout status: rc = %u\n",
3753                        lfsck_lfsck2name(lfsck), lo->ll_status);
3754                 /* fall through */
3755         case LS_SCANNING_PHASE1:
3756         case LS_SCANNING_PHASE2:
3757                 /* No need to store the status to disk right now.
3758                  * If the system crashed before the status stored,
3759                  * it will be loaded back when next time. */
3760                 lo->ll_status = LS_CRASHED;
3761                 lo->ll_flags |= LF_INCOMPLETE;
3762                 /* fall through */
3763         case LS_PAUSED:
3764         case LS_CRASHED:
3765         case LS_CO_FAILED:
3766         case LS_CO_STOPPED:
3767         case LS_CO_PAUSED:
3768                 spin_lock(&lfsck->li_lock);
3769                 list_add_tail(&com->lc_link, &lfsck->li_list_scan);
3770                 spin_unlock(&lfsck->li_lock);
3771                 break;
3772         }
3773
3774         if (lo->ll_flags & LF_CRASHED_LASTID) {
3775                 LASSERT(lfsck->li_out_notify != NULL);
3776
3777                 lfsck->li_out_notify(env, lfsck->li_out_notify_data,
3778                                      LE_LASTID_REBUILDING);
3779         }
3780
3781         GOTO(out, rc = 0);
3782
3783 out:
3784         if (root != NULL && !IS_ERR(root))
3785                 lu_object_put(env, &root->do_lu);
3786
3787         if (rc != 0)
3788                 lfsck_component_cleanup(env, com);
3789
3790         return rc;
3791 }