Whamcloud - gitweb
70328273cafd8591c7142c1b4bf3b75fad480d1b
[fs/lustre-release.git] / lustre / lfsck / lfsck_namespace.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2012, 2013, Intel Corporation.
24  */
25 /*
26  * lustre/lfsck/lfsck_namespace.c
27  *
28  * Author: Fan, Yong <fan.yong@intel.com>
29  */
30
31 #define DEBUG_SUBSYSTEM S_LFSCK
32
33 #include <lustre/lustre_idl.h>
34 #include <lu_object.h>
35 #include <dt_object.h>
36 #include <md_object.h>
37 #include <lustre_fid.h>
38 #include <lustre_lib.h>
39 #include <lustre_net.h>
40 #include <lustre/lustre_user.h>
41
42 #include "lfsck_internal.h"
43
44 #define LFSCK_NAMESPACE_MAGIC   0xA0629D03
45
46 enum lfsck_nameentry_check {
47         LFSCK_NAMEENTRY_DEAD            = 1, /* The object has been unlinked. */
48         LFSCK_NAMEENTRY_REMOVED         = 2, /* The entry has been removed. */
49         LFSCK_NAMEENTRY_RECREATED       = 3, /* The entry has been recreated. */
50 };
51
52 static const char lfsck_namespace_name[] = "lfsck_namespace";
53
54 static struct lfsck_namespace_req *
55 lfsck_namespace_assistant_req_init(struct lfsck_instance *lfsck,
56                                    struct lu_dirent *ent, __u16 type)
57 {
58         struct lfsck_namespace_req *lnr;
59         int                         size;
60
61         size = sizeof(*lnr) + (ent->lde_namelen & ~3) + 4;
62         OBD_ALLOC(lnr, size);
63         if (lnr == NULL)
64                 return ERR_PTR(-ENOMEM);
65
66         INIT_LIST_HEAD(&lnr->lnr_lar.lar_list);
67         lnr->lnr_obj = lfsck_object_get(lfsck->li_obj_dir);
68         lnr->lnr_lmv = lfsck_lmv_get(lfsck->li_lmv);
69         lnr->lnr_fid = ent->lde_fid;
70         lnr->lnr_oit_cookie = lfsck->li_pos_current.lp_oit_cookie;
71         lnr->lnr_dir_cookie = ent->lde_hash;
72         lnr->lnr_attr = ent->lde_attrs;
73         lnr->lnr_size = size;
74         lnr->lnr_type = type;
75         lnr->lnr_namelen = ent->lde_namelen;
76         memcpy(lnr->lnr_name, ent->lde_name, ent->lde_namelen);
77
78         return lnr;
79 }
80
81 static void lfsck_namespace_assistant_req_fini(const struct lu_env *env,
82                                                struct lfsck_assistant_req *lar)
83 {
84         struct lfsck_namespace_req *lnr =
85                         container_of0(lar, struct lfsck_namespace_req, lnr_lar);
86
87         if (lnr->lnr_lmv != NULL)
88                 lfsck_lmv_put(env, lnr->lnr_lmv);
89
90         lu_object_put(env, &lnr->lnr_obj->do_lu);
91         OBD_FREE(lnr, lnr->lnr_size);
92 }
93
94 static void lfsck_namespace_le_to_cpu(struct lfsck_namespace *dst,
95                                       struct lfsck_namespace *src)
96 {
97         dst->ln_magic = le32_to_cpu(src->ln_magic);
98         dst->ln_status = le32_to_cpu(src->ln_status);
99         dst->ln_flags = le32_to_cpu(src->ln_flags);
100         dst->ln_success_count = le32_to_cpu(src->ln_success_count);
101         dst->ln_run_time_phase1 = le32_to_cpu(src->ln_run_time_phase1);
102         dst->ln_run_time_phase2 = le32_to_cpu(src->ln_run_time_phase2);
103         dst->ln_time_last_complete = le64_to_cpu(src->ln_time_last_complete);
104         dst->ln_time_latest_start = le64_to_cpu(src->ln_time_latest_start);
105         dst->ln_time_last_checkpoint =
106                                 le64_to_cpu(src->ln_time_last_checkpoint);
107         lfsck_position_le_to_cpu(&dst->ln_pos_latest_start,
108                                  &src->ln_pos_latest_start);
109         lfsck_position_le_to_cpu(&dst->ln_pos_last_checkpoint,
110                                  &src->ln_pos_last_checkpoint);
111         lfsck_position_le_to_cpu(&dst->ln_pos_first_inconsistent,
112                                  &src->ln_pos_first_inconsistent);
113         dst->ln_items_checked = le64_to_cpu(src->ln_items_checked);
114         dst->ln_items_repaired = le64_to_cpu(src->ln_items_repaired);
115         dst->ln_items_failed = le64_to_cpu(src->ln_items_failed);
116         dst->ln_dirs_checked = le64_to_cpu(src->ln_dirs_checked);
117         dst->ln_objs_checked_phase2 = le64_to_cpu(src->ln_objs_checked_phase2);
118         dst->ln_objs_repaired_phase2 =
119                                 le64_to_cpu(src->ln_objs_repaired_phase2);
120         dst->ln_objs_failed_phase2 = le64_to_cpu(src->ln_objs_failed_phase2);
121         dst->ln_objs_nlink_repaired = le64_to_cpu(src->ln_objs_nlink_repaired);
122         fid_le_to_cpu(&dst->ln_fid_latest_scanned_phase2,
123                       &src->ln_fid_latest_scanned_phase2);
124         dst->ln_dirent_repaired = le64_to_cpu(src->ln_dirent_repaired);
125         dst->ln_linkea_repaired = le64_to_cpu(src->ln_linkea_repaired);
126         dst->ln_mul_linked_checked = le64_to_cpu(src->ln_mul_linked_checked);
127         dst->ln_mul_linked_repaired = le64_to_cpu(src->ln_mul_linked_repaired);
128         dst->ln_unknown_inconsistency =
129                                 le64_to_cpu(src->ln_unknown_inconsistency);
130         dst->ln_unmatched_pairs_repaired =
131                                 le64_to_cpu(src->ln_unmatched_pairs_repaired);
132         dst->ln_dangling_repaired = le64_to_cpu(src->ln_dangling_repaired);
133         dst->ln_mul_ref_repaired = le64_to_cpu(src->ln_mul_ref_repaired);
134         dst->ln_bad_type_repaired = le64_to_cpu(src->ln_bad_type_repaired);
135         dst->ln_lost_dirent_repaired =
136                                 le64_to_cpu(src->ln_lost_dirent_repaired);
137         dst->ln_striped_dirs_scanned =
138                                 le64_to_cpu(src->ln_striped_dirs_scanned);
139         dst->ln_striped_dirs_repaired =
140                                 le64_to_cpu(src->ln_striped_dirs_repaired);
141         dst->ln_striped_dirs_failed =
142                                 le64_to_cpu(src->ln_striped_dirs_failed);
143         dst->ln_striped_dirs_disabled =
144                                 le64_to_cpu(src->ln_striped_dirs_disabled);
145         dst->ln_striped_dirs_skipped =
146                                 le64_to_cpu(src->ln_striped_dirs_skipped);
147         dst->ln_striped_shards_scanned =
148                                 le64_to_cpu(src->ln_striped_shards_scanned);
149         dst->ln_striped_shards_repaired =
150                                 le64_to_cpu(src->ln_striped_shards_repaired);
151         dst->ln_striped_shards_failed =
152                                 le64_to_cpu(src->ln_striped_shards_failed);
153         dst->ln_striped_shards_skipped =
154                                 le64_to_cpu(src->ln_striped_shards_skipped);
155         dst->ln_name_hash_repaired = le64_to_cpu(src->ln_name_hash_repaired);
156         dst->ln_local_lpf_scanned = le64_to_cpu(src->ln_local_lpf_scanned);
157         dst->ln_local_lpf_moved = le64_to_cpu(src->ln_local_lpf_moved);
158         dst->ln_local_lpf_skipped = le64_to_cpu(src->ln_local_lpf_skipped);
159         dst->ln_local_lpf_failed = le64_to_cpu(src->ln_local_lpf_failed);
160         dst->ln_bitmap_size = le32_to_cpu(src->ln_bitmap_size);
161 }
162
163 static void lfsck_namespace_cpu_to_le(struct lfsck_namespace *dst,
164                                       struct lfsck_namespace *src)
165 {
166         dst->ln_magic = cpu_to_le32(src->ln_magic);
167         dst->ln_status = cpu_to_le32(src->ln_status);
168         dst->ln_flags = cpu_to_le32(src->ln_flags);
169         dst->ln_success_count = cpu_to_le32(src->ln_success_count);
170         dst->ln_run_time_phase1 = cpu_to_le32(src->ln_run_time_phase1);
171         dst->ln_run_time_phase2 = cpu_to_le32(src->ln_run_time_phase2);
172         dst->ln_time_last_complete = cpu_to_le64(src->ln_time_last_complete);
173         dst->ln_time_latest_start = cpu_to_le64(src->ln_time_latest_start);
174         dst->ln_time_last_checkpoint =
175                                 cpu_to_le64(src->ln_time_last_checkpoint);
176         lfsck_position_cpu_to_le(&dst->ln_pos_latest_start,
177                                  &src->ln_pos_latest_start);
178         lfsck_position_cpu_to_le(&dst->ln_pos_last_checkpoint,
179                                  &src->ln_pos_last_checkpoint);
180         lfsck_position_cpu_to_le(&dst->ln_pos_first_inconsistent,
181                                  &src->ln_pos_first_inconsistent);
182         dst->ln_items_checked = cpu_to_le64(src->ln_items_checked);
183         dst->ln_items_repaired = cpu_to_le64(src->ln_items_repaired);
184         dst->ln_items_failed = cpu_to_le64(src->ln_items_failed);
185         dst->ln_dirs_checked = cpu_to_le64(src->ln_dirs_checked);
186         dst->ln_objs_checked_phase2 = cpu_to_le64(src->ln_objs_checked_phase2);
187         dst->ln_objs_repaired_phase2 =
188                                 cpu_to_le64(src->ln_objs_repaired_phase2);
189         dst->ln_objs_failed_phase2 = cpu_to_le64(src->ln_objs_failed_phase2);
190         dst->ln_objs_nlink_repaired = cpu_to_le64(src->ln_objs_nlink_repaired);
191         fid_cpu_to_le(&dst->ln_fid_latest_scanned_phase2,
192                       &src->ln_fid_latest_scanned_phase2);
193         dst->ln_dirent_repaired = cpu_to_le64(src->ln_dirent_repaired);
194         dst->ln_linkea_repaired = cpu_to_le64(src->ln_linkea_repaired);
195         dst->ln_mul_linked_checked = cpu_to_le64(src->ln_mul_linked_checked);
196         dst->ln_mul_linked_repaired = cpu_to_le64(src->ln_mul_linked_repaired);
197         dst->ln_unknown_inconsistency =
198                                 cpu_to_le64(src->ln_unknown_inconsistency);
199         dst->ln_unmatched_pairs_repaired =
200                                 cpu_to_le64(src->ln_unmatched_pairs_repaired);
201         dst->ln_dangling_repaired = cpu_to_le64(src->ln_dangling_repaired);
202         dst->ln_mul_ref_repaired = cpu_to_le64(src->ln_mul_ref_repaired);
203         dst->ln_bad_type_repaired = cpu_to_le64(src->ln_bad_type_repaired);
204         dst->ln_lost_dirent_repaired =
205                                 cpu_to_le64(src->ln_lost_dirent_repaired);
206         dst->ln_striped_dirs_scanned =
207                                 cpu_to_le64(src->ln_striped_dirs_scanned);
208         dst->ln_striped_dirs_repaired =
209                                 cpu_to_le64(src->ln_striped_dirs_repaired);
210         dst->ln_striped_dirs_failed =
211                                 cpu_to_le64(src->ln_striped_dirs_failed);
212         dst->ln_striped_dirs_disabled =
213                                 cpu_to_le64(src->ln_striped_dirs_disabled);
214         dst->ln_striped_dirs_skipped =
215                                 cpu_to_le64(src->ln_striped_dirs_skipped);
216         dst->ln_striped_shards_scanned =
217                                 cpu_to_le64(src->ln_striped_shards_scanned);
218         dst->ln_striped_shards_repaired =
219                                 cpu_to_le64(src->ln_striped_shards_repaired);
220         dst->ln_striped_shards_failed =
221                                 cpu_to_le64(src->ln_striped_shards_failed);
222         dst->ln_striped_shards_skipped =
223                                 cpu_to_le64(src->ln_striped_shards_skipped);
224         dst->ln_name_hash_repaired = cpu_to_le64(src->ln_name_hash_repaired);
225         dst->ln_local_lpf_scanned = cpu_to_le64(src->ln_local_lpf_scanned);
226         dst->ln_local_lpf_moved = cpu_to_le64(src->ln_local_lpf_moved);
227         dst->ln_local_lpf_skipped = cpu_to_le64(src->ln_local_lpf_skipped);
228         dst->ln_local_lpf_failed = cpu_to_le64(src->ln_local_lpf_failed);
229         dst->ln_bitmap_size = cpu_to_le32(src->ln_bitmap_size);
230 }
231
232 static void lfsck_namespace_record_failure(const struct lu_env *env,
233                                            struct lfsck_instance *lfsck,
234                                            struct lfsck_namespace *ns)
235 {
236         struct lfsck_position pos;
237
238         ns->ln_items_failed++;
239         lfsck_pos_fill(env, lfsck, &pos, false);
240         if (lfsck_pos_is_zero(&ns->ln_pos_first_inconsistent) ||
241             lfsck_pos_is_eq(&pos, &ns->ln_pos_first_inconsistent) < 0) {
242                 ns->ln_pos_first_inconsistent = pos;
243
244                 CDEBUG(D_LFSCK, "%s: namespace LFSCK hit first non-repaired "
245                        "inconsistency at the pos ["LPU64", "DFID", "LPX64"]\n",
246                        lfsck_lfsck2name(lfsck),
247                        ns->ln_pos_first_inconsistent.lp_oit_cookie,
248                        PFID(&ns->ln_pos_first_inconsistent.lp_dir_parent),
249                        ns->ln_pos_first_inconsistent.lp_dir_cookie);
250         }
251 }
252
253 /**
254  * Load the MDT bitmap from the lfsck_namespace trace file.
255  *
256  * \param[in] env       pointer to the thread context
257  * \param[in] com       pointer to the lfsck component
258  *
259  * \retval              0 for success
260  * \retval              negative error number on failure or data corruption
261  */
262 static int lfsck_namespace_load_bitmap(const struct lu_env *env,
263                                        struct lfsck_component *com)
264 {
265         struct dt_object                *obj    = com->lc_obj;
266         struct lfsck_assistant_data     *lad    = com->lc_data;
267         struct lfsck_namespace          *ns     = com->lc_file_ram;
268         cfs_bitmap_t                    *bitmap = lad->lad_bitmap;
269         ssize_t                          size;
270         __u32                            nbits;
271         int                              rc;
272         ENTRY;
273
274         if (com->lc_lfsck->li_mdt_descs.ltd_tgts_bitmap->size >
275             ns->ln_bitmap_size)
276                 nbits = com->lc_lfsck->li_mdt_descs.ltd_tgts_bitmap->size;
277         else
278                 nbits = ns->ln_bitmap_size;
279
280         if (unlikely(nbits < BITS_PER_LONG))
281                 nbits = BITS_PER_LONG;
282
283         if (nbits > bitmap->size) {
284                 __u32 new_bits = bitmap->size;
285                 cfs_bitmap_t *new_bitmap;
286
287                 while (new_bits < nbits)
288                         new_bits <<= 1;
289
290                 new_bitmap = CFS_ALLOCATE_BITMAP(new_bits);
291                 if (new_bitmap == NULL)
292                         RETURN(-ENOMEM);
293
294                 lad->lad_bitmap = new_bitmap;
295                 CFS_FREE_BITMAP(bitmap);
296                 bitmap = new_bitmap;
297         }
298
299         if (ns->ln_bitmap_size == 0) {
300                 lad->lad_incomplete = 0;
301                 CFS_RESET_BITMAP(bitmap);
302
303                 RETURN(0);
304         }
305
306         size = (ns->ln_bitmap_size + 7) >> 3;
307         rc = dt_xattr_get(env, obj,
308                           lfsck_buf_get(env, bitmap->data, size),
309                           XATTR_NAME_LFSCK_BITMAP, BYPASS_CAPA);
310         if (rc != size)
311                 RETURN(rc >= 0 ? -EINVAL : rc);
312
313         if (cfs_bitmap_check_empty(bitmap))
314                 lad->lad_incomplete = 0;
315         else
316                 lad->lad_incomplete = 1;
317
318         RETURN(0);
319 }
320
321 /**
322  * Load namespace LFSCK statistics information from the trace file.
323  *
324  * For old release (Lustre-2.6 or older), the statistics information was
325  * stored as XATTR_NAME_LFSCK_NAMESPACE_OLD EA. But in Lustre-2.7, we need
326  * more statistics information. To avoid confusing old MDT when downgrade,
327  * Lustre-2.7 stores the namespace LFSCK statistics information as new
328  * XATTR_NAME_LFSCK_NAMESPACE EA.
329  *
330  * \param[in] env       pointer to the thread context
331  * \param[in] com       pointer to the lfsck component
332  *
333  * \retval              0 for success
334  * \retval              negative error number on failure
335  */
336 static int lfsck_namespace_load(const struct lu_env *env,
337                                 struct lfsck_component *com)
338 {
339         int len = com->lc_file_size;
340         int rc;
341
342         rc = dt_xattr_get(env, com->lc_obj,
343                           lfsck_buf_get(env, com->lc_file_disk, len),
344                           XATTR_NAME_LFSCK_NAMESPACE, BYPASS_CAPA);
345         if (rc == len) {
346                 struct lfsck_namespace *ns = com->lc_file_ram;
347
348                 lfsck_namespace_le_to_cpu(ns,
349                                 (struct lfsck_namespace *)com->lc_file_disk);
350                 if (ns->ln_magic != LFSCK_NAMESPACE_MAGIC) {
351                         CDEBUG(D_LFSCK, "%s: invalid lfsck_namespace magic "
352                                "%#x != %#x\n", lfsck_lfsck2name(com->lc_lfsck),
353                                ns->ln_magic, LFSCK_NAMESPACE_MAGIC);
354                         rc = -ESTALE;
355                 } else {
356                         rc = 0;
357                 }
358         } else if (rc != -ENODATA) {
359                 CDEBUG(D_LFSCK, "%s: fail to load lfsck_namespace, "
360                        "expected = %d: rc = %d\n",
361                        lfsck_lfsck2name(com->lc_lfsck), len, rc);
362                 if (rc >= 0)
363                         rc = -ESTALE;
364         } else {
365                 /* Check whether it is old trace file or not.
366                  * If yes, it should be reset via returning -ESTALE. */
367                 rc = dt_xattr_get(env, com->lc_obj,
368                                   lfsck_buf_get(env, com->lc_file_disk, len),
369                                   XATTR_NAME_LFSCK_NAMESPACE_OLD, BYPASS_CAPA);
370                 if (rc >= 0)
371                         rc = -ESTALE;
372         }
373
374         return rc;
375 }
376
377 static int lfsck_namespace_store(const struct lu_env *env,
378                                  struct lfsck_component *com, bool init)
379 {
380         struct dt_object                *obj    = com->lc_obj;
381         struct lfsck_instance           *lfsck  = com->lc_lfsck;
382         struct lfsck_namespace          *ns     = com->lc_file_ram;
383         struct lfsck_assistant_data     *lad    = com->lc_data;
384         cfs_bitmap_t                    *bitmap = NULL;
385         struct thandle                  *handle;
386         __u32                            nbits  = 0;
387         int                              len    = com->lc_file_size;
388         int                              rc;
389 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 8, 53, 0)
390         struct lu_buf            tbuf   = { &len, sizeof(len) };
391 #endif
392         ENTRY;
393
394         if (lad != NULL) {
395                 bitmap = lad->lad_bitmap;
396                 nbits = bitmap->size;
397
398                 LASSERT(nbits > 0);
399                 LASSERTF((nbits & 7) == 0, "Invalid nbits %u\n", nbits);
400         }
401
402         ns->ln_bitmap_size = nbits;
403         lfsck_namespace_cpu_to_le((struct lfsck_namespace *)com->lc_file_disk,
404                                   ns);
405         handle = dt_trans_create(env, lfsck->li_bottom);
406         if (IS_ERR(handle))
407                 GOTO(log, rc = PTR_ERR(handle));
408
409         rc = dt_declare_xattr_set(env, obj,
410                                   lfsck_buf_get(env, com->lc_file_disk, len),
411                                   XATTR_NAME_LFSCK_NAMESPACE, 0, handle);
412         if (rc != 0)
413                 GOTO(out, rc);
414
415         if (bitmap != NULL) {
416                 rc = dt_declare_xattr_set(env, obj,
417                                 lfsck_buf_get(env, bitmap->data, nbits >> 3),
418                                 XATTR_NAME_LFSCK_BITMAP, 0, handle);
419                 if (rc != 0)
420                         GOTO(out, rc);
421         }
422
423 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 8, 53, 0)
424         /* To be compatible with old Lustre-2.x MDT (x <= 6), generate dummy
425          * XATTR_NAME_LFSCK_NAMESPACE_OLD EA, then when downgrade to Lustre-2.x,
426          * the old LFSCK will find "invalid" XATTR_NAME_LFSCK_NAMESPACE_OLD EA,
427          * then reset the namespace LFSCK trace file. */
428         if (init) {
429                 rc = dt_declare_xattr_set(env, obj, &tbuf,
430                                           XATTR_NAME_LFSCK_NAMESPACE_OLD,
431                                           LU_XATTR_CREATE, handle);
432                 if (rc != 0)
433                         GOTO(out, rc);
434         }
435 #endif
436
437         rc = dt_trans_start_local(env, lfsck->li_bottom, handle);
438         if (rc != 0)
439                 GOTO(out, rc);
440
441         rc = dt_xattr_set(env, obj,
442                           lfsck_buf_get(env, com->lc_file_disk, len),
443                           XATTR_NAME_LFSCK_NAMESPACE, 0, handle, BYPASS_CAPA);
444         if (rc == 0 && bitmap != NULL)
445                 rc = dt_xattr_set(env, obj,
446                                   lfsck_buf_get(env, bitmap->data, nbits >> 3),
447                                   XATTR_NAME_LFSCK_BITMAP, 0, handle,
448                                   BYPASS_CAPA);
449
450 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(2, 8, 53, 0)
451         if (rc == 0 && init)
452                 rc = dt_xattr_set(env, obj, &tbuf,
453                                   XATTR_NAME_LFSCK_NAMESPACE_OLD,
454                                   LU_XATTR_CREATE, handle, BYPASS_CAPA);
455 #endif
456
457         GOTO(out, rc);
458
459 out:
460         dt_trans_stop(env, lfsck->li_bottom, handle);
461
462 log:
463         if (rc != 0)
464                 CDEBUG(D_LFSCK, "%s: fail to store lfsck_namespace: rc = %d\n",
465                        lfsck_lfsck2name(lfsck), rc);
466         return rc;
467 }
468
469 static int lfsck_namespace_init(const struct lu_env *env,
470                                 struct lfsck_component *com)
471 {
472         struct lfsck_namespace *ns = com->lc_file_ram;
473         int rc;
474
475         memset(ns, 0, sizeof(*ns));
476         ns->ln_magic = LFSCK_NAMESPACE_MAGIC;
477         ns->ln_status = LS_INIT;
478         down_write(&com->lc_sem);
479         rc = lfsck_namespace_store(env, com, true);
480         up_write(&com->lc_sem);
481         return rc;
482 }
483
484 /**
485  * Update the namespace LFSCK trace file for the given @fid
486  *
487  * \param[in] env       pointer to the thread context
488  * \param[in] com       pointer to the lfsck component
489  * \param[in] fid       the fid which flags to be updated in the lfsck
490  *                      trace file
491  * \param[in] add       true if add new flags, otherwise remove flags
492  *
493  * \retval              0 for succeed or nothing to be done
494  * \retval              negative error number on failure
495  */
496 int lfsck_namespace_trace_update(const struct lu_env *env,
497                                  struct lfsck_component *com,
498                                  const struct lu_fid *fid,
499                                  const __u8 flags, bool add)
500 {
501         struct lfsck_instance   *lfsck  = com->lc_lfsck;
502         struct dt_object        *obj    = com->lc_obj;
503         struct lu_fid           *key    = &lfsck_env_info(env)->lti_fid3;
504         struct dt_device        *dev    = lfsck->li_bottom;
505         struct thandle          *th     = NULL;
506         int                      rc     = 0;
507         __u8                     old    = 0;
508         __u8                     new    = 0;
509         ENTRY;
510
511         LASSERT(flags != 0);
512
513         down_write(&com->lc_sem);
514         fid_cpu_to_be(key, fid);
515         rc = dt_lookup(env, obj, (struct dt_rec *)&old,
516                        (const struct dt_key *)key, BYPASS_CAPA);
517         if (rc == -ENOENT) {
518                 if (!add)
519                         GOTO(unlock, rc = 0);
520
521                 old = 0;
522                 new = flags;
523         } else if (rc == 0) {
524                 if (add) {
525                         if ((old & flags) == flags)
526                                 GOTO(unlock, rc = 0);
527
528                         new = old | flags;
529                 } else {
530                         if ((old & flags) == 0)
531                                 GOTO(unlock, rc = 0);
532
533                         new = old & ~flags;
534                 }
535         } else {
536                 GOTO(log, rc);
537         }
538
539         th = dt_trans_create(env, dev);
540         if (IS_ERR(th))
541                 GOTO(log, rc = PTR_ERR(th));
542
543         if (old != 0) {
544                 rc = dt_declare_delete(env, obj,
545                                        (const struct dt_key *)key, th);
546                 if (rc != 0)
547                         GOTO(log, rc);
548         }
549
550         if (new != 0) {
551                 rc = dt_declare_insert(env, obj,
552                                        (const struct dt_rec *)&new,
553                                        (const struct dt_key *)key, th);
554                 if (rc != 0)
555                         GOTO(log, rc);
556         }
557
558         rc = dt_trans_start_local(env, dev, th);
559         if (rc != 0)
560                 GOTO(log, rc);
561
562         if (old != 0) {
563                 rc = dt_delete(env, obj, (const struct dt_key *)key,
564                                th, BYPASS_CAPA);
565                 if (rc != 0)
566                         GOTO(log, rc);
567         }
568
569         if (new != 0) {
570                 rc = dt_insert(env, obj, (const struct dt_rec *)&new,
571                                (const struct dt_key *)key, th, BYPASS_CAPA, 1);
572                 if (rc != 0)
573                         GOTO(log, rc);
574         }
575
576         GOTO(log, rc);
577
578 log:
579         if (th != NULL && !IS_ERR(th))
580                 dt_trans_stop(env, dev, th);
581
582         CDEBUG(D_LFSCK, "%s: namespace LFSCK %s flags for "DFID" in the "
583                "trace file, flags %x, old %x, new %x: rc = %d\n",
584                lfsck_lfsck2name(lfsck), add ? "add" : "del", PFID(fid),
585                (__u32)flags, (__u32)old, (__u32)new, rc);
586
587 unlock:
588         up_write(&com->lc_sem);
589
590         return rc;
591 }
592
593 int lfsck_namespace_check_exist(const struct lu_env *env,
594                                 struct dt_object *dir,
595                                 struct dt_object *obj, const char *name)
596 {
597         struct lu_fid    *fid = &lfsck_env_info(env)->lti_fid;
598         int               rc;
599         ENTRY;
600
601         if (unlikely(lfsck_is_dead_obj(obj)))
602                 RETURN(LFSCK_NAMEENTRY_DEAD);
603
604         rc = dt_lookup(env, dir, (struct dt_rec *)fid,
605                        (const struct dt_key *)name, BYPASS_CAPA);
606         if (rc == -ENOENT)
607                 RETURN(LFSCK_NAMEENTRY_REMOVED);
608
609         if (rc < 0)
610                 RETURN(rc);
611
612         if (!lu_fid_eq(fid, lfsck_dto2fid(obj)))
613                 RETURN(LFSCK_NAMEENTRY_RECREATED);
614
615         RETURN(0);
616 }
617
618 static int lfsck_declare_namespace_exec_dir(const struct lu_env *env,
619                                             struct dt_object *obj,
620                                             struct thandle *handle)
621 {
622         int rc;
623
624         /* For destroying all invalid linkEA entries. */
625         rc = dt_declare_xattr_del(env, obj, XATTR_NAME_LINK, handle);
626         if (rc != 0)
627                 return rc;
628
629         /* For insert new linkEA entry. */
630         rc = dt_declare_xattr_set(env, obj,
631                         lfsck_buf_get_const(env, NULL, DEFAULT_LINKEA_SIZE),
632                         XATTR_NAME_LINK, 0, handle);
633         return rc;
634 }
635
636 int __lfsck_links_read(const struct lu_env *env, struct dt_object *obj,
637                        struct linkea_data *ldata)
638 {
639         int rc;
640
641         if (ldata->ld_buf->lb_buf == NULL)
642                 return -ENOMEM;
643
644         if (!dt_object_exists(obj))
645                 return -ENOENT;
646
647         rc = dt_xattr_get(env, obj, ldata->ld_buf, XATTR_NAME_LINK, BYPASS_CAPA);
648         if (rc == -ERANGE) {
649                 /* Buf was too small, figure out what we need. */
650                 rc = dt_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_LINK,
651                                   BYPASS_CAPA);
652                 if (rc <= 0)
653                         return rc;
654
655                 lu_buf_realloc(ldata->ld_buf, rc);
656                 if (ldata->ld_buf->lb_buf == NULL)
657                         return -ENOMEM;
658
659                 rc = dt_xattr_get(env, obj, ldata->ld_buf, XATTR_NAME_LINK,
660                                   BYPASS_CAPA);
661         }
662
663         if (rc > 0)
664                 rc = linkea_init(ldata);
665
666         return rc;
667 }
668
669 /**
670  * Remove linkEA for the given object.
671  *
672  * The caller should take the ldlm lock before the calling.
673  *
674  * \param[in] env       pointer to the thread context
675  * \param[in] com       pointer to the lfsck component
676  * \param[in] obj       pointer to the dt_object to be handled
677  *
678  * \retval              0 for repaired cases
679  * \retval              negative error number on failure
680  */
681 static int lfsck_namespace_links_remove(const struct lu_env *env,
682                                         struct lfsck_component *com,
683                                         struct dt_object *obj)
684 {
685         struct lfsck_instance           *lfsck  = com->lc_lfsck;
686         struct dt_device                *dev    = lfsck->li_bottom;
687         struct thandle                  *th     = NULL;
688         int                              rc     = 0;
689         ENTRY;
690
691         LASSERT(dt_object_remote(obj) == 0);
692
693         th = dt_trans_create(env, dev);
694         if (IS_ERR(th))
695                 GOTO(log, rc = PTR_ERR(th));
696
697         rc = dt_declare_xattr_del(env, obj, XATTR_NAME_LINK, th);
698         if (rc != 0)
699                 GOTO(stop, rc);
700
701         rc = dt_trans_start_local(env, dev, th);
702         if (rc != 0)
703                 GOTO(stop, rc);
704
705         dt_write_lock(env, obj, 0);
706         if (unlikely(lfsck_is_dead_obj(obj)))
707                 GOTO(unlock, rc = -ENOENT);
708
709         if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
710                 GOTO(unlock, rc = 0);
711
712         rc = dt_xattr_del(env, obj, XATTR_NAME_LINK, th, BYPASS_CAPA);
713
714         GOTO(unlock, rc);
715
716 unlock:
717         dt_write_unlock(env, obj);
718
719 stop:
720         dt_trans_stop(env, dev, th);
721
722 log:
723         CDEBUG(D_LFSCK, "%s: namespace LFSCK remove invalid linkEA "
724                "for the object "DFID": rc = %d\n",
725                lfsck_lfsck2name(lfsck), PFID(lfsck_dto2fid(obj)), rc);
726
727         if (rc == 0) {
728                 struct lfsck_namespace *ns = com->lc_file_ram;
729
730                 ns->ln_flags |= LF_INCONSISTENT;
731         }
732
733         return rc;
734 }
735
736 static int lfsck_links_write(const struct lu_env *env, struct dt_object *obj,
737                              struct linkea_data *ldata, struct thandle *handle)
738 {
739         const struct lu_buf *buf = lfsck_buf_get_const(env,
740                                                        ldata->ld_buf->lb_buf,
741                                                        ldata->ld_leh->leh_len);
742
743         return dt_xattr_set(env, obj, buf, XATTR_NAME_LINK, 0, handle,
744                             BYPASS_CAPA);
745 }
746
747 static void lfsck_namespace_unpack_linkea_entry(struct linkea_data *ldata,
748                                                 struct lu_name *cname,
749                                                 struct lu_fid *pfid,
750                                                 char *buf)
751 {
752         linkea_entry_unpack(ldata->ld_lee, &ldata->ld_reclen, cname, pfid);
753         /* To guarantee the 'name' is terminated with '0'. */
754         memcpy(buf, cname->ln_name, cname->ln_namelen);
755         buf[cname->ln_namelen] = 0;
756         cname->ln_name = buf;
757 }
758
759 static int lfsck_namespace_filter_linkea_entry(struct linkea_data *ldata,
760                                                struct lu_name *cname,
761                                                struct lu_fid *pfid,
762                                                bool remove)
763 {
764         struct link_ea_entry    *oldlee;
765         int                      oldlen;
766         int                      repeated = 0;
767
768         oldlee = ldata->ld_lee;
769         oldlen = ldata->ld_reclen;
770         linkea_next_entry(ldata);
771         while (ldata->ld_lee != NULL) {
772                 ldata->ld_reclen = (ldata->ld_lee->lee_reclen[0] << 8) |
773                                    ldata->ld_lee->lee_reclen[1];
774                 if (unlikely(ldata->ld_reclen == oldlen &&
775                              memcmp(ldata->ld_lee, oldlee, oldlen) == 0)) {
776                         repeated++;
777                         if (!remove)
778                                 break;
779
780                         linkea_del_buf(ldata, cname);
781                 } else {
782                         linkea_next_entry(ldata);
783                 }
784         }
785         ldata->ld_lee = oldlee;
786         ldata->ld_reclen = oldlen;
787
788         return repeated;
789 }
790
791 /**
792  * Insert orphan into .lustre/lost+found/MDTxxxx/ locally.
793  *
794  * Add the specified orphan MDT-object to the .lustre/lost+found/MDTxxxx/
795  * with the given type to generate the name, the detailed rules for name
796  * have been described as following.
797  *
798  * The function also generates the linkEA corresponding to the name entry
799  * under the .lustre/lost+found/MDTxxxx/ for the orphan MDT-object.
800  *
801  * \param[in] env       pointer to the thread context
802  * \param[in] com       pointer to the lfsck component
803  * \param[in] orphan    pointer to the orphan MDT-object
804  * \param[in] infix     additional information for the orphan name, such as
805  *                      the FID for original
806  * \param[in] type      the type for describing why the orphan MDT-object is
807  *                      created. The rules are as following:
808  *
809  *  type "D":           The MDT-object is a directory, it may knows its parent
810  *                      but because there is no valid linkEA, the LFSCK cannot
811  *                      know where to put it back to the namespace.
812  *  type "O":           The MDT-object has no linkEA, and there is no name
813  *                      entry that references the MDT-object.
814  *
815  *  type "S":           The orphan MDT-object is a shard of a striped directory
816  *
817  * \see lfsck_layout_recreate_parent() for more types.
818  *
819  * The orphan name will be like:
820  * ${FID}-${infix}-${type}-${conflict_version}
821  *
822  * \param[out] count    if some others inserted some linkEA entries by race,
823  *                      then return the linkEA entries count.
824  *
825  * \retval              positive number for repaired cases
826  * \retval              0 if needs to repair nothing
827  * \retval              negative error number on failure
828  */
829 static int lfsck_namespace_insert_orphan(const struct lu_env *env,
830                                          struct lfsck_component *com,
831                                          struct dt_object *orphan,
832                                          const char *infix, const char *type,
833                                          int *count)
834 {
835         struct lfsck_thread_info        *info   = lfsck_env_info(env);
836         struct lu_name                  *cname  = &info->lti_name;
837         struct dt_insert_rec            *rec    = &info->lti_dt_rec;
838         struct lu_fid                   *tfid   = &info->lti_fid5;
839         struct lu_attr                  *la     = &info->lti_la3;
840         const struct lu_fid             *cfid   = lfsck_dto2fid(orphan);
841         const struct lu_fid             *pfid;
842         struct lfsck_instance           *lfsck  = com->lc_lfsck;
843         struct dt_device                *dev    = lfsck->li_bottom;
844         struct dt_object                *parent;
845         struct thandle                  *th     = NULL;
846         struct lustre_handle             plh    = { 0 };
847         struct lustre_handle             clh    = { 0 };
848         struct linkea_data               ldata  = { 0 };
849         struct lu_buf                    linkea_buf;
850         int                              namelen;
851         int                              idx    = 0;
852         int                              rc     = 0;
853         bool                             exist  = false;
854         ENTRY;
855
856         cname->ln_name = NULL;
857         /* Create .lustre/lost+found/MDTxxxx when needed. */
858         if (unlikely(lfsck->li_lpf_obj == NULL)) {
859                 rc = lfsck_create_lpf(env, lfsck);
860                 if (rc != 0)
861                         GOTO(log, rc);
862         }
863
864         parent = lfsck->li_lpf_obj;
865         pfid = lfsck_dto2fid(parent);
866
867         /* Hold update lock on the parent to prevent others to access. */
868         rc = lfsck_ibits_lock(env, lfsck, parent, &plh,
869                               MDS_INODELOCK_UPDATE, LCK_EX);
870         if (rc != 0)
871                 GOTO(log, rc);
872
873         do {
874                 namelen = snprintf(info->lti_key, NAME_MAX, DFID"%s-%s-%d",
875                                    PFID(cfid), infix, type, idx++);
876                 rc = dt_lookup(env, parent, (struct dt_rec *)tfid,
877                                (const struct dt_key *)info->lti_key,
878                                BYPASS_CAPA);
879                 if (rc != 0 && rc != -ENOENT)
880                         GOTO(log, rc);
881
882                 if (unlikely(rc == 0 && lu_fid_eq(cfid, tfid)))
883                         exist = true;
884         } while (rc == 0 && !exist);
885
886         cname->ln_name = info->lti_key;
887         cname->ln_namelen = namelen;
888         rc = linkea_data_new(&ldata, &info->lti_linkea_buf2);
889         if (rc != 0)
890                 GOTO(log, rc);
891
892         rc = linkea_add_buf(&ldata, cname, pfid);
893         if (rc != 0)
894                 GOTO(log, rc);
895
896         rc = lfsck_ibits_lock(env, lfsck, orphan, &clh,
897                               MDS_INODELOCK_UPDATE | MDS_INODELOCK_LOOKUP,
898                               LCK_EX);
899         if (rc != 0)
900                 GOTO(log, rc);
901
902         lfsck_buf_init(&linkea_buf, ldata.ld_buf->lb_buf,
903                        ldata.ld_leh->leh_len);
904         th = dt_trans_create(env, dev);
905         if (IS_ERR(th))
906                 GOTO(log, rc = PTR_ERR(th));
907
908         if (S_ISDIR(lfsck_object_type(orphan))) {
909                 rc = dt_declare_delete(env, orphan,
910                                        (const struct dt_key *)dotdot, th);
911                 if (rc != 0)
912                         GOTO(stop, rc);
913
914                 rec->rec_type = S_IFDIR;
915                 rec->rec_fid = pfid;
916                 rc = dt_declare_insert(env, orphan, (const struct dt_rec *)rec,
917                                        (const struct dt_key *)dotdot, th);
918                 if (rc != 0)
919                         GOTO(stop, rc);
920         }
921
922         rc = dt_declare_xattr_set(env, orphan, &linkea_buf,
923                                   XATTR_NAME_LINK, 0, th);
924         if (rc != 0)
925                 GOTO(stop, rc);
926
927         if (!exist) {
928                 rec->rec_type = lfsck_object_type(orphan) & S_IFMT;
929                 rec->rec_fid = cfid;
930                 rc = dt_declare_insert(env, parent, (const struct dt_rec *)rec,
931                                        (const struct dt_key *)cname->ln_name,
932                                        th);
933                 if (rc != 0)
934                         GOTO(stop, rc);
935
936                 if (S_ISDIR(rec->rec_type)) {
937                         rc = dt_declare_ref_add(env, parent, th);
938                         if (rc != 0)
939                                 GOTO(stop, rc);
940                 }
941         }
942
943         memset(la, 0, sizeof(*la));
944         la->la_ctime = cfs_time_current_sec();
945         la->la_valid = LA_CTIME;
946         rc = dt_declare_attr_set(env, orphan, la, th);
947         if (rc != 0)
948                 GOTO(stop, rc);
949
950         rc = dt_trans_start_local(env, dev, th);
951         if (rc != 0)
952                 GOTO(stop, rc);
953
954         dt_write_lock(env, orphan, 0);
955         rc = lfsck_links_read(env, orphan, &ldata);
956         if (likely((rc == -ENODATA) || (rc == -EINVAL) ||
957                    (rc == 0 && ldata.ld_leh->leh_reccount == 0))) {
958                 if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
959                         GOTO(unlock, rc = 1);
960
961                 if (S_ISDIR(lfsck_object_type(orphan))) {
962                         rc = dt_delete(env, orphan,
963                                        (const struct dt_key *)dotdot, th,
964                                        BYPASS_CAPA);
965                         if (rc != 0)
966                                 GOTO(unlock, rc);
967
968                         rec->rec_type = S_IFDIR;
969                         rec->rec_fid = pfid;
970                         rc = dt_insert(env, orphan, (const struct dt_rec *)rec,
971                                        (const struct dt_key *)dotdot, th,
972                                        BYPASS_CAPA, 1);
973                         if (rc != 0)
974                                 GOTO(unlock, rc);
975                 }
976
977                 rc = dt_xattr_set(env, orphan, &linkea_buf, XATTR_NAME_LINK, 0,
978                                   th, BYPASS_CAPA);
979         } else {
980                 if (rc == 0 && count != NULL)
981                         *count = ldata.ld_leh->leh_reccount;
982
983                 GOTO(unlock, rc);
984         }
985         dt_write_unlock(env, orphan);
986
987         if (rc == 0 && !exist) {
988                 rec->rec_type = lfsck_object_type(orphan) & S_IFMT;
989                 rec->rec_fid = cfid;
990                 rc = dt_insert(env, parent, (const struct dt_rec *)rec,
991                                (const struct dt_key *)cname->ln_name,
992                                th, BYPASS_CAPA, 1);
993                 if (rc == 0 && S_ISDIR(rec->rec_type)) {
994                         dt_write_lock(env, parent, 0);
995                         rc = dt_ref_add(env, parent, th);
996                         dt_write_unlock(env, parent);
997                 }
998         }
999
1000         if (rc == 0)
1001                 rc = dt_attr_set(env, orphan, la, th, BYPASS_CAPA);
1002
1003         GOTO(stop, rc = (rc == 0 ? 1 : rc));
1004
1005 unlock:
1006         dt_write_unlock(env, orphan);
1007
1008 stop:
1009         dt_trans_stop(env, dev, th);
1010
1011 log:
1012         lfsck_ibits_unlock(&clh, LCK_EX);
1013         lfsck_ibits_unlock(&plh, LCK_EX);
1014         CDEBUG(D_LFSCK, "%s: namespace LFSCK insert orphan for the "
1015                "object "DFID", name = %s: rc = %d\n",
1016                lfsck_lfsck2name(lfsck), PFID(cfid),
1017                cname->ln_name != NULL ? cname->ln_name : "<NULL>", rc);
1018
1019         if (rc != 0) {
1020                 struct lfsck_namespace *ns = com->lc_file_ram;
1021
1022                 ns->ln_flags |= LF_INCONSISTENT;
1023         }
1024
1025         return rc;
1026 }
1027
1028 /**
1029  * Add the specified name entry back to namespace.
1030  *
1031  * If there is a linkEA entry that back references a name entry under
1032  * some parent directory, but such parent directory does not have the
1033  * claimed name entry. On the other hand, the linkEA entries count is
1034  * not larger than the MDT-object's hard link count. Under such case,
1035  * it is quite possible that the name entry is lost. Then the LFSCK
1036  * should add the name entry back to the namespace.
1037  *
1038  * \param[in] env       pointer to the thread context
1039  * \param[in] com       pointer to the lfsck component
1040  * \param[in] parent    pointer to the directory under which the name entry
1041  *                      will be inserted into
1042  * \param[in] child     pointer to the object referenced by the name entry
1043  *                      that to be inserted into the parent
1044  * \param[in] name      the name for the child in the parent directory
1045  *
1046  * \retval              positive number for repaired cases
1047  * \retval              0 if nothing to be repaired
1048  * \retval              negative error number on failure
1049  */
1050 static int lfsck_namespace_insert_normal(const struct lu_env *env,
1051                                          struct lfsck_component *com,
1052                                          struct dt_object *parent,
1053                                          struct dt_object *child,
1054                                          const char *name)
1055 {
1056         struct lfsck_thread_info        *info   = lfsck_env_info(env);
1057         struct lu_attr                  *la     = &info->lti_la;
1058         struct dt_insert_rec            *rec    = &info->lti_dt_rec;
1059         struct lfsck_instance           *lfsck  = com->lc_lfsck;
1060         struct dt_device                *dev    = lfsck->li_next;
1061         struct thandle                  *th     = NULL;
1062         struct lustre_handle             lh     = { 0 };
1063         int                              rc     = 0;
1064         ENTRY;
1065
1066         if (unlikely(!dt_try_as_dir(env, parent)))
1067                 GOTO(log, rc = -ENOTDIR);
1068
1069         if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
1070                 GOTO(log, rc = 1);
1071
1072         /* Hold update lock on the parent to prevent others to access. */
1073         rc = lfsck_ibits_lock(env, lfsck, parent, &lh,
1074                               MDS_INODELOCK_UPDATE, LCK_EX);
1075         if (rc != 0)
1076                 GOTO(log, rc);
1077
1078         th = dt_trans_create(env, dev);
1079         if (IS_ERR(th))
1080                 GOTO(unlock, rc = PTR_ERR(th));
1081
1082         rec->rec_type = lfsck_object_type(child) & S_IFMT;
1083         rec->rec_fid = lfsck_dto2fid(child);
1084         rc = dt_declare_insert(env, parent, (const struct dt_rec *)rec,
1085                                (const struct dt_key *)name, th);
1086         if (rc != 0)
1087                 GOTO(stop, rc);
1088
1089         if (S_ISDIR(rec->rec_type)) {
1090                 rc = dt_declare_ref_add(env, parent, th);
1091                 if (rc != 0)
1092                         GOTO(stop, rc);
1093         }
1094
1095         memset(la, 0, sizeof(*la));
1096         la->la_ctime = cfs_time_current_sec();
1097         la->la_valid = LA_CTIME;
1098         rc = dt_declare_attr_set(env, parent, la, th);
1099         if (rc != 0)
1100                 GOTO(stop, rc);
1101
1102         rc = dt_declare_attr_set(env, child, la, th);
1103         if (rc != 0)
1104                 GOTO(stop, rc);
1105
1106         rc = dt_trans_start_local(env, dev, th);
1107         if (rc != 0)
1108                 GOTO(stop, rc);
1109
1110         rc = dt_insert(env, parent, (const struct dt_rec *)rec,
1111                        (const struct dt_key *)name, th, BYPASS_CAPA, 1);
1112         if (rc != 0)
1113                 GOTO(stop, rc);
1114
1115         if (S_ISDIR(rec->rec_type)) {
1116                 dt_write_lock(env, parent, 0);
1117                 rc = dt_ref_add(env, parent, th);
1118                 dt_write_unlock(env, parent);
1119                 if (rc != 0)
1120                         GOTO(stop, rc);
1121         }
1122
1123         la->la_ctime = cfs_time_current_sec();
1124         rc = dt_attr_set(env, parent, la, th, BYPASS_CAPA);
1125         if (rc != 0)
1126                 GOTO(stop, rc);
1127
1128         rc = dt_attr_set(env, child, la, th, BYPASS_CAPA);
1129
1130         GOTO(stop, rc = (rc == 0 ? 1 : rc));
1131
1132 stop:
1133         dt_trans_stop(env, dev, th);
1134
1135 unlock:
1136         lfsck_ibits_unlock(&lh, LCK_EX);
1137
1138 log:
1139         CDEBUG(D_LFSCK, "%s: namespace LFSCK insert object "DFID" with "
1140                "the name %s and type %o to the parent "DFID": rc = %d\n",
1141                lfsck_lfsck2name(lfsck), PFID(lfsck_dto2fid(child)), name,
1142                lfsck_object_type(child) & S_IFMT,
1143                PFID(lfsck_dto2fid(parent)), rc);
1144
1145         if (rc != 0) {
1146                 struct lfsck_namespace *ns = com->lc_file_ram;
1147
1148                 ns->ln_flags |= LF_INCONSISTENT;
1149                 if (rc > 0)
1150                         ns->ln_lost_dirent_repaired++;
1151         }
1152
1153         return rc;
1154 }
1155
1156 /**
1157  * Create the specified orphan MDT-object on remote MDT.
1158  *
1159  * The LFSCK instance on this MDT will send LFSCK RPC to remote MDT to
1160  * ask the remote LFSCK instance to create the specified orphan object
1161  * under .lustre/lost+found/MDTxxxx/ directory with the name:
1162  * ${FID}-P-${conflict_version}.
1163  *
1164  * \param[in] env       pointer to the thread context
1165  * \param[in] com       pointer to the lfsck component
1166  * \param[in] orphan    pointer to the orphan MDT-object
1167  * \param[in] type      the orphan's type to be created
1168  *
1169  *  type "P":           The orphan object to be created was a parent directory
1170  *                      of some MDT-object which linkEA shows that the @orphan
1171  *                      object is missing.
1172  *
1173  * \see lfsck_layout_recreate_parent() for more types.
1174  *
1175  * \param[in] lmv       pointer to master LMV EA that will be set to the orphan
1176  *
1177  * \retval              positive number for repaired cases
1178  * \retval              0 if needs to repair nothing
1179  * \retval              negative error number on failure
1180  */
1181 static int lfsck_namespace_create_orphan_remote(const struct lu_env *env,
1182                                                 struct lfsck_component *com,
1183                                                 struct dt_object *orphan,
1184                                                 __u32 type,
1185                                                 struct lmv_mds_md_v1 *lmv)
1186 {
1187         struct lfsck_thread_info        *info   = lfsck_env_info(env);
1188         struct lfsck_request            *lr     = &info->lti_lr;
1189         struct lu_seq_range             *range  = &info->lti_range;
1190         const struct lu_fid             *fid    = lfsck_dto2fid(orphan);
1191         struct lfsck_namespace          *ns     = com->lc_file_ram;
1192         struct lfsck_instance           *lfsck  = com->lc_lfsck;
1193         struct seq_server_site          *ss     =
1194                         lu_site2seq(lfsck->li_bottom->dd_lu_dev.ld_site);
1195         struct lfsck_tgt_desc           *ltd    = NULL;
1196         struct ptlrpc_request           *req    = NULL;
1197         int                              rc;
1198         ENTRY;
1199
1200         if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
1201                 GOTO(out, rc = 1);
1202
1203         fld_range_set_mdt(range);
1204         rc = fld_server_lookup(env, ss->ss_server_fld, fid_seq(fid), range);
1205         if (rc != 0)
1206                 GOTO(out, rc);
1207
1208         ltd = lfsck_tgt_get(&lfsck->li_mdt_descs, range->lsr_index);
1209         if (ltd == NULL) {
1210                 ns->ln_flags |= LF_INCOMPLETE;
1211
1212                 GOTO(out, rc = -ENODEV);
1213         }
1214
1215         req = ptlrpc_request_alloc(class_exp2cliimp(ltd->ltd_exp),
1216                                    &RQF_LFSCK_NOTIFY);
1217         if (req == NULL)
1218                 GOTO(out, rc = -ENOMEM);
1219
1220         rc = ptlrpc_request_pack(req, LUSTRE_OBD_VERSION, LFSCK_NOTIFY);
1221         if (rc != 0) {
1222                 ptlrpc_request_free(req);
1223
1224                 GOTO(out, rc);
1225         }
1226
1227         lr = req_capsule_client_get(&req->rq_pill, &RMF_LFSCK_REQUEST);
1228         memset(lr, 0, sizeof(*lr));
1229         lr->lr_event = LE_CREATE_ORPHAN;
1230         lr->lr_index = lfsck_dev_idx(lfsck->li_bottom);
1231         lr->lr_active = LFSCK_TYPE_NAMESPACE;
1232         lr->lr_fid = *fid;
1233         lr->lr_type = type;
1234         if (lmv != NULL) {
1235                 lr->lr_hash_type = lmv->lmv_hash_type;
1236                 lr->lr_stripe_count = lmv->lmv_stripe_count;
1237                 lr->lr_layout_version = lmv->lmv_layout_version;
1238                 memcpy(lr->lr_pool_name, lmv->lmv_pool_name,
1239                        sizeof(lr->lr_pool_name));
1240         }
1241
1242         ptlrpc_request_set_replen(req);
1243         rc = ptlrpc_queue_wait(req);
1244         ptlrpc_req_finished(req);
1245
1246         if (rc == 0) {
1247                 orphan->do_lu.lo_header->loh_attr |= LOHA_EXISTS;
1248                 rc = 1;
1249         } else if (rc == -EEXIST) {
1250                 orphan->do_lu.lo_header->loh_attr |= LOHA_EXISTS;
1251                 rc = 0;
1252         }
1253
1254         GOTO(out, rc);
1255
1256 out:
1257         CDEBUG(D_LFSCK, "%s: namespace LFSCK create object "
1258                DFID" on the MDT %x remotely: rc = %d\n",
1259                lfsck_lfsck2name(lfsck), PFID(fid),
1260                ltd != NULL ? ltd->ltd_index : -1, rc);
1261
1262         if (ltd != NULL)
1263                 lfsck_tgt_put(ltd);
1264
1265         return rc;
1266 }
1267
1268 /**
1269  * Create the specified orphan MDT-object locally.
1270  *
1271  * For the case that the parent MDT-object stored in some MDT-object's
1272  * linkEA entry is lost, the LFSCK will re-create the parent object as
1273  * an orphan and insert it into .lustre/lost+found/MDTxxxx/ directory
1274  * with the name ${FID}-P-${conflict_version}.
1275  *
1276  * \param[in] env       pointer to the thread context
1277  * \param[in] com       pointer to the lfsck component
1278  * \param[in] orphan    pointer to the orphan MDT-object to be created
1279  * \param[in] type      the orphan's type to be created
1280  *
1281  *  type "P":           The orphan object to be created was a parent directory
1282  *                      of some MDT-object which linkEA shows that the @orphan
1283  *                      object is missing.
1284  *
1285  * \see lfsck_layout_recreate_parent() for more types.
1286  *
1287  * \param[in] lmv       pointer to master LMV EA that will be set to the orphan
1288  *
1289  * \retval              positive number for repaired cases
1290  * \retval              negative error number on failure
1291  */
1292 static int lfsck_namespace_create_orphan_local(const struct lu_env *env,
1293                                                struct lfsck_component *com,
1294                                                struct dt_object *orphan,
1295                                                __u32 type,
1296                                                struct lmv_mds_md_v1 *lmv)
1297 {
1298         struct lfsck_thread_info        *info   = lfsck_env_info(env);
1299         struct lu_attr                  *la     = &info->lti_la;
1300         struct dt_allocation_hint       *hint   = &info->lti_hint;
1301         struct dt_object_format         *dof    = &info->lti_dof;
1302         struct lu_name                  *cname  = &info->lti_name2;
1303         struct dt_insert_rec            *rec    = &info->lti_dt_rec;
1304         struct lu_fid                   *tfid   = &info->lti_fid;
1305         struct lmv_mds_md_v1            *lmv2   = &info->lti_lmv2;
1306         const struct lu_fid             *cfid   = lfsck_dto2fid(orphan);
1307         const struct lu_fid             *pfid;
1308         struct lfsck_instance           *lfsck  = com->lc_lfsck;
1309         struct dt_device                *dev    = lfsck->li_bottom;
1310         struct dt_object                *parent = NULL;
1311         struct dt_object                *child  = NULL;
1312         struct thandle                  *th     = NULL;
1313         struct lustre_handle             lh     = { 0 };
1314         struct linkea_data               ldata  = { 0 };
1315         struct lu_buf                    linkea_buf;
1316         struct lu_buf                    lmv_buf;
1317         char                             name[32];
1318         int                              namelen;
1319         int                              idx    = 0;
1320         int                              rc     = 0;
1321         ENTRY;
1322
1323         LASSERT(!dt_object_exists(orphan));
1324         LASSERT(!dt_object_remote(orphan));
1325
1326         /* @orphan maybe not attached to lfsck->li_bottom */
1327         child = lfsck_object_find_by_dev(env, dev, cfid);
1328         if (IS_ERR(child))
1329                 GOTO(log, rc = PTR_ERR(child));
1330
1331         cname->ln_name = NULL;
1332         if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
1333                 GOTO(log, rc = 1);
1334
1335         /* Create .lustre/lost+found/MDTxxxx when needed. */
1336         if (unlikely(lfsck->li_lpf_obj == NULL)) {
1337                 rc = lfsck_create_lpf(env, lfsck);
1338                 if (rc != 0)
1339                         GOTO(log, rc);
1340         }
1341
1342         parent = lfsck->li_lpf_obj;
1343         pfid = lfsck_dto2fid(parent);
1344
1345         /* Hold update lock on the parent to prevent others to access. */
1346         rc = lfsck_ibits_lock(env, lfsck, parent, &lh,
1347                               MDS_INODELOCK_UPDATE, LCK_EX);
1348         if (rc != 0)
1349                 GOTO(log, rc);
1350
1351         do {
1352                 namelen = snprintf(name, 31, DFID"-P-%d",
1353                                    PFID(cfid), idx++);
1354                 rc = dt_lookup(env, parent, (struct dt_rec *)tfid,
1355                                (const struct dt_key *)name, BYPASS_CAPA);
1356                 if (rc != 0 && rc != -ENOENT)
1357                         GOTO(unlock1, rc);
1358         } while (rc == 0);
1359
1360         cname->ln_name = name;
1361         cname->ln_namelen = namelen;
1362
1363         memset(la, 0, sizeof(*la));
1364         la->la_mode = type | (S_ISDIR(type) ? 0700 : 0600);
1365         la->la_valid = LA_TYPE | LA_MODE | LA_UID | LA_GID |
1366                        LA_ATIME | LA_MTIME | LA_CTIME;
1367
1368         child->do_ops->do_ah_init(env, hint, parent, child,
1369                                   la->la_mode & S_IFMT);
1370
1371         memset(dof, 0, sizeof(*dof));
1372         dof->dof_type = dt_mode_to_dft(type);
1373
1374         rc = linkea_data_new(&ldata, &info->lti_linkea_buf2);
1375         if (rc != 0)
1376                 GOTO(unlock1, rc);
1377
1378         rc = linkea_add_buf(&ldata, cname, pfid);
1379         if (rc != 0)
1380                 GOTO(unlock1, rc);
1381
1382         th = dt_trans_create(env, dev);
1383         if (IS_ERR(th))
1384                 GOTO(unlock1, rc = PTR_ERR(th));
1385
1386         rc = dt_declare_create(env, child, la, hint, dof, th);
1387         if (rc == 0 && S_ISDIR(type))
1388                 rc = dt_declare_ref_add(env, child, th);
1389
1390         if (rc != 0)
1391                 GOTO(stop, rc);
1392
1393         if (lmv != NULL) {
1394                 lmv->lmv_magic = LMV_MAGIC;
1395                 lmv->lmv_master_mdt_index = lfsck_dev_idx(dev);
1396                 lfsck_lmv_header_cpu_to_le(lmv2, lmv);
1397                 lfsck_buf_init(&lmv_buf, lmv2, sizeof(*lmv2));
1398                 rc = dt_declare_xattr_set(env, child, &lmv_buf,
1399                                           XATTR_NAME_LMV, 0, th);
1400                 if (rc != 0)
1401                         GOTO(stop, rc);
1402         }
1403
1404         lfsck_buf_init(&linkea_buf, ldata.ld_buf->lb_buf,
1405                        ldata.ld_leh->leh_len);
1406         rc = dt_declare_xattr_set(env, child, &linkea_buf,
1407                                   XATTR_NAME_LINK, 0, th);
1408         if (rc != 0)
1409                 GOTO(stop, rc);
1410
1411         rec->rec_type = type;
1412         rec->rec_fid = cfid;
1413         rc = dt_declare_insert(env, parent, (const struct dt_rec *)rec,
1414                                (const struct dt_key *)name, th);
1415         if (rc == 0 && S_ISDIR(type))
1416                 rc = dt_declare_ref_add(env, parent, th);
1417
1418         if (rc != 0)
1419                 GOTO(stop, rc);
1420
1421         rc = dt_trans_start_local(env, dev, th);
1422         if (rc != 0)
1423                 GOTO(stop, rc);
1424
1425         dt_write_lock(env, child, 0);
1426         rc = dt_create(env, child, la, hint, dof, th);
1427         if (rc != 0)
1428                 GOTO(unlock2, rc);
1429
1430         if (S_ISDIR(type)) {
1431                 if (unlikely(!dt_try_as_dir(env, child)))
1432                         GOTO(unlock2, rc = -ENOTDIR);
1433
1434                 rec->rec_type = S_IFDIR;
1435                 rec->rec_fid = cfid;
1436                 rc = dt_insert(env, child, (const struct dt_rec *)rec,
1437                                (const struct dt_key *)dot, th, BYPASS_CAPA, 1);
1438                 if (rc != 0)
1439                         GOTO(unlock2, rc);
1440
1441                 rec->rec_fid = pfid;
1442                 rc = dt_insert(env, child, (const struct dt_rec *)rec,
1443                                (const struct dt_key *)dotdot, th,
1444                                BYPASS_CAPA, 1);
1445                 if (rc != 0)
1446                         GOTO(unlock2, rc);
1447
1448                 rc = dt_ref_add(env, child, th);
1449                 if (rc != 0)
1450                         GOTO(unlock2, rc);
1451         }
1452
1453         if (lmv != NULL) {
1454                 rc = dt_xattr_set(env, child, &lmv_buf, XATTR_NAME_LMV, 0,
1455                                   th, BYPASS_CAPA);
1456                 if (rc != 0)
1457                         GOTO(unlock2, rc);
1458         }
1459
1460         rc = dt_xattr_set(env, child, &linkea_buf,
1461                           XATTR_NAME_LINK, 0, th, BYPASS_CAPA);
1462         dt_write_unlock(env, child);
1463         if (rc != 0)
1464                 GOTO(stop, rc);
1465
1466         rec->rec_type = type;
1467         rec->rec_fid = cfid;
1468         rc = dt_insert(env, parent, (const struct dt_rec *)rec,
1469                        (const struct dt_key *)name, th, BYPASS_CAPA, 1);
1470         if (rc == 0 && S_ISDIR(type)) {
1471                 dt_write_lock(env, parent, 0);
1472                 rc = dt_ref_add(env, parent, th);
1473                 dt_write_unlock(env, parent);
1474         }
1475
1476         GOTO(stop, rc = (rc == 0 ? 1 : rc));
1477
1478 unlock2:
1479         dt_write_unlock(env, child);
1480
1481 stop:
1482         dt_trans_stop(env, dev, th);
1483
1484 unlock1:
1485         lfsck_ibits_unlock(&lh, LCK_EX);
1486
1487 log:
1488         CDEBUG(D_LFSCK, "%s: namespace LFSCK create orphan locally for "
1489                "the object "DFID", name = %s, type %o: rc = %d\n",
1490                lfsck_lfsck2name(lfsck), PFID(cfid),
1491                cname->ln_name != NULL ? cname->ln_name : "<NULL>", type, rc);
1492
1493         if (child != NULL && !IS_ERR(child))
1494                 lfsck_object_put(env, child);
1495
1496         return rc;
1497 }
1498
1499 /**
1500  * Create the specified orphan MDT-object.
1501  *
1502  * For the case that the parent MDT-object stored in some MDT-object's
1503  * linkEA entry is lost, the LFSCK will re-create the parent object as
1504  * an orphan and insert it into .lustre/lost+found/MDTxxxx/ directory
1505  * with the name: ${FID}-P-${conflict_version}.
1506  *
1507  * \param[in] env       pointer to the thread context
1508  * \param[in] com       pointer to the lfsck component
1509  * \param[in] orphan    pointer to the orphan MDT-object
1510  *
1511  *  type "P":           The orphan object to be created was a parent directory
1512  *                      of some MDT-object which linkEA shows that the @orphan
1513  *                      object is missing.
1514  *
1515  * \see lfsck_layout_recreate_parent() for more types.
1516  *
1517  * \param[in] lmv       pointer to master LMV EA that will be set to the orphan
1518  *
1519  * \retval              positive number for repaired cases
1520  * \retval              0 if needs to repair nothing
1521  * \retval              negative error number on failure
1522  */
1523 static int lfsck_namespace_create_orphan(const struct lu_env *env,
1524                                          struct lfsck_component *com,
1525                                          struct dt_object *orphan,
1526                                          struct lmv_mds_md_v1 *lmv)
1527 {
1528         struct lfsck_namespace *ns = com->lc_file_ram;
1529         int                     rc;
1530
1531         if (dt_object_remote(orphan))
1532                 rc = lfsck_namespace_create_orphan_remote(env, com, orphan,
1533                                                           S_IFDIR, lmv);
1534         else
1535                 rc = lfsck_namespace_create_orphan_local(env, com, orphan,
1536                                                          S_IFDIR, lmv);
1537
1538         if (rc != 0)
1539                 ns->ln_flags |= LF_INCONSISTENT;
1540
1541         return rc;
1542 }
1543
1544 /**
1545  * Remove the specified entry from the linkEA.
1546  *
1547  * Locate the linkEA entry with the given @cname and @pfid, then
1548  * remove this entry or the other entries those are repeated with
1549  * this entry.
1550  *
1551  * \param[in] env       pointer to the thread context
1552  * \param[in] com       pointer to the lfsck component
1553  * \param[in] obj       pointer to the dt_object to be handled
1554  * \param[in,out]ldata  pointer to the buffer that holds the linkEA
1555  * \param[in] cname     the name for the child in the parent directory
1556  * \param[in] pfid      the parent directory's FID for the linkEA
1557  * \param[in] next      if true, then remove the first found linkEA
1558  *                      entry, and move the ldata->ld_lee to next entry
1559  *
1560  * \retval              positive number for repaired cases
1561  * \retval              0 if nothing to be repaired
1562  * \retval              negative error number on failure
1563  */
1564 static int lfsck_namespace_shrink_linkea(const struct lu_env *env,
1565                                          struct lfsck_component *com,
1566                                          struct dt_object *obj,
1567                                          struct linkea_data *ldata,
1568                                          struct lu_name *cname,
1569                                          struct lu_fid *pfid,
1570                                          bool next)
1571 {
1572         struct lfsck_instance           *lfsck     = com->lc_lfsck;
1573         struct dt_device                *dev       = lfsck->li_bottom;
1574         struct lfsck_bookmark           *bk        = &lfsck->li_bookmark_ram;
1575         struct thandle                  *th        = NULL;
1576         struct lustre_handle             lh        = { 0 };
1577         struct linkea_data               ldata_new = { 0 };
1578         struct lu_buf                    linkea_buf;
1579         int                              rc        = 0;
1580         ENTRY;
1581
1582         rc = lfsck_ibits_lock(env, lfsck, obj, &lh,
1583                               MDS_INODELOCK_UPDATE |
1584                               MDS_INODELOCK_XATTR, LCK_EX);
1585         if (rc != 0)
1586                 GOTO(log, rc);
1587
1588         if (next)
1589                 linkea_del_buf(ldata, cname);
1590         else
1591                 lfsck_namespace_filter_linkea_entry(ldata, cname, pfid,
1592                                                     true);
1593         lfsck_buf_init(&linkea_buf, ldata->ld_buf->lb_buf,
1594                        ldata->ld_leh->leh_len);
1595
1596 again:
1597         th = dt_trans_create(env, dev);
1598         if (IS_ERR(th))
1599                 GOTO(unlock1, rc = PTR_ERR(th));
1600
1601         rc = dt_declare_xattr_set(env, obj, &linkea_buf,
1602                                   XATTR_NAME_LINK, 0, th);
1603         if (rc != 0)
1604                 GOTO(stop, rc);
1605
1606         rc = dt_trans_start_local(env, dev, th);
1607         if (rc != 0)
1608                 GOTO(stop, rc);
1609
1610         dt_write_lock(env, obj, 0);
1611         if (unlikely(lfsck_is_dead_obj(obj)))
1612                 GOTO(unlock2, rc = -ENOENT);
1613
1614         rc = lfsck_links_read2(env, obj, &ldata_new);
1615         if (rc != 0)
1616                 GOTO(unlock2, rc);
1617
1618         /* The specified linkEA entry has been removed by race. */
1619         rc = linkea_links_find(&ldata_new, cname, pfid);
1620         if (rc != 0)
1621                 GOTO(unlock2, rc = 0);
1622
1623         if (bk->lb_param & LPF_DRYRUN)
1624                 GOTO(unlock2, rc = 1);
1625
1626         if (next)
1627                 linkea_del_buf(&ldata_new, cname);
1628         else
1629                 lfsck_namespace_filter_linkea_entry(&ldata_new, cname, pfid,
1630                                                     true);
1631
1632         if (linkea_buf.lb_len < ldata_new.ld_leh->leh_len) {
1633                 dt_write_unlock(env, obj);
1634                 dt_trans_stop(env, dev, th);
1635                 lfsck_buf_init(&linkea_buf, ldata_new.ld_buf->lb_buf,
1636                                ldata_new.ld_leh->leh_len);
1637                 goto again;
1638         }
1639
1640         lfsck_buf_init(&linkea_buf, ldata_new.ld_buf->lb_buf,
1641                        ldata_new.ld_leh->leh_len);
1642         rc = dt_xattr_set(env, obj, &linkea_buf,
1643                           XATTR_NAME_LINK, 0, th, BYPASS_CAPA);
1644
1645         GOTO(unlock2, rc = (rc == 0 ? 1 : rc));
1646
1647 unlock2:
1648         dt_write_unlock(env, obj);
1649
1650 stop:
1651         dt_trans_stop(env, dev, th);
1652
1653 unlock1:
1654         lfsck_ibits_unlock(&lh, LCK_EX);
1655
1656 log:
1657         CDEBUG(D_LFSCK, "%s: namespace LFSCK remove %s linkEA entry "
1658                "for the object: "DFID", parent "DFID", name %.*s\n",
1659                lfsck_lfsck2name(lfsck), next ? "invalid" : "redundant",
1660                PFID(lfsck_dto2fid(obj)), PFID(pfid), cname->ln_namelen,
1661                cname->ln_name);
1662
1663         if (rc != 0) {
1664                 struct lfsck_namespace *ns = com->lc_file_ram;
1665
1666                 ns->ln_flags |= LF_INCONSISTENT;
1667         }
1668
1669         return rc;
1670 }
1671
1672 /**
1673  * Conditionally remove the specified entry from the linkEA.
1674  *
1675  * Take the parent lock firstly, then check whether the specified
1676  * name entry exists or not: if yes, do nothing; otherwise, call
1677  * lfsck_namespace_shrink_linkea() to remove the linkea entry.
1678  *
1679  * \param[in] env       pointer to the thread context
1680  * \param[in] com       pointer to the lfsck component
1681  * \param[in] parent    pointer to the parent directory
1682  * \param[in] child     pointer to the child object that holds the linkEA
1683  * \param[in,out]ldata  pointer to the buffer that holds the linkEA
1684  * \param[in] cname     the name for the child in the parent directory
1685  * \param[in] pfid      the parent directory's FID for the linkEA
1686  *
1687  * \retval              positive number for repaired cases
1688  * \retval              0 if nothing to be repaired
1689  * \retval              negative error number on failure
1690  */
1691 static int lfsck_namespace_shrink_linkea_cond(const struct lu_env *env,
1692                                               struct lfsck_component *com,
1693                                               struct dt_object *parent,
1694                                               struct dt_object *child,
1695                                               struct linkea_data *ldata,
1696                                               struct lu_name *cname,
1697                                               struct lu_fid *pfid)
1698 {
1699         struct lu_fid           *cfid   = &lfsck_env_info(env)->lti_fid3;
1700         struct lustre_handle     lh     = { 0 };
1701         int                      rc;
1702         ENTRY;
1703
1704         rc = lfsck_ibits_lock(env, com->lc_lfsck, parent, &lh,
1705                               MDS_INODELOCK_UPDATE, LCK_EX);
1706         if (rc != 0)
1707                 RETURN(rc);
1708
1709         dt_read_lock(env, parent, 0);
1710         if (unlikely(lfsck_is_dead_obj(parent))) {
1711                 dt_read_unlock(env, parent);
1712                 lfsck_ibits_unlock(&lh, LCK_EX);
1713                 rc = lfsck_namespace_shrink_linkea(env, com, child, ldata,
1714                                                    cname, pfid, true);
1715
1716                 RETURN(rc);
1717         }
1718
1719         rc = dt_lookup(env, parent, (struct dt_rec *)cfid,
1720                        (const struct dt_key *)cname->ln_name,
1721                        BYPASS_CAPA);
1722         dt_read_unlock(env, parent);
1723
1724         /* It is safe to release the ldlm lock, because when the logic come
1725          * here, we have got all the needed information above whether the
1726          * linkEA entry is valid or not. It is not important that others
1727          * may add new linkEA entry after the ldlm lock released. If other
1728          * has removed the specified linkEA entry by race, then it is OK,
1729          * because the subsequent lfsck_namespace_shrink_linkea() can handle
1730          * such case. */
1731         lfsck_ibits_unlock(&lh, LCK_EX);
1732         if (rc == -ENOENT) {
1733                 rc = lfsck_namespace_shrink_linkea(env, com, child, ldata,
1734                                                    cname, pfid, true);
1735
1736                 RETURN(rc);
1737         }
1738
1739         if (rc != 0)
1740                 RETURN(rc);
1741
1742         /* The LFSCK just found some internal status of cross-MDTs
1743          * create operation. That is normal. */
1744         if (lu_fid_eq(cfid, lfsck_dto2fid(child))) {
1745                 linkea_next_entry(ldata);
1746
1747                 RETURN(0);
1748         }
1749
1750         rc = lfsck_namespace_shrink_linkea(env, com, child, ldata, cname,
1751                                            pfid, true);
1752
1753         RETURN(rc);
1754 }
1755
1756 /**
1757  * Conditionally replace name entry in the parent.
1758  *
1759  * As required, the LFSCK may re-create the lost MDT-object for dangling
1760  * name entry, but such repairing may be wrong because of bad FID in the
1761  * name entry. As the LFSCK processing, the real MDT-object may be found,
1762  * then the LFSCK should check whether the former re-created MDT-object
1763  * has been modified or not, if not, then destroy it and update the name
1764  * entry in the parent to reference the real MDT-object.
1765  *
1766  * \param[in] env       pointer to the thread context
1767  * \param[in] com       pointer to the lfsck component
1768  * \param[in] parent    pointer to the parent directory
1769  * \param[in] child     pointer to the MDT-object that may be the real
1770  *                      MDT-object corresponding to the name entry in parent
1771  * \param[in] cfid      the current FID in the name entry
1772  * \param[in] cname     contains the name of the child in the parent directory
1773  *
1774  * \retval              positive number for repaired cases
1775  * \retval              0 if nothing to be repaired
1776  * \retval              negative error number on failure
1777  */
1778 static int lfsck_namespace_replace_cond(const struct lu_env *env,
1779                                         struct lfsck_component *com,
1780                                         struct dt_object *parent,
1781                                         struct dt_object *child,
1782                                         const struct lu_fid *cfid,
1783                                         const struct lu_name *cname)
1784 {
1785         struct lfsck_thread_info        *info   = lfsck_env_info(env);
1786         struct lu_fid                   *tfid   = &info->lti_fid5;
1787         struct lu_attr                  *la     = &info->lti_la;
1788         struct dt_insert_rec            *rec    = &info->lti_dt_rec;
1789         struct lfsck_instance           *lfsck  = com->lc_lfsck;
1790         struct dt_device                *dev    = lfsck->li_next;
1791         const char                      *name   = cname->ln_name;
1792         struct dt_object                *obj    = NULL;
1793         struct lustre_handle             plh    = { 0 };
1794         struct lustre_handle             clh    = { 0 };
1795         struct linkea_data               ldata  = { 0 };
1796         struct thandle                  *th     = NULL;
1797         bool                             exist  = true;
1798         int                              rc     = 0;
1799         ENTRY;
1800
1801         rc = lfsck_ibits_lock(env, lfsck, parent, &plh,
1802                               MDS_INODELOCK_UPDATE, LCK_EX);
1803         if (rc != 0)
1804                 GOTO(log, rc);
1805
1806         if (!fid_is_sane(cfid)) {
1807                 exist = false;
1808                 goto replace;
1809         }
1810
1811         obj = lfsck_object_find(env, lfsck, cfid);
1812         if (IS_ERR(obj)) {
1813                 rc = PTR_ERR(obj);
1814                 if (rc == -ENOENT) {
1815                         exist = false;
1816                         goto replace;
1817                 }
1818
1819                 GOTO(log, rc);
1820         }
1821
1822         if (!dt_object_exists(obj)) {
1823                 exist = false;
1824                 goto replace;
1825         }
1826
1827         rc = dt_lookup(env, parent, (struct dt_rec *)tfid,
1828                        (const struct dt_key *)name, BYPASS_CAPA);
1829         if (rc == -ENOENT) {
1830                 exist = false;
1831                 goto replace;
1832         }
1833
1834         if (rc != 0)
1835                 GOTO(log, rc);
1836
1837         /* Someone changed the name entry, cannot replace it. */
1838         if (!lu_fid_eq(cfid, tfid))
1839                 GOTO(log, rc = 0);
1840
1841         /* lock the object to be destroyed. */
1842         rc = lfsck_ibits_lock(env, lfsck, obj, &clh,
1843                               MDS_INODELOCK_UPDATE |
1844                               MDS_INODELOCK_XATTR, LCK_EX);
1845         if (rc != 0)
1846                 GOTO(log, rc);
1847
1848         if (unlikely(lfsck_is_dead_obj(obj))) {
1849                 exist = false;
1850                 goto replace;
1851         }
1852
1853         rc = dt_attr_get(env, obj, la, BYPASS_CAPA);
1854         if (rc != 0)
1855                 GOTO(log, rc);
1856
1857         /* The object has been modified by other(s), or it is not created by
1858          * LFSCK, the two cases are indistinguishable. So cannot replace it. */
1859         if (la->la_ctime != 0)
1860                 GOTO(log, rc);
1861
1862         if (S_ISREG(la->la_mode)) {
1863                 rc = dt_xattr_get(env, obj, &LU_BUF_NULL, XATTR_NAME_LOV,
1864                                   BYPASS_CAPA);
1865                 /* If someone has created related OST-object(s),
1866                  * then keep it. */
1867                 if ((rc > 0) || (rc < 0 && rc != -ENODATA))
1868                         GOTO(log, rc = (rc > 0 ? 0 : rc));
1869         }
1870
1871 replace:
1872         dt_read_lock(env, child, 0);
1873         rc = lfsck_links_read2(env, child, &ldata);
1874         dt_read_unlock(env, child);
1875
1876         /* Someone changed the child, no need to replace. */
1877         if (rc == -ENODATA)
1878                 GOTO(log, rc = 0);
1879
1880         if (rc != 0)
1881                 GOTO(log, rc);
1882
1883         rc = linkea_links_find(&ldata, cname, lfsck_dto2fid(parent));
1884         /* Someone moved the child, no need to replace. */
1885         if (rc != 0)
1886                 GOTO(log, rc = 0);
1887
1888         if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
1889                 GOTO(log, rc = 1);
1890
1891         th = dt_trans_create(env, dev);
1892         if (IS_ERR(th))
1893                 GOTO(log, rc = PTR_ERR(th));
1894
1895         if (exist) {
1896                 rc = dt_declare_destroy(env, obj, th);
1897                 if (rc != 0)
1898                         GOTO(stop, rc);
1899         }
1900
1901         rc = dt_declare_delete(env, parent, (const struct dt_key *)name, th);
1902         if (rc != 0)
1903                 GOTO(stop, rc);
1904
1905         rec->rec_type = S_IFDIR;
1906         rec->rec_fid = lfsck_dto2fid(child);
1907         rc = dt_declare_insert(env, parent, (const struct dt_rec *)rec,
1908                                (const struct dt_key *)name, th);
1909         if (rc != 0)
1910                 GOTO(stop, rc);
1911
1912         rc = dt_trans_start(env, dev, th);
1913         if (rc != 0)
1914                 GOTO(stop, rc);
1915
1916         if (exist) {
1917                 rc = dt_destroy(env, obj, th);
1918                 if (rc != 0)
1919                         GOTO(stop, rc);
1920         }
1921
1922         /* The old name entry maybe not exist. */
1923         dt_delete(env, parent, (const struct dt_key *)name, th,
1924                   BYPASS_CAPA);
1925
1926         rc = dt_insert(env, parent, (const struct dt_rec *)rec,
1927                        (const struct dt_key *)name, th, BYPASS_CAPA, 1);
1928
1929         GOTO(stop, rc = (rc == 0 ? 1 : rc));
1930
1931 stop:
1932         dt_trans_stop(env, dev, th);
1933
1934 log:
1935         lfsck_ibits_unlock(&clh, LCK_EX);
1936         lfsck_ibits_unlock(&plh, LCK_EX);
1937         if (obj != NULL && !IS_ERR(obj))
1938                 lfsck_object_put(env, obj);
1939
1940         CDEBUG(D_LFSCK, "%s: namespace LFSCK conditionally destroy the "
1941                "object "DFID" because of conflict with the object "DFID
1942                " under the parent "DFID" with name %s: rc = %d\n",
1943                lfsck_lfsck2name(lfsck), PFID(cfid),
1944                PFID(lfsck_dto2fid(child)), PFID(lfsck_dto2fid(parent)),
1945                name, rc);
1946
1947         return rc;
1948 }
1949
1950 /**
1951  * Overwrite the linkEA for the object with the given ldata.
1952  *
1953  * The caller should take the ldlm lock before the calling.
1954  *
1955  * \param[in] env       pointer to the thread context
1956  * \param[in] com       pointer to the lfsck component
1957  * \param[in] obj       pointer to the dt_object to be handled
1958  * \param[in] ldata     pointer to the new linkEA data
1959  *
1960  * \retval              positive number for repaired cases
1961  * \retval              0 if nothing to be repaired
1962  * \retval              negative error number on failure
1963  */
1964 int lfsck_namespace_rebuild_linkea(const struct lu_env *env,
1965                                    struct lfsck_component *com,
1966                                    struct dt_object *obj,
1967                                    struct linkea_data *ldata)
1968 {
1969         struct lfsck_instance           *lfsck  = com->lc_lfsck;
1970         struct dt_device                *dev    = lfsck->li_bottom;
1971         struct thandle                  *th     = NULL;
1972         struct lu_buf                    linkea_buf;
1973         int                              rc     = 0;
1974         ENTRY;
1975
1976         LASSERT(!dt_object_remote(obj));
1977
1978         th = dt_trans_create(env, dev);
1979         if (IS_ERR(th))
1980                 GOTO(log, rc = PTR_ERR(th));
1981
1982         lfsck_buf_init(&linkea_buf, ldata->ld_buf->lb_buf,
1983                        ldata->ld_leh->leh_len);
1984         rc = dt_declare_xattr_set(env, obj, &linkea_buf,
1985                                   XATTR_NAME_LINK, 0, th);
1986         if (rc != 0)
1987                 GOTO(stop, rc);
1988
1989         rc = dt_trans_start_local(env, dev, th);
1990         if (rc != 0)
1991                 GOTO(stop, rc);
1992
1993         dt_write_lock(env, obj, 0);
1994         if (unlikely(lfsck_is_dead_obj(obj)))
1995                 GOTO(unlock, rc = 0);
1996
1997         if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
1998                 GOTO(unlock, rc = 1);
1999
2000         rc = dt_xattr_set(env, obj, &linkea_buf,
2001                           XATTR_NAME_LINK, 0, th, BYPASS_CAPA);
2002
2003         GOTO(unlock, rc = (rc == 0 ? 1 : rc));
2004
2005 unlock:
2006         dt_write_unlock(env, obj);
2007
2008 stop:
2009         dt_trans_stop(env, dev, th);
2010
2011 log:
2012         CDEBUG(D_LFSCK, "%s: namespace LFSCK rebuild linkEA for the "
2013                "object "DFID": rc = %d\n",
2014                lfsck_lfsck2name(lfsck), PFID(lfsck_dto2fid(obj)), rc);
2015
2016         if (rc != 0) {
2017                 struct lfsck_namespace *ns = com->lc_file_ram;
2018
2019                 ns->ln_flags |= LF_INCONSISTENT;
2020         }
2021
2022         return rc;
2023 }
2024
2025 /**
2026  * Repair invalid name entry.
2027  *
2028  * If the name entry contains invalid information, such as bad file type
2029  * or (and) corrupted object FID, then either remove the name entry or
2030  * udpate the name entry with the given (right) information.
2031  *
2032  * \param[in] env       pointer to the thread context
2033  * \param[in] com       pointer to the lfsck component
2034  * \param[in] parent    pointer to the parent directory
2035  * \param[in] child     pointer to the object referenced by the name entry
2036  * \param[in] name      the old name of the child under the parent directory
2037  * \param[in] name2     the new name of the child under the parent directory
2038  * \param[in] type      the type claimed by the name entry
2039  * \param[in] update    update the name entry if true; otherwise, remove it
2040  * \param[in] dec       decrease the parent nlink count if true
2041  *
2042  * \retval              positive number for repaired successfully
2043  * \retval              0 if nothing to be repaired
2044  * \retval              negative error number on failure
2045  */
2046 int lfsck_namespace_repair_dirent(const struct lu_env *env,
2047                                   struct lfsck_component *com,
2048                                   struct dt_object *parent,
2049                                   struct dt_object *child,
2050                                   const char *name, const char *name2,
2051                                   __u16 type, bool update, bool dec)
2052 {
2053         struct lfsck_thread_info        *info   = lfsck_env_info(env);
2054         struct dt_insert_rec            *rec    = &info->lti_dt_rec;
2055         const struct lu_fid             *cfid   = lfsck_dto2fid(child);
2056         struct lu_fid                   *tfid   = &info->lti_fid5;
2057         struct lfsck_instance           *lfsck  = com->lc_lfsck;
2058         struct dt_device                *dev    = lfsck->li_next;
2059         struct thandle                  *th     = NULL;
2060         struct lustre_handle             lh     = { 0 };
2061         int                              rc     = 0;
2062         ENTRY;
2063
2064         if (unlikely(!dt_try_as_dir(env, parent)))
2065                 GOTO(log, rc = -ENOTDIR);
2066
2067         rc = lfsck_ibits_lock(env, lfsck, parent, &lh,
2068                               MDS_INODELOCK_UPDATE, LCK_EX);
2069         if (rc != 0)
2070                 GOTO(log, rc);
2071
2072         th = dt_trans_create(env, dev);
2073         if (IS_ERR(th))
2074                 GOTO(unlock1, rc = PTR_ERR(th));
2075
2076         rc = dt_declare_delete(env, parent, (const struct dt_key *)name, th);
2077         if (rc != 0)
2078                 GOTO(stop, rc);
2079
2080         if (update) {
2081                 rec->rec_type = lfsck_object_type(child) & S_IFMT;
2082                 rec->rec_fid = cfid;
2083                 rc = dt_declare_insert(env, parent,
2084                                        (const struct dt_rec *)rec,
2085                                        (const struct dt_key *)name2, th);
2086                 if (rc != 0)
2087                         GOTO(stop, rc);
2088         }
2089
2090         if (dec) {
2091                 rc = dt_declare_ref_del(env, parent, th);
2092                 if (rc != 0)
2093                         GOTO(stop, rc);
2094         }
2095
2096         rc = dt_trans_start(env, dev, th);
2097         if (rc != 0)
2098                 GOTO(stop, rc);
2099
2100         dt_write_lock(env, parent, 0);
2101         rc = dt_lookup(env, parent, (struct dt_rec *)tfid,
2102                        (const struct dt_key *)name, BYPASS_CAPA);
2103         /* Someone has removed the bad name entry by race. */
2104         if (rc == -ENOENT)
2105                 GOTO(unlock2, rc = 0);
2106
2107         if (rc != 0)
2108                 GOTO(unlock2, rc);
2109
2110         /* Someone has removed the bad name entry and reused it for other
2111          * object by race. */
2112         if (!lu_fid_eq(tfid, cfid))
2113                 GOTO(unlock2, rc = 0);
2114
2115         if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
2116                 GOTO(unlock2, rc = 1);
2117
2118         rc = dt_delete(env, parent, (const struct dt_key *)name, th,
2119                        BYPASS_CAPA);
2120         if (rc != 0)
2121                 GOTO(unlock2, rc);
2122
2123         if (update) {
2124                 rc = dt_insert(env, parent,
2125                                (const struct dt_rec *)rec,
2126                                (const struct dt_key *)name2, th,
2127                                BYPASS_CAPA, 1);
2128                 if (rc != 0)
2129                         GOTO(unlock2, rc);
2130         }
2131
2132         if (dec) {
2133                 rc = dt_ref_del(env, parent, th);
2134                 if (rc != 0)
2135                         GOTO(unlock2, rc);
2136         }
2137
2138         GOTO(unlock2, rc = (rc == 0 ? 1 : rc));
2139
2140 unlock2:
2141         dt_write_unlock(env, parent);
2142
2143 stop:
2144         dt_trans_stop(env, dev, th);
2145
2146         /* We are not sure whether the child will become orphan or not.
2147          * Record it in the LFSCK trace file for further checking in
2148          * the second-stage scanning. */
2149         if (!update && !dec && rc == 0)
2150                 lfsck_namespace_trace_update(env, com, cfid,
2151                                              LNTF_CHECK_LINKEA, true);
2152
2153 unlock1:
2154         lfsck_ibits_unlock(&lh, LCK_EX);
2155
2156 log:
2157         CDEBUG(D_LFSCK, "%s: namespace LFSCK assistant found bad name "
2158                "entry for: parent "DFID", child "DFID", name %s, type "
2159                "in name entry %o, type claimed by child %o. repair it "
2160                "by %s with new name2 %s: rc = %d\n", lfsck_lfsck2name(lfsck),
2161                PFID(lfsck_dto2fid(parent)), PFID(lfsck_dto2fid(child)),
2162                name, type, update ? lfsck_object_type(child) : 0,
2163                update ? "updating" : "removing", name2, rc);
2164
2165         if (rc != 0) {
2166                 struct lfsck_namespace *ns = com->lc_file_ram;
2167
2168                 ns->ln_flags |= LF_INCONSISTENT;
2169         }
2170
2171         return rc;
2172 }
2173
2174 /**
2175  * Update the ".." name entry for the given object.
2176  *
2177  * The object's ".." is corrupted, this function will update the ".." name
2178  * entry with the given pfid, and the linkEA with the given ldata.
2179  *
2180  * The caller should take the ldlm lock before the calling.
2181  *
2182  * \param[in] env       pointer to the thread context
2183  * \param[in] com       pointer to the lfsck component
2184  * \param[in] obj       pointer to the dt_object to be handled
2185  * \param[in] pfid      the new fid for the object's ".." name entry
2186  * \param[in] cname     the name for the @obj in the parent directory
2187  *
2188  * \retval              positive number for repaired cases
2189  * \retval              0 if nothing to be repaired
2190  * \retval              negative error number on failure
2191  */
2192 static int lfsck_namespace_repair_unmatched_pairs(const struct lu_env *env,
2193                                                   struct lfsck_component *com,
2194                                                   struct dt_object *obj,
2195                                                   const struct lu_fid *pfid,
2196                                                   struct lu_name *cname)
2197 {
2198         struct lfsck_thread_info        *info   = lfsck_env_info(env);
2199         struct dt_insert_rec            *rec    = &info->lti_dt_rec;
2200         struct lfsck_instance           *lfsck  = com->lc_lfsck;
2201         struct dt_device                *dev    = lfsck->li_bottom;
2202         struct thandle                  *th     = NULL;
2203         struct linkea_data               ldata  = { 0 };
2204         struct lu_buf                    linkea_buf;
2205         int                              rc     = 0;
2206         ENTRY;
2207
2208         LASSERT(!dt_object_remote(obj));
2209         LASSERT(S_ISDIR(lfsck_object_type(obj)));
2210
2211         rc = linkea_data_new(&ldata, &info->lti_big_buf);
2212         if (rc != 0)
2213                 GOTO(log, rc);
2214
2215         rc = linkea_add_buf(&ldata, cname, pfid);
2216         if (rc != 0)
2217                 GOTO(log, rc);
2218
2219         lfsck_buf_init(&linkea_buf, ldata.ld_buf->lb_buf,
2220                        ldata.ld_leh->leh_len);
2221
2222         th = dt_trans_create(env, dev);
2223         if (IS_ERR(th))
2224                 GOTO(log, rc = PTR_ERR(th));
2225
2226         rc = dt_declare_delete(env, obj, (const struct dt_key *)dotdot, th);
2227         if (rc != 0)
2228                 GOTO(stop, rc);
2229
2230         rec->rec_type = S_IFDIR;
2231         rec->rec_fid = pfid;
2232         rc = dt_declare_insert(env, obj, (const struct dt_rec *)rec,
2233                                (const struct dt_key *)dotdot, th);
2234         if (rc != 0)
2235                 GOTO(stop, rc);
2236
2237         rc = dt_declare_xattr_set(env, obj, &linkea_buf,
2238                                   XATTR_NAME_LINK, 0, th);
2239         if (rc != 0)
2240                 GOTO(stop, rc);
2241
2242         rc = dt_trans_start_local(env, dev, th);
2243         if (rc != 0)
2244                 GOTO(stop, rc);
2245
2246         dt_write_lock(env, obj, 0);
2247         if (unlikely(lfsck_is_dead_obj(obj)))
2248                 GOTO(unlock, rc = 0);
2249
2250         if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
2251                 GOTO(unlock, rc = 1);
2252
2253         /* The old ".." name entry maybe not exist. */
2254         dt_delete(env, obj, (const struct dt_key *)dotdot, th,
2255                   BYPASS_CAPA);
2256
2257         rc = dt_insert(env, obj, (const struct dt_rec *)rec,
2258                        (const struct dt_key *)dotdot, th, BYPASS_CAPA, 1);
2259         if (rc != 0)
2260                 GOTO(unlock, rc);
2261
2262         rc = dt_xattr_set(env, obj, &linkea_buf,
2263                           XATTR_NAME_LINK, 0, th, BYPASS_CAPA);
2264
2265         GOTO(unlock, rc = (rc == 0 ? 1 : rc));
2266
2267 unlock:
2268         dt_write_unlock(env, obj);
2269
2270 stop:
2271         dt_trans_stop(env, dev, th);
2272
2273 log:
2274         CDEBUG(D_LFSCK, "%s: namespace LFSCK rebuild dotdot name entry for "
2275                "the object "DFID", new parent "DFID": rc = %d\n",
2276                lfsck_lfsck2name(lfsck), PFID(lfsck_dto2fid(obj)),
2277                PFID(pfid), rc);
2278
2279         if (rc != 0) {
2280                 struct lfsck_namespace *ns = com->lc_file_ram;
2281
2282                 ns->ln_flags |= LF_INCONSISTENT;
2283         }
2284
2285         return rc;
2286 }
2287
2288 /**
2289  * Handle orphan @obj during Double Scan Directory.
2290  *
2291  * Remove the @obj's current (invalid) linkEA entries, and insert
2292  * it in the directory .lustre/lost+found/MDTxxxx/ with the name:
2293  * ${FID}-${PFID}-D-${conflict_version}
2294  *
2295  * The caller should take the ldlm lock before the calling.
2296  *
2297  * \param[in] env       pointer to the thread context
2298  * \param[in] com       pointer to the lfsck component
2299  * \param[in] obj       pointer to the orphan object to be handled
2300  * \param[in] pfid      the new fid for the object's ".." name entry
2301  * \param[in,out] lh    ldlm lock handler for the given @obj
2302  * \param[out] type     to tell the caller what the inconsistency is
2303  *
2304  * \retval              positive number for repaired cases
2305  * \retval              0 if nothing to be repaired
2306  * \retval              negative error number on failure
2307  */
2308 static int
2309 lfsck_namespace_dsd_orphan(const struct lu_env *env,
2310                            struct lfsck_component *com,
2311                            struct dt_object *obj,
2312                            const struct lu_fid *pfid,
2313                            struct lustre_handle *lh,
2314                            enum lfsck_namespace_inconsistency_type *type)
2315 {
2316         struct lfsck_thread_info *info = lfsck_env_info(env);
2317         struct lfsck_namespace   *ns   = com->lc_file_ram;
2318         int                       rc;
2319         ENTRY;
2320
2321         /* Remove the unrecognized linkEA. */
2322         rc = lfsck_namespace_links_remove(env, com, obj);
2323         lfsck_ibits_unlock(lh, LCK_EX);
2324         if (rc < 0 && rc != -ENODATA)
2325                 RETURN(rc);
2326
2327         *type = LNIT_MUL_REF;
2328
2329         /* If the LFSCK is marked as LF_INCOMPLETE, then means some MDT has
2330          * ever tried to verify some remote MDT-object that resides on this
2331          * MDT, but this MDT failed to respond such request. So means there
2332          * may be some remote name entry on other MDT that references this
2333          * object with another name, so we cannot know whether this linkEA
2334          * is valid or not. So keep it there and maybe resolved when next
2335          * LFSCK run. */
2336         if (ns->ln_flags & LF_INCOMPLETE)
2337                 RETURN(0);
2338
2339         /* The unique linkEA is invalid, even if the ".." name entry may be
2340          * valid, we still cannot know via which name entry this directory
2341          * will be referenced. Then handle it as pure orphan. */
2342         snprintf(info->lti_tmpbuf, sizeof(info->lti_tmpbuf),
2343                  "-"DFID, PFID(pfid));
2344         rc = lfsck_namespace_insert_orphan(env, com, obj,
2345                                            info->lti_tmpbuf, "D", NULL);
2346
2347         RETURN(rc);
2348 }
2349
2350 /**
2351  * Double Scan Directory object for single linkEA entry case.
2352  *
2353  * The given @child has unique linkEA entry. If the linkEA entry is valid,
2354  * then check whether the name is in the namespace or not, if not, add the
2355  * missing name entry back to namespace. If the linkEA entry is invalid,
2356  * then remove it and insert the @child in the .lustre/lost+found/MDTxxxx/
2357  * as an orphan.
2358  *
2359  * \param[in] env       pointer to the thread context
2360  * \param[in] com       pointer to the lfsck component
2361  * \param[in] child     pointer to the directory to be double scanned
2362  * \param[in] pfid      the FID corresponding to the ".." entry
2363  * \param[in] ldata     pointer to the linkEA data for the given @child
2364  * \param[in,out] lh    ldlm lock handler for the given @child
2365  * \param[out] type     to tell the caller what the inconsistency is
2366  * \param[in] retry     if found inconsistency, but the caller does not hold
2367  *                      ldlm lock on the @child, then set @retry as true
2368  *
2369  * \retval              positive number for repaired cases
2370  * \retval              0 if nothing to be repaired
2371  * \retval              negative error number on failure
2372  */
2373 static int
2374 lfsck_namespace_dsd_single(const struct lu_env *env,
2375                            struct lfsck_component *com,
2376                            struct dt_object *child,
2377                            const struct lu_fid *pfid,
2378                            struct linkea_data *ldata,
2379                            struct lustre_handle *lh,
2380                            enum lfsck_namespace_inconsistency_type *type,
2381                            bool *retry)
2382 {
2383         struct lfsck_thread_info *info          = lfsck_env_info(env);
2384         struct lu_name           *cname         = &info->lti_name;
2385         const struct lu_fid      *cfid          = lfsck_dto2fid(child);
2386         struct lu_fid            *tfid          = &info->lti_fid3;
2387         struct lfsck_namespace   *ns            = com->lc_file_ram;
2388         struct lfsck_instance    *lfsck         = com->lc_lfsck;
2389         struct dt_object         *parent        = NULL;
2390         struct lmv_mds_md_v1     *lmv;
2391         int                       rc            = 0;
2392         ENTRY;
2393
2394         lfsck_namespace_unpack_linkea_entry(ldata, cname, tfid, info->lti_key);
2395         /* The unique linkEA entry with bad parent will be handled as orphan. */
2396         if (!fid_is_sane(tfid)) {
2397                 if (!lustre_handle_is_used(lh) && retry != NULL)
2398                         *retry = true;
2399                 else
2400                         rc = lfsck_namespace_dsd_orphan(env, com, child,
2401                                                         pfid, lh, type);
2402
2403                 GOTO(out, rc);
2404         }
2405
2406         parent = lfsck_object_find_bottom(env, lfsck, tfid);
2407         if (IS_ERR(parent))
2408                 GOTO(out, rc = PTR_ERR(parent));
2409
2410         /* We trust the unique linkEA entry in spite of whether it matches the
2411          * ".." name entry or not. Because even if the linkEA entry is wrong
2412          * and the ".." name entry is right, we still cannot know via which
2413          * name entry the child will be referenced, since all known entries
2414          * have been verified during the first-stage scanning. */
2415         if (!dt_object_exists(parent)) {
2416                 /* If the LFSCK is marked as LF_INCOMPLETE, then means some MDT
2417                  * has ever tried to verify some remote MDT-object that resides
2418                  * on this MDT, but this MDT failed to respond such request. So
2419                  * means there may be some remote name entry on other MDT that
2420                  * references this object with another name, so we cannot know
2421                  * whether this linkEA is valid or not. So keep it there and
2422                  * maybe resolved when next LFSCK run. */
2423                 if (ns->ln_flags & LF_INCOMPLETE)
2424                         GOTO(out, rc = 0);
2425
2426                 if (!lustre_handle_is_used(lh) && retry != NULL) {
2427                         *retry = true;
2428
2429                         GOTO(out, rc = 0);
2430                 }
2431
2432                 lfsck_ibits_unlock(lh, LCK_EX);
2433
2434 lost_parent:
2435                 lmv = &info->lti_lmv;
2436                 rc = lfsck_read_stripe_lmv(env, child, lmv);
2437                 if (rc != 0 && rc != -ENODATA)
2438                         GOTO(out, rc);
2439
2440                 if (rc == -ENODATA || lmv->lmv_magic != LMV_MAGIC_STRIPE) {
2441                         lmv = NULL;
2442                 } else if (lfsck_shard_name_to_index(env,
2443                                         cname->ln_name, cname->ln_namelen,
2444                                         S_IFDIR, cfid) < 0) {
2445                         /* It is an invalid name entry, we
2446                          * cannot trust the parent also. */
2447                         rc = lfsck_namespace_shrink_linkea(env, com, child,
2448                                                 ldata, cname, tfid, true);
2449                         if (rc < 0)
2450                                 GOTO(out, rc);
2451
2452                         snprintf(info->lti_tmpbuf, sizeof(info->lti_tmpbuf),
2453                                  "-"DFID, PFID(pfid));
2454                         rc = lfsck_namespace_insert_orphan(env, com, child,
2455                                                 info->lti_tmpbuf, "S", NULL);
2456
2457                         GOTO(out, rc);
2458                 }
2459
2460                 /* Create the lost parent as an orphan. */
2461                 rc = lfsck_namespace_create_orphan(env, com, parent, lmv);
2462                 if (rc >= 0) {
2463                         /* Add the missing name entry to the parent. */
2464                         rc = lfsck_namespace_insert_normal(env, com, parent,
2465                                                         child, cname->ln_name);
2466                         if (unlikely(rc == -EEXIST)) {
2467                                 /* Unfortunately, someone reused the name
2468                                  * under the parent by race. So we have
2469                                  * to remove the linkEA entry from
2470                                  * current child object. It means that the
2471                                  * LFSCK cannot recover the system
2472                                  * totally back to its original status,
2473                                  * but it is necessary to make the
2474                                  * current system to be consistent. */
2475                                 rc = lfsck_namespace_shrink_linkea(env,
2476                                                 com, child, ldata,
2477                                                 cname, tfid, true);
2478                                 if (rc >= 0) {
2479                                         snprintf(info->lti_tmpbuf,
2480                                                  sizeof(info->lti_tmpbuf),
2481                                                  "-"DFID, PFID(pfid));
2482                                         rc = lfsck_namespace_insert_orphan(env,
2483                                                 com, child, info->lti_tmpbuf,
2484                                                 "D", NULL);
2485                                 }
2486                         }
2487                 }
2488
2489                 GOTO(out, rc);
2490         }
2491
2492         /* The unique linkEA entry with bad parent will be handled as orphan. */
2493         if (unlikely(!dt_try_as_dir(env, parent))) {
2494                 if (!lustre_handle_is_used(lh) && retry != NULL)
2495                         *retry = true;
2496                 else
2497                         rc = lfsck_namespace_dsd_orphan(env, com, child,
2498                                                         pfid, lh, type);
2499
2500                 GOTO(out, rc);
2501         }
2502
2503         rc = dt_lookup(env, parent, (struct dt_rec *)tfid,
2504                        (const struct dt_key *)cname->ln_name, BYPASS_CAPA);
2505         if (rc == -ENOENT) {
2506                 /* If the LFSCK is marked as LF_INCOMPLETE, then means some MDT
2507                  * has ever tried to verify some remote MDT-object that resides
2508                  * on this MDT, but this MDT failed to respond such request. So
2509                  * means there may be some remote name entry on other MDT that
2510                  * references this object with another name, so we cannot know
2511                  * whether this linkEA is valid or not. So keep it there and
2512                  * maybe resolved when next LFSCK run. */
2513                 if (ns->ln_flags & LF_INCOMPLETE)
2514                         GOTO(out, rc = 0);
2515
2516                 if (!lustre_handle_is_used(lh) && retry != NULL) {
2517                         *retry = true;
2518
2519                         GOTO(out, rc = 0);
2520                 }
2521
2522                 lfsck_ibits_unlock(lh, LCK_EX);
2523                 rc = lfsck_namespace_check_name(env, parent, child, cname);
2524                 if (rc == -ENOENT)
2525                         goto lost_parent;
2526
2527                 if (rc < 0)
2528                         GOTO(out, rc);
2529
2530                 /* It is an invalid name entry, drop it. */
2531                 if (unlikely(rc > 0)) {
2532                         rc = lfsck_namespace_shrink_linkea(env, com, child,
2533                                                 ldata, cname, tfid, true);
2534                         if (rc >= 0) {
2535                                 snprintf(info->lti_tmpbuf,
2536                                          sizeof(info->lti_tmpbuf),
2537                                          "-"DFID, PFID(pfid));
2538                                 rc = lfsck_namespace_insert_orphan(env, com,
2539                                         child, info->lti_tmpbuf, "D", NULL);
2540                         }
2541
2542                         GOTO(out, rc);
2543                 }
2544
2545                 /* Add the missing name entry back to the namespace. */
2546                 rc = lfsck_namespace_insert_normal(env, com, parent, child,
2547                                                    cname->ln_name);
2548                 if (unlikely(rc == -ESTALE))
2549                         /* It may happen when the remote object has been
2550                          * removed, but the local MDT is not aware of that. */
2551                         goto lost_parent;
2552
2553                 if (unlikely(rc == -EEXIST)) {
2554                         /* Unfortunately, someone reused the name under the
2555                          * parent by race. So we have to remove the linkEA
2556                          * entry from current child object. It means that the
2557                          * LFSCK cannot recover the system totally back to
2558                          * its original status, but it is necessary to make
2559                          * the current system to be consistent.
2560                          *
2561                          * It also may be because of the LFSCK found some
2562                          * internal status of create operation. Under such
2563                          * case, nothing to be done. */
2564                         rc = lfsck_namespace_shrink_linkea_cond(env, com,
2565                                         parent, child, ldata, cname, tfid);
2566                         if (rc >= 0) {
2567                                 snprintf(info->lti_tmpbuf,
2568                                          sizeof(info->lti_tmpbuf),
2569                                          "-"DFID, PFID(pfid));
2570                                 rc = lfsck_namespace_insert_orphan(env, com,
2571                                         child, info->lti_tmpbuf, "D", NULL);
2572                         }
2573                 }
2574
2575                 GOTO(out, rc);
2576         }
2577
2578         if (rc != 0)
2579                 GOTO(out, rc);
2580
2581         if (!lu_fid_eq(tfid, cfid)) {
2582                 if (!lustre_handle_is_used(lh) && retry != NULL) {
2583                         *retry = true;
2584
2585                         GOTO(out, rc = 0);
2586                 }
2587
2588                 lfsck_ibits_unlock(lh, LCK_EX);
2589                 /* The name entry references another MDT-object that
2590                  * may be created by the LFSCK for repairing dangling
2591                  * name entry. Try to replace it. */
2592                 rc = lfsck_namespace_replace_cond(env, com, parent, child,
2593                                                   tfid, cname);
2594                 if (rc == 0)
2595                         rc = lfsck_namespace_dsd_orphan(env, com, child,
2596                                                         pfid, lh, type);
2597
2598                 GOTO(out, rc);
2599         }
2600
2601         if (fid_is_zero(pfid))
2602                 GOTO(out, rc = 0);
2603
2604         /* The ".." name entry is wrong, update it. */
2605         if (!lu_fid_eq(pfid, lfsck_dto2fid(parent))) {
2606                 if (!lustre_handle_is_used(lh) && retry != NULL) {
2607                         *retry = true;
2608
2609                         GOTO(out, rc = 0);
2610                 }
2611
2612                 *type = LNIT_UNMATCHED_PAIRS;
2613                 rc = lfsck_namespace_repair_unmatched_pairs(env, com, child,
2614                                                 lfsck_dto2fid(parent), cname);
2615         }
2616
2617         GOTO(out, rc);
2618
2619 out:
2620         if (parent != NULL && !IS_ERR(parent))
2621                 lfsck_object_put(env, parent);
2622
2623         return rc;
2624 }
2625
2626 /**
2627  * Double Scan Directory object for multiple linkEA entries case.
2628  *
2629  * The given @child has multiple linkEA entries. There is at most one linkEA
2630  * entry will be valid, all the others will be removed. Firstly, the function
2631  * will try to find out the linkEA entry for which the name entry exists under
2632  * the given parent (@pfid). If there is no linkEA entry that matches the given
2633  * ".." name entry, then tries to find out the first linkEA entry that both the
2634  * parent and the name entry exist to rebuild a new ".." name entry.
2635  *
2636  * \param[in] env       pointer to the thread context
2637  * \param[in] com       pointer to the lfsck component
2638  * \param[in] child     pointer to the directory to be double scanned
2639  * \param[in] pfid      the FID corresponding to the ".." entry
2640  * \param[in] ldata     pointer to the linkEA data for the given @child
2641  * \param[in,out] lh    ldlm lock handler for the given @child
2642  * \param[out] type     to tell the caller what the inconsistency is
2643  * \param[in] lpf       true if the ".." entry is under lost+found/MDTxxxx/
2644  *
2645  * \retval              positive number for repaired cases
2646  * \retval              0 if nothing to be repaired
2647  * \retval              negative error number on failure
2648  */
2649 static int
2650 lfsck_namespace_dsd_multiple(const struct lu_env *env,
2651                              struct lfsck_component *com,
2652                              struct dt_object *child,
2653                              const struct lu_fid *pfid,
2654                              struct linkea_data *ldata,
2655                              struct lustre_handle *lh,
2656                              enum lfsck_namespace_inconsistency_type *type,
2657                              bool lpf)
2658 {
2659         struct lfsck_thread_info *info          = lfsck_env_info(env);
2660         struct lu_name           *cname         = &info->lti_name;
2661         const struct lu_fid      *cfid          = lfsck_dto2fid(child);
2662         struct lu_fid            *tfid          = &info->lti_fid3;
2663         struct lu_fid            *pfid2         = &info->lti_fid4;
2664         struct lfsck_namespace   *ns            = com->lc_file_ram;
2665         struct lfsck_instance    *lfsck         = com->lc_lfsck;
2666         struct lfsck_bookmark    *bk            = &lfsck->li_bookmark_ram;
2667         struct dt_object         *parent        = NULL;
2668         struct linkea_data        ldata_new     = { 0 };
2669         int                       dirent_count  = 0;
2670         int                       linkea_count  = 0;
2671         int                       rc            = 0;
2672         bool                      once          = true;
2673         ENTRY;
2674
2675 again:
2676         while (ldata->ld_lee != NULL) {
2677                 lfsck_namespace_unpack_linkea_entry(ldata, cname, tfid,
2678                                                     info->lti_key);
2679                 /* Drop repeated linkEA entries. */
2680                 lfsck_namespace_filter_linkea_entry(ldata, cname, tfid, true);
2681                 /* Drop invalid linkEA entry. */
2682                 if (!fid_is_sane(tfid)) {
2683                         linkea_del_buf(ldata, cname);
2684                         linkea_count++;
2685                         continue;
2686                 }
2687
2688                 /* If current dotdot is the .lustre/lost+found/MDTxxxx/,
2689                  * then it is possible that: the directry object has ever
2690                  * been lost, but its name entry was there. In the former
2691                  * LFSCK run, during the first-stage scanning, the LFSCK
2692                  * found the dangling name entry, but it did not recreate
2693                  * the lost object, and when moved to the second-stage
2694                  * scanning, some children objects of the lost directory
2695                  * object were found, then the LFSCK recreated such lost
2696                  * directory object as an orphan.
2697                  *
2698                  * When the LFSCK runs again, if the dangling name is still
2699                  * there, the LFSCK should move the orphan directory object
2700                  * back to the normal namespace. */
2701                 if (!lpf && !lu_fid_eq(pfid, tfid) && once) {
2702                         linkea_next_entry(ldata);
2703                         continue;
2704                 }
2705
2706                 parent = lfsck_object_find_bottom(env, lfsck, tfid);
2707                 if (IS_ERR(parent))
2708                         RETURN(PTR_ERR(parent));
2709
2710                 if (!dt_object_exists(parent)) {
2711                         lfsck_object_put(env, parent);
2712                         if (ldata->ld_leh->leh_reccount > 1) {
2713                                 /* If it is NOT the last linkEA entry, then
2714                                  * there is still other chance to make the
2715                                  * child to be visible via other parent, then
2716                                  * remove this linkEA entry. */
2717                                 linkea_del_buf(ldata, cname);
2718                                 linkea_count++;
2719                                 continue;
2720                         }
2721
2722                         break;
2723                 }
2724
2725                 /* The linkEA entry with bad parent will be removed. */
2726                 if (unlikely(!dt_try_as_dir(env, parent))) {
2727                         lfsck_object_put(env, parent);
2728                         linkea_del_buf(ldata, cname);
2729                         linkea_count++;
2730                         continue;
2731                 }
2732
2733                 rc = dt_lookup(env, parent, (struct dt_rec *)tfid,
2734                                (const struct dt_key *)cname->ln_name,
2735                                BYPASS_CAPA);
2736                 *pfid2 = *lfsck_dto2fid(parent);
2737                 if (rc == -ENOENT) {
2738                         lfsck_object_put(env, parent);
2739                         linkea_next_entry(ldata);
2740                         continue;
2741                 }
2742
2743                 if (rc != 0) {
2744                         lfsck_object_put(env, parent);
2745
2746                         RETURN(rc);
2747                 }
2748
2749                 if (lu_fid_eq(tfid, cfid)) {
2750                         lfsck_object_put(env, parent);
2751                         if (!lu_fid_eq(pfid, pfid2)) {
2752                                 *type = LNIT_UNMATCHED_PAIRS;
2753                                 rc = lfsck_namespace_repair_unmatched_pairs(env,
2754                                                 com, child, pfid2, cname);
2755
2756                                 RETURN(rc);
2757                         }
2758
2759 rebuild:
2760                         /* It is the most common case that we find the
2761                          * name entry corresponding to the linkEA entry
2762                          * that matches the ".." name entry. */
2763                         rc = linkea_data_new(&ldata_new, &info->lti_big_buf);
2764                         if (rc != 0)
2765                                 RETURN(rc);
2766
2767                         rc = linkea_add_buf(&ldata_new, cname, pfid2);
2768                         if (rc != 0)
2769                                 RETURN(rc);
2770
2771                         rc = lfsck_namespace_rebuild_linkea(env, com, child,
2772                                                             &ldata_new);
2773                         if (rc < 0)
2774                                 RETURN(rc);
2775
2776                         linkea_del_buf(ldata, cname);
2777                         linkea_count++;
2778                         linkea_first_entry(ldata);
2779                         /* There may be some invalid dangling name entries under
2780                          * other parent directories, remove all of them. */
2781                         while (ldata->ld_lee != NULL) {
2782                                 lfsck_namespace_unpack_linkea_entry(ldata,
2783                                                 cname, tfid, info->lti_key);
2784                                 if (!fid_is_sane(tfid))
2785                                         goto next;
2786
2787                                 parent = lfsck_object_find_bottom(env, lfsck,
2788                                                                   tfid);
2789                                 if (IS_ERR(parent)) {
2790                                         rc = PTR_ERR(parent);
2791                                         if (rc != -ENOENT &&
2792                                             bk->lb_param & LPF_FAILOUT)
2793                                                 RETURN(rc);
2794
2795                                         goto next;
2796                                 }
2797
2798                                 if (!dt_object_exists(parent)) {
2799                                         lfsck_object_put(env, parent);
2800                                         goto next;
2801                                 }
2802
2803                                 rc = lfsck_namespace_repair_dirent(env, com,
2804                                         parent, child, cname->ln_name,
2805                                         cname->ln_name, S_IFDIR, false, true);
2806                                 lfsck_object_put(env, parent);
2807                                 if (rc < 0) {
2808                                         if (bk->lb_param & LPF_FAILOUT)
2809                                                 RETURN(rc);
2810
2811                                         goto next;
2812                                 }
2813
2814                                 dirent_count += rc;
2815
2816 next:
2817                                 linkea_del_buf(ldata, cname);
2818                         }
2819
2820                         ns->ln_dirent_repaired += dirent_count;
2821
2822                         RETURN(rc);
2823                 }
2824
2825                 lfsck_ibits_unlock(lh, LCK_EX);
2826                 /* The name entry references another MDT-object that may be
2827                  * created by the LFSCK for repairing dangling name entry.
2828                  * Try to replace it. */
2829                 rc = lfsck_namespace_replace_cond(env, com, parent, child,
2830                                                   tfid, cname);
2831                 lfsck_object_put(env, parent);
2832                 if (rc < 0)
2833                         RETURN(rc);
2834
2835                 if (rc > 0)
2836                         goto rebuild;
2837
2838                 linkea_del_buf(ldata, cname);
2839         }
2840
2841         linkea_first_entry(ldata);
2842         if (ldata->ld_leh->leh_reccount == 1) {
2843                 rc = lfsck_namespace_dsd_single(env, com, child, pfid, ldata,
2844                                                 lh, type, NULL);
2845
2846                 if (rc == 0 && fid_is_zero(pfid) && linkea_count > 0)
2847                         rc = lfsck_namespace_rebuild_linkea(env, com, child,
2848                                                             ldata);
2849
2850                 RETURN(rc);
2851         }
2852
2853         /* All linkEA entries are invalid and removed, then handle the @child
2854          * as an orphan.*/
2855         if (ldata->ld_leh->leh_reccount == 0) {
2856                 rc = lfsck_namespace_dsd_orphan(env, com, child, pfid, lh,
2857                                                 type);
2858
2859                 RETURN(rc);
2860         }
2861
2862         /* If the dangling name entry for the orphan directory object has
2863          * been remvoed, then just check whether the directory object is
2864          * still under the .lustre/lost+found/MDTxxxx/ or not. */
2865         if (lpf) {
2866                 lpf = false;
2867                 goto again;
2868         }
2869
2870         /* There is no linkEA entry that matches the ".." name entry. Find
2871          * the first linkEA entry that both parent and name entry exist to
2872          * rebuild a new ".." name entry. */
2873         if (once) {
2874                 once = false;
2875                 goto again;
2876         }
2877
2878         RETURN(rc);
2879 }
2880
2881 /**
2882  * Repair the object's nlink attribute.
2883  *
2884  * If all the known name entries have been verified, then the object's hard
2885  * link attribute should match the object's linkEA entries count unless the
2886  * object's has too much hard link to be recorded in the linkEA. Such cases
2887  * should have been marked in the LFSCK trace file. Otherwise, trust the
2888  * linkEA to update the object's nlink attribute.
2889  *
2890  * \param[in] env       pointer to the thread context
2891  * \param[in] com       pointer to the lfsck component
2892  * \param[in] obj       pointer to the dt_object to be handled
2893  * \param[in,out] nlink pointer to buffer to object's hard lock count before
2894  *                      and after the repairing
2895  *
2896  * \retval              positive number for repaired cases
2897  * \retval              0 if nothing to be repaired
2898  * \retval              negative error number on failure
2899  */
2900 static int lfsck_namespace_repair_nlink(const struct lu_env *env,
2901                                         struct lfsck_component *com,
2902                                         struct dt_object *obj, __u32 *nlink)
2903 {
2904         struct lfsck_thread_info        *info   = lfsck_env_info(env);
2905         struct lu_attr                  *la     = &info->lti_la3;
2906         struct lu_fid                   *tfid   = &info->lti_fid3;
2907         struct lfsck_namespace          *ns     = com->lc_file_ram;
2908         struct lfsck_instance           *lfsck  = com->lc_lfsck;
2909         struct dt_device                *dev    = lfsck->li_bottom;
2910         const struct lu_fid             *cfid   = lfsck_dto2fid(obj);
2911         struct dt_object                *child  = NULL;
2912         struct thandle                  *th     = NULL;
2913         struct linkea_data               ldata  = { 0 };
2914         struct lustre_handle             lh     = { 0 };
2915         __u32                            old    = *nlink;
2916         int                              rc     = 0;
2917         __u8                             flags;
2918         ENTRY;
2919
2920         LASSERT(!dt_object_remote(obj));
2921         LASSERT(S_ISREG(lfsck_object_type(obj)));
2922
2923         child = lfsck_object_find_by_dev(env, dev, cfid);
2924         if (IS_ERR(child))
2925                 GOTO(log, rc = PTR_ERR(child));
2926
2927         rc = lfsck_ibits_lock(env, lfsck, child, &lh,
2928                               MDS_INODELOCK_UPDATE |
2929                               MDS_INODELOCK_XATTR, LCK_EX);
2930         if (rc != 0)
2931                 GOTO(log, rc);
2932
2933         th = dt_trans_create(env, dev);
2934         if (IS_ERR(th))
2935                 GOTO(log, rc = PTR_ERR(th));
2936
2937         la->la_valid = LA_NLINK;
2938         rc = dt_declare_attr_set(env, child, la, th);
2939         if (rc != 0)
2940                 GOTO(stop, rc);
2941
2942         rc = dt_trans_start_local(env, dev, th);
2943         if (rc != 0)
2944                 GOTO(stop, rc);
2945
2946         dt_write_lock(env, child, 0);
2947         /* If the LFSCK is marked as LF_INCOMPLETE, then means some MDT has
2948          * ever tried to verify some remote MDT-object that resides on this
2949          * MDT, but this MDT failed to respond such request. So means there
2950          * may be some remote name entry on other MDT that references this
2951          * object with another name, so we cannot know whether this linkEA
2952          * is valid or not. So keep it there and maybe resolved when next
2953          * LFSCK run. */
2954         if (ns->ln_flags & LF_INCOMPLETE)
2955                 GOTO(unlock, rc = 0);
2956
2957         fid_cpu_to_be(tfid, cfid);
2958         rc = dt_lookup(env, com->lc_obj, (struct dt_rec *)&flags,
2959                        (const struct dt_key *)tfid, BYPASS_CAPA);
2960         if (rc != 0)
2961                 GOTO(unlock, rc);
2962
2963         if (flags & LNTF_SKIP_NLINK)
2964                 GOTO(unlock, rc = 0);
2965
2966         rc = lfsck_links_read2(env, child, &ldata);
2967         if (rc == -ENODATA)
2968                 GOTO(unlock, rc = 0);
2969
2970         if (rc != 0)
2971                 GOTO(unlock, rc);
2972
2973         if (*nlink == ldata.ld_leh->leh_reccount)
2974                 GOTO(unlock, rc = 0);
2975
2976         la->la_nlink = *nlink = ldata.ld_leh->leh_reccount;
2977         if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN)
2978                 GOTO(unlock, rc = 1);
2979
2980         rc = dt_attr_set(env, child, la, th, BYPASS_CAPA);
2981
2982         GOTO(unlock, rc = (rc == 0 ? 1 : rc));
2983
2984 unlock:
2985         dt_write_unlock(env, child);
2986
2987 stop:
2988         dt_trans_stop(env, dev, th);
2989
2990 log:
2991         lfsck_ibits_unlock(&lh, LCK_EX);
2992         if (child != NULL && !IS_ERR(child))
2993                 lfsck_object_put(env, child);
2994
2995         CDEBUG(D_LFSCK, "%s: namespace LFSCK repaired the object "DFID"'s "
2996                "nlink count from %u to %u: rc = %d\n",
2997                lfsck_lfsck2name(lfsck), PFID(cfid), old, *nlink, rc);
2998
2999         if (rc != 0)
3000                 ns->ln_flags |= LF_INCONSISTENT;
3001
3002         return rc;
3003 }
3004
3005 /**
3006  * Double scan the directory object for namespace LFSCK.
3007  *
3008  * This function will verify the <parent, child> pairs in the namespace tree:
3009  * the parent references the child via some name entry that should be in the
3010  * child's linkEA entry, the child should back references the parent via its
3011  * ".." name entry.
3012  *
3013  * The LFSCK will scan every linkEA entry in turn until find out the first
3014  * matched pairs. If found, then all other linkEA entries will be dropped.
3015  * If all the linkEA entries cannot match the ".." name entry, then there
3016  * are serveral possible cases:
3017  *
3018  * 1) If there is only one linkEA entry, then trust it as long as the PFID
3019  *    in the linkEA entry is valid.
3020  *
3021  * 2) If there are multiple linkEA entries, then try to find the linkEA
3022  *    that matches the ".." name entry. If found, then all other entries
3023  *    are invalid; otherwise, it is quite possible that the ".." name entry
3024  *    is corrupted. Under such case, the LFSCK will rebuild the ".." name
3025  *    entry according to the first valid linkEA entry (both the parent and
3026  *    the name entry should exist).
3027  *
3028  * 3) If the directory object has no (valid) linkEA entry, then the
3029  *    directory object will be handled as pure orphan and inserted
3030  *    in the .lustre/lost+found/MDTxxxx/ with the name:
3031  *    ${self_FID}-${PFID}-D-${conflict_version}
3032  *
3033  * \param[in] env       pointer to the thread context
3034  * \param[in] com       pointer to the lfsck component
3035  * \param[in] child     pointer to the directory object to be handled
3036  * \param[in] flags     to indicate the specical checking on the @child
3037  *
3038  * \retval              positive number for repaired cases
3039  * \retval              0 if nothing to be repaired
3040  * \retval              negative error number on failure
3041  */
3042 static int lfsck_namespace_double_scan_dir(const struct lu_env *env,
3043                                            struct lfsck_component *com,
3044                                            struct dt_object *child, __u8 flags)
3045 {
3046         struct lfsck_thread_info *info          = lfsck_env_info(env);
3047         const struct lu_fid      *cfid          = lfsck_dto2fid(child);
3048         struct lu_fid            *pfid          = &info->lti_fid2;
3049         struct lfsck_namespace   *ns            = com->lc_file_ram;
3050         struct lfsck_instance    *lfsck         = com->lc_lfsck;
3051         struct lustre_handle      lh            = { 0 };
3052         struct linkea_data        ldata         = { 0 };
3053         bool                      unknown       = false;
3054         bool                      lpf           = false;
3055         bool                      retry         = false;
3056         enum lfsck_namespace_inconsistency_type type = LNIT_BAD_LINKEA;
3057         int                       rc            = 0;
3058         ENTRY;
3059
3060         LASSERT(!dt_object_remote(child));
3061
3062         if (flags & LNTF_UNCERTAIN_LMV) {
3063                 if (flags & LNTF_RECHECK_NAME_HASH) {
3064                         rc = lfsck_namespace_scan_shard(env, com, child);
3065                         if (rc < 0)
3066                                 RETURN(rc);
3067
3068                         ns->ln_striped_shards_scanned++;
3069                 } else {
3070                         ns->ln_striped_shards_skipped++;
3071                 }
3072         }
3073
3074         flags &= ~(LNTF_RECHECK_NAME_HASH | LNTF_UNCERTAIN_LMV);
3075         if (flags == 0)
3076                 RETURN(0);
3077
3078         if (flags & (LNTF_CHECK_LINKEA | LNTF_CHECK_PARENT) &&
3079             !(lfsck->li_bookmark_ram.lb_param & LPF_ALL_TGT)) {
3080                 CDEBUG(D_LFSCK, "%s: some MDT(s) maybe NOT take part in the"
3081                        "the namespace LFSCK, then the LFSCK cannot guarantee"
3082                        "all the name entries have been verified in first-stage"
3083                        "scanning. So have to skip orphan related handling for"
3084                        "the directory object "DFID" with remote name entry\n",
3085                        lfsck_lfsck2name(lfsck), PFID(cfid));
3086
3087                 RETURN(0);
3088         }
3089
3090         if (unlikely(!dt_try_as_dir(env, child)))
3091                 GOTO(out, rc = -ENOTDIR);
3092
3093         /* We only take ldlm lock on the @child when required. When the
3094          * logic comes here for the first time, it is always false. */
3095         if (0) {
3096
3097 lock:
3098                 rc = lfsck_ibits_lock(env, lfsck, child, &lh,
3099                                       MDS_INODELOCK_UPDATE |
3100                                       MDS_INODELOCK_XATTR, LCK_EX);
3101                 if (rc != 0)
3102                         GOTO(out, rc);
3103         }
3104
3105         dt_read_lock(env, child, 0);
3106         if (unlikely(lfsck_is_dead_obj(child))) {
3107                 dt_read_unlock(env, child);
3108
3109                 GOTO(out, rc = 0);
3110         }
3111
3112         rc = dt_lookup(env, child, (struct dt_rec *)pfid,
3113                        (const struct dt_key *)dotdot, BYPASS_CAPA);
3114         if (rc != 0) {
3115                 if (rc != -ENOENT && rc != -ENODATA && rc != -EINVAL) {
3116                         dt_read_unlock(env, child);
3117
3118                         GOTO(out, rc);
3119                 }
3120
3121                 if (!lustre_handle_is_used(&lh)) {
3122                         dt_read_unlock(env, child);
3123                         goto lock;
3124                 }
3125
3126                 fid_zero(pfid);
3127         } else if (lfsck->li_lpf_obj != NULL &&
3128                    lu_fid_eq(pfid, lfsck_dto2fid(lfsck->li_lpf_obj))) {
3129                 lpf = true;
3130         } else if (unlikely(!fid_is_sane(pfid))) {
3131                 fid_zero(pfid);
3132         }
3133
3134         rc = lfsck_links_read(env, child, &ldata);
3135         dt_read_unlock(env, child);
3136         if (rc != 0) {
3137                 if (rc != -ENODATA && rc != -EINVAL)
3138                         GOTO(out, rc);
3139
3140                 if (!lustre_handle_is_used(&lh))
3141                         goto lock;
3142
3143                 if (rc == -EINVAL && !fid_is_zero(pfid)) {
3144                         /* Remove the corrupted linkEA. */
3145                         rc = lfsck_namespace_links_remove(env, com, child);
3146                         if (rc == 0)
3147                                 /* Here, because of the crashed linkEA, we
3148                                  * cannot know whether there is some parent
3149                                  * that references the child directory via
3150                                  * some name entry or not. So keep it there,
3151                                  * when the LFSCK run next time, if there is
3152                                  * some parent that references this object,
3153                                  * then the LFSCK can rebuild the linkEA;
3154                                  * otherwise, this object will be handled
3155                                  * as orphan as above. */
3156                                 unknown = true;
3157                 } else {
3158                         /* 1. If we have neither ".." nor linkEA,
3159                          *    then it is an orphan.
3160                          *
3161                          * 2. If we only have the ".." name entry,
3162                          *    but no parent references this child
3163                          *    directory, then handle it as orphan. */
3164                         lfsck_ibits_unlock(&lh, LCK_EX);
3165                         type = LNIT_MUL_REF;
3166
3167                         /* If the LFSCK is marked as LF_INCOMPLETE,
3168                          * then means some MDT has ever tried to
3169                          * verify some remote MDT-object that resides
3170                          * on this MDT, but this MDT failed to respond
3171                          * such request. So means there may be some
3172                          * remote name entry on other MDT that
3173                          * references this object with another name,
3174                          * so we cannot know whether this linkEA is
3175                          * valid or not. So keep it there and maybe
3176                          * resolved when next LFSCK run. */
3177                         if (ns->ln_flags & LF_INCOMPLETE)
3178                                 GOTO(out, rc = 0);
3179
3180                         snprintf(info->lti_tmpbuf, sizeof(info->lti_tmpbuf),
3181                                  "-"DFID, PFID(pfid));
3182                         rc = lfsck_namespace_insert_orphan(env, com, child,
3183                                                 info->lti_tmpbuf, "D", NULL);
3184                 }
3185
3186                 GOTO(out, rc);
3187         }
3188
3189         linkea_first_entry(&ldata);
3190         /* This is the most common case: the object has unique linkEA entry. */
3191         if (ldata.ld_leh->leh_reccount == 1) {
3192                 rc = lfsck_namespace_dsd_single(env, com, child, pfid, &ldata,
3193                                                 &lh, &type, &retry);
3194                 if (retry) {
3195                         LASSERT(!lustre_handle_is_used(&lh));
3196
3197                         retry = false;
3198                         goto lock;
3199                 }
3200
3201                 GOTO(out, rc);
3202         }
3203
3204         if (!lustre_handle_is_used(&lh))
3205                 goto lock;
3206
3207         if (unlikely(ldata.ld_leh->leh_reccount == 0)) {
3208                 rc = lfsck_namespace_dsd_orphan(env, com, child, pfid, &lh,
3209                                                 &type);
3210
3211                 GOTO(out, rc);
3212         }
3213
3214         /* When we come here, the cases usually like that:
3215          * 1) The directory object has a corrupted linkEA entry. During the
3216          *    first-stage scanning, the LFSCK cannot know such corruption,
3217          *    then it appends the right linkEA entry according to the found
3218          *    name entry after the bad one.
3219          *
3220          * 2) The directory object has a right linkEA entry. During the
3221          *    first-stage scanning, the LFSCK finds some bad name entry,
3222          *    but the LFSCK cannot aware that at that time, then it adds
3223          *    the bad linkEA entry for further processing. */
3224         rc = lfsck_namespace_dsd_multiple(env, com, child, pfid, &ldata,
3225                                           &lh, &type, lpf);
3226
3227         GOTO(out, rc);
3228
3229 out:
3230         lfsck_ibits_unlock(&lh, LCK_EX);
3231         if (rc > 0) {
3232                 switch (type) {
3233                 case LNIT_BAD_LINKEA:
3234                         ns->ln_linkea_repaired++;
3235                         break;
3236                 case LNIT_UNMATCHED_PAIRS:
3237                         ns->ln_unmatched_pairs_repaired++;
3238                         break;
3239                 case LNIT_MUL_REF:
3240                         ns->ln_mul_ref_repaired++;
3241                         break;
3242                 default:
3243                         break;
3244                 }
3245         }
3246
3247         if (unknown)
3248                 ns->ln_unknown_inconsistency++;
3249
3250         return rc;
3251 }
3252
3253 /**
3254  * Double scan the MDT-object for namespace LFSCK.
3255  *
3256  * If the MDT-object contains invalid or repeated linkEA entries, then drop
3257  * those entries from the linkEA; if the linkEA becomes empty or the object
3258  * has no linkEA, then it is an orphan and will be added into the directory
3259  * .lustre/lost+found/MDTxxxx/; if the remote parent is lost, then recreate
3260  * the remote parent; if the name entry corresponding to some linkEA entry
3261  * is lost, then add the name entry back to the namespace.
3262  *
3263  * \param[in] env       pointer to the thread context
3264  * \param[in] com       pointer to the lfsck component
3265  * \param[in] child     pointer to the dt_object to be handled
3266  * \param[in] flags     some hints to indicate how the @child should be handled
3267  *
3268  * \retval              positive number for repaired cases
3269  * \retval              0 if nothing to be repaired
3270  * \retval              negative error number on failure
3271  */
3272 static int lfsck_namespace_double_scan_one(const struct lu_env *env,
3273                                            struct lfsck_component *com,
3274                                            struct dt_object *child, __u8 flags)
3275 {
3276         struct lfsck_thread_info *info     = lfsck_env_info(env);
3277         struct lu_attr           *la       = &info->lti_la;
3278         struct lu_name           *cname    = &info->lti_name;
3279         struct lu_fid            *pfid     = &info->lti_fid;
3280         struct lu_fid            *cfid     = &info->lti_fid2;
3281         struct lfsck_instance    *lfsck    = com->lc_lfsck;
3282         struct lfsck_namespace   *ns       = com->lc_file_ram;
3283         struct dt_object         *parent   = NULL;
3284         struct linkea_data        ldata    = { 0 };
3285         bool                      repaired = false;
3286         int                       count    = 0;
3287         int                       rc;
3288         ENTRY;
3289
3290         dt_read_lock(env, child, 0);
3291         if (unlikely(lfsck_is_dead_obj(child))) {
3292                 dt_read_unlock(env, child);
3293
3294                 RETURN(0);
3295         }
3296
3297         if (S_ISDIR(lfsck_object_type(child))) {
3298                 dt_read_unlock(env, child);
3299                 rc = lfsck_namespace_double_scan_dir(env, com, child, flags);
3300
3301                 RETURN(rc);
3302         }
3303
3304         rc = lfsck_links_read(env, child, &ldata);
3305         dt_read_unlock(env, child);
3306         if (rc != 0)
3307                 GOTO(out, rc);
3308
3309         linkea_first_entry(&ldata);
3310         while (ldata.ld_lee != NULL) {
3311                 lfsck_namespace_unpack_linkea_entry(&ldata, cname, pfid,
3312                                                     info->lti_key);
3313                 rc = lfsck_namespace_filter_linkea_entry(&ldata, cname, pfid,
3314                                                          false);
3315                 /* Found repeated linkEA entries */
3316                 if (rc > 0) {
3317                         rc = lfsck_namespace_shrink_linkea(env, com, child,
3318                                                 &ldata, cname, pfid, false);
3319                         if (rc < 0)
3320                                 GOTO(out, rc);
3321
3322                         if (rc == 0)
3323                                 continue;
3324
3325                         repaired = true;
3326
3327                         /* fall through */
3328                 }
3329
3330                 /* Invalid PFID in the linkEA entry. */
3331                 if (!fid_is_sane(pfid)) {
3332                         rc = lfsck_namespace_shrink_linkea(env, com, child,
3333                                                 &ldata, cname, pfid, true);
3334                         if (rc < 0)
3335                                 GOTO(out, rc);
3336
3337                         if (rc > 0)
3338                                 repaired = true;
3339
3340                         continue;
3341                 }
3342
3343                 parent = lfsck_object_find_bottom(env, lfsck, pfid);
3344                 if (IS_ERR(parent))
3345                         GOTO(out, rc = PTR_ERR(parent));
3346
3347                 if (!dt_object_exists(parent)) {
3348
3349 lost_parent:
3350                         if (ldata.ld_leh->leh_reccount > 1) {
3351                                 /* If it is NOT the last linkEA entry, then
3352                                  * there is still other chance to make the
3353                                  * child to be visible via other parent, then
3354                                  * remove this linkEA entry. */
3355                                 rc = lfsck_namespace_shrink_linkea(env, com,
3356                                         child, &ldata, cname, pfid, true);
3357                         } else {
3358                                 /* If the LFSCK is marked as LF_INCOMPLETE,
3359                                  * then means some MDT has ever tried to
3360                                  * verify some remote MDT-object that resides
3361                                  * on this MDT, but this MDT failed to respond
3362                                  * such request. So means there may be some
3363                                  * remote name entry on other MDT that
3364                                  * references this object with another name,
3365                                  * so we cannot know whether this linkEA is
3366                                  * valid or not. So keep it there and maybe
3367                                  * resolved when next LFSCK run. */
3368                                 if (ns->ln_flags & LF_INCOMPLETE) {
3369                                         lfsck_object_put(env, parent);
3370
3371                                         GOTO(out, rc = 0);
3372                                 }
3373
3374                                 /* Create the lost parent as an orphan. */
3375                                 rc = lfsck_namespace_create_orphan(env, com,
3376                                                                 parent, NULL);
3377                                 if (rc < 0) {
3378                                         lfsck_object_put(env, parent);
3379
3380                                         GOTO(out, rc);
3381                                 }
3382
3383                                 if (rc > 0)
3384                                         repaired = true;
3385
3386                                 /* Add the missing name entry to the parent. */
3387                                 rc = lfsck_namespace_insert_normal(env, com,
3388                                                 parent, child, cname->ln_name);
3389                                 if (unlikely(rc == -EEXIST))
3390                                         /* Unfortunately, someone reused the
3391                                          * name under the parent by race. So we
3392                                          * have to remove the linkEA entry from
3393                                          * current child object. It means that
3394                                          * the LFSCK cannot recover the system
3395                                          * totally back to its original status,
3396                                          * but it is necessary to make the
3397                                          * current system to be consistent. */
3398                                         rc = lfsck_namespace_shrink_linkea(env,
3399                                                         com, child, &ldata,
3400                                                         cname, pfid, true);
3401                                 else
3402                                         linkea_next_entry(&ldata);
3403                         }
3404
3405                         lfsck_object_put(env, parent);
3406                         if (rc < 0)
3407                                 GOTO(out, rc);
3408
3409                         if (rc > 0)
3410                                 repaired = true;
3411
3412                         continue;
3413                 }
3414
3415                 /* The linkEA entry with bad parent will be removed. */
3416                 if (unlikely(!dt_try_as_dir(env, parent))) {
3417                         lfsck_object_put(env, parent);
3418                         rc = lfsck_namespace_shrink_linkea(env, com, child,
3419                                                 &ldata, cname, pfid, true);
3420                         if (rc < 0)
3421                                 GOTO(out, rc);
3422
3423                         if (rc > 0)
3424                                 repaired = true;
3425
3426                         continue;
3427                 }
3428
3429                 rc = dt_lookup(env, parent, (struct dt_rec *)cfid,
3430                                (const struct dt_key *)cname->ln_name,
3431                                BYPASS_CAPA);
3432                 if (rc != 0 && rc != -ENOENT) {
3433                         lfsck_object_put(env, parent);
3434
3435                         GOTO(out, rc);
3436                 }
3437
3438                 if (rc == 0) {
3439                         if (lu_fid_eq(cfid, lfsck_dto2fid(child))) {
3440                                 /* It is the most common case that we
3441                                  * find the name entry corresponding
3442                                  * to the linkEA entry. */
3443                                 lfsck_object_put(env, parent);
3444                                 linkea_next_entry(&ldata);
3445                         } else {
3446                                 /* The name entry references another
3447                                  * MDT-object that may be created by
3448                                  * the LFSCK for repairing dangling
3449                                  * name entry. Try to replace it. */
3450                                 rc = lfsck_namespace_replace_cond(env, com,
3451                                                 parent, child, cfid, cname);
3452                                 lfsck_object_put(env, parent);
3453                                 if (rc < 0)
3454                                         GOTO(out, rc);
3455
3456                                 if (rc > 0) {
3457                                         repaired = true;
3458                                         linkea_next_entry(&ldata);
3459                                 } else {
3460                                         rc = lfsck_namespace_shrink_linkea(env,
3461                                                         com, child, &ldata,
3462                                                         cname, pfid, true);
3463                                         if (rc < 0)
3464                                                 GOTO(out, rc);
3465
3466                                         if (rc > 0)
3467                                                 repaired = true;
3468                                 }
3469                         }
3470
3471                         continue;
3472                 }
3473
3474                 rc = dt_attr_get(env, child, la, BYPASS_CAPA);
3475                 if (rc != 0)
3476                         GOTO(out, rc);
3477
3478                 /* If there is no name entry in the parent dir and the object
3479                  * link count is less than the linkea entries count, then the
3480                  * linkea entry should be removed. */
3481                 if (ldata.ld_leh->leh_reccount > la->la_nlink) {
3482                         rc = lfsck_namespace_shrink_linkea_cond(env, com,
3483                                         parent, child, &ldata, cname, pfid);
3484                         lfsck_object_put(env, parent);
3485                         if (rc < 0)
3486                                 GOTO(out, rc);
3487
3488                         if (rc > 0)
3489                                 repaired = true;
3490
3491                         continue;
3492                 }
3493
3494                 /* If the LFSCK is marked as LF_INCOMPLETE, then means some
3495                  * MDT has ever tried to verify some remote MDT-object that
3496                  * resides on this MDT, but this MDT failed to respond such
3497                  * request. So means there may be some remote name entry on
3498                  * other MDT that references this object with another name,
3499                  * so we cannot know whether this linkEA is valid or not.
3500                  * So keep it there and maybe resolved when next LFSCK run. */
3501                 if (ns->ln_flags & LF_INCOMPLETE) {
3502                         lfsck_object_put(env, parent);
3503
3504                         GOTO(out, rc = 0);
3505                 }
3506
3507                 rc = lfsck_namespace_check_name(env, parent, child, cname);
3508                 if (rc == -ENOENT)
3509                         goto lost_parent;
3510
3511                 if (rc < 0) {
3512                         lfsck_object_put(env, parent);
3513
3514                         GOTO(out, rc);
3515                 }
3516
3517                 /* It is an invalid name entry, drop it. */
3518                 if (unlikely(rc > 0)) {
3519                         lfsck_object_put(env, parent);
3520                         rc = lfsck_namespace_shrink_linkea(env, com, child,
3521                                                 &ldata, cname, pfid, true);
3522                         if (rc < 0)
3523                                 GOTO(out, rc);
3524
3525                         if (rc > 0)
3526                                 repaired = true;
3527
3528                         continue;
3529                 }
3530
3531                 /* Add the missing name entry back to the namespace. */
3532                 rc = lfsck_namespace_insert_normal(env, com, parent, child,
3533                                                    cname->ln_name);
3534                 if (unlikely(rc == -ESTALE))
3535                         /* It may happen when the remote object has been
3536                          * removed, but the local MDT is not aware of that. */
3537                         goto lost_parent;
3538
3539                 if (unlikely(rc == -EEXIST))
3540                         /* Unfortunately, someone reused the name under the
3541                          * parent by race. So we have to remove the linkEA
3542                          * entry from current child object. It means that the
3543                          * LFSCK cannot recover the system totally back to
3544                          * its original status, but it is necessary to make
3545                          * the current system to be consistent.
3546                          *
3547                          * It also may be because of the LFSCK found some
3548                          * internal status of create operation. Under such
3549                          * case, nothing to be done. */
3550                         rc = lfsck_namespace_shrink_linkea_cond(env, com,
3551                                         parent, child, &ldata, cname, pfid);
3552                 else
3553                         linkea_next_entry(&ldata);
3554
3555                 lfsck_object_put(env, parent);
3556                 if (rc < 0)
3557                         GOTO(out, rc);
3558
3559                 if (rc > 0)
3560                         repaired = true;
3561         }
3562
3563         GOTO(out, rc = 0);
3564
3565 out:
3566         if (rc < 0 && rc != -ENODATA)
3567                 return rc;
3568
3569         if (rc == 0) {
3570                 LASSERT(ldata.ld_leh != NULL);
3571
3572                 count = ldata.ld_leh->leh_reccount;
3573         }
3574
3575         /* If the LFSCK is marked as LF_INCOMPLETE, then means some
3576          * MDT has ever tried to verify some remote MDT-object that
3577          * resides on this MDT, but this MDT failed to respond such
3578          * request. So means there may be some remote name entry on
3579          * other MDT that references this object with another name,
3580          * so we cannot know whether this linkEA is valid or not.
3581          * So keep it there and maybe resolved when next LFSCK run. */
3582         if (count == 0 && !(ns->ln_flags & LF_INCOMPLETE)) {
3583                 /* If the child becomes orphan, then insert it into
3584                  * the global .lustre/lost+found/MDTxxxx directory. */
3585                 rc = lfsck_namespace_insert_orphan(env, com, child, "", "O",
3586                                                    &count);
3587                 if (rc < 0)
3588                         return rc;
3589
3590                 if (rc > 0) {
3591                         ns->ln_mul_ref_repaired++;
3592                         repaired = true;
3593                 }
3594         }
3595
3596         rc = dt_attr_get(env, child, la, BYPASS_CAPA);
3597         if (rc != 0)
3598                 return rc;
3599
3600         if (la->la_nlink != count) {
3601                 rc = lfsck_namespace_repair_nlink(env, com, child,
3602                                                   &la->la_nlink);
3603                 if (rc > 0) {
3604                         ns->ln_objs_nlink_repaired++;
3605                         rc = 0;
3606                 }
3607         }
3608
3609         if (repaired) {
3610                 if (la->la_nlink > 1)
3611                         ns->ln_mul_linked_repaired++;
3612
3613                 if (rc == 0)
3614                         rc = 1;
3615         }
3616
3617         return rc;
3618 }
3619
3620 static void lfsck_namespace_dump_statistics(struct seq_file *m,
3621                                             struct lfsck_namespace *ns,
3622                                             __u64 checked_phase1,
3623                                             __u64 checked_phase2,
3624                                             __u32 time_phase1,
3625                                             __u32 time_phase2)
3626 {
3627         seq_printf(m, "checked_phase1: "LPU64"\n"
3628                       "checked_phase2: "LPU64"\n"
3629                       "updated_phase1: "LPU64"\n"
3630                       "updated_phase2: "LPU64"\n"
3631                       "failed_phase1: "LPU64"\n"
3632                       "failed_phase2: "LPU64"\n"
3633                       "directories: "LPU64"\n"
3634                       "dirent_repaired: "LPU64"\n"
3635                       "linkea_repaired: "LPU64"\n"
3636                       "nlinks_repaired: "LPU64"\n"
3637                       "multiple_linked_checked: "LPU64"\n"
3638                       "multiple_linked_repaired: "LPU64"\n"
3639                       "unknown_inconsistency: "LPU64"\n"
3640                       "unmatched_pairs_repaired: "LPU64"\n"
3641                       "dangling_repaired: "LPU64"\n"
3642                       "multiple_referenced_repaired: "LPU64"\n"
3643                       "bad_file_type_repaired: "LPU64"\n"
3644                       "lost_dirent_repaired: "LPU64"\n"
3645                       "local_lost_found_scanned: "LPU64"\n"
3646                       "local_lost_found_moved: "LPU64"\n"
3647                       "local_lost_found_skipped: "LPU64"\n"
3648                       "local_lost_found_failed: "LPU64"\n"
3649                       "striped_dirs_scanned: "LPU64"\n"
3650                       "striped_dirs_repaired: "LPU64"\n"
3651                       "striped_dirs_failed: "LPU64"\n"
3652                       "striped_dirs_disabled: "LPU64"\n"
3653                       "striped_dirs_skipped: "LPU64"\n"
3654                       "striped_shards_scanned: "LPU64"\n"
3655                       "striped_shards_repaired: "LPU64"\n"
3656                       "striped_shards_failed: "LPU64"\n"
3657                       "striped_shards_skipped: "LPU64"\n"
3658                       "name_hash_repaired: "LPU64"\n"
3659                       "success_count: %u\n"
3660                       "run_time_phase1: %u seconds\n"
3661                       "run_time_phase2: %u seconds\n",
3662                       checked_phase1,
3663                       checked_phase2,
3664                       ns->ln_items_repaired,
3665                       ns->ln_objs_repaired_phase2,
3666                       ns->ln_items_failed,
3667                       ns->ln_objs_failed_phase2,
3668                       ns->ln_dirs_checked,
3669                       ns->ln_dirent_repaired,
3670                       ns->ln_linkea_repaired,
3671                       ns->ln_objs_nlink_repaired,
3672                       ns->ln_mul_linked_checked,
3673                       ns->ln_mul_linked_repaired,
3674                       ns->ln_unknown_inconsistency,
3675                       ns->ln_unmatched_pairs_repaired,
3676                       ns->ln_dangling_repaired,
3677                       ns->ln_mul_ref_repaired,
3678                       ns->ln_bad_type_repaired,
3679                       ns->ln_lost_dirent_repaired,
3680                       ns->ln_local_lpf_scanned,
3681                       ns->ln_local_lpf_moved,
3682                       ns->ln_local_lpf_skipped,
3683                       ns->ln_local_lpf_failed,
3684                       ns->ln_striped_dirs_scanned,
3685                       ns->ln_striped_dirs_repaired,
3686                       ns->ln_striped_dirs_failed,
3687                       ns->ln_striped_dirs_disabled,
3688                       ns->ln_striped_dirs_skipped,
3689                       ns->ln_striped_shards_scanned,
3690                       ns->ln_striped_shards_repaired,
3691                       ns->ln_striped_shards_failed,
3692                       ns->ln_striped_shards_skipped,
3693                       ns->ln_name_hash_repaired,
3694                       ns->ln_success_count,
3695                       time_phase1,
3696                       time_phase2);
3697 }
3698
3699 static void lfsck_namespace_release_lmv(const struct lu_env *env,
3700                                         struct lfsck_component *com)
3701 {
3702         struct lfsck_instance           *lfsck  = com->lc_lfsck;
3703         struct lfsck_namespace          *ns     = com->lc_file_ram;
3704
3705         while (!list_empty(&lfsck->li_list_lmv)) {
3706                 struct lfsck_lmv_unit   *llu;
3707                 struct lfsck_lmv        *llmv;
3708
3709                 llu = list_entry(lfsck->li_list_lmv.next,
3710                                  struct lfsck_lmv_unit, llu_link);
3711                 llmv = &llu->llu_lmv;
3712
3713                 LASSERTF(atomic_read(&llmv->ll_ref) == 1,
3714                          "still in using: %u\n",
3715                          atomic_read(&llmv->ll_ref));
3716
3717                 ns->ln_striped_dirs_skipped++;
3718                 lfsck_lmv_put(env, llmv);
3719         }
3720 }
3721
3722 /* namespace APIs */
3723
3724 static int lfsck_namespace_reset(const struct lu_env *env,
3725                                  struct lfsck_component *com, bool init)
3726 {
3727         struct lfsck_instance           *lfsck  = com->lc_lfsck;
3728         struct lfsck_namespace          *ns     = com->lc_file_ram;
3729         struct lfsck_assistant_data     *lad    = com->lc_data;
3730         struct dt_object                *root;
3731         struct dt_object                *dto;
3732         int                              rc;
3733         ENTRY;
3734
3735         root = dt_locate(env, lfsck->li_bottom, &lfsck->li_local_root_fid);
3736         if (IS_ERR(root))
3737                 GOTO(log, rc = PTR_ERR(root));
3738
3739         if (unlikely(!dt_try_as_dir(env, root)))
3740                 GOTO(put, rc = -ENOTDIR);
3741
3742         down_write(&com->lc_sem);
3743         if (init) {
3744                 memset(ns, 0, sizeof(*ns));
3745         } else {
3746                 __u32 count = ns->ln_success_count;
3747                 __u64 last_time = ns->ln_time_last_complete;
3748
3749                 memset(ns, 0, sizeof(*ns));
3750                 ns->ln_success_count = count;
3751                 ns->ln_time_last_complete = last_time;
3752         }
3753         ns->ln_magic = LFSCK_NAMESPACE_MAGIC;
3754         ns->ln_status = LS_INIT;
3755
3756         rc = local_object_unlink(env, lfsck->li_bottom, root,
3757                                  lfsck_namespace_name);
3758         if (rc != 0)
3759                 GOTO(out, rc);
3760
3761         lfsck_object_put(env, com->lc_obj);
3762         com->lc_obj = NULL;
3763         dto = local_index_find_or_create(env, lfsck->li_los, root,
3764                                          lfsck_namespace_name,
3765                                          S_IFREG | S_IRUGO | S_IWUSR,
3766                                          &dt_lfsck_features);
3767         if (IS_ERR(dto))
3768                 GOTO(out, rc = PTR_ERR(dto));
3769
3770         com->lc_obj = dto;
3771         rc = dto->do_ops->do_index_try(env, dto, &dt_lfsck_features);
3772         if (rc != 0)
3773                 GOTO(out, rc);
3774
3775         lad->lad_incomplete = 0;
3776         CFS_RESET_BITMAP(lad->lad_bitmap);
3777
3778         rc = lfsck_namespace_store(env, com, true);
3779
3780         GOTO(out, rc);
3781
3782 out:
3783         up_write(&com->lc_sem);
3784
3785 put:
3786         lu_object_put(env, &root->do_lu);
3787 log:
3788         CDEBUG(D_LFSCK, "%s: namespace LFSCK reset: rc = %d\n",
3789                lfsck_lfsck2name(lfsck), rc);
3790         return rc;
3791 }
3792
3793 static void
3794 lfsck_namespace_fail(const struct lu_env *env, struct lfsck_component *com,
3795                      bool new_checked)
3796 {
3797         struct lfsck_namespace *ns = com->lc_file_ram;
3798
3799         down_write(&com->lc_sem);
3800         if (new_checked)
3801                 com->lc_new_checked++;
3802         lfsck_namespace_record_failure(env, com->lc_lfsck, ns);
3803         up_write(&com->lc_sem);
3804 }
3805
3806 static void lfsck_namespace_close_dir(const struct lu_env *env,
3807                                       struct lfsck_component *com)
3808 {
3809         struct lfsck_namespace          *ns     = com->lc_file_ram;
3810         struct lfsck_assistant_data     *lad    = com->lc_data;
3811         struct lfsck_instance           *lfsck  = com->lc_lfsck;
3812         struct lfsck_lmv                *llmv   = lfsck->li_lmv;
3813         struct lfsck_namespace_req      *lnr;
3814         __u32                            size   =
3815                                 sizeof(*lnr) + LFSCK_TMPBUF_LEN;
3816         bool                             wakeup = false;
3817         ENTRY;
3818
3819         if (llmv == NULL)
3820                 RETURN_EXIT;
3821
3822         OBD_ALLOC(lnr, size);
3823         if (lnr == NULL) {
3824                 ns->ln_striped_dirs_skipped++;
3825
3826                 RETURN_EXIT;
3827         }
3828
3829         /* Generate a dummy request to indicate that all shards' name entry
3830          * in this striped directory has been scanned for the first time. */
3831         INIT_LIST_HEAD(&lnr->lnr_lar.lar_list);
3832         lnr->lnr_obj = lfsck_object_get(lfsck->li_obj_dir);
3833         lnr->lnr_lmv = lfsck_lmv_get(llmv);
3834         lnr->lnr_fid = *lfsck_dto2fid(lfsck->li_obj_dir);
3835         lnr->lnr_oit_cookie = lfsck->li_pos_current.lp_oit_cookie;
3836         lnr->lnr_dir_cookie = MDS_DIR_END_OFF;
3837         lnr->lnr_size = size;
3838
3839         spin_lock(&lad->lad_lock);
3840         if (lad->lad_assistant_status < 0) {
3841                 spin_unlock(&lad->lad_lock);
3842                 lfsck_namespace_assistant_req_fini(env, &lnr->lnr_lar);
3843                 ns->ln_striped_dirs_skipped++;
3844
3845                 RETURN_EXIT;
3846         }
3847
3848         list_add_tail(&lnr->lnr_lar.lar_list, &lad->lad_req_list);
3849         if (lad->lad_prefetched == 0)
3850                 wakeup = true;
3851
3852         lad->lad_prefetched++;
3853         spin_unlock(&lad->lad_lock);
3854         if (wakeup)
3855                 wake_up_all(&lad->lad_thread.t_ctl_waitq);
3856
3857         EXIT;
3858 }
3859
3860 static int lfsck_namespace_open_dir(const struct lu_env *env,
3861                                     struct lfsck_component *com)
3862 {
3863         struct lfsck_instance   *lfsck  = com->lc_lfsck;
3864         struct lfsck_namespace  *ns     = com->lc_file_ram;
3865         struct lfsck_lmv        *llmv   = lfsck->li_lmv;
3866         int                      rc     = 0;
3867         ENTRY;
3868
3869         if (llmv == NULL)
3870                 RETURN(0);
3871
3872         if (llmv->ll_lmv_master) {
3873                 struct lmv_mds_md_v1 *lmv = &llmv->ll_lmv;
3874
3875                 if (lmv->lmv_master_mdt_index !=
3876                     lfsck_dev_idx(lfsck->li_bottom)) {
3877                         lmv->lmv_master_mdt_index =
3878                                 lfsck_dev_idx(lfsck->li_bottom);
3879                         ns->ln_flags |= LF_INCONSISTENT;
3880                         llmv->ll_lmv_updated = 1;
3881                 }
3882         } else {
3883                 rc = lfsck_namespace_verify_stripe_slave(env, com,
3884                                         lfsck->li_obj_dir, llmv);
3885         }
3886
3887         RETURN(rc > 0 ? 0 : rc);
3888 }
3889
3890 static int lfsck_namespace_checkpoint(const struct lu_env *env,
3891                                       struct lfsck_component *com, bool init)
3892 {
3893         struct lfsck_instance   *lfsck = com->lc_lfsck;
3894         struct lfsck_namespace  *ns    = com->lc_file_ram;
3895         int                      rc;
3896
3897         if (!init) {
3898                 rc = lfsck_checkpoint_generic(env, com);
3899                 if (rc != 0)
3900                         goto log;
3901         }
3902
3903         down_write(&com->lc_sem);
3904         if (init) {
3905                 ns->ln_pos_latest_start = lfsck->li_pos_checkpoint;
3906         } else {
3907                 ns->ln_pos_last_checkpoint = lfsck->li_pos_checkpoint;
3908                 ns->ln_run_time_phase1 += cfs_duration_sec(cfs_time_current() +
3909                                 HALF_SEC - lfsck->li_time_last_checkpoint);
3910                 ns->ln_time_last_checkpoint = cfs_time_current_sec();
3911                 ns->ln_items_checked += com->lc_new_checked;
3912                 com->lc_new_checked = 0;
3913         }
3914
3915         rc = lfsck_namespace_store(env, com, false);
3916         up_write(&com->lc_sem);
3917
3918 log:
3919         CDEBUG(D_LFSCK, "%s: namespace LFSCK checkpoint at the pos ["LPU64
3920                ", "DFID", "LPX64"]: rc = %d\n", lfsck_lfsck2name(lfsck),
3921                lfsck->li_pos_current.lp_oit_cookie,
3922                PFID(&lfsck->li_pos_current.lp_dir_parent),
3923                lfsck->li_pos_current.lp_dir_cookie, rc);
3924
3925         return rc > 0 ? 0 : rc;
3926 }
3927
3928 static int lfsck_namespace_prep(const struct lu_env *env,
3929                                 struct lfsck_component *com,
3930                                 struct lfsck_start_param *lsp)
3931 {
3932         struct lfsck_instance   *lfsck  = com->lc_lfsck;
3933         struct lfsck_namespace  *ns     = com->lc_file_ram;
3934         struct lfsck_position   *pos    = &com->lc_pos_start;
3935         int                      rc;
3936
3937         rc = lfsck_namespace_load_bitmap(env, com);
3938         if (rc != 0 || ns->ln_status == LS_COMPLETED) {
3939                 rc = lfsck_namespace_reset(env, com, false);
3940                 if (rc == 0)
3941                         rc = lfsck_set_param(env, lfsck, lsp->lsp_start, true);
3942
3943                 if (rc != 0) {
3944                         CDEBUG(D_LFSCK, "%s: namespace LFSCK prep failed: "
3945                                "rc = %d\n", lfsck_lfsck2name(lfsck), rc);
3946
3947                         return rc;
3948                 }
3949         }
3950
3951         down_write(&com->lc_sem);
3952         ns->ln_time_latest_start = cfs_time_current_sec();
3953         spin_lock(&lfsck->li_lock);
3954
3955         if (ns->ln_flags & LF_SCANNED_ONCE) {
3956                 if (!lfsck->li_drop_dryrun ||
3957                     lfsck_pos_is_zero(&ns->ln_pos_first_inconsistent)) {
3958                         ns->ln_status = LS_SCANNING_PHASE2;
3959                         list_move_tail(&com->lc_link,
3960                                        &lfsck->li_list_double_scan);
3961                         if (!list_empty(&com->lc_link_dir))
3962                                 list_del_init(&com->lc_link_dir);
3963                         lfsck_pos_set_zero(pos);
3964                 } else {
3965                         ns->ln_status = LS_SCANNING_PHASE1;
3966                         ns->ln_run_time_phase1 = 0;
3967                         ns->ln_run_time_phase2 = 0;
3968                         ns->ln_items_checked = 0;
3969                         ns->ln_items_repaired = 0;
3970                         ns->ln_items_failed = 0;
3971                         ns->ln_dirs_checked = 0;
3972                         ns->ln_objs_checked_phase2 = 0;
3973                         ns->ln_objs_repaired_phase2 = 0;
3974                         ns->ln_objs_failed_phase2 = 0;
3975                         ns->ln_objs_nlink_repaired = 0;
3976                         ns->ln_dirent_repaired = 0;
3977                         ns->ln_linkea_repaired = 0;
3978                         ns->ln_mul_linked_checked = 0;
3979                         ns->ln_mul_linked_repaired = 0;
3980                         ns->ln_unknown_inconsistency = 0;
3981                         ns->ln_unmatched_pairs_repaired = 0;
3982                         ns->ln_dangling_repaired = 0;
3983                         ns->ln_mul_ref_repaired = 0;
3984                         ns->ln_bad_type_repaired = 0;
3985                         ns->ln_lost_dirent_repaired = 0;
3986                         ns->ln_striped_dirs_scanned = 0;
3987                         ns->ln_striped_dirs_repaired = 0;
3988                         ns->ln_striped_dirs_failed = 0;
3989                         ns->ln_striped_dirs_disabled = 0;
3990                         ns->ln_striped_dirs_skipped = 0;
3991                         ns->ln_striped_shards_scanned = 0;
3992                         ns->ln_striped_shards_repaired = 0;
3993                         ns->ln_striped_shards_failed = 0;
3994                         ns->ln_striped_shards_skipped = 0;
3995                         ns->ln_name_hash_repaired = 0;
3996                         fid_zero(&ns->ln_fid_latest_scanned_phase2);
3997                         if (list_empty(&com->lc_link_dir))
3998                                 list_add_tail(&com->lc_link_dir,
3999                                               &lfsck->li_list_dir);
4000                         *pos = ns->ln_pos_first_inconsistent;
4001                 }
4002         } else {
4003                 ns->ln_status = LS_SCANNING_PHASE1;
4004                 if (list_empty(&com->lc_link_dir))
4005                         list_add_tail(&com->lc_link_dir,
4006                                       &lfsck->li_list_dir);
4007                 if (!lfsck->li_drop_dryrun ||
4008                     lfsck_pos_is_zero(&ns->ln_pos_first_inconsistent)) {
4009                         *pos = ns->ln_pos_last_checkpoint;
4010                         pos->lp_oit_cookie++;
4011                 } else {
4012                         *pos = ns->ln_pos_first_inconsistent;
4013                 }
4014         }
4015
4016         spin_unlock(&lfsck->li_lock);
4017         up_write(&com->lc_sem);
4018
4019         rc = lfsck_start_assistant(env, com, lsp);
4020
4021         CDEBUG(D_LFSCK, "%s: namespace LFSCK prep done, start pos ["LPU64", "
4022                DFID", "LPX64"]: rc = %d\n",
4023                lfsck_lfsck2name(lfsck), pos->lp_oit_cookie,
4024                PFID(&pos->lp_dir_parent), pos->lp_dir_cookie, rc);
4025
4026         return rc;
4027 }
4028
4029 static int lfsck_namespace_exec_oit(const struct lu_env *env,
4030                                     struct lfsck_component *com,
4031                                     struct dt_object *obj)
4032 {
4033         struct lfsck_thread_info *info  = lfsck_env_info(env);
4034         struct lfsck_namespace   *ns    = com->lc_file_ram;
4035         struct lfsck_instance    *lfsck = com->lc_lfsck;
4036         const struct lu_fid      *fid   = lfsck_dto2fid(obj);
4037         struct lu_attr           *la    = &info->lti_la;
4038         struct lu_fid            *pfid  = &info->lti_fid2;
4039         struct lu_name           *cname = &info->lti_name;
4040         struct lu_seq_range      *range = &info->lti_range;
4041         struct dt_device         *dev   = lfsck->li_bottom;
4042         struct seq_server_site   *ss    =
4043                                 lu_site2seq(dev->dd_lu_dev.ld_site);
4044         struct linkea_data        ldata = { 0 };
4045         __u32                     idx   = lfsck_dev_idx(dev);
4046         int                       rc;
4047         ENTRY;
4048
4049         rc = lfsck_links_read(env, obj, &ldata);
4050         if (rc == -ENOENT)
4051                 GOTO(out, rc = 0);
4052
4053         /* -EINVAL means crashed linkEA, should be verified. */
4054         if (rc == -EINVAL) {
4055                 rc = lfsck_namespace_trace_update(env, com, fid,
4056                                                   LNTF_CHECK_LINKEA, true);
4057                 if (rc == 0) {
4058                         struct lustre_handle lh = { 0 };
4059
4060                         rc = lfsck_ibits_lock(env, lfsck, obj, &lh,
4061                                               MDS_INODELOCK_UPDATE |
4062                                               MDS_INODELOCK_XATTR, LCK_EX);
4063                         if (rc == 0) {
4064                                 rc = lfsck_namespace_links_remove(env, com,
4065                                                                   obj);
4066                                 lfsck_ibits_unlock(&lh, LCK_EX);
4067                         }
4068                 }
4069
4070                 GOTO(out, rc = (rc == -ENOENT ? 0 : rc));
4071         }
4072
4073         /* zero-linkEA object may be orphan, but it also maybe because
4074          * of upgrading. Currently, we cannot record it for double scan.
4075          * Because it may cause the LFSCK trace file to be too large. */
4076         if (rc == -ENODATA) {
4077                 if (S_ISDIR(lfsck_object_type(obj)))
4078                         GOTO(out, rc = 0);
4079
4080                 rc = dt_attr_get(env, obj, la, BYPASS_CAPA);
4081                 if (rc != 0)
4082                         GOTO(out, rc);
4083
4084                 /* "la_ctime" == 1 means that it has ever been removed from
4085                  * backend /lost+found directory but not been added back to
4086                  * the normal namespace yet. */
4087                 if (la->la_nlink > 1 || unlikely(la->la_ctime == 1))
4088                         rc = lfsck_namespace_trace_update(env, com, fid,
4089                                                 LNTF_CHECK_LINKEA, true);
4090
4091                 GOTO(out, rc);
4092         }
4093
4094         if (rc != 0)
4095                 GOTO(out, rc);
4096
4097         /* Record multiple-linked object. */
4098         if (ldata.ld_leh->leh_reccount > 1) {
4099                 rc = lfsck_namespace_trace_update(env, com, fid,
4100                                                   LNTF_CHECK_LINKEA, true);
4101
4102                 GOTO(out, rc);
4103         }
4104
4105         linkea_first_entry(&ldata);
4106         linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen, cname, pfid);
4107         if (!fid_is_sane(pfid)) {
4108                 rc = lfsck_namespace_trace_update(env, com, fid,
4109                                                   LNTF_CHECK_PARENT, true);
4110         } else {
4111                 fld_range_set_mdt(range);
4112                 rc = fld_local_lookup(env, ss->ss_server_fld,
4113                                       fid_seq(pfid), range);
4114                 if ((rc == -ENOENT) ||
4115                     (rc == 0 && range->lsr_index != idx)) {
4116                         rc = lfsck_namespace_trace_update(env, com, fid,
4117                                                 LNTF_CHECK_LINKEA, true);
4118                 } else {
4119                         if (S_ISDIR(lfsck_object_type(obj)))
4120                                 GOTO(out, rc = 0);
4121
4122                         rc = dt_attr_get(env, obj, la, BYPASS_CAPA);
4123                         if (rc != 0)
4124                                 GOTO(out, rc);
4125
4126                         /* "la_ctime" == 1 means that it has ever been
4127                          * removed from backend /lost+found directory but
4128                          * not been added back to the normal namespace yet. */
4129                         if (la->la_nlink > 1 || unlikely(la->la_ctime == 1))
4130                                 rc = lfsck_namespace_trace_update(env, com,
4131                                                 fid, LNTF_CHECK_LINKEA, true);
4132                 }
4133         }
4134
4135         GOTO(out, rc);
4136
4137 out:
4138         down_write(&com->lc_sem);
4139         com->lc_new_checked++;
4140         if (S_ISDIR(lfsck_object_type(obj)))
4141                 ns->ln_dirs_checked++;
4142         if (rc != 0)
4143                 lfsck_namespace_record_failure(env, com->lc_lfsck, ns);
4144         up_write(&com->lc_sem);
4145
4146         return rc;
4147 }
4148
4149 static int lfsck_namespace_exec_dir(const struct lu_env *env,
4150                                     struct lfsck_component *com,
4151                                     struct lu_dirent *ent, __u16 type)
4152 {
4153         struct lfsck_assistant_data     *lad    = com->lc_data;
4154         struct lfsck_namespace_req      *lnr;
4155         bool                             wakeup = false;
4156
4157         lnr = lfsck_namespace_assistant_req_init(com->lc_lfsck, ent, type);
4158         if (IS_ERR(lnr)) {
4159                 struct lfsck_namespace *ns = com->lc_file_ram;
4160
4161                 lfsck_namespace_record_failure(env, com->lc_lfsck, ns);
4162                 return PTR_ERR(lnr);
4163         }
4164
4165         spin_lock(&lad->lad_lock);
4166         if (lad->lad_assistant_status < 0) {
4167                 spin_unlock(&lad->lad_lock);
4168                 lfsck_namespace_assistant_req_fini(env, &lnr->lnr_lar);
4169                 return lad->lad_assistant_status;
4170         }
4171
4172         list_add_tail(&lnr->lnr_lar.lar_list, &lad->lad_req_list);
4173         if (lad->lad_prefetched == 0)
4174                 wakeup = true;
4175
4176         lad->lad_prefetched++;
4177         spin_unlock(&lad->lad_lock);
4178         if (wakeup)
4179                 wake_up_all(&lad->lad_thread.t_ctl_waitq);
4180
4181         down_write(&com->lc_sem);
4182         com->lc_new_checked++;
4183         up_write(&com->lc_sem);
4184
4185         return 0;
4186 }
4187
4188 static int lfsck_namespace_post(const struct lu_env *env,
4189                                 struct lfsck_component *com,
4190                                 int result, bool init)
4191 {
4192         struct lfsck_instance   *lfsck = com->lc_lfsck;
4193         struct lfsck_namespace  *ns    = com->lc_file_ram;
4194         int                      rc;
4195         ENTRY;
4196
4197         lfsck_post_generic(env, com, &result);
4198
4199         down_write(&com->lc_sem);
4200         lfsck_namespace_release_lmv(env, com);
4201
4202         spin_lock(&lfsck->li_lock);
4203         if (!init)
4204                 ns->ln_pos_last_checkpoint = lfsck->li_pos_checkpoint;
4205         if (result > 0) {
4206                 ns->ln_status = LS_SCANNING_PHASE2;
4207                 ns->ln_flags |= LF_SCANNED_ONCE;
4208                 ns->ln_flags &= ~LF_UPGRADE;
4209                 list_del_init(&com->lc_link_dir);
4210                 list_move_tail(&com->lc_link, &lfsck->li_list_double_scan);
4211         } else if (result == 0) {
4212                 if (lfsck->li_status != 0)
4213                         ns->ln_status = lfsck->li_status;
4214                 else
4215                         ns->ln_status = LS_STOPPED;
4216                 if (ns->ln_status != LS_PAUSED) {
4217                         list_del_init(&com->lc_link_dir);
4218                         list_move_tail(&com->lc_link, &lfsck->li_list_idle);
4219                 }
4220         } else {
4221                 ns->ln_status = LS_FAILED;
4222                 list_del_init(&com->lc_link_dir);
4223                 list_move_tail(&com->lc_link, &lfsck->li_list_idle);
4224         }
4225         spin_unlock(&lfsck->li_lock);
4226
4227         if (!init) {
4228                 ns->ln_run_time_phase1 += cfs_duration_sec(cfs_time_current() +
4229                                 HALF_SEC - lfsck->li_time_last_checkpoint);
4230                 ns->ln_time_last_checkpoint = cfs_time_current_sec();
4231                 ns->ln_items_checked += com->lc_new_checked;
4232                 com->lc_new_checked = 0;
4233         }
4234
4235         rc = lfsck_namespace_store(env, com, false);
4236         up_write(&com->lc_sem);
4237
4238         CDEBUG(D_LFSCK, "%s: namespace LFSCK post done: rc = %d\n",
4239                lfsck_lfsck2name(lfsck), rc);
4240
4241         RETURN(rc);
4242 }
4243
4244 static int
4245 lfsck_namespace_dump(const struct lu_env *env, struct lfsck_component *com,
4246                      struct seq_file *m)
4247 {
4248         struct lfsck_instance   *lfsck = com->lc_lfsck;
4249         struct lfsck_bookmark   *bk    = &lfsck->li_bookmark_ram;
4250         struct lfsck_namespace  *ns    = com->lc_file_ram;
4251         int                      rc;
4252
4253         down_read(&com->lc_sem);
4254         seq_printf(m, "name: lfsck_namespace\n"
4255                    "magic: %#x\n"
4256                    "version: %d\n"
4257                    "status: %s\n",
4258                    ns->ln_magic,
4259                    bk->lb_version,
4260                    lfsck_status2names(ns->ln_status));
4261
4262         rc = lfsck_bits_dump(m, ns->ln_flags, lfsck_flags_names, "flags");
4263         if (rc < 0)
4264                 goto out;
4265
4266         rc = lfsck_bits_dump(m, bk->lb_param, lfsck_param_names, "param");
4267         if (rc < 0)
4268                 goto out;
4269
4270         rc = lfsck_time_dump(m, ns->ln_time_last_complete,
4271                              "time_since_last_completed");
4272         if (rc < 0)
4273                 goto out;
4274
4275         rc = lfsck_time_dump(m, ns->ln_time_latest_start,
4276                              "time_since_latest_start");
4277         if (rc < 0)
4278                 goto out;
4279
4280         rc = lfsck_time_dump(m, ns->ln_time_last_checkpoint,
4281                              "time_since_last_checkpoint");
4282         if (rc < 0)
4283                 goto out;
4284
4285         rc = lfsck_pos_dump(m, &ns->ln_pos_latest_start,
4286                             "latest_start_position");
4287         if (rc < 0)
4288                 goto out;
4289
4290         rc = lfsck_pos_dump(m, &ns->ln_pos_last_checkpoint,
4291                             "last_checkpoint_position");
4292         if (rc < 0)
4293                 goto out;
4294
4295         rc = lfsck_pos_dump(m, &ns->ln_pos_first_inconsistent,
4296                             "first_failure_position");
4297         if (rc < 0)
4298                 goto out;
4299
4300         if (ns->ln_status == LS_SCANNING_PHASE1) {
4301                 struct lfsck_position pos;
4302                 const struct dt_it_ops *iops;
4303                 cfs_duration_t duration = cfs_time_current() -
4304                                           lfsck->li_time_last_checkpoint;
4305                 __u64 checked = ns->ln_items_checked + com->lc_new_checked;
4306                 __u64 speed = checked;
4307                 __u64 new_checked = msecs_to_jiffies(com->lc_new_checked *
4308                                                      MSEC_PER_SEC);
4309                 __u32 rtime = ns->ln_run_time_phase1 +
4310                               cfs_duration_sec(duration + HALF_SEC);
4311
4312                 if (duration != 0)
4313                         do_div(new_checked, duration);
4314                 if (rtime != 0)
4315                         do_div(speed, rtime);
4316                 lfsck_namespace_dump_statistics(m, ns, checked,
4317                                                 ns->ln_objs_checked_phase2,
4318                                                 rtime, ns->ln_run_time_phase2);
4319
4320                 seq_printf(m, "average_speed_phase1: "LPU64" items/sec\n"
4321                               "average_speed_phase2: N/A\n"
4322                               "real_time_speed_phase1: "LPU64" items/sec\n"
4323                               "real_time_speed_phase2: N/A\n",
4324                               speed,
4325                               new_checked);
4326
4327                 LASSERT(lfsck->li_di_oit != NULL);
4328
4329                 iops = &lfsck->li_obj_oit->do_index_ops->dio_it;
4330
4331                 /* The low layer otable-based iteration position may NOT
4332                  * exactly match the namespace-based directory traversal
4333                  * cookie. Generally, it is not a serious issue. But the
4334                  * caller should NOT make assumption on that. */
4335                 pos.lp_oit_cookie = iops->store(env, lfsck->li_di_oit);
4336                 if (!lfsck->li_current_oit_processed)
4337                         pos.lp_oit_cookie--;
4338
4339                 spin_lock(&lfsck->li_lock);
4340                 if (lfsck->li_di_dir != NULL) {
4341                         pos.lp_dir_cookie = lfsck->li_cookie_dir;
4342                         if (pos.lp_dir_cookie >= MDS_DIR_END_OFF) {
4343                                 fid_zero(&pos.lp_dir_parent);
4344                                 pos.lp_dir_cookie = 0;
4345                         } else {
4346                                 pos.lp_dir_parent =
4347                                         *lfsck_dto2fid(lfsck->li_obj_dir);
4348                         }
4349                 } else {
4350                         fid_zero(&pos.lp_dir_parent);
4351                         pos.lp_dir_cookie = 0;
4352                 }
4353                 spin_unlock(&lfsck->li_lock);
4354                 lfsck_pos_dump(m, &pos, "current_position");
4355         } else if (ns->ln_status == LS_SCANNING_PHASE2) {
4356                 cfs_duration_t duration = cfs_time_current() -
4357                                           lfsck->li_time_last_checkpoint;
4358                 __u64 checked = ns->ln_objs_checked_phase2 +
4359                                 com->lc_new_checked;
4360                 __u64 speed1 = ns->ln_items_checked;
4361                 __u64 speed2 = checked;
4362                 __u64 new_checked = msecs_to_jiffies(com->lc_new_checked *
4363                                                      MSEC_PER_SEC);
4364                 __u32 rtime = ns->ln_run_time_phase2 +
4365                               cfs_duration_sec(duration + HALF_SEC);
4366
4367                 if (duration != 0)
4368                         do_div(new_checked, duration);
4369                 if (ns->ln_run_time_phase1 != 0)
4370                         do_div(speed1, ns->ln_run_time_phase1);
4371                 if (rtime != 0)
4372                         do_div(speed2, rtime);
4373                 lfsck_namespace_dump_statistics(m, ns, ns->ln_items_checked,
4374                                                 checked,
4375                                                 ns->ln_run_time_phase1, rtime);
4376
4377                 seq_printf(m, "average_speed_phase1: "LPU64" items/sec\n"
4378                               "average_speed_phase2: "LPU64" objs/sec\n"
4379                               "real_time_speed_phase1: N/A\n"
4380                               "real_time_speed_phase2: "LPU64" objs/sec\n"
4381                               "current_position: "DFID"\n",
4382                               speed1,
4383                               speed2,
4384                               new_checked,
4385                               PFID(&ns->ln_fid_latest_scanned_phase2));
4386         } else {
4387                 __u64 speed1 = ns->ln_items_checked;
4388                 __u64 speed2 = ns->ln_objs_checked_phase2;
4389
4390                 if (ns->ln_run_time_phase1 != 0)
4391                         do_div(speed1, ns->ln_run_time_phase1);
4392                 if (ns->ln_run_time_phase2 != 0)
4393                         do_div(speed2, ns->ln_run_time_phase2);
4394                 lfsck_namespace_dump_statistics(m, ns, ns->ln_items_checked,
4395                                                 ns->ln_objs_checked_phase2,
4396                                                 ns->ln_run_time_phase1,
4397                                                 ns->ln_run_time_phase2);
4398
4399                 seq_printf(m, "average_speed_phase1: "LPU64" items/sec\n"
4400                               "average_speed_phase2: "LPU64" objs/sec\n"
4401                               "real_time_speed_phase1: N/A\n"
4402                               "real_time_speed_phase2: N/A\n"
4403                               "current_position: N/A\n",
4404                               speed1,
4405                               speed2);
4406         }
4407 out:
4408         up_read(&com->lc_sem);
4409         return 0;
4410 }
4411
4412 static int lfsck_namespace_double_scan(const struct lu_env *env,
4413                                        struct lfsck_component *com)
4414 {
4415         struct lfsck_namespace          *ns     = com->lc_file_ram;
4416         struct lfsck_assistant_data     *lad    = com->lc_data;
4417         struct lfsck_tgt_descs          *ltds   = &com->lc_lfsck->li_mdt_descs;
4418         struct lfsck_tgt_desc           *ltd;
4419         struct lfsck_tgt_desc           *next;
4420         int                              rc;
4421
4422         rc = lfsck_double_scan_generic(env, com, ns->ln_status);
4423         if (thread_is_stopped(&lad->lad_thread)) {
4424                 LASSERT(list_empty(&lad->lad_req_list));
4425                 LASSERT(list_empty(&lad->lad_mdt_phase1_list));
4426
4427                 spin_lock(&ltds->ltd_lock);
4428                 list_for_each_entry_safe(ltd, next, &lad->lad_mdt_phase2_list,
4429                                          ltd_namespace_phase_list) {
4430                         list_del_init(&ltd->ltd_namespace_phase_list);
4431                 }
4432                 spin_unlock(&ltds->ltd_lock);
4433         }
4434
4435         return rc;
4436 }
4437
4438 static void lfsck_namespace_data_release(const struct lu_env *env,
4439                                          struct lfsck_component *com)
4440 {
4441         struct lfsck_assistant_data     *lad    = com->lc_data;
4442         struct lfsck_tgt_descs          *ltds   = &com->lc_lfsck->li_mdt_descs;
4443         struct lfsck_tgt_desc           *ltd;
4444         struct lfsck_tgt_desc           *next;
4445
4446         LASSERT(lad != NULL);
4447         LASSERT(thread_is_init(&lad->lad_thread) ||
4448                 thread_is_stopped(&lad->lad_thread));
4449         LASSERT(list_empty(&lad->lad_req_list));
4450
4451         com->lc_data = NULL;
4452         lfsck_namespace_release_lmv(env, com);
4453
4454         spin_lock(&ltds->ltd_lock);
4455         list_for_each_entry_safe(ltd, next, &lad->lad_mdt_phase1_list,
4456                                  ltd_namespace_phase_list) {
4457                 list_del_init(&ltd->ltd_namespace_phase_list);
4458         }
4459         list_for_each_entry_safe(ltd, next, &lad->lad_mdt_phase2_list,
4460                                  ltd_namespace_phase_list) {
4461                 list_del_init(&ltd->ltd_namespace_phase_list);
4462         }
4463         list_for_each_entry_safe(ltd, next, &lad->lad_mdt_list,
4464                                  ltd_namespace_list) {
4465                 list_del_init(&ltd->ltd_namespace_list);
4466         }
4467         spin_unlock(&ltds->ltd_lock);
4468
4469         if (likely(lad->lad_bitmap != NULL))
4470                 CFS_FREE_BITMAP(lad->lad_bitmap);
4471
4472         OBD_FREE_PTR(lad);
4473 }
4474
4475 static void lfsck_namespace_quit(const struct lu_env *env,
4476                                  struct lfsck_component *com)
4477 {
4478         struct lfsck_assistant_data     *lad    = com->lc_data;
4479         struct lfsck_tgt_descs          *ltds   = &com->lc_lfsck->li_mdt_descs;
4480         struct lfsck_tgt_desc           *ltd;
4481         struct lfsck_tgt_desc           *next;
4482
4483         LASSERT(lad != NULL);
4484
4485         lfsck_quit_generic(env, com);
4486
4487         LASSERT(thread_is_init(&lad->lad_thread) ||
4488                 thread_is_stopped(&lad->lad_thread));
4489         LASSERT(list_empty(&lad->lad_req_list));
4490
4491         lfsck_namespace_release_lmv(env, com);
4492
4493         spin_lock(&ltds->ltd_lock);
4494         list_for_each_entry_safe(ltd, next, &lad->lad_mdt_phase1_list,
4495                                  ltd_namespace_phase_list) {
4496                 list_del_init(&ltd->ltd_namespace_phase_list);
4497         }
4498         list_for_each_entry_safe(ltd, next, &lad->lad_mdt_phase2_list,
4499                                  ltd_namespace_phase_list) {
4500                 list_del_init(&ltd->ltd_namespace_phase_list);
4501         }
4502         spin_unlock(&ltds->ltd_lock);
4503 }
4504
4505 static int lfsck_namespace_in_notify(const struct lu_env *env,
4506                                      struct lfsck_component *com,
4507                                      struct lfsck_request *lr,
4508                                      struct thandle *th)
4509 {
4510         struct lfsck_instance           *lfsck = com->lc_lfsck;
4511         struct lfsck_namespace          *ns    = com->lc_file_ram;
4512         struct lfsck_assistant_data     *lad   = com->lc_data;
4513         struct lfsck_tgt_descs          *ltds  = &lfsck->li_mdt_descs;
4514         struct lfsck_tgt_desc           *ltd;
4515         int                              rc;
4516         bool                             fail  = false;
4517         ENTRY;
4518
4519         switch (lr->lr_event) {
4520         case LE_CREATE_ORPHAN: {
4521                 struct dt_object *orphan = NULL;
4522                 struct lmv_mds_md_v1 *lmv;
4523
4524                 CDEBUG(D_LFSCK, "%s: namespace LFSCK handling notify from "
4525                        "MDT %x to create orphan"DFID" with type %o\n",
4526                        lfsck_lfsck2name(lfsck), lr->lr_index,
4527                        PFID(&lr->lr_fid), lr->lr_type);
4528
4529                 orphan = lfsck_object_find(env, lfsck, &lr->lr_fid);
4530                 if (IS_ERR(orphan))
4531                         GOTO(out_create, rc = PTR_ERR(orphan));
4532
4533                 if (dt_object_exists(orphan))
4534                         GOTO(out_create, rc = -EEXIST);
4535
4536                 if (lr->lr_stripe_count > 0) {
4537                         lmv = &lfsck_env_info(env)->lti_lmv;
4538                         memset(lmv, 0, sizeof(*lmv));
4539                         lmv->lmv_hash_type = lr->lr_hash_type;
4540                         lmv->lmv_stripe_count = lr->lr_stripe_count;
4541                         lmv->lmv_layout_version = lr->lr_layout_version;
4542                         memcpy(lmv->lmv_pool_name, lr->lr_pool_name,
4543                                sizeof(lmv->lmv_pool_name));
4544                 } else {
4545                         lmv = NULL;
4546                 }
4547
4548                 rc = lfsck_namespace_create_orphan_local(env, com, orphan,
4549                                                          lr->lr_type, lmv);
4550
4551                 GOTO(out_create, rc = (rc == 1) ? 0 : rc);
4552
4553 out_create:
4554                 CDEBUG(D_LFSCK, "%s: namespace LFSCK handled notify from "
4555                        "MDT %x to create orphan"DFID" with type %o: rc = %d\n",
4556                        lfsck_lfsck2name(lfsck), lr->lr_index,
4557                        PFID(&lr->lr_fid), lr->lr_type, rc);
4558
4559                 if (orphan != NULL && !IS_ERR(orphan))
4560                         lfsck_object_put(env, orphan);
4561
4562                 return rc;
4563         }
4564         case LE_SKIP_NLINK_DECLARE: {
4565                 struct dt_object        *obj   = com->lc_obj;
4566                 struct lu_fid           *key   = &lfsck_env_info(env)->lti_fid3;
4567                 __u8                     flags = 0;
4568
4569                 LASSERT(th != NULL);
4570
4571                 rc = dt_declare_delete(env, obj,
4572                                        (const struct dt_key *)key, th);
4573                 if (rc == 0)
4574                         rc = dt_declare_insert(env, obj,
4575                                                (const struct dt_rec *)&flags,
4576                                                (const struct dt_key *)key, th);
4577
4578                 RETURN(rc);
4579         }
4580         case LE_SKIP_NLINK: {
4581                 struct dt_object        *obj   = com->lc_obj;
4582                 struct lu_fid           *key   = &lfsck_env_info(env)->lti_fid3;
4583                 __u8                     flags = 0;
4584                 bool                     exist = false;
4585                 ENTRY;
4586
4587                 LASSERT(th != NULL);
4588
4589                 fid_cpu_to_be(key, &lr->lr_fid);
4590                 rc = dt_lookup(env, obj, (struct dt_rec *)&flags,
4591                                (const struct dt_key *)key, BYPASS_CAPA);
4592                 if (rc == 0) {
4593                         if (flags & LNTF_SKIP_NLINK)
4594                                 RETURN(0);
4595
4596                         exist = true;
4597                 } else if (rc != -ENOENT) {
4598                         GOTO(log, rc);
4599                 }
4600
4601                 flags |= LNTF_SKIP_NLINK;
4602                 if (exist) {
4603                         rc = dt_delete(env, obj, (const struct dt_key *)key,
4604                                        th, BYPASS_CAPA);
4605                         if (rc != 0)
4606                                 GOTO(log, rc);
4607                 }
4608
4609                 rc = dt_insert(env, obj, (const struct dt_rec *)&flags,
4610                                (const struct dt_key *)key, th, BYPASS_CAPA, 1);
4611
4612                 GOTO(log, rc);
4613
4614 log:
4615                 CDEBUG(D_LFSCK, "%s: RPC service thread mark the "DFID
4616                        " to be skipped for namespace double scan: rc = %d\n",
4617                        lfsck_lfsck2name(com->lc_lfsck), PFID(&lr->lr_fid), rc);
4618
4619                 if (rc != 0)
4620                         /* If we cannot record this object in the LFSCK tracing,
4621                          * we have to mark the LFSC as LF_INCOMPLETE, then the
4622                          * LFSCK will skip nlink attribute verification for
4623                          * all objects. */
4624                         ns->ln_flags |= LF_INCOMPLETE;
4625
4626                 return 0;
4627         }
4628         case LE_SET_LMV_MASTER: {
4629                 struct dt_object        *obj;
4630
4631                 obj = lfsck_object_find_by_dev(env, lfsck->li_bottom,
4632                                                &lr->lr_fid);
4633                 if (IS_ERR(obj))
4634                         RETURN(PTR_ERR(obj));
4635
4636                 rc = lfsck_namespace_notify_lmv_master_local(env, com, obj);
4637                 lfsck_object_put(env, obj);
4638
4639                 RETURN(rc > 0 ? 0 : rc);
4640         }
4641         case LE_SET_LMV_SLAVE: {
4642                 if (!(lr->lr_flags & LEF_RECHECK_NAME_HASH))
4643                         ns->ln_striped_shards_repaired++;
4644
4645                 rc = lfsck_namespace_trace_update(env, com, &lr->lr_fid,
4646                                                   LNTF_RECHECK_NAME_HASH, true);
4647
4648                 RETURN(rc > 0 ? 0 : rc);
4649         }
4650         case LE_PHASE1_DONE:
4651         case LE_PHASE2_DONE:
4652         case LE_PEER_EXIT:
4653                 break;
4654         default:
4655                 RETURN(-EINVAL);
4656         }
4657
4658         CDEBUG(D_LFSCK, "%s: namespace LFSCK handles notify %u from MDT %x, "
4659                "status %d, flags %x\n", lfsck_lfsck2name(lfsck), lr->lr_event,
4660                lr->lr_index, lr->lr_status, lr->lr_flags2);
4661
4662         spin_lock(&ltds->ltd_lock);
4663         ltd = LTD_TGT(ltds, lr->lr_index);
4664         if (ltd == NULL) {
4665                 spin_unlock(&ltds->ltd_lock);
4666
4667                 RETURN(-ENXIO);
4668         }
4669
4670         list_del_init(&ltd->ltd_namespace_phase_list);
4671         switch (lr->lr_event) {
4672         case LE_PHASE1_DONE:
4673                 if (lr->lr_status <= 0) {
4674                         ltd->ltd_namespace_done = 1;
4675                         list_del_init(&ltd->ltd_namespace_list);
4676                         CDEBUG(D_LFSCK, "%s: MDT %x failed/stopped at "
4677                                "phase1 for namespace LFSCK: rc = %d.\n",
4678                                lfsck_lfsck2name(lfsck),
4679                                ltd->ltd_index, lr->lr_status);
4680                         ns->ln_flags |= LF_INCOMPLETE;
4681                         fail = true;
4682                         break;
4683                 }
4684
4685                 if (lr->lr_flags2 & LF_INCOMPLETE)
4686                         ns->ln_flags |= LF_INCOMPLETE;
4687
4688                 if (list_empty(&ltd->ltd_namespace_list))
4689                         list_add_tail(&ltd->ltd_namespace_list,
4690                                       &lad->lad_mdt_list);
4691                 list_add_tail(&ltd->ltd_namespace_phase_list,
4692                               &lad->lad_mdt_phase2_list);
4693                 break;
4694         case LE_PHASE2_DONE:
4695                 ltd->ltd_namespace_done = 1;
4696                 list_del_init(&ltd->ltd_namespace_list);
4697                 break;
4698         case LE_PEER_EXIT:
4699                 fail = true;
4700                 ltd->ltd_namespace_done = 1;
4701                 list_del_init(&ltd->ltd_namespace_list);
4702                 if (!(lfsck->li_bookmark_ram.lb_param & LPF_FAILOUT)) {
4703                         CDEBUG(D_LFSCK,
4704                                "%s: the peer MDT %x exit namespace LFSCK\n",
4705                                lfsck_lfsck2name(lfsck), ltd->ltd_index);
4706                         ns->ln_flags |= LF_INCOMPLETE;
4707                 }
4708                 break;
4709         default:
4710                 break;
4711         }
4712         spin_unlock(&ltds->ltd_lock);
4713
4714         if (fail && lfsck->li_bookmark_ram.lb_param & LPF_FAILOUT) {
4715                 struct lfsck_stop *stop = &lfsck_env_info(env)->lti_stop;
4716
4717                 memset(stop, 0, sizeof(*stop));
4718                 stop->ls_status = lr->lr_status;
4719                 stop->ls_flags = lr->lr_param & ~LPF_BROADCAST;
4720                 lfsck_stop(env, lfsck->li_bottom, stop);
4721         } else if (lfsck_phase2_next_ready(lad)) {
4722                 wake_up_all(&lad->lad_thread.t_ctl_waitq);
4723         }
4724
4725         RETURN(0);
4726 }
4727
4728 static int lfsck_namespace_query(const struct lu_env *env,
4729                                  struct lfsck_component *com)
4730 {
4731         struct lfsck_namespace *ns = com->lc_file_ram;
4732
4733         return ns->ln_status;
4734 }
4735
4736 static struct lfsck_operations lfsck_namespace_ops = {
4737         .lfsck_reset            = lfsck_namespace_reset,
4738         .lfsck_fail             = lfsck_namespace_fail,
4739         .lfsck_close_dir        = lfsck_namespace_close_dir,
4740         .lfsck_open_dir         = lfsck_namespace_open_dir,
4741         .lfsck_checkpoint       = lfsck_namespace_checkpoint,
4742         .lfsck_prep             = lfsck_namespace_prep,
4743         .lfsck_exec_oit         = lfsck_namespace_exec_oit,
4744         .lfsck_exec_dir         = lfsck_namespace_exec_dir,
4745         .lfsck_post             = lfsck_namespace_post,
4746         .lfsck_dump             = lfsck_namespace_dump,
4747         .lfsck_double_scan      = lfsck_namespace_double_scan,
4748         .lfsck_data_release     = lfsck_namespace_data_release,
4749         .lfsck_quit             = lfsck_namespace_quit,
4750         .lfsck_in_notify        = lfsck_namespace_in_notify,
4751         .lfsck_query            = lfsck_namespace_query,
4752 };
4753
4754 /**
4755  * Repair dangling name entry.
4756  *
4757  * For the name entry with dangling reference, we need to repare the
4758  * inconsistency according to the LFSCK sponsor's requirement:
4759  *
4760  * 1) Keep the inconsistency there and report the inconsistency case,
4761  *    then give the chance to the application to find related issues,
4762  *    and the users can make the decision about how to handle it with
4763  *    more human knownledge. (by default)
4764  *
4765  * 2) Re-create the missing MDT-object with the FID information.
4766  *
4767  * \param[in] env       pointer to the thread context
4768  * \param[in] com       pointer to the lfsck component
4769  * \param[in] child     pointer to the object corresponding to the dangling
4770  *                      name entry
4771  * \param[in] lnr       pointer to the namespace request that contains the
4772  *                      name's name, parent object, parent's LMV, and ect.
4773  *
4774  * \retval              positive number if no need to repair
4775  * \retval              zero for repaired successfully
4776  * \retval              negative error number on failure
4777  */
4778 int lfsck_namespace_repair_dangling(const struct lu_env *env,
4779                                     struct lfsck_component *com,
4780                                     struct dt_object *child,
4781                                     struct lfsck_namespace_req *lnr)
4782 {
4783         struct lfsck_thread_info        *info   = lfsck_env_info(env);
4784         struct lu_attr                  *la     = &info->lti_la;
4785         struct dt_allocation_hint       *hint   = &info->lti_hint;
4786         struct dt_object_format         *dof    = &info->lti_dof;
4787         struct dt_insert_rec            *rec    = &info->lti_dt_rec;
4788         struct lmv_mds_md_v1            *lmv2   = &info->lti_lmv2;
4789         struct dt_object                *parent = lnr->lnr_obj;
4790         const struct lu_name            *cname;
4791         struct linkea_data               ldata  = { 0 };
4792         struct lustre_handle             lh     = { 0 };
4793         struct lu_buf                    linkea_buf;
4794         struct lu_buf                    lmv_buf;
4795         struct lfsck_instance           *lfsck  = com->lc_lfsck;
4796         struct lfsck_bookmark           *bk     = &lfsck->li_bookmark_ram;
4797         struct dt_device                *dev    = lfsck_obj2dt_dev(child);
4798         struct thandle                  *th     = NULL;
4799         int                              rc     = 0;
4800         __u16                            type   = lnr->lnr_type;
4801         bool                             create;
4802         ENTRY;
4803
4804         cname = lfsck_name_get_const(env, lnr->lnr_name, lnr->lnr_namelen);
4805         if (bk->lb_param & LPF_CREATE_MDTOBJ)
4806                 create = true;
4807         else
4808                 create = false;
4809
4810         if (!create || bk->lb_param & LPF_DRYRUN)
4811                 GOTO(log, rc = 0);
4812
4813         rc = linkea_data_new(&ldata, &info->lti_linkea_buf2);
4814         if (rc != 0)
4815                 GOTO(log, rc);
4816
4817         rc = linkea_add_buf(&ldata, cname, lfsck_dto2fid(parent));
4818         if (rc != 0)
4819                 GOTO(log, rc);
4820
4821         rc = lfsck_ibits_lock(env, lfsck, parent, &lh,
4822                               MDS_INODELOCK_UPDATE, LCK_EX);
4823         if (rc != 0)
4824                 GOTO(log, rc);
4825
4826         rc = lfsck_namespace_check_exist(env, parent, child, lnr->lnr_name);
4827         if (rc != 0)
4828                 GOTO(log, rc);
4829
4830         th = dt_trans_create(env, dev);
4831         if (IS_ERR(th))
4832                 GOTO(log, rc = PTR_ERR(th));
4833
4834         /* Set the ctime as zero, then others can know it is created for
4835          * repairing dangling name entry by LFSCK. And if the LFSCK made
4836          * wrong decision and the real MDT-object has been found later,
4837          * then the LFSCK has chance to fix the incosistency properly. */
4838         memset(la, 0, sizeof(*la));
4839         la->la_mode = (type & S_IFMT) | 0600;
4840         la->la_valid = LA_TYPE | LA_MODE | LA_UID | LA_GID |
4841                         LA_ATIME | LA_MTIME | LA_CTIME;
4842
4843         child->do_ops->do_ah_init(env, hint, parent, child,
4844                                   la->la_mode & S_IFMT);
4845
4846         memset(dof, 0, sizeof(*dof));
4847         dof->dof_type = dt_mode_to_dft(type);
4848         /* If the target is a regular file, then the LFSCK will only create
4849          * the MDT-object without stripes (dof->dof_reg.striped = 0). related
4850          * OST-objects will be created when write open. */
4851
4852         /* 1a. create child. */
4853         rc = dt_declare_create(env, child, la, hint, dof, th);
4854         if (rc != 0)
4855                 GOTO(stop, rc);
4856
4857         if (S_ISDIR(type)) {
4858                 if (unlikely(!dt_try_as_dir(env, child)))
4859                         GOTO(stop, rc = -ENOTDIR);
4860
4861                 /* 2a. insert dot into child dir */
4862                 rec->rec_type = S_IFDIR;
4863                 rec->rec_fid = lfsck_dto2fid(child);
4864                 rc = dt_declare_insert(env, child,
4865                                        (const struct dt_rec *)rec,
4866                                        (const struct dt_key *)dot, th);
4867                 if (rc != 0)
4868                         GOTO(stop, rc);
4869
4870                 /* 3a. insert dotdot into child dir */
4871                 rec->rec_fid = lfsck_dto2fid(parent);
4872                 rc = dt_declare_insert(env, child,
4873                                        (const struct dt_rec *)rec,
4874                                        (const struct dt_key *)dotdot, th);
4875                 if (rc != 0)
4876                         GOTO(stop, rc);
4877
4878                 /* 4a. increase child nlink */
4879                 rc = dt_declare_ref_add(env, child, th);
4880                 if (rc != 0)
4881                         GOTO(stop, rc);
4882
4883                 /* 5a. generate slave LMV EA. */
4884                 if (lnr->lnr_lmv != NULL && lnr->lnr_lmv->ll_lmv_master) {
4885                         int idx;
4886
4887                         idx = lfsck_shard_name_to_index(env,
4888                                         lnr->lnr_name, lnr->lnr_namelen,
4889                                         type, lfsck_dto2fid(child));
4890                         if (unlikely(idx < 0))
4891                                 GOTO(stop, rc = idx);
4892
4893                         *lmv2 = lnr->lnr_lmv->ll_lmv;
4894                         lmv2->lmv_magic = LMV_MAGIC_STRIPE;
4895                         lmv2->lmv_master_mdt_index = idx;
4896
4897                         lfsck_lmv_header_cpu_to_le(lmv2, lmv2);
4898                         lfsck_buf_init(&lmv_buf, lmv2, sizeof(*lmv2));
4899                         rc = dt_declare_xattr_set(env, child, &lmv_buf,
4900                                                   XATTR_NAME_LMV, 0, th);
4901                         if (rc != 0)
4902                                 GOTO(stop, rc);
4903                 }
4904         }
4905
4906         /* 6a. insert linkEA for child */
4907         lfsck_buf_init(&linkea_buf, ldata.ld_buf->lb_buf,
4908                        ldata.ld_leh->leh_len);
4909         rc = dt_declare_xattr_set(env, child, &linkea_buf,
4910                                   XATTR_NAME_LINK, 0, th);
4911         if (rc != 0)
4912                 GOTO(stop, rc);
4913
4914         rc = dt_trans_start(env, dev, th);
4915         if (rc != 0)
4916                 GOTO(stop, rc = (rc == -EEXIST ? 1 : rc));
4917
4918         dt_write_lock(env, child, 0);
4919         /* 1b. create child */
4920         rc = dt_create(env, child, la, hint, dof, th);
4921         if (rc != 0)
4922                 GOTO(unlock, rc = (rc == -EEXIST ? 1 : rc));
4923
4924         if (S_ISDIR(type)) {
4925                 if (unlikely(!dt_try_as_dir(env, child)))
4926                         GOTO(unlock, rc = -ENOTDIR);
4927
4928                 /* 2b. insert dot into child dir */
4929                 rec->rec_type = S_IFDIR;
4930                 rec->rec_fid = lfsck_dto2fid(child);
4931                 rc = dt_insert(env, child, (const struct dt_rec *)rec,
4932                                (const struct dt_key *)dot, th, BYPASS_CAPA, 1);
4933                 if (rc != 0)
4934                         GOTO(unlock, rc);
4935
4936                 /* 3b. insert dotdot into child dir */
4937                 rec->rec_fid = lfsck_dto2fid(parent);
4938                 rc = dt_insert(env, child, (const struct dt_rec *)rec,
4939                                (const struct dt_key *)dotdot, th,
4940                                BYPASS_CAPA, 1);
4941                 if (rc != 0)
4942                         GOTO(unlock, rc);
4943
4944                 /* 4b. increase child nlink */
4945                 rc = dt_ref_add(env, child, th);
4946                 if (rc != 0)
4947                         GOTO(unlock, rc);
4948
4949                 /* 5b. generate slave LMV EA. */
4950                 if (lnr->lnr_lmv != NULL && lnr->lnr_lmv->ll_lmv_master) {
4951                         rc = dt_xattr_set(env, child, &lmv_buf, XATTR_NAME_LMV,
4952                                           0, th, BYPASS_CAPA);
4953                         if (rc != 0)
4954                                 GOTO(unlock, rc);
4955                 }
4956         }
4957
4958         /* 6b. insert linkEA for child. */
4959         rc = dt_xattr_set(env, child, &linkea_buf,
4960                           XATTR_NAME_LINK, 0, th, BYPASS_CAPA);
4961
4962         GOTO(unlock, rc);
4963
4964 unlock:
4965         dt_write_unlock(env, child);
4966
4967 stop:
4968         dt_trans_stop(env, dev, th);
4969
4970 log:
4971         lfsck_ibits_unlock(&lh, LCK_EX);
4972         CDEBUG(D_LFSCK, "%s: namespace LFSCK assistant found dangling "
4973                "reference for: parent "DFID", child "DFID", type %u, "
4974                "name %s. %s: rc = %d\n", lfsck_lfsck2name(lfsck),
4975                PFID(lfsck_dto2fid(parent)), PFID(lfsck_dto2fid(child)),
4976                type, cname->ln_name,
4977                create ? "Create the lost OST-object as required" :
4978                         "Keep the MDT-object there by default", rc);
4979
4980         if (rc <= 0) {
4981                 struct lfsck_namespace *ns = com->lc_file_ram;
4982
4983                 ns->ln_flags |= LF_INCONSISTENT;
4984         }
4985
4986         return rc;
4987 }
4988
4989 static int lfsck_namespace_assistant_handler_p1(const struct lu_env *env,
4990                                                 struct lfsck_component *com,
4991                                                 struct lfsck_assistant_req *lar)
4992 {
4993         struct lfsck_thread_info   *info     = lfsck_env_info(env);
4994         struct lu_attr             *la       = &info->lti_la;
4995         struct lfsck_instance      *lfsck    = com->lc_lfsck;
4996         struct lfsck_bookmark      *bk       = &lfsck->li_bookmark_ram;
4997         struct lfsck_namespace     *ns       = com->lc_file_ram;
4998         struct linkea_data          ldata    = { 0 };
4999         const struct lu_name       *cname;
5000         struct thandle             *handle   = NULL;
5001         struct lfsck_namespace_req *lnr      =
5002                         container_of0(lar, struct lfsck_namespace_req, lnr_lar);
5003         struct dt_object           *dir      = lnr->lnr_obj;
5004         struct dt_object           *obj      = NULL;
5005         const struct lu_fid        *pfid     = lfsck_dto2fid(dir);
5006         struct dt_device           *dev      = NULL;
5007         struct lustre_handle        lh       = { 0 };
5008         bool                        repaired = false;
5009         bool                        dtlocked = false;
5010         bool                        remove;
5011         bool                        newdata;
5012         bool                        log      = false;
5013         bool                        bad_hash = false;
5014         int                         idx      = 0;
5015         int                         count    = 0;
5016         int                         rc;
5017         enum lfsck_namespace_inconsistency_type type = LNIT_NONE;
5018         ENTRY;
5019
5020         if (lnr->lnr_attr & LUDA_UPGRADE) {
5021                 ns->ln_flags |= LF_UPGRADE;
5022                 ns->ln_dirent_repaired++;
5023                 repaired = true;
5024         } else if (lnr->lnr_attr & LUDA_REPAIR) {
5025                 ns->ln_flags |= LF_INCONSISTENT;
5026                 ns->ln_dirent_repaired++;
5027                 repaired = true;
5028         }
5029
5030         if (unlikely(fid_is_zero(&lnr->lnr_fid))) {
5031                 if (strcmp(lnr->lnr_name, dotdot) != 0)
5032                         LBUG();
5033                 else
5034                         rc = lfsck_namespace_trace_update(env, com, pfid,
5035                                                 LNTF_CHECK_PARENT, true);
5036
5037                 GOTO(out, rc);
5038         }
5039
5040         if (unlikely(lnr->lnr_dir_cookie == MDS_DIR_END_OFF)) {
5041                 rc = lfsck_namespace_striped_dir_rescan(env, com, lnr);
5042
5043                 RETURN(rc);
5044         }
5045
5046         if (lnr->lnr_name[0] == '.' &&
5047             (lnr->lnr_namelen == 1 || fid_seq_is_dot(fid_seq(&lnr->lnr_fid))))
5048                 GOTO(out, rc = 0);
5049
5050         if (lnr->lnr_lmv != NULL && lnr->lnr_lmv->ll_lmv_master) {
5051                 rc = lfsck_namespace_handle_striped_master(env, com, lnr);
5052
5053                 RETURN(rc);
5054         }
5055
5056         idx = lfsck_find_mdt_idx_by_fid(env, lfsck, &lnr->lnr_fid);
5057         if (idx < 0)
5058                 GOTO(out, rc = idx);
5059
5060         if (idx == lfsck_dev_idx(lfsck->li_bottom)) {
5061                 if (unlikely(strcmp(lnr->lnr_name, dotdot) == 0))
5062                         GOTO(out, rc = 0);
5063
5064                 dev = lfsck->li_next;
5065         } else {
5066                 struct lfsck_tgt_desc *ltd;
5067
5068                 /* Usually, some local filesystem consistency verification
5069                  * tools can guarantee the local namespace tree consistenct.
5070                  * So the LFSCK will only verify the remote directory. */
5071                 if (unlikely(strcmp(lnr->lnr_name, dotdot) == 0)) {
5072                         rc = lfsck_namespace_trace_update(env, com, pfid,
5073                                                 LNTF_CHECK_PARENT, true);
5074
5075                         GOTO(out, rc);
5076                 }
5077
5078                 ltd = LTD_TGT(&lfsck->li_mdt_descs, idx);
5079                 if (unlikely(ltd == NULL)) {
5080                         CDEBUG(D_LFSCK, "%s: cannot talk with MDT %x which "
5081                                "did not join the namespace LFSCK\n",
5082                                lfsck_lfsck2name(lfsck), idx);
5083                         lfsck_lad_set_bitmap(env, com, idx);
5084
5085                         GOTO(out, rc = -ENODEV);
5086                 }
5087
5088                 dev = ltd->ltd_tgt;
5089         }
5090
5091         obj = lfsck_object_find_by_dev(env, dev, &lnr->lnr_fid);
5092         if (IS_ERR(obj))
5093                 GOTO(out, rc = PTR_ERR(obj));
5094
5095         cname = lfsck_name_get_const(env, lnr->lnr_name, lnr->lnr_namelen);
5096         if (dt_object_exists(obj) == 0) {
5097
5098 dangling:
5099                 rc = lfsck_namespace_check_exist(env, dir, obj, lnr->lnr_name);
5100                 if (rc == 0) {
5101                         if (!lfsck_is_valid_slave_name_entry(env, lnr->lnr_lmv,
5102                                         lnr->lnr_name, lnr->lnr_namelen)) {
5103                                 type = LNIT_BAD_DIRENT;
5104
5105                                 GOTO(out, rc);
5106                         }
5107
5108                         type = LNIT_DANGLING;
5109                         rc = lfsck_namespace_repair_dangling(env, com,
5110                                                              obj, lnr);
5111                         if (rc == 0)
5112                                 repaired = true;
5113                 }
5114
5115                 GOTO(out, rc);
5116         }
5117
5118         if (!(bk->lb_param & LPF_DRYRUN) && repaired) {
5119
5120 again:
5121                 rc = lfsck_ibits_lock(env, lfsck, obj, &lh,
5122                                       MDS_INODELOCK_UPDATE |
5123                                       MDS_INODELOCK_XATTR, LCK_EX);
5124                 if (rc != 0)
5125                         GOTO(out, rc);
5126
5127                 handle = dt_trans_create(env, dev);
5128                 if (IS_ERR(handle))
5129                         GOTO(out, rc = PTR_ERR(handle));
5130
5131                 rc = lfsck_declare_namespace_exec_dir(env, obj, handle);
5132                 if (rc != 0)
5133                         GOTO(stop, rc);
5134
5135                 rc = dt_trans_start(env, dev, handle);
5136                 if (rc != 0)
5137                         GOTO(stop, rc);
5138
5139                 dt_write_lock(env, obj, 0);
5140                 dtlocked = true;
5141         }
5142
5143         rc = lfsck_namespace_check_exist(env, dir, obj, lnr->lnr_name);
5144         if (rc != 0)
5145                 GOTO(stop, rc);
5146
5147         rc = lfsck_links_read(env, obj, &ldata);
5148         if (unlikely(rc == -ENOENT)) {
5149                 if (handle != NULL) {
5150                         dt_write_unlock(env, obj);
5151                         dtlocked = false;
5152
5153                         dt_trans_stop(env, dev, handle);
5154                         handle = NULL;
5155
5156                         lfsck_ibits_unlock(&lh, LCK_EX);
5157                 }
5158
5159                 /* It may happen when the remote object has been removed,
5160                  * but the local MDT is not aware of that. */
5161                 goto dangling;
5162         } else if (rc == 0) {
5163                 count = ldata.ld_leh->leh_reccount;
5164                 rc = linkea_links_find(&ldata, cname, pfid);
5165                 if ((rc == 0) &&
5166                     (count == 1 || !S_ISDIR(lfsck_object_type(obj)))) {
5167                         if ((lfsck_object_type(obj) & S_IFMT) !=
5168                             lnr->lnr_type) {
5169                                 ns->ln_flags |= LF_INCONSISTENT;
5170                                 type = LNIT_BAD_TYPE;
5171                         }
5172
5173                         goto record;
5174                 }
5175
5176                 ns->ln_flags |= LF_INCONSISTENT;
5177
5178                 /* If the name entry hash does not match the slave striped
5179                  * directory, and the name entry does not match also, then
5180                  * it is quite possible that name entry is corrupted. */
5181                 if (!lfsck_is_valid_slave_name_entry(env, lnr->lnr_lmv,
5182                                         lnr->lnr_name, lnr->lnr_namelen)) {
5183                         type = LNIT_BAD_DIRENT;
5184
5185                         GOTO(stop, rc = 0);
5186                 }
5187
5188                 /* If the file type stored in the name entry does not match
5189                  * the file type claimed by the object, and the object does
5190                  * not recognize the name entry, then it is quite possible
5191                  * that the name entry is corrupted. */
5192                 if ((lfsck_object_type(obj) & S_IFMT) != lnr->lnr_type) {
5193                         type = LNIT_BAD_DIRENT;
5194
5195                         GOTO(stop, rc = 0);
5196                 }
5197
5198                 /* For sub-dir object, we cannot make sure whether the sub-dir
5199                  * back references the parent via ".." name entry correctly or
5200                  * not in the LFSCK first-stage scanning. It may be that the
5201                  * (remote) sub-dir ".." name entry has no parent FID after
5202                  * file-level backup/restore and its linkEA may be wrong.
5203                  * So under such case, we should replace the linkEA according
5204                  * to current name entry. But this needs to be done during the
5205                  * LFSCK second-stage scanning. The LFSCK will record the name
5206                  * entry for further possible using. */
5207                 remove = false;
5208                 newdata = false;
5209                 goto nodata;
5210         } else if (unlikely(rc == -EINVAL)) {
5211                 if ((lfsck_object_type(obj) & S_IFMT) != lnr->lnr_type)
5212                         type = LNIT_BAD_TYPE;
5213
5214                 count = 1;
5215                 ns->ln_flags |= LF_INCONSISTENT;
5216                 /* The magic crashed, we are not sure whether there are more
5217                  * corrupt data in the linkea, so remove all linkea entries. */
5218                 remove = true;
5219                 newdata = true;
5220                 goto nodata;
5221         } else if (rc == -ENODATA) {
5222                 if ((lfsck_object_type(obj) & S_IFMT) != lnr->lnr_type)
5223                         type = LNIT_BAD_TYPE;
5224
5225                 count = 1;
5226                 ns->ln_flags |= LF_UPGRADE;
5227                 remove = false;
5228                 newdata = true;
5229
5230 nodata:
5231                 if (bk->lb_param & LPF_DRYRUN) {
5232                         ns->ln_linkea_repaired++;
5233                         repaired = true;
5234                         log = true;
5235                         goto record;
5236                 }
5237
5238                 if (!lustre_handle_is_used(&lh))
5239                         goto again;
5240
5241                 if (remove) {
5242                         LASSERT(newdata);
5243
5244                         rc = dt_xattr_del(env, obj, XATTR_NAME_LINK, handle,
5245                                           BYPASS_CAPA);
5246                         if (rc != 0)
5247                                 GOTO(stop, rc);
5248                 }
5249
5250                 if (newdata) {
5251                         rc = linkea_data_new(&ldata,
5252                                         &lfsck_env_info(env)->lti_linkea_buf);
5253                         if (rc != 0)
5254                                 GOTO(stop, rc);
5255                 }
5256
5257                 rc = linkea_add_buf(&ldata, cname, pfid);
5258                 if (rc != 0)
5259                         GOTO(stop, rc);
5260
5261                 rc = lfsck_links_write(env, obj, &ldata, handle);
5262                 if (unlikely(rc == -ENOSPC) &&
5263                     S_ISREG(lfsck_object_type(obj)) && !dt_object_remote(obj)) {
5264                         if (handle != NULL) {
5265                                 LASSERT(dt_write_locked(env, obj));
5266
5267                                 dt_write_unlock(env, obj);
5268                                 dtlocked = false;
5269
5270                                 dt_trans_stop(env, dev, handle);
5271                                 handle = NULL;
5272
5273                                 lfsck_ibits_unlock(&lh, LCK_EX);
5274                         }
5275
5276                         rc = lfsck_namespace_trace_update(env, com,
5277                                         &lnr->lnr_fid, LNTF_SKIP_NLINK, true);
5278                         if (rc != 0)
5279                                 /* If we cannot record this object in the
5280                                  * LFSCK tracing, we have to mark the LFSCK
5281                                  * as LF_INCOMPLETE, then the LFSCK will
5282                                  * skip nlink attribute verification for
5283                                  * all objects. */
5284                                 ns->ln_flags |= LF_INCOMPLETE;
5285
5286                         GOTO(out, rc = 0);
5287                 }
5288
5289                 if (rc != 0)
5290                         GOTO(stop, rc);
5291
5292                 count = ldata.ld_leh->leh_reccount;
5293                 if (!S_ISDIR(lfsck_object_type(obj)) ||
5294                     !dt_object_remote(obj)) {
5295                         ns->ln_linkea_repaired++;
5296                         repaired = true;
5297                         log = true;
5298                 }
5299         } else {
5300                 GOTO(stop, rc);
5301         }
5302
5303 record:
5304         LASSERT(count > 0);
5305
5306         rc = dt_attr_get(env, obj, la, BYPASS_CAPA);
5307         if (rc != 0)
5308                 GOTO(stop, rc);
5309
5310         if ((count == 1 && la->la_nlink == 1) ||
5311             S_ISDIR(lfsck_object_type(obj)))
5312                 /* Usually, it is for single linked object or dir, do nothing.*/
5313                 GOTO(stop, rc);
5314
5315         /* Following modification will be in another transaction.  */
5316         if (handle != NULL) {
5317                 dt_write_unlock(env, obj);
5318                 dtlocked = false;
5319
5320                 dt_trans_stop(env, dev, handle);
5321                 handle = NULL;
5322
5323                 lfsck_ibits_unlock(&lh, LCK_EX);
5324         }
5325
5326         ns->ln_mul_linked_checked++;
5327         rc = lfsck_namespace_trace_update(env, com, &lnr->lnr_fid,
5328                                           LNTF_CHECK_LINKEA, true);
5329
5330         GOTO(out, rc);
5331
5332 stop:
5333         if (dtlocked)
5334                 dt_write_unlock(env, obj);
5335
5336         if (handle != NULL && !IS_ERR(handle))
5337                 dt_trans_stop(env, dev, handle);
5338
5339 out:
5340         lfsck_ibits_unlock(&lh, LCK_EX);
5341
5342         if (!name_is_dot_or_dotdot(lnr->lnr_name, lnr->lnr_namelen) &&
5343             !lfsck_is_valid_slave_name_entry(env, lnr->lnr_lmv,
5344                                              lnr->lnr_name, lnr->lnr_namelen) &&
5345             type != LNIT_BAD_DIRENT) {
5346                 ns->ln_flags |= LF_INCONSISTENT;
5347
5348                 log = false;
5349                 rc = lfsck_namespace_repair_bad_name_hash(env, com, dir,
5350                                                 lnr->lnr_lmv, lnr->lnr_name);
5351                 if (rc >= 0)
5352                         bad_hash = true;
5353         }
5354
5355         if (rc >= 0) {
5356                 switch (type) {
5357                 case LNIT_BAD_TYPE:
5358                         log = false;
5359                         rc = lfsck_namespace_repair_dirent(env, com, dir,
5360                                         obj, lnr->lnr_name, lnr->lnr_name,
5361                                         lnr->lnr_type, true, false);
5362                         if (rc > 0)
5363                                 repaired = true;
5364                         break;
5365                 case LNIT_BAD_DIRENT:
5366                         log = false;
5367                         /* XXX: This is a bad dirent, we do not know whether
5368                          *      the original name entry reference a regular
5369                          *      file or a directory, then keep the parent's
5370                          *      nlink count unchanged here. */
5371                         rc = lfsck_namespace_repair_dirent(env, com, dir,
5372                                         obj, lnr->lnr_name, lnr->lnr_name,
5373                                         lnr->lnr_type, false, false);
5374                         if (rc > 0)
5375                                 repaired = true;
5376                         break;
5377                 default:
5378                         break;
5379                 }
5380         }
5381
5382         down_write(&com->lc_sem);
5383         if (rc < 0) {
5384                 CDEBUG(D_LFSCK, "%s: namespace LFSCK assistant fail to handle "
5385                        "the entry: "DFID", parent "DFID", name %.*s: rc = %d\n",
5386                        lfsck_lfsck2name(lfsck), PFID(&lnr->lnr_fid),
5387                        PFID(lfsck_dto2fid(lnr->lnr_obj)),
5388                        lnr->lnr_namelen, lnr->lnr_name, rc);
5389
5390                 lfsck_namespace_record_failure(env, lfsck, ns);
5391                 if ((rc == -ENOTCONN || rc == -ESHUTDOWN || rc == -EREMCHG ||
5392                      rc == -ETIMEDOUT || rc == -EHOSTDOWN ||
5393                      rc == -EHOSTUNREACH || rc == -EINPROGRESS) &&
5394                     dev != NULL && dev != lfsck->li_next)
5395                         lfsck_lad_set_bitmap(env, com, idx);
5396
5397                 if (!(bk->lb_param & LPF_FAILOUT))
5398                         rc = 0;
5399         } else {
5400                 if (log)
5401                         CDEBUG(D_LFSCK, "%s: namespace LFSCK assistant "
5402                                "repaired the entry: "DFID", parent "DFID
5403                                ", name %.*s\n", lfsck_lfsck2name(lfsck),
5404                                PFID(&lnr->lnr_fid),
5405                                PFID(lfsck_dto2fid(lnr->lnr_obj)),
5406                                lnr->lnr_namelen, lnr->lnr_name);
5407
5408                 if (repaired) {
5409                         ns->ln_items_repaired++;
5410
5411                         switch (type) {
5412                         case LNIT_DANGLING:
5413                                 ns->ln_dangling_repaired++;
5414                                 break;
5415                         case LNIT_BAD_TYPE:
5416                                 ns->ln_bad_type_repaired++;
5417                                 break;
5418                         case LNIT_BAD_DIRENT:
5419                                 ns->ln_dirent_repaired++;
5420                                 break;
5421                         default:
5422                                 break;
5423                         }
5424
5425                         if (bk->lb_param & LPF_DRYRUN &&
5426                             lfsck_pos_is_zero(&ns->ln_pos_first_inconsistent))
5427                                 lfsck_pos_fill(env, lfsck,
5428                                                &ns->ln_pos_first_inconsistent,
5429                                                false);
5430                 }
5431
5432                 if (bad_hash) {
5433                         ns->ln_name_hash_repaired++;
5434
5435                         /* Not count repeatedly. */
5436                         if (!repaired)
5437                                 ns->ln_items_repaired++;
5438
5439                         if (bk->lb_param & LPF_DRYRUN &&
5440                             lfsck_pos_is_zero(&ns->ln_pos_first_inconsistent))
5441                                 lfsck_pos_fill(env, lfsck,
5442                                                &ns->ln_pos_first_inconsistent,
5443                                                false);
5444                 }
5445
5446
5447                 rc = 0;
5448         }
5449         up_write(&com->lc_sem);
5450
5451         if (obj != NULL && !IS_ERR(obj))
5452                 lfsck_object_put(env, obj);
5453
5454         return rc;
5455 }
5456
5457 /**
5458  * Handle one orphan under the backend /lost+found directory
5459  *
5460  * Insert the orphan FID into the namespace LFSCK trace file for further
5461  * processing (via the subsequent namespace LFSCK second-stage scanning).
5462  * At the same time, remove the orphan name entry from backend /lost+found
5463  * directory. There is an interval between the orphan name entry removed
5464  * from the backend /lost+found directory and the orphan FID in the LFSCK
5465  * trace file handled. In such interval, the LFSCK can be reset, then
5466  * all the FIDs recorded in the namespace LFSCK trace file will be dropped.
5467  * To guarantee that the orphans can be found when LFSCK run next time
5468  * without e2fsck again, when remove the orphan name entry, the LFSCK
5469  * will set the orphan's ctime attribute as 1. Since normal applications
5470  * cannot change the object's ctime attribute as 1. Then when LFSCK run
5471  * next time, it can record the object (that ctime is 1) in the namespace
5472  * LFSCK trace file during the first-stage scanning.
5473  *
5474  * \param[in] env       pointer to the thread context
5475  * \param[in] com       pointer to the lfsck component
5476  * \param[in] parent    pointer to the object for the backend /lost+found
5477  * \param[in] ent       pointer to the name entry for the target under the
5478  *                      backend /lost+found
5479  *
5480  * \retval              positive for repaired
5481  * \retval              0 if needs to repair nothing
5482  * \retval              negative error number on failure
5483  */
5484 static int lfsck_namespace_scan_local_lpf_one(const struct lu_env *env,
5485                                               struct lfsck_component *com,
5486                                               struct dt_object *parent,
5487                                               struct lu_dirent *ent)
5488 {
5489         struct lfsck_thread_info        *info   = lfsck_env_info(env);
5490         struct lu_fid                   *key    = &info->lti_fid;
5491         struct lu_attr                  *la     = &info->lti_la;
5492         struct lfsck_instance           *lfsck  = com->lc_lfsck;
5493         struct dt_object                *obj    = com->lc_obj;
5494         struct dt_device                *dev    = lfsck->li_bottom;
5495         struct dt_object                *child  = NULL;
5496         struct thandle                  *th     = NULL;
5497         int                              rc     = 0;
5498         __u8                             flags  = 0;
5499         bool                             exist  = false;
5500         ENTRY;
5501
5502         child = lfsck_object_find_by_dev(env, dev, &ent->lde_fid);
5503         if (IS_ERR(child))
5504                 RETURN(PTR_ERR(child));
5505
5506         LASSERT(dt_object_exists(child));
5507         LASSERT(!dt_object_remote(child));
5508
5509         fid_cpu_to_be(key, &ent->lde_fid);
5510         rc = dt_lookup(env, obj, (struct dt_rec *)&flags,
5511                        (const struct dt_key *)key, BYPASS_CAPA);
5512         if (rc == 0) {
5513                 exist = true;
5514                 flags |= LNTF_CHECK_ORPHAN;
5515         } else if (rc == -ENOENT) {
5516                 flags = LNTF_CHECK_ORPHAN;
5517         } else {
5518                 GOTO(out, rc);
5519         }
5520
5521         th = dt_trans_create(env, dev);
5522         if (IS_ERR(th))
5523                 GOTO(out, rc = PTR_ERR(th));
5524
5525         /* a1. remove name entry from backend /lost+found */
5526         rc = dt_declare_delete(env, parent,
5527                                (const struct dt_key *)ent->lde_name, th);
5528         if (rc != 0)
5529                 GOTO(stop, rc);
5530
5531         if (S_ISDIR(lfsck_object_type(child))) {
5532                 /* a2. decrease parent's nlink */
5533                 rc = dt_declare_ref_del(env, parent, th);
5534                 if (rc != 0)
5535                         GOTO(stop, rc);
5536         }
5537
5538         if (exist) {
5539                 /* a3. remove child's FID from the LFSCK trace file. */
5540                 rc = dt_declare_delete(env, obj,
5541                                        (const struct dt_key *)key, th);
5542                 if (rc != 0)
5543                         GOTO(stop, rc);
5544         } else {
5545                 /* a4. set child's ctime as 1 */
5546                 memset(la, 0, sizeof(*la));
5547                 la->la_ctime = 1;
5548                 la->la_valid = LA_CTIME;
5549                 rc = dt_declare_attr_set(env, child, la, th);
5550                 if (rc != 0)
5551                         GOTO(stop, rc);
5552         }
5553
5554         /* a5. insert child's FID into the LFSCK trace file. */
5555         rc = dt_declare_insert(env, obj, (const struct dt_rec *)&flags,
5556                                (const struct dt_key *)key, th);
5557         if (rc != 0)
5558                 GOTO(stop, rc);
5559
5560         rc = dt_trans_start_local(env, dev, th);
5561         if (rc != 0)
5562                 GOTO(stop, rc);
5563
5564         /* b1. remove name entry from backend /lost+found */
5565         rc = dt_delete(env, parent, (const struct dt_key *)ent->lde_name, th,
5566                        BYPASS_CAPA);
5567         if (rc != 0)
5568                 GOTO(stop, rc);
5569
5570         if (S_ISDIR(lfsck_object_type(child))) {
5571                 /* b2. decrease parent's nlink */
5572                 dt_write_lock(env, parent, 0);
5573                 rc = dt_ref_del(env, parent, th);
5574                 dt_write_unlock(env, parent);
5575                 if (rc != 0)
5576                         GOTO(stop, rc);
5577         }
5578
5579         if (exist) {
5580                 /* a3. remove child's FID from the LFSCK trace file. */
5581                 rc = dt_delete(env, obj, (const struct dt_key *)key, th,
5582                                BYPASS_CAPA);
5583                 if (rc != 0)
5584                         GOTO(stop, rc);
5585         } else {
5586                 /* b4. set child's ctime as 1 */
5587                 rc = dt_attr_set(env, child, la, th, BYPASS_CAPA);
5588                 if (rc != 0)
5589                         GOTO(stop, rc);
5590         }
5591
5592         /* b5. insert child's FID into the LFSCK trace file. */
5593         rc = dt_insert(env, obj, (const struct dt_rec *)&flags,
5594                        (const struct dt_key *)key, th, BYPASS_CAPA, 1);
5595
5596         GOTO(stop, rc = (rc == 0 ? 1 : rc));
5597
5598 stop:
5599         dt_trans_stop(env, dev, th);
5600
5601 out:
5602         lu_object_put(env, &child->do_lu);
5603
5604         return rc;
5605 }
5606
5607 /**
5608  * Handle orphans under the backend /lost+found directory
5609  *
5610  * Some backend checker, such as e2fsck for ldiskfs may find some orphans
5611  * and put them under the backend /lost+found directory that is invisible
5612  * to client. The LFSCK will scan such directory, for the original client
5613  * visible orphans, add their fids into the namespace LFSCK trace file,
5614  * then the subsenquent namespace LFSCK second-stage scanning can handle
5615  * them as other objects to be double scanned: either move back to normal
5616  * namespace, or to the global visible orphan directory:
5617  * /ROOT/.lustre/lost+found/MDTxxxx/
5618  *
5619  * \param[in] env       pointer to the thread context
5620  * \param[in] com       pointer to the lfsck component
5621  */
5622 static void lfsck_namespace_scan_local_lpf(const struct lu_env *env,
5623                                            struct lfsck_component *com)
5624 {
5625         struct lfsck_thread_info        *info   = lfsck_env_info(env);
5626         struct lu_dirent                *ent    =
5627                                         (struct lu_dirent *)info->lti_key;
5628         struct lu_seq_range             *range  = &info->lti_range;
5629         struct lfsck_instance           *lfsck  = com->lc_lfsck;
5630         struct ptlrpc_thread            *thread = &lfsck->li_thread;
5631         struct lfsck_bookmark           *bk     = &lfsck->li_bookmark_ram;
5632         struct dt_device                *dev    = lfsck->li_bottom;
5633         struct lfsck_namespace          *ns     = com->lc_file_ram;
5634         struct dt_object                *parent;
5635         const struct dt_it_ops          *iops;
5636         struct dt_it                    *di;
5637         struct seq_server_site          *ss     =
5638                                         lu_site2seq(dev->dd_lu_dev.ld_site);
5639         __u64                            cookie;
5640         int                              rc     = 0;
5641         __u16                            type;
5642         ENTRY;
5643
5644         parent = lfsck_object_find_by_dev(env, dev, &LU_BACKEND_LPF_FID);
5645         if (IS_ERR(parent)) {
5646                 CERROR("%s: fail to find backend /lost+found: rc = %ld\n",
5647                        lfsck_lfsck2name(lfsck), PTR_ERR(parent));
5648                 RETURN_EXIT;
5649         }
5650
5651         /* It is normal that the /lost+found does not exist for ZFS backend. */
5652         if (!dt_object_exists(parent))
5653                 GOTO(out, rc = 0);
5654
5655         if (unlikely(!dt_try_as_dir(env, parent)))
5656                 GOTO(out, rc = -ENOTDIR);
5657
5658         CDEBUG(D_LFSCK, "%s: start to scan backend /lost+found\n",
5659                lfsck_lfsck2name(lfsck));
5660
5661         com->lc_new_scanned = 0;
5662         iops = &parent->do_index_ops->dio_it;
5663         di = iops->init(env, parent, LUDA_64BITHASH | LUDA_TYPE, BYPASS_CAPA);
5664         if (IS_ERR(di))
5665                 GOTO(out, rc = PTR_ERR(di));
5666
5667         rc = iops->load(env, di, 0);
5668         if (rc == 0)
5669                 rc = iops->next(env, di);
5670         else if (rc > 0)
5671                 rc = 0;
5672
5673         while (rc == 0) {
5674                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DELAY3) &&
5675                     cfs_fail_val > 0) {
5676                         struct l_wait_info lwi;
5677
5678                         lwi = LWI_TIMEOUT(cfs_time_seconds(cfs_fail_val),
5679                                           NULL, NULL);
5680                         l_wait_event(thread->t_ctl_waitq,
5681                                      !thread_is_running(thread),
5682                                      &lwi);
5683
5684                         if (unlikely(!thread_is_running(thread)))
5685                                 break;
5686                 }
5687
5688                 rc = iops->rec(env, di, (struct dt_rec *)ent,
5689                                LUDA_64BITHASH | LUDA_TYPE);
5690                 if (rc == 0)
5691                         rc = lfsck_unpack_ent(ent, &cookie, &type);
5692
5693                 if (unlikely(rc != 0)) {
5694                         CDEBUG(D_LFSCK, "%s: fail to iterate backend "
5695                                "/lost+found: rc = %d\n",
5696                                lfsck_lfsck2name(lfsck), rc);
5697
5698                         goto skip;
5699                 }
5700
5701                 /* skip dot and dotdot entries */
5702                 if (name_is_dot_or_dotdot(ent->lde_name, ent->lde_namelen))
5703                         goto next;
5704
5705                 if (!fid_seq_in_fldb(fid_seq(&ent->lde_fid)))
5706                         goto skip;
5707
5708                 if (fid_is_norm(&ent->lde_fid)) {
5709                         fld_range_set_mdt(range);
5710                         rc = fld_local_lookup(env, ss->ss_server_fld,
5711                                               fid_seq(&ent->lde_fid), range);
5712                         if (rc != 0)
5713                                 goto skip;
5714                 } else if (lfsck_dev_idx(dev) != 0) {
5715                         /* If the returned FID is IGIF, then there are three
5716                          * possible cases:
5717                          *
5718                          * 1) The object is upgraded from old Lustre-1.8 with
5719                          *    IGIF assigned to such object.
5720                          * 2) The object is a backend local object and is
5721                          *    invisible to client.
5722                          * 3) The object lost its LMV EA, and since there is
5723                          *    no FID-in-dirent for the orphan in the backend
5724                          *    /lost+found directory, then the low layer will
5725                          *    return IGIF for such object.
5726                          *
5727                          * For MDTx (x != 0), it is either case 2) or case 3),
5728                          * but from the LFSCK view, they are indistinguishable.
5729                          * To be safe, the LFSCK will keep it there and report
5730                          * some message, then the adminstrator can handle that
5731                          * furtherly.
5732                          *
5733                          * For MDT0, it is more possible the case 1). The LFSCK
5734                          * will handle the orphan as an upgraded object. */
5735                         CDEBUG(D_LFSCK, "%s: the orphan %.*s with IGIF "DFID
5736                                "in the backend /lost+found on the MDT %04x, "
5737                                "to be safe, skip it.\n",
5738                                lfsck_lfsck2name(lfsck), ent->lde_namelen,
5739                                ent->lde_name, PFID(&ent->lde_fid),
5740                                lfsck_dev_idx(dev));
5741                         goto skip;
5742                 }
5743
5744                 rc = lfsck_namespace_scan_local_lpf_one(env, com, parent, ent);
5745
5746 skip:
5747                 down_write(&com->lc_sem);
5748                 com->lc_new_scanned++;
5749                 ns->ln_local_lpf_scanned++;
5750                 if (rc > 0)
5751                         ns->ln_local_lpf_moved++;
5752                 else if (rc == 0)
5753                         ns->ln_local_lpf_skipped++;
5754                 else
5755                         ns->ln_local_lpf_failed++;
5756                 up_write(&com->lc_sem);
5757
5758                 if (rc < 0 && bk->lb_param & LPF_FAILOUT)
5759                         break;
5760
5761 next:
5762                 lfsck_control_speed_by_self(com);
5763                 if (unlikely(!thread_is_running(thread))) {
5764                         rc = 0;
5765                         break;
5766                 }
5767
5768                 rc = iops->next(env, di);
5769         }
5770
5771         iops->put(env, di);
5772         iops->fini(env, di);
5773
5774         EXIT;
5775
5776 out:
5777         CDEBUG(D_LFSCK, "%s: stop to scan backend /lost+found: rc = %d\n",
5778                lfsck_lfsck2name(lfsck), rc);
5779
5780         lu_object_put(env, &parent->do_lu);
5781 }
5782
5783 /**
5784  * Rescan the striped directory after the master LMV EA reset.
5785  *
5786  * Sometimes, the master LMV EA of the striped directory maybe lost, so when
5787  * the namespace LFSCK engine scan the striped directory for the first time,
5788  * it will be regarded as a normal directory. As the LFSCK processing, some
5789  * other LFSCK instance on other MDT will find the shard of this striped dir,
5790  * and find that the master MDT-object of the striped directory lost its LMV
5791  * EA, then such remote LFSCK instance will regenerate the master LMV EA and
5792  * notify the LFSCK instance on this MDT to rescan the striped directory.
5793  *
5794  * \param[in] env       pointer to the thread context
5795  * \param[in] com       pointer to the lfsck component
5796  * \param[in] llu       the lfsck_lmv_unit that contains the striped directory
5797  *                      to be rescanned.
5798  *
5799  * \retval              positive number for success
5800  * \retval              0 for LFSCK stopped/paused
5801  * \retval              negative error number on failure
5802  */
5803 static int lfsck_namespace_rescan_striped_dir(const struct lu_env *env,
5804                                               struct lfsck_component *com,
5805                                               struct lfsck_lmv_unit *llu)
5806 {
5807         struct lfsck_thread_info        *info   = lfsck_env_info(env);
5808         struct lfsck_instance           *lfsck  = com->lc_lfsck;
5809         struct lfsck_assistant_data     *lad    = com->lc_data;
5810         struct dt_object                *dir;
5811         const struct dt_it_ops          *iops;
5812         struct dt_it                    *di;
5813         struct lu_dirent                *ent    =
5814                         (struct lu_dirent *)info->lti_key;
5815         struct lfsck_bookmark           *bk     = &lfsck->li_bookmark_ram;
5816         struct ptlrpc_thread            *thread = &lfsck->li_thread;
5817         struct lfsck_namespace_req      *lnr;
5818         struct lfsck_assistant_req      *lar;
5819         int                              rc;
5820         __u16                            type;
5821         ENTRY;
5822
5823         LASSERT(list_empty(&lad->lad_req_list));
5824
5825         lfsck->li_lmv = &llu->llu_lmv;
5826         lfsck->li_obj_dir = lfsck_object_get(llu->llu_obj);
5827         rc = lfsck_open_dir(env, lfsck, 0);
5828         if (rc != 0)
5829                 RETURN(rc);
5830
5831         dir = lfsck->li_obj_dir;
5832         di = lfsck->li_di_dir;
5833         iops = &dir->do_index_ops->dio_it;
5834         do {
5835                 rc = iops->rec(env, di, (struct dt_rec *)ent,
5836                                lfsck->li_args_dir);
5837                 if (rc == 0)
5838                         rc = lfsck_unpack_ent(ent, &lfsck->li_cookie_dir,
5839                                               &type);
5840
5841                 if (rc != 0) {
5842                         if (bk->lb_param & LPF_FAILOUT)
5843                                 GOTO(out, rc);
5844
5845                         goto next;
5846                 }
5847
5848                 if (name_is_dot_or_dotdot(ent->lde_name, ent->lde_namelen))
5849                         goto next;
5850
5851                 lnr = lfsck_namespace_assistant_req_init(lfsck, ent, type);
5852                 if (IS_ERR(lnr)) {
5853                         if (bk->lb_param & LPF_FAILOUT)
5854                                 GOTO(out, rc = PTR_ERR(lnr));
5855
5856                         goto next;
5857                 }
5858
5859                 lar = &lnr->lnr_lar;
5860                 rc = lfsck_namespace_assistant_handler_p1(env, com, lar);
5861                 lfsck_namespace_assistant_req_fini(env, lar);
5862                 if (rc != 0 && bk->lb_param & LPF_FAILOUT)
5863                         GOTO(out, rc);
5864
5865                 if (unlikely(!thread_is_running(thread)))
5866                         GOTO(out, rc = 0);
5867
5868 next:
5869                 rc = iops->next(env, di);
5870         } while (rc == 0);
5871
5872 out:
5873         lfsck_close_dir(env, lfsck, rc);
5874         if (rc <= 0)
5875                 RETURN(rc);
5876
5877         /* The close_dir() may insert a dummy lnr in the lad->lad_req_list. */
5878         if (list_empty(&lad->lad_req_list))
5879                 RETURN(1);
5880
5881         spin_lock(&lad->lad_lock);
5882         lar = list_entry(lad->lad_req_list.next, struct lfsck_assistant_req,
5883                           lar_list);
5884         list_del_init(&lar->lar_list);
5885         spin_unlock(&lad->lad_lock);
5886
5887         rc = lfsck_namespace_assistant_handler_p1(env, com, lar);
5888         lfsck_namespace_assistant_req_fini(env, lar);
5889
5890         RETURN(rc == 0 ? 1 : rc);
5891 }
5892
5893 static int lfsck_namespace_assistant_handler_p2(const struct lu_env *env,
5894                                                 struct lfsck_component *com)
5895 {
5896         struct lfsck_instance   *lfsck  = com->lc_lfsck;
5897         struct ptlrpc_thread    *thread = &lfsck->li_thread;
5898         struct lfsck_bookmark   *bk     = &lfsck->li_bookmark_ram;
5899         struct lfsck_namespace  *ns     = com->lc_file_ram;
5900         struct dt_object        *obj    = com->lc_obj;
5901         const struct dt_it_ops  *iops   = &obj->do_index_ops->dio_it;
5902         struct dt_object        *target;
5903         struct dt_it            *di;
5904         struct dt_key           *key;
5905         struct lu_fid            fid;
5906         int                      rc;
5907         __u8                     flags  = 0;
5908         ENTRY;
5909
5910         while (!list_empty(&lfsck->li_list_lmv)) {
5911                 struct lfsck_lmv_unit *llu;
5912
5913                 spin_lock(&lfsck->li_lock);
5914                 llu = list_entry(lfsck->li_list_lmv.next,
5915                                  struct lfsck_lmv_unit, llu_link);
5916                 list_del_init(&llu->llu_link);
5917                 spin_unlock(&lfsck->li_lock);
5918
5919                 rc = lfsck_namespace_rescan_striped_dir(env, com, llu);
5920                 if (rc <= 0)
5921                         RETURN(rc);
5922         }
5923
5924         CDEBUG(D_LFSCK, "%s: namespace LFSCK phase2 scan start\n",
5925                lfsck_lfsck2name(lfsck));
5926
5927         lfsck_namespace_scan_local_lpf(env, com);
5928
5929         com->lc_new_checked = 0;
5930         com->lc_new_scanned = 0;
5931         com->lc_time_last_checkpoint = cfs_time_current();
5932         com->lc_time_next_checkpoint = com->lc_time_last_checkpoint +
5933                                 cfs_time_seconds(LFSCK_CHECKPOINT_INTERVAL);
5934
5935         di = iops->init(env, obj, 0, BYPASS_CAPA);
5936         if (IS_ERR(di))
5937                 RETURN(PTR_ERR(di));
5938
5939         fid_cpu_to_be(&fid, &ns->ln_fid_latest_scanned_phase2);
5940         rc = iops->get(env, di, (const struct dt_key *)&fid);
5941         if (rc < 0)
5942                 GOTO(fini, rc);
5943
5944         /* Skip the start one, which either has been processed or non-exist. */
5945         rc = iops->next(env, di);
5946         if (rc != 0)
5947                 GOTO(put, rc);
5948
5949         do {
5950                 if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_DELAY3) &&
5951                     cfs_fail_val > 0) {
5952                         struct l_wait_info lwi;
5953
5954                         lwi = LWI_TIMEOUT(cfs_time_seconds(cfs_fail_val),
5955                                           NULL, NULL);
5956                         l_wait_event(thread->t_ctl_waitq,
5957                                      !thread_is_running(thread),
5958                                      &lwi);
5959
5960                         if (unlikely(!thread_is_running(thread)))
5961                                 GOTO(put, rc = 0);
5962                 }
5963
5964                 key = iops->key(env, di);
5965                 fid_be_to_cpu(&fid, (const struct lu_fid *)key);
5966                 if (!fid_is_sane(&fid)) {
5967                         rc = 0;
5968                         goto checkpoint;
5969                 }
5970
5971                 target = lfsck_object_find_by_dev(env, lfsck->li_bottom, &fid);
5972                 if (IS_ERR(target)) {
5973                         rc = PTR_ERR(target);
5974                         goto checkpoint;
5975                 }
5976
5977                 if (dt_object_exists(target)) {
5978                         rc = iops->rec(env, di, (struct dt_rec *)&flags, 0);
5979                         if (rc == 0) {
5980                                 rc = lfsck_namespace_double_scan_one(env, com,
5981                                                                 target, flags);
5982                                 if (rc == -ENOENT)
5983                                         rc = 0;
5984                         }
5985                 }
5986
5987                 lfsck_object_put(env, target);
5988
5989 checkpoint:
5990                 down_write(&com->lc_sem);
5991                 com->lc_new_checked++;
5992                 com->lc_new_scanned++;
5993                 ns->ln_fid_latest_scanned_phase2 = fid;
5994                 if (rc > 0)
5995                         ns->ln_objs_repaired_phase2++;
5996                 else if (rc < 0)
5997                         ns->ln_objs_failed_phase2++;
5998                 up_write(&com->lc_sem);
5999
6000                 if (rc < 0 && bk->lb_param & LPF_FAILOUT)
6001                         GOTO(put, rc);
6002
6003                 if (unlikely(cfs_time_beforeq(com->lc_time_next_checkpoint,
6004                                               cfs_time_current())) &&
6005                     com->lc_new_checked != 0) {
6006                         down_write(&com->lc_sem);
6007                         ns->ln_run_time_phase2 +=
6008                                 cfs_duration_sec(cfs_time_current() +
6009                                 HALF_SEC - com->lc_time_last_checkpoint);
6010                         ns->ln_time_last_checkpoint = cfs_time_current_sec();
6011                         ns->ln_objs_checked_phase2 += com->lc_new_checked;
6012                         com->lc_new_checked = 0;
6013                         rc = lfsck_namespace_store(env, com, false);
6014                         up_write(&com->lc_sem);
6015                         if (rc != 0)
6016                                 GOTO(put, rc);
6017
6018                         com->lc_time_last_checkpoint = cfs_time_current();
6019                         com->lc_time_next_checkpoint =
6020                                 com->lc_time_last_checkpoint +
6021                                 cfs_time_seconds(LFSCK_CHECKPOINT_INTERVAL);
6022                 }
6023
6024                 lfsck_control_speed_by_self(com);
6025                 if (unlikely(!thread_is_running(thread)))
6026                         GOTO(put, rc = 0);
6027
6028                 rc = iops->next(env, di);
6029         } while (rc == 0);
6030
6031         GOTO(put, rc);
6032
6033 put:
6034         iops->put(env, di);
6035
6036 fini:
6037         iops->fini(env, di);
6038
6039         CDEBUG(D_LFSCK, "%s: namespace LFSCK phase2 scan stop: rc = %d\n",
6040                lfsck_lfsck2name(lfsck), rc);
6041
6042         return rc;
6043 }
6044
6045 static void lfsck_namespace_assistant_fill_pos(const struct lu_env *env,
6046                                                struct lfsck_component *com,
6047                                                struct lfsck_position *pos)
6048 {
6049         struct lfsck_assistant_data     *lad = com->lc_data;
6050         struct lfsck_namespace_req      *lnr;
6051
6052         if (list_empty(&lad->lad_req_list))
6053                 return;
6054
6055         lnr = list_entry(lad->lad_req_list.next,
6056                          struct lfsck_namespace_req,
6057                          lnr_lar.lar_list);
6058         pos->lp_oit_cookie = lnr->lnr_oit_cookie;
6059         pos->lp_dir_cookie = lnr->lnr_dir_cookie - 1;
6060         pos->lp_dir_parent = *lfsck_dto2fid(lnr->lnr_obj);
6061 }
6062
6063 static int lfsck_namespace_double_scan_result(const struct lu_env *env,
6064                                               struct lfsck_component *com,
6065                                               int rc)
6066 {
6067         struct lfsck_instance   *lfsck  = com->lc_lfsck;
6068         struct lfsck_namespace  *ns     = com->lc_file_ram;
6069
6070         down_write(&com->lc_sem);
6071         ns->ln_run_time_phase2 += cfs_duration_sec(cfs_time_current() +
6072                                 HALF_SEC - lfsck->li_time_last_checkpoint);
6073         ns->ln_time_last_checkpoint = cfs_time_current_sec();
6074         ns->ln_objs_checked_phase2 += com->lc_new_checked;
6075         com->lc_new_checked = 0;
6076
6077         if (rc > 0) {
6078                 if (ns->ln_flags & LF_INCOMPLETE)
6079                         ns->ln_status = LS_PARTIAL;
6080                 else
6081                         ns->ln_status = LS_COMPLETED;
6082                 if (!(lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN))
6083                         ns->ln_flags &= ~(LF_SCANNED_ONCE | LF_INCONSISTENT);
6084                 ns->ln_time_last_complete = ns->ln_time_last_checkpoint;
6085                 ns->ln_success_count++;
6086         } else if (rc == 0) {
6087                 if (lfsck->li_status != 0)
6088                         ns->ln_status = lfsck->li_status;
6089                 else
6090                         ns->ln_status = LS_STOPPED;
6091         } else {
6092                 ns->ln_status = LS_FAILED;
6093         }
6094
6095         rc = lfsck_namespace_store(env, com, false);
6096         up_write(&com->lc_sem);
6097
6098         return rc;
6099 }
6100
6101 static int
6102 lfsck_namespace_assistant_sync_failures_interpret(const struct lu_env *env,
6103                                                   struct ptlrpc_request *req,
6104                                                   void *args, int rc)
6105 {
6106         return 0;
6107 }
6108
6109 /**
6110  * Notify remote LFSCK instances about former failures.
6111  *
6112  * The local LFSCK instance has recorded which MDTs have ever failed to respond
6113  * some LFSCK verification requests (maybe because of network issues or the MDT
6114  * itself trouble). During the respond gap the MDT may missed some name entries
6115  * verification, then the MDT cannot know whether related MDT-objects have been
6116  * referenced by related name entries or not, then in the second-stage scanning,
6117  * these MDT-objects will be regarded as orphan, if the MDT-object contains bad
6118  * linkEA for back reference, then it will misguide the LFSCK to generate wrong
6119  * name entry for repairing the orphan.
6120  *
6121  * To avoid above trouble, when layout LFSCK finishes the first-stage scanning,
6122  * it will scan the bitmap for the ever failed MDTs, and notify them that they
6123  * have ever missed some name entries verification and should skip the handling
6124  * for orphan MDT-objects.
6125  *
6126  * \param[in] env       pointer to the thread context
6127  * \param[in] com       pointer to the lfsck component
6128  * \param[in] lr        pointer to the lfsck request
6129  */
6130 static void lfsck_namespace_assistant_sync_failures(const struct lu_env *env,
6131                                                     struct lfsck_component *com,
6132                                                     struct lfsck_request *lr)
6133 {
6134         struct lfsck_async_interpret_args *laia  =
6135                                 &lfsck_env_info(env)->lti_laia2;
6136         struct lfsck_assistant_data       *lad   = com->lc_data;
6137         struct lfsck_namespace            *ns    = com->lc_file_ram;
6138         struct lfsck_instance             *lfsck = com->lc_lfsck;
6139         struct lfsck_tgt_descs            *ltds  = &lfsck->li_mdt_descs;
6140         struct lfsck_tgt_desc             *ltd;
6141         struct ptlrpc_request_set         *set;
6142         int                                rc    = 0;
6143         ENTRY;
6144
6145         set = ptlrpc_prep_set();
6146         if (set == NULL)
6147                 GOTO(out, rc = -ENOMEM);
6148
6149         lr->lr_flags2 = ns->ln_flags | LF_INCOMPLETE;
6150         memset(laia, 0, sizeof(*laia));
6151         lad->lad_touch_gen++;
6152
6153         spin_lock(&ltds->ltd_lock);
6154         while (!list_empty(&lad->lad_mdt_list)) {
6155                 ltd = list_entry(lad->lad_mdt_list.next,
6156                                  struct lfsck_tgt_desc,
6157                                  ltd_namespace_list);
6158                 if (ltd->ltd_namespace_gen == lad->lad_touch_gen)
6159                         break;
6160
6161                 ltd->ltd_namespace_gen = lad->lad_touch_gen;
6162                 list_move_tail(&ltd->ltd_namespace_list,
6163                                &lad->lad_mdt_list);
6164                 if (!lad->lad_incomplete ||
6165                     !cfs_bitmap_check(lad->lad_bitmap, ltd->ltd_index)) {
6166                         ltd->ltd_namespace_failed = 0;
6167                         continue;
6168                 }
6169
6170                 ltd->ltd_namespace_failed = 1;
6171                 spin_unlock(&ltds->ltd_lock);
6172                 rc = lfsck_async_request(env, ltd->ltd_exp, lr, set,
6173                         lfsck_namespace_assistant_sync_failures_interpret,
6174                         laia, LFSCK_NOTIFY);
6175                 if (rc != 0)
6176                         CDEBUG(D_LFSCK, "%s: namespace LFSCK assistant fail "
6177                                "to sync failure with MDT %x: rc = %d\n",
6178                                lfsck_lfsck2name(lfsck), ltd->ltd_index, rc);
6179
6180                 spin_lock(&ltds->ltd_lock);
6181         }
6182         spin_unlock(&ltds->ltd_lock);
6183
6184         rc = ptlrpc_set_wait(set);
6185         ptlrpc_set_destroy(set);
6186
6187         GOTO(out, rc);
6188
6189 out:
6190         if (rc != 0)
6191                 CDEBUG(D_LFSCK, "%s: namespace LFSCK assistant fail "
6192                        "to sync failure with MDTs, and related MDTs "
6193                        "may handle orphan improperly: rc = %d\n",
6194                        lfsck_lfsck2name(lfsck), rc);
6195
6196         EXIT;
6197 }
6198
6199 struct lfsck_assistant_operations lfsck_namespace_assistant_ops = {
6200         .la_handler_p1          = lfsck_namespace_assistant_handler_p1,
6201         .la_handler_p2          = lfsck_namespace_assistant_handler_p2,
6202         .la_fill_pos            = lfsck_namespace_assistant_fill_pos,
6203         .la_double_scan_result  = lfsck_namespace_double_scan_result,
6204         .la_req_fini            = lfsck_namespace_assistant_req_fini,
6205         .la_sync_failures       = lfsck_namespace_assistant_sync_failures,
6206 };
6207
6208 /**
6209  * Verify the specified linkEA entry for the given directory object.
6210  * If the object has no such linkEA entry or it has more other linkEA
6211  * entries, then re-generate the linkEA with the given information.
6212  *
6213  * \param[in] env       pointer to the thread context
6214  * \param[in] dev       pointer to the dt_device
6215  * \param[in] obj       pointer to the dt_object to be handled
6216  * \param[in] cname     the name for the child in the parent directory
6217  * \param[in] pfid      the parent directory's FID for the linkEA
6218  *
6219  * \retval              0 for success
6220  * \retval              negative error number on failure
6221  */
6222 int lfsck_verify_linkea(const struct lu_env *env, struct dt_device *dev,
6223                         struct dt_object *obj, const struct lu_name *cname,
6224                         const struct lu_fid *pfid)
6225 {
6226         struct linkea_data       ldata  = { 0 };
6227         struct lu_buf            linkea_buf;
6228         struct thandle          *th;
6229         int                      rc;
6230         int                      fl     = LU_XATTR_CREATE;
6231         bool                     dirty  = false;
6232         ENTRY;
6233
6234         LASSERT(S_ISDIR(lfsck_object_type(obj)));
6235
6236         rc = lfsck_links_read(env, obj, &ldata);
6237         if (rc == -ENODATA) {
6238                 dirty = true;
6239         } else if (rc == 0) {
6240                 fl = LU_XATTR_REPLACE;
6241                 if (ldata.ld_leh->leh_reccount != 1) {
6242                         dirty = true;
6243                 } else {
6244                         rc = linkea_links_find(&ldata, cname, pfid);
6245                         if (rc != 0)
6246                                 dirty = true;
6247                 }
6248         }
6249
6250         if (!dirty)
6251                 RETURN(rc);
6252
6253         rc = linkea_data_new(&ldata, &lfsck_env_info(env)->lti_linkea_buf);
6254         if (rc != 0)
6255                 RETURN(rc);
6256
6257         rc = linkea_add_buf(&ldata, cname, pfid);
6258         if (rc != 0)
6259                 RETURN(rc);
6260
6261         lfsck_buf_init(&linkea_buf, ldata.ld_buf->lb_buf,
6262                        ldata.ld_leh->leh_len);
6263         th = dt_trans_create(env, dev);
6264         if (IS_ERR(th))
6265                 RETURN(PTR_ERR(th));
6266
6267         rc = dt_declare_xattr_set(env, obj, &linkea_buf,
6268                                   XATTR_NAME_LINK, fl, th);
6269         if (rc != 0)
6270                 GOTO(stop, rc);
6271
6272         rc = dt_trans_start_local(env, dev, th);
6273         if (rc != 0)
6274                 GOTO(stop, rc);
6275
6276         dt_write_lock(env, obj, 0);
6277         rc = dt_xattr_set(env, obj, &linkea_buf,
6278                           XATTR_NAME_LINK, fl, th, BYPASS_CAPA);
6279         dt_write_unlock(env, obj);
6280
6281         GOTO(stop, rc);
6282
6283 stop:
6284         dt_trans_stop(env, dev, th);
6285         return rc;
6286 }
6287
6288 /**
6289  * Get the name and parent directory's FID from the first linkEA entry.
6290  *
6291  * \param[in] env       pointer to the thread context
6292  * \param[in] obj       pointer to the object which get linkEA from
6293  * \param[out] name     pointer to the buffer to hold the name
6294  *                      in the first linkEA entry
6295  * \param[out] pfid     pointer to the buffer to hold the parent
6296  *                      directory's FID in the first linkEA entry
6297  *
6298  * \retval              0 for success
6299  * \retval              negative error number on failure
6300  */
6301 int lfsck_links_get_first(const struct lu_env *env, struct dt_object *obj,
6302                           char *name, struct lu_fid *pfid)
6303 {
6304         struct lu_name           *cname = &lfsck_env_info(env)->lti_name;
6305         struct linkea_data        ldata = { 0 };
6306         int                       rc;
6307
6308         rc = lfsck_links_read(env, obj, &ldata);
6309         if (rc != 0)
6310                 return rc;
6311
6312         linkea_first_entry(&ldata);
6313         if (ldata.ld_lee == NULL)
6314                 return -ENODATA;
6315
6316         linkea_entry_unpack(ldata.ld_lee, &ldata.ld_reclen, cname, pfid);
6317         /* To guarantee the 'name' is terminated with '0'. */
6318         memcpy(name, cname->ln_name, cname->ln_namelen);
6319         name[cname->ln_namelen] = 0;
6320
6321         return 0;
6322 }
6323
6324 /**
6325  * Remove the name entry from the parent directory.
6326  *
6327  * No need to care about the object referenced by the name entry,
6328  * either the name entry is invalid or redundant, or the referenced
6329  * object has been processed has been or will be handled by others.
6330  *
6331  * \param[in] env       pointer to the thread context
6332  * \param[in] lfsck     pointer to the lfsck instance
6333  * \param[in] parent    pointer to the lost+found object
6334  * \param[in] name      the name for the name entry to be removed
6335  * \param[in] type      the type for the name entry to be removed
6336  *
6337  * \retval              0 for success
6338  * \retval              negative error number on failure
6339  */
6340 int lfsck_remove_name_entry(const struct lu_env *env,
6341                             struct lfsck_instance *lfsck,
6342                             struct dt_object *parent,
6343                             const char *name, __u32 type)
6344 {
6345         struct dt_device        *dev    = lfsck->li_next;
6346         struct thandle          *th;
6347         struct lustre_handle     lh     = { 0 };
6348         int                      rc;
6349         ENTRY;
6350
6351         rc = lfsck_ibits_lock(env, lfsck, parent, &lh,
6352                               MDS_INODELOCK_UPDATE, LCK_EX);
6353         if (rc != 0)
6354                 RETURN(rc);
6355
6356         th = dt_trans_create(env, dev);
6357         if (IS_ERR(th))
6358                 GOTO(unlock, rc = PTR_ERR(th));
6359
6360         rc = dt_declare_delete(env, parent, (const struct dt_key *)name, th);
6361         if (rc != 0)
6362                 GOTO(stop, rc);
6363
6364         if (S_ISDIR(type)) {
6365                 rc = dt_declare_ref_del(env, parent, th);
6366                 if (rc != 0)
6367                         GOTO(stop, rc);
6368         }
6369
6370         rc = dt_trans_start(env, dev, th);
6371         if (rc != 0)
6372                 GOTO(stop, rc);
6373
6374         rc = dt_delete(env, parent, (const struct dt_key *)name, th,
6375                        BYPASS_CAPA);
6376         if (rc != 0)
6377                 GOTO(stop, rc);
6378
6379         if (S_ISDIR(type)) {
6380                 dt_write_lock(env, parent, 0);
6381                 rc = dt_ref_del(env, parent, th);
6382                 dt_write_unlock(env, parent);
6383         }
6384
6385         GOTO(stop, rc);
6386
6387 stop:
6388         dt_trans_stop(env, dev, th);
6389
6390 unlock:
6391         lfsck_ibits_unlock(&lh, LCK_EX);
6392
6393         CDEBUG(D_LFSCK, "%s: remove name entry "DFID"/%s "
6394                "with type %o: rc = %d\n", lfsck_lfsck2name(lfsck),
6395                PFID(lfsck_dto2fid(parent)), name, type, rc);
6396
6397         return rc;
6398 }
6399
6400 /**
6401  * Update the object's name entry with the given FID.
6402  *
6403  * \param[in] env       pointer to the thread context
6404  * \param[in] lfsck     pointer to the lfsck instance
6405  * \param[in] parent    pointer to the parent directory that holds
6406  *                      the name entry
6407  * \param[in] name      the name for the entry to be updated
6408  * \param[in] pfid      the new PFID for the name entry
6409  * \param[in] type      the type for the name entry to be updated
6410  *
6411  * \retval              0 for success
6412  * \retval              negative error number on failure
6413  */
6414 int lfsck_update_name_entry(const struct lu_env *env,
6415                             struct lfsck_instance *lfsck,
6416                             struct dt_object *parent, const char *name,
6417                             const struct lu_fid *pfid, __u32 type)
6418 {
6419         struct dt_insert_rec    *rec    = &lfsck_env_info(env)->lti_dt_rec;
6420         struct dt_device        *dev    = lfsck->li_next;
6421         struct lustre_handle     lh     = { 0 };
6422         struct thandle          *th;
6423         int                      rc;
6424         bool                     exists = true;
6425         ENTRY;
6426
6427         rc = lfsck_ibits_lock(env, lfsck, parent, &lh,
6428                               MDS_INODELOCK_UPDATE, LCK_EX);
6429         if (rc != 0)
6430                 RETURN(rc);
6431
6432         th = dt_trans_create(env, dev);
6433         if (IS_ERR(th))
6434                 GOTO(unlock, rc = PTR_ERR(th));
6435
6436         rc = dt_declare_delete(env, parent, (const struct dt_key *)name, th);
6437         if (rc != 0)
6438                 GOTO(stop, rc);
6439
6440         rec->rec_type = type;
6441         rec->rec_fid = pfid;
6442         rc = dt_declare_insert(env, parent, (const struct dt_rec *)rec,
6443                                (const struct dt_key *)name, th);
6444         if (rc != 0)
6445                 GOTO(stop, rc);
6446
6447         rc = dt_declare_ref_add(env, parent, th);
6448         if (rc != 0)
6449                 GOTO(stop, rc);
6450
6451         rc = dt_trans_start(env, dev, th);
6452         if (rc != 0)
6453                 GOTO(stop, rc);
6454
6455         rc = dt_delete(env, parent, (const struct dt_key *)name, th,
6456                        BYPASS_CAPA);
6457         if (rc == -ENOENT) {
6458                 exists = false;
6459                 rc = 0;
6460         }
6461
6462         if (rc != 0)
6463                 GOTO(stop, rc);
6464
6465         rc = dt_insert(env, parent, (const struct dt_rec *)rec,
6466                        (const struct dt_key *)name, th, BYPASS_CAPA, 1);
6467         if (rc == 0 && S_ISDIR(type) && !exists) {
6468                 dt_write_lock(env, parent, 0);
6469                 rc = dt_ref_add(env, parent, th);
6470                 dt_write_unlock(env, parent);
6471         }
6472
6473         GOTO(stop, rc);
6474
6475 stop:
6476         dt_trans_stop(env, dev, th);
6477
6478 unlock:
6479         lfsck_ibits_unlock(&lh, LCK_EX);
6480
6481         CDEBUG(D_LFSCK, "%s: update name entry "DFID"/%s with the FID "DFID
6482                " and the type %o: rc = %d\n", lfsck_lfsck2name(lfsck),
6483                PFID(lfsck_dto2fid(parent)), name, PFID(pfid), type, rc);
6484
6485         return rc;
6486 }
6487
6488 int lfsck_namespace_setup(const struct lu_env *env,
6489                           struct lfsck_instance *lfsck)
6490 {
6491         struct lfsck_component  *com;
6492         struct lfsck_namespace  *ns;
6493         struct dt_object        *root = NULL;
6494         struct dt_object        *obj;
6495         int                      rc;
6496         ENTRY;
6497
6498         LASSERT(lfsck->li_master);
6499
6500         OBD_ALLOC_PTR(com);
6501         if (com == NULL)
6502                 RETURN(-ENOMEM);
6503
6504         INIT_LIST_HEAD(&com->lc_link);
6505         INIT_LIST_HEAD(&com->lc_link_dir);
6506         init_rwsem(&com->lc_sem);
6507         atomic_set(&com->lc_ref, 1);
6508         com->lc_lfsck = lfsck;
6509         com->lc_type = LFSCK_TYPE_NAMESPACE;
6510         com->lc_ops = &lfsck_namespace_ops;
6511         com->lc_data = lfsck_assistant_data_init(
6512                         &lfsck_namespace_assistant_ops,
6513                         "lfsck_namespace");
6514         if (com->lc_data == NULL)
6515                 GOTO(out, rc = -ENOMEM);
6516
6517         com->lc_file_size = sizeof(struct lfsck_namespace);
6518         OBD_ALLOC(com->lc_file_ram, com->lc_file_size);
6519         if (com->lc_file_ram == NULL)
6520                 GOTO(out, rc = -ENOMEM);
6521
6522         OBD_ALLOC(com->lc_file_disk, com->lc_file_size);
6523         if (com->lc_file_disk == NULL)
6524                 GOTO(out, rc = -ENOMEM);
6525
6526         root = dt_locate(env, lfsck->li_bottom, &lfsck->li_local_root_fid);
6527         if (IS_ERR(root))
6528                 GOTO(out, rc = PTR_ERR(root));
6529
6530         if (unlikely(!dt_try_as_dir(env, root)))
6531                 GOTO(out, rc = -ENOTDIR);
6532
6533         obj = local_index_find_or_create(env, lfsck->li_los, root,
6534                                          lfsck_namespace_name,
6535                                          S_IFREG | S_IRUGO | S_IWUSR,
6536                                          &dt_lfsck_features);
6537         if (IS_ERR(obj))
6538                 GOTO(out, rc = PTR_ERR(obj));
6539
6540         com->lc_obj = obj;
6541         rc = obj->do_ops->do_index_try(env, obj, &dt_lfsck_features);
6542         if (rc != 0)
6543                 GOTO(out, rc);
6544
6545         rc = lfsck_namespace_load(env, com);
6546         if (rc == -ENODATA)
6547                 rc = lfsck_namespace_init(env, com);
6548         else if (rc < 0)
6549                 rc = lfsck_namespace_reset(env, com, true);
6550         if (rc != 0)
6551                 GOTO(out, rc);
6552
6553         ns = com->lc_file_ram;
6554         switch (ns->ln_status) {
6555         case LS_INIT:
6556         case LS_COMPLETED:
6557         case LS_FAILED:
6558         case LS_STOPPED:
6559                 spin_lock(&lfsck->li_lock);
6560                 list_add_tail(&com->lc_link, &lfsck->li_list_idle);
6561                 spin_unlock(&lfsck->li_lock);
6562                 break;
6563         default:
6564                 CERROR("%s: unknown lfsck_namespace status %d\n",
6565                        lfsck_lfsck2name(lfsck), ns->ln_status);
6566                 /* fall through */
6567         case LS_SCANNING_PHASE1:
6568         case LS_SCANNING_PHASE2:
6569                 /* No need to store the status to disk right now.
6570                  * If the system crashed before the status stored,
6571                  * it will be loaded back when next time. */
6572                 ns->ln_status = LS_CRASHED;
6573                 /* fall through */
6574         case LS_PAUSED:
6575         case LS_CRASHED:
6576                 spin_lock(&lfsck->li_lock);
6577                 list_add_tail(&com->lc_link, &lfsck->li_list_scan);
6578                 list_add_tail(&com->lc_link_dir, &lfsck->li_list_dir);
6579                 spin_unlock(&lfsck->li_lock);
6580                 break;
6581         }
6582
6583         GOTO(out, rc = 0);
6584
6585 out:
6586         if (root != NULL && !IS_ERR(root))
6587                 lu_object_put(env, &root->do_lu);
6588         if (rc != 0) {
6589                 lfsck_component_cleanup(env, com);
6590                 CERROR("%s: fail to init namespace LFSCK component: rc = %d\n",
6591                        lfsck_lfsck2name(lfsck), rc);
6592         }
6593         return rc;
6594 }