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