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