4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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.
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
23 * Copyright (c) 2013, 2015, Intel Corporation.
26 * lustre/lfsck/lfsck_engine.c
28 * Author: Fan, Yong <fan.yong@intel.com>
31 #define DEBUG_SUBSYSTEM S_LFSCK
33 #include <lu_object.h>
34 #include <dt_object.h>
35 #include <lustre_net.h>
36 #include <lustre_fid.h>
37 #include <obd_support.h>
38 #include <lustre_lib.h>
40 #include "lfsck_internal.h"
42 int lfsck_unpack_ent(struct lu_dirent *ent, __u64 *cookie, __u16 *type)
45 int align = sizeof(*lt) - 1;
48 fid_le_to_cpu(&ent->lde_fid, &ent->lde_fid);
49 *cookie = le64_to_cpu(ent->lde_hash);
50 ent->lde_reclen = le16_to_cpu(ent->lde_reclen);
51 ent->lde_namelen = le16_to_cpu(ent->lde_namelen);
52 ent->lde_attrs = le32_to_cpu(ent->lde_attrs);
54 if (unlikely(!(ent->lde_attrs & LUDA_TYPE)))
57 len = (ent->lde_namelen + align) & ~align;
58 lt = (struct luda_type *)(ent->lde_name + len);
59 *type = le16_to_cpu(lt->lt_type);
61 /* Make sure the name is terminated with '\0'. The data (object type)
62 * after ent::lde_name maybe broken, but we have stored such data in
63 * the output parameter @type as above. */
64 ent->lde_name[ent->lde_namelen] = '\0';
69 static void lfsck_di_oit_put(const struct lu_env *env, struct lfsck_instance *lfsck)
71 const struct dt_it_ops *iops;
74 spin_lock(&lfsck->li_lock);
75 iops = &lfsck->li_obj_oit->do_index_ops->dio_it;
76 di = lfsck->li_di_oit;
77 lfsck->li_di_oit = NULL;
78 spin_unlock(&lfsck->li_lock);
82 static void lfsck_di_dir_put(const struct lu_env *env, struct lfsck_instance *lfsck)
84 const struct dt_it_ops *iops;
87 spin_lock(&lfsck->li_lock);
88 iops = &lfsck->li_obj_dir->do_index_ops->dio_it;
89 di = lfsck->li_di_dir;
90 lfsck->li_di_dir = NULL;
91 lfsck->li_cookie_dir = 0;
92 spin_unlock(&lfsck->li_lock);
96 static int lfsck_parent_fid(const struct lu_env *env, struct dt_object *obj,
99 if (unlikely(!S_ISDIR(lfsck_object_type(obj)) ||
100 !dt_try_as_dir(env, obj)))
103 return dt_lookup(env, obj, (struct dt_rec *)fid,
104 (const struct dt_key *)"..");
108 * Check whether needs to scan the directory or not.
110 * 1) If we are not doing namespace LFSCK, or the given @obj is not directory,
111 * then needs not to scan the @obj. Otherwise,
112 * 2) Global /ROOT needs to be scanned, backend root needs not to be scanned.
113 * 3) If the @obj is neither IGIF nor normal FID (including .lustre and its
114 * sub-directories that have been scanned when the LFSCK engine start),
115 * then needs not to be scanned.
116 * 4) If it is a remote object, then scanning the object will be done on the
117 * MDT on which the object really resides.
118 * 5) If the local object has normal FID, then needs to be scanned. Otherwise,
119 * 6) If the object has linkEA, then needs to be scanned. Otherwise,
120 * 7) If none of the previous conditions are true, we need to check the parent
121 * directories whether this subdirectory is in a tree that should be scanned.
122 * Set the parent as current @obj, repeat 2)-7).
124 * \param[in] env pointer to the thread context
125 * \param[in] lfsck pointer to the lfsck instance
126 * \param[in] obj pointer to the object to be checked
128 * \retval positive number if the directory needs to be scanned
129 * \retval 0 if the directory needs NOT to be scanned
130 * \retval negative error number on failure
132 static int lfsck_needs_scan_dir(const struct lu_env *env,
133 struct lfsck_instance *lfsck,
134 struct dt_object *obj)
136 struct lfsck_thread_info *info = lfsck_env_info(env);
137 struct lu_fid *fid = &info->lti_fid;
138 struct lu_seq_range *range = &info->lti_range;
139 struct seq_server_site *ss = lfsck_dev_site(lfsck);
140 __u32 idx = lfsck_dev_idx(lfsck);
144 if (list_empty(&lfsck->li_list_dir) || !S_ISDIR(lfsck_object_type(obj)))
149 *fid = *lfsck_dto2fid(obj);
151 /* Global /ROOT is visible. */
152 if (unlikely(lu_fid_eq(fid, &lfsck->li_global_root_fid)))
155 /* Backend root is invisible. */
156 if (unlikely(lu_fid_eq(fid, &lfsck->li_local_root_fid)))
159 if (!fid_is_norm(fid) && !fid_is_igif(fid))
162 fld_range_set_mdt(range);
163 rc = fld_local_lookup(env, ss->ss_server_fld,
164 fid_seq(fid), range);
165 if (rc != 0 || range->lsr_index != idx)
166 /* Current FID should NOT be for the input parameter
167 * @obj, because the lfsck_master_oit_engine() has
168 * filtered out agent object. So current FID is for
169 * the ancestor of the original input parameter @obj.
170 * So the ancestor is a remote directory. The input
171 * parameter @obj is local directory, and should be
172 * scanned under such case. */
175 /* normal FID on this target (locally) must be for the
176 * client-side visiable object. */
177 if (fid_is_norm(fid))
181 obj = lfsck_object_find_bottom(env, lfsck, fid);
186 if (!dt_object_exists(obj))
190 dt_read_lock(env, obj, MOR_TGT_CHILD);
191 if (unlikely(lfsck_is_dead_obj(obj))) {
192 dt_read_unlock(env, obj);
197 rc = dt_xattr_get(env, obj,
198 lfsck_buf_get(env, NULL, 0), XATTR_NAME_LINK);
199 dt_read_unlock(env, obj);
203 if (rc < 0 && rc != -ENODATA)
206 rc = lfsck_parent_fid(env, obj, fid);
208 lfsck_object_put(env, obj);
214 if (!fid_is_sane(fid))
219 if (depth > 0 && obj != NULL)
220 lfsck_object_put(env, obj);
225 static int lfsck_load_stripe_lmv(const struct lu_env *env,
226 struct lfsck_instance *lfsck,
227 struct dt_object *obj)
229 struct lmv_mds_md_v1 *lmv = &lfsck_env_info(env)->lti_lmv;
230 struct lfsck_lmv *llmv;
234 LASSERT(lfsck->li_obj_dir == NULL);
235 LASSERT(lfsck->li_lmv == NULL);
237 rc = lfsck_read_stripe_lmv(env, obj, lmv);
238 if (rc == -ENODATA) {
239 lfsck->li_obj_dir = lfsck_object_get(obj);
251 if (lmv->lmv_magic == LMV_MAGIC) {
252 struct lfsck_slave_lmv_rec *lslr;
255 llmv->ll_lmv_master = 1;
256 if (lmv->lmv_stripe_count < 1)
257 stripes = LFSCK_LMV_DEF_STRIPES;
258 else if (lmv->lmv_stripe_count > LFSCK_LMV_MAX_STRIPES)
259 stripes = LFSCK_LMV_MAX_STRIPES;
261 stripes = lmv->lmv_stripe_count;
263 OBD_ALLOC_LARGE(lslr, sizeof(*lslr) * stripes);
270 llmv->ll_stripes_allocated = stripes;
271 llmv->ll_hash_type = LMV_HASH_TYPE_UNKNOWN;
272 llmv->ll_lslr = lslr;
274 llmv->ll_lmv_slave = 1;
277 lfsck->li_obj_dir = lfsck_object_get(obj);
279 atomic_set(&llmv->ll_ref, 1);
280 lfsck->li_lmv = llmv;
285 /* LFSCK wrap functions */
287 static void lfsck_fail(const struct lu_env *env, struct lfsck_instance *lfsck,
290 struct lfsck_component *com;
292 list_for_each_entry(com, &lfsck->li_list_scan, lc_link) {
293 com->lc_ops->lfsck_fail(env, com, new_checked);
297 void lfsck_close_dir(const struct lu_env *env,
298 struct lfsck_instance *lfsck, int result)
300 struct lfsck_component *com;
303 if (lfsck->li_lmv != NULL) {
304 lfsck->li_lmv->ll_exit_value = result;
305 if (lfsck->li_obj_dir != NULL) {
306 list_for_each_entry(com, &lfsck->li_list_dir,
308 com->lc_ops->lfsck_close_dir(env, com);
312 lfsck_lmv_put(env, lfsck->li_lmv);
313 lfsck->li_lmv = NULL;
316 if (lfsck->li_di_dir != NULL) {
317 const struct dt_it_ops *dir_iops;
318 struct dt_it *dir_di = lfsck->li_di_dir;
320 LASSERT(lfsck->li_obj_dir != NULL);
322 dir_iops = &lfsck->li_obj_dir->do_index_ops->dio_it;
323 lfsck_di_dir_put(env, lfsck);
324 dir_iops->fini(env, dir_di);
327 if (lfsck->li_obj_dir != NULL) {
328 struct dt_object *dir_obj = lfsck->li_obj_dir;
330 lfsck->li_obj_dir = NULL;
331 lfsck_object_put(env, dir_obj);
337 int lfsck_open_dir(const struct lu_env *env,
338 struct lfsck_instance *lfsck, __u64 cookie)
340 struct dt_object *obj = lfsck->li_obj_dir;
341 struct dt_it *di = lfsck->li_di_dir;
342 struct lfsck_component *com;
343 const struct dt_it_ops *iops;
347 LASSERT(obj != NULL);
350 if (unlikely(!dt_try_as_dir(env, obj)))
351 GOTO(out, rc = -ENOTDIR);
353 list_for_each_entry(com, &lfsck->li_list_dir, lc_link_dir) {
354 rc = com->lc_ops->lfsck_open_dir(env, com);
359 iops = &obj->do_index_ops->dio_it;
360 di = iops->init(env, obj, lfsck->li_args_dir);
362 GOTO(out, rc = PTR_ERR(di));
364 rc = iops->load(env, di, cookie);
365 if (rc == 0 || (rc > 0 && cookie > 0))
366 rc = iops->next(env, di);
374 lfsck->li_cookie_dir = iops->store(env, di);
375 spin_lock(&lfsck->li_lock);
376 lfsck->li_di_dir = di;
377 spin_unlock(&lfsck->li_lock);
384 lfsck_close_dir(env, lfsck, rc);
389 static int lfsck_checkpoint(const struct lu_env *env,
390 struct lfsck_instance *lfsck)
392 struct lfsck_component *com;
396 if (likely(cfs_time_beforeq(cfs_time_current(),
397 lfsck->li_time_next_checkpoint)))
400 lfsck_pos_fill(env, lfsck, &lfsck->li_pos_checkpoint, false);
401 list_for_each_entry(com, &lfsck->li_list_scan, lc_link) {
402 rc = com->lc_ops->lfsck_checkpoint(env, com, false);
407 lfsck->li_time_last_checkpoint = cfs_time_current();
408 lfsck->li_time_next_checkpoint = lfsck->li_time_last_checkpoint +
409 cfs_time_seconds(LFSCK_CHECKPOINT_INTERVAL);
410 return rc1 != 0 ? rc1 : rc;
413 static int lfsck_prep(const struct lu_env *env, struct lfsck_instance *lfsck,
414 struct lfsck_start_param *lsp)
416 struct dt_object *obj = NULL;
417 struct lfsck_component *com;
418 struct lfsck_component *next;
419 struct lfsck_position *pos = NULL;
420 const struct dt_it_ops *iops =
421 &lfsck->li_obj_oit->do_index_ops->dio_it;
425 LASSERT(lfsck->li_obj_dir == NULL);
426 LASSERT(lfsck->li_di_dir == NULL);
428 lfsck->li_current_oit_processed = 0;
429 list_for_each_entry_safe(com, next, &lfsck->li_list_scan, lc_link) {
430 com->lc_new_checked = 0;
431 rc = com->lc_ops->lfsck_prep(env, com, lsp);
436 (!lfsck_pos_is_zero(&com->lc_pos_start) &&
437 lfsck_pos_is_eq(pos, &com->lc_pos_start) > 0))
438 pos = &com->lc_pos_start;
441 /* Init otable-based iterator. */
443 rc = iops->load(env, lfsck->li_di_oit, 0);
445 lfsck->li_oit_over = 1;
452 rc = iops->load(env, lfsck->li_di_oit, pos->lp_oit_cookie);
456 lfsck->li_oit_over = 1;
458 if (!lfsck->li_master || fid_is_zero(&pos->lp_dir_parent))
461 /* Find the directory for namespace-based traverse. */
462 obj = lfsck_object_find_bottom(env, lfsck, &pos->lp_dir_parent);
464 RETURN(PTR_ERR(obj));
466 /* Remote directory will be scanned by the LFSCK instance
467 * on the MDT where the remote object really resides on. */
468 if (!dt_object_exists(obj) || dt_object_remote(obj) ||
469 unlikely(!S_ISDIR(lfsck_object_type(obj))))
472 rc = lfsck_load_stripe_lmv(env, lfsck, obj);
474 /* For the master MDT-object of a striped directory,
475 * reset the iteration from the directory beginning. */
476 if (lfsck->li_lmv != NULL && lfsck->li_lmv->ll_lmv_master)
477 pos->lp_dir_cookie = 0;
479 rc = lfsck_open_dir(env, lfsck, pos->lp_dir_cookie);
481 /* The end of the directory. */
489 lfsck_object_put(env, obj);
492 lfsck_close_dir(env, lfsck, rc);
493 list_for_each_entry_safe(com, next, &lfsck->li_list_scan,
495 com->lc_ops->lfsck_post(env, com, rc, true);
502 lfsck_pos_fill(env, lfsck, &lfsck->li_pos_checkpoint, true);
503 lfsck->li_pos_current = lfsck->li_pos_checkpoint;
504 list_for_each_entry(com, &lfsck->li_list_scan, lc_link) {
505 rc = com->lc_ops->lfsck_checkpoint(env, com, true);
510 lfsck->li_time_last_checkpoint = cfs_time_current();
511 lfsck->li_time_next_checkpoint = lfsck->li_time_last_checkpoint +
512 cfs_time_seconds(LFSCK_CHECKPOINT_INTERVAL);
516 static int lfsck_exec_oit(const struct lu_env *env,
517 struct lfsck_instance *lfsck, struct dt_object *obj)
519 struct lfsck_component *com;
523 LASSERT(lfsck->li_obj_dir == NULL);
525 list_for_each_entry(com, &lfsck->li_list_scan, lc_link) {
526 rc = com->lc_ops->lfsck_exec_oit(env, com, obj);
531 rc = lfsck_needs_scan_dir(env, lfsck, obj);
535 rc = lfsck_load_stripe_lmv(env, lfsck, obj);
537 rc = lfsck_open_dir(env, lfsck, 0);
543 lfsck_fail(env, lfsck, false);
546 lfsck_close_dir(env, lfsck, rc);
548 return rc > 0 ? 0 : rc;
551 static int lfsck_exec_dir(const struct lu_env *env,
552 struct lfsck_instance *lfsck,
553 struct lfsck_assistant_object *lso,
554 struct lu_dirent *ent, __u16 type)
556 struct lfsck_component *com;
559 list_for_each_entry(com, &lfsck->li_list_scan, lc_link) {
560 rc = com->lc_ops->lfsck_exec_dir(env, com, lso, ent, type);
567 static int lfsck_master_dir_engine(const struct lu_env *env,
568 struct lfsck_instance *lfsck);
570 static int lfsck_post(const struct lu_env *env, struct lfsck_instance *lfsck,
573 struct lfsck_component *com;
574 struct lfsck_component *next;
577 lfsck_pos_fill(env, lfsck, &lfsck->li_pos_checkpoint, false);
578 lfsck_close_dir(env, lfsck, result);
580 while (thread_is_running(&lfsck->li_thread) && rc > 0 &&
581 !list_empty(&lfsck->li_list_lmv)) {
582 struct lfsck_lmv_unit *llu;
584 spin_lock(&lfsck->li_lock);
585 llu = list_entry(lfsck->li_list_lmv.next,
586 struct lfsck_lmv_unit, llu_link);
587 list_del_init(&llu->llu_link);
588 spin_unlock(&lfsck->li_lock);
590 lfsck->li_lmv = &llu->llu_lmv;
591 lfsck->li_obj_dir = lfsck_object_get(llu->llu_obj);
592 rc = lfsck_open_dir(env, lfsck, 0);
594 rc = lfsck_master_dir_engine(env, lfsck);
595 lfsck_close_dir(env, lfsck, result);
601 list_for_each_entry_safe(com, next, &lfsck->li_list_scan, lc_link) {
602 rc = com->lc_ops->lfsck_post(env, com, result, false);
604 CDEBUG(D_LFSCK, "%s: lfsck_post at the component %u: "
605 "rc = %d\n", lfsck_lfsck2name(lfsck),
606 (__u32)com->lc_type, rc);
609 lfsck->li_time_last_checkpoint = cfs_time_current();
610 lfsck->li_time_next_checkpoint = lfsck->li_time_last_checkpoint +
611 cfs_time_seconds(LFSCK_CHECKPOINT_INTERVAL);
613 /* Ignore some component post failure to make other can go ahead. */
617 static int lfsck_double_scan(const struct lu_env *env,
618 struct lfsck_instance *lfsck)
620 struct lfsck_component *com;
621 struct lfsck_component *next;
622 struct l_wait_info lwi = { 0 };
626 list_for_each_entry(com, &lfsck->li_list_double_scan, lc_link) {
627 rc = com->lc_ops->lfsck_double_scan(env, com);
632 l_wait_event(lfsck->li_thread.t_ctl_waitq,
633 atomic_read(&lfsck->li_double_scan_count) == 0,
636 if (lfsck->li_status != LS_PAUSED &&
637 lfsck->li_status != LS_CO_PAUSED) {
638 list_for_each_entry_safe(com, next, &lfsck->li_list_double_scan,
640 spin_lock(&lfsck->li_lock);
641 list_move_tail(&com->lc_link, &lfsck->li_list_idle);
642 spin_unlock(&lfsck->li_lock);
646 return rc1 != 0 ? rc1 : rc;
649 static void lfsck_quit(const struct lu_env *env, struct lfsck_instance *lfsck)
651 struct lfsck_component *com;
652 struct lfsck_component *next;
654 list_for_each_entry_safe(com, next, &lfsck->li_list_scan,
656 if (com->lc_ops->lfsck_quit != NULL)
657 com->lc_ops->lfsck_quit(env, com);
659 spin_lock(&lfsck->li_lock);
660 list_del_init(&com->lc_link_dir);
661 list_move_tail(&com->lc_link, &lfsck->li_list_idle);
662 spin_unlock(&lfsck->li_lock);
665 list_for_each_entry_safe(com, next, &lfsck->li_list_double_scan,
667 if (com->lc_ops->lfsck_quit != NULL)
668 com->lc_ops->lfsck_quit(env, com);
670 spin_lock(&lfsck->li_lock);
671 list_move_tail(&com->lc_link, &lfsck->li_list_idle);
672 spin_unlock(&lfsck->li_lock);
678 static int lfsck_master_dir_engine(const struct lu_env *env,
679 struct lfsck_instance *lfsck)
681 struct lfsck_thread_info *info = lfsck_env_info(env);
682 struct dt_object *dir = lfsck->li_obj_dir;
683 const struct dt_it_ops *iops = &dir->do_index_ops->dio_it;
684 struct dt_it *di = lfsck->li_di_dir;
685 struct lu_dirent *ent =
686 (struct lu_dirent *)info->lti_key;
687 struct lfsck_bookmark *bk = &lfsck->li_bookmark_ram;
688 struct ptlrpc_thread *thread = &lfsck->li_thread;
689 struct lfsck_assistant_object *lso = NULL;
695 if (CFS_FAIL_TIMEOUT(OBD_FAIL_LFSCK_DELAY2, cfs_fail_val) &&
696 unlikely(!thread_is_running(thread))) {
697 CDEBUG(D_LFSCK, "%s: scan dir exit for engine stop, "
698 "parent "DFID", cookie "LPX64"\n",
699 lfsck_lfsck2name(lfsck),
700 PFID(lfsck_dto2fid(dir)), lfsck->li_cookie_dir);
705 lfsck->li_new_scanned++;
706 rc = iops->rec(env, di, (struct dt_rec *)ent,
709 rc = lfsck_unpack_ent(ent, &lfsck->li_cookie_dir,
713 CDEBUG(D_LFSCK, "%s: scan dir failed at rec(), "
714 "parent "DFID", cookie "LPX64": rc = %d\n",
715 lfsck_lfsck2name(lfsck),
716 PFID(lfsck_dto2fid(dir)),
717 lfsck->li_cookie_dir, rc);
718 lfsck_fail(env, lfsck, true);
719 if (bk->lb_param & LPF_FAILOUT)
725 if (ent->lde_attrs & LUDA_IGNORE)
728 /* skip dot entry. */
729 if (ent->lde_namelen == 1 && ent->lde_name[0] == '.')
733 lso = lfsck_assistant_object_init(env,
734 lfsck_dto2fid(dir), NULL,
735 lfsck->li_pos_current.lp_oit_cookie, true);
737 if (bk->lb_param & LPF_FAILOUT)
738 RETURN(PTR_ERR(lso));
745 /* The type in the @ent structure may has been overwritten,
746 * so we need to pass the @type parameter independently. */
747 rc = lfsck_exec_dir(env, lfsck, lso, ent, type);
748 if (rc != 0 && bk->lb_param & LPF_FAILOUT)
752 rc = lfsck_checkpoint(env, lfsck);
753 if (rc != 0 && bk->lb_param & LPF_FAILOUT)
757 lfsck_control_speed(lfsck);
758 if (unlikely(!thread_is_running(thread))) {
759 CDEBUG(D_LFSCK, "%s: scan dir exit for engine stop, "
760 "parent "DFID", cookie "LPX64"\n",
761 lfsck_lfsck2name(lfsck),
762 PFID(lfsck_dto2fid(dir)),
763 lfsck->li_cookie_dir);
767 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_FATAL2)) {
768 spin_lock(&lfsck->li_lock);
769 thread_set_flags(thread, SVC_STOPPING);
770 spin_unlock(&lfsck->li_lock);
771 GOTO(out, rc = -EINVAL);
774 rc = iops->next(env, di);
777 if (rc > 0 && !lfsck->li_oit_over)
778 lfsck_close_dir(env, lfsck, rc);
784 lfsck_assistant_object_put(env, lso);
790 * Object-table based iteration engine.
792 * Object-table based iteration is the basic linear engine to scan all the
793 * objects on current device in turn. For each object, it calls all the
794 * registered LFSCK component(s)' API to perform related consistency
797 * It flushes related LFSCK trace files to disk via making checkpoint
798 * periodically. Then if the server crashed or the LFSCK is paused, the
799 * LFSCK can resume from the latest checkpoint.
801 * It also controls the whole LFSCK speed via lfsck_control_speed() to
802 * avoid the server to become overload.
804 * \param[in] env pointer to the thread context
805 * \param[in] lfsck pointer to the lfsck instance
807 * \retval positive number if all objects have been scanned
808 * \retval 0 if the iteration is stopped or paused
809 * \retval negative error number on failure
811 static int lfsck_master_oit_engine(const struct lu_env *env,
812 struct lfsck_instance *lfsck)
814 struct lfsck_thread_info *info = lfsck_env_info(env);
815 const struct dt_it_ops *iops =
816 &lfsck->li_obj_oit->do_index_ops->dio_it;
817 struct dt_it *di = lfsck->li_di_oit;
818 struct lu_fid *fid = &info->lti_fid;
819 struct lfsck_bookmark *bk = &lfsck->li_bookmark_ram;
820 struct ptlrpc_thread *thread = &lfsck->li_thread;
821 struct seq_server_site *ss = lfsck_dev_site(lfsck);
822 __u32 idx = lfsck_dev_idx(lfsck);
826 if (unlikely(ss == NULL))
830 struct dt_object *target;
832 if (lfsck->li_di_dir != NULL) {
833 rc = lfsck_master_dir_engine(env, lfsck);
838 if (unlikely(lfsck->li_oit_over))
841 if (CFS_FAIL_TIMEOUT(OBD_FAIL_LFSCK_DELAY1, cfs_fail_val) &&
842 unlikely(!thread_is_running(thread))) {
843 CDEBUG(D_LFSCK, "%s: OIT scan exit for engine stop, "
845 lfsck_lfsck2name(lfsck), iops->store(env, di));
850 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CRASH))
853 lfsck->li_current_oit_processed = 1;
855 if (!list_empty(&lfsck->li_list_lmv)) {
856 struct lfsck_lmv_unit *llu;
858 spin_lock(&lfsck->li_lock);
859 llu = list_entry(lfsck->li_list_lmv.next,
860 struct lfsck_lmv_unit, llu_link);
861 list_del_init(&llu->llu_link);
862 spin_unlock(&lfsck->li_lock);
864 lfsck->li_lmv = &llu->llu_lmv;
865 lfsck->li_obj_dir = lfsck_object_get(llu->llu_obj);
866 rc = lfsck_open_dir(env, lfsck, 0);
868 rc = lfsck_master_dir_engine(env, lfsck);
874 lfsck->li_new_scanned++;
875 lfsck->li_pos_current.lp_oit_cookie = iops->store(env, di);
876 rc = iops->rec(env, di, (struct dt_rec *)fid, 0);
878 CDEBUG(D_LFSCK, "%s: OIT scan failed at rec(): "
879 "rc = %d\n", lfsck_lfsck2name(lfsck), rc);
880 lfsck_fail(env, lfsck, true);
881 if (rc < 0 && bk->lb_param & LPF_FAILOUT)
887 if (unlikely(!fid_is_sane(fid))) {
888 CDEBUG(D_LFSCK, "%s: OIT scan find invalid FID "DFID
890 lfsck_lfsck2name(lfsck), PFID(fid));
894 if (fid_is_idif(fid)) {
895 __u32 idx1 = fid_idif_ost_idx(fid);
897 LASSERT(!lfsck->li_master);
900 struct ost_id *oi = &info->lti_oi;
902 if (unlikely(idx1 != 0)) {
903 CDEBUG(D_LFSCK, "%s: invalid IDIF "DFID
904 ", not match device index %u\n",
905 lfsck_lfsck2name(lfsck),
911 /* rebuild the IDIF with index to
912 * avoid double instances for the
914 fid_to_ostid(fid, oi);
915 ostid_to_fid(fid, oi, idx);
917 } else if (!fid_is_norm(fid) && !fid_is_igif(fid) &&
918 !fid_is_last_id(fid) &&
919 !lu_fid_eq(fid, &lfsck->li_global_root_fid)) {
921 /* If the FID/object is only used locally and invisible
922 * to external nodes, then LFSCK will not handle it.
924 * dot_lustre sequence has been handled specially. */
927 struct lu_seq_range *range = &info->lti_range;
929 if (lfsck->li_master)
930 fld_range_set_mdt(range);
932 fld_range_set_ost(range);
933 rc = fld_local_lookup(env, ss->ss_server_fld,
934 fid_seq(fid), range);
935 if (rc != 0 || range->lsr_index != idx) {
936 /* Remote object will be handled by the LFSCK
937 * instance on the MDT where the remote object
938 * really resides on. */
944 target = lfsck_object_find_bottom(env, lfsck, fid);
945 if (IS_ERR(target)) {
946 CDEBUG(D_LFSCK, "%s: OIT scan failed at find target "
947 DFID", cookie "LPU64": rc = %d\n",
948 lfsck_lfsck2name(lfsck), PFID(fid),
949 iops->store(env, di), rc);
950 lfsck_fail(env, lfsck, true);
951 if (bk->lb_param & LPF_FAILOUT)
952 RETURN(PTR_ERR(target));
957 if (dt_object_exists(target))
958 rc = lfsck_exec_oit(env, lfsck, target);
960 lfsck_object_put(env, target);
961 if (rc != 0 && bk->lb_param & LPF_FAILOUT)
965 rc = lfsck_checkpoint(env, lfsck);
966 if (rc != 0 && bk->lb_param & LPF_FAILOUT)
970 lfsck_control_speed(lfsck);
972 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_FATAL1)) {
973 spin_lock(&lfsck->li_lock);
974 thread_set_flags(thread, SVC_STOPPING);
975 spin_unlock(&lfsck->li_lock);
979 rc = iops->next(env, di);
980 if (unlikely(rc > 0))
981 lfsck->li_oit_over = 1;
982 else if (likely(rc == 0))
983 lfsck->li_current_oit_processed = 0;
985 if (unlikely(!thread_is_running(thread))) {
986 CDEBUG(D_LFSCK, "%s: OIT scan exit for engine stop, "
987 "cookie "LPU64"\n", lfsck_lfsck2name(lfsck),
988 iops->store(env, di));
991 } while (rc == 0 || lfsck->li_di_dir != NULL);
996 int lfsck_master_engine(void *args)
998 struct lfsck_thread_args *lta = args;
999 struct lu_env *env = <a->lta_env;
1000 struct lfsck_instance *lfsck = lta->lta_lfsck;
1001 struct ptlrpc_thread *thread = &lfsck->li_thread;
1002 struct dt_object *oit_obj = lfsck->li_obj_oit;
1003 const struct dt_it_ops *oit_iops = &oit_obj->do_index_ops->dio_it;
1004 struct dt_it *oit_di;
1005 struct l_wait_info lwi = { 0 };
1009 if (lfsck->li_master &&
1010 (!list_empty(&lfsck->li_list_scan) ||
1011 !list_empty(&lfsck->li_list_double_scan))) {
1012 rc = lfsck_verify_lpf(env, lfsck);
1013 /* Fail to verify the .lustre/lost+found/MDTxxxx/ may be not
1014 * fatal, because the .lustre/lost+found/ maybe not accessed
1015 * by the LFSCK if it does not add orphans or others to such
1016 * directory. So go ahead until hit failure when really uses
1019 CDEBUG(D_LFSCK, "%s: master engine fail to verify the "
1020 ".lustre/lost+found/, go ahead: rc = %d\n",
1021 lfsck_lfsck2name(lfsck), rc);
1024 oit_di = oit_iops->init(env, oit_obj, lfsck->li_args_oit);
1025 if (IS_ERR(oit_di)) {
1026 rc = PTR_ERR(oit_di);
1027 CDEBUG(D_LFSCK, "%s: master engine fail to init iteration: "
1028 "rc = %d\n", lfsck_lfsck2name(lfsck), rc);
1030 GOTO(fini_args, rc);
1033 spin_lock(&lfsck->li_lock);
1034 lfsck->li_di_oit = oit_di;
1035 spin_unlock(&lfsck->li_lock);
1036 rc = lfsck_prep(env, lfsck, lta->lta_lsp);
1040 CDEBUG(D_LFSCK, "LFSCK entry: oit_flags = %#x, dir_flags = %#x, "
1041 "oit_cookie = "LPU64", dir_cookie = "LPX64", parent = "DFID
1042 ", pid = %d\n", lfsck->li_args_oit, lfsck->li_args_dir,
1043 lfsck->li_pos_checkpoint.lp_oit_cookie,
1044 lfsck->li_pos_checkpoint.lp_dir_cookie,
1045 PFID(&lfsck->li_pos_checkpoint.lp_dir_parent),
1048 spin_lock(&lfsck->li_lock);
1049 thread_set_flags(thread, SVC_RUNNING);
1050 spin_unlock(&lfsck->li_lock);
1051 wake_up_all(&thread->t_ctl_waitq);
1053 l_wait_event(thread->t_ctl_waitq,
1054 lfsck->li_start_unplug ||
1055 !thread_is_running(thread),
1057 if (!thread_is_running(thread))
1058 GOTO(fini_oit, rc = 0);
1060 if (!list_empty(&lfsck->li_list_scan) ||
1061 list_empty(&lfsck->li_list_double_scan))
1062 rc = lfsck_master_oit_engine(env, lfsck);
1066 lfsck_pos_fill(env, lfsck, &lfsck->li_pos_checkpoint, false);
1067 CDEBUG(D_LFSCK, "LFSCK exit: oit_flags = %#x, dir_flags = %#x, "
1068 "oit_cookie = "LPU64", dir_cookie = "LPX64", parent = "DFID
1069 ", pid = %d, rc = %d\n", lfsck->li_args_oit, lfsck->li_args_dir,
1070 lfsck->li_pos_checkpoint.lp_oit_cookie,
1071 lfsck->li_pos_checkpoint.lp_dir_cookie,
1072 PFID(&lfsck->li_pos_checkpoint.lp_dir_parent),
1075 if (!OBD_FAIL_CHECK(OBD_FAIL_LFSCK_CRASH))
1076 rc = lfsck_post(env, lfsck, rc);
1078 lfsck_close_dir(env, lfsck, rc);
1081 lfsck_di_oit_put(env, lfsck);
1082 oit_iops->fini(env, oit_di);
1084 if (!list_empty(&lfsck->li_list_double_scan))
1085 rc = lfsck_double_scan(env, lfsck);
1089 lfsck_quit(env, lfsck);
1092 /* XXX: Purge the pinned objects in the future. */
1095 spin_lock(&lfsck->li_lock);
1096 thread_set_flags(thread, SVC_STOPPED);
1097 spin_unlock(&lfsck->li_lock);
1098 wake_up_all(&thread->t_ctl_waitq);
1099 lfsck_thread_args_fini(lta);
1103 static inline bool lfsck_assistant_req_empty(struct lfsck_assistant_data *lad)
1107 spin_lock(&lad->lad_lock);
1108 if (list_empty(&lad->lad_req_list))
1110 spin_unlock(&lad->lad_lock);
1116 * Query the LFSCK status from the instatnces on remote servers.
1118 * The LFSCK assistant thread queries the LFSCK instances on other
1119 * servers (MDT/OST) about their status, such as whether they have
1120 * finished the phase1/phase2 scanning or not, and so on.
1122 * \param[in] env pointer to the thread context
1123 * \param[in] com pointer to the lfsck component
1125 * \retval 0 for success
1126 * \retval negative error number on failure
1128 static int lfsck_assistant_query_others(const struct lu_env *env,
1129 struct lfsck_component *com)
1131 struct lfsck_thread_info *info = lfsck_env_info(env);
1132 struct lfsck_request *lr = &info->lti_lr;
1133 struct lfsck_async_interpret_args *laia = &info->lti_laia;
1134 struct lfsck_instance *lfsck = com->lc_lfsck;
1135 struct lfsck_assistant_data *lad = com->lc_data;
1136 struct ptlrpc_request_set *set;
1137 struct lfsck_tgt_descs *ltds;
1138 struct lfsck_tgt_desc *ltd;
1139 struct list_head *phase_head;
1144 set = ptlrpc_prep_set();
1148 lad->lad_touch_gen++;
1149 memset(lr, 0, sizeof(*lr));
1150 lr->lr_event = LE_QUERY;
1151 lr->lr_active = com->lc_type;
1152 laia->laia_com = com;
1154 laia->laia_shared = 0;
1156 if (!list_empty(&lad->lad_mdt_phase1_list)) {
1157 ltds = &lfsck->li_mdt_descs;
1159 phase_head = &lad->lad_mdt_phase1_list;
1160 } else if (com->lc_type != LFSCK_TYPE_LAYOUT) {
1165 ltds = &lfsck->li_ost_descs;
1166 lr->lr_flags = LEF_TO_OST;
1167 phase_head = &lad->lad_ost_phase1_list;
1170 laia->laia_ltds = ltds;
1171 spin_lock(<ds->ltd_lock);
1172 while (!list_empty(phase_head)) {
1173 struct list_head *phase_list;
1176 if (com->lc_type == LFSCK_TYPE_LAYOUT) {
1177 ltd = list_entry(phase_head->next,
1178 struct lfsck_tgt_desc,
1179 ltd_layout_phase_list);
1180 phase_list = <d->ltd_layout_phase_list;
1181 gen = <d->ltd_layout_gen;
1183 ltd = list_entry(phase_head->next,
1184 struct lfsck_tgt_desc,
1185 ltd_namespace_phase_list);
1186 phase_list = <d->ltd_namespace_phase_list;
1187 gen = <d->ltd_namespace_gen;
1190 if (*gen == lad->lad_touch_gen)
1193 *gen = lad->lad_touch_gen;
1194 list_move_tail(phase_list, phase_head);
1195 atomic_inc(<d->ltd_ref);
1196 laia->laia_ltd = ltd;
1197 spin_unlock(<ds->ltd_lock);
1198 rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
1199 lfsck_async_interpret_common,
1202 CDEBUG(D_LFSCK, "%s: LFSCK assistant fail to query "
1203 "%s %x for %s: rc = %d\n",
1204 lfsck_lfsck2name(lfsck),
1205 (lr->lr_flags & LEF_TO_OST) ? "OST" : "MDT",
1206 ltd->ltd_index, lad->lad_name, rc);
1210 spin_lock(<ds->ltd_lock);
1212 spin_unlock(<ds->ltd_lock);
1214 rc = ptlrpc_set_wait(set);
1216 ptlrpc_set_destroy(set);
1220 if (com->lc_type == LFSCK_TYPE_LAYOUT && !(lr->lr_flags & LEF_TO_OST) &&
1221 list_empty(&lad->lad_mdt_phase1_list))
1225 ptlrpc_set_destroy(set);
1227 RETURN(rc1 != 0 ? rc1 : rc);
1231 * Notify the LFSCK event to the instances on remote servers.
1233 * The LFSCK assistant thread notifies the LFSCK instances on other
1234 * servers (MDT/OST) about some events, such as start new scanning,
1235 * stop the scanning, this LFSCK instance will exit, and so on.
1237 * \param[in] env pointer to the thread context
1238 * \param[in] com pointer to the lfsck component
1239 * \param[in] lr pointer to the LFSCK event request
1241 * \retval 0 for success
1242 * \retval negative error number on failure
1244 static int lfsck_assistant_notify_others(const struct lu_env *env,
1245 struct lfsck_component *com,
1246 struct lfsck_request *lr)
1248 struct lfsck_thread_info *info = lfsck_env_info(env);
1249 struct lfsck_async_interpret_args *laia = &info->lti_laia;
1250 struct lfsck_instance *lfsck = com->lc_lfsck;
1251 struct lfsck_assistant_data *lad = com->lc_data;
1252 struct lfsck_bookmark *bk = &lfsck->li_bookmark_ram;
1253 struct ptlrpc_request_set *set;
1254 struct lfsck_tgt_descs *ltds;
1255 struct lfsck_tgt_desc *ltd;
1256 struct lfsck_tgt_desc *next;
1262 set = ptlrpc_prep_set();
1266 lr->lr_index = lfsck_dev_idx(lfsck);
1267 lr->lr_active = com->lc_type;
1268 laia->laia_com = com;
1270 laia->laia_shared = 0;
1272 switch (lr->lr_event) {
1274 if (com->lc_type != LFSCK_TYPE_LAYOUT)
1277 lr->lr_valid = LSV_SPEED_LIMIT | LSV_ERROR_HANDLE | LSV_DRYRUN;
1278 lr->lr_speed = bk->lb_speed_limit;
1279 lr->lr_version = bk->lb_version;
1280 lr->lr_param |= bk->lb_param;
1281 lr->lr_async_windows = bk->lb_async_windows;
1282 lr->lr_flags = LEF_TO_OST;
1284 /* Notify OSTs firstly, then handle other MDTs if needed. */
1285 ltds = &lfsck->li_ost_descs;
1286 laia->laia_ltds = ltds;
1287 down_read(<ds->ltd_rw_sem);
1288 cfs_foreach_bit(ltds->ltd_tgts_bitmap, idx) {
1289 ltd = lfsck_tgt_get(ltds, idx);
1290 LASSERT(ltd != NULL);
1292 laia->laia_ltd = ltd;
1293 ltd->ltd_layout_done = 0;
1294 ltd->ltd_synced_failures = 0;
1295 rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
1296 lfsck_async_interpret_common,
1297 laia, LFSCK_NOTIFY);
1299 lfsck_lad_set_bitmap(env, com, idx);
1300 CDEBUG(D_LFSCK, "%s: LFSCK assistant fail to "
1301 "notify OST %x for %s start: rc = %d\n",
1302 lfsck_lfsck2name(lfsck), idx,
1307 up_read(<ds->ltd_rw_sem);
1310 rc = ptlrpc_set_wait(set);
1312 ptlrpc_set_destroy(set);
1317 if (!(bk->lb_param & LPF_ALL_TGT))
1320 /* link other MDT targets locallly. */
1321 ltds = &lfsck->li_mdt_descs;
1322 spin_lock(<ds->ltd_lock);
1323 if (com->lc_type == LFSCK_TYPE_LAYOUT) {
1324 cfs_foreach_bit(ltds->ltd_tgts_bitmap, idx) {
1325 ltd = lfsck_ltd2tgt(ltds, idx);
1326 LASSERT(ltd != NULL);
1328 if (!list_empty(<d->ltd_layout_list))
1331 list_add_tail(<d->ltd_layout_list,
1332 &lad->lad_mdt_list);
1333 list_add_tail(<d->ltd_layout_phase_list,
1334 &lad->lad_mdt_phase1_list);
1337 cfs_foreach_bit(ltds->ltd_tgts_bitmap, idx) {
1338 ltd = lfsck_ltd2tgt(ltds, idx);
1339 LASSERT(ltd != NULL);
1341 if (!list_empty(<d->ltd_namespace_list))
1344 list_add_tail(<d->ltd_namespace_list,
1345 &lad->lad_mdt_list);
1346 list_add_tail(<d->ltd_namespace_phase_list,
1347 &lad->lad_mdt_phase1_list);
1350 spin_unlock(<ds->ltd_lock);
1353 case LE_PHASE2_DONE:
1354 case LE_PEER_EXIT: {
1355 struct list_head *phase_head;
1357 /* Handle other MDTs firstly if needed, then notify the OSTs. */
1358 if (bk->lb_param & LPF_ALL_TGT) {
1359 phase_head = &lad->lad_mdt_list;
1360 ltds = &lfsck->li_mdt_descs;
1361 if (lr->lr_event == LE_STOP) {
1362 /* unlink other MDT targets locallly. */
1363 spin_lock(<ds->ltd_lock);
1364 if (com->lc_type == LFSCK_TYPE_LAYOUT) {
1365 list_for_each_entry_safe(ltd, next,
1366 phase_head, ltd_layout_list) {
1368 <d->ltd_layout_phase_list);
1370 <d->ltd_layout_list);
1373 list_for_each_entry_safe(ltd, next,
1375 ltd_namespace_list) {
1377 <d->ltd_namespace_phase_list);
1379 <d->ltd_namespace_list);
1382 spin_unlock(<ds->ltd_lock);
1384 if (com->lc_type != LFSCK_TYPE_LAYOUT)
1387 lr->lr_flags |= LEF_TO_OST;
1388 phase_head = &lad->lad_ost_list;
1389 ltds = &lfsck->li_ost_descs;
1391 lr->lr_flags &= ~LEF_TO_OST;
1393 } else if (com->lc_type != LFSCK_TYPE_LAYOUT) {
1396 lr->lr_flags |= LEF_TO_OST;
1397 phase_head = &lad->lad_ost_list;
1398 ltds = &lfsck->li_ost_descs;
1402 laia->laia_ltds = ltds;
1403 spin_lock(<ds->ltd_lock);
1404 while (!list_empty(phase_head)) {
1405 if (com->lc_type == LFSCK_TYPE_LAYOUT) {
1406 ltd = list_entry(phase_head->next,
1407 struct lfsck_tgt_desc,
1409 if (!list_empty(<d->ltd_layout_phase_list))
1411 <d->ltd_layout_phase_list);
1412 list_del_init(<d->ltd_layout_list);
1414 ltd = list_entry(phase_head->next,
1415 struct lfsck_tgt_desc,
1416 ltd_namespace_list);
1417 if (!list_empty(<d->ltd_namespace_phase_list))
1419 <d->ltd_namespace_phase_list);
1420 list_del_init(<d->ltd_namespace_list);
1422 atomic_inc(<d->ltd_ref);
1423 laia->laia_ltd = ltd;
1424 spin_unlock(<ds->ltd_lock);
1425 rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
1426 lfsck_async_interpret_common,
1427 laia, LFSCK_NOTIFY);
1429 CDEBUG(D_LFSCK, "%s: LFSCK assistant fail to "
1430 "notify %s %x for %s stop/phase2_done/"
1431 "peer_exit: rc = %d\n",
1432 lfsck_lfsck2name(lfsck),
1433 (lr->lr_flags & LEF_TO_OST) ?
1434 "OST" : "MDT", ltd->ltd_index,
1438 spin_lock(<ds->ltd_lock);
1440 spin_unlock(<ds->ltd_lock);
1442 rc = ptlrpc_set_wait(set);
1444 ptlrpc_set_destroy(set);
1448 if (com->lc_type == LFSCK_TYPE_LAYOUT &&
1449 !(lr->lr_flags & LEF_TO_OST)) {
1450 lr->lr_flags |= LEF_TO_OST;
1451 phase_head = &lad->lad_ost_list;
1452 ltds = &lfsck->li_ost_descs;
1457 case LE_PHASE1_DONE:
1458 lad->lad_ops->la_sync_failures(env, com, lr);
1459 lad->lad_touch_gen++;
1460 ltds = &lfsck->li_mdt_descs;
1461 laia->laia_ltds = ltds;
1462 spin_lock(<ds->ltd_lock);
1463 while (!list_empty(&lad->lad_mdt_list)) {
1464 struct list_head *list;
1467 if (com->lc_type == LFSCK_TYPE_LAYOUT) {
1468 ltd = list_entry(lad->lad_mdt_list.next,
1469 struct lfsck_tgt_desc,
1471 list = <d->ltd_layout_list;
1472 gen = <d->ltd_layout_gen;
1474 struct lfsck_namespace *ns = com->lc_file_ram;
1476 ltd = list_entry(lad->lad_mdt_list.next,
1477 struct lfsck_tgt_desc,
1478 ltd_namespace_list);
1479 list = <d->ltd_namespace_list;
1480 gen = <d->ltd_namespace_gen;
1481 lr->lr_flags2 = ns->ln_flags & ~LF_INCOMPLETE;
1484 if (*gen == lad->lad_touch_gen)
1487 *gen = lad->lad_touch_gen;
1488 list_move_tail(list, &lad->lad_mdt_list);
1489 if (ltd->ltd_synced_failures)
1492 atomic_inc(<d->ltd_ref);
1493 laia->laia_ltd = ltd;
1494 spin_unlock(<ds->ltd_lock);
1495 rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
1496 lfsck_async_interpret_common,
1497 laia, LFSCK_NOTIFY);
1499 CDEBUG(D_LFSCK, "%s: LFSCK assistant fail to "
1500 "notify MDT %x for %s phase1 done: "
1501 "rc = %d\n", lfsck_lfsck2name(lfsck),
1502 ltd->ltd_index, lad->lad_name, rc);
1505 spin_lock(<ds->ltd_lock);
1507 spin_unlock(<ds->ltd_lock);
1510 CDEBUG(D_LFSCK, "%s: LFSCK assistant unexpected LFSCK event: "
1511 "rc = %d\n", lfsck_lfsck2name(lfsck), lr->lr_event);
1516 rc1 = ptlrpc_set_wait(set);
1517 ptlrpc_set_destroy(set);
1519 RETURN(rc != 0 ? rc : rc1);
1523 * The LFSCK assistant thread is triggered by the LFSCK main engine.
1524 * They co-work together as an asynchronous pipeline: the LFSCK main
1525 * engine scans the system and pre-fetches the objects, attributes,
1526 * or name entries, etc, and pushes them into the pipeline as input
1527 * requests for the LFSCK assistant thread; on the other end of the
1528 * pipeline, the LFSCK assistant thread performs the real check and
1529 * repair for every request from the main engine.
1531 * Generally, the assistant engine may be blocked when check/repair
1532 * something, so the LFSCK main engine will run some faster. On the
1533 * other hand, the LFSCK main engine will drive multiple assistant
1534 * threads in parallel, means for each LFSCK component on the master
1535 * (such as layout LFSCK, namespace LFSCK), there is an independent
1536 * LFSCK assistant thread. So under such 1:N multiple asynchronous
1537 * pipelines mode, the whole LFSCK performance will be much better
1538 * than check/repair everything by the LFSCK main engine itself.
1540 int lfsck_assistant_engine(void *args)
1542 struct lfsck_thread_args *lta = args;
1543 struct lu_env *env = <a->lta_env;
1544 struct lfsck_component *com = lta->lta_com;
1545 struct lfsck_instance *lfsck = lta->lta_lfsck;
1546 struct lfsck_bookmark *bk = &lfsck->li_bookmark_ram;
1547 struct lfsck_position *pos = &com->lc_pos_start;
1548 struct lfsck_thread_info *info = lfsck_env_info(env);
1549 struct lfsck_request *lr = &info->lti_lr;
1550 struct lfsck_assistant_data *lad = com->lc_data;
1551 struct ptlrpc_thread *mthread = &lfsck->li_thread;
1552 struct ptlrpc_thread *athread = &lad->lad_thread;
1553 struct lfsck_assistant_operations *lao = lad->lad_ops;
1554 struct lfsck_assistant_req *lar;
1555 struct l_wait_info lwi = { 0 };
1561 CDEBUG(D_LFSCK, "%s: %s LFSCK assistant thread start\n",
1562 lfsck_lfsck2name(lfsck), lad->lad_name);
1564 memset(lr, 0, sizeof(*lr));
1565 lr->lr_event = LE_START;
1566 if (pos->lp_oit_cookie <= 1)
1567 lr->lr_param = LPF_RESET;
1568 rc = lfsck_assistant_notify_others(env, com, lr);
1570 CDEBUG(D_LFSCK, "%s: LFSCK assistant fail to notify others "
1571 "to start %s: rc = %d\n",
1572 lfsck_lfsck2name(lfsck), lad->lad_name, rc);
1576 spin_lock(&lad->lad_lock);
1577 thread_set_flags(athread, SVC_RUNNING);
1578 spin_unlock(&lad->lad_lock);
1579 wake_up_all(&mthread->t_ctl_waitq);
1582 while (!list_empty(&lad->lad_req_list)) {
1583 bool wakeup = false;
1585 if (unlikely(lad->lad_exit ||
1586 !thread_is_running(mthread)))
1587 GOTO(cleanup1, rc = lad->lad_post_result);
1589 lar = list_entry(lad->lad_req_list.next,
1590 struct lfsck_assistant_req,
1592 /* Only the lfsck_assistant_engine thread itself can
1593 * remove the "lar" from the head of the list, LFSCK
1594 * engine thread only inserts other new "lar" at the
1595 * end of the list. So it is safe to handle current
1596 * "lar" without the spin_lock. */
1597 rc = lao->la_handler_p1(env, com, lar);
1598 spin_lock(&lad->lad_lock);
1599 list_del_init(&lar->lar_list);
1600 lad->lad_prefetched--;
1601 /* Wake up the main engine thread only when the list
1602 * is empty or half of the prefetched items have been
1603 * handled to avoid too frequent thread schedule. */
1604 if (lad->lad_prefetched <= (bk->lb_async_windows / 2))
1606 spin_unlock(&lad->lad_lock);
1608 wake_up_all(&mthread->t_ctl_waitq);
1610 lao->la_req_fini(env, lar);
1611 if (rc < 0 && bk->lb_param & LPF_FAILOUT)
1615 l_wait_event(athread->t_ctl_waitq,
1616 !lfsck_assistant_req_empty(lad) ||
1619 lad->lad_to_double_scan,
1622 if (unlikely(lad->lad_exit))
1623 GOTO(cleanup1, rc = lad->lad_post_result);
1625 if (!list_empty(&lad->lad_req_list))
1628 if (lad->lad_to_post) {
1629 CDEBUG(D_LFSCK, "%s: %s LFSCK assistant thread post\n",
1630 lfsck_lfsck2name(lfsck), lad->lad_name);
1632 if (unlikely(lad->lad_exit))
1633 GOTO(cleanup1, rc = lad->lad_post_result);
1635 lad->lad_to_post = 0;
1636 LASSERT(lad->lad_post_result > 0);
1638 /* Wakeup the master engine to go ahead. */
1639 wake_up_all(&mthread->t_ctl_waitq);
1641 memset(lr, 0, sizeof(*lr));
1642 lr->lr_event = LE_PHASE1_DONE;
1643 lr->lr_status = lad->lad_post_result;
1644 rc = lfsck_assistant_notify_others(env, com, lr);
1646 CDEBUG(D_LFSCK, "%s: LFSCK assistant notified "
1647 "others for %s post: rc = %d\n",
1648 lfsck_lfsck2name(lfsck),
1652 if (lad->lad_to_double_scan) {
1653 lad->lad_to_double_scan = 0;
1654 atomic_inc(&lfsck->li_double_scan_count);
1655 lad->lad_in_double_scan = 1;
1656 wake_up_all(&mthread->t_ctl_waitq);
1658 com->lc_new_checked = 0;
1659 com->lc_new_scanned = 0;
1660 com->lc_time_last_checkpoint = cfs_time_current();
1661 com->lc_time_next_checkpoint =
1662 com->lc_time_last_checkpoint +
1663 cfs_time_seconds(LFSCK_CHECKPOINT_INTERVAL);
1665 CDEBUG(D_LFSCK, "%s: LFSCK assistant sync before "
1666 "the second-stage scaning\n",
1667 lfsck_lfsck2name(lfsck));
1669 /* Flush async updates before handling orphan. */
1670 rc2 = dt_sync(env, lfsck->li_next);
1672 CDEBUG(D_LFSCK, "%s: LFSCK assistant phase2 "
1673 "scan start, synced: rc = %d\n",
1674 lfsck_lfsck2name(lfsck), rc2);
1676 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_NO_DOUBLESCAN))
1677 GOTO(cleanup2, rc = 0);
1679 while (lad->lad_in_double_scan) {
1680 rc = lfsck_assistant_query_others(env, com);
1681 if (lfsck_phase2_next_ready(lad))
1687 /* Pull LFSCK status on related targets once
1688 * per 30 seconds if we are not notified. */
1689 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(30),
1690 cfs_time_seconds(1),
1692 rc = l_wait_event(athread->t_ctl_waitq,
1693 lfsck_phase2_next_ready(lad) ||
1695 !thread_is_running(mthread),
1698 if (unlikely(lad->lad_exit ||
1699 !thread_is_running(mthread)))
1700 GOTO(cleanup2, rc = 0);
1702 if (rc == -ETIMEDOUT)
1709 rc = lao->la_handler_p2(env, com);
1713 if (unlikely(lad->lad_exit ||
1714 !thread_is_running(mthread)))
1715 GOTO(cleanup2, rc = 0);
1721 /* Cleanup the unfinished requests. */
1722 spin_lock(&lad->lad_lock);
1724 lad->lad_assistant_status = rc;
1726 if (lad->lad_exit && lad->lad_post_result <= 0)
1727 lao->la_fill_pos(env, com, &lfsck->li_pos_checkpoint);
1729 while (!list_empty(&lad->lad_req_list)) {
1730 lar = list_entry(lad->lad_req_list.next,
1731 struct lfsck_assistant_req,
1733 list_del_init(&lar->lar_list);
1734 lad->lad_prefetched--;
1735 spin_unlock(&lad->lad_lock);
1736 lao->la_req_fini(env, lar);
1737 spin_lock(&lad->lad_lock);
1739 spin_unlock(&lad->lad_lock);
1741 LASSERTF(lad->lad_prefetched == 0, "unmatched prefeteched objs %d\n",
1742 lad->lad_prefetched);
1745 memset(lr, 0, sizeof(*lr));
1747 lr->lr_event = LE_PHASE2_DONE;
1749 } else if (rc == 0) {
1750 if (lfsck->li_flags & LPF_ALL_TGT) {
1751 lr->lr_event = LE_STOP;
1752 lr->lr_status = LS_STOPPED;
1754 lr->lr_event = LE_PEER_EXIT;
1755 switch (lfsck->li_status) {
1758 lr->lr_status = LS_CO_PAUSED;
1762 lr->lr_status = LS_CO_STOPPED;
1765 CDEBUG(D_LFSCK, "%s: LFSCK assistant unknown "
1766 "status: rc = %d\n",
1767 lfsck_lfsck2name(lfsck),
1769 lr->lr_status = LS_CO_FAILED;
1774 if (lfsck->li_flags & LPF_ALL_TGT) {
1775 lr->lr_event = LE_STOP;
1776 lr->lr_status = LS_FAILED;
1778 lr->lr_event = LE_PEER_EXIT;
1779 lr->lr_status = LS_CO_FAILED;
1783 rc1 = lfsck_assistant_notify_others(env, com, lr);
1785 CDEBUG(D_LFSCK, "%s: LFSCK assistant failed to notify "
1786 "others for %s quit: rc = %d\n",
1787 lfsck_lfsck2name(lfsck), lad->lad_name, rc1);
1791 CDEBUG(D_LFSCK, "%s: LFSCK assistant sync before exit\n",
1792 lfsck_lfsck2name(lfsck));
1794 /* Flush async updates before exit. */
1795 rc2 = dt_sync(env, lfsck->li_next);
1797 CDEBUG(D_LFSCK, "%s: LFSCK assistant synced before exit: rc = %d\n",
1798 lfsck_lfsck2name(lfsck), rc2);
1800 /* Under force exit case, some requests may be just freed without
1801 * verification, those objects should be re-handled when next run.
1802 * So not update the on-disk trace file under such case. */
1803 if (lad->lad_in_double_scan) {
1805 rc1 = lao->la_double_scan_result(env, com, rc);
1807 CDEBUG(D_LFSCK, "%s: LFSCK assistant phase2 scan "
1808 "finished: rc = %d\n",
1809 lfsck_lfsck2name(lfsck), rc1 != 0 ? rc1 : rc);
1813 if (lad->lad_in_double_scan)
1814 atomic_dec(&lfsck->li_double_scan_count);
1816 spin_lock(&lad->lad_lock);
1817 lad->lad_assistant_status = (rc1 != 0 ? rc1 : rc);
1818 thread_set_flags(athread, SVC_STOPPED);
1819 wake_up_all(&mthread->t_ctl_waitq);
1820 spin_unlock(&lad->lad_lock);
1822 CDEBUG(D_LFSCK, "%s: %s LFSCK assistant thread exit: rc = %d\n",
1823 lfsck_lfsck2name(lfsck), lad->lad_name,
1824 lad->lad_assistant_status);
1826 lfsck_thread_args_fini(lta);