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) 2014, Intel Corporation.
26 * lustre/lfsck/lfsck_striped_dir.c
28 * Author: Fan, Yong <fan.yong@intel.com>
32 * About the verification for striped directory. Some rules and assumptions:
34 * 1) lmv_magic: The magic may be wrong. But it is almost impossible (1/2^32
35 * probability) that a master LMV EA claims as a slave LMV EA by wrong,
36 * so we can ignore such race case and the reverse case.
38 * 2) lmv_master_mdt_index: The master index can be self-verified by compared
39 * with the MDT index directly. The slave stripe index can be verified by
40 * compared with the file name. Although both the name entry and the LMV EA
41 * can be wrong, it is almost impossible that they hit the same bad data
42 * So if they match each other, then trust them. Similarly, for the shard,
43 * it stores index in both slave LMV EA and in linkEA, if the two copies
44 * match, then trust them.
46 * 3) lmv_hash_type: The valid hash type should be LMV_HASH_TYPE_ALL_CHARS or
47 * LMV_HASH_TYPE_FNV_1A_64. If the LFSCK instance on some slave finds that
48 * the name hash against the hash function does not match the MDT, then it
49 * will change the master LMV EA hash type as LMV_HASH_TYPE_UNKNOWN. With
50 * such hash type, the whole striped directory still can be accessed via
51 * lookup/readdir, and also support unlink, but cannot add new name entry.
53 * 3.1) If the master hash type is one of the valid values, then trust the
54 * master LMV EA. Because:
56 * 3.1.1) The master hash type is visible to the client and used by the client.
58 * 3.1.2) For a given name, different hash types may map the name entry to the
59 * same MDT. So simply checking one name entry or some name entries may
60 * cannot verify whether the hash type is correct or not.
62 * 3.1.3) Different shards can claim different hash types, it is not easy to
63 * distinguish which ones are correct. Even though the master is wrong,
64 * as the LFSCK processing, some LFSCK instance on other MDT may finds
65 * unmatched name hash, then it will change the master hash type to
66 * LMV_HASH_TYPE_UNKNOWN as described above. The worst case is euqal
67 * to the case without the LFSCK.
69 * 3.2) If the master hash type is invalid, nor LMV_HASH_TYPE_UNKNOWN, then
70 * trust the first shard with valid hash type (ALL_CHARS or FNV_1A_64).
71 * If the shard is also worng, means there are double failures, then as
72 * the LFSCK processing, other LFSCK instances on the other MDTs may
73 * find unmatched name hash, and then, the master hash type will be
74 * changed to LMV_HASH_TYPE_UNKNOWN as described in the 3).
76 * 3.3) If the master hash type is LMV_HASH_TYPE_UNKNOWN, then it is possible
77 * that some other LFSCK instance on other MDT found bad name hash, then
78 * changed the master hash type to LMV_HASH_TYPE_UNKNOWN as described in
79 * the 3). But it also maybe because of data corruption in master LMV EA.
80 * To make such two cases to be distinguishable, when the LFSCK changes
81 * the master hash type to LMV_HASH_TYPE_UNKNOWN, it will mark in the
82 * master LMV EA (new lmv flags LMV_HASH_FLAG_BAD_TYPE). Then subsequent
83 * LFSCK checking can distinguish them: for former case, turst the master
84 * LMV EA with nothing to be done; otherwise, trust the first shard with
85 * valid hash type (ALL_CHARS or FNV_1A_64) as the 3.2) does.
87 * 4) lmv_stripe_count: For a shard of a striped directory, if its index has
88 * been verified as the 2), then the stripe count must be larger than its
89 * index. For the master object, by scanning each shard's index, the LFSCK
90 * can know the highest index, and the stripe count must be larger than the
91 * known highest index. If the stipe count in the LMV EA matches above two
92 * rules, then it is may be trustable. If both the master claimed stripe
93 * count and the slave claimed stripe count match each own rule, but they
94 * are not the same, then trust the master. Because the stripe count in
95 * the master LMV EA is visible to client and used to distribute the name
96 * entry to some shard, but the slave LMV EA is only used for verification
97 * and invisible to client.
99 * 5) If the master LMV EA is lost, then there are two possible cases:
101 * 5.1) The slave claims slave LMV EA by wrong, means that the parent was not
102 * a striped directory, but its sub-directory has a wrong slave LMV EA.
103 * It is very very race case, similar as the 1), can be ignored.
105 * 5.2) The parent directory is a striped directory, but the master LMV EA
106 * is lost or crashed. Then the LFSCK needs to re-generate the master
107 * LMV EA: the lmv_master_mdt_index is from the MDT device index; the
108 * lmv_hash_type is from the first valid shard; the lmv_stripe_count
109 * will be calculated via scanning all the shards.
111 * 5.2.1) Before re-generating the master LMV EA, the LFSCK needs to check
112 * whether someone has created some file(s) under the master object
113 * after the master LMV EA disappear. If yes, the LFSCK will cannot
114 * re-generate the master LMV EA, otherwise, such new created files
115 * will be invisible to client. Under such case, the LFSCK will mark
116 * the master object as read only (without master LMV EA). Then all
117 * things under the master MDT-object, including those new created
118 * files and the shards themselves, will be visibile to client. And
119 * then the administrator can handle the bad striped directory with
120 * more human knowledge.
122 * 5.2.2) If someone created some special sub-directory under the master
123 * MDT-object with the same naming rule as shard name $FID:$index,
124 * as to the LFSCK cannot detect it before re-generating the master
125 * LMV EA, then such sub-directory itself will be invisible after
126 * the LFSCK re-generating the master LMV EA. The sub-items under
127 * such sub-directory are still visible to client. As the LFSCK
128 * processing, if such sub-directory cause some conflict with other
129 * normal shard, such as the index conflict, then the LFSCK will
130 * remove the master LMV EA and change the master MDT-object to
131 * read-only mode as the 5.2.1). But if there is no conflict, the
132 * LFSCK will regard such sub-directory as a striped shard that
133 * lost its slave LMV EA, and will re-generate slave LMV EA for it.
135 * 5.2.3) Anytime, if the LFSCK found some shards name/index conflict,
136 * and cannot make the distinguish which one is right, then it
137 * will remove the master LMV EA and change the MDT-object to
138 * read-only mode as the 5.2.2).
141 #define DEBUG_SUBSYSTEM S_LFSCK
143 #include <lustre/lustre_idl.h>
144 #include <lu_object.h>
145 #include <dt_object.h>
146 #include <md_object.h>
147 #include <lustre_fid.h>
148 #include <lustre_lib.h>
149 #include <lustre_net.h>
150 #include <lustre_lmv.h>
151 #include <lustre/lustre_user.h>
153 #include "lfsck_internal.h"
155 void lfsck_lmv_put(const struct lu_env *env, struct lfsck_lmv *llmv)
157 if (llmv != NULL && atomic_dec_and_test(&llmv->ll_ref)) {
158 if (llmv->ll_inline) {
159 struct lfsck_lmv_unit *llu;
160 struct lfsck_instance *lfsck;
162 llu = list_entry(llmv, struct lfsck_lmv_unit, llu_lmv);
163 lfsck = llu->llu_lfsck;
165 spin_lock(&lfsck->li_lock);
166 list_del(&llu->llu_link);
167 spin_unlock(&lfsck->li_lock);
169 lfsck_object_put(env, llu->llu_obj);
171 LASSERT(llmv->ll_lslr != NULL);
173 OBD_FREE_LARGE(llmv->ll_lslr,
174 sizeof(*llmv->ll_lslr) *
175 llmv->ll_stripes_allocated);
178 if (llmv->ll_lslr != NULL)
179 OBD_FREE_LARGE(llmv->ll_lslr,
180 sizeof(*llmv->ll_lslr) *
181 llmv->ll_stripes_allocated);
189 * Mark the specified directory as read-only by set LUSTRE_IMMUTABLE_FL.
191 * The caller has taken the ldlm lock on the @obj already.
193 * \param[in] env pointer to the thread context
194 * \param[in] com pointer to the lfsck component
195 * \param[in] obj pointer to the object to be handled
196 * \param[in] del_lmv true if need to drop the LMV EA
198 * \retval positive number if nothing to be done
199 * \retval zero for succeed
200 * \retval negative error number on failure
202 static int lfsck_disable_master_lmv(const struct lu_env *env,
203 struct lfsck_component *com,
204 struct dt_object *obj, bool del_lmv)
206 struct lfsck_thread_info *info = lfsck_env_info(env);
207 struct lu_attr *la = &info->lti_la;
208 struct lfsck_instance *lfsck = com->lc_lfsck;
209 struct dt_device *dev = lfsck_obj2dev(obj);
210 struct thandle *th = NULL;
214 th = dt_trans_create(env, dev);
216 GOTO(log, rc = PTR_ERR(th));
219 rc = dt_declare_xattr_del(env, obj, XATTR_NAME_LMV, th);
224 la->la_valid = LA_FLAGS;
225 rc = dt_declare_attr_set(env, obj, la, th);
229 rc = dt_trans_start_local(env, dev, th);
233 dt_write_lock(env, obj, 0);
234 if (unlikely(lfsck_is_dead_obj(obj)))
235 GOTO(unlock, rc = 1);
237 if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
238 GOTO(unlock, rc = 0);
241 rc = dt_xattr_del(env, obj, XATTR_NAME_LMV, th);
246 rc = dt_attr_get(env, obj, la);
247 if (rc == 0 && !(la->la_flags & LUSTRE_IMMUTABLE_FL)) {
248 la->la_valid = LA_FLAGS;
249 la->la_flags |= LUSTRE_IMMUTABLE_FL;
250 rc = dt_attr_set(env, obj, la, th);
256 dt_write_unlock(env, obj);
259 dt_trans_stop(env, dev, th);
262 CDEBUG(D_LFSCK, "%s: namespace LFSCK set the master MDT-object of "
263 "the striped directory "DFID" as read-only: rc = %d\n",
264 lfsck_lfsck2name(lfsck), PFID(lfsck_dto2fid(obj)), rc);
267 struct lfsck_namespace *ns = com->lc_file_ram;
269 ns->ln_flags |= LF_INCONSISTENT;
271 ns->ln_striped_dirs_disabled++;
277 static inline bool lfsck_is_valid_slave_lmv(struct lmv_mds_md_v1 *lmv)
279 return lmv->lmv_stripe_count >= 1 &&
280 lmv->lmv_stripe_count <= LFSCK_LMV_MAX_STRIPES &&
281 lmv->lmv_stripe_count > lmv->lmv_master_mdt_index &&
282 lmv_is_known_hash_type(lmv->lmv_hash_type);
286 * Remove the striped directory's master LMV EA and mark it as read-only.
288 * Take ldlm lock on the striped directory before calling the
289 * lfsck_disable_master_lmv().
291 * \param[in] env pointer to the thread context
292 * \param[in] com pointer to the lfsck component
293 * \param[in] obj pointer to the striped directory to be handled
294 * \param[in] lnr pointer to the namespace request that contains the
295 * striped directory to be handled and other information
297 * \retval positive number if nothing to be done
298 * \retval zero for succeed
299 * \retval negative error number on failure
301 static int lfsck_remove_lmv(const struct lu_env *env,
302 struct lfsck_component *com,
303 struct dt_object *obj,
304 struct lfsck_namespace_req *lnr)
306 struct lustre_handle lh = { 0 };
309 lnr->lnr_lmv->ll_ignore = 1;
310 rc = lfsck_ibits_lock(env, com->lc_lfsck, obj, &lh,
311 MDS_INODELOCK_UPDATE | MDS_INODELOCK_XATTR,
314 rc = lfsck_disable_master_lmv(env, com, obj, true);
315 lfsck_ibits_unlock(&lh, LCK_EX);
322 * Remove the name entry from the striped directory's master MDT-object.
324 * \param[in] env pointer to the thread context
325 * \param[in] com pointer to the lfsck component
326 * \param[in] dir pointer to the striped directory
327 * \param[in] fid the shard's FID which name entry will be removed
328 * \param[in] index the shard's index which name entry will be removed
330 * \retval positive number for repaired successfully
331 * \retval 0 if nothing to be repaired
332 * \retval negative error number on failure
334 static int lfsck_remove_dirent(const struct lu_env *env,
335 struct lfsck_component *com,
336 struct dt_object *dir,
337 const struct lu_fid *fid, __u32 index)
339 struct lfsck_thread_info *info = lfsck_env_info(env);
340 struct dt_object *obj;
343 snprintf(info->lti_tmpbuf2, sizeof(info->lti_tmpbuf2), DFID":%u",
345 obj = lfsck_object_find_bottom(env, com->lc_lfsck, fid);
349 rc = lfsck_namespace_repair_dirent(env, com, dir, obj,
350 info->lti_tmpbuf2, info->lti_tmpbuf2,
351 S_IFDIR, false, false);
352 lfsck_object_put(env, obj);
354 struct lfsck_namespace *ns = com->lc_file_ram;
356 ns->ln_dirent_repaired++;
363 * Remove old shard's name entry and refill the @lslr slot with new shard.
365 * Some old shard held the specified @lslr slot, but it is an invalid shard.
366 * This function will remove the bad shard's name entry, and refill the @lslr
367 * slot with the new shard.
369 * \param[in] env pointer to the thread context
370 * \param[in] com pointer to the lfsck component
371 * \param[in] dir pointer to the striped directory to be handled
372 * \param[in] lslr pointer to lfsck_disable_master_lmv slot which content
373 * will be replaced by the given information
374 * \param[in] lnr contain the shard's FID to be used to fill the
375 * @lslr slot, it also records the known max filled index
376 * and the known max stripe count
377 * \param[in] lmv contain the slave LMV EA to be used to fill the
379 * \param[in] index the old shard's index in the striped directory
380 * \param[in] flags the new shard's flags in the @lslr slot
382 * \retval zero for succeed
383 * \retval negative error number on failure
385 static int lfsck_replace_lmv(const struct lu_env *env,
386 struct lfsck_component *com,
387 struct dt_object *dir,
388 struct lfsck_slave_lmv_rec *lslr,
389 struct lfsck_namespace_req *lnr,
390 struct lmv_mds_md_v1 *lmv,
391 __u32 index, __u32 flags)
393 struct lfsck_lmv *llmv = lnr->lnr_lmv;
396 rc = lfsck_remove_dirent(env, com, dir,
397 &lslr->lslr_fid, index);
401 lslr->lslr_fid = lnr->lnr_fid;
402 lslr->lslr_flags = flags;
403 lslr->lslr_stripe_count = lmv->lmv_stripe_count;
404 lslr->lslr_index = lmv->lmv_master_mdt_index;
405 lslr->lslr_hash_type = lmv->lmv_hash_type;
406 if (flags == LSLF_NONE) {
407 if (llmv->ll_hash_type == LMV_HASH_TYPE_UNKNOWN &&
408 lmv_is_known_hash_type(lmv->lmv_hash_type))
409 llmv->ll_hash_type = lmv->lmv_hash_type;
411 if (lslr->lslr_stripe_count <= LFSCK_LMV_MAX_STRIPES &&
412 llmv->ll_max_stripe_count < lslr->lslr_stripe_count)
413 llmv->ll_max_stripe_count = lslr->lslr_stripe_count;
420 * Record the slave LMV EA in the lfsck_lmv::ll_lslr.
422 * If the lfsck_lmv::ll_lslr slot corresponding to the given @shard_idx is free,
423 * then fill the slot with the given @lnr/@lmv/@flags directly (maybe need to
424 * extend the lfsck_lmv::ll_lslr buffer).
426 * If the lfsck_lmv::ll_lslr slot corresponding to the given @shard_idx is taken
427 * by other shard, then the LFSCK will try to resolve the conflict by checking
428 * the two conflict shards' flags, and try other possible slot (if one of them
429 * claims another possible @shard_idx).
431 * 1) If one of the two conflict shards can be recorded in another slot, then
432 * it is OK, go ahead. Otherwise,
434 * 2) If one of them is dangling name entry, then remove (one of) the dangling
435 * name entry (and replace related @lslr slot if needed). Otherwise,
437 * 3) If one of them has no slave LMV EA, then check whether the master LMV
438 * EA has ever been lost and re-generated (LMV_HASH_FLAG_LOST_LMV in the
441 * 3.1) If yes, then it is possible that such object is not a real shard of
442 * the striped directory, instead, it was created by someone after the
443 * master LMV EA lost with the name that matches the shard naming rule.
444 * Then the LFSCK will remove the master LMV EA and mark the striped
445 * directory as read-only to allow those non-shard files to be visible
448 * 3.2) If no, then remove (one of) the object what has no slave LMV EA.
450 * 4) If all above efforts cannot work, then the LFSCK cannot know how to
451 * recover the striped directory. To make the administrator can see the
452 * conflicts, the LFSCK will remove the master LMV EA and mark the striped
453 * directory as read-only.
455 * This function may be called recursively, to prevent overflow, we define
456 * LFSCK_REC_LMV_MAX_DEPTH to restrict the recursive call depth.
458 * \param[in] env pointer to the thread context
459 * \param[in] com pointer to the lfsck component
460 * \param[in] dir pointer to the striped directory to be handled
461 * \param[in] lnr contain the shard's FID to fill the @lslr slot,
462 * it also records the known max filled index and
463 * the known max stripe count
464 * \param[in] lmv pointer to the slave LMV EA to be recorded
465 * \param[in] shard_idx the shard's index used for locating the @lslr slot,
466 * it can be the index stored in the shard's name,
467 * it also can be the index stored in the slave LMV EA
468 * (for recursive case)
469 * \param[in] flags the shard's flags to be recorded in the @lslr slot
470 * to indicate the shard status, such as whether has
471 * slave LMV EA, whether dangling name entry, whether
472 * the name entry and slave LMV EA unmatched, and ect
473 * \param[in] flags2 when be called recursively, the @flags2 tells the
474 * former conflict shard's flags in the @lslr slot.
475 * \param[in,out] depth To prevent to be called recurisively too deep,
476 * we define the max depth can be called recursively
477 * (LFSCK_REC_LMV_MAX_DEPTH)
479 * \retval zero for succeed
480 * \retval "-ERANGE" for invalid @shard_idx
481 * \retval "-EEXIST" for the required lslr slot has been
482 * occupied by other shard
483 * \retval other negative error number on failure
485 static int lfsck_record_lmv(const struct lu_env *env,
486 struct lfsck_component *com,
487 struct dt_object *dir,
488 struct lfsck_namespace_req *lnr,
489 struct lmv_mds_md_v1 *lmv, __u32 shard_idx,
490 __u32 flags, __u32 flags2, __u32 *depth)
492 struct lfsck_instance *lfsck = com->lc_lfsck;
493 struct lfsck_lmv *llmv = lnr->lnr_lmv;
494 const struct lu_fid *fid = &lnr->lnr_fid;
495 struct lfsck_slave_lmv_rec *lslr;
496 struct lfsck_rec_lmv_save *lrls;
497 int index = shard_idx;
501 CDEBUG(D_LFSCK, "%s: record slave LMV EA for the striped directory "
502 DFID": shard = "DFID", index = %u, flags = %u, flags2 = %u, "
503 "depth = %d\n", lfsck_lfsck2name(lfsck),
504 PFID(lfsck_dto2fid(dir)), PFID(fid),
505 index, flags, flags2, *depth);
507 if (index < 0 || index >= LFSCK_LMV_MAX_STRIPES)
510 if (index >= llmv->ll_stripes_allocated) {
511 struct lfsck_slave_lmv_rec *new_lslr;
512 int new_stripes = index + 1;
513 size_t old_size = sizeof(*lslr) * llmv->ll_stripes_allocated;
515 OBD_ALLOC_LARGE(new_lslr, sizeof(*new_lslr) * new_stripes);
516 if (new_lslr == NULL) {
522 memcpy(new_lslr, llmv->ll_lslr, old_size);
523 OBD_FREE_LARGE(llmv->ll_lslr, old_size);
524 llmv->ll_stripes_allocated = new_stripes;
525 llmv->ll_lslr = new_lslr;
528 lslr = llmv->ll_lslr + index;
529 if (unlikely(lu_fid_eq(&lslr->lslr_fid, fid)))
532 if (fid_is_zero(&lslr->lslr_fid)) {
533 lslr->lslr_fid = *fid;
534 lslr->lslr_stripe_count = lmv->lmv_stripe_count;
535 lslr->lslr_index = lmv->lmv_master_mdt_index;
536 lslr->lslr_hash_type = lmv->lmv_hash_type;
537 lslr->lslr_flags = flags;
538 llmv->ll_stripes_filled++;
539 if (flags == LSLF_NONE) {
540 if (llmv->ll_hash_type == LMV_HASH_TYPE_UNKNOWN &&
541 lmv_is_known_hash_type(lmv->lmv_hash_type))
542 llmv->ll_hash_type = lmv->lmv_hash_type;
544 if (lslr->lslr_stripe_count <= LFSCK_LMV_MAX_STRIPES &&
545 llmv->ll_max_stripe_count < lslr->lslr_stripe_count)
546 llmv->ll_max_stripe_count =
547 lslr->lslr_stripe_count;
550 if (llmv->ll_max_filled_off < index)
551 llmv->ll_max_filled_off = index;
557 if (flags != LSLF_BAD_INDEX2)
558 LASSERTF(*depth == 1, "depth = %d\n", *depth);
560 /* Handle conflict cases. */
561 switch (lslr->lslr_flags) {
563 case LSLF_BAD_INDEX2:
564 /* The existing one is a normal valid object. */
567 /* The two 'valid' name entries claims the same
568 * index, the LFSCK cannot distinguish which one
569 * is correct. Then remove the master LMV EA to
570 * make all shards to be visible to client, and
571 * mark the master MDT-object as read-only. The
572 * administrator can handle the conflict with
573 * more human knowledge. */
574 rc = lfsck_remove_lmv(env, com, dir, lnr);
576 case LSLF_BAD_INDEX2:
577 GOTO(out, rc = -EEXIST);
581 if (llmv->ll_lmv.lmv_hash_type &
582 LMV_HASH_FLAG_LOST_LMV) {
583 /* If the master LMV EA was re-generated
584 * by the former LFSCK reparation, and
585 * before such reparation, someone has
586 * created the conflict object, but the
587 * LFSCK did not detect such conflict,
588 * then we have to remove the master
589 * LMV EA and mark the master MDT-object
590 * as read-only. The administrator can
591 * handle the conflict with more human
593 rc = lfsck_remove_lmv(env, com, dir, lnr);
595 /* Otherwise, remove the current name entry,
596 * and add its FID in the LFSCK tracing file
597 * for further processing. */
598 rc = lfsck_namespace_trace_update(env, com, fid,
599 LNTF_CHECK_PARENT, true);
601 rc = lfsck_remove_dirent(env, com, dir,
607 /* Remove the current dangling name entry. */
608 rc = lfsck_remove_dirent(env, com, dir, fid, index);
610 case LSLF_BAD_INDEX1:
611 index = lmv->lmv_master_mdt_index;
612 lmv->lmv_master_mdt_index = shard_idx;
613 /* The name entry claims an index that is conflict
614 * with a valid existing name entry, then try the
615 * index in the lmv recursively. */
616 rc = lfsck_record_lmv(env, com, dir, lnr, lmv, index,
617 LSLF_BAD_INDEX2, lslr->lslr_flags, depth);
618 lmv->lmv_master_mdt_index = index;
619 if (rc == -ERANGE || rc == -EEXIST)
620 /* The index in the lmv is invalid or
621 * also conflict with other. Then we do
622 * not know how to resolve the conflict.
623 * We will handle it as handle the case
624 * of 'LSLF_NONE' vs 'LSLF_NONE'. */
625 rc = lfsck_remove_lmv(env, com, dir, lnr);
634 /* The existing one has no slave LMV EA. */
639 if (llmv->ll_lmv.lmv_hash_type &
640 LMV_HASH_FLAG_LOST_LMV) {
641 /* If the master LMV EA was re-generated
642 * by the former LFSCK reparation, and
643 * before such reparation, someone has
644 * created the conflict object, but the
645 * LFSCK did not detect such conflict,
646 * then we have to remove the master
647 * LMV EA and mark the master MDT-object
648 * as read-only. The administrator can
649 * handle the conflict with more human
651 rc = lfsck_remove_lmv(env, com, dir, lnr);
653 lrls = &lfsck->li_rec_lmv_save[*depth - 1];
654 lrls->lrls_fid = lslr->lslr_fid;
655 /* Otherwise, remove the existing name entry,
656 * and add its FID in the LFSCK tracing file
657 * for further processing. Refill the slot
658 * with current slave LMV EA. */
659 rc = lfsck_namespace_trace_update(env,
660 com, &lrls->lrls_fid,
661 LNTF_CHECK_PARENT, true);
663 rc = lfsck_replace_lmv(env, com, dir,
664 lslr, lnr, lmv, index, flags);
668 case LSLF_BAD_INDEX2:
669 if (flags2 >= lslr->lslr_flags)
670 GOTO(out, rc = -EEXIST);
676 /* Remove the current dangling name entry. */
677 rc = lfsck_remove_dirent(env, com, dir, fid, index);
679 case LSLF_BAD_INDEX1:
680 index = lmv->lmv_master_mdt_index;
681 lmv->lmv_master_mdt_index = shard_idx;
682 /* The name entry claims an index that is conflict
683 * with a valid existing name entry, then try the
684 * index in the lmv recursively. */
685 rc = lfsck_record_lmv(env, com, dir, lnr, lmv, index,
686 LSLF_BAD_INDEX2, lslr->lslr_flags, depth);
687 lmv->lmv_master_mdt_index = index;
688 if (rc == -ERANGE || rc == -EEXIST) {
700 /* The existing one is a dangling name entry. */
703 case LSLF_BAD_INDEX2:
705 /* Remove the existing dangling name entry.
706 * Refill the lslr slot with the given LMV. */
707 rc = lfsck_replace_lmv(env, com, dir, lslr, lnr,
711 /* Two dangling name entries conflict,
712 * remove the current one. */
713 rc = lfsck_remove_dirent(env, com, dir, fid, index);
715 case LSLF_BAD_INDEX1:
716 index = lmv->lmv_master_mdt_index;
717 lmv->lmv_master_mdt_index = shard_idx;
718 /* The name entry claims an index that is conflict
719 * with a valid existing name entry, then try the
720 * index in the lmv recursively. */
721 rc = lfsck_record_lmv(env, com, dir, lnr, lmv, index,
722 LSLF_BAD_INDEX2, lslr->lslr_flags, depth);
723 lmv->lmv_master_mdt_index = index;
724 if (rc == -ERANGE || rc == -EEXIST)
725 /* If the index in the lmv is invalid or
726 * also conflict with other, then remove
727 * the existing dangling name entry.
728 * Refill the lslr slot with the given LMV. */
729 rc = lfsck_replace_lmv(env, com, dir, lslr, lnr,
730 lmv, shard_idx, flags);
738 case LSLF_BAD_INDEX1: {
739 if (*depth >= LFSCK_REC_LMV_MAX_DEPTH)
742 lrls = &lfsck->li_rec_lmv_save[*depth - 1];
743 lrls->lrls_fid = lnr->lnr_fid;
744 lrls->lrls_lmv = *lmv;
746 lnr->lnr_fid = lslr->lslr_fid;
747 lmv->lmv_master_mdt_index = index;
748 lmv->lmv_stripe_count = lslr->lslr_stripe_count;
749 lmv->lmv_hash_type = lslr->lslr_hash_type;
750 index = lslr->lslr_index;
752 /* The existing one has another possible slot,
753 * try it recursively. */
754 rc = lfsck_record_lmv(env, com, dir, lnr, lmv, index,
755 LSLF_BAD_INDEX2, flags, depth);
756 *lmv = lrls->lrls_lmv;
757 lnr->lnr_fid = lrls->lrls_fid;
760 if (rc == -ERANGE || rc == -EEXIST)
766 lslr->lslr_fid = *fid;
767 lslr->lslr_flags = flags;
768 lslr->lslr_stripe_count = lmv->lmv_stripe_count;
769 lslr->lslr_index = lmv->lmv_master_mdt_index;
770 lslr->lslr_hash_type = lmv->lmv_hash_type;
771 if (flags == LSLF_NONE) {
772 if (llmv->ll_hash_type == LMV_HASH_TYPE_UNKNOWN &&
773 lmv_is_known_hash_type(lmv->lmv_hash_type))
774 llmv->ll_hash_type = lmv->lmv_hash_type;
776 if (lslr->lslr_stripe_count <= LFSCK_LMV_MAX_STRIPES &&
777 llmv->ll_max_stripe_count < lslr->lslr_stripe_count)
778 llmv->ll_max_stripe_count =
779 lslr->lslr_stripe_count;
787 /* The two 'valid' name entries claims the same
788 * index, the LFSCK cannot distinguish which one
789 * is correct. Then remove the master LMV EA to
790 * make all shards to be visible to client, and
791 * mark the master MDT-object as read-only. The
792 * administrator can handle the conflict with
793 * more human knowledge. */
794 rc = lfsck_remove_lmv(env, com, dir, lnr);
796 case LSLF_BAD_INDEX2:
797 GOTO(out, rc = -EEXIST);
801 /* Remove the current dangling name entry. */
802 rc = lfsck_remove_dirent(env, com, dir, fid, index);
804 case LSLF_BAD_INDEX1:
805 index = lmv->lmv_master_mdt_index;
806 lmv->lmv_master_mdt_index = shard_idx;
807 /* The name entry claims an index that is conflict
808 * with a valid existing name entry, then try the
809 * index in the lmv recursively. */
810 rc = lfsck_record_lmv(env, com, dir, lnr, lmv, index,
811 LSLF_BAD_INDEX2, lslr->lslr_flags, depth);
812 lmv->lmv_master_mdt_index = index;
813 if (rc == -ERANGE || rc == -EEXIST)
814 /* The index in the lmv is invalid or
815 * also conflict with other. Then we do
816 * not know how to resolve the conflict.
817 * We will handle it as handle the case
818 * of 'LSLF_NONE' vs 'LSLF_NONE'. */
819 rc = lfsck_remove_lmv(env, com, dir, lnr);
838 return rc > 0 ? 0 : rc;
841 int lfsck_read_stripe_lmv(const struct lu_env *env, struct dt_object *obj,
842 struct lmv_mds_md_v1 *lmv)
846 dt_read_lock(env, obj, 0);
847 rc = dt_xattr_get(env, obj, lfsck_buf_get(env, lmv, sizeof(*lmv)),
849 dt_read_unlock(env, obj);
850 if (rc != sizeof(*lmv))
851 return rc > 0 ? -EINVAL : rc;
853 lfsck_lmv_header_le_to_cpu(lmv, lmv);
854 if ((lmv->lmv_magic == LMV_MAGIC &&
855 !(lmv->lmv_hash_type & LMV_HASH_FLAG_MIGRATION)) ||
856 (lmv->lmv_magic == LMV_MAGIC_STRIPE &&
857 !(lmv->lmv_hash_type & LMV_HASH_FLAG_DEAD)))
864 * Parse the shard's index from the given shard name.
866 * The valid shard name/type should be:
867 * 1) The type must be S_IFDIR
868 * 2) The name should be $FID:$index
869 * 3) the index should within valid range.
871 * \param[in] env pointer to the thread context
872 * \param[in] name the shard name
873 * \param[in] namelen the name length
874 * \param[in] type the entry's type
875 * \param[in] fid the entry's FID
877 * \retval zero or positive number for the index from the name
878 * \retval negative error number on failure
880 int lfsck_shard_name_to_index(const struct lu_env *env, const char *name,
881 int namelen, __u16 type, const struct lu_fid *fid)
883 char *name2 = lfsck_env_info(env)->lti_tmpbuf2;
890 LASSERT(name != name2);
892 len = snprintf(name2, sizeof(lfsck_env_info(env)->lti_tmpbuf2),
894 if (namelen < len + 1 || memcmp(name, name2, len) != 0)
898 if (!isdigit(name[len]))
901 idx = idx * 10 + name[len++] - '0';
902 } while (len < namelen);
904 if (idx >= LFSCK_LMV_MAX_STRIPES)
910 bool lfsck_is_valid_slave_name_entry(const struct lu_env *env,
911 struct lfsck_lmv *llmv,
912 const char *name, int namelen)
914 struct lmv_mds_md_v1 *lmv;
917 if (llmv == NULL || !llmv->ll_lmv_slave || !llmv->ll_lmv_verified)
921 idx = lmv_name_to_stripe_index(lmv->lmv_hash_type,
922 lmv->lmv_stripe_count,
924 if (unlikely(idx != lmv->lmv_master_mdt_index))
931 * Check whether the given name is a valid entry under the @parent.
933 * If the @parent is a striped directory then the @child should one
934 * shard of the striped directory, its name should be $FID:$index.
936 * If the @parent is a shard of a striped directory, then the name hash
937 * should match the MDT, otherwise it is invalid.
939 * \param[in] env pointer to the thread context
940 * \param[in] parent the parent directory
941 * \param[in] child the child object to be checked
942 * \param[in] cname the name for the @child in the parent directory
944 * \retval positive number for invalid name entry
945 * \retval 0 if the name is valid or uncertain
946 * \retval negative error number on failure
948 int lfsck_namespace_check_name(const struct lu_env *env,
949 struct dt_object *parent,
950 struct dt_object *child,
951 const struct lu_name *cname)
953 struct lmv_mds_md_v1 *lmv = &lfsck_env_info(env)->lti_lmv;
957 rc = lfsck_read_stripe_lmv(env, parent, lmv);
959 RETURN(rc == -ENODATA ? 0 : rc);
961 if (lmv->lmv_magic == LMV_MAGIC_STRIPE) {
962 if (!lfsck_is_valid_slave_lmv(lmv))
965 idx = lmv_name_to_stripe_index(lmv->lmv_hash_type,
966 lmv->lmv_stripe_count,
969 if (unlikely(idx != lmv->lmv_master_mdt_index))
971 } else if (lfsck_shard_name_to_index(env, cname->ln_name,
972 cname->ln_namelen, lfsck_object_type(child),
973 lfsck_dto2fid(child)) < 0) {
981 * Update the object's LMV EA with the given @lmv.
983 * \param[in] env pointer to the thread context
984 * \param[in] com pointer to the lfsck component
985 * \param[in] obj pointer to the object which LMV EA will be updated
986 * \param[in] lmv pointer to buffer holding the new LMV EA
987 * \param[in] locked whether the caller has held ldlm lock on the @obj or not
989 * \retval positive number for nothing to be done
990 * \retval zero if updated successfully
991 * \retval negative error number on failure
993 int lfsck_namespace_update_lmv(const struct lu_env *env,
994 struct lfsck_component *com,
995 struct dt_object *obj,
996 struct lmv_mds_md_v1 *lmv, bool locked)
998 struct lfsck_thread_info *info = lfsck_env_info(env);
999 struct lmv_mds_md_v1 *lmv4 = &info->lti_lmv4;
1000 struct lu_buf *buf = &info->lti_buf;
1001 struct lfsck_instance *lfsck = com->lc_lfsck;
1002 struct dt_device *dev = lfsck_obj2dev(obj);
1003 struct thandle *th = NULL;
1004 struct lustre_handle lh = { 0 };
1009 LASSERT(lmv4 != lmv);
1011 lfsck_lmv_header_cpu_to_le(lmv4, lmv);
1012 lfsck_buf_init(buf, lmv4, sizeof(*lmv4));
1015 rc = lfsck_ibits_lock(env, lfsck, obj, &lh,
1016 MDS_INODELOCK_UPDATE |
1017 MDS_INODELOCK_XATTR, LCK_EX);
1022 th = dt_trans_create(env, dev);
1024 GOTO(log, rc = PTR_ERR(th));
1026 /* For remote updating LMV EA, there will be further LFSCK action on
1027 * remote MDT after the updating, so update the LMV EA synchronously. */
1028 if (dt_object_remote(obj))
1031 rc = dt_declare_xattr_set(env, obj, buf, XATTR_NAME_LMV, 0, th);
1035 rc = dt_trans_start_local(env, dev, th);
1039 dt_write_lock(env, obj, 0);
1040 if (unlikely(lfsck_is_dead_obj(obj)))
1041 GOTO(unlock, rc = 1);
1043 if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
1044 GOTO(unlock, rc = 0);
1046 rc = dt_xattr_set(env, obj, buf, XATTR_NAME_LMV, 0, th);
1051 dt_write_unlock(env, obj);
1054 rc1 = dt_trans_stop(env, dev, th);
1059 lfsck_ibits_unlock(&lh, LCK_EX);
1060 CDEBUG(D_LFSCK, "%s: namespace LFSCK updated the %s LMV EA "
1061 "for the object "DFID": rc = %d\n",
1062 lfsck_lfsck2name(lfsck),
1063 lmv->lmv_magic == LMV_MAGIC ? "master" : "slave",
1064 PFID(lfsck_dto2fid(obj)), rc);
1070 * Check whether allow to re-genereate the lost master LMV EA.
1072 * If the master MDT-object of the striped directory lost its master LMV EA,
1073 * then before the LFSCK repaired the striped directory, some ones may have
1074 * created some objects (that are not normal shards of the striped directory)
1075 * under the master MDT-object. If such case happend, then the LFSCK cannot
1076 * re-generate the lost master LMV EA to keep those objects to be visible to
1079 * \param[in] env pointer to the thread context
1080 * \param[in] com pointer to the lfsck component
1081 * \param[in] obj pointer to the master MDT-object to be checked
1082 * \param[in] cfid the shard's FID used for verification
1083 * \param[in] cidx the shard's index used for verification
1085 * \retval positive number if not allow to re-generate LMV EA
1086 * \retval zero if allow to re-generate LMV EA
1087 * \retval negative error number on failure
1089 static int lfsck_allow_regenerate_master_lmv(const struct lu_env *env,
1090 struct lfsck_component *com,
1091 struct dt_object *obj,
1092 const struct lu_fid *cfid,
1095 struct lfsck_thread_info *info = lfsck_env_info(env);
1096 struct lu_fid *tfid = &info->lti_fid3;
1097 struct lfsck_instance *lfsck = com->lc_lfsck;
1098 struct lu_dirent *ent =
1099 (struct lu_dirent *)info->lti_key;
1100 const struct dt_it_ops *iops;
1108 if (unlikely(!dt_try_as_dir(env, obj)))
1111 /* Check whether the shard and the master MDT-object matches or not. */
1112 snprintf(info->lti_tmpbuf, sizeof(info->lti_tmpbuf), DFID":%u",
1114 rc = dt_lookup(env, obj, (struct dt_rec *)tfid,
1115 (const struct dt_key *)info->lti_tmpbuf);
1119 if (!lu_fid_eq(tfid, cfid))
1122 args = lfsck->li_args_dir & ~(LUDA_VERIFY | LUDA_VERIFY_DRYRUN);
1123 iops = &obj->do_index_ops->dio_it;
1124 di = iops->init(env, obj, args);
1126 RETURN(PTR_ERR(di));
1128 rc = iops->load(env, di, 0);
1130 rc = iops->next(env, di);
1138 rc = iops->rec(env, di, (struct dt_rec *)ent, args);
1140 rc = lfsck_unpack_ent(ent, &cookie, &type);
1145 /* skip dot and dotdot entries */
1146 if (name_is_dot_or_dotdot(ent->lde_name, ent->lde_namelen))
1149 /* If the subdir name does not match the shard name rule, then
1150 * it is quite possible that it is NOT a shard, but created by
1151 * someone after the master MDT-object lost the master LMV EA.
1152 * But it is also possible that the subdir name entry crashed,
1153 * under such double failure cases, the LFSCK cannot know how
1154 * to repair the inconsistency. For data safe, the LFSCK will
1155 * mark the master MDT-object as read-only. The administrator
1156 * can fix the bad shard name manually, then run LFSCK again.
1158 * XXX: If the subdir name matches the shard name rule, but it
1159 * is not a real shard of the striped directory, instead,
1160 * it was created by someone after the master MDT-object
1161 * lost the LMV EA, then re-generating the master LMV EA
1162 * will cause such subdir to be invisible to client, and
1163 * if its index occupies some lost shard index, then the
1164 * LFSCK will use it to replace the bad shard, and cause
1165 * the subdir (itself) to be invisible for ever. */
1166 if (lfsck_shard_name_to_index(env, ent->lde_name,
1167 ent->lde_namelen, type, &ent->lde_fid) < 0)
1171 rc = iops->next(env, di);
1178 iops->fini(env, di);
1184 * Notify remote LFSCK instance that the object's LMV EA has been updated.
1186 * \param[in] env pointer to the thread context
1187 * \param[in] com pointer to the lfsck component
1188 * \param[in] obj pointer to the object on which the LMV EA will be set
1189 * \param[in] event indicate either master or slave LMV EA has been updated
1190 * \param[in] flags indicate which element(s) in the LMV EA has been updated
1191 * \param[in] index the MDT index on which the LFSCK instance to be notified
1193 * \retval positive number if nothing to be done
1194 * \retval zero for succeed
1195 * \retval negative error number on failure
1197 static int lfsck_namespace_notify_lmv_remote(const struct lu_env *env,
1198 struct lfsck_component *com,
1199 struct dt_object *obj,
1200 __u32 event, __u32 flags,
1203 struct lfsck_request *lr = &lfsck_env_info(env)->lti_lr;
1204 const struct lu_fid *fid = lfsck_dto2fid(obj);
1205 struct lfsck_instance *lfsck = com->lc_lfsck;
1206 struct lfsck_tgt_desc *ltd = NULL;
1207 struct ptlrpc_request *req = NULL;
1211 ltd = lfsck_tgt_get(&lfsck->li_mdt_descs, index);
1213 GOTO(out, rc = -ENODEV);
1215 req = ptlrpc_request_alloc(class_exp2cliimp(ltd->ltd_exp),
1218 GOTO(out, rc = -ENOMEM);
1220 rc = ptlrpc_request_pack(req, LUSTRE_OBD_VERSION, LFSCK_NOTIFY);
1222 ptlrpc_request_free(req);
1227 lr = req_capsule_client_get(&req->rq_pill, &RMF_LFSCK_REQUEST);
1228 memset(lr, 0, sizeof(*lr));
1229 lr->lr_event = event;
1230 lr->lr_index = lfsck_dev_idx(lfsck);
1231 lr->lr_active = LFSCK_TYPE_NAMESPACE;
1233 lr->lr_flags = flags;
1235 ptlrpc_request_set_replen(req);
1236 rc = ptlrpc_queue_wait(req);
1237 ptlrpc_req_finished(req);
1239 GOTO(out, rc = (rc == -ENOENT ? 1 : rc));
1242 CDEBUG(D_LFSCK, "%s: namespace LFSCK notify LMV EA updated for the "
1243 "object "DFID" on MDT %x remotely with event %u, flags %u: "
1244 "rc = %d\n", lfsck_lfsck2name(lfsck), PFID(fid), index,
1254 * Generate request for local LFSCK instance to rescan the striped directory.
1256 * \param[in] env pointer to the thread context
1257 * \param[in] com pointer to the lfsck component
1258 * \param[in] obj pointer to the striped directory to be rescanned
1260 * \retval positive number if nothing to be done
1261 * \retval zero for succeed
1262 * \retval negative error number on failure
1264 int lfsck_namespace_notify_lmv_master_local(const struct lu_env *env,
1265 struct lfsck_component *com,
1266 struct dt_object *obj)
1268 struct lfsck_instance *lfsck = com->lc_lfsck;
1269 struct lfsck_namespace *ns = com->lc_file_ram;
1270 struct lmv_mds_md_v1 *lmv4 = &lfsck_env_info(env)->lti_lmv4;
1271 struct lfsck_lmv_unit *llu;
1272 struct lfsck_lmv *llmv;
1273 struct lfsck_slave_lmv_rec *lslr;
1278 if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
1281 rc = lfsck_read_stripe_lmv(env, obj, lmv4);
1286 if (unlikely(llu == NULL))
1289 if (lmv4->lmv_stripe_count < 1)
1290 count = LFSCK_LMV_DEF_STRIPES;
1291 else if (lmv4->lmv_stripe_count > LFSCK_LMV_MAX_STRIPES)
1292 count = LFSCK_LMV_MAX_STRIPES;
1294 count = lmv4->lmv_stripe_count;
1296 OBD_ALLOC_LARGE(lslr, sizeof(struct lfsck_slave_lmv_rec) * count);
1303 INIT_LIST_HEAD(&llu->llu_link);
1304 llu->llu_lfsck = lfsck;
1305 llu->llu_obj = lfsck_object_get(obj);
1306 llmv = &llu->llu_lmv;
1307 llmv->ll_lmv_master = 1;
1308 llmv->ll_inline = 1;
1309 atomic_set(&llmv->ll_ref, 1);
1310 llmv->ll_stripes_allocated = count;
1311 llmv->ll_hash_type = LMV_HASH_TYPE_UNKNOWN;
1312 llmv->ll_lslr = lslr;
1313 llmv->ll_lmv = *lmv4;
1315 down_write(&com->lc_sem);
1316 if (ns->ln_status != LS_SCANNING_PHASE1 &&
1317 ns->ln_status != LS_SCANNING_PHASE2) {
1318 ns->ln_striped_dirs_skipped++;
1319 up_write(&com->lc_sem);
1320 lfsck_lmv_put(env, llmv);
1322 ns->ln_striped_dirs_repaired++;
1323 spin_lock(&lfsck->li_lock);
1324 list_add_tail(&llu->llu_link, &lfsck->li_list_lmv);
1325 spin_unlock(&lfsck->li_lock);
1326 up_write(&com->lc_sem);
1333 * Set master LMV EA for the specified striped directory.
1335 * First, if the master MDT-object of a striped directory lost its LMV EA,
1336 * then there may be some users have created some files under the master
1337 * MDT-object directly. Under such case, the LFSCK cannot re-generate LMV
1338 * EA for the master MDT-object, because we should keep the existing files
1339 * to be visible to client. Then the LFSCK will mark the striped directory
1340 * as read-only and keep it there to be handled by administrator manually.
1342 * If nobody has created files under the master MDT-object of the striped
1343 * directory, then we will set the master LMV EA and generate a new rescan
1344 * (the striped directory) request that will be handled later by the LFSCK
1345 * instance on the MDT later.
1347 * \param[in] env pointer to the thread context
1348 * \param[in] com pointer to the lfsck component
1349 * \param[in] obj pointer to the object on which the LMV EA will be set
1350 * \param[in] lmv pointer to the buffer holding the new LMV EA
1351 * \param[in] cfid the shard's FID used for verification
1352 * \param[in] cidx the shard's index used for verification
1353 * \param[in] flags to indicate which element(s) in the LMV EA will be set
1355 * \retval positive number if nothing to be done
1356 * \retval zero for succeed
1357 * \retval negative error number on failure
1359 static int lfsck_namespace_set_lmv_master(const struct lu_env *env,
1360 struct lfsck_component *com,
1361 struct dt_object *obj,
1362 struct lmv_mds_md_v1 *lmv,
1363 const struct lu_fid *cfid,
1364 __u32 cidx, __u32 flags)
1366 struct lfsck_thread_info *info = lfsck_env_info(env);
1367 struct lmv_mds_md_v1 *lmv3 = &info->lti_lmv3;
1368 struct lu_seq_range *range = &info->lti_range;
1369 struct lfsck_instance *lfsck = com->lc_lfsck;
1370 struct seq_server_site *ss = lfsck_dev_site(lfsck);
1371 struct lustre_handle lh = { 0 };
1376 fld_range_set_mdt(range);
1377 rc = fld_server_lookup(env, ss->ss_server_fld,
1378 fid_seq(lfsck_dto2fid(obj)), range);
1382 pidx = range->lsr_index;
1383 rc = lfsck_ibits_lock(env, lfsck, obj, &lh,
1384 MDS_INODELOCK_UPDATE | MDS_INODELOCK_XATTR,
1389 rc = lfsck_read_stripe_lmv(env, obj, lmv3);
1390 if (rc == -ENODATA) {
1391 if (!(flags & LEF_SET_LMV_ALL))
1395 } else if (rc == 0) {
1396 if (flags & LEF_SET_LMV_ALL)
1399 if (flags & LEF_SET_LMV_HASH)
1400 lmv3->lmv_hash_type = lmv->lmv_hash_type;
1405 lmv3->lmv_magic = LMV_MAGIC;
1406 lmv3->lmv_master_mdt_index = pidx;
1408 if (flags & LEF_SET_LMV_ALL) {
1409 rc = lfsck_allow_regenerate_master_lmv(env, com, obj,
1412 rc = lfsck_disable_master_lmv(env, com, obj, false);
1414 GOTO(log, rc = (rc == 0 ? 1 : rc));
1420 /* To indicate that the master has ever lost LMV EA. */
1421 lmv3->lmv_hash_type |= LMV_HASH_FLAG_LOST_LMV;
1424 rc = lfsck_namespace_update_lmv(env, com, obj, lmv3, true);
1425 if (rc == 0 && flags & LEF_SET_LMV_ALL) {
1426 if (dt_object_remote(obj))
1427 rc = lfsck_namespace_notify_lmv_remote(env, com, obj,
1428 LE_SET_LMV_MASTER, 0, pidx);
1430 rc = lfsck_namespace_notify_lmv_master_local(env, com,
1437 lfsck_ibits_unlock(&lh, LCK_EX);
1438 CDEBUG(D_LFSCK, "%s: namespace LFSCK set master LMV EA for the object "
1439 DFID" on the %s MDT %d, flags %x: rc = %d\n",
1440 lfsck_lfsck2name(lfsck), PFID(lfsck_dto2fid(obj)),
1441 dt_object_remote(obj) ? "remote" : "local", pidx, flags, rc);
1444 struct lfsck_namespace *ns = com->lc_file_ram;
1446 ns->ln_flags |= LF_INCONSISTENT;
1453 * Repair the bad name hash.
1455 * If the name hash of some name entry under the striped directory does not
1456 * match the shard of the striped directory, then the LFSCK will repair the
1457 * inconsistency. Ideally, the LFSCK should migrate the name entry from the
1458 * current MDT to the right MDT (another one), but before the async commit
1459 * finished, the LFSCK will change the striped directory's hash type as
1460 * LMV_HASH_TYPE_UNKNOWN and mark the lmv flags as LMV_HASH_FLAG_BAD_TYPE.
1462 * \param[in] env pointer to the thread context
1463 * \param[in] com pointer to the lfsck component
1464 * \param[in] shard pointer to the shard of the striped directory that
1465 * contains the bad name entry
1466 * \param[in] llmv pointer to lfsck LMV EA structure
1467 * \param[in] name the name of the bad name hash
1469 * \retval positive number if nothing to be done
1470 * \retval zero for succeed
1471 * \retval negative error number on failure
1473 int lfsck_namespace_repair_bad_name_hash(const struct lu_env *env,
1474 struct lfsck_component *com,
1475 struct dt_object *shard,
1476 struct lfsck_lmv *llmv,
1479 struct lfsck_thread_info *info = lfsck_env_info(env);
1480 struct lu_fid *pfid = &info->lti_fid3;
1481 struct lmv_mds_md_v1 *lmv2 = &info->lti_lmv2;
1482 struct lfsck_instance *lfsck = com->lc_lfsck;
1483 struct dt_object *parent = NULL;
1487 rc = dt_lookup(env, shard, (struct dt_rec *)pfid,
1488 (const struct dt_key *)dotdot);
1489 if (rc != 0 || !fid_is_sane(pfid))
1492 parent = lfsck_object_find_bottom(env, lfsck, pfid);
1494 GOTO(log, rc = PTR_ERR(parent));
1496 *lmv2 = llmv->ll_lmv;
1497 lmv2->lmv_hash_type = LMV_HASH_TYPE_UNKNOWN | LMV_HASH_FLAG_BAD_TYPE;
1498 rc = lfsck_namespace_set_lmv_master(env, com, parent, lmv2,
1499 lfsck_dto2fid(shard),
1500 llmv->ll_lmv.lmv_master_mdt_index,
1506 CDEBUG(D_LFSCK, "%s: namespace LFSCK assistant found bad name hash "
1507 "on the MDT %x, parent "DFID", name %s, shard_%x "DFID
1509 lfsck_lfsck2name(lfsck), lfsck_dev_idx(lfsck),
1510 PFID(pfid), name, llmv->ll_lmv.lmv_master_mdt_index,
1511 PFID(lfsck_dto2fid(shard)), rc);
1513 if (parent != NULL && !IS_ERR(parent))
1514 lfsck_object_put(env, parent);
1520 * Scan the shard of a striped directory for name hash verification.
1522 * During the first-stage scanning, if the LFSCK cannot make sure whether
1523 * the shard of a stripe directory contains valid slave LMV EA or not, then
1524 * it will skip the name hash verification for this shard temporarily, and
1525 * record the shard's FID in the LFSCK tracing file. As the LFSCK processing,
1526 * the slave LMV EA may has been verified/fixed by LFSCK instance on master.
1527 * Then in the second-stage scanning, the shard will be re-scanned, and for
1528 * every name entry under the shard, the name hash will be verified, and for
1529 * unmatched name entry, the LFSCK will try to fix it.
1531 * \param[in] env pointer to the thread context
1532 * \param[in] com pointer to the lfsck component
1533 * \param[in] child pointer to the directory object to be handled
1535 * \retval positive number for scanning successfully
1536 * \retval zero for the scanning is paused
1537 * \retval negative error number on failure
1539 int lfsck_namespace_scan_shard(const struct lu_env *env,
1540 struct lfsck_component *com,
1541 struct dt_object *child)
1543 struct lfsck_thread_info *info = lfsck_env_info(env);
1544 struct lmv_mds_md_v1 *lmv = &info->lti_lmv;
1545 struct lfsck_instance *lfsck = com->lc_lfsck;
1546 struct lfsck_namespace *ns = com->lc_file_ram;
1547 struct ptlrpc_thread *thread = &lfsck->li_thread;
1548 struct lu_dirent *ent =
1549 (struct lu_dirent *)info->lti_key;
1550 struct lfsck_bookmark *bk = &lfsck->li_bookmark_ram;
1551 struct lfsck_lmv *llmv = NULL;
1552 const struct dt_it_ops *iops;
1560 rc = lfsck_read_stripe_lmv(env, child, lmv);
1562 RETURN(rc == -ENODATA ? 1 : rc);
1564 if (lmv->lmv_magic != LMV_MAGIC_STRIPE)
1567 if (unlikely(!dt_try_as_dir(env, child)))
1570 OBD_ALLOC_PTR(llmv);
1574 llmv->ll_lmv_slave = 1;
1575 llmv->ll_lmv_verified = 1;
1576 llmv->ll_lmv = *lmv;
1577 atomic_set(&llmv->ll_ref, 1);
1579 args = lfsck->li_args_dir & ~(LUDA_VERIFY | LUDA_VERIFY_DRYRUN);
1580 iops = &child->do_index_ops->dio_it;
1581 di = iops->init(env, child, args);
1583 GOTO(out, rc = PTR_ERR(di));
1585 rc = iops->load(env, di, 0);
1587 rc = iops->next(env, di);
1592 if (CFS_FAIL_TIMEOUT(OBD_FAIL_LFSCK_DELAY3, cfs_fail_val) &&
1593 unlikely(!thread_is_running(thread)))
1596 rc = iops->rec(env, di, (struct dt_rec *)ent, args);
1598 rc = lfsck_unpack_ent(ent, &cookie, &type);
1601 if (bk->lb_param & LPF_FAILOUT)
1607 /* skip dot and dotdot entries */
1608 if (name_is_dot_or_dotdot(ent->lde_name, ent->lde_namelen))
1611 if (!lfsck_is_valid_slave_name_entry(env, llmv, ent->lde_name,
1612 ent->lde_namelen)) {
1613 ns->ln_flags |= LF_INCONSISTENT;
1614 rc = lfsck_namespace_repair_bad_name_hash(env, com,
1615 child, llmv, ent->lde_name);
1617 ns->ln_name_hash_repaired++;
1620 if (rc < 0 && bk->lb_param & LPF_FAILOUT)
1624 lfsck_control_speed(lfsck);
1625 if (unlikely(!thread_is_running(thread)))
1628 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_FATAL2)) {
1629 spin_lock(&lfsck->li_lock);
1630 thread_set_flags(thread, SVC_STOPPING);
1631 spin_unlock(&lfsck->li_lock);
1633 GOTO(out, rc = -EINVAL);
1637 rc = iops->next(env, di);
1644 iops->fini(env, di);
1645 lfsck_lmv_put(env, llmv);
1651 * Verify the slave object's (of striped directory) LMV EA.
1653 * For the slave object of a striped directory, before traversing the shard
1654 * the LFSCK will verify whether its slave LMV EA matches its parent's master
1657 * \param[in] env pointer to the thread context
1658 * \param[in] com pointer to the lfsck component
1659 * \param[in] obj pointer to the object which LMV EA will be checked
1660 * \param[in] llmv pointer to buffer holding the slave LMV EA
1662 * \retval zero for succeed
1663 * \retval negative error number on failure
1665 int lfsck_namespace_verify_stripe_slave(const struct lu_env *env,
1666 struct lfsck_component *com,
1667 struct dt_object *obj,
1668 struct lfsck_lmv *llmv)
1670 struct lfsck_thread_info *info = lfsck_env_info(env);
1671 char *name = info->lti_key;
1673 struct lu_fid *pfid = &info->lti_fid3;
1674 const struct lu_fid *cfid = lfsck_dto2fid(obj);
1676 struct lfsck_instance *lfsck = com->lc_lfsck;
1677 struct lmv_mds_md_v1 *clmv = &llmv->ll_lmv;
1678 struct lmv_mds_md_v1 *plmv = &info->lti_lmv;
1679 struct dt_object *parent = NULL;
1683 if (!lfsck_is_valid_slave_lmv(clmv)) {
1684 rc = lfsck_namespace_trace_update(env, com, cfid,
1685 LNTF_UNCERTAIN_LMV, true);
1690 rc = dt_lookup(env, obj, (struct dt_rec *)pfid,
1691 (const struct dt_key *)dotdot);
1692 if (rc != 0 || !fid_is_sane(pfid)) {
1693 rc = lfsck_namespace_trace_update(env, com, cfid,
1694 LNTF_UNCERTAIN_LMV, true);
1699 parent = lfsck_object_find_bottom(env, lfsck, pfid);
1700 if (IS_ERR(parent)) {
1701 rc = lfsck_namespace_trace_update(env, com, cfid,
1702 LNTF_UNCERTAIN_LMV, true);
1707 if (unlikely(!dt_try_as_dir(env, parent)))
1708 GOTO(out, rc = -ENOTDIR);
1710 rc = lfsck_read_stripe_lmv(env, parent, plmv);
1714 /* If the parent has no LMV EA, then it maybe because:
1715 * 1) The parent lost the LMV EA.
1716 * 2) The child claims a wrong (slave) LMV EA. */
1718 rc = lfsck_namespace_set_lmv_master(env, com, parent,
1719 clmv, cfid, clmv->lmv_master_mdt_index,
1724 rc1 = lfsck_namespace_trace_update(env, com, cfid,
1725 LNTF_UNCERTAIN_LMV, true);
1727 GOTO(out, rc = (rc < 0 ? rc : rc1));
1730 /* Unmatched magic or stripe count. */
1731 if (unlikely(plmv->lmv_magic != LMV_MAGIC ||
1732 plmv->lmv_stripe_count != clmv->lmv_stripe_count)) {
1733 rc = lfsck_namespace_trace_update(env, com, cfid,
1734 LNTF_UNCERTAIN_LMV, true);
1739 /* If the master hash type has been set as LMV_HASH_TYPE_UNKNOWN,
1740 * then the slave hash type is not important. */
1741 if ((plmv->lmv_hash_type & LMV_HASH_TYPE_MASK) ==
1742 LMV_HASH_TYPE_UNKNOWN &&
1743 plmv->lmv_hash_type & LMV_HASH_FLAG_BAD_TYPE)
1746 /* Unmatched hash type. */
1747 if (unlikely((plmv->lmv_hash_type & LMV_HASH_TYPE_MASK) !=
1748 (clmv->lmv_hash_type & LMV_HASH_TYPE_MASK))) {
1749 rc = lfsck_namespace_trace_update(env, com, cfid,
1750 LNTF_UNCERTAIN_LMV, true);
1755 snprintf(info->lti_tmpbuf2, sizeof(info->lti_tmpbuf2), DFID":%u",
1756 PFID(cfid), clmv->lmv_master_mdt_index);
1757 name2 = info->lti_tmpbuf2;
1759 rc = lfsck_links_get_first(env, obj, name, &tfid);
1760 if (rc == 0 && strcmp(name, name2) == 0 && lu_fid_eq(pfid, &tfid)) {
1761 llmv->ll_lmv_verified = 1;
1766 rc = dt_lookup(env, parent, (struct dt_rec *)&tfid,
1767 (const struct dt_key *)name2);
1768 if (rc != 0 || !lu_fid_eq(cfid, &tfid))
1769 rc = lfsck_namespace_trace_update(env, com, cfid,
1770 LNTF_UNCERTAIN_LMV, true);
1772 llmv->ll_lmv_verified = 1;
1777 if (parent != NULL && !IS_ERR(parent))
1778 lfsck_object_put(env, parent);
1784 * Double scan the striped directory or the shard.
1786 * All the shards' under the given striped directory or its shard have
1787 * been scanned, the LFSCK has got the global knownledge about the LMV
1790 * If the target is one shard of a striped directory, then only needs to
1791 * update related tracing file.
1793 * If the target is the master MDT-object of a striped directory, then the
1794 * LFSCK will make the decision about whether the master LMV EA is invalid
1795 * or not, and repair it if inconsistenct; for every shard of the striped
1796 * directory, whether the slave LMV EA is invalid or not, and repair it if
1799 * \param[in] env pointer to the thread context
1800 * \param[in] com pointer to the lfsck component
1801 * \paran[in] dir pointer to the striped directory or its shard to be
1803 * \param[in] lnr pointer to the namespace request that contains the
1804 * striped directory or the shard
1806 * \retval zero for succeed
1807 * \retval negative error number on failure
1809 int lfsck_namespace_striped_dir_rescan(const struct lu_env *env,
1810 struct lfsck_component *com,
1811 struct dt_object *dir,
1812 struct lfsck_namespace_req *lnr)
1814 struct lfsck_thread_info *info = lfsck_env_info(env);
1815 struct lfsck_instance *lfsck = com->lc_lfsck;
1816 struct lfsck_namespace *ns = com->lc_file_ram;
1817 struct lfsck_lmv *llmv = lnr->lnr_lmv;
1818 struct lmv_mds_md_v1 *lmv = &llmv->ll_lmv;
1819 struct lmv_mds_md_v1 *lmv2 = &info->lti_lmv2;
1820 const struct lu_fid *pfid = lfsck_dto2fid(dir);
1821 struct lu_seq_range *range = &info->lti_range;
1822 struct seq_server_site *ss = lfsck_dev_site(lfsck);
1829 if (llmv->ll_lmv_slave) {
1830 if (llmv->ll_lmv_verified) {
1831 ns->ln_striped_shards_scanned++;
1832 lfsck_namespace_trace_update(env, com,
1834 LNTF_UNCERTAIN_LMV |
1835 LNTF_RECHECK_NAME_HASH, false);
1841 /* Either the striped directory has been disabled or only part of
1842 * the striped directory have been scanned. The LFSCK cannot repair
1843 * something based on incompleted knowledge. So skip it. */
1844 if (llmv->ll_ignore || llmv->ll_exit_value <= 0)
1847 /* There ever been some failure, as to the LFSCK cannot know whether
1848 * it has got the global knowledge about the LMV EA consistency or not,
1849 * so it cannot make reparation about the incompleted knowledge. */
1850 if (llmv->ll_failed) {
1851 ns->ln_striped_dirs_scanned++;
1852 ns->ln_striped_dirs_failed++;
1857 if (lmv->lmv_stripe_count > LFSCK_LMV_MAX_STRIPES)
1858 stripe_count = max(llmv->ll_max_filled_off + 1,
1859 llmv->ll_max_stripe_count);
1861 stripe_count = max(llmv->ll_max_filled_off + 1,
1862 lmv->lmv_stripe_count);
1864 if (lmv->lmv_stripe_count != stripe_count) {
1865 lmv->lmv_stripe_count = stripe_count;
1866 llmv->ll_lmv_updated = 1;
1869 if (!lmv_is_known_hash_type(lmv->lmv_hash_type) &&
1870 !(lmv->lmv_hash_type & LMV_HASH_FLAG_BAD_TYPE) &&
1871 lmv_is_known_hash_type(llmv->ll_hash_type)) {
1872 hash_type = llmv->ll_hash_type & LMV_HASH_TYPE_MASK;
1873 lmv->lmv_hash_type = llmv->ll_hash_type;
1874 llmv->ll_lmv_updated = 1;
1876 hash_type = lmv->lmv_hash_type & LMV_HASH_TYPE_MASK;
1877 if (!lmv_is_known_hash_type(hash_type))
1878 hash_type = LMV_HASH_TYPE_UNKNOWN;
1881 if (llmv->ll_lmv_updated) {
1882 lmv->lmv_layout_version++;
1883 rc = lfsck_namespace_update_lmv(env, com, dir, lmv, false);
1887 ns->ln_striped_dirs_scanned++;
1888 ns->ln_striped_dirs_repaired++;
1891 fld_range_set_mdt(range);
1892 for (i = 0; i <= llmv->ll_max_filled_off; i++) {
1893 struct dt_object *obj = NULL;
1894 struct lfsck_slave_lmv_rec *lslr = llmv->ll_lslr + i;
1895 const struct lu_fid *cfid = &lslr->lslr_fid;
1896 const struct lu_name *cname;
1897 struct linkea_data ldata = { NULL };
1900 bool repair_linkea = false;
1901 bool repair_lmvea = false;
1902 bool rename = false;
1903 bool create = false;
1904 bool linkea_repaired = false;
1905 bool lmvea_repaired = false;
1906 bool rename_repaired = false;
1907 bool create_repaired = false;
1910 if (fid_is_zero(cfid))
1913 len = snprintf(info->lti_tmpbuf, sizeof(info->lti_tmpbuf),
1914 DFID":%u", PFID(cfid), i);
1915 cname = lfsck_name_get_const(env, info->lti_tmpbuf, len);
1916 memcpy(lnr->lnr_name, info->lti_tmpbuf, len);
1918 obj = lfsck_object_find_bottom_nowait(env, lfsck, cfid);
1920 if (lfsck_is_dead_obj(dir))
1927 switch (lslr->lslr_flags) {
1929 if (llmv->ll_inline ||
1930 lslr->lslr_stripe_count != stripe_count ||
1931 (lslr->lslr_hash_type & LMV_HASH_TYPE_MASK) !=
1933 repair_lmvea = true;
1935 case LSLF_BAD_INDEX2:
1936 /* The index in the slave LMV EA is right,
1937 * the name entry should be updated. */
1939 snprintf(info->lti_tmpbuf2, sizeof(info->lti_tmpbuf2),
1940 DFID":%u", PFID(cfid), lslr->lslr_index);
1941 if (llmv->ll_inline ||
1942 lslr->lslr_stripe_count != stripe_count ||
1943 (lslr->lslr_hash_type & LMV_HASH_TYPE_MASK) !=
1945 repair_lmvea = true;
1947 case LSLF_BAD_INDEX1:
1948 /* The index in the name entry is right,
1949 * the slave LMV EA should be updated. */
1951 repair_lmvea = true;
1960 rc1 = lfsck_links_read(env, obj, &ldata);
1961 if (rc1 == -ENOENT) {
1966 if (rc1 == -EINVAL || rc1 == -ENODATA) {
1967 repair_linkea = true;
1974 if (ldata.ld_leh->leh_reccount != 1) {
1975 repair_linkea = true;
1979 rc1 = linkea_links_find(&ldata, cname, pfid);
1981 repair_linkea = true;
1985 rc1 = lfsck_namespace_repair_dangling(env, com, dir,
1988 create_repaired = true;
1990 ns->ln_dangling_repaired++;
1996 lmv2->lmv_magic = LMV_MAGIC_STRIPE;
1997 lmv2->lmv_stripe_count = stripe_count;
1998 lmv2->lmv_master_mdt_index = i;
1999 lmv2->lmv_hash_type = hash_type;
2001 rc1 = lfsck_namespace_update_lmv(env, com, obj,
2006 if (dt_object_remote(obj)) {
2007 rc1 = fld_server_lookup(env, ss->ss_server_fld,
2008 fid_seq(lfsck_dto2fid(obj)), range);
2012 rc1 = lfsck_namespace_notify_lmv_remote(env,
2013 com, obj, LE_SET_LMV_SLAVE, 0,
2016 ns->ln_striped_shards_repaired++;
2017 rc1 = lfsck_namespace_trace_update(env, com,
2018 cfid, LNTF_RECHECK_NAME_HASH, true);
2025 lmvea_repaired = true;
2026 } else if (llmv->ll_inline) {
2027 if (dt_object_remote(obj)) {
2028 rc1 = fld_server_lookup(env, ss->ss_server_fld,
2029 fid_seq(lfsck_dto2fid(obj)), range);
2033 /* The slave LMV EA on the remote shard is
2034 * correct, just notify the LFSCK instance
2035 * on such MDT to re-verify the name_hash. */
2036 rc1 = lfsck_namespace_notify_lmv_remote(env,
2037 com, obj, LE_SET_LMV_SLAVE,
2038 LEF_RECHECK_NAME_HASH,
2041 rc1 = lfsck_namespace_trace_update(env, com,
2042 cfid, LNTF_RECHECK_NAME_HASH, true);
2050 rc1 = lfsck_namespace_repair_dirent(env, com, dir, obj,
2051 info->lti_tmpbuf2, lnr->lnr_name,
2052 lnr->lnr_type, true, false);
2054 rename_repaired = true;
2056 ns->ln_dirent_repaired++;
2057 rc1 = lfsck_namespace_trace_update(env,
2059 LNTF_RECHECK_NAME_HASH, true);
2067 if (repair_linkea) {
2068 struct lustre_handle lh = { 0 };
2070 rc1 = linkea_data_new(&ldata, &info->lti_big_buf);
2074 rc1 = linkea_add_buf(&ldata, cname, lfsck_dto2fid(dir));
2078 rc1 = lfsck_ibits_lock(env, lfsck, obj, &lh,
2079 MDS_INODELOCK_UPDATE |
2080 MDS_INODELOCK_XATTR, LCK_EX);
2084 rc1 = lfsck_namespace_rebuild_linkea(env, com, obj,
2086 lfsck_ibits_unlock(&lh, LCK_EX);
2088 linkea_repaired = true;
2090 ns->ln_linkea_repaired++;
2095 CDEBUG(D_LFSCK, "%s: namespace LFSCK repair the shard "
2096 "%d "DFID" of the striped directory "DFID" with "
2097 "dangling %s/%s, rename %s/%s, llinkea %s/%s, "
2098 "repair_lmvea %s/%s: rc = %d\n", lfsck_lfsck2name(lfsck),
2099 i, PFID(cfid), PFID(&lnr->lnr_fid),
2100 create ? "yes" : "no", create_repaired ? "yes" : "no",
2101 rename ? "yes" : "no", rename_repaired ? "yes" : "no",
2102 repair_linkea ? "yes" : "no",
2103 linkea_repaired ? "yes" : "no",
2104 repair_lmvea ? "yes" : "no",
2105 lmvea_repaired ? "yes" : "no", rc1);
2107 if (obj != NULL && !IS_ERR(obj))
2108 lfsck_object_put(env, obj);
2112 ns->ln_striped_shards_failed++;
2120 * Verify the shard's name entry under the striped directory.
2122 * Before all shards of the striped directory scanned, the LFSCK cannot
2123 * know whether the master LMV EA is valid or not, and also cannot know
2124 * how to repair an invalid shard exactly. For example, the stripe index
2125 * stored in the shard's name does not match the stripe index stored in
2126 * the slave LMV EA, then the LFSCK cannot know which one is correct.
2127 * If the LFSCK just assumed one is correct, and fixed the other, then
2128 * as the LFSCK processing, it may find that the former reparation is
2129 * wrong and have to roll back. Unfortunately, if some applications saw
2130 * the changes and made further modification based on such changes, then
2131 * the roll back is almost impossible.
2133 * To avoid above trouble, the LFSCK will scan the master object of the
2134 * striped directory twice, that is NOT the same as normal two-stages
2135 * scanning, the double scanning the striped directory will happen both
2136 * during the first-stage scanning:
2138 * 1) When the striped directory is opened for scanning, the LFSCK will
2139 * iterate each shard in turn, and records its slave LMV EA in the
2140 * lfsck_lmv::ll_lslr. In this step, if the 'shard' (may be fake
2141 * shard) name does not match the shard naming rule, for example, it
2142 * does not contains the shard's FID, or not contains index, then we
2143 * can remove the bad name entry directly. But if the name is valid,
2144 * but the shard has no slave LMV EA or the slave LMV EA does not
2145 * match its name, then we just record related information in the
2146 * lfsck_lmv::ll_lslr in RAM.
2148 * 2) When all the known shards have been scanned, then the engine will
2149 * generate a dummy request (via lfsck_namespace_close_dir) to tell
2150 * the assistant thread that all the known shards have been scanned.
2151 * Since the assistant has got the global knowledge about the index
2152 * conflict, stripe count, hash type, and so on. Then the assistant
2153 * thread will scan the lfsck_lmv::ll_lslr, and for every shard in
2154 * the record, check and repair inconsistency.
2156 * Generally, the stripe directory has only several shards, and there
2157 * will NOT be a lof of striped directory. So double scanning striped
2158 * directory will not much affect the LFSCK performance.
2160 * \param[in] env pointer to the thread context
2161 * \param[in] com pointer to the lfsck component
2162 * \param[in] dir pointer to the master MDT-object of the
2164 * \param[in] lnr pointer to the namespace request that contains the
2165 * shard's name, parent object, parent's LMV, and ect.
2167 * \retval zero for succeed
2168 * \retval negative error number on failure
2170 int lfsck_namespace_handle_striped_master(const struct lu_env *env,
2171 struct lfsck_component *com,
2172 struct dt_object *dir,
2173 struct lfsck_namespace_req *lnr)
2175 struct lfsck_thread_info *info = lfsck_env_info(env);
2176 struct lmv_mds_md_v1 *lmv = &info->lti_lmv;
2177 struct lfsck_instance *lfsck = com->lc_lfsck;
2178 struct lfsck_namespace *ns = com->lc_file_ram;
2179 struct lfsck_lmv *llmv = lnr->lnr_lmv;
2180 const struct lu_fid *pfid = lfsck_dto2fid(dir);
2181 struct dt_object *obj = NULL;
2182 struct dt_device *dev = NULL;
2187 bool repaired = false;
2188 enum lfsck_namespace_inconsistency_type type = LNIT_NONE;
2191 if (unlikely(llmv->ll_ignore))
2194 shard_idx = lfsck_find_mdt_idx_by_fid(env, lfsck, &lnr->lnr_fid);
2196 GOTO(fail_lmv, rc = shard_idx);
2198 if (shard_idx == lfsck_dev_idx(lfsck)) {
2199 if (unlikely(strcmp(lnr->lnr_name, dotdot) == 0))
2202 dev = lfsck->li_bottom;
2204 struct lfsck_tgt_desc *ltd;
2206 /* Usually, some local filesystem consistency verification
2207 * tools can guarantee the local namespace tree consistenct.
2208 * So the LFSCK will only verify the remote directory. */
2209 if (unlikely(strcmp(lnr->lnr_name, dotdot) == 0)) {
2210 rc = lfsck_namespace_trace_update(env, com, pfid,
2211 LNTF_CHECK_PARENT, true);
2216 ltd = LTD_TGT(&lfsck->li_mdt_descs, shard_idx);
2217 if (unlikely(ltd == NULL)) {
2218 CDEBUG(D_LFSCK, "%s: cannot talk with MDT %x which "
2219 "did not join the namespace LFSCK\n",
2220 lfsck_lfsck2name(lfsck), shard_idx);
2221 lfsck_lad_set_bitmap(env, com, shard_idx);
2223 GOTO(fail_lmv, rc = -ENODEV);
2229 obj = lfsck_object_find_by_dev_nowait(env, dev, &lnr->lnr_fid);
2231 if (lfsck_is_dead_obj(dir))
2234 GOTO(fail_lmv, rc = PTR_ERR(obj));
2237 if (!dt_object_exists(obj)) {
2238 stripe = lfsck_shard_name_to_index(env, lnr->lnr_name,
2239 lnr->lnr_namelen, lnr->lnr_type, &lnr->lnr_fid);
2241 type = LNIT_BAD_DIRENT;
2247 rc = lfsck_namespace_check_exist(env, dir, obj, lnr->lnr_name);
2249 memset(lmv, 0, sizeof(*lmv));
2250 lmv->lmv_magic = LMV_MAGIC;
2251 rc = lfsck_record_lmv(env, com, dir, lnr, lmv, stripe,
2252 LSLF_DANGLING, LSLF_NONE, &depth);
2258 stripe = lfsck_shard_name_to_index(env, lnr->lnr_name, lnr->lnr_namelen,
2259 lfsck_object_type(obj),
2262 type = LNIT_BAD_DIRENT;
2267 rc = lfsck_read_stripe_lmv(env, obj, lmv);
2268 if (unlikely(rc == -ENOENT))
2269 /* It may happen when the remote object has been removed,
2270 * but the local MDT does not aware of that. */
2274 rc = lfsck_record_lmv(env, com, dir, lnr, lmv, stripe,
2275 LSLF_NO_LMVEA, LSLF_NONE, &depth);
2277 rc = lfsck_record_lmv(env, com, dir, lnr, lmv, stripe,
2278 lmv->lmv_master_mdt_index != stripe ?
2279 LSLF_BAD_INDEX1 : LSLF_NONE, LSLF_NONE,
2285 llmv->ll_failed = 1;
2288 if (rc >= 0 && type == LNIT_NONE && !S_ISDIR(lnr->lnr_type))
2289 type = LNIT_BAD_TYPE;
2293 rc = lfsck_namespace_repair_dirent(env, com, dir, obj,
2294 lnr->lnr_name, lnr->lnr_name,
2295 lnr->lnr_type, true, false);
2299 case LNIT_BAD_DIRENT:
2300 rc = lfsck_namespace_repair_dirent(env, com, dir, obj,
2301 lnr->lnr_name, lnr->lnr_name,
2302 lnr->lnr_type, false, false);
2311 CDEBUG(D_LFSCK, "%s: namespace LFSCK assistant fail to handle "
2312 "the shard: "DFID", parent "DFID", name %.*s: rc = %d\n",
2313 lfsck_lfsck2name(lfsck), PFID(&lnr->lnr_fid),
2314 PFID(lfsck_dto2fid(dir)),
2315 lnr->lnr_namelen, lnr->lnr_name, rc);
2317 if ((rc == -ENOTCONN || rc == -ESHUTDOWN || rc == -EREMCHG ||
2318 rc == -ETIMEDOUT || rc == -EHOSTDOWN ||
2319 rc == -EHOSTUNREACH || rc == -EINPROGRESS) &&
2320 dev != NULL && dev != lfsck->li_bottom)
2321 lfsck_lad_set_bitmap(env, com, shard_idx);
2323 if (!(lfsck->li_bookmark_ram.lb_param & LPF_FAILOUT))
2327 ns->ln_items_repaired++;
2331 ns->ln_bad_type_repaired++;
2333 case LNIT_BAD_DIRENT:
2334 ns->ln_dirent_repaired++;
2344 if (obj != NULL && !IS_ERR(obj))
2345 lfsck_object_put(env, obj);