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