Whamcloud - gitweb
LU-10308 misc: update Intel copyright messages for 2017
[fs/lustre-release.git] / lustre / lfsck / lfsck_internal.h
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, 2017, Intel Corporation.
24  */
25 /*
26  * lustre/lfsck/lfsck_internal.h
27  *
28  * Shared definitions and declarations for the LFSCK.
29  *
30  * Author: Fan, Yong <fan.yong@intel.com>
31  */
32
33 #ifndef _LFSCK_INTERNAL_H
34 # define _LFSCK_INTERNAL_H
35
36 #include <lustre_lfsck.h>
37 #include <obd.h>
38 #include <lu_object.h>
39 #include <dt_object.h>
40 #include <md_object.h>
41 #include <lustre_net.h>
42 #include <lustre_dlm.h>
43 #include <lustre_fid.h>
44 #include <md_object.h>
45 #include <lustre_linkea.h>
46
47 #define LFSCK_CHECKPOINT_INTERVAL       60
48
49 enum lfsck_flags {
50         /* Finish the first cycle scanning. */
51         LF_SCANNED_ONCE         = 0x00000001ULL,
52
53         /* There is some namespace inconsistency. */
54         LF_INCONSISTENT         = 0x00000002ULL,
55
56         /* The device is upgraded from 1.8 format. */
57         LF_UPGRADE              = 0x00000004ULL,
58
59         /* The server ever restarted during the LFSCK, and may miss to process
60          * some objects check/repair. */
61         LF_INCOMPLETE           = 0x00000008ULL,
62
63         /* The LAST_ID (file) crashed. */
64         LF_CRASHED_LASTID       = 0x00000010ULL,
65 };
66
67 struct lfsck_position {
68         /* low layer object table-based iteration position. */
69         __u64   lp_oit_cookie;
70
71         /* parent FID for directory traversal. */
72         struct lu_fid lp_dir_parent;
73
74         /* namespace-based directory traversal position. */
75         __u64   lp_dir_cookie;
76 };
77
78 struct lfsck_bookmark {
79         /* Magic number to detect that this struct contains valid data. */
80         __u32   lb_magic;
81
82         /* For compatible with old versions. */
83         __u16   lb_version;
84
85         /* See 'enum lfsck_param_flags' */
86         __u16   lb_param;
87
88         /* How many items can be scanned at most per second. */
89         __u32   lb_speed_limit;
90
91         /* The windows size for async requests pipeline. */
92         __u16   lb_async_windows;
93
94         /* For 64-bits aligned. */
95         __u16   lb_padding;
96
97         /* The FID for .lustre/lost+found/MDTxxxx */
98         struct lu_fid   lb_lpf_fid;
99
100         /* The FID for the last MDT-object created by the LFSCK repairing. */
101         struct lu_fid   lb_last_fid;
102
103         /* For future using. */
104         __u64   lb_reserved[2];
105 };
106
107 enum lfsck_namespace_trace_flags {
108         LNTF_CHECK_LINKEA       = 0x01,
109         LNTF_CHECK_PARENT       = 0x02,
110         LNTF_CHECK_ORPHAN       = 0x08,
111         LNTF_UNCERTAIN_LMV      = 0x10,
112         LNTF_RECHECK_NAME_HASH  = 0x20,
113         LNTF_CHECK_AGENT_ENTRY  = 0x40,
114         LNTF_ALL                = 0xff
115 };
116
117 enum lfsck_namespace_inconsistency_type {
118         LNIT_NONE               = 0,
119         LNIT_BAD_LINKEA         = 1,
120         LNIT_UNMATCHED_PAIRS    = 2,
121         LNIT_DANGLING           = 3,
122         LNIT_MUL_REF            = 4,
123         LNIT_BAD_TYPE           = 5,
124         LNIT_BAD_DIRENT         = 6,
125 };
126
127 struct lfsck_namespace {
128         /* Magic number to detect that this struct contains valid data. */
129         __u32   ln_magic;
130
131         /* See 'enum lfsck_status'. */
132         __u32   ln_status;
133
134         /* See 'enum lfsck_flags'. */
135         __u32   ln_flags;
136
137         /* How many completed LFSCK runs on the device. */
138         __u32   ln_success_count;
139
140         /*  How long the LFSCK phase1 has run in seconds. */
141         time64_t ln_run_time_phase1;
142
143         /*  How long the LFSCK phase2 has run in seconds. */
144         time64_t ln_run_time_phase2;
145
146         /* Time for the last LFSCK completed in seconds since epoch. */
147         time64_t ln_time_last_complete;
148
149         /* Time for the latest LFSCK ran in seconds since epoch. */
150         time64_t ln_time_latest_start;
151
152         /* Time for the last LFSCK checkpoint in seconds since epoch. */
153         time64_t ln_time_last_checkpoint;
154
155         /* Position for the latest LFSCK started from. */
156         struct lfsck_position   ln_pos_latest_start;
157
158         /* Position for the last LFSCK checkpoint. */
159         struct lfsck_position   ln_pos_last_checkpoint;
160
161         /* Position for the first should be updated object. */
162         struct lfsck_position   ln_pos_first_inconsistent;
163
164         /* How many items (including dir) have been checked. */
165         __u64   ln_items_checked;
166
167         /* How many items have been repaired. */
168         __u64   ln_items_repaired;
169
170         /* How many items failed to be processed. */
171         __u64   ln_items_failed;
172
173         /* How many directories have been traversed. */
174         __u64   ln_dirs_checked;
175
176         /* How many objects have been double scanned. */
177         __u64   ln_objs_checked_phase2;
178
179         /* How many objects have been reparied during double scan. */
180         __u64   ln_objs_repaired_phase2;
181
182         /* How many objects failed to be processed during double scan. */
183         __u64   ln_objs_failed_phase2;
184
185         /* How many objects with nlink fixed. */
186         __u64   ln_objs_nlink_repaired;
187
188         /* The latest object has been processed (failed) during double scan. */
189         struct lu_fid   ln_fid_latest_scanned_phase2;
190
191         /* How many FID-in-dirent entries have been repaired. */
192         __u64   ln_dirent_repaired;
193
194         /* How many linkEA entries have been repaired. */
195         __u64   ln_linkea_repaired;
196
197         /* How many multiple-linked objects have been checked. */
198         __u64   ln_mul_linked_checked;
199
200         /* How many multiple-linked objects have been repaired. */
201         __u64   ln_mul_linked_repaired;
202
203         /* How many undefined inconsistency found in phase2. */
204         __u64   ln_unknown_inconsistency;
205
206         /* How many unmatched pairs have been repaired. */
207         __u64   ln_unmatched_pairs_repaired;
208
209         /* How many dangling name entries have been found/repaired. */
210         __u64   ln_dangling_repaired;
211
212         /* How many multiple referenced name entries have been
213          * found/repaired. */
214         __u64   ln_mul_ref_repaired;
215
216         /* How many name entries with bad file type have been repaired. */
217         __u64   ln_bad_type_repaired;
218
219         /* How many lost name entries have been re-inserted. */
220         __u64   ln_lost_dirent_repaired;
221
222         /* How many objects under /lost+found have been scanned. */
223         __u64   ln_local_lpf_scanned;
224
225         /* How many objects under /lost+found have been moved to
226          * namespace visible directory. */
227         __u64   ln_local_lpf_moved;
228
229         /* How many objects under /lost+found have been skipped. */
230         __u64   ln_local_lpf_skipped;
231
232         /* How many objects under /lost+found failed to be processed. */
233         __u64   ln_local_lpf_failed;
234
235         /* How many striped directories (master) have been scanned. */
236         __u64   ln_striped_dirs_scanned;
237
238         /* How many striped directories (master) have been repaired. */
239         __u64   ln_striped_dirs_repaired;
240
241         /* How many striped directories (master) failed verification. */
242         __u64   ln_striped_dirs_failed;
243
244         /* How many striped directories (master) has been disabled. */
245         __u64   ln_striped_dirs_disabled;
246
247         /* How many striped directory's (master) have been skipped
248          * (for shards verification) because of lost master LMV EA. */
249         __u64   ln_striped_dirs_skipped;
250
251         /* How many striped directory's shards (slave) have been scanned. */
252         __u64   ln_striped_shards_scanned;
253
254         /* How many striped directory's shards (slave) have been repaired. */
255         __u64   ln_striped_shards_repaired;
256
257         /* How many striped directory's shards (slave) failed verification. */
258         __u64   ln_striped_shards_failed;
259
260         /* How many striped directory's shards (slave) have been skipped
261          * (for name hash verification) because do not know whether the slave
262          * LMV EA is valid or not. */
263         __u64   ln_striped_shards_skipped;
264
265         /* How many name entries under striped directory with bad name
266          * hash have been repaired. */
267         __u64   ln_name_hash_repaired;
268
269         /* The size of MDT targets bitmap with nbits. Such bitmap records
270          * the MDTs that contain non-verified MDT-objects. */
271         __u32   ln_bitmap_size;
272
273         /* For further using. 256-bytes aligned now. */
274         __u32   ln_reserved_1;
275
276         /* Time for the latest LFSCK scan in seconds from the beginning. */
277         time64_t ln_time_latest_reset;
278
279         /* How many linkEA overflow timestamp have been cleared. */
280         __u64   ln_linkea_overflow_cleared;
281
282         /* How many agent entries have been repaired. */
283         __u64   ln_agent_entries_repaired;
284
285         /* For further using. 256-bytes aligned now. */
286         __u64   ln_reserved[11];
287 };
288
289 enum lfsck_layout_inconsistency_type {
290         LLIT_NONE                       = 0,
291         LLIT_DANGLING                   = 1,
292         LLIT_UNMATCHED_PAIR             = 2,
293         LLIT_MULTIPLE_REFERENCED        = 3,
294         LLIT_ORPHAN                     = 4,
295         LLIT_INCONSISTENT_OWNER         = 5,
296         LLIT_OTHERS                     = 6,
297         LLIT_MAX                        = LLIT_OTHERS
298 };
299
300 struct lfsck_layout {
301         /* Magic number to detect that this struct contains valid data. */
302         __u32   ll_magic;
303
304         /* See 'enum lfsck_status'. */
305         __u32   ll_status;
306
307         /* See 'enum lfsck_flags'. */
308         __u32   ll_flags;
309
310         /* How many completed LFSCK runs on the device. */
311         __u32   ll_success_count;
312
313         /*  How long the LFSCK phase1 has run in seconds. */
314         time64_t ll_run_time_phase1;
315
316         /*  How long the LFSCK phase2 has run in seconds. */
317         time64_t ll_run_time_phase2;
318
319         /* Time for the last LFSCK completed in seconds since epoch. */
320         time64_t ll_time_last_complete;
321
322         /* Time for the latest LFSCK ran in seconds since epoch. */
323         time64_t ll_time_latest_start;
324
325         /* Time for the last LFSCK checkpoint in seconds since epoch. */
326         time64_t ll_time_last_checkpoint;
327
328         /* Position for the latest LFSCK started from. */
329         __u64   ll_pos_latest_start;
330
331         /* Position for the last LFSCK checkpoint. */
332         __u64   ll_pos_last_checkpoint;
333
334         /* Position for the first object to be fixed or
335          * failed to be checked in the phase1. */
336         __u64   ll_pos_first_inconsistent;
337
338         /* How many objects have been checked. */
339         __u64   ll_objs_checked_phase1;
340
341         /* How many objects failed to be processed. */
342         __u64   ll_objs_failed_phase1;
343
344         /* How many objects have been double scanned. */
345         __u64   ll_objs_checked_phase2;
346
347         /* How many objects failed to be processed during double scan. */
348         __u64   ll_objs_failed_phase2;
349
350         /* kinds of inconsistency have been or to be repaired.
351          * ll_objs_repaired[type - 1] is the count for the given @type. */
352         __u64   ll_objs_repaired[LLIT_MAX];
353
354         /* How many objects have been skipped because of related
355          * MDT(s)/OST(s) do not participate in the LFSCK */
356         __u64   ll_objs_skipped;
357
358         /* The size of ll_ost_bitmap with nbits. */
359         __u32   ll_bitmap_size;
360
361         /* For further using. 256-bytes aligned now. */
362         __u32   ll_reserved_1;
363
364         /* The latest object has been processed (failed) during double scan. */
365         struct lfsck_layout_dangling_key ll_lldk_latest_scanned_phase2;
366
367         /* For further using */
368         u64     ll_reserved_2[7];
369
370         /* The OST targets bitmap to record the OSTs that contain
371          * non-verified OST-objects. */
372         __u8    ll_ost_bitmap[0];
373 };
374
375 struct lfsck_assistant_object {
376         struct lu_fid           lso_fid;
377         __u64                   lso_oit_cookie;
378         struct lu_attr          lso_attr;
379         atomic_t                lso_ref;
380         unsigned int            lso_dead:1,
381                                 lso_is_dir:1;
382 };
383
384 struct lfsck_component;
385 struct lfsck_tgt_descs;
386 struct lfsck_tgt_desc;
387
388 struct lfsck_operations {
389         int (*lfsck_reset)(const struct lu_env *env,
390                            struct lfsck_component *com,
391                            bool init);
392
393         void (*lfsck_fail)(const struct lu_env *env,
394                            struct lfsck_component *com,
395                            bool new_checked);
396
397         void (*lfsck_close_dir)(const struct lu_env *env,
398                                 struct lfsck_component *com);
399
400         int (*lfsck_open_dir)(const struct lu_env *env,
401                               struct lfsck_component *com);
402
403         int (*lfsck_checkpoint)(const struct lu_env *env,
404                                 struct lfsck_component *com,
405                                 bool init);
406
407         int (*lfsck_prep)(const struct lu_env *env,
408                           struct lfsck_component *com,
409                           struct lfsck_start_param *lsp);
410
411         int (*lfsck_exec_oit)(const struct lu_env *env,
412                               struct lfsck_component *com,
413                               struct dt_object *obj);
414
415         int (*lfsck_exec_dir)(const struct lu_env *env,
416                               struct lfsck_component *com,
417                               struct lfsck_assistant_object *lso,
418                               struct lu_dirent *ent,
419                               __u16 type);
420
421         int (*lfsck_post)(const struct lu_env *env,
422                           struct lfsck_component *com,
423                           int result,
424                           bool init);
425
426         void (*lfsck_dump)(const struct lu_env *env,
427                            struct lfsck_component *com,
428                            struct seq_file *m);
429
430         int (*lfsck_double_scan)(const struct lu_env *env,
431                                  struct lfsck_component *com);
432
433         void (*lfsck_data_release)(const struct lu_env *env,
434                                    struct lfsck_component *com);
435
436         void (*lfsck_quit)(const struct lu_env *env,
437                            struct lfsck_component *com);
438
439         int (*lfsck_in_notify_local)(const struct lu_env *env,
440                                      struct lfsck_component *com,
441                                      struct lfsck_req_local *lrl,
442                                      struct thandle *th);
443
444         int (*lfsck_in_notify)(const struct lu_env *env,
445                                struct lfsck_component *com,
446                                struct lfsck_request *lr);
447
448         int (*lfsck_query)(const struct lu_env *env,
449                            struct lfsck_component *com,
450                            struct lfsck_request *req,
451                            struct lfsck_reply *rep,
452                            struct lfsck_query *que, int idx);
453
454         int (*lfsck_join)(const struct lu_env *env,
455                           struct lfsck_component *com,
456                           struct lfsck_start_param *lsp);
457 };
458
459 #define TGT_PTRS                256     /* number of pointers at 1st level */
460 #define TGT_PTRS_PER_BLOCK      256     /* number of pointers at 2nd level */
461
462 struct lfsck_tgt_desc {
463         struct list_head   ltd_orphan_list;
464         struct dt_device  *ltd_tgt;
465         struct dt_device  *ltd_key;
466         struct obd_export *ltd_exp;
467         struct list_head   ltd_layout_list;
468         struct list_head   ltd_layout_phase_list;
469         struct list_head   ltd_namespace_list;
470         struct list_head   ltd_namespace_phase_list;
471         __u32              ltd_layout_status;
472         __u32              ltd_namespace_status;
473         __u64              ltd_layout_repaired;
474         __u64              ltd_namespace_repaired;
475         atomic_t           ltd_ref;
476         __u32              ltd_index;
477         __u32              ltd_layout_gen;
478         __u32              ltd_namespace_gen;
479         unsigned int       ltd_dead:1,
480                            ltd_retry_start:1,
481                            ltd_layout_done:1,
482                            ltd_namespace_done:1,
483                            ltd_synced_failures:1;
484 };
485
486 struct lfsck_tgt_desc_idx {
487         struct lfsck_tgt_desc *ldi_tgts[TGT_PTRS_PER_BLOCK];
488 };
489
490 struct lfsck_tgt_descs {
491         /* list of known TGTs */
492         struct lfsck_tgt_desc_idx       *ltd_tgts_idx[TGT_PTRS];
493
494         /* bitmap of TGTs available */
495         struct cfs_bitmap                       *ltd_tgts_bitmap;
496
497         /* for lfsck_tgt_desc::ltd_xxx_list */
498         spinlock_t                       ltd_lock;
499
500         /* for tgts table accessing and changes */
501         struct rw_semaphore              ltd_rw_sem;
502
503         /* Temporary list for orphan targets. */
504         struct list_head                 ltd_orphan;
505
506         /* number of registered TGTs */
507         __u32                            ltd_tgtnr;
508 };
509
510 static inline struct lfsck_tgt_desc *
511 lfsck_ltd2tgt(struct lfsck_tgt_descs *ltd, __u32 index)
512 {
513         __u32 idx1 = index / TGT_PTRS_PER_BLOCK;
514         __u32 idx2 = index % TGT_PTRS_PER_BLOCK;
515         struct lfsck_tgt_desc *__tgt = NULL;
516
517         if (unlikely(idx1 >= TGT_PTRS))
518                 CDEBUG(D_LFSCK, "The target idx %u is invalid.\n", index);
519         else if (likely(ltd->ltd_tgts_idx[idx1] != NULL))
520                 __tgt = ltd->ltd_tgts_idx[idx1]->ldi_tgts[idx2];
521
522         return __tgt;
523 }
524
525 static inline void lfsck_assign_tgt(struct lfsck_tgt_descs *ltd,
526                                     struct lfsck_tgt_desc *tgt, __u32 index)
527 {
528         __u32 idx1 = index / TGT_PTRS_PER_BLOCK;
529         __u32 idx2 = index % TGT_PTRS_PER_BLOCK;
530
531         if (likely(idx1 < TGT_PTRS && ltd->ltd_tgts_idx[idx1] != NULL))
532                 ltd->ltd_tgts_idx[idx1]->ldi_tgts[idx2] = tgt;
533 }
534
535 #define LFSCK_STF_BITS  4
536 /* If want to adjust the LFSCK_STF_COUNT, please change LFSCK_STF_BITS. */
537 #define LFSCK_STF_COUNT (1 << LFSCK_STF_BITS)
538
539 struct lfsck_sub_trace_obj {
540         struct dt_object        *lsto_obj;
541         struct mutex             lsto_mutex;
542 };
543
544 struct lfsck_component {
545         /* into lfsck_instance::li_list_(scan,double_scan,idle} */
546         struct list_head         lc_link;
547
548         /* into lfsck_instance::li_list_dir */
549         struct list_head         lc_link_dir;
550
551         struct rw_semaphore      lc_sem;
552         atomic_t                 lc_ref;
553
554         struct lfsck_position    lc_pos_start;
555         struct lfsck_instance   *lc_lfsck;
556         struct dt_object        *lc_obj;
557         struct lfsck_sub_trace_obj lc_sub_trace_objs[LFSCK_STF_COUNT];
558         struct lfsck_operations *lc_ops;
559         void                    *lc_file_ram;
560         void                    *lc_file_disk;
561         void                    *lc_data;
562         struct lu_fid            lc_fid_latest_scanned_phase2;
563
564         /* The time for last checkpoint, seconds */
565         time64_t                 lc_time_last_checkpoint;
566
567         /* The time for next checkpoint, seconds */
568         time64_t                 lc_time_next_checkpoint;
569
570         __u32                    lc_file_size;
571
572         /* How many objects have been checked since last checkpoint. */
573         __u32                    lc_new_checked;
574
575         /* How many objects have been scanned since last sleep. */
576         __u32                    lc_new_scanned;
577
578         __u16                    lc_type;
579 };
580
581 #define LFSCK_LMV_MAX_STRIPES   LMV_MAX_STRIPE_COUNT
582 #define LFSCK_LMV_DEF_STRIPES   4
583
584 /* Warning: NOT change the lfsck_slave_lmv_flags members order,
585  *          otherwise the lfsck_record_lmv() may be wrong. */
586 enum lfsck_slave_lmv_flags {
587         LSLF_NONE       = 0,
588         LSLF_BAD_INDEX2 = 1,
589         LSLF_NO_LMVEA   = 2,
590         LSLF_DANGLING   = 3,
591         LSLF_BAD_INDEX1 = 4,
592 };
593
594 /* When the namespace LFSCK scans a striped directory, it will record all
595  * the known shards' information in the structure "lfsck_slave_lmv_rec",
596  * including the shard's FID, index, slave LMV EA, and so on. Each shard
597  * will take one lfsck_slave_lmv_rec slot. After the 1st cycle scanning
598  * the striped directory, the LFSCK will get all the information about
599  * whether there are some inconsistency, and then it can repair them in
600  * the 2nd cycle scanning. */
601 struct lfsck_slave_lmv_rec {
602         struct lu_fid   lslr_fid;
603         __u32           lslr_stripe_count;
604         __u32           lslr_index; /* the index in name or in slave lmv */
605         __u32           lslr_hash_type;
606         __u32           lslr_flags;
607 };
608
609 struct lfsck_lmv {
610         struct lmv_mds_md_v1             ll_lmv;
611         atomic_t                         ll_ref;
612         int                              ll_stripes_allocated;
613         int                              ll_stripes_filled;
614         int                              ll_exit_value;
615         __u32                            ll_max_stripe_count;
616         __u32                            ll_max_filled_off;
617         __u32                            ll_hash_type;
618         unsigned int                     ll_lmv_master:1,
619                                          ll_lmv_slave:1,
620                                          ll_lmv_verified:1,
621                                          ll_lmv_updated:1,
622                                          ll_inline:1,
623                                          ll_failed:1,
624                                          ll_ignore:1,
625                                          ll_counted:1;
626         struct lfsck_slave_lmv_rec      *ll_lslr; /* may be vmalloc'd */
627 };
628
629 /* If the namespace LFSCK finds that the master MDT-object of a striped
630  * directory lost its master LMV EA, it will re-generate the master LMV
631  * EA and notify the LFSCK instance on the MDT on which the striped dir
632  * master MDT-object resides to rescan the striped directory. To do that,
633  * the notify handler will insert a "lfsck_lmv_unit" structure into the
634  * lfsck::li_list_lmv. The LFSCK instance will scan such list from time
635  * to time to check whether needs to rescan some stirped directories. */
636 struct lfsck_lmv_unit {
637         struct list_head         llu_link;
638         struct lfsck_lmv         llu_lmv;
639         struct dt_object        *llu_obj;
640         struct lfsck_instance   *llu_lfsck;
641 };
642
643 struct lfsck_rec_lmv_save {
644         struct lu_fid           lrls_fid;
645         struct lmv_mds_md_v1    lrls_lmv;
646 };
647
648 /* Allow lfsck_record_lmv() to be called recursively at most three times. */
649 #define LFSCK_REC_LMV_MAX_DEPTH 3
650
651 struct lfsck_instance {
652         struct mutex              li_mutex;
653         spinlock_t                li_lock;
654
655         /* Link into the lfsck_instance_list. */
656         struct list_head          li_link;
657
658         /* For the components in (first) scanning via otable-based iteration. */
659         struct list_head          li_list_scan;
660
661         /* For the components in scanning via directory traversal. Because
662          * directory traversal cannot guarantee all the object be scanned,
663          * so the component in the li_list_dir must be in li_list_scan. */
664         struct list_head          li_list_dir;
665
666         /* For the components in double scanning. */
667         struct list_head          li_list_double_scan;
668
669         /* For the components those are not scanning now. */
670         struct list_head          li_list_idle;
671
672         /* For the lfsck_lmv_unit to be handled. */
673         struct list_head          li_list_lmv;
674
675         atomic_t                  li_ref;
676         atomic_t                  li_double_scan_count;
677         struct ptlrpc_thread      li_thread;
678
679         /* The time for last checkpoint, seconds */
680         time64_t                  li_time_last_checkpoint;
681
682         /* The time for next checkpoint, seconds */
683         time64_t                  li_time_next_checkpoint;
684
685         lfsck_out_notify          li_out_notify;
686         void                     *li_out_notify_data;
687         struct dt_device         *li_next;
688         struct dt_device         *li_bottom;
689         struct obd_device        *li_obd;
690         struct ldlm_namespace    *li_namespace;
691         struct local_oid_storage *li_los;
692         struct lu_fid             li_local_root_fid;  /* backend root "/" */
693         struct lu_fid             li_global_root_fid; /* /ROOT */
694         struct dt_object         *li_lfsck_dir;
695         struct dt_object         *li_bookmark_obj;
696         struct dt_object         *li_lpf_obj;
697         struct dt_object         *li_lpf_root_obj;
698         struct lu_client_seq     *li_seq;
699         struct lfsck_bookmark     li_bookmark_ram;
700         struct lfsck_bookmark     li_bookmark_disk;
701         struct lfsck_position     li_pos_current;
702         struct lfsck_position     li_pos_checkpoint;
703
704         struct lfsck_lmv         *li_lmv;
705
706         /* Obj for otable-based iteration */
707         struct dt_object         *li_obj_oit;
708
709         /* Obj for directory traversal */
710         struct dt_object         *li_obj_dir;
711
712         /* It for otable-based iteration */
713         struct dt_it             *li_di_oit;
714
715         /* It for directory traversal */
716         struct dt_it             *li_di_dir;
717
718         /* Description of OST */
719         struct lfsck_tgt_descs    li_ost_descs;
720
721         /* Description of MDT */
722         struct lfsck_tgt_descs    li_mdt_descs;
723
724         /* namespace-based directory traversal position. */
725         __u64                     li_cookie_dir;
726
727         /* Arguments for low layer otable-based iteration. */
728         __u32                     li_args_oit;
729
730         /* Arugments for namespace-based directory traversal. */
731         __u32                     li_args_dir;
732
733         /* Schedule for every N objects. */
734         __u32                     li_sleep_rate;
735
736         /* Sleep N jiffies for each schedule. */
737         __u32                     li_sleep_jif;
738
739         /* How many objects have been scanned since last sleep. */
740         __u32                     li_new_scanned;
741
742         /* The status when the LFSCK stopped or paused. */
743         __u32                     li_status;
744
745         /* The flags when the lFSCK stopped or paused. */
746         __u32                     li_flags;
747
748         unsigned int              li_oit_over:1, /* oit is finished. */
749                                   li_drop_dryrun:1, /* Ever dryrun, not now. */
750                                   li_master:1, /* Master instance or not. */
751                                   li_current_oit_processed:1,
752                                   li_start_unplug:1,
753                                   li_stopping:1;
754         struct lfsck_rec_lmv_save li_rec_lmv_save[LFSCK_REC_LMV_MAX_DEPTH];
755 };
756
757 struct lfsck_async_interpret_args {
758         struct lfsck_component          *laia_com;
759         struct lfsck_tgt_descs          *laia_ltds;
760         struct lfsck_tgt_desc           *laia_ltd;
761         struct lfsck_request            *laia_lr;
762         atomic_t                        *laia_count;
763         int                              laia_result;
764         unsigned int                     laia_shared:1;
765 };
766
767 struct lfsck_thread_args {
768         struct lu_env                    lta_env;
769         struct lfsck_instance           *lta_lfsck;
770         struct lfsck_component          *lta_com;
771         struct lfsck_start_param        *lta_lsp;
772 };
773
774 struct lfsck_assistant_req {
775         struct list_head                 lar_list;
776         struct lfsck_assistant_object   *lar_parent;
777 };
778
779 struct lfsck_namespace_req {
780         struct lfsck_assistant_req       lnr_lar;
781         struct lfsck_lmv                *lnr_lmv;
782         struct lu_fid                    lnr_fid;
783         __u64                            lnr_dir_cookie;
784         __u32                            lnr_attr;
785         __u32                            lnr_size;
786         __u16                            lnr_type;
787         __u16                            lnr_namelen;
788         char                             lnr_name[0];
789 };
790
791 struct lfsck_layout_req {
792         struct lfsck_assistant_req       llr_lar;
793         struct dt_object                *llr_child;
794         __u32                            llr_comp_id;
795         __u32                            llr_ost_idx;
796         __u32                            llr_lov_idx; /* offset in LOV EA */
797 };
798
799 struct lfsck_assistant_operations {
800         int (*la_handler_p1)(const struct lu_env *env,
801                              struct lfsck_component *com,
802                              struct lfsck_assistant_req *lar);
803
804         int (*la_handler_p2)(const struct lu_env *env,
805                              struct lfsck_component *com);
806
807         void (*la_fill_pos)(const struct lu_env *env,
808                             struct lfsck_component *com,
809                             struct lfsck_position *pos);
810
811         int (*la_double_scan_result)(const struct lu_env *env,
812                                      struct lfsck_component *com,
813                                      int rc);
814
815         void (*la_req_fini)(const struct lu_env *env,
816                             struct lfsck_assistant_req *lar);
817
818         void (*la_sync_failures)(const struct lu_env *env,
819                                  struct lfsck_component *com,
820                                  struct lfsck_request *lr);
821 };
822
823 struct lfsck_assistant_data {
824         spinlock_t                               lad_lock;
825         struct list_head                         lad_req_list;
826
827         /* list for the ost targets involve LFSCK. */
828         struct list_head                         lad_ost_list;
829
830         /* list for the ost targets in phase1 scanning. */
831         struct list_head                         lad_ost_phase1_list;
832
833         /* list for the ost targets in phase2 scanning. */
834         struct list_head                         lad_ost_phase2_list;
835
836         /* list for the mdt targets involve LFSCK. */
837         struct list_head                         lad_mdt_list;
838
839         /* list for the mdt targets in phase1 scanning. */
840         struct list_head                         lad_mdt_phase1_list;
841
842         /* list for the mdt targets in phase2 scanning. */
843         struct list_head                         lad_mdt_phase2_list;
844
845         const char                              *lad_name;
846         struct ptlrpc_thread                     lad_thread;
847         struct task_struct                      *lad_task;
848
849         struct lfsck_assistant_operations       *lad_ops;
850
851         struct cfs_bitmap                               *lad_bitmap;
852
853         __u32                                    lad_touch_gen;
854         int                                      lad_prefetched;
855         int                                      lad_assistant_status;
856         int                                      lad_post_result;
857         unsigned int                             lad_to_post:1,
858                                                  lad_to_double_scan:1,
859                                                  lad_in_double_scan:1,
860                                                  lad_exit:1,
861                                                  lad_incomplete:1;
862         bool                                     lad_advance_lock;
863 };
864
865 #define LFSCK_TMPBUF_LEN        64
866
867 struct lfsck_lock_handle {
868         struct lustre_handle    llh_pdo_lh;
869         struct lustre_handle    llh_reg_lh;
870         enum ldlm_mode          llh_pdo_mode;
871         enum ldlm_mode          llh_reg_mode;
872 };
873
874 struct lfsck_thread_info {
875         struct lu_name          lti_name_const;
876         struct lu_name          lti_name;
877         struct lu_name          lti_name2;
878         struct lu_buf           lti_buf;
879         struct lu_buf           lti_linkea_buf;
880         struct lu_buf           lti_linkea_buf2;
881         struct lu_buf           lti_big_buf;
882         struct lu_fid           lti_fid;
883         struct lu_fid           lti_fid2;
884         struct lu_fid           lti_fid3;
885         struct lu_fid           lti_fid4;
886         struct lu_attr          lti_la;
887         struct lu_attr          lti_la2;
888         struct ost_id           lti_oi;
889         struct lustre_ost_attrs lti_loa;
890         struct dt_object_format lti_dof;
891         /* There will be '\0' at the end of the name. */
892         char            lti_key[sizeof(struct lu_dirent) + NAME_MAX + 1];
893         char                    lti_tmpbuf[LFSCK_TMPBUF_LEN];
894         char                    lti_tmpbuf2[LFSCK_TMPBUF_LEN];
895         struct lfsck_request    lti_lr;
896         struct lfsck_async_interpret_args lti_laia;
897         struct lfsck_async_interpret_args lti_laia2;
898         struct lfsck_start      lti_start;
899         struct lfsck_stop       lti_stop;
900         union ldlm_policy_data  lti_policy;
901         struct ldlm_enqueue_info lti_einfo;
902         struct ldlm_res_id      lti_resid;
903         struct filter_fid       lti_ff;
904         struct dt_allocation_hint lti_hint;
905         struct lu_orphan_rec_v2 lti_rec;
906         struct lov_user_md      lti_lum;
907         struct dt_insert_rec    lti_dt_rec;
908         struct lu_object_conf   lti_conf;
909         struct lu_seq_range     lti_range;
910         struct lmv_mds_md_v1    lti_lmv;
911         struct lmv_mds_md_v1    lti_lmv2;
912         struct lmv_mds_md_v1    lti_lmv3;
913         struct lmv_mds_md_v1    lti_lmv4;
914         struct lfsck_lock_handle lti_llh;
915         struct lfsck_layout_dangling_key lti_lldk;
916 };
917
918 /* lfsck_lib.c */
919 int lfsck_fid_alloc(const struct lu_env *env, struct lfsck_instance *lfsck,
920                     struct lu_fid *fid, bool locked);
921 int lfsck_ibits_lock(const struct lu_env *env, struct lfsck_instance *lfsck,
922                      struct dt_object *obj, struct lustre_handle *lh,
923                      __u64 bits, enum ldlm_mode mode);
924 void lfsck_ibits_unlock(struct lustre_handle *lh, enum ldlm_mode mode);
925 int lfsck_lock(const struct lu_env *env, struct lfsck_instance *lfsck,
926                struct dt_object *obj, const char *name,
927                struct lfsck_lock_handle *llh, __u64 bits, enum ldlm_mode mode);
928 void lfsck_unlock(struct lfsck_lock_handle *llh);
929 int lfsck_find_mdt_idx_by_fid(const struct lu_env *env,
930                               struct lfsck_instance *lfsck,
931                               const struct lu_fid *fid);
932 int lfsck_verify_lpf(const struct lu_env *env, struct lfsck_instance *lfsck);
933 struct lfsck_instance *lfsck_instance_find(struct dt_device *key, bool ref,
934                                            bool unlink);
935 struct lfsck_component *lfsck_component_find(struct lfsck_instance *lfsck,
936                                              __u16 type);
937 void lfsck_component_cleanup(const struct lu_env *env,
938                              struct lfsck_component *com);
939 void lfsck_instance_cleanup(const struct lu_env *env,
940                             struct lfsck_instance *lfsck);
941 void lfsck_bits_dump(struct seq_file *m, int bits, const char *names[],
942                      const char *prefix);
943 void lfsck_time_dump(struct seq_file *m, time64_t time, const char *name);
944 void lfsck_pos_dump(struct seq_file *m, struct lfsck_position *pos,
945                     const char *prefix);
946 void lfsck_pos_fill(const struct lu_env *env, struct lfsck_instance *lfsck,
947                     struct lfsck_position *pos, bool init);
948 bool __lfsck_set_speed(struct lfsck_instance *lfsck, __u32 limit);
949 void lfsck_control_speed(struct lfsck_instance *lfsck);
950 void lfsck_control_speed_by_self(struct lfsck_component *com);
951 void lfsck_thread_args_fini(struct lfsck_thread_args *lta);
952 struct lfsck_assistant_data *
953 lfsck_assistant_data_init(struct lfsck_assistant_operations *lao,
954                           const char *name);
955 struct lfsck_assistant_object *
956 lfsck_assistant_object_init(const struct lu_env *env, const struct lu_fid *fid,
957                             const struct lu_attr *attr, __u64 cookie,
958                             bool is_dir);
959 struct dt_object *
960 lfsck_assistant_object_load(const struct lu_env *env,
961                             struct lfsck_instance *lfsck,
962                             struct lfsck_assistant_object *lso);
963 int lfsck_async_interpret_common(const struct lu_env *env,
964                                  struct ptlrpc_request *req,
965                                  void *args, int rc);
966 int lfsck_async_request(const struct lu_env *env, struct obd_export *exp,
967                         struct lfsck_request *lr,
968                         struct ptlrpc_request_set *set,
969                         ptlrpc_interpterer_t interpterer,
970                         void *args, int request);
971 int lfsck_query_all(const struct lu_env *env, struct lfsck_component *com);
972 int lfsck_start_assistant(const struct lu_env *env, struct lfsck_component *com,
973                           struct lfsck_start_param *lsp);
974 int lfsck_checkpoint_generic(const struct lu_env *env,
975                              struct lfsck_component *com);
976 void lfsck_post_generic(const struct lu_env *env,
977                         struct lfsck_component *com, int *result);
978 int lfsck_double_scan_generic(const struct lu_env *env,
979                               struct lfsck_component *com, int status);
980 void lfsck_quit_generic(const struct lu_env *env,
981                         struct lfsck_component *com);
982 int lfsck_load_one_trace_file(const struct lu_env *env,
983                               struct lfsck_component *com,
984                               struct dt_object *parent,
985                               struct dt_object **child,
986                               const struct dt_index_features *ft,
987                               const char *name, bool reset);
988 int lfsck_load_sub_trace_files(const struct lu_env *env,
989                                struct lfsck_component *com,
990                                const struct dt_index_features *ft,
991                                const char *prefix, bool reset);
992
993 /* lfsck_engine.c */
994 int lfsck_unpack_ent(struct lu_dirent *ent, __u64 *cookie, __u16 *type);
995 void lfsck_close_dir(const struct lu_env *env,
996                      struct lfsck_instance *lfsck, int result);
997 int lfsck_open_dir(const struct lu_env *env,
998                    struct lfsck_instance *lfsck, __u64 cookie);
999 int lfsck_master_engine(void *args);
1000 int lfsck_assistant_engine(void *args);
1001
1002 /* lfsck_bookmark.c */
1003 void lfsck_bookmark_cpu_to_le(struct lfsck_bookmark *des,
1004                               struct lfsck_bookmark *src);
1005 int lfsck_bookmark_store(const struct lu_env *env,
1006                          struct lfsck_instance *lfsck);
1007 int lfsck_bookmark_setup(const struct lu_env *env,
1008                          struct lfsck_instance *lfsck);
1009 int lfsck_set_param(const struct lu_env *env, struct lfsck_instance *lfsck,
1010                     struct lfsck_start *start, bool reset);
1011
1012 /* lfsck_namespace.c */
1013 int lfsck_namespace_trace_update(const struct lu_env *env,
1014                                  struct lfsck_component *com,
1015                                  const struct lu_fid *fid,
1016                                  const __u8 flags, bool add);
1017 int lfsck_namespace_check_exist(const struct lu_env *env,
1018                                 struct dt_object *dir,
1019                                 struct dt_object *obj, const char *name);
1020 int __lfsck_links_read(const struct lu_env *env, struct dt_object *obj,
1021                        struct linkea_data *ldata, bool with_rec);
1022 int lfsck_namespace_rebuild_linkea(const struct lu_env *env,
1023                                    struct lfsck_component *com,
1024                                    struct dt_object *obj,
1025                                    struct linkea_data *ldata);
1026 int lfsck_namespace_repair_dangling(const struct lu_env *env,
1027                                     struct lfsck_component *com,
1028                                     struct dt_object *parent,
1029                                     struct dt_object *child,
1030                                     struct lfsck_namespace_req *lnr);
1031 int lfsck_namespace_repair_dirent(const struct lu_env *env,
1032                                   struct lfsck_component *com,
1033                                   struct dt_object *parent,
1034                                   struct dt_object *child,
1035                                   const char *name, const char *name2,
1036                                   __u16 type, bool update, bool dec);
1037 int lfsck_verify_linkea(const struct lu_env *env, struct dt_object *obj,
1038                         const struct lu_name *cname, const struct lu_fid *pfid);
1039 int lfsck_links_get_first(const struct lu_env *env, struct dt_object *obj,
1040                           char *name, struct lu_fid *pfid);
1041 int lfsck_update_name_entry(const struct lu_env *env,
1042                             struct lfsck_instance *lfsck,
1043                             struct dt_object *dir, const char *name,
1044                             const struct lu_fid *fid, __u32 type);
1045 int lfsck_namespace_setup(const struct lu_env *env,
1046                           struct lfsck_instance *lfsck);
1047
1048 /* lfsck_striped_dir.c */
1049 void lfsck_lmv_put(const struct lu_env *env, struct lfsck_lmv *llmv);
1050 int lfsck_read_stripe_lmv(const struct lu_env *env, struct dt_object *obj,
1051                           struct lmv_mds_md_v1 *lmv);
1052 int lfsck_shard_name_to_index(const struct lu_env *env, const char *name,
1053                               int namelen, __u16 type,
1054                               const struct lu_fid *fid);
1055 bool lfsck_is_valid_slave_name_entry(const struct lu_env *env,
1056                                      struct lfsck_lmv *llmv,
1057                                      const char *name, int namelen);
1058 int lfsck_namespace_check_name(const struct lu_env *env,
1059                                struct dt_object *parent,
1060                                struct dt_object *child,
1061                                const struct lu_name *cname);
1062 int lfsck_namespace_update_lmv(const struct lu_env *env,
1063                                struct lfsck_component *com,
1064                                struct dt_object *obj,
1065                                struct lmv_mds_md_v1 *lmv, bool locked);
1066 int lfsck_namespace_verify_stripe_slave(const struct lu_env *env,
1067                                         struct lfsck_component *com,
1068                                         struct dt_object *obj,
1069                                         struct lfsck_lmv *llmv);
1070 int lfsck_namespace_scan_shard(const struct lu_env *env,
1071                                struct lfsck_component *com,
1072                                struct dt_object *child);
1073 int lfsck_namespace_notify_lmv_master_local(const struct lu_env *env,
1074                                             struct lfsck_component *com,
1075                                             struct dt_object *obj);
1076 int lfsck_namespace_repair_bad_name_hash(const struct lu_env *env,
1077                                          struct lfsck_component *com,
1078                                          struct dt_object *shard,
1079                                          struct lfsck_lmv *llmv,
1080                                          const char *name);
1081 int lfsck_namespace_striped_dir_rescan(const struct lu_env *env,
1082                                        struct lfsck_component *com,
1083                                        struct lfsck_namespace_req *lnr);
1084 int lfsck_namespace_handle_striped_master(const struct lu_env *env,
1085                                           struct lfsck_component *com,
1086                                           struct lfsck_namespace_req *lnr);
1087
1088 /* lfsck_layout.c */
1089 int lfsck_layout_setup(const struct lu_env *env, struct lfsck_instance *lfsck);
1090
1091 extern const char dot[];
1092 extern const char dotdot[];
1093 extern const char *lfsck_flags_names[];
1094 extern const char *lfsck_param_names[];
1095 extern struct lu_context_key lfsck_thread_key;
1096
1097 static inline bool name_is_dot_or_dotdot(const char *name, int namelen)
1098 {
1099         return name[0] == '.' &&
1100                (namelen == 1 || (namelen == 2 && name[1] == '.'));
1101 }
1102
1103 static inline struct dt_device *lfsck_obj2dev(struct dt_object *obj)
1104 {
1105         return container_of0(obj->do_lu.lo_dev, struct dt_device, dd_lu_dev);
1106 }
1107
1108 static inline struct lfsck_thread_info *
1109 lfsck_env_info(const struct lu_env *env)
1110 {
1111         struct lfsck_thread_info *info;
1112
1113         info = lu_context_key_get(&env->le_ctx, &lfsck_thread_key);
1114         LASSERT(info != NULL);
1115         return info;
1116 }
1117
1118 static inline const struct lu_name *
1119 lfsck_name_get_const(const struct lu_env *env, const void *area, ssize_t len)
1120 {
1121         struct lu_name *lname;
1122
1123         lname = &lfsck_env_info(env)->lti_name_const;
1124         lname->ln_name = area;
1125         lname->ln_namelen = len;
1126         return lname;
1127 }
1128
1129 static inline void
1130 lfsck_buf_init(struct lu_buf *buf, void *area, ssize_t len)
1131 {
1132         buf->lb_buf = area;
1133         buf->lb_len = len;
1134 }
1135
1136 static inline struct lu_buf *
1137 lfsck_buf_get(const struct lu_env *env, void *area, ssize_t len)
1138 {
1139         struct lu_buf *buf;
1140
1141         buf = &lfsck_env_info(env)->lti_buf;
1142         buf->lb_buf = area;
1143         buf->lb_len = len;
1144         return buf;
1145 }
1146
1147 static inline const struct lu_buf *
1148 lfsck_buf_get_const(const struct lu_env *env, const void *area, ssize_t len)
1149 {
1150         struct lu_buf *buf;
1151
1152         buf = &lfsck_env_info(env)->lti_buf;
1153         buf->lb_buf = (void *)area;
1154         buf->lb_len = len;
1155         return buf;
1156 }
1157
1158 static inline char *lfsck_lfsck2name(struct lfsck_instance *lfsck)
1159 {
1160         return lfsck->li_bottom->dd_lu_dev.ld_obd->obd_name;
1161 }
1162
1163 static inline const struct lu_fid *lfsck_dto2fid(const struct dt_object *obj)
1164 {
1165         return lu_object_fid(&obj->do_lu);
1166 }
1167
1168 static inline void lfsck_pos_set_zero(struct lfsck_position *pos)
1169 {
1170         memset(pos, 0, sizeof(*pos));
1171 }
1172
1173 static inline int lfsck_pos_is_zero(const struct lfsck_position *pos)
1174 {
1175         return pos->lp_oit_cookie == 0 && fid_is_zero(&pos->lp_dir_parent);
1176 }
1177
1178 static inline int lfsck_pos_is_eq(const struct lfsck_position *pos1,
1179                                   const struct lfsck_position *pos2)
1180 {
1181         if (pos1->lp_oit_cookie < pos2->lp_oit_cookie)
1182                 return -1;
1183
1184         if (pos1->lp_oit_cookie > pos2->lp_oit_cookie)
1185                 return 1;
1186
1187         if (fid_is_zero(&pos1->lp_dir_parent) &&
1188             !fid_is_zero(&pos2->lp_dir_parent))
1189                 return -1;
1190
1191         if (!fid_is_zero(&pos1->lp_dir_parent) &&
1192             fid_is_zero(&pos2->lp_dir_parent))
1193                 return 1;
1194
1195         if (fid_is_zero(&pos1->lp_dir_parent) &&
1196             fid_is_zero(&pos2->lp_dir_parent))
1197                 return 0;
1198
1199         LASSERT(lu_fid_eq(&pos1->lp_dir_parent, &pos2->lp_dir_parent));
1200
1201         if (pos1->lp_dir_cookie < pos2->lp_dir_cookie)
1202                 return -1;
1203
1204         if (pos1->lp_dir_cookie > pos2->lp_dir_cookie)
1205                 return 1;
1206
1207         return 0;
1208 }
1209
1210 static void inline lfsck_position_le_to_cpu(struct lfsck_position *des,
1211                                             struct lfsck_position *src)
1212 {
1213         des->lp_oit_cookie = le64_to_cpu(src->lp_oit_cookie);
1214         fid_le_to_cpu(&des->lp_dir_parent, &src->lp_dir_parent);
1215         des->lp_dir_cookie = le64_to_cpu(src->lp_dir_cookie);
1216 }
1217
1218 static void inline lfsck_position_cpu_to_le(struct lfsck_position *des,
1219                                             struct lfsck_position *src)
1220 {
1221         des->lp_oit_cookie = cpu_to_le64(src->lp_oit_cookie);
1222         fid_cpu_to_le(&des->lp_dir_parent, &src->lp_dir_parent);
1223         des->lp_dir_cookie = cpu_to_le64(src->lp_dir_cookie);
1224 }
1225
1226 static inline umode_t lfsck_object_type(const struct dt_object *obj)
1227 {
1228         return lu_object_attr(&obj->do_lu);
1229 }
1230
1231 static inline int lfsck_is_dead_obj(const struct dt_object *obj)
1232 {
1233         return lu_object_is_dying(obj->do_lu.lo_header);
1234 }
1235
1236 static inline struct dt_object *lfsck_object_get(struct dt_object *obj)
1237 {
1238         lu_object_get(&obj->do_lu);
1239         return obj;
1240 }
1241
1242 static inline void lfsck_object_put(const struct lu_env *env,
1243                                     struct dt_object *obj)
1244 {
1245         dt_object_put(env, obj);
1246 }
1247
1248 static inline struct seq_server_site
1249 *lfsck_dev_site(struct lfsck_instance *lfsck)
1250 {
1251         return lu_site2seq(lfsck->li_bottom->dd_lu_dev.ld_site);
1252 }
1253
1254 static inline u32 lfsck_dev_idx(struct lfsck_instance *lfsck)
1255 {
1256         return lfsck_dev_site(lfsck)->ss_node_id;
1257 }
1258
1259 static inline struct dt_object *
1260 lfsck_object_find_by_dev_new(const struct lu_env *env, struct dt_device *dev,
1261                              const struct lu_fid *fid)
1262 {
1263         struct lu_object_conf   *conf = &lfsck_env_info(env)->lti_conf;
1264
1265         conf->loc_flags = LOC_F_NEW;
1266         return lu2dt(lu_object_find_slice(env, dt2lu_dev(dev), fid, conf));
1267 }
1268
1269 static inline struct dt_object *
1270 lfsck_object_find_by_dev(const struct lu_env *env, struct dt_device *dev,
1271                          const struct lu_fid *fid)
1272 {
1273         return lu2dt(lu_object_find_slice(env, dt2lu_dev(dev), fid, NULL));
1274 }
1275
1276 static inline struct dt_device *
1277 lfsck_find_dev_by_fid(const struct lu_env *env, struct lfsck_instance *lfsck,
1278                       const struct lu_fid *fid)
1279 {
1280         struct dt_device *dev;
1281         int               idx;
1282
1283         if (!lfsck->li_master)
1284                 return lfsck->li_bottom;
1285
1286         idx = lfsck_find_mdt_idx_by_fid(env, lfsck, fid);
1287         if (idx < 0)
1288                 return ERR_PTR(idx);
1289
1290         if (idx == lfsck_dev_idx(lfsck)) {
1291                 dev = lfsck->li_bottom;
1292         } else {
1293                 struct lfsck_tgt_desc *ltd;
1294
1295                 ltd = lfsck_ltd2tgt(&lfsck->li_mdt_descs, idx);
1296                 if (unlikely(ltd == NULL))
1297                         return ERR_PTR(-ENODEV);
1298
1299                 dev = ltd->ltd_tgt;
1300         }
1301
1302         return dev;
1303 }
1304
1305 static inline struct dt_object *
1306 lfsck_object_find_bottom(const struct lu_env *env, struct lfsck_instance *lfsck,
1307                          const struct lu_fid *fid)
1308 {
1309         struct dt_device *dev;
1310
1311         dev = lfsck_find_dev_by_fid(env, lfsck, fid);
1312         if (IS_ERR(dev))
1313                 return (struct dt_object *)dev;
1314
1315         return lfsck_object_find_by_dev(env, dev, fid);
1316 }
1317
1318 static inline struct dt_object *
1319 lfsck_object_find_bottom_new(const struct lu_env *env,
1320                              struct lfsck_instance *lfsck,
1321                              const struct lu_fid *fid)
1322 {
1323         struct dt_device *dev;
1324
1325         dev = lfsck_find_dev_by_fid(env, lfsck, fid);
1326         if (IS_ERR(dev))
1327                 return (struct dt_object *)dev;
1328
1329         return lfsck_object_find_by_dev_new(env, dev, fid);
1330 }
1331
1332 static inline struct dt_object *
1333 lfsck_object_locate(struct dt_device *dev, struct dt_object *obj)
1334 {
1335         if (lfsck_obj2dev(obj) == dev) {
1336                 return obj;
1337         } else {
1338                 struct lu_object *lo;
1339
1340                 lo = lu_object_locate(obj->do_lu.lo_header,
1341                                       dev->dd_lu_dev.ld_type);
1342                 if (unlikely(lo == NULL))
1343                         return ERR_PTR(-ENOENT);
1344
1345                 return lu2dt(lo);
1346         }
1347 }
1348
1349 static inline struct lfsck_tgt_desc *lfsck_tgt_get(struct lfsck_tgt_descs *ltds,
1350                                                    __u32 index)
1351 {
1352         struct lfsck_tgt_desc *ltd;
1353
1354         ltd = lfsck_ltd2tgt(ltds, index);
1355         if (ltd != NULL)
1356                 atomic_inc(&ltd->ltd_ref);
1357
1358         return ltd;
1359 }
1360
1361 static inline void lfsck_tgt_put(struct lfsck_tgt_desc *ltd)
1362 {
1363         if (atomic_dec_and_test(&ltd->ltd_ref))
1364                 OBD_FREE_PTR(ltd);
1365 }
1366
1367 static inline struct lfsck_component *
1368 lfsck_component_get(struct lfsck_component *com)
1369 {
1370         atomic_inc(&com->lc_ref);
1371
1372         return com;
1373 }
1374
1375 static inline void lfsck_component_put(const struct lu_env *env,
1376                                        struct lfsck_component *com)
1377 {
1378         if (atomic_dec_and_test(&com->lc_ref)) {
1379                 struct lfsck_sub_trace_obj *lsto;
1380                 int                         i;
1381
1382                 for (i = 0, lsto = &com->lc_sub_trace_objs[0];
1383                      i < LFSCK_STF_COUNT; i++, lsto++) {
1384                         if (lsto->lsto_obj != NULL)
1385                                 lfsck_object_put(env, lsto->lsto_obj);
1386                 }
1387
1388                 if (com->lc_obj != NULL)
1389                         lfsck_object_put(env, com->lc_obj);
1390                 if (com->lc_file_ram != NULL)
1391                         OBD_FREE(com->lc_file_ram, com->lc_file_size);
1392                 if (com->lc_file_disk != NULL)
1393                         OBD_FREE(com->lc_file_disk, com->lc_file_size);
1394                 if (com->lc_data != NULL) {
1395                         LASSERT(com->lc_ops->lfsck_data_release != NULL);
1396
1397                         com->lc_ops->lfsck_data_release(env, com);
1398                 }
1399
1400                 OBD_FREE_PTR(com);
1401         }
1402 }
1403
1404 static inline struct lfsck_instance *
1405 lfsck_instance_get(struct lfsck_instance *lfsck)
1406 {
1407         atomic_inc(&lfsck->li_ref);
1408
1409         return lfsck;
1410 }
1411
1412 static inline void lfsck_instance_put(const struct lu_env *env,
1413                                       struct lfsck_instance *lfsck)
1414 {
1415         if (atomic_dec_and_test(&lfsck->li_ref))
1416                 lfsck_instance_cleanup(env, lfsck);
1417 }
1418
1419 static inline bool lfsck_phase2_next_ready(struct lfsck_assistant_data *lad)
1420 {
1421         return list_empty(&lad->lad_mdt_phase1_list) &&
1422                (!list_empty(&lad->lad_ost_phase2_list) ||
1423                 list_empty(&lad->lad_ost_phase1_list));
1424 }
1425
1426 static inline void lfsck_lad_set_bitmap(const struct lu_env *env,
1427                                         struct lfsck_component *com,
1428                                         __u32 index)
1429 {
1430         struct lfsck_assistant_data     *lad    = com->lc_data;
1431         struct cfs_bitmap               *bitmap = lad->lad_bitmap;
1432
1433         LASSERT(com->lc_lfsck->li_master);
1434         LASSERT(bitmap != NULL);
1435
1436         if (likely(bitmap->size > index)) {
1437                 cfs_bitmap_set(bitmap, index);
1438                 lad->lad_incomplete = 1;
1439         } else if (com->lc_type == LFSCK_TYPE_NAMESPACE) {
1440                 struct lfsck_namespace *ns = com->lc_file_ram;
1441
1442                 ns->ln_flags |= LF_INCOMPLETE;
1443         }
1444
1445         CDEBUG(D_LFSCK, "%s: %s LFSCK set bitmap (%p/%u) for idx %u\n",
1446                lfsck_lfsck2name(com->lc_lfsck), lad->lad_name, bitmap,
1447                bitmap->size, index);
1448 }
1449
1450 static inline int lfsck_links_read(const struct lu_env *env,
1451                                    struct dt_object *obj,
1452                                    struct linkea_data *ldata)
1453 {
1454         ldata->ld_buf =
1455                 lu_buf_check_and_alloc(&lfsck_env_info(env)->lti_linkea_buf,
1456                                        MAX_LINKEA_SIZE);
1457
1458         return __lfsck_links_read(env, obj, ldata, false);
1459 }
1460
1461 /* Read linkEA for the given object, the linkEA should contain
1462  * at least one entry, otherwise, -ENODATA will be returned. */
1463 static inline int lfsck_links_read_with_rec(const struct lu_env *env,
1464                                             struct dt_object *obj,
1465                                             struct linkea_data *ldata)
1466 {
1467         ldata->ld_buf =
1468                 lu_buf_check_and_alloc(&lfsck_env_info(env)->lti_linkea_buf,
1469                                        MAX_LINKEA_SIZE);
1470
1471         return __lfsck_links_read(env, obj, ldata, true);
1472 }
1473
1474 static inline int lfsck_links_read2_with_rec(const struct lu_env *env,
1475                                              struct dt_object *obj,
1476                                              struct linkea_data *ldata)
1477 {
1478         ldata->ld_buf =
1479                 lu_buf_check_and_alloc(&lfsck_env_info(env)->lti_linkea_buf2,
1480                                        MAX_LINKEA_SIZE);
1481
1482         return __lfsck_links_read(env, obj, ldata, true);
1483 }
1484
1485 static inline struct lfsck_lmv *lfsck_lmv_get(struct lfsck_lmv *llmv)
1486 {
1487         if (llmv != NULL)
1488                 atomic_inc(&llmv->ll_ref);
1489
1490         return llmv;
1491 }
1492
1493 static inline int lfsck_sub_trace_file_fid2idx(const struct lu_fid *fid)
1494 {
1495         return fid->f_oid & (LFSCK_STF_COUNT - 1);
1496 }
1497
1498 static inline void lfsck_lmv_header_le_to_cpu(struct lmv_mds_md_v1 *dst,
1499                                               const struct lmv_mds_md_v1 *src)
1500 {
1501         dst->lmv_magic = le32_to_cpu(src->lmv_magic);
1502         dst->lmv_stripe_count = le32_to_cpu(src->lmv_stripe_count);
1503         dst->lmv_master_mdt_index = le32_to_cpu(src->lmv_master_mdt_index);
1504         dst->lmv_hash_type = le32_to_cpu(src->lmv_hash_type);
1505         dst->lmv_layout_version = le32_to_cpu(src->lmv_layout_version);
1506 }
1507
1508 static inline void lfsck_lmv_header_cpu_to_le(struct lmv_mds_md_v1 *dst,
1509                                               const struct lmv_mds_md_v1 *src)
1510 {
1511         dst->lmv_magic = cpu_to_le32(src->lmv_magic);
1512         dst->lmv_stripe_count = cpu_to_le32(src->lmv_stripe_count);
1513         dst->lmv_master_mdt_index = cpu_to_le32(src->lmv_master_mdt_index);
1514         dst->lmv_hash_type = cpu_to_le32(src->lmv_hash_type);
1515         dst->lmv_layout_version = cpu_to_le32(src->lmv_layout_version);
1516 }
1517
1518 static inline struct lfsck_assistant_object *
1519 lfsck_assistant_object_get(struct lfsck_assistant_object *lso)
1520 {
1521         atomic_inc(&lso->lso_ref);
1522
1523         return lso;
1524 }
1525
1526 static inline void
1527 lfsck_assistant_object_put(const struct lu_env *env,
1528                            struct lfsck_assistant_object *lso)
1529 {
1530         if (atomic_dec_and_test(&lso->lso_ref))
1531                 OBD_FREE_PTR(lso);
1532 }
1533 #endif /* _LFSCK_INTERNAL_H */